[SCM] Lisaac compiler branch, master, updated. lisaac-0.12-663-g4ac95b6

ontologiae ontologiae at gmail.com
Mon Nov 22 13:48:54 UTC 2010


The following commit has been merged in the master branch:
commit 4ac95b652f192e597a53146ed9ae79229ef26d29
Author: ontologiae <ontologiae at gmail.com>
Date:   Mon Nov 22 14:46:47 2010 +0100

    extra+unstable add

diff --git a/lib/.gitignore b/lib/.gitignore
index c445125..e69de29 100644
--- a/lib/.gitignore
+++ b/lib/.gitignore
@@ -1,2 +0,0 @@
-/extra
-/unstable
diff --git a/lib/extra/base/char_unicode.li b/lib/extra/base/char_unicode.li
new file mode 100644
index 0000000..058dd8e
--- /dev/null
+++ b/lib/extra/base/char_unicode.li
@@ -0,0 +1,377 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := Expanded CHAR_UNICODE; // Deprecated : Convert UTF8 
+
+  - export := UINTEGER_16;
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Static Unicode Character library .";
+
+  - type    := `unsigned short`;
+  - default := '\0';
+  
+Section Insert
+  
+  - parent_character_ref:CHARACTER_REF := CHARACTER_REF;
+  
+Section Public
+    
+  - in_range low:CHAR_UNICODE to up:CHAR_UNICODE :BOOLEAN <- ((Self >= low) && {Self<= up});
+  
+  //
+  // General :
+  //
+  
+  - object_size:INTEGER := 2;
+
+  - pointer_size:INTEGER := 1;
+  
+  - maximum:INTEGER := 0FFFFh;
+  
+  - minimum:INTEGER := 0;
+  
+  //  - '==' other:CHAR_UNICODE :BOOLEAN <- (code == other.code); BSBS=> JBJB A revoir
+/* BSBS: JBJB a revoir ??
+  - code:UINTEGER_16 <-
+  // Unicode code of Current.
+  ( + result:UINTEGER_16;
+    result:=to_uinteger_16;
+    result
+  );
+*/  
+  - to_uinteger_16:UINTEGER_16 <- UINTEGER_16.force_conversion Self;
+  // Auto-cast
+  
+  //  - print <- to_uinteger_16.print; BSBS-> JBJB a revoir !!
+  
+  - to_integer:INTEGER <-
+  // Sign-extended conversion.
+  ( + result:INTEGER;
+    result:=code.to_integer;
+    ? {result.in_range (INTEGER_8.minimum) to (INTEGER_8.maximum)};
+    result
+  );
+  
+  - code:INTEGER_8 <-
+  // ASCII code of Current.
+  // No Sign-extended conversion.
+  ( + result:INTEGER_8;
+    result:=to_integer_8;
+    //? {result.in_range minimum to maximum};
+    result
+  );
+  
+  //
+  // Print.
+  //
+  
+  - print <- IO.put_character Self;
+  
+  //
+  // Switch case :
+  //
+  
+  - when value:CHAR_UNICODE then block:BLOCK :CHAR_UNICODE <-
+  (
+    (Self=value).if block;
+    Self
+  );
+  
+  - when first_value:CHAR_UNICODE to last_value:CHAR_UNICODE then block:BLOCK :CHAR_UNICODE <-
+  ( ? {first_value<=last_value};
+    
+    ((Self>=first_value) && {Self<=last_value}).if block;
+    Self
+  );
+  
+  //
+  // Binary operator :
+  //
+  
+  - Self:SELF '+' other:CHAR_UNICODE :CHAR_UNICODE <- (code+other.code).to_character;
+  
+  - Self:SELF '-' other:CHAR_UNICODE :CHAR_UNICODE <- (code-other.code).to_character;
+  
+  - Self:SELF '!==' other:CHAR_UNICODE :BOOLEAN <- (code !== other.code);
+  // Comparison using `code'.
+  
+  - Self:SELF '==' other:CHAR_UNICODE :BOOLEAN <- (code == other.code);
+  // Comparison using `code'.
+  
+  - Self:SELF '<' other:CHAR_UNICODE :BOOLEAN <- ( code < other.code );
+  // Comparison using `code'.
+  
+  - Self:SELF '<=' other:CHAR_UNICODE :BOOLEAN <- ( code <= other.code );
+  // Comparison using `code'.
+  
+  - Self:SELF '>' other:CHAR_UNICODE :BOOLEAN <- ( code > other.code );
+  // Comparison using `code'.
+  
+  - Self:SELF '>=' other:CHAR_UNICODE :BOOLEAN <- ( code >= other.code );
+  // Comparison using `code'.
+  
+  - decimal_value:INTEGER <-
+  // Gives the value of a decimal digit.
+  ( + result:INTEGER;
+    ? {is_digit};
+    result := to_integer - 48;
+    ? {result.in_range 0 to 9};
+    result
+  );
+  
+  - binary_value:INTEGER <-
+  // Gives the value of a binary digit.
+  ( + result:INTEGER;
+    ? {is_binary_digit};
+    result := code - 48;
+    ? {result.in_range 0 to 1};
+    result
+  );
+  
+  - octal_value:INTEGER <-
+  // Gives the value of an octal digit.
+  ( + result:INTEGER;
+    ? {is_octal_digit};
+    result := code - 48;
+    ? {result.in_range 0 to 7};
+    result
+  );
+  
+  - hexadecimal_value:INTEGER <-
+  // Gives the value of an hexadecimal digit.
+  ( + result:INTEGER;
+    ? {is_hexadecimal_digit};
+    (code < 'A'.code).if {
+      result := code - 48;
+    }.elseif {code<'a'.code} then {
+      result := code - 55;
+    } else {
+      result := code - 87;
+    };
+    ? {result.in_range 0 to 15};
+    result
+  );
+  
+  - same_as other:CHAR_UNICODE :BOOLEAN <-
+  // Case insensitive comparison.
+  // No difference between upper/lower case letters.
+  ( + result:BOOLEAN;
+    (Self = other).if {
+      result:=TRUE;
+    } else {
+      code
+      .when 65 to 90 then {
+	result:=(code = (other.code - 32));
+      }
+      .when 97 to 122 then {
+	result:=(code = (other.code + 32));
+      };
+      ? {result ->> {(to_lower = other) | (to_upper = other)}};
+    };
+    result
+  );
+  
+  - to_upper:CHAR_UNICODE <-
+  // Conversion to the corresponding upper case.
+  ( + result:CHAR_UNICODE;
+    ((code < 97) || {code > 122}).if {
+      result := Self;
+    } else {
+      result := (code - 32).to_character;
+    };
+    result
+  );
+  
+  - to_lower:CHAR_UNICODE <-
+  // Conversion to the corresponding lower case.
+  ( + result:CHAR_UNICODE;
+    ((code < 65) || {code > 90}).if {
+      result := Self;
+    } else {
+      result := (code + 32).to_character;
+    };
+    result
+  );
+  
+  - is_letter:BOOLEAN <-
+  // Is it a letter ('a' .. 'z' or 'A' .. 'Z') ?
+  ( + result:BOOLEAN;
+    (Self >= 'a').if {
+      result := (Self <= 'z');
+    }.elseif {Self >= 'A'} then {
+      result := (Self <= 'Z');
+    };
+    ? {result = (in_range 'A' to 'Z' | in_range 'a' to 'z')};
+    result
+  );
+  
+  - is_digit:BOOLEAN <-
+  // Belongs to '0'..'9'.
+  ( + result:BOOLEAN;
+    (Self >= '0').if {
+      result := (Self <= '9');
+    };
+    ? {result = in_range '0' to '9'};
+    result
+  );
+  
+  - is_binary_digit:BOOLEAN <-
+  // Belongs to '0'..'1'.
+  ( + result:BOOLEAN;
+    result:= (Self = '0') || {Self = '1'};
+    ? {result = in_range '0' to '1'};
+    result
+  );
+  
+  - is_octal_digit:BOOLEAN <-
+  // Belongs to '0'..'7'.
+  ( + result:BOOLEAN;
+    (Self >= '0').if {
+      result := (Self <= '7');
+    };
+    ? {result = in_range '0' to '7'};
+    result
+  );
+  
+  - is_hexadecimal_digit:BOOLEAN <-
+  // Is it one character of "0123456789abcdefABCDEF" ?
+  ( + result:BOOLEAN;
+    (is_digit).if {
+      result := TRUE;
+    }.elseif {Self >= 'a'} then {
+      result := (Self <= 'f');
+    }.elseif {Self >= 'A'} then {
+      result := (Self <= 'F');
+    };
+    ? {result = ("0123456789abcdefABCDEF".has Self)};
+    result
+  );
+  
+  - is_lower:BOOLEAN <-
+  // Is it some lowercase letter ('a'..'z')?
+  ( + result:BOOLEAN;
+    (Self >= 'a').if {
+      result:=(Self <= 'z');
+    };
+    result
+  );
+  
+  - is_upper:BOOLEAN <-
+  // Is it some uppercase letter ('A'..'Z')?
+  ( + result:BOOLEAN;
+    (Self >= 'A').if {
+      result:=(Self <= 'Z');
+    };
+    result
+  );
+  
+  - is_separator:BOOLEAN <-
+  // True when character is a separator.
+  (
+    (Self= ' ') || {Self = '\t'} || {Self='\n'} ||
+    {Self='\r'} || {Self = '\0'} || {Self='\f'} || {Self='\v'}
+  );
+  
+  - is_letter_or_digit:BOOLEAN <-
+  // Is it a letter (see `is_letter') or a digit (see `is_digit') ?
+  ( + result:BOOLEAN;
+    result := (is_letter || {is_digit});
+    ? {result = (is_letter | is_digit)};
+    result
+  );
+  
+  - is_ascii:BOOLEAN := TRUE;
+  // Is character a 8-bit ASCII character?
+  
+  - is_bit:BOOLEAN <- ((Self='0') || {Self='1'});
+  // True for `0' and `1'.
+  
+  - next:CHAR_UNICODE <-
+  // Give the next character (the following `code');
+  ( ? {code<255};
+    (code + 1).to_character
+  );
+  
+  - previous:CHAR_UNICODE <-
+  // Give the previous character (the `code' before);
+  ( ? {code > 0};
+    (code - 1).to_character
+  );
+  
+  //
+  // Conversions:
+  //
+  
+  - to_hexadecimal:STRING <-
+  // Create a new STRING giving the `code' in hexadecimal.
+  // For example :
+  //    (255).to_character.to_hexadecimal gives "FF".
+  // Note: see `to_hexadecimal_in' to save memory.
+  ( + result:STRING;
+    string:=STRING.make 2;
+    to_hexadecimal_in result;
+    ? {result.count = 2};
+    result
+  );
+  
+  - to_hexadecimal_in str:STRING <-
+  // Append the equivalent of `to_hexadecimal' at the end of
+  // `str'. Thus you can save memory because no other
+  // STRING is allocate for the job.
+  ( + c, old_count:INTEGER;
+    
+    old_count:=str.count;
+    c := code >> 4;
+    (c<10).if {
+      str.extend (('0'.code + c).to_character);
+    } else {
+      str.extend (('A'.code - 10 + c).to_character);
+    };
+    c := code & 00001111b;
+    (c<10).if {
+      str.extend (('0'.code + c).to_character);
+    } else {
+      str.extend (('A'.code - 10 + c).to_character);
+    };
+    ? {str.count = (2 + old_count)};
+  );
+  
+  //
+  // Miscellaneous:
+  //
+  
+  - is_alpha:BOOLEAN <-
+  // See `is_letter' (yes this is just a call to `is_letter').
+  // Isn't `is_letter' better English ;-)
+  ( + result:BOOLEAN;
+    result := is_letter;
+    ? {result = is_letter};
+    result
+  );
+  
+  //
+  // Hashing :
+  //
+  
+  - hash_code: INTEGER <- code;
diff --git a/lib/extra/base/enum.li b/lib/extra/base/enum.li
new file mode 100644
index 0000000..12434f8
--- /dev/null
+++ b/lib/extra/base/enum.li
@@ -0,0 +1,101 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name := Expanded ENUM;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  //  HOWTO
+  //  =====
+  //
+  //Section Header
+  //
+  //    + name := Expanded MY_ENUM;
+  //
+  //    - import := INTEGER;
+  //    - export := INTEGER;
+  //
+  //    - type := `int`;
+  //
+  //  Section Insert
+  //
+  //    - parent_enum :Expanded ENUM;
+  //
+  //  Section Public
+  //
+  //    - val1 :MY_ENUM := create;
+  //    - val2 :MY_ENUM := create;
+  //    ...
+
+Section Insert
+
+  - parent_integer:INTEGER;
+
+Section SELF
+
+  + min :INTEGER := 0;
+  + max :INTEGER := -1;
+
+  - create :SELF <- create_after;
+
+  - create_before :SELF <-
+  (
+    min := min - 1;
+    min
+  );
+
+  - create_after :SELF <-
+  (
+    max := max + 1;
+    max
+  );
+
+  - create_code i:INTEGER :SELF <-
+  ( + res :SELF;
+    (max - min < 0).if {
+      min := i;
+      max := i;
+    } else {
+      (i < min).if { min := i };
+      (i > max).if { max := i };
+    };
+    i
+  );
+
+  - is_valid i:INTEGER :BOOLEAN <- i.in_range min to max;
+
+  - from_integer i:INTEGER :SELF <-
+  (
+    ? { is_valid i };
+    CONVERT(INTEGER,SELF).on i
+  );
+
+  - to_integer :INTEGER <-
+  ( 
+    CONVERT(SELF,INTEGER).on Self
+  );
+
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/extra/base/tools.li b/lib/extra/base/tools.li
new file mode 100644
index 0000000..e448da7
--- /dev/null
+++ b/lib/extra/base/tools.li
@@ -0,0 +1,57 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := TOOLS;
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+    
+  - comment := "Miscellaneous Tools";
+
+  - external := `#include <time.h>`;
+  
+Section Public
+  
+  - unicode_to_ascii uni:FAST_ARRAY(CHAR_UNICODE) to asc:FAST_ARRAY(CHARACTER) <-
+  ( + i:INTEGER;
+    {uni.item i != 0}.while_do {
+      asc.put ((uni.item i & 0FFh).to_uinteger_8) to i;
+      i := i + 1;
+    };
+    asc.put 0 to i;    
+  );
+
+  - ascii_to_unicode asc:FAST_ARRAY(CHARACTER) to uni:FAST_ARRAY(CHAR_UNICODE) <-
+  ( + i:INTEGER;
+    {asc.item i != 0}.while_do {
+      uni.put (asc.item i) to i;
+      i := i + 1;
+    };
+    uni.put 0 to i;    
+  );
+
+  - bench b:{} :REAL_32 <-
+  ( + ts:REAL_32;
+
+    ts := `clock()`:REAL_32;
+    b.value;
+    ((`clock()`:REAL_32 - ts) / `CLOCKS_PER_SEC`:REAL_32)
+  );
diff --git a/lib/extra/graphics/bitmap.li b/lib/extra/graphics/bitmap.li
new file mode 100644
index 0000000..7016b58
--- /dev/null
+++ b/lib/extra/graphics/bitmap.li
@@ -0,0 +1,168 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := BITMAP(E);
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "Generic Bitmap.";
+
+Section Inherit
+  
+  + parent_abstract_bitmap:Expanded ABSTRACT_BITMAP;
+  
+Section Private  
+  
+  + image:FAST_ARRAY(BMP_LINE(E));
+  
+Section Public
+  
+  - get_y_line y:INTEGER :ABSTRACT_BMP_LINE <-
+  (
+    image.item y
+  );
+  
+  //
+  // Data.
+  //
+  
+  - pixel_geometry:PIXEL <- E;
+  
+  //
+  // Creation. 
+  //
+
+  - make_size (w,h:INTEGER) <-
+  (
+    width  := w;
+    height := h;
+    //bytes_per_line:=(w * PIXEL_16.size + 7)>>3;
+    image := FAST_ARRAY(BMP_LINE(E)).create h;
+    0.to (image.upper) do { y:INTEGER;
+      image.put (BMP_LINE(E).create w) to y;
+    };
+    clipping_off;
+  );
+  
+  - make (w,h:INTEGER) at offset_begin:UINTEGER_32 bytes_per_line lx:INTEGER <-
+  ( + offset:UINTEGER_32;
+    
+    width  := w;
+    height := h;    
+    image := FAST_ARRAY(BMP_LINE(E)).create h;
+    offset:=offset_begin;
+    0.to (image.upper) do { y:INTEGER;
+      image.put (BMP_LINE(E).create w at offset) to y;
+      offset:=offset+lx;
+    };
+    clipping_off;
+  );
+
+  
+  //****************************************************************************
+  //*                               PutImage                                   *
+  //****************************************************************************
+  
+  - put_bitmap bmp:ABSTRACT_BITMAP to (x,y:INTEGER) <-
+  ( + x1,y1,x0,y0:INTEGER;
+    + y_src,x_src:INTEGER;
+    + line:ABSTRACT_BMP_LINE;
+
+    // JBJB A VOIR: SI H/W RECEVEUR < H/W BMP --> PLANTAGE !!!
+    x0 := x.max clip_x0;
+    y0 := y.max clip_y0;
+    x1 := (x + bmp.width -1).min clip_x1; 
+    y1 := (y + bmp.height-1).min clip_y1;
+    ((x0<=x1) && {y0<=y1}).if {
+      y_src := y0 - y;
+      x_src := x0 - x;
+      y0.to y1 do { y_dst:INTEGER;
+	line := bmp.get_y_line y_src;
+	line_h_hard (x0,y_dst) until x1 image line offset x_src;
+	y_src := y_src + 1;
+      };  
+    };
+  );
+
+  - put_bitmap bmp:ABSTRACT_BITMAP to (x,y:INTEGER) scale (scale_x,scale_y:REAL_16_16) <-
+  ( + x1,y1,x0,y0:INTEGER;
+    + y_src,x_src,x_tmp:REAL_16_16;
+    + line:ABSTRACT_BMP_LINE;
+    + col:UINTEGER_32;
+
+    x0 := x.max clip_x0;
+    y0 := y.max clip_y0;
+    x1 := (x + (bmp.width.to_real_16_16  / scale_x).to_integer -1).min clip_x1;
+    y1 := (y + (bmp.height.to_real_16_16 / scale_y).to_integer -1).min clip_y1;
+    ((x0<=x1) && {y0<=y1}).if {
+      x_src := (x0 - x).to_real_16_16 * scale_x;
+      y_src := (y0 - y).to_real_16_16 * scale_y;      
+      y0.to y1 do { y_dst:INTEGER;
+	line := bmp.get_y_line (y_src.to_integer);
+	x_tmp := x_src;
+	x0.to x1 do { x_dst:INTEGER;
+	  col := line.get_color (x_tmp.to_integer);
+	  pixel_hard (x_dst,y_dst) color col;
+	  x_tmp := x_tmp + scale_x;
+	};	
+	y_src := y_src + scale_y;
+      };  
+    };
+  );
+
+Section Public
+  
+  //
+  // Low level.
+  //   
+    
+  - pixel_hard (x,y:INTEGER) color col:UINTEGER_32 <-
+  ( 
+    //image.item y.put col to x;    
+    get_y_line y.put col to x;
+  );
+  
+  - line_h_hard (x0,y0:INTEGER) until x1:INTEGER color col:UINTEGER_32 <-
+  ( 
+    //image.item y.put col from x to x1;
+    get_y_line y0.put col from x0 to x1;
+  );
+    
+  - line_h_hard (x0,y0:INTEGER) until x1:INTEGER image line:ABSTRACT_BMP_LINE offset ofs:INTEGER <-
+  (     
+    //image.item y.put line offset ofs from x to x1;
+    get_y_line y0.put line offset ofs from x0 to x1;
+  );
+  
+  - get_pixel_hard (x,y:INTEGER) :PIXEL <-
+  (
+    //image.item y.item x
+    get_y_line y.item x
+  );
+
+  - get_color_hard (x,y:INTEGER) :UINTEGER_32 <-
+  (
+    //image.item y.item x
+    get_y_line y.get_color x
+  );
+  
\ No newline at end of file
diff --git a/lib/extra/graphics/bmp_line.li b/lib/extra/graphics/bmp_line.li
new file mode 100644
index 0000000..d00f904
--- /dev/null
+++ b/lib/extra/graphics/bmp_line.li
@@ -0,0 +1,211 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := BMP_LINE(E);
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Generic bitmap line";
+  
+Section Inherit
+  
+  + parent_abstract_bmp_line:Expanded ABSTRACT_BMP_LINE;
+  
+Section Private
+  
+  + storage:NATIVE_ARRAY(E);
+  
+Section Public
+  
+  //  
+  // Creation.
+  //
+  
+  - create n:INTEGER :SELF <-
+  ( + result:SELF;
+    ? {n>0};
+    
+    result:=clone;
+    result.make n;
+    
+    ? {result.count    = n};
+    ? {result.capacity = n};
+    result
+  );
+  
+  - make n:INTEGER <-
+  (
+    (n > capacity).if {
+      capacity := n;      
+      storage := NATIVE_ARRAY(E).create n;
+    };
+    upper := n - 1;
+  );
+
+  - create_with_capacity n:INTEGER :SELF <- 
+  // Warning : Not storage copy.
+  ( + result:SELF;
+    
+    result:=clone;
+    result.make_with_capacity n;
+    
+    ? {result.count    = 0};
+    ? {result.capacity = n};
+    result
+  );
+  
+  - make_with_capacity n:INTEGER <-
+  (
+    (n > capacity).if {
+      storage := NATIVE_ARRAY(E).create n;
+      capacity := n;
+    };
+    upper := -1;
+  );
+    
+  - create n:INTEGER at offset:UINTEGER_32 :SELF <- 
+  // Warning : Not storage copy.
+  ( + result:SELF;
+    
+    result:=clone;
+    result.make n at offset;
+    
+    ? {result.count    = n};
+    ? {result.capacity = n};
+    result
+  );
+  
+  - make n:INTEGER at offset:UINTEGER_32 <-
+  ( 
+    capacity := n;
+    upper    := n - 1;    
+    storage  := CONVERT(UINTEGER_32,NATIVE_ARRAY(E)).on offset;    
+  );
+  
+  - pixel_geometry:E;
+   
+  //
+  // Put.
+  //
+  
+  - put col:UINTEGER_32 to n:INTEGER <-
+  ( ? {n.in_range 0 to upper};    
+    item n.make col;    
+  );
+  
+  - put col:UINTEGER_32 from idx_begin:INTEGER to idx_end:INTEGER <-   
+  (  
+    E.make col;    
+    idx_begin.to idx_end do { n:INTEGER;
+      storage.put E to n;
+    };
+  );
+  
+  - put bmp:ABSTRACT_BMP_LINE offset ofs:INTEGER from idx_begin:INTEGER to idx_end:INTEGER <-
+  ( + offset:INTEGER;    
+    + bmp_self:SELF;
+    + col:UINTEGER_32;
+    ? {idx_begin <= idx_end};
+    ? {idx_begin >= 0};
+    ? {idx_end.in_range 0 to upper};
+    ? {ofs >= 0};    
+    ? {(ofs + (idx_end - idx_begin)) <= bmp.upper}; 
+        
+    offset := ofs;
+    bmp_self ?= bmp;
+    (bmp_self != NULL).if {
+      // Speed version.            
+      idx_begin.to idx_end do { n:INTEGER;
+	storage.put (bmp_self.item offset) to n;	
+	offset := offset + 1;
+      };
+    } else {
+      // Slow version (because conversion for each pixel)
+      idx_begin.to idx_end do { n:INTEGER;
+	col := bmp.get_color offset;				
+	item n.make col;	
+	offset := offset + 1;
+      };
+    };
+  );
+  
+  //
+  // Get.
+  //
+  
+  - get_color n:INTEGER :UINTEGER_32 <-
+  ( ? {n.in_range 0 to upper};    
+    item n.rgbcolor
+  );
+  
+  - item n:INTEGER :E <- storage.item n;
+  
+  - item_8  n:INTEGER :PIXEL_8  <- item n.to_pixel_8;
+  
+  - item_15 n:INTEGER :PIXEL_15 <- item n.to_pixel_15;
+
+  - item_16 n:INTEGER :PIXEL_16 <- item n.to_pixel_16;
+
+  - item_24 n:INTEGER :PIXEL_24 <- item n.to_pixel_24;
+
+  - item_32 n:INTEGER :PIXEL_32 <- item n.to_pixel_32;
+  
+  //
+  // Arrayed consideration.
+  //
+  
+  - get_storage:NATIVE_ARRAY(UINTEGER_8) <- 
+  CONVERT(NATIVE_ARRAY(E),NATIVE_ARRAY(UINTEGER_8)).on storage;
+  
+  - element_sizeof:INTEGER <- pixel_geometry.object_size;
+
+  - valid_stream s:INTEGER :BOOLEAN <- (s % element_sizeof)=0;
+  
+  + ofs_buf:INTEGER;
+  
+  - add_last_buffer buf:FAST_ARRAY(UINTEGER_8) from beg:INTEGER to end:INTEGER <-
+  ( + pos:INTEGER;
+    
+    // BSBS: Peu faire mieux directement avec les storages...
+    pos := count * element_sizeof + ofs_buf;
+    beg.to end do { j:UINTEGER_32;
+      get_storage.put (buf.item j) to pos;
+      ofs_buf := (ofs_buf + 1) % element_sizeof;
+      (ofs_buf=0).if {
+	? {count < capacity};
+	upper := upper + 1;	
+      };
+      pos := pos + 1;
+    };
+  );
+  
+  //
+  // Arrayed consideration.
+  //
+  
+  - set_capacity new_capacity:INTEGER <-  
+  (
+    make_with_capacity new_capacity;
+  );
+
+  
\ No newline at end of file
diff --git a/lib/extra/graphics/edge.li b/lib/extra/graphics/edge.li
new file mode 100644
index 0000000..e6a3059
--- /dev/null
+++ b/lib/extra/graphics/edge.li
@@ -0,0 +1,232 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := EDGE;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "Sub prototype for BITMAP.polygone";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;  
+  
+Section Public
+  
+  // Make.
+  
+  + y:INTEGER;
+  + x:INTEGER;   
+  
+  + width:INTEGER;
+  + dx:INTEGER;  // REAL_24_8
+  
+  + is_down:BOOLEAN;
+  + is_point:BOOLEAN;
+  
+  - x0:INTEGER <- x;
+  - y0:INTEGER <- y;
+  - x1:INTEGER <- dx;
+  - y1:INTEGER <- width;
+  
+  + next_y:EDGE;
+    
+  + prev_x:EDGE;  // doubly linked list
+  + next_x:EDGE;
+  
+  //
+  // Function.
+  // 
+  
+  - make (xx,yy:INTEGER) add inc:INTEGER <-
+  // Flat.
+  (    
+    next_y   := NULL;
+    is_point := TRUE;
+    dx       := inc;    
+    width    := 0;
+    x := xx;
+    y := yy;
+  );
+  
+  - make (xx,yy:INTEGER) to (xx1,yy1:INTEGER) <-
+  // Line.
+  ( 
+    next_y   := NULL;
+    is_point := FALSE;
+    (is_down := yy < yy1).if {
+      // Down.
+      y  := yy;
+      x  := xx;            
+      dx := xx1;
+      width := yy1;
+    } else {
+      // up.
+      y  := yy1;
+      x  := xx1;            
+      dx := xx;
+      width := yy;
+    };
+  );
+      
+  - set_next_x new:EDGE <-
+  (
+    next_x:=new;
+  );
+
+  - set_prev_x new:EDGE <-
+  (
+    prev_x:=new;
+  );
+  
+  - set_next_y new:EDGE <-
+  (
+    next_y := new;
+  );
+  
+  - add old_root:EDGE :EDGE <-
+  // Double link and sort with X.
+  ( + pos,prv:EDGE;
+    + new_root:EDGE;    
+    
+    to_run;
+    pos:=old_root;
+    {(pos!=NULL) && {(pos.x<x) || {(pos.x=x) && {pos.dx<dx}} } }.while_do {
+      prv := pos;
+      pos := pos.next_x;
+    };
+    next_x := pos;
+    prev_x := prv;
+    (next_x != NULL).if {
+      next_x.set_prev_x Self;
+    };
+    (prev_x!=NULL).if {
+      prev_x.set_next_x Self;
+      new_root:=old_root;
+    } else {
+      new_root:=Self;
+    };
+    
+    new_root
+  );
+    
+  - next_line old_root:EDGE :EDGE <-
+  // Remove double link.
+  ( + new_root:EDGE;
+    
+    (next_y = NULL).if {
+      // Remove
+      (next_x!=NULL).if {
+	next_x.set_prev_x prev_x;
+      };
+      (prev_x!=NULL).if {
+	prev_x.set_next_x next_x;
+	new_root:=old_root;
+      } else {
+	new_root:=next_x;
+      };
+    } else {
+      // Replace next_y
+      next_y.to_run;
+      next_y.set_next_x next_x;
+      next_y.set_prev_x prev_x;
+      (next_x!=NULL).if {
+	next_x.set_prev_x next_y;
+      };
+      (prev_x!=NULL).if {
+	prev_x.set_next_x next_y;
+	new_root:=old_root;
+      } else {
+	new_root:=next_y;
+      };
+    };
+    new_root
+  );
+  
+  - new_step <-
+  (
+    width:=width-1;
+    x:=x+dx;
+  );
+  
+Section Private  
+  
+  - to_run <-
+  ( + dy:INTEGER; 
+    
+    (is_point).if {
+      // Point (Flat)
+      x := x0 << 8;
+    } else {
+      // Line
+      dy := y1 - y0;
+      dx := ((x1 - x0)<<8) / dy;
+      x  := x0 << 8; 
+        
+      (next_y = NULL).if {
+	width := dy;
+      } else {
+	width := dy - 1;
+      };      
+    };
+  );
+  
+  - display <-
+  (
+    '{'.print;
+    x0.print;
+    ','.print;
+    y0.print;
+    '-'.print;
+    x1.print;
+    ','.print;
+    y1.print;    
+    '}'.print;
+  );
+
+  - display_2 <-
+  (
+    '{'.print;      
+    (x>>8).print;
+    ','.print;
+    y.print;
+    'W'.print;
+    width.print;
+    'D'.print;
+    dx.print;    
+    'N'.print;
+    (next_y=NULL).if {
+      "null".print;
+    } else {
+      "=>".print;
+    };
+    '@'.print;
+    INTEGER.force_conversion Self .print;
+    '}'.print;
+  );
+
+
+
+
+
+
diff --git a/lib/extra/graphics/format/ai/ai_alias.li b/lib/extra/graphics/format/ai/ai_alias.li
new file mode 100644
index 0000000..45e1983
--- /dev/null
+++ b/lib/extra/graphics/format/ai/ai_alias.li
@@ -0,0 +1,139 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := AI_ALIAS;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     :="Alias for Adobe Illustrator format.";
+  
+  - version := 1;  
+  
+Section Inherit  
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - list:HASHED_SET(ABSTRACT_STRING);
+  
+  //
+  // Aliases keywords
+  //
+  
+  // Symbol
+  
+  - start_comment:STRING_CONSTANT      := "%%";
+  
+  - start_comment_more:STRING_CONSTANT := "%%+";
+    
+  - prefix_file:STRING_CONSTANT        := "%!PS-Adobe-2.0 EPSF-1.2";
+
+  - bounding_box:STRING_CONSTANT       := "%%BoundingBox:";
+
+  - end_prolog:STRING_CONSTANT         := "%%EndProlog";
+  
+  - end_comments:STRING_CONSTANT       := "%%EndComments";  
+  
+  - begin_procset:STRING_CONSTANT      := "%%BeginProcset:";
+  
+  - begin_setup:STRING_CONSTANT        := "%%BeginSetup";
+  
+  - end_setup:STRING_CONSTANT          := "%%EndSetup";
+  
+  - adobe_illustrator:STRING_CONSTANT  := "Adobe_Illustrator_";
+  
+  - begin:STRING_CONSTANT              := "begin";
+  
+  - begin_encoding:STRING_CONSTANT     := "%%BeginEncoding:";
+  
+  - end_encoding:STRING_CONSTANT       := "%%EndEncoding";
+  
+  - begin_pattern:STRING_CONSTANT      := "%%BeginPattern";
+  
+  - end_pattern:STRING_CONSTANT        := "%%EndPattern";
+  
+  - note:STRING_CONSTANT               := "%%Note:";
+  
+  - include_file:STRING_CONSTANT       := "%%IncludeFile:";
+  
+  - trailer:STRING_CONSTANT            := "%%Trailer";
+  
+  - initialize:STRING_CONSTANT         := "/initialize get exec";
+  
+  - terminate:STRING_CONSTANT          := "/terminate get exec";
+  
+  - end:STRING_CONSTANT                := "_E end";
+    
+  //
+  // Function
+  //
+  
+  - make <-
+  (
+    list := HASHED_SET(ABSTRACT_STRING).create;
+    // Symbol    
+    list.add start_comment;      
+    list.add start_comment_more; 
+    //
+    list.add prefix_file;
+    list.add bounding_box;    
+    list.add end_prolog;            
+    list.add end_comments;      
+    list.add begin_procset;    
+    list.add begin_setup;      
+    list.add end_setup;        
+    list.add adobe_illustrator;
+    list.add begin;            
+    list.add begin_encoding;   
+    list.add end_encoding;     
+    list.add begin_pattern;    
+    list.add end_pattern;      
+    list.add note;             
+    list.add include_file;     
+    list.add trailer;          
+    list.add initialize;  
+    list.add terminate;        
+    list.add end;
+  );
+  
+  - get str:ABSTRACT_STRING :STRING_CONSTANT <-
+  ( + result:STRING_CONSTANT;
+    + tmp:ABSTRACT_STRING;
+    ? {str != NULL};
+    
+    tmp := list.reference_at str;
+    (tmp = NULL).if {
+      result := STRING_CONSTANT.create_copy str;
+      list.add result;
+    } else {
+      result ?= tmp;
+    };
+    result
+  );
+  
+  
+  
+
+
+
diff --git a/lib/extra/graphics/format/ai/ai_bezier.li b/lib/extra/graphics/format/ai/ai_bezier.li
new file mode 100644
index 0000000..a4acd2c
--- /dev/null
+++ b/lib/extra/graphics/format/ai/ai_bezier.li
@@ -0,0 +1,121 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := AI_BEZIER;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+
+  - comment := "Operation: bezier";
+  - version := 1;  
+  
+Section Inherit
+  
+  - parent_ai_operation:AI_OPERATION := AI_OPERATION;
+  
+Section Public
+  
+  + wx1:REAL_16_16;
+  + wy1:REAL_16_16;
+  
+  + wx2:REAL_16_16;
+  + wy2:REAL_16_16;
+  
+  + x:REAL_16_16;
+  + y:REAL_16_16;
+  
+  //
+  // Creation.
+  //
+  
+  - create_w1 (lx1,ly1:REAL_16_16) w2 (lx2,ly2:REAL_16_16) to (lx3,ly3:REAL_16_16) :SELF <-
+  (+ result:SELF;
+    result := SELF.clone;
+    result.make_w1 (lx1,ly1) w2 (lx2,ly2) to (lx3,ly3);
+    result    
+  );
+  
+  - make_w1 (lx1,ly1:REAL_16_16) w2 (lx2,ly2:REAL_16_16) to (lx3,ly3:REAL_16_16) <-
+  (
+    wx1 := lx1;
+    wy1 := ly1;
+    wx2 := lx2;
+    wy2 := ly2;
+    x   := lx3;
+    y   := ly3;
+  );
+  
+  //
+  // Draw
+  //
+
+  - draw_stroke b:ABSTRACT_BITMAP scale s:REAL_16_16 <-
+  ( + i_wx1,i_wy1,i_wx2,i_wy2,i_x,i_y:INTEGER;
+    
+    i_wx1 := (wx1 * s).rounded;
+    i_wy1 := (wy1 * s).rounded;
+    
+    i_wx2 := (wx2 * s).rounded;
+    i_wy2 := (wy2 * s).rounded;
+    
+    i_x   := (x * s).rounded;
+    i_y   := (y * s).rounded;
+    b.spline_w1 (i_wx1,i_wy1) w2 (i_wx2,i_wy2) to (i_x,i_y);
+  ); 
+
+  - draw_fill b:ABSTRACT_BITMAP scale s:REAL_16_16 <-
+  ( + i_wx1,i_wy1,i_wx2,i_wy2,i_x,i_y:INTEGER;
+    
+    i_wx1 := (wx1 * s).rounded;
+    i_wy1 := (wy1 * s).rounded;
+    
+    i_wx2 := (wx2 * s).rounded;
+    i_wy2 := (wy2 * s).rounded;
+    
+    i_x   := (x * s).rounded;
+    i_y   := (y * s).rounded;
+    b.poly_spline_w1 (i_wx1,i_wy1) w2 (i_wx2,i_wy2) to (i_x,i_y);
+  ); 
+
+  //  
+  // Display.
+  //
+  
+  - display <-
+  (  
+    "poly_spline_w1 ".print;
+    (wx1 *# 8).rounded.print;
+    ','.print;
+    (wy1 *# 8).rounded.print;
+    " w2 ".print;
+    (wx2 *# 8).rounded.print;
+    ','.print;
+    (wy2 *# 8).rounded.print;
+    " to ".print;
+    (x *# 8).rounded.print;
+    ','.print;
+    (y *# 8).rounded.print;
+    ";\n".print;
+  );
+
+
+
diff --git a/lib/extra/graphics/format/ai/ai_color.li b/lib/extra/graphics/format/ai/ai_color.li
new file mode 100644
index 0000000..6dc1e80
--- /dev/null
+++ b/lib/extra/graphics/format/ai/ai_color.li
@@ -0,0 +1,103 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := AI_COLOR;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Color of .AI document.";
+
+  - version := 1;  
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Private  
+  
+  - gray_to_rgb g:REAL_16_16 :UINTEGER_32 <-
+  ( + tmp:UINTEGER_32;
+    
+    tmp := (g *# 255).to_integer;
+    (tmp << 16) | (tmp << 8) | tmp
+  );
+  
+  - cmyk_to_rgb (c,m,y,k:REAL_16_16) :UINTEGER_32 <-
+  ( + r,g,b:UINTEGER_32;
+    r   := ((- (c + k).min 1 + 1).max 0 *# 255).to_integer;
+    g   := ((- (m + k).min 1 + 1).max 0 *# 255).to_integer;
+    b   := ((- (y + k).min 1 + 1).max 0 *# 255).to_integer;           
+    (r << 16) | (g << 8) | b
+  );
+  
+Section Public
+  
+  + rgbcolor_fill  :UINTEGER_32;
+  + rgbcolor_stroke:UINTEGER_32;
+  
+  //
+  // GRAY
+  //
+    
+  - make_gray_stroke g:REAL_16_16 <-
+  ( 
+    rgbcolor_stroke := gray_to_rgb g;
+  );
+  
+  - make_gray_fill g:REAL_16_16 <-
+  ( 
+    rgbcolor_fill := gray_to_rgb g;
+  );
+  
+  //
+  // CMYK
+  //
+  
+  - make_cmyk_stroke (c,m,y,k:REAL_16_16) <-
+  (
+    rgbcolor_stroke := cmyk_to_rgb (c,m,y,k);
+  );
+  
+  - make_cmyk_fill (c,m,y,k:REAL_16_16) <-
+  ( 
+    rgbcolor_fill := cmyk_to_rgb (c,m,y,k);
+  );
+  
+  //
+  // CMYK + GRAY
+  //
+
+  - make_cmykg_stroke (c,m,y,k,g:REAL_16_16) <-
+  (
+    make_cmyk_stroke (c,m,y,k);
+  );
+  
+  - make_cmykg_fill (c,m,y,k,g:REAL_16_16) <-
+  (
+    make_cmyk_fill (c,m,y,k);
+  );
+
+
+
+
+
diff --git a/lib/extra/graphics/format/ai/ai_file.li b/lib/extra/graphics/format/ai/ai_file.li
new file mode 100644
index 0000000..384722f
--- /dev/null
+++ b/lib/extra/graphics/format/ai/ai_file.li
@@ -0,0 +1,62 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := AI_FILE;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Adobe Illustrator File";
+    
+Section Inherit
+  
+  + parent_std_file:Expanded FILE;
+
+Section Public
+
+  + width:INTEGER;
+
+  + height:INTEGER;
+
+  - fill_bitmap f:FILE in b:ABSTRACT_BITMAP scale s:REAL_16_16 <-
+  ( + tmp_buf:FAST_ARRAY(CHARACTER);
+    + ai_parser:AI_PARSER;
+    
+    tmp_buf := FAST_ARRAY(CHARACTER).create_with_capacity (f.size);
+    f.read tmp_buf size (f.size);
+    ai_parser := AI_PARSER.create tmp_buf;
+    width  := ai_parser.width;
+    height := ai_parser.height;
+    ai_parser.draw b scale s;
+  );  
+  
+  - is_type n:ABSTRACT_STRING :BOOLEAN <-
+  // Return true if the file name has '.ai' or '.AI' suffix
+  (
+    ? {n != NULL};
+    ? {! n.is_empty};
+    (n.has_suffix ".ai") || { n.has_suffix ".AI"}
+  );
+  
+
+
+
diff --git a/lib/extra/graphics/format/ai/ai_layer.li b/lib/extra/graphics/format/ai/ai_layer.li
new file mode 100644
index 0000000..3d0133b
--- /dev/null
+++ b/lib/extra/graphics/format/ai/ai_layer.li
@@ -0,0 +1,96 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := AI_LAYER;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Layer of a AI document.";
+
+  - version := 1;    
+  
+Section Inherit  
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  + color:AI_COLOR;
+  
+  + operation:LINKED_LIST(AI_OPERATION);
+  
+  + is_fill:BOOLEAN;
+  
+  + is_stroke:BOOLEAN;
+      
+  //
+  // Creation.
+  //
+  
+  - create lst_op:LINKED_LIST(AI_OPERATION) color col:AI_COLOR fill f:BOOLEAN stroke s:BOOLEAN :SELF <-
+  ( + result:SELF;
+    result := clone;
+    result.make lst_op color col fill f stroke s;
+    result
+  );
+  
+  - make lst_op:LINKED_LIST(AI_OPERATION) color col:AI_COLOR fill f:BOOLEAN stroke s:BOOLEAN <-
+  (
+    color     := col;
+    operation := lst_op;
+    is_stroke := s;
+    is_fill   := f;
+  );
+  
+  //
+  // Draw
+  //
+  
+  - draw b:ABSTRACT_BITMAP scale s:REAL_16_16 <-
+  (
+    ? { color != NULL};
+    ? { operation !=  NULL};
+    
+    /*
+    (operation.lower).to (operation.upper) do { i:INTEGER;      
+      operation.item i.display; 
+    };
+    */
+
+    is_fill.if {      
+      b.color (color.rgbcolor_fill);
+      (operation.lower).to (operation.upper) do { i:INTEGER;
+	operation.item i.draw_fill b scale s;
+      };
+      b.poly_trace;
+    };
+    is_stroke.if {
+      b.color (color.rgbcolor_stroke);
+      (operation.lower).to (operation.upper) do { i:INTEGER;
+	operation.item i.draw_stroke b scale s;
+      };
+    };
+
+  );
+  
+
diff --git a/lib/extra/graphics/format/ai/ai_line.li b/lib/extra/graphics/format/ai/ai_line.li
new file mode 100644
index 0000000..5407eda
--- /dev/null
+++ b/lib/extra/graphics/format/ai/ai_line.li
@@ -0,0 +1,87 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := AI_LINE;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Operation: line.";
+
+  - version := 1;  
+  
+Section Inherit
+  
+  - parent_ai_operation:AI_OPERATION := AI_OPERATION;
+  
+Section Public
+  
+  + x:REAL_16_16;  
+  + y:REAL_16_16;
+  
+  //
+  // Creation.
+  //
+  
+  - create (lx,ly:REAL_16_16) :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make (lx,ly);
+    result
+  );
+  
+  - make (lx,ly:REAL_16_16) <-
+  (
+    x := lx;
+    y := ly;
+  );
+  
+  //
+  // Draw.
+  //
+  
+  - draw_stroke b:ABSTRACT_BITMAP scale s:REAL_16_16 <-
+  (
+    b.line_to (((x * s).rounded),((y * s).rounded));
+  );
+
+  - draw_fill b:ABSTRACT_BITMAP scale s:REAL_16_16 <-
+  (
+    b.poly_line_to (((x * s).rounded),((y * s).rounded));
+  );
+  
+  //
+  // Display.
+  //
+  
+  - display <-
+  (
+    "poly_line_to ".print;
+    (x *# 8).rounded.print;
+    ','.print;
+    (y *# 8).rounded.print;
+    ";\n".print;
+  );
+
+
+
+
diff --git a/lib/extra/graphics/format/ai/ai_move.li b/lib/extra/graphics/format/ai/ai_move.li
new file mode 100644
index 0000000..5c1cad7
--- /dev/null
+++ b/lib/extra/graphics/format/ai/ai_move.li
@@ -0,0 +1,87 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := AI_MOVE;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Operation: move.";
+  - version := 1;  
+  
+Section Inherit
+  
+  - parent_ai_operation:AI_OPERATION := AI_OPERATION;
+  
+Section Public
+  
+  + x:REAL_16_16;
+  + y:REAL_16_16;
+  
+  //
+  // Creation.
+  //
+  
+  - create (lx,ly:REAL_16_16) :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make (lx,ly);
+    result
+  );
+  
+  - make (lx,ly:REAL_16_16) <-
+  (
+    x := lx;
+    y := ly;
+  );
+  
+  //
+  // Draw.
+  //
+  
+  - draw_stroke b:ABSTRACT_BITMAP scale s:REAL_16_16 <-
+  (    
+    b.move_to (((x * s).rounded),((y * s).rounded));
+  );
+  
+  - draw_fill b:ABSTRACT_BITMAP scale s:REAL_16_16 <-
+  (    
+    b.poly_move_to (((x * s).rounded),((y * s).rounded));    
+  );
+  
+  //  
+  // Display.
+  //
+  
+  - display <-
+  (
+    "poly_move_to ".print;
+    (x *# 8).rounded.print;
+    ','.print;
+    (y *# 8).rounded.print;
+    ";\n".print;
+  );
+
+  
+
+
+
diff --git a/lib/extra/graphics/format/ai/ai_operation.li b/lib/extra/graphics/format/ai/ai_operation.li
new file mode 100644
index 0000000..2145447
--- /dev/null
+++ b/lib/extra/graphics/format/ai/ai_operation.li
@@ -0,0 +1,52 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := AI_OPERATION;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment :="Operations of .AI document.";
+
+  - version := 1;  
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  //
+  // Draw.
+  //
+  
+  - draw_stroke b:ABSTRACT_BITMAP scale s:REAL_16_16 <- deferred;
+
+  - draw_fill b:ABSTRACT_BITMAP scale s:REAL_16_16 <- deferred;
+  
+  //
+  // Display.
+  //
+  
+  - display <- deferred;
+
+
diff --git a/lib/extra/graphics/format/ai/ai_parser.li b/lib/extra/graphics/format/ai/ai_parser.li
new file mode 100644
index 0000000..7d78930
--- /dev/null
+++ b/lib/extra/graphics/format/ai/ai_parser.li
@@ -0,0 +1,1709 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := AI_PARSER;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     :="Startup system : First object.";
+  
+  - version := 1;  
+  
+Section Inherit  
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - msg_err:STRING;
+
+  - trace:BOOLEAN;
+  
+  + position:INTEGER;
+  
+  + source:FAST_ARRAY(CHARACTER);
+  
+  - string_tmp:STRING;
+  
+  - last_character:CHARACTER <-
+  ( + result:CHARACTER;
+    (position > source.upper).if {
+      result := 0.to_character;
+    } else {
+      result := source.item position;
+    };
+    result
+  );
+  
+  - end_source:BOOLEAN <-
+  (
+    last_character = 0.to_character
+  );
+  
+  - last_integer:INTEGER;
+  
+  - last_string:STRING_CONSTANT;
+  
+  - last_real_16_16:REAL_16_16;
+  
+  - last_flag:BOOLEAN;
+  
+  - is_new_line:BOOLEAN;
+  
+  - is_space:BOOLEAN <-
+  (
+    { last_character = ' '  } || { last_character = '\n' } ||
+    { last_character = '\t' } || { last_character = '\f' } ||
+    { last_character = '\a' } || { last_character = '\r' } ||
+    { last_character = '\b' } || { last_character = '\v' }
+  );
+  
+  - read_space:BOOLEAN <-
+  ( + old_pos:INTEGER;
+    old_pos := position;
+    { end_source || { ! is_space }}.until_do {
+      ( last_character = '\n' ).if {
+	is_new_line := TRUE;
+      };
+      position := position + 1;
+    };
+    (position < source.upper).if {
+      // Delete Comments except the first (type of the file)
+      (position > 1).if {
+	((last_character = '%') & (source.item (position + 1) != '%')).if {
+	  { end_source || { last_character = '\n' }}.until_do {
+	    position := position + 1;
+	  };
+	};
+      };
+    };
+    ((position != old_pos) | (! end_source ))
+  );
+    
+  - read_keyword s:STRING_CONSTANT :BOOLEAN <- 
+  ( + result:BOOLEAN;
+    + j,old_pos:INTEGER;
+    read_space;
+    j := s.lower;
+    old_pos := position;    
+    { end_source || { j > s.upper } || { last_character != s.item j }}.until_do {
+      j := j + 1;
+      position := position + 1;
+    };
+    (j > s.upper).if {      
+      result := TRUE;
+      
+      trace.if {
+	"\n----> Read Keyword: ".print;
+	s.print;
+	'\n'.print;
+      };
+      
+    } else {
+      position := old_pos;
+    };
+    result
+  );
+  
+  - read_identifier:BOOLEAN <-
+  ( + result:BOOLEAN;
+    read_space;
+    string_tmp.clear;
+    { end_source ||  {! ( last_character.is_letter || {last_character.is_digit} || {last_character = '_'} || {last_character = '-' })}}.until_do {
+      string_tmp.add_last last_character;
+      position := position + 1;
+    };    
+    //string_tmp.print;
+    (! string_tmp.is_empty).if {
+      last_string := AI_ALIAS.get string_tmp;
+      result := TRUE;
+    };
+    
+    trace.if {
+      "\n----> Read_Identifier: ".print;    
+      string_tmp.print;
+      '\n'.print;
+    };
+    
+    result
+  );
+  
+  - read_string:BOOLEAN <-
+  (+ result:BOOLEAN;
+    read_space;
+    string_tmp.clear;
+    { end_source || { last_character = '(' } || { last_character = ')' } || { last_character = '\n'}}.until_do {
+      string_tmp.add_last last_character;
+      position := position + 1;
+    };
+    (! string_tmp.is_empty).if {
+      last_string := AI_ALIAS.get string_tmp; 
+      result := TRUE;
+    };      
+    result    
+  );
+  
+  - read_flag:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    read_space;
+    (last_character = '0').if {
+      last_flag := FALSE;
+      result := TRUE;
+      position := position + 1;
+    }.elseif {last_character = '1' } then {
+      last_flag := TRUE;
+      result := TRUE;
+      position := position + 1;
+    };
+    
+    trace.if {
+      "\n----> Read Flag: ".print;
+      last_flag.to_string.print;
+      '\n'.print;
+    };
+    
+    result  
+  );
+  
+  - read_integer:BOOLEAN <-
+  ( + result:BOOLEAN;
+    + old_pos:INTEGER;        
+    read_space;
+    old_pos := position;
+    (last_character = '-').if {
+      string_tmp.add_last '-';
+      position := position + 1;
+      read_space;
+    };
+    last_character.is_digit.if {
+      result := TRUE;
+      string_tmp.clear;
+      string_tmp.add_last last_character;
+      position := position + 1;
+      { ! last_character.is_digit }.until_do {
+	string_tmp.add_last last_character;
+	position := position + 1;
+      };      
+      (last_character = '.').if {
+	// Real
+	result := FALSE;
+	position := old_pos;
+      } else {
+	last_integer := string_tmp.to_integer;
+      };
+    };
+    
+    trace.if {
+      "\n----> Read Integer: ".print;
+      last_integer.print;
+      '\n'.print;
+    };
+    
+    result    
+  );
+  
+  - read_real_16_16:BOOLEAN <-
+  ( + result:BOOLEAN;
+    + old_pos:INTEGER;
+    + find:BOOLEAN;
+    read_space;    
+    old_pos := position;
+    (last_character = '-').if {
+      string_tmp.add_last '-';
+      position := position + 1;
+      read_space;
+    };
+    (last_character = '.').if {
+      string_tmp.add_last '.';
+      position := position + 1;
+      find := TRUE;
+    };
+    last_character.is_digit.if {
+      result := TRUE;
+      string_tmp.clear;
+      string_tmp.add_last last_character;
+      position := position + 1;
+      { ! last_character.is_digit }.until_do {
+	string_tmp.add_last last_character;
+	position := position + 1;
+      };
+      (last_character = '.').if {
+	find.if {
+	  // Already read '.'
+	  result := FALSE;
+	  position := old_pos;
+	} else {
+	  string_tmp.add_last '.';
+	  position := position + 1;
+	  { ! last_character.is_digit }.until_do {
+	    string_tmp.add_last last_character;
+	    position := position + 1;
+	  };
+	};
+      };
+
+      last_real_16_16 := string_tmp.to_real_16_16;
+    };
+    
+    trace.if {
+      "\n----> Real: ".print;
+      last_real_16_16.print;
+      '\n'.print;
+    };
+    
+    result    
+  );
+  
+  - read_comment:BOOLEAN <-
+  (
+    { end_source || { last_character = '\n'} }.until_do {
+      position := position + 1; 
+    };
+    TRUE 
+  );
+
+  - read_character c:CHARACTER :BOOLEAN <- 
+  ( + result:BOOLEAN;
+    read_space;
+    (last_character = c).if {
+      position := position + 1;
+      result := TRUE;
+    };
+    result
+  );
+
+  //
+  // Error Management
+  // 
+  
+  - syntax_error txt:ABSTRACT_STRING <-
+  (
+    msg_err.clear;
+    msg_err.append "\n--SYNTAX-------\n";
+    msg_err.append txt;
+    msg_err.append " Line ";
+    msg_err.append (get_line.to_string);    
+    msg_err.print;
+    die_with_code exit_failure_code;
+  );
+  
+  - missing_keyword txt:ABSTRACT_STRING <-
+  (
+    msg_err.clear;
+    msg_err.append "\n--MISSING KEYWORD-------\n";
+    msg_err.append txt;
+    msg_err.append " Line ";
+    msg_err.append (get_line.to_string);
+    msg_err.print;
+    die_with_code exit_failure_code;
+  );
+  
+  - print_line <-
+  (
+    " Line ".print;
+    get_line.to_string.print;
+  );
+  
+  - get_line:INTEGER <-
+  ( + pos:INTEGER;
+    + line:INTEGER;
+    pos := source.lower;
+    line := 1;
+    {pos = position}.until_do {
+      (source.item pos = '\n').if {
+	line := line + 1;
+      };
+      pos := pos + 1;
+    };
+    line
+  );
+  
+  // Last read coordinates
+  - last_x:REAL_16_16;  
+  - last_y:REAL_16_16;
+    
+  // Current Point
+  - x_cur:REAL_16_16;
+  - y_cur:REAL_16_16;
+  
+Section Public
+  
+  + llx:REAL_16_16; // lower horizontal bound
+  + urx:REAL_16_16; // upper horizontal bound
+  + lly:REAL_16_16; // lower vertical bound
+  + ury:REAL_16_16; // upper vertical bound
+  
+  + width :INTEGER;  
+  + height:INTEGER;
+    
+  //
+  // Results
+  //
+  
+  + list_layer:LINKED_LIST(AI_LAYER);
+  
+  + current_list:LINKED_LIST(AI_OPERATION);
+  
+  + current_color:AI_COLOR;
+  
+  //
+  // Grammar Rules
+  //
+  
+  //++ DOCUMENT          -> PROLOGUE
+  //++                      SCRIPT  
+  - read_document <-
+  (     
+    trace.if {  
+      "\n Read Document".print;
+      print_line;
+    };
+    
+    (! read_prologue).if {
+      syntax_error "Wrong file format";
+    };
+    (! read_script).if {
+      syntax_error "Incorrect Script";            
+    };
+    
+    trace.if {  
+      "\n## End Read Document".print;
+      print_line;
+    };
+  );
+    
+  //++ PROLOGUE          -> '%!PS-Adobe-2.0 EPSF-1.2'
+  //++                      [ comment ]
+  //++                      '%%BoundingBox:'real real real real
+  //++                      [ comment ]
+  //++                      '%%EndProlog'  
+  - read_prologue:BOOLEAN <-
+  ( + result:BOOLEAN;   
+    
+    trace.if {  
+      "\n Read Prologue".print;
+      print_line;
+    };
+    
+    read_keyword (AI_ALIAS.prefix_file).if {
+      { read_keyword (AI_ALIAS.bounding_box) }.until_do {
+        read_comment;
+      };
+      (! read_real_16_16).if {
+        syntax_error "Missing llx";
+      };
+      llx := last_real_16_16;
+      (! read_real_16_16).if {
+        syntax_error "Missing lly";
+      };
+      lly := last_real_16_16;
+      (! read_real_16_16).if {
+        syntax_error "Missing urx";
+      };
+      urx := last_real_16_16;
+      (! read_real_16_16).if {
+        syntax_error "Missing ury";
+      };
+      ury := last_real_16_16;
+      
+      width  := (urx - llx).to_integer;
+      height := (ury - lly).to_integer + 1;
+      
+      { read_keyword (AI_ALIAS.end_prolog) }.until_do {
+        read_comment;
+      };
+      result := TRUE;
+    };
+
+    (trace && {result}).if {  
+      "\n## End Read Prologue".print;
+      print_line;
+    };
+        
+    result
+  );
+  
+  //++ SCRIPT            -> SETUP
+  //++                      SCRIPT_BODY
+  //++                      TRAILER  
+  - read_script:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Script".print;
+      print_line;
+    };
+    
+    read_setup.if {
+      (! read_script_body).if {
+        syntax_error "Incorrect Script Body";
+      };
+      (! read_trailer).if {
+        syntax_error "Incorrect Trailer";
+      };
+      result := TRUE;
+    }; 
+    
+    (trace && {result}).if {  
+      "\n## End Read Script".print;
+      print_line;
+    };   
+    
+    result
+  );
+  
+  //++ SETUP             -> '%%BeginSetup'
+  //++                      ['Adobe_illustrator_' real 'begin']
+  //++                      [PROC_SETS_INIT]
+  //++                      FONT_ENCODING
+  //++                      [PATTERN_DEFS]
+  //++                      '%%EndSetup'  
+  - read_setup:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Setup".print;
+      print_line;
+    };
+    
+    read_keyword (AI_ALIAS.begin_setup).if {
+      (read_keyword (AI_ALIAS.adobe_illustrator)).if {
+        (! read_real_16_16).if {
+          syntax_error "Wrong num version";
+        };
+        (! read_keyword (AI_ALIAS.begin)).if {
+          missing_keyword (AI_ALIAS.begin);
+        };
+      };
+      read_proc_sets_init;
+      (! read_font_encoding).if {
+        syntax_error "Incorrect font encoding";
+      };
+      read_pattern_defs;
+      (! read_keyword (AI_ALIAS.end_setup)).if {
+        missing_keyword (AI_ALIAS.end_setup);
+      };
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Setup".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ PROC_SETS_INIT    -> { INITIALIZE }
+  - read_proc_sets_init:BOOLEAN <-
+  (
+    
+    trace.if {  
+      "\n Read Proc Sets Init".print;
+      print_line;
+    };
+    
+    {read_initialize}.while_do { };
+    
+    trace.if {  
+      "\n## End Read Proc Sets Init".print;
+      print_line;
+    };
+    
+    TRUE
+  );
+  
+  //++ INITIALIZE        -> identifier '/initialize get exec'
+  - read_initialize:BOOLEAN <-
+  (+ result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Initialize".print;
+      print_line;
+    };
+    
+    read_identifier.if {
+      (! read_keyword (AI_ALIAS.initialize)).if {
+        missing_keyword (AI_ALIAS.initialize);
+      };
+      result := TRUE;
+    };
+
+    (trace && {result}).if {  
+      "\n Read Initialize".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ FONT_ENCODING     -> { RE_ENCODING }
+  - read_font_encoding:BOOLEAN <-
+  (    
+    trace.if {  
+      "\n Read Font Encoding".print;
+      print_line;
+    };
+    
+    { read_re_encoding }.while_do { };
+    
+    trace.if {  
+      "\n## End Read Font Encoding".print;
+      print_line;
+    };
+    
+    TRUE
+  );
+  
+  //++ RE_ENCODING       -> '%%BeginEncoding:' newfontname oldfontname
+  //++                      Z
+  //++                      '%%EndEncoding'
+  - read_re_encoding:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read ReEncoding".print;
+      print_line;
+    };
+    
+    read_keyword (AI_ALIAS.begin_encoding).if {
+      (! read_identifier).if {
+        syntax_error "Missing newfontname identifier";
+      };
+      (! read_identifier).if {
+        syntax_error "Missing oldfontname identifier";
+      };
+      (! read_upper_z).if {
+        syntax_error "Wrong syntax for Z operator";
+      };
+      (! read_keyword (AI_ALIAS.end_encoding)).if {
+        missing_keyword (AI_ALIAS.end_encoding);
+      };
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read ReEncoding".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ Z                 -> '['[NEW_ENCODING]']' '/' identifier '/' identifier integer 'Z'
+  - read_upper_z:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read upper Z".print;
+      print_line;
+    };
+    
+    read_character '['.if {
+      read_new_encoding;
+      (! read_character ']').if {
+        syntax_error "Mismatch Bracket";
+      };
+      (!read_character '/').if {
+        missing_keyword "/";
+      };
+      (! read_identifier).if {
+        syntax_error "Missing newfontname identifier";
+      };
+      (! read_character '/').if {
+        missing_keyword "/";
+      };
+      (! read_identifier).if {
+        syntax_error "Missing oldfontname identifier";
+      };
+      read_integer;
+      (! read_character 'Z').if {
+        missing_keyword "Z";
+      };
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read upper Z".print;
+      print_line;
+    };
+    
+    result                    
+  );
+  
+  //++ NEW_ENCODING      -> { integer '/' identifier { '/' identifier}}
+  - read_new_encoding:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read New Encoding".print;
+      print_line;
+    };
+    
+    { read_integer }.while_do {
+      (! read_character '/').if {
+        missing_keyword "/";
+      };
+      (! read_identifier).if {
+        syntax_error "Missing name identifier";
+      };
+      { read_character '/' }.while_do {
+        (! read_identifier).if {
+          syntax_error "Missing name identifier";
+        };
+      };
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read New Encoding".print;
+      print_line;
+    };
+    
+    result        
+  );  
+  
+  //++ PATTERN_DEFS      -> { PATTERN }
+  - read_pattern_defs:BOOLEAN <-
+  (    
+    trace.if {  
+      "\n Read Pattern Def".print;
+      print_line;
+    };
+    
+    { read_pattern }.while_do { };
+
+    trace.if {  
+      "\n## End Read Pattern Def".print;
+      print_line;
+    };
+    TRUE
+  );
+  
+  //++ PATTERN           -> '%%BeginPattern:' '('patternname')'
+  //++                      E
+  //++                      '%%EndPattern'
+  - read_pattern:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Pattern".print;
+      print_line;
+    };
+    
+    read_keyword (AI_ALIAS.begin_pattern).if {
+      (! read_character '(').if {
+        syntax_error "Mismatch parentheses";
+      };
+      (! read_identifier).if {
+        syntax_error "Missing pattername identifier";
+      };
+      (! read_character ')').if {
+        syntax_error "Mismatch parentheses";
+      };
+      (! read_upper_e).if {
+        syntax_error "Wrong syntax for E operator";
+      };
+      (! read_keyword (AI_ALIAS.end_pattern)).if {
+        missing_keyword (AI_ALIAS.end_pattern);
+      };
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Pattern".print;
+      print_line;
+    };
+    
+    result      
+  );
+  
+  //++ E                 -> '(' patternname ')' real real real real real [LAYER_LIST] 'E'
+  - read_upper_e:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Upper E".print;
+      print_line;
+    };
+    
+    (read_character '(').if {
+      (! read_identifier).if {
+        syntax_error "Missing patternname identifier";
+      };
+      (! read_character ')').if { 
+        syntax_error "Mismatch parentheses";
+      };
+      (! read_real_16_16).if {
+        syntax_error "Missing llx identifier";
+      };
+      (! read_real_16_16).if {
+        syntax_error "Missing lly identifier";
+      };
+      (! read_real_16_16).if {
+        syntax_error "Missing urx identifier";
+      };
+      (! read_real_16_16).if {
+        syntax_error "Missing ury identifier";
+      };
+      read_layer_list;
+      (! read_character 'E').if {
+        missing_keyword "E";
+      };
+      
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Upper E".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ LAYER_LIST        -> { LAYER_COLOR LAYER_TILE }
+  - read_layer_list:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Layer List".print;
+      print_line;
+    };
+    
+    { read_layer_color }.while_do {
+      (! read_layer_tile).if {
+        syntax_error "Incorrect layer tile.";
+      };
+    };
+    
+    (trace && {result}).if {  
+      "\n## Read Layer List".print;
+      print_line;
+    };
+    
+    TRUE
+  );
+  
+  //++ LAYER_COLOR       -> '(' COLOR ')' '@'
+  - read_layer_color:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Layer Color".print;
+      print_line;
+    };
+    
+    read_character '('.if {
+      (! read_color).if {
+        syntax_error "Incorrect Color";
+      };
+      (! read_character ')').if {
+        missing_keyword ")";
+      };
+      (! read_character '@').if {
+        missing_keyword "@";
+      };      
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Layer Color".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ LAYER_TILE        -> '(' TILE_DEFINITION ')' '&' 
+  //++                    | '_' '&'  
+  - read_layer_tile:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Layer Tile".print;
+      print_line;
+    };
+    
+    (read_character '(').if {
+      (! read_tile_definition).if {
+        syntax_error "Incorrect Tile Definition";        
+      };
+      (! read_character ')').if {
+        syntax_error "Mismatch parentheses";
+      };
+      (! read_character '&').if {
+        missing_keyword "&";
+      };
+      result := TRUE;
+    }.elseif { read_character '_' } then {
+      (! read_character '&').if {
+        missing_keyword "&";
+      };
+      result := TRUE;
+    };     
+    
+    (trace && {result}).if {  
+      "\n## End Read Layer Tile".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ COLOR             -> COLOR_COMPOSITE { COLOR_COMPOSITE }
+  - read_color:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Color".print;
+      print_line;
+    };
+        
+    read_color_composite.if {
+      { read_color_composite }.while_do {
+      };
+      result := TRUE;
+    };
+
+    (trace && {result}).if {  
+      "\n## End Read Color".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ COLOR_COMPOSITE   -> flag 'O'
+  //++                    | flag 'R'
+  //++                    | real 'g' 
+  //++                    | real 'G' 
+  //++                    | real real real real 'k' 
+  //++                    | real real real real 'K'  
+  //++                    | real real real real '(' string ')' real 'x' 
+  //++                    | real real real real '(' string ')' real 'X'   
+  - read_color_composite:BOOLEAN <-
+  ( + result:BOOLEAN;
+    + c,m,y,k,g:REAL_16_16;
+    + old_pos:INTEGER;
+    
+    trace.if {  
+      "\n Read Color Composite".print;
+      print_line;
+    };
+    
+    old_pos := position;
+    read_flag.if {
+      (read_character 'O').if {
+        result := TRUE;        
+      }.elseif { read_character 'R'} then {
+        result := TRUE;
+      } else {
+        position := old_pos;
+      };
+    };
+    ((! result) &&  {read_real_16_16}).if {
+      c := last_real_16_16;
+      (read_character 'g').if {
+        result := TRUE;
+        current_color.make_gray_fill last_real_16_16;
+      }.elseif { read_character 'G' } then {
+        result := TRUE;
+        current_color.make_gray_stroke last_real_16_16;
+      }.elseif { read_real_16_16 } then {
+        m := last_real_16_16;
+        (read_real_16_16).if {
+	  y := last_real_16_16;
+	  (! read_real_16_16).if {
+	    syntax_error "Incorrect K color composite.";
+	  };          
+	  k := last_real_16_16;
+	  (read_character 'k').if {
+	    result := TRUE;
+	    current_color.make_cmyk_fill (c,m,y,k);
+	  }.elseif { read_character 'K'} then {
+	    result := TRUE;
+	    current_color.make_cmyk_stroke (c,m,y,k);
+	  }.elseif { read_character '('} then {
+	      (! read_string).if {
+		syntax_error "Incorrect String.";
+	      };
+	    (! read_character ')').if {
+	      syntax_error "Mismatch parentheses";
+	    };        
+	    (! read_real_16_16).if {
+	      syntax_error "Incorrect Gray color composite.";
+	    };
+	    g := last_real_16_16;
+	    (read_character 'x').if {
+	      current_color.make_cmykg_fill (c,m,y,k,g);
+	      result := TRUE;
+	    }.elseif {read_character 'X'} then {
+	      result := TRUE;
+	      current_color.make_cmykg_fill (c,m,y,k,g);
+	    };
+          };                          
+	} else {                    
+	  position := old_pos;
+	};
+      };
+    };
+
+    (trace && {result}).if {  
+      "\n## End Read Color Composite".print;
+      print_line;
+    };
+
+    result
+  );
+  
+  //++ TILE_DEFINITION   -> OBJ_WITHOUT_COL
+  - read_tile_definition:BOOLEAN <-
+  ( + result:BOOLEAN;    
+    
+    trace.if {  
+      "\n Read Tile Definition".print;
+      print_line;
+    };
+    
+    result := read_obj_without_col;
+    
+    trace.if {  
+      "\n## End Read Tile Definition".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ OBJECT            -> COLOR { OBJ_WITHOUT_COL }
+  - read_object:BOOLEAN <-
+  ( + result:BOOLEAN;
+    trace.if {  
+      "\n Read Object".print;
+      print_line;
+    };
+    
+    (read_color).if {
+      result := TRUE;
+      { read_obj_without_col }.while_do { };
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Object".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ OBJ_WITHOUT_COL   -> [ GRAPHICS_STATE ] { '%%Note:' comment } ( GRAPHIC | TEXT )   
+  - read_obj_without_col:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Obj Without col".print;
+      print_line;
+    };
+    
+    read_graphics_state;
+    { read_keyword (AI_ALIAS.note)}.while_do {
+      read_comment;
+    };
+    (read_graphic || {read_text}).if {
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Obj Without col".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ GRAPHICS_STATE    -> GRAPH_COMPOSITE { GRAPH_COMPOSITE } 
+  - read_graphics_state:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Graphics State".print;
+      print_line;
+    };
+    
+    read_graph_composite.if {
+      { read_graph_composite }.while_do { };
+      result := TRUE;
+    };
+
+    (trace && {result}).if {  
+      "\n## End Read Graphics State".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ GRAPH_COMPOSITE   -> '[' { real } ']' integer 'd'
+  //++                    | integer  ( 'j' | 'J' | 'M' ) 
+  //++                    | real ( 'i' | 'w' )
+  - read_graph_composite:BOOLEAN <-
+  ( + result:BOOLEAN;
+    + old_pos:INTEGER;
+    
+    trace.if {  
+      "\n Read Graph Composite".print;
+      print_line;
+    };
+    
+    old_pos := position;
+    (read_character '[').if {
+      { read_real_16_16 }.while_do {
+      };
+      (! read_character ']').if {
+        syntax_error "Incorrect Graph Composite";
+      };
+      (! read_integer).if {
+        syntax_error "Incorrect Graph Composite";
+      };
+      (! read_character 'd').if {
+        missing_keyword "d";
+      };
+      result := TRUE;
+    }.elseif {read_integer} then {
+      (read_character 'j').if {
+        result := TRUE;
+      }.elseif {read_character 'J'} then {
+        result := TRUE;
+      }.elseif {read_character 'M'} then {
+        result := TRUE;
+      } else {                      
+        position := old_pos;        
+      };
+    };
+    ((! result) && { read_real_16_16}).if { 
+      (read_character 'i').if {
+        result := TRUE;
+      }.elseif {read_character 'w'} then {
+        result := TRUE; 
+      } else {
+        position := old_pos;
+      };
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Graph Composite".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ GRAPHIC           -> PATH PAINT_OPERATOR
+  - read_graphic:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Graphic".print;
+      print_line;
+    };
+    
+    read_path.if {
+      (! read_paint_operator).if {
+        syntax_error "Incorrect Paint operator";
+      };
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Graphic".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ PATH              -> COORD 'm' {PATH_COMPOSITE}
+  - read_path:BOOLEAN <-
+  ( + result:BOOLEAN;
+    + op:AI_OPERATION;
+    
+    trace.if {  
+      "\n Read Path".print;
+      print_line;
+    };
+    
+    read_coord.if {
+      (! read_character 'm').if {        
+        missing_keyword "m";
+      };
+      op := AI_MOVE.create (last_x,last_y);
+      current_list.add_last op;
+      x_cur := last_x;
+      y_cur := last_y;
+      
+      {read_path_composite}.while_do { };
+      
+      result := TRUE;      
+    };    
+    
+    (trace && {result}).if {  
+      "\n## End Read Path".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ PATH_COMPOSITE    -> COORD ( 'l' | 'L' )
+  //++                    | COORD COORD ( 'v' | 'V' | 'y' | 'Y' )
+  //++                    | COORD COORD COORD ( 'c' | 'C' )
+  - read_path_composite:BOOLEAN <-
+  ( + result:BOOLEAN;    
+    + x1,y1,x2,y2,x3,y3:REAL_16_16;
+    + op:AI_OPERATION;
+    
+    trace.if {  
+      "\n Read Path Composite".print;
+      print_line;
+    };
+    
+    read_coord.if {
+      x1 := last_x;
+      y1 := last_y;
+      ((read_character 'l') || {read_character 'L'}).if {
+	result := TRUE;
+	op := AI_LINE.create (x1,y1);
+        x_cur := x1;
+        y_cur := y1;
+      }.elseif {read_coord} then {
+        x2 := last_x;
+        y2 := last_y;
+        ((read_character 'v') || {read_character 'V'}).if {
+	  result := TRUE;          
+	  op := AI_BEZIER.create_w1 (x_cur,y_cur) w2 (x1,y1) to (x2,y2); 
+          x_cur := x2;
+          y_cur := y2;
+        }.elseif {(read_character 'y') || {read_character 'Y'}} then {
+	  result := TRUE;
+	  op := AI_BEZIER.create_w1 (x1,y1) w2 (x2,y2) to (x2,y2); 
+          x_cur := x2;
+          y_cur := y2;
+        }.elseif {read_coord} then {  
+          x3 := last_x;
+          y3 := last_y;
+          ((read_character 'c') || {read_character 'C'}).if {
+	    result := TRUE;
+	    op := AI_BEZIER.create_w1 (x1,y1) w2 (x2,y2) to (x3,y3);
+            x_cur := x3;
+            y_cur := y3;
+          } else {
+            syntax_error "Incorrect Path Composite";
+          };
+        } else {
+          syntax_error "Incorrect Path Composite";
+        };
+      } else {
+        syntax_error "Incorrect Path Composite";
+      };        
+    };
+    (op != NULL).if {
+      current_list.add_last op;
+    };
+
+    (trace && {result}).if {  
+      "\n## End Read Path Composite".print;
+      print_line;
+    };
+    
+    result
+  );  
+  
+  //++ PAINT_OPERATOR    -> 'N' | 'n' | 'F' | 'f' | 'S' | 's' | 'B' | 'b' | 'H' | 'h' | 'W'
+  - read_paint_operator:BOOLEAN <-
+  ( + result,is_fill,is_stroke:BOOLEAN;
+    + new_layer:AI_LAYER;
+    
+    trace.if {  
+      "\n Read Paint Operator".print;
+      print_line;
+    };
+    
+    result := TRUE;
+    (read_character 'N').if {
+      // Nothing.
+    }.elseif {read_character 'n'} then {  
+      // Nothing.      
+    }.elseif {read_character 'F'} then {        
+      // Fill.      
+      is_fill := TRUE;
+    }.elseif {read_character 'f'} then {
+      // Fill.
+      is_fill := TRUE;
+    }.elseif {read_character 'S'} then {
+      // Stroke.
+      is_stroke := TRUE;
+    }.elseif {read_character 's'} then {
+      // Stroke.
+      is_stroke := TRUE;
+    }.elseif {read_character 'B'} then {
+      // Fill + Stroke.
+      is_stroke := TRUE;
+      is_fill   := TRUE;
+    }.elseif {read_character 'b'} then {
+      // Fill + Stroke.
+      is_stroke := TRUE;
+      is_fill   := TRUE;
+    }.elseif {read_character 'H'} then {
+      // ??
+    }.elseif {read_character 'h'} then {
+      // ??
+    }.elseif {read_character 'W'} then {
+      // ??
+    } else {      
+      syntax_error "Incorrect Paint Operator";
+      result := FALSE;
+    };
+    result.if {
+      new_layer := AI_LAYER.create current_list color current_color fill is_fill stroke is_stroke;
+      current_list := LINKED_LIST(AI_OPERATION).create;
+      current_color:= current_color.clone;
+      list_layer.add_last new_layer;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Paint Operator".print;
+      print_line;
+    };
+    
+    result    
+  );
+  
+  //++ TEXT              -> '/' identifier real real real integer 'z' TEXT_COMPOSITE { TEXT_CONTENT } 'T'
+  - read_text:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Text".print;
+      print_line;
+    };
+    
+    (read_character '/').if {
+      read_identifier.if {
+        read_real_16_16.if {
+          read_real_16_16.if {
+            read_real_16_16.if {
+              read_integer.if {
+                read_character 'z'.if {
+                  read_text_composite.if {
+                    { read_text_content }.while_do { };
+                    read_character 'T'.if {
+                      result := TRUE;
+                    };
+                  };
+                };
+              };
+            };
+          };
+        };
+      };
+      (! result).if {
+        syntax_error "Incorrect text";
+      };
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Text".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ TEXT_CONTENT      -> [ integer ] '(' string ')' 't' 
+  - read_text_content:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Text Content".print;
+      print_line;
+    };
+    
+    read_integer;
+    read_character '('.if {
+      read_string.if {
+        read_character ')'.if {
+          read_character 't'.if {
+            result := TRUE;
+          };
+        };
+      };
+      (! result).if {
+        syntax_error "Incorrect Text content";
+      };
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Text Content".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ TEXT_COMPOSITE    -> '[' real real real real real real ']' ( 'a' | 'e' | 'I' | 'o' | 'r' )
+  - read_text_composite:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Text Composite".print;
+      print_line;
+    };
+    
+    read_character '['.if {
+      read_real_16_16.if {
+        read_real_16_16.if {
+          read_real_16_16.if {
+            read_real_16_16.if {  
+              read_real_16_16.if {
+                read_real_16_16.if {
+                  read_character ']'.if { 
+                    read_character 'a'.if {
+                      result := TRUE;
+                    }.elseif {read_character 'e'} then {
+                      result := TRUE;
+                    }.elseif {read_character 'I'} then {
+                      result := TRUE;
+                    }.elseif {read_character 'o'} then {
+                      result := TRUE;
+                    }.elseif {read_character 'r'} then {
+                      result := TRUE;
+                    };
+                  };
+                };
+              };
+            };
+          };
+        };
+      };
+      (! result).if {
+        syntax_error "Incorrect Text Composite";
+      };
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Text Composite".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ COORD             -> real real 
+  - read_coord:BOOLEAN <-
+  ( + result:BOOLEAN;
+    + old_pos:INTEGER;
+    
+    trace.if {  
+      "\n Read Coord".print;
+      print_line;
+    };
+    
+    old_pos := position;
+    read_real_16_16.if {
+      last_x := last_real_16_16 - llx;
+      (! read_real_16_16).if {
+        position := old_pos;
+      } else {
+	last_y := (- (last_real_16_16 +# 1 - lly) +# height);
+	result := TRUE;
+      };
+    };
+
+    (trace && {result}).if {  
+      "\n## End Read Coord".print;
+      print_line;
+    };
+    
+    result    
+  );
+  
+  //++ SCRIPT_BODY       -> { ELEMENT | IMPORT_DOC }
+  - read_script_body:BOOLEAN <-
+  (
+    
+    trace.if {  
+      "\n Read Script Body".print;
+      print_line;
+    };
+    
+    { read_element || { read_import_doc } }.while_do {      
+    };
+    
+    trace.if {  
+      "\n## End Read Script Body".print;
+      print_line;
+    };
+    
+    TRUE
+  );
+  
+  //++ ELEMENT           -> { A }
+  //++                      GROUP | OBJECT
+  - read_element:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Element".print;
+      print_line;
+    };
+    
+    { read_upper_a }.while_do { };
+    (read_group || { read_object }).if {
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Element".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ A                 -> flag 'A'
+  - read_upper_a:BOOLEAN <-
+  ( + result:BOOLEAN;
+    + old_pos:INTEGER;    
+    
+    trace.if {  
+      "\n Read A".print;
+      print_line;
+    };
+    
+    old_pos := position;
+    read_flag.if {
+      (! read_character 'A').if {
+        position := old_pos;
+      } else {
+        result := TRUE;
+      };
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read A".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ GROUP             -> ['*'] 'u'
+  //++                      OBJECT_SEQ
+  //++                      ['*'] 'U'
+  //++                    | 'q'
+  //++                      OBJECT_SEQ
+  //++                      'Q'
+  - read_group:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Group".print;
+      print_line;
+    };
+    
+    read_character '*';
+    (read_character 'u').if {
+      (! read_object_seq).if {
+        syntax_error "Incorrect Object Seq";
+      };
+      read_character '*';
+      (! read_character 'U').if {
+        missing_keyword "U";
+      };
+      result := TRUE;
+    }.elseif { read_character 'q' } then {
+      (! read_object_seq).if {
+        syntax_error "Incorrect Object Seq";
+      };
+      (! read_character 'Q').if {
+        missing_keyword "Q";
+      };
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Group".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ OBJECT_SEQ        -> { ELEMENT }
+  - read_object_seq:BOOLEAN <-
+  (
+    
+    trace.if {  
+      "\n Read Object Seq".print;
+      print_line;
+    };
+    
+    { read_element }.while_do { };
+    
+    trace.if {  
+      "\n## End Read Object Seq".print;
+      print_line;
+    };
+    
+    TRUE
+  );
+  
+  //++ IMPORT_DOC        -> '''
+  //++                      '%%IncludeFile:' filename
+  //++                      '~'
+  - read_import_doc:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Import Doc".print;
+      print_line;
+    };
+    
+    read_character '\''.if {
+      (! read_keyword (AI_ALIAS.include_file)).if {
+        missing_keyword (AI_ALIAS.include_file);
+      };
+      (! read_identifier).if {
+        syntax_error "Missing filename identifier";
+      };
+      (! read_character '~').if {
+        missing_keyword "~";
+      };
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Import Doc".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ TRAILER           -> '%%Trailer'
+  //++                      { TERMINATE }
+  - read_trailer:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Trailer".print;
+      print_line;
+    };
+    
+    read_keyword (AI_ALIAS.trailer).if {
+      { read_terminate }.while_do { };
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Trailer".print;
+      print_line;
+    };
+    
+    result    
+  );
+  
+  //++ TERMINATE         -> (identifier '/terminate get exec' | '_E end')
+  - read_terminate:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Terminate".print;
+      print_line;
+    };
+    
+    read_keyword (AI_ALIAS.end).if {
+      result := TRUE;
+    }.elseif {read_identifier} then {
+      (! read_keyword (AI_ALIAS.terminate)).if {
+        syntax_error "Incorrect terminate.";
+      };
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Terminate".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //
+  // Parser
+  //
+  
+  - create s:FAST_ARRAY(CHARACTER) :SELF <-
+  ( + result:SELF;
+    result := clone;
+    result.make s;
+    result
+  );    
+  
+  - make s:FAST_ARRAY(CHARACTER) <-
+  (
+    AI_ALIAS.make;
+    source := s;
+    position := 0;
+    msg_err := STRING.create 80;
+    string_tmp := STRING.create 250;
+    list_layer := LINKED_LIST(AI_LAYER).create;
+    current_color := AI_COLOR.clone;
+    current_list  := LINKED_LIST(AI_OPERATION).create;
+    trace := FALSE;
+    read_document;    
+  );
+  
+  - draw b:ABSTRACT_BITMAP scale coef:REAL_16_16 <-
+  ( + s:REAL_16_16;
+    ? {list_layer != NULL};
+    ? {b != NULL};
+    s := coef;
+    width  := (s *# width).ceiling;
+    height := (s *# height).ceiling;
+    // BSBS: Avec b.make tu reallou de la mémoire, c'est à revoir ...
+    ((width != b.width) || {height != b.height}).if {
+      b.make_size (width,height);
+      b.rectangle_fill (0,0) to ((width -1),(height - 1)) color 083AAD3h;
+    };    
+    (s <= 0).if {
+      s := 1;
+    };
+    (list_layer.lower).to (list_layer.upper) do { i:INTEGER;
+      list_layer.item i.draw b scale s;
+    };          
+  );
+
+
+
diff --git a/lib/extra/graphics/format/bmp/bmp_header.li b/lib/extra/graphics/format/bmp/bmp_header.li
new file mode 100644
index 0000000..1f9fa93
--- /dev/null
+++ b/lib/extra/graphics/format/bmp/bmp_header.li
@@ -0,0 +1,159 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := BMP_HEADER;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "Mapping BMP Image File Header structure";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Mapping
+  
+  //
+  // File Header
+  //
+  
+  + file_type1:CHARACTER;     //00h  Must be 'B'
+  + file_type2:CHARACTER;     //01h  Must be 'M'  
+  + file_size:UINTEGER_32;       //02h  Size of file
+  + reserved:UINTEGER_32;        //06h
+  + map_bitmap_offset:UINTEGER_32;   //0Ah   Offset of the data section  
+  
+  //
+  // Bitmap Header
+  //
+  
+  + header_size:UINTEGER_32;     //0Eh  Size of this header
+  + map_width:INTEGER;            //12h  width (in pixel) of the image
+  + map_height:INTEGER;           //16h  height (in pixel)
+  + planes:UINTEGER_16;         //1Ah  number of planes use (always 1)
+  + map_bits_per_pixel:UINTEGER_16; //1Ch  number of bits per pixel (1,4,8,16,24,32)
+  + compression:UINTEGER_32;     //1Eh  compression method:
+  // 0: no compression
+  // 1: 8-bit run length encoding
+  // 2: 4-bit run length encoding
+  // 3: bitfields encoding
+
+  + size_of_bitmap:UINTEGER_32;  //22h  size of image (in octet), useful for compression
+  + h_resolution:UINTEGER_32;    //26h  horizontal resolution (in pixel per meter)
+  + v_resolution:UINTEGER_32;    //2Ah  vertical resolution (in pixel per meter)
+  + colors_used:UINTEGER_32;     //2Eh  number of colors 
+  + colors_important:UINTEGER_32;//32h  number of important colors
+
+Section Public  
+  
+  - bits_per_pixel:UINTEGER_16 <- map_bits_per_pixel;
+  
+  - width :INTEGER <- map_width;
+  - height:INTEGER <- map_height;   
+  - bitmap_offset:UINTEGER_32 <- map_bitmap_offset;
+
+  - file_type:STRING <-
+  ( + result:STRING;
+    result := STRING.create 0;
+    result.add_last file_type1;
+    result.add_last file_type2;
+    result
+  );
+  
+  - is_valid:BOOLEAN <-
+  (
+    (file_type1 = 'B') && {file_type2 = 'M'}
+  );
+  
+  - is_bgr_format:BOOLEAN <-
+  (
+    header_size = object_size + get_nb_colors * 3
+  );
+  
+  - get_nb_colors:INTEGER <-
+  ( + result:INTEGER;
+    (colors_used = 0).if {
+      is_8bit.if {
+	result := 256;
+      }.elseif {is_4bit} then {
+	result := 16;
+      } else {
+	result := 2;
+      };
+    } else {
+      result := colors_used.to_integer;
+    };
+    result
+  );
+  
+  - is_1bit:BOOLEAN <-
+  (
+    bits_per_pixel = 1
+  );
+  
+  - is_4bit:BOOLEAN <-
+  (
+    bits_per_pixel = 4
+  );
+  
+  - is_8bit:BOOLEAN <-
+  (
+    bits_per_pixel = 8
+  );
+  
+  - is_24bit:BOOLEAN <-
+  (
+    bits_per_pixel = 24
+  );
+  
+  - is_rle8_compressed:BOOLEAN <-
+  (
+    compression = 1
+  );
+  
+  - print <-
+  (
+    "\nFile size: ".print;
+    file_size.print;
+    "\nHeader size: ".print;
+    header_size.print;
+    "\nOffset: ".print;
+    bitmap_offset.print;
+    "\nBitmap size (w x h): ".print;
+    width.print;
+    " x ".print;
+    height.print;
+    "\nBits per pixel: ".print;
+    bits_per_pixel.print;
+    "\nCompression: ".print;
+    compression
+    .when 0 then {"None".print;} 
+    .when 1 then {"8-bit RLE".print;}
+    .when 2 then {"4-bit RLE".print;}
+    .when 3 then {"Bitfield".print;};    
+    "\nSize of bitmap: ".print;
+    size_of_bitmap.print;
+    "\nColors used: ".print;
+    colors_used.print;   
+    '\n'.print;
+  );
diff --git a/lib/extra/graphics/format/bmp/format_bmp.li b/lib/extra/graphics/format/bmp/format_bmp.li
new file mode 100644
index 0000000..c4bca2c
--- /dev/null
+++ b/lib/extra/graphics/format/bmp/format_bmp.li
@@ -0,0 +1,259 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := FORMAT_BMP;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "Mapping BMP Image File (V < 4.0)";
+    
+Section Inherit
+  
+  + parent_format_img:Expanded FORMAT_IMG;
+  
+Section Public
+    
+  - name:STRING_CONSTANT := "Bitmap format by Microboft & IBM.";
+      
+  - extension:STRING_CONSTANT := "bmp";
+  
+  - is_bitmap:BOOLEAN := TRUE;
+    
+  - height:INTEGER <- header.height;
+  - width:INTEGER  <- header.width;
+  
+  //
+  // Creation.
+  //
+
+  - create_with_file f:FILE :SELF <-
+  ( 
+    clone.make_with_file f
+  );
+
+  - make_with_file f:FILE :SELF <-
+  ( + result:SELF;    
+    file := f;
+    (read_header).if {
+      result := Self;
+      pos_buffer := BMP_HEADER.object_size;
+    };
+    result
+  );
+  
+  - create_with buf:FAST_ARRAY(UINTEGER_8) :SELF <-
+  ( 
+    clone.make_with buf
+  );
+
+  - make_with buf:FAST_ARRAY(UINTEGER_8) :SELF <-
+  ( + result:SELF;
+    buffer := buf;
+    (read_header).if {
+      result := Self;
+      pos_buffer := BMP_HEADER.object_size;
+    };
+    result
+  );
+  
+  //
+  // Put image.
+  //
+  
+  - put_image_in bmp:ABSTRACT_BITMAP <-
+  [
+    -? {header != NULL};
+    -? {(bmp.width = header.width) && {bmp.height = header.height}};
+  ]
+  ( + end:BOOLEAN;
+    + x,y:INTEGER;
+    + line_24:BMP_LINE(PIXEL_24);    
+    + tmp_pix:PIXEL_24;
+    + escape,cmd:UINTEGER_8;
+    + align:UINTEGER_32;
+    + pos:INTEGER;
+    
+    line_24 := BMP_LINE(PIXEL_24).create (header.width);
+    header.is_8bit.if {
+      //
+      // 8 Bit
+      // 	        
+      init_color_map;      
+      header.is_rle8_compressed.if {	  
+        pos := header.bitmap_offset.to_integer;
+        y := header.height;
+        {end}.until_do {
+          escape := buffer_item pos;
+          pos := pos + 1;
+          ? { x <= header.width};
+          ? { y >= 0};
+          (escape = 00h).if {
+            cmd := buffer_item pos;
+            pos := pos + 1;
+            (cmd = 00h).if {
+              bmp.line_h (0,y) until (header.width - 1) image line_24;	
+              x := 0;
+              y := y - 1;
+            }.elseif {cmd = 01h} then {
+              // End of file
+              bmp.line_h (0,y) until (header.width - 1) image line_24;	
+              end := TRUE;
+            }.elseif {cmd = 02h} then {
+              // Move cursor: usually not used except for MS icons
+              pos := pos + 2;
+            } else {
+              // Pixel not compressed
+              1.to cmd do { j:INTEGER;
+                line_24.item_24 x.make (color_map.item (buffer_item pos).get_color);
+                pos := pos + 1;
+                x := x + 1;
+              };
+              cmd.is_odd.if {
+                pos := pos + 1;
+              };
+            };				
+          } else {
+            // Pixel compressed
+            tmp_pix := color_map.item (buffer_item pos);                        
+            pos := pos + 1;
+            1.to escape do { j:INTEGER;
+              line_24.item_24 x.make (tmp_pix.get_color);
+              x := x + 1;
+            };
+          };
+        }; 	  	  	  
+      };		
+    }.elseif {header.is_24bit} then {	
+      //
+      // 24 Bit
+      //	      
+      align := ((header.width * -3) & 011b).to_uinteger_32;
+      pos := header.bitmap_offset;
+      // No compression
+      0.to (header.height - 1) do { i:INTEGER;
+        1.to (header.width) do { j:INTEGER;          
+          line_24.item_24 (j-1).make_rgb (
+            buffer_item (pos + 2),
+            buffer_item (pos + 1),
+            buffer_item (pos)
+          );          
+          pos := pos + 3;
+        };
+        pos := pos + align;
+        /*
+        "bmp.width    : ".print; bmp.width.print; '\n'.print;
+        "header.width : ".print; header.width.print; '\n'.print;
+        "line_24.width: ".print; line_24.count.print; '\n'.print;
+        */
+        bmp.line_h (0,header.height - i - 1) 
+        until (header.width - 1) image line_24;        
+      };	    
+    };
+  );
+  
+  - put_image_in bmp:ABSTRACT_BITMAP scale s:REAL_16_16 <-
+  (
+    not_yet_implemented;
+  );
+  
+Section Private
+  
+  + file:FILE;
+  + buffer:FAST_ARRAY(UINTEGER_8);
+  + header:BMP_HEADER;
+      
+  - read_header:BOOLEAN <-
+  (     
+    (file != NULL).if {
+      header := BMP_HEADER.clone;
+      (file.is_open).if_false {
+        (file.open).if_false {
+          "FORMAT_BMP : Open file fail!\n".print;
+          die_with_code 0;
+        };
+      };
+      file.read header;
+    } else {
+      header := CONVERT(NATIVE_ARRAY(UINTEGER_8),BMP_HEADER).on (buffer.storage);
+    };
+    header.is_valid
+  );
+  
+  - buffer_item p:INTEGER :UINTEGER_8 <-
+  ( + result:UINTEGER_8;
+    (buffer != NULL).if {
+      result := buffer.item p;
+    } else {
+      `/* CUR1 */`;
+      buffer := FAST_ARRAY(UINTEGER_8).create_with_capacity (file.size);
+      `/* CUR2 */`;
+      file.set_cursor 0;
+      file.read buffer size (file.size);      
+      result := buffer.item p;
+    };
+    result
+  );
+      
+  
+  //
+  
+  - color_map:FAST_ARRAY(Expanded PIXEL_24);
+
+  
+  - init_color_map <-
+  ( + code,nb_colors:INTEGER;    
+    ? {header != NULL};
+    //
+    // Init Color Table
+    // 
+    header.is_bgr_format.if {
+      code := 3;
+    } else {
+      code := 4;
+    };
+    nb_colors := header.get_nb_colors;
+    (color_map = NULL).if {
+      color_map := FAST_ARRAY(PIXEL_24).create 256;
+    };            
+    0.to (nb_colors-1) do { j:INTEGER; 
+      color_map.item j
+      .make_rgb (
+	buffer_item (pos_buffer + 2),
+	buffer_item (pos_buffer + 1),
+	buffer_item (pos_buffer + 0)
+      );
+      pos_buffer := pos_buffer + code;
+    };
+  );
+          
+  - buf_item :UINTEGER_8 <-
+  ( + result:UINTEGER_8;
+    result := bmp_buffer.item pos_buffer;
+    pos_buffer := pos_buffer + 1;
+    result
+  );
+  
+
+  
+
+  
diff --git a/lib/extra/graphics/format/format_img.li b/lib/extra/graphics/format/format_img.li
new file mode 100644
index 0000000..9d16cf9
--- /dev/null
+++ b/lib/extra/graphics/format/format_img.li
@@ -0,0 +1,104 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := FORMAT_IMG;
+
+  - copyright := "2003-2008 Sonntag Benoit";
+
+  - author    := "Sonntag Benoit (sonntag at icps.u-strasbg.fr)";
+  - comment   := "Format image generic";
+
+Section Inherit
+
+  - parent_object:OBJECT := OBJECT;
+
+Section Public
+  
+  - name:STRING_CONSTANT <- 
+  (
+    deferred; 
+    NULL
+  );
+      
+  - extension:STRING_CONSTANT <-
+  (
+    deferred;
+    NULL
+  );
+  
+  - is_bitmap:BOOLEAN <-
+  (
+    deferred;
+    FALSE
+  );
+  
+  - is_vectorial:BOOLEAN <- ! is_bitmap;
+  
+  - height:INTEGER <- ( deferred; 0);
+  - width:INTEGER  <- ( deferred; 0);
+  
+  //
+  // Creation.
+  //
+
+  - create_with_file f:FILE :SELF <-
+  ( + result:SELF;
+    result := clone;
+    result.make_with_file f;
+    result
+  );
+
+  - make_with_file f:FILE :SELF <-
+  ( 
+    deferred;
+  );
+  
+  - create_with buf:FAST_ARRAY(UINTEGER_8) :SELF <-
+  ( + result:SELF;
+    result := clone;
+    result.make_with buf;
+    result
+  );
+
+  - make_with buf:FAST_ARRAY(UINTEGER_8) :SELF <-
+  ( 
+    deferred;
+  );
+  
+  //
+  // Put image.
+  //
+  
+  - put_image_in bmp:ABSTRACT_BITMAP <-
+  (
+    deferred;
+  );
+  
+  - put_image_in bmp:ABSTRACT_BITMAP scale s:REAL_16_16 <-
+  (
+    deferred;
+  );
+  
+Section FORMAT_IMG
+  
+  + pos_buffer:INTEGER;
+  
\ No newline at end of file
diff --git a/lib/extra/graphics/low_level/abstract_bitmap.li b/lib/extra/graphics/low_level/abstract_bitmap.li
new file mode 100644
index 0000000..ec3acb3
--- /dev/null
+++ b/lib/extra/graphics/low_level/abstract_bitmap.li
@@ -0,0 +1,1592 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := ABSTRACT_BITMAP;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "Generic Bitmap.";
+    
+  - external    := `
+//
+// Font System 1250 bytes.
+//
+unsigned short __index_font[96]={
+0x000,0x007,0x008,0x00B,0x012,0x017,0x021,0x028,0x029,0x02C,0x02F,0x034,
+0x039,0x03B,0x03F,0x040,0x044,0x049,0x04C,0x051,0x056,0x05B,0x060,0x065,
+0x06A,0x06F,0x074,0x075,0x077,0x07C,0x081,0x086,0x08B,0x097,0x0A0,0x0A7,
+0x0AF,0x0B7,0x0BE,0x0C5,0x0CD,0x0D5,0x0D6,0x0DB,0x0E2,0x0E8,0x0F1,0x0F9,
+0x101,0x109,0x111,0x11A,0x121,0x12A,0x132,0x13B,0x148,0x150,0x159,0x15F,
+0x162,0x166,0x169,0x16E,0x175,0x177,0x17E,0x184,0x18A,0x190,0x196,0x199,
+0x19F,0x1A4,0x1A5,0x1A7,0x1AD,0x1AE,0x1B7,0x1BC,0x1C2,0x1C8,0x1CE,0x1D1,
+0x1D6,0x1D9,0x1DE,0x1E5,0x1EE,0x1F4,0x1FB,0x1FF,0x204,0x205,0x20A,0x211};
+
+unsigned short __graph_font[0x211]={
+0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x17F8,0x0078,0x0000,
+0x0078,0x0200,0x1E40,0x03C0,0x1E78,0x03C0,0x0278,0x0040,0x08E0,0x1110,
+0x3FF8,0x1110,0x0E60,0x0030,0x0848,0x0448,0x0230,0x0100,0x0080,0x0C40,
+0x1220,0x1210,0x0C00,0x0E00,0x1170,0x1088,0x1188,0x1670,0x0800,0x1400,
+0x0078,0x1FC0,0x6030,0x8008,0x8008,0x6030,0x1FC0,0x0050,0x0060,0x0038,
+0x0060,0x0050,0x0100,0x0100,0x07C0,0x0100,0x0100,0x2000,0x1000,0x0100,
+0x0100,0x0100,0x0100,0x1000,0x7000,0x0E00,0x01C0,0x0038,0x0FF0,0x1008,
+0x1008,0x1008,0x0FF0,0x0010,0x0010,0x1FF8,0x1C30,0x1208,0x1108,0x1088,
+0x1070,0x0810,0x1008,0x1088,0x1088,0x0F70,0x0300,0x0280,0x0260,0x0210,
+0x1FF8,0x09F8,0x1088,0x1088,0x1088,0x0F08,0x0FF0,0x1108,0x1088,0x1088,
+0x0F10,0x0008,0x1C08,0x0308,0x00C8,0x0038,0x0F70,0x1088,0x1088,0x1088,
+0x0F70,0x08F0,0x1108,0x1108,0x1088,0x0FF0,0x1040,0x2000,0x1040,0x0100,
+0x0380,0x06C0,0x0C60,0x0820,0x0280,0x0280,0x0280,0x0280,0x0280,0x0820,
+0x0C60,0x06C0,0x0380,0x0100,0x0030,0x0008,0x1708,0x0088,0x0070,0x03C0,
+0x0C30,0x1008,0x1008,0x2384,0x2444,0x2444,0x2244,0x25C8,0x1408,0x1430,
+0x03C0,0x1800,0x0600,0x0380,0x0260,0x0218,0x0260,0x0380,0x0600,0x1800,
+0x1FF8,0x1088,0x1088,0x1088,0x1088,0x1088,0x0F70,0x07E0,0x0810,0x1008,
+0x1008,0x1008,0x1008,0x0810,0x0420,0x1FF8,0x1008,0x1008,0x1008,0x1008,
+0x1008,0x0810,0x07E0,0x1FF8,0x1088,0x1088,0x1088,0x1088,0x1088,0x1008,
+0x1FF8,0x0088,0x0088,0x0088,0x0088,0x0088,0x0008,0x07E0,0x0810,0x1008,
+0x1008,0x1008,0x1108,0x0910,0x1F20,0x1FF8,0x0080,0x0080,0x0080,0x0080,
+0x0080,0x0080,0x1FF8,0x1FF8,0x0C00,0x1000,0x1000,0x1000,0x0FF8,0x1FF8,
+0x0080,0x0140,0x0220,0x0410,0x0808,0x1000,0x1FF8,0x1000,0x1000,0x1000,
+0x1000,0x1000,0x1FF8,0x0060,0x0180,0x0600,0x1800,0x0600,0x0180,0x0060,
+0x1FF8,0x1FF8,0x0010,0x0060,0x0080,0x0100,0x0600,0x0800,0x1FF8,0x07E0,
+0x0810,0x1008,0x1008,0x1008,0x1008,0x0810,0x07E0,0x1FF8,0x0108,0x0108,
+0x0108,0x0108,0x0108,0x0090,0x0060,0x07E0,0x0810,0x1008,0x1008,0x1008,
+0x1408,0x0810,0x17E0,0x1FF8,0x0108,0x0108,0x0108,0x0108,0x0108,0x0190,
+0x0E60,0x1000,0x0C70,0x1088,0x1088,0x1088,0x1108,0x1108,0x0E30,0x0008,
+0x0008,0x0008,0x0008,0x1FF8,0x0008,0x0008,0x0008,0x0008,0x07F8,0x0800,
+0x1000,0x1000,0x1000,0x1000,0x0800,0x07F8,0x0018,0x0060,0x0180,0x0600,
+0x1800,0x0600,0x0180,0x0060,0x0018,0x0038,0x00C0,0x0700,0x1800,0x0700,
+0x00C0,0x0038,0x00C0,0x0700,0x1800,0x0700,0x00C0,0x0038,0x1818,0x0420,
+0x0240,0x0180,0x0180,0x0240,0x0420,0x1818,0x0018,0x0020,0x0040,0x0080,
+0x1F00,0x0080,0x0040,0x0020,0x0018,0x1808,0x1608,0x1108,0x1088,0x1068,
+0x1018,0xFFF8,0x8008,0x8008,0x0038,0x01C0,0x0E00,0x7000,0x8008,0x8008,
+0xFFF8,0x0010,0x0008,0x0004,0x0008,0x0010,0x4000,0x4000,0x4000,0x4000,
+0x4000,0x4000,0x4000,0x0008,0x0010,0x0E80,0x1140,0x1140,0x1140,0x1140,
+0x0F80,0x1000,0x1FF8,0x0880,0x1040,0x1040,0x1040,0x0F80,0x0F80,0x1040,
+0x1040,0x1040,0x1040,0x0880,0x0F80,0x1040,0x1040,0x1040,0x0880,0x1FF8,
+0x0F80,0x1240,0x1240,0x1240,0x1240,0x0B80,0x0040,0x1FF0,0x0048,0x0F80,
+0x9040,0x9040,0x9040,0x8880,0x7FC0,0x1FF8,0x0080,0x0040,0x0040,0x1F80,
+0x1FC8,0x8000,0x7FC8,0x1FF8,0x0200,0x0300,0x0480,0x0840,0x1000,0x1FF8,
+0x1FC0,0x0080,0x0040,0x0040,0x1F80,0x0080,0x0040,0x0040,0x1F80,0x1FC0,
+0x0080,0x0040,0x0040,0x1F80,0x0F80,0x1040,0x1040,0x1040,0x1040,0x0F80,
+0xFFC0,0x0880,0x1040,0x1040,0x1040,0x0F80,0x0F80,0x1040,0x1040,0x1040,
+0x0880,0xFFC0,0x1FC0,0x0080,0x0040,0x0980,0x1240,0x1240,0x1240,0x0C80,
+0x0040,0x0FF0,0x1040,0x0FC0,0x1000,0x1000,0x0800,0x1FC0,0x00C0,0x0300,
+0x0C00,0x1000,0x0C00,0x0300,0x00C0,0x00C0,0x0700,0x1800,0x0700,0x00C0,
+0x0700,0x1800,0x0700,0x00C0,0x1040,0x0880,0x0700,0x0700,0x0880,0x1040,
+0x80C0,0x8300,0x4C00,0x3000,0x0C00,0x0300,0x00C0,0x1840,0x1640,0x1140,
+0x10C0,0x0200,0x0200,0x7DF0,0x8008,0x8008,0xFFF8,0x8008,0x8008,0x7DF0,
+0x0200,0x0200,0x0030,0x0008,0x0008,0x0010,0x0020,0x0020,0x0018};
+`;
+
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - get_abstract_bitmap:ABSTRACT_BITMAP <- Self;
+  
+  - get_y_line y:INTEGER :ABSTRACT_BMP_LINE <-
+  (
+    deferred;
+    NULL
+  );
+  
+  //
+  // Data.
+  //
+  
+  // Image size.
+  + height:INTEGER;       
+  + width:INTEGER;        
+  
+  - x_max:INTEGER <- width  - 1;
+  - y_max:INTEGER <- height - 1;
+    
+  // Clipping :
+  + clip_x0:INTEGER; 
+  + clip_y0:INTEGER;
+  + clip_x1:INTEGER;
+  + clip_y1:INTEGER;
+  
+  // Current position.
+  + spot_x:INTEGER;  
+  + spot_y:INTEGER;
+  
+  // Current color.
+  + rgbcolor    :UINTEGER_32; // Format: RRGGBB in hexadecimal
+  + rgbbackcolor:UINTEGER_32;
+  + transparent :BOOLEAN;
+  
+  + mode:UINTEGER_8 := mode_copy; // Set mode. 
+  
+  // Ref. `X.h'
+  - mode_copy:UINTEGER_8 := 03h;
+  - mode_xor :UINTEGER_8 := 06h;
+  
+  - set_mode m:UINTEGER_8 <-
+  (
+    mode := m;
+  );
+  
+  // Macro colors
+  
+  - black:UINTEGER_32 := 0000000h;
+  - white:UINTEGER_32 := 0FFFFFFh;
+  - red:UINTEGER_32   := 0FF0000h;
+  - green:UINTEGER_32 := 000FF00h;
+  - blue:UINTEGER_32  := 00000FFh;
+  - yellow:UINTEGER_32:= 0FFFF00h;
+  - purple:UINTEGER_32:= 0FF00FFh;
+  - cyan:UINTEGER_32  := 000FFFFh;
+  - gray:UINTEGER_32  := 0808080h;
+  - brown:UINTEGER_32 := 0400000h;  
+  
+  
+  - pixel_geometry:PIXEL <- (deferred; NULL);
+  
+  //
+  // Creation. 
+  //
+
+  - create_size (w,h:INTEGER) :SELF <-
+  ( + result:SELF;
+        
+    result:=clone;
+    result.make_size (w,h);
+    result
+  );
+  
+  - make_size (w,h:INTEGER) <-
+  (
+    deferred;
+  );
+  
+  - create (w,h:INTEGER) at offset_begin:UINTEGER_32 bytes_per_line lx:INTEGER :SELF <-   
+  ( + result:SELF;
+        
+    result:=clone;
+    result.make (w,h) at offset_begin bytes_per_line lx;
+    result
+  );
+  
+  - make (w,h:INTEGER) at offset_begin:UINTEGER_32 bytes_per_line lx:INTEGER <-
+  ( 
+    deferred;
+  );
+
+Section Public
+  
+  //
+  // Low level.
+  //   
+    
+  - pixel_hard (x,y:INTEGER) color col:UINTEGER_32 <-
+  ( 
+    deferred;
+  );
+  
+  - line_h_hard (x0,y0:INTEGER) until x1:INTEGER color col:UINTEGER_32 <-
+  ( 
+    deferred;
+  );
+    
+  - line_h_hard (x0,y0:INTEGER) until x1:INTEGER image line:ABSTRACT_BMP_LINE offset ofs:INTEGER <-
+  (     
+    deferred;
+  );
+  
+  - get_pixel_hard (x,y:INTEGER) :PIXEL <-
+  (
+    deferred;
+  );
+
+  - get_color_hard (x,y:INTEGER) :UINTEGER_32 <-
+  (
+    deferred;
+  );
+  
+Section Public  
+  
+  - color col:UINTEGER_32 <-
+  (
+    rgbcolor := col;
+  );
+
+  - backcolor col:UINTEGER_32 <-
+  (
+    rgbbackcolor := col;
+  );
+  
+  - transparent_on <-
+  (
+    transparent := TRUE;
+  );
+  
+  - transparent_off <-
+  (
+    transparent := FALSE;
+  );
+  
+  - clipping (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  ( + lx,ly:INTEGER;
+    
+    lx := width - 1;
+    ly := height - 1;
+    clip_x0 := x0.max 0.min lx;
+    clip_x1 := x1.max 0.min lx;
+    clip_y0 := y0.max 0.min ly;
+    clip_y1 := y1.max 0.min ly;
+  );
+  
+  - clipping_off <-
+  (
+    clip_x0 := 0;
+    clip_x1 := width - 1;
+    clip_y0 := 0;
+    clip_y1 := height - 1;
+  );
+  
+  - move_to (pos_x,pos_y:INTEGER) <-
+  (
+    spot_x := pos_x;
+    spot_y := pos_y;
+  );
+  
+  //
+  // GetPixel
+  //
+  
+  - get_pixel:BOOLEAN <-
+  // Load Spot pixel.
+  ( + result:BOOLEAN;
+    + pix:PIXEL;
+    
+    ((spot_x.in_range clip_x0 to clip_x1) && {spot_y.in_range clip_y0 to clip_y1}).if {
+      result:=TRUE;
+      pix:=get_pixel_hard (spot_x,spot_y);
+      pix.is_transparent.if {
+	// Transparent.
+	rgbcolor := black;
+	transparent=TRUE;
+      } else {
+	// Read color.
+	transparent:= FALSE;
+	rgbcolor := pix.rgbcolor;
+      };
+    } else {
+      rgbcolor := black;
+      transparent := FALSE;
+    };
+    
+    result
+  );
+  
+  - get_pixel_to (x,y:INTEGER) :BOOLEAN<-
+  (
+    move_to (x,y);
+    get_pixel
+  );
+  
+  //
+  // PutPixel
+  //
+  
+  - pixel:BOOLEAN <-
+  ( + result:BOOLEAN;
+   
+    // Test Clipping;
+    ((spot_x.in_range clip_x0 to clip_x1) && {spot_y.in_range clip_y0 to clip_y1 }).if {
+      result:=TRUE;
+      pixel_hard (spot_x,spot_y) color rgbcolor;
+    };  
+    result
+  );
+  
+  - pixel_to (x,y:INTEGER) :BOOLEAN <-
+  (
+    move_to (x,y);
+    pixel
+  );
+  
+  - pixel_color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    pixel
+  );
+  
+  - pixel_to (x,y:INTEGER) color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    pixel_to (x,y)
+  );
+  
+  //
+  // Line
+  //
+  
+  - line_h (x,y:INTEGER) until x_end:INTEGER image line:ABSTRACT_BMP_LINE :BOOLEAN <-
+  (
+    + result:BOOLEAN;
+    + x02,x1,x0:INTEGER;
+    ? {x >= 0};
+    ? {y >= 0};
+    ? {x_end >= 0};
+    ? {line != NULL};
+    
+    x0 := x;
+    x1 := x_end;
+    spot_x := x1;        
+    (y.in_range clip_y0 to clip_y1).if {
+      result := TRUE;
+      ( x0 > x1 ).if {
+	x02 := x0;
+	x0 := x1;
+	x1 := x02;
+      };
+      ( clip_x1 < x1 ).if {
+	x1 := clip_x1;
+	result := FALSE;
+      };
+      
+      ( clip_x0 > x0 ).if {
+	x02 := clip_x0;
+	result := FALSE;
+      } else {
+	x02 := x0;
+      };
+      
+      ( x0 <= x1 ).if {
+	line_h_hard (x02,y) until x1 image line offset (x02-x0);
+      };
+    };
+    result
+  );
+  
+  - line_h_until x:INTEGER :BOOLEAN <-
+  ( + result:BOOLEAN;
+    + x0,x1:INTEGER;
+
+    x0 := spot_x;
+    x1 := x;
+    spot_x := x1;
+    
+    (spot_y.in_range clip_y0 to clip_y1).if {
+      result := TRUE;
+      
+      ( x0 > x1).if {
+	+ swap:INTEGER;
+	swap := x0;
+	x0 := x1;
+	x1 := swap;
+      };
+      
+      ( clip_x1 < x1 ).if {
+	x1 := clip_x1;
+	result := FALSE;
+      };
+      
+      ( clip_x0 > x0 ).if {
+	x0 := clip_x0;
+	result := FALSE;
+      };
+      
+      (x0 <= x1).if {
+	line_h_hard (x0,spot_y) until x1 color rgbcolor;
+      };
+    };
+    result
+  );
+    
+  - line_h_until x1:INTEGER color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    line_h_until x1
+  );
+  
+  - line_h (x0,y0:INTEGER) until x1:INTEGER :BOOLEAN <-
+  (
+    move_to (x0,y0);
+    line_h_until x1
+  );
+  
+  
+  - line_h (x0,y0:INTEGER) until x1:INTEGER color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    line_h (x0,y0) until x1
+  );
+  
+  - line_v_until y:INTEGER :BOOLEAN <-
+  ( + y0,y1:INTEGER;
+    + result:BOOLEAN;
+    
+    y0 := spot_y;
+    y1 := y;
+    spot_y := y1;
+    
+    (spot_x.in_range clip_x0 to clip_x1).if {
+      result := TRUE;
+      
+      ( y0 > y1 ).if {
+	+ swap:INTEGER;
+	swap := y0;
+	y0 := y1;
+	y1 := swap;
+      };
+      
+      ( clip_y1 < y1).if {
+	y1 := clip_y1;
+	result := FALSE;
+      };
+      
+      ( clip_y0 > y0 ).if {
+	y0 := clip_y0;
+	result := FALSE;
+      };
+      
+      ( y0 <=y1 ).if {
+	y0.to y1 do { j:INTEGER;
+	  pixel_hard (spot_x,j) color rgbcolor;
+	};
+      };
+    };    
+    
+    result
+  );
+  
+  - line_v_until y1:INTEGER color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    line_v_until y1
+  );
+  
+  - line_v (x0,y0:INTEGER) until y1:INTEGER :BOOLEAN <-
+  (
+    move_to (x0,y0);
+    line_v_until y1
+  );
+  
+  - line_v (x0,y0:INTEGER) until y1:INTEGER color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    line_v (x0,y0) until y1
+  );
+  
+  
+  //:UINTEGER_8 CalculCode(:INTEGER_64 X,:INTEGER_64 Y,:INTEGER_64 Xmin,:INTEGER_64 Ymin,:INTEGER_64 Xmax,:INTEGER_64 Ymax)
+  //{ return( (X<Xmin)|((X>Xmax)<<1)|((Y<Ymin)<<2)|((Y>Ymax)<<3) );
+  //};
+  
+  //************************
+  //* CLIPPING DE LINE BUGGE -> Blocage !!!
+  //************************
+  
+/*  
+  char ClipLine(:INTEGER_64 x0,:INTEGER_64 y0,:INTEGER_64 x1,:INTEGER_64 y1,:INTEGER_64 Xmin,:INTEGER_64 Ymin,:INTEGER_64 Xmax,:INTEGER_64 Ymax)
+  { :UINTEGER_8 Bool=0; // Accepte=Faux , Fin=Vrai
+    :UINTEGER_8 cod0,cod1,codExt;
+    short x,y;
+    char tst;
+    cod0=CalculCode(x0,y0,Xmin,Ymin,Xmax,Ymax);
+    cod1=CalculCode(x1,y1,Xmin,Ymin,Xmax,Ymax);
+    tst=((cod0==0) && (cod1==0));
+    do {
+      if ((cod0==0) && (cod1==0)) { // Interieur de la fenetre.
+	Bool=3;  // Accepte=Vrai et Fin=Vrai.
+      } else if ((cod0&cod1)!=0)
+      Bool|=2; // Fin=Vrai
+      else {                        // Segment ni accepte ni rejete.
+	if (cod0!=0) codExt=cod0; else codExt=cod1;
+	if (codExt&8) {
+	  x=x0+(x1-x0)*(float)(Ymax-y0)/(float)(y1-y0);
+	  y=Ymax;
+	} else if (codExt&4) {
+	  x=x0+(x1-x0)*(float)(Ymin-y0)/(float)(y1-y0);
+	  y=Ymin;
+	} else if (codExt&2) {
+	  x=Xmax;
+	  y=y0+(y1-y0)*(float)(Xmax-x0)/(float)(x1-x0);
+	} else if (codExt&1) {
+	  x=Xmin;
+	  y=y0+(y1-y0)*(float)(Xmin-x0)/(float)(x1-x0);
+	};
+	if (codExt==cod0) {
+	  x0=x; y0=y;
+	  cod0=CalculCode(x0,y0,Xmin,Ymin,Xmax,Ymax);
+	} else {
+	  x1=x; y1=y;
+	  cod1=CalculCode(x1,y1,Xmin,Ymin,Xmax,Ymax);
+	};
+      };
+    } while (!(Bool&2));
+    if (Bool&1) TraceLine(x0,y0,x1,y1);
+    return(tst);
+  };*/
+    
+  - line_to (x2,y2:INTEGER) :BOOLEAN <-
+  (
+    + result:BOOLEAN;
+    + x1,y1:INTEGER;
+    + dx,dy:INTEGER;
+    + i1,i2:INTEGER;
+    + x,y:INTEGER;
+    + dd:INTEGER;
+    
+    x1 := spot_x;
+    y1 := spot_y;
+    dx := x2 - x1;
+    dy := y2 - y1;
+    
+    ( dy = 0).if {
+      result := line_h_until x2;
+    }.elseif {dx = 0} then {
+      result := line_v_until y2;
+    } else {
+      spot_x := x2;
+      spot_y := y2;
+      
+      (dx >= 0).if {
+	(dy >= 0).if {
+	  (dx >= dy).if {	    	    	    
+	    i1 := 2 * dy;
+	    dd := i1 - dx;
+	    i2 := dd - dx;
+	    x := x1; 
+	    y := y1;
+	    {x <= x2}.while_do {
+	      pixel_to (x,y);
+	      (dd >= 0).if { 
+		y := y+1; 
+		dd := dd+i2; 
+	      } else {
+		dd := dd+i1;
+	      };
+	      x := x+1;
+	    };	    
+	  } else {
+	    i1 := 2 * dx;
+	    dd := i1 - dy;
+	    i2 := dd - dy;
+	    x := x1; 
+	    y := y1;
+	    {y <= y2}.while_do {
+	      pixel_to (x,y);
+	      (dd >= 0).if { 
+		x := x+1; 
+		dd := dd+i2; 
+	      } else {
+		dd := dd+i1;
+	      };
+	      y := y+1;
+	    };	    
+	  };
+	} else {
+	  (dx >= -dy).if {	    
+	    i1 := 2 * dy;
+	    dd := i1 + dx;
+	    i2 := dd + dx;
+	    x := x1; 
+	    y := y1;
+	    {x <= x2}.while_do {
+	      pixel_to (x,y);
+	      (dd <= 0).if { 
+		y := y - 1; 
+		dd := dd+i2; 
+	      } else {
+		dd := dd+i1;
+	      };
+	      x := x+1;
+	    };
+	  } else {
+	    i1 := 2 * dx;
+	    dd := i1 + dy;
+	    i2 := dd + dy;
+	    x := x1; 
+	    y := y1;
+	    {y >= y2}.while_do {
+	      pixel_to (x,y);
+	      (dd >= 0).if { 
+		x := x+1; 
+		dd := dd+i2; 
+	      } else {
+		dd := dd+i1;
+	      };
+	      y := y-1;
+	    };	    
+	  };	 
+	};
+      } else {
+	(dy >= 0).if {
+	  (-dx >= dy).if {
+	    i1 := 2 * dy;
+	    dd := i1 + dx;
+	    i2 := dd + dx;
+	    x := x1; 
+	    y := y1;
+	    {x >= x2}.while_do {
+	      pixel_to (x,y);
+	      (dd >= 0).if { 
+		y := y + 1; 
+		dd := dd+i2; 
+	      } else {
+		dd := dd+i1;
+	      };
+	      x := x - 1;
+	    };
+	  } else {
+	    i1 := 2 * dx;
+	    dd := i1 + dy;
+	    i2 := dd + dy;
+	    x := x1; 
+	    y := y1;
+	    {y <= y2}.while_do {
+	      pixel_to (x,y);
+	      (dd <= 0).if { 
+		x := x - 1; 
+		dd := dd+i2; 
+	      } else {
+		dd := dd+i1;
+	      };
+	      y := y + 1;
+	    };
+	  };
+	} else {
+	  (-dx >= -dy).if {
+	    i1 := 2 * dy;
+	    dd := i1 - dx;
+	    i2 := dd - dx;
+	    x := x1; 
+	    y := y1;
+	    {x >= x2}.while_do {
+	      pixel_to (x,y);
+	      (dd <= 0).if { 
+		y := y-1; 
+		dd := dd+i2; 
+	      } else {
+		dd := dd+i1;
+	      };
+	      x := x-1;
+	    };
+	  } else {
+	    i1 := 2 * dx;
+	    dd := i1 - dy;
+	    i2 := dd - dy;
+	    x := x1; 
+	    y := y1;
+	    {y >= y2}.while_do {
+	      pixel_to (x,y);
+	      (dd <= 0).if { 
+		x := x-1; 
+		dd := dd+i2; 
+	      } else {
+		dd := dd+i1;
+	      };
+	      y := y - 1;
+	    };
+	  };
+	};	 
+      };      
+      result:=TRUE;
+    };
+    
+    result
+  );
+  
+  - line_to (x1,y1:INTEGER) color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    line_to (x1,y1)
+  );
+  
+  
+  - line (x1,y1:INTEGER) to (x2,y2:INTEGER) :BOOLEAN <-
+  (
+    move_to (x1,y1);
+    line_to (x2,y2)
+  );
+  
+  
+  - line (x1,y1:INTEGER) to (x2,y2:INTEGER) color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    line (x1,y1) to (x2,y2)
+  );
+      
+  //
+  // Rectangle
+  //
+  
+  - rectangle_to (x1,y1:INTEGER) :BOOLEAN <-
+  (
+    + result:BOOLEAN;
+    + x0,y0:INTEGER;
+    x0 := spot_x;
+    y0 := spot_y;
+    (y0 = y1).if {
+      result := line_h_until x1;
+    }.elseif {x0 = x1} then {
+      result := line_v_until y1;
+    } else {
+      result := line_h (x0,y0) until x1 | line_h (x0,y1) until x1;
+      ( y0 < y1 ).if {
+	result := result | (line_v  (x0,(y0 + 1)) until (y1 - 1)) | (line_v (x1,(y0 + 1)) until (y1 - 1));
+      } else {
+	result := result | (line_v (x0,(y1 + 1)) until (y0 - 1)) | (line_v (x1,(y1 + 1)) until (y0 - 1));
+      };
+    };
+    result
+  );
+    
+  - rectangle_to (x1,y1:INTEGER) color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    rectangle_to (x1,y1)
+  );
+  
+  - rectangle (x0,y0:INTEGER) to (x1,y1:INTEGER) :BOOLEAN <-
+  (
+    move_to (x0,y0);
+    rectangle_to (x1,y1)
+  );
+  
+  - rectangle (x0,y0:INTEGER) to (x1,y1:INTEGER) color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    rectangle (x0,y0) to (x1,y1)
+  );
+  
+  - rectangle_fill_to (x,y:INTEGER) :BOOLEAN <-
+  ( + x0,y0,x1,y1,tmp:INTEGER;
+    + col:UINTEGER_32;
+    + result:BOOLEAN;
+    
+    x0 := spot_x;
+    y0 := spot_y;
+    x1 := x;
+    y1 := y;
+    ( x0 > x1).if {
+      tmp := x0;
+      x0 := x1;
+      x1 := tmp;
+    };
+    
+    ( y0 > y1).if {
+      tmp := y0;
+      y0 := y1;
+      y1 := tmp;
+    };
+    
+    (( x0 > clip_x1 ) || { x1 < clip_x0 } || { y0 > clip_y1 } || { y1 < clip_y0 }).if {
+      result := FALSE;
+    } else {
+      result := TRUE;
+      
+      (clip_x0 > x0).if {
+	x0 := clip_x0;
+	result := FALSE;
+      };
+      (clip_y0 > y0).if { 
+	y0 := clip_y0;
+	result := FALSE;
+      };
+      ( clip_x1 < x1 ).if {
+	x1 := clip_x1;
+	result := FALSE;
+      };
+      (clip_y1 < y1).if {
+	y1 := clip_y1;
+	result := FALSE;
+      };            
+      col := rgbcolor;
+      y0.to y1 do { j:INTEGER;
+	line_h_hard (x0,j) until x1 color col;
+      };
+    };
+    result
+  );
+    
+  - rectangle_fill (x0,y0:INTEGER) to (x1,y1:INTEGER) :BOOLEAN <-
+  (
+    move_to (x0,y0);
+    rectangle_fill_to (x1,y1)
+  );
+  
+  - rectangle_fill (x0,y0:INTEGER) to (x1,y1:INTEGER) color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    rectangle_fill (x0,y0) to (x1,y1)
+  );
+  
+  //
+  // Circle
+  //
+  
+Section Private  
+  
+  - circle_points (x,y:INTEGER) centre (cx,cy:INTEGER) <-
+  (     
+    pixel_to ((cx+x),(cy+y));
+    pixel_to ((cx+x),(cy-y));
+    pixel_to ((cx+y),(cy+x));
+    pixel_to ((cx+y),(cy-x));
+    pixel_to ((cx-x),(cy+y));
+    pixel_to ((cx-x),(cy-y));
+    pixel_to ((cx-y),(cy+x));
+    pixel_to ((cx-y),(cy-x));
+  );
+  
+Section Public  
+  
+  - circle_fill_rayon r:INTEGER <-
+  ( + cx,cy,x,y,d,de,dse:INTEGER;
+    
+    cx := spot_x;
+    cy := spot_y;
+    x   := 0;
+    y   := r;
+    d   := 1 - r;
+    de  := 3;
+    dse := 5 - (r << 1);    
+    line_h ((cx-y),cy) until (cx+y);
+    {y > x}.while_do {
+      (d < 0).if {
+	d   := d   + de;
+	de  := de  + 2;
+	dse := dse + 2;
+	x   := x   + 1;
+	
+	line_h ((cx-y),(cy+x)) until (cx+y);
+	line_h ((cx-y),(cy-x)) until (cx+y);
+      } else {
+	d   := d + dse;
+	de  := de  + 2;
+	dse := dse + 4;
+	x   := x   + 1;
+	y   := y   - 1;
+	line_h ((cx-x),(cy+y)) until (cx+x);
+	line_h ((cx-x),(cy-y)) until (cx+x);
+	
+	line_h ((cx-y),(cy+x)) until (cx+y);
+	line_h ((cx-y),(cy-x)) until (cx+y);
+      };      
+    };
+  );
+  
+  - circle_fill (x,y:INTEGER) rayon r:INTEGER <-
+  (
+    move_to (x,y);
+    circle_fill_rayon r;
+  );
+  
+  - circle_fill (x,y:INTEGER) rayon r:INTEGER color col:UINTEGER_32 <-
+  (
+    color col;
+    circle_fill (x,y) rayon r;
+  );
+
+  - circle_rayon r:INTEGER <-
+  ( + cx,cy,x,y,d,de,dse:INTEGER;
+    
+    cx := spot_x;
+    cy := spot_y;
+    x   := 0;
+    y   := r;
+    d   := 1 - r;
+    de  := 3;
+    dse := 5 - (r << 1);
+    circle_points (x,y) centre (cx,cy);
+    {y > x}.while_do {
+      (d < 0).if {
+	d   := d   + de;
+	de  := de  + 2;
+	dse := dse + 2;
+	x   := x   + 1;
+      } else {
+	d   := d + dse;
+	de  := de  + 2;
+	dse := dse + 4;
+	x   := x   + 1;
+	y   := y   - 1;
+      };
+      circle_points (x,y) centre (cx,cy);
+    };
+  );
+  
+  - circle (x,y:INTEGER) rayon r:INTEGER <-
+  (
+    move_to (x,y);
+    circle_rayon r;
+  );
+  
+  - circle (x,y:INTEGER) rayon r:INTEGER color col:UINTEGER_32 <-
+  (
+    color col;
+    circle (x,y) rayon r;
+  );
+  
+  //
+  // Spline
+  //
+  
+Section Private  
+  
+  - delta_spline:REAL_16_16 := 32768.to_raw_real_16_16;
+  
+Section Public  
+  
+  - spline_w1 (px0,py0:INTEGER) w2 (px1,py1:INTEGER) to (x1,y1:INTEGER) :BOOLEAN <-
+  ( + result:BOOLEAN;
+    + x0,y0,d_x,d_y:INTEGER;
+    + num_points:INTEGER;
+    // Derivatives of x(t) and y(t).
+    + x, dx, ddx, dddx:REAL_16_16; 
+    + y, dy, ddy, dddy:REAL_16_16;
+    // Temp variables used in the setup.
+    + dt, dt2, dt3:REAL_16_16;
+    + xdt2_term, xdt3_term:REAL_16_16;
+    + ydt2_term, ydt3_term:REAL_16_16;
+    
+    x0 := spot_x;
+    y0 := spot_y;
+        
+    d_x := px0 - x0;
+    d_y := py0 - y0;
+    num_points := (d_x*d_x + d_y*d_y).sqrt;      
+    
+    d_x := px1 - px0;
+    d_y := py1 - py0;
+    num_points := num_points + (d_x*d_x + d_y*d_y).sqrt; 
+    
+    d_x := x1 - px1;
+    d_y := y1 - py1;
+    num_points := (num_points + (d_x*d_x + d_y*d_y).sqrt).sqrt;
+    num_points := num_points + (num_points >> 2); // * 1.25 .sqrt
+    
+    
+    (num_points > 128).if {
+      num_points := 128; // Max points
+    };
+    
+    (num_points < 2).if {
+      num_points := 2;   // Min points
+    };
+    
+    dt := 1.to_real_16_16 /# (num_points - 1);
+    dt2 := dt * dt;
+    dt3 := dt2 * dt;
+    
+    // x coordinates.
+    xdt2_term := dt2 *# ((px1 - px0 * 2 + x0) * 3);
+    xdt3_term := dt3 *# (x1 + ((px0 - px1) * 3) -x0);
+    
+    dddx := xdt3_term *# 6;
+    ddx  := xdt3_term *# -6 + xdt2_term *# 2;
+    dx   := xdt3_term - xdt2_term + dt *# ((px0 - x0)*3);  
+    x    := x0.to_real_16_16;
+    
+    // y coordinates.
+    ydt2_term := dt2 *# ((py1 - py0 * 2 + y0) * 3);
+    ydt3_term := dt3 *# (y1 + ((py0 - py1) * 3) - y0);
+    
+    dddy := ydt3_term *# 6;
+    ddy  := ydt3_term *# -6 + ydt2_term *# 2;
+    dy   := ydt3_term - ydt2_term + dt *# ((py0 - y0)*3); 
+    y    := y0.to_real_16_16;
+        
+    x := x + delta_spline;
+    y := y + delta_spline;
+    
+    1.to (num_points - 1) do { i:INTEGER;
+      ddx := ddx + dddx;
+      dx := dx + ddx;
+      x := x + dx;
+      ddy := ddy + dddy;
+      dy := dy + ddy;
+      y := y + dy;
+      result:= result | line_to ((x.to_integer),(y.to_integer)); 
+    };    
+    result    
+  );
+  
+  - spline_w1 (px0,py0:INTEGER) w2 (px1,py1:INTEGER) to (x1,y1:INTEGER) color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    spline_w1 (px0,py0) w2 (px1,py1) to (x1,y1)
+  );
+  
+  
+  - spline (x0,y0:INTEGER) w1 (px0,py0:INTEGER) w2 (px1,py1:INTEGER) to (x1,y1:INTEGER) :BOOLEAN <-
+  (
+    move_to (x0,y0);
+    spline_w1 (px0,py0) w2 (px1,py1) to (x1,y1)
+  );
+  
+  
+  - spline (x0,y0:INTEGER) w1 (px0,py0:INTEGER) w2 (px1,py1:INTEGER) to (x1,y1:INTEGER) color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    spline (x0,y0) w1 (px0,py0) w2 (px1,py1) to (x1,y1)
+  );
+  
+  //*****************************************************************************
+  //*                         POLYGONE COMPLEXE                                 *
+  //* V.4.0 : Il n'y a plus de contrainte de sens comme dans la version 3.0     *
+  //*         Nouvelle algo made in `moi'...                                    *
+  //*         Il faut juste faire attention à appeler dans l'ordre suivant :    *
+  //*         => poly_move_to poly_line_to ... poly_trace                       *
+  //*                                                                           *
+  //* Rmq. : Il reste des optimisations à faire pour le tri (qsort) et utiliser *
+  //*        des MAP_FAST_ARRAY capable de s'agrandir dynamiquement ...        *
+  //*                                                                           *
+  //*                                                           BeN inside      *
+  //*****************************************************************************
+  
+Section Private  
+  
+  + edges:FAST_ARRAY(EDGE); // BSBS: A optimiser avec un MAP_FAST_ARRAY ... quand il y aura add_last, resize...
+
+  + edges_upper:INTEGER;
+  + poly_ymax:INTEGER := INTEGER.minimum.to_integer;
+  
+  + poly_list_y:FAST_ARRAY(EDGE);
+    
+  + begin_y:EDGE;  
+  + begin_idx:INTEGER;
+  
+  + last_y:EDGE;  
+  + last_idx:INTEGER;
+  
+  + x_origin:INTEGER;
+  + y_origin:INTEGER;
+  
+Section Private  
+  
+  - display_poly <-
+  ( + edge:EDGE;
+    
+    0.to (poly_list_y.upper) do { i:INTEGER;
+      edge := poly_list_y.item i;
+      {edge != NULL}.while_do {
+	edge.display;
+	';'.print;
+	edge := edge.next_y;
+      };
+      '\n'.print;
+    };
+  );
+  
+Section Private  
+  
+  - connect_first <-
+  (
+    poly_line_to (x_origin,y_origin);
+    ((begin_y!=NULL) && {begin_y.is_down = last_y.is_down}).if {
+      // Connecting.
+      (begin_y.is_down).if {
+	// Add first list. 
+	last_y.set_next_y begin_y;	
+	poly_list_y.put (poly_list_y.item last_idx) to begin_idx;
+      } else {
+	// Add last list.
+	begin_y.set_next_y last_y;
+      };
+      poly_list_y.remove last_idx;
+    };
+  );    
+  
+  - sort_list_y <-
+  // Bubble sort :-( => BSBS: Optmize with Quick sort...
+  ( + low,up,idx,upper:INTEGER;
+    + swap:BOOLEAN;
+    
+    upper := poly_list_y.upper-1;
+    
+    low := 0;
+    up  := upper;
+    {
+      swap:=FALSE;
+      low.to up do { i:INTEGER;	
+	(poly_list_y.item i.y0 > poly_list_y.item (i+1).y0).if {
+	  poly_list_y.swap i with (i+1);
+	  swap := TRUE;
+	};
+	
+	idx := upper - i;
+	(poly_list_y.item idx.y0 > poly_list_y.item (idx+1).y0).if {
+	  poly_list_y.swap idx with (idx+1);
+	  swap := TRUE;
+	};		
+      };
+      up  := up - 1;
+      low := low + 1;
+    }.do_while {swap};
+  );
+
+Section Public  
+  
+  - poly_move_to (x,y:INTEGER) <-
+  (     
+    
+    (edges = NULL).if {
+      poly_list_y := FAST_ARRAY(EDGE).create_with_capacity 16;
+      edges := FAST_ARRAY(EDGE).create 64;      
+      0.to 63 do { n:INTEGER;
+	edges.put (EDGE.clone) to n;
+      };
+    };
+  
+    (edges_upper != 0).if {      
+      connect_first;
+    };
+    move_to (x,y); 
+    x_origin := x;
+    y_origin := y;
+    begin_y  := NULL;
+    last_y   := NULL;
+    
+    poly_ymax := poly_ymax.max y;
+  );
+  
+  - poly_line_to (x1,y1:INTEGER) <-
+  ( + edge,edge2:EDGE;
+    + x0,y0:INTEGER;
+    
+    x0:=spot_x; 
+    y0:=spot_y; 
+    
+    ((x0!=x1) || {y0!=y1}).if {
+      
+      move_to (x1,y1); 
+            
+      (edges_upper >= (edges.upper-4)).if { // BSBS: A optimiser avec MAP_ARRAY ...
+	// Append 16 Edges.	
+	0.to 15 do { j:INTEGER;
+	  edges.add_last (EDGE.clone);
+	};
+      };
+            
+      (y0=y1).if { 
+	// Flat.
+	edge  := edges.item edges_upper;	
+	edges_upper := edges_upper + 1;
+	poly_list_y.add_last edge;
+	edge2 := edges.item edges_upper;
+	edges_upper := edges_upper + 1;
+	poly_list_y.add_last edge2;
+	
+	(x0 < x1).if {
+	  edge .make (x0,y0) add 1;
+	  edge2.make (x1,y1) add (-1);
+	} else {
+	  edge .make (x0,y0) add (-1);
+	  edge2.make (x1,y1) add 1;
+	};
+      } else { 
+	// Line.	
+	edge  := edges.item edges_upper;
+	edges_upper := edges_upper + 1;
+	edge.make (x0,y0) to (x1,y1);
+	
+	(begin_y=NULL).if {
+	  begin_idx := poly_list_y.count;
+	  begin_y   := edge;
+	};
+	
+	((last_y=NULL) || {last_y.is_down != edge.is_down}).if {
+	  // New line_y.
+	  poly_list_y.add_last edge;
+	  last_idx := poly_list_y.upper;
+	  last_y   := edge;
+	  poly_ymax := poly_ymax.max y1;
+	} else {
+	  // Continue line_y.
+	  (edge.is_down).if {
+	    // Add last.
+	    last_y.set_next_y edge;
+	    poly_ymax := poly_ymax.max y1;
+	  } else {
+	    // Add first.
+	    poly_list_y.put edge to last_idx;
+	    edge.set_next_y last_y;	    
+	  };
+	  last_y := edge;
+	};
+      };
+    };    
+  );
+  
+  - poly_rectangle (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  (
+    poly_move_to (x0,y0);
+    poly_line_to (x1,y0);
+    poly_line_to (x1,y1);
+    poly_line_to (x0,y1);
+    poly_line_to (x0,y0);
+  );
+
+  - poly_spline_w1 (px0,py0:INTEGER) w2 (px1,py1:INTEGER) to (x1,y1:INTEGER) <-
+  ( + x0,y0,d_x,d_y:INTEGER;
+    + num_points:INTEGER;
+    // Derivatives of x(t) and y(t).
+    + x, dx, ddx, dddx:REAL_16_16; 
+    + y, dy, ddy, dddy:REAL_16_16;
+    // Temp variables used in the setup.
+    + dt, dt2, dt3:REAL_16_16;
+    + xdt2_term, xdt3_term:REAL_16_16;
+    + ydt2_term, ydt3_term:REAL_16_16;
+    
+    x0 := spot_x;
+    y0 := spot_y;
+    
+    d_x := px0 - x0;
+    d_y := py0 - y0;
+    num_points := (d_x*d_x + d_y*d_y).sqrt;  
+    
+    d_x := px1 - px0;
+    d_y := py1 - py0;
+    num_points := num_points + (d_x*d_x + d_y*d_y).sqrt; 
+    
+    d_x := x1 - px1;
+    d_y := y1 - py1;
+    num_points := (num_points + (d_x*d_x + d_y*d_y).sqrt).sqrt;
+    num_points := num_points + (num_points >> 2); // * 1.25 .sqrt
+    
+    num_points := num_points.min 128.max 2;
+    
+    dt := 1.to_real_16_16 /# (num_points - 1);
+    dt2 := dt * dt;
+    dt3 := dt2 * dt;
+    
+    // x coordinates.
+    xdt2_term := dt2 *# ((px1 - px0 * 2 + x0) * 3);
+    xdt3_term := dt3 *# (x1 + ((px0 - px1) * 3) -x0);
+    
+    dddx := xdt3_term *# 6;
+    ddx  := xdt3_term *# -6 + xdt2_term *# 2;
+    dx   := xdt3_term - xdt2_term + dt *# ((px0 - x0)*3);  
+    x    := x0.to_real_16_16;
+    
+    // y coordinates.
+    ydt2_term := dt2 *# ((py1 - py0 * 2 + y0) * 3);
+    ydt3_term := dt3 *# (y1 + ((py0 - py1) * 3) - y0);
+    
+    dddy := ydt3_term *# 6;
+    ddy  := ydt3_term *# -6 + ydt2_term *# 2;
+    dy   := ydt3_term - ydt2_term + dt *# ((py0 - y0)*3); 
+    y    := y0.to_real_16_16;
+        
+    x := x + delta_spline;
+    y := y + delta_spline;
+    
+    1.to (num_points - 1) do { i:INTEGER;
+      ddx := ddx + dddx;
+      dx  := dx + ddx;
+      x   := x + dx;
+      ddy := ddy + dddy;
+      dy  := dy + ddy;
+      y   := y + dy;
+      poly_line_to (x.to_integer,y.to_integer); 
+    };    
+  );
+  
+  - poly_ellipse (x,y:INTEGER) rays (ray_x,ray_y:INTEGER) <-
+  ( + x0,y0,x1,y1,dx,dy:INTEGER;
+    x0 := x - ray_x;
+    x1 := x + ray_x;
+    y0 := y - ray_y;
+    y1 := y + ray_y;
+    dx := (ray_x * 5) / 9;
+    dy := (ray_y * 5) / 9;
+    
+    poly_move_to (x,y0);    
+    poly_spline_w1 (x+dx,y0) w2 (x1,y-dy) to (x1,y) ;
+    poly_spline_w1 (x1,y+dy) w2 (x+dx,y1) to (x ,y1);
+    poly_spline_w1 (x-dx,y1) w2 (x0,y+dy) to (x0,y) ;
+    poly_spline_w1 (x0,y-dy) w2 (x-dx,y0) to (x ,y0);     
+  );
+  
+  - poly_trace <-
+  ( + edge,next_edge,edgep:EDGE;
+    + x_edges:EDGE;
+    + x0,x1,new_x:INTEGER;
+    + idx_y:INTEGER;
+    + trace:INTEGER;
+    + line :INTEGER;    
+    
+    (edges_upper != 0).if {
+      (poly_ymax >= clip_y0).if {
+        // Connexion with first point.    
+        connect_first;
+        
+        // Optimize clip_y0
+        (poly_list_y.upper).downto 0 do { j:INTEGER;
+          edge := poly_list_y.item j;
+          {(edge != NULL) && {edge.y1 < clip_y0}}.while_do {
+            edge := edge.next_y;
+          };
+          (edge = NULL).if {
+            poly_list_y.remove j;	  
+          } else {
+            poly_list_y.put edge to j;	  
+          };
+        };
+        
+        // Sort on Y.    
+        sort_list_y;
+        
+        poly_ymax := poly_ymax.min clip_y1;
+        line := 1;
+        // for each scanline in the polygon.
+        (poly_list_y.first.y0).to poly_ymax do { y:INTEGER;
+          // Active edges.
+          {(idx_y <= poly_list_y.upper) && {poly_list_y.item idx_y.y0 = y}}.while_do {
+            x_edges := poly_list_y.item idx_y.add x_edges;
+            idx_y   := idx_y + 1;
+          };
+          
+          // Draw horizontal line. 
+          x1:=INTEGER.minimum.to_integer;
+          edge:=x_edges;
+          {edge!=NULL}.while_do {
+            next_edge:=edge.next_x;	
+            // Trace.
+            (y >= clip_y0).if { 
+              
+              (trace = 0).if {
+                // Begin point.    
+                new_x := (edge.x+127)>>8;
+                ((new_x != x1) && {new_x != (x1 + 1)}).if {
+                  ((x0 <= clip_x1) && {x1 >= clip_x0}).if { 
+                    x0:=x0.max clip_x0;
+                    x1:=x1.min clip_x1;
+                    line_h_hard (x0,y) until x1 color rgbcolor; 
+                  };  
+                  x0 := new_x;
+                };
+              };
+              
+              (edge.is_point).if {
+                trace := trace + edge.dx; 
+              } else {
+                trace := trace + line;
+                line  := - line;
+              };
+              
+              (trace = 0).if {
+                // End point.
+                x1 := (edge.x+128)>>8;	    
+              };	  
+            };
+            
+            // Inc edges.	  
+            (edge.width!=0).if { 	    
+              edge.new_step;
+              
+              // Sort with X :
+              edgep:=edge.prev_x;
+              {(edgep!=NULL) && {edge.x<edgep.x}}.while_do {
+                edgep:=edgep.prev_x;
+              };
+              (edgep!=edge.prev_x).if {
+                edge.prev_x.set_next_x (edge.next_x);
+                (edge.next_x!=NULL).if {
+                  edge.next_x.set_prev_x (edge.prev_x);
+                };
+                edge.set_prev_x edgep;
+                (edgep!=NULL).if {
+                  edge.set_next_x (edgep.next_x);
+                  edgep.set_next_x edge;
+                } else {
+                  edge.set_next_x x_edges;
+                  x_edges:=edge;
+                };
+                (edge.next_x!=NULL).if {
+                  edge.next_x.set_prev_x edge;
+                };
+              };
+            } else {
+              // Next line.
+              x_edges:=edge.next_line x_edges; 
+            };
+            edge := next_edge;
+          };
+          ((x0 <= clip_x1) && {x1 >= clip_x0}).if { 
+            x0:=x0.max clip_x0;
+            x1:=x1.min clip_x1;
+            line_h_hard (x0,y) until x1 color rgbcolor; 
+          };
+        };
+      };
+    };
+    // Init structure for next.
+    edges_upper:=0;
+    poly_list_y.clear;
+    begin_y:=NULL;
+    poly_ymax:=INTEGER.minimum.to_integer;
+  );
+  
+  - poly_trace_color col:UINTEGER_32 <-
+  ( 
+    color col;
+    poly_trace;
+  );
+  
+  - put_bitmap bmp:ABSTRACT_BITMAP to (x,y:INTEGER) <-
+  (
+    deferred;
+  );
+
+  - put_bitmap bmp:ABSTRACT_BITMAP to (x,y:INTEGER) scale (scale_x,scale_y:REAL_16_16) <-  
+  (
+    deferred;
+  );
+  
+Section Public
+  
+  // For demo ... :-)
+  
+  - font_width string:ABSTRACT_STRING :INTEGER <-
+  ( 
+    font_width string size (string.upper)
+  );
+  
+  - font_width_letter char:CHARACTER :INTEGER <-
+  ( + offset_begin,offset_end:INTEGER;
+    + car:INTEGER;
+
+    car := char.to_integer;
+    ((car < 32) || {car >= 127}).if {
+      car := 0;
+    } else {
+      car := car-32;
+    };
+    offset_begin:=`__index_font[@car]`:INTEGER;
+    offset_end  :=`__index_font[@car+1]`:INTEGER;
+    offset_end - offset_begin + 1
+  );
+
+  - font_width string:ABSTRACT_STRING size n:INTEGER :INTEGER <-
+  (     
+    font_width string at (string.lower) to n
+  );
+  
+  - font_width string:ABSTRACT_STRING at beg:INTEGER to end:INTEGER :INTEGER <-
+  ( + result:INTEGER;
+
+    beg.to end do { j:INTEGER;
+      result:=result + font_width_letter (string.item j);
+    };
+    result
+  );
+  
+  - print_char c:CHARACTER to (x,y:INTEGER) :INTEGER <-
+  ( + pix_x,pix_y,offset_begin,offset_end:INTEGER;
+    + bit_count:UINTEGER_16;
+    + sz_letter:INTEGER;
+    + car:UINTEGER_8;
+    
+    car := c.to_uinteger_8;
+    ((y <= clip_y1) && {(y+15) >= clip_y0} && {x <= clip_x1}).if {
+      pix_x:=x;      	
+      ((car<32) || {car>=127}).if {
+	car:=0;
+      } else {
+	car:=car-32;
+      };
+      offset_begin:=`__index_font[@car]`:INTEGER;
+      offset_end  :=`__index_font[@car+1]`:INTEGER;
+      sz_letter := offset_end-offset_begin + 1;
+      ((pix_x + sz_letter) > clip_x0).if {
+	{offset_begin != offset_end}.while_do {
+	  (pix_x.in_range clip_x0 to clip_x1).if {
+	    pix_y:=y;
+	    bit_count:=1;
+	    {bit_count != 0}.while_do {
+	      (pix_y.in_range clip_y0 to clip_y1).if {
+		((`__graph_font[@offset_begin]`:UINTEGER_16 & bit_count)!=0).if {
+		  pixel_hard (pix_x,pix_y) color rgbcolor;
+		};		
+	      };
+	      pix_y:=pix_y+1;
+	      bit_count:=bit_count << 1;
+	    };
+	  };
+	  pix_x:=pix_x+1;
+	  offset_begin:=offset_begin+1;
+	};
+	pix_x := pix_x + 1;
+      } else {
+	pix_x := pix_x + sz_letter;
+      };    
+    };    
+    pix_x
+  );
+  
+  - print string:ABSTRACT_STRING at b:INTEGER to e:INTEGER to (x,y:INTEGER) :INTEGER <-
+  ( + pix_x,pix_y,offset_begin,offset_end:INTEGER;
+    + bit_count:UINTEGER_16;
+    + car,sz_letter:INTEGER;
+    
+    ((y <= clip_y1) && {(y+15) >= clip_y0} && {x <= clip_x1}).if {
+      pix_x:=x;
+      b.to e do { j:INTEGER;
+	car:=string.item j.to_integer;
+	((car<32) || {car>=127}).if {
+	  car:=0;
+	} else {
+	  car:=car-32;
+	};
+	offset_begin:=`__index_font[@car]`:INTEGER;
+	offset_end  :=`__index_font[@car+1]`:INTEGER;
+	sz_letter := offset_end-offset_begin + 1;
+	((pix_x + sz_letter) > clip_x0).if {
+	  {offset_begin != offset_end}.while_do {
+	    (pix_x.in_range clip_x0 to clip_x1).if {
+	      pix_y:=y;
+	      bit_count:=1;
+	      {bit_count != 0}.while_do {
+		(pix_y.in_range clip_y0 to clip_y1).if {
+		  ((`__graph_font[@offset_begin]`:UINTEGER_16 & bit_count)!=0).if {
+		    pixel_hard (pix_x,pix_y) color rgbcolor;
+		  };		
+		};
+		pix_y:=pix_y+1;
+		bit_count:=bit_count << 1;
+	      };
+	    };
+	    pix_x:=pix_x+1;
+	    offset_begin:=offset_begin+1;
+	  };
+	  pix_x := pix_x + 1;
+	} else {
+	  pix_x := pix_x + sz_letter;
+	};	
+      };
+    };
+    pix_x
+  );
+
+  - print string:ABSTRACT_STRING to (x,y:INTEGER) :INTEGER <-
+  ( 
+    print string at (string.lower) to (string.upper) to (x,y)
+  );
diff --git a/lib/extra/graphics/low_level/abstract_bmp_line.li b/lib/extra/graphics/low_level/abstract_bmp_line.li
new file mode 100644
index 0000000..414aee1
--- /dev/null
+++ b/lib/extra/graphics/low_level/abstract_bmp_line.li
@@ -0,0 +1,95 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := ABSTRACT_BMP_LINE;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "Generic bitmap line";
+  
+Section Inherit
+  
+  - parent_arrayed:ARRAYED := ARRAYED;
+    
+Section Public
+  
+  - lower:INTEGER := 0;
+  
+  + upper:INTEGER;
+  
+  + capacity:INTEGER;
+  
+  - count:INTEGER <- (upper + 1);
+    
+  //
+  // Modification
+  //
+  
+  - clear <-
+  (
+    upper := -1;
+  );
+   
+  //
+  // Put.
+  //
+  
+  - put col:UINTEGER_32 to n:INTEGER <-
+  ( 
+    deferred;
+  );
+  
+  - put col:UINTEGER_32 from idx_begin:INTEGER to idx_end:INTEGER <-   
+  (  
+    deferred;
+  );
+  
+  - put bmp:ABSTRACT_BMP_LINE offset ofs:INTEGER from idx_begin:INTEGER to idx_end:INTEGER <-
+  ( 
+    deferred;
+  );
+  
+  //
+  // Get.
+  //
+  
+  - get_color n:INTEGER :UINTEGER_32 <-
+  ( 
+    deferred;
+  );
+  
+  - item_8  n:INTEGER :PIXEL_8  <- ( deferred; PIXEL_8);
+  
+  - item_15 n:INTEGER :PIXEL_15 <- ( deferred; PIXEL_15);
+
+  - item_16 n:INTEGER :PIXEL_16 <- ( deferred; PIXEL_16);
+
+  - item_24 n:INTEGER :PIXEL_24 <- ( deferred; PIXEL_24);
+
+  - item_32 n:INTEGER :PIXEL_32 <- ( deferred; PIXEL_32);
+  
+  //
+  // Arrayed consideration.
+  //
+  
+  - get_storage:NATIVE_ARRAY(UINTEGER_8) <- ( deferred; NULL); 
diff --git a/lib/extra/graphics/low_level/pixel.li b/lib/extra/graphics/low_level/pixel.li
new file mode 100644
index 0000000..3c908d1
--- /dev/null
+++ b/lib/extra/graphics/low_level/pixel.li
@@ -0,0 +1,114 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := PIXEL;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Generic Pixel.";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - red:UINTEGER_8   <- (deferred; 0);
+  // Abstracted red component on 8 bits.
+
+  - green:UINTEGER_8 <- (deferred; 0);
+  // Abstracted green component on 8 bits.
+
+  - blue:UINTEGER_8  <- (deferred; 0);
+  // Abstracted blue component on 8 bits.
+  
+  - get_raw col:UINTEGER_32 :UINTEGER_32 <- (deferred; 0);
+  
+  //
+  // Access color 32 bits.
+  //
+  
+  - rgbcolor:UINTEGER_32 <-
+  (
+    (red.to_uinteger_32 << 16) | (green.to_uinteger_32 << 8) | blue
+  );
+  
+  //
+  // Modification 32bits.
+  //
+  
+  - make col:UINTEGER_32 <- deferred;
+  
+  - make_rgb (r,g,b:UINTEGER_8) <- deferred;  // For speed conversion between pixels
+  
+  //
+  // Consultation geometry.
+  //
+  
+  - size:UINTEGER_8 <- ( deferred; 0); 
+  - red_size:UINTEGER_8 <- ( deferred; 0);      
+  - red_pos:UINTEGER_8 <- ( deferred; 0);
+  - green_size:UINTEGER_8 <- ( deferred; 0);
+  - green_pos:UINTEGER_8 <- ( deferred; 0);
+  - blue_size:UINTEGER_8 <- ( deferred; 0);
+  - blue_pos:UINTEGER_8 <- ( deferred; 0);
+  - reserved_size:UINTEGER_8 <- ( deferred; 0);
+  - reserved_pos:UINTEGER_8 <- ( deferred; 0);
+  
+  //
+  // Conversion.
+  //
+  
+  - to_pixel_8:PIXEL_8 <- 
+  (     
+    PIXEL_8.create_rgb (red,green,blue)        
+  );
+
+  - to_pixel_15:PIXEL_15 <-
+  ( 
+    PIXEL_15.color_rgb (red,green,blue)
+  );
+  
+  - to_pixel_16:PIXEL_16 <-
+  (     
+    PIXEL_16.color_rgb (red,green,blue)
+  );
+
+  - to_pixel_24:PIXEL_24 <-
+  (     
+    PIXEL_24.color_rgb (red,green,blue)
+  );
+
+  - to_pixel_32:PIXEL_32 <-
+  (     
+    PIXEL_32.color_rgb (red,green,blue)
+  );
+  
+  //
+  // Display.
+  //
+  
+  - print <- deferred;
+
+
+
diff --git a/lib/extra/graphics/pixel_15.li b/lib/extra/graphics/pixel_15.li
new file mode 100644
index 0000000..c67d54e
--- /dev/null
+++ b/lib/extra/graphics/pixel_15.li
@@ -0,0 +1,108 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := Expanded PIXEL_15;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Pixel on 15 bits";
+    
+Section Insert
+  
+  + parent_pixel:Expanded PIXEL;
+  
+Section Mapping  
+  
+  + real_color:UINTEGER_16;
+  
+Section Private
+      
+  - convert_5_to_8:FAST_ARRAY(UINTEGER_8) :=
+  ( + result:FAST_ARRAY(UINTEGER_8);
+    + value:UINTEGER_8;
+    
+    result:=FAST_ARRAY(UINTEGER_8).create 32;
+    0.to 31 do { j:INTEGER;
+      result.put value to j;
+      value := value + 8;      
+    };
+    result
+  );
+        
+Section Public
+  
+  - red:UINTEGER_8 <- 
+  (
+    convert_5_to_8.item (real_color >> 10)
+  );
+  
+  - green:UINTEGER_8 <- 
+  (
+    convert_5_to_8.item ((real_color >> 5) & 01Fh)
+  );
+
+  - blue:UINTEGER_8 <- 
+  (
+    convert_5_to_8.item (real_color & 01Fh)
+  );
+  
+  - get_raw col:UINTEGER_32 :UINTEGER_32 <- 
+  (
+    ((col & 0F80000h) >> 9) |
+    ((col & 000F800h) >> 6) |
+    ((col & 00000F8h) >> 3)
+  );
+  
+  - make col:UINTEGER_32 <-
+  (   
+    real_color := (
+      ((col & 0F80000h) >> 9) |
+      ((col & 000F800h) >> 6) |
+      ((col & 00000F8h) >> 3)
+    ).to_uinteger_16;
+  );
+  
+  - make_rgb (r,g,b:UINTEGER_8) <-
+  (
+    real_color := (
+      ((r & 0F8h).to_uinteger_16 << 7) |
+      ((g & 0F8h).to_uinteger_16 << 2) |
+      ((b & 0F8h).to_uinteger_16 >> 3)
+    );
+  );
+    
+  - size:UINTEGER_8          := 16; 
+  - red_size:UINTEGER_8      := 5;
+  - red_pos:UINTEGER_8       := 10;
+  - green_size:UINTEGER_8    := 5;
+  - green_pos:UINTEGER_8     := 5;
+  - blue_size:UINTEGER_8     := 5;
+  - blue_pos:UINTEGER_8      := 0;
+  - reserved_size:UINTEGER_8 := 1;
+  - reserved_pos:UINTEGER_8  :=15;
+    
+  - to_pixel_15:PIXEL_15 <- Self;
+  
+
+  
+
diff --git a/lib/extra/graphics/pixel_16.li b/lib/extra/graphics/pixel_16.li
new file mode 100644
index 0000000..ba60514
--- /dev/null
+++ b/lib/extra/graphics/pixel_16.li
@@ -0,0 +1,123 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := Expanded PIXEL_16;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Pixel on 16 bits.";
+    
+Section Insert
+  
+  + parent_pixel:Expanded PIXEL;
+  
+Section Mapping  
+  
+  + real_color:UINTEGER_16;
+  
+Section Private  
+    
+  - convert_5_to_8:FAST_ARRAY(UINTEGER_8) :=
+  ( + result:FAST_ARRAY(UINTEGER_8);
+    + value:UINTEGER_8;
+    
+    result:=FAST_ARRAY(UINTEGER_8).create 32;    
+    0.to 31 do { j:INTEGER;
+      result.put value to j;
+      value := value + 8;
+    };
+    result
+  );
+  
+  - convert_6_to_8:FAST_ARRAY(UINTEGER_8) :=
+  ( + result:FAST_ARRAY(UINTEGER_8);
+    + value:UINTEGER_8;
+    
+    result:=FAST_ARRAY(UINTEGER_8).create 64;    
+    0.to 63 do { j:INTEGER;
+      result.put value to j;
+      value := value + 4;
+    };
+    result
+  );
+      
+Section Public
+    
+  - red:UINTEGER_8 <- 
+  (
+    (((real_color >> 11) & 1Fh)  << 3).to_uinteger_8
+    //convert_5_to_8.item (real_color >> 11)
+  );
+  
+  - green:UINTEGER_8 <- 
+  (
+    (((real_color >> 5) & 3Fh) << 2).to_uinteger_8
+    //convert_6_to_8.item ((real_color >> 5) & 03Fh)
+  );
+
+  - blue:UINTEGER_8 <- 
+  (
+    ((real_color & 1Fh) << 3).to_uinteger_8
+//    convert_5_to_8.item (real_color & 01Fh)
+  );
+  
+  - get_raw col:UINTEGER_32 :UINTEGER_32 <-
+  (
+    ((col & 0F80000h) >> 8) |
+    ((col & 000FC00h) >> 5) |
+    ((col & 00000F8h) >> 3)
+  );
+  
+  - make col:UINTEGER_32 <-
+  (     
+    real_color := (
+      ((col & 0F80000h) >> 8) |
+      ((col & 000FC00h) >> 5) |
+      ((col & 00000F8h) >> 3)
+    ).to_uinteger_16;
+  );
+  
+  - color_rgb (r,g,b:UINTEGER_8) <-
+  ( 
+    real_color := (
+      ((r & 0F8h).to_uinteger_16 << 8) |
+      ((g & 0FCh).to_uinteger_16 << 3) |
+      ((b & 0F8h).to_uinteger_16 >> 3)
+    );
+  );
+  
+  - size:UINTEGER_8       := 16; 
+  - red_size:UINTEGER_8   := 5;
+  - red_pos:UINTEGER_8    := 11;
+  - green_size:UINTEGER_8 := 6;
+  - green_pos:UINTEGER_8  := 5;
+  - blue_size:UINTEGER_8  := 5;
+  - blue_pos:UINTEGER_8   := 0;
+  - reserved_size:UINTEGER_8 :=0;
+  - reserved_pos:UINTEGER_8  :=0;
+    
+  - to_pixel_16:PIXEL_16 <- Self;
+
+
+
+
diff --git a/lib/extra/graphics/pixel_24.li b/lib/extra/graphics/pixel_24.li
new file mode 100644
index 0000000..69065f9
--- /dev/null
+++ b/lib/extra/graphics/pixel_24.li
@@ -0,0 +1,106 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := Expanded PIXEL_24;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Pixel on 24 bits.";
+    
+Section Insert
+  
+  - parent_pixel:PIXEL := PIXEL;
+  
+Section Mapping
+  
+  + map_blue:UINTEGER_8;
+  
+  + map_green:UINTEGER_8;
+
+  + map_red:UINTEGER_8;
+  
+Section Public
+  
+  - blue:UINTEGER_8 <- map_blue;
+  
+  - green:UINTEGER_8 <- map_green;
+
+  - red:UINTEGER_8 <- map_red;
+  
+  - get_raw col:UINTEGER_32 :UINTEGER_32 <-
+  (
+    col
+  );
+  
+  - get_color:UINTEGER_32 <-
+  ( + result:UINTEGER_32;
+    /* BSBS: NE MARCHE PAS (see viewer)
+    result := `&(@Self)`:UINTEGER_32;
+    result := result & 0FFFFFFh;
+    */
+    result := map_red;
+    result := (result << 8) | map_green;
+    result := (result << 8) | map_blue;
+    
+    result
+  );
+    
+  - make col:UINTEGER_32 <-
+  (
+    map_red   :=  (col >> 16).to_uinteger_8;
+    map_green := ((col & 00FF00h) >> 8).to_uinteger_8;
+    map_blue  :=  (col & 0000FFh).to_uinteger_8;
+  );  
+  
+  - make_rgb (r,g,b:UINTEGER_8) <-
+  (
+    map_red := r;
+    map_green := g;
+    map_blue := b;
+  );
+  
+  - size:UINTEGER_8       := 24; 
+  - red_size:UINTEGER_8   := 8;
+  - red_pos:UINTEGER_8    := 16;
+  - green_size:UINTEGER_8 := 8;
+  - green_pos:UINTEGER_8  := 8;
+  - blue_size:UINTEGER_8  := 8;
+  - blue_pos:UINTEGER_8   := 0;
+  - reserved_size:UINTEGER_8 :=0;
+  - reserved_pos:UINTEGER_8  :=0;
+        
+  - to_pixel_24:PIXEL_24 <- Self;
+  
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/lib/extra/graphics/pixel_32.li b/lib/extra/graphics/pixel_32.li
new file mode 100644
index 0000000..9d64d21
--- /dev/null
+++ b/lib/extra/graphics/pixel_32.li
@@ -0,0 +1,89 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := Expanded PIXEL_32;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Pixel on 32 bits.";
+  
+Section Insert
+  
+  + parent_pixel:Expanded PIXEL;
+  
+Section Mapping
+  
+  + map_blue:UINTEGER_8;
+
+  + map_green:UINTEGER_8;
+
+  + map_red:UINTEGER_8;
+    
+  + map_alpha:UINTEGER_8;
+  
+Section Public
+  
+  - blue:UINTEGER_8 <- map_blue;
+  
+  - green:UINTEGER_8 <- map_green;
+
+  - red:UINTEGER_8 <- map_red;
+  
+  - get_raw col:UINTEGER_32 :UINTEGER_32 <-
+  (
+    col
+  );
+  
+  - make col:UINTEGER_32 <-
+  (
+    map_alpha := ((col & 0FF000000h) >> 24).to_uinteger_8;
+    map_red   := ((col & 000FF0000h) >> 16).to_uinteger_8;
+    map_green := ((col & 00000FF00h) >>  8).to_uinteger_8;
+    map_blue  :=  (col & 0000000FFh).to_uinteger_8;    
+  );
+  
+  - make_rgb (r,g,b:UINTEGER_8) <-
+  (
+    map_red   := r;
+    map_green := g;
+    map_blue  := b;
+  );
+  
+  - size:UINTEGER_8       := 32; 
+  - red_size:UINTEGER_8   := 8;
+  - red_pos:UINTEGER_8    := 16;
+  - green_size:UINTEGER_8 := 8;
+  - green_pos:UINTEGER_8  := 8;
+  - blue_size:UINTEGER_8  := 8;
+  - blue_pos:UINTEGER_8   := 0;
+  - reserved_size:UINTEGER_8 :=8;
+  - reserved_pos:UINTEGER_8  :=24;
+    
+  - to_pixel_32:PIXEL_32 <- Self;
+  
+
+
+
+
+
+
diff --git a/lib/extra/gui/clipping/area.li b/lib/extra/gui/clipping/area.li
new file mode 100644
index 0000000..c414916
--- /dev/null
+++ b/lib/extra/gui/clipping/area.li
@@ -0,0 +1,1227 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := AREA;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "Window Clipping. (Algorithm by Benoit Sonntag)";
+    
+  - version     := 5;
+  
+Section Inherit
+  
+  - parent_video:VIDEO := VIDEO; //ABSTRACT_BITMAP := ABSTRACT_BITMAP;
+  
+  - parent_inbox:INBOX := INBOX;
+  
+Section INTERFACE  
+  /*
+  - set_video_support bmp:ABSTRACT_BITMAP <-
+  (
+    parent_video := bmp;
+  );
+  */
+Section Public  
+  
+  //
+  // Redefine BITMAP.
+  //
+  
+  // Size zone.
+  + height:INTEGER;
+  + width :INTEGER;	
+  
+  - x_min:INTEGER := 0;
+  - y_min:INTEGER := 0;
+  - x_max:INTEGER <- width  - 1;
+  - y_max:INTEGER <- height - 1;
+  
+  // Simple clipping.
+  + clip_x0:INTEGER; 
+  + clip_y0:INTEGER;
+  + clip_x1:INTEGER;
+  + clip_y1:INTEGER;
+  
+  // Current position.
+  + spot_x:INTEGER;  
+  + spot_y:INTEGER;
+    
+  // Current color.
+  
+  // Slave display.
+  - slave_pixel_hard  (x,y:INTEGER) color col:UINTEGER_32; 
+  - slave_line_h_hard (x1,y:INTEGER) until x2:INTEGER color col:UINTEGER_32; 
+  - slave_line_h_hard (x1,y:INTEGER) until x2:INTEGER 
+  image line:ABSTRACT_BMP_LINE offset ofs:INTEGER; 
+  
+  // Master / Normal display.
+  - pixel_hard (x,y:INTEGER) color col:UINTEGER_32 <-
+  ( + c:CLIP;
+    + win:AREA;
+    + xx,yy:INTEGER;
+    
+    xx := x + x_window; 
+    yy := y + y_window;
+    
+    c:=get_clip (xx,yy);
+    (c!=NULL).if {
+      win := c.window;
+      (win=Self).if {	
+	parent_video.pixel_hard (xx,yy) color col; 
+      } else {
+	win.slave_pixel_hard ((xx-win.x_window),(yy-win.y_window)) color col;
+      };
+    };
+  );
+  
+  - line_h_hard (x0,y0:INTEGER) until x1:INTEGER color col:UINTEGER_32 <-
+  ( + xw,tmp,xb,y,xe:INTEGER;
+    + c:CLIP;
+    + win:AREA;
+       
+    (plan != NULL).if { 
+      xb := x0 + x_window;
+      y  := y0 + y_window; 
+      xe := x1 + x_window;
+      ((y < plan.y1.value) && {y >= plan.y0.value}).if {
+	xb:=xb.max (plan.x0.value);
+	xe:=xe.min (plan.x1.value);	
+	(xb <= xe).if {
+	  {	    
+	    c:=get_clip (xb,y);
+	    ? {c!=NULL};
+	    /*
+	    (c=NULL).if {
+	      VIDEO.rectangle_fill 0,0 to 800,600 color black;
+	      INTERFACE.physical_screen.debug_display;
+	      KEYBOARD.wait_key;
+	      
+	      VIDEO.rectangle_fill 0,0 to 800,600 color black;
+	      INTERFACE.screen.debug_display;
+	      KEYBOARD.wait_key;
+	      
+	      VIDEO.rectangle_fill 0,0 to 800,600 color black;
+	      PANEL.win.debug_display;
+	      KEYBOARD.wait_key;
+	      
+	      VIDEO.rectangle_fill 0,0 to 800,600 color black;
+	      MOUSE.debug_display;
+	      KEYBOARD.wait_key;
+	      
+	      VIDEO.rectangle_fill 0,0 to 800,600 color black;
+	      debug_display;
+	      KEYBOARD.wait_key;
+	      
+	      VIDEO.pixel_to xb,y color 64FF64h;
+	      debug:=TRUE;
+	      c:=get_clip xb,y;
+	      KEYBOARD.wait_key;
+	      
+	      xb.print; ','.print; y.print; '\n'.print;
+	      crash;
+	    };
+	    */
+	    tmp:=xe.min (c.x_max);  
+	    win:=c.window;
+	    (win=Self).if {
+	      parent_video.line_h_hard (xb,y) until tmp color col; 
+	    } else {
+	      xw:=win.x_window;
+	      win.slave_line_h_hard ((xb-xw),(y-win.y_window)) until (tmp-xw) color col;
+	    };
+	    xb:=tmp+1;
+	  }.do_while {xb<=xe};
+	};
+      };
+    };
+  );
+  
+  - line_h_hard (x0,y0:INTEGER) until x1:INTEGER image line:ABSTRACT_BMP_LINE offset ofs:INTEGER <-
+  ( + xb,y,xe,tmp,xw,tmp_offset:INTEGER;
+    + c:CLIP;
+    + win:AREA;
+    
+    (plan != NULL).if {
+      xb := x0 + x_window; 
+      y  := y0 + y_window; 
+      xe := x1 + x_window;
+      ((y < plan.y1.value) && {y >= plan.y0.value}).if {
+	tmp:=plan.x0.value;
+	(xb < tmp).if { 
+	  tmp_offset := ofs + tmp - xb;
+	  xb:=tmp; 
+	} else {
+	  tmp_offset := ofs;
+	};	  
+	xe:=xe.min (plan.x1.value);
+	(xb<=xe).if {
+	  {
+	    c   := get_clip (xb,y);
+	    tmp := xe.min (c.x_max);
+	    win := c.window;
+	    (win = Self).if {
+	      parent_video.line_h_hard (xb,y) until tmp image line offset tmp_offset;
+	    } else {
+	      xw := win.x_window;
+	      win.slave_line_h_hard (xb-xw, y-win.y_window) 
+	      until (tmp-xw) image line offset tmp_offset;
+	    };
+	    tmp_offset := tmp_offset + tmp-xb + 1;
+	    xb := tmp+1;
+	  }.do_while {xb <= xe};
+	};
+      };
+    };
+  );
+  
+Section Public
+  
+  // Window links.
+  + parent:AREA;  // Englobe window.
+  + child :AREA;  // First children.
+  + prev  :AREA;  // Previous window.
+  + next  :AREA;  // Next window.
+  
+  // +-parent---------------------+
+  // |           +-self-----------|
+  // |  +-next---|                |
+  // |  |        |    +-child--+  |
+  // |  |        |    |        |  |
+  // |  |        |    +--------+  |
+  // |  |        |  +-prev--------|
+  // |  |        +--|             |
+  // |  +-----------|             |
+  // |              |             |
+  // +----------------------------+
+  
+  + plan:PLAN;
+  + clip:CLIP; // Cash clip zone.
+
+  // Current window absolute position.
+  + x_window:INTEGER;
+  + y_window:INTEGER; 
+
+  - set_next new:AREA <-
+  (
+    next:=new;
+  );
+  
+  - set_prev new:AREA <-
+  (
+    prev:=new;
+  );
+  
+  - set_child new:AREA <-
+  (
+    child:=new;
+  );
+  
+Section Public  
+  
+  - debug_display <-
+  (
+    (clip!=NULL).if {
+      clip.display Self;
+    } else {
+      //"Clip null!".print;
+    };
+  );
+  
+Section Public  
+  
+  - get_x_window:INTEGER <-
+  ( + result:INTEGER;
+    
+    (parent=NULL).if {
+      result:=x_window;
+    } else {
+      result:=x_window-parent.x_window;
+    };
+    result
+  );
+  
+  - get_y_window:INTEGER <-
+  ( + result:INTEGER;
+    
+    (parent=NULL).if {
+      result:=y_window;
+    } else {
+      result:=y_window-parent.y_window;
+    };
+    result
+  );
+  
+  //
+  // New window
+  //
+  
+  - make father:AREA from (x0,y0:INTEGER) size (w,h:INTEGER) <-
+  ( ? {w > 0};
+    ? {h > 0};
+
+    parent := father;
+    (father = NULL).if {
+      x_window := x0;
+      y_window := y0;
+      next := NULL;
+    } else {      
+      x_window := father.x_window+x0;
+      y_window := father.y_window+y0;
+      next := father.child;
+      (next != NULL).if {
+	next.set_prev Self;
+      };
+      parent.set_child Self;
+    };
+    child := prev := NULL;
+    clip := NULL;
+    plan := NULL;
+    
+    height:=h;
+    width :=w;
+    clipping_off;
+    
+    // Build clipping.
+    append_plan;
+    clip_type1;
+    refresh;
+  );
+  
+  - create (x,y:INTEGER) size (w,h:INTEGER) :AREA <-
+  ( + result:AREA;
+    ? {w > 0};
+    ? {h > 0};
+    
+    result:=AREA.clone;
+    result.make Self from (x,y) size (w,h);
+    result
+  );
+  
+  //
+  // Delete window
+  //
+  
+  - delete <-
+  ( + x0,y0,x1,y1:INTEGER;
+    + is_draw:BOOLEAN;
+    + old_parent, old_next:AREA;
+    ? {parent != NULL};
+    
+    old_parent := parent;
+    old_next   := next;
+    (plan != NULL).if {
+      x0:=plan.x0.value; 
+      x1:=plan.x1.value;
+      y0:=plan.y0.value; 
+      y1:=plan.y1.value-1;
+      is_draw:=TRUE;
+    };
+    sub_delete;
+    (old_next = NULL).if {
+      old_parent.creat_clip;
+    } else {
+      old_next.clip_type1;
+    };
+    (is_draw).if {
+      redraw (x0,y0) to (x1,y1);
+    };
+  );
+  
+  //
+  // Moving window
+  // 
+  
+  - update father:AREA from (x0,y0:INTEGER) size (w,h:INTEGER) <-
+  (
+    (father != parent).if {
+      make father from (x0,y0) size (w,h);
+    } else {
+      set_position (x0,y0);
+      resize (w,h);
+    };
+  );
+      
+  - move (x,y:INTEGER) <-
+  ( + x0,y0,x1,y1,x2,y2,x3,y3:INTEGER;
+    + old_plan:PLAN;
+    ? {parent!=NULL};
+    
+    ((x != 0) || {y != 0}).if {
+      old_plan:=plan;
+      (plan!=NULL).if {
+        x0:=plan.x0.value; 
+        x1:=plan.x1.value;
+        y0:=plan.y0.value; 
+        y1:=plan.y1.value-1;
+      };
+      sub_move (x,y);
+      clip_type1;
+      (plan!=NULL).if {
+        x2:=plan.x0.value; 
+        x3:=plan.x1.value;
+        y2:=plan.y0.value; 
+        y3:=plan.y1.value-1;
+      };
+      ((old_plan!=NULL) && {plan!=NULL}).if {
+        (((x.abs)>width) || {(y.abs)>height}).if {
+          redraw (x0,y0) to (x1,y1);
+          redraw (x2,y2) to (x3,y3);
+        } else {	
+          redraw ((x0.min x2),(y0.min y2)) to ((x1.max x3),(y1.max y3));
+        };
+      } else {
+        (old_plan!=NULL).if {
+          redraw (x0,y0) to (x1,y1); 
+        }.elseif {plan!=NULL} then {
+          redraw (x2,y2) to (x3,y3);
+        };
+      };    
+    };
+  );
+  
+  - set_position (x,y:INTEGER) <-
+  ( + dx,dy:INTEGER;
+    ? {parent!=NULL};    
+    
+    dx:=x-(x_window-parent.x_window); 
+    dy:=y-(y_window-parent.y_window);    
+    move (dx,dy);
+  );
+  
+  //
+  // Resize window.
+  //
+  
+  - resize (w,h:INTEGER) <-
+  // Resize window.
+  ( + x0,y0,x1,y1:INTEGER;
+    //? {parent!=NULL};
+
+    ((w != width) || {h != height}).if {
+      (plan=NULL).if {
+	y0:=x0:=INTEGER.maximum.to_integer;
+	y1:=x1:=INTEGER.minimum.to_integer;
+      } else {
+	x0:=plan.x0.value;    
+	x1:=plan.x1.value;
+	y0:=plan.y0.value;    
+	y1:=plan.y1.value;
+      };
+      width  := w;
+      height := h;
+      sub_resize;
+      clip_type1;
+      clipping_off;
+      (plan!=NULL).if {
+	x0 := x0.min (plan.x0.value);
+	x1 := x1.max (plan.x1.value);
+	y0 := y0.min (plan.y0.value);
+	y1 := y1.max (plan.y1.value);
+      };
+      (x0 <= x1).if {
+	redraw (x0,y0) to (x1,(y1-1));
+      };
+    };
+  );
+  
+  //
+  // First window
+  //
+  
+  - first <-
+  // put first plan window.
+  ( + x0,y0,x1,y1,plan_value:INTEGER;
+    + pl_begin,pl_end,pl:PLAN;
+    + is_draw:BOOLEAN;
+    + win,win2:AREA;
+    ? {parent!=NULL};
+    
+    (prev!=NULL).if {
+      (plan!=NULL).if {
+	// Modification des Plans : Les EltPs sont classé en plan croissant.
+	// Recherche du dernier plan du groupe :
+	win:=prev;
+	{(win!=NULL) && {win.plan=NULL}}.while_do {
+	  win:=win.prev;
+	};
+	(win!=NULL).if {
+	  is_draw:=TRUE;
+	  x0:=plan.x0.value; 
+	  x1:=plan.x1.value;
+	  y0:=plan.y0.value; 
+	  y1:=plan.y1.value-1;
+	  pl_begin:=win.plan.next;
+	  pl_end:=plan.next;
+	  
+	  // On décroche le Groupe :
+	  pl:=pl_begin.prev;
+	  pl.set_next pl_end;	  	  
+	  pl_end.set_prev pl; 
+	  // On cherche la nouvelle Position du Groupe :
+	  win:=parent;
+	  {
+	    win2:=win.prev;
+	    {(win2!=NULL) && {win2.plan=NULL}}.while_do {
+	      win2:=win2.prev;
+	    };
+	    win:=win.parent;
+	  }.do_while {(win!=NULL) && {win2=NULL}};
+	  (win2!=NULL).if {
+	    pl:=win2.plan; 
+	  } else {
+	    pl:=NULL;
+	  };    
+	  // On attache le groupe :
+	  pl_begin.set_prev pl;
+	  (pl=NULL).if { 
+	    plan.set_next list_plan; 
+	    list_plan:=pl_begin; 
+	    plan_value:=1; 
+	  } else {
+	    plan.set_next (pl.next); 
+	    pl.set_next pl_begin; 
+	    plan_value:=pl.level+1; 
+	  };
+	  (plan.next!=NULL).if {
+	    plan.next.set_prev plan;
+	  };
+	  // On réaffecte les plans :
+	  {pl_begin!=pl_end}.while_do { 
+	    pl_begin.set_level plan_value; 
+	    plan_value:=plan_value+1;
+	    pl_begin:=pl_begin.next; 
+	  };
+	};
+      };
+      
+      // Delete link.
+      prev.set_next next;
+      (next!=NULL).if {
+	next.set_prev prev;
+      };
+      
+      // Creation new link.
+      prev:=NULL;
+      next:=parent.child;
+      next.set_prev Self;
+      parent.set_child Self;
+      
+      (is_draw).if {
+	clip_type1;
+	redraw (x0,y0) to (x1,y1);
+      };
+    };
+  );
+  
+  - get_window (x,y:INTEGER) :AREA <-
+  // Get object pointer by (X,Y).
+  ( + c:CLIP;
+    + result,win:AREA;
+    + xx,yy:INTEGER;
+    
+    xx := x + x_window; 
+    yy := y + y_window;    
+    c:=get_clip (xx,yy);
+    (c!=NULL).if { 
+      (c.window=Self).if {
+	result:=Self;
+      } else {
+	win:=c.window;
+	result:=win.get_window ((xx-win.x_window),(yy-win.y_window));
+	(result=NULL).if {
+	  result:=Self;
+	};
+      };
+    };
+    result
+  );
+  
+  //////////////////////////////////////////////////////////////
+  //                         AREA                           //
+  //////////////////////////////////////////////////////////////
+  
+Section AREA
+  
+  - list_plan:PLAN;
+  - list_x:LIMIT_X;
+  - list_y:LIMIT_Y;
+  
+  - display_list_x <-
+  ( + elt_x:LIMIT_X;
+    
+    "list_x=".print;
+    elt_x:=list_x;
+    {elt_x!=NULL}.while_do {
+      elt_x.value.print;
+      '('.print;
+	elt_x.plan.level.print;
+      ')'.print;
+      ','.print;
+      elt_x:=elt_x.next;
+    };    
+    '\n'.print;
+  );
+  
+  //  list_plan={plan1,plan2}
+  //                       
+  //                       .
+  //  plan1+---------------Y---------+
+  //       |               .         |
+  //       |     plan2+----Y-----------------+
+  //       |          |    .         :       |
+  //       |          |    .         :       |
+  //       |          |    .         :       |
+  //  .....X..........X..............X.......X.....list_x
+  //       |          |    .         :       |
+  //       |          |    .         :       |
+  //       |          +----Y-----------------+
+  //       |               .         | 
+  //       +---------------Y---------+
+  //                       .
+  //                     list_y
+  
+  - stack_plan:FAST_ARRAY(PLAN):= FAST_ARRAY(PLAN).create 16;
+  
+  - last_clip :CLIP;
+  - first_clip:CLIP;
+  - top_clip  :CLIP;
+  
+  //                                   |           |
+  //                                   | top_clip  |
+  //                                   |           |
+  //                                   +-----------+
+  //+------------+       +-----------+ +-----------+
+  //|            |       |           | |           |
+  //| first_clip |  ...  | last_clip | |    NEW    |
+  //|            |       |           | |           |
+  //+------------+       +-----------+ +-----------+
+  
+  - add_clip win:AREA from (xmin,ymin:INTEGER) to (xmax,ymax:INTEGER) <-
+  ( + new_clip:CLIP;
+    /*    
+    '['.print;
+    INTEGER.force_conversion self.print;
+    ':'.print;
+    x_min.print; ','.print; y_min.print; 
+    ';'.print;
+    x_max.print; ','.print; y_max.print; 
+    ']'.print;
+    */    
+    
+    ((top_clip!=NULL) && {top_clip.x_min=xmin} && {top_clip.x_max=xmax} && {top_clip.window=win}).if {
+      // Stick clip.
+      new_clip:=top_clip; 
+      top_clip:=new_clip.right;
+      new_clip.set_y_max ymax;
+      new_clip.set_right NULL;
+    } else {
+      // Creation.
+      new_clip:=CLIP.create win at (xmin,ymin) to (xmax,ymax);
+      new_clip.set_left last_clip; 
+      new_clip.set_top  top_clip;
+      {(top_clip!=NULL) && {top_clip.x_max<=xmax}}.while_do {
+	top_clip.set_bottom new_clip;
+	top_clip:=top_clip.right;
+      };
+      ((new_clip.left=NULL) && {new_clip.top=NULL}).if {
+	clip:=new_clip; 
+      };
+    };
+    (last_clip=NULL).if {
+      first_clip:=new_clip;
+    } else {
+      last_clip.set_right new_clip;
+    };
+    last_clip:=new_clip;
+  );
+  
+  - remove_plan <-
+  (     
+    (plan!=NULL).if {
+      // Remove in list_x :
+      plan.x1.remove (plan.x0);
+      list_x:=plan.x0.remove list_x;
+      // Remove in list_y :
+      plan.y1.remove (plan.y0);
+      list_y:=plan.y0.remove list_y;
+      // Remove plan in list_plan :
+      list_plan:=plan.remove list_plan;
+      // plan == NULL
+      plan:=NULL;
+    };
+  );
+  
+  - append_plan <-
+  ( + elt_x:LIMIT_X;
+    + elt_y:LIMIT_Y;        
+    + xw0,yw0,xw1,yw1,x0,y0,x1,y1:INTEGER;
+    + is_return:BOOLEAN;
+    + pl:PLAN;
+    + win,winp:AREA;
+    
+    (parent!=NULL).if { 
+      // Clipping with parent.
+      pl:=parent.plan;
+      (pl=NULL).if {
+	is_return:=TRUE;
+      } else {
+	xw0:=pl.x0.value; 
+	xw1:=pl.x1.value;
+	yw0:=pl.y0.value; 
+	yw1:=pl.y1.value-1;
+      };
+    } else { 
+      // Clipping with bitmap.
+      xw0:=yw0:=0; 
+      xw1:=parent_video.width-1;
+      yw1:=parent_video.height-1;
+    };
+    (! is_return).if {
+      // Clipping current window.
+      x0:=x_window; 
+      x1:=x0+width-1;
+      y0:=y_window; 
+      y1:=y0+height-1;
+      ((x1>=xw0) && {x0<=xw1} && 
+      {y1>=yw0} && {y0<=yw1}).if {
+	// First clip (current -> parent).
+	x0:=x0.max xw0;
+	x1:=x1.min xw1;
+	y0:=y0.max yw0;
+	y1:=y1.min yw1;
+	
+	// Append one Plan.
+	plan:=PLAN.create Self;
+	win:=Self;
+	{
+	  winp:=win.prev;
+	  {(winp!=NULL) && {winp.plan=NULL}}.while_do {
+	    winp:=winp.prev;
+	  };
+	  win:=win.parent;
+	}.do_while {(win!=NULL) && {winp=NULL}};
+	(winp!=NULL).if { 
+	  pl:=winp.plan;
+	  plan.set_prev pl; 
+	  plan.set_next (pl.next); 
+	  pl.set_next plan;
+	  plan.set_level (pl.level+1); 
+	} else {
+	  plan.set_next list_plan; 
+	  list_plan:=plan;
+	  plan.set_level 1; 
+	};
+	
+	pl:=plan.next;
+	(pl!=NULL).if {
+	  pl.set_prev plan;
+	  pl.inc_level;
+	};	
+	
+	y1:=y1+1;
+	// On positionne les X : Décroissant Plan...
+	elt_x:=LIMIT_X.create x0 plan plan;
+	plan.set_x0 elt_x;
+	list_x:=elt_x.append list_x;
+	
+	elt_x:=LIMIT_X.create x1 plan plan;
+	plan.set_x1 elt_x;
+	elt_x.append (plan.x0);
+	
+	// On positionne les Y :
+	elt_y:=LIMIT_Y.create_top y0 plan plan;
+	plan.set_y0 elt_y;
+	list_y:=elt_y.append list_y;
+	
+	elt_y:=LIMIT_Y.create_bottom y1 plan plan;
+	plan.set_y1 elt_y;
+	elt_y.append (plan.y0);
+      };
+    };
+  );
+  
+  - update_plan <-
+  ( + pl:PLAN;
+    + xw0,yw0,xw1,yw1,x0,y0,x1,y1:INTEGER;
+    + is_return:BOOLEAN;
+    
+    (plan=NULL).if { 
+      append_plan; 
+    } else {
+      (parent!=NULL).if { 
+	// Clipping with parent.
+	pl:=parent.plan;
+	(pl=NULL).if {
+	  remove_plan; 
+	  is_return:=TRUE;
+	} else {
+	  xw0:=pl.x0.value; 
+	  xw1:=pl.x1.value;
+	  yw0:=pl.y0.value; 
+	  yw1:=pl.y1.value-1;
+	};
+      } else { 
+	// Clipping with bitmap.
+	xw0:=yw0:=0; 
+	xw1:=parent_video.width-1;
+	yw1:=parent_video.height-1;
+      };
+      
+      (! is_return).if {
+	// Clipping current window.
+	x0:=x_window; 
+	x1:=x0+width-1;
+	y0:=y_window; 
+	y1:=y0+height-1;
+	((x1<xw0) || {x0>xw1} || {y1<yw0} || {y0>yw1}).if {
+	  remove_plan;
+	} else {
+	  // First clip (current -> parent).
+	  x0:=x0.max xw0;
+	  x1:=x1.min xw1;
+	  y0:=y0.max yw0;
+	  y1:=y1.min yw1;
+	  
+	  y1:=y1+1; 
+	  
+	  // On positionne les X :
+	  plan.x1.set_value x1;            // update x1
+	  plan.x1.remove (plan.x0);        // delete X1
+	  (x0!=plan.x0.value).if {
+	    plan.x0.set_value x0;          // update x0
+	    list_x:=plan.x0.remove list_x; // delete X0	  
+	    list_x:=plan.x0.append list_x; // Append X0  
+	  };
+	  plan.x1.append (plan.x0);        // Append X1
+	  
+	  // On positionne les Y :	  
+	  plan.y1.set_value y1;
+	  plan.y1.remove (plan.y0);
+	  (y0!=plan.y0.value).if {
+	    plan.y0.set_value y0;
+	    list_y:=plan.y0.remove list_y;	  
+	    list_y:=plan.y0.append list_y;	  
+	  };
+	  plan.y1.append (plan.y0);
+	};
+      };
+    };
+  );
+  
+  - creat_clip <-
+  ( + x0,x1,y0,y1,tmp:INTEGER;
+    + elt_x:LIMIT_X;
+    + elt_y:LIMIT_Y;
+    + plan_value:INTEGER;
+    + cx0,cy0,cx1,cy1:INTEGER;
+    + win,winp:AREA;
+    + pl:PLAN;
+    
+    clip:=NULL; // Remove old Clip (carbadge collector :-)
+    (plan!=NULL).if {
+      x0:=plan.x0.value; 
+      x1:=plan.x1.value;
+      y0:=plan.y0.value; 
+      y1:=plan.y1.value;
+      
+      // On active les fenêtres concerné :
+      // Tous ses fils.
+      win:=child;
+      {win!=NULL}.while_do {
+	pl:=win.plan;
+	(pl!=NULL).if {
+	  pl.active_y;
+	};
+	win:=win.next;
+      };
+      // Tous les prec et les prec des parents.
+      win:=Self;
+      {
+	winp:=win.prev;
+	{winp!=NULL}.while_do {
+	  pl:=winp.plan;
+	  ((pl!=NULL) && {pl.x0.value<=x1} && {pl.x1.value>=x0} &&
+	  {pl.y0.value<y1}  && {pl.y1.value>y0}).if {
+	    pl.active_y;
+	  };
+	  winp:=winp.prev;
+	};
+	win:=win.parent;
+      }.do_while {win!=NULL};            
+      stack_plan.force plan to 0;
+            
+      first_clip:=NULL; // New clip
+      
+      elt_y:=list_y; // A Optimiser !
+      cy0:=y0;
+      {elt_y!=NULL}.while_do {
+	// On active ou désactive des fenêtres :
+	{(elt_y!=NULL) && {! elt_y.plan.is_y}}.while_do {
+	  elt_y:=elt_y.next;
+	};
+	
+	(elt_y=NULL).if {
+	  cy1:=y1-1;
+	} else {
+	  tmp:=elt_y.value;	  
+	  cy1:=(tmp.min y1)-1;
+	};
+	
+	(cy0<=cy1).if {
+	  // New clip line.
+	  last_clip:=NULL; 
+	  top_clip:=first_clip; 
+	  
+	  elt_x:=list_x; // A Optimiser !	  	  
+	  plan_value:=0; 
+	  cx0:=x0; 
+	  win:=Self;
+	  {	    
+	    pl:=elt_x.plan;
+	    (pl.is_x).if {      	      
+	      ((stack_plan.upper < pl.level) || {stack_plan.item (pl.level)=NULL}).if {
+		// Begin Window
+		stack_plan.force pl to (pl.level);
+		(pl.level>plan_value).if {
+		  // Limit
+		  cx1:=(elt_x.value-1).min x1;
+		  (cx0<=cx1).if {
+		    add_clip win from (cx0,cy0) to (cx1,cy1);
+		    cx0:=cx1+1;
+		  };
+		  plan_value:=pl.level;
+		  win:=pl.window;
+		};
+	      } else {
+		// End Window
+		stack_plan.force NULL to (pl.level);
+		(pl.level=plan_value).if {
+		  // Limit
+		  cx1:=(elt_x.value).min x1;
+		  (cx0<=cx1).if {
+		    add_clip win from (cx0,cy0) to (cx1,cy1);
+		    cx0:=cx1+1;
+		  };
+		  //cx0:=cx1+1;
+		  { 
+		    plan_value:=plan_value-1;
+		  }.do_while {(stack_plan.item plan_value)=NULL};
+		  win:=stack_plan.item plan_value.window;
+		};
+	      };
+	    };
+	    elt_x:=elt_x.next;
+	  }.do_while {elt_x!=NULL};	  
+	  (cx0<=x1).if {
+	    add_clip win from (cx0,cy0) to (x1,cy1);
+	  };
+	  cy0:=cy1+1;
+	};
+	
+	(elt_y!=NULL).if {
+	  {
+	    pl:=elt_y.plan;
+	    (pl.is_y).if {
+	      (elt_y.is_top).if {
+		pl.active_x;
+	      } else {
+		pl.desactive_y;
+		pl.desactive_x;
+	      };
+	    };
+	    elt_y:=elt_y.next;
+	  }.do_while {(elt_y!=NULL) && {elt_y.value=tmp}};
+	};
+      };
+    };
+  );
+  
+  - clip_next_child <-
+  ( 
+    creat_clip;
+    (next!=NULL).if {
+      next.clip_next_child;
+    };
+    (child!=NULL).if {
+      child.clip_next_child;
+    };
+  );
+  
+  - clip_type1 <-
+  ( 
+    clip_next_child;
+    (parent!=NULL).if {
+      parent.creat_clip;
+    };
+  );
+  
+  - sub_delete <-
+  (
+    // On supprime les liens dans la chaine des fenetres :
+    (prev = NULL).if {
+      parent.set_child next;
+    } else {
+      prev.set_next next;
+    };
+    (next != NULL).if {
+      next.set_prev prev;
+    };
+    parent := prev := next := NULL;
+    remove_plan;
+    clip := NULL; // Delete Clip (GC).
+    {child != NULL}.while_do {
+      child.sub_delete;
+    };
+  );
+  
+  - sub_move (x,y:INTEGER) <-
+  ( + win:AREA;
+    
+    x_window:=x_window+x; 
+    y_window:=y_window+y;
+    update_plan; 
+    win:=child;
+    {win!=NULL}.while_do {
+      win.sub_move (x,y);
+      win:=win.next;
+    };
+  );
+  
+  - sub_resize <-
+  ( + win:AREA;
+    
+    update_plan; //modif_for_clip;
+    win:=child;
+    {win!=NULL}.while_do {
+      win.sub_resize;
+      win:=win.next;
+    };
+  );
+  
+  // get_clip x,y :
+  // 
+  // [clip]
+  //   X#####+-------++-------+
+  //   |    #|       ||       |
+  //   |    #|       ||       |
+  //   +----#######--++-------+
+  //   +---------+#-----------+
+  //   |         |#           |
+  //   |         |####>X(x,y) |
+  //   |         ||           |
+  //   +---------++-----------+
+  
+  - debug:BOOLEAN;
+  
+  - get_clip (x,y:INTEGER) :CLIP <-
+  // Find clip `(x,y)', begin search is `clip'.
+  ( + fg_t,fg_b,fg_r,fg_l,fg_p:BOOLEAN;
+    + c:CLIP;
+    
+    c:=clip;
+    ((c!=NULL) && {
+	(! (x.in_range (c.x_min) to (c.x_max))) || 
+	{! (y.in_range (c.y_min) to (c.y_max))}
+    }).if {
+      
+      //      ((c!=NULL) && {debug}).if { VIDEO.rectangle (c.x_min),(c.y_min) to (c.x_max),(c.y_max) color 6464FFh; KEYBOARD.wait_key; };
+      
+      // Top or Bottom Limit.
+      ((y<c.y_min) && {x<c.x_min}).if {
+	{(c!=NULL) && {y<c.y_min}}.while_do {
+	  c:=c.top; 
+	};
+      } else {
+	((y>c.y_max) && {x>c.x_max}).if {
+	  {(c!=NULL) && {y>c.y_max}}.while_do {
+	    c:=c.bottom;
+	  };
+	};
+      };
+      
+      //                   X
+      //      
+      // .....+-^---+
+      //      |     |
+      //      |     >
+      //      +-----+
+      //            :
+      //            :
+      
+      {(c!=NULL) && { 
+	  (fg_t:=(c.y_min>y)) |
+	  (fg_r:=(c.x_max<x)) 
+      }}.while_do {
+	(fg_p).if {
+	  (fg_t).if {
+	    c:=c.top; 
+	  }.elseif {fg_r} then {
+	    c:=c.right;
+	  };
+	} else {
+	  (fg_r).if {
+	    c:=c.right; 
+	  }.elseif {fg_t} then {
+	    c:=c.top;
+	  };
+	};
+	fg_p:=! fg_p;
+      };
+      
+      //        :
+      //        :
+      //        +-----+
+      //        <     |
+      //        |     |
+      //        +---v-+.....
+      //  X           
+      //                   
+      
+      {(c!=NULL) && {
+	  (fg_b:=(c.y_max<y)) | 
+	  (fg_l:=(c.x_min>x))
+      }}.while_do {
+	(fg_p).if {
+	  (fg_b).if {
+	    c:=c.bottom; 
+	  }.elseif {fg_l} then {
+	    c:=c.left;
+	  };
+	} else {
+	  (fg_l).if {
+	    c:=c.left;   
+	  }.elseif {fg_b} then {
+	    c:=c.bottom;
+	  };
+	};
+	fg_p:=! fg_p;
+      };
+      
+      (c!=NULL).if {
+	clip:=c;
+      };
+    };
+    c
+  );
+  
+Section Public  
+  
+  - margin_clip_x0:INTEGER;
+  - margin_clip_y0:INTEGER;
+  - margin_clip_x1:INTEGER;
+  - margin_clip_y1:INTEGER;
+  
+  - redraw (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  ( + elt_p:PLAN;
+    + lev,xb0,yb0,xb1,yb1:INTEGER;
+    + win2,win3:AREA;
+    
+    // With Previous :
+    win3:=Self;
+    {
+      win2 := win3.prev;
+      {(lev = 0) && {win2 != NULL}}.while_do {
+	elt_p := win2.plan;
+	(elt_p != NULL).if { 
+	  lev := elt_p.level+1;
+	} else {
+	  win2 := win2.prev;
+	};
+      };
+      win3 := win3.parent;
+    }.do_while {(win3 != NULL) && {lev = 0}};
+    (lev = 0).if { 
+      lev := 1;
+    };
+    
+    // Search elt_p for begin :
+    elt_p := list_plan;
+    {(elt_p != NULL) && {elt_p.level != lev}}.while_do {
+      elt_p := elt_p.next;
+    };
+    
+    // Display :
+    {elt_p != NULL}.while_do {
+      xb0 := elt_p .x0.value   .max (x0 - margin_clip_x0); 
+      xb1 := elt_p .x1.value   .min (x1 + margin_clip_x1);
+      yb0 := elt_p .y0.value   .max (y0 - margin_clip_y0); 
+      yb1 := (elt_p.y1.value-1).min (y1 + margin_clip_y1);
+      
+      ((xb0<=xb1) && {yb0<=yb1}).if {
+	win2 := elt_p.window;
+	xb0 := xb0 - win2.x_window; 
+	xb1 := xb1 - win2.x_window;  
+	yb0 := yb0 - win2.y_window; 
+	yb1 := yb1 - win2.y_window;
+	win2.draw (xb0,yb0) to (xb1,yb1);
+      };
+      elt_p := elt_p.next;
+    };
+    margin_clip_x0 := margin_clip_x1 :=
+    margin_clip_y0 := margin_clip_y1 := 0;
+  );
+  
+  - draw (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  (
+    // Nothing.    
+  );
+  
+  - refresh <-
+  (
+    (clip != NULL).if {
+      draw (0,0) to (width-1,height-1);
+    };
+  );
+  
+  - get_object (x,y:INTEGER) :AREA <-
+  ( + c:CLIP;
+    + result,win:AREA;
+    
+    c := get_clip (x,y);
+    (c != NULL).if {
+      win := c.window;
+      (win = Self).if {
+	result := Self;
+      } else {
+	result := win.get_object (x,y);
+	(result = NULL).if {
+	  result := Self;
+	};
+      };
+    };
+    result
+  );
+    
+  - receive msg:EVENT <-
+  // Default.
+  (
+    (parent != NULL).if {
+      msg.set_destination parent;
+      parent.receive msg;
+    };
+  );
+
+
+
+
diff --git a/lib/extra/gui/clipping/area_mask.li b/lib/extra/gui/clipping/area_mask.li
new file mode 100644
index 0000000..3398924
--- /dev/null
+++ b/lib/extra/gui/clipping/area_mask.li
@@ -0,0 +1,429 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := AREA_MASK;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "Mask Window Clipping.";
+    
+  - version     := 2;
+  
+Section Inherit
+  
+  + parent_area:Expanded AREA;
+    
+Section Public  
+
+  + mask:FAST_ARRAY(FAST_ARRAY(UINTEGER_16));
+  
+  - clear_mask <-
+  ( 
+    (mask.lower).to (mask.upper) do { y:INTEGER;
+      mask.item y.clear;
+    };
+  );
+  
+  //
+  // Creation
+  //
+  
+  - make father:AREA from (x0,y0:INTEGER) size (w,h:INTEGER) <-
+  (
+    mask := FAST_ARRAY(FAST_ARRAY(UINTEGER_16)).create_with_capacity h;
+    0.to (h-1) do { y:INTEGER;
+      mask.add_last (FAST_ARRAY(UINTEGER_16).create_with_capacity 2);
+    };
+    parent_area.make father from (x0,y0) size (w,h);    
+  );
+  
+  - resize (w,h:INTEGER) <-
+  (
+    mask.resize h;
+    height.to (h-1) do { y:INTEGER;
+      mask.put (FAST_ARRAY(UINTEGER_16).create_with_capacity 2) to y;
+    };
+    parent_area.resize (w,h);
+  );
+  
+  //
+  // Master display
+  // (Build mask)
+  //
+
+  - pixel_hard (x,y:INTEGER) color col:UINTEGER_32 <- 
+  ( 
+    add_mask (x,y) until x;
+    parent_area.pixel_hard (x,y) color col;
+  );
+  
+  - line_h_hard (x0,y0:INTEGER) until x1:INTEGER color col:UINTEGER_32 <- 
+  ( 
+    add_mask (x0,y0) until x1;
+    parent_area.line_h_hard (x0,y0) until x1 color col;
+  );
+
+  - line_h_hard (x0,y0:INTEGER) until x1:INTEGER image line:ABSTRACT_BMP_LINE offset ofs:INTEGER <-
+  ( 
+    add_mask (x0,y0) until x1;
+    parent_area.line_h_hard (x0,y0) until x1 image line offset ofs;
+  );
+  
+  //
+  // Slave display
+  // (Use Mask)
+  //
+
+  - slave_pixel_hard (x,y:INTEGER) color col:UINTEGER_32 <- 
+  ( + line:FAST_ARRAY(UINTEGER_16);
+    + idx:INTEGER;
+    
+    line := mask.item y;
+    ((line.is_empty) || {x < line.first} || {x > line.last}).if {
+      parent_area.pixel_hard (x,y) color col;
+    } else {
+      idx := search (x.to_uinteger_16) in line low (line.lower);
+      (idx.is_odd).if {
+	parent_area.pixel_hard (x,y) color col;
+      };
+    };
+  );
+  
+  - slave_line_h_hard (x1,y:INTEGER) until x2:INTEGER color col:UINTEGER_32 <- 
+  ( + line:FAST_ARRAY(UINTEGER_16);
+    + idx,xb,xe,xx2:INTEGER;
+        
+    line := mask.item y;
+    ((line.is_empty) || {x2 < line.first} || {x1 > line.last}).if { 
+      parent_area.line_h_hard (x1,y) until x2 color col;
+    } else {
+      (x1 < line.first).if {
+	parent_area.line_h_hard (x1,y) until (line.first-1) color col;
+	idx := 2;
+	xb := line.item 1 + 1;
+      } else {
+	idx := search (x1.to_uinteger_16) in line low (line.lower);
+	(idx.is_even).if {
+	  xb  := line.item (idx + 1) + 1;
+	  idx := idx + 2;
+	} else {
+	  xb  := x1;
+	  idx := idx + 1;
+	};
+      };
+      (x2 > line.last).if {	
+	parent_area.line_h_hard ((line.last+1),y) until x2 color col;
+	xx2 := line.last; 
+      } else {
+	xx2 := x2;
+      };
+      {xb <= xx2}.while_do {
+	xe  := line.item idx - 1;
+	parent_area.line_h_hard (xb,y) until (xe.min xx2) color col;
+	xb  := line.item (idx + 1) + 1;
+	idx := idx + 2;
+      };
+    };
+  );
+
+  - slave_line_h_hard (x1,y:INTEGER) until x2:INTEGER 
+  image line:ABSTRACT_BMP_LINE offset ofs:INTEGER <-
+  ( + l:FAST_ARRAY(UINTEGER_16);
+    + idx,xb,xe,xx2:INTEGER;
+    
+    l := mask.item y;
+    ((l.is_empty) || {x2 < l.first} || {x1 > l.last}).if { 
+      parent_area.line_h_hard (x1,y) until x2 image line offset ofs;
+    } else {
+      (x1 < l.first).if {
+	parent_area.line_h_hard (x1,y) until (l.first-1) image line offset ofs;
+	idx := 2;
+	xb  := l.item 1 + 1;
+      } else {
+	idx := search (x1.to_uinteger_16) in l low (l.lower);
+	(idx.is_even).if {
+	  xb  := l.item (idx + 1) + 1;
+	  idx := idx + 2;
+	} else {
+	  xb  := x1;
+	  idx := idx + 1;
+	};
+      };
+      (x2 > l.last).if {
+	parent_area.line_h_hard ((l.last+1),y) until x2 image line offset 
+	(ofs + (l.last+1) - x1);
+	xx2 := l.last;
+      } else {
+	xx2 := x2;
+      };
+      {xb <= xx2}.while_do {
+	xe  := l.item idx - 1;
+	parent_area.line_h_hard (xb,y) until (xe.min xx2) image line offset
+	(ofs + (xb - x1));
+	xb   := l.item (idx + 1) + 1;
+	idx  := idx + 2;
+      };
+    };
+  );
+  
+  - mask_draw (x0,y0:INTEGER) to (x1,y1:INTEGER) color col:UINTEGER_32 <-
+  ( + line:FAST_ARRAY(UINTEGER_16);
+    + xb,xe,lower,upper,idx:INTEGER;
+    + xx0,xx1:UINTEGER_16;
+    
+    xx0 := x0.to_uinteger_16;
+    xx1 := x1.to_uinteger_16;    
+    y0.to y1 do { y:INTEGER;
+      line := mask.item y;
+      (! line.is_empty).if {
+	((xx0 <= line.last) && {xx1 >= line.first}).if {
+	  (xx0 <= line.first).if {	    
+	    lower := idx := 0;	  
+	  } else {
+	    idx := search xx0 in line low 0;
+	    (idx.is_odd).if {
+	      lower := idx + 1;
+	    } else {	      
+	      xe := line.item (idx + 1).min xx1;
+	      parent_area.line_h_hard (xx0,y) until xe color col;
+	      lower := idx + 2;	      
+	    };
+	  };
+	  (xx1 >= line.last).if {
+	    upper := line.upper;	    
+	  } else {
+	    upper := search xx1 in line low idx;
+	    (upper.is_even).if {
+	      (upper != idx).if {
+		xb := line.item upper;
+		parent_area.line_h_hard (xb,y) until xx1 color col;
+	      };
+	      upper := upper - 1;	      
+	    };
+	  };	  
+	  // Other segment.
+	  (lower).to (upper) by 2 do { x:INTEGER;
+	    xb := line.item x;
+	    xe := line.item (x+1);	  
+	    parent_area.line_h_hard (xb,y) until xe color col;
+	  };
+	};
+      };
+    };
+    
+    //display_mask;
+  );
+  
+Section Private
+  
+  - add_mask (x_beg,y:INTEGER) until x_end:INTEGER <-
+  ( + line:FAST_ARRAY(UINTEGER_16);
+    + i1,i2:INTEGER;
+    + x1,x2:UINTEGER_16;
+    + is_right,is_left:BOOLEAN;
+    
+    x1 := x_beg.to_uinteger_16;
+    x2 := x_end.to_uinteger_16;
+    line := mask.item y;
+    (line.is_empty).if {      
+      line.add_last x1;
+      line.add_last x2;
+    }.elseif {x1 > (line.last+1)} then {
+      line.add_last x1;
+      line.add_last x2;
+    }.elseif {(x2+1) < line.first} then {
+      line.add_first x1; 
+      line.add x2 to 1;
+    } else {
+      (x1 <= line.first).if { 
+	i1 := line.lower;
+	line.put x1 to i1;
+      } else {
+	i1 := search x1 in line low (line.lower);
+      };
+      (x2 >= line.last).if {
+	i2 := line.upper;
+	line.put x2 to i2;
+      } else {
+	i2 := search x2 in line low i1;
+      };      
+      (i1 = i2).if {
+	((i1.is_odd) && {i1 != line.upper}).if {
+	  // free space
+	  is_left  := (x1-1) = line.item i1;
+	  is_right := (x2+1) = line.item (i2+1); 
+	  (is_left).if {
+	    (is_right).if {
+	      line.remove i1 to (i1+1);	      
+	    } else {
+	      line.put x2 to i1;
+	    };
+	  } else {
+	    (is_right).if {
+	      line.put x1 to (i1+1);
+	    } else {
+	      line.add x1 to (i1+1);
+	      line.add x2 to (i1+2);  
+	    };
+	  };
+	};
+      } else {
+        // i1 != i2        
+	(i1.is_odd).if {
+	  is_left  := (x1-1) = line.item i1;
+	  (is_left).if {
+	    //
+	  } else {
+	    line.put x1 to (i1+1); 
+	    i1 := i1 + 2;
+	  };
+	} else {
+	  i1 := i1 + 1;
+	};
+        (i2.is_odd).if {                    
+	  is_right := (i2 < line.upper) && {(x2+1) = line.item (i2+1)};
+	  (is_right).if {
+	    i2 := i2 + 1;
+	  } else {
+	    line.put x2 to i2;
+	    i2 := i2 - 1;
+	  };
+	} else {
+	  // Nothing.
+        };
+        (i1 <= i2).if {
+          line.remove i1 to i2;
+        };
+      };
+    };
+    //check_mask;
+  );
+
+  //
+  // Debug.
+  //
+  
+  - print_line line:FAST_ARRAY(UINTEGER_16) <-
+  (
+    0.to (line.upper) by 2 do { j:INTEGER;
+      '['.print;
+      line.item j.print;
+      '-'.print;
+      line.item (j+1).print;
+      ']'.print;
+      ' '.print;
+    };
+    '\n'.print;
+  );
+  
+  - check_mask <-
+  ( + line:FAST_ARRAY(UINTEGER_16);
+    (mask.lower).to (mask.upper) do { y:INTEGER;
+      line := mask.item y;
+      (! line.is_empty).if {
+	(line.count.is_odd).if {
+	  bug_mask (y,"Line odd");
+	};
+	(line.lower).to (line.upper-1) do { x:INTEGER;
+	  (line.item x <= line.item (x+1)).if {
+	    (
+	      (x != 0) && {x.is_even} && 
+	      {line.item x - 1 = line.item (x-1)}
+	    ).if {
+	      bug_mask (y,"Disconnect");
+	    };
+	    (
+	      (x != 0) && {x.is_even} && 
+	      {line.item x <= line.item (x-1)}
+	    ).if {
+	      bug_mask (y,"Order / Disconnect");
+	    };
+	  } else {
+	    bug_mask (y,"Order");
+	  };
+	};
+      };
+    };
+  );
+  
+  - bug_mask (y:INTEGER,msg:ABSTRACT_STRING) <-
+  (
+    "\nERROR MASK: Line #".print;
+    y.print;
+    " Type: ".print;
+    msg.print;
+    '\n'.print;
+    print_line (mask.item y);
+    die_with_code 0;
+  );
+  
+  - display_mask <-
+  ( + line:FAST_ARRAY(UINTEGER_16);
+    + x1,x2:UINTEGER_16;
+    parent.parent.clipping_off;
+    parent.parent.rectangle_fill (0,0) to (width,height) color black;
+    (mask.lower).to (mask.upper) do { y:INTEGER;
+      line := mask.item y;
+      (! line.is_empty).if {
+	(line.lower).to (line.upper) by 2 do { x:INTEGER;
+	  x1 := line.item x;
+	  x2 := line.item (x+1);	  
+	  parent.parent.pixel_to (x1,y) color white;
+	  parent.parent.pixel_to (x2,y) color blue;
+	  //parent.parent.line_h x1,y until x2 color red;
+	  //'['.print; 
+	  //x1.print; ','.print; x2.print;
+	  //']'.print;
+	  // IO.read_line;
+	};
+	//'\n'.print;
+      };
+    };
+  );
+  
+  //
+  // Sub routine
+  //
+    
+  - search x:UINTEGER_16 in line:FAST_ARRAY(UINTEGER_16) low l:INTEGER :INTEGER <-
+  ( + low,up:INTEGER;
+    + med,result:INTEGER;
+    low := l; 
+    up  := line.upper + 1;    
+    {(up - low) > 2}.while_do {
+      med := ((up + low) >> 1) & 0FFFEh;
+      (x >= line.item med).if {
+	low := med;
+      } else {
+	up := med;
+      };
+    };
+    (x > line.item (low+1)).if {
+      result := low + 1;
+    } else {
+      result := low;
+    };
+    result
+  );
+
+    
\ No newline at end of file
diff --git a/lib/extra/gui/clipping/clip.li b/lib/extra/gui/clipping/clip.li
new file mode 100644
index 0000000..799b66f
--- /dev/null
+++ b/lib/extra/gui/clipping/clip.li
@@ -0,0 +1,184 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := CLIP;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Clip structure (Use for AREA).";
+  
+  - version := 1;
+  
+Section Inherit
+
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public  
+  
+  //                 top
+  //                  /\ 
+  // (x_min,y_min) X--||----------+
+  //               |              |
+  //         left <=              |
+  //               |              |
+  //               |     CLIP     |
+  //               |              |
+  //               |              => right
+  //               |              |
+  //               +----------||--X (x_max,y_max)
+  //                          \/
+  //                        bottom
+    
+  // Coord. abs clip.
+  + x_min:INTEGER;
+  + y_min:INTEGER;
+  + x_max:INTEGER;
+  + y_max:INTEGER;
+  
+  + window:AREA;
+  
+  // Four clip links. 
+  + left:CLIP;
+  + right:CLIP;
+  + top:CLIP;
+  + bottom:CLIP;
+  
+Section Public  
+  
+  - make win:AREA at (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  (
+    window:=win;
+    x_min:=x0;
+    y_min:=y0;
+    x_max:=x1;
+    y_max:=y1;
+  );
+    
+  - create win:AREA at (x0,y0:INTEGER) to (x1,y1:INTEGER) :CLIP <-
+  ( + result:CLIP;
+    
+    result:=CLIP.clone;
+    result.make win at (x0,y0) to (x1,y1);
+    result
+  );
+    
+  - set_left new_link:CLIP <-
+  (
+    left:=new_link;
+  );
+
+  - set_right new_link:CLIP <-
+  (
+    right:=new_link;
+  );
+  
+  - set_top new_link:CLIP <-
+  (
+    top:=new_link;
+  );
+
+  - set_bottom new_link:CLIP <-
+  (
+    bottom:=new_link;
+  );
+
+  - set_x_min new:INTEGER <-
+  (
+    x_min:=new;
+  );
+
+  - set_x_max new:INTEGER <-
+  (
+    x_max:=new;
+  );
+  
+  - set_y_min new:INTEGER <-
+  (
+    y_min:=new;
+  );
+
+  - set_y_max new:INTEGER <-
+  (
+    y_max:=new;
+  );
+
+  - display win:AREA <-
+  (
+    sub_display ((! flag), win);
+  );
+  
+Section Private
+
+  // Mark display flag.
+  + flag:BOOLEAN;
+
+  - sub_display (val:BOOLEAN, win:AREA) <-
+  // Display recurssive clipping. 
+  ( 
+    (window=win).if {
+      VIDEO.color white;
+    } else {
+      VIDEO.color gray;
+    };
+    //x_min.print; ','.print; y_min.print; " to ".print; 
+    //x_max.print; ','.print; y_max.print; '\n'.print;
+    VIDEO.rectangle (x_min,y_min) to (x_max,y_max);
+    
+    (top=NULL).if {
+      VIDEO.line_h (x_min,y_min) until x_max color 0FF6464h;
+    };
+    (bottom=NULL).if {
+      VIDEO.line_h (x_min,y_max) until x_max color 0FF6464h;
+    };
+    (left=NULL).if {
+      VIDEO.line_v (x_min,y_min) until y_max color 0FF6464h;
+    };
+    (right=NULL).if {
+      VIDEO.line_v (x_max,y_min) until y_max color 0FF6464h;
+    }; 
+       
+//    VIDEO.display_screen;
+//    IO.read_character;
+    //KEYBOARD.get_key;
+    flag:=val;
+    ((top!=NULL) && {top.flag!=val}).if { 
+      top.sub_display (val,win); 
+    };
+    ((bottom!=NULL) && {bottom.flag!=val}).if { 
+      bottom.sub_display (val,win); 
+    };
+    ((right!=NULL) && {right.flag!=val}).if { 
+      right.sub_display (val,win); 
+    };
+    ((left!=NULL) && {left.flag!=val}).if { 
+      left.sub_display (val,win); 
+    };
+  );
+
+
+
+
+
+
+
+
diff --git a/lib/extra/gui/clipping/limit_x.li b/lib/extra/gui/clipping/limit_x.li
new file mode 100644
index 0000000..ea448df
--- /dev/null
+++ b/lib/extra/gui/clipping/limit_x.li
@@ -0,0 +1,125 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := LIMIT_X;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "Sub structure for AREA.";
+    
+  - bibliography:= "http://IsaacOS.com";
+  - author      := "Benoit Sonntag (bsonntag at loria.fr), Jerome Boutet (boutet at loria.fr)";
+  
+  - version    := 1;
+  
+Section Inherit
+
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public  
+
+  + value:INTEGER;
+  
+  + plan:PLAN;
+  
+  + next:LIMIT_X;
+  + prev:LIMIT_X;
+  
+Section Public 
+  
+  - make x:INTEGER plan p:PLAN <- 
+  (
+    plan:=p;
+    value:=x;
+  );
+  
+  - create x:INTEGER plan p:PLAN :LIMIT_X <- 
+  ( + result:LIMIT_X;
+    
+    result:=LIMIT_X.clone;
+    result.make x plan p;
+    result
+  );
+  
+  - append old_root:LIMIT_X :LIMIT_X <-
+  ( + new_root:LIMIT_X;
+    + n,p:LIMIT_X;
+    
+    n:=old_root;   
+    (n!=NULL).if {
+      p:=n.prev;
+    };
+    {(n!=NULL) && {n.value<=value} && {(n.value!=value) || {n.plan.level>plan.level}}}.while_do {
+      p:=n; 
+      n:=n.next; 
+    };
+    next:=n; 
+    prev:=p;
+    (prev=NULL).if {
+      new_root:=Self; 
+    } else {
+      new_root:=old_root;
+      p.set_next Self;
+    };
+    (n!=NULL).if {
+      n.set_prev Self;
+    };
+    new_root
+  );
+  
+  - remove old_root:LIMIT_X :LIMIT_X <-
+  ( + new_root:LIMIT_X;
+    
+    (prev=NULL).if {
+      new_root:=next;
+    } else {
+      prev.set_next next;
+      new_root:=old_root;
+    };
+    (next!=NULL).if {
+      next.set_prev prev;
+    };
+    new_root
+  );
+  
+  - set_value v:INTEGER <-
+  (
+    value:=v;
+  );
+  
+  - set_next new:LIMIT_X <-
+  (
+    next:=new;
+  );
+
+  - set_prev new:LIMIT_X <-
+  (
+    prev:=new;
+  );
+
+
+
+
+
+
+
diff --git a/lib/extra/gui/clipping/limit_y.li b/lib/extra/gui/clipping/limit_y.li
new file mode 100644
index 0000000..ebaca9a
--- /dev/null
+++ b/lib/extra/gui/clipping/limit_y.li
@@ -0,0 +1,126 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := LIMIT_Y;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "Sub structure for AREA.";
+    
+  - author      := "Benoit Sonntag (bsonntag at loria.fr), Jerome Boutet (boutet at loria.fr)";
+  
+  - version     := 1;
+  
+Section Inherit
+
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public  
+
+  + value:INTEGER;
+  
+  + plan:PLAN;
+  + is_top:BOOLEAN;  
+  
+  + next:LIMIT_Y;
+  + prev:LIMIT_Y;
+  
+Section Public 
+
+  - make y:INTEGER plan p:PLAN is_top b:BOOLEAN <- 
+  (
+    is_top:=b;
+    plan  :=p;
+    value :=y;
+  );
+  
+  - create_top y:INTEGER plan p:PLAN :LIMIT_Y <- 
+  ( + result:LIMIT_Y;
+    
+    result:=LIMIT_Y.clone;
+    result.make y plan p is_top TRUE;
+    result
+  );
+
+  - create_bottom y:INTEGER plan p:PLAN :LIMIT_Y <- 
+  ( + result:LIMIT_Y;
+    
+    result:=LIMIT_Y.clone;
+    result.make y plan p is_top FALSE;
+    result
+  );
+  
+  - append old_root:LIMIT_Y :LIMIT_Y <-
+  ( + new_root:LIMIT_Y;
+    + n,p:LIMIT_Y;
+    
+    n:=old_root;
+    {(n!=NULL) && {n.value<value}}.while_do {
+      p:=n; 
+      n:=n.next; 
+    };
+    next:=n; 
+    prev:=p;
+    (prev=NULL).if {
+      new_root:=Self; 
+    } else {
+      new_root:=old_root;
+      p.set_next Self;
+    };
+    (n!=NULL).if {
+      n.set_prev Self;
+    };
+    new_root
+  );
+
+  - remove old_root:LIMIT_Y :LIMIT_Y <-
+  ( + new_root:LIMIT_Y;
+    
+    (prev=NULL).if {
+      new_root:=next;
+    } else {
+      prev.set_next next;
+      new_root:=old_root;
+    };
+    (next!=NULL).if {
+      next.set_prev prev;
+    };
+    new_root
+  );
+
+  - set_value v:INTEGER <-
+  (
+    value:=v;
+  );
+  
+  - set_next new:LIMIT_Y <-
+  (
+    next:=new;
+  );
+
+  - set_prev new:LIMIT_Y <-
+  (
+    prev:=new;
+  );
+
+
diff --git a/lib/extra/gui/clipping/plan.li b/lib/extra/gui/clipping/plan.li
new file mode 100644
index 0000000..b11340f
--- /dev/null
+++ b/lib/extra/gui/clipping/plan.li
@@ -0,0 +1,184 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := PLAN;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Sub structure for WINDOW.";
+  
+  - version := 1;
+  
+Section Inherit
+
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public  
+  
+  // +--------------------+
+  // |    (x0,y0)         |
+  // |       X------------|.........+
+  // |       | / / / / / /|         :
+  // |       |/ / / / / / |         :
+  // |       | /  PLAN / /|         :
+  // |       |/ / / / / / |         :
+  // |       | / / / / / /|         :
+  // |       +------------X.........+
+  // |                 (x1,y1)
+  // |                    |
+  // +--------------------+
+  
+  + is_x:BOOLEAN;
+  + is_y:BOOLEAN;
+  
+  + level:INTEGER;
+  + window:AREA;
+  
+  // Limit.
+  + x0:LIMIT_X;
+  + x1:LIMIT_X;
+  + y0:LIMIT_Y;
+  + y1:LIMIT_Y;
+  
+  // Link.
+  + next:PLAN;
+  + prev:PLAN;
+  
+Section Public 
+  
+  - make win:AREA <-
+  (
+    window:=win;
+  );
+  
+  - create win:AREA :PLAN <- 
+  ( + result:PLAN;
+    
+    result:=PLAN.clone;
+    result.make win;
+    result
+  );
+  
+  - remove old_root:PLAN :PLAN <-
+  ( + new_root:PLAN;
+    
+    (prev=NULL).if {
+      new_root:=next;
+    } else {
+      prev.set_next next;
+      new_root:=old_root;
+    };
+    (next!=NULL).if {
+      next.set_prev prev;
+    };
+    // Update level:
+    (next!=NULL).if {
+      next.dec_level;
+    };
+    new_root
+  );
+
+  - display <-
+  (
+    '['.print;
+    level.print;
+    ']'.print;
+  );
+  
+  - dec_level <-
+  (
+    level:=level-1;
+    (next!=NULL).if {
+      next.dec_level; // Terminal recursivity
+    };
+  );
+
+  - inc_level <-
+  (
+    level:=level+1;
+    (next!=NULL).if {
+      next.inc_level; // Terminal recursivity
+    };
+  );
+  
+  - set_x0 new:LIMIT_X <-
+  (
+    x0:=new;
+  );
+
+  - set_y0 new:LIMIT_Y <-
+  (
+    y0:=new;
+  );
+
+  - set_x1 new:LIMIT_X <-
+  (
+    x1:=new;
+  );
+
+  - set_y1 new:LIMIT_Y <-
+  (
+    y1:=new;
+  );
+  
+  - set_level new:INTEGER <-
+  (
+    level:=new;
+  );
+  
+  - set_next new:PLAN <-
+  (
+    next:=new;
+  );
+
+  - set_prev new:PLAN <-
+  (
+    prev:=new;
+  );
+
+  - active_y <-
+  (
+    is_y:=TRUE;
+  );
+
+  - desactive_y <-
+  (
+    is_y:=FALSE;
+  );
+
+  - active_x <-
+  (
+    is_x:=TRUE;
+  );
+
+  - desactive_x <-
+  (
+    is_x:=FALSE;
+  );
+
+
+
+
+
+
+
diff --git a/lib/extra/gui/desk.li b/lib/extra/gui/desk.li
new file mode 100644
index 0000000..5d6abc2
--- /dev/null
+++ b/lib/extra/gui/desk.li
@@ -0,0 +1,169 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := DESK;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+    
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Sonntag Benoit (bsonntag at loria.fr)";
+  - comment     :="User Interface and Events managment.";
+
+  - version := 1;  
+  - date    := "2003/04";
+  
+Section Inherit  
+  
+  + parent_g_raw:Expanded G_GROUP;
+        
+Section Public
+  
+  - physical_screen:AREA; 
+  
+  - virtual_screen:VIRTUAL_SCREEN;
+  
+  //   Video.width
+  // +----------+
+  // | Physical |
+  // |  Screen  | Video.height
+  // +----------+
+  //   /      \
+  // |\     +----------+
+  //  L     |   Desk   |
+  // Mouse  |          |
+  //        +----------+
+  //             |
+  //             |  Video.width * w
+  //        +-----------------------+
+  //        |   Virtual Screen      | Video.height * h
+  //        |                       |
+  //        +-----------------------+
+  
+  - make bmp:ABSTRACT_BITMAP with elt:G_EXPR <-
+  (
+    make bmp scale (1,1) with elt;
+  );
+    
+  - make bmp:ABSTRACT_BITMAP scale (w,h:INTEGER) with elt:G_EXPR <-
+  [
+    -? {w > 0};
+    -? {h > 0};
+  ]
+  ( + msg:EVENT;    
+    + input:INPUT;
+
+    //set_video_support bmp; // BSBS: Warning Perf !!! (-all_warning) Fixed with VIDEO!
+    physical_screen := AREA.clone;
+    physical_screen.make NULL from (0,0) size (bmp.width,bmp.height);    
+    //
+    root := elt;
+    //
+    EVENT_SYSTEM.make;
+    focus := Self;    
+    //    
+    set_position physical_screen at (0,0) 
+    size (physical_screen.width,physical_screen.height);
+    
+    virtual_screen := VIRTUAL_SCREEN.create Self scale (w,h);
+    connect_to MOUSE;
+    connect_to KEYBOARD;
+    connect_to TIMER;
+    {
+      EVENT_SYSTEM.get_event;
+      
+      {storage_message.is_empty}.until_do {
+	msg := storage_message.first;
+	storage_message.remove_first;
+	msg.set_destination focus;
+	focus.receive msg;	
+	input ?= msg.source;
+	input.acknowledge;
+      };      
+    }.do_while {`1`:BOOLEAN{TRUE,FALSE}}; // Infinity Loop     
+  );
+  
+  //
+  // Display.
+  //
+
+  - draw_slave bmp:ABSTRACT_BITMAP from (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  (     
+    bmp.rectangle_fill (x0,y0) to (x1,y1) color color_back; 
+  );
+
+  //
+  // Connect.
+  //    
+  
+  - connect_to obj:INPUT <-
+  (
+    obj.make;
+    obj.add_client Self;
+  );
+  
+  - focus:INBOX;
+  
+  - set_focus f:INBOX <-
+  (
+    focus := f;
+  );
+  
+  - resize_window (w,h:INTEGER) <-
+  (    
+    VIDEO.resize (w,h);
+    physical_screen.resize (w,h);    
+    set_position physical_screen at (0,0) size (w,h);
+    virtual_screen.update_size;
+  );
+  
+  //
+  // Message Server.
+  //
+  
+Section Private
+  
+  - storage_message:LINKED_LIST(EVENT) := LINKED_LIST(EVENT).create;
+  
+Section Public  
+  
+  - receive msg:EVENT <-
+  ( + mouse:EVENT_MOUSE;
+    + win:AREA;
+        
+    (msg.destination = NULL).if {
+      // Hardware Message.
+      storage_message.add_last msg;
+    } else {
+      // Other message.
+      mouse ?= msg;
+      (mouse != NULL).if {
+	win := get_object (mouse.x_current,mouse.y_current);
+	((win != focus) && {win != NULL}).if {
+	  focus := win;
+          msg.set_destination focus;
+	  focus.receive msg;		  
+	};
+      };
+    };
+  );
+  
\ No newline at end of file
diff --git a/lib/extra/gui/event/event.li b/lib/extra/gui/event/event.li
new file mode 100644
index 0000000..ac33268
--- /dev/null
+++ b/lib/extra/gui/event/event.li
@@ -0,0 +1,51 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := EVENT;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Event generic";
+    
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  + destination:INBOX; // If null, Broad cast message.
+  
+  - source:INBOX <- (deferred; INBOX);  
+      
+  - set_destination evt:INBOX <-
+  (
+    destination := evt;
+  );
+  
+  - display <- deferred;
+
+Section EVENT  
+  
+  - string_msg:STRING := STRING.create 250;
+  
+
diff --git a/lib/extra/gui/event/event_gui.li b/lib/extra/gui/event/event_gui.li
new file mode 100644
index 0000000..4a48e4c
--- /dev/null
+++ b/lib/extra/gui/event/event_gui.li
@@ -0,0 +1,64 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := EVENT_GUI;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     :="Keyboard event.";
+  
+Section Inherit
+
+  + parent_event:Expanded EVENT;
+  
+Section Public
+  
+  + source:INBOX;
+      
+  - make src:INBOX at dst:INBOX <-
+  (
+    source      := src;
+    destination := dst;
+  );
+  
+  //
+  // Display.
+  // 
+  
+  - display <-
+  ( + item:ITEM;
+    string_msg.copy "GUI event";
+    item ?= source;
+    (item != NULL).if {
+      string_msg.append " item ";
+      string_msg.append item.name;
+    };
+    string_msg.add_last '\n'.print;
+    VIDEO.message string_msg;
+  );
+  
+  
+    
+
+
+
diff --git a/lib/extra/gui/event/event_keyboard.li b/lib/extra/gui/event/event_keyboard.li
new file mode 100644
index 0000000..d0633d7
--- /dev/null
+++ b/lib/extra/gui/event/event_keyboard.li
@@ -0,0 +1,77 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := EVENT_KEYBOARD;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+
+  - comment     :="Keyboard event.";
+  
+Section Inherit
+
+  + parent_event:Expanded EVENT;
+  
+Section Public
+  
+  - source:INBOX := KEYBOARD;
+  
+  + key:UINTEGER_16;
+    
+  + prev:EVENT_KEYBOARD;
+  
+  - set_prev new_prev:EVENT_KEYBOARD <-
+  (
+    prev := new_prev;
+  );
+  
+  - make c:UINTEGER_16 <-
+  (
+    key := c;
+    destination := NULL;
+  );
+  
+  //
+  // Display.
+  // 
+  
+  - display <-
+  (
+    string_msg.copy "Keyb event: ";
+    string_msg.append ((key>>8).to_binary);
+    string_msg.add_last ' ';
+    string_msg.add_last ((key & 0FFh).to_character);
+    string_msg.add_last '\n';
+    VIDEO.message string_msg;
+  );
+  
+  - copy_from evt:EVENT_KEYBOARD <-
+  (
+    ? {evt != NULL};
+    key := evt.key;
+    destination := NULL;
+  );
+  
+    
+
+
+
diff --git a/lib/extra/gui/event/event_mouse.li b/lib/extra/gui/event/event_mouse.li
new file mode 100644
index 0000000..a917f4d
--- /dev/null
+++ b/lib/extra/gui/event/event_mouse.li
@@ -0,0 +1,141 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := EVENT_MOUSE;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+    
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Sonntag Benoit (bsonntag at loria.fr)";
+  - comment     :="Mouse event.";
+  
+Section Inherit
+
+  + parent_event:Expanded EVENT;
+  
+Section Public
+  
+  - source:INBOX := MOUSE;
+    
+  + x_current:INTEGER;
+  + y_current:INTEGER;
+    
+  + right:BOOLEAN;
+  + left:BOOLEAN;
+  
+  + prev:EVENT_MOUSE;
+  
+  - set_prev new_prev:EVENT_MOUSE <-
+  (
+    prev := new_prev;
+  );
+  
+  - make (xn,yn:INTEGER) button (l,r:BOOLEAN) <-
+  (
+    x_current:=xn;
+    y_current:=yn;
+    left :=l;
+    right:=r;
+    destination := NULL;
+  );
+  
+  - copy_from evt:EVENT_MOUSE <-
+  (
+    ? {evt != NULL};
+    x_current := evt.x_current;
+    y_current := evt.y_current;
+    left := evt.left;
+    right := evt.right;
+    destination := NULL;
+  );
+   
+  - dx:INTEGER <- (x_current - prev.x_current);
+  
+  - dy:INTEGER <- (y_current - prev.y_current);
+  
+  - left_up:BOOLEAN    <- ((! prev.left) && {left});
+
+  - left_down:BOOLEAN  <- (prev.left && {! left});
+  
+  - right_up:BOOLEAN   <- ((! prev.right) && {right});
+  
+  - right_down:BOOLEAN <- (prev.right && {! right});
+    
+  - is_pressed:BOOLEAN <- ((left!=prev.left) || {right!=prev.right});
+  
+  - is_moving:BOOLEAN  <- ((x_current!=prev.x_current) || {y_current!=prev.y_current});
+
+  - is_moving_only:BOOLEAN <- ((! is_pressed) && {is_moving});
+  
+  //
+  // Window consideration.
+  //
+  
+  - window:AREA <- 
+  ( + result:AREA;
+    result ?= destination;
+    ? {result != NULL};
+    result
+  );
+  
+  - x_relative:INTEGER <-
+  ( 
+    x_current - window.x_window    
+  );
+  
+  - y_relative:INTEGER <-
+  ( 
+    y_current - window.y_window
+  );
+  
+  - is_in:BOOLEAN <-
+  ( + area:AREA;
+    area ?= destination;
+    (x_current.in_range (area.x_window) to (area.x_window + area.width  - 1)) &&
+    {y_current.in_range (area.y_window) to (area.y_window + area.height - 1)}
+  );
+  
+  - in_up:BOOLEAN <- (! prev.is_in) && {is_in};
+  
+  - is_out:BOOLEAN <- ! is_in;
+  
+  - out_up:BOOLEAN <- (prev.is_in) && {! is_in};
+  
+  //
+  // Display.
+  //  
+
+  - display <-
+  (
+    string_msg.copy "Mouse event";
+    left.if {
+      string_msg.append " Left";
+    };
+    right.if {
+      string_msg.append " Right";
+    };
+    string_msg.add_last '\n';
+    VIDEO.message string_msg;
+  );
+  
+  
\ No newline at end of file
diff --git a/lib/extra/gui/event/event_timer.li b/lib/extra/gui/event/event_timer.li
new file mode 100644
index 0000000..7baa6b7
--- /dev/null
+++ b/lib/extra/gui/event/event_timer.li
@@ -0,0 +1,70 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := EVENT_TIMER;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     :="Timer event.";
+  
+Section Inherit
+
+  + parent_event:Expanded EVENT;
+  
+Section Public
+  
+  - source:INBOX := TIMER;
+  
+  + count:UINTEGER_32;
+  
+  + prev:EVENT_TIMER;
+  
+  - set_prev new_prev:EVENT_TIMER <-
+  (
+    prev := new_prev;
+  );
+  
+  - make new_count:UINTEGER_32 <-
+  (
+    count := new_count;
+    destination := NULL;
+  );
+  
+  - delay:UINTEGER_32 <- count - prev.count;
+  
+  //
+  // Display.
+  //
+  
+  - display <-
+  (
+     "Timer Event: ".print;
+     count.print; 
+     " delay: ".print;
+     delay.print;
+    '\n'.print;
+  );
+
+
+
+
diff --git a/lib/extra/gui/g_button.li b/lib/extra/gui/g_button.li
new file mode 100644
index 0000000..b37f4c0
--- /dev/null
+++ b/lib/extra/gui/g_button.li
@@ -0,0 +1,212 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := G_BUTTON;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+      
+  - author  := "Sonntag Benoit (bsonntag at loria.fr)";
+  - comment := "Group elements for GUI.";
+  
+  // BSBS: Fusion a faire avec G_CHECK
+  
+Section Inherit  
+
+  + parent_g_group:Expanded G_GROUP;
+  
+Section Public  
+  
+  + auto_action:G_WIN_OUT;
+  
+  + stat:INTEGER_8;
+  
+  + action:{G_BUTTON; } := 
+  { b:G_BUTTON; 
+    // Nothing.
+  };
+  
+  //
+  // Creation
+  //
+  
+  - create elt:G_EXPR connect a:G_WIN_OUT :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make elt connect a;
+    result
+  );
+  
+  - make elt:G_EXPR connect a:G_WIN_OUT <-
+  (
+    make elt;
+    auto_action := a;
+  );
+  
+  - create elt:G_EXPR action b:{G_BUTTON; } :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make elt action b;
+    result
+  );
+  
+  - make elt:G_EXPR action b:{G_BUTTON; } <-
+  (
+    make elt;
+    action := b;
+  );
+ 
+  //
+  // Size.
+  //
+  
+  - predict_size (w,h:INTEGER) :(INTEGER,INTEGER) <-
+  (
+    w + 4, h + 4
+  );
+
+  - width_min:INTEGER <-
+  (
+    parent_g_group.width_min + 4
+  );
+  
+  - height_min:INTEGER <-
+  (
+    parent_g_group.height_min + 4
+  );
+
+  //
+  // Update position.
+  //
+  
+  - set_position rac:AREA at (x,y:INTEGER) size (w,h:INTEGER) <-
+  ( + px,py,nw,nh:INTEGER;
+    update rac from (x,y) size (w,h);
+    ((w-4) > root.width_max).if {      
+      nw := root.width_max;
+      px := ((w-4 - nw) / 2) + 2;
+    } else {
+      nw := w - 4;
+      px := 2;
+    };
+    ((h-4) > root.height_max).if {      
+      nh := root.height_max;
+      py := ((h-4 - nh) / 2) + 2;
+    } else {
+      nh := h - 4;
+      py := 2;
+    };    
+    root.set_position Self at (px,py) size (nw,nh);
+  );
+  
+  //
+  // Display.
+  //
+
+  - draw_slave bmp:ABSTRACT_BITMAP from (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  ( + col:UINTEGER_32;
+    
+    ((stat & 1) = 0).if {
+      col := color_back;
+    } else {
+      col := color_back_light;
+    };    
+    bmp.rectangle_fill (x0,y0) to (x1,y1) color col;
+  );
+  
+  - draw (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  ( 
+    clipping (x0,y0) to (x1,y1);
+    (stat = 0).if {
+      draw_slave Self from (x0,y0) to (x1,y1);
+    } else {
+      (stat = 1).if {
+	draw_border_out (x_min  ,y_min  ) to (x_max  ,y_max  );
+	draw_border_out (x_min+1,y_min+1) to (x_max-1,y_max-1);	
+      } else {
+	draw_border_in (x_min  ,y_min  ) to (x_max  ,y_max  );
+	draw_border_in (x_min+1,y_min+1) to (x_max-1,y_max-1);
+      };    
+      draw_slave Self from (x_min+2,y_min+2) to (x_max-2,y_max-2);
+    };
+  );
+  
+  //
+  // Event manager.
+  //
+  
+  - receive msg:EVENT <-
+  // stat :
+  // -1 = Not actif
+  //  0 = out & off
+  //  1 = in  & off
+  //  2 = out & on
+  //  3 = in  & on
+  ( + mouse:EVENT_MOUSE;  
+    + gui:EVENT_GUI;
+    + new_stat:INTEGER;
+    + cur:AREA;
+    + win_out:G_WIN_OUT;
+    
+    mouse ?= msg;
+    gui ?= msg;
+    (mouse != NULL).if {                  
+      new_stat := (mouse.is_in).to_integer | (mouse.left.to_integer << 1);      
+      (new_stat != stat).if {	
+	stat := new_stat;
+	((stat & 1) != 0).if {
+	  // In.	    	    
+	  (mouse.left_down).if {
+	    (auto_action != NULL).if {	    
+	      (auto_action.is_open).if {
+		auto_action.close;
+	      } else {
+		auto_action.open_by Self;				
+	      };
+	      cur := parent;
+	      (cur != NULL).if {
+		{
+		  win_out ?= cur;
+		  cur := cur.parent;
+		}.do_while {(cur != NULL) && {win_out = NULL}};
+		((win_out != NULL) && {win_out.title = NULL}).if {
+		  win_out.close;
+		};
+	      };		
+	    } else {
+	      action.value Self;
+	    };
+	    stat := 0;
+	  };
+	} else {
+	  // Out.	  
+	  ((stat & 10b) = 0).if {
+	    stat := 0;	  
+	    DESK.receive msg;
+	  };
+	};
+	refresh;	
+      };
+    };
+  );
diff --git a/lib/extra/gui/g_check.li b/lib/extra/gui/g_check.li
new file mode 100644
index 0000000..2e44967
--- /dev/null
+++ b/lib/extra/gui/g_check.li
@@ -0,0 +1,340 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := G_CHECK;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+      
+  - author  := "Sonntag Benoit (bsonntag at loria.fr)";
+  - comment := "Group elements for GUI.";
+
+Section Inherit  
+
+  + parent_g_group:Expanded G_GROUP;
+  
+Section Public  
+  
+  + auto_action:G_WIN_OUT;
+  
+  + stat:INTEGER_8;
+  
+  - is_on:BOOLEAN    <- (stat & 0100b) != 0;
+  - is_check:BOOLEAN <- (stat & 1000b) != 0;
+  
+  - set_stat s:INTEGER_8 <-
+  (
+    stat := s;
+    (stat != Old stat).if {
+      refresh;
+    };
+  );
+  
+  + action:{ G_CHECK; } := 
+  { b:G_CHECK; 
+    // Nothing.
+  };
+  
+  + next_check:G_CHECK;
+  + previous_check:G_CHECK;
+  
+  - set_previous_check p:G_CHECK <-
+  (
+    previous_check := p;
+  );
+  
+  //
+  // Operator position.
+  //
+  
+  - Self:SELF '^' Left 40 other:G_CHECK :G_CHECK <-
+  (
+    next_check := other;
+    other.set_previous_check Self;
+    other
+  );
+    
+  //
+  // Creation
+  //
+  
+  - create_with_check elt:G_EXPR :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make elt connect NULL action NULL check TRUE;
+    result
+  );
+
+  - create_with_check elt:G_EXPR connect a:G_WIN_OUT :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make elt connect a action NULL check TRUE;
+    result
+  );
+
+  - create elt:G_EXPR connect a:G_WIN_OUT :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make elt connect a action NULL check FALSE;
+    result
+  );
+  
+  - create_with_check elt:G_EXPR action b:{ G_CHECK; } :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make elt connect NULL action b check TRUE;
+    result
+  );
+
+  - create elt:G_EXPR action b:{ G_CHECK; } :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make elt connect NULL action b check FALSE;
+    result
+  );
+  
+  - make elt:G_EXPR connect a:G_WIN_OUT action b:{ G_CHECK; } check c:BOOLEAN <-
+  (
+    make elt;
+    auto_action := a;
+    action := b;
+    stat := c.to_integer << 3;
+  );
+     
+  //
+  // Size.
+  //
+  
+  - predict_size (w,h:INTEGER) :(INTEGER,INTEGER) <-
+  ( + rw:INTEGER;
+    
+    (is_check).if {
+      rw := w + 24;
+    } else {
+      rw := w + 4;
+    };
+    rw , h + 4
+  );  
+  
+  - width_min:INTEGER <-
+  ( + result:INTEGER;
+    
+    (is_check).if {
+      result := parent_g_group.width_min + 24;
+    } else {
+      result := parent_g_group.width_min + 4;
+    };
+    result
+  );
+  
+  - height_min:INTEGER <-
+  (
+    parent_g_group.height_min + 4
+  );
+  
+  //
+  // Update position.
+  //
+  
+  - set_position rac:AREA at (x,y:INTEGER) size (w,h:INTEGER) <-
+  ( + px,py,nw,nh,p:INTEGER;   
+    update rac from (x,y) size (w,h);
+    (is_check).if {
+      p := 20;
+    };
+    ((w-(p+4)) > root.width_max).if {      
+      nw := root.width_max;
+      px := ((w-(p+4) - nw) / 2) + (p+2);
+    } else {
+      nw := w - (p+4);
+      px := (p+2);
+    };
+    ((h-4) > root.height_max).if {      
+      nh := root.height_max;
+      py := ((h-4 - nh) / 2) + 2;
+    } else {
+      nh := h - 4;
+      py := 2;
+    };    
+    root.set_position Self at (px,py) size (nw,nh);
+  );
+  
+  //
+  // Display.
+  //
+
+  - draw_slave bmp:ABSTRACT_BITMAP from (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  ( + col:UINTEGER_32;
+    
+    ((stat & 01b) = 0).if {
+      col := color_back;
+    } else {
+      col := color_back_light;
+    };    
+    bmp.rectangle_fill (x0,y0) to (x1,y1) color col;
+  );
+  
+  - draw (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  ( + style:INTEGER_8;
+    clipping (x0,y0) to (x1,y1);
+    ((is_on) && {! is_check}).if {
+      style := 1; // In
+    } else {        
+      ((stat & 11b) = 01b).if {
+        style := 2; // Out
+      } else {
+        ((stat & 11b) != 00b).if {
+          style := 1; // In
+        };
+      };
+    };
+    (style)
+    .when 0 then {
+      draw_slave Self from (x0,y0) to (x1,y1);
+    }
+    .when 1 then {
+      draw_border_in (x_min  ,y_min  ) to (x_max  ,y_max  );
+      draw_border_in (x_min+1,y_min+1) to (x_max-1,y_max-1);
+      draw_slave Self from (x_min+2,y_min+2) to (x_max-2,y_max-2);
+    }
+    .when 2 then {
+      draw_border_out (x_min  ,y_min  ) to (x_max  ,y_max  );
+      draw_border_out (x_min+1,y_min+1) to (x_max-1,y_max-1);	
+      draw_slave Self from (x_min+2,y_min+2) to (x_max-2,y_max-2);
+    };
+    
+    (is_check).if {
+      draw_check;
+    };
+  );
+  
+  //
+  // Event manager.
+  //
+  
+  - receive msg:EVENT <-
+  // stat :
+  // -1 = Not actif
+  //  0 = out & off
+  //  1 = in  & off
+  //  2 = out & on
+  //  3 = in  & on
+  ( + mouse:EVENT_MOUSE;  
+    + gui:EVENT_GUI;
+    + new_stat:INTEGER;
+    + cur:G_CHECK;
+    
+    mouse ?= msg;
+    gui ?= msg;
+    (mouse != NULL).if {                  
+      new_stat := (stat & 1100b) | (mouse.is_in).to_integer | (mouse.left.to_integer << 1);      
+      (new_stat != stat).if {	
+	stat := new_stat;
+	((stat & 1) != 0).if {
+	  // In.	    	    
+	  (mouse.left_down).if {
+	    (auto_action != NULL).if {	    
+	      (auto_action.is_open).if {
+		auto_action.close;
+	      } else {
+		auto_action.open_by Self;		
+	      };
+	    } else {
+	      action.value Self;
+	    };
+	    stat := stat ^ 0100b;
+	    ((stat & 0100b) != 0).if {
+	      cur := next_check;
+	      {cur != NULL}.while_do {
+		cur.set_stat (cur.stat & 1000b);
+		cur := cur.next_check;
+	      };
+	      cur := previous_check;
+	      {cur != NULL}.while_do {
+		cur.set_stat (cur.stat & 1000b);
+		cur := cur.previous_check;
+	      };
+	    };
+	  };
+	} else {
+	  // Out.	  
+	  ((stat & 10b) = 0).if {
+	    stat := stat & 1100b;	  
+	    DESK.receive msg;
+	  };
+	};
+	refresh;	
+      };
+    };
+  );
+  
+  //
+  // Check draw.
+  //
+  
+  - draw_check <-
+  ( + py:INTEGER;
+    
+    py := (height - 14) >> 1;
+    ((next_check = NULL) && {previous_check = NULL}).if {
+      // Check.
+      draw_border_in (3,py) to (16,py+13);
+      rectangle_fill (4,py+1) to (15,py+12) color color_back_light;
+      ((stat & 100b) != 0).if {
+	color black;
+	line  (5,(py+2)) to (14,(py+11));
+	line  (5,(py+3)) to (13,(py+11));
+	line  (6,(py+2)) to (14,(py+10));
+	
+	line (14,(py+2)) to  (5,(py+11));
+	line (13,(py+2)) to  (5,(py+10));
+	line (14,(py+3)) to  (6,(py+11));
+      };
+    } else {
+      // Check list
+      color color_dark;
+      move_to (3,(py+6));
+      line_to (9,py);
+      line_to (15,(py+6));
+      color color_light;
+      line_to (9,(py+12));
+      line_to (3,(py+6));
+      
+      color color_back_light;
+      poly_move_to (9,(py+1));
+      poly_line_to (14,(py+6));
+      poly_line_to (9,(py+11));
+      poly_line_to (4,(py+6));
+      poly_trace;
+      
+      ((stat & 100b) != 0).if {
+	color black;
+	circle_fill (9,(py+6)) rayon 2 color black;
+      };
+    };
+  );
+  
\ No newline at end of file
diff --git a/lib/extra/gui/g_img.li b/lib/extra/gui/g_img.li
new file mode 100644
index 0000000..a74fc22
--- /dev/null
+++ b/lib/extra/gui/g_img.li
@@ -0,0 +1,168 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := G_IMG;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+      
+  - author  := "Sonntag Benoit (bsonntag at loria.fr)";
+  - comment := "Output text for GUI.";
+
+Section Inherit  
+  
+  + parent_area:Expanded AREA;
+  
+  + parent_g_expr:Expanded G_EXPR;
+          
+Section Public
+  
+  + bitmap:ABSTRACT_BITMAP;
+    
+  //
+  // Width / Height
+  //
+  
+  - predict_size filename:ABSTRACT_STRING :(INTEGER,INTEGER) <-
+  ( + entry:ENTRY;
+    + f:FILE;
+    + bmp:FORMAT_BMP;
+    //+ ai_file:AI_FILE;
+    + w,h:INTEGER;
+    
+    entry := FILE_SYSTEM.get_entry filename;
+    ((entry = NULL) || {! entry.is_file}).if {
+      VIDEO.message ("ERROR: File '" + filename + "' not found.\n");
+      die_with_code exit_failure_code;
+    };    
+    (entry.path.has_suffix ".bmp").if {
+      f ?= entry;
+      bmp := FORMAT_BMP.create_with_file f;      
+      (bmp = NULL).if {
+        VIDEO.message "Error: BMP format invalid.\n";
+        die_with_code exit_failure_code;      
+      };
+      w := bmp.width;
+      h := bmp.height;      
+      f.close;
+    }.elseif {entry.path.has_suffix ".ai"} then {
+      not_yet_implemented;
+    };
+    //
+    w,h
+  );
+
+  - width_min :INTEGER <- bitmap.width;
+  
+  - height_min:INTEGER <- bitmap.height;
+
+  - width_max :INTEGER <- width_min;
+  
+  - height_max:INTEGER <- height_min;
+  
+  //
+  // Creation.
+  //
+  
+  - create_with bmp:ABSTRACT_BITMAP :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make bmp;
+    result
+  );    
+  
+  - create filename:ABSTRACT_STRING :SELF <-
+  ( + result:SELF;
+    + entry:ENTRY;
+    + fmt:FORMAT_IMG;
+    + f:FILE;
+    + ai_file:AI_FILE;
+    + w,h:INTEGER;
+    + bmp:BITMAP(PIXEL_24);
+    
+    entry := FILE_SYSTEM.get_entry filename;
+    ((entry = NULL) || {! entry.is_file}).if {
+      VIDEO.message ("ERROR: File '" + filename + "' not found.\n");
+      die_with_code exit_failure_code;
+    };    
+    (entry.path.has_suffix ".bmp").if {
+      entry.open;    
+      f ?= entry;
+      fmt := FORMAT_BMP.create_with_file f;
+      (fmt = NULL).if {
+        VIDEO.message "Error: BMP format invalid.\n";
+        die_with_code exit_failure_code;      
+      };
+      w := fmt.width;
+      h := fmt.height;
+      bmp := BITMAP(PIXEL_24).create_size (w,h);
+      fmt.put_image_in bmp;          
+      f.close;      
+    }.elseif {entry.path.has_suffix ".ai"} then {      
+      entry.open;      
+      f ?= entry;
+      bmp := BITMAP(PIXEL_24).create_size (10,10);	
+      ai_file := AI_FILE.clone;
+      ai_file.fill_bitmap f in bmp scale 3;	
+      f.close;
+    };
+    //
+    result := clone;
+    result.make bmp;
+    result
+  );
+    
+  - make bmp:ABSTRACT_BITMAP <-
+  (
+    bitmap := bmp;    
+  ); 
+
+  //
+  // Update position.
+  //
+  
+  - set_position rac:AREA at (x,y:INTEGER) size (w,h:INTEGER) <-
+  ( 
+    update rac from (x,y) size (w,h);
+  );
+  
+  //
+  // Display.
+  //
+  
+  - draw (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  ( //+ g_grp:G_GROUP;    
+    clipping (x0,y0) to (x1,y1);    
+    //    
+        
+    put_bitmap bitmap to (0,0);
+    //    
+    //g_grp ?= parent;
+    //(width > width_min).if {
+    //  g_grp.draw_in Self from (width_min,0) to (x_max,height_min-1);
+    //};
+    //(height > height_min).if {
+    //  g_grp.draw_in Self from (0,height_min) to (x_max,y_max);    
+    //};
+  );
+  
\ No newline at end of file
diff --git a/lib/extra/gui/g_in.li b/lib/extra/gui/g_in.li
new file mode 100644
index 0000000..199a185
--- /dev/null
+++ b/lib/extra/gui/g_in.li
@@ -0,0 +1,338 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := G_IN;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+      
+  - author  := "Sonntag Benoit (bsonntag at loria.fr)";
+  - comment := "Output text for GUI.";
+
+Section Inherit  
+
+  + parent_area:Expanded AREA;
+  
+  + parent_g_expr:Expanded G_EXPR;
+          
+Section Public
+  
+  + action:{G_IN; } := 
+  { in:G_IN; 
+    // Nothing.
+  };
+  
+  + stat:INTEGER_8;
+  
+  + text:STRING;
+  
+  + justify:UINTEGER_8;
+  
+  + cursor:INTEGER;
+  
+  - left  :UINTEGER_8 := 0;
+  - right :UINTEGER_8 := 1;
+  - center:UINTEGER_8 := 2;
+  
+  //
+  // Width / Height
+  //
+  
+  - predict_size (car,line:INTEGER) :(INTEGER,INTEGER) <-
+  (
+    car * 8, line * 16
+  );  
+  
+  + width_min:INTEGER;
+  
+  + height_min:INTEGER;  
+  
+  - height_max:INTEGER <- height_min;
+  
+  //
+  // Creation.
+  //
+  
+  - create (car,line:INTEGER) :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make (car,line) justify 0 action NULL;
+    result
+  );
+
+  - create (car,line:INTEGER) action a:{G_IN; } :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make (car,line) justify 0 action a;
+    result
+  );
+  
+  - create (car,line:INTEGER) justify j:UINTEGER_8 :SELF <-
+  [
+    -? {j.in_range 0 to 2};
+  ]
+  ( + result:SELF;
+        
+    result := clone;
+    result.make (car,line) justify j action NULL;
+    result
+  );
+
+  - create (car,line:INTEGER) justify j:UINTEGER_8 action a:{G_IN; } :SELF <-
+  [
+    -? {j.in_range 0 to 2};
+  ]
+  ( + result:SELF;
+        
+    result := clone;
+    result.make (car,line) justify j action a;
+    result
+  );
+  
+  - make (car,line:INTEGER) justify j:UINTEGER_8 action a:{G_IN; } <-
+  [
+    -? {car > 1}; 
+    -? {line > 0};
+  ]
+  (
+    text    := STRING.create (car*line);
+    width_min  := car  * 8;
+    height_min := line * 16;
+    justify := j;
+    action  := a;
+  ); 
+
+  //
+  // Update position.
+  //
+  
+  - set_position rac:AREA at (x,y:INTEGER) size (w,h:INTEGER) <-
+  ( 
+    update rac from (x,y) size (w,h);
+  );
+  
+  //
+  // Display.
+  //
+    
+  - draw (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  ( + beg,idx,siz,px,py,idx2:INTEGER;
+        
+    clipping (x0,y0) to (x1,y1);    
+    //    
+    rectangle_fill (x_min,y_min) to (x_max,y_max) color white;
+    //    
+    ((stat & 11b) = 2).if {
+      (cursor > text.upper).if {
+        cursor := text.upper;
+      };
+      text.insert '|' to cursor;
+    };
+    ((stat & 11b) = 0).if {
+      color black;
+    } else {    
+      color red;
+    };
+    beg := text.lower;
+    py := (height - height_min) / 2;
+    {
+      idx := text.index_of '\n' since beg;
+      {
+	siz := font_width text at beg to (idx-1);
+	(siz > width).if {	
+	  idx2 := text.last_index_of ' ' since (idx-1);
+	  (idx2 > beg).if {
+	    idx := idx2;
+	  } else {
+	    idx := idx - 1;
+	  };
+	};
+      }.do_while {siz > width};      
+      (justify != left).if {	
+	(justify = right).if {
+	  // Right
+	  px := width - siz;
+	} else {
+	  // Center
+	  px := (width - siz) >> 1;
+	};
+      };
+      print text at beg to (idx-1) to (px,py); 
+      py  := py + 16;
+      beg := idx + 1;      
+    }.do_until {(idx > text.count) || {py > height}};    
+    ((stat & 11b) = 2).if {
+      text.remove (cursor+1);
+    };
+    //(py > height).if {
+      //text.remove_last (text.upper - idx + 2);
+      //cursor := cursor.min (text.upper);
+      //stat := stat | 4;
+    //};
+    //
+  );
+  
+  //
+  // Event manager.
+  //
+  
+  - receive msg:EVENT <-
+  // 0 : Out
+  // 1 : in
+  // 2 : input
+  // 4 : End of buffer.
+  ( + mouse:EVENT_MOUSE;
+    + keyb:EVENT_KEYBOARD;
+    + win:AREA;    
+    + cmd:UINTEGER_8;
+    + key:CHARACTER;
+        
+    mouse ?= msg;
+    (mouse != NULL).if {
+      win := DESK.get_object (mouse.x_current,mouse.y_current);
+      (stat = -1).if {
+	(win != Self).if {
+	  DESK.receive msg;
+	};
+      } else {
+	(stat & 11b)
+	.when 0 then {
+	  (win = Self).if {
+	    stat := 1;
+	    refresh;
+	  } else {
+	    DESK.receive msg;
+	  };
+	}
+	.when 1 then {
+	  (win = Self).if {
+	    (MOUSE.left).if {
+	      stat := 2;
+	      cursor := text.count;
+	      refresh;
+	    };
+	  } else {
+	    stat := 0;
+	    refresh;
+	  };
+	}
+	.when 2 then {
+	  ((win != Self) && {MOUSE.left}).if {
+	    stat := 0;	  
+	    refresh;
+	    // Action.
+	    (action != NULL).if {
+	      action.value Self;
+	      (cursor > text.count).if {
+		cursor := text.count;
+	      };
+	    };
+	    DESK.receive msg;
+	  };
+	};
+      };
+    };
+    
+    keyb ?= msg;
+    ((keyb != NULL) && {(stat & 11b) = 2}).if {      
+      cmd := (keyb.key >> 8).to_uinteger_8;
+      key := (keyb.key & 0FFh).to_character;
+      ((cmd & 8) != 0).if {
+	key
+	// Enter
+	.when '\13\' or '\20h\' then {	  
+	  text.add_last '\n';
+	  cursor := cursor + 1;
+	  refresh;
+	  // Action.
+	  (action != NULL).if {
+	    action.value Self;
+	    (cursor > text.count).if {
+	      cursor := text.count;
+	    };
+	  };	  
+	  ((stat & 100b) != 0).if {	    
+	    stat := 0;
+	    DESK.receive msg;
+	  };
+	}
+	// Move cursor.	
+	.when 'L' then { 
+	  (cursor != 0).if {
+	    cursor := cursor - 1;
+	  };
+	}
+	.when 'R' then {
+	  (cursor != text.count).if {
+	    cursor := cursor + 1;
+	  };
+	}
+	.when 'B' then {
+	  cursor := 0;
+	}
+	.when 'E' then {
+	  cursor := text.count;
+	}
+	// Suppr.
+	.when '\8\' then {
+	  (cursor != 0).if {
+	    text.remove cursor;
+	    cursor := cursor - 1;
+	  };
+	}
+	.when 'S' then {
+	  (cursor != text.count).if {
+	    text.remove (cursor+1);
+	  };
+	};
+      } else {
+	text.insert key to cursor;
+	cursor := cursor + 1;
+      };
+      stat := stat & 11b;
+      refresh;      
+    };
+  );
+
+Section Private
+  
+  //
+  // Obsolete (A revoir)
+  //
+  
+  - what_letter pos_x:INTEGER :INTEGER <-
+  // Return cursor position under `pos_x' coord.
+  ( + result:INTEGER; 
+    + x,x_cur:INTEGER; // la position x de la souris moins la taille du label
+    
+    x := pos_x - (font_width name + 4); // 4 for border
+        
+    result := text.lower;    
+    {(result <= text.upper) && {x_cur < x}}.while_do {
+      x_cur := x_cur + font_width_letter (text.item result);
+      result := result + 1;
+    };
+        
+    result-1
+  );
diff --git a/lib/extra/gui/g_out.li b/lib/extra/gui/g_out.li
new file mode 100644
index 0000000..8c308a8
--- /dev/null
+++ b/lib/extra/gui/g_out.li
@@ -0,0 +1,158 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := G_OUT;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+      
+  - author  := "Sonntag Benoit (bsonntag at loria.fr)";
+  - comment := "Output text for GUI.";
+
+Section Inherit  
+
+  + parent_area:Expanded AREA;
+  
+  + parent_g_expr:Expanded G_EXPR;
+          
+Section Public
+  
+  + text:STRING;
+  
+  + justify:UINTEGER_8;
+  
+  - left  :UINTEGER_8 := 0;
+  - right :UINTEGER_8 := 1;
+  - center:UINTEGER_8 := 2;
+  
+  //
+  // Width / Height
+  //
+  
+  - predict_size txt:ABSTRACT_STRING :(INTEGER,INTEGER) <-
+  ( 
+    width_min_on txt, height_min_on txt
+  );
+  
+  - width_min:INTEGER <-
+  ( 
+    width_min_on text
+  );
+  
+  - height_min:INTEGER <-
+  (
+    height_min_on text
+  );
+  
+  //
+  // Creation.
+  //
+  
+  - create txt:ABSTRACT_STRING :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make txt justify left;
+    result
+  );
+  
+  - create txt:ABSTRACT_STRING justify j:UINTEGER_8 :SELF <-
+  [
+    -? {j.in_range 0 to 2};
+  ]
+  ( + result:SELF;
+        
+    result := clone;
+    result.make txt justify j;
+    result
+  );
+  
+  - make txt:ABSTRACT_STRING justify j:UINTEGER_8 <-
+  (
+    text := STRING.create (txt.count.max 8);
+    text.copy txt;
+    justify := j;
+  ); 
+
+  //
+  // Update position.
+  //
+  
+  - set_position rac:AREA at (x,y:INTEGER) size (w,h:INTEGER) <-
+  ( 
+    update rac from (x,y) size (w,h);
+  );
+  
+  //
+  // Display.
+  //
+  
+  - draw (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  ( + beg,idx,siz,px,py:INTEGER;
+    + g_grp:G_GROUP;
+    
+    clipping (x0,y0) to (x1,y1);    
+    //    
+    g_grp ?= parent;
+    g_grp.draw_slave Self from (x0,y0) to (x1,y1);
+    //
+    color black;
+    beg := text.lower;
+    py := (height - height_min) / 2;
+    {
+      idx := text.index_of '\n' since beg;
+      (justify != left).if {
+	siz := font_width text at beg to (idx-1);
+	(justify = right).if {
+	  // Right
+	  px := width - siz;
+	} else {
+	  // Center
+	  px := (width - siz) >> 1;
+	};
+      };
+      print text at beg to (idx-1) to (px,py); 
+      py  := py + 16;
+      beg := idx + 1;
+    }.do_until {idx > text.count};
+  );
+  
+Section Private
+  
+  - width_min_on txt:ABSTRACT_STRING :INTEGER <-
+  ( + beg,idx,siz:INTEGER;
+    + result:INTEGER;
+    
+    beg := txt.lower;
+    {
+      idx    := txt.index_of '\n' since beg;
+      siz    := font_width txt at beg to (idx-1);
+      result := result.max siz;      
+      beg    := idx + 1;
+    }.do_until {idx > txt.count};
+    result
+  );
+  
+  - height_min_on txt:ABSTRACT_STRING :INTEGER <-
+  (
+    (txt.occurrences '\n' + 1) * 16
+  );
\ No newline at end of file
diff --git a/lib/extra/gui/g_raw.li b/lib/extra/gui/g_raw.li
new file mode 100644
index 0000000..6ceb091
--- /dev/null
+++ b/lib/extra/gui/g_raw.li
@@ -0,0 +1,111 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := G_RAW;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+      
+  - author  := "Sonntag Benoit (bsonntag at loria.fr)";
+  - comment := "Group elements for GUI.";
+
+Section Inherit  
+  
+  + parent_g_group:Expanded G_GROUP;
+  
+Section Public  
+  
+  //
+  // Size.
+  //
+
+  - predict_size (w,h:INTEGER) :(INTEGER,INTEGER) <-
+  (
+    w + 4, h + 4
+  );
+  
+  - width_min:INTEGER <-
+  (
+    parent_g_group.width_min + 4
+  );
+  
+  - height_min:INTEGER <-
+  (
+    parent_g_group.height_min + 4
+  );
+
+  //
+  // Update position.
+  //
+  
+  - set_position rac:AREA at (x,y:INTEGER) size (w,h:INTEGER) <-
+  ( + px,py,nw,nh:INTEGER;   
+    update rac from (x,y) size (w,h);
+    ((w-4) > root.width_max).if {      
+      nw := root.width_max;
+      px := ((w-4 - nw) / 2) + 2;
+    } else {
+      nw := w - 4;
+      px := 2;
+    };
+    ((h-4) > root.height_max).if {      
+      nh := root.height_max;
+      py := ((h-4 - nh) / 2) + 2;
+    } else {
+      nh := h - 4;
+      py := 2;
+    };    
+    root.set_position Self at (px,py) size (nw,nh);
+  );
+  
+  //
+  // Display.
+  //
+  
+  - draw_slave bmp:ABSTRACT_BITMAP from (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  ( 
+    bmp.rectangle_fill (x0,y0) to (x1,y1) color color_back;
+  );
+  
+  - draw (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  ( 
+    clipping (x0,y0) to (x1,y1);
+    draw_border_out (x_min,y_min) to (x_max,y_max);
+    draw_slave Self from (x_min+1,y_min+1) to (x_max-1,y_max-1);
+  );
+
+  //
+  // Event manager.
+  //
+  
+  - receive msg:EVENT <-
+  ( + mouse:EVENT_MOUSE;  
+    + win:AREA;
+        
+    mouse ?= msg;
+    (mouse != NULL).if {                  
+      win := DESK.get_object (mouse.x_current,mouse.y_current);
+      (win != Self).if {
+	DESK.receive msg;	
+      };
+    };    
+  );
diff --git a/lib/extra/gui/g_win_in.li b/lib/extra/gui/g_win_in.li
new file mode 100644
index 0000000..c28ab91
--- /dev/null
+++ b/lib/extra/gui/g_win_in.li
@@ -0,0 +1,155 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := G_WIN_IN;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+      
+  - author  := "Sonntag Benoit (bsonntag at loria.fr)";
+  - comment := "Group elements for GUI.";
+
+Section Inherit  
+  
+  + parent_area:Expanded AREA;
+  
+  + parent_g_expr:Expanded G_EXPR;
+  
+Section Public  
+  
+  + win_in:G_WIN_IN_INTERN;
+  
+  //
+  // Creation.
+  //
+  
+  - create (w,h:INTEGER) with elt:G_EXPR :G_WIN_IN <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make (w,h) with elt;
+    result
+  );
+  
+  - make (w,h:INTEGER) with elt:G_EXPR <-
+  (
+    width_min  := w;
+    height_min := h;
+    win_in := G_WIN_IN_INTERN.create elt;
+  );
+  
+  //
+  // Fix position.
+  //
+  
+  - set_top <- 
+  (
+    win_in.set_top;
+    refresh_in;
+  );
+    
+  - set_bottom <- 
+  (
+    win_in.set_bottom;
+    refresh_in;
+  );
+    
+  - set_right <-
+  (
+    win_in.set_right;
+    refresh_in;
+  );
+
+  - set_left <-
+  (
+    win_in.set_left;
+    refresh_in;
+  );
+
+  //
+  // Size.
+  //
+  
+  - predict_size (w,h:INTEGER) :(INTEGER,INTEGER) <-
+  ( 
+    w, h
+  );
+
+  + width_min:INTEGER;
+  
+  + height_min:INTEGER;
+    
+  //
+  // Update position.
+  //
+  
+  - refresh_in <-
+  ( // BSBS: Pas TOP !!!
+    win_in.set_position Self at (2,2) size (width-4,height-4); 
+    win_in.refresh;
+    (win_in.elevator_v.parent != NULL).if { 
+      win_in.elevator_v.refresh;
+    };
+    (win_in.elevator_h.parent != NULL).if { 
+      win_in.elevator_h.refresh;
+    };
+  );
+  
+  - set_position rac:AREA at (x,y:INTEGER) size (w,h:INTEGER) <-
+  ( 
+    update rac from (x,y) size (w,h);
+    win_in.set_position Self at (2,2) size (w-4,h-4); 
+  );
+  
+  //
+  // Display.
+  //
+  
+  - draw_slave bmp:ABSTRACT_BITMAP from (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  ( 
+    bmp.rectangle_fill (x0,y0) to (x1,y1) color color_back;
+  );
+  
+  - draw (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  (     
+    clipping (x0,y0) to (x1,y1);       
+    draw_border_in (x_min,y_min) to (x_max,y_max);    
+    draw_border_in (x_min+1,y_min+1) to (x_max-1,y_max-1);
+    draw_slave Self from (x_min+2,y_min+2) to (x_max-2,y_max-2);
+  );
+
+  //
+  // Event manager.
+  //
+  
+  - receive msg:EVENT <-
+  ( + mouse:EVENT_MOUSE;  
+    + win:AREA;
+        
+    mouse ?= msg;
+    (mouse != NULL).if {                  
+      win := DESK.get_object (mouse.x_current,mouse.y_current);
+      (win != Self).if {
+	DESK.receive msg;	
+      };
+    };    
+  );
diff --git a/lib/extra/gui/g_win_out.li b/lib/extra/gui/g_win_out.li
new file mode 100644
index 0000000..88c41ab
--- /dev/null
+++ b/lib/extra/gui/g_win_out.li
@@ -0,0 +1,494 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := G_WIN_OUT;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+      
+  - author  := "Sonntag Benoit (bsonntag at loria.fr)";
+  - comment := "Group elements for GUI.";
+
+Section Inherit  
+  
+  + parent_g_group:Expanded G_GROUP;
+  
+Section Public  
+  
+  - margin_resize_button:INTEGER := 4;
+  - length_resize_button:INTEGER := 12;
+  
+  - is_resizable:BOOLEAN <- (! root.is_fix_width) || {! root.is_fix_height};
+  
+  + title_len:INTEGER;
+  
+  + title:ABSTRACT_STRING;
+  
+  + stat:INTEGER_8;
+    
+  - is_open:BOOLEAN <- (stat & 1) != 0;
+  
+  - open_by src:G_GROUP <-
+  ( + px,py,w,h:INTEGER;
+    + p:AREA;
+    
+    (stat = 0).if {	
+      ((title = NULL) && {src != NULL}).if {	
+	w := width_min;
+	h := height_min;
+	(src.is_horizontal).if {
+	  px := src.x_window;
+	  py := src.y_window + src.height;
+	  ((px + w) > DESK.x_max).if {
+	    px := DESK.x_max - w;
+	  };
+	  ((py + h) > DESK.y_max).if {
+	    py := src.y_window - h;
+	  };
+	} else {
+	  px := src.x_window + src.width;
+	  py := src.y_window;
+	  ((px + w) > DESK.x_max).if {
+	    px := src.x_window - w;
+	  };
+	  ((py + h) > DESK.y_max).if {
+	    py := DESK.y_max - h;
+	  };
+        };	  	  
+        p := src.parent;
+        {(p != NULL) && {p != DESK.virtual_screen}}.while_do {
+          p := p.parent;
+        };
+        (p = NULL).if {
+          set_position DESK at (px,py);
+        } else {
+          set_position (DESK.virtual_screen) at 
+          (px-DESK.virtual_screen.x_window,py-DESK.virtual_screen.y_window);
+        };
+      } else {
+	px := (DESK.width  - width_min ) / 2;
+        py := (DESK.height - height_min) / 2;
+        set_position (DESK.virtual_screen) at 
+        (px-DESK.virtual_screen.x_window,py-DESK.virtual_screen.y_window);
+      };      
+      stat := 01b;	
+    };       
+  );
+    
+  - close <-
+  (
+    delete;
+    stat := 0;
+  );
+  
+  //
+  // Creation.
+  //
+  
+  - create t:ABSTRACT_STRING with elt:G_EXPR :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make t with elt;
+    result
+  );
+  
+  - make t:ABSTRACT_STRING with elt:G_EXPR <-
+  (
+    title_len := BITMAP(PIXEL_32).font_width t + 2 + 12;
+    title := t;
+    root := elt;
+  );
+  
+  //
+  // Size.
+  //
+  
+  - predict_size (w,h:INTEGER) with_title t:BOOLEAN :(INTEGER,INTEGER) <-
+  ( + rw,rh:INTEGER;
+    
+    (t).if {
+      rw := w +  2 + margin_resize_button;
+      rh := h + 18 + margin_resize_button;
+    } else {
+      rw := w + 2;
+      rh := h + 2;
+    };
+    rw , rh
+  );  
+  
+  - width_min:INTEGER <-
+  ( + result:INTEGER;
+    
+    result := parent_g_group.width_min + 2;
+    ((title != NULL) && {is_resizable}).if {
+      result := result + margin_resize_button;
+    };
+    result
+  );
+  
+  - height_min:INTEGER <-
+  ( + result:INTEGER;
+    
+    result := parent_g_group.height_min;
+    (title = NULL).if {
+      result := result + 2;
+    } else {
+      result := result + 17 + 1;
+      (is_resizable).if {
+        result := result + margin_resize_button;
+      };
+    };    
+    result
+  );
+
+  //
+  // Update position.
+  //
+    
+  - set_position rac:AREA at (x,y:INTEGER) size (w,h:INTEGER) <-
+  ( + px,py,pw,ph:INTEGER;
+    update rac from (x,y) size (w,h);
+    px := 1;
+    pw := w-2;
+    (title = NULL).if {
+      py := 1;      
+      ph := h-2;      
+    } else {
+      py := 17;
+      ph := h-18;
+      (is_resizable).if {
+        pw := pw - margin_resize_button;
+        ph := ph - margin_resize_button;
+      };
+    };    
+    root.set_position Self at (px,py) size (pw,ph);
+  );
+  
+  //
+  // Display.
+  //
+  
+  - draw_slave bmp:ABSTRACT_BITMAP from (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  (    
+    // Nothing.
+  );
+  
+  - draw (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  ( + xm,ym:INTEGER;
+    clipping (x0,y0) to (x1,y1);    
+    
+    (title = NULL).if {      
+      rectangle (0,0) to (x_max,y_max) color black;
+      draw_slave Self from (1,1) to (x_max-1,y_max-1);      
+    } else {
+      color 646496h;
+      line_v (0,15) until 0;
+      line_h_until (title_len+1);
+      line_to (title_len+1+15,15);
+        
+      // Border out.
+      (is_resizable).if {
+        xm := x_max - margin_resize_button;        
+        ym := y_max - margin_resize_button;
+        color 646496h;                
+        line_v (xm-length_resize_button,ym+1) until y_max;
+        line_h_until x_max;
+        line_v_until (ym-length_resize_button);
+        line_h_until (xm+1);
+        rectangle_fill (xm-length_resize_button+1,ym+1) to (x_max-1,y_max-1) color 0C8C8FFh;
+        rectangle_fill (xm+1,ym-length_resize_button+1) to (x_max-1,ym);
+      } else {
+        xm := x_max;
+        ym := y_max;
+      };      
+      rectangle (0,16) to (xm,ym) color black;      
+                        
+      // Title background.
+      color 0C8C8FFh;
+      poly_move_to (1,1);
+      poly_line_to ((title_len+1),1);
+      poly_line_to ((title_len+15),15);
+      poly_line_to (1,15);
+      poly_line_to (1,1);
+      poly_rectangle (2,3) to (4+9,3+9);      
+      poly_trace;
+            
+      draw_border_in (3,3) to (3+9,3+9);
+      rectangle_fill (4,4) to (3+8,3+8) color color_back;
+      
+      // Title.
+      //((stat & 10b) = 0).if {
+      color black;
+      //} else {
+	//color red;
+      //};    
+      print title to (3+12,(-1));    
+    };
+  );
+  
+  - slave_pixel_hard (x,y:INTEGER) color col:UINTEGER_32 <- 
+  ( + xm,ym:INTEGER;
+    (title != NULL).if {
+      (y < 16).if {
+        (x > (title_len+1+y)).if {
+          pixel_hard (x,y) color col;
+        };
+      } else {
+        (is_resizable).if {
+          xm := x_max - margin_resize_button;
+          ym := y_max - margin_resize_button;
+          (
+            (
+              (y.in_range 17 to (ym-1)) && 
+              {x.in_range  1 to (xm-1)}
+            ) || {
+              (y > ym) &&
+              {x < xm-length_resize_button}
+            } || {
+              (y < ym-length_resize_button) &&
+              {x > xm}
+            }
+          ).if {
+            pixel_hard (x,y) color col;
+          };
+        } else {
+          ((y != 16) && {y != y_max} && {x != 0} && {x != x_max}).if {
+            pixel_hard (x,y) color col;
+          };
+        };
+      };
+    };
+  );
+  
+  - slave_line_h_hard (x1,y:INTEGER) until x2:INTEGER color col:UINTEGER_32 <- 
+  ( + new_x1,new_x2,xm,ym:INTEGER;
+    
+    (title != NULL).if {            
+      (y < 16).if {
+        (x2 > (title_len+1+y)).if {
+          new_x1:=x1.max (title_len+2+y);
+          line_h_hard (new_x1,y) until x2 color col;
+        };
+      } else {
+        (is_resizable).if {
+          xm := x_max - margin_resize_button;
+          ym := y_max - margin_resize_button;
+          (y = 16).if {              
+            (x2 > xm).if {
+              new_x1 := x1.max (xm+1);
+              line_h_hard (new_x1,y) until x2 color col;
+            };
+          }.elseif {y < ym - length_resize_button} then {            
+            (x2 > xm).if {
+              new_x1 := x1.max (xm+1);
+              line_h_hard (new_x1,y) until x2 color col;              
+            };
+            (x1 < xm).if {
+              new_x1 := x1.max 1;
+              new_x2 := x2.min (xm-1);
+              (new_x1 <= new_x2).if {
+                line_h_hard (new_x1,y) until new_x2 color col;
+              };
+            };
+          }.elseif {y < ym} then {
+            new_x1 := x1.max 1;
+            new_x2 := x2.min (xm-1);
+            (new_x1 <= new_x2).if {
+              line_h_hard (new_x1,y) until new_x2 color col;
+            };
+          }.elseif {y > ym} then {
+            (x1 < xm-length_resize_button).if {
+              new_x2 := x2.min (xm-length_resize_button-1);
+              line_h_hard (x1,y) until new_x2 color col;
+            };
+          };            
+        } else {
+          ((y != 16) && {y != y_max} && {x2 > 0} && {x1 < x_max}).if {
+            new_x1:=x1.max 1;
+            new_x2:=x2.min (x_max-1);            
+            line_h_hard (new_x1,y) until new_x2 color col;
+          };
+        };
+      };
+    };
+  );
+
+  - slave_line_h_hard (x1,y:INTEGER) until x2:INTEGER 
+  image line:ABSTRACT_BMP_LINE offset ofs:INTEGER <-
+  ( + new_x1,new_x2,new_ofs,xm,ym:INTEGER;
+    
+    (title != NULL).if {            
+      (y < 16).if {
+        (x2 > (title_len+1+y)).if {
+          new_x1:=x1.max (title_len+2+y);
+          new_ofs := ofs + new_x1 - x1;
+          line_h_hard (new_x1,y) until x2 image line offset new_ofs;
+        };
+      } else {
+        (is_resizable).if {
+          xm := x_max - margin_resize_button;
+          ym := y_max - margin_resize_button;
+          (y = 16).if {              
+            (x2 > xm).if {
+              new_x1 := x1.max (xm+1);
+              new_ofs := ofs + new_x1 - x1;
+              line_h_hard (new_x1,y) until x2 image line offset new_ofs;
+            };
+          }.elseif {y < ym - length_resize_button} then {            
+            (x2 > xm).if {
+              new_x1 := x1.max (xm+1);
+              new_ofs := ofs + new_x1 - x1;
+              line_h_hard (new_x1,y) until x2 image line offset new_ofs;
+            };
+            (x1 < xm).if {
+              new_x1 := x1.max 1;
+              new_x2 := x2.min (xm-1);
+              (new_x1 <= new_x2).if {
+                new_ofs := ofs + new_x1 - x1;
+                line_h_hard (new_x1,y) until new_x2 image line offset new_ofs;
+              };
+            };
+          }.elseif {y < ym} then {
+            new_x1 := x1.max 1;
+            new_x2 := x2.min (xm-1);
+            (new_x1 <= new_x2).if {
+              new_ofs := ofs + new_x1 - x1;
+              line_h_hard (new_x1,y) until new_x2 image line offset new_ofs;
+            };
+          }.elseif {y > ym} then {
+            (x1 < xm-length_resize_button).if {
+              new_x2 := x2.min (xm-length_resize_button-1);
+              line_h_hard (x1,y) until new_x2 image line offset ofs;
+            };
+          };            
+        } else {
+          ((y != 16) && {y != y_max} && {x2 > 0} && {x1 < x_max}).if {
+            new_x1:=x1.max 1;
+            new_x2:=x2.min (x_max-1);            
+            new_ofs := ofs + new_x1 - x1;
+            line_h_hard (new_x1,y) until new_x2 image line offset new_ofs;
+          };
+        };
+      };
+    };    
+  );
+
+  //
+  // Event.
+  //
+    
+  - receive msg:EVENT <-  
+  ( + mouse:EVENT_MOUSE;
+    + timer:EVENT_TIMER;
+    + win:AREA;    
+    + xr,yr,new_width,new_height:INTEGER;
+    + new_stat:INTEGER_8;
+
+    mouse ?= msg;        
+    timer ?= msg;
+    (mouse != NULL).if {             
+      xr := mouse.x_relative;
+      yr := mouse.y_relative;
+      (
+        (xr.in_range 4 to (3+8)) &&
+        {yr.in_range 4 to (3+8)}
+      ).if {
+        // Cancel.
+        new_stat := 0011b;
+      }.elseif {yr < 16} then {
+        // Move / First.
+        new_stat := 0101b;
+      } else {
+        // Resize.
+        new_stat := 1001b;
+      };
+      (mouse.left_up).if {
+        stat := new_stat;
+      }.elseif {mouse.left_down} then {
+        ((stat = new_stat) && {new_stat = 0011b}).if {
+          close;
+        } else {
+          (stat = 1001b).if {
+            set_position parent at (get_x_window,get_y_window) size (width,height);
+          };
+          stat := 0001b;        
+        };
+      }.elseif {(mouse.left) && {mouse.is_moving_only}} then {
+        (stat = 0101b).if {
+          move (mouse.dx,mouse.dy);
+        }.elseif {stat = 1001b} then {          
+          (root.is_fix_width).if {
+            new_width := width;
+          } else {
+            new_width  := (xr+1).max width_min;
+          };
+          (root.is_fix_height).if {
+            new_height := height;
+          } else {
+            new_height := (yr+1).max height_min;
+          };
+          resize (new_width,new_height);
+          //
+        };
+      }.elseif {(mouse.right_down) && {new_stat = 0101b}} then {
+        first;
+      } else {
+        win := DESK.get_object ((mouse.x_current),(mouse.y_current));
+        (win != Self).if {	  
+          DESK.receive msg;
+        };
+      };      
+    }.elseif {timer != NULL} then {
+      (stat = 1001b).if {
+        set_position parent at (get_x_window,get_y_window) size (width,height);
+      };
+    };
+  );
+    
+  - get_object (x,y:INTEGER) :AREA <-
+  ( + result:AREA;
+    + rel_x,rel_y:INTEGER;
+    
+    result := parent_g_group.get_object (x,y);
+    
+    (result = Self).if {
+      (title != NULL).if {
+	rel_x := x - x_window;
+        rel_y := y - y_window;
+        ((rel_y >= 16) || {rel_x > (title_len+1+rel_y)}).if {
+          (is_resizable).if {
+            (
+              (rel_y < y_max-margin_resize_button-length_resize_button) ||
+              {rel_x < x_max-margin_resize_button-length_resize_button}
+            ).if {
+              result := NULL;
+            };            
+          } else {
+            result := NULL;
+          };	  
+	};
+      };
+    };
+    result
+  );
+
diff --git a/lib/extra/gui/g_win_out_trans_test.li b/lib/extra/gui/g_win_out_trans_test.li
new file mode 100644
index 0000000..d1dde28
--- /dev/null
+++ b/lib/extra/gui/g_win_out_trans_test.li
@@ -0,0 +1,354 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := G_WIN_OUT_TRANS_TEST;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  //
+  // ****** WARNING : JUST TEST ***********
+  //
+  
+  - author  := "Sonntag Benoit (bsonntag at loria.fr)";
+  - comment := "Group elements for GUI.";
+
+Section Inherit  
+  
+  + parent_window:Expanded AREA_MASK;
+  
+  + parent_g_expr:Expanded G_EXPR;
+  
+Section Private
+  
+  //
+  // ***** APPEND *****
+  // 
+  
+  - depth:INTEGER := 4;
+  
+  - color_4_to_8 n:INTEGER :UINTEGER_32 <-
+  (
+    `(unsigned int)((255. / 15) * @n)`:UINTEGER_32
+  );
+  
+  - color_table:NATIVE_ARRAY(UINTEGER_32) :=
+  ( + result:NATIVE_ARRAY(UINTEGER_32);
+    + r,g,b,col:UINTEGER_32;
+    
+    result := NATIVE_ARRAY(UINTEGER_32).create 4096;
+    0.to 4095 do { c:INTEGER;      
+      r := color_4_to_8 ((c & 0F00h) >> 8);
+      g := color_4_to_8 ((c & 00F0h) >> 4);
+      b := color_4_to_8  (c & 000Fh);
+      // Begin color effect
+      r := (r >> 1) + (r >> 2);
+      b := (b >> 1) + (b >> 2);
+      g := (g >> 1) + (g >> 2);
+      // End.
+      col := (r << 16) | (g << 8) | b;
+      result.put col to c;
+    };
+    result
+  );
+  
+  - col_trans col:UINTEGER_32 :UINTEGER_32 <-
+  ( + idx:UINTEGER_32;
+    
+    idx := 
+    ((col >> 12) & 0F00h) | // Red
+    ((col >>  8) & 00F0h) | // Green
+    ((col >>  4) & 000Fh);  // Blue
+    color_table.item idx
+  );
+  
+  + line_tmp_trans:BMP_LINE(PIXEL_32);
+    
+Section Public  
+  
+  + title_len:INTEGER;
+  
+  + title:ABSTRACT_STRING;
+  
+  + stat:INTEGER_8;
+    
+  - is_open:BOOLEAN <- (stat & 1) != 0;
+  
+  - open_by src:G_GROUP <-
+  ( + px,py,w,h:INTEGER;
+    
+    (stat = 0).if {	
+      ((title = NULL) && {src != NULL}).if {	
+	w := width_min;
+	h := height_min;
+	(src.is_horizontal).if {
+	  px := src.x_window;
+	  py := src.y_window + src.height;
+	  ((px + w) > DESK.x_max).if {
+	    px := DESK.x_max - w;
+	  };
+	  ((py + h) > DESK.y_max).if {
+	    py := src.y_window - h;
+	  };
+	} else {
+	  px := src.x_window + src.width;
+	  py := src.y_window;
+	  ((px + w) > DESK.x_max).if {
+	    px := src.x_window - w;
+	  };
+	  ((py + h) > DESK.y_max).if {
+	    py := DESK.y_max - h;
+	  };
+	};	  	  
+      } else {
+	px := (DESK.width  - width_min ) / 2;
+	py := (DESK.height - height_min) / 2;
+      };
+      set_position DESK at (px,py);
+      stat := 01b;	
+    };       
+  );
+    
+  - close <-
+  (
+    delete;
+    stat := 0;
+  );
+  
+  //
+  // Creation.
+  //
+  
+  - create t:ABSTRACT_STRING with elt:G_EXPR :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make t with elt;
+    result
+  );
+  
+  - make t:ABSTRACT_STRING with elt:G_EXPR <-
+  (
+    title_len := BITMAP(PIXEL_32).font_width t + 2; //+ 25;
+    title := t;
+    //root := elt;
+    
+    // ***** APPEND ****
+    line_tmp_trans  := BMP_LINE(PIXEL_32).create 2048;
+  );
+  
+  //
+  // Size.
+  //
+  
+  - width_min:INTEGER <-
+  (
+    title_len
+  );
+  
+  - height_min:INTEGER <-
+  ( 
+    20
+  );
+
+  //
+  // Update position.
+  //
+    
+  - set_position rac:AREA at (x,y:INTEGER) size (w,h:INTEGER) <-
+  (
+    update rac from (x,y) size (w,h);
+    
+    // ******* ESSAI *******
+    stat := 01b;
+    
+    //(title = NULL).if {
+    //  root.set_position Self at (1, 1) size (w-2,h-2);
+    //} else {
+    //  root.set_position Self at (1,17) size (w-2,h-18);
+    //};
+  );
+  
+  //
+  // Display.
+  //
+  
+  - draw_slave bmp:ABSTRACT_BITMAP from (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  (
+    bmp.rectangle_fill (x0,y0) to (x1,y1) color color_back; 
+  );
+  
+  //
+  // ********** UPDATE ********
+  //
+  
+  - draw (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  (
+
+    clipping (x0,y0) to (x1,y1);    
+    
+    color green; //008000h;
+    line_h (0,0) until (title_len+1);
+    line_to ((title_len+1+15),15);
+    line_h_until (x_max-depth);
+    
+    line_h (0,19) until (x_max-depth);
+    line_h (0,(y_max-depth-3)) until (x_max-depth);
+    
+    line_v (3,20) until (y_max-depth-4);
+    line_v ((x_max-depth-3),20) until (y_max-depth-4);
+    
+    poly_move_to (0,1);
+    poly_line_to ((title_len+1),1);
+    poly_line_to ((title_len+16),16);
+    poly_line_to ((x_max-depth),16);
+    poly_line_to ((x_max-depth),18);
+    poly_line_to (0,18);
+    poly_trace_color blue;
+    
+    // Title.
+    color white;
+    print title to (3,(-1));
+    //display_mask;
+    
+    margin_clip_x1 := margin_clip_x1 + (x_max - x1).min depth;
+    margin_clip_y1 := margin_clip_y1 + (y_max - y1).min depth;
+  );
+
+  - slave_pixel_hard (x,y:INTEGER) color col:UINTEGER_32 <- 
+  ( + new_x,new_y:INTEGER;
+    
+    ((y < 16) && {x > (title_len+1+y)}).if {
+      parent_window.slave_pixel_hard (x,y) color col;
+    } else {      
+      new_x := x - depth;
+      new_y := y - depth;
+      ((new_x >= 0) && {new_y >= 20}).if { 	
+	parent_window.slave_pixel_hard (new_x,new_y) color (col_trans col); 
+      };
+      ((x > (x_max-depth)) || {y > (y_max-depth)}).if {
+	parent_window.slave_pixel_hard (x,y) color col; 
+      };
+    };
+  );
+  
+  - slave_line_h_hard (x1,y:INTEGER) until x2:INTEGER color col:UINTEGER_32 <- 
+  ( + new_x1,new_y,new_x2:INTEGER;
+    
+    ((y < 16) && {x2 > (title_len+1+y)}).if {
+      new_x1 := x1.max (title_len+2+y);	
+      parent_window.slave_line_h_hard (new_x1,y) until x2 color col;
+    } else {
+      new_x1 := 0.max (x1 - depth);
+      new_x2 := x2 - depth;
+      new_y  := y  - depth;
+      ((new_x2 >= 0) && {new_y >= 20}).if {
+	parent_window.slave_line_h_hard (new_x1,new_y) until new_x2 color (col_trans col);
+      };
+      (y > (y_max-depth)).if {
+	parent_window.slave_line_h_hard (x1,y) until x2 color col; 
+      }.elseif {x2 > (x_max-depth)} then {
+	new_x1 := x1.max (x_max-depth+1);
+	parent_window.slave_line_h_hard (new_x1,y) until x2 color col; 
+      };
+    };    
+  );
+
+  - slave_line_h_hard (x1,y:INTEGER) until x2:INTEGER 
+  image line:ABSTRACT_BMP_LINE offset ofs:INTEGER <-
+  ( + new_x1,new_y,new_x2,ofs2:INTEGER;
+    + ofsd:INTEGER;
+    + col:UINTEGER_32;
+        
+    ((y < 16) && {x2 > (title_len+1+y)}).if {
+      new_x1 := x1.max (title_len+2+y);	
+      parent_window.slave_line_h_hard (new_x1,y) until x2 image line offset (ofs+new_x1-x1);
+    } else {
+      new_x1 := x1 - depth;
+      new_x2 := x2 - depth;
+      new_y  := y  - depth;
+      ((new_x2 >= 0) && {new_y >= 20}).if {
+	(new_x1 < 0).if {
+	  ofs2   := ofs - new_x1;
+	  new_x1 := 0;
+	} else {
+	  ofs2 := ofs;
+	};
+	ofs2.to (ofs2+new_x2-new_x1) do { o:INTEGER;
+	  col := line.get_color o;
+	  line_tmp_trans.put (col_trans col) to ofsd;
+	  ofsd := ofsd + 1;
+	};
+	parent_window.slave_line_h_hard (new_x1,new_y) until new_x2 image line_tmp_trans offset 0;
+	//color (col_trans col);
+      };
+      (y > (y_max-depth)).if {
+	parent_window.slave_line_h_hard (x1,y) until x2 image line offset ofs;
+      }.elseif {x2 > (x_max-depth)} then {
+	new_x1 := x1.max (x_max-depth+1);
+	parent_window.slave_line_h_hard (new_x1,y) until x2 image line offset (ofs+new_x1-x1);
+      };
+    };        
+  );
+
+  //
+  // Event.
+  //
+    
+  - receive msg:EVENT <-  
+  ( + mouse:EVENT_MOUSE;
+    + win:AREA;    
+
+    mouse ?= msg;        
+    (mouse != NULL).if {       
+      (mouse.right_down).if {
+	first;
+      };
+      ((mouse.is_moving_only) && {mouse.left}).if {
+	move ((mouse.dx),(mouse.dy));
+      } else {	
+	win := DESK.get_object ((mouse.x_current),(mouse.y_current));
+	(win != Self).if {	  
+	  DESK.receive msg;
+	};
+      };
+    };
+  );
+    
+  - get_object (x,y:INTEGER) :AREA <-
+  ( + result:AREA;
+    + rel_x,rel_y:INTEGER;
+    
+    result := parent_window.get_object (x,y);
+    
+    (result = Self).if {
+      (title != NULL).if {
+	rel_x := x - x_window;
+	rel_y := y - y_window;
+	((rel_y >= 16) || {rel_x > (title_len+1+rel_y)}).if {
+	  result := NULL;
+	};
+      };
+    };
+    result
+  );
+
diff --git a/lib/extra/gui/input/input.li b/lib/extra/gui/input/input.li
new file mode 100644
index 0000000..fd3011b
--- /dev/null
+++ b/lib/extra/gui/input/input.li
@@ -0,0 +1,77 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := INPUT;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+ 
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Sonntag Benoit (bsonntag at loria.fr)";
+  - comment     :="Message.";
+
+  - version :=1;  
+  - date    :="2003/04";
+  
+Section Inherit  
+  
+  - parent_inbox:INBOX := INBOX;
+  
+Section SELF
+  
+  + list_client:LINKED_LIST(INBOX);
+  
+Section Public
+  
+  - is_actif:BOOLEAN;
+  
+  - add_client obj:INBOX <-
+  ( + idx:INTEGER;
+    (list_client = NULL).if {
+      list_client := LINKED_LIST(INBOX).create;      
+    };
+    idx := list_client.fast_index_of obj start (list_client.lower);    
+    (idx > list_client.upper).if {
+      list_client.add_last obj;
+    };
+  );
+
+  - sub_client obj:INBOX <-
+  ( + idx:INTEGER;
+    
+    idx := list_client.fast_index_of obj start (list_client.lower);    
+    (idx <= list_client.upper).if {
+      list_client.remove idx;
+    };
+  );
+  
+  - make <-
+  (
+    deferred;
+  );
+  
+  - acknowledge <-
+  (
+    deferred;
+  );
diff --git a/lib/extra/gui/input/input_keyboard.li b/lib/extra/gui/input/input_keyboard.li
new file mode 100644
index 0000000..0f93ca1
--- /dev/null
+++ b/lib/extra/gui/input/input_keyboard.li
@@ -0,0 +1,168 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := INPUT_KEYBOARD;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+
+  - comment     :="X11 - Keyboard Driver";
+
+  - version := 1;  
+  - date    :="2003/04";
+  
+Section Inherit
+
+  + parent_input:Expanded INPUT;
+
+Section Private
+  
+  - buffer_event:FAST_ARRAY(EVENT_KEYBOARD); 
+  - p_beg:UINTEGER_8;  // Pointer on the buffer (beginning)
+  - p_end:UINTEGER_8;  // Pointer on the buffer (end)
+    
+  - bin_code:FAST_ARRAY(UINTEGER_8); // Binary array of keys (102+7)/8
+
+  - cmd:UINTEGER_8;    // 0:CTRL 1:AltGr 2:Alt 3:Cmd 4:Shift 5:Cap 6:NumLock 7:Scrolllock
+
+  - ascii_code:UINTEGER_8; // For <Alt>+<NbAscII>
+      
+Section Public
+  
+  //
+  // Get Character (Interrupt #21)
+  //
+  
+  - key key:UINTEGER_8 press p:BOOLEAN <-
+  ( + cu,tmp:UINTEGER_8;
+    
+    p.if {
+      cu := keydown key;
+    } else {
+      cu := keyup key;
+    };
+    (cu != 0).if {
+      // Routine Pour Reboot Violant : CTRL+(ALT | ALT Gr)+Suppr
+      ((cu = 'S'.to_uinteger_8) && { ((cmd&0Fh) = 0Dh) || {(cmd&0Fh) = 0Bh} }).if {
+	"Reboot ...\n".print;
+	die_with_code exit_failure_code;
+      };
+      
+      tmp:=(p_end+1)&003h;
+      buffer_event.item p_end.make ((cmd.to_uinteger_16<<8)|cu);
+      (((tmp+2)&3)!=p_beg).if {
+	p_end:=tmp;
+      };      
+      get_event;
+    };
+  );
+   
+Section Private
+  
+  - keyup cu:UINTEGER_8 :UINTEGER_8 <-
+  ( 
+    deferred;
+    0
+  );
+
+  - keydown cu:UINTEGER_8 :UINTEGER_8 <-
+  ( 
+    deferred;
+    0
+  );
+    
+Section Public   
+  
+  - make <-
+  // Install keyboard.
+  ( + new_event:EVENT_KEYBOARD;
+    is_actif := TRUE;
+    bin_code := FAST_ARRAY(UINTEGER_8).create 14;
+    
+    buffer_event := FAST_ARRAY(EVENT_KEYBOARD).create 4;
+    0.to 3 do { j:INTEGER;
+      new_event := EVENT_KEYBOARD.clone;
+      buffer_event.put new_event to j;
+      (j != 0).if {
+	new_event.set_prev (buffer_event.item (j-1));
+      };
+    };
+    buffer_event.first.set_prev new_event;
+    cmd := 40h;
+  );
+    
+  - get_event <-
+  ( + p:INTEGER;
+    p := p_beg;
+    { p != p_end }.while_do {
+      (list_client.lower).to (list_client.upper) do { j:INTEGER;
+	list_client.item j.receive (buffer_event.item p);
+      };
+      p := (p + 1) & 03h;
+    };    
+  );
+  
+  - get_key:UINTEGER_16 <-
+  // Use without interface running: text mode
+  ( + result:UINTEGER_16;
+    {p_beg = p_end}.while_do {};
+    result := buffer_event.item p_beg.key;
+    p_beg := (p_beg + 1) & 03h;
+    result
+  );
+  
+  //
+  // Guru section.
+  //
+
+  - acknowledge <-
+  (
+    p_beg := (p_beg+1) & 03h;
+  );
+  
+  //
+  // Key code generate.
+  //
+  
+  // 0:CTRL 1:AltGr 2:Alt 3:Cmd 4:Shift 5:Cap 6:NumLock 7:Scrolllock
+
+  - key_ctrl  :UINTEGER_16 := 0100h;
+  - key_alt_gr:UINTEGER_16 := 0200h;
+  - key_alt   :UINTEGER_16 := 0400h;
+  - key_of c:CHARACTER :UINTEGER_16 <- c.to_uinteger_8;
+  
+  - key_to_string k:UINTEGER_16 :STRING <-
+  ( + result:STRING;
+    
+    result := STRING.create 10;
+    ((k & key_ctrl) != 0).if {
+      result.append "Ctrl+";
+    };
+    ((k & key_alt_gr) != 0).if {
+      result.append "AltGr+";
+    };
+    ((k & key_alt) != 0).if {
+      result.append "Alt+";
+    };
+    result.add_last ((k & 0FFh).to_character);
+    result
+  );
diff --git a/lib/extra/gui/low_level/g_binary_expr.li b/lib/extra/gui/low_level/g_binary_expr.li
new file mode 100644
index 0000000..d6d06f3
--- /dev/null
+++ b/lib/extra/gui/low_level/g_binary_expr.li
@@ -0,0 +1,71 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := G_BINARY_EXPR;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Binary operator";
+    
+  - author  := "Benoit Sonntag (bsonntag at loria.fr)";
+  
+Section Inherit
+  
+  + parent_g_expr:Expanded G_EXPR;
+  
+Section Public
+  
+  + right:G_EXPR;
+  
+  + left:G_EXPR;
+    
+  //
+  // Creation.
+  //
+  
+  - create l:G_EXPR and r:G_EXPR :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make l and r;
+    result
+  );
+
+  - make l:G_EXPR and r:G_EXPR <-
+  (
+    deferred;
+  );
+  
+  //
+  // Refresh.
+  //
+  
+  - refresh <-
+  (
+    left.refresh;
+    right.refresh;
+  );
+  
+  
+
+    
diff --git a/lib/extra/gui/low_level/g_div_expr.li b/lib/extra/gui/low_level/g_div_expr.li
new file mode 100644
index 0000000..1bd92f7
--- /dev/null
+++ b/lib/extra/gui/low_level/g_div_expr.li
@@ -0,0 +1,117 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := G_DIV_EXPR;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "Frame representation base";
+    
+  - author      := "Benoit Sonntag (bsonntag at loria.fr)";
+  
+Section Inherit
+  
+  + parent_g_binary_expr:Expanded G_BINARY_EXPR;
+  
+Section Public
+  
+  - make l:G_EXPR and r:G_EXPR <-
+  (
+    left  := l;
+    right := r;    
+    left .set_attribute_bit vertical_bit; 
+    right.set_attribute_bit vertical_bit; 
+  );
+  
+  //
+  // Size.
+  //
+  
+  - predict_size (lw,lh:INTEGER) and (rw,rh:INTEGER) :(INTEGER,INTEGER) <-
+  (
+    lw.max rw, lh + rh
+  );
+
+  - width_min:INTEGER <-
+  (
+    left.width_min.max (right.width_min)
+  );
+  
+  - height_min:INTEGER <-
+  (
+    left.height_min + right.height_min
+  );
+  
+  - width_max:INTEGER <- 
+  ( + result:INTEGER;
+    
+    (is_fix_width).if {
+      result := width_min;
+    } else {
+      result := left.width_max.max (right.width_max);
+    };
+    result
+  );
+  
+  - height_max:INTEGER <- 
+  ( + result:INTEGER;
+    
+    (is_fix_height).if {
+      result := height_min;
+    } else {
+      result := left.height_max + right.height_max;
+    };
+    result
+  );
+  
+  //
+  // Update position.
+  //
+  
+  - set_position rac:AREA at (x,y:INTEGER) size (w,h:INTEGER) <-
+  ( + h_min:INTEGER;
+    + h_left,h_left_min,h_left_max:INTEGER;
+    + h_right,h_right_max:INTEGER;
+    
+    h_min  := height_min;
+    //
+    h_left_min := left.height_min;
+    h_left_max := left.height_max;
+    //
+    h_right_max := right.height_max;
+    //
+    h_left := `(int)(((float)@h) / @h_min * @h_left_min)`:INTEGER; // BSBS: REAL !!!
+    h_right := h - h_left;
+    //
+    (h_right > h_right_max).if {
+      h_right := h_right_max;
+      h_left  := (h - h_right).min h_left_max;      
+    }.elseif {h_left > h_left_max} then {
+      h_left := h_left_max;
+      h_right := (h - h_left).min h_right_max;      
+    };
+    //
+    left .set_position rac at (x,y)        size (w.min (left.width_max),h_left );
+    right.set_position rac at (x,y+h_left) size (w.min (right.width_max),h_right);
+  );
+
diff --git a/lib/extra/gui/low_level/g_elevator.li b/lib/extra/gui/low_level/g_elevator.li
new file mode 100644
index 0000000..74ebf34
--- /dev/null
+++ b/lib/extra/gui/low_level/g_elevator.li
@@ -0,0 +1,321 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := G_ELEVATOR;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+      
+  - author  := "Sonntag Benoit (bsonntag at loria.fr)";
+  - comment := "Output text for GUI.";
+
+Section Inherit  
+
+  + parent_area:Expanded AREA;
+  
+  + parent_g_expr:Expanded G_EXPR;
+          
+Section Public
+  
+  + win_in:G_WIN_IN_INTERN;
+  
+  + position:INTEGER;
+  
+  + stat:INTEGER_8;
+  
+Section G_ELEVATOR  
+  
+  - win_size:INTEGER <-
+  ( + result:INTEGER;
+    
+    (is_horizontal).if {
+      result := win_in.width_min.max (width - 2);
+    } else {
+      result := win_in.height_min.max (height - 2);
+    };
+    result
+  );
+    
+  - elevator_size:INTEGER <-
+  ( + result:INTEGER;
+    
+    (is_horizontal).if {
+      result := width - 2;      
+    } else {
+      result := height - 2;
+    };
+    result
+  );
+  
+  - cursor_begin:INTEGER <-  
+  ( + result:INTEGER;
+    + len_ele,len_win,pos:INTEGER;
+    
+    len_ele := elevator_size;
+    len_win := win_size;
+    pos := - position;
+    result := `(int)(((float)@len_ele / @len_win) * @pos)`:INTEGER + 1;
+    result
+  );
+  
+  - cursor_size:INTEGER <-
+  ( + result:INTEGER;
+    + len_ele,len_win:INTEGER;
+    
+    len_ele := elevator_size;
+    len_win := win_size;
+    result := (`(int)(((float)@len_ele / @len_win) * @len_ele)`:INTEGER).min len_ele;
+    result
+  );
+  
+Section Public
+  
+  //
+  // Width / Height
+  //
+  
+  - width_min:INTEGER  := 16;
+    
+  - height_min:INTEGER := 16;
+    
+  - width_max:INTEGER <-
+  ( + result:INTEGER;
+    
+    (is_vertical).if {
+      result := 8;
+    } else {
+      result := parent_g_expr.width_max;
+    };
+    result
+  );
+  
+  - height_max:INTEGER <-
+  ( + result:INTEGER;
+    
+    (is_horizontal).if {
+      result := 8;
+    } else {
+      result := parent_g_expr.height_max;
+    };
+    result
+  );
+  
+  //
+  // Creation.
+  //
+  
+  - create_horizontal w:G_WIN_IN_INTERN :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make w attribute horizontal_bit;
+    result
+  );
+  
+  - create_vertical w:G_WIN_IN_INTERN :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make w attribute vertical_bit;
+    result
+  );
+    
+  - make w:G_WIN_IN_INTERN attribute a:UINTEGER_8 <-
+  (
+    win_in := w;
+    set_attribute_bit a;
+  ); 
+
+  //
+  // Update position.
+  //
+  
+  - set_position rac:AREA at (x,y:INTEGER) size (w,h:INTEGER) <-
+  ( 
+    update rac from (x,y) size (w,h);
+  );
+  
+  //
+  // Action.
+  // 
+  
+  - set_min <-
+  ( 
+    ((parent != NULL) && {position != 0}).if {
+      position := 0;
+      win_in.update_intern;
+      refresh;
+    };
+  );
+
+  - set_max <-
+  ( + mx:INTEGER;
+    
+    mx := elevator_size - win_size;
+    ((parent != NULL) && {position != mx}).if {
+      position := mx;
+      win_in.update_intern;
+      refresh;
+    };
+  );
+  
+  - receive msg:EVENT <-
+  // 0000 : Nothing.
+  // 0001 : In.
+  // 0010 : Up page.
+  // 0100 : Down pages.
+  // 1000 : Cursor move.
+  ( + mouse:EVENT_MOUSE;
+    + win:AREA;    
+    + new_stat:INTEGER;
+    + is_action:BOOLEAN;
+    + py1,py2,old_cursor,new_cursor:INTEGER;
+    + mouse_d,mouse_p:INTEGER;
+    + is_refresh:BOOLEAN;
+    //
+    + ele_siz,win_siz:INTEGER;
+    
+    mouse ?= msg;
+    (mouse != NULL).if {
+      win := DESK.get_object ((mouse.x_current),(mouse.y_current));
+      (is_vertical).if {
+	mouse_d := mouse.dy;
+	mouse_p := mouse.y_current - y_window;
+      } else {
+	mouse_d := mouse.dx;
+	mouse_p := mouse.x_current - x_window;
+      };
+      ((stat & 1110b) = 0).if {
+	// No press.
+	(win != Self).if {
+	  new_stat := 0;	  	  
+	  DESK.receive msg;	  
+	} else {	  
+	  (mouse.left).if {	     
+	    py1 := cursor_begin;
+	    py2 := py1 + cursor_size;
+	    new_stat := (
+	      ((mouse_p < py1).to_integer.to_integer << 1) |
+	      ((mouse_p > py2).to_integer.to_integer << 2)
+	    );	    
+	    (new_stat = 0).if {
+	      // Moving.
+	      new_stat := 1000b;
+	    } else {
+	      is_action := TRUE;
+	    };	  
+	  };
+	  new_stat := new_stat | 0001b;
+	};
+      } else {
+	// Press.
+	(mouse.left).if {
+	  new_stat  := stat;
+	  is_action := TRUE;
+	} else {
+	  (win != Self).if {
+	    new_stat := 0;
+	    DESK.receive msg;
+	  };
+	};
+      };
+      (stat != new_stat).if {
+	stat := new_stat;
+	is_refresh := TRUE;
+      };
+      (is_action).if {
+	new_cursor := old_cursor := position;	
+	ele_siz := elevator_size;
+	win_siz := win_size;
+	/*
+	(((stat & 0010b) != 0) && {old_cursor != 0}).if {	  
+	  // Page Up
+	  new_cursor := (old_cursor - length_mini).max 0;
+	};
+	(((stat & 0100b) != 0) && {old_cursor < (length - length_mini)}).if {
+	  // Page Down
+	  new_cursor := (old_cursor + length_mini).min (length - length_mini);
+	};
+	*/
+	(((stat & 1000b) != 0) && {mouse_d != 0}).if {	  
+	  // Move.
+	  new_cursor := old_cursor - `(int)(((float)@win_siz / @ele_siz) * @mouse_d)`:INTEGER;
+	  new_cursor := new_cursor.min 0.max (ele_siz - win_siz);
+	};
+	(new_cursor != old_cursor).if {	  
+	  position := new_cursor;
+	  win_in.update_intern;
+	  is_refresh := TRUE;
+	};
+      };
+      (is_refresh).if {
+	refresh;
+      };      
+    };
+  );
+  
+  //
+  // Display.
+  //
+  
+  - draw (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  ( + pos_beg,pos_end:INTEGER;
+        
+    clipping (x0,y0) to (x1,y1);    
+    //    
+    draw_border_in (x_min,y_min) to (x_max,y_max);
+    pos_beg := cursor_begin;
+    pos_end := pos_beg + cursor_size;            
+    (is_vertical).if {
+      // Vertical.      
+      draw_border_out (1,pos_beg) to (x_max-1,pos_end);
+      rectangle_fill (2,pos_beg+1) to (x_max-2,pos_end-1) color color_back_light;
+      (pos_beg > 1).if {
+	rectangle_fill (1,1) to (x_max-1,pos_beg-1) color color_back;
+      };
+      (pos_end < y_max-1).if {
+	rectangle_fill (1,pos_end+1) to (x_max-1,y_max-1) color color_back;
+      };
+    } else {
+      // Horizontal
+      draw_border_out (pos_beg,1) to (pos_end,y_max-1);
+      rectangle_fill (pos_beg+1,2) to (pos_end-1,y_max-2) color color_back_light;
+      (pos_beg > 1).if {
+	rectangle_fill (1,1) to (pos_beg-1,y_max-1) color color_back;
+      };
+      (pos_end < x_max-1).if {
+	rectangle_fill (pos_end+1,1) to (x_max-1,y_max-1) color color_back;
+      };      
+    };
+  );
+  
+  //
+  // Area.
+  //
+  
+  - delete <-
+  (
+    (parent != NULL).if {
+      parent_area.delete;
+    };
+  );
+  
\ No newline at end of file
diff --git a/lib/extra/gui/low_level/g_expr.li b/lib/extra/gui/low_level/g_expr.li
new file mode 100644
index 0000000..a51dd2f
--- /dev/null
+++ b/lib/extra/gui/low_level/g_expr.li
@@ -0,0 +1,181 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := G_EXPR;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "Frame representation base";
+    
+  - author      := "Benoit Sonntag (bsonntag at loria.fr)";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  + attribute:UINTEGER_8;
+  
+  - fix_width_bit :UINTEGER_8 := 0001b;
+  - fix_height_bit:UINTEGER_8 := 0010b;
+  
+  - horizontal_bit:UINTEGER_8 := 0100b;
+  - vertical_bit  :UINTEGER_8 := 1000b; 
+  
+  - is_fix_width:BOOLEAN  <- (attribute & fix_width_bit ) != 0;
+  - is_fix_height:BOOLEAN <- (attribute & fix_height_bit) != 0;
+  
+  - is_horizontal:BOOLEAN <- (attribute & horizontal_bit) != 0;
+  - is_vertical  :BOOLEAN <- (attribute & vertical_bit  ) != 0;
+  
+  - set_attribute_bit flag:UINTEGER_8 <-
+  (
+    attribute := attribute | flag;
+  );
+  
+  - fix_width:SELF <-
+  (
+    set_attribute_bit fix_width_bit;
+    Self
+  );
+  
+  - fix_height:SELF <-
+  (
+    set_attribute_bit fix_height_bit;
+    Self
+  );
+  
+  //
+  // Dimension.
+  //  
+  
+  - width_min:INTEGER <-
+  (
+    deferred;
+    0
+  )
+  [
+    +? {Result >= 0};
+  ];
+  
+  - height_min:INTEGER <-
+  (
+    deferred;
+    0
+  )
+  [
+    +? {Result >= 0};
+  ];
+  
+  - width_max:INTEGER <-
+  ( + result:INTEGER;
+    
+    (is_fix_width).if {
+      result := width_min;
+    } else {
+      result := 100_000;
+    };
+    result
+  )
+  [
+    +? {Result >= width_min};
+  ];
+  
+  - height_max:INTEGER <-
+  ( + result:INTEGER;
+    
+    (is_fix_height).if {
+      result := height_min;
+    } else {
+      result := 100_000;
+    };
+    result
+  )
+  [
+    +? {Result >= height_min};
+  ];
+  
+  //
+  // Operator position.
+  //
+    
+  - Self:SELF '|' Right 40 other:G_EXPR :G_EXPR <-
+  ( 
+    G_OR_EXPR.create Self and other
+  );
+
+  - Self:SELF '/' Right 40 other:G_EXPR :G_EXPR <-
+  ( 
+    G_DIV_EXPR.create Self and other
+  );
+  
+  //
+  // Update position.
+  //
+  
+  - set_position rac:AREA at (x,y:INTEGER) size (w,h:INTEGER) <-
+  [
+    -? {w >= width_min};
+    -? {h >= height_min};
+  ]
+  (
+    deferred;
+  );
+  
+  - refresh <- deferred;
+    
+  //
+  // Style...
+  //
+  
+  - color_dark:UINTEGER_32      := 01E527Fh;
+  - color_light:UINTEGER_32     := 0D0E1EFh;
+  
+  - color_back:UINTEGER_32      := 083AAD3h;  
+  - color_back_light:UINTEGER_32:= color_back + 101010h;  
+
+  - draw_border_in (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  (
+    color color_dark;
+    move_to (x0,y1);
+    line_v_until y0;
+    line_h_until x1;
+    color color_light;
+    line_v_until y1;
+    line_h_until x0;
+  );
+  
+  - draw_border_out (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  (
+    color color_light;
+    move_to (x0,y1);
+    line_v_until y0;
+    line_h_until x1;
+    color color_dark;
+    line_v_until y1;
+    line_h_until x0;
+  );
+
+  
+  
\ No newline at end of file
diff --git a/lib/extra/gui/low_level/g_group.li b/lib/extra/gui/low_level/g_group.li
new file mode 100644
index 0000000..e373f58
--- /dev/null
+++ b/lib/extra/gui/low_level/g_group.li
@@ -0,0 +1,113 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := G_GROUP;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+      
+  - author  := "Sonntag Benoit (bsonntag at loria.fr)";
+  - comment := "Group elements for GUI.";
+
+Section Inherit  
+
+  + parent_area:Expanded AREA;
+  
+  + parent_g_expr:Expanded G_EXPR;
+          
+Section Public
+  
+  + root:G_EXPR;
+  
+  //
+  // Width / Height
+  //
+  
+  - predict_size (w,h:INTEGER) :(INTEGER,INTEGER) <-
+  (
+    w, h
+  );
+  
+  - width_min:INTEGER  <- root.width_min;
+  
+  - height_min:INTEGER <- root.height_min;
+    
+  //
+  // Creation.
+  //
+  
+  - create elt:G_EXPR :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make elt;
+    result
+  );
+  
+  - make elt:G_EXPR <-
+  (
+    root := elt;    
+  ); 
+   
+  //
+  // Update position.
+  //
+  
+  - set_position rac:AREA at (x,y:INTEGER) <-
+  (
+    set_position rac at (x,y) size (width_min,height_min);
+  );
+
+  - set_position rac:AREA at (x,y:INTEGER) size (w,h:INTEGER) <-
+  (
+    update rac from (x,y) size (w,h);
+    root.set_position Self at (0,0) size (w,h);
+  );
+  
+  //
+  // Display.
+  //
+  
+  - draw (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  (    
+    draw_slave Self from (x0,y0) to (x1,y1);    
+  );
+  
+  - draw_slave bmp:ABSTRACT_BITMAP from (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  (
+    deferred;
+  );
+  
+  - refresh <-
+  (
+    parent_area.refresh;
+    (root != NULL).if {
+      root.refresh;
+    };
+  );
+  
+  - delete <-
+  (
+    parent_area.delete;
+    DESK.set_focus DESK;
+  );
+  
diff --git a/lib/extra/gui/low_level/g_or_expr.li b/lib/extra/gui/low_level/g_or_expr.li
new file mode 100644
index 0000000..f6cbaff
--- /dev/null
+++ b/lib/extra/gui/low_level/g_or_expr.li
@@ -0,0 +1,119 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := G_OR_EXPR;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "Frame representation base";
+    
+  - author      := "Benoit Sonntag (bsonntag at loria.fr)";
+  
+Section Inherit
+  
+  + parent_g_binary_expr:Expanded G_BINARY_EXPR;
+  
+Section Public
+
+  - make l:G_EXPR and r:G_EXPR <-
+  (
+    left  := l;
+    right := r;    
+    left .set_attribute_bit horizontal_bit; 
+    right.set_attribute_bit horizontal_bit;
+  );
+
+  //
+  // Size.
+  //
+  
+  - predict_size (lw,lh:INTEGER) and (rw,rh:INTEGER) :(INTEGER,INTEGER) <-
+  (
+    lw + rw, lh.max rh
+  );
+  
+  - width_min:INTEGER <-
+  (
+    left.width_min + right.width_min
+  );
+  
+  - height_min:INTEGER <-
+  (
+    left.height_min.max (right.height_min)
+  );
+    
+  - width_max:INTEGER <- 
+  ( + result:INTEGER;
+    
+    (is_fix_width).if {
+      result := width_min;
+    } else {
+      result := left.width_max + right.width_max;
+    };
+    result
+  );
+  
+  - height_max:INTEGER <- 
+  ( + result:INTEGER;
+    
+    (is_fix_height).if {
+      result := height_min;
+    } else {
+      result := left.height_max.max (right.height_max);
+    };
+    result
+  );
+  
+  //
+  // Update position.
+  //
+  
+  - set_position rac:AREA at (x,y:INTEGER) size (w,h:INTEGER) <-
+  ( + w_min:INTEGER;
+    + w_left,w_left_min,w_left_max:INTEGER;
+    + w_right,w_right_max:INTEGER;
+    
+    w_min  := width_min;
+    //
+    w_left_min := left.width_min;
+    w_left_max := left.width_max;
+    //
+    w_right_max := right.width_max;
+    //    
+    w_left := `(int)(((float)@w) / @w_min * @w_left_min)`:INTEGER; // BSBS: REAL !!!
+    w_right := w - w_left;
+    //
+    (w_right > w_right_max).if {
+      w_right := w_right_max;
+      w_left  := (w - w_right).min w_left_max;      
+    }.elseif {w_left > w_left_max} then {
+      w_left := w_left_max;
+      w_right := (w - w_left).min w_right_max;      
+    };
+    //
+    left .set_position rac at (x,y)        size (w_left ,h.min (left.height_max));
+    right.set_position rac at (x+w_left,y) size (w_right,h.min (right.height_max));
+  );
+  
+
+  
\ No newline at end of file
diff --git a/lib/extra/gui/low_level/g_win_in_intern.li b/lib/extra/gui/low_level/g_win_in_intern.li
new file mode 100644
index 0000000..7baa4ec
--- /dev/null
+++ b/lib/extra/gui/low_level/g_win_in_intern.li
@@ -0,0 +1,127 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := G_WIN_IN_INTERN;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+      
+  - author  := "Sonntag Benoit (bsonntag at loria.fr)";
+  - comment := "For G_WIN_IN.";
+
+Section Inherit  
+
+  + parent_g_group:Expanded G_GROUP;
+            
+Section Public
+    
+  + elevator_v:G_ELEVATOR;
+  
+  + elevator_h:G_ELEVATOR;
+  
+  //
+  // Creation.
+  //
+  
+  - make elt:G_EXPR <-
+  (
+    root := elt;  
+    elevator_h := G_ELEVATOR.create_horizontal Self;
+    elevator_v := G_ELEVATOR.create_vertical Self;
+  );
+  
+  //
+  // Fix position.
+  //
+  
+  - set_top <- 
+  (
+    elevator_v.set_min;
+  );
+    
+  - set_bottom <- 
+  (
+    elevator_v.set_max;
+  );
+    
+  - set_right <-
+  (
+    elevator_h.set_min;
+  );
+
+  - set_left <-
+  (
+    elevator_h.set_max;
+  );
+  
+  //
+  // Update position.
+  //
+  
+  - set_position rac:AREA at (x,y:INTEGER) size (w,h:INTEGER) <-
+  [ 
+    // Nothing.
+  ]
+  ( + new_w,new_h:INTEGER;
+            
+    (w < root.width_min).if {
+      new_h := h - elevator_h.height_min;
+    } else {
+      new_h := h;
+    };
+    (h < root.height_min).if {
+      new_w := w - elevator_v.width_min;
+    } else {
+      new_w := w;
+    };    
+    (new_w != w).if {
+      elevator_v.update rac from (x + new_w,y) size (elevator_v.width_min,new_h);
+    } else {
+      elevator_v.delete;
+    };
+    (new_h != h).if {
+      elevator_h.update rac from (x,y + new_h) size (new_w,elevator_v.height_min);
+    } else {
+      elevator_h.delete;
+    };      
+    update rac from (x,y) size (new_w,new_h);    
+    update_intern;
+  );
+  
+  - update_intern <-
+  ( + wn,hn:INTEGER;
+    
+    wn := (root.width_min.max width).min (root.width_max);
+    hn := (root.height_min.max height).min (root.height_max);
+    root.set_position Self at (elevator_h.position,elevator_v.position) 
+    size (wn,hn);
+  );
+  
+  //
+  // Display.
+  //
+  
+  - draw_slave bmp:ABSTRACT_BITMAP from (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  (
+    bmp.rectangle_fill (x0,y0) to (x1,y1) color color_back;
+  );
+  
diff --git a/lib/extra/gui/low_level/inbox.li b/lib/extra/gui/low_level/inbox.li
new file mode 100644
index 0000000..8661d77
--- /dev/null
+++ b/lib/extra/gui/low_level/inbox.li
@@ -0,0 +1,72 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := INBOX;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Sonntag Benoit (bsonntag at loria.fr)";
+  - comment     :="Message.";
+
+  - version :=1;  
+  - date    :="2003/04";
+  
+Section Inherit  
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Private  
+  
+  - gui_buffer_event:FAST_ARRAY(EVENT_GUI) := 
+  ( + result:FAST_ARRAY(EVENT_GUI);
+    + new_evt:EVENT_GUI;
+    
+    result := FAST_ARRAY(EVENT_GUI).create 16; 
+    0.to 15 do { j:INTEGER;
+      new_evt := EVENT_GUI.clone;
+      result.put new_evt to j;
+    };
+    result
+  );
+  
+  - gui_p_beg:UINTEGER_8;  // Pointer on the buffer (beginning)
+  - gui_p_end:UINTEGER_8;  // Pointer on the buffer (end)
+  
+Section Public
+  
+  - receive msg:EVENT <-
+  (
+    // Nothing.
+  );
+
+  - send dst:INBOX <-
+  ( + tmp:UINTEGER_8;
+    tmp:=(gui_p_end+1) & 0Fh;
+    (tmp != gui_p_beg).if {
+      gui_buffer_event.item gui_p_end.make Self at dst;
+      gui_p_end:=tmp;
+      dst.receive (gui_buffer_event.item gui_p_beg);
+      gui_p_beg := (gui_p_beg+1) & 0Fh;
+    };
+  );
diff --git a/lib/extra/gui/low_level/virtual_screen.li b/lib/extra/gui/low_level/virtual_screen.li
new file mode 100644
index 0000000..e431f11
--- /dev/null
+++ b/lib/extra/gui/low_level/virtual_screen.li
@@ -0,0 +1,98 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := VIRTUAL_SCREEN;
+
+  - copyright   := "2003-2008 Benoit Sonntag";
+    
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Sonntag Benoit (bsonntag at loria.fr)";
+  - comment     :="Virtual screen.";
+
+  - version := 1;  
+  
+Section Inherit  
+  
+  + parent_area:Expanded AREA;
+        
+Section Public
+  
+  + scale_width:INTEGER;
+  + scale_height:INTEGER;
+  
+  + desk:DESK;
+  
+  - create d:DESK scale (w,h:INTEGER) :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make d scale (w,h);
+    result    
+  );
+    
+  - make d:DESK scale (w,h:INTEGER) <-
+  ( 
+    desk := d;
+    scale_width  := w;
+    scale_height := h;
+    make d from (0,0) size (d.width*w,d.height*h);
+  );
+  
+  //
+  // Display.
+  //
+
+  - slave_pixel_hard (x,y:INTEGER) color col:UINTEGER_32 <- 
+  ( 
+    pixel_hard (x,y) color col;
+  );
+  
+  - slave_line_h_hard (x1,y:INTEGER) until x2:INTEGER color col:UINTEGER_32 <- 
+  ( 
+    line_h_hard (x1,y) until x2 color col;
+  );  
+  
+  - slave_line_h_hard (x1,y:INTEGER) until x2:INTEGER 
+  image line:ABSTRACT_BMP_LINE offset ofs:INTEGER <-
+  ( 
+    line_h_hard (x1,y) until x2 image line offset ofs;
+  );
+  
+  - get_object (x,y:INTEGER) :AREA <-
+  ( + result:AREA;
+    result := parent_area.get_object (x,y);
+    (result = Self).if {
+      result := NULL;
+    };
+    result
+  );
+  
+  //
+  // Resize
+  //    
+  
+  - update_size <-
+  (    
+    resize (scale_width * desk.width,scale_height * desk.height);
+  );
+  
+  
\ No newline at end of file
diff --git a/lib/extra/gui/old/group_in/grp_tree.li b/lib/extra/gui/old/group_in/grp_tree.li
new file mode 100644
index 0000000..c4c4de4
--- /dev/null
+++ b/lib/extra/gui/old/group_in/grp_tree.li
@@ -0,0 +1,287 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := GRP_TREE;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Tree representation";
+  
+Section Inherit
+  
+  + parent_gui:Expanded GUI;
+  
+Section Public
+  
+  + root_item:GUI_ITEM;  
+  
+  + area_intern:GUI_INTERN;
+  
+  - bmp_tree:AREA <- area_intern.area;
+  
+  //
+  // Creation
+  //
+  
+  - create_in f:AREA at (x,y:INTEGER) size (w,h:INTEGER) with itm:GUI_ITEM :SELF <- 
+  ( + result:SELF;
+    
+    result := clone;
+    result.make_in f at (x,y) size (w,h) with itm;
+    result
+  );
+
+  - make_in f:AREA at (x,y:INTEGER) size (w,h:INTEGER) with itm:GUI_ITEM <-
+  (
+    root_item := itm;
+    make_in f at (x,y) size (w,h) action Self;
+    // Clipping intern:
+    area_intern := GUI_INTERN.create_in Self at (1,1) size ((w-2),(h-2));
+    set_position itm; 
+    update_position;
+    refresh;
+  );
+  
+  //
+  // Line manager.
+  //
+
+  - set_position rac:GUI_ITEM <-
+  ( + grp:ITM_GROUP;
+            
+    grp ?= rac;
+    (grp = NULL).if {
+      rac.make bmp_tree from ((-rac.width_min-1),0) size ((rac.width_min),(rac.height_min));     
+    } else {
+      set_position (grp.itm_left);
+      set_position (grp.itm_right);
+    };    
+  );
+
+  //
+  // Display.
+  //
+  
+  - draw (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  ( + xx0,yy0,xx1,yy1:INTEGER;
+    
+    clipping (x0,y0) to (x1,y1);    
+    border_in (x_min,y_min) to (x_max,y_max);
+    (area_intern != NULL).if {  
+      xx0 := x0 + x_window - bmp_tree.x_window;
+      yy0 := y0 + y_window - bmp_tree.y_window;
+      xx1 := x1 + x_window - bmp_tree.x_window;
+      yy1 := y1 + y_window - bmp_tree.y_window;            
+      //xx0.print; ','.print; yy0.print; '-'.print;
+      //xx1.print; ','.print; yy1.print; '\n'.print;
+      bmp_tree.clipping (xx0,yy0) to (xx1,yy1);      
+      bmp_tree.rectangle_fill (0,0) to ((bmp_tree.x_max),(bmp_tree.y_max)) color color_back_light;      
+      sub_draw root_item at (2,2);
+    };
+  );
+  
+Section Private  
+  
+  - sub_draw rac:GUI_ITEM at (x,y:INTEGER) :INTEGER <-
+  ( + grp:ITM_GROUP;
+    + itm:GUI_ITEM;
+    + new_y,old_y:INTEGER;
+    + is_open:BOOLEAN;
+    
+    grp ?= rac;
+    (grp = NULL).if {      
+      new_y := y + rac.height_min;      
+    } else {
+      is_open := grp.operator = '|';
+      node (x,(y+3)) stat is_open;
+      old_y := y+3+9;
+      new_y := sub_draw (grp.itm_left) at ((x+16),y);      
+      (is_open).if {
+	itm := grp.itm_right;
+	grp ?= itm;
+	{(grp != NULL) && {is_open}}.while_do {
+	  bmp_tree.line_v ((x+4),old_y) until (new_y-1+3) color red; 
+	  is_open := grp.operator = '|';
+	  node (x,(new_y+3)) stat is_open;
+	  old_y := new_y+3+9;
+	  new_y := sub_draw (grp.itm_left) at ((x+16),new_y);
+	  itm := grp.itm_right;
+	  grp ?= itm;
+	};
+	(is_open).if {
+	  bmp_tree.line_v ((x+4),old_y) until (new_y+8) color red;       
+	  bmp_tree.line_h_until (x+15) color red;      
+	  new_y := sub_draw itm at ((x+16),new_y);
+	};
+      };
+    };
+    new_y
+  );
+  
+  - node (x,y:INTEGER) stat is_open:BOOLEAN <-
+  (
+    bmp_tree.rectangle_fill ((x+1),(y+1)) to ((x+7),(y+7)) color white;
+    bmp_tree.rectangle (x,y) to ((x+8),(y+8)) color black;    
+    bmp_tree.line_h ((x+2),(y+4)) until (x+6); 
+    (is_open).if_false {
+      bmp_tree.line_v ((x+4),(y+2)) until (y+6); 
+    };
+    bmp_tree.line_h ((x+9),(y+4)) until (x+15) color red;
+  );
+  
+Section Public
+      
+  //
+  // Event.
+  //  
+
+  - receive msg:EVENT <-  
+  ( + evt_mouse:EVENT_MOUSE;
+    + win:AREA;    
+    
+    
+    evt_mouse ?= msg;
+    (evt_mouse != NULL).if { 
+      (evt_mouse.destination = bmp_tree).if {
+	(evt_mouse.left_up).if {
+	  last_group := NULL;
+	  get_group root_item at (2,2) to ((evt_mouse.x_relative),(evt_mouse.y_relative));
+	  (last_group != NULL).if {	    
+	    (last_group.operator = '|').if {
+	      last_group.set_operator '/';
+	      close_group (last_group.itm_right);
+	    } else {
+	      last_group.set_operator '|';	      
+	    };
+	    update_position;
+	    refresh;
+	  };
+	};
+      };
+      win := INTERFACE.get_object ((evt_mouse.x_current),(evt_mouse.y_current));
+      (win != Self).if {
+	INTERFACE.receive msg;
+      };
+    };    
+  );
+  
+  + bmp_width_max:INTEGER;
+  
+  - update_position <-
+  ( + h,w:INTEGER;
+    
+    bmp_width_max := 0;
+    h := open_group root_item at (2,2) + 2;
+    w := bmp_width_max;
+    ((h != bmp_tree.height) || {w != bmp_tree.width}).if {
+      area_intern.resize_area (w,h);     
+    };
+  );
+  
+  - open_group rac:GUI_ITEM at (x,y:INTEGER) :INTEGER <-
+  ( + grp:ITM_GROUP;
+    + itm:GUI_ITEM;
+    + new_y,old_y,w:INTEGER;
+    + is_open:BOOLEAN;
+    
+    grp ?= rac;
+    (grp = NULL).if {      
+      new_y := y + rac.height_min;
+      rac.set_position (x,y);
+      w := x + rac.width + 2;
+      (bmp_width_max < w).if {
+	bmp_width_max := w;
+      };
+    } else {
+      is_open := grp.operator = '|';      
+      old_y := y+3+9;
+      new_y := open_group (grp.itm_left) at ((x+16),y);      
+      (is_open).if {
+	itm := grp.itm_right;
+	grp ?= itm;
+	{(grp != NULL) && {is_open}}.while_do {	  
+	  is_open := grp.operator = '|';	  
+	  old_y := new_y+3+9;
+	  new_y := open_group (grp.itm_left) at ((x+16),new_y);
+	  itm := grp.itm_right;
+	  grp ?= itm;
+	};
+	(is_open).if {
+	  new_y := open_group itm at ((x+16),new_y);
+	};
+      };
+    };
+    new_y
+  );  
+  
+  - close_group rac:GUI_ITEM <-
+  ( + grp:ITM_GROUP;
+    grp ?= rac;
+    (grp = NULL).if {
+      rac.set_position ((-rac.width_min-1),0);
+    } else {
+      close_group (grp.itm_left );
+      close_group (grp.itm_right);
+    };
+  );
+  
+  - last_group:ITM_GROUP;
+  
+  - get_group rac:GUI_ITEM at (x,y:INTEGER) to (px,py:INTEGER) :INTEGER <-
+  ( + grp:ITM_GROUP;
+    + itm:GUI_ITEM;
+    + new_y,old_y:INTEGER;
+    + is_open:BOOLEAN;
+    
+    (y < py).if {    
+      grp ?= rac;
+      (grp = NULL).if {      
+	new_y := y + rac.height_min;      
+      } else {
+	is_open := grp.operator = '|';      
+	((px.in_range x to (x+8)) && {py.in_range (y+3) to (y+12)}).if {
+	  last_group := grp;
+	};
+	old_y := y+3+9;
+	new_y := get_group (grp.itm_left) at ((x+16),y) to (px,py);
+	(is_open).if {
+	  itm := grp.itm_right;
+	  grp ?= itm;
+	  {(grp != NULL) && {is_open} && {last_group=NULL}}.while_do {	  
+	    is_open := grp.operator = '|';	  
+	    ((px.in_range x to (x+8)) && {py.in_range (new_y+3) to (new_y+12)}).if {
+	      last_group := grp;
+	    };
+	    old_y := new_y+3+9;
+	    new_y := get_group (grp.itm_left) at ((x+16),new_y) to (px,py);
+	    itm := grp.itm_right;
+	    grp ?= itm;
+	  };
+	  (is_open).if {	  
+	    new_y := get_group itm at ((x+16),new_y) to (px,py);
+	  };
+	};
+      };
+    };
+    new_y
+  );
diff --git a/lib/extra/gui/old/label/lab_key.li b/lib/extra/gui/old/label/lab_key.li
new file mode 100644
index 0000000..78b2165
--- /dev/null
+++ b/lib/extra/gui/old/label/lab_key.li
@@ -0,0 +1,69 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := LAB_KEY;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "Label Key.";
+  
+Section Inherit
+  
+  + parent_g_label:Expanded GUI_LABEL;
+  
+Section Public
+  
+  + key:UINTEGER_16;
+  
+  //
+  // Creation.
+  //
+  
+  - create k:UINTEGER_16 :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make k;
+    result
+  );
+  
+  - make k:UINTEGER_16 <-
+  (    
+    key := k;
+    name := KEYBOARD.key_to_string k;
+  );
+    
+Section GUI_LABEL
+  
+  - my_width_min :INTEGER <- BITMAP(PIXEL_32).font_width name + 1;
+  
+  - my_height_min:INTEGER <- 17;
+  
+  - my_display_in bmp:GUI_ITEM to (x,y:INTEGER) <- 
+  ( + px:INTEGER;
+    bmp.rectangle_fill (x,y) to ((x + my_width_min-1),(y + my_height_min-1)) color (bmp.rgbbackcolor); 
+    bmp.color (bmp.blue);
+    px := bmp.width - my_width_min;
+    bmp.print name to (px,y);
+  );
+
diff --git a/lib/extra/gui_automatic/action.li b/lib/extra/gui_automatic/action.li
new file mode 100644
index 0000000..62ee3a2
--- /dev/null
+++ b/lib/extra/gui_automatic/action.li
@@ -0,0 +1,97 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := ACTION;
+
+  - copyright := "Jonathan Ponte, Maxime Audrin, Benoit Sonntag";
+
+  - comment   := "Tool bar for GUII.";
+  
+Section Inherit
+  
+  - parent_internal_inode:INTERNAL_INODE := INTERNAL_INODE;
+  
+Section Public
+  
+  - representation:STRING_CONSTANT := "ACTION";
+
+  - print <-
+  (
+    "ACTION".print;
+  );
+
+  - make_representation <-
+  [? {list.is_empty}; ]
+  (
+    (bitmap=NULL).if {
+      content:=(G_BUTTON.create (G_OUT.create name) action action);
+    } else {
+      content:=(G_BUTTON.create (G_IMG.create bitmap) action action);
+    };
+  );
+
+  - space_evaluation (w,h:INTEGER) :REAL_32<-
+  [ ? {list.is_empty}; ]
+  (
+    + result:REAL_32;
+    
+    (bitmap=NULL).if {
+      (width,height):=(G_BUTTON.predict_size (G_OUT.predict_size name));
+    } else {
+      (width,height):=(G_BUTTON.predict_size (G_IMG.predict_size bitmap));
+    };
+    //"width: ".print;w.print;'\n'.print;
+    //"height: ".print;h.print;'\n'.print;
+    //"action.width: ".print;width.print;'\n'.print;
+    //"action.height: ".print;height.print;'\n'.print;
+    ((width > w) || {height > h}).if {    
+      result:=0.0;
+    } else {
+      result:=100.0-(get_area_prc (w,h));
+      //"action.get_area: ".print;get_area_prc (w,h).print;'\n'.print;
+    };
+    result
+  )
+  [ ? {Result.in_range 0 to 100}; ];
+
+  - semantic_evaluation (w,h:INTEGER) :BOOLEAN <-
+  (
+    list.is_empty && {operator='^'}
+  );
+
+  - evaluate n:INODE width w:INTEGER height h:INTEGER : REAL_32 <-
+  (
+    + result:REAL_32;
+
+    n.set_representation ACTION;
+
+    //"ACTION semantic evaluation of ".print;n.name.print;"\n".print;
+    (n.semantic_evaluation (w,h)).if {
+      //"ACTION space evaluation of ".print;n.name.print;"\n".print;
+      result:=n.space_evaluation (w,h);
+    } else {
+       result:=0.0;
+    };
+    //"ACTION result for ".print;n.name.print;"= ".print;result.print;"%\n".print;
+    result
+  )
+  [ ? {Result.in_range 0 to 100}; ];
\ No newline at end of file
diff --git a/lib/extra/gui_automatic/check.li b/lib/extra/gui_automatic/check.li
new file mode 100644
index 0000000..fe57644
--- /dev/null
+++ b/lib/extra/gui_automatic/check.li
@@ -0,0 +1,96 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := CHECK;
+
+  - copyright := "Jonathan Ponte, Maxime Audrin, Benoit Sonntag";
+
+  - comment   := "Check button for GUII.";
+  
+Section Inherit
+  
+  - parent_internal_inode:INTERNAL_INODE := INTERNAL_INODE;
+  
+Section Public
+  
+  - representation:STRING_CONSTANT := "CHECK";
+
+  - print <-
+  (
+    "CHECK".print;
+  );
+
+  - make_representation <-
+  [? {list.is_empty}; ]
+  (
+    content:=(G_CHECK.create (G_OUT.create name)).fix_height.fix_width;
+    width:=content.width_min;
+    height:=content.height_min;
+  );
+
+//
+// Evaluation.
+//
+
+  //A check bouton can be apply only if it is a leaf
+  - semantic_evaluation (w,h:INTEGER) :BOOLEAN<-
+  (
+    //faire une vérification sur l'opérateur? check_button = opérateur 'ou'?
+    (list.is_empty) && {operator='|'}
+  );
+
+  - space_evaluation (w,h:INTEGER) :REAL_32<-
+  [ ? {list.is_empty}; ]
+  (
+    + result:REAL_32;
+
+    (width,height):=(G_CHECK.predict_size (G_OUT.predict_size name));
+    ((width > w) || {height > h}).if {
+      result:=0.0
+    } else {
+      result:=100.0-(get_area_prc (w,h));
+    };
+    result
+  )
+  [ ? {Result.in_range 0 to 100}; ];
+
+
+  - evaluate n:INODE width w:INTEGER height h:INTEGER : REAL_32<-
+  (
+    + result:REAL_32;
+    
+    // changer le parent de n pour pouvoir utiliser les méthodes spécifiques à MENU_BAR
+    n.set_representation CHECK;
+    
+    // Semantic evaluation && Space evaluation.
+    //"CHECK semantic evaluation of ".print;n.name.print;"\n".print;
+    (n.semantic_evaluation (w,h)).if {
+      //"CHECK space evaluation of ".print;n.name.print;"\n".print;
+      result:=n.space_evaluation (w,h);
+    } else {
+       result:=0;
+    };
+    //"CHECK result for ".print;n.name.print;"= ".print;result.print;"%\n".print;
+    result
+  )
+  [ ? {Result.in_range 0 to 100}; ];
+
diff --git a/lib/extra/gui_automatic/dimension.li b/lib/extra/gui_automatic/dimension.li
new file mode 100644
index 0000000..e64c0d2
--- /dev/null
+++ b/lib/extra/gui_automatic/dimension.li
@@ -0,0 +1,87 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := DIMENSION;
+  
+  - copyright := "2003-2008 Sonntag Benoit";
+  
+  - author    := "Sonntag Benoit (sonntag at icps.u-strasbg.fr)";
+  - comment   := "The main prototype";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  +width:INTEGER;
+  +height:INTEGER;
+  +line_height:INTEGER;
+  +pattern:INTERNAL_INODE;
+  +score_sum:REAL_32;
+  +coefficient:INTEGER;
+  
+  
+  //
+  // Creation.
+  //
+  
+  
+  - create (w,h,l:INTEGER) score s:REAL_32 :SELF <-
+  (
+    + result:SELF;
+    result := clone;
+    result.make (w,h,l) score s ;
+    result
+  );
+  
+  - make (w,h,l:INTEGER) score s:REAL_32 <-
+  ( 
+    width:=w;
+    height:=h;
+    score_sum:=s;
+    line_height:=l;
+  );
+  
+  - set_line_height h:INTEGER <-
+  (
+    line_height:=h;
+  );
+  
+  - set_pattern p:INTERNAL_INODE <-
+  (
+    pattern:=p;
+  );
+
+  - add_score score:REAL_32 <-
+  (
+    score_sum:=score_sum+score;
+    coefficient:=coefficient+1;
+  );
+
+  - average :REAL_32 <-
+  (
+    score_sum/coefficient
+  );
+
+
+
diff --git a/lib/extra/gui_automatic/drop_down_menu.li b/lib/extra/gui_automatic/drop_down_menu.li
new file mode 100644
index 0000000..0428ab8
--- /dev/null
+++ b/lib/extra/gui_automatic/drop_down_menu.li
@@ -0,0 +1,158 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := DROP_DOWN_MENU;
+
+  - copyright := "Jonathan Ponte, Maxime Audrin, Benoit Sonntag";
+
+  - comment   := "Drop down menu for GUII.";
+  
+Section Inherit
+
+  - parent_internal_inode:INTERNAL_INODE := INTERNAL_INODE;
+
+Section Public
+
+  - representation:STRING_CONSTANT := "DROP_DOWN_MENU";
+
+  - print <-
+  (
+    "DROP_DOWN_MENU".print;
+  );
+
+  - make_representation <-
+  (
+    +expr:G_EXPR;
+
+    list.foreach {
+      i:INODE;
+
+      (i.priority>covering).if {
+        i.make_representation;
+        (expr=NULL).if {
+          expr:=i.content;
+
+        } else {
+          expr:=expr / i.content;
+        };
+      };
+    };
+    win_out:=(G_WIN_OUT.create expr).fix_height.fix_width;
+    content:=(G_BUTTON.create (G_OUT.create name) connect win_out).fix_height.fix_width;
+  );
+
+  - compute_size_from_prc p:INTEGER <-
+  [ ? {! list.is_empty}; ]
+  (
+    list.foreach {
+      i:INODE;
+      (i.priority > p).if {
+        (width,height):=G_DIV_EXPR.predict_size (width,height) and (G_BUTTON.predict_size (G_OUT.predict_size (i.name)));
+      };
+    };
+    (width,height):=G_WIN_OUT.predict_size (G_RAW.predict_size (width,height));
+  );
+
+//
+// Evaluation.
+//
+
+// A drop down menu can be apply only if sons are leafs
+  - semantic_evaluation (w,h:INTEGER) :BOOLEAN<-
+  (
+    +nb:INTEGER;
+
+    (operator = '|').if {
+      list.foreach {
+        i:INODE;
+
+        (ACTION.evaluate i width screen_width height screen_height > 0).if {
+          nb:=nb+1;
+        };
+      };
+    };
+    nb=list.count
+  );
+
+- space_evaluation (w,h:INTEGER) :REAL_32<-
+  (
+    + area,r,result:REAL_32;
+
+    compute_size_from_prc 0;
+    ((height >= h) || {width >= w}).if {
+      "Priority 0 failed\n".print;
+      compute_size_from_prc 25;
+      ((height >= h) || {width >= w}).if {
+        "Priority 25 failed\n".print;
+        compute_size_from_prc 50;
+        ((height >= h) || {width >= w}).if {
+          "Priority 50 failed\n".print;
+          r:=0;
+          width:=0;
+          height:=0;
+        } else {
+          covering:=50;
+          r:=get_nitem_from_prc 50;
+        };
+      } else {
+        covering:=25;
+        r:=get_nitem_from_prc 25;
+      };
+    } else {
+      covering:=0;
+      r:=list.count;
+    };
+    r:=(r/list.count)*100;
+    (r>0).if {
+      area:=get_area_prc (w,h);
+      name.print;" area := ".print;(get_area_prc (w,h)).print;"\n".print;
+      (r>area).if {
+        result:=r-area;
+      } else {
+        result:=0;
+      };
+    } else {
+      result:=0;
+    };
+    result
+  )
+  [ ? {Result.in_range 0 to 100}; ];
+
+
+- evaluate n:INODE width w:INTEGER height h:INTEGER : REAL_32<-
+  (
+    + result:REAL_32;
+
+    n.set_representation DROP_DOWN_MENU;
+    // Semantic evaluation && Space evaluation.
+    "DROP_DOWN_MENU semantic evaluation of ".print;n.name.print;"\n".print;
+    (n.semantic_evaluation (w,h)).if {
+      //"DROP_DOWN_MENU space evaluation of ".print;n.name.print;"\n".print;
+      result:=n.space_evaluation (w,h);
+    } else {
+       result:=0;
+    };
+    "DROP_DOWN_MENU result for ".print;n.name.print;"= ".print;result.print;"%\n".print;
+    result
+  )
+  [ ? {Result.in_range 0 to 100}; ];
+
diff --git a/lib/extra/gui_automatic/essai_drop_down.li b/lib/extra/gui_automatic/essai_drop_down.li
new file mode 100644
index 0000000..17e0a5d
--- /dev/null
+++ b/lib/extra/gui_automatic/essai_drop_down.li
@@ -0,0 +1,67 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := ESSAI_DROP_DOWN;
+
+  - copyright := "Jonathan Ponte, Maxime Audrin, Benoit Sonntag";
+
+  - comment   := "Interface Node for GUII.";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - main <-
+  (
+    +base:INODE;
+    + guii:GUII;
+    //+ menu_g_expr, tools_g_expr:G_EXPR;
+
+    base := INODE.create_or "Bidon" priority 100 + (
+              INODE.create_or "Drop down menu 1" priority 100 +
+                INODE.create_xor "Choix 1" priority 100 +
+                INODE.create_xor "Choix 2" priority 100 +
+                INODE.create_xor "Choix 3" priority 100 +
+                INODE.create_xor "Choix 4" priority 100 +
+                INODE.create_xor "Choix 5" priority 100
+            )+(
+              INODE.create_or "Drop down menu 2" priority 100 +
+                INODE.create_xor "foo 1" priority 100 +
+                INODE.create_xor "foo 2" priority 100 +
+                INODE.create_xor "foo 3" priority 100 +
+                INODE.create_xor "foo 4" priority 100 +
+                INODE.create_xor "foo 5" priority 100
+            )/*+(
+              INODE.create_xor "Page" priority 100
+            )*/;
+    
+    //
+    // Evaluation.
+    //
+
+    guii:=GUII.create base screen_width 800 screen_height 600;
+    guii.set_depth base from 0;
+    guii.evaluation base;
+    guii.run_interface;
+  );
\ No newline at end of file
diff --git a/lib/extra/gui_automatic/essai_light.li b/lib/extra/gui_automatic/essai_light.li
new file mode 100644
index 0000000..39c652f
--- /dev/null
+++ b/lib/extra/gui_automatic/essai_light.li
@@ -0,0 +1,221 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := ESSAI_LIGHT;
+
+  - copyright := "Jonathan Ponte, Maxime Audrin, Benoit Sonntag";
+
+  - comment   := "Interface Node for GUII.";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - main <-
+  ( + base,menu,tools,page:INODE;
+    + action_new:BLOCK;
+    + action_open:BLOCK;
+    + action_zoom_in:BLOCK;
+    + action_zoom_out:BLOCK;
+    + action_zoom_page:BLOCK;
+    + action_zoom_select:BLOCK;
+    + action_zoom_100:BLOCK;
+    + action_select:BLOCK;
+    + action_line:BLOCK;
+    + action_rectangle:BLOCK;
+    + action_circle:BLOCK;
+    + action_color:BLOCK;
+    + action_text:BLOCK;
+    + action_zoom:BLOCK;
+    + guii:GUII;
+
+    action_select:= {
+      bt:G_BUTTON;
+      "Zoom\n".print;
+   };
+
+    action_zoom:= {
+      bt:G_BUTTON;
+      "Zoom\n".print;
+   };
+
+    action_text:= {
+      bt:G_BUTTON;
+      "Text\n".print;
+   };
+
+    action_line:= {
+      bt:G_BUTTON;
+      "Select\n".print;
+   };
+
+    action_rectangle:= {
+      bt:G_BUTTON;
+      "Select\n".print;
+   };
+
+    action_circle:= {
+      bt:G_BUTTON;
+      "Select\n".print;
+   };
+
+    action_rectangle:= {
+      bt:G_BUTTON;
+      "Open\n".print;
+    };
+
+    action_color:= {
+      bt:G_BUTTON;
+      "New\n".print;
+    };
+
+    action_zoom_in:= {
+      bt:G_BUTTON;
+      "Zoom in\n".print;
+    };
+
+    action_zoom_out:= {
+      bt:G_BUTTON;
+      "Zoom out\n".print;
+    };
+
+    action_zoom_select:= {
+      bt:G_BUTTON;
+      "Zoom select\n".print;
+    };
+
+    action_zoom_page:= {
+      bt:G_BUTTON;
+      "Zoom page\n".print;
+    };
+
+    action_zoom_100:= {
+      bt:G_BUTTON;
+      "Zoom 100\n".print;
+    };
+
+
+	menu := INODE.create_xor "Menu" priority 100 + (
+	INODE.create_xor "File" priority 100 + (
+	  INODE.create_xor "Clear file" priority 100 + 
+	  INODE.create_xor "New" priority 100 action action_new
+	) + (
+	  INODE.create_xor "Intern file" priority 100 + 
+	  INODE.create_xor "Open" priority 100 action action_open +
+	  INODE.create_xor "Save" priority 100 +
+	  INODE.create_xor "Save as" priority 100
+	) + (
+	  INODE.create_xor "Extern file" priority 100 +
+	  INODE.create_xor "Import" priority 100 +
+	  INODE.create_xor "Export" priority 100
+	) + (
+	  INODE.create_xor "Output file" priority 100 +
+	  INODE.create_xor "Print" priority 100 
+	) + (
+	  INODE.create_xor "Exit manager" priority 100 +
+	  INODE.create_xor "EXit" priority 100 
+	)
+      ) + (
+	INODE.create_xor "Edit" priority 100 + (
+	  INODE.create_xor "History" priority 100 +
+	  INODE.create_xor "Undo" priority 100 +
+	  INODE.create_xor "Redo" priority 100
+	) + (
+	  INODE.create_xor "Edit object" priority 100 +
+	  INODE.create_xor "Delete" priority 100 +
+	  INODE.create_xor "Duplicate" priority 100 +
+	  INODE.create_xor "Select all" priority 100
+	)
+      ) + (
+	INODE.create_xor "Presentation" priority 100 + (
+	  INODE.create_xor "Representation" priority 100 + 
+	  INODE.create_xor "Magnetic locate" priority 100 +
+	  INODE.create_xor "Contour" priority 100
+	)
+      ) + (
+	INODE.create_xor "Disposition" priority 50 + (
+	  INODE.create_xor "Modify" priority 100 + 
+	  INODE.create_xor "Text editor" priority 100 + 
+	  INODE.create_xor "Alignment" priority 100 + 
+	  INODE.create_xor "To curve" priority 100
+	) + (
+	  INODE.create_xor "Order" priority 100 + 
+	  INODE.create_xor "First plan" priority 100 + 
+	  INODE.create_xor "Last plan" priority 100
+	) + (
+	  INODE.create_xor "Link" priority 100 + 
+	  INODE.create_xor "Group" priority 100 + 
+	  INODE.create_xor "Degroup" priority 100 + 
+	  INODE.create_xor "Combine" priority 100 + 
+	  INODE.create_xor "Decombine" priority 100 + 
+	  INODE.create_xor "Auto-combine" priority 100  
+	)
+      ) + (
+	INODE.create_xor "Window" priority 50 + (
+	  INODE.create_xor "Display" priority 100 + 
+	  INODE.create_xor "Refresh draw" priority 100
+	)
+      ) + (
+	INODE.create_xor "Help" priority 25 + (
+	  INODE.create_xor "Information" priority 100 + 
+	  INODE.create_xor "About" priority 100 +
+	  INODE.create_xor "Bugs report" priority 100 +
+	  INODE.create_xor "News" priority 100
+	)
+      );
+
+
+	tools := INODE.create_xor "Tools" priority 100 +
+	    INODE.create_xor "Select" priority 100 action action_select picture "select.bmp" + (
+            INODE.create_xor "Zoom" priority 50 picture "zoom.bmp" + (
+              INODE.create_xor "Raw" priority 100 +
+                INODE.create_xor "Zoom +" priority 100 action action_zoom_in picture "zoom_in.bmp" +
+                INODE.create_xor "Zoom -" priority 100 action action_zoom_out picture "zoom_out.bmp"+
+                INODE.create_xor "Zoom select" priority 50 action action_zoom_select picture "zoom_select.bmp"+
+                INODE.create_xor "Zoom page" priority 25 action action_zoom_page picture "zoom_page.bmp"+
+                INODE.create_xor "Zoom 1:1" priority 25 action action_zoom_100 picture "zoom_100.bmp"
+              )
+            ) +
+            INODE.create_xor "Line" priority 100 action action_line picture "line.bmp" +
+            INODE.create_xor "Rectangle" priority 100 action action_rectangle picture "rectangle.bmp" +
+            INODE.create_xor "Circle" priority 100 action action_circle picture "ellipse.bmp" +
+            INODE.create_xor "Text" priority 100 action action_text picture "text.bmp" +
+            INODE.create_xor "Color" priority 100 action action_color picture "paint.bmp";
+
+
+    page:=INODE.create_xor "Page" priority 100;
+
+    base := INODE.create_or "Paint" priority 100 + menu + tools + page;
+    
+    //
+    // Evaluation.
+    //
+
+    guii:=GUII.create base screen_width 800 screen_height 600;
+    guii.set_depth base from 0;
+    guii.evaluation base;
+    guii.run_interface;
+  );
+  
+  
\ No newline at end of file
diff --git a/lib/extra/gui_automatic/g_page.li b/lib/extra/gui_automatic/g_page.li
new file mode 100644
index 0000000..254f440
--- /dev/null
+++ b/lib/extra/gui_automatic/g_page.li
@@ -0,0 +1,82 @@
+///////////////////////////////////////////////////////////////////////////////
+//                              Lisaac Example                               //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := G_PAGE;
+      
+  - author  := "Sonntag Benoit (bsonntag at loria.fr)";
+  - comment := "Output text for GUI.";
+
+Section Inherit  
+  
+  + parent_area:Expanded AREA;
+
+  - parent_g_expr:G_EXPR := G_EXPR;
+          
+Section Public
+   
+  //
+  // Width / Height
+  //
+  
+  - width_min:INTEGER  := 500; //128;
+  
+  - height_min:INTEGER := 200; //128;
+    
+  //
+  // Creation.
+  //
+  
+  - create:SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make;
+    result
+  );
+  
+  - make <-
+  (
+    // Nothing.
+  ); 
+
+  //
+  // Update position.
+  //
+  
+  - set_position rac:AREA at (x,y:INTEGER) size (w,h:INTEGER) <-
+  ( 
+    update rac from (x,y) size (w,h);
+  );
+  
+  //
+  // Display.
+  //
+  
+  - draw (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  (     
+    clipping (x0,y0) to (x1,y1);    
+    //    
+    rectangle (x_min,y_min) to (x_max,y_max) color black;
+    rectangle_fill (x_min+1,y_min+1) to (x_max-1,y_max-1) color yellow;
+    rectangle_fill (0,0) to (width_min-1,height_min-1) color blue;
+    
+  );
diff --git a/lib/extra/gui_automatic/guii.li b/lib/extra/gui_automatic/guii.li
new file mode 100644
index 0000000..4556b2f
--- /dev/null
+++ b/lib/extra/gui_automatic/guii.li
@@ -0,0 +1,292 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := GUII;
+  
+  - copyright := "Jonathan Ponte, Maxime Audrin, Benoit Sonntag";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Private
+  
+  - internal_create a:INODE screen_width w:INTEGER screen_height h:INTEGER<-
+  (
+    root:=a;
+    screen_width:=w;
+    screen_height:=h;
+  );
+  
+Section Public
+  
+  + root:INODE;
+  + screen_width:INTEGER;
+  + screen_height:INTEGER;
+  + placement:G_EXPR;
+  
+  
+  - create a:INODE screen_width w:INTEGER screen_height h:INTEGER :GUII<-
+  (
+    +result:SELF;
+    
+    result:=clone;
+    a.set_screen_width w;
+    a.set_screen_height h;
+    result.internal_create a screen_width w screen_height h;
+    result
+  );
+  
+  - make_interface <-
+  (
+    INODE.set_used_width 0;
+    INODE.set_used_height 0;
+    set_depth root from 0;
+    make_dimensions;
+    make_placement;
+    root.display;
+  );
+
+  - run_interface <-
+  (
+    VIDEO.make (screen_width,screen_height);
+    DESK.make VIDEO with placement;
+  );
+  
+  
+  - set_depth node:INODE from j:INTEGER <-
+  (
+    +dpth:INTEGER;
+    
+    dpth:=j+1;
+    node.list.foreach{
+      i:INODE;
+      i.set_depth dpth;
+      (!i.list.is_empty).if {
+        set_depth i from dpth;
+      };
+    };
+  );
+  
+  - evaluation i:INODE dimensions k:INTEGER :INTERNAL_INODE<-
+  (         
+    +best_prc:REAL_32;
+    +tmp:REAL_32;
+    +parent:INTERNAL_INODE;
+    +w:INTEGER;
+    +h:INTEGER;
+    
+    w:=i.dimensions.item k.width;
+    h:=i.dimensions.item k.height;
+    
+    "Evaluation for dimensions ".print;k.print;" : width ".print;w.print;", height ".print;h.print;'\n'.print;
+    
+    (!i.list.is_empty).if {
+      tmp:=MENU_BAR.evaluate i width w height h;"\n\n".print;
+      (tmp>best_prc).if {
+        best_prc:=tmp;
+        parent:=MENU_BAR;
+        //"=================================================>MENU_BAR\n".print;
+      };
+      tmp:=MENU_H.evaluate i width w height h;"\n\n".print;
+      (tmp>best_prc).if {
+        best_prc:=tmp;
+        parent:=MENU_H;
+        //"=================================================>MENU_H\n".print;
+      };
+      tmp:=DROP_DOWN_MENU.evaluate i width w height h;"\n\n".print;
+      (tmp>best_prc).if {
+        best_prc:=tmp;
+        parent:=DROP_DOWN_MENU;
+        //"=================================================>DROP_DOWN_MENU\n".print;
+      };
+    } else {
+      tmp:=PAGE.evaluate i width w height h;"\n\n".print;
+      (tmp>best_prc).if {
+        best_prc:=tmp;
+        parent:=PAGE;
+        //"=================================================>PAGE\n".print;
+      };
+    };
+    (best_prc=0).if {
+      "No patterns match for ".print;i.name.print;" with dimensions ".print;w.print;"x".print;h.print;
+      " try to put it into a G_WIN_IN :)\n".print;
+      //OBJECT.die_with_code 1;
+      best_prc:=WIN_IN.evaluate i width w height h;
+     (best_prc>0).if{
+       i.dimensions.item k.set_pattern WIN_IN;
+       i.dimensions.item k.add_score best_prc;
+     };
+      //i.set_representation INTERNAL_INODE;
+    } else {
+      //"===============================================================================>".print;parent.print;'\n'.print;
+      parent.evaluate i width w height h;
+      '\n'.print;i.name.print;" is a ".print;parent.print;" with dimensions ".print;w.print;"x".print;h.print;"\n".print;
+      i.dimensions.item k.set_pattern parent;
+      i.dimensions.item k.add_score best_prc;
+    };
+    parent
+  );
+  
+  - make_dimensions <-
+  (
+    /*
+    * i : le noeud courant
+    * k : la position courante du noeud i 
+    * j : la case courante du tableau de dimensions du noeud i+1
+    */
+    
+    /* initialisation pour le premier noeud */
+    root.list.first.dimensions.add_last (DIMENSION.create (screen_width,screen_height,0) score 0);
+    
+    /* evaluation de chaque noeud et pour chaque position */
+    root.list.lower.to (root.list.upper) do {
+      i:INTEGER;
+      
+      "Dimensions for ".print;root.list.item i.name.print;'\n'.print;
+      root.list.item i.display_dimensions;'\n'.print;
+      
+      /* evaluation du noeud i pour chaque position k possible */
+      root.list.item i.dimensions.lower.to (root.list.item i.dimensions.upper) do {
+        k:INTEGER;
+        +pattern:INTERNAL_INODE;
+        +width_item:INTEGER;
+        +height_item:INTEGER;
+        
+        pattern:=evaluation (root.list.item i) dimensions k;
+        
+        width_item:=root.list.item i.width;
+        height_item:=root.list.item i.height;
+        
+        root.list.item i.name.print;" : width ".print;width_item.print;','.print;" height ".print;height_item.print;"\n\n".print;
+        
+        /* pour chaque dimensions de i on crée 2 nouvelles dimensions pour i+1 */
+        (i<root.list.upper).if {
+          (2*k-1).to (2*k) do {
+            j:INTEGER;
+            +w:INTEGER;
+            +h:INTEGER;
+            +l:INTEGER;
+            +score:REAL_32;
+            
+            /* pour une position impaire: placement à droite
+            largeur=largeur restante - largeur de l'item courant
+            hauteur=hauteur restante
+            hauteur ligne courante=max(hauteur ligne courante, hauteur item courant)
+            pour une position paire: placement en-dessous
+            largeur=largeur de l'écran
+            hauteur=hauteur restante - max(hauteur de l'item courant,hauteur de la ligne courante)
+              hauteur ligne courante=hauteur item courant */
+              /* 1er noeud est un cas particulier */
+              (i=1).if {
+                ((j%2=1)).if {
+                  w:=screen_width-width_item;
+                  h:=screen_height;
+                  l:=height_item;
+                } else {
+                  w:=screen_width;
+                  h:=screen_height-height_item;
+                  l:=0;
+                };
+              } else {
+                (j%2=1).if {
+                  w:=root.list.item i.dimensions.item k.width-width_item;
+                  h:=root.list.item i.dimensions.item k.height;
+                  (root.list.item i.dimensions.item k.line_height<height_item).if {
+                    l:=height_item;
+                  };
+                } else {
+                  w:=screen_width;
+                  h:=root.list.item i.dimensions.item k.height - (root.list.item i.dimensions.item k.line_height.max height_item);
+                  l:=0;
+                };
+              };
+              //((w>0) && {h>0}).if {
+                score:=root.list.item i.dimensions.item k.score_sum;
+                root.list.item (i+1).dimensions.add_last (DIMENSION.create (w,h,l) score score);
+              //};
+            };
+          };
+        };
+        "Number of dimensions: ".print;root.list.item i.dimensions.count.print;'\n'.print;
+        root.list.item i.diplay_patterns;
+      };
+    );
+
+    - find_dimensions <-
+    (
+      (root.list.upper).downto (root.list.lower) do {
+        n:INTEGER;
+        +i:INODE;
+        i:=root.list.item n;
+
+        (n=root.list.upper).if {
+          i.set_dimensions_nb (root.list.last.get_best_disposition);
+          "Best dimensions is number ".print;i.dimensions_nb.print;'\n'.print;
+        } else {
+          +tmp:REAL_32;
+          tmp:=(root.list.item (n+1)).dimensions_nb;
+          i.set_dimensions_nb ((tmp/2.0).rounded);
+          "Next dimensions is number ".print;i.dimensions_nb.print;'\n'.print;
+        };
+      };
+    );
+
+    - make_placement <-
+    (
+      +operator:CHARACTER;
+      +node:INODE;
+      +width:INTEGER;
+      +height:INTEGER;
+      +pattern:INTERNAL_INODE;
+      //+tmp:REAL_32;
+
+      INODE.set_used_width 0;
+      INODE.set_used_height 0;
+
+      find_dimensions;
+
+      (root.list.lower).to (root.list.upper) do {
+        n:INTEGER;
+        +i:INTEGER;
+
+        node:=root.list.item n;
+        i:=node.dimensions_nb;
+        pattern:=root.list.item n.dimensions.item i.pattern;
+        width:=node.dimensions.item i.width;
+        height:=node.dimensions.item i.height;
+        pattern.print;" representation for ".print;node.name.print;" with dimensions width: ".print;width.print;", height: ".print;height.print;'\n'.print;
+        pattern.evaluate node width width height height;
+        node.make_representation;
+        (n=root.list.lower).if {
+          placement:=node.content;
+        } else {
+          ((root.list.item n.dimensions_nb)%2=1).if {
+            placement:=placement | node.content;
+          } else {
+            placement:=placement / node.content;
+          };
+        };
+        operator.print;node.name.print;'\n'.print;
+      };
+      "\n".print;
+    );
diff --git a/lib/extra/gui_automatic/inode.li b/lib/extra/gui_automatic/inode.li
new file mode 100644
index 0000000..1dd8587
--- /dev/null
+++ b/lib/extra/gui_automatic/inode.li
@@ -0,0 +1,371 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := INODE;
+  
+  
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Interface Node for GUII.";
+  
+Section Inherit
+  
+  + parent_guii:INTERNAL_INODE := INTERNAL_INODE;
+
+Section Public
+  //
+  // Data.
+  //
+  + name:STRING_CONSTANT;
+  + operator:CHARACTER;
+  + priority:INTEGER_8;
+  + bitmap:ABSTRACT_STRING;
+  + list:LINKED_LIST(INODE);
+  + content:G_EXPR;
+  + covering:INTEGER;		//take items whose are over this pourcentage
+  + height:INTEGER;
+  + width:INTEGER;
+  + min_height:INTEGER;
+  + min_width:INTEGER;
+  + depth:INTEGER;
+  + action:BLOCK;
+  + win_out:G_WIN_OUT;
+  + dimensions:LINKED_LIST(DIMENSION);
+  - screen_width:INTEGER;
+  - screen_height:INTEGER;
+  + connector_width:INTEGER;
+  + connector_height:INTEGER;
+  - used_height:INTEGER;
+  - used_width:INTEGER;
+  + dimensions_nb:INTEGER;
+  + width_win_in:INTEGER;
+  + height_win_in:INTEGER;
+  
+  
+  //bug compilo 0.13
+  + bugw_screen:INTEGER;
+  + bugh_screen:INTEGER;
+  
+  //
+  // Creation.
+  //
+  - create_xor n:STRING_CONSTANT priority p:INTEGER_8 :SELF <-
+  (
+    internal_create n priority p operator '^'
+  );
+  
+  - create_or n:STRING_CONSTANT priority p:INTEGER_8 :SELF <-
+  (
+    internal_create n priority p operator '|'
+  );
+  
+  - create_and n:STRING_CONSTANT priority p:INTEGER_8 :SELF <-
+  (
+    internal_create n priority p operator '&'
+  );
+  
+  - create_or n:STRING_CONSTANT priority p:INTEGER_8 width w:INTEGER height h:INTEGER :SELF <-
+  (
+    internal_create n priority p operator '|' width w height h
+  );
+  
+  - create_and n:STRING_CONSTANT priority p:INTEGER_8 width w:INTEGER height h:INTEGER :SELF <-
+  (
+    internal_create n priority p operator '&' width w height h
+  );
+  
+  - create_xor n:STRING_CONSTANT priority p:INTEGER_8 action b:BLOCK :SELF<-
+  (
+    +result:SELF;
+    
+    result := clone;
+    result.make n priority p operator '^' action b;
+    result
+  );
+  
+  - create_or n:STRING_CONSTANT priority p:INTEGER_8 action b:BLOCK :SELF<-
+  (
+    +result:SELF;
+    
+    result := clone;
+    result.make n priority p operator '|' action b;
+    result
+  );
+  
+  - create_and n:STRING_CONSTANT priority p:INTEGER_8 action b:BLOCK :SELF<-
+  (
+    +result:SELF;
+    
+    result := clone;
+    result.make n priority p operator '&' action b;
+    result
+  );
+  
+  - create_and n:STRING_CONSTANT priority p:INTEGER_8 action b:BLOCK picture filename:ABSTRACT_STRING :SELF<-
+  (
+    +result:SELF;
+    
+    result := clone;
+    result.make n priority p operator '&' action b picture filename;
+    result
+  );
+  
+  - create_or n:STRING_CONSTANT priority p:INTEGER_8 action b:BLOCK picture filename:ABSTRACT_STRING :SELF<-
+  (
+    +result:SELF;
+    
+    result := clone;
+    result.make n priority p operator '|' action b picture filename;
+    result
+  );
+  
+  - create_xor n:STRING_CONSTANT priority p:INTEGER_8 action b:BLOCK picture filename:ABSTRACT_STRING :SELF<-
+  (
+    +result:SELF;
+    
+    result := clone;
+    result.make n priority p operator '^' action b picture filename;
+    result
+  );
+  
+  - create_and n:STRING_CONSTANT priority p:INTEGER_8 picture filename:ABSTRACT_STRING :SELF<-
+  (
+    +result:SELF;
+    
+    result := clone;
+    result.make n priority p operator '&' picture filename;
+    result
+  );
+  
+  - create_or n:STRING_CONSTANT priority p:INTEGER_8 picture filename:ABSTRACT_STRING :SELF<-
+  (
+    +result:SELF;
+    
+    result := clone;
+    result.make n priority p operator '|' picture filename;
+    result
+  );
+  
+  - create_xor n:STRING_CONSTANT priority p:INTEGER_8 picture filename:ABSTRACT_STRING :SELF<-
+  (
+    +result:SELF;
+    
+    result := clone;
+    result.make n priority p operator '^' picture filename;
+    result
+  );
+  
+  //
+  // Flags.
+  //
+  
+  - is_xor:BOOLEAN <- operator = '^';
+  - is_and:BOOLEAN <- operator = '&';
+  - is_or:BOOLEAN  <- operator = '|';
+  
+  
+  //
+  //method
+  //
+  - Self:SELF '+' other:INODE :INODE <-
+  (
+    +j:INTEGER;
+    j:=0;
+    list.add_last other;
+    Self
+  );
+  
+  - set_representation new_parent:INTERNAL_INODE <-
+  (
+    parent_guii:=new_parent;
+    content:=NULL;
+    covering:=0;
+    width:=0;
+    height:=0;
+    win_out:=NULL;
+    bugh_screen:=0;
+    bugw_screen:=0;
+    connector_width:=0;
+    connector_height:=0;
+  );
+  
+
+  - set_representation_win_in new_parent:INTERNAL_INODE <-
+  (
+    parent_guii:=new_parent;
+  );
+  
+  - set_depth dpth:INTEGER <-
+  (	
+    depth:=dpth;
+  );
+  
+  - get_parent:INTERNAL_INODE <- 
+  ( 
+    parent_guii
+  );      
+  
+  - reset_size <-
+  (
+    width:=0;
+    height:=0;
+    connector_width:=0;
+    connector_height:=0;
+  );
+
+  - set_screen_width width:INTEGER <-
+  (
+    screen_width:=width;
+  );
+  
+  - set_screen_height height:INTEGER <-
+  (
+    screen_height:=height;
+  );
+
+  - set_height h:INTEGER <-
+  (
+    height:=h;
+  );
+
+  - set_width w:INTEGER <-
+  (
+    width:=w;
+  );
+
+  - set_connector_w w:INTEGER <-
+  (
+    connector_width:=w;
+  );
+
+  - set_connector_h h:INTEGER <-
+  (
+    connector_height:=h;
+  );
+
+  - set_used_width w:INTEGER <-
+  (
+    used_width:=w;
+  );
+
+  - set_used_height h:INTEGER <-
+  (
+    used_height:=h;
+  );
+
+  - set_dimensions_nb d:INTEGER <-
+  (
+    dimensions_nb:=d;
+  );
+
+  - set_width_win_in w:INTEGER <-
+  (
+    width_win_in:=w;
+  );
+
+
+  - set_height_win_in h:INTEGER <-
+  (
+    height_win_in:=h;
+  );
+Section Private
+  
+  - internal_create n:STRING_CONSTANT priority p:INTEGER_8 operator op:CHARACTER :SELF <-
+  (
+    + result:SELF;
+    
+    result := clone;
+    result.make n priority p operator op;
+    result
+  );
+  
+  - internal_create n:STRING_CONSTANT priority p:INTEGER_8 operator op:CHARACTER width w:INTEGER height h:INTEGER :SELF <-
+  (
+    + result:SELF;
+    
+    result := clone;
+    result.make n priority p operator op width w height h;
+    result
+  );
+  
+  - internal_create n:STRING_CONSTANT priority p:INTEGER_8 operator op:CHARACTER action b:BLOCK :SELF <-
+  (
+    + result:SELF;
+    
+    result := clone;
+    result.make n priority p operator op action b;
+    result
+  );
+  
+  - make n:STRING_CONSTANT priority p:INTEGER_8 operator op:CHARACTER <-
+  (
+    operator := op;
+    name := n;
+    priority := p;
+    list := LINKED_LIST(INODE).create;
+    dimensions := LINKED_LIST(DIMENSION).create;
+  );
+  
+  - make n:STRING_CONSTANT priority p:INTEGER_8 operator op:CHARACTER width w:INTEGER height h:INTEGER <-
+  (
+    operator := op;
+    name := n;
+    priority := p;
+    min_width := w;
+    min_height := h;
+    list := LINKED_LIST(INODE).create;
+    dimensions := LINKED_LIST(DIMENSION).create;
+  );
+  
+  - make n:STRING_CONSTANT priority p:INTEGER_8 operator op:CHARACTER action b:BLOCK <-
+  (
+    operator := op;
+    name := n;
+    priority := p;
+    action := b;
+    list := LINKED_LIST(INODE).create;
+    dimensions := LINKED_LIST(DIMENSION).create;
+  );
+  
+  - make n:STRING_CONSTANT priority p:INTEGER_8 operator op:CHARACTER action b:BLOCK picture filename:ABSTRACT_STRING <-
+  (
+    operator := op;
+    name := n;
+    priority := p;
+    action := b;
+    bitmap := filename;
+    list := LINKED_LIST(INODE).create;
+    dimensions := LINKED_LIST(DIMENSION).create;
+  );
+  
+  - make n:STRING_CONSTANT priority p:INTEGER_8 operator op:CHARACTER picture filename:ABSTRACT_STRING <-
+  (
+    operator := op;
+    name := n;
+    priority := p;
+    bitmap := filename;
+    list := LINKED_LIST(INODE).create;
+    dimensions := LINKED_LIST(DIMENSION).create;
+  );
+  
+Section INTERNAL_INODE
+  
diff --git a/lib/extra/gui_automatic/internal_inode.li b/lib/extra/gui_automatic/internal_inode.li
new file mode 100644
index 0000000..c53575e
--- /dev/null
+++ b/lib/extra/gui_automatic/internal_inode.li
@@ -0,0 +1,265 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := INTERNAL_INODE;
+
+  - copyright := "Jonathan Ponte, Maxime Audrin, Benoit Sonntag";
+
+  - comment   := "Interface Node for GUII.";
+  
+  // Warning: This Prototype is shared. All the data have to be deferred !
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+
+Section Private  
+  
+  //
+  // Append for the problem with Dynamic inheritance !
+  //
+
+  
+Section Public  
+  
+  //
+  // Data.
+  //
+  - name:STRING_CONSTANT <- (deferred; NULL);
+  - representation:STRING_CONSTANT := "None";
+  - operator:CHARACTER <- (deferred; NULL);
+  - priority:INTEGER_8 <- (deferred; NULL);
+  - list:LINKED_LIST(INODE) <- ( deferred; NULL);
+//  - action:BLOCK <- { root:INODE; };
+  - content:G_EXPR <- ( deferred; NULL);
+  - win_out:G_WIN_OUT <- (deferred; NULL);
+  - covering:INTEGER <- ( deferred; 0);		//take items whose are over this pourcentage
+  - height:INTEGER <- ( deferred; 0);
+  - width:INTEGER <- ( deferred; 0);
+  - min_height:INTEGER <- deferred;
+  - min_width:INTEGER <- deferred;
+  - type:INTEGER <- (deferred; 0);
+  - depth:INTEGER <- (deferred; 0);
+  - parent:INTERNAL_INODE <- (deferred; NULL);
+  - dimensions:LINKED_LIST(DIMENSION);
+  - screen_width:INTEGER <- (deferred;0);
+  - screen_height:INTEGER <- (deferred;0);
+  - connector_width:INTEGER <- (deferred;0);
+  - connector_height:INTEGER <- (deferred;0);
+  - used_height:INTEGER <- (deferred;0);
+  - used_width:INTEGER <- (deferred;0);
+  - dimensions_nb:INTEGER <- (deferred;0);
+  - width_win_in:INTEGER  <- (deferred;0);
+  - height_win_in:INTEGER <- (deferred;0);
+
+  //bug compilo 0.13
+  - bugw_screen:INTEGER <- (deferred;0);
+  - bugh_screen:INTEGER <- (deferred;0);
+
+  //
+  // Flags.
+  //
+  - is_xor:BOOLEAN <- operator = '^';
+  - is_and:BOOLEAN <- operator = '&';
+  - is_or:BOOLEAN  <- operator = '|';
+  
+  //
+  // Added.
+  //
+  - Self:SELF '+' other:INODE :INODE <- deferred;
+  
+  //
+  // Method.
+  //
+  - print <- deferred;
+  - get_menu_parent:INTERNAL_INODE <- ( deferred; NULL);
+  - open <- deferred;
+  - close <- deferred;
+  - make_representation <- deferred;
+  - evaluate n:INODE width w:INTEGER height h:INTEGER :REAL_32<- (deferred;0);
+  - compute_size_from_prc p:INTEGER <- deferred;
+  - semantic_evaluation (w,h:INTEGER) :BOOLEAN <- (deferred; FALSE);
+  - semantic_evaluation_win_in n:INODE width w:INTEGER height h:INTEGER :BOOLEAN <-(deferred;FALSE);
+  - space_evaluation (w,h:INTEGER) :REAL_32 <- (deferred; 0);
+  - predict_size :INTEGER <- (deferred;0);
+
+  //
+  // browse
+  //
+  
+  - browse_group tst:BLOCK :BOOLEAN <-
+  (
+    + i:INTEGER;
+    (! list.is_empty).if {
+	i := list.lower;
+	{(i <= list.upper) && {tst.value (list.item i)}}.while_do {
+	  i := i + 1;
+
+	};
+	i > list.upper
+    }
+  );
+  
+  - browse_group_group tst:BLOCK :BOOLEAN <-
+  [ ? {! list.is_empty}; ]
+  ( + i,j:INTEGER;
+    + lst:LINKED_LIST(INODE);
+    + result:BOOLEAN;
+
+    i := list.lower;
+    result := TRUE;
+    {(i <= list.upper) && {result}}.while_do {
+      lst := list.item i.list;
+      (lst.is_empty).if {
+        result := FALSE;
+      } else {
+        j := lst.lower;
+        {(j <= lst.upper) && {tst.value (lst.item j)}}.while_do {
+          j := j + 1;
+        };
+        result := j > lst.upper;
+      };
+      i := i + 1;
+    };
+    result
+  );
+  
+  - get_nitem_from_prc p:INTEGER : INTEGER <-
+  (
+    + j:INTEGER;
+    
+    j:=0;
+    list.foreach {
+      i:INODE;
+      (i.priority > p).if {
+        j:=j+1;
+      };
+    };
+    j
+  );
+  
+  - get_area_prc (w,h:INTEGER):REAL_32 <-
+  [
+    ? {width <= w};
+    ? {height <= h};
+  ]
+  (
+    +a,b,c,d:REAL_32;
+    a:=width;
+    b:=height;
+    c:=w;
+    d:=h;
+    //"a: ".print;a.print;", b: ".print;b.print;", c".print;c.print;", d: ".print;d.print;'\n'.print;
+    //"Result get_area: ".print;((a*b)/(c*d)*100).print;'\n'.print;
+    (a*b)/(c*d)*100
+  )
+  [ ? {Result.in_range 0 to 100}; ];
+
+  //
+  // Debug routine
+  //
+  - display <-
+  (
+    name.print;
+    " (".print;
+    representation.print;
+    ")\n".print;
+    (list != NULL).if {
+      base.print;
+      (operator)
+      .when '|' then { "(OR ".print; }
+      .when '&' then { "(AND ".print; }
+      .when '^' then { "(XOR ".print; };
+      priority.print;")\n".print;
+      base.print;
+      (list.is_empty).if {
+        "\n".print;
+      } else {
+        " | \n".print;
+      };
+      (list.lower).to (list.upper) do { j:INTEGER;
+        base.print; 
+        " +- ".print;
+        (j != list.upper).if {
+          base.append " |  ";
+        } else {
+          base.append "    ";
+        };
+        list.item j.display;
+        base.remove_last 4;	
+      };
+    };
+  );
+  
+  - display_dimensions <-
+  (
+    +j:INTEGER;
+    
+    dimensions.foreach {
+      i:DIMENSION;
+      j:=j+1;
+      "Dimensions ".print;j.print;" : width ".print;i.width.print;", height ".print;i.height.print;", ligne ".print;i.line_height.print;'\n'.print;
+    };
+  );
+
+  - diplay_patterns <-
+  (
+    "Patterns for ".print;name.print;'\n'.print;
+    dimensions.lower.to (dimensions.upper) do {
+      n:INTEGER;
+      +d:DIMENSION;
+
+      d:=dimensions.item n;
+      (d.pattern=NULL).if {
+        "Not found".print;
+      } else {
+        d.pattern.print;
+      };
+      " with dimensions ".print;d.width.print;"x".print;d.height.print;" score: ".print;d.score_sum.print;
+      (n%2=1).if {
+        " operator: |\n".print;
+      } else {
+        " operator: /\n".print;
+      };
+    };
+  );
+  
+  - get_best_disposition :INTEGER <-
+  (
+    +j:INTEGER;
+    +score:REAL_32;
+
+    dimensions.lower.to (dimensions.upper) do {
+      i:INTEGER;
+      ((dimensions.item i.score_sum>=score)).if {
+        score:=dimensions.item i.score_sum;
+        j:=i;
+      };
+    };
+    j
+  );
+
+
+Section Private
+  
+  - base:STRING := STRING.create 250;
+  
\ No newline at end of file
diff --git a/lib/extra/gui_automatic/menu_bar.li b/lib/extra/gui_automatic/menu_bar.li
new file mode 100644
index 0000000..687d777
--- /dev/null
+++ b/lib/extra/gui_automatic/menu_bar.li
@@ -0,0 +1,97 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := MENU_BAR;
+  
+  - copyright := "Jonathan Ponte, Maxime Audrin, Benoit Sonntag";
+  
+  - comment   := "Vertical menu for GUII.";
+  
+Section Inherit
+  
+  + menu_parent:MENU_H:=MENU_H;
+  
+Section Public
+  
+  - representation:STRING_CONSTANT := "MENU_BAR";
+  
+  - print <-
+  (
+    "MENU_BAR".print;
+  );
+  
+  //
+  // Evaluation.
+  //
+  
+  - semantic_evaluation (w,h:INTEGER) :BOOLEAN<-
+  (
+    bugw_screen:=w;
+    bugh_screen:=h;
+    
+    !list.is_empty && {operator='^'} && {
+      browse_group { 
+        i:INODE;
+        (i.operator = '^')
+      }
+    } && {
+      + nb:INTEGER;
+      + predict_h:INTEGER;
+      predict_h:=predict_size;
+
+      list.foreach { 
+        i:INODE;
+        +h_tmp:INTEGER;
+        
+        ((used_height+predict_h)>screen_height/2).if {
+          h_tmp:=used_height;
+        } else {
+          h_tmp:=screen_height-used_height-predict_h;
+        };
+        (MENU_V_OUT.evaluate i width screen_width height h_tmp > 0).if {
+          nb := nb + 1;
+          //i.name.print;"===========================================>".print;i.print;"\n".print;
+        };
+      };
+      nb=list.count
+    }
+  );
+  
+  - evaluate n:INODE width w:INTEGER height h:INTEGER : REAL_32<-
+  (
+    + result:REAL_32;
+    
+    // change parent of the node for having access to the method of MENU_BAR
+    n.set_representation MENU_BAR;
+    // Semantic evaluation && Space evaluation.
+    "MENU_BAR semantic evaluation of ".print;n.name.print;"\n".print;
+    (n.semantic_evaluation (w,h)).if {
+      //"MENU_BAR space evaluation of ".print;n.name.print;"\n".print;
+      result:=n.space_evaluation (w,h);
+    } else {
+      result:=0;
+    };
+    
+    "MENU_BAR result for ".print;n.name.print;"= ".print;result.print;"%\n".print;
+    result
+  )
+  [ ? {Result.in_range 0 to 100}; ];
diff --git a/lib/extra/gui_automatic/menu_h.li b/lib/extra/gui_automatic/menu_h.li
new file mode 100644
index 0000000..4443b8e
--- /dev/null
+++ b/lib/extra/gui_automatic/menu_h.li
@@ -0,0 +1,257 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := MENU_H;
+  
+  - copyright := "Jonathan Ponte, Maxime Audrin, Benoit Sonntag";
+  
+  - comment   := "Horizontal menu for GUII.";
+  
+Section Inherit
+  
+  - parent_internal_inode:INTERNAL_INODE := INTERNAL_INODE;
+  
+Section Public
+  
+  - representation:STRING_CONSTANT := "MENU_H";
+  
+  - print <-
+  (
+    "MENU_H".print;
+  );
+  
+  - make_representation <-
+  (
+    list.foreach {
+      i:INODE;
+      
+      (i.priority>covering).if {
+        i.make_representation;
+        (content=NULL).if {
+          content:=i.content;
+        } else {
+          content:=content | i.content;
+        };
+      };
+    };
+    content.fix_height.fix_width;
+  );
+  
+  //
+  // Evaluation.
+  //
+  
+  - compute_size_from_prc p:INTEGER <-
+  [? { (!list.is_empty) }; ]
+  (
+    reset_size;
+    list.foreach {
+      i:INODE;
+      +w,h:INTEGER;
+      (i.priority>p).if {
+        ((i.connector_width>0) && {i.connector_height>0}).if {
+          w:=i.connector_width;
+          h:=i.connector_height;
+        } else {
+          w:=i.width;
+          h:=i.height;
+        };
+        (width,height):=G_OR_EXPR.predict_size (width,height) and (w,h);
+      };
+    };
+  );
+  
+  - predict_size :INTEGER <-
+  (
+    +h_predict:INTEGER;
+    list.foreach {
+      i:INODE;
+      +w,h:INTEGER;
+      (w,h):=G_BUTTON.predict_size (G_OUT.predict_size (i.name));
+      (h>h_predict).if {
+        h_predict:=h;
+      };
+    };
+    h_predict
+  );
+
+  - semantic_evaluation (w,h:INTEGER) :BOOLEAN<-
+  (
+    bugw_screen:=w;
+    bugh_screen:=h;
+    
+    !list.is_empty && {operator='^'} && {
+      browse_group {
+        i:INODE;
+        (i.operator!='&')
+      }
+    } && {
+      +nb:INTEGER;
+      +predict_h:INTEGER;
+
+      predict_h:=predict_size;
+      list.foreach {
+        i:INODE;
+        +tmp:REAL_32;
+        +best_prc:REAL_32;
+        +son_width:INTEGER;
+        +son_height:INTEGER;
+        +son_connector_w:INTEGER;
+        +son_connector_h:INTEGER;
+        +h_tmp:INTEGER;
+
+        ((used_height+predict_h)>screen_height/2).if {
+          h_tmp:=used_height;
+        } else {
+          h_tmp:=screen_height-used_height-predict_h;
+        };
+        
+        (!i.list.is_empty).if {
+          tmp:=MENU_V_OUT.evaluate i width screen_width height h_tmp;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            parent:=MENU_V_OUT;
+            son_connector_w:=i.connector_width;
+            son_connector_h:=i.connector_height;
+            son_width:=i.width;
+            son_height:=i.height;
+          };
+          tmp:=WINDOW.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            parent:=WINDOW;
+            son_connector_w:=i.connector_width;
+            son_connector_h:=i.connector_height;
+            son_width:=i.width;
+            son_height:=i.height;
+          };
+          tmp:=DROP_DOWN_MENU.evaluate i width screen_width height h_tmp;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            parent:=DROP_DOWN_MENU;
+            son_connector_w:=i.connector_width;
+            son_connector_h:=i.connector_height;
+            son_width:=i.width;
+            son_height:=i.height;
+          };
+        } else {
+          tmp:=CHECK.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            parent:=CHECK;
+            son_connector_w:=0;
+            son_connector_h:=0;
+            son_width:=i.width;
+            son_height:=i.height;
+          };
+          tmp:=ACTION.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            parent:=ACTION;
+            son_connector_w:=0;
+            son_connector_h:=0;
+            son_width:=i.width;
+            son_height:=i.height;
+          };
+        };
+        
+        (best_prc > 0).if {
+          i.set_representation parent;
+          i.name.print;"===========================================>".print;i.print;"\n".print;
+          i.set_width son_width;
+          i.set_height son_height;
+          i.set_connector_w son_connector_w;
+          i.set_connector_h son_connector_h;
+          nb:=nb+1;
+        };
+      };
+      nb=list.count
+    }
+  );
+  
+  - space_evaluation (w,h:INTEGER) :REAL_32<-
+  (
+    + area,r,result:REAL_32;
+    
+    compute_size_from_prc 0;
+    ((height >= h) || {width >= w}).if {
+      "Priority 0 failed\n".print;
+      compute_size_from_prc 25;
+      ((height >= h) || {width >= w}).if {
+        "Priority 25 failed\n".print;
+        compute_size_from_prc 50;
+        ((height >= h) || {width >= w}).if {
+          "Priority 50 failed\n".print;
+          r:=0;
+          width:=0;
+          height:=0;
+          covering:=100;
+        } else {
+          covering:=50;
+          r:=get_nitem_from_prc 50;
+        };
+      } else {
+        covering:=25;
+        r:=get_nitem_from_prc 25;
+      };
+    } else {
+      covering:=0;
+      r:=list.count;
+    };
+    r:=(r/list.count)*100;
+    (r>0).if {
+      area:=get_area_prc (w,h);
+      name.print;" area := ".print;(get_area_prc (w,h)).print;"\n".print;
+      (r>area).if {
+        result:=r-area;
+      } else {
+        result:=0;
+      };
+    } else {
+      result:=0;
+    };
+    result
+  )
+  [ ? {Result.in_range 0 to 100}; ];
+  
+  
+  - evaluate n:INODE width w:INTEGER height h:INTEGER : REAL_32<-
+  (
+    + result:REAL_32;
+    
+    // changer le parent de n pour pouvoir utiliser les méthodes spécifiques à MENU_BAR
+    n.set_representation MENU_H;
+    
+    // Semantic evaluation && Space evaluation.
+    "MENU_H semantic evaluation of ".print;n.name.print;"\n".print;
+    (n.semantic_evaluation (w,h)).if {
+      //" OK\n".print;
+      //"MENU_H space evaluation of ".print;n.name.print;"\n".print;
+      result:=n.space_evaluation (w,h);
+    } else {
+      // " FAILED\n".print;
+      result:=0;
+    };
+    "MENU_H result for ".print;n.name.print;"= ".print;result.print;"%\n".print;
+    result
+  )
+  [ ? {Result.in_range 0 to 100}; ];
diff --git a/lib/extra/gui_automatic/menu_h_out.li b/lib/extra/gui_automatic/menu_h_out.li
new file mode 100644
index 0000000..af1e889
--- /dev/null
+++ b/lib/extra/gui_automatic/menu_h_out.li
@@ -0,0 +1,183 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := MENU_H_OUT;
+
+  - copyright := "Jonathan Ponte, Maxime Audrin, Benoit Sonntag";
+
+  - comment   := "Honrizontal menu out for GUII.";
+  
+Section Inherit
+  
+  - parent_internal_inode:INTERNAL_INODE := INTERNAL_INODE;
+  
+Section Public
+  
+ 
+  - representation:STRING_CONSTANT := "MENU_H_OUT";
+
+  - print <-
+  (
+    "MENU_H_OUT".print;
+  );
+
+  - make_representation <-
+  (
+    +expr:G_EXPR;
+
+    list.foreach {
+      i:INODE;
+
+      (i.priority>covering).if {
+        i.make_representation;
+        (expr=NULL).if {
+          expr:=i.content;
+        } else {
+          expr:=expr | i.content;
+        };
+      };
+    };
+    win_out:=(G_WIN_OUT.create expr).fix_height.fix_width;
+    (bitmap=NULL).if {
+      content:=(G_BUTTON.create (G_OUT.create name) connect win_out);
+    } else {
+      content:=(G_BUTTON.create (G_IMG.create bitmap) connect win_out);
+    };
+  );
+
+//
+// Evaluation.
+//
+
+  - compute_size_from_prc p:INTEGER <-
+  [ ? {! list.is_empty}; ]
+  (
+    reset_size;
+    list.foreach {
+      i:INODE;
+      (i.priority > p).if {
+        (width,height):=G_OR_EXPR.predict_size (width,height) and (i.width,i.height);
+      };
+    };
+    (width,height):=G_WIN_OUT.predict_size (width,height);
+    (connector_width,connector_height):=G_BUTTON.predict_size (G_OUT.predict_size name);
+    //"width: ".print;bugw_screen.print;'\n'.print;
+    //"height: ".print;bugh_screen.print;'\n'.print;
+    //"menu_h_out.width: ".print;width.print;'\n'.print;
+    //"menu_h_out.height: ".print;height.print;'\n'.print;
+  );
+
+
+  - semantic_evaluation (w,h:INTEGER) :BOOLEAN<-
+  (
+    bugw_screen:=w;
+    bugh_screen:=h;
+
+    !list.is_empty && {
+      browse_group { 
+        i:INODE;
+        (i.operator != '&')
+      }
+    } && {
+      +nb:INTEGER;
+      list.foreach {
+        i:INODE;
+
+        (!i.list.is_empty).if {
+          (RAW_H.evaluate i width screen_width height screen_height > 0).if {
+            nb:=nb+1;
+          };
+        };
+      };
+      nb=list.count
+    }
+  );
+
+- space_evaluation (w,h:INTEGER) :REAL_32<-
+  (
+      + area,r,result:REAL_32;
+      // Space evaluation
+      compute_size_from_prc 0;
+    ((height >= h) || {width >= w}).if {
+      "Priority 0 failed\n".print;
+      compute_size_from_prc 25;
+      ((height >= h) || {width >= w}).if {
+        "Priority 25 failed\n".print;
+        compute_size_from_prc 50;
+        ((height >= h) || {width >= w}).if {
+          "Priority 50 failed\n".print;
+		r:=0;
+		set_height 0;
+		set_width 0;
+           } else {
+		covering:=50;
+		r:=get_nitem_from_prc 50;
+	   };
+	} else {
+	   covering:=25;
+	   r:=get_nitem_from_prc 25;
+	};
+      } else {
+	covering:=0;
+	r:=list.count;
+     };
+    r:=(r/list.count)*100;
+    (r>0).if {
+      area:=get_area_prc (w,h);
+      //name.print;" area := ".print;(get_area_prc (w,h)).print;"\n".print;
+      (r>area).if {
+        result:=r-area;
+      } else {
+        result:=0;
+      };
+    } else {
+      result:=0;
+    };
+    result
+  )
+  [ ? {Result.in_range 0 to 100}; ];
+
+
+- evaluate n:INODE width w:INTEGER height h:INTEGER : REAL_32<-
+  (
+    + result:REAL_32;
+
+    n.set_representation MENU_H_OUT;
+    "MENU_H_OUT semantic evaluation of ".print;n.name.print;" with dimensions ".print;w.print;"x".print;h.print;"\n".print;
+    (n.semantic_evaluation (w,h)).if {
+      //"MENU_H_OUT space evaluation of ".print;n.name.print;"\n".print;
+      result:=n.space_evaluation (w,h);
+    } else {
+       result:=0;
+    };
+    "MENU_H_OUT result for ".print;n.name.print;"= ".print;result.print;"%\n".print;
+    result
+  )
+  [ ? {Result.in_range 0 to 100}; ];
+
+
+
+/*
+      // -> 1) R = Faisabilité de l'espace (% de recouvrement des items) (1:25%, 2:50%, 3:75%)
+      // -> 2) A = Note de calcul d'aire. (% sur l'écran total)
+      // Result = (R*100-A)/100  
+*/
\ No newline at end of file
diff --git a/lib/extra/gui_automatic/menu_v.li b/lib/extra/gui_automatic/menu_v.li
new file mode 100644
index 0000000..2f01210
--- /dev/null
+++ b/lib/extra/gui_automatic/menu_v.li
@@ -0,0 +1,260 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := MENU_V;
+  
+  - copyright := "Jonathan Ponte, Maxime Audrin, Benoit Sonntag";
+  
+  - comment   := "Vertical menu for GUII.";
+  
+Section Inherit
+  
+  - parent_internal_inode:INTERNAL_INODE := INTERNAL_INODE;
+  
+Section Public
+  
+  
+  - representation:STRING_CONSTANT := "MENU_V";
+  + parent:INTERNAL_INODE;
+  
+  - print <-
+  (
+    "MENU_V".print;
+  );
+  
+  - make_representation <-
+  (
+    list.foreach {
+      i:INODE;
+      
+      (i.priority>covering).if {
+        i.make_representation;
+        (content=NULL).if {
+          content:=i.content;
+        } else {
+          content:=content / i.content;
+        };
+      };
+    };
+    content.fix_width.fix_height;
+  );
+  
+  //
+  // Evaluation.
+  //
+  - compute_size_from_prc p:INTEGER <-
+  [ ? {! list.is_empty}; ]
+  (
+    reset_size;
+    list.foreach {
+      i:INODE;
+      +w,h:INTEGER;
+      (i.priority>p).if {
+        ((i.connector_width>0) && {i.connector_height>0}).if {
+          w:=i.connector_width;
+          h:=i.connector_height;
+        } else {
+          w:=i.width;
+          h:=i.height;
+        };
+        (width,height):=G_DIV_EXPR.predict_size (width,height) and (w,h);
+      };
+    };
+  );
+  
+  - predict_size :INTEGER <-
+  (
+    +w_predict:INTEGER;
+    list.foreach {
+      i:INODE;
+      +w,h:INTEGER;
+      (w,h):=G_BUTTON.predict_size (G_OUT.predict_size (i.name));
+      (w>w_predict).if {
+        w_predict:=w;
+      };
+    };
+    w_predict
+  );
+
+
+  - semantic_evaluation (w,h:INTEGER) :BOOLEAN<-
+  (
+    bugw_screen:=w;
+    bugh_screen:=h;
+    
+    !list.is_empty && {operator='^'} && {
+      browse_group { 
+        i:INODE;
+        (i.operator != '&')
+      }
+    } && {
+      +nb:INTEGER;
+      +predict_w:INTEGER;
+
+      predict_w:=predict_size;
+      list.foreach {
+        i:INODE;
+        +tmp:REAL_32;
+        +best_prc:REAL_32;
+        +son_width:INTEGER;
+        +son_height:INTEGER;
+        +son_connector_w:INTEGER;
+        +son_connector_h:INTEGER;
+        +w_tmp:INTEGER;
+
+        ((used_width+predict_w)>screen_width/2).if {
+          w_tmp:=used_width;
+        } else {
+          w_tmp:=screen_width-used_width-predict_w;
+        };
+
+        (!i.list.is_empty).if {
+          tmp:=MENU_V_OUT.evaluate i width w_tmp height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            parent:=MENU_V_OUT;
+            son_connector_w:=i.connector_width;
+            son_connector_h:=i.connector_height;
+            son_width:=i.width;
+            son_height:=i.height;
+          };
+          tmp:=WINDOW.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            parent:=WINDOW;
+            son_connector_w:=i.connector_width;
+            son_connector_h:=i.connector_height;
+            son_width:=i.width;
+            son_height:=i.height;
+          };
+          /*tmp:=MENU_H_OUT.evaluate i width w_tmp height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            parent:=MENU_H_OUT;
+            son_connector_w:=i.connector_width;
+            son_connector_h:=i.connector_height;
+            son_width:=i.width;
+            son_height:=i.height;
+          };*/
+        } else {
+          tmp:=CHECK.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            parent:=CHECK;
+            son_connector_w:=0;
+            son_connector_h:=0;
+            son_width:=i.width;
+            son_height:=i.height;
+          };
+          tmp:=ACTION.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            parent:=ACTION;
+            son_connector_w:=0;
+            son_connector_h:=0;
+            son_width:=i.width;
+            son_height:=i.height;
+          };
+        };
+        
+        (best_prc > 0).if {
+          i.set_representation parent;
+          i.name.print;"===========================================>".print;i.print;"\n".print;
+          i.set_width son_width;
+          i.set_height son_height;
+          i.set_connector_w son_connector_w;
+          i.set_connector_h son_connector_h;
+          nb:=nb+1;
+        };
+      };
+      nb=list.count
+    }
+  );
+  
+  - space_evaluation (w,h:INTEGER) :REAL_32<-
+  (
+    + area,r,result:REAL_32;
+    
+    // Space evaluation
+    compute_size_from_prc 0;
+    ((height >= h) || {width >= w}).if {
+      "Priority 0 failed\n".print;
+      compute_size_from_prc 25;
+      ((height >= h) || {width >= w}).if {
+        "Priority 25 failed\n".print;
+        compute_size_from_prc 50;
+        ((height >= h) || {width >= w}).if {
+          "Priority 50 failed\n".print;
+          r:=0;
+          height:=0;
+          width:=0;
+        } else {
+          covering:=50;
+          r:=get_nitem_from_prc 50;
+        };
+      } else {
+        covering:=25;
+        r:=get_nitem_from_prc 25;
+      };
+    } else {
+      covering:=0;
+      r:=list.count;
+    };
+    r:=(r/list.count)*100;
+    (r>0).if {
+      area:=get_area_prc (w,h);
+      //name.print;" area := ".print;(get_area_prc (w,h)).print;"\n".print;
+      (r>area).if {
+        result:=r-area;
+      } else {
+        result:=0;
+      };
+    } else {
+      result:=0;
+    };
+    result
+  )
+  [ ? {Result.in_range 0 to 100}; ];
+  
+  
+  /*
+  // -> 1) R = Faisabilité de l'espace (% de recouvrement des items) (1:25%, 2:50%, 3:75%)
+  // -> 2) A = Note de calcul d'aire. (% sur l'écran total)
+  // Result = (R*100-A)/100  
+  */
+  - evaluate n:INODE width w:INTEGER height h:INTEGER : REAL_32<-
+  (
+    + result:REAL_32;
+    
+    n.set_representation MENU_V;
+    // Semantic evaluation && Space evaluation.
+    "MENU_V semantic evaluation of ".print;n.name.print;"\n".print;
+    (n.semantic_evaluation (w,h)).if {
+      //"MENU_V space evaluation of ".print;n.name.print;"\n".print;
+      result:=n.space_evaluation (w,h);
+    } else {
+      result:=0;
+    };
+    "MENU_V result for ".print;n.name.print;"= ".print;result.print;"%\n".print;
+    result
+  )
+  [ ? {Result.in_range 0 to 100}; ];
diff --git a/lib/extra/gui_automatic/menu_v_out.li b/lib/extra/gui_automatic/menu_v_out.li
new file mode 100644
index 0000000..0c3a2a3
--- /dev/null
+++ b/lib/extra/gui_automatic/menu_v_out.li
@@ -0,0 +1,200 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := MENU_V_OUT;
+  
+  - copyright := "Jonathan Ponte, Maxime Audrin, Benoit Sonntag";
+  
+  - comment   := "Vertical menu out for GUII.";
+  
+Section Inherit
+  
+  - parent_internal_inode:INTERNAL_INODE := INTERNAL_INODE;
+  
+Section Public
+  
+  
+  - representation:STRING_CONSTANT := "MENU_V_OUT";
+  
+  - print <-
+  (
+    "MENU_V_OUT".print;
+  );
+  
+  - make_representation <-
+  (
+    +expr:G_EXPR;
+    
+    list.foreach {
+      i:INODE;
+      
+      (i.priority>covering).if {
+        i.make_representation;
+        (expr=NULL).if {
+          expr:=i.content;
+        } else {
+          expr:=expr / i.content;
+        };
+      };
+    };
+    win_out:=(G_WIN_OUT.create expr).fix_height.fix_width;
+    (bitmap=NULL).if {
+      content:=(G_BUTTON.create (G_OUT.create name) connect win_out);
+    } else {
+      content:=(G_BUTTON.create (G_IMG.create bitmap) connect win_out);
+    };
+  );
+  
+  //
+  // Evaluation.
+  //
+  
+  - compute_size_from_prc p:INTEGER <-
+  [ ? {! list.is_empty}; ]
+  (
+    reset_size;
+    list.foreach {
+      i:INODE;
+      (i.priority > p).if {
+        (width,height):=G_DIV_EXPR.predict_size (width,height) and (i.width,i.height);
+      };
+    };
+    (width,height):=G_WIN_OUT.predict_size (width,height);
+    (connector_width,connector_height):=G_BUTTON.predict_size (G_OUT.predict_size name);
+    //name.print;" connector_width: ".print;connector_width.print;'\n'.print;
+    //name.print;" cpnnector_height: ".print;connector_height.print;'\n'.print;
+    //name.print;" menu_v_out.width: ".print;width.print;'\n'.print;
+    //name.print;" menu_v_out.height: ".print;height.print;'\n'.print
+  );
+  
+  
+  - semantic_evaluation (w,h:INTEGER) :BOOLEAN<-
+  (
+    bugw_screen:=w;
+    bugh_screen:=h;
+    
+    !list.is_empty && {
+      browse_group { 
+        i:INODE;
+        (i.operator != '&')
+      }
+    } && {
+      +nb:INTEGER;
+      list.foreach {
+        i:INODE;
+        
+        (!i.list.is_empty).if {
+          (RAW_V.evaluate i width screen_width height screen_height > 0).if {
+            //i.name.print;" width: ".print;i.width.print;'\n'.print;
+            //i.name.print;" height: ".print;i.height.print;'\n'.print;
+            nb:=nb+1;
+          };
+        };
+      };
+      nb=list.count
+    }
+  );
+
+
+
+  - space_evaluation (w,h:INTEGER) :REAL_32<-
+  (
+    + area,r,result:REAL_32;
+    
+    // Space evaluation
+    compute_size_from_prc 0;
+    //"width: ".print;w.print;'\n'.print;
+    //"height: ".print;h.print;'\n'.print;
+    //"menu_v_out.width: ".print;width.print;'\n'.print;
+    //"menu_v_out.height: ".print;height.print;'\n'.print;
+    ((height >= h) || {width >= w}).if {
+      "Priority 0 failed\n".print;
+      compute_size_from_prc 25;
+      ((height >= h) || {width >= w}).if {
+        "Priority 25 failed\n".print;
+        compute_size_from_prc 50;
+        ((height >= h) || {width >= w}).if {
+          "Priority 50 failed\n".print;
+          r:=0;
+          reset_size;
+          covering:=100;
+        } else {
+          covering:=50;
+          r:=get_nitem_from_prc 50;
+        };
+      } else {
+        covering:=25;
+        r:=get_nitem_from_prc 25;
+      };
+    } else {
+      covering:=0;
+      r:=list.count;
+    };
+    name.print;" menu_v_out.width: ".print;width.print;'\n'.print;
+    name.print;" menu_v_out.height: ".print;height.print;'\n'.print;
+    "width: ".print;w.print;'\n'.print;
+    "height: ".print;h.print;'\n'.print;
+    r:=(r/list.count)*100;
+    (r>0).if {
+      //"r>0\n".print;
+      area:=get_area_prc (w,h);
+      //name.print;" area := ".print;(get_area_prc (w,h)).print;"\n".print;
+      (r>area).if {
+        //"r>area\n".print;
+        result:=r-area;
+      } else {
+        //"r<area\n".print;
+        result:=0;
+      };
+    } else {
+      //"r<0\n".print;
+      result:=0;
+    };
+    result
+  )
+  [ ? {Result.in_range 0 to 100}; ];
+  
+  
+  - evaluate n:INODE width w:INTEGER height h:INTEGER : REAL_32<-
+  (
+    + result:REAL_32;
+    
+    
+    n.set_representation MENU_V_OUT;
+    "MENU_V_OUT semantic evaluation of ".print;n.name.print;" with dimensions ".print;w.print;"x".print;h.print;"\n".print;
+    (n.semantic_evaluation (w,h)).if {
+      //"MENU_V_OUT space evaluation of ".print;n.name.print;"\n".print;
+      result:=n.space_evaluation (w,h);
+    } else {
+      result:=0;
+    };
+    "MENU_V_OUT result for ".print;n.name.print;"= ".print;result.print;"%\n".print;
+    result
+  )
+  [ ? {Result.in_range 0 to 100}; ];
+  
+  
+  /*
+  // -> 1) R = Faisabilité de l'espace (% de recouvrement des items) (1:25%, 2:50%, 3:75%)
+  // -> 2) A = Note de calcul d'aire. (% sur l'écran total)
+  // Result = (R*100-A)/100  
+*/
\ No newline at end of file
diff --git a/lib/extra/gui_automatic/page.li b/lib/extra/gui_automatic/page.li
new file mode 100644
index 0000000..0979019
--- /dev/null
+++ b/lib/extra/gui_automatic/page.li
@@ -0,0 +1,95 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := PAGE;
+
+  - copyright := "Jonathan Ponte, Maxime Audrin, Benoit Sonntag";
+
+  - comment   := "Vertical menu for GUII.";
+  
+Section Inherit
+  
+  - parent_internal_inode:INTERNAL_INODE := INTERNAL_INODE;
+  
+Section Public
+
+  - representation:STRING_CONSTANT := "PAGE";
+
+  - print <-
+  (
+    "PAGE".print;
+  );
+
+  - make_representation <-
+  (
+    content:=G_PAGE.create;
+  );
+  
+  - semantic_evaluation (w,h:INTEGER) :BOOLEAN <-
+  (
+    +result:BOOLEAN;
+    
+    ((list.is_empty) && {operator='^'}).if {
+      result:=TRUE;
+    } else {
+      result:=FALSE;
+    };
+    result
+  );
+   
+  
+  - space_evaluation (w,h:INTEGER) :REAL_32 <-
+  (
+    +result:REAL_32;
+    
+    width:=G_PAGE.width_min;
+    height:=G_PAGE.height_min;
+    ((width > w) || {height > h}).if {
+      result:=0.0;
+    } else {
+      result:=100.0;
+    };
+    result
+  );
+
+- evaluate n:INODE width w:INTEGER height h:INTEGER : REAL_32<-
+  (
+     
+     +result:REAL_32;
+     
+     "PAGE semantic evaluation of ".print;n.name.print;"\n".print;
+     n.set_representation PAGE;
+     //Semantic evaluation (if the "base" son doesn't have any sons itself then it is a PAGE at 100%
+     (n.semantic_evaluation (w,h)).if {
+       ((G_PAGE.width_min <= w) || {G_PAGE.height_min <= h}).if {
+         result:=n.space_evaluation (w,h);
+       };
+     }; 
+     "PAGE result of ".print;n.name.print;"= ".print;result.print;"% \n".print;
+     result
+  );
+
+
+
+
+
+		
diff --git a/lib/extra/gui_automatic/raw_h.li b/lib/extra/gui_automatic/raw_h.li
new file mode 100644
index 0000000..c7c389f
--- /dev/null
+++ b/lib/extra/gui_automatic/raw_h.li
@@ -0,0 +1,229 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := RAW_H;
+
+  - copyright := "Jonathan Ponte, Maxime Audrin, Benoit Sonntag";
+
+  - comment   := "Vertical menu for GUII.";
+  
+Section Inherit
+  
+  - parent_internal_inode:INTERNAL_INODE := INTERNAL_INODE;
+  
+Section Public
+
+- representation:STRING_CONSTANT := "RAW_H";
++ parent:INTERNAL_INODE;
+
+  - make_representation <-
+  (
+    +expr:G_EXPR;
+
+    list.foreach {
+      i:INODE;
+
+      (i.priority>covering).if {
+        i.make_representation;
+        (expr=NULL).if {
+          expr:=i.content;
+        } else {
+          expr:=expr | i.content;
+        };
+      };
+    };
+    content:=G_RAW.create expr;
+  );
+
+//
+// Evaluation.
+//
+
+  - compute_size_from_prc p:INTEGER <-
+  [ ? {! list.is_empty}; ]
+  (
+    reset_size;
+    list.foreach {
+      i:INODE;
+      (i.priority > p).if {
+        (width,height):=G_OR_EXPR.predict_size (width,height) and (i.width,i.height);
+      };
+    };
+    (width,height):=G_RAW.predict_size (width,height);
+    //"width: ".print;bugw_screen.print;'\n'.print;
+    //"height: ".print;bugh_screen.print;'\n'.print;
+    //"raw_h.width: ".print;width.print;'\n'.print;
+    //"raw_h.height: ".print;height.print;'\n'.print;
+  );
+
+
+  - semantic_evaluation (w,h:INTEGER) :BOOLEAN<-
+  (
+    bugw_screen:=w;
+    bugh_screen:=h;
+
+    !list.is_empty && {
+      browse_group { 
+        i:INODE;
+        (i.operator != '&')
+      }
+    } && {
+      +nb:INTEGER;
+      list.foreach {
+        i:INODE;
+        +tmp:REAL_32;
+        +best_prc:REAL_32;
+        +son_width:INTEGER;
+        +son_height:INTEGER;
+        +son_connector_w:INTEGER;
+        +son_connector_h:INTEGER;
+
+        (!i.list.is_empty).if {
+          tmp:=MENU_V_OUT.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            parent:=MENU_V_OUT;
+            son_connector_w:=i.connector_width;
+            son_connector_h:=i.connector_height;
+            son_width:=i.width;
+            son_height:=i.height;
+          };
+          tmp:=MENU_H_OUT.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            parent:=MENU_H_OUT;
+            son_connector_w:=i.connector_width;
+            son_connector_h:=i.connector_height;
+            son_width:=i.width;
+            son_height:=i.height;
+          };
+          tmp:=WINDOW.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            parent:=WINDOW;
+            son_connector_w:=i.connector_width;
+            son_connector_h:=i.connector_height;
+            son_width:=i.width;
+            son_height:=i.height;
+          };
+        } else {
+          tmp:=CHECK.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            parent:=CHECK;
+            son_connector_w:=0;
+            son_connector_h:=0;
+            son_width:=i.width;
+            son_height:=i.height;
+          };
+          tmp:=ACTION.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            parent:=ACTION;
+            son_connector_w:=0;
+            son_connector_h:=0;
+            son_width:=i.width;
+            son_height:=i.height;
+          };
+        };
+
+        (best_prc > 0).if {
+          i.set_representation parent;
+          i.set_width son_width;
+          i.set_height son_height;
+          i.set_connector_w son_connector_w;
+          i.set_connector_h son_connector_h;
+          nb:=nb+1;
+        };
+      };
+      nb=list.count
+    }
+  );
+
+- space_evaluation (w,h:INTEGER) :REAL_32<-
+  (
+      + r,result,area:REAL_32;
+      // Space evaluation
+      compute_size_from_prc 0;
+      ((height > h) || {width > w}).if {
+	"Priority 0 failed\n".print;
+	compute_size_from_prc 25;
+	((height > h) || {width > w}).if {
+	   "Priority 25 failed\n".print;
+	   compute_size_from_prc 50;
+	   ((height > h) || {width > w}).if {
+		"Priority 50 failed\n".print;
+		r:=0;
+		set_height 0;
+		set_width 0;
+                covering:=100;
+           } else {
+		r:=get_nitem_from_prc 50;
+                covering:=50;
+	   };
+	} else {
+	   r:=get_nitem_from_prc 25;
+           covering:=25;
+	};
+      } else {
+	r:=list.count;
+        covering:=0;
+     };
+    r:=(r/list.count)*100;
+    (r>0).if {
+      area:=get_area_prc (w,h);
+      (r>area).if {
+        result:=r-area;
+      } else {
+        result:=0;
+      };
+    } else {
+      result:=0;
+    };
+    result
+  )
+  [ ? {Result.in_range 0 to 100}; ];
+
+
+- evaluate n:INODE width w:INTEGER height h:INTEGER : REAL_32<-
+  (
+    + result:REAL_32;
+
+    n.set_representation RAW_H;
+
+    // Semantic evaluation && Space evaluation.
+    "RAW_H semantic evaluation of ".print;n.name.print;"\n".print;
+    (n.semantic_evaluation (w,h)).if {
+      //" OK\n".print;
+      //"RAW_H space evaluation of ".print;n.name.print;"\n".print;
+      result:=n.space_evaluation (w,h);
+    } else {
+      // " FAILED\n".print;
+       result:=0;
+    };
+    "RAW_H result for ".print;n.name.print;"= ".print;result.print;"%\n".print;
+    result
+  )
+  [ ? {Result.in_range 0 to 100}; ];
+
+
+
diff --git a/lib/extra/gui_automatic/raw_v.li b/lib/extra/gui_automatic/raw_v.li
new file mode 100644
index 0000000..b811123
--- /dev/null
+++ b/lib/extra/gui_automatic/raw_v.li
@@ -0,0 +1,231 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := RAW_V;
+  
+  - copyright := "Jonathan Ponte, Maxime Audrin, Benoit Sonntag";
+  
+  - comment   := "Vertical menu for GUII.";
+  
+Section Inherit
+  
+  - parent_internal_inode:INTERNAL_INODE := INTERNAL_INODE;
+  
+Section Public
+  
+  - representation:STRING_CONSTANT := "RAW_V";
+  + content:G_WIN_OUT;
+  
+  - make_representation <-
+  (
+    +expr:G_EXPR;
+    
+    list.foreach {
+      i:INODE;
+      
+      (i.priority>covering).if {
+        i.make_representation;
+        (expr=NULL).if {
+          expr:=i.content;
+        } else {
+          expr:=expr / i.content;
+        };
+      };
+    };
+    content:=G_RAW.create expr;
+  );
+  
+  
+  //Evaluation
+  
+  - compute_size_from_prc p:INTEGER <-
+  [ ? {! list.is_empty}; ]
+  (
+    reset_size;
+    list.foreach {
+      i:INODE;
+      +w,h:INTEGER;
+      (i.priority>p).if {
+        ((i.connector_width>0) && {i.connector_height>0}).if {
+          w:=i.connector_width;
+          h:=i.connector_height;
+        } else {
+          w:=i.width;
+          h:=i.height;
+        };
+        (width,height):=G_DIV_EXPR.predict_size (width,height) and (w,h);
+      };
+    };
+    (width,height):=G_RAW.predict_size (width,height);
+    //"raw_v.width: ".print;width.print;'\n'.print;
+    //"raw_v.height: ".print;height.print;'\n'.print;
+  );
+  
+  
+  - semantic_evaluation (w,h:INTEGER) :BOOLEAN<-
+  (
+    bugw_screen:=w;
+    bugh_screen:=h;
+    
+    !list.is_empty && {
+      browse_group { 
+        i:INODE;
+        (i.operator != '&')
+      }
+    } && {
+      +nb:INTEGER;
+      list.foreach {
+        i:INODE;
+        +tmp:REAL_32;
+        +best_prc:REAL_32;
+        +son_width:INTEGER;
+        +son_height:INTEGER;
+        +son_connector_w:INTEGER;
+        +son_connector_h:INTEGER;
+        
+        (!i.list.is_empty).if {
+          tmp:=MENU_V_OUT.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            parent:=MENU_V_OUT;
+            son_connector_w:=i.connector_width;
+            son_connector_h:=i.connector_height;
+            son_width:=i.width;
+            son_height:=i.height;
+          };
+          tmp:=WINDOW.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            parent:=WINDOW;
+            son_connector_w:=i.connector_width;
+            son_connector_h:=i.connector_height;
+            son_width:=i.width;
+            son_height:=i.height;
+          };
+          tmp:=MENU_H_OUT.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            parent:=MENU_H_OUT;
+            son_connector_w:=i.connector_width;
+            son_connector_h:=i.connector_height;
+            son_width:=i.width;
+            son_height:=i.height;
+          };
+        } else {
+          tmp:=CHECK.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            parent:=CHECK;
+            son_connector_w:=i.connector_width;
+            son_connector_h:=i.connector_height;
+            son_width:=i.width;
+            son_height:=i.height;
+          };
+          tmp:=ACTION.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            parent:=ACTION;
+            son_connector_w:=i.connector_width;
+            son_connector_h:=i.connector_height;
+            son_width:=i.width;
+            son_height:=i.height;
+          };
+        };
+        
+        (best_prc > 0).if {
+          i.set_representation parent;
+          i.set_width son_width;
+          i.set_height son_height;
+          i.set_connector_w son_connector_w;
+          i.set_connector_h son_connector_h;
+          nb:=nb+1;
+        };
+      };
+      nb=list.count
+    }
+  );
+  
+  - space_evaluation (w,h:INTEGER) :REAL_32<-
+  (
+    + area,r,result:REAL_32;
+    
+    // Space evaluation
+    compute_size_from_prc 0;
+    ((height > h) || {width > w}).if {
+      "Priority 0 failed\n".print;
+      compute_size_from_prc 25;
+      ((height > h) || {width > w}).if {
+        "Priority 25 failed\n".print;
+        compute_size_from_prc 50;
+        ((height > h) || {width > w}).if {
+          "Priority 50 failed\n".print;
+          r:=0;
+          set_height 0;
+          set_width 0;
+          covering:=100;
+        } else {
+          r:=get_nitem_from_prc 50;
+          covering:=50;
+        };
+      } else {
+        r:=get_nitem_from_prc 25;
+        covering:=25;
+      };
+    } else {
+      r:=list.count;
+      covering:=0;
+    };
+    r:=(r/list.count)*100;
+    (r>0).if {
+      area:=get_area_prc (w,h);
+      (r>area).if {
+        result:=r-area;
+      } else {
+        result:=0;
+      };
+    } else {
+      result:=0;
+    };
+    result
+  )
+  [ ? {Result.in_range 0 to 100}; ];
+  
+  
+  - evaluate n:INODE width w:INTEGER height h:INTEGER : REAL_32<-
+  (
+    + result:REAL_32;
+    
+    //"w_screen".print;w.print;"\n".print;
+    //"h_screen".print;h.print;"\n".print;
+    n.set_representation RAW_V;
+    "RAW_V semantic evaluation of ".print;n.name.print;"\n".print;
+    (n.semantic_evaluation (w,h)).if {
+      //"RAW_V space evaluation of ".print;n.name.print;"\n".print;
+      result:=n.space_evaluation (w,h);
+    } else {
+      result:=0;
+    };
+    "RAW_V result for ".print;n.name.print;"= ".print;result.print;"%\n".print;
+    result
+  )
+  [ ? {Result.in_range 0 to 100}; ];
+  
diff --git a/lib/extra/gui_automatic/test.li b/lib/extra/gui_automatic/test.li
new file mode 100644
index 0000000..7a31fd7
--- /dev/null
+++ b/lib/extra/gui_automatic/test.li
@@ -0,0 +1,45 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := TEST;
+
+  - copyright := "Jonathan Ponte, Maxime Audrin, Benoit Sonntag";
+
+  - comment   := "Horizontal menu for GUII.";
+  
+Section Inherit
+  
+  - parent_internal_inode:INTERNAL_INODE := INTERNAL_INODE;
+  
+Section Public
+
+  - main<-
+  (
+    +bitmap:ABSTRACT_STRING;
+
+    bitmap:="hello";
+    (bitmap=NULL).if {
+      "NULL\n".print;
+    } else {
+      "Pas NULL\n".print;
+    };
+  );
\ No newline at end of file
diff --git a/lib/extra/gui_automatic/test_gui2.li b/lib/extra/gui_automatic/test_gui2.li
new file mode 100644
index 0000000..bcdb904
--- /dev/null
+++ b/lib/extra/gui_automatic/test_gui2.li
@@ -0,0 +1,46 @@
+Section Header
+  
+  + name        := TEST_GUI2;
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public  
+	- main <-
+	(
+		//+menu_h:G_EXPR;
+		+menu_bar:G_EXPR;
+		+file_menu:G_WIN_OUT;
+		+edit_menu:G_WIN_OUT;
+
+		VIDEO.make (800,600);
+
+		file_menu:=G_WIN_OUT.create (
+			G_RAW.create (
+				G_BUTTON.create (G_OUT.create "New")
+			) /
+			G_RAW.create (
+				G_BUTTON.create (G_OUT.create "Hello")             /
+				G_BUTTON.create (G_OUT.create "Salut les loulou!")
+			)
+		);
+
+		edit_menu:=G_WIN_OUT.create (
+			G_RAW.create (
+				G_BUTTON.create (G_OUT.create "foo1")  /
+				G_BUTTON.create (G_OUT.create "foo2") /
+				G_BUTTON.create (G_OUT.create "foo3") /
+				G_BUTTON.create (G_OUT.create "foo4")
+			)
+		);
+
+		menu_bar:=(
+			G_BUTTON.create (G_OUT.create "Fichier") connect file_menu |
+			G_BUTTON.create (G_OUT.create "Edition") connect edit_menu
+		).fix_height.fix_width;
+
+
+		INTERFACE.make VIDEO size (VIDEO.width,VIDEO.height) with (menu_bar / G_PAGE.create);
+    		INTERFACE.run;
+	);
\ No newline at end of file
diff --git a/lib/extra/gui_automatic/tool_bar.li b/lib/extra/gui_automatic/tool_bar.li
new file mode 100644
index 0000000..30b41f8
--- /dev/null
+++ b/lib/extra/gui_automatic/tool_bar.li
@@ -0,0 +1,145 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := TOOL_BAR;
+
+  - copyright := "Jonathan Ponte, Maxime Audrin, Benoit Sonntag";
+
+  - comment   := "Tool bar for GUII.";
+  
+Section Inherit
+  
+  + menu_parent:MENU_H:=MENU_H;
+  
+Section Public
+  
+ 
+  - representation:STRING_CONSTANT := "TOOL_BAR";
+
+  - print <-
+  (
+    "TOOL_BAR".print;
+  );
+
+/*  - get_menu_parent:INTERNAL_INODE <- 
+  ( + is_menu_bar:TOOL_BAR;
+
+    is_menu_bar ?= Self;
+    is_menu_bar.menu_parent
+  );*/
+
+  //
+  // Evaluation.
+  //
+
+- semantic_evaluation (w,h:REAL_32) :BOOLEAN <-
+/*  [ +is_menu_h:MENU_H;
+    +is_menu_v:MENU_V;
+
+    is_menu_h ?= get_menu_parent;
+    is_menu_v ?= get_menu_parent;
+    ? {(is_menu_h!=NULL) || {is_menu_v!=NULL}};
+  ]*/
+  (
+    bugw_screen:=w;
+    bugh_screen:=h;
+
+    !list.is_empty && {
+      browse_group { 
+        i:INODE;
+        (i.operator != '&')
+      }
+    } && {
+      +nb:INTEGER;
+      list.foreach {
+        i:INODE;
+        +tmp:REAL_32;
+        +best_prc:REAL_32;
+/*        +is_menu_h:MENU_H;
+        +is_menu_v:MENU_V;
+
+        is_menu_h ?= get_menu_parent;
+        is_menu_v ?= get_menu_parent;*/
+        (!i.list.is_empty).if {
+          tmp:=MENU_V_OUT.evaluate i width bugw_screen height bugh_screen;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            i.set_representation MENU_V_OUT;
+          };
+          tmp:=WINDOW.evaluate i width bugw_screen height bugh_screen;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            i.set_representation WINDOW;
+          };
+//        (is_menu_h!=NULL).if {
+          tmp:=DROP_DOWN_MENU.evaluate i width bugw_screen height bugh_screen;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            i.set_representation DROP_DOWN_MENU;
+          };
+//        };
+/*        (is_menu_v!=NULL).if {
+          tmp:=MENU_H_OUT.evaluate i width bugw_screen height bugh_screen;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            i.set_representation MENU_H_OUT;
+          };
+        };*/
+        } else {
+          tmp:=CHECK.evaluate i width bugw_screen height bugh_screen;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            i.set_representation CHECK;
+          };
+          tmp:=ACTION.evaluate i width bugw_screen height bugh_screen;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            i.set_representation ACTION;
+          };
+        };
+        (best_prc > 0).if {
+          nb:=nb+1;
+        };
+      };
+      nb=list.count
+    }
+  );
+
+  - evaluate n:INODE width w:REAL_32 height h:REAL_32 : REAL_32<-
+  (
+    + result:REAL_32;
+
+    // changer le parent de n pour pouvoir utiliser les méthodes spécifiques à MENU_BAR
+    n.set_representation TOOL_BAR;
+
+    // Semantic evaluation && Space evaluation.
+    "TOOL_BAR semantic evaluation of ".print;n.name.print;"\n".print;
+    (n.semantic_evaluation (w,h)).if {
+      "TOOL_BAR space evaluation of ".print;n.name.print;"\n".print;
+      result:=n.space_evaluation (w,h);
+    } else {
+       result:=0;
+    };
+    "TOOL_BAR result for ".print;n.name.print;"= ".print;result.print;"%\n".print;
+    result
+  )
+  [ ? {Result.in_range 0 to 100}; ];
diff --git a/lib/extra/gui_automatic/win_in.li b/lib/extra/gui_automatic/win_in.li
new file mode 100644
index 0000000..7b21b01
--- /dev/null
+++ b/lib/extra/gui_automatic/win_in.li
@@ -0,0 +1,112 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := WIN_IN;
+
+  - copyright := "Jonathan Ponte, Maxime Audrin, Benoit Sonntag";
+
+  - comment   := "Window_in for GUII.";
+  
+Section Inherit
+  
+  - parent_internal_inode:INTERNAL_INODE := INTERNAL_INODE;
+  
+Section Public
+
+  - representation:STRING_CONSTANT := "WIN_IN";
+
+  + win_in:G_WIN_IN;
+
+  - print <-
+  (
+	"WIN_IN".print;
+  );
+	
+  - make_representation <-
+  (
+    (content=NULL).if{
+	"connard \n".print;
+    };
+    content:=G_WIN_IN.create (width_win_in,height_win_in) with content;
+  );
+
+- semantic_evaluation_win_in n:INODE width w:INTEGER height h:INTEGER :BOOLEAN<-
+  (
+    +tmp:REAL_32;
+    +best_prc:REAL_32;
+    +parent:INTERNAL_INODE;
+    +width:INTEGER;
+    +height:INTEGER;
+
+      tmp:=PAGE.evaluate n width (G_PAGE.width_min) height (G_PAGE.height_min);
+      (tmp > best_prc).if {
+        best_prc:=tmp;
+	width:=n.width;
+	height:=n.height;
+	parent:=PAGE;
+      };
+      tmp:=MENU_V.evaluate n width (n.screen_width) height (3*n.screen_height);
+      (tmp > best_prc).if {
+        best_prc:=tmp;
+	width:=n.width;
+	height:=n.height;
+	parent:=MENU_V;
+      };
+    (best_prc > 0).if {
+	n.set_representation parent;
+	n.make_representation;
+	n.set_width width;
+	n.set_height height;
+    };
+    best_prc>0
+  );
+
+
+- evaluate n:INODE width w:INTEGER height h:INTEGER : REAL_32 <-
+  (
+     + result:REAL_32;
+     + a,b,c,d:REAL_32;
+
+     n.set_representation WIN_IN;
+     "WIN_IN semantic evaluation of ".print;n.name.print;"\n".print;
+     (n.semantic_evaluation_win_in n width 0 height 0).if {
+	a:=w;
+    	b:=h;
+    	c:=n.width;
+    	d:=n.height;
+	((c>a)&&{d>b}).if {
+		result:=(a*b)/(c*d)*100
+	};
+	((c>a)&&{d<b}).if {
+		result:=(a*d)/(c*d)*100
+	};
+	
+	((c<a)&&{d>b}).if {
+		result:=(c*b)/(c*d)*100
+	};
+       "WIN_IN result of ".print;n.name.print;"= ".print;result.print;"% \n".print;
+       n.set_width_win_in w;
+       n.set_height_win_in h;
+       n.set_representation_win_in WIN_IN;
+     };
+     result
+  );
diff --git a/lib/extra/gui_automatic/window.li b/lib/extra/gui_automatic/window.li
new file mode 100644
index 0000000..02a8c4a
--- /dev/null
+++ b/lib/extra/gui_automatic/window.li
@@ -0,0 +1,213 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := WINDOW;
+
+  - copyright := "Jonathan Ponte, Maxime Audrin, Benoit Sonntag";
+
+  - comment   := "Vertical menu for GUII.";
+  
+Section Inherit
+  
+  - parent_internal_inode:INTERNAL_INODE := INTERNAL_INODE;
+  
+Section Public
+
+  - representation:STRING_CONSTANT := "WINDOW";
+
+  + win_out:G_WIN_OUT;
+
+  - print <-
+  (
+    "WINDOW".print;
+  );
+
+  - make_representation <-
+  (
+    +expr:G_EXPR;
+
+    list.foreach {
+      i:INODE;
+
+      (i.priority>covering).if {
+        (expr=NULL).if {
+          expr:=i.content;
+        } else {
+          expr:=expr / i.content;
+        };
+      };
+    };
+    win_out:=G_WIN_OUT.create name with expr;
+    content:=(G_BUTTON.create (G_OUT.create name) connect win_out).fix_width.fix_height;
+  );
+
+  - depth_node n:INODE of base:INODE from depth:INTEGER :INTEGER <-
+  (
+      +result:INTEGER;
+      +depth2:INTEGER;
+
+      depth2:=depth+1;
+      (n.name=base.name).if {
+        result:=depth2;
+      } else {
+        (!base.list.is_empty).if {
+          base.list.foreach {
+            i:INODE;
+            result:=result+depth2+(depth_node n of i from depth2);
+          };
+        } else {
+          result:=0;
+        };
+      };
+
+      result
+  );
+
+  - compute_size_from_prc p:INTEGER <-
+  [ ? {! list.is_empty}; ]
+  (
+    //attention ce calcul n'est pas le bon, c'est les dimensions au max
+    //les bonnes dimensions se calculent en fonction du placement des items
+    reset_size;
+    list.foreach {
+      i:INODE;
+      (i.priority > p).if {
+        height:=height+i.height;
+        width:=width+i.width;
+      };
+    };
+    (width,height):=G_WIN_OUT.predict_size (height,width) with_title TRUE;
+    (connector_width,connector_height):=G_BUTTON.predict_size (G_OUT.predict_size name);
+  );
+
+- semantic_evaluation (w,h:INTEGER) :BOOLEAN<-
+  (
+    bugw_screen:=w;
+    bugh_screen:=h;
+
+    !list.is_empty &&
+    {depth > 2} &&
+    {
+      +nb:INTEGER;
+
+      list.foreach {
+        i:INODE;
+        +tmp:REAL_32;
+        +best_prc:REAL_32;
+
+        (!i.list.is_empty).if {
+          tmp:=PAGE.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            i.set_representation PAGE;
+          };
+          tmp:=MENU_V.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            i.set_representation MENU_BAR;
+          };
+          tmp:=MENU_H.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            i.set_representation MENU_H;
+          };
+          tmp:=DROP_DOWN_MENU.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            i.set_representation DROP_DOWN_MENU;
+          };
+        } else {
+          tmp:=CHECK.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            i.set_representation CHECK;
+          };
+          tmp:=ACTION.evaluate i width screen_width height screen_height;
+          (tmp > best_prc).if {
+            best_prc:=tmp;
+            i.set_representation ACTION;
+          };
+        };
+        (best_prc > 0).if {
+          nb:=nb+1;
+        };
+      };
+      nb=list.count
+    }
+  );
+
+- space_evaluation (w,h:INTEGER) :REAL_32<-
+  [? {!list.is_empty}; ]
+  (
+      + area,r,result:REAL_32;
+
+      // Space evaluation
+      compute_size_from_prc 0;
+    ((height >= h) || {width >= w}).if {
+      "Priority 0 failed\n".print;
+      compute_size_from_prc 25;
+      ((height >= h) || {width >= w}).if {
+        "Priority 25 failed\n".print;
+        compute_size_from_prc 50;
+        ((height >= h) || {width >= w}).if {
+          "Priority 50 failed\n".print;
+		r:=0;
+		set_height 0;
+		set_width 0;
+           } else {
+		covering:=50;
+		r:=get_nitem_from_prc 50;
+	   };
+	} else {
+	   covering:=25;
+	   r:=get_nitem_from_prc 25;
+	};
+      } else {
+	covering:=0;
+	r:=list.count;
+     };
+     r:=(r/list.count)*100;
+     area:=get_area_prc (w,h);
+     //name.print;" area := ".print;(get_area_prc (w,h)).print;"\n".print;
+     (r>area).if {
+       result:=r-area;
+     } else {
+       result:=0;
+     };
+    result
+  );
+
+- evaluate n:INODE width w:INTEGER height h:INTEGER : REAL_32<-
+  (
+     + result:REAL_32;
+
+     n.set_representation WINDOW;
+     "WINDOW semantic evaluation of ".print;n.name.print;"\n".print;
+     //Semantic evaluation: if the "base" son doesn't have any sons itself then it is a PAGE at 100%
+     (n.semantic_evaluation (w,h)).if {
+      //"WINDOW space evaluation of ".print;n.name.print;"\n".print;
+       result:=n.space_evaluation (w,h);
+     };
+     "WINDOW result of ".print;n.name.print;"= ".print;result.print;"% \n".print;
+     result
+  );
+
diff --git a/lib/extra/testing/unit_test.li b/lib/extra/testing/unit_test.li
new file mode 100644
index 0000000..8cf3af6
--- /dev/null
+++ b/lib/extra/testing/unit_test.li
@@ -0,0 +1,240 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+
+  + name := UNIT_TEST;
+
+  - copyright := "2009 Jeremy Cowgar";
+
+  - comment := "Unit testing framework for Lisaac";
+
+Section Inherit
+
+  - parent_object:OBJECT := OBJECT;
+
+Section Private
+
+  + pass_count:REAL_32 := 0;
+  + fail_count:REAL_32 := 0;
+  + verbose:BOOLEAN := FALSE;
+  + suite_name:ABSTRACT_STRING;
+  + section_name:ABSTRACT_STRING;
+
+  - usage <-
+  // Display common usage message on console
+  (
+    ("Usage: " + (COMMAND_LINE.item 0) + " [-v]").printline;
+    "  -v    verbose reporting".println;
+    OBJECT.die_with_code 1;
+  );
+
+  - bar <-
+  // Print a double line bar for visual separation.
+  (
+    "\n==============================\n".print;
+  );
+
+  - minibar <-
+  // Print a single line bar for visual separation.
+  (
+    "\n   ---------------------------\n".print;
+  );
+
+Section Public
+  // Setup
+
+  - init <-
+  // Initialize unit testing. This currently looks for
+  // command line parameters and configures itself
+  // accordingly.
+  (
+    + arg:ABSTRACT_STRING;
+
+    1.to (COMMAND_LINE.count-1) do { idx:INTEGER;
+      arg := (COMMAND_LINE.item idx);
+
+      (arg == "-v").if {
+        set_verbose TRUE;
+      } else {
+        usage;
+      };
+    };
+  );
+
+  - set_verbose verbose_mode:BOOLEAN <-
+  // When verbose is true, suite names, section names, passed and
+  // failed tests will all be reported. When verbose is false, only
+  // failed tests will be reported.
+  (
+    verbose := verbose_mode;
+  );
+
+Section Public
+  // Sectioning
+
+  - suite name:ABSTRACT_STRING <-
+  // Set the major suite name
+  (
+    suite_name := name;
+
+    verbose.if {
+      ("\n" + name).print;
+      bar;
+    };
+  );
+
+  - section name:ABSTRACT_STRING <-
+  // Set the minor section of a suite
+  (
+    section_name := name;
+
+    verbose.if {
+      ("\n   " + name).print;
+      minibar;
+    };
+  );
+
+Section Public
+  // Tests
+
+  - test_failed name:ABSTRACT_STRING <-
+  // Fail a test with no data report
+  (
+    fail_count := fail_count + 1;
+
+    (verbose = FALSE).if {
+      (suite_name + ":" + section_name + " -> ").print;
+    } else {
+      "   ".print;
+    };
+
+    (name + "... failed, no data given\n").print;
+  );
+
+  - test_failed name:ABSTRACT_STRING got got:ABSTRACT_STRING expected expected:ABSTRACT_STRING <-
+  // Fail a test
+  (
+    fail_count := fail_count + 1;
+
+    (verbose = FALSE).if {
+      (suite_name + ":" + section_name + " -> ").print;
+    } else {
+      "   ".print;
+    };
+
+    (name + "... failed: expected '" + expected + "' got '" + got + "'\n").print;
+  );
+
+  - test_passed name:ABSTRACT_STRING <-
+  // Pass a test
+  (
+    pass_count := pass_count + 1;
+
+    verbose.if {
+      ("   " + name + "... passed\n").print;
+    };
+  );
+
+  - test name:ABSTRACT_STRING integer got:INTEGER equals expected:INTEGER <-
+  // Test equality between two INTEGER values, fail on not equal
+  (
+    (expected = got).if {
+      test_passed name;
+    } else {
+      test_failed name got (got.to_string) expected (expected.to_string);
+    };
+  );
+
+  - test name:ABSTRACT_STRING real_16_16 got:REAL_16_16 equals expected:REAL_16_16 <-
+  // Test equality between two REAL_16_16 values, fail on not equal
+  (
+    (expected = got).if {
+      test_passed name;
+    } else {
+      test_failed name got (got.to_string) expected (expected.to_string);
+    }
+  );
+
+  - test name:ABSTRACT_STRING boolean got:BOOLEAN equals expected:BOOLEAN <-
+  // Test equality between two BOOLEAN values, fail on not equal
+  (
+    (got = expected).if {
+      test_passed name;
+    } else {
+      test_failed name got (got.to_string) expected (expected.to_string);
+    };
+  );
+
+  - test name:ABSTRACT_STRING character got:CHARACTER equals expected:CHARACTER <-
+  // Test equality between two CHARACTER values, fail on not equal
+  (
+    (got = expected).if {
+      test_passed name;
+    } else {
+      test_failed name got (got.to_string) expected (expected.to_string);
+    };
+  );
+
+  - test name:ABSTRACT_STRING string got:ABSTRACT_STRING equals expected:ABSTRACT_STRING <-
+  // Test equality between two STRING values, fail on not equal
+  (
+    (got == expected).if {
+      test_passed name;
+    } else {
+      test_failed name got got expected expected;
+    };
+  );
+
+Section Public
+  // Reporting
+
+  - test_results <-
+  // Print the test results to the screen. If fail_count > 0 then
+  // the program will exit with an error level of 1.
+  (
+    + total:REAL_32;
+    + success:REAL_32;
+
+    total := pass_count + fail_count;
+    success := pass_count / total;
+
+    verbose.if {
+      "\nResults".print;
+      bar;
+      "  Passed: ".print; pass_count.to_integer.print; "\n".print;
+      "  Failed: ".print; fail_count.to_integer.print; "\n".print;
+      "   Total: ".print; total.to_integer.print; "\n".print;
+      " Success: ".print; (success * 100).to_integer.print; "%\n".print;
+    } else {
+      (
+        "\n" +
+        "Pass: " + pass_count.to_integer.to_string +
+        " Fail: " + fail_count.to_integer.to_string +
+        " Total: " + total.to_integer.to_string +
+        " Success: " + (success * 100).to_integer.to_string + "%\n"
+      ).print;
+    };
+
+    (fail_count > 0).if {
+      OBJECT.die_with_code 1;
+    };
+  );
diff --git a/lib/unstable/expat-binding/Libexpat.sxp b/lib/unstable/expat-binding/Libexpat.sxp
new file mode 100644
index 0000000..34e92f1
--- /dev/null
+++ b/lib/unstable/expat-binding/Libexpat.sxp
@@ -0,0 +1,16 @@
+(
+    default(
+        call(lib)
+        rename(
+            prefix: XML_
+        )
+    )
+    entry(lib
+        path(
+        public:
+            "src"
+        private:
+            "src/private")
+        cflags(-lexpat)
+    )
+)
diff --git a/lib/unstable/expat-binding/src/attribute.li b/lib/unstable/expat-binding/src/attribute.li
new file mode 100644
index 0000000..0d09448
--- /dev/null
+++ b/lib/unstable/expat-binding/src/attribute.li
@@ -0,0 +1,60 @@
+Section Header
+
+  + name := Expanded ATTRIBUTE;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  // Copyright (c) 2008 Mildred Ki'Lya <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+Section Insert
+
+  + parent :Expanded OBJECT;
+
+Section Public
+
+  + name  :ABSTRACT_STRING;
+  + value :ABSTRACT_STRING;
+
+  - set_name  n:ABSTRACT_STRING <- name  := n;
+  - set_value v:ABSTRACT_STRING <- value := v;
+
+  - make (n, v:ABSTRACT_STRING) <-
+  (
+    name  := n;
+    value := v;
+  );
+
+  - create (n, v:ABSTRACT_STRING) :SELF <-
+  ( + res :SELF;
+    res := clone;
+    res.make (n, v);
+    res
+  );
+
+  - create n:ABSTRACT_STRING containing v:ABSTRACT_STRING <- create (n, v);
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/expat-binding/src/content_quant.li b/lib/unstable/expat-binding/src/content_quant.li
new file mode 100644
index 0000000..f1f3f8a
--- /dev/null
+++ b/lib/unstable/expat-binding/src/content_quant.li
@@ -0,0 +1,50 @@
+Section Header
+
+  + name := CONTENT_QUANT;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  - import := INTEGER;
+  - export := INTEGER;
+
+  // Copyright (c) 2008 Mildred Ki'Lya <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+  - external := `#include <expat.h>`;
+  - type := `int`;
+
+Section Insert
+
+  - parent :Expanded ENUM;
+
+Section Public
+
+  - none :CONTENT_QUANT := create_code (`XML_CQUANT_NONE`:INTEGER);
+  - opt  :CONTENT_QUANT := create_code (`XML_CQUANT_OPT` :INTEGER);
+  - rep  :CONTENT_QUANT := create_code (`XML_CQUANT_REP` :INTEGER);
+  - plus :CONTENT_QUANT := create_code (`XML_CQUANT_PLUS`:INTEGER);
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/expat-binding/src/content_type.li b/lib/unstable/expat-binding/src/content_type.li
new file mode 100644
index 0000000..3818131
--- /dev/null
+++ b/lib/unstable/expat-binding/src/content_type.li
@@ -0,0 +1,52 @@
+Section Header
+
+  + name := CONTENT_TYPE;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  - import := INTEGER;
+  - export := INTEGER;
+
+  // Copyright (c) 2008 Mildred Ki'Lya <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+  - external := `#include <expat.h>`;
+  - type := `int`;
+
+Section Insert
+
+  - parent :Expanded ENUM;
+
+Section Public
+
+  - none  :CONTENT_TYPE := create_code (`XML_CTYPE_EMPTY` :INTEGER);
+  - opt   :CONTENT_TYPE := create_code (`XML_CTYPE_ANY`   :INTEGER);
+  - mixed :CONTENT_TYPE := create_code (`XML_CTYPE_MIXED` :INTEGER);
+  - name  :CONTENT_TYPE := create_code (`XML_CTYPE_NAME`  :INTEGER);
+  - choice:CONTENT_TYPE := create_code (`XML_CTYPE_CHOICE`:INTEGER);
+  - seq   :CONTENT_TYPE := create_code (`XML_CTYPE_SEQ`   :INTEGER);
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/expat-binding/src/context.li b/lib/unstable/expat-binding/src/context.li
new file mode 100644
index 0000000..a555df1
--- /dev/null
+++ b/lib/unstable/expat-binding/src/context.li
@@ -0,0 +1,57 @@
+Section Header
+
+  + name := CONTEXT;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  // Copyright (c) 2008 Mildred Ki'Lya <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+Section Inherit
+
+  + parent :Expanded OBJECT;
+
+Section Public
+
+  - create (s:STRING, o, sz: INTEGER) :SELF <-
+  ( + res :SELF;
+    res := clone;
+    res.make (s, o, sz);
+    res
+  );
+
+  - make (s:STRING, o, sz: INTEGER) <-
+  (
+    string := s;
+    offset := o;
+    size   := sz;
+  );
+
+  + string :STRING;
+  + offset :INTEGER;
+  + size   :INTEGER;
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/expat-binding/src/encoding.li.unactive b/lib/unstable/expat-binding/src/encoding.li.unactive
new file mode 100644
index 0000000..6d73ad0
--- /dev/null
+++ b/lib/unstable/expat-binding/src/encoding.li.unactive
@@ -0,0 +1,138 @@
+Section Header
+
+  + name := ENCODING;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  // Copyright (c) 2008 Mildred Ki'Lya <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+  - external := `#include <expat.h>`;
+
+Section Inherit
+
+  + parent :Expanded EXPAT_OBJECT;
+
+Section Private
+
+  + encoding :POINTER;
+
+Section PARSER
+
+  - create p:POINTER :SELF <-
+  ( + res :SELF;
+    res := clone;
+    res.make p;
+    res
+  );
+
+  - make p:POINTER <- encoding := p;
+
+  - from_pointer p:POINTER :SELF <- create p;
+
+Section Public
+
+  - map :NATIVE_ARRAY(INTEGER) <-
+  ( + e :POINTER;
+    e := encoding;
+    `((XML_Encoding*) @e)->map`:NATIVE_ARRAY(INTEGER)
+  );
+
+  - set_convert b:BLOCK <-
+  ( + p :POINTER;
+    convert_block := b;
+    set_data to_pointer;
+    p := encoding;
+    `((XML_Encoding*) @p)->convert = `;
+  );
+
+  - set_release b:BLOCK <-
+  ( + p :POINTER;
+    release_block := b;
+    set_data to_pointer;
+    p := encoding;
+    `((XML_Encoding*) @p)->release = `;
+  );
+
+//   - data :POINTER <-
+//   ( + e :POINTER;
+//     e := encoding;
+//     `((XML_Encoding*) @e)->data`:POINTER
+//   );
+
+//   - convert :POINTER <-
+//   ( + e :POINTER;
+//     e := encoding;
+//     `((XML_Encoding*) @e)->convert`:POINTER
+//   );
+
+//   - release :POINTER <-
+//   ( + e :POINTER;
+//     e := encoding;
+//     `((XML_Encoding*) @e)->release`:POINTER
+//   );
+
+Section Private
+
+  - set_data p:POINTER <-
+  ( + e :POINTER;
+    e := encoding;
+    `((XML_Encoding*) @e)->data = @p`;
+  );
+
+//   - set_convert p:POINTER <-
+//   ( + e :POINTER;
+//     e := encoding;
+//     `((XML_Encoding*) @e)->convert = @p`;
+//   );
+
+//   - set_release p:POINTER <-
+//   ( + e :POINTER;
+//     e := encoding;
+//     `((XML_Encoding*) @e)->release = @p`;
+//   );
+
+Section External
+
+  - lisaac_expat_encoding_convert (ud:POINTER,
+      s:NATIVE_ARRAY(CHARACTER)) :INTEGER <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.convert_block.value s
+  );
+
+  - lisaac_expat_encoding_release (d:POINTER) <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.release_block.value;
+  );
+
+Section Private
+
+  + convert_block :BLOCK := { s:NATIVE_ARRAY(CHARACTER) ; INTEGER };
+  + release_block :BLOCK := {};
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/expat-binding/src/error.li b/lib/unstable/expat-binding/src/error.li
new file mode 100644
index 0000000..6da56e2
--- /dev/null
+++ b/lib/unstable/expat-binding/src/error.li
@@ -0,0 +1,95 @@
+Section Header
+
+  + name := ERROR;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  - import := INTEGER;
+  - export := INTEGER, STRING;
+
+  // Copyright (c) 2008 Mildred Ki'Lya <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+  - external := `#include <expat.h>`;
+  - type := `int`;
+
+Section Insert
+
+  - parent :Expanded ENUM;
+
+  - parent_expat_object :Expanded EXPAT_OBJECT;
+
+Section Public
+
+  - none                     :ERROR := create_code (`XML_ERROR_NONE`:INTEGER);
+  - no_memory                :ERROR := create_code (`XML_ERROR_NO_MEMORY`:INTEGER);
+  - syntax                   :ERROR := create_code (`XML_ERROR_SYNTAX`:INTEGER);
+  - no_elements              :ERROR := create_code (`XML_ERROR_NO_ELEMENTS`:INTEGER);
+  - invalid_token            :ERROR := create_code (`XML_ERROR_INVALID_TOKEN`:INTEGER);
+  - unclosed_token           :ERROR := create_code (`XML_ERROR_UNCLOSED_TOKEN`:INTEGER);
+  - partial_char             :ERROR := create_code (`XML_ERROR_PARTIAL_CHAR`:INTEGER);
+  - tag_mismatch             :ERROR := create_code (`XML_ERROR_TAG_MISMATCH`:INTEGER);
+  - duplicate_attribute      :ERROR := create_code (`XML_ERROR_DUPLICATE_ATTRIBUTE`:INTEGER);
+  - junk_after_doc_element   :ERROR := create_code (`XML_ERROR_JUNK_AFTER_DOC_ELEMENT`:INTEGER);
+  - param_entity_ref         :ERROR := create_code (`XML_ERROR_PARAM_ENTITY_REF`:INTEGER);
+  - undefined_entity         :ERROR := create_code (`XML_ERROR_UNDEFINED_ENTITY`:INTEGER);
+  - recursive_entity_ref     :ERROR := create_code (`XML_ERROR_RECURSIVE_ENTITY_REF`:INTEGER);
+  - async_entity             :ERROR := create_code (`XML_ERROR_ASYNC_ENTITY`:INTEGER);
+  - bad_char_ref             :ERROR := create_code (`XML_ERROR_BAD_CHAR_REF`:INTEGER);
+  - binary_entity_ref        :ERROR := create_code (`XML_ERROR_BINARY_ENTITY_REF`:INTEGER);
+  - attribute_external_entity_ref :ERROR := create_code (`XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF`:INTEGER);
+  - misplaced_xml_pi         :ERROR := create_code (`XML_ERROR_MISPLACED_XML_PI`:INTEGER);
+  - unknown_encoding         :ERROR := create_code (`XML_ERROR_UNKNOWN_ENCODING`:INTEGER);
+  - incorrect_encoding       :ERROR := create_code (`XML_ERROR_INCORRECT_ENCODING`:INTEGER);
+  - unclosed_cdata_section   :ERROR := create_code (`XML_ERROR_UNCLOSED_CDATA_SECTION`:INTEGER);
+  - external_entity_handling :ERROR := create_code (`XML_ERROR_EXTERNAL_ENTITY_HANDLING`:INTEGER);
+  - not_standalone           :ERROR := create_code (`XML_ERROR_NOT_STANDALONE`:INTEGER);
+  - unexpected_state         :ERROR := create_code (`XML_ERROR_UNEXPECTED_STATE`:INTEGER);
+  - entity_declared_in_pe    :ERROR := create_code (`XML_ERROR_ENTITY_DECLARED_IN_PE`:INTEGER);
+  - feature_requires_xml_dtd :ERROR := create_code (`XML_ERROR_FEATURE_REQUIRES_XML_DTD`:INTEGER);
+  - cant_change_feature_once_parsing :ERROR := create_code (`XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING`:INTEGER);
+  - unbound_prefix           :ERROR := create_code (`XML_ERROR_UNBOUND_PREFIX`:INTEGER);
+  - undeclaring_prefix       :ERROR := create_code (`XML_ERROR_UNDECLARING_PREFIX`:INTEGER);
+  - incomplete_pe            :ERROR := create_code (`XML_ERROR_INCOMPLETE_PE`:INTEGER);
+  - xml_decl                 :ERROR := create_code (`XML_ERROR_XML_DECL`:INTEGER);
+  - text_decl                :ERROR := create_code (`XML_ERROR_TEXT_DECL`:INTEGER);
+  - publicid                 :ERROR := create_code (`XML_ERROR_PUBLICID`:INTEGER);
+  - suspended                :ERROR := create_code (`XML_ERROR_SUSPENDED`:INTEGER);
+  - not_suspended            :ERROR := create_code (`XML_ERROR_NOT_SUSPENDED`:INTEGER);
+  - aborted                  :ERROR := create_code (`XML_ERROR_ABORTED`:INTEGER);
+  - finished                 :ERROR := create_code (`XML_ERROR_FINISHED`:INTEGER);
+  - suspend_pe               :ERROR := create_code (`XML_ERROR_SUSPEND_PE`:INTEGER);
+  - reserved_prefix_xml      :ERROR := create_code (`XML_ERROR_RESERVED_PREFIX_XML`:INTEGER);
+  - reserved_prefix_xmlns    :ERROR := create_code (`XML_ERROR_RESERVED_PREFIX_XMLNS`:INTEGER);
+  - reserved_namespace_uri   :ERROR := create_code (`XML_ERROR_RESERVED_NAMESPACE_URI`:INTEGER);
+
+  - to_string :STRING <-
+  ( + self :SELF;
+    self := Self;
+    from_external_copy (`XML_ErrorString(@self)`:NATIVE_ARRAY(CHARACTER))
+  );
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on; dynamic-word-wrap off;
diff --git a/lib/unstable/expat-binding/src/expat.li b/lib/unstable/expat-binding/src/expat.li
new file mode 100644
index 0000000..d8f1170
--- /dev/null
+++ b/lib/unstable/expat-binding/src/expat.li
@@ -0,0 +1,84 @@
+Section Header
+
+  + name := EXPAT;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  // Copyright (c) 2008 Mildred Ki'Lya <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+  - external := `#include <expat.h>`;
+
+Section Inherit
+
+  + parent :Expanded EXPAT_OBJECT;
+
+Section Private
+
+/*
+  - get_version <-
+  (
+    `struct XML_Expat_Version ver;
+    ver = XML_ExpatVersionInfo()`;
+    version_major := `ver.major`:INTEGER;
+    version_minor := `ver.minor`:INTEGER;
+    version_micro := `ver.micro`:INTEGER;
+  );
+*/
+
+Section Public
+
+  - version :STRING <-
+  (
+    version := from_external_copy (`XML_ExpatVersion()`:NATIVE_ARRAY(LCHAR));
+    version
+  );
+
+/*
+  - version_major :INTEGER <-
+  (
+    get_version;
+    version_major
+  );
+
+  - version_minor :INTEGER <-
+  (
+    get_version;
+    version_minor
+  );
+
+  - version_micro :INTEGER <-
+  (
+    get_version;
+    version_micro
+  );
+*/
+
+  - version_major :INTEGER <- `XML_MAJOR_VERSION`:INTEGER;
+  - version_minor :INTEGER <- `XML_MINOR_VERSION`:INTEGER;
+  - version_micro :INTEGER <- `XML_MICRO_VERSION`:INTEGER;
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/expat-binding/src/handlers.li b/lib/unstable/expat-binding/src/handlers.li
new file mode 100644
index 0000000..92662c2
--- /dev/null
+++ b/lib/unstable/expat-binding/src/handlers.li
@@ -0,0 +1,94 @@
+Section Header
+
+  + name := HANDLERS;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  // Copyright (c) 2008 Mildred Ki'Lya <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+Section Inherit
+
+  + parent :Expanded EXPAT_OBJECT;
+
+Section Public
+
+  + parser :PARSER;
+
+  - start_element (name:ABSTRACT_STRING, atts:FAST_ARRAY(ABSTRACT_STRING)) <- ();
+  - end_element (name:ABSTRACT_STRING) <- ();
+  - character_data (s:ABSTRACT_STRING) <- ();
+  - processing_instruction (target:ABSTRACT_STRING, data:ABSTRACT_STRING) <- ();
+  - comment ( data:ABSTRACT_STRING) <- ();
+  - start_cdata_section <- ();
+  - end_cdata_section <- ();
+  - default (s:ABSTRACT_STRING) <- ();
+  - external_entity_ref (
+      context  :ABSTRACT_STRING,
+      base     :ABSTRACT_STRING,
+      system_id:ABSTRACT_STRING,
+      public_id:ABSTRACT_STRING) :STATUS <- STATUS.ok;
+  - skipped_entity (entity_name:ABSTRACT_STRING, is_parameter_entity:BOOLEAN) <- ();
+  - unknown_encoding (name:ABSTRACT_STRING, info:ENCODING) :STATUS <- STATUS.error;
+  - start_namespace_decl (prefix:ABSTRACT_STRING, uri:ABSTRACT_STRING) <- ();
+  - end_namespace_decl (prefix:ABSTRACT_STRING) <- ();
+  - xml_decl (versio:ABSTRACT_STRING, encoding:ABSTRACT_STRING, standalone:INTEGER) <- ();
+  - start_doctype_decl (
+      doctype_name:ABSTRACT_STRING,
+      sysid       :ABSTRACT_STRING,
+      pubid       :ABSTRACT_STRING,
+      has_internal_subset:BOOLEAN) <- ();
+  - end_doctype_decl <- ();
+  - element_decl (name:ABSTRACT_STRING, model:POINTER) <- ();
+  - attlist_decl (
+      elname  :ABSTRACT_STRING,
+      attname :ABSTRACT_STRING,
+      att_type:ABSTRACT_STRING,
+      dflt    :ABSTRACT_STRING,
+      isrequired:BOOLEAN) <- ();
+  - entity_decl (
+      entity_name       :ABSTRACT_STRING,
+      is_parameter_entry:BOOLEAN,
+      value             :ABSTRACT_STRING,
+      base              :ABSTRACT_STRING,
+      system_id         :ABSTRACT_STRING,
+      public_id         :ABSTRACT_STRING,
+      notation_name     :ABSTRACT_STRING) <- ();
+  - unparsed_entity_decl (
+      entity_name       :ABSTRACT_STRING,
+      base              :ABSTRACT_STRING,
+      system_id         :ABSTRACT_STRING,
+      public_id         :ABSTRACT_STRING,
+      notation_name     :ABSTRACT_STRING) <- ();
+  - notation_decl (
+      notation_name     :ABSTRACT_STRING,
+      base              :ABSTRACT_STRING,
+      system_id         :ABSTRACT_STRING,
+      public_id         :ABSTRACT_STRING) <- ();
+  - not_standalone :INTEGER <- STATUS.ok;
+
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/expat-binding/src/parser.li.unactive b/lib/unstable/expat-binding/src/parser.li.unactive
new file mode 100644
index 0000000..17c308c
--- /dev/null
+++ b/lib/unstable/expat-binding/src/parser.li.unactive
@@ -0,0 +1,612 @@
+Section Header
+
+  + name := PARSER;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  // Copyright (c) 2008 Mildred Ki'Lya <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+  - external := `#include <expat.h>`;
+
+Section Inherit
+
+  + parent :Expanded EXPAT_OBJECT;
+
+Section Private
+
+  + parser :POINTER;
+
+  - reset <-
+  ( + p:POINTER;
+    + self :POINTER;
+    p := parser;
+    self := Self;
+    `XML_SetUserData(@p, @self)`;
+    `XML_SetExternalEntityRefHandlerArg(@p, @self);`;
+  );
+
+Section Public
+
+  + handlers :HANDLERS := HANDLERS;
+
+  - set_handlers h:HANDLERS <- handlers := h;
+
+  - create encoding:ABSTRACT_STRING :SELF <-
+  ( + res :SELF;
+    res := clone;
+    res.make encoding;
+    res
+  );
+
+  - create_ns (encoding:ABSTRACT_STRING, sep:CHAR) :SELF <-
+  ( + res :SELF;
+    res := clone;
+    res.make_ns (encoding, sep);
+    res
+  );
+
+  - create_mm encoding:ABSTRACT_STRING :SELF <- not_yet_implemented;
+
+  - make encoding:ABSTRACT_STRING <-
+  ( + enc :NATIVE_ARRAY(CHAR);
+    enc := to_external encoding;
+    parser := `XML_ParserCreate(@enc)`:POINTER;
+    reset;
+  );
+
+  - make_ns (encoding:ABSTRACT_STRING, sep:CHAR) <-
+  ( + enc :NATIVE_ARRAY(CHAR);
+    enc := to_external encoding;
+    parser := `XML_ParserCreateNS(@enc, @sep)`:POINTER;
+    reset;
+  );
+
+  - free <-
+  ( + p:POINTER;
+    p := parser;
+    `XML_ParserFree(@p)`;
+  );
+
+  - reset_with encoding:ABSTRACT_STRING :BOOLEAN <-
+  ( + p   :POINTER;
+    + enc :NATIVE_ARRAY(CHAR);
+    + res :BOOLEAN;
+    enc := to_external encoding;
+    p := parser;
+    res := `XML_ParserReset(@p, @enc) == XML_TRUE`:(BOOLEAN);
+    subscriptions := 0;
+    reset;
+    res
+  );
+
+  - parse (buf:ABSTRACT_STRING, is_final:BOOLEAN) :STATUS <-
+  ( + p :POINTER;
+    + s :NATIVE_ARRAY(CHARACTER);
+    + n :INTEGER;
+    p := parser;
+    s := buf.to_external;
+    n := buf.count;
+    `XML_Parse(@p, @s, @n, @is_final)`:STATUS
+  );
+
+  - parse_buffer (len:INTEGER, is_final:BOOLEAN) :STATUS <-
+  ( + p :POINTER;
+    p := parser;
+    `XML_ParseBuffer(@p, @len, @is_final)`:STATUS
+  );
+
+  - get_buffer len:INTEGER :NATIVE_ARRAY(CHARACTER) <-
+  ( + p :POINTER;
+    p := parser;
+    `XML_GetBuffer(@p, @len)`:NATIVE_ARRAY(CHARACTER)
+  );
+
+  - stop_parser resumable:BOOLEAN :STATUS <-
+  ( + p :POINTER;
+    p := parser;
+    `XML_StopParser(@p, @resumable)`:STATUS
+  );
+
+  - resume_parser :STATUS <-
+  ( + p :POINTER;
+    p := parser;
+    `XML_ResumeParser(@p)`:STATUS
+  );
+
+  - get_parsing_status :PARSING_STATUS <-
+  ( + p :POINTER;
+    p := parser;
+    `XML_ParsingStatus status`;
+    `XML_GetParsingStatus(@p, &status)`;
+    (`&status`:NATIVE_ARRAY(PARSING_STATUS)).item 0;
+  );
+
+  - get_error_code :ERROR <-
+  ( + p :POINTER;
+    p := parser;
+    `XML_GetErrorCode(@p)`:ERROR
+  );
+
+  - get_current_byte_index :INTEGER <-
+  ( + p :POINTER;
+    p := parser;
+    `XML_GetCurrentByteIndex(@p)`:INTEGER
+  );
+
+  - get_current_line_number :INTEGER <-
+  ( + p :POINTER;
+    p := parser;
+    `XML_GetCurrentLineNumber(@p)`:INTEGER
+  );
+
+  - get_current_column_number :INTEGER <-
+  ( + p :POINTER;
+    p := parser;
+    `XML_GetCurrentColumnNumber(@p)`:INTEGER
+  );
+
+  - get_current_byte_count :INTEGER <-
+  ( + p :POINTER;
+    p := parser;
+    `XML_GetCurrentByteCount(@p)`:INTEGER
+  );
+
+  - get_input_context :CONTEXT <-
+  ( + p :POINTER;
+    + s :NATIVE_ARRAY(CHARACTER);
+    p := parser;
+    `int o, sz;`;
+    s := `XML_GetInputContext(@p, &o, &sz)`:NATIVE_ARRAY(CHARACTER);
+    CONTEXT.create (from_external_copy s, (`o`:INTEGER), (`sz`:INTEGER))
+  );
+
+  - set_base base:ABSTRACT_STRING :STATUS <-
+  ( + p :POINTER;
+    + na :NATIVE_ARRAY(CHAR);
+    p := parser;
+    na := to_external base;
+    `XML_SetBase(@p, @na)`:STATUS
+  );
+
+  - get_base :ABSTRACT_STRING <-
+  ( + p :POINTER;
+    p := parser;
+    from_external (`XML_GetBase(@p)`:NATIVE_ARRAY(CHAR))
+  );
+
+  - get_specified_attribute_count :INTEGER <-
+  ( + p :POINTER;
+    p := parser;
+    `XML_GetSpecifiedAttributeCount(@p)`:INTEGER
+  );
+
+  - get_id_attribute_index :INTEGER <-
+  ( + p :POINTER;
+    p := parser;
+    `XML_GetIdAttributeIndex(@p)`:INTEGER
+  );
+
+  - set_encoding env:ABSTRACT_STRING :STATUS <-
+  ( + p :POINTER;
+    + na :NATIVE_ARRAY(CHAR);
+    p := parser;
+    na := to_external env;
+    `XML_SetEncoding(@p, @na)`:STATUS
+  );
+
+  - set_param_entity_parsing_never <-
+  ( + p :POINTER;
+    p := parser;
+    `SetParamEntityParsing(@p, XML_PARAM_ENTITY_PARSING_NEVER)`;
+  );
+
+  - set_param_entity_parsing_unless_standalone <-
+  ( + p :POINTER;
+    p := parser;
+    `SetParamEntityParsing(@p, XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE)`;
+  );
+
+  - set_param_entity_parsing_always <-
+  ( + p :POINTER;
+    p := parser;
+    `SetParamEntityParsing(@p, XML_PARAM_ENTITY_PARSING_ALWAYS)`;
+  );
+
+  - use_foreign_dtd b:BOOLEAN :ERROR <-
+  ( + p :POINTER;
+    p := parser;
+    `XML_UseForeignDTD(@p, @b)`:ERROR
+  );
+
+  - set_return_ns_triplet b:BOOLEAN <-
+  ( + p :POINTER;
+    p := parser;
+    `XML_SetReturnNSTriplet(@p, @b)`;
+  );
+
+  - default_current <-
+  ( + p :POINTER;
+    p := parser;
+    `XML_DefaultCurrent(@p)`;
+  );
+
+Section Private
+
+  - from_external a:NATIVE_ARRAY(CHAR) length l:INTEGER :ABSTRACT_STRING <-
+  (
+    copy_strings.if {
+      from_external_copy a length l;
+    } else {
+      from_external_const a length l;
+    };
+  );
+
+  - from_external a:NATIVE_ARRAY(CHAR):ABSTRACT_STRING <-
+  (
+    copy_strings.if {
+      from_external_copy a;
+    } else {
+      from_external_const a;
+    };
+  );
+
+Section Public
+
+  + copy_strings :BOOLEAN := FALSE;
+  - set_copy_strings b:BOOLEAN <- copy_strings := b;
+
+  + subscriptions :UINTEGER_32 := 0;
+  + expand_internal_entities_using_default_handler :BOOLEAN := TRUE;
+
+  - subscribe_start_element         :UINTEGER_32 := 00000000_00000000_00000001b;
+  - subscribe_end_element           :UINTEGER_32 := 00000000_00000000_00000010b;
+  - subscribe_character_data        :UINTEGER_32 := 00000000_00000000_00000100b;
+  - subscribe_processing_instruction:UINTEGER_32 := 00000000_00000000_00001000b;
+  - subscribe_comment               :UINTEGER_32 := 00000000_00000000_00010000b;
+  - subscribe_start_cdata_section   :UINTEGER_32 := 00000000_00000000_00100000b;
+  - subscribe_end_cdata_section     :UINTEGER_32 := 00000000_00000000_01000000b;
+  - subscribe_default               :UINTEGER_32 := 00000000_00000000_10000000b;
+  - subscribe_external_entity_ref   :UINTEGER_32 := 00000000_00000001_00000000b;
+  - subscribe_skipped_entity        :UINTEGER_32 := 00000000_00000010_00000000b;
+  - subscribe_unknown_encoding      :UINTEGER_32 := 00000000_00000100_00000000b;
+  - subscribe_start_namespace_decl  :UINTEGER_32 := 00000000_00001000_00000000b;
+  - subscribe_end_namespace_decl    :UINTEGER_32 := 00000000_00010000_00000000b;
+  - subscribe_xml_decl              :UINTEGER_32 := 00000000_00100000_00000000b;
+  - subscribe_start_doctype_decl    :UINTEGER_32 := 00000000_01000000_00000000b;
+  - subscribe_end_doctype_decl      :UINTEGER_32 := 00000000_10000000_00000000b;
+  - subscribe_element_decl          :UINTEGER_32 := 00000001_00000000_00000000b;
+  - subscribe_attlist_decl          :UINTEGER_32 := 00000010_00000000_00000000b;
+  - subscribe_entity_decl           :UINTEGER_32 := 00000100_00000000_00000000b;
+  - subscribe_notation_decl         :UINTEGER_32 := 00001000_00000000_00000000b;
+  - subscribe_not_standalone        :UINTEGER_32 := 00010000_00000000_00000000b;
+
+  - refresh_subscriptions <-
+  ( + p :POINTER;
+    p := parser;
+
+    has subscribe_start_element         .if {
+      `XML_SetStartElementHandler(@p, lisaac_expat_handler_start_element)`;
+    };
+    has subscribe_end_element           .if {
+      `XML_SetEndElementHandler(@p, lisaac_expat_handler_end_element)`;
+    };
+    has subscribe_character_data        .if {
+      `XML_SetCharacterDataHandler(@p, lisaac_expat_handler_character_data)`;
+    };
+    has subscribe_processing_instruction.if {
+      `XML_SetProcessingInstructionHandler(@p, lisaac_expat_handler_processing_instruction)`;
+    };
+    has subscribe_comment               .if {
+      `XML_SetCommentHandler(@p, lisaac_expat_handler_comment)`;
+    };
+    has subscribe_start_cdata_section   .if {
+      `XML_SetStartCdataSectionHandler(@p, lisaac_expat_handler_start_cdata_section)`;
+    };
+    has subscribe_end_cdata_section     .if {
+      `XML_SetEndCdataSectionHandler(@p, lisaac_expat_handler_end_cdata_section)`;
+    };
+    has subscribe_default               .if {
+      handlers.expand_internal_entities_using_default_handler.if {
+        `XML_SetDefaultHandlerExpand(@p, lisaac_expat_handler_default)`;
+      } else {
+        `XML_SetDefaultHandler(@p, lisaac_expat_handler_default)`;
+      };
+    };
+    has subscribe_external_entity_ref   .if {
+      + self :SELF;
+      self := Self;
+      `XML_SetExternalEntityRefHandlerArg(@p, @self);`;
+      `XML_SetExternalEntityRefHandler(@p, lisaac_expat_handler_external_entity_ref)`;
+    };
+    has subscribe_skipped_entity        .if {
+      `XML_SetSkippedEntityHandler(@p, lisaac_expat_handler_skipped_entity)`;
+    };
+    has subscribe_unknown_encoding      .if {
+      `XML_SetUnknownEncodingHandler(@p, lisaac_expat_handler_unknown_encoding)`;
+    };
+    has subscribe_start_namespace_decl  .if {
+      `XML_SetStartNamespaceDeclHandler(@p, lisaac_expat_handler_start_namespace_decl)`;
+    };
+    has subscribe_end_namespace_decl    .if {
+      `XML_SetEndNamespaceDeclHandler(@p, lisaac_expat_handler_end_namespace_decl)`;
+    };
+    has subscribe_xml_decl              .if {
+      `XML_SetXmlDeclHandler(@p, lisaac_expat_handler_xml_decl)`;
+    };
+    has subscribe_start_doctype_decl    .if {
+      `XML_SetStartDoctypeDeclHandler(@p, lisaac_expat_handler_start_doctype_decl)`;
+    };
+    has subscribe_end_doctype_decl      .if {
+      `XML_SetEndDoctypeDeclHandler(@p, lisaac_expat_handler_end_doctype_decl)`;
+    };
+    has subscribe_element_decl          .if {
+      `XML_SetElementDeclHandler(@p, lisaac_expat_handler_element_decl)`;
+    };
+    has subscribe_attlist_decl          .if {
+      `XML_SetAttlistDeclHandler(@p, lisaac_expat_handler_attlist_decl)`;
+    };
+    has subscribe_entity_decl           .if {
+      `XML_SetEntityDeclHandler(@p, lisaac_expat_handler_entity_decl)`;
+    };
+    has subscribe_notation_decl         .if {
+      `XML_SetNotationDeclHandler(@p, lisaac_expat_handler_notation_decl)`;
+    };
+    has subscribe_not_standalone        .if {
+      `XML_SetNotStandaloneHandler(@p, lisaac_expat_handler_not_standalone)`;
+    };
+  );
+
+Section Private
+
+  - has mask:UINTEGER_32 :BOOLEAN <- (subscriptions | mask) != 0;
+
+Section External
+
+  - lisaac_expat_handler_start_element (ud:POINTER, name:NATIVE_ARRAY(CHAR),
+      atts:NATIVE_ARRAY(NATIVE_ARRAY(CHAR))) <-
+  ( + self :SELF;
+    + i :INTEGER;
+    + attributes :FAST_ARRAY(ATTRIBUTE);
+    self := `@ud`:SELF;
+    i := 0;
+    attributes := FAST_ARRAY(ATTRIBUTE).create_with_capacity 0;
+    { atts.item i != NULL }.while_do {
+      + a :ATTRIBUTE;
+      a := ATTRIBUTE.create (atts.item i, atts.item (i+1));
+      attributes.add_last a;
+      i := i + 2;
+    };
+    self.handlers.start_element(from_external name, attributes);
+  );
+
+  - lisaac_expat_handler_end_element (ud:POINTER, name:NATIVE_ARRAY(CHAR)) <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.end_element(from_external name);
+  );
+
+  - lisaac_expat_handler_character_data (ud:POINTER,
+      s:NATIVE_ARRAY(CHAR), len:INTEGER) <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.character_data(from_external name length len);
+  );
+
+  - lisaac_expat_handler_processing_instruction (ud:POINTER,
+      target:NATIVE_ARRAY(CHAR),
+      data  :NATIVE_ARRAY(CHAR)) <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.processing_instruction(
+      from_external target,
+      from_external data);
+  );
+
+  - lisaac_expat_handler_comment (ud:POINTER, data:NATIVE_ARRAY(CHAR)) <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.comment(from_external data);
+  );
+
+  - lisaac_expat_handler_start_cdata_section (ud:POINTER) <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.start_cdata_section;
+  );
+
+  - lisaac_expat_handler_end_cdata_section (ud:POINTER) <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.end_cdata_section;
+  );
+
+  - lisaac_expat_handler_default (ud:POINTER,
+      s:NATIVE_ARRAY(CHAR), len:INTEGER) <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.default(from_external s length len);
+  );
+
+  - lisaac_expat_handler_external_entity_ref (ud:POINTER,
+      context  :NATIVE_ARRAY(CHAR),
+      base     :NATIVE_ARRAY(CHAR),
+      system_id:NATIVE_ARRAY(CHAR),
+      public_id:NATIVE_ARRAY(CHAR)) :INTEGER <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.external_entity_ref(
+      from_external context,
+      from_external base,
+      from_external system_id,
+      from_external public_id)
+  );
+
+  - lisaac_expat_handler_skipped_entity (ud:POINTER,
+      entity_name:NATIVE_ARRAY(CHAR),
+      is_parameter_entity:INTEGER) <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.skipped_entity (
+      from_external entity_name,
+      is_parameter_entity != 0);
+  );
+
+  - lisaac_expat_handler_unknown_encoding (ud:POINTER, name:NATIVE_ARRAY(CHAR),
+      info:POINTER) :INTEGER <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.unknown_encoding(from_external name, ENCODING.create info)
+  );
+
+  - lisaac_expat_handler_start_namespace_decl (ud:POINTER,
+      prefix:NATIVE_ARRAY(CHAR),
+      uri   :NATIVE_ARRAY(CHAR)) <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.start_namespace_decl(from_external prefix, from_external uri);
+  );
+
+  - lisaac_expat_handler_end_namespace_decl (ud:POINTER,
+      prefix:NATIVE_ARRAY(CHAR)) <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.end_namespace_decl(from_external prefix);
+  );
+
+  - lisaac_expat_handler_xml_decl (ud:POINTER,
+      version :NATIVE_ARRAY(CHAR),
+      encoding:NATIVE_ARRAY(CHAR),
+      standalone:INTEGER) <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.xml_decl(
+      from_external version,
+      from_external encoding,
+      standalone);
+  );
+
+  - lisaac_expat_handler_start_doctype_decl (ud:POINTER,
+      doctype_name:NATIVE_ARRAY(CHAR),
+      sysid       :NATIVE_ARRAY(CHAR),
+      pubid       :NATIVE_ARRAY(CHAR),
+      has_internal_subset:INTEGER) <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.start_doctype_decl(
+      from_external doctype_name,
+      from_external sysid,
+      from_external pubid,
+      has_internal_subset != 0);
+  );
+
+  - lisaac_expat_handler_end_doctype_decl (ud:POINTER) <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.end_doctype_decl;
+  );
+
+  - lisaac_expat_handler_element_decl (ud:POINTER, name:NATIVE_ARRAY(CHAR),
+      model:POINTER) <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.element_decl(from_external name, model);
+  );
+
+  - lisaac_expat_handler_attlist_decl (ud:POINTER,
+      elname  :NATIVE_ARRAY(CHAR),
+      attname :NATIVE_ARRAY(CHAR),
+      att_type:NATIVE_ARRAY(CHAR),
+      dflt    :NATIVE_ARRAY(CHAR),
+      isrequired:INTEGER) <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.attlist_decl(
+      from_external elname,
+      from_external attname,
+      from_external att_type,
+      from_external dflt,
+      isrequired != 0);
+  );
+
+  - lisaac_expat_handler_entity_decl (ud:POINTER,
+      entity_name       :NATIVE_ARRAY(CHAR),
+      is_parameter_entry:INTEGER,
+      value             :NATIVE_ARRAY(CHAR),
+      value_length      :INTEGER,
+      base              :NATIVE_ARRAY(CHAR),
+      system_id         :NATIVE_ARRAY(CHAR),
+      public_id         :NATIVE_ARRAY(CHAR),
+      notation_name     :NATIVE_ARRAY(CHAR)) <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.entity_decl(
+      from_external entity_name,
+      is_parameter_entry != 0,
+      from_external value length value_length,
+      from_external base,
+      from_external system_id,
+      from_external public_id,
+      from_external notation_name);
+  );
+
+  - lisaac_expat_handler_unparsed_entity_decl (ud:POINTER,
+      entity_name       :NATIVE_ARRAY(CHAR),
+      base              :NATIVE_ARRAY(CHAR),
+      system_id         :NATIVE_ARRAY(CHAR),
+      public_id         :NATIVE_ARRAY(CHAR),
+      notation_name     :NATIVE_ARRAY(CHAR)) <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.unparsed_entity_decl(
+      from_external entity_name,
+      from_external base,
+      from_external system_id,
+      from_external public_id,
+      from_external notation_name);
+  );
+
+  - lisaac_expat_handler_notation_decl (ud:POINTER,
+      notation_name     :NATIVE_ARRAY(CHAR),
+      base              :NATIVE_ARRAY(CHAR),
+      system_id         :NATIVE_ARRAY(CHAR),
+      public_id         :NATIVE_ARRAY(CHAR)) <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.notation_decl(
+      from_external notation_name,
+      from_external base,
+      from_external system_id,
+      from_external public_id);
+  );
+
+  - lisaac_expat_handler_not_standalone (ud:POINTER) :INTEGER <-
+  ( + self :SELF;
+    self := `@ud`:SELF;
+    self.handlers.not_standalone
+  );
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/expat-binding/src/parsing.li b/lib/unstable/expat-binding/src/parsing.li
new file mode 100644
index 0000000..78d84c9
--- /dev/null
+++ b/lib/unstable/expat-binding/src/parsing.li
@@ -0,0 +1,50 @@
+Section Header
+
+  + name := PARSING;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  - import := INTEGER;
+  - export := INTEGER;
+
+  // Copyright (c) 2008 Mildred Ki'Lya <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+  - external := `#include <expat.h>`;
+  - type := `enum XML_Parsing`;
+
+Section Insert
+
+  - parent :Expanded ENUM;
+
+Section Public
+
+  - initialized :PARSING := create_code (`XML_INITIALIZED`:INTEGER);
+  - parsing     :PARSING := create_code (`XML_PARSING`    :INTEGER);
+  - finished    :PARSING := create_code (`XML_FINISHED`   :INTEGER);
+  - suspended   :PARSING := create_code (`XML_SUSPENDED`  :INTEGER);
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/expat-binding/src/parsing_status.li b/lib/unstable/expat-binding/src/parsing_status.li
new file mode 100644
index 0000000..6a0f7fa
--- /dev/null
+++ b/lib/unstable/expat-binding/src/parsing_status.li
@@ -0,0 +1,51 @@
+Section Header
+
+  + name := Expanded PARSING_STATUS;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  // Copyright (c) 2008 Mildred Ki'Lya <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+  - external := `#include <expat.h>`;
+  - type := `XML_ParsingStatus`;
+
+Section Insert
+
+  - parent :Expanded OBJECT;
+
+Section Mapping
+
+  + priv_parsing      :PARSING;
+  + priv_final_buffer :XML_BOOL;
+
+Section Public
+
+  - parsing      :PARSING <- priv_parsing;
+  - final_buffer :BOOLEAN <- priv_final_buffer;
+
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/expat-binding/src/private/char.li b/lib/unstable/expat-binding/src/private/char.li
new file mode 100644
index 0000000..d867e86
--- /dev/null
+++ b/lib/unstable/expat-binding/src/private/char.li
@@ -0,0 +1,43 @@
+Section Header
+
+  + name := Expanded CHAR;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  - export := INTEGER_8, CHAR_UNICODE;
+
+  // Copyright (c) 2008 Mildred Ki'Lya <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+  - external := `#include <expat.h>`;
+  - type := `XML_Char`;
+  - default := '\0';
+
+Section Insert
+
+  - parent_character:CHARACTER := CHARACTER;
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/expat-binding/src/private/enum.li b/lib/unstable/expat-binding/src/private/enum.li
new file mode 100644
index 0000000..0e4116d
--- /dev/null
+++ b/lib/unstable/expat-binding/src/private/enum.li
@@ -0,0 +1,105 @@
+Section Header
+
+  + name := Expanded ENUM;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  // Copyright (c) 2008 Mildred Ki'Lya <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+  //  HOWTO
+  //  =====
+  //
+  //  Section Header
+  //
+  //    + name := Expanded MY_ENUM;
+  //
+  //    - import := INTEGER;
+  //    - export := INTEGER;
+  //
+  //    - type := `int`;
+  //
+  //  Section Insert
+  //
+  //    - parent_enum :Expanded ENUM;
+  //
+  //  Section Public
+  //
+  //    - val1 :MY_ENUM := create;
+  //    - val2 :MY_ENUM := create;
+  //    ...
+
+Section Insert
+
+  - parent :Expanded INTEGER;
+
+Section SELF
+
+  + min :INTEGER := 0;
+  + max :INTEGER := -1;
+
+  - create :SELF <- create_after;
+
+  - create_before :SELF <-
+  (
+    min := min - 1;
+    min
+  );
+
+  - create_after :SELF <-
+  (
+    max := max + 1;
+    max
+  );
+
+  - create_code i:INTEGER :SELF <-
+  ( + res :SELF;
+    (max - min < 0).if {
+      min := i;
+      max := i;
+    } else {
+      (i < min).if { min := i };
+      (i > max).if { max := i };
+    };
+    i
+  );
+
+  - is_valid i:INTEGER :BOOLEAN <- i.in_range min to max;
+
+  - from_integer i:INTEGER :SELF <-
+  (
+    ? { is_valid i };
+    `@i`:SELF
+  );
+
+  - to_integer :INTEGER <-
+  ( + self:SELF;
+    self := Self;
+    `@self`:INTEGER
+  );
+
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/expat-binding/src/private/expat_object.li b/lib/unstable/expat-binding/src/private/expat_object.li
new file mode 100644
index 0000000..851a5c9
--- /dev/null
+++ b/lib/unstable/expat-binding/src/private/expat_object.li
@@ -0,0 +1,96 @@
+Section Header
+
+  + name := EXPAT_OBJECT;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  // Copyright (c) 2008 Mildred Ki'Lya <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+  - external := `#include <string.h>`;
+
+Section Inherit
+
+  + parent :Expanded OBJECT;
+
+Section SELF
+
+  - to_external s:ABSTRACT_STRING :NATIVE_ARRAY(CHAR) <-
+  ( + ext :NATIVE_ARRAY(CHAR);
+    ext := NATIVE_ARRAY(CHAR).create (s.count + 1);
+    0.to (s.count - s.lower) do { i:INTEGER;
+      ext.put (s.item (i+s.lower)) to i;
+    };
+    ext.put '\0' to (s.count);
+  );
+
+  - from_external_copy a:NATIVE_ARRAY(CHAR) :STRING <-
+  ( + res :STRING;
+    (a != NULL).if {
+      res := STRING.create 0;
+      res.from_external_copy a;
+    };
+    res
+  );
+
+  - from_external_copy a:NATIVE_ARRAY(CHAR) length l:INTEGER :STRING <-
+  ( + res :STRING;
+    (a != NULL).if {
+      res := STRING.create (l+1);
+      1.to l do { i:INTEGER;
+        res.add_last (a.item i);
+      };
+      res.add_last '\0';
+    };
+    res
+  );
+
+  - from_external_const a:NATIVE_ARRAY(CHAR) :STRING_CONSTANT <-
+  ( + res :STRING_CONSTANT;
+    (a != NULL).if {
+      res := from_external_const a length (strlen a);
+    };
+    res
+  );
+
+  - from_external_const a:NATIVE_ARRAY(CHAR) length l:INTEGER:STRING_CONSTANT <-
+  ( + res :STRING_CONSTANT;
+    (a != NULL).if {
+      res := STRING_CONSTANT.new_intern a count l;
+    };
+    res
+  );
+
+  - strlen a:NATIVE_ARRAY(CHAR) :INTEGER <-
+  ( + length :INTEGER;
+    length := 0;
+    {a.item length !== 0}.while_do {
+      length := length + 1;
+    };
+    ? { `strlen(@a)`:INTEGER == length };
+  );
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/expat-binding/src/private/lchar.li b/lib/unstable/expat-binding/src/private/lchar.li
new file mode 100644
index 0000000..b4b4ba3
--- /dev/null
+++ b/lib/unstable/expat-binding/src/private/lchar.li
@@ -0,0 +1,43 @@
+Section Header
+
+  + name := LCHAR;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  - export := INTEGER_8, CHAR_UNICODE;
+
+  // Copyright (c) 2008 Mildred Ki'Lya <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+  - external := `#include <expat.h>`;
+  - type := `XML_LChar`;
+  - default := '\0';
+
+Section Insert
+
+  - parent_character:CHARACTER := CHARACTER;
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/expat-binding/src/private/xml_bool.li b/lib/unstable/expat-binding/src/private/xml_bool.li
new file mode 100644
index 0000000..da11649
--- /dev/null
+++ b/lib/unstable/expat-binding/src/private/xml_bool.li
@@ -0,0 +1,47 @@
+Section Header
+
+  + name := Expanded XML_BOOL;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  - export := BOOLEAN;
+
+  // Copyright (c) 2008 Mildred Ki'Lya <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+  - external := `#include <expat.h>`;
+  - type := `XML_Bool`;
+  - default := 0;
+
+Section Public
+
+  - to_boolean :BOOLEAN <-
+  ( + self :SELF;
+    self := Self;
+    `@self`:BOOLEAN(TRUE,FALSE)
+  );
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/expat-binding/src/status.li b/lib/unstable/expat-binding/src/status.li
new file mode 100644
index 0000000..0d2a09a
--- /dev/null
+++ b/lib/unstable/expat-binding/src/status.li
@@ -0,0 +1,49 @@
+Section Header
+
+  + name := Expanded STATUS;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  - import := INTEGER;
+  - export := INTEGER;
+
+  // Copyright (c) 2008 Mildred Ki'Lya <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+  - external := `#include <expat.h>`;
+  - type := `int`;
+
+Section Insert
+
+  - parent :Expanded ENUM;
+
+Section Public
+
+  - error     :STATUS := create_code (`XML_STATUS_ERROR`:INTEGER);
+  - ok        :STATUS := create_code (`XML_STATUS_OK`:INTEGER);
+  - suspended :STATUS := create_code (`XML_STATUS_SUSPENDED`:INTEGER);
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/expat-binding/src/str/char.li b/lib/unstable/expat-binding/src/str/char.li
new file mode 100644
index 0000000..50f6311
--- /dev/null
+++ b/lib/unstable/expat-binding/src/str/char.li
@@ -0,0 +1,89 @@
+Section Header
+
+  + name := Expanded CHAR;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  - import := CHARACTER, UINTEGER_8, UINTEGER_16, CHAR_UNICODE;
+
+  // Copyright (c) 2008 Mildred Ki'Lya <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+  - external := `#include <expat.h>`;
+  - type := `XML_Char`;
+  - default := '\0';
+
+Section Insert
+
+  - parent_comparable:COMPARABLE := COMPARABLE;
+
+Section Public
+
+  - from_character    c:CHARACTER    :CHAR <- `@c`:CHAR;
+
+  - from_uinteger_8   c:UINTEGER_8   :CHAR <- `@c`:CHAR;
+
+  - from_uinteger_16  c:UINTEGER_16  :CHAR <- `@c`:CHAR;
+
+  - from_char_unicode c:CHAR_UNICODE :CHAR <- `@c`:CHAR;
+
+  - Self:SELF '==' Right 60 other:SELF :BOOLEAN <-
+  ( + self :SELF;
+    self := Self;
+    `@self == @other`:BOOLEAN(TRUE,FALSE)
+  );
+
+  - Self:SELF '!==' Right 60 other:SELF :BOOLEAN <-
+  ( + self :SELF;
+    self := Self;
+    `@self != @other`:BOOLEAN(TRUE,FALSE)
+  );
+
+  - Self:SELF '<' Left 1 other:SELF :BOOLEAN <-
+  ( + self :SELF;
+    self := Self;
+    `@self < @other`:BOOLEAN(TRUE,FALSE)
+  );
+
+  - Self:SELF '<=' Left 1 other:SELF :BOOLEAN <-
+  ( + self :SELF;
+    self := Self;
+    `@self <= @other`:BOOLEAN(TRUE,FALSE)
+  );
+
+  - Self:SELF '>' other:SELF :BOOLEAN <-
+  ( + self :SELF;
+    self := Self;
+    `@self > @other`:BOOLEAN(TRUE,FALSE)
+  );
+
+  - Self:SELF '>=' other:SELF :BOOLEAN <-
+  ( + self :SELF;
+    self := Self;
+    `@self >= @other`:BOOLEAN(TRUE,FALSE)
+  );
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/expat-binding/src/str/lchar.li b/lib/unstable/expat-binding/src/str/lchar.li
new file mode 100644
index 0000000..9a36ae2
--- /dev/null
+++ b/lib/unstable/expat-binding/src/str/lchar.li
@@ -0,0 +1,51 @@
+Section Header
+
+  + name := LCHAR;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  // Copyright (c) 2008 Mildred Ki'Lya <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+  - external := `#include <expat.h>`;
+  - type := `XML_Char`;
+  - default := '\0';
+
+Section Insert
+
+  + parent :Expanded OBJECT;
+
+Section Public
+
+  - from_character    c:CHARACTER    :LCHAR <- `@c`:LCHAR;
+
+  - from_uinteger_8   c:UINTEGER_8   :LCHAR <- `@c`:LCHAR;
+
+  - from_uinteger_16  c:UINTEGER_16  :LCHAR <- `@c`:LCHAR;
+
+  - from_char_unicode c:CHAR_UNICODE :LCHAR <- `@c`:LCHAR;
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/expat-binding/src/str/str.li b/lib/unstable/expat-binding/src/str/str.li
new file mode 100644
index 0000000..012d647
--- /dev/null
+++ b/lib/unstable/expat-binding/src/str/str.li
@@ -0,0 +1,80 @@
+Section Header
+
+  + name := STR;
+
+  - author        := "Mildred Ki'Lya <mildred593(at)online.fr>";
+  - copyright     := "2008 Mildred Ki'Lya";
+  - comment       := "";
+
+  - import := NATIVE_ARRAY(CHAR);
+  - export := NATIVE_ARRAY(CHAR);
+
+  // Copyright (c) 2008 Mildred Ki'Lya <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+Section Inherit
+
+  + parent :Expanded OBJECT;
+
+Section Public
+
+  + storage :NATIVE_ARRAY(CHAR);
+
+  + count :INTEGER;
+
+  - lower :INTEGER := 1;
+
+  - upper :INTEGER <- count;
+
+  - item i:INTEGER :CHAR <- storage.item i;
+
+  - put c:CHAR to i:INTEGER <- storage.put c to i;
+
+  - from_native_array_char a:NATIVE_ARRAY(CHAR) :SELF <-
+  ( + res :SELF;
+    + length :INTEGER;
+    res := clone;
+    {a.item length !== 0}.while_do {
+      length := length + 1;
+    };
+    res.make_from_native_array_char a length length;
+    res
+  );
+
+  - from_native_array_char a:NATIVE_ARRAY(CHAR) length length:INTEGER :SELF <-
+  ( + res :SELF;
+    res := clone;
+    res.make_from_native_array_char a length length;
+    res
+  );
+
+  - make_from_native_array_char a:NATIVE_ARRAY(CHAR) length c:INTEGER <-
+  (
+    storage := a;
+    count   := c;
+  );
+
+  - to_native_array_char :NATIVE_ARRAY(CHAR) <- storage;
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/freetype/TODO b/lib/unstable/freetype/TODO
new file mode 100644
index 0000000..0a68e61
--- /dev/null
+++ b/lib/unstable/freetype/TODO
@@ -0,0 +1,2 @@
+- Finir de convertir les integer
+- Rendre le source compilable
diff --git a/lib/unstable/freetype/arial.ttf b/lib/unstable/freetype/arial.ttf
new file mode 100644
index 0000000..886789b
Binary files /dev/null and b/lib/unstable/freetype/arial.ttf differ
diff --git a/lib/unstable/freetype/arial.txt b/lib/unstable/freetype/arial.txt
new file mode 100644
index 0000000..32b456b
--- /dev/null
+++ b/lib/unstable/freetype/arial.txt
@@ -0,0 +1,168080 @@
+
+; TrueType v1.0 Dump Program - v1.8, Oct 29 2002, rrt, dra, gch, ddb, lcp, pml
+; Copyright (C) 1991 ZSoft Corporation. All rights reserved.
+; Portions Copyright (C) 1991-2001 Microsoft Corporation. All rights reserved.
+
+; Dumping file 'c:\WINDOWS\Fonts\arial.ttf'
+
+Offset Table
+------ -----
+  sfnt version:     1.0
+  numTables =        23
+  searchRange =     256
+  entrySelector =     4
+  rangeShift =      112
+
+ 0. 'DSIG' - chksm = 0xD471166C, off = 0x0004A7FC, len =     6488
+ 1. 'GDEF' - chksm = 0x514451BC, off = 0x0004A460, len =      154
+ 2. 'GSUB' - chksm = 0xC8F7AD5B, off = 0x0004A4FC, len =      734
+ 3. 'JSTF' - chksm = 0x6D2A6906, off = 0x0004A7DC, len =       30
+ 4. 'LTSH' - chksm = 0x7345AD3F, off = 0x00005674, len =     1324
+ 5. 'OS/2' - chksm = 0x0CDF326B, off = 0x000001F8, len =       86
+ 6. 'PCLT' - chksm = 0xFD7B3E43, off = 0x0004A428, len =       54
+ 7. 'VDMX' - chksm = 0x50926AF5, off = 0x00005BA0, len =     4500
+ 8. 'cmap' - chksm = 0x67B44D8F, off = 0x00002E40, len =     5006
+ 9. 'cvt ' - chksm = 0x9670D276, off = 0x00007EA4, len =     1584
+10. 'fpgm' - chksm = 0xCC79599A, off = 0x00007834, len =     1646
+11. 'gasp' - chksm = 0x00180009, off = 0x00000250, len =       16
+12. 'glyf' - chksm = 0xAA98C47E, off = 0x0001159C, len =   214822
+13. 'hdmx' - chksm = 0x2E6F1E51, off = 0x00009974, len =    31784
+14. 'head' - chksm = 0xCD0DEE9E, off = 0x0000017C, len =       54
+15. 'hhea' - chksm = 0x126D11AA, off = 0x000001B4, len =       36
+16. 'hmtx' - chksm = 0xCAA27340, off = 0x000084D4, len =     5280
+17. 'kern' - chksm = 0x37613936, off = 0x00048EC8, len =     5472
+18. 'loca' - chksm = 0x097890EC, off = 0x000041D0, len =     5284
+19. 'maxp' - chksm = 0x09E30C95, off = 0x000001D8, len =       32
+20. 'name' - chksm = 0x960ADC28, off = 0x00000260, len =    11231
+21. 'post' - chksm = 0x3BB155AF, off = 0x00045CC4, len =    12804
+22. 'prep' - chksm = 0x52FEC4E9, off = 0x00006D34, len =     2815
+
+'head' Table - Font Header
+--------------------------
+Size = 54 bytes (expecting 54 bytes)
+  'head' version:      1.0
+  fontRevision:        3.0
+  checkSumAdjustment:  0x5106FACD
+  magicNumber:         0x5F0F3CF5
+  flags:               0x081B- baseline(y)=0 - lsb(x)=0 - int ppem - nonlin aw
+  unitsPerEm:          2048
+  created:             Mon Aug 06 22:54:50 1990
+  modified:            Fri Nov 09 21:52:49 2001
+  xMin:                -1361
+  yMin:                -665
+  xMax:                4154
+  yMax:                2060
+  macStyle bits:       0x0000
+  lowestRecPPEM:       9
+  fontDirectionHint:   1
+  indexToLocFormat:    1
+  glyphDataFormat:     0
+
+'hhea' Table - Horizontal Header
+--------------------------------
+Size = 36 bytes (expecting 36 bytes)
+	'hhea' version:         1.0
+	yAscender:            1854
+	yDescender:           -434
+	yLineGap:             67
+	advanceWidthMax:      4096
+	minLeftSideBearing:   -1361
+	minRightSideBearing:  -461
+	xMaxExtent:           4154
+	horizCaretSlopeNum:   1
+	horizCaretSlopeDenom: 0
+	reserved0:            0
+	reserved1:            0
+	reserved2:            0
+	reserved3:            0
+	reserved4:            0
+	metricDataFormat:     0
+	numOf_LongHorMetrics: 1320
+
+'maxp' Table - Maximum Profile
+------------------------------
+Size = 32 bytes (expecting 32 bytes)
+	'maxp' version:		  1.0
+	numGlyphs:		1320
+	maxPoints:		256
+	maxContours:		63
+	maxCompositePoints:	99
+	maxCompositeContours:	5
+	maxZones:		2
+	maxTwilightPoints:	16
+	maxStorage:		47
+	maxFunctionDefs:	86
+	maxInstructionDefs:	0
+	maxStackElements:	1037
+	maxSizeOfInstructions:	2815
+	maxComponentElements:	3
+	maxComponentDepth:	2
+
+'name' Table - Naming Table
+---------------------------
+	Format:		0
+	Count:		70
+	stringOffset:	 846
+Size = 11231 bytes
+	  0. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		0
+	     Length:		254
+	     Offset:		0
+		Data:  0 54  0 79  0 70  0 65  0 66  >  .T.y.p.e.f
+		       0 61  0 63  0 65  0 20  0 A9  >  .a.c.e. .©
+		       0 20  0 54  0 68  0 65  0 20  >  . .T.h.e. 
+		       0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 43  >  .y.p.e. .C
+		       0 6F  0 72  0 70  0 6F  0 72  >  .o.r.p.o.r
+		       0 61  0 74  0 69  0 6F  0 6E  >  .a.t.i.o.n
+		       0 20  0 70  0 6C  0 63  0 2E  >  . .p.l.c..
+		       0 20  0 44  0 61  0 74  0 61  >  . .D.a.t.a
+		       0 20  0 A9  0 20  0 54  0 68  >  . .©. .T.h
+		       0 65  0 20  0 4D  0 6F  0 6E  >  .e. .M.o.n
+		       0 6F  0 74  0 79  0 70  0 65  >  .o.t.y.p.e
+		       0 20  0 43  0 6F  0 72  0 70  >  . .C.o.r.p
+		       0 6F  0 72  0 61  0 74  0 69  >  .o.r.a.t.i
+		       0 6F  0 6E  0 20  0 70  0 6C  >  .o.n. .p.l
+		       0 63  0 2F  0 54  0 79  0 70  >  .c./.T.y.p
+		       0 65  0 20  0 53  0 6F  0 6C  >  .e. .S.o.l
+		       0 75  0 74  0 69  0 6F  0 6E  >  .u.t.i.o.n
+		       0 73  0 20  0 49  0 6E  0 63  >  .s. .I.n.c
+		       0 2E  0 20  0 31  0 39  0 39  >  ... .1.9.9
+		       0 30  0 2D  0 31  0 39  0 39  >  .0.-.1.9.9
+		       0 32  0 2E  0 20  0 41  0 6C  >  .2... .A.l
+		       0 6C  0 20  0 52  0 69  0 67  >  .l. .R.i.g
+		       0 68  0 74  0 73  0 20  0 52  >  .h.t.s. .R
+		       0 65  0 73  0 65  0 72  0 76  >  .e.s.e.r.v
+		       0 65  0 64                    >  .e.d
+
+	  1. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		1
+	     Length:		10
+	     Offset:		254
+		Data:  0 41  0 72  0 69  0 61  0 6C  >  .A.r.i.a.l
+
+	  2. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		2
+	     Length:		14
+	     Offset:		264
+		Data:  0 52  0 65  0 67  0 75  0 6C  >  .R.e.g.u.l
+		       0 61  0 72                    >  .a.r
+
+	  3. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		3
+	     Length:		94
+	     Offset:		278
+		Data:  0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 3A  0 41  >  .y.p.e.:.A
+		       0 72  0 69  0 61  0 6C  0 20  >  .r.i.a.l. 
+		       0 52  0 65  0 67  0 75  0 6C  >  .R.e.g.u.l
+		       0 61  0 72  0 3A  0 56  0 65  >  .a.r.:.V.e
+		       0 72  0 73  0 69  0 6F  0 6E  >  .r.s.i.o.n
+		       0 20  0 32  0 2E  0 39  0 38  >  . .2...9.8
+		       0 20  0 28  0 4D  0 69  0 63  >  . .(.M.i.c
+		       0 72  0 6F  0 73  0 6F  0 66  >  .r.o.s.o.f
+		       0 74  0 29                    >  .t.)
+
+	  4. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		4
+	     Length:		10
+	     Offset:		372
+		Data:  0 41  0 72  0 69  0 61  0 6C  >  .A.r.i.a.l
+
+	  5. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		5
+	     Length:		24
+	     Offset:		382
+		Data:  0 56  0 65  0 72  0 73  0 69  >  .V.e.r.s.i
+		       0 6F  0 6E  0 20  0 32  0 2E  >  .o.n. .2..
+		       0 39  0 38                    >  .9.8
+
+	  6. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		6
+	     Length:		14
+	     Offset:		406
+		Data:  0 41  0 72  0 69  0 61  0 6C  >  .A.r.i.a.l
+		       0 4D  0 54                    >  .M.T
+
+	  7. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		7
+	     Length:		196
+	     Offset:		420
+		Data:  0 41  0 72  0 69  0 61  0 6C  >  .A.r.i.a.l
+		       0 AE  0 20  0 54  0 72  0 61  >  .®. .T.r.a
+		       0 64  0 65  0 6D  0 61  0 72  >  .d.e.m.a.r
+		       0 6B  0 20  0 6F  0 66  0 20  >  .k. .o.f. 
+		       0 54  0 68  0 65  0 20  0 4D  >  .T.h.e. .M
+		       0 6F  0 6E  0 6F  0 74  0 79  >  .o.n.o.t.y
+		       0 70  0 65  0 20  0 43  0 6F  >  .p.e. .C.o
+		       0 72  0 70  0 6F  0 72  0 61  >  .r.p.o.r.a
+		       0 74  0 69  0 6F  0 6E  0 20  >  .t.i.o.n. 
+		       0 70  0 6C  0 63  0 20  0 72  >  .p.l.c. .r
+		       0 65  0 67  0 69  0 73  0 74  >  .e.g.i.s.t
+		       0 65  0 72  0 65  0 64  0 20  >  .e.r.e.d. 
+		       0 69  0 6E  0 20  0 74  0 68  >  .i.n. .t.h
+		       0 65  0 20  0 55  0 53  0 20  >  .e. .U.S. 
+		       0 50  0 61  0 74  0 20  0 26  >  .P.a.t. .&
+		       0 20  0 54  0 4D  0 20  0 4F  >  . .T.M. .O
+		       0 66  0 66  0 2E  0 20  0 61  >  .f.f... .a
+		       0 6E  0 64  0 20  0 65  0 6C  >  .n.d. .e.l
+		       0 73  0 65  0 77  0 68  0 65  >  .s.e.w.h.e
+		       0 72  0 65  0 2E              >  .r.e..
+
+	  8. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		8
+	     Length:		38
+	     Offset:		616
+		Data:  0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 54  >  .y.p.e. .T
+		       0 79  0 70  0 6F  0 67  0 72  >  .y.p.o.g.r
+		       0 61  0 70  0 68  0 79        >  .a.p.h.y
+
+	  9. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		9
+	     Length:		138
+	     Offset:		654
+		Data:  0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 54  >  .y.p.e. .T
+		       0 79  0 70  0 65  0 20  0 44  >  .y.p.e. .D
+		       0 72  0 61  0 77  0 69  0 6E  >  .r.a.w.i.n
+		       0 67  0 20  0 4F  0 66  0 66  >  .g. .O.f.f
+		       0 69  0 63  0 65  0 20  0 2D  >  .i.c.e. .-
+		       0 20  0 52  0 6F  0 62  0 69  >  . .R.o.b.i
+		       0 6E  0 20  0 4E  0 69  0 63  >  .n. .N.i.c
+		       0 68  0 6F  0 6C  0 61  0 73  >  .h.o.l.a.s
+		       0 2C  0 20  0 50  0 61  0 74  >  .,. .P.a.t
+		       0 72  0 69  0 63  0 69  0 61  >  .r.i.c.i.a
+		       0 20  0 53  0 61  0 75  0 6E  >  . .S.a.u.n
+		       0 64  0 65  0 72  0 73  0 20  >  .d.e.r.s. 
+		       0 31  0 39  0 38  0 32        >  .1.9.8.2
+
+	 10. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		10
+	     Length:		1218
+	     Offset:		792
+		Data:  0 43  0 6F  0 6E  0 74  0 65  >  .C.o.n.t.e
+		       0 6D  0 70  0 6F  0 72  0 61  >  .m.p.o.r.a
+		       0 72  0 79  0 20  0 73  0 61  >  .r.y. .s.a
+		       0 6E  0 73  0 20  0 73  0 65  >  .n.s. .s.e
+		       0 72  0 69  0 66  0 20  0 64  >  .r.i.f. .d
+		       0 65  0 73  0 69  0 67  0 6E  >  .e.s.i.g.n
+		       0 2C  0 20  0 41  0 72  0 69  >  .,. .A.r.i
+		       0 61  0 6C  0 20  0 63  0 6F  >  .a.l. .c.o
+		       0 6E  0 74  0 61  0 69  0 6E  >  .n.t.a.i.n
+		       0 73  0 20  0 6D  0 6F  0 72  >  .s. .m.o.r
+		       0 65  0 20  0 68  0 75  0 6D  >  .e. .h.u.m
+		       0 61  0 6E  0 69  0 73  0 74  >  .a.n.i.s.t
+		       0 20  0 63  0 68  0 61  0 72  >  . .c.h.a.r
+		       0 61  0 63  0 74  0 65  0 72  >  .a.c.t.e.r
+		       0 69  0 73  0 74  0 69  0 63  >  .i.s.t.i.c
+		       0 73  0 20  0 74  0 68  0 61  >  .s. .t.h.a
+		       0 6E  0 20  0 6D  0 61  0 6E  >  .n. .m.a.n
+		       0 79  0 20  0 6F  0 66  0 20  >  .y. .o.f. 
+		       0 69  0 74  0 73  0 20  0 70  >  .i.t.s. .p
+		       0 72  0 65  0 64  0 65  0 63  >  .r.e.d.e.c
+		       0 65  0 73  0 73  0 6F  0 72  >  .e.s.s.o.r
+		       0 73  0 20  0 61  0 6E  0 64  >  .s. .a.n.d
+		       0 20  0 61  0 73  0 20  0 73  >  . .a.s. .s
+		       0 75  0 63  0 68  0 20  0 69  >  .u.c.h. .i
+		       0 73  0 20  0 6D  0 6F  0 72  >  .s. .m.o.r
+		       0 65  0 20  0 69  0 6E  0 20  >  .e. .i.n. 
+		       0 74  0 75  0 6E  0 65  0 20  >  .t.u.n.e. 
+		       0 77  0 69  0 74  0 68  0 20  >  .w.i.t.h. 
+		       0 74  0 68  0 65  0 20  0 6D  >  .t.h.e. .m
+		       0 6F  0 6F  0 64  0 20  0 6F  >  .o.o.d. .o
+		       0 66  0 20  0 74  0 68  0 65  >  .f. .t.h.e
+		       0 20  0 6C  0 61  0 73  0 74  >  . .l.a.s.t
+		       0 20  0 64  0 65  0 63  0 61  >  . .d.e.c.a
+		       0 64  0 65  0 73  0 20  0 6F  >  .d.e.s. .o
+		       0 66  0 20  0 74  0 68  0 65  >  .f. .t.h.e
+		       0 20  0 74  0 77  0 65  0 6E  >  . .t.w.e.n
+		       0 74  0 69  0 65  0 74  0 68  >  .t.i.e.t.h
+		       0 20  0 63  0 65  0 6E  0 74  >  . .c.e.n.t
+		       0 75  0 72  0 79  0 2E  0 20  >  .u.r.y... 
+		       0 20  0 54  0 68  0 65  0 20  >  . .T.h.e. 
+		       0 6F  0 76  0 65  0 72  0 61  >  .o.v.e.r.a
+		       0 6C  0 6C  0 20  0 74  0 72  >  .l.l. .t.r
+		       0 65  0 61  0 74  0 6D  0 65  >  .e.a.t.m.e
+		       0 6E  0 74  0 20  0 6F  0 66  >  .n.t. .o.f
+		       0 20  0 63  0 75  0 72  0 76  >  . .c.u.r.v
+		       0 65  0 73  0 20  0 69  0 73  >  .e.s. .i.s
+		       0 20  0 73  0 6F  0 66  0 74  >  . .s.o.f.t
+		       0 65  0 72  0 20  0 61  0 6E  >  .e.r. .a.n
+		       0 64  0 20  0 66  0 75  0 6C  >  .d. .f.u.l
+		       0 6C  0 65  0 72  0 20  0 74  >  .l.e.r. .t
+		       0 68  0 61  0 6E  0 20  0 69  >  .h.a.n. .i
+		       0 6E  0 20  0 6D  0 6F  0 73  >  .n. .m.o.s
+		       0 74  0 20  0 69  0 6E  0 64  >  .t. .i.n.d
+		       0 75  0 73  0 74  0 72  0 69  >  .u.s.t.r.i
+		       0 61  0 6C  0 20  0 73  0 74  >  .a.l. .s.t
+		       0 79  0 6C  0 65  0 20  0 73  >  .y.l.e. .s
+		       0 61  0 6E  0 73  0 20  0 73  >  .a.n.s. .s
+		       0 65  0 72  0 69  0 66  0 20  >  .e.r.i.f. 
+		       0 66  0 61  0 63  0 65  0 73  >  .f.a.c.e.s
+		       0 2E  0 20  0 20  0 54  0 65  >  ... . .T.e
+		       0 72  0 6D  0 69  0 6E  0 61  >  .r.m.i.n.a
+		       0 6C  0 20  0 73  0 74  0 72  >  .l. .s.t.r
+		       0 6F  0 6B  0 65  0 73  0 20  >  .o.k.e.s. 
+		       0 61  0 72  0 65  0 20  0 63  >  .a.r.e. .c
+		       0 75  0 74  0 20  0 6F  0 6E  >  .u.t. .o.n
+		       0 20  0 74  0 68  0 65  0 20  >  . .t.h.e. 
+		       0 64  0 69  0 61  0 67  0 6F  >  .d.i.a.g.o
+		       0 6E  0 61  0 6C  0 20  0 77  >  .n.a.l. .w
+		       0 68  0 69  0 63  0 68  0 20  >  .h.i.c.h. 
+		       0 68  0 65  0 6C  0 70  0 73  >  .h.e.l.p.s
+		       0 20  0 74  0 6F  0 20  0 67  >  . .t.o. .g
+		       0 69  0 76  0 65  0 20  0 74  >  .i.v.e. .t
+		       0 68  0 65  0 20  0 66  0 61  >  .h.e. .f.a
+		       0 63  0 65  0 20  0 61  0 20  >  .c.e. .a. 
+		       0 6C  0 65  0 73  0 73  0 20  >  .l.e.s.s. 
+		       0 6D  0 65  0 63  0 68  0 61  >  .m.e.c.h.a
+		       0 6E  0 69  0 63  0 61  0 6C  >  .n.i.c.a.l
+		       0 20  0 61  0 70  0 70  0 65  >  . .a.p.p.e
+		       0 61  0 72  0 61  0 6E  0 63  >  .a.r.a.n.c
+		       0 65  0 2E  0 20  0 20  0 41  >  .e... . .A
+		       0 72  0 69  0 61  0 6C  0 20  >  .r.i.a.l. 
+		       0 69  0 73  0 20  0 61  0 6E  >  .i.s. .a.n
+		       0 20  0 65  0 78  0 74  0 72  >  . .e.x.t.r
+		       0 65  0 6D  0 65  0 6C  0 79  >  .e.m.e.l.y
+		       0 20  0 76  0 65  0 72  0 73  >  . .v.e.r.s
+		       0 61  0 74  0 69  0 6C  0 65  >  .a.t.i.l.e
+		       0 20  0 66  0 61  0 6D  0 69  >  . .f.a.m.i
+		       0 6C  0 79  0 20  0 6F  0 66  >  .l.y. .o.f
+		       0 20  0 74  0 79  0 70  0 65  >  . .t.y.p.e
+		       0 66  0 61  0 63  0 65  0 73  >  .f.a.c.e.s
+		       0 20  0 77  0 68  0 69  0 63  >  . .w.h.i.c
+		       0 68  0 20  0 63  0 61  0 6E  >  .h. .c.a.n
+		       0 20  0 62  0 65  0 20  0 75  >  . .b.e. .u
+		       0 73  0 65  0 64  0 20  0 77  >  .s.e.d. .w
+		       0 69  0 74  0 68  0 20  0 65  >  .i.t.h. .e
+		       0 71  0 75  0 61  0 6C  0 20  >  .q.u.a.l. 
+		       0 73  0 75  0 63  0 63  0 65  >  .s.u.c.c.e
+		       0 73  0 73  0 20  0 66  0 6F  >  .s.s. .f.o
+		       0 72  0 20  0 74  0 65  0 78  >  .r. .t.e.x
+		       0 74  0 20  0 73  0 65  0 74  >  .t. .s.e.t
+		       0 74  0 69  0 6E  0 67  0 20  >  .t.i.n.g. 
+		       0 69  0 6E  0 20  0 72  0 65  >  .i.n. .r.e
+		       0 70  0 6F  0 72  0 74  0 73  >  .p.o.r.t.s
+		       0 2C  0 20  0 70  0 72  0 65  >  .,. .p.r.e
+		       0 73  0 65  0 6E  0 74  0 61  >  .s.e.n.t.a
+		       0 74  0 69  0 6F  0 6E  0 73  >  .t.i.o.n.s
+		       0 2C  0 20  0 6D  0 61  0 67  >  .,. .m.a.g
+		       0 61  0 7A  0 69  0 6E  0 65  >  .a.z.i.n.e
+		       0 73  0 20  0 65  0 74  0 63  >  .s. .e.t.c
+		       0 2C  0 20  0 61  0 6E  0 64  >  .,. .a.n.d
+		       0 20  0 66  0 6F  0 72  0 20  >  . .f.o.r. 
+		       0 64  0 69  0 73  0 70  0 6C  >  .d.i.s.p.l
+		       0 61  0 79  0 20  0 75  0 73  >  .a.y. .u.s
+		       0 65  0 20  0 69  0 6E  0 20  >  .e. .i.n. 
+		       0 6E  0 65  0 77  0 73  0 70  >  .n.e.w.s.p
+		       0 61  0 70  0 65  0 72  0 73  >  .a.p.e.r.s
+		       0 2C  0 20  0 61  0 64  0 76  >  .,. .a.d.v
+		       0 65  0 72  0 74  0 69  0 73  >  .e.r.t.i.s
+		       0 69  0 6E  0 67  0 20  0 61  >  .i.n.g. .a
+		       0 6E  0 64  0 20  0 70  0 72  >  .n.d. .p.r
+		       0 6F  0 6D  0 6F  0 74  0 69  >  .o.m.o.t.i
+		       0 6F  0 6E  0 73  0 2E        >  .o.n.s..
+
+	 11. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		11
+	     Length:		98
+	     Offset:		2010
+		Data:  0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 6D  0 6F  0 6E  0 6F  >  ...m.o.n.o
+		       0 74  0 79  0 70  0 65  0 2E  >  .t.y.p.e..
+		       0 63  0 6F  0 6D  0 2F  0 68  >  .c.o.m./.h
+		       0 74  0 6D  0 6C  0 2F  0 6D  >  .t.m.l./.m
+		       0 74  0 6E  0 61  0 6D  0 65  >  .t.n.a.m.e
+		       0 2F  0 6D  0 73  0 5F  0 61  >  ./.m.s._.a
+		       0 72  0 69  0 61  0 6C  0 2E  >  .r.i.a.l..
+		       0 68  0 74  0 6D  0 6C        >  .h.t.m.l
+
+	 12. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		12
+	     Length:		102
+	     Offset:		2108
+		Data:  0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 6D  0 6F  0 6E  0 6F  >  ...m.o.n.o
+		       0 74  0 79  0 70  0 65  0 2E  >  .t.y.p.e..
+		       0 63  0 6F  0 6D  0 2F  0 68  >  .c.o.m./.h
+		       0 74  0 6D  0 6C  0 2F  0 6D  >  .t.m.l./.m
+		       0 74  0 6E  0 61  0 6D  0 65  >  .t.n.a.m.e
+		       0 2F  0 6D  0 73  0 5F  0 77  >  ./.m.s._.w
+		       0 65  0 6C  0 63  0 6F  0 6D  >  .e.l.c.o.m
+		       0 65  0 2E  0 68  0 74  0 6D  >  .e...h.t.m
+		       0 6C                          >  .l
+
+	 13. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		13
+	     Length:		1716
+	     Offset:		2210
+		Data:  0 4E  0 4F  0 54  0 49  0 46  >  .N.O.T.I.F
+		       0 49  0 43  0 41  0 54  0 49  >  .I.C.A.T.I
+		       0 4F  0 4E  0 20  0 4F  0 46  >  .O.N. .O.F
+		       0 20  0 4C  0 49  0 43  0 45  >  . .L.I.C.E
+		       0 4E  0 53  0 45  0 20  0 41  >  .N.S.E. .A
+		       0 47  0 52  0 45  0 45  0 4D  >  .G.R.E.E.M
+		       0 45  0 4E  0 54  0  D  0  A  >  .E.N.T....
+		       0  D  0  A  0 54  0 68  0 69  >  .....T.h.i
+		       0 73  0 20  0 74  0 79  0 70  >  .s. .t.y.p
+		       0 65  0 66  0 61  0 63  0 65  >  .e.f.a.c.e
+		       0 20  0 69  0 73  0 20  0 74  >  . .i.s. .t
+		       0 68  0 65  0 20  0 70  0 72  >  .h.e. .p.r
+		       0 6F  0 70  0 65  0 72  0 74  >  .o.p.e.r.t
+		       0 79  0 20  0 6F  0 66  0 20  >  .y. .o.f. 
+		       0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 54  >  .y.p.e. .T
+		       0 79  0 70  0 6F  0 67  0 72  >  .y.p.o.g.r
+		       0 61  0 70  0 68  0 79  0 20  >  .a.p.h.y. 
+		       0 61  0 6E  0 64  0 20  0 69  >  .a.n.d. .i
+		       0 74  0 73  0 20  0 75  0 73  >  .t.s. .u.s
+		       0 65  0 20  0 62  0 79  0 20  >  .e. .b.y. 
+		       0 79  0 6F  0 75  0 20  0 69  >  .y.o.u. .i
+		       0 73  0 20  0 63  0 6F  0 76  >  .s. .c.o.v
+		       0 65  0 72  0 65  0 64  0 20  >  .e.r.e.d. 
+		       0 75  0 6E  0 64  0 65  0 72  >  .u.n.d.e.r
+		       0 20  0 74  0 68  0 65  0 20  >  . .t.h.e. 
+		       0 74  0 65  0 72  0 6D  0 73  >  .t.e.r.m.s
+		       0 20  0 6F  0 66  0 20  0 61  >  . .o.f. .a
+		       0 20  0 6C  0 69  0 63  0 65  >  . .l.i.c.e
+		       0 6E  0 73  0 65  0 20  0 61  >  .n.s.e. .a
+		       0 67  0 72  0 65  0 65  0 6D  >  .g.r.e.e.m
+		       0 65  0 6E  0 74  0 2E  0 20  >  .e.n.t... 
+		       0 59  0 6F  0 75  0 20  0 68  >  .Y.o.u. .h
+		       0 61  0 76  0 65  0 20  0 6F  >  .a.v.e. .o
+		       0 62  0 74  0 61  0 69  0 6E  >  .b.t.a.i.n
+		       0 65  0 64  0 20  0 74  0 68  >  .e.d. .t.h
+		       0 69  0 73  0 20  0 74  0 79  >  .i.s. .t.y
+		       0 70  0 65  0 66  0 61  0 63  >  .p.e.f.a.c
+		       0 65  0 20  0 73  0 6F  0 66  >  .e. .s.o.f
+		       0 74  0 77  0 61  0 72  0 65  >  .t.w.a.r.e
+		       0 20  0 65  0 69  0 74  0 68  >  . .e.i.t.h
+		       0 65  0 72  0 20  0 64  0 69  >  .e.r. .d.i
+		       0 72  0 65  0 63  0 74  0 6C  >  .r.e.c.t.l
+		       0 79  0 20  0 66  0 72  0 6F  >  .y. .f.r.o
+		       0 6D  0 20  0 4D  0 6F  0 6E  >  .m. .M.o.n
+		       0 6F  0 74  0 79  0 70  0 65  >  .o.t.y.p.e
+		       0 20  0 6F  0 72  0 20  0 74  >  . .o.r. .t
+		       0 6F  0 67  0 65  0 74  0 68  >  .o.g.e.t.h
+		       0 65  0 72  0 20  0 77  0 69  >  .e.r. .w.i
+		       0 74  0 68  0 20  0 73  0 6F  >  .t.h. .s.o
+		       0 66  0 74  0 77  0 61  0 72  >  .f.t.w.a.r
+		       0 65  0 20  0 64  0 69  0 73  >  .e. .d.i.s
+		       0 74  0 72  0 69  0 62  0 75  >  .t.r.i.b.u
+		       0 74  0 65  0 64  0 20  0 62  >  .t.e.d. .b
+		       0 79  0 20  0 6F  0 6E  0 65  >  .y. .o.n.e
+		       0 20  0 6F  0 66  0 20  0 4D  >  . .o.f. .M
+		       0 6F  0 6E  0 6F  0 74  0 79  >  .o.n.o.t.y
+		       0 70  0 65  0 27  0 73  0 20  >  .p.e.'.s. 
+		       0 6C  0 69  0 63  0 65  0 6E  >  .l.i.c.e.n
+		       0 73  0 65  0 65  0 73  0 2E  >  .s.e.e.s..
+		       0  D  0  A  0  D  0  A  0 54  >  .........T
+		       0 68  0 69  0 73  0 20  0 73  >  .h.i.s. .s
+		       0 6F  0 66  0 74  0 77  0 61  >  .o.f.t.w.a
+		       0 72  0 65  0 20  0 69  0 73  >  .r.e. .i.s
+		       0 20  0 61  0 20  0 76  0 61  >  . .a. .v.a
+		       0 6C  0 75  0 61  0 62  0 6C  >  .l.u.a.b.l
+		       0 65  0 20  0 61  0 73  0 73  >  .e. .a.s.s
+		       0 65  0 74  0 20  0 6F  0 66  >  .e.t. .o.f
+		       0 20  0 4D  0 6F  0 6E  0 6F  >  . .M.o.n.o
+		       0 74  0 79  0 70  0 65  0 2E  >  .t.y.p.e..
+		       0 20  0 55  0 6E  0 6C  0 65  >  . .U.n.l.e
+		       0 73  0 73  0 20  0 79  0 6F  >  .s.s. .y.o
+		       0 75  0 20  0 68  0 61  0 76  >  .u. .h.a.v
+		       0 65  0 20  0 65  0 6E  0 74  >  .e. .e.n.t
+		       0 65  0 72  0 65  0 64  0 20  >  .e.r.e.d. 
+		       0 69  0 6E  0 74  0 6F  0 20  >  .i.n.t.o. 
+		       0 61  0 20  0 73  0 70  0 65  >  .a. .s.p.e
+		       0 63  0 69  0 66  0 69  0 63  >  .c.i.f.i.c
+		       0 20  0 6C  0 69  0 63  0 65  >  . .l.i.c.e
+		       0 6E  0 73  0 65  0 20  0 61  >  .n.s.e. .a
+		       0 67  0 72  0 65  0 65  0 6D  >  .g.r.e.e.m
+		       0 65  0 6E  0 74  0 20  0 67  >  .e.n.t. .g
+		       0 72  0 61  0 6E  0 74  0 69  >  .r.a.n.t.i
+		       0 6E  0 67  0 20  0 79  0 6F  >  .n.g. .y.o
+		       0 75  0 20  0 61  0 64  0 64  >  .u. .a.d.d
+		       0 69  0 74  0 69  0 6F  0 6E  >  .i.t.i.o.n
+		       0 61  0 6C  0 20  0 72  0 69  >  .a.l. .r.i
+		       0 67  0 68  0 74  0 73  0 2C  >  .g.h.t.s.,
+		       0 20  0 79  0 6F  0 75  0 72  >  . .y.o.u.r
+		       0 20  0 75  0 73  0 65  0 20  >  . .u.s.e. 
+		       0 6F  0 66  0 20  0 74  0 68  >  .o.f. .t.h
+		       0 69  0 73  0 20  0 73  0 6F  >  .i.s. .s.o
+		       0 66  0 74  0 77  0 61  0 72  >  .f.t.w.a.r
+		       0 65  0 20  0 69  0 73  0 20  >  .e. .i.s. 
+		       0 6C  0 69  0 6D  0 69  0 74  >  .l.i.m.i.t
+		       0 65  0 64  0 20  0 74  0 6F  >  .e.d. .t.o
+		       0 20  0 79  0 6F  0 75  0 72  >  . .y.o.u.r
+		       0 20  0 77  0 6F  0 72  0 6B  >  . .w.o.r.k
+		       0 73  0 74  0 61  0 74  0 69  >  .s.t.a.t.i
+		       0 6F  0 6E  0 20  0 66  0 6F  >  .o.n. .f.o
+		       0 72  0 20  0 79  0 6F  0 75  >  .r. .y.o.u
+		       0 72  0 20  0 6F  0 77  0 6E  >  .r. .o.w.n
+		       0 20  0 70  0 75  0 62  0 6C  >  . .p.u.b.l
+		       0 69  0 73  0 68  0 69  0 6E  >  .i.s.h.i.n
+		       0 67  0 20  0 75  0 73  0 65  >  .g. .u.s.e
+		       0 2E  0 20  0 59  0 6F  0 75  >  ... .Y.o.u
+		       0 20  0 6D  0 61  0 79  0 20  >  . .m.a.y. 
+		       0 6E  0 6F  0 74  0 20  0 63  >  .n.o.t. .c
+		       0 6F  0 70  0 79  0 20  0 6F  >  .o.p.y. .o
+		       0 72  0 20  0 64  0 69  0 73  >  .r. .d.i.s
+		       0 74  0 72  0 69  0 62  0 75  >  .t.r.i.b.u
+		       0 74  0 65  0 20  0 74  0 68  >  .t.e. .t.h
+		       0 69  0 73  0 20  0 73  0 6F  >  .i.s. .s.o
+		       0 66  0 74  0 77  0 61  0 72  >  .f.t.w.a.r
+		       0 65  0 2E  0  D  0  A  0  D  >  .e........
+		       0  A  0 49  0 66  0 20  0 79  >  ...I.f. .y
+		       0 6F  0 75  0 20  0 68  0 61  >  .o.u. .h.a
+		       0 76  0 65  0 20  0 61  0 6E  >  .v.e. .a.n
+		       0 79  0 20  0 71  0 75  0 65  >  .y. .q.u.e
+		       0 73  0 74  0 69  0 6F  0 6E  >  .s.t.i.o.n
+		       0 20  0 63  0 6F  0 6E  0 63  >  . .c.o.n.c
+		       0 65  0 72  0 6E  0 69  0 6E  >  .e.r.n.i.n
+		       0 67  0 20  0 79  0 6F  0 75  >  .g. .y.o.u
+		       0 72  0 20  0 72  0 69  0 67  >  .r. .r.i.g
+		       0 68  0 74  0 73  0 20  0 79  >  .h.t.s. .y
+		       0 6F  0 75  0 20  0 73  0 68  >  .o.u. .s.h
+		       0 6F  0 75  0 6C  0 64  0 20  >  .o.u.l.d. 
+		       0 72  0 65  0 76  0 69  0 65  >  .r.e.v.i.e
+		       0 77  0 20  0 74  0 68  0 65  >  .w. .t.h.e
+		       0 20  0 6C  0 69  0 63  0 65  >  . .l.i.c.e
+		       0 6E  0 73  0 65  0 20  0 61  >  .n.s.e. .a
+		       0 67  0 72  0 65  0 65  0 6D  >  .g.r.e.e.m
+		       0 65  0 6E  0 74  0 20  0 79  >  .e.n.t. .y
+		       0 6F  0 75  0 20  0 72  0 65  >  .o.u. .r.e
+		       0 63  0 65  0 69  0 76  0 65  >  .c.e.i.v.e
+		       0 64  0 20  0 77  0 69  0 74  >  .d. .w.i.t
+		       0 68  0 20  0 74  0 68  0 65  >  .h. .t.h.e
+		       0 20  0 73  0 6F  0 66  0 74  >  . .s.o.f.t
+		       0 77  0 61  0 72  0 65  0 20  >  .w.a.r.e. 
+		       0 6F  0 72  0 20  0 63  0 6F  >  .o.r. .c.o
+		       0 6E  0 74  0 61  0 63  0 74  >  .n.t.a.c.t
+		       0 20  0 4D  0 6F  0 6E  0 6F  >  . .M.o.n.o
+		       0 74  0 79  0 70  0 65  0 20  >  .t.y.p.e. 
+		       0 66  0 6F  0 72  0 20  0 61  >  .f.o.r. .a
+		       0 20  0 63  0 6F  0 70  0 79  >  . .c.o.p.y
+		       0 20  0 6F  0 66  0 20  0 74  >  . .o.f. .t
+		       0 68  0 65  0 20  0 6C  0 69  >  .h.e. .l.i
+		       0 63  0 65  0 6E  0 73  0 65  >  .c.e.n.s.e
+		       0 20  0 61  0 67  0 72  0 65  >  . .a.g.r.e
+		       0 65  0 6D  0 65  0 6E  0 74  >  .e.m.e.n.t
+		       0 2E  0  D  0  A  0  D  0  A  >  ..........
+		       0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 63  >  .y.p.e. .c
+		       0 61  0 6E  0 20  0 62  0 65  >  .a.n. .b.e
+		       0 20  0 63  0 6F  0 6E  0 74  >  . .c.o.n.t
+		       0 61  0 63  0 74  0 65  0 64  >  .a.c.t.e.d
+		       0 20  0 61  0 74  0 3A  0  D  >  . .a.t.:..
+		       0  A  0  D  0  A  0 55  0 53  >  .......U.S
+		       0 41  0 20  0 2D  0 20  0 28  >  .A. .-. .(
+		       0 38  0 34  0 37  0 29  0 20  >  .8.4.7.). 
+		       0 37  0 31  0 38  0 2D  0 30  >  .7.1.8.-.0
+		       0 34  0 30  0 30  0  9  0  9  >  .4.0.0....
+		       0 55  0 4B  0 20  0 2D  0 20  >  .U.K. .-. 
+		       0 30  0 31  0 31  0 34  0 34  >  .0.1.1.4.4
+		       0 20  0 30  0 31  0 37  0 33  >  . .0.1.7.3
+		       0 37  0 20  0 37  0 36  0 35  >  .7. .7.6.5
+		       0 39  0 35  0 39  0  D  0  A  >  .9.5.9....
+		       0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 6D  0 6F  0 6E  0 6F  >  ...m.o.n.o
+		       0 74  0 79  0 70  0 65  0 2E  >  .t.y.p.e..
+		       0 63  0 6F  0 6D              >  .c.o.m
+
+	 14. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		14
+	     Length:		92
+	     Offset:		3926
+		Data:  0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 6D  0 6F  0 6E  0 6F  >  ...m.o.n.o
+		       0 74  0 79  0 70  0 65  0 2E  >  .t.y.p.e..
+		       0 63  0 6F  0 6D  0 2F  0 68  >  .c.o.m./.h
+		       0 74  0 6D  0 6C  0 2F  0 74  >  .t.m.l./.t
+		       0 79  0 70  0 65  0 2F  0 6C  >  .y.p.e./.l
+		       0 69  0 63  0 65  0 6E  0 73  >  .i.c.e.n.s
+		       0 65  0 2E  0 68  0 74  0 6D  >  .e...h.t.m
+		       0 6C                          >  .l
+
+	 15. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		0
+	     Length:		127
+	     Offset:		4018
+		Data: 54 79 70 65 66 61 63 65 20 A9  >  Typeface ©
+		      20 54 68 65 20 4D 6F 6E 6F 74  >   The Monot
+		      79 70 65 20 43 6F 72 70 6F 72  >  ype Corpor
+		      61 74 69 6F 6E 20 70 6C 63 2E  >  ation plc.
+		      20 44 61 74 61 20 A9 20 54 68  >   Data © Th
+		      65 20 4D 6F 6E 6F 74 79 70 65  >  e Monotype
+		      20 43 6F 72 70 6F 72 61 74 69  >   Corporati
+		      6F 6E 20 70 6C 63 2F 54 79 70  >  on plc/Typ
+		      65 20 53 6F 6C 75 74 69 6F 6E  >  e Solution
+		      73 20 49 6E 63 2E 20 31 39 39  >  s Inc. 199
+		      30 2D 31 39 39 32 2E 20 41 6C  >  0-1992. Al
+		      6C 20 52 69 67 68 74 73 20 52  >  l Rights R
+		      65 73 65 72 76 65 64           >  eserved
+
+	 16. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		1
+	     Length:		5
+	     Offset:		4145
+		Data: 41 72 69 61 6C                 >  Arial
+
+	 17. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		2
+	     Length:		7
+	     Offset:		4150
+		Data: 52 65 67 75 6C 61 72           >  Regular
+
+	 18. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		3
+	     Length:		47
+	     Offset:		4157
+		Data: 4D 6F 6E 6F 74 79 70 65 3A 41  >  Monotype:A
+		      72 69 61 6C 20 52 65 67 75 6C  >  rial Regul
+		      61 72 3A 56 65 72 73 69 6F 6E  >  ar:Version
+		      20 32 2E 39 38 20 28 4D 69 63  >   2.98 (Mic
+		      72 6F 73 6F 66 74 29           >  rosoft)
+
+	 19. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		4
+	     Length:		5
+	     Offset:		4204
+		Data: 41 72 69 61 6C                 >  Arial
+
+	 20. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		5
+	     Length:		12
+	     Offset:		4209
+		Data: 56 65 72 73 69 6F 6E 20 32 2E  >  Version 2.
+		      39 38                          >  98
+
+	 21. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		6
+	     Length:		7
+	     Offset:		4221
+		Data: 41 72 69 61 6C 4D 54           >  ArialMT
+
+	 22. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		7
+	     Length:		98
+	     Offset:		4228
+		Data: 41 72 69 61 6C A8 20 54 72 61  >  Arial¨ Tra
+		      64 65 6D 61 72 6B 20 6F 66 20  >  demark of 
+		      54 68 65 20 4D 6F 6E 6F 74 79  >  The Monoty
+		      70 65 20 43 6F 72 70 6F 72 61  >  pe Corpora
+		      74 69 6F 6E 20 70 6C 63 20 72  >  tion plc r
+		      65 67 69 73 74 65 72 65 64 20  >  egistered 
+		      69 6E 20 74 68 65 20 55 53 20  >  in the US 
+		      50 61 74 20 26 20 54 4D 20 4F  >  Pat & TM O
+		      66 66 2E 20 61 6E 64 20 65 6C  >  ff. and el
+		      73 65 77 68 65 72 65 2E        >  sewhere.
+
+	 23. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		8
+	     Length:		19
+	     Offset:		4326
+		Data: 4D 6F 6E 6F 74 79 70 65 20 54  >  Monotype T
+		      79 70 6F 67 72 61 70 68 79     >  ypography
+
+	 24. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		9
+	     Length:		69
+	     Offset:		4345
+		Data: 4D 6F 6E 6F 74 79 70 65 20 54  >  Monotype T
+		      79 70 65 20 44 72 61 77 69 6E  >  ype Drawin
+		      67 20 4F 66 66 69 63 65 20 2D  >  g Office -
+		      20 52 6F 62 69 6E 20 4E 69 63  >   Robin Nic
+		      68 6F 6C 61 73 2C 20 50 61 74  >  holas, Pat
+		      72 69 63 69 61 20 53 61 75 6E  >  ricia Saun
+		      64 65 72 73 20 31 39 38 32     >  ders 1982
+
+	 25. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		10
+	     Length:		609
+	     Offset:		4414
+		Data: 43 6F 6E 74 65 6D 70 6F 72 61  >  Contempora
+		      72 79 20 73 61 6E 73 20 73 65  >  ry sans se
+		      72 69 66 20 64 65 73 69 67 6E  >  rif design
+		      2C 20 41 72 69 61 6C 20 63 6F  >  , Arial co
+		      6E 74 61 69 6E 73 20 6D 6F 72  >  ntains mor
+		      65 20 68 75 6D 61 6E 69 73 74  >  e humanist
+		      20 63 68 61 72 61 63 74 65 72  >   character
+		      69 73 74 69 63 73 20 74 68 61  >  istics tha
+		      6E 20 6D 61 6E 79 20 6F 66 20  >  n many of 
+		      69 74 73 20 70 72 65 64 65 63  >  its predec
+		      65 73 73 6F 72 73 20 61 6E 64  >  essors and
+		      20 61 73 20 73 75 63 68 20 69  >   as such i
+		      73 20 6D 6F 72 65 20 69 6E 20  >  s more in 
+		      74 75 6E 65 20 77 69 74 68 20  >  tune with 
+		      74 68 65 20 6D 6F 6F 64 20 6F  >  the mood o
+		      66 20 74 68 65 20 6C 61 73 74  >  f the last
+		      20 64 65 63 61 64 65 73 20 6F  >   decades o
+		      66 20 74 68 65 20 74 77 65 6E  >  f the twen
+		      74 69 65 74 68 20 63 65 6E 74  >  tieth cent
+		      75 72 79 2E 20 20 54 68 65 20  >  ury.  The 
+		      6F 76 65 72 61 6C 6C 20 74 72  >  overall tr
+		      65 61 74 6D 65 6E 74 20 6F 66  >  eatment of
+		      20 63 75 72 76 65 73 20 69 73  >   curves is
+		      20 73 6F 66 74 65 72 20 61 6E  >   softer an
+		      64 20 66 75 6C 6C 65 72 20 74  >  d fuller t
+		      68 61 6E 20 69 6E 20 6D 6F 73  >  han in mos
+		      74 20 69 6E 64 75 73 74 72 69  >  t industri
+		      61 6C 20 73 74 79 6C 65 20 73  >  al style s
+		      61 6E 73 20 73 65 72 69 66 20  >  ans serif 
+		      66 61 63 65 73 2E 20 20 54 65  >  faces.  Te
+		      72 6D 69 6E 61 6C 20 73 74 72  >  rminal str
+		      6F 6B 65 73 20 61 72 65 20 63  >  okes are c
+		      75 74 20 6F 6E 20 74 68 65 20  >  ut on the 
+		      64 69 61 67 6F 6E 61 6C 20 77  >  diagonal w
+		      68 69 63 68 20 68 65 6C 70 73  >  hich helps
+		      20 74 6F 20 67 69 76 65 20 74  >   to give t
+		      68 65 20 66 61 63 65 20 61 20  >  he face a 
+		      6C 65 73 73 20 6D 65 63 68 61  >  less mecha
+		      6E 69 63 61 6C 20 61 70 70 65  >  nical appe
+		      61 72 61 6E 63 65 2E 20 20 41  >  arance.  A
+		      72 69 61 6C 20 69 73 20 61 6E  >  rial is an
+		      20 65 78 74 72 65 6D 65 6C 79  >   extremely
+		      20 76 65 72 73 61 74 69 6C 65  >   versatile
+		      20 66 61 6D 69 6C 79 20 6F 66  >   family of
+		      20 74 79 70 65 66 61 63 65 73  >   typefaces
+		      20 77 68 69 63 68 20 63 61 6E  >   which can
+		      20 62 65 20 75 73 65 64 20 77  >   be used w
+		      69 74 68 20 65 71 75 61 6C 20  >  ith equal 
+		      73 75 63 63 65 73 73 20 66 6F  >  success fo
+		      72 20 74 65 78 74 20 73 65 74  >  r text set
+		      74 69 6E 67 20 69 6E 20 72 65  >  ting in re
+		      70 6F 72 74 73 2C 20 70 72 65  >  ports, pre
+		      73 65 6E 74 61 74 69 6F 6E 73  >  sentations
+		      2C 20 6D 61 67 61 7A 69 6E 65  >  , magazine
+		      73 20 65 74 63 2C 20 61 6E 64  >  s etc, and
+		      20 66 6F 72 20 64 69 73 70 6C  >   for displ
+		      61 79 20 75 73 65 20 69 6E 20  >  ay use in 
+		      6E 65 77 73 70 61 70 65 72 73  >  newspapers
+		      2C 20 61 64 76 65 72 74 69 73  >  , advertis
+		      69 6E 67 20 61 6E 64 20 70 72  >  ing and pr
+		      6F 6D 6F 74 69 6F 6E 73 2E     >  omotions.
+
+	 26. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		11
+	     Length:		49
+	     Offset:		5023
+		Data: 68 74 74 70 3A 2F 2F 77 77 77  >  http://www
+		      2E 6D 6F 6E 6F 74 79 70 65 2E  >  .monotype.
+		      63 6F 6D 2F 68 74 6D 6C 2F 6D  >  com/html/m
+		      74 6E 61 6D 65 2F 6D 73 5F 61  >  tname/ms_a
+		      72 69 61 6C 2E 68 74 6D 6C     >  rial.html
+
+	 27. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		12
+	     Length:		51
+	     Offset:		5072
+		Data: 68 74 74 70 3A 2F 2F 77 77 77  >  http://www
+		      2E 6D 6F 6E 6F 74 79 70 65 2E  >  .monotype.
+		      63 6F 6D 2F 68 74 6D 6C 2F 6D  >  com/html/m
+		      74 6E 61 6D 65 2F 6D 73 5F 77  >  tname/ms_w
+		      65 6C 63 6F 6D 65 2E 68 74 6D  >  elcome.htm
+		      6C                             >  l
+
+	 28. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		13
+	     Length:		858
+	     Offset:		5123
+		Data: 4E 4F 54 49 46 49 43 41 54 49  >  NOTIFICATI
+		      4F 4E 20 4F 46 20 4C 49 43 45  >  ON OF LICE
+		      4E 53 45 20 41 47 52 45 45 4D  >  NSE AGREEM
+		      45 4E 54  D  A  D  A 54 68 69  >  ENT....Thi
+		      73 20 74 79 70 65 66 61 63 65  >  s typeface
+		      20 69 73 20 74 68 65 20 70 72  >   is the pr
+		      6F 70 65 72 74 79 20 6F 66 20  >  operty of 
+		      4D 6F 6E 6F 74 79 70 65 20 54  >  Monotype T
+		      79 70 6F 67 72 61 70 68 79 20  >  ypography 
+		      61 6E 64 20 69 74 73 20 75 73  >  and its us
+		      65 20 62 79 20 79 6F 75 20 69  >  e by you i
+		      73 20 63 6F 76 65 72 65 64 20  >  s covered 
+		      75 6E 64 65 72 20 74 68 65 20  >  under the 
+		      74 65 72 6D 73 20 6F 66 20 61  >  terms of a
+		      20 6C 69 63 65 6E 73 65 20 61  >   license a
+		      67 72 65 65 6D 65 6E 74 2E 20  >  greement. 
+		      59 6F 75 20 68 61 76 65 20 6F  >  You have o
+		      62 74 61 69 6E 65 64 20 74 68  >  btained th
+		      69 73 20 74 79 70 65 66 61 63  >  is typefac
+		      65 20 73 6F 66 74 77 61 72 65  >  e software
+		      20 65 69 74 68 65 72 20 64 69  >   either di
+		      72 65 63 74 6C 79 20 66 72 6F  >  rectly fro
+		      6D 20 4D 6F 6E 6F 74 79 70 65  >  m Monotype
+		      20 6F 72 20 74 6F 67 65 74 68  >   or togeth
+		      65 72 20 77 69 74 68 20 73 6F  >  er with so
+		      66 74 77 61 72 65 20 64 69 73  >  ftware dis
+		      74 72 69 62 75 74 65 64 20 62  >  tributed b
+		      79 20 6F 6E 65 20 6F 66 20 4D  >  y one of M
+		      6F 6E 6F 74 79 70 65 27 73 20  >  onotype's 
+		      6C 69 63 65 6E 73 65 65 73 2E  >  licensees.
+		       D  A  D  A 54 68 69 73 20 73  >  ....This s
+		      6F 66 74 77 61 72 65 20 69 73  >  oftware is
+		      20 61 20 76 61 6C 75 61 62 6C  >   a valuabl
+		      65 20 61 73 73 65 74 20 6F 66  >  e asset of
+		      20 4D 6F 6E 6F 74 79 70 65 2E  >   Monotype.
+		      20 55 6E 6C 65 73 73 20 79 6F  >   Unless yo
+		      75 20 68 61 76 65 20 65 6E 74  >  u have ent
+		      65 72 65 64 20 69 6E 74 6F 20  >  ered into 
+		      61 20 73 70 65 63 69 66 69 63  >  a specific
+		      20 6C 69 63 65 6E 73 65 20 61  >   license a
+		      67 72 65 65 6D 65 6E 74 20 67  >  greement g
+		      72 61 6E 74 69 6E 67 20 79 6F  >  ranting yo
+		      75 20 61 64 64 69 74 69 6F 6E  >  u addition
+		      61 6C 20 72 69 67 68 74 73 2C  >  al rights,
+		      20 79 6F 75 72 20 75 73 65 20  >   your use 
+		      6F 66 20 74 68 69 73 20 73 6F  >  of this so
+		      66 74 77 61 72 65 20 69 73 20  >  ftware is 
+		      6C 69 6D 69 74 65 64 20 74 6F  >  limited to
+		      20 79 6F 75 72 20 77 6F 72 6B  >   your work
+		      73 74 61 74 69 6F 6E 20 66 6F  >  station fo
+		      72 20 79 6F 75 72 20 6F 77 6E  >  r your own
+		      20 70 75 62 6C 69 73 68 69 6E  >   publishin
+		      67 20 75 73 65 2E 20 59 6F 75  >  g use. You
+		      20 6D 61 79 20 6E 6F 74 20 63  >   may not c
+		      6F 70 79 20 6F 72 20 64 69 73  >  opy or dis
+		      74 72 69 62 75 74 65 20 74 68  >  tribute th
+		      69 73 20 73 6F 66 74 77 61 72  >  is softwar
+		      65 2E  D  A  D  A 49 66 20 79  >  e.....If y
+		      6F 75 20 68 61 76 65 20 61 6E  >  ou have an
+		      79 20 71 75 65 73 74 69 6F 6E  >  y question
+		      20 63 6F 6E 63 65 72 6E 69 6E  >   concernin
+		      67 20 79 6F 75 72 20 72 69 67  >  g your rig
+		      68 74 73 20 79 6F 75 20 73 68  >  hts you sh
+		      6F 75 6C 64 20 72 65 76 69 65  >  ould revie
+		      77 20 74 68 65 20 6C 69 63 65  >  w the lice
+		      6E 73 65 20 61 67 72 65 65 6D  >  nse agreem
+		      65 6E 74 20 79 6F 75 20 72 65  >  ent you re
+		      63 65 69 76 65 64 20 77 69 74  >  ceived wit
+		      68 20 74 68 65 20 73 6F 66 74  >  h the soft
+		      77 61 72 65 20 6F 72 20 63 6F  >  ware or co
+		      6E 74 61 63 74 20 4D 6F 6E 6F  >  ntact Mono
+		      74 79 70 65 20 66 6F 72 20 61  >  type for a
+		      20 63 6F 70 79 20 6F 66 20 74  >   copy of t
+		      68 65 20 6C 69 63 65 6E 73 65  >  he license
+		      20 61 67 72 65 65 6D 65 6E 74  >   agreement
+		      2E  D  A  D  A 4D 6F 6E 6F 74  >  .....Monot
+		      79 70 65 20 63 61 6E 20 62 65  >  ype can be
+		      20 63 6F 6E 74 61 63 74 65 64  >   contacted
+		      20 61 74 3A  D  A  D  A 55 53  >   at:....US
+		      41 20 2D 20 28 38 34 37 29 20  >  A - (847) 
+		      37 31 38 2D 30 34 30 30  9  9  >  718-0400..
+		      55 4B 20 2D 20 30 31 31 34 34  >  UK - 01144
+		      20 30 31 37 33 37 20 37 36 35  >   01737 765
+		      39 35 39  D  A 68 74 74 70 3A  >  959..http:
+		      2F 2F 77 77 77 2E 6D 6F 6E 6F  >  //www.mono
+		      74 79 70 65 2E 63 6F 6D        >  type.com
+
+	 29. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		14
+	     Length:		46
+	     Offset:		5981
+		Data: 68 74 74 70 3A 2F 2F 77 77 77  >  http://www
+		      2E 6D 6F 6E 6F 74 79 70 65 2E  >  .monotype.
+		      63 6F 6D 2F 68 74 6D 6C 2F 74  >  com/html/t
+		      79 70 65 2F 6C 69 63 65 6E 73  >  ype/licens
+		      65 2E 68 74 6D 6C              >  e.html
+
+	 30. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1027
+	     Name ID:		2
+	     Length:		12
+	     Offset:		6027
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+	 31. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1029
+	     Name ID:		2
+	     Length:		16
+	     Offset:		6039
+		Data:  0 6F  0 62  0 79  1  D  0 65  >  .o.b.y...e
+		       0 6A  0 6E  0 E9              >  .j.n.é
+
+	 32. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1030
+	     Name ID:		2
+	     Length:		12
+	     Offset:		6055
+		Data:  0 6E  0 6F  0 72  0 6D  0 61  >  .n.o.r.m.a
+		       0 6C                          >  .l
+
+	 33. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1031
+	     Name ID:		2
+	     Length:		16
+	     Offset:		6067
+		Data:  0 53  0 74  0 61  0 6E  0 64  >  .S.t.a.n.d
+		       0 61  0 72  0 64              >  .a.r.d
+
+	 34. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1032
+	     Name ID:		2
+	     Length:		16
+	     Offset:		6083
+		Data:  3 9A  3 B1  3 BD  3 BF  3 BD  >  .š.±.½.¿.½
+		       3 B9  3 BA  3 AC              >  .¹.º.¬
+
+	 35. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		0
+	     Length:		254
+	     Offset:		6099
+		Data:  0 54  0 79  0 70  0 65  0 66  >  .T.y.p.e.f
+		       0 61  0 63  0 65  0 20  0 A9  >  .a.c.e. .©
+		       0 20  0 54  0 68  0 65  0 20  >  . .T.h.e. 
+		       0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 43  >  .y.p.e. .C
+		       0 6F  0 72  0 70  0 6F  0 72  >  .o.r.p.o.r
+		       0 61  0 74  0 69  0 6F  0 6E  >  .a.t.i.o.n
+		       0 20  0 70  0 6C  0 63  0 2E  >  . .p.l.c..
+		       0 20  0 44  0 61  0 74  0 61  >  . .D.a.t.a
+		       0 20  0 A9  0 20  0 54  0 68  >  . .©. .T.h
+		       0 65  0 20  0 4D  0 6F  0 6E  >  .e. .M.o.n
+		       0 6F  0 74  0 79  0 70  0 65  >  .o.t.y.p.e
+		       0 20  0 43  0 6F  0 72  0 70  >  . .C.o.r.p
+		       0 6F  0 72  0 61  0 74  0 69  >  .o.r.a.t.i
+		       0 6F  0 6E  0 20  0 70  0 6C  >  .o.n. .p.l
+		       0 63  0 2F  0 54  0 79  0 70  >  .c./.T.y.p
+		       0 65  0 20  0 53  0 6F  0 6C  >  .e. .S.o.l
+		       0 75  0 74  0 69  0 6F  0 6E  >  .u.t.i.o.n
+		       0 73  0 20  0 49  0 6E  0 63  >  .s. .I.n.c
+		       0 2E  0 20  0 31  0 39  0 39  >  ... .1.9.9
+		       0 30  0 2D  0 31  0 39  0 39  >  .0.-.1.9.9
+		       0 32  0 2E  0 20  0 41  0 6C  >  .2... .A.l
+		       0 6C  0 20  0 52  0 69  0 67  >  .l. .R.i.g
+		       0 68  0 74  0 73  0 20  0 52  >  .h.t.s. .R
+		       0 65  0 73  0 65  0 72  0 76  >  .e.s.e.r.v
+		       0 65  0 64                    >  .e.d
+
+	 36. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		1
+	     Length:		10
+	     Offset:		6353
+		Data:  0 41  0 72  0 69  0 61  0 6C  >  .A.r.i.a.l
+
+	 37. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		2
+	     Length:		14
+	     Offset:		6363
+		Data:  0 52  0 65  0 67  0 75  0 6C  >  .R.e.g.u.l
+		       0 61  0 72                    >  .a.r
+
+	 38. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		3
+	     Length:		94
+	     Offset:		6377
+		Data:  0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 3A  0 41  >  .y.p.e.:.A
+		       0 72  0 69  0 61  0 6C  0 20  >  .r.i.a.l. 
+		       0 52  0 65  0 67  0 75  0 6C  >  .R.e.g.u.l
+		       0 61  0 72  0 3A  0 56  0 65  >  .a.r.:.V.e
+		       0 72  0 73  0 69  0 6F  0 6E  >  .r.s.i.o.n
+		       0 20  0 32  0 2E  0 39  0 38  >  . .2...9.8
+		       0 20  0 28  0 4D  0 69  0 63  >  . .(.M.i.c
+		       0 72  0 6F  0 73  0 6F  0 66  >  .r.o.s.o.f
+		       0 74  0 29                    >  .t.)
+
+	 39. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		4
+	     Length:		10
+	     Offset:		6471
+		Data:  0 41  0 72  0 69  0 61  0 6C  >  .A.r.i.a.l
+
+	 40. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		5
+	     Length:		24
+	     Offset:		6481
+		Data:  0 56  0 65  0 72  0 73  0 69  >  .V.e.r.s.i
+		       0 6F  0 6E  0 20  0 32  0 2E  >  .o.n. .2..
+		       0 39  0 38                    >  .9.8
+
+	 41. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		6
+	     Length:		14
+	     Offset:		6505
+		Data:  0 41  0 72  0 69  0 61  0 6C  >  .A.r.i.a.l
+		       0 4D  0 54                    >  .M.T
+
+	 42. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		7
+	     Length:		196
+	     Offset:		6519
+		Data:  0 41  0 72  0 69  0 61  0 6C  >  .A.r.i.a.l
+		       0 AE  0 20  0 54  0 72  0 61  >  .®. .T.r.a
+		       0 64  0 65  0 6D  0 61  0 72  >  .d.e.m.a.r
+		       0 6B  0 20  0 6F  0 66  0 20  >  .k. .o.f. 
+		       0 54  0 68  0 65  0 20  0 4D  >  .T.h.e. .M
+		       0 6F  0 6E  0 6F  0 74  0 79  >  .o.n.o.t.y
+		       0 70  0 65  0 20  0 43  0 6F  >  .p.e. .C.o
+		       0 72  0 70  0 6F  0 72  0 61  >  .r.p.o.r.a
+		       0 74  0 69  0 6F  0 6E  0 20  >  .t.i.o.n. 
+		       0 70  0 6C  0 63  0 20  0 72  >  .p.l.c. .r
+		       0 65  0 67  0 69  0 73  0 74  >  .e.g.i.s.t
+		       0 65  0 72  0 65  0 64  0 20  >  .e.r.e.d. 
+		       0 69  0 6E  0 20  0 74  0 68  >  .i.n. .t.h
+		       0 65  0 20  0 55  0 53  0 20  >  .e. .U.S. 
+		       0 50  0 61  0 74  0 20  0 26  >  .P.a.t. .&
+		       0 20  0 54  0 4D  0 20  0 4F  >  . .T.M. .O
+		       0 66  0 66  0 2E  0 20  0 61  >  .f.f... .a
+		       0 6E  0 64  0 20  0 65  0 6C  >  .n.d. .e.l
+		       0 73  0 65  0 77  0 68  0 65  >  .s.e.w.h.e
+		       0 72  0 65  0 2E              >  .r.e..
+
+	 43. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		8
+	     Length:		38
+	     Offset:		6715
+		Data:  0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 54  >  .y.p.e. .T
+		       0 79  0 70  0 6F  0 67  0 72  >  .y.p.o.g.r
+		       0 61  0 70  0 68  0 79        >  .a.p.h.y
+
+	 44. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		9
+	     Length:		138
+	     Offset:		6753
+		Data:  0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 54  >  .y.p.e. .T
+		       0 79  0 70  0 65  0 20  0 44  >  .y.p.e. .D
+		       0 72  0 61  0 77  0 69  0 6E  >  .r.a.w.i.n
+		       0 67  0 20  0 4F  0 66  0 66  >  .g. .O.f.f
+		       0 69  0 63  0 65  0 20  0 2D  >  .i.c.e. .-
+		       0 20  0 52  0 6F  0 62  0 69  >  . .R.o.b.i
+		       0 6E  0 20  0 4E  0 69  0 63  >  .n. .N.i.c
+		       0 68  0 6F  0 6C  0 61  0 73  >  .h.o.l.a.s
+		       0 2C  0 20  0 50  0 61  0 74  >  .,. .P.a.t
+		       0 72  0 69  0 63  0 69  0 61  >  .r.i.c.i.a
+		       0 20  0 53  0 61  0 75  0 6E  >  . .S.a.u.n
+		       0 64  0 65  0 72  0 73  0 20  >  .d.e.r.s. 
+		       0 31  0 39  0 38  0 32        >  .1.9.8.2
+
+	 45. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		10
+	     Length:		1218
+	     Offset:		6891
+		Data:  0 43  0 6F  0 6E  0 74  0 65  >  .C.o.n.t.e
+		       0 6D  0 70  0 6F  0 72  0 61  >  .m.p.o.r.a
+		       0 72  0 79  0 20  0 73  0 61  >  .r.y. .s.a
+		       0 6E  0 73  0 20  0 73  0 65  >  .n.s. .s.e
+		       0 72  0 69  0 66  0 20  0 64  >  .r.i.f. .d
+		       0 65  0 73  0 69  0 67  0 6E  >  .e.s.i.g.n
+		       0 2C  0 20  0 41  0 72  0 69  >  .,. .A.r.i
+		       0 61  0 6C  0 20  0 63  0 6F  >  .a.l. .c.o
+		       0 6E  0 74  0 61  0 69  0 6E  >  .n.t.a.i.n
+		       0 73  0 20  0 6D  0 6F  0 72  >  .s. .m.o.r
+		       0 65  0 20  0 68  0 75  0 6D  >  .e. .h.u.m
+		       0 61  0 6E  0 69  0 73  0 74  >  .a.n.i.s.t
+		       0 20  0 63  0 68  0 61  0 72  >  . .c.h.a.r
+		       0 61  0 63  0 74  0 65  0 72  >  .a.c.t.e.r
+		       0 69  0 73  0 74  0 69  0 63  >  .i.s.t.i.c
+		       0 73  0 20  0 74  0 68  0 61  >  .s. .t.h.a
+		       0 6E  0 20  0 6D  0 61  0 6E  >  .n. .m.a.n
+		       0 79  0 20  0 6F  0 66  0 20  >  .y. .o.f. 
+		       0 69  0 74  0 73  0 20  0 70  >  .i.t.s. .p
+		       0 72  0 65  0 64  0 65  0 63  >  .r.e.d.e.c
+		       0 65  0 73  0 73  0 6F  0 72  >  .e.s.s.o.r
+		       0 73  0 20  0 61  0 6E  0 64  >  .s. .a.n.d
+		       0 20  0 61  0 73  0 20  0 73  >  . .a.s. .s
+		       0 75  0 63  0 68  0 20  0 69  >  .u.c.h. .i
+		       0 73  0 20  0 6D  0 6F  0 72  >  .s. .m.o.r
+		       0 65  0 20  0 69  0 6E  0 20  >  .e. .i.n. 
+		       0 74  0 75  0 6E  0 65  0 20  >  .t.u.n.e. 
+		       0 77  0 69  0 74  0 68  0 20  >  .w.i.t.h. 
+		       0 74  0 68  0 65  0 20  0 6D  >  .t.h.e. .m
+		       0 6F  0 6F  0 64  0 20  0 6F  >  .o.o.d. .o
+		       0 66  0 20  0 74  0 68  0 65  >  .f. .t.h.e
+		       0 20  0 6C  0 61  0 73  0 74  >  . .l.a.s.t
+		       0 20  0 64  0 65  0 63  0 61  >  . .d.e.c.a
+		       0 64  0 65  0 73  0 20  0 6F  >  .d.e.s. .o
+		       0 66  0 20  0 74  0 68  0 65  >  .f. .t.h.e
+		       0 20  0 74  0 77  0 65  0 6E  >  . .t.w.e.n
+		       0 74  0 69  0 65  0 74  0 68  >  .t.i.e.t.h
+		       0 20  0 63  0 65  0 6E  0 74  >  . .c.e.n.t
+		       0 75  0 72  0 79  0 2E  0 20  >  .u.r.y... 
+		       0 20  0 54  0 68  0 65  0 20  >  . .T.h.e. 
+		       0 6F  0 76  0 65  0 72  0 61  >  .o.v.e.r.a
+		       0 6C  0 6C  0 20  0 74  0 72  >  .l.l. .t.r
+		       0 65  0 61  0 74  0 6D  0 65  >  .e.a.t.m.e
+		       0 6E  0 74  0 20  0 6F  0 66  >  .n.t. .o.f
+		       0 20  0 63  0 75  0 72  0 76  >  . .c.u.r.v
+		       0 65  0 73  0 20  0 69  0 73  >  .e.s. .i.s
+		       0 20  0 73  0 6F  0 66  0 74  >  . .s.o.f.t
+		       0 65  0 72  0 20  0 61  0 6E  >  .e.r. .a.n
+		       0 64  0 20  0 66  0 75  0 6C  >  .d. .f.u.l
+		       0 6C  0 65  0 72  0 20  0 74  >  .l.e.r. .t
+		       0 68  0 61  0 6E  0 20  0 69  >  .h.a.n. .i
+		       0 6E  0 20  0 6D  0 6F  0 73  >  .n. .m.o.s
+		       0 74  0 20  0 69  0 6E  0 64  >  .t. .i.n.d
+		       0 75  0 73  0 74  0 72  0 69  >  .u.s.t.r.i
+		       0 61  0 6C  0 20  0 73  0 74  >  .a.l. .s.t
+		       0 79  0 6C  0 65  0 20  0 73  >  .y.l.e. .s
+		       0 61  0 6E  0 73  0 20  0 73  >  .a.n.s. .s
+		       0 65  0 72  0 69  0 66  0 20  >  .e.r.i.f. 
+		       0 66  0 61  0 63  0 65  0 73  >  .f.a.c.e.s
+		       0 2E  0 20  0 20  0 54  0 65  >  ... . .T.e
+		       0 72  0 6D  0 69  0 6E  0 61  >  .r.m.i.n.a
+		       0 6C  0 20  0 73  0 74  0 72  >  .l. .s.t.r
+		       0 6F  0 6B  0 65  0 73  0 20  >  .o.k.e.s. 
+		       0 61  0 72  0 65  0 20  0 63  >  .a.r.e. .c
+		       0 75  0 74  0 20  0 6F  0 6E  >  .u.t. .o.n
+		       0 20  0 74  0 68  0 65  0 20  >  . .t.h.e. 
+		       0 64  0 69  0 61  0 67  0 6F  >  .d.i.a.g.o
+		       0 6E  0 61  0 6C  0 20  0 77  >  .n.a.l. .w
+		       0 68  0 69  0 63  0 68  0 20  >  .h.i.c.h. 
+		       0 68  0 65  0 6C  0 70  0 73  >  .h.e.l.p.s
+		       0 20  0 74  0 6F  0 20  0 67  >  . .t.o. .g
+		       0 69  0 76  0 65  0 20  0 74  >  .i.v.e. .t
+		       0 68  0 65  0 20  0 66  0 61  >  .h.e. .f.a
+		       0 63  0 65  0 20  0 61  0 20  >  .c.e. .a. 
+		       0 6C  0 65  0 73  0 73  0 20  >  .l.e.s.s. 
+		       0 6D  0 65  0 63  0 68  0 61  >  .m.e.c.h.a
+		       0 6E  0 69  0 63  0 61  0 6C  >  .n.i.c.a.l
+		       0 20  0 61  0 70  0 70  0 65  >  . .a.p.p.e
+		       0 61  0 72  0 61  0 6E  0 63  >  .a.r.a.n.c
+		       0 65  0 2E  0 20  0 20  0 41  >  .e... . .A
+		       0 72  0 69  0 61  0 6C  0 20  >  .r.i.a.l. 
+		       0 69  0 73  0 20  0 61  0 6E  >  .i.s. .a.n
+		       0 20  0 65  0 78  0 74  0 72  >  . .e.x.t.r
+		       0 65  0 6D  0 65  0 6C  0 79  >  .e.m.e.l.y
+		       0 20  0 76  0 65  0 72  0 73  >  . .v.e.r.s
+		       0 61  0 74  0 69  0 6C  0 65  >  .a.t.i.l.e
+		       0 20  0 66  0 61  0 6D  0 69  >  . .f.a.m.i
+		       0 6C  0 79  0 20  0 6F  0 66  >  .l.y. .o.f
+		       0 20  0 74  0 79  0 70  0 65  >  . .t.y.p.e
+		       0 66  0 61  0 63  0 65  0 73  >  .f.a.c.e.s
+		       0 20  0 77  0 68  0 69  0 63  >  . .w.h.i.c
+		       0 68  0 20  0 63  0 61  0 6E  >  .h. .c.a.n
+		       0 20  0 62  0 65  0 20  0 75  >  . .b.e. .u
+		       0 73  0 65  0 64  0 20  0 77  >  .s.e.d. .w
+		       0 69  0 74  0 68  0 20  0 65  >  .i.t.h. .e
+		       0 71  0 75  0 61  0 6C  0 20  >  .q.u.a.l. 
+		       0 73  0 75  0 63  0 63  0 65  >  .s.u.c.c.e
+		       0 73  0 73  0 20  0 66  0 6F  >  .s.s. .f.o
+		       0 72  0 20  0 74  0 65  0 78  >  .r. .t.e.x
+		       0 74  0 20  0 73  0 65  0 74  >  .t. .s.e.t
+		       0 74  0 69  0 6E  0 67  0 20  >  .t.i.n.g. 
+		       0 69  0 6E  0 20  0 72  0 65  >  .i.n. .r.e
+		       0 70  0 6F  0 72  0 74  0 73  >  .p.o.r.t.s
+		       0 2C  0 20  0 70  0 72  0 65  >  .,. .p.r.e
+		       0 73  0 65  0 6E  0 74  0 61  >  .s.e.n.t.a
+		       0 74  0 69  0 6F  0 6E  0 73  >  .t.i.o.n.s
+		       0 2C  0 20  0 6D  0 61  0 67  >  .,. .m.a.g
+		       0 61  0 7A  0 69  0 6E  0 65  >  .a.z.i.n.e
+		       0 73  0 20  0 65  0 74  0 63  >  .s. .e.t.c
+		       0 2C  0 20  0 61  0 6E  0 64  >  .,. .a.n.d
+		       0 20  0 66  0 6F  0 72  0 20  >  . .f.o.r. 
+		       0 64  0 69  0 73  0 70  0 6C  >  .d.i.s.p.l
+		       0 61  0 79  0 20  0 75  0 73  >  .a.y. .u.s
+		       0 65  0 20  0 69  0 6E  0 20  >  .e. .i.n. 
+		       0 6E  0 65  0 77  0 73  0 70  >  .n.e.w.s.p
+		       0 61  0 70  0 65  0 72  0 73  >  .a.p.e.r.s
+		       0 2C  0 20  0 61  0 64  0 76  >  .,. .a.d.v
+		       0 65  0 72  0 74  0 69  0 73  >  .e.r.t.i.s
+		       0 69  0 6E  0 67  0 20  0 61  >  .i.n.g. .a
+		       0 6E  0 64  0 20  0 70  0 72  >  .n.d. .p.r
+		       0 6F  0 6D  0 6F  0 74  0 69  >  .o.m.o.t.i
+		       0 6F  0 6E  0 73  0 2E        >  .o.n.s..
+
+	 46. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		11
+	     Length:		98
+	     Offset:		8109
+		Data:  0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 6D  0 6F  0 6E  0 6F  >  ...m.o.n.o
+		       0 74  0 79  0 70  0 65  0 2E  >  .t.y.p.e..
+		       0 63  0 6F  0 6D  0 2F  0 68  >  .c.o.m./.h
+		       0 74  0 6D  0 6C  0 2F  0 6D  >  .t.m.l./.m
+		       0 74  0 6E  0 61  0 6D  0 65  >  .t.n.a.m.e
+		       0 2F  0 6D  0 73  0 5F  0 61  >  ./.m.s._.a
+		       0 72  0 69  0 61  0 6C  0 2E  >  .r.i.a.l..
+		       0 68  0 74  0 6D  0 6C        >  .h.t.m.l
+
+	 47. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		12
+	     Length:		102
+	     Offset:		8207
+		Data:  0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 6D  0 6F  0 6E  0 6F  >  ...m.o.n.o
+		       0 74  0 79  0 70  0 65  0 2E  >  .t.y.p.e..
+		       0 63  0 6F  0 6D  0 2F  0 68  >  .c.o.m./.h
+		       0 74  0 6D  0 6C  0 2F  0 6D  >  .t.m.l./.m
+		       0 74  0 6E  0 61  0 6D  0 65  >  .t.n.a.m.e
+		       0 2F  0 6D  0 73  0 5F  0 77  >  ./.m.s._.w
+		       0 65  0 6C  0 63  0 6F  0 6D  >  .e.l.c.o.m
+		       0 65  0 2E  0 68  0 74  0 6D  >  .e...h.t.m
+		       0 6C                          >  .l
+
+	 48. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		13
+	     Length:		1716
+	     Offset:		8309
+		Data:  0 4E  0 4F  0 54  0 49  0 46  >  .N.O.T.I.F
+		       0 49  0 43  0 41  0 54  0 49  >  .I.C.A.T.I
+		       0 4F  0 4E  0 20  0 4F  0 46  >  .O.N. .O.F
+		       0 20  0 4C  0 49  0 43  0 45  >  . .L.I.C.E
+		       0 4E  0 53  0 45  0 20  0 41  >  .N.S.E. .A
+		       0 47  0 52  0 45  0 45  0 4D  >  .G.R.E.E.M
+		       0 45  0 4E  0 54  0  D  0  A  >  .E.N.T....
+		       0  D  0  A  0 54  0 68  0 69  >  .....T.h.i
+		       0 73  0 20  0 74  0 79  0 70  >  .s. .t.y.p
+		       0 65  0 66  0 61  0 63  0 65  >  .e.f.a.c.e
+		       0 20  0 69  0 73  0 20  0 74  >  . .i.s. .t
+		       0 68  0 65  0 20  0 70  0 72  >  .h.e. .p.r
+		       0 6F  0 70  0 65  0 72  0 74  >  .o.p.e.r.t
+		       0 79  0 20  0 6F  0 66  0 20  >  .y. .o.f. 
+		       0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 54  >  .y.p.e. .T
+		       0 79  0 70  0 6F  0 67  0 72  >  .y.p.o.g.r
+		       0 61  0 70  0 68  0 79  0 20  >  .a.p.h.y. 
+		       0 61  0 6E  0 64  0 20  0 69  >  .a.n.d. .i
+		       0 74  0 73  0 20  0 75  0 73  >  .t.s. .u.s
+		       0 65  0 20  0 62  0 79  0 20  >  .e. .b.y. 
+		       0 79  0 6F  0 75  0 20  0 69  >  .y.o.u. .i
+		       0 73  0 20  0 63  0 6F  0 76  >  .s. .c.o.v
+		       0 65  0 72  0 65  0 64  0 20  >  .e.r.e.d. 
+		       0 75  0 6E  0 64  0 65  0 72  >  .u.n.d.e.r
+		       0 20  0 74  0 68  0 65  0 20  >  . .t.h.e. 
+		       0 74  0 65  0 72  0 6D  0 73  >  .t.e.r.m.s
+		       0 20  0 6F  0 66  0 20  0 61  >  . .o.f. .a
+		       0 20  0 6C  0 69  0 63  0 65  >  . .l.i.c.e
+		       0 6E  0 73  0 65  0 20  0 61  >  .n.s.e. .a
+		       0 67  0 72  0 65  0 65  0 6D  >  .g.r.e.e.m
+		       0 65  0 6E  0 74  0 2E  0 20  >  .e.n.t... 
+		       0 59  0 6F  0 75  0 20  0 68  >  .Y.o.u. .h
+		       0 61  0 76  0 65  0 20  0 6F  >  .a.v.e. .o
+		       0 62  0 74  0 61  0 69  0 6E  >  .b.t.a.i.n
+		       0 65  0 64  0 20  0 74  0 68  >  .e.d. .t.h
+		       0 69  0 73  0 20  0 74  0 79  >  .i.s. .t.y
+		       0 70  0 65  0 66  0 61  0 63  >  .p.e.f.a.c
+		       0 65  0 20  0 73  0 6F  0 66  >  .e. .s.o.f
+		       0 74  0 77  0 61  0 72  0 65  >  .t.w.a.r.e
+		       0 20  0 65  0 69  0 74  0 68  >  . .e.i.t.h
+		       0 65  0 72  0 20  0 64  0 69  >  .e.r. .d.i
+		       0 72  0 65  0 63  0 74  0 6C  >  .r.e.c.t.l
+		       0 79  0 20  0 66  0 72  0 6F  >  .y. .f.r.o
+		       0 6D  0 20  0 4D  0 6F  0 6E  >  .m. .M.o.n
+		       0 6F  0 74  0 79  0 70  0 65  >  .o.t.y.p.e
+		       0 20  0 6F  0 72  0 20  0 74  >  . .o.r. .t
+		       0 6F  0 67  0 65  0 74  0 68  >  .o.g.e.t.h
+		       0 65  0 72  0 20  0 77  0 69  >  .e.r. .w.i
+		       0 74  0 68  0 20  0 73  0 6F  >  .t.h. .s.o
+		       0 66  0 74  0 77  0 61  0 72  >  .f.t.w.a.r
+		       0 65  0 20  0 64  0 69  0 73  >  .e. .d.i.s
+		       0 74  0 72  0 69  0 62  0 75  >  .t.r.i.b.u
+		       0 74  0 65  0 64  0 20  0 62  >  .t.e.d. .b
+		       0 79  0 20  0 6F  0 6E  0 65  >  .y. .o.n.e
+		       0 20  0 6F  0 66  0 20  0 4D  >  . .o.f. .M
+		       0 6F  0 6E  0 6F  0 74  0 79  >  .o.n.o.t.y
+		       0 70  0 65  0 27  0 73  0 20  >  .p.e.'.s. 
+		       0 6C  0 69  0 63  0 65  0 6E  >  .l.i.c.e.n
+		       0 73  0 65  0 65  0 73  0 2E  >  .s.e.e.s..
+		       0  D  0  A  0  D  0  A  0 54  >  .........T
+		       0 68  0 69  0 73  0 20  0 73  >  .h.i.s. .s
+		       0 6F  0 66  0 74  0 77  0 61  >  .o.f.t.w.a
+		       0 72  0 65  0 20  0 69  0 73  >  .r.e. .i.s
+		       0 20  0 61  0 20  0 76  0 61  >  . .a. .v.a
+		       0 6C  0 75  0 61  0 62  0 6C  >  .l.u.a.b.l
+		       0 65  0 20  0 61  0 73  0 73  >  .e. .a.s.s
+		       0 65  0 74  0 20  0 6F  0 66  >  .e.t. .o.f
+		       0 20  0 4D  0 6F  0 6E  0 6F  >  . .M.o.n.o
+		       0 74  0 79  0 70  0 65  0 2E  >  .t.y.p.e..
+		       0 20  0 55  0 6E  0 6C  0 65  >  . .U.n.l.e
+		       0 73  0 73  0 20  0 79  0 6F  >  .s.s. .y.o
+		       0 75  0 20  0 68  0 61  0 76  >  .u. .h.a.v
+		       0 65  0 20  0 65  0 6E  0 74  >  .e. .e.n.t
+		       0 65  0 72  0 65  0 64  0 20  >  .e.r.e.d. 
+		       0 69  0 6E  0 74  0 6F  0 20  >  .i.n.t.o. 
+		       0 61  0 20  0 73  0 70  0 65  >  .a. .s.p.e
+		       0 63  0 69  0 66  0 69  0 63  >  .c.i.f.i.c
+		       0 20  0 6C  0 69  0 63  0 65  >  . .l.i.c.e
+		       0 6E  0 73  0 65  0 20  0 61  >  .n.s.e. .a
+		       0 67  0 72  0 65  0 65  0 6D  >  .g.r.e.e.m
+		       0 65  0 6E  0 74  0 20  0 67  >  .e.n.t. .g
+		       0 72  0 61  0 6E  0 74  0 69  >  .r.a.n.t.i
+		       0 6E  0 67  0 20  0 79  0 6F  >  .n.g. .y.o
+		       0 75  0 20  0 61  0 64  0 64  >  .u. .a.d.d
+		       0 69  0 74  0 69  0 6F  0 6E  >  .i.t.i.o.n
+		       0 61  0 6C  0 20  0 72  0 69  >  .a.l. .r.i
+		       0 67  0 68  0 74  0 73  0 2C  >  .g.h.t.s.,
+		       0 20  0 79  0 6F  0 75  0 72  >  . .y.o.u.r
+		       0 20  0 75  0 73  0 65  0 20  >  . .u.s.e. 
+		       0 6F  0 66  0 20  0 74  0 68  >  .o.f. .t.h
+		       0 69  0 73  0 20  0 73  0 6F  >  .i.s. .s.o
+		       0 66  0 74  0 77  0 61  0 72  >  .f.t.w.a.r
+		       0 65  0 20  0 69  0 73  0 20  >  .e. .i.s. 
+		       0 6C  0 69  0 6D  0 69  0 74  >  .l.i.m.i.t
+		       0 65  0 64  0 20  0 74  0 6F  >  .e.d. .t.o
+		       0 20  0 79  0 6F  0 75  0 72  >  . .y.o.u.r
+		       0 20  0 77  0 6F  0 72  0 6B  >  . .w.o.r.k
+		       0 73  0 74  0 61  0 74  0 69  >  .s.t.a.t.i
+		       0 6F  0 6E  0 20  0 66  0 6F  >  .o.n. .f.o
+		       0 72  0 20  0 79  0 6F  0 75  >  .r. .y.o.u
+		       0 72  0 20  0 6F  0 77  0 6E  >  .r. .o.w.n
+		       0 20  0 70  0 75  0 62  0 6C  >  . .p.u.b.l
+		       0 69  0 73  0 68  0 69  0 6E  >  .i.s.h.i.n
+		       0 67  0 20  0 75  0 73  0 65  >  .g. .u.s.e
+		       0 2E  0 20  0 59  0 6F  0 75  >  ... .Y.o.u
+		       0 20  0 6D  0 61  0 79  0 20  >  . .m.a.y. 
+		       0 6E  0 6F  0 74  0 20  0 63  >  .n.o.t. .c
+		       0 6F  0 70  0 79  0 20  0 6F  >  .o.p.y. .o
+		       0 72  0 20  0 64  0 69  0 73  >  .r. .d.i.s
+		       0 74  0 72  0 69  0 62  0 75  >  .t.r.i.b.u
+		       0 74  0 65  0 20  0 74  0 68  >  .t.e. .t.h
+		       0 69  0 73  0 20  0 73  0 6F  >  .i.s. .s.o
+		       0 66  0 74  0 77  0 61  0 72  >  .f.t.w.a.r
+		       0 65  0 2E  0  D  0  A  0  D  >  .e........
+		       0  A  0 49  0 66  0 20  0 79  >  ...I.f. .y
+		       0 6F  0 75  0 20  0 68  0 61  >  .o.u. .h.a
+		       0 76  0 65  0 20  0 61  0 6E  >  .v.e. .a.n
+		       0 79  0 20  0 71  0 75  0 65  >  .y. .q.u.e
+		       0 73  0 74  0 69  0 6F  0 6E  >  .s.t.i.o.n
+		       0 20  0 63  0 6F  0 6E  0 63  >  . .c.o.n.c
+		       0 65  0 72  0 6E  0 69  0 6E  >  .e.r.n.i.n
+		       0 67  0 20  0 79  0 6F  0 75  >  .g. .y.o.u
+		       0 72  0 20  0 72  0 69  0 67  >  .r. .r.i.g
+		       0 68  0 74  0 73  0 20  0 79  >  .h.t.s. .y
+		       0 6F  0 75  0 20  0 73  0 68  >  .o.u. .s.h
+		       0 6F  0 75  0 6C  0 64  0 20  >  .o.u.l.d. 
+		       0 72  0 65  0 76  0 69  0 65  >  .r.e.v.i.e
+		       0 77  0 20  0 74  0 68  0 65  >  .w. .t.h.e
+		       0 20  0 6C  0 69  0 63  0 65  >  . .l.i.c.e
+		       0 6E  0 73  0 65  0 20  0 61  >  .n.s.e. .a
+		       0 67  0 72  0 65  0 65  0 6D  >  .g.r.e.e.m
+		       0 65  0 6E  0 74  0 20  0 79  >  .e.n.t. .y
+		       0 6F  0 75  0 20  0 72  0 65  >  .o.u. .r.e
+		       0 63  0 65  0 69  0 76  0 65  >  .c.e.i.v.e
+		       0 64  0 20  0 77  0 69  0 74  >  .d. .w.i.t
+		       0 68  0 20  0 74  0 68  0 65  >  .h. .t.h.e
+		       0 20  0 73  0 6F  0 66  0 74  >  . .s.o.f.t
+		       0 77  0 61  0 72  0 65  0 20  >  .w.a.r.e. 
+		       0 6F  0 72  0 20  0 63  0 6F  >  .o.r. .c.o
+		       0 6E  0 74  0 61  0 63  0 74  >  .n.t.a.c.t
+		       0 20  0 4D  0 6F  0 6E  0 6F  >  . .M.o.n.o
+		       0 74  0 79  0 70  0 65  0 20  >  .t.y.p.e. 
+		       0 66  0 6F  0 72  0 20  0 61  >  .f.o.r. .a
+		       0 20  0 63  0 6F  0 70  0 79  >  . .c.o.p.y
+		       0 20  0 6F  0 66  0 20  0 74  >  . .o.f. .t
+		       0 68  0 65  0 20  0 6C  0 69  >  .h.e. .l.i
+		       0 63  0 65  0 6E  0 73  0 65  >  .c.e.n.s.e
+		       0 20  0 61  0 67  0 72  0 65  >  . .a.g.r.e
+		       0 65  0 6D  0 65  0 6E  0 74  >  .e.m.e.n.t
+		       0 2E  0  D  0  A  0  D  0  A  >  ..........
+		       0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 63  >  .y.p.e. .c
+		       0 61  0 6E  0 20  0 62  0 65  >  .a.n. .b.e
+		       0 20  0 63  0 6F  0 6E  0 74  >  . .c.o.n.t
+		       0 61  0 63  0 74  0 65  0 64  >  .a.c.t.e.d
+		       0 20  0 61  0 74  0 3A  0  D  >  . .a.t.:..
+		       0  A  0  D  0  A  0 55  0 53  >  .......U.S
+		       0 41  0 20  0 2D  0 20  0 28  >  .A. .-. .(
+		       0 38  0 34  0 37  0 29  0 20  >  .8.4.7.). 
+		       0 37  0 31  0 38  0 2D  0 30  >  .7.1.8.-.0
+		       0 34  0 30  0 30  0  9  0  9  >  .4.0.0....
+		       0 55  0 4B  0 20  0 2D  0 20  >  .U.K. .-. 
+		       0 30  0 31  0 31  0 34  0 34  >  .0.1.1.4.4
+		       0 20  0 30  0 31  0 37  0 33  >  . .0.1.7.3
+		       0 37  0 20  0 37  0 36  0 35  >  .7. .7.6.5
+		       0 39  0 35  0 39  0  D  0  A  >  .9.5.9....
+		       0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 6D  0 6F  0 6E  0 6F  >  ...m.o.n.o
+		       0 74  0 79  0 70  0 65  0 2E  >  .t.y.p.e..
+		       0 63  0 6F  0 6D              >  .c.o.m
+
+	 49. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		14
+	     Length:		92
+	     Offset:		10025
+		Data:  0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 6D  0 6F  0 6E  0 6F  >  ...m.o.n.o
+		       0 74  0 79  0 70  0 65  0 2E  >  .t.y.p.e..
+		       0 63  0 6F  0 6D  0 2F  0 68  >  .c.o.m./.h
+		       0 74  0 6D  0 6C  0 2F  0 74  >  .t.m.l./.t
+		       0 79  0 70  0 65  0 2F  0 6C  >  .y.p.e./.l
+		       0 69  0 63  0 65  0 6E  0 73  >  .i.c.e.n.s
+		       0 65  0 2E  0 68  0 74  0 6D  >  .e...h.t.m
+		       0 6C                          >  .l
+
+	 50. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1034
+	     Name ID:		2
+	     Length:		12
+	     Offset:		10117
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+	 51. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1035
+	     Name ID:		2
+	     Length:		16
+	     Offset:		10129
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 61  0 6C  0 69              >  .a.l.i
+
+	 52. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1036
+	     Name ID:		2
+	     Length:		12
+	     Offset:		10145
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+	 53. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1038
+	     Name ID:		2
+	     Length:		12
+	     Offset:		10157
+		Data:  0 4E  0 6F  0 72  0 6D  0 E1  >  .N.o.r.m.á
+		       0 6C                          >  .l
+
+	 54. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1040
+	     Name ID:		2
+	     Length:		14
+	     Offset:		10169
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C  0 65                    >  .l.e
+
+	 55. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1043
+	     Name ID:		2
+	     Length:		18
+	     Offset:		10183
+		Data:  0 53  0 74  0 61  0 6E  0 64  >  .S.t.a.n.d
+		       0 61  0 61  0 72  0 64        >  .a.a.r.d
+
+	 56. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1044
+	     Name ID:		2
+	     Length:		12
+	     Offset:		10201
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+	 57. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1045
+	     Name ID:		2
+	     Length:		16
+	     Offset:		10213
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C  0 6E  0 79              >  .l.n.y
+
+	 58. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1046
+	     Name ID:		2
+	     Length:		12
+	     Offset:		10229
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+	 59. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1049
+	     Name ID:		2
+	     Length:		14
+	     Offset:		10241
+		Data:  4 1E  4 31  4 4B  4 47  4 3D  >  ...1.K.G.=
+		       4 4B  4 39                    >  .K.9
+
+	 60. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1051
+	     Name ID:		2
+	     Length:		16
+	     Offset:		10255
+		Data:  0 4E  0 6F  0 72  0 6D  0 E1  >  .N.o.r.m.á
+		       0 6C  0 6E  0 65              >  .l.n.e
+
+	 61. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1053
+	     Name ID:		2
+	     Length:		12
+	     Offset:		10271
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+	 62. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1055
+	     Name ID:		2
+	     Length:		12
+	     Offset:		10283
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+	 63. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1060
+	     Name ID:		2
+	     Length:		14
+	     Offset:		10295
+		Data:  0 4E  0 61  0 76  0 61  0 64  >  .N.a.v.a.d
+		       0 6E  0 6F                    >  .n.o
+
+	 64. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1066
+	     Name ID:		2
+	     Length:		14
+	     Offset:		10309
+		Data:  0 74  0 68  1 B0  1 A1  3  0  >  .t.h.°.¡..
+		       0 6E  0 67                    >  .n.g
+
+	 65. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1069
+	     Name ID:		2
+	     Length:		14
+	     Offset:		10323
+		Data:  0 41  0 72  0 72  0 75  0 6E  >  .A.r.r.u.n
+		       0 74  0 61                    >  .t.a
+
+	 66. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	2058
+	     Name ID:		2
+	     Length:		12
+	     Offset:		10337
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+	 67. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	2070
+	     Name ID:		2
+	     Length:		12
+	     Offset:		10349
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+	 68. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	3082
+	     Name ID:		2
+	     Length:		12
+	     Offset:		10361
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+	 69. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	3084
+	     Name ID:		2
+	     Length:		12
+	     Offset:		10373
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+
+'OS/2' Table - OS/2 and Windows Metrics
+---------------------------------------
+Size = 86 bytes (expecting 86 bytes)
+  'OS/2' version:           1
+  xAvgCharWidth:            904
+  usWeightClass:            400
+  usWidthClass:             5
+  fsType:                   0x0000
+  ySubscriptXSize:          1434
+  ySubscriptYSize:          1331
+  ySubscriptXOffset:        0
+  ySubscriptYOffset:        283
+  ySuperscriptXSize:        1434
+  ySuperscriptYSize:        1331
+  ySuperscriptXOffset:      0
+  ySuperscriptYOffset:      977
+  yStrikeoutSize:           102
+  yStrikeoutPosition:       530
+  sFamilyClass:             8    subclass = 5
+  PANOSE:                   2 11  6  4  2  2  2  2  2  4
+  Unicode Range 1( Bits 0 - 31 ): 00007A87
+  Unicode Range 2( Bits 32- 63 ): 80000000
+  Unicode Range 3( Bits 64- 95 ): 00000008
+  Unicode Range 4( Bits 96-127 ): 00000000
+  achVendID:                'Mono'
+  fsSelection:              0x0040
+  usFirstCharIndex:         0x0020
+  usLastCharIndex:          0xFFFC
+  sTypoAscender:            1491
+  sTypoDescender:           -431
+  sTypoLineGap:             307
+  usWinAscent:              1854
+  usWinDescent:             434
+  CodePage Range 1( Bits 0 - 31 ): 400001FF
+  CodePage Range 2( Bits 32- 63 ): FFFF0000
+
+'gasp' Table - Grid-fitting And Scan-conversion Procedure
+---------------------------------------------------------
+  'gasp' version:      0
+  numRanges:           3
+
+  gasp Range 0
+  rangeMaxPPEM:        8
+  rangeGaspBehavior:   0x0002- GASP_DOGRAY 
+
+  gasp Range 1
+  rangeMaxPPEM:        17
+  rangeGaspBehavior:   0x0001- GASP_GRIDFIT 
+
+  gasp Range 2
+  rangeMaxPPEM:        65535
+  rangeGaspBehavior:   0x0003- GASP_GRIDFIT - GASP_DOGRAY 
+
+
+'post' Table - PostScript Metrics
+---------------------------------
+Size = 12804 bytes
+	'post' version:	        2.0
+	italicAngle:	        0.0000
+	underlinePosition:	-217
+	underlineThickness:	150
+	isFixedPitch:		0
+	minMemType42:		0
+	maxMemType42:		0
+	minMemType1:		0
+	maxMemType1:		0
+
+	Format 2.0:  Non-Standard (for PostScript) TrueType Glyph Set.
+	numGlyphs:	1320
+	Glyf   0 -> Mac Glyph # 0, '.notdef'
+	Glyf   1 -> PSGlyf Name # 1, name= '.null'
+	Glyf   2 -> PSGlyf Name # 2, name= 'nonmarkingreturn'
+	Glyf   3 -> Mac Glyph # 3, 'space'
+	Glyf   4 -> Mac Glyph # 4, 'exclam'
+	Glyf   5 -> Mac Glyph # 5, 'quotedbl'
+	Glyf   6 -> Mac Glyph # 6, 'numbersign'
+	Glyf   7 -> Mac Glyph # 7, 'dollar'
+	Glyf   8 -> Mac Glyph # 8, 'percent'
+	Glyf   9 -> Mac Glyph # 9, 'ampersand'
+	Glyf  10 -> Mac Glyph # 10, 'quotesingle'
+	Glyf  11 -> Mac Glyph # 11, 'parenleft'
+	Glyf  12 -> Mac Glyph # 12, 'parenright'
+	Glyf  13 -> Mac Glyph # 13, 'asterisk'
+	Glyf  14 -> Mac Glyph # 14, 'plus'
+	Glyf  15 -> Mac Glyph # 15, 'comma'
+	Glyf  16 -> Mac Glyph # 16, 'hyphen'
+	Glyf  17 -> Mac Glyph # 17, 'period'
+	Glyf  18 -> Mac Glyph # 18, 'slash'
+	Glyf  19 -> Mac Glyph # 19, 'zero'
+	Glyf  20 -> Mac Glyph # 20, 'one'
+	Glyf  21 -> Mac Glyph # 21, 'two'
+	Glyf  22 -> Mac Glyph # 22, 'three'
+	Glyf  23 -> Mac Glyph # 23, 'four'
+	Glyf  24 -> Mac Glyph # 24, 'five'
+	Glyf  25 -> Mac Glyph # 25, 'six'
+	Glyf  26 -> Mac Glyph # 26, 'seven'
+	Glyf  27 -> Mac Glyph # 27, 'eight'
+	Glyf  28 -> Mac Glyph # 28, 'nine'
+	Glyf  29 -> Mac Glyph # 29, 'colon'
+	Glyf  30 -> Mac Glyph # 30, 'semicolon'
+	Glyf  31 -> Mac Glyph # 31, 'less'
+	Glyf  32 -> Mac Glyph # 32, 'equal'
+	Glyf  33 -> Mac Glyph # 33, 'greater'
+	Glyf  34 -> Mac Glyph # 34, 'question'
+	Glyf  35 -> Mac Glyph # 35, 'at'
+	Glyf  36 -> Mac Glyph # 36, 'A'
+	Glyf  37 -> Mac Glyph # 37, 'B'
+	Glyf  38 -> Mac Glyph # 38, 'C'
+	Glyf  39 -> Mac Glyph # 39, 'D'
+	Glyf  40 -> Mac Glyph # 40, 'E'
+	Glyf  41 -> Mac Glyph # 41, 'F'
+	Glyf  42 -> Mac Glyph # 42, 'G'
+	Glyf  43 -> Mac Glyph # 43, 'H'
+	Glyf  44 -> Mac Glyph # 44, 'I'
+	Glyf  45 -> Mac Glyph # 45, 'J'
+	Glyf  46 -> Mac Glyph # 46, 'K'
+	Glyf  47 -> Mac Glyph # 47, 'L'
+	Glyf  48 -> Mac Glyph # 48, 'M'
+	Glyf  49 -> Mac Glyph # 49, 'N'
+	Glyf  50 -> Mac Glyph # 50, 'O'
+	Glyf  51 -> Mac Glyph # 51, 'P'
+	Glyf  52 -> Mac Glyph # 52, 'Q'
+	Glyf  53 -> Mac Glyph # 53, 'R'
+	Glyf  54 -> Mac Glyph # 54, 'S'
+	Glyf  55 -> Mac Glyph # 55, 'T'
+	Glyf  56 -> Mac Glyph # 56, 'U'
+	Glyf  57 -> Mac Glyph # 57, 'V'
+	Glyf  58 -> Mac Glyph # 58, 'W'
+	Glyf  59 -> Mac Glyph # 59, 'X'
+	Glyf  60 -> Mac Glyph # 60, 'Y'
+	Glyf  61 -> Mac Glyph # 61, 'Z'
+	Glyf  62 -> Mac Glyph # 62, 'bracketleft'
+	Glyf  63 -> Mac Glyph # 63, 'backslash'
+	Glyf  64 -> Mac Glyph # 64, 'bracketright'
+	Glyf  65 -> Mac Glyph # 65, 'asciicircum'
+	Glyf  66 -> Mac Glyph # 66, 'underscore'
+	Glyf  67 -> Mac Glyph # 67, 'grave'
+	Glyf  68 -> Mac Glyph # 68, 'a'
+	Glyf  69 -> Mac Glyph # 69, 'b'
+	Glyf  70 -> Mac Glyph # 70, 'c'
+	Glyf  71 -> Mac Glyph # 71, 'd'
+	Glyf  72 -> Mac Glyph # 72, 'e'
+	Glyf  73 -> Mac Glyph # 73, 'f'
+	Glyf  74 -> Mac Glyph # 74, 'g'
+	Glyf  75 -> Mac Glyph # 75, 'h'
+	Glyf  76 -> Mac Glyph # 76, 'i'
+	Glyf  77 -> Mac Glyph # 77, 'j'
+	Glyf  78 -> Mac Glyph # 78, 'k'
+	Glyf  79 -> Mac Glyph # 79, 'l'
+	Glyf  80 -> Mac Glyph # 80, 'm'
+	Glyf  81 -> Mac Glyph # 81, 'n'
+	Glyf  82 -> Mac Glyph # 82, 'o'
+	Glyf  83 -> Mac Glyph # 83, 'p'
+	Glyf  84 -> Mac Glyph # 84, 'q'
+	Glyf  85 -> Mac Glyph # 85, 'r'
+	Glyf  86 -> Mac Glyph # 86, 's'
+	Glyf  87 -> Mac Glyph # 87, 't'
+	Glyf  88 -> Mac Glyph # 88, 'u'
+	Glyf  89 -> Mac Glyph # 89, 'v'
+	Glyf  90 -> Mac Glyph # 90, 'w'
+	Glyf  91 -> Mac Glyph # 91, 'x'
+	Glyf  92 -> Mac Glyph # 92, 'y'
+	Glyf  93 -> Mac Glyph # 93, 'z'
+	Glyf  94 -> Mac Glyph # 94, 'braceleft'
+	Glyf  95 -> Mac Glyph # 95, 'bar'
+	Glyf  96 -> Mac Glyph # 96, 'braceright'
+	Glyf  97 -> Mac Glyph # 97, 'asciitilde'
+	Glyf  98 -> Mac Glyph # 98, 'Adieresis'
+	Glyf  99 -> Mac Glyph # 99, 'Aring'
+	Glyf 100 -> Mac Glyph # 100, 'Ccedilla'
+	Glyf 101 -> Mac Glyph # 101, 'Eacute'
+	Glyf 102 -> Mac Glyph # 102, 'Ntilde'
+	Glyf 103 -> Mac Glyph # 103, 'Odieresis'
+	Glyf 104 -> Mac Glyph # 104, 'Udieresis'
+	Glyf 105 -> Mac Glyph # 105, 'aacute'
+	Glyf 106 -> Mac Glyph # 106, 'agrave'
+	Glyf 107 -> Mac Glyph # 107, 'acircumflex'
+	Glyf 108 -> Mac Glyph # 108, 'adieresis'
+	Glyf 109 -> Mac Glyph # 109, 'atilde'
+	Glyf 110 -> Mac Glyph # 110, 'aring'
+	Glyf 111 -> Mac Glyph # 111, 'ccedilla'
+	Glyf 112 -> Mac Glyph # 112, 'eacute'
+	Glyf 113 -> Mac Glyph # 113, 'egrave'
+	Glyf 114 -> Mac Glyph # 114, 'ecircumflex'
+	Glyf 115 -> Mac Glyph # 115, 'edieresis'
+	Glyf 116 -> Mac Glyph # 116, 'iacute'
+	Glyf 117 -> Mac Glyph # 117, 'igrave'
+	Glyf 118 -> Mac Glyph # 118, 'icircumflex'
+	Glyf 119 -> Mac Glyph # 119, 'idieresis'
+	Glyf 120 -> Mac Glyph # 120, 'ntilde'
+	Glyf 121 -> Mac Glyph # 121, 'oacute'
+	Glyf 122 -> Mac Glyph # 122, 'ograve'
+	Glyf 123 -> Mac Glyph # 123, 'ocircumflex'
+	Glyf 124 -> Mac Glyph # 124, 'odieresis'
+	Glyf 125 -> Mac Glyph # 125, 'otilde'
+	Glyf 126 -> Mac Glyph # 126, 'uacute'
+	Glyf 127 -> Mac Glyph # 127, 'ugrave'
+	Glyf 128 -> Mac Glyph # 128, 'ucircumflex'
+	Glyf 129 -> Mac Glyph # 129, 'udieresis'
+	Glyf 130 -> Mac Glyph # 130, 'dagger'
+	Glyf 131 -> Mac Glyph # 131, 'degree'
+	Glyf 132 -> Mac Glyph # 132, 'cent'
+	Glyf 133 -> Mac Glyph # 133, 'sterling'
+	Glyf 134 -> Mac Glyph # 134, 'section'
+	Glyf 135 -> Mac Glyph # 135, 'bullet'
+	Glyf 136 -> Mac Glyph # 136, 'paragraph'
+	Glyf 137 -> Mac Glyph # 137, 'germandbls'
+	Glyf 138 -> Mac Glyph # 138, 'registered'
+	Glyf 139 -> Mac Glyph # 139, 'copyright'
+	Glyf 140 -> Mac Glyph # 140, 'trademark'
+	Glyf 141 -> Mac Glyph # 141, 'acute'
+	Glyf 142 -> Mac Glyph # 142, 'dieresis'
+	Glyf 143 -> Mac Glyph # 143, 'notequal'
+	Glyf 144 -> Mac Glyph # 144, 'AE'
+	Glyf 145 -> Mac Glyph # 145, 'Oslash'
+	Glyf 146 -> Mac Glyph # 146, 'infinity'
+	Glyf 147 -> Mac Glyph # 147, 'plusminus'
+	Glyf 148 -> Mac Glyph # 148, 'lessequal'
+	Glyf 149 -> Mac Glyph # 149, 'greaterequal'
+	Glyf 150 -> Mac Glyph # 150, 'yen'
+	Glyf 151 -> PSGlyf Name # 3, name= 'mu1'
+	Glyf 152 -> Mac Glyph # 152, 'partialdiff'
+	Glyf 153 -> Mac Glyph # 153, 'summation'
+	Glyf 154 -> Mac Glyph # 154, 'product'
+	Glyf 155 -> PSGlyf Name # 4, name= 'pi1'
+	Glyf 156 -> Mac Glyph # 156, 'integral'
+	Glyf 157 -> Mac Glyph # 157, 'ordfeminine'
+	Glyf 158 -> Mac Glyph # 158, 'ordmasculine'
+	Glyf 159 -> PSGlyf Name # 5, name= 'Ohm'
+	Glyf 160 -> Mac Glyph # 160, 'ae'
+	Glyf 161 -> Mac Glyph # 161, 'oslash'
+	Glyf 162 -> Mac Glyph # 162, 'questiondown'
+	Glyf 163 -> Mac Glyph # 163, 'exclamdown'
+	Glyf 164 -> Mac Glyph # 164, 'logicalnot'
+	Glyf 165 -> Mac Glyph # 165, 'radical'
+	Glyf 166 -> Mac Glyph # 166, 'florin'
+	Glyf 167 -> Mac Glyph # 167, 'approxequal'
+	Glyf 168 -> Mac Glyph # 168, 'increment'
+	Glyf 169 -> Mac Glyph # 169, 'guillemotleft'
+	Glyf 170 -> Mac Glyph # 170, 'guillemotright'
+	Glyf 171 -> Mac Glyph # 171, 'ellipsis'
+	Glyf 172 -> Mac Glyph # 173, 'Agrave'
+	Glyf 173 -> Mac Glyph # 174, 'Atilde'
+	Glyf 174 -> Mac Glyph # 175, 'Otilde'
+	Glyf 175 -> Mac Glyph # 176, 'OE'
+	Glyf 176 -> Mac Glyph # 177, 'oe'
+	Glyf 177 -> Mac Glyph # 178, 'endash'
+	Glyf 178 -> Mac Glyph # 179, 'emdash'
+	Glyf 179 -> Mac Glyph # 180, 'quotedblleft'
+	Glyf 180 -> Mac Glyph # 181, 'quotedblright'
+	Glyf 181 -> Mac Glyph # 182, 'quoteleft'
+	Glyf 182 -> Mac Glyph # 183, 'quoteright'
+	Glyf 183 -> Mac Glyph # 184, 'divide'
+	Glyf 184 -> Mac Glyph # 185, 'lozenge'
+	Glyf 185 -> Mac Glyph # 186, 'ydieresis'
+	Glyf 186 -> Mac Glyph # 187, 'Ydieresis'
+	Glyf 187 -> Mac Glyph # 188, 'fraction'
+	Glyf 188 -> PSGlyf Name # 6, name= 'Euro'
+	Glyf 189 -> Mac Glyph # 190, 'guilsinglleft'
+	Glyf 190 -> Mac Glyph # 191, 'guilsinglright'
+	Glyf 191 -> Mac Glyph # 192, 'fi'
+	Glyf 192 -> Mac Glyph # 193, 'fl'
+	Glyf 193 -> Mac Glyph # 194, 'daggerdbl'
+	Glyf 194 -> Mac Glyph # 195, 'periodcentered'
+	Glyf 195 -> Mac Glyph # 196, 'quotesinglbase'
+	Glyf 196 -> Mac Glyph # 197, 'quotedblbase'
+	Glyf 197 -> Mac Glyph # 198, 'perthousand'
+	Glyf 198 -> Mac Glyph # 199, 'Acircumflex'
+	Glyf 199 -> Mac Glyph # 200, 'Ecircumflex'
+	Glyf 200 -> Mac Glyph # 201, 'Aacute'
+	Glyf 201 -> Mac Glyph # 202, 'Edieresis'
+	Glyf 202 -> Mac Glyph # 203, 'Egrave'
+	Glyf 203 -> Mac Glyph # 204, 'Iacute'
+	Glyf 204 -> Mac Glyph # 205, 'Icircumflex'
+	Glyf 205 -> Mac Glyph # 206, 'Idieresis'
+	Glyf 206 -> Mac Glyph # 207, 'Igrave'
+	Glyf 207 -> Mac Glyph # 208, 'Oacute'
+	Glyf 208 -> Mac Glyph # 209, 'Ocircumflex'
+	Glyf 209 -> Mac Glyph # 211, 'Ograve'
+	Glyf 210 -> Mac Glyph # 212, 'Uacute'
+	Glyf 211 -> Mac Glyph # 213, 'Ucircumflex'
+	Glyf 212 -> Mac Glyph # 214, 'Ugrave'
+	Glyf 213 -> Mac Glyph # 215, 'dotlessi'
+	Glyf 214 -> Mac Glyph # 216, 'circumflex'
+	Glyf 215 -> Mac Glyph # 217, 'tilde'
+	Glyf 216 -> Mac Glyph # 218, 'macron'
+	Glyf 217 -> Mac Glyph # 219, 'breve'
+	Glyf 218 -> Mac Glyph # 220, 'dotaccent'
+	Glyf 219 -> Mac Glyph # 221, 'ring'
+	Glyf 220 -> Mac Glyph # 222, 'cedilla'
+	Glyf 221 -> Mac Glyph # 223, 'hungarumlaut'
+	Glyf 222 -> Mac Glyph # 224, 'ogonek'
+	Glyf 223 -> Mac Glyph # 225, 'caron'
+	Glyf 224 -> Mac Glyph # 226, 'Lslash'
+	Glyf 225 -> Mac Glyph # 227, 'lslash'
+	Glyf 226 -> Mac Glyph # 228, 'Scaron'
+	Glyf 227 -> Mac Glyph # 229, 'scaron'
+	Glyf 228 -> Mac Glyph # 230, 'Zcaron'
+	Glyf 229 -> Mac Glyph # 231, 'zcaron'
+	Glyf 230 -> Mac Glyph # 232, 'brokenbar'
+	Glyf 231 -> Mac Glyph # 233, 'Eth'
+	Glyf 232 -> Mac Glyph # 234, 'eth'
+	Glyf 233 -> Mac Glyph # 235, 'Yacute'
+	Glyf 234 -> Mac Glyph # 236, 'yacute'
+	Glyf 235 -> Mac Glyph # 237, 'Thorn'
+	Glyf 236 -> Mac Glyph # 238, 'thorn'
+	Glyf 237 -> Mac Glyph # 239, 'minus'
+	Glyf 238 -> Mac Glyph # 240, 'multiply'
+	Glyf 239 -> Mac Glyph # 241, 'onesuperior'
+	Glyf 240 -> Mac Glyph # 242, 'twosuperior'
+	Glyf 241 -> Mac Glyph # 243, 'threesuperior'
+	Glyf 242 -> Mac Glyph # 244, 'onehalf'
+	Glyf 243 -> Mac Glyph # 245, 'onequarter'
+	Glyf 244 -> Mac Glyph # 246, 'threequarters'
+	Glyf 245 -> Mac Glyph # 247, 'franc'
+	Glyf 246 -> Mac Glyph # 248, 'Gbreve'
+	Glyf 247 -> Mac Glyph # 249, 'gbreve'
+	Glyf 248 -> Mac Glyph # 250, 'Idot'
+	Glyf 249 -> Mac Glyph # 251, 'Scedilla'
+	Glyf 250 -> Mac Glyph # 252, 'scedilla'
+	Glyf 251 -> Mac Glyph # 253, 'Cacute'
+	Glyf 252 -> Mac Glyph # 254, 'cacute'
+	Glyf 253 -> Mac Glyph # 255, 'Ccaron'
+	Glyf 254 -> Mac Glyph # 256, 'ccaron'
+	Glyf 255 -> PSGlyf Name # 7, name= 'dmacron'
+	Glyf 256 -> PSGlyf Name # 8, name= 'overscore'
+	Glyf 257 -> PSGlyf Name # 9, name= 'middot'
+	Glyf 258 -> PSGlyf Name # 10, name= 'Abreve'
+	Glyf 259 -> PSGlyf Name # 11, name= 'abreve'
+	Glyf 260 -> PSGlyf Name # 12, name= 'Aogonek'
+	Glyf 261 -> PSGlyf Name # 13, name= 'aogonek'
+	Glyf 262 -> PSGlyf Name # 14, name= 'Dcaron'
+	Glyf 263 -> PSGlyf Name # 15, name= 'dcaron'
+	Glyf 264 -> PSGlyf Name # 16, name= 'Dslash'
+	Glyf 265 -> PSGlyf Name # 17, name= 'Eogonek'
+	Glyf 266 -> PSGlyf Name # 18, name= 'eogonek'
+	Glyf 267 -> PSGlyf Name # 19, name= 'Ecaron'
+	Glyf 268 -> PSGlyf Name # 20, name= 'ecaron'
+	Glyf 269 -> PSGlyf Name # 21, name= 'Lacute'
+	Glyf 270 -> PSGlyf Name # 22, name= 'lacute'
+	Glyf 271 -> PSGlyf Name # 23, name= 'Lcaron'
+	Glyf 272 -> PSGlyf Name # 24, name= 'lcaron'
+	Glyf 273 -> PSGlyf Name # 25, name= 'Ldot'
+	Glyf 274 -> PSGlyf Name # 26, name= 'ldot'
+	Glyf 275 -> PSGlyf Name # 27, name= 'Nacute'
+	Glyf 276 -> PSGlyf Name # 28, name= 'nacute'
+	Glyf 277 -> PSGlyf Name # 29, name= 'Ncaron'
+	Glyf 278 -> PSGlyf Name # 30, name= 'ncaron'
+	Glyf 279 -> PSGlyf Name # 31, name= 'Odblacute'
+	Glyf 280 -> PSGlyf Name # 32, name= 'odblacute'
+	Glyf 281 -> PSGlyf Name # 33, name= 'Racute'
+	Glyf 282 -> PSGlyf Name # 34, name= 'racute'
+	Glyf 283 -> PSGlyf Name # 35, name= 'Rcaron'
+	Glyf 284 -> PSGlyf Name # 36, name= 'rcaron'
+	Glyf 285 -> PSGlyf Name # 37, name= 'Sacute'
+	Glyf 286 -> PSGlyf Name # 38, name= 'sacute'
+	Glyf 287 -> PSGlyf Name # 39, name= 'Tcedilla'
+	Glyf 288 -> PSGlyf Name # 40, name= 'tcedilla'
+	Glyf 289 -> PSGlyf Name # 41, name= 'Tcaron'
+	Glyf 290 -> PSGlyf Name # 42, name= 'tcaron'
+	Glyf 291 -> PSGlyf Name # 43, name= 'Uring'
+	Glyf 292 -> PSGlyf Name # 44, name= 'uring'
+	Glyf 293 -> PSGlyf Name # 45, name= 'Udblacute'
+	Glyf 294 -> PSGlyf Name # 46, name= 'udblacute'
+	Glyf 295 -> PSGlyf Name # 47, name= 'Zacute'
+	Glyf 296 -> PSGlyf Name # 48, name= 'zacute'
+	Glyf 297 -> PSGlyf Name # 49, name= 'Zdot'
+	Glyf 298 -> PSGlyf Name # 50, name= 'zdot'
+	Glyf 299 -> PSGlyf Name # 51, name= 'Gamma'
+	Glyf 300 -> PSGlyf Name # 52, name= 'Theta'
+	Glyf 301 -> PSGlyf Name # 53, name= 'Phi'
+	Glyf 302 -> PSGlyf Name # 54, name= 'alpha'
+	Glyf 303 -> PSGlyf Name # 55, name= 'delta'
+	Glyf 304 -> PSGlyf Name # 56, name= 'epsilon'
+	Glyf 305 -> PSGlyf Name # 57, name= 'sigma'
+	Glyf 306 -> PSGlyf Name # 58, name= 'tau'
+	Glyf 307 -> PSGlyf Name # 59, name= 'phi'
+	Glyf 308 -> PSGlyf Name # 60, name= 'underscoredbl'
+	Glyf 309 -> PSGlyf Name # 61, name= 'exclamdbl'
+	Glyf 310 -> PSGlyf Name # 62, name= 'nsuperior'
+	Glyf 311 -> PSGlyf Name # 63, name= 'peseta'
+	Glyf 312 -> PSGlyf Name # 64, name= 'arrowleft'
+	Glyf 313 -> PSGlyf Name # 65, name= 'arrowup'
+	Glyf 314 -> PSGlyf Name # 66, name= 'arrowright'
+	Glyf 315 -> PSGlyf Name # 67, name= 'arrowdown'
+	Glyf 316 -> PSGlyf Name # 68, name= 'arrowboth'
+	Glyf 317 -> PSGlyf Name # 69, name= 'arrowupdn'
+	Glyf 318 -> PSGlyf Name # 70, name= 'arrowupdnbse'
+	Glyf 319 -> PSGlyf Name # 71, name= 'orthogonal'
+	Glyf 320 -> PSGlyf Name # 72, name= 'intersection'
+	Glyf 321 -> PSGlyf Name # 73, name= 'equivalence'
+	Glyf 322 -> PSGlyf Name # 74, name= 'house'
+	Glyf 323 -> PSGlyf Name # 75, name= 'revlogicalnot'
+	Glyf 324 -> PSGlyf Name # 76, name= 'integraltp'
+	Glyf 325 -> PSGlyf Name # 77, name= 'integralbt'
+	Glyf 326 -> PSGlyf Name # 78, name= 'SF100000'
+	Glyf 327 -> PSGlyf Name # 79, name= 'SF110000'
+	Glyf 328 -> PSGlyf Name # 80, name= 'SF010000'
+	Glyf 329 -> PSGlyf Name # 81, name= 'SF030000'
+	Glyf 330 -> PSGlyf Name # 82, name= 'SF020000'
+	Glyf 331 -> PSGlyf Name # 83, name= 'SF040000'
+	Glyf 332 -> PSGlyf Name # 84, name= 'SF080000'
+	Glyf 333 -> PSGlyf Name # 85, name= 'SF090000'
+	Glyf 334 -> PSGlyf Name # 86, name= 'SF060000'
+	Glyf 335 -> PSGlyf Name # 87, name= 'SF070000'
+	Glyf 336 -> PSGlyf Name # 88, name= 'SF050000'
+	Glyf 337 -> PSGlyf Name # 89, name= 'SF430000'
+	Glyf 338 -> PSGlyf Name # 90, name= 'SF240000'
+	Glyf 339 -> PSGlyf Name # 91, name= 'SF510000'
+	Glyf 340 -> PSGlyf Name # 92, name= 'SF520000'
+	Glyf 341 -> PSGlyf Name # 93, name= 'SF390000'
+	Glyf 342 -> PSGlyf Name # 94, name= 'SF220000'
+	Glyf 343 -> PSGlyf Name # 95, name= 'SF210000'
+	Glyf 344 -> PSGlyf Name # 96, name= 'SF250000'
+	Glyf 345 -> PSGlyf Name # 97, name= 'SF500000'
+	Glyf 346 -> PSGlyf Name # 98, name= 'SF490000'
+	Glyf 347 -> PSGlyf Name # 99, name= 'SF380000'
+	Glyf 348 -> PSGlyf Name # 100, name= 'SF280000'
+	Glyf 349 -> PSGlyf Name # 101, name= 'SF270000'
+	Glyf 350 -> PSGlyf Name # 102, name= 'SF260000'
+	Glyf 351 -> PSGlyf Name # 103, name= 'SF360000'
+	Glyf 352 -> PSGlyf Name # 104, name= 'SF370000'
+	Glyf 353 -> PSGlyf Name # 105, name= 'SF420000'
+	Glyf 354 -> PSGlyf Name # 106, name= 'SF190000'
+	Glyf 355 -> PSGlyf Name # 107, name= 'SF200000'
+	Glyf 356 -> PSGlyf Name # 108, name= 'SF230000'
+	Glyf 357 -> PSGlyf Name # 109, name= 'SF470000'
+	Glyf 358 -> PSGlyf Name # 110, name= 'SF480000'
+	Glyf 359 -> PSGlyf Name # 111, name= 'SF410000'
+	Glyf 360 -> PSGlyf Name # 112, name= 'SF450000'
+	Glyf 361 -> PSGlyf Name # 113, name= 'SF460000'
+	Glyf 362 -> PSGlyf Name # 114, name= 'SF400000'
+	Glyf 363 -> PSGlyf Name # 115, name= 'SF540000'
+	Glyf 364 -> PSGlyf Name # 116, name= 'SF530000'
+	Glyf 365 -> PSGlyf Name # 117, name= 'SF440000'
+	Glyf 366 -> PSGlyf Name # 118, name= 'upblock'
+	Glyf 367 -> PSGlyf Name # 119, name= 'dnblock'
+	Glyf 368 -> PSGlyf Name # 120, name= 'block'
+	Glyf 369 -> PSGlyf Name # 121, name= 'lfblock'
+	Glyf 370 -> PSGlyf Name # 122, name= 'rtblock'
+	Glyf 371 -> PSGlyf Name # 123, name= 'ltshade'
+	Glyf 372 -> PSGlyf Name # 124, name= 'shade'
+	Glyf 373 -> PSGlyf Name # 125, name= 'dkshade'
+	Glyf 374 -> PSGlyf Name # 126, name= 'filledbox'
+	Glyf 375 -> PSGlyf Name # 127, name= 'filledrect'
+	Glyf 376 -> PSGlyf Name # 128, name= 'triagup'
+	Glyf 377 -> PSGlyf Name # 129, name= 'triagrt'
+	Glyf 378 -> PSGlyf Name # 130, name= 'triagdn'
+	Glyf 379 -> PSGlyf Name # 131, name= 'triaglf'
+	Glyf 380 -> PSGlyf Name # 132, name= 'circle'
+	Glyf 381 -> PSGlyf Name # 133, name= 'invbullet'
+	Glyf 382 -> PSGlyf Name # 134, name= 'invcircle'
+	Glyf 383 -> PSGlyf Name # 135, name= 'smileface'
+	Glyf 384 -> PSGlyf Name # 136, name= 'invsmileface'
+	Glyf 385 -> PSGlyf Name # 137, name= 'sun'
+	Glyf 386 -> PSGlyf Name # 138, name= 'female'
+	Glyf 387 -> PSGlyf Name # 139, name= 'male'
+	Glyf 388 -> PSGlyf Name # 140, name= 'spade'
+	Glyf 389 -> PSGlyf Name # 141, name= 'club'
+	Glyf 390 -> PSGlyf Name # 142, name= 'heart'
+	Glyf 391 -> PSGlyf Name # 143, name= 'diamond'
+	Glyf 392 -> PSGlyf Name # 144, name= 'musicalnote'
+	Glyf 393 -> PSGlyf Name # 145, name= 'musicalnotedbl'
+	Glyf 394 -> PSGlyf Name # 146, name= 'IJ'
+	Glyf 395 -> PSGlyf Name # 147, name= 'ij'
+	Glyf 396 -> PSGlyf Name # 148, name= 'napostrophe'
+	Glyf 397 -> PSGlyf Name # 149, name= 'minute'
+	Glyf 398 -> PSGlyf Name # 150, name= 'second'
+	Glyf 399 -> PSGlyf Name # 151, name= 'afii61248'
+	Glyf 400 -> PSGlyf Name # 152, name= 'afii61289'
+	Glyf 401 -> PSGlyf Name # 153, name= 'H22073'
+	Glyf 402 -> PSGlyf Name # 154, name= 'H18543'
+	Glyf 403 -> PSGlyf Name # 155, name= 'H18551'
+	Glyf 404 -> PSGlyf Name # 156, name= 'H18533'
+	Glyf 405 -> PSGlyf Name # 157, name= 'openbullet'
+	Glyf 406 -> PSGlyf Name # 158, name= 'Amacron'
+	Glyf 407 -> PSGlyf Name # 159, name= 'amacron'
+	Glyf 408 -> PSGlyf Name # 160, name= 'Ccircumflex'
+	Glyf 409 -> PSGlyf Name # 161, name= 'ccircumflex'
+	Glyf 410 -> PSGlyf Name # 162, name= 'Cdot'
+	Glyf 411 -> PSGlyf Name # 163, name= 'cdot'
+	Glyf 412 -> PSGlyf Name # 164, name= 'Emacron'
+	Glyf 413 -> PSGlyf Name # 165, name= 'emacron'
+	Glyf 414 -> PSGlyf Name # 166, name= 'Ebreve'
+	Glyf 415 -> PSGlyf Name # 167, name= 'ebreve'
+	Glyf 416 -> PSGlyf Name # 168, name= 'Edot'
+	Glyf 417 -> PSGlyf Name # 169, name= 'edot'
+	Glyf 418 -> PSGlyf Name # 170, name= 'Gcircumflex'
+	Glyf 419 -> PSGlyf Name # 171, name= 'gcircumflex'
+	Glyf 420 -> PSGlyf Name # 172, name= 'Gdot'
+	Glyf 421 -> PSGlyf Name # 173, name= 'gdot'
+	Glyf 422 -> PSGlyf Name # 174, name= 'Gcedilla'
+	Glyf 423 -> PSGlyf Name # 175, name= 'gcedilla'
+	Glyf 424 -> PSGlyf Name # 176, name= 'Hcircumflex'
+	Glyf 425 -> PSGlyf Name # 177, name= 'hcircumflex'
+	Glyf 426 -> PSGlyf Name # 178, name= 'Hbar'
+	Glyf 427 -> PSGlyf Name # 179, name= 'hbar'
+	Glyf 428 -> PSGlyf Name # 180, name= 'Itilde'
+	Glyf 429 -> PSGlyf Name # 181, name= 'itilde'
+	Glyf 430 -> PSGlyf Name # 182, name= 'Imacron'
+	Glyf 431 -> PSGlyf Name # 183, name= 'imacron'
+	Glyf 432 -> PSGlyf Name # 184, name= 'Ibreve'
+	Glyf 433 -> PSGlyf Name # 185, name= 'ibreve'
+	Glyf 434 -> PSGlyf Name # 186, name= 'Iogonek'
+	Glyf 435 -> PSGlyf Name # 187, name= 'iogonek'
+	Glyf 436 -> PSGlyf Name # 188, name= 'Jcircumflex'
+	Glyf 437 -> PSGlyf Name # 189, name= 'jcircumflex'
+	Glyf 438 -> PSGlyf Name # 190, name= 'Kcedilla'
+	Glyf 439 -> PSGlyf Name # 191, name= 'kcedilla'
+	Glyf 440 -> PSGlyf Name # 192, name= 'kgreenlandic'
+	Glyf 441 -> PSGlyf Name # 193, name= 'Lcedilla'
+	Glyf 442 -> PSGlyf Name # 194, name= 'lcedilla'
+	Glyf 443 -> PSGlyf Name # 195, name= 'Ncedilla'
+	Glyf 444 -> PSGlyf Name # 196, name= 'ncedilla'
+	Glyf 445 -> PSGlyf Name # 197, name= 'Eng'
+	Glyf 446 -> PSGlyf Name # 198, name= 'eng'
+	Glyf 447 -> PSGlyf Name # 199, name= 'Omacron'
+	Glyf 448 -> PSGlyf Name # 200, name= 'omacron'
+	Glyf 449 -> PSGlyf Name # 201, name= 'Obreve'
+	Glyf 450 -> PSGlyf Name # 202, name= 'obreve'
+	Glyf 451 -> PSGlyf Name # 203, name= 'Rcedilla'
+	Glyf 452 -> PSGlyf Name # 204, name= 'rcedilla'
+	Glyf 453 -> PSGlyf Name # 205, name= 'Scircumflex'
+	Glyf 454 -> PSGlyf Name # 206, name= 'scircumflex'
+	Glyf 455 -> PSGlyf Name # 207, name= 'Tbar'
+	Glyf 456 -> PSGlyf Name # 208, name= 'tbar'
+	Glyf 457 -> PSGlyf Name # 209, name= 'Utilde'
+	Glyf 458 -> PSGlyf Name # 210, name= 'utilde'
+	Glyf 459 -> PSGlyf Name # 211, name= 'Umacron'
+	Glyf 460 -> PSGlyf Name # 212, name= 'umacron'
+	Glyf 461 -> PSGlyf Name # 213, name= 'Ubreve'
+	Glyf 462 -> PSGlyf Name # 214, name= 'ubreve'
+	Glyf 463 -> PSGlyf Name # 215, name= 'Uogonek'
+	Glyf 464 -> PSGlyf Name # 216, name= 'uogonek'
+	Glyf 465 -> PSGlyf Name # 217, name= 'Wcircumflex'
+	Glyf 466 -> PSGlyf Name # 218, name= 'wcircumflex'
+	Glyf 467 -> PSGlyf Name # 219, name= 'Ycircumflex'
+	Glyf 468 -> PSGlyf Name # 220, name= 'ycircumflex'
+	Glyf 469 -> PSGlyf Name # 221, name= 'longs'
+	Glyf 470 -> PSGlyf Name # 222, name= 'Aringacute'
+	Glyf 471 -> PSGlyf Name # 223, name= 'aringacute'
+	Glyf 472 -> PSGlyf Name # 224, name= 'AEacute'
+	Glyf 473 -> PSGlyf Name # 225, name= 'aeacute'
+	Glyf 474 -> PSGlyf Name # 226, name= 'Oslashacute'
+	Glyf 475 -> PSGlyf Name # 227, name= 'oslashacute'
+	Glyf 476 -> PSGlyf Name # 228, name= 'anoteleia'
+	Glyf 477 -> PSGlyf Name # 229, name= 'Wgrave'
+	Glyf 478 -> PSGlyf Name # 230, name= 'wgrave'
+	Glyf 479 -> PSGlyf Name # 231, name= 'Wacute'
+	Glyf 480 -> PSGlyf Name # 232, name= 'wacute'
+	Glyf 481 -> PSGlyf Name # 233, name= 'Wdieresis'
+	Glyf 482 -> PSGlyf Name # 234, name= 'wdieresis'
+	Glyf 483 -> PSGlyf Name # 235, name= 'Ygrave'
+	Glyf 484 -> PSGlyf Name # 236, name= 'ygrave'
+	Glyf 485 -> PSGlyf Name # 237, name= 'quotereversed'
+	Glyf 486 -> PSGlyf Name # 238, name= 'radicalex'
+	Glyf 487 -> PSGlyf Name # 239, name= 'afii08941'
+	Glyf 488 -> PSGlyf Name # 240, name= 'estimated'
+	Glyf 489 -> PSGlyf Name # 241, name= 'oneeighth'
+	Glyf 490 -> PSGlyf Name # 242, name= 'threeeighths'
+	Glyf 491 -> PSGlyf Name # 243, name= 'fiveeighths'
+	Glyf 492 -> PSGlyf Name # 244, name= 'seveneighths'
+	Glyf 493 -> PSGlyf Name # 245, name= 'commaaccent'
+	Glyf 494 -> PSGlyf Name # 246, name= 'undercommaaccent'
+	Glyf 495 -> PSGlyf Name # 247, name= 'tonos'
+	Glyf 496 -> PSGlyf Name # 248, name= 'dieresistonos'
+	Glyf 497 -> PSGlyf Name # 249, name= 'Alphatonos'
+	Glyf 498 -> PSGlyf Name # 250, name= 'Epsilontonos'
+	Glyf 499 -> PSGlyf Name # 251, name= 'Etatonos'
+	Glyf 500 -> PSGlyf Name # 252, name= 'Iotatonos'
+	Glyf 501 -> PSGlyf Name # 253, name= 'Omicrontonos'
+	Glyf 502 -> PSGlyf Name # 254, name= 'Upsilontonos'
+	Glyf 503 -> PSGlyf Name # 255, name= 'Omegatonos'
+	Glyf 504 -> PSGlyf Name # 256, name= 'iotadieresistonos'
+	Glyf 505 -> PSGlyf Name # 257, name= 'Alpha'
+	Glyf 506 -> PSGlyf Name # 258, name= 'Beta'
+	Glyf 507 -> PSGlyf Name # 259, name= 'Delta'
+	Glyf 508 -> PSGlyf Name # 260, name= 'Epsilon'
+	Glyf 509 -> PSGlyf Name # 261, name= 'Zeta'
+	Glyf 510 -> PSGlyf Name # 262, name= 'Eta'
+	Glyf 511 -> PSGlyf Name # 263, name= 'Iota'
+	Glyf 512 -> PSGlyf Name # 264, name= 'Kappa'
+	Glyf 513 -> PSGlyf Name # 265, name= 'Lambda'
+	Glyf 514 -> PSGlyf Name # 266, name= 'Mu'
+	Glyf 515 -> PSGlyf Name # 267, name= 'Nu'
+	Glyf 516 -> PSGlyf Name # 268, name= 'Xi'
+	Glyf 517 -> PSGlyf Name # 269, name= 'Omicron'
+	Glyf 518 -> PSGlyf Name # 270, name= 'Pi'
+	Glyf 519 -> PSGlyf Name # 271, name= 'Rho'
+	Glyf 520 -> PSGlyf Name # 272, name= 'Sigma'
+	Glyf 521 -> PSGlyf Name # 273, name= 'Tau'
+	Glyf 522 -> PSGlyf Name # 274, name= 'Upsilon'
+	Glyf 523 -> PSGlyf Name # 275, name= 'Chi'
+	Glyf 524 -> PSGlyf Name # 276, name= 'Psi'
+	Glyf 525 -> Mac Glyph # 159, 'Omega'
+	Glyf 526 -> PSGlyf Name # 277, name= 'Iotadieresis'
+	Glyf 527 -> PSGlyf Name # 278, name= 'Upsilondieresis'
+	Glyf 528 -> PSGlyf Name # 279, name= 'alphatonos'
+	Glyf 529 -> PSGlyf Name # 280, name= 'epsilontonos'
+	Glyf 530 -> PSGlyf Name # 281, name= 'etatonos'
+	Glyf 531 -> PSGlyf Name # 282, name= 'iotatonos'
+	Glyf 532 -> PSGlyf Name # 283, name= 'upsilondieresistonos'
+	Glyf 533 -> PSGlyf Name # 284, name= 'beta'
+	Glyf 534 -> PSGlyf Name # 285, name= 'gamma'
+	Glyf 535 -> PSGlyf Name # 286, name= 'zeta'
+	Glyf 536 -> PSGlyf Name # 287, name= 'eta'
+	Glyf 537 -> PSGlyf Name # 288, name= 'theta'
+	Glyf 538 -> PSGlyf Name # 289, name= 'iota'
+	Glyf 539 -> PSGlyf Name # 290, name= 'kappa'
+	Glyf 540 -> PSGlyf Name # 291, name= 'lambda'
+	Glyf 541 -> Mac Glyph # 151, 'mu'
+	Glyf 542 -> PSGlyf Name # 292, name= 'nu'
+	Glyf 543 -> PSGlyf Name # 293, name= 'xi'
+	Glyf 544 -> PSGlyf Name # 294, name= 'omicron'
+	Glyf 545 -> PSGlyf Name # 295, name= 'rho'
+	Glyf 546 -> PSGlyf Name # 296, name= 'sigma1'
+	Glyf 547 -> PSGlyf Name # 297, name= 'upsilon'
+	Glyf 548 -> PSGlyf Name # 298, name= 'chi'
+	Glyf 549 -> PSGlyf Name # 299, name= 'psi'
+	Glyf 550 -> PSGlyf Name # 300, name= 'omega'
+	Glyf 551 -> PSGlyf Name # 301, name= 'iotadieresis'
+	Glyf 552 -> PSGlyf Name # 302, name= 'upsilondieresis'
+	Glyf 553 -> PSGlyf Name # 303, name= 'omicrontonos'
+	Glyf 554 -> PSGlyf Name # 304, name= 'upsilontonos'
+	Glyf 555 -> PSGlyf Name # 305, name= 'omegatonos'
+	Glyf 556 -> PSGlyf Name # 306, name= 'afii10023'
+	Glyf 557 -> PSGlyf Name # 307, name= 'afii10051'
+	Glyf 558 -> PSGlyf Name # 308, name= 'afii10052'
+	Glyf 559 -> PSGlyf Name # 309, name= 'afii10053'
+	Glyf 560 -> PSGlyf Name # 310, name= 'afii10054'
+	Glyf 561 -> PSGlyf Name # 311, name= 'afii10055'
+	Glyf 562 -> PSGlyf Name # 312, name= 'afii10056'
+	Glyf 563 -> PSGlyf Name # 313, name= 'afii10057'
+	Glyf 564 -> PSGlyf Name # 314, name= 'afii10058'
+	Glyf 565 -> PSGlyf Name # 315, name= 'afii10059'
+	Glyf 566 -> PSGlyf Name # 316, name= 'afii10060'
+	Glyf 567 -> PSGlyf Name # 317, name= 'afii10061'
+	Glyf 568 -> PSGlyf Name # 318, name= 'afii10062'
+	Glyf 569 -> PSGlyf Name # 319, name= 'afii10145'
+	Glyf 570 -> PSGlyf Name # 320, name= 'afii10017'
+	Glyf 571 -> PSGlyf Name # 321, name= 'afii10018'
+	Glyf 572 -> PSGlyf Name # 322, name= 'afii10019'
+	Glyf 573 -> PSGlyf Name # 323, name= 'afii10020'
+	Glyf 574 -> PSGlyf Name # 324, name= 'afii10021'
+	Glyf 575 -> PSGlyf Name # 325, name= 'afii10022'
+	Glyf 576 -> PSGlyf Name # 326, name= 'afii10024'
+	Glyf 577 -> PSGlyf Name # 327, name= 'afii10025'
+	Glyf 578 -> PSGlyf Name # 328, name= 'afii10026'
+	Glyf 579 -> PSGlyf Name # 329, name= 'afii10027'
+	Glyf 580 -> PSGlyf Name # 330, name= 'afii10028'
+	Glyf 581 -> PSGlyf Name # 331, name= 'afii10029'
+	Glyf 582 -> PSGlyf Name # 332, name= 'afii10030'
+	Glyf 583 -> PSGlyf Name # 333, name= 'afii10031'
+	Glyf 584 -> PSGlyf Name # 334, name= 'afii10032'
+	Glyf 585 -> PSGlyf Name # 335, name= 'afii10033'
+	Glyf 586 -> PSGlyf Name # 336, name= 'afii10034'
+	Glyf 587 -> PSGlyf Name # 337, name= 'afii10035'
+	Glyf 588 -> PSGlyf Name # 338, name= 'afii10036'
+	Glyf 589 -> PSGlyf Name # 339, name= 'afii10037'
+	Glyf 590 -> PSGlyf Name # 340, name= 'afii10038'
+	Glyf 591 -> PSGlyf Name # 341, name= 'afii10039'
+	Glyf 592 -> PSGlyf Name # 342, name= 'afii10040'
+	Glyf 593 -> PSGlyf Name # 343, name= 'afii10041'
+	Glyf 594 -> PSGlyf Name # 344, name= 'afii10042'
+	Glyf 595 -> PSGlyf Name # 345, name= 'afii10043'
+	Glyf 596 -> PSGlyf Name # 346, name= 'afii10044'
+	Glyf 597 -> PSGlyf Name # 347, name= 'afii10045'
+	Glyf 598 -> PSGlyf Name # 348, name= 'afii10046'
+	Glyf 599 -> PSGlyf Name # 349, name= 'afii10047'
+	Glyf 600 -> PSGlyf Name # 350, name= 'afii10048'
+	Glyf 601 -> PSGlyf Name # 351, name= 'afii10049'
+	Glyf 602 -> PSGlyf Name # 352, name= 'afii10065'
+	Glyf 603 -> PSGlyf Name # 353, name= 'afii10066'
+	Glyf 604 -> PSGlyf Name # 354, name= 'afii10067'
+	Glyf 605 -> PSGlyf Name # 355, name= 'afii10068'
+	Glyf 606 -> PSGlyf Name # 356, name= 'afii10069'
+	Glyf 607 -> PSGlyf Name # 357, name= 'afii10070'
+	Glyf 608 -> PSGlyf Name # 358, name= 'afii10072'
+	Glyf 609 -> PSGlyf Name # 359, name= 'afii10073'
+	Glyf 610 -> PSGlyf Name # 360, name= 'afii10074'
+	Glyf 611 -> PSGlyf Name # 361, name= 'afii10075'
+	Glyf 612 -> PSGlyf Name # 362, name= 'afii10076'
+	Glyf 613 -> PSGlyf Name # 363, name= 'afii10077'
+	Glyf 614 -> PSGlyf Name # 364, name= 'afii10078'
+	Glyf 615 -> PSGlyf Name # 365, name= 'afii10079'
+	Glyf 616 -> PSGlyf Name # 366, name= 'afii10080'
+	Glyf 617 -> PSGlyf Name # 367, name= 'afii10081'
+	Glyf 618 -> PSGlyf Name # 368, name= 'afii10082'
+	Glyf 619 -> PSGlyf Name # 369, name= 'afii10083'
+	Glyf 620 -> PSGlyf Name # 370, name= 'afii10084'
+	Glyf 621 -> PSGlyf Name # 371, name= 'afii10085'
+	Glyf 622 -> PSGlyf Name # 372, name= 'afii10086'
+	Glyf 623 -> PSGlyf Name # 373, name= 'afii10087'
+	Glyf 624 -> PSGlyf Name # 374, name= 'afii10088'
+	Glyf 625 -> PSGlyf Name # 375, name= 'afii10089'
+	Glyf 626 -> PSGlyf Name # 376, name= 'afii10090'
+	Glyf 627 -> PSGlyf Name # 377, name= 'afii10091'
+	Glyf 628 -> PSGlyf Name # 378, name= 'afii10092'
+	Glyf 629 -> PSGlyf Name # 379, name= 'afii10093'
+	Glyf 630 -> PSGlyf Name # 380, name= 'afii10094'
+	Glyf 631 -> PSGlyf Name # 381, name= 'afii10095'
+	Glyf 632 -> PSGlyf Name # 382, name= 'afii10096'
+	Glyf 633 -> PSGlyf Name # 383, name= 'afii10097'
+	Glyf 634 -> PSGlyf Name # 384, name= 'afii10071'
+	Glyf 635 -> PSGlyf Name # 385, name= 'afii10099'
+	Glyf 636 -> PSGlyf Name # 386, name= 'afii10100'
+	Glyf 637 -> PSGlyf Name # 387, name= 'afii10101'
+	Glyf 638 -> PSGlyf Name # 388, name= 'afii10102'
+	Glyf 639 -> PSGlyf Name # 389, name= 'afii10103'
+	Glyf 640 -> PSGlyf Name # 390, name= 'afii10104'
+	Glyf 641 -> PSGlyf Name # 391, name= 'afii10105'
+	Glyf 642 -> PSGlyf Name # 392, name= 'afii10106'
+	Glyf 643 -> PSGlyf Name # 393, name= 'afii10107'
+	Glyf 644 -> PSGlyf Name # 394, name= 'afii10108'
+	Glyf 645 -> PSGlyf Name # 395, name= 'afii10109'
+	Glyf 646 -> PSGlyf Name # 396, name= 'afii10110'
+	Glyf 647 -> PSGlyf Name # 397, name= 'afii10193'
+	Glyf 648 -> PSGlyf Name # 398, name= 'afii10050'
+	Glyf 649 -> PSGlyf Name # 399, name= 'afii10098'
+	Glyf 650 -> PSGlyf Name # 400, name= 'afii00208'
+	Glyf 651 -> PSGlyf Name # 401, name= 'afii61352'
+	Glyf 652 -> Mac Glyph # 155, 'pi'
+	Glyf 653 -> PSGlyf Name # 402, name= 'sheva'
+	Glyf 654 -> PSGlyf Name # 403, name= 'hatafsegol'
+	Glyf 655 -> PSGlyf Name # 404, name= 'hatafpatah'
+	Glyf 656 -> PSGlyf Name # 405, name= 'hatafqamats'
+	Glyf 657 -> PSGlyf Name # 406, name= 'hiriq'
+	Glyf 658 -> PSGlyf Name # 407, name= 'tsere'
+	Glyf 659 -> PSGlyf Name # 408, name= 'segol'
+	Glyf 660 -> PSGlyf Name # 409, name= 'patah'
+	Glyf 661 -> PSGlyf Name # 410, name= 'qamats'
+	Glyf 662 -> PSGlyf Name # 411, name= 'holam'
+	Glyf 663 -> PSGlyf Name # 412, name= 'qubuts'
+	Glyf 664 -> PSGlyf Name # 413, name= 'dagesh'
+	Glyf 665 -> PSGlyf Name # 414, name= 'meteg'
+	Glyf 666 -> PSGlyf Name # 415, name= 'maqaf'
+	Glyf 667 -> PSGlyf Name # 416, name= 'rafe'
+	Glyf 668 -> PSGlyf Name # 417, name= 'paseq'
+	Glyf 669 -> PSGlyf Name # 418, name= 'shindot'
+	Glyf 670 -> PSGlyf Name # 419, name= 'sindot'
+	Glyf 671 -> PSGlyf Name # 420, name= 'sofpasuq'
+	Glyf 672 -> PSGlyf Name # 421, name= 'alef'
+	Glyf 673 -> PSGlyf Name # 422, name= 'bet'
+	Glyf 674 -> PSGlyf Name # 423, name= 'gimel'
+	Glyf 675 -> PSGlyf Name # 424, name= 'dalet'
+	Glyf 676 -> PSGlyf Name # 425, name= 'he'
+	Glyf 677 -> PSGlyf Name # 426, name= 'vav'
+	Glyf 678 -> PSGlyf Name # 427, name= 'zayin'
+	Glyf 679 -> PSGlyf Name # 428, name= 'het'
+	Glyf 680 -> PSGlyf Name # 429, name= 'tet'
+	Glyf 681 -> PSGlyf Name # 430, name= 'yod'
+	Glyf 682 -> PSGlyf Name # 431, name= 'finalkaf'
+	Glyf 683 -> PSGlyf Name # 432, name= 'kaf'
+	Glyf 684 -> PSGlyf Name # 433, name= 'lamed'
+	Glyf 685 -> PSGlyf Name # 434, name= 'finalmem'
+	Glyf 686 -> PSGlyf Name # 435, name= 'mem'
+	Glyf 687 -> PSGlyf Name # 436, name= 'finalnun'
+	Glyf 688 -> PSGlyf Name # 437, name= 'nun'
+	Glyf 689 -> PSGlyf Name # 438, name= 'samekh'
+	Glyf 690 -> PSGlyf Name # 439, name= 'ayin'
+	Glyf 691 -> PSGlyf Name # 440, name= 'finalpe'
+	Glyf 692 -> PSGlyf Name # 441, name= 'pe'
+	Glyf 693 -> PSGlyf Name # 442, name= 'finaltsadi'
+	Glyf 694 -> PSGlyf Name # 443, name= 'tsadi'
+	Glyf 695 -> PSGlyf Name # 444, name= 'qof'
+	Glyf 696 -> PSGlyf Name # 445, name= 'resh'
+	Glyf 697 -> PSGlyf Name # 446, name= 'shin'
+	Glyf 698 -> PSGlyf Name # 447, name= 'tav'
+	Glyf 699 -> PSGlyf Name # 448, name= 'doublevav'
+	Glyf 700 -> PSGlyf Name # 449, name= 'vavyod'
+	Glyf 701 -> PSGlyf Name # 450, name= 'doubleyod'
+	Glyf 702 -> PSGlyf Name # 451, name= 'geresh'
+	Glyf 703 -> PSGlyf Name # 452, name= 'gershayim'
+	Glyf 704 -> PSGlyf Name # 453, name= 'newsheqelsign'
+	Glyf 705 -> PSGlyf Name # 454, name= 'vavshindot'
+	Glyf 706 -> PSGlyf Name # 455, name= 'finalkafsheva'
+	Glyf 707 -> PSGlyf Name # 456, name= 'finalkafqamats'
+	Glyf 708 -> PSGlyf Name # 457, name= 'lamedholam'
+	Glyf 709 -> PSGlyf Name # 458, name= 'lamedholamdagesh'
+	Glyf 710 -> PSGlyf Name # 459, name= 'altayin'
+	Glyf 711 -> PSGlyf Name # 460, name= 'shinshindot'
+	Glyf 712 -> PSGlyf Name # 461, name= 'shinsindot'
+	Glyf 713 -> PSGlyf Name # 462, name= 'shindageshshindot'
+	Glyf 714 -> PSGlyf Name # 463, name= 'shindageshsindot'
+	Glyf 715 -> PSGlyf Name # 464, name= 'alefpatah'
+	Glyf 716 -> PSGlyf Name # 465, name= 'alefqamats'
+	Glyf 717 -> PSGlyf Name # 466, name= 'alefmapiq'
+	Glyf 718 -> PSGlyf Name # 467, name= 'betdagesh'
+	Glyf 719 -> PSGlyf Name # 468, name= 'gimeldagesh'
+	Glyf 720 -> PSGlyf Name # 469, name= 'daletdagesh'
+	Glyf 721 -> PSGlyf Name # 470, name= 'hedagesh'
+	Glyf 722 -> PSGlyf Name # 471, name= 'vavdagesh'
+	Glyf 723 -> PSGlyf Name # 472, name= 'zayindagesh'
+	Glyf 724 -> PSGlyf Name # 473, name= 'tetdagesh'
+	Glyf 725 -> PSGlyf Name # 474, name= 'yoddagesh'
+	Glyf 726 -> PSGlyf Name # 475, name= 'finalkafdagesh'
+	Glyf 727 -> PSGlyf Name # 476, name= 'kafdagesh'
+	Glyf 728 -> PSGlyf Name # 477, name= 'lameddagesh'
+	Glyf 729 -> PSGlyf Name # 478, name= 'memdagesh'
+	Glyf 730 -> PSGlyf Name # 479, name= 'nundagesh'
+	Glyf 731 -> PSGlyf Name # 480, name= 'samekhdagesh'
+	Glyf 732 -> PSGlyf Name # 481, name= 'finalpedagesh'
+	Glyf 733 -> PSGlyf Name # 482, name= 'pedagesh'
+	Glyf 734 -> PSGlyf Name # 483, name= 'tsadidagesh'
+	Glyf 735 -> PSGlyf Name # 484, name= 'qofdagesh'
+	Glyf 736 -> PSGlyf Name # 485, name= 'reshdagesh'
+	Glyf 737 -> PSGlyf Name # 486, name= 'shindagesh'
+	Glyf 738 -> PSGlyf Name # 487, name= 'tavdages'
+	Glyf 739 -> PSGlyf Name # 488, name= 'vavholam'
+	Glyf 740 -> PSGlyf Name # 489, name= 'betrafe'
+	Glyf 741 -> PSGlyf Name # 490, name= 'kafrafe'
+	Glyf 742 -> PSGlyf Name # 491, name= 'perafe'
+	Glyf 743 -> PSGlyf Name # 492, name= 'aleflamed'
+	Glyf 744 -> PSGlyf Name # 493, name= 'zerowidthnonjoiner'
+	Glyf 745 -> PSGlyf Name # 494, name= 'zerowidthjoiner'
+	Glyf 746 -> PSGlyf Name # 495, name= 'lefttorightmark'
+	Glyf 747 -> PSGlyf Name # 496, name= 'righttoleftmark'
+	Glyf 748 -> PSGlyf Name # 497, name= 'afii57388'
+	Glyf 749 -> PSGlyf Name # 498, name= 'afii57403'
+	Glyf 750 -> PSGlyf Name # 499, name= 'afii57407'
+	Glyf 751 -> PSGlyf Name # 500, name= 'afii57409'
+	Glyf 752 -> PSGlyf Name # 501, name= 'afii57440'
+	Glyf 753 -> PSGlyf Name # 502, name= 'afii57451'
+	Glyf 754 -> PSGlyf Name # 503, name= 'afii57452'
+	Glyf 755 -> PSGlyf Name # 504, name= 'afii57453'
+	Glyf 756 -> PSGlyf Name # 505, name= 'afii57454'
+	Glyf 757 -> PSGlyf Name # 506, name= 'afii57455'
+	Glyf 758 -> PSGlyf Name # 507, name= 'afii57456'
+	Glyf 759 -> PSGlyf Name # 508, name= 'afii57457'
+	Glyf 760 -> PSGlyf Name # 509, name= 'afii57458'
+	Glyf 761 -> PSGlyf Name # 510, name= 'afii57392'
+	Glyf 762 -> PSGlyf Name # 511, name= 'afii57393'
+	Glyf 763 -> PSGlyf Name # 512, name= 'afii57394'
+	Glyf 764 -> PSGlyf Name # 513, name= 'afii57395'
+	Glyf 765 -> PSGlyf Name # 514, name= 'afii57396'
+	Glyf 766 -> PSGlyf Name # 515, name= 'afii57397'
+	Glyf 767 -> PSGlyf Name # 516, name= 'afii57398'
+	Glyf 768 -> PSGlyf Name # 517, name= 'afii57399'
+	Glyf 769 -> PSGlyf Name # 518, name= 'afii57400'
+	Glyf 770 -> PSGlyf Name # 519, name= 'afii57401'
+	Glyf 771 -> PSGlyf Name # 520, name= 'afii57381'
+	Glyf 772 -> PSGlyf Name # 521, name= 'afii57461'
+	Glyf 773 -> PSGlyf Name # 522, name= 'afii63167'
+	Glyf 774 -> PSGlyf Name # 523, name= 'afii57459'
+	Glyf 775 -> PSGlyf Name # 524, name= 'afii57543'
+	Glyf 776 -> PSGlyf Name # 525, name= 'afii57534'
+	Glyf 777 -> PSGlyf Name # 526, name= 'afii57494'
+	Glyf 778 -> PSGlyf Name # 527, name= 'afii62843'
+	Glyf 779 -> PSGlyf Name # 528, name= 'afii62844'
+	Glyf 780 -> PSGlyf Name # 529, name= 'afii62845'
+	Glyf 781 -> PSGlyf Name # 530, name= 'afii64240'
+	Glyf 782 -> PSGlyf Name # 531, name= 'afii64241'
+	Glyf 783 -> PSGlyf Name # 532, name= 'afii63954'
+	Glyf 784 -> PSGlyf Name # 533, name= 'afii57382'
+	Glyf 785 -> PSGlyf Name # 534, name= 'afii64242'
+	Glyf 786 -> PSGlyf Name # 535, name= 'afii62881'
+	Glyf 787 -> PSGlyf Name # 536, name= 'afii57504'
+	Glyf 788 -> PSGlyf Name # 537, name= 'afii57369'
+	Glyf 789 -> PSGlyf Name # 538, name= 'afii57370'
+	Glyf 790 -> PSGlyf Name # 539, name= 'afii57371'
+	Glyf 791 -> PSGlyf Name # 540, name= 'afii57372'
+	Glyf 792 -> PSGlyf Name # 541, name= 'afii57373'
+	Glyf 793 -> PSGlyf Name # 542, name= 'afii57374'
+	Glyf 794 -> PSGlyf Name # 543, name= 'afii57375'
+	Glyf 795 -> PSGlyf Name # 544, name= 'afii57391'
+	Glyf 796 -> PSGlyf Name # 545, name= 'afii57471'
+	Glyf 797 -> PSGlyf Name # 546, name= 'afii57460'
+	Glyf 798 -> PSGlyf Name # 547, name= 'afii52258'
+	Glyf 799 -> PSGlyf Name # 548, name= 'afii57506'
+	Glyf 800 -> PSGlyf Name # 549, name= 'afii62958'
+	Glyf 801 -> PSGlyf Name # 550, name= 'afii62956'
+	Glyf 802 -> PSGlyf Name # 551, name= 'afii52957'
+	Glyf 803 -> PSGlyf Name # 552, name= 'afii57505'
+	Glyf 804 -> PSGlyf Name # 553, name= 'afii62889'
+	Glyf 805 -> PSGlyf Name # 554, name= 'afii62887'
+	Glyf 806 -> PSGlyf Name # 555, name= 'afii62888'
+	Glyf 807 -> PSGlyf Name # 556, name= 'afii57507'
+	Glyf 808 -> PSGlyf Name # 557, name= 'afii62961'
+	Glyf 809 -> PSGlyf Name # 558, name= 'afii62959'
+	Glyf 810 -> PSGlyf Name # 559, name= 'afii62960'
+	Glyf 811 -> PSGlyf Name # 560, name= 'afii57508'
+	Glyf 812 -> PSGlyf Name # 561, name= 'afii62962'
+	Glyf 813 -> PSGlyf Name # 562, name= 'afii57567'
+	Glyf 814 -> PSGlyf Name # 563, name= 'afii62964'
+	Glyf 815 -> PSGlyf Name # 564, name= 'afii52305'
+	Glyf 816 -> PSGlyf Name # 565, name= 'afii52306'
+	Glyf 817 -> PSGlyf Name # 566, name= 'afii57509'
+	Glyf 818 -> PSGlyf Name # 567, name= 'afii62967'
+	Glyf 819 -> PSGlyf Name # 568, name= 'afii62965'
+	Glyf 820 -> PSGlyf Name # 569, name= 'afii62966'
+	Glyf 821 -> PSGlyf Name # 570, name= 'afii57555'
+	Glyf 822 -> PSGlyf Name # 571, name= 'afii52364'
+	Glyf 823 -> PSGlyf Name # 572, name= 'afii63753'
+	Glyf 824 -> PSGlyf Name # 573, name= 'afii63754'
+	Glyf 825 -> PSGlyf Name # 574, name= 'afii63759'
+	Glyf 826 -> PSGlyf Name # 575, name= 'afii63763'
+	Glyf 827 -> PSGlyf Name # 576, name= 'afii63795'
+	Glyf 828 -> PSGlyf Name # 577, name= 'afii62891'
+	Glyf 829 -> PSGlyf Name # 578, name= 'afii63808'
+	Glyf 830 -> PSGlyf Name # 579, name= 'afii62938'
+	Glyf 831 -> PSGlyf Name # 580, name= 'afii63810'
+	Glyf 832 -> PSGlyf Name # 581, name= 'afii62942'
+	Glyf 833 -> PSGlyf Name # 582, name= 'afii62947'
+	Glyf 834 -> PSGlyf Name # 583, name= 'afii63813'
+	Glyf 835 -> PSGlyf Name # 584, name= 'afii63823'
+	Glyf 836 -> PSGlyf Name # 585, name= 'afii63824'
+	Glyf 837 -> PSGlyf Name # 586, name= 'afii63833'
+	Glyf 838 -> PSGlyf Name # 587, name= 'afii63844'
+	Glyf 839 -> PSGlyf Name # 588, name= 'afii62882'
+	Glyf 840 -> PSGlyf Name # 589, name= 'afii62883'
+	Glyf 841 -> PSGlyf Name # 590, name= 'afii62884'
+	Glyf 842 -> PSGlyf Name # 591, name= 'afii62885'
+	Glyf 843 -> PSGlyf Name # 592, name= 'afii62886'
+	Glyf 844 -> PSGlyf Name # 593, name= 'afii63846'
+	Glyf 845 -> PSGlyf Name # 594, name= 'afii63849'
+	Glyf 846 -> PSGlyf Name # 595, name= 'uni202A'
+	Glyf 847 -> PSGlyf Name # 596, name= 'uni202B'
+	Glyf 848 -> PSGlyf Name # 597, name= 'uni202D'
+	Glyf 849 -> PSGlyf Name # 598, name= 'uni202E'
+	Glyf 850 -> PSGlyf Name # 599, name= 'uni202C'
+	Glyf 851 -> PSGlyf Name # 600, name= 'uni206E'
+	Glyf 852 -> PSGlyf Name # 601, name= 'uni206F;'
+	Glyf 853 -> PSGlyf Name # 602, name= 'uni206A'
+	Glyf 854 -> PSGlyf Name # 603, name= 'uni206B'
+	Glyf 855 -> PSGlyf Name # 604, name= 'uni206C;'
+	Glyf 856 -> PSGlyf Name # 605, name= 'uni206D'
+	Glyf 857 -> PSGlyf Name # 606, name= 'uniF00A'
+	Glyf 858 -> PSGlyf Name # 607, name= 'uniF00B'
+	Glyf 859 -> PSGlyf Name # 608, name= 'uniF00C'
+	Glyf 860 -> PSGlyf Name # 609, name= 'uniF00D'
+	Glyf 861 -> PSGlyf Name # 610, name= 'uniF00E'
+	Glyf 862 -> Mac Glyph # 189, 'currency'
+	Glyf 863 -> PSGlyf Name # 611, name= 'uniFFFC'
+	Glyf 864 -> PSGlyf Name # 612, name= 'afii63904'
+	Glyf 865 -> PSGlyf Name # 613, name= 'afii63905'
+	Glyf 866 -> PSGlyf Name # 614, name= 'afii63906'
+	Glyf 867 -> PSGlyf Name # 615, name= 'afii63908'
+	Glyf 868 -> PSGlyf Name # 616, name= 'afii63910'
+	Glyf 869 -> PSGlyf Name # 617, name= 'afii63912'
+	Glyf 870 -> PSGlyf Name # 618, name= 'afii62927'
+	Glyf 871 -> PSGlyf Name # 619, name= 'afii63941'
+	Glyf 872 -> PSGlyf Name # 620, name= 'afii62939'
+	Glyf 873 -> PSGlyf Name # 621, name= 'afii63943'
+	Glyf 874 -> PSGlyf Name # 622, name= 'afii62943'
+	Glyf 875 -> PSGlyf Name # 623, name= 'afii62946'
+	Glyf 876 -> PSGlyf Name # 624, name= 'afii63946'
+	Glyf 877 -> PSGlyf Name # 625, name= 'afii62951'
+	Glyf 878 -> PSGlyf Name # 626, name= 'afii63948'
+	Glyf 879 -> PSGlyf Name # 627, name= 'afii62953'
+	Glyf 880 -> PSGlyf Name # 628, name= 'afii63950'
+	Glyf 881 -> PSGlyf Name # 629, name= 'afii63951'
+	Glyf 882 -> PSGlyf Name # 630, name= 'afii63952'
+	Glyf 883 -> PSGlyf Name # 631, name= 'afii63953'
+	Glyf 884 -> PSGlyf Name # 632, name= 'afii63956'
+	Glyf 885 -> PSGlyf Name # 633, name= 'afii63958'
+	Glyf 886 -> PSGlyf Name # 634, name= 'afii63959'
+	Glyf 887 -> PSGlyf Name # 635, name= 'afii63960'
+	Glyf 888 -> PSGlyf Name # 636, name= 'afii63961'
+	Glyf 889 -> PSGlyf Name # 637, name= 'afii64046'
+	Glyf 890 -> PSGlyf Name # 638, name= 'afii64058'
+	Glyf 891 -> PSGlyf Name # 639, name= 'afii64059'
+	Glyf 892 -> PSGlyf Name # 640, name= 'afii64060'
+	Glyf 893 -> PSGlyf Name # 641, name= 'afii64061'
+	Glyf 894 -> PSGlyf Name # 642, name= 'afii62945'
+	Glyf 895 -> PSGlyf Name # 643, name= 'afii64184'
+	Glyf 896 -> PSGlyf Name # 644, name= 'afii52399'
+	Glyf 897 -> PSGlyf Name # 645, name= 'afii52400'
+	Glyf 898 -> PSGlyf Name # 646, name= 'afii62753'
+	Glyf 899 -> PSGlyf Name # 647, name= 'afii57411'
+	Glyf 900 -> PSGlyf Name # 648, name= 'afii62754'
+	Glyf 901 -> PSGlyf Name # 649, name= 'afii57412'
+	Glyf 902 -> PSGlyf Name # 650, name= 'afii62755'
+	Glyf 903 -> PSGlyf Name # 651, name= 'afii57413'
+	Glyf 904 -> PSGlyf Name # 652, name= 'afii62756'
+	Glyf 905 -> PSGlyf Name # 653, name= 'afii57414'
+	Glyf 906 -> PSGlyf Name # 654, name= 'afii62759'
+	Glyf 907 -> PSGlyf Name # 655, name= 'afii62757'
+	Glyf 908 -> PSGlyf Name # 656, name= 'afii62758'
+	Glyf 909 -> PSGlyf Name # 657, name= 'afii57415'
+	Glyf 910 -> PSGlyf Name # 658, name= 'afii62760'
+	Glyf 911 -> PSGlyf Name # 659, name= 'afii57416'
+	Glyf 912 -> PSGlyf Name # 660, name= 'afii62763'
+	Glyf 913 -> PSGlyf Name # 661, name= 'afii62761'
+	Glyf 914 -> PSGlyf Name # 662, name= 'afii62762'
+	Glyf 915 -> PSGlyf Name # 663, name= 'afii57417'
+	Glyf 916 -> PSGlyf Name # 664, name= 'afii62764'
+	Glyf 917 -> PSGlyf Name # 665, name= 'afii57418'
+	Glyf 918 -> PSGlyf Name # 666, name= 'afii62767'
+	Glyf 919 -> PSGlyf Name # 667, name= 'afii62765'
+	Glyf 920 -> PSGlyf Name # 668, name= 'afii62766'
+	Glyf 921 -> PSGlyf Name # 669, name= 'afii57419'
+	Glyf 922 -> PSGlyf Name # 670, name= 'afii62770'
+	Glyf 923 -> PSGlyf Name # 671, name= 'afii62768'
+	Glyf 924 -> PSGlyf Name # 672, name= 'afii62769'
+	Glyf 925 -> PSGlyf Name # 673, name= 'afii57420'
+	Glyf 926 -> PSGlyf Name # 674, name= 'afii62773'
+	Glyf 927 -> PSGlyf Name # 675, name= 'afii62771'
+	Glyf 928 -> PSGlyf Name # 676, name= 'afii62772'
+	Glyf 929 -> PSGlyf Name # 677, name= 'afii57421'
+	Glyf 930 -> PSGlyf Name # 678, name= 'afii62776'
+	Glyf 931 -> PSGlyf Name # 679, name= 'afii62774'
+	Glyf 932 -> PSGlyf Name # 680, name= 'afii62775'
+	Glyf 933 -> PSGlyf Name # 681, name= 'afii57422'
+	Glyf 934 -> PSGlyf Name # 682, name= 'afii62779'
+	Glyf 935 -> PSGlyf Name # 683, name= 'afii62777'
+	Glyf 936 -> PSGlyf Name # 684, name= 'afii62778'
+	Glyf 937 -> PSGlyf Name # 685, name= 'afii57423'
+	Glyf 938 -> PSGlyf Name # 686, name= 'afii62780'
+	Glyf 939 -> PSGlyf Name # 687, name= 'afii57424'
+	Glyf 940 -> PSGlyf Name # 688, name= 'afii62781'
+	Glyf 941 -> PSGlyf Name # 689, name= 'afii57425'
+	Glyf 942 -> PSGlyf Name # 690, name= 'afii62782'
+	Glyf 943 -> PSGlyf Name # 691, name= 'afii57426'
+	Glyf 944 -> PSGlyf Name # 692, name= 'afii62783'
+	Glyf 945 -> PSGlyf Name # 693, name= 'afii57427'
+	Glyf 946 -> PSGlyf Name # 694, name= 'afii62786'
+	Glyf 947 -> PSGlyf Name # 695, name= 'afii62784'
+	Glyf 948 -> PSGlyf Name # 696, name= 'afii62785'
+	Glyf 949 -> PSGlyf Name # 697, name= 'afii57428'
+	Glyf 950 -> PSGlyf Name # 698, name= 'afii62789'
+	Glyf 951 -> PSGlyf Name # 699, name= 'afii62787'
+	Glyf 952 -> PSGlyf Name # 700, name= 'afii62788'
+	Glyf 953 -> PSGlyf Name # 701, name= 'afii57429'
+	Glyf 954 -> PSGlyf Name # 702, name= 'afii62792'
+	Glyf 955 -> PSGlyf Name # 703, name= 'afii62790'
+	Glyf 956 -> PSGlyf Name # 704, name= 'afii62791'
+	Glyf 957 -> PSGlyf Name # 705, name= 'afii57430'
+	Glyf 958 -> PSGlyf Name # 706, name= 'afii62795'
+	Glyf 959 -> PSGlyf Name # 707, name= 'afii62793'
+	Glyf 960 -> PSGlyf Name # 708, name= 'afii62794'
+	Glyf 961 -> PSGlyf Name # 709, name= 'afii57431'
+	Glyf 962 -> PSGlyf Name # 710, name= 'afii62798'
+	Glyf 963 -> PSGlyf Name # 711, name= 'afii62796'
+	Glyf 964 -> PSGlyf Name # 712, name= 'afii62797'
+	Glyf 965 -> PSGlyf Name # 713, name= 'afii57432'
+	Glyf 966 -> PSGlyf Name # 714, name= 'afii62801'
+	Glyf 967 -> PSGlyf Name # 715, name= 'afii62799'
+	Glyf 968 -> PSGlyf Name # 716, name= 'afii62800'
+	Glyf 969 -> PSGlyf Name # 717, name= 'afii57433'
+	Glyf 970 -> PSGlyf Name # 718, name= 'afii62804'
+	Glyf 971 -> PSGlyf Name # 719, name= 'afii62802'
+	Glyf 972 -> PSGlyf Name # 720, name= 'afii62803'
+	Glyf 973 -> PSGlyf Name # 721, name= 'afii57434'
+	Glyf 974 -> PSGlyf Name # 722, name= 'afii62807'
+	Glyf 975 -> PSGlyf Name # 723, name= 'afii62805'
+	Glyf 976 -> PSGlyf Name # 724, name= 'afii62806'
+	Glyf 977 -> PSGlyf Name # 725, name= 'afii57441'
+	Glyf 978 -> PSGlyf Name # 726, name= 'afii62810'
+	Glyf 979 -> PSGlyf Name # 727, name= 'afii62808'
+	Glyf 980 -> PSGlyf Name # 728, name= 'afii62809'
+	Glyf 981 -> PSGlyf Name # 729, name= 'afii57442'
+	Glyf 982 -> PSGlyf Name # 730, name= 'afii62813'
+	Glyf 983 -> PSGlyf Name # 731, name= 'afii62811'
+	Glyf 984 -> PSGlyf Name # 732, name= 'afii62812'
+	Glyf 985 -> PSGlyf Name # 733, name= 'afii57443'
+	Glyf 986 -> PSGlyf Name # 734, name= 'afii62816'
+	Glyf 987 -> PSGlyf Name # 735, name= 'afii57410'
+	Glyf 988 -> PSGlyf Name # 736, name= 'afii62815'
+	Glyf 989 -> PSGlyf Name # 737, name= 'afii57444'
+	Glyf 990 -> PSGlyf Name # 738, name= 'afii62819'
+	Glyf 991 -> PSGlyf Name # 739, name= 'afii62817'
+	Glyf 992 -> PSGlyf Name # 740, name= 'afii62818'
+	Glyf 993 -> PSGlyf Name # 741, name= 'afii57445'
+	Glyf 994 -> PSGlyf Name # 742, name= 'afii62822'
+	Glyf 995 -> PSGlyf Name # 743, name= 'afii62820'
+	Glyf 996 -> PSGlyf Name # 744, name= 'afii62821'
+	Glyf 997 -> PSGlyf Name # 745, name= 'afii57446'
+	Glyf 998 -> PSGlyf Name # 746, name= 'afii62825'
+	Glyf 999 -> PSGlyf Name # 747, name= 'afii62823'
+	Glyf 1000 -> PSGlyf Name # 748, name= 'afii62824'
+	Glyf 1001 -> PSGlyf Name # 749, name= 'afii57447'
+	Glyf 1002 -> PSGlyf Name # 750, name= 'afii62828'
+	Glyf 1003 -> PSGlyf Name # 751, name= 'afii57470'
+	Glyf 1004 -> PSGlyf Name # 752, name= 'afii62827'
+	Glyf 1005 -> PSGlyf Name # 753, name= 'afii57448'
+	Glyf 1006 -> PSGlyf Name # 754, name= 'afii62829'
+	Glyf 1007 -> PSGlyf Name # 755, name= 'afii57449'
+	Glyf 1008 -> PSGlyf Name # 756, name= 'afii62830'
+	Glyf 1009 -> PSGlyf Name # 757, name= 'afii57450'
+	Glyf 1010 -> PSGlyf Name # 758, name= 'afii62833'
+	Glyf 1011 -> PSGlyf Name # 759, name= 'afii62831'
+	Glyf 1012 -> PSGlyf Name # 760, name= 'afii62832'
+	Glyf 1013 -> PSGlyf Name # 761, name= 'afii62834'
+	Glyf 1014 -> PSGlyf Name # 762, name= 'afii62835'
+	Glyf 1015 -> PSGlyf Name # 763, name= 'afii62836'
+	Glyf 1016 -> PSGlyf Name # 764, name= 'afii62837'
+	Glyf 1017 -> PSGlyf Name # 765, name= 'afii62838'
+	Glyf 1018 -> PSGlyf Name # 766, name= 'afii62839'
+	Glyf 1019 -> PSGlyf Name # 767, name= 'afii62840'
+	Glyf 1020 -> PSGlyf Name # 768, name= 'afii62841'
+	Glyf 1021 -> PSGlyf Name # 769, name= 'glyph1021'
+	Glyf 1022 -> PSGlyf Name # 770, name= 'afii57543-2'
+	Glyf 1023 -> PSGlyf Name # 771, name= 'afii57454-2'
+	Glyf 1024 -> PSGlyf Name # 772, name= 'afii57451-2'
+	Glyf 1025 -> PSGlyf Name # 773, name= 'glyph1025'
+	Glyf 1026 -> PSGlyf Name # 774, name= 'glyph1026'
+	Glyf 1027 -> PSGlyf Name # 775, name= 'afii57471-2'
+	Glyf 1028 -> PSGlyf Name # 776, name= 'afii57458-2'
+	Glyf 1029 -> PSGlyf Name # 777, name= 'afii57457-2'
+	Glyf 1030 -> PSGlyf Name # 778, name= 'afii57494-2'
+	Glyf 1031 -> PSGlyf Name # 779, name= 'afii57459-2'
+	Glyf 1032 -> PSGlyf Name # 780, name= 'afii57455-2'
+	Glyf 1033 -> PSGlyf Name # 781, name= 'afii57452-2'
+	Glyf 1034 -> PSGlyf Name # 782, name= 'glyph1034'
+	Glyf 1035 -> PSGlyf Name # 783, name= 'glyph1035'
+	Glyf 1036 -> PSGlyf Name # 784, name= 'glyph1036'
+	Glyf 1037 -> PSGlyf Name # 785, name= 'afii62884-2'
+	Glyf 1038 -> PSGlyf Name # 786, name= 'afii62881-2'
+	Glyf 1039 -> PSGlyf Name # 787, name= 'afii62886-2'
+	Glyf 1040 -> PSGlyf Name # 788, name= 'afii62883-2'
+	Glyf 1041 -> PSGlyf Name # 789, name= 'afii62885-2'
+	Glyf 1042 -> PSGlyf Name # 790, name= 'afii62882-2'
+	Glyf 1043 -> PSGlyf Name # 791, name= 'afii57504-2'
+	Glyf 1044 -> PSGlyf Name # 792, name= 'afii57456-2'
+	Glyf 1045 -> PSGlyf Name # 793, name= 'afii57453-2'
+	Glyf 1046 -> PSGlyf Name # 794, name= 'glyph1046'
+	Glyf 1047 -> PSGlyf Name # 795, name= 'glyph1047'
+	Glyf 1048 -> PSGlyf Name # 796, name= 'afii57543-3'
+	Glyf 1049 -> PSGlyf Name # 797, name= 'afii57454-3'
+	Glyf 1050 -> PSGlyf Name # 798, name= 'afii57451-3'
+	Glyf 1051 -> PSGlyf Name # 799, name= 'glyph1051'
+	Glyf 1052 -> PSGlyf Name # 800, name= 'glyph1052'
+	Glyf 1053 -> PSGlyf Name # 801, name= 'afii57471-3'
+	Glyf 1054 -> PSGlyf Name # 802, name= 'afii57458-3'
+	Glyf 1055 -> PSGlyf Name # 803, name= 'afii57457-3'
+	Glyf 1056 -> PSGlyf Name # 804, name= 'afii57494-3'
+	Glyf 1057 -> PSGlyf Name # 805, name= 'afii57459-3'
+	Glyf 1058 -> PSGlyf Name # 806, name= 'afii57455-3'
+	Glyf 1059 -> PSGlyf Name # 807, name= 'afii57452-3'
+	Glyf 1060 -> PSGlyf Name # 808, name= 'glyph1060'
+	Glyf 1061 -> PSGlyf Name # 809, name= 'glyph1061'
+	Glyf 1062 -> PSGlyf Name # 810, name= 'glyph1062'
+	Glyf 1063 -> PSGlyf Name # 811, name= 'afii62884-3'
+	Glyf 1064 -> PSGlyf Name # 812, name= 'afii62881-3'
+	Glyf 1065 -> PSGlyf Name # 813, name= 'afii62886-3'
+	Glyf 1066 -> PSGlyf Name # 814, name= 'afii62883-3'
+	Glyf 1067 -> PSGlyf Name # 815, name= 'afii62885-3'
+	Glyf 1068 -> PSGlyf Name # 816, name= 'afii62882-3'
+	Glyf 1069 -> PSGlyf Name # 817, name= 'afii57504-3'
+	Glyf 1070 -> PSGlyf Name # 818, name= 'afii57456-3'
+	Glyf 1071 -> PSGlyf Name # 819, name= 'afii57453-3'
+	Glyf 1072 -> PSGlyf Name # 820, name= 'glyph1072'
+	Glyf 1073 -> PSGlyf Name # 821, name= 'glyph1073'
+	Glyf 1074 -> PSGlyf Name # 822, name= 'afii57543-4'
+	Glyf 1075 -> PSGlyf Name # 823, name= 'afii57454-4'
+	Glyf 1076 -> PSGlyf Name # 824, name= 'afii57451-4'
+	Glyf 1077 -> PSGlyf Name # 825, name= 'glyph1077'
+	Glyf 1078 -> PSGlyf Name # 826, name= 'glyph1078'
+	Glyf 1079 -> PSGlyf Name # 827, name= 'afii57471-4'
+	Glyf 1080 -> PSGlyf Name # 828, name= 'afii57458-4'
+	Glyf 1081 -> PSGlyf Name # 829, name= 'afii57457-4'
+	Glyf 1082 -> PSGlyf Name # 830, name= 'afii57494-4'
+	Glyf 1083 -> PSGlyf Name # 831, name= 'afii57459-4'
+	Glyf 1084 -> PSGlyf Name # 832, name= 'afii57455-4'
+	Glyf 1085 -> PSGlyf Name # 833, name= 'afii57452-4'
+	Glyf 1086 -> PSGlyf Name # 834, name= 'glyph1086'
+	Glyf 1087 -> PSGlyf Name # 835, name= 'glyph1087'
+	Glyf 1088 -> PSGlyf Name # 836, name= 'glyph1088'
+	Glyf 1089 -> PSGlyf Name # 837, name= 'afii62884-4'
+	Glyf 1090 -> PSGlyf Name # 838, name= 'afii62881-4'
+	Glyf 1091 -> PSGlyf Name # 839, name= 'afii62886-4'
+	Glyf 1092 -> PSGlyf Name # 840, name= 'afii62883-4'
+	Glyf 1093 -> PSGlyf Name # 841, name= 'afii62885-4'
+	Glyf 1094 -> PSGlyf Name # 842, name= 'afii62882-4'
+	Glyf 1095 -> PSGlyf Name # 843, name= 'afii57504-4'
+	Glyf 1096 -> PSGlyf Name # 844, name= 'afii57456-4'
+	Glyf 1097 -> PSGlyf Name # 845, name= 'afii57453-4'
+	Glyf 1098 -> PSGlyf Name # 846, name= 'glyph1098'
+	Glyf 1099 -> PSGlyf Name # 847, name= 'glyph1099'
+	Glyf 1100 -> PSGlyf Name # 848, name= 'glyph1100'
+	Glyf 1101 -> PSGlyf Name # 849, name= 'glyph1101'
+	Glyf 1102 -> PSGlyf Name # 850, name= 'glyph1102'
+	Glyf 1103 -> PSGlyf Name # 851, name= 'glyph1103'
+	Glyf 1104 -> PSGlyf Name # 852, name= 'glyph1104'
+	Glyf 1105 -> PSGlyf Name # 853, name= 'glyph1105'
+	Glyf 1106 -> PSGlyf Name # 854, name= 'glyph1106'
+	Glyf 1107 -> PSGlyf Name # 855, name= 'glyph1107'
+	Glyf 1108 -> PSGlyf Name # 856, name= 'glyph1108'
+	Glyf 1109 -> PSGlyf Name # 857, name= 'glyph1109'
+	Glyf 1110 -> PSGlyf Name # 858, name= 'glyph1110'
+	Glyf 1111 -> PSGlyf Name # 859, name= 'glyph1111'
+	Glyf 1112 -> PSGlyf Name # 860, name= 'glyph1112'
+	Glyf 1113 -> PSGlyf Name # 861, name= 'glyph1113'
+	Glyf 1114 -> PSGlyf Name # 862, name= 'glyph1114'
+	Glyf 1115 -> PSGlyf Name # 863, name= 'glyph1115'
+	Glyf 1116 -> PSGlyf Name # 864, name= 'glyph1116'
+	Glyf 1117 -> PSGlyf Name # 865, name= 'glyph1117'
+	Glyf 1118 -> PSGlyf Name # 866, name= 'glyph1118'
+	Glyf 1119 -> PSGlyf Name # 867, name= 'glyph1119'
+	Glyf 1120 -> PSGlyf Name # 868, name= 'glyph1120'
+	Glyf 1121 -> PSGlyf Name # 869, name= 'glyph1121'
+	Glyf 1122 -> PSGlyf Name # 870, name= 'glyph1122'
+	Glyf 1123 -> PSGlyf Name # 871, name= 'glyph1123'
+	Glyf 1124 -> PSGlyf Name # 872, name= 'glyph1124'
+	Glyf 1125 -> PSGlyf Name # 873, name= 'glyph1125'
+	Glyf 1126 -> PSGlyf Name # 874, name= 'glyph1126'
+	Glyf 1127 -> PSGlyf Name # 875, name= 'afii57440-2'
+	Glyf 1128 -> PSGlyf Name # 876, name= 'afii57440-3'
+	Glyf 1129 -> PSGlyf Name # 877, name= 'afii57440-4'
+	Glyf 1130 -> PSGlyf Name # 878, name= 'Ohorn'
+	Glyf 1131 -> PSGlyf Name # 879, name= 'ohorn'
+	Glyf 1132 -> PSGlyf Name # 880, name= 'Uhorn'
+	Glyf 1133 -> PSGlyf Name # 881, name= 'uhorn'
+	Glyf 1134 -> Mac Glyph # 0, '.notdef'
+	Glyf 1135 -> Mac Glyph # 0, '.notdef'
+	Glyf 1136 -> Mac Glyph # 0, '.notdef'
+	Glyf 1137 -> PSGlyf Name # 882, name= 'f006'
+	Glyf 1138 -> PSGlyf Name # 883, name= 'f007'
+	Glyf 1139 -> PSGlyf Name # 884, name= 'f009'
+	Glyf 1140 -> PSGlyf Name # 885, name= 'combininghookabove'
+	Glyf 1141 -> PSGlyf Name # 886, name= 'f010'
+	Glyf 1142 -> PSGlyf Name # 887, name= 'f013'
+	Glyf 1143 -> PSGlyf Name # 888, name= 'f011'
+	Glyf 1144 -> PSGlyf Name # 889, name= 'f01c'
+	Glyf 1145 -> PSGlyf Name # 890, name= 'f015'
+	Glyf 1146 -> PSGlyf Name # 891, name= 'combiningtildeaccent'
+	Glyf 1147 -> Mac Glyph # 0, '.notdef'
+	Glyf 1148 -> Mac Glyph # 0, '.notdef'
+	Glyf 1149 -> PSGlyf Name # 892, name= 'f02c'
+	Glyf 1150 -> PSGlyf Name # 893, name= 'dongsign'
+	Glyf 1151 -> PSGlyf Name # 894, name= 'onethird'
+	Glyf 1152 -> PSGlyf Name # 895, name= 'twothirds'
+	Glyf 1153 -> PSGlyf Name # 896, name= 'f008'
+	Glyf 1154 -> Mac Glyph # 0, '.notdef'
+	Glyf 1155 -> Mac Glyph # 0, '.notdef'
+	Glyf 1156 -> PSGlyf Name # 897, name= 'f00f'
+	Glyf 1157 -> PSGlyf Name # 898, name= 'f012'
+	Glyf 1158 -> PSGlyf Name # 899, name= 'f014'
+	Glyf 1159 -> PSGlyf Name # 900, name= 'f016'
+	Glyf 1160 -> PSGlyf Name # 901, name= 'f017'
+	Glyf 1161 -> PSGlyf Name # 902, name= 'f018'
+	Glyf 1162 -> PSGlyf Name # 903, name= 'f019'
+	Glyf 1163 -> PSGlyf Name # 904, name= 'f01a'
+	Glyf 1164 -> PSGlyf Name # 905, name= 'f01b'
+	Glyf 1165 -> PSGlyf Name # 906, name= 'f01e'
+	Glyf 1166 -> PSGlyf Name # 907, name= 'f01f'
+	Glyf 1167 -> PSGlyf Name # 908, name= 'f020'
+	Glyf 1168 -> PSGlyf Name # 909, name= 'f021'
+	Glyf 1169 -> PSGlyf Name # 910, name= 'f022'
+	Glyf 1170 -> PSGlyf Name # 911, name= 'combininggraveaccent'
+	Glyf 1171 -> PSGlyf Name # 912, name= 'combiningacuteaccent'
+	Glyf 1172 -> PSGlyf Name # 913, name= 'f01d'
+	Glyf 1173 -> PSGlyf Name # 914, name= 'combiningdotbelow'
+	Glyf 1174 -> PSGlyf Name # 915, name= 'f023'
+	Glyf 1175 -> PSGlyf Name # 916, name= 'f029'
+	Glyf 1176 -> PSGlyf Name # 917, name= 'f02a'
+	Glyf 1177 -> PSGlyf Name # 918, name= 'f02b'
+	Glyf 1178 -> PSGlyf Name # 919, name= 'f024'
+	Glyf 1179 -> PSGlyf Name # 920, name= 'f025'
+	Glyf 1180 -> PSGlyf Name # 921, name= 'f026'
+	Glyf 1181 -> PSGlyf Name # 922, name= 'f027'
+	Glyf 1182 -> PSGlyf Name # 923, name= 'f028'
+	Glyf 1183 -> PSGlyf Name # 924, name= 'f02d'
+	Glyf 1184 -> PSGlyf Name # 925, name= 'f02e'
+	Glyf 1185 -> PSGlyf Name # 926, name= 'f02f'
+	Glyf 1186 -> PSGlyf Name # 927, name= 'f030'
+	Glyf 1187 -> PSGlyf Name # 928, name= 'f031'
+	Glyf 1188 -> PSGlyf Name # 929, name= 'Adotbelow'
+	Glyf 1189 -> PSGlyf Name # 930, name= 'adotbelow'
+	Glyf 1190 -> PSGlyf Name # 931, name= 'Ahookabove'
+	Glyf 1191 -> PSGlyf Name # 932, name= 'ahookabove'
+	Glyf 1192 -> PSGlyf Name # 933, name= 'Acircumflexacute'
+	Glyf 1193 -> PSGlyf Name # 934, name= 'acircumflexacute'
+	Glyf 1194 -> PSGlyf Name # 935, name= 'Acircumflexgrave'
+	Glyf 1195 -> PSGlyf Name # 936, name= 'acircumflexgrave'
+	Glyf 1196 -> PSGlyf Name # 937, name= 'Acircumflexhookabove'
+	Glyf 1197 -> PSGlyf Name # 938, name= 'acircumflexhookabove'
+	Glyf 1198 -> PSGlyf Name # 939, name= 'Acircumflextilde'
+	Glyf 1199 -> PSGlyf Name # 940, name= 'acircumflextilde'
+	Glyf 1200 -> PSGlyf Name # 941, name= 'Acircumflexdotbelow'
+	Glyf 1201 -> PSGlyf Name # 942, name= 'acircumflexdotbelow'
+	Glyf 1202 -> PSGlyf Name # 943, name= 'Abreveacute'
+	Glyf 1203 -> PSGlyf Name # 944, name= 'abreveacute'
+	Glyf 1204 -> PSGlyf Name # 945, name= 'Abrevegrave'
+	Glyf 1205 -> PSGlyf Name # 946, name= 'abrevegrave'
+	Glyf 1206 -> PSGlyf Name # 947, name= 'Abrevehookabove'
+	Glyf 1207 -> PSGlyf Name # 948, name= 'abrevehookabove'
+	Glyf 1208 -> PSGlyf Name # 949, name= 'Abrevetilde'
+	Glyf 1209 -> PSGlyf Name # 950, name= 'abrevetilde'
+	Glyf 1210 -> PSGlyf Name # 951, name= 'Abrevedotbelow'
+	Glyf 1211 -> PSGlyf Name # 952, name= 'abrevedotbelow'
+	Glyf 1212 -> PSGlyf Name # 953, name= 'Edotbelow'
+	Glyf 1213 -> PSGlyf Name # 954, name= 'edotbelow'
+	Glyf 1214 -> PSGlyf Name # 955, name= 'Ehookabove'
+	Glyf 1215 -> PSGlyf Name # 956, name= 'ehookabove'
+	Glyf 1216 -> PSGlyf Name # 957, name= 'Etilde'
+	Glyf 1217 -> PSGlyf Name # 958, name= 'etilde'
+	Glyf 1218 -> PSGlyf Name # 959, name= 'Ecircumflexacute'
+	Glyf 1219 -> PSGlyf Name # 960, name= 'ecircumflexacute'
+	Glyf 1220 -> PSGlyf Name # 961, name= 'Ecircumflexgrave'
+	Glyf 1221 -> PSGlyf Name # 962, name= 'ecircumflexgrave'
+	Glyf 1222 -> PSGlyf Name # 963, name= 'Ecircumflexhookabove'
+	Glyf 1223 -> PSGlyf Name # 964, name= 'ecircumflexhookabove'
+	Glyf 1224 -> PSGlyf Name # 965, name= 'Ecircumflextilde'
+	Glyf 1225 -> PSGlyf Name # 966, name= 'ecircumflextilde'
+	Glyf 1226 -> PSGlyf Name # 967, name= 'Ecircumflexdotbelow'
+	Glyf 1227 -> PSGlyf Name # 968, name= 'ecircumflexdotbelow'
+	Glyf 1228 -> PSGlyf Name # 969, name= 'Ihookabove'
+	Glyf 1229 -> PSGlyf Name # 970, name= 'ihookabove'
+	Glyf 1230 -> PSGlyf Name # 971, name= 'Idotbelow'
+	Glyf 1231 -> PSGlyf Name # 972, name= 'idotbelow'
+	Glyf 1232 -> PSGlyf Name # 973, name= 'Odotbelow'
+	Glyf 1233 -> PSGlyf Name # 974, name= 'odotbelow'
+	Glyf 1234 -> PSGlyf Name # 975, name= 'Ohookabove'
+	Glyf 1235 -> PSGlyf Name # 976, name= 'ohookabove'
+	Glyf 1236 -> PSGlyf Name # 977, name= 'Ocircumflexacute'
+	Glyf 1237 -> PSGlyf Name # 978, name= 'ocircumflexacute'
+	Glyf 1238 -> PSGlyf Name # 979, name= 'Ocircumflexgrave'
+	Glyf 1239 -> PSGlyf Name # 980, name= 'ocircumflexgrave'
+	Glyf 1240 -> PSGlyf Name # 981, name= 'Ocircumflexhookabove'
+	Glyf 1241 -> PSGlyf Name # 982, name= 'ocircumflexhookabove'
+	Glyf 1242 -> PSGlyf Name # 983, name= 'Ocircumflextilde'
+	Glyf 1243 -> PSGlyf Name # 984, name= 'ocircumflextilde'
+	Glyf 1244 -> PSGlyf Name # 985, name= 'Ocircumflexdotbelow'
+	Glyf 1245 -> PSGlyf Name # 986, name= 'ocircumflexdotbelow'
+	Glyf 1246 -> PSGlyf Name # 987, name= 'Ohornacute'
+	Glyf 1247 -> PSGlyf Name # 988, name= 'ohornacute'
+	Glyf 1248 -> PSGlyf Name # 989, name= 'Ohorngrave'
+	Glyf 1249 -> PSGlyf Name # 990, name= 'ohorngrave'
+	Glyf 1250 -> PSGlyf Name # 991, name= 'Ohornhookabove'
+	Glyf 1251 -> PSGlyf Name # 992, name= 'ohornhookabove'
+	Glyf 1252 -> PSGlyf Name # 993, name= 'Ohorntilde'
+	Glyf 1253 -> PSGlyf Name # 994, name= 'ohorntilde'
+	Glyf 1254 -> PSGlyf Name # 995, name= 'Ohorndotbelow'
+	Glyf 1255 -> PSGlyf Name # 996, name= 'ohorndotbelow'
+	Glyf 1256 -> PSGlyf Name # 997, name= 'Udotbelow'
+	Glyf 1257 -> PSGlyf Name # 998, name= 'udotbelow'
+	Glyf 1258 -> PSGlyf Name # 999, name= 'Uhookabove'
+	Glyf 1259 -> PSGlyf Name # 1000, name= 'uhookabove'
+	Glyf 1260 -> PSGlyf Name # 1001, name= 'Uhornacute'
+	Glyf 1261 -> PSGlyf Name # 1002, name= 'uhornacute'
+	Glyf 1262 -> PSGlyf Name # 1003, name= 'Uhorngrave'
+	Glyf 1263 -> PSGlyf Name # 1004, name= 'uhorngrave'
+	Glyf 1264 -> PSGlyf Name # 1005, name= 'Uhornhookabove'
+	Glyf 1265 -> PSGlyf Name # 1006, name= 'uhornhookabove'
+	Glyf 1266 -> PSGlyf Name # 1007, name= 'Uhorntilde'
+	Glyf 1267 -> PSGlyf Name # 1008, name= 'uhorntilde'
+	Glyf 1268 -> PSGlyf Name # 1009, name= 'Uhorndotbelow'
+	Glyf 1269 -> PSGlyf Name # 1010, name= 'uhorndotbelow'
+	Glyf 1270 -> PSGlyf Name # 1011, name= 'Ydotbelow'
+	Glyf 1271 -> PSGlyf Name # 1012, name= 'ydotbelow'
+	Glyf 1272 -> PSGlyf Name # 1013, name= 'Yhookabove'
+	Glyf 1273 -> PSGlyf Name # 1014, name= 'yhookabove'
+	Glyf 1274 -> PSGlyf Name # 1015, name= 'Ytilde'
+	Glyf 1275 -> PSGlyf Name # 1016, name= 'ytilde'
+	Glyf 1276 -> PSGlyf Name # 1017, name= 'uni01CD'
+	Glyf 1277 -> PSGlyf Name # 1018, name= 'uni01CE'
+	Glyf 1278 -> PSGlyf Name # 1019, name= 'uni01CF'
+	Glyf 1279 -> PSGlyf Name # 1020, name= 'uni01D0'
+	Glyf 1280 -> PSGlyf Name # 1021, name= 'uni01D1'
+	Glyf 1281 -> PSGlyf Name # 1022, name= 'uni01D2'
+	Glyf 1282 -> PSGlyf Name # 1023, name= 'uni01D3'
+	Glyf 1283 -> PSGlyf Name # 1024, name= 'uni01D4'
+	Glyf 1284 -> PSGlyf Name # 1025, name= 'uni01D5'
+	Glyf 1285 -> PSGlyf Name # 1026, name= 'uni01D6'
+	Glyf 1286 -> PSGlyf Name # 1027, name= 'uni01D7'
+	Glyf 1287 -> PSGlyf Name # 1028, name= 'uni01D8'
+	Glyf 1288 -> PSGlyf Name # 1029, name= 'uni01D9'
+	Glyf 1289 -> PSGlyf Name # 1030, name= 'uni01DA'
+	Glyf 1290 -> PSGlyf Name # 1031, name= 'uni01DB'
+	Glyf 1291 -> PSGlyf Name # 1032, name= 'uni01DC'
+	Glyf 1292 -> Mac Glyph # 0, '.notdef'
+	Glyf 1293 -> Mac Glyph # 0, '.notdef'
+	Glyf 1294 -> Mac Glyph # 0, '.notdef'
+	Glyf 1295 -> Mac Glyph # 0, '.notdef'
+	Glyf 1296 -> PSGlyf Name # 1033, name= 'uni0492'
+	Glyf 1297 -> PSGlyf Name # 1034, name= 'uni0493'
+	Glyf 1298 -> PSGlyf Name # 1035, name= 'uni0496'
+	Glyf 1299 -> PSGlyf Name # 1036, name= 'uni0497'
+	Glyf 1300 -> PSGlyf Name # 1037, name= 'uni049a'
+	Glyf 1301 -> PSGlyf Name # 1038, name= 'uni049b'
+	Glyf 1302 -> PSGlyf Name # 1039, name= 'uni049c'
+	Glyf 1303 -> PSGlyf Name # 1040, name= 'uni049d'
+	Glyf 1304 -> PSGlyf Name # 1041, name= 'uni04a2'
+	Glyf 1305 -> PSGlyf Name # 1042, name= 'uni04a3'
+	Glyf 1306 -> PSGlyf Name # 1043, name= 'uni04ae'
+	Glyf 1307 -> PSGlyf Name # 1044, name= 'uni04af'
+	Glyf 1308 -> PSGlyf Name # 1045, name= 'uni04b0'
+	Glyf 1309 -> PSGlyf Name # 1046, name= 'uni04b1'
+	Glyf 1310 -> PSGlyf Name # 1047, name= 'uni04b2'
+	Glyf 1311 -> PSGlyf Name # 1048, name= 'uni04b3'
+	Glyf 1312 -> PSGlyf Name # 1049, name= 'uni04b8'
+	Glyf 1313 -> PSGlyf Name # 1050, name= 'uni04b9'
+	Glyf 1314 -> PSGlyf Name # 1051, name= 'uni04ba'
+	Glyf 1315 -> PSGlyf Name # 1052, name= 'uni04bb'
+	Glyf 1316 -> PSGlyf Name # 1053, name= 'uni018f'
+	Glyf 1317 -> PSGlyf Name # 1054, name= 'uni0259'
+	Glyf 1318 -> PSGlyf Name # 1055, name= 'uni04e8'
+	Glyf 1319 -> PSGlyf Name # 1056, name= 'uni04e9'
+
+	Full List of PSGlyf Names
+	-------------------------
+	PSGlyf Name #   1: .null
+	PSGlyf Name #   2: nonmarkingreturn
+	PSGlyf Name #   3: mu1
+	PSGlyf Name #   4: pi1
+	PSGlyf Name #   5: Ohm
+	PSGlyf Name #   6: Euro
+	PSGlyf Name #   7: dmacron
+	PSGlyf Name #   8: overscore
+	PSGlyf Name #   9: middot
+	PSGlyf Name #  10: Abreve
+	PSGlyf Name #  11: abreve
+	PSGlyf Name #  12: Aogonek
+	PSGlyf Name #  13: aogonek
+	PSGlyf Name #  14: Dcaron
+	PSGlyf Name #  15: dcaron
+	PSGlyf Name #  16: Dslash
+	PSGlyf Name #  17: Eogonek
+	PSGlyf Name #  18: eogonek
+	PSGlyf Name #  19: Ecaron
+	PSGlyf Name #  20: ecaron
+	PSGlyf Name #  21: Lacute
+	PSGlyf Name #  22: lacute
+	PSGlyf Name #  23: Lcaron
+	PSGlyf Name #  24: lcaron
+	PSGlyf Name #  25: Ldot
+	PSGlyf Name #  26: ldot
+	PSGlyf Name #  27: Nacute
+	PSGlyf Name #  28: nacute
+	PSGlyf Name #  29: Ncaron
+	PSGlyf Name #  30: ncaron
+	PSGlyf Name #  31: Odblacute
+	PSGlyf Name #  32: odblacute
+	PSGlyf Name #  33: Racute
+	PSGlyf Name #  34: racute
+	PSGlyf Name #  35: Rcaron
+	PSGlyf Name #  36: rcaron
+	PSGlyf Name #  37: Sacute
+	PSGlyf Name #  38: sacute
+	PSGlyf Name #  39: Tcedilla
+	PSGlyf Name #  40: tcedilla
+	PSGlyf Name #  41: Tcaron
+	PSGlyf Name #  42: tcaron
+	PSGlyf Name #  43: Uring
+	PSGlyf Name #  44: uring
+	PSGlyf Name #  45: Udblacute
+	PSGlyf Name #  46: udblacute
+	PSGlyf Name #  47: Zacute
+	PSGlyf Name #  48: zacute
+	PSGlyf Name #  49: Zdot
+	PSGlyf Name #  50: zdot
+	PSGlyf Name #  51: Gamma
+	PSGlyf Name #  52: Theta
+	PSGlyf Name #  53: Phi
+	PSGlyf Name #  54: alpha
+	PSGlyf Name #  55: delta
+	PSGlyf Name #  56: epsilon
+	PSGlyf Name #  57: sigma
+	PSGlyf Name #  58: tau
+	PSGlyf Name #  59: phi
+	PSGlyf Name #  60: underscoredbl
+	PSGlyf Name #  61: exclamdbl
+	PSGlyf Name #  62: nsuperior
+	PSGlyf Name #  63: peseta
+	PSGlyf Name #  64: arrowleft
+	PSGlyf Name #  65: arrowup
+	PSGlyf Name #  66: arrowright
+	PSGlyf Name #  67: arrowdown
+	PSGlyf Name #  68: arrowboth
+	PSGlyf Name #  69: arrowupdn
+	PSGlyf Name #  70: arrowupdnbse
+	PSGlyf Name #  71: orthogonal
+	PSGlyf Name #  72: intersection
+	PSGlyf Name #  73: equivalence
+	PSGlyf Name #  74: house
+	PSGlyf Name #  75: revlogicalnot
+	PSGlyf Name #  76: integraltp
+	PSGlyf Name #  77: integralbt
+	PSGlyf Name #  78: SF100000
+	PSGlyf Name #  79: SF110000
+	PSGlyf Name #  80: SF010000
+	PSGlyf Name #  81: SF030000
+	PSGlyf Name #  82: SF020000
+	PSGlyf Name #  83: SF040000
+	PSGlyf Name #  84: SF080000
+	PSGlyf Name #  85: SF090000
+	PSGlyf Name #  86: SF060000
+	PSGlyf Name #  87: SF070000
+	PSGlyf Name #  88: SF050000
+	PSGlyf Name #  89: SF430000
+	PSGlyf Name #  90: SF240000
+	PSGlyf Name #  91: SF510000
+	PSGlyf Name #  92: SF520000
+	PSGlyf Name #  93: SF390000
+	PSGlyf Name #  94: SF220000
+	PSGlyf Name #  95: SF210000
+	PSGlyf Name #  96: SF250000
+	PSGlyf Name #  97: SF500000
+	PSGlyf Name #  98: SF490000
+	PSGlyf Name #  99: SF380000
+	PSGlyf Name # 100: SF280000
+	PSGlyf Name # 101: SF270000
+	PSGlyf Name # 102: SF260000
+	PSGlyf Name # 103: SF360000
+	PSGlyf Name # 104: SF370000
+	PSGlyf Name # 105: SF420000
+	PSGlyf Name # 106: SF190000
+	PSGlyf Name # 107: SF200000
+	PSGlyf Name # 108: SF230000
+	PSGlyf Name # 109: SF470000
+	PSGlyf Name # 110: SF480000
+	PSGlyf Name # 111: SF410000
+	PSGlyf Name # 112: SF450000
+	PSGlyf Name # 113: SF460000
+	PSGlyf Name # 114: SF400000
+	PSGlyf Name # 115: SF540000
+	PSGlyf Name # 116: SF530000
+	PSGlyf Name # 117: SF440000
+	PSGlyf Name # 118: upblock
+	PSGlyf Name # 119: dnblock
+	PSGlyf Name # 120: block
+	PSGlyf Name # 121: lfblock
+	PSGlyf Name # 122: rtblock
+	PSGlyf Name # 123: ltshade
+	PSGlyf Name # 124: shade
+	PSGlyf Name # 125: dkshade
+	PSGlyf Name # 126: filledbox
+	PSGlyf Name # 127: filledrect
+	PSGlyf Name # 128: triagup
+	PSGlyf Name # 129: triagrt
+	PSGlyf Name # 130: triagdn
+	PSGlyf Name # 131: triaglf
+	PSGlyf Name # 132: circle
+	PSGlyf Name # 133: invbullet
+	PSGlyf Name # 134: invcircle
+	PSGlyf Name # 135: smileface
+	PSGlyf Name # 136: invsmileface
+	PSGlyf Name # 137: sun
+	PSGlyf Name # 138: female
+	PSGlyf Name # 139: male
+	PSGlyf Name # 140: spade
+	PSGlyf Name # 141: club
+	PSGlyf Name # 142: heart
+	PSGlyf Name # 143: diamond
+	PSGlyf Name # 144: musicalnote
+	PSGlyf Name # 145: musicalnotedbl
+	PSGlyf Name # 146: IJ
+	PSGlyf Name # 147: ij
+	PSGlyf Name # 148: napostrophe
+	PSGlyf Name # 149: minute
+	PSGlyf Name # 150: second
+	PSGlyf Name # 151: afii61248
+	PSGlyf Name # 152: afii61289
+	PSGlyf Name # 153: H22073
+	PSGlyf Name # 154: H18543
+	PSGlyf Name # 155: H18551
+	PSGlyf Name # 156: H18533
+	PSGlyf Name # 157: openbullet
+	PSGlyf Name # 158: Amacron
+	PSGlyf Name # 159: amacron
+	PSGlyf Name # 160: Ccircumflex
+	PSGlyf Name # 161: ccircumflex
+	PSGlyf Name # 162: Cdot
+	PSGlyf Name # 163: cdot
+	PSGlyf Name # 164: Emacron
+	PSGlyf Name # 165: emacron
+	PSGlyf Name # 166: Ebreve
+	PSGlyf Name # 167: ebreve
+	PSGlyf Name # 168: Edot
+	PSGlyf Name # 169: edot
+	PSGlyf Name # 170: Gcircumflex
+	PSGlyf Name # 171: gcircumflex
+	PSGlyf Name # 172: Gdot
+	PSGlyf Name # 173: gdot
+	PSGlyf Name # 174: Gcedilla
+	PSGlyf Name # 175: gcedilla
+	PSGlyf Name # 176: Hcircumflex
+	PSGlyf Name # 177: hcircumflex
+	PSGlyf Name # 178: Hbar
+	PSGlyf Name # 179: hbar
+	PSGlyf Name # 180: Itilde
+	PSGlyf Name # 181: itilde
+	PSGlyf Name # 182: Imacron
+	PSGlyf Name # 183: imacron
+	PSGlyf Name # 184: Ibreve
+	PSGlyf Name # 185: ibreve
+	PSGlyf Name # 186: Iogonek
+	PSGlyf Name # 187: iogonek
+	PSGlyf Name # 188: Jcircumflex
+	PSGlyf Name # 189: jcircumflex
+	PSGlyf Name # 190: Kcedilla
+	PSGlyf Name # 191: kcedilla
+	PSGlyf Name # 192: kgreenlandic
+	PSGlyf Name # 193: Lcedilla
+	PSGlyf Name # 194: lcedilla
+	PSGlyf Name # 195: Ncedilla
+	PSGlyf Name # 196: ncedilla
+	PSGlyf Name # 197: Eng
+	PSGlyf Name # 198: eng
+	PSGlyf Name # 199: Omacron
+	PSGlyf Name # 200: omacron
+	PSGlyf Name # 201: Obreve
+	PSGlyf Name # 202: obreve
+	PSGlyf Name # 203: Rcedilla
+	PSGlyf Name # 204: rcedilla
+	PSGlyf Name # 205: Scircumflex
+	PSGlyf Name # 206: scircumflex
+	PSGlyf Name # 207: Tbar
+	PSGlyf Name # 208: tbar
+	PSGlyf Name # 209: Utilde
+	PSGlyf Name # 210: utilde
+	PSGlyf Name # 211: Umacron
+	PSGlyf Name # 212: umacron
+	PSGlyf Name # 213: Ubreve
+	PSGlyf Name # 214: ubreve
+	PSGlyf Name # 215: Uogonek
+	PSGlyf Name # 216: uogonek
+	PSGlyf Name # 217: Wcircumflex
+	PSGlyf Name # 218: wcircumflex
+	PSGlyf Name # 219: Ycircumflex
+	PSGlyf Name # 220: ycircumflex
+	PSGlyf Name # 221: longs
+	PSGlyf Name # 222: Aringacute
+	PSGlyf Name # 223: aringacute
+	PSGlyf Name # 224: AEacute
+	PSGlyf Name # 225: aeacute
+	PSGlyf Name # 226: Oslashacute
+	PSGlyf Name # 227: oslashacute
+	PSGlyf Name # 228: anoteleia
+	PSGlyf Name # 229: Wgrave
+	PSGlyf Name # 230: wgrave
+	PSGlyf Name # 231: Wacute
+	PSGlyf Name # 232: wacute
+	PSGlyf Name # 233: Wdieresis
+	PSGlyf Name # 234: wdieresis
+	PSGlyf Name # 235: Ygrave
+	PSGlyf Name # 236: ygrave
+	PSGlyf Name # 237: quotereversed
+	PSGlyf Name # 238: radicalex
+	PSGlyf Name # 239: afii08941
+	PSGlyf Name # 240: estimated
+	PSGlyf Name # 241: oneeighth
+	PSGlyf Name # 242: threeeighths
+	PSGlyf Name # 243: fiveeighths
+	PSGlyf Name # 244: seveneighths
+	PSGlyf Name # 245: commaaccent
+	PSGlyf Name # 246: undercommaaccent
+	PSGlyf Name # 247: tonos
+	PSGlyf Name # 248: dieresistonos
+	PSGlyf Name # 249: Alphatonos
+	PSGlyf Name # 250: Epsilontonos
+	PSGlyf Name # 251: Etatonos
+	PSGlyf Name # 252: Iotatonos
+	PSGlyf Name # 253: Omicrontonos
+	PSGlyf Name # 254: Upsilontonos
+	PSGlyf Name # 255: Omegatonos
+	PSGlyf Name # 256: iotadieresistonos
+	PSGlyf Name # 257: Alpha
+	PSGlyf Name # 258: Beta
+	PSGlyf Name # 259: Delta
+	PSGlyf Name # 260: Epsilon
+	PSGlyf Name # 261: Zeta
+	PSGlyf Name # 262: Eta
+	PSGlyf Name # 263: Iota
+	PSGlyf Name # 264: Kappa
+	PSGlyf Name # 265: Lambda
+	PSGlyf Name # 266: Mu
+	PSGlyf Name # 267: Nu
+	PSGlyf Name # 268: Xi
+	PSGlyf Name # 269: Omicron
+	PSGlyf Name # 270: Pi
+	PSGlyf Name # 271: Rho
+	PSGlyf Name # 272: Sigma
+	PSGlyf Name # 273: Tau
+	PSGlyf Name # 274: Upsilon
+	PSGlyf Name # 275: Chi
+	PSGlyf Name # 276: Psi
+	PSGlyf Name # 277: Iotadieresis
+	PSGlyf Name # 278: Upsilondieresis
+	PSGlyf Name # 279: alphatonos
+	PSGlyf Name # 280: epsilontonos
+	PSGlyf Name # 281: etatonos
+	PSGlyf Name # 282: iotatonos
+	PSGlyf Name # 283: upsilondieresistonos
+	PSGlyf Name # 284: beta
+	PSGlyf Name # 285: gamma
+	PSGlyf Name # 286: zeta
+	PSGlyf Name # 287: eta
+	PSGlyf Name # 288: theta
+	PSGlyf Name # 289: iota
+	PSGlyf Name # 290: kappa
+	PSGlyf Name # 291: lambda
+	PSGlyf Name # 292: nu
+	PSGlyf Name # 293: xi
+	PSGlyf Name # 294: omicron
+	PSGlyf Name # 295: rho
+	PSGlyf Name # 296: sigma1
+	PSGlyf Name # 297: upsilon
+	PSGlyf Name # 298: chi
+	PSGlyf Name # 299: psi
+	PSGlyf Name # 300: omega
+	PSGlyf Name # 301: iotadieresis
+	PSGlyf Name # 302: upsilondieresis
+	PSGlyf Name # 303: omicrontonos
+	PSGlyf Name # 304: upsilontonos
+	PSGlyf Name # 305: omegatonos
+	PSGlyf Name # 306: afii10023
+	PSGlyf Name # 307: afii10051
+	PSGlyf Name # 308: afii10052
+	PSGlyf Name # 309: afii10053
+	PSGlyf Name # 310: afii10054
+	PSGlyf Name # 311: afii10055
+	PSGlyf Name # 312: afii10056
+	PSGlyf Name # 313: afii10057
+	PSGlyf Name # 314: afii10058
+	PSGlyf Name # 315: afii10059
+	PSGlyf Name # 316: afii10060
+	PSGlyf Name # 317: afii10061
+	PSGlyf Name # 318: afii10062
+	PSGlyf Name # 319: afii10145
+	PSGlyf Name # 320: afii10017
+	PSGlyf Name # 321: afii10018
+	PSGlyf Name # 322: afii10019
+	PSGlyf Name # 323: afii10020
+	PSGlyf Name # 324: afii10021
+	PSGlyf Name # 325: afii10022
+	PSGlyf Name # 326: afii10024
+	PSGlyf Name # 327: afii10025
+	PSGlyf Name # 328: afii10026
+	PSGlyf Name # 329: afii10027
+	PSGlyf Name # 330: afii10028
+	PSGlyf Name # 331: afii10029
+	PSGlyf Name # 332: afii10030
+	PSGlyf Name # 333: afii10031
+	PSGlyf Name # 334: afii10032
+	PSGlyf Name # 335: afii10033
+	PSGlyf Name # 336: afii10034
+	PSGlyf Name # 337: afii10035
+	PSGlyf Name # 338: afii10036
+	PSGlyf Name # 339: afii10037
+	PSGlyf Name # 340: afii10038
+	PSGlyf Name # 341: afii10039
+	PSGlyf Name # 342: afii10040
+	PSGlyf Name # 343: afii10041
+	PSGlyf Name # 344: afii10042
+	PSGlyf Name # 345: afii10043
+	PSGlyf Name # 346: afii10044
+	PSGlyf Name # 347: afii10045
+	PSGlyf Name # 348: afii10046
+	PSGlyf Name # 349: afii10047
+	PSGlyf Name # 350: afii10048
+	PSGlyf Name # 351: afii10049
+	PSGlyf Name # 352: afii10065
+	PSGlyf Name # 353: afii10066
+	PSGlyf Name # 354: afii10067
+	PSGlyf Name # 355: afii10068
+	PSGlyf Name # 356: afii10069
+	PSGlyf Name # 357: afii10070
+	PSGlyf Name # 358: afii10072
+	PSGlyf Name # 359: afii10073
+	PSGlyf Name # 360: afii10074
+	PSGlyf Name # 361: afii10075
+	PSGlyf Name # 362: afii10076
+	PSGlyf Name # 363: afii10077
+	PSGlyf Name # 364: afii10078
+	PSGlyf Name # 365: afii10079
+	PSGlyf Name # 366: afii10080
+	PSGlyf Name # 367: afii10081
+	PSGlyf Name # 368: afii10082
+	PSGlyf Name # 369: afii10083
+	PSGlyf Name # 370: afii10084
+	PSGlyf Name # 371: afii10085
+	PSGlyf Name # 372: afii10086
+	PSGlyf Name # 373: afii10087
+	PSGlyf Name # 374: afii10088
+	PSGlyf Name # 375: afii10089
+	PSGlyf Name # 376: afii10090
+	PSGlyf Name # 377: afii10091
+	PSGlyf Name # 378: afii10092
+	PSGlyf Name # 379: afii10093
+	PSGlyf Name # 380: afii10094
+	PSGlyf Name # 381: afii10095
+	PSGlyf Name # 382: afii10096
+	PSGlyf Name # 383: afii10097
+	PSGlyf Name # 384: afii10071
+	PSGlyf Name # 385: afii10099
+	PSGlyf Name # 386: afii10100
+	PSGlyf Name # 387: afii10101
+	PSGlyf Name # 388: afii10102
+	PSGlyf Name # 389: afii10103
+	PSGlyf Name # 390: afii10104
+	PSGlyf Name # 391: afii10105
+	PSGlyf Name # 392: afii10106
+	PSGlyf Name # 393: afii10107
+	PSGlyf Name # 394: afii10108
+	PSGlyf Name # 395: afii10109
+	PSGlyf Name # 396: afii10110
+	PSGlyf Name # 397: afii10193
+	PSGlyf Name # 398: afii10050
+	PSGlyf Name # 399: afii10098
+	PSGlyf Name # 400: afii00208
+	PSGlyf Name # 401: afii61352
+	PSGlyf Name # 402: sheva
+	PSGlyf Name # 403: hatafsegol
+	PSGlyf Name # 404: hatafpatah
+	PSGlyf Name # 405: hatafqamats
+	PSGlyf Name # 406: hiriq
+	PSGlyf Name # 407: tsere
+	PSGlyf Name # 408: segol
+	PSGlyf Name # 409: patah
+	PSGlyf Name # 410: qamats
+	PSGlyf Name # 411: holam
+	PSGlyf Name # 412: qubuts
+	PSGlyf Name # 413: dagesh
+	PSGlyf Name # 414: meteg
+	PSGlyf Name # 415: maqaf
+	PSGlyf Name # 416: rafe
+	PSGlyf Name # 417: paseq
+	PSGlyf Name # 418: shindot
+	PSGlyf Name # 419: sindot
+	PSGlyf Name # 420: sofpasuq
+	PSGlyf Name # 421: alef
+	PSGlyf Name # 422: bet
+	PSGlyf Name # 423: gimel
+	PSGlyf Name # 424: dalet
+	PSGlyf Name # 425: he
+	PSGlyf Name # 426: vav
+	PSGlyf Name # 427: zayin
+	PSGlyf Name # 428: het
+	PSGlyf Name # 429: tet
+	PSGlyf Name # 430: yod
+	PSGlyf Name # 431: finalkaf
+	PSGlyf Name # 432: kaf
+	PSGlyf Name # 433: lamed
+	PSGlyf Name # 434: finalmem
+	PSGlyf Name # 435: mem
+	PSGlyf Name # 436: finalnun
+	PSGlyf Name # 437: nun
+	PSGlyf Name # 438: samekh
+	PSGlyf Name # 439: ayin
+	PSGlyf Name # 440: finalpe
+	PSGlyf Name # 441: pe
+	PSGlyf Name # 442: finaltsadi
+	PSGlyf Name # 443: tsadi
+	PSGlyf Name # 444: qof
+	PSGlyf Name # 445: resh
+	PSGlyf Name # 446: shin
+	PSGlyf Name # 447: tav
+	PSGlyf Name # 448: doublevav
+	PSGlyf Name # 449: vavyod
+	PSGlyf Name # 450: doubleyod
+	PSGlyf Name # 451: geresh
+	PSGlyf Name # 452: gershayim
+	PSGlyf Name # 453: newsheqelsign
+	PSGlyf Name # 454: vavshindot
+	PSGlyf Name # 455: finalkafsheva
+	PSGlyf Name # 456: finalkafqamats
+	PSGlyf Name # 457: lamedholam
+	PSGlyf Name # 458: lamedholamdagesh
+	PSGlyf Name # 459: altayin
+	PSGlyf Name # 460: shinshindot
+	PSGlyf Name # 461: shinsindot
+	PSGlyf Name # 462: shindageshshindot
+	PSGlyf Name # 463: shindageshsindot
+	PSGlyf Name # 464: alefpatah
+	PSGlyf Name # 465: alefqamats
+	PSGlyf Name # 466: alefmapiq
+	PSGlyf Name # 467: betdagesh
+	PSGlyf Name # 468: gimeldagesh
+	PSGlyf Name # 469: daletdagesh
+	PSGlyf Name # 470: hedagesh
+	PSGlyf Name # 471: vavdagesh
+	PSGlyf Name # 472: zayindagesh
+	PSGlyf Name # 473: tetdagesh
+	PSGlyf Name # 474: yoddagesh
+	PSGlyf Name # 475: finalkafdagesh
+	PSGlyf Name # 476: kafdagesh
+	PSGlyf Name # 477: lameddagesh
+	PSGlyf Name # 478: memdagesh
+	PSGlyf Name # 479: nundagesh
+	PSGlyf Name # 480: samekhdagesh
+	PSGlyf Name # 481: finalpedagesh
+	PSGlyf Name # 482: pedagesh
+	PSGlyf Name # 483: tsadidagesh
+	PSGlyf Name # 484: qofdagesh
+	PSGlyf Name # 485: reshdagesh
+	PSGlyf Name # 486: shindagesh
+	PSGlyf Name # 487: tavdages
+	PSGlyf Name # 488: vavholam
+	PSGlyf Name # 489: betrafe
+	PSGlyf Name # 490: kafrafe
+	PSGlyf Name # 491: perafe
+	PSGlyf Name # 492: aleflamed
+	PSGlyf Name # 493: zerowidthnonjoiner
+	PSGlyf Name # 494: zerowidthjoiner
+	PSGlyf Name # 495: lefttorightmark
+	PSGlyf Name # 496: righttoleftmark
+	PSGlyf Name # 497: afii57388
+	PSGlyf Name # 498: afii57403
+	PSGlyf Name # 499: afii57407
+	PSGlyf Name # 500: afii57409
+	PSGlyf Name # 501: afii57440
+	PSGlyf Name # 502: afii57451
+	PSGlyf Name # 503: afii57452
+	PSGlyf Name # 504: afii57453
+	PSGlyf Name # 505: afii57454
+	PSGlyf Name # 506: afii57455
+	PSGlyf Name # 507: afii57456
+	PSGlyf Name # 508: afii57457
+	PSGlyf Name # 509: afii57458
+	PSGlyf Name # 510: afii57392
+	PSGlyf Name # 511: afii57393
+	PSGlyf Name # 512: afii57394
+	PSGlyf Name # 513: afii57395
+	PSGlyf Name # 514: afii57396
+	PSGlyf Name # 515: afii57397
+	PSGlyf Name # 516: afii57398
+	PSGlyf Name # 517: afii57399
+	PSGlyf Name # 518: afii57400
+	PSGlyf Name # 519: afii57401
+	PSGlyf Name # 520: afii57381
+	PSGlyf Name # 521: afii57461
+	PSGlyf Name # 522: afii63167
+	PSGlyf Name # 523: afii57459
+	PSGlyf Name # 524: afii57543
+	PSGlyf Name # 525: afii57534
+	PSGlyf Name # 526: afii57494
+	PSGlyf Name # 527: afii62843
+	PSGlyf Name # 528: afii62844
+	PSGlyf Name # 529: afii62845
+	PSGlyf Name # 530: afii64240
+	PSGlyf Name # 531: afii64241
+	PSGlyf Name # 532: afii63954
+	PSGlyf Name # 533: afii57382
+	PSGlyf Name # 534: afii64242
+	PSGlyf Name # 535: afii62881
+	PSGlyf Name # 536: afii57504
+	PSGlyf Name # 537: afii57369
+	PSGlyf Name # 538: afii57370
+	PSGlyf Name # 539: afii57371
+	PSGlyf Name # 540: afii57372
+	PSGlyf Name # 541: afii57373
+	PSGlyf Name # 542: afii57374
+	PSGlyf Name # 543: afii57375
+	PSGlyf Name # 544: afii57391
+	PSGlyf Name # 545: afii57471
+	PSGlyf Name # 546: afii57460
+	PSGlyf Name # 547: afii52258
+	PSGlyf Name # 548: afii57506
+	PSGlyf Name # 549: afii62958
+	PSGlyf Name # 550: afii62956
+	PSGlyf Name # 551: afii52957
+	PSGlyf Name # 552: afii57505
+	PSGlyf Name # 553: afii62889
+	PSGlyf Name # 554: afii62887
+	PSGlyf Name # 555: afii62888
+	PSGlyf Name # 556: afii57507
+	PSGlyf Name # 557: afii62961
+	PSGlyf Name # 558: afii62959
+	PSGlyf Name # 559: afii62960
+	PSGlyf Name # 560: afii57508
+	PSGlyf Name # 561: afii62962
+	PSGlyf Name # 562: afii57567
+	PSGlyf Name # 563: afii62964
+	PSGlyf Name # 564: afii52305
+	PSGlyf Name # 565: afii52306
+	PSGlyf Name # 566: afii57509
+	PSGlyf Name # 567: afii62967
+	PSGlyf Name # 568: afii62965
+	PSGlyf Name # 569: afii62966
+	PSGlyf Name # 570: afii57555
+	PSGlyf Name # 571: afii52364
+	PSGlyf Name # 572: afii63753
+	PSGlyf Name # 573: afii63754
+	PSGlyf Name # 574: afii63759
+	PSGlyf Name # 575: afii63763
+	PSGlyf Name # 576: afii63795
+	PSGlyf Name # 577: afii62891
+	PSGlyf Name # 578: afii63808
+	PSGlyf Name # 579: afii62938
+	PSGlyf Name # 580: afii63810
+	PSGlyf Name # 581: afii62942
+	PSGlyf Name # 582: afii62947
+	PSGlyf Name # 583: afii63813
+	PSGlyf Name # 584: afii63823
+	PSGlyf Name # 585: afii63824
+	PSGlyf Name # 586: afii63833
+	PSGlyf Name # 587: afii63844
+	PSGlyf Name # 588: afii62882
+	PSGlyf Name # 589: afii62883
+	PSGlyf Name # 590: afii62884
+	PSGlyf Name # 591: afii62885
+	PSGlyf Name # 592: afii62886
+	PSGlyf Name # 593: afii63846
+	PSGlyf Name # 594: afii63849
+	PSGlyf Name # 595: uni202A
+	PSGlyf Name # 596: uni202B
+	PSGlyf Name # 597: uni202D
+	PSGlyf Name # 598: uni202E
+	PSGlyf Name # 599: uni202C
+	PSGlyf Name # 600: uni206E
+	PSGlyf Name # 601: uni206F;
+	PSGlyf Name # 602: uni206A
+	PSGlyf Name # 603: uni206B
+	PSGlyf Name # 604: uni206C;
+	PSGlyf Name # 605: uni206D
+	PSGlyf Name # 606: uniF00A
+	PSGlyf Name # 607: uniF00B
+	PSGlyf Name # 608: uniF00C
+	PSGlyf Name # 609: uniF00D
+	PSGlyf Name # 610: uniF00E
+	PSGlyf Name # 611: uniFFFC
+	PSGlyf Name # 612: afii63904
+	PSGlyf Name # 613: afii63905
+	PSGlyf Name # 614: afii63906
+	PSGlyf Name # 615: afii63908
+	PSGlyf Name # 616: afii63910
+	PSGlyf Name # 617: afii63912
+	PSGlyf Name # 618: afii62927
+	PSGlyf Name # 619: afii63941
+	PSGlyf Name # 620: afii62939
+	PSGlyf Name # 621: afii63943
+	PSGlyf Name # 622: afii62943
+	PSGlyf Name # 623: afii62946
+	PSGlyf Name # 624: afii63946
+	PSGlyf Name # 625: afii62951
+	PSGlyf Name # 626: afii63948
+	PSGlyf Name # 627: afii62953
+	PSGlyf Name # 628: afii63950
+	PSGlyf Name # 629: afii63951
+	PSGlyf Name # 630: afii63952
+	PSGlyf Name # 631: afii63953
+	PSGlyf Name # 632: afii63956
+	PSGlyf Name # 633: afii63958
+	PSGlyf Name # 634: afii63959
+	PSGlyf Name # 635: afii63960
+	PSGlyf Name # 636: afii63961
+	PSGlyf Name # 637: afii64046
+	PSGlyf Name # 638: afii64058
+	PSGlyf Name # 639: afii64059
+	PSGlyf Name # 640: afii64060
+	PSGlyf Name # 641: afii64061
+	PSGlyf Name # 642: afii62945
+	PSGlyf Name # 643: afii64184
+	PSGlyf Name # 644: afii52399
+	PSGlyf Name # 645: afii52400
+	PSGlyf Name # 646: afii62753
+	PSGlyf Name # 647: afii57411
+	PSGlyf Name # 648: afii62754
+	PSGlyf Name # 649: afii57412
+	PSGlyf Name # 650: afii62755
+	PSGlyf Name # 651: afii57413
+	PSGlyf Name # 652: afii62756
+	PSGlyf Name # 653: afii57414
+	PSGlyf Name # 654: afii62759
+	PSGlyf Name # 655: afii62757
+	PSGlyf Name # 656: afii62758
+	PSGlyf Name # 657: afii57415
+	PSGlyf Name # 658: afii62760
+	PSGlyf Name # 659: afii57416
+	PSGlyf Name # 660: afii62763
+	PSGlyf Name # 661: afii62761
+	PSGlyf Name # 662: afii62762
+	PSGlyf Name # 663: afii57417
+	PSGlyf Name # 664: afii62764
+	PSGlyf Name # 665: afii57418
+	PSGlyf Name # 666: afii62767
+	PSGlyf Name # 667: afii62765
+	PSGlyf Name # 668: afii62766
+	PSGlyf Name # 669: afii57419
+	PSGlyf Name # 670: afii62770
+	PSGlyf Name # 671: afii62768
+	PSGlyf Name # 672: afii62769
+	PSGlyf Name # 673: afii57420
+	PSGlyf Name # 674: afii62773
+	PSGlyf Name # 675: afii62771
+	PSGlyf Name # 676: afii62772
+	PSGlyf Name # 677: afii57421
+	PSGlyf Name # 678: afii62776
+	PSGlyf Name # 679: afii62774
+	PSGlyf Name # 680: afii62775
+	PSGlyf Name # 681: afii57422
+	PSGlyf Name # 682: afii62779
+	PSGlyf Name # 683: afii62777
+	PSGlyf Name # 684: afii62778
+	PSGlyf Name # 685: afii57423
+	PSGlyf Name # 686: afii62780
+	PSGlyf Name # 687: afii57424
+	PSGlyf Name # 688: afii62781
+	PSGlyf Name # 689: afii57425
+	PSGlyf Name # 690: afii62782
+	PSGlyf Name # 691: afii57426
+	PSGlyf Name # 692: afii62783
+	PSGlyf Name # 693: afii57427
+	PSGlyf Name # 694: afii62786
+	PSGlyf Name # 695: afii62784
+	PSGlyf Name # 696: afii62785
+	PSGlyf Name # 697: afii57428
+	PSGlyf Name # 698: afii62789
+	PSGlyf Name # 699: afii62787
+	PSGlyf Name # 700: afii62788
+	PSGlyf Name # 701: afii57429
+	PSGlyf Name # 702: afii62792
+	PSGlyf Name # 703: afii62790
+	PSGlyf Name # 704: afii62791
+	PSGlyf Name # 705: afii57430
+	PSGlyf Name # 706: afii62795
+	PSGlyf Name # 707: afii62793
+	PSGlyf Name # 708: afii62794
+	PSGlyf Name # 709: afii57431
+	PSGlyf Name # 710: afii62798
+	PSGlyf Name # 711: afii62796
+	PSGlyf Name # 712: afii62797
+	PSGlyf Name # 713: afii57432
+	PSGlyf Name # 714: afii62801
+	PSGlyf Name # 715: afii62799
+	PSGlyf Name # 716: afii62800
+	PSGlyf Name # 717: afii57433
+	PSGlyf Name # 718: afii62804
+	PSGlyf Name # 719: afii62802
+	PSGlyf Name # 720: afii62803
+	PSGlyf Name # 721: afii57434
+	PSGlyf Name # 722: afii62807
+	PSGlyf Name # 723: afii62805
+	PSGlyf Name # 724: afii62806
+	PSGlyf Name # 725: afii57441
+	PSGlyf Name # 726: afii62810
+	PSGlyf Name # 727: afii62808
+	PSGlyf Name # 728: afii62809
+	PSGlyf Name # 729: afii57442
+	PSGlyf Name # 730: afii62813
+	PSGlyf Name # 731: afii62811
+	PSGlyf Name # 732: afii62812
+	PSGlyf Name # 733: afii57443
+	PSGlyf Name # 734: afii62816
+	PSGlyf Name # 735: afii57410
+	PSGlyf Name # 736: afii62815
+	PSGlyf Name # 737: afii57444
+	PSGlyf Name # 738: afii62819
+	PSGlyf Name # 739: afii62817
+	PSGlyf Name # 740: afii62818
+	PSGlyf Name # 741: afii57445
+	PSGlyf Name # 742: afii62822
+	PSGlyf Name # 743: afii62820
+	PSGlyf Name # 744: afii62821
+	PSGlyf Name # 745: afii57446
+	PSGlyf Name # 746: afii62825
+	PSGlyf Name # 747: afii62823
+	PSGlyf Name # 748: afii62824
+	PSGlyf Name # 749: afii57447
+	PSGlyf Name # 750: afii62828
+	PSGlyf Name # 751: afii57470
+	PSGlyf Name # 752: afii62827
+	PSGlyf Name # 753: afii57448
+	PSGlyf Name # 754: afii62829
+	PSGlyf Name # 755: afii57449
+	PSGlyf Name # 756: afii62830
+	PSGlyf Name # 757: afii57450
+	PSGlyf Name # 758: afii62833
+	PSGlyf Name # 759: afii62831
+	PSGlyf Name # 760: afii62832
+	PSGlyf Name # 761: afii62834
+	PSGlyf Name # 762: afii62835
+	PSGlyf Name # 763: afii62836
+	PSGlyf Name # 764: afii62837
+	PSGlyf Name # 765: afii62838
+	PSGlyf Name # 766: afii62839
+	PSGlyf Name # 767: afii62840
+	PSGlyf Name # 768: afii62841
+	PSGlyf Name # 769: glyph1021
+	PSGlyf Name # 770: afii57543-2
+	PSGlyf Name # 771: afii57454-2
+	PSGlyf Name # 772: afii57451-2
+	PSGlyf Name # 773: glyph1025
+	PSGlyf Name # 774: glyph1026
+	PSGlyf Name # 775: afii57471-2
+	PSGlyf Name # 776: afii57458-2
+	PSGlyf Name # 777: afii57457-2
+	PSGlyf Name # 778: afii57494-2
+	PSGlyf Name # 779: afii57459-2
+	PSGlyf Name # 780: afii57455-2
+	PSGlyf Name # 781: afii57452-2
+	PSGlyf Name # 782: glyph1034
+	PSGlyf Name # 783: glyph1035
+	PSGlyf Name # 784: glyph1036
+	PSGlyf Name # 785: afii62884-2
+	PSGlyf Name # 786: afii62881-2
+	PSGlyf Name # 787: afii62886-2
+	PSGlyf Name # 788: afii62883-2
+	PSGlyf Name # 789: afii62885-2
+	PSGlyf Name # 790: afii62882-2
+	PSGlyf Name # 791: afii57504-2
+	PSGlyf Name # 792: afii57456-2
+	PSGlyf Name # 793: afii57453-2
+	PSGlyf Name # 794: glyph1046
+	PSGlyf Name # 795: glyph1047
+	PSGlyf Name # 796: afii57543-3
+	PSGlyf Name # 797: afii57454-3
+	PSGlyf Name # 798: afii57451-3
+	PSGlyf Name # 799: glyph1051
+	PSGlyf Name # 800: glyph1052
+	PSGlyf Name # 801: afii57471-3
+	PSGlyf Name # 802: afii57458-3
+	PSGlyf Name # 803: afii57457-3
+	PSGlyf Name # 804: afii57494-3
+	PSGlyf Name # 805: afii57459-3
+	PSGlyf Name # 806: afii57455-3
+	PSGlyf Name # 807: afii57452-3
+	PSGlyf Name # 808: glyph1060
+	PSGlyf Name # 809: glyph1061
+	PSGlyf Name # 810: glyph1062
+	PSGlyf Name # 811: afii62884-3
+	PSGlyf Name # 812: afii62881-3
+	PSGlyf Name # 813: afii62886-3
+	PSGlyf Name # 814: afii62883-3
+	PSGlyf Name # 815: afii62885-3
+	PSGlyf Name # 816: afii62882-3
+	PSGlyf Name # 817: afii57504-3
+	PSGlyf Name # 818: afii57456-3
+	PSGlyf Name # 819: afii57453-3
+	PSGlyf Name # 820: glyph1072
+	PSGlyf Name # 821: glyph1073
+	PSGlyf Name # 822: afii57543-4
+	PSGlyf Name # 823: afii57454-4
+	PSGlyf Name # 824: afii57451-4
+	PSGlyf Name # 825: glyph1077
+	PSGlyf Name # 826: glyph1078
+	PSGlyf Name # 827: afii57471-4
+	PSGlyf Name # 828: afii57458-4
+	PSGlyf Name # 829: afii57457-4
+	PSGlyf Name # 830: afii57494-4
+	PSGlyf Name # 831: afii57459-4
+	PSGlyf Name # 832: afii57455-4
+	PSGlyf Name # 833: afii57452-4
+	PSGlyf Name # 834: glyph1086
+	PSGlyf Name # 835: glyph1087
+	PSGlyf Name # 836: glyph1088
+	PSGlyf Name # 837: afii62884-4
+	PSGlyf Name # 838: afii62881-4
+	PSGlyf Name # 839: afii62886-4
+	PSGlyf Name # 840: afii62883-4
+	PSGlyf Name # 841: afii62885-4
+	PSGlyf Name # 842: afii62882-4
+	PSGlyf Name # 843: afii57504-4
+	PSGlyf Name # 844: afii57456-4
+	PSGlyf Name # 845: afii57453-4
+	PSGlyf Name # 846: glyph1098
+	PSGlyf Name # 847: glyph1099
+	PSGlyf Name # 848: glyph1100
+	PSGlyf Name # 849: glyph1101
+	PSGlyf Name # 850: glyph1102
+	PSGlyf Name # 851: glyph1103
+	PSGlyf Name # 852: glyph1104
+	PSGlyf Name # 853: glyph1105
+	PSGlyf Name # 854: glyph1106
+	PSGlyf Name # 855: glyph1107
+	PSGlyf Name # 856: glyph1108
+	PSGlyf Name # 857: glyph1109
+	PSGlyf Name # 858: glyph1110
+	PSGlyf Name # 859: glyph1111
+	PSGlyf Name # 860: glyph1112
+	PSGlyf Name # 861: glyph1113
+	PSGlyf Name # 862: glyph1114
+	PSGlyf Name # 863: glyph1115
+	PSGlyf Name # 864: glyph1116
+	PSGlyf Name # 865: glyph1117
+	PSGlyf Name # 866: glyph1118
+	PSGlyf Name # 867: glyph1119
+	PSGlyf Name # 868: glyph1120
+	PSGlyf Name # 869: glyph1121
+	PSGlyf Name # 870: glyph1122
+	PSGlyf Name # 871: glyph1123
+	PSGlyf Name # 872: glyph1124
+	PSGlyf Name # 873: glyph1125
+	PSGlyf Name # 874: glyph1126
+	PSGlyf Name # 875: afii57440-2
+	PSGlyf Name # 876: afii57440-3
+	PSGlyf Name # 877: afii57440-4
+	PSGlyf Name # 878: Ohorn
+	PSGlyf Name # 879: ohorn
+	PSGlyf Name # 880: Uhorn
+	PSGlyf Name # 881: uhorn
+	PSGlyf Name # 882: f006
+	PSGlyf Name # 883: f007
+	PSGlyf Name # 884: f009
+	PSGlyf Name # 885: combininghookabove
+	PSGlyf Name # 886: f010
+	PSGlyf Name # 887: f013
+	PSGlyf Name # 888: f011
+	PSGlyf Name # 889: f01c
+	PSGlyf Name # 890: f015
+	PSGlyf Name # 891: combiningtildeaccent
+	PSGlyf Name # 892: f02c
+	PSGlyf Name # 893: dongsign
+	PSGlyf Name # 894: onethird
+	PSGlyf Name # 895: twothirds
+	PSGlyf Name # 896: f008
+	PSGlyf Name # 897: f00f
+	PSGlyf Name # 898: f012
+	PSGlyf Name # 899: f014
+	PSGlyf Name # 900: f016
+	PSGlyf Name # 901: f017
+	PSGlyf Name # 902: f018
+	PSGlyf Name # 903: f019
+	PSGlyf Name # 904: f01a
+	PSGlyf Name # 905: f01b
+	PSGlyf Name # 906: f01e
+	PSGlyf Name # 907: f01f
+	PSGlyf Name # 908: f020
+	PSGlyf Name # 909: f021
+	PSGlyf Name # 910: f022
+	PSGlyf Name # 911: combininggraveaccent
+	PSGlyf Name # 912: combiningacuteaccent
+	PSGlyf Name # 913: f01d
+	PSGlyf Name # 914: combiningdotbelow
+	PSGlyf Name # 915: f023
+	PSGlyf Name # 916: f029
+	PSGlyf Name # 917: f02a
+	PSGlyf Name # 918: f02b
+	PSGlyf Name # 919: f024
+	PSGlyf Name # 920: f025
+	PSGlyf Name # 921: f026
+	PSGlyf Name # 922: f027
+	PSGlyf Name # 923: f028
+	PSGlyf Name # 924: f02d
+	PSGlyf Name # 925: f02e
+	PSGlyf Name # 926: f02f
+	PSGlyf Name # 927: f030
+	PSGlyf Name # 928: f031
+	PSGlyf Name # 929: Adotbelow
+	PSGlyf Name # 930: adotbelow
+	PSGlyf Name # 931: Ahookabove
+	PSGlyf Name # 932: ahookabove
+	PSGlyf Name # 933: Acircumflexacute
+	PSGlyf Name # 934: acircumflexacute
+	PSGlyf Name # 935: Acircumflexgrave
+	PSGlyf Name # 936: acircumflexgrave
+	PSGlyf Name # 937: Acircumflexhookabove
+	PSGlyf Name # 938: acircumflexhookabove
+	PSGlyf Name # 939: Acircumflextilde
+	PSGlyf Name # 940: acircumflextilde
+	PSGlyf Name # 941: Acircumflexdotbelow
+	PSGlyf Name # 942: acircumflexdotbelow
+	PSGlyf Name # 943: Abreveacute
+	PSGlyf Name # 944: abreveacute
+	PSGlyf Name # 945: Abrevegrave
+	PSGlyf Name # 946: abrevegrave
+	PSGlyf Name # 947: Abrevehookabove
+	PSGlyf Name # 948: abrevehookabove
+	PSGlyf Name # 949: Abrevetilde
+	PSGlyf Name # 950: abrevetilde
+	PSGlyf Name # 951: Abrevedotbelow
+	PSGlyf Name # 952: abrevedotbelow
+	PSGlyf Name # 953: Edotbelow
+	PSGlyf Name # 954: edotbelow
+	PSGlyf Name # 955: Ehookabove
+	PSGlyf Name # 956: ehookabove
+	PSGlyf Name # 957: Etilde
+	PSGlyf Name # 958: etilde
+	PSGlyf Name # 959: Ecircumflexacute
+	PSGlyf Name # 960: ecircumflexacute
+	PSGlyf Name # 961: Ecircumflexgrave
+	PSGlyf Name # 962: ecircumflexgrave
+	PSGlyf Name # 963: Ecircumflexhookabove
+	PSGlyf Name # 964: ecircumflexhookabove
+	PSGlyf Name # 965: Ecircumflextilde
+	PSGlyf Name # 966: ecircumflextilde
+	PSGlyf Name # 967: Ecircumflexdotbelow
+	PSGlyf Name # 968: ecircumflexdotbelow
+	PSGlyf Name # 969: Ihookabove
+	PSGlyf Name # 970: ihookabove
+	PSGlyf Name # 971: Idotbelow
+	PSGlyf Name # 972: idotbelow
+	PSGlyf Name # 973: Odotbelow
+	PSGlyf Name # 974: odotbelow
+	PSGlyf Name # 975: Ohookabove
+	PSGlyf Name # 976: ohookabove
+	PSGlyf Name # 977: Ocircumflexacute
+	PSGlyf Name # 978: ocircumflexacute
+	PSGlyf Name # 979: Ocircumflexgrave
+	PSGlyf Name # 980: ocircumflexgrave
+	PSGlyf Name # 981: Ocircumflexhookabove
+	PSGlyf Name # 982: ocircumflexhookabove
+	PSGlyf Name # 983: Ocircumflextilde
+	PSGlyf Name # 984: ocircumflextilde
+	PSGlyf Name # 985: Ocircumflexdotbelow
+	PSGlyf Name # 986: ocircumflexdotbelow
+	PSGlyf Name # 987: Ohornacute
+	PSGlyf Name # 988: ohornacute
+	PSGlyf Name # 989: Ohorngrave
+	PSGlyf Name # 990: ohorngrave
+	PSGlyf Name # 991: Ohornhookabove
+	PSGlyf Name # 992: ohornhookabove
+	PSGlyf Name # 993: Ohorntilde
+	PSGlyf Name # 994: ohorntilde
+	PSGlyf Name # 995: Ohorndotbelow
+	PSGlyf Name # 996: ohorndotbelow
+	PSGlyf Name # 997: Udotbelow
+	PSGlyf Name # 998: udotbelow
+	PSGlyf Name # 999: Uhookabove
+	PSGlyf Name # 1000: uhookabove
+	PSGlyf Name # 1001: Uhornacute
+	PSGlyf Name # 1002: uhornacute
+	PSGlyf Name # 1003: Uhorngrave
+	PSGlyf Name # 1004: uhorngrave
+	PSGlyf Name # 1005: Uhornhookabove
+	PSGlyf Name # 1006: uhornhookabove
+	PSGlyf Name # 1007: Uhorntilde
+	PSGlyf Name # 1008: uhorntilde
+	PSGlyf Name # 1009: Uhorndotbelow
+	PSGlyf Name # 1010: uhorndotbelow
+	PSGlyf Name # 1011: Ydotbelow
+	PSGlyf Name # 1012: ydotbelow
+	PSGlyf Name # 1013: Yhookabove
+	PSGlyf Name # 1014: yhookabove
+	PSGlyf Name # 1015: Ytilde
+	PSGlyf Name # 1016: ytilde
+	PSGlyf Name # 1017: uni01CD
+	PSGlyf Name # 1018: uni01CE
+	PSGlyf Name # 1019: uni01CF
+	PSGlyf Name # 1020: uni01D0
+	PSGlyf Name # 1021: uni01D1
+	PSGlyf Name # 1022: uni01D2
+	PSGlyf Name # 1023: uni01D3
+	PSGlyf Name # 1024: uni01D4
+	PSGlyf Name # 1025: uni01D5
+	PSGlyf Name # 1026: uni01D6
+	PSGlyf Name # 1027: uni01D7
+	PSGlyf Name # 1028: uni01D8
+	PSGlyf Name # 1029: uni01D9
+	PSGlyf Name # 1030: uni01DA
+	PSGlyf Name # 1031: uni01DB
+	PSGlyf Name # 1032: uni01DC
+	PSGlyf Name # 1033: uni0492
+	PSGlyf Name # 1034: uni0493
+	PSGlyf Name # 1035: uni0496
+	PSGlyf Name # 1036: uni0497
+	PSGlyf Name # 1037: uni049a
+	PSGlyf Name # 1038: uni049b
+	PSGlyf Name # 1039: uni049c
+	PSGlyf Name # 1040: uni049d
+	PSGlyf Name # 1041: uni04a2
+	PSGlyf Name # 1042: uni04a3
+	PSGlyf Name # 1043: uni04ae
+	PSGlyf Name # 1044: uni04af
+	PSGlyf Name # 1045: uni04b0
+	PSGlyf Name # 1046: uni04b1
+	PSGlyf Name # 1047: uni04b2
+	PSGlyf Name # 1048: uni04b3
+	PSGlyf Name # 1049: uni04b8
+	PSGlyf Name # 1050: uni04b9
+	PSGlyf Name # 1051: uni04ba
+	PSGlyf Name # 1052: uni04bb
+	PSGlyf Name # 1053: uni018f
+	PSGlyf Name # 1054: uni0259
+	PSGlyf Name # 1055: uni04e8
+	PSGlyf Name # 1056: uni04e9
+
+'cmap' Table - Character To Index Map
+-------------------------------------
+Size = 5006 bytes
+  'cmap' version:  0
+  numTables:       3
+  
+Subtable  1.   Platform ID:   0
+               Specific ID:   3
+               'cmap' Offset: 0x0000001C
+	      ->Format:	4 : Segment mapping to delta values
+		Length:		2358
+		Version:	0
+		segCount:	156  (X2 = 312)
+		searchRange:	256
+		entrySelector:	7
+		rangeShift:	56
+		Seg   1 : St = 0020, En = 007E, D =    -29, RO =     0, gId# = N/A
+		Seg   2 : St = 00A0, En = 017F, D =      0, RO =   310, gId# = 0
+		Seg   3 : St = 018F, En = 018F, D =    917, RO =     0, gId# = N/A
+		Seg   4 : St = 0192, En = 0192, D =   -236, RO =     0, gId# = N/A
+		Seg   5 : St = 01A0, En = 01A1, D =    714, RO =     0, gId# = N/A
+		Seg   6 : St = 01AF, En = 01B0, D =    701, RO =     0, gId# = N/A
+		Seg   7 : St = 01CD, En = 01DC, D =    815, RO =     0, gId# = N/A
+		Seg   8 : St = 01FA, En = 01FF, D =    -36, RO =     0, gId# = N/A
+		Seg   9 : St = 0259, En = 0259, D =    716, RO =     0, gId# = N/A
+		Seg  10 : St = 02C6, En = 02C7, D =      0, RO =   742, gId# = 224
+		Seg  11 : St = 02C9, En = 02C9, D =   -497, RO =     0, gId# = N/A
+		Seg  12 : St = 02D8, En = 02DD, D =      0, RO =   742, gId# = 226
+		Seg  13 : St = 0300, En = 0301, D =    402, RO =     0, gId# = N/A
+		Seg  14 : St = 0303, En = 0303, D =    375, RO =     0, gId# = N/A
+		Seg  15 : St = 0309, En = 0309, D =    363, RO =     0, gId# = N/A
+		Seg  16 : St = 0323, En = 0323, D =    370, RO =     0, gId# = N/A
+		Seg  17 : St = 037E, En = 037E, D =   -864, RO =     0, gId# = N/A
+		Seg  18 : St = 0384, En = 038A, D =      0, RO =   742, gId# = 232
+		Seg  19 : St = 038C, En = 038C, D =   -407, RO =     0, gId# = N/A
+		Seg  20 : St = 038E, En = 03A1, D =      0, RO =   752, gId# = 239
+		Seg  21 : St = 03A3, En = 03CE, D =      0, RO =   790, gId# = 259
+		Seg  22 : St = 0401, En = 040C, D =   -469, RO =     0, gId# = N/A
+		Seg  23 : St = 040E, En = 044F, D =   -470, RO =     0, gId# = N/A
+		Seg  24 : St = 0451, En = 045C, D =   -471, RO =     0, gId# = N/A
+		Seg  25 : St = 045E, En = 045F, D =   -472, RO =     0, gId# = N/A
+		Seg  26 : St = 0490, En = 0493, D =      0, RO =   868, gId# = 303
+		Seg  27 : St = 0496, En = 0497, D =    124, RO =     0, gId# = N/A
+		Seg  28 : St = 049A, En = 049D, D =    122, RO =     0, gId# = N/A
+		Seg  29 : St = 04A2, En = 04A3, D =    118, RO =     0, gId# = N/A
+		Seg  30 : St = 04AE, En = 04B3, D =    108, RO =     0, gId# = N/A
+		Seg  31 : St = 04B8, En = 04BB, D =    104, RO =     0, gId# = N/A
+		Seg  32 : St = 04D8, En = 04D9, D =     76, RO =     0, gId# = N/A
+		Seg  33 : St = 04E8, En = 04E9, D =     62, RO =     0, gId# = N/A
+		Seg  34 : St = 05B0, En = 05B9, D =   -803, RO =     0, gId# = N/A
+		Seg  35 : St = 05BB, En = 05C3, D =   -804, RO =     0, gId# = N/A
+		Seg  36 : St = 05D0, En = 05EA, D =   -816, RO =     0, gId# = N/A
+		Seg  37 : St = 05F0, En = 05F4, D =   -821, RO =     0, gId# = N/A
+		Seg  38 : St = 060C, En = 060C, D =   -800, RO =     0, gId# = N/A
+		Seg  39 : St = 061B, En = 061B, D =   -814, RO =     0, gId# = N/A
+		Seg  40 : St = 061F, En = 061F, D =   -817, RO =     0, gId# = N/A
+		Seg  41 : St = 0621, En = 063A, D =      0, RO =   846, gId# = 307
+		Seg  42 : St = 0640, En = 0652, D =      0, RO =   896, gId# = 333
+		Seg  43 : St = 0660, En = 066B, D =   -871, RO =     0, gId# = N/A
+		Seg  44 : St = 066D, En = 066D, D =   -872, RO =     0, gId# = N/A
+		Seg  45 : St = 0671, En = 0671, D =   -852, RO =     0, gId# = N/A
+		Seg  46 : St = 067E, En = 067E, D =   -863, RO =     0, gId# = N/A
+		Seg  47 : St = 0686, En = 0686, D =   -863, RO =     0, gId# = N/A
+		Seg  48 : St = 0698, En = 0698, D =   -877, RO =     0, gId# = N/A
+		Seg  49 : St = 06A4, En = 06A4, D =   -897, RO =     0, gId# = N/A
+		Seg  50 : St = 06A9, En = 06A9, D =   -892, RO =     0, gId# = N/A
+		Seg  51 : St = 06AF, En = 06AF, D =   -894, RO =     0, gId# = N/A
+		Seg  52 : St = 06CC, En = 06CC, D =   -919, RO =     0, gId# = N/A
+		Seg  53 : St = 06D5, En = 06D5, D =   -973, RO =     0, gId# = N/A
+		Seg  54 : St = 06F0, En = 06F9, D =      0, RO =   910, gId# = 352
+		Seg  55 : St = 1E80, En = 1E85, D =  -7331, RO =     0, gId# = N/A
+		Seg  56 : St = 1EA0, En = 1EF9, D =      0, RO =   926, gId# = 362
+		Seg  57 : St = 200C, En = 200F, D =  -7460, RO =     0, gId# = N/A
+		Seg  58 : St = 2013, En = 2015, D =      0, RO =  1102, gId# = 452
+		Seg  59 : St = 2017, En = 201E, D =      0, RO =  1106, gId# = 455
+		Seg  60 : St = 2020, En = 2022, D =      0, RO =  1120, gId# = 463
+		Seg  61 : St = 2026, En = 2026, D =  -8059, RO =     0, gId# = N/A
+		Seg  62 : St = 202A, En = 202E, D =      0, RO =  1122, gId# = 466
+		Seg  63 : St = 2030, En = 2030, D =  -8043, RO =     0, gId# = N/A
+		Seg  64 : St = 2032, En = 2033, D =  -7845, RO =     0, gId# = N/A
+		Seg  65 : St = 2039, En = 203A, D =  -8060, RO =     0, gId# = N/A
+		Seg  66 : St = 203C, En = 203C, D =  -7943, RO =     0, gId# = N/A
+		Seg  67 : St = 203E, En = 203E, D =  -7768, RO =     0, gId# = N/A
+		Seg  68 : St = 2044, En = 2044, D =  -8073, RO =     0, gId# = N/A
+		Seg  69 : St = 206A, En = 206F, D =      0, RO =  1118, gId# = 471
+		Seg  70 : St = 207F, En = 207F, D =  -8009, RO =     0, gId# = N/A
+		Seg  71 : St = 20A3, En = 20A4, D =      0, RO =  1126, gId# = 477
+		Seg  72 : St = 20A7, En = 20A7, D =  -8048, RO =     0, gId# = N/A
+		Seg  73 : St = 20AA, En = 20AC, D =      0, RO =  1126, gId# = 479
+		Seg  74 : St = 2105, En = 2105, D =  -8054, RO =     0, gId# = N/A
+		Seg  75 : St = 2113, En = 2113, D =  -8067, RO =     0, gId# = N/A
+		Seg  76 : St = 2116, En = 2116, D =  -7819, RO =     0, gId# = N/A
+		Seg  77 : St = 2122, En = 2122, D =  -8342, RO =     0, gId# = N/A
+		Seg  78 : St = 2126, En = 2126, D =  -8327, RO =     0, gId# = N/A
+		Seg  79 : St = 212E, En = 212E, D =  -8006, RO =     0, gId# = N/A
+		Seg  80 : St = 2153, En = 2154, D =  -7380, RO =     0, gId# = N/A
+		Seg  81 : St = 215B, En = 215E, D =  -8050, RO =     0, gId# = N/A
+		Seg  82 : St = 2190, En = 2195, D =  -8280, RO =     0, gId# = N/A
+		Seg  83 : St = 21A8, En = 21A8, D =  -8298, RO =     0, gId# = N/A
+		Seg  84 : St = 2202, En = 2202, D =  -8554, RO =     0, gId# = N/A
+		Seg  85 : St = 2206, En = 2206, D =  -8542, RO =     0, gId# = N/A
+		Seg  86 : St = 220F, En = 220F, D =  -8565, RO =     0, gId# = N/A
+		Seg  87 : St = 2211, En = 2212, D =      0, RO =  1104, gId# = 482
+		Seg  88 : St = 2215, En = 2215, D =  -8538, RO =     0, gId# = N/A
+		Seg  89 : St = 2219, En = 221A, D =      0, RO =  1104, gId# = 484
+		Seg  90 : St = 221E, En = 221F, D =      0, RO =  1106, gId# = 486
+		Seg  91 : St = 2229, En = 2229, D =  -8425, RO =     0, gId# = N/A
+		Seg  92 : St = 222B, En = 222B, D =  -8591, RO =     0, gId# = N/A
+		Seg  93 : St = 2248, En = 2248, D =  -8609, RO =     0, gId# = N/A
+		Seg  94 : St = 2260, En = 2261, D =      0, RO =  1102, gId# = 488
+		Seg  95 : St = 2264, En = 2265, D =  -8656, RO =     0, gId# = N/A
+		Seg  96 : St = 2302, En = 2302, D =  -8640, RO =     0, gId# = N/A
+		Seg  97 : St = 2310, En = 2310, D =  -8653, RO =     0, gId# = N/A
+		Seg  98 : St = 2320, En = 2321, D =  -8668, RO =     0, gId# = N/A
+		Seg  99 : St = 2500, En = 2500, D =  -9146, RO =     0, gId# = N/A
+		Seg 100 : St = 2502, En = 2502, D =  -9147, RO =     0, gId# = N/A
+		Seg 101 : St = 250C, En = 250C, D =  -9156, RO =     0, gId# = N/A
+		Seg 102 : St = 2510, En = 2510, D =  -9159, RO =     0, gId# = N/A
+		Seg 103 : St = 2514, En = 2514, D =  -9162, RO =     0, gId# = N/A
+		Seg 104 : St = 2518, En = 2518, D =  -9165, RO =     0, gId# = N/A
+		Seg 105 : St = 251C, En = 251C, D =  -9168, RO =     0, gId# = N/A
+		Seg 106 : St = 2524, En = 2524, D =  -9175, RO =     0, gId# = N/A
+		Seg 107 : St = 252C, En = 252C, D =  -9182, RO =     0, gId# = N/A
+		Seg 108 : St = 2534, En = 2534, D =  -9189, RO =     0, gId# = N/A
+		Seg 109 : St = 253C, En = 253C, D =  -9196, RO =     0, gId# = N/A
+		Seg 110 : St = 2550, En = 256C, D =  -9215, RO =     0, gId# = N/A
+		Seg 111 : St = 2580, En = 2580, D =  -9234, RO =     0, gId# = N/A
+		Seg 112 : St = 2584, En = 2584, D =  -9237, RO =     0, gId# = N/A
+		Seg 113 : St = 2588, En = 2588, D =  -9240, RO =     0, gId# = N/A
+		Seg 114 : St = 258C, En = 258C, D =  -9243, RO =     0, gId# = N/A
+		Seg 115 : St = 2590, En = 2593, D =  -9246, RO =     0, gId# = N/A
+		Seg 116 : St = 25A0, En = 25A1, D =      0, RO =  1062, gId# = 490
+		Seg 117 : St = 25AA, En = 25AC, D =      0, RO =  1064, gId# = 492
+		Seg 118 : St = 25B2, En = 25B2, D =  -9274, RO =     0, gId# = N/A
+		Seg 119 : St = 25BA, En = 25BA, D =  -9281, RO =     0, gId# = N/A
+		Seg 120 : St = 25BC, En = 25BC, D =  -9282, RO =     0, gId# = N/A
+		Seg 121 : St = 25C4, En = 25C4, D =  -9289, RO =     0, gId# = N/A
+		Seg 122 : St = 25CA, En = 25CB, D =      0, RO =  1060, gId# = 495
+		Seg 123 : St = 25CF, En = 25CF, D =  -9275, RO =     0, gId# = N/A
+		Seg 124 : St = 25D8, En = 25D9, D =  -9307, RO =     0, gId# = N/A
+		Seg 125 : St = 25E6, En = 25E6, D =  -9297, RO =     0, gId# = N/A
+		Seg 126 : St = 263A, En = 263C, D =  -9403, RO =     0, gId# = N/A
+		Seg 127 : St = 2640, En = 2640, D =  -9406, RO =     0, gId# = N/A
+		Seg 128 : St = 2642, En = 2642, D =  -9407, RO =     0, gId# = N/A
+		Seg 129 : St = 2660, En = 2660, D =  -9436, RO =     0, gId# = N/A
+		Seg 130 : St = 2663, En = 2663, D =  -9438, RO =     0, gId# = N/A
+		Seg 131 : St = 2665, En = 2666, D =  -9439, RO =     0, gId# = N/A
+		Seg 132 : St = 266A, En = 266B, D =  -9442, RO =     0, gId# = N/A
+		Seg 133 : St = E801, En = E805, D =   6848, RO =     0, gId# = N/A
+		Seg 134 : St = E818, En = E818, D =   6906, RO =     0, gId# = N/A
+		Seg 135 : St = E83A, En = E83A, D =   6881, RO =     0, gId# = N/A
+		Seg 136 : St = F001, En = F002, D =   4286, RO =     0, gId# = N/A
+		Seg 137 : St = F004, En = F031, D =      0, RO =  1034, gId# = 497
+		Seg 138 : St = FB01, En = FB02, D =   1470, RO =     0, gId# = N/A
+		Seg 139 : St = FB20, En = FB20, D =   1958, RO =     0, gId# = N/A
+		Seg 140 : St = FB2A, En = FB36, D =   1949, RO =     0, gId# = N/A
+		Seg 141 : St = FB38, En = FB3C, D =   1948, RO =     0, gId# = N/A
+		Seg 142 : St = FB3E, En = FB3E, D =   1947, RO =     0, gId# = N/A
+		Seg 143 : St = FB40, En = FB41, D =   1946, RO =     0, gId# = N/A
+		Seg 144 : St = FB43, En = FB44, D =   1945, RO =     0, gId# = N/A
+		Seg 145 : St = FB46, En = FB4F, D =   1944, RO =     0, gId# = N/A
+		Seg 146 : St = FB56, En = FB59, D =   1993, RO =     0, gId# = N/A
+		Seg 147 : St = FB7A, En = FB7D, D =   1965, RO =     0, gId# = N/A
+		Seg 148 : St = FB8A, En = FB8B, D =   1953, RO =     0, gId# = N/A
+		Seg 149 : St = FB8E, En = FB95, D =   1951, RO =     0, gId# = N/A
+		Seg 150 : St = FBFC, En = FBFF, D =      0, RO =  1100, gId# = 543
+		Seg 151 : St = FC5E, En = FC62, D =   1769, RO =     0, gId# = N/A
+		Seg 152 : St = FD3E, En = FD3F, D =   1598, RO =     0, gId# = N/A
+		Seg 153 : St = FDF2, En = FDF2, D =   1421, RO =     0, gId# = N/A
+		Seg 154 : St = FE80, En = FEFC, D =   1280, RO =     0, gId# = N/A
+		Seg 155 : St = FFFC, En = FFFC, D =    867, RO =     0, gId# = N/A
+		Seg 156 : St = FFFF, En = FFFF, D =      1, RO =     0, gId# = N/A
+		glyphIdArray[0] =    3 (Offset = 04F0)
+		glyphIdArray[1] =  163 (Offset = 04F2)
+		glyphIdArray[2] =  132 (Offset = 04F4)
+		glyphIdArray[3] =  133 (Offset = 04F6)
+		glyphIdArray[4] =  862 (Offset = 04F8)
+		glyphIdArray[5] =  150 (Offset = 04FA)
+		glyphIdArray[6] =  230 (Offset = 04FC)
+		glyphIdArray[7] =  134 (Offset = 04FE)
+		glyphIdArray[8] =  142 (Offset = 0500)
+		glyphIdArray[9] =  139 (Offset = 0502)
+		glyphIdArray[10] =  157 (Offset = 0504)
+		glyphIdArray[11] =  169 (Offset = 0506)
+		glyphIdArray[12] =  164 (Offset = 0508)
+		glyphIdArray[13] =   16 (Offset = 050A)
+		glyphIdArray[14] =  138 (Offset = 050C)
+		glyphIdArray[15] =  256 (Offset = 050E)
+		glyphIdArray[16] =  131 (Offset = 0510)
+		glyphIdArray[17] =  147 (Offset = 0512)
+		glyphIdArray[18] =  240 (Offset = 0514)
+		glyphIdArray[19] =  241 (Offset = 0516)
+		glyphIdArray[20] =  141 (Offset = 0518)
+		glyphIdArray[21] =  151 (Offset = 051A)
+		glyphIdArray[22] =  136 (Offset = 051C)
+		glyphIdArray[23] =  194 (Offset = 051E)
+		glyphIdArray[24] =  220 (Offset = 0520)
+		glyphIdArray[25] =  239 (Offset = 0522)
+		glyphIdArray[26] =  158 (Offset = 0524)
+		glyphIdArray[27] =  170 (Offset = 0526)
+		glyphIdArray[28] =  243 (Offset = 0528)
+		glyphIdArray[29] =  242 (Offset = 052A)
+		glyphIdArray[30] =  244 (Offset = 052C)
+		glyphIdArray[31] =  162 (Offset = 052E)
+		glyphIdArray[32] =  172 (Offset = 0530)
+		glyphIdArray[33] =  200 (Offset = 0532)
+		glyphIdArray[34] =  198 (Offset = 0534)
+		glyphIdArray[35] =  173 (Offset = 0536)
+		glyphIdArray[36] =   98 (Offset = 0538)
+		glyphIdArray[37] =   99 (Offset = 053A)
+		glyphIdArray[38] =  144 (Offset = 053C)
+		glyphIdArray[39] =  100 (Offset = 053E)
+		glyphIdArray[40] =  202 (Offset = 0540)
+		glyphIdArray[41] =  101 (Offset = 0542)
+		glyphIdArray[42] =  199 (Offset = 0544)
+		glyphIdArray[43] =  201 (Offset = 0546)
+		glyphIdArray[44] =  206 (Offset = 0548)
+		glyphIdArray[45] =  203 (Offset = 054A)
+		glyphIdArray[46] =  204 (Offset = 054C)
+		glyphIdArray[47] =  205 (Offset = 054E)
+		glyphIdArray[48] =  231 (Offset = 0550)
+		glyphIdArray[49] =  102 (Offset = 0552)
+		glyphIdArray[50] =  209 (Offset = 0554)
+		glyphIdArray[51] =  207 (Offset = 0556)
+		glyphIdArray[52] =  208 (Offset = 0558)
+		glyphIdArray[53] =  174 (Offset = 055A)
+		glyphIdArray[54] =  103 (Offset = 055C)
+		glyphIdArray[55] =  238 (Offset = 055E)
+		glyphIdArray[56] =  145 (Offset = 0560)
+		glyphIdArray[57] =  212 (Offset = 0562)
+		glyphIdArray[58] =  210 (Offset = 0564)
+		glyphIdArray[59] =  211 (Offset = 0566)
+		glyphIdArray[60] =  104 (Offset = 0568)
+		glyphIdArray[61] =  233 (Offset = 056A)
+		glyphIdArray[62] =  235 (Offset = 056C)
+		glyphIdArray[63] =  137 (Offset = 056E)
+		glyphIdArray[64] =  106 (Offset = 0570)
+		glyphIdArray[65] =  105 (Offset = 0572)
+		glyphIdArray[66] =  107 (Offset = 0574)
+		glyphIdArray[67] =  109 (Offset = 0576)
+		glyphIdArray[68] =  108 (Offset = 0578)
+		glyphIdArray[69] =  110 (Offset = 057A)
+		glyphIdArray[70] =  160 (Offset = 057C)
+		glyphIdArray[71] =  111 (Offset = 057E)
+		glyphIdArray[72] =  113 (Offset = 0580)
+		glyphIdArray[73] =  112 (Offset = 0582)
+		glyphIdArray[74] =  114 (Offset = 0584)
+		glyphIdArray[75] =  115 (Offset = 0586)
+		glyphIdArray[76] =  117 (Offset = 0588)
+		glyphIdArray[77] =  116 (Offset = 058A)
+		glyphIdArray[78] =  118 (Offset = 058C)
+		glyphIdArray[79] =  119 (Offset = 058E)
+		glyphIdArray[80] =  232 (Offset = 0590)
+		glyphIdArray[81] =  120 (Offset = 0592)
+		glyphIdArray[82] =  122 (Offset = 0594)
+		glyphIdArray[83] =  121 (Offset = 0596)
+		glyphIdArray[84] =  123 (Offset = 0598)
+		glyphIdArray[85] =  125 (Offset = 059A)
+		glyphIdArray[86] =  124 (Offset = 059C)
+		glyphIdArray[87] =  183 (Offset = 059E)
+		glyphIdArray[88] =  161 (Offset = 05A0)
+		glyphIdArray[89] =  127 (Offset = 05A2)
+		glyphIdArray[90] =  126 (Offset = 05A4)
+		glyphIdArray[91] =  128 (Offset = 05A6)
+		glyphIdArray[92] =  129 (Offset = 05A8)
+		glyphIdArray[93] =  234 (Offset = 05AA)
+		glyphIdArray[94] =  236 (Offset = 05AC)
+		glyphIdArray[95] =  185 (Offset = 05AE)
+		glyphIdArray[96] =  406 (Offset = 05B0)
+		glyphIdArray[97] =  407 (Offset = 05B2)
+		glyphIdArray[98] =  258 (Offset = 05B4)
+		glyphIdArray[99] =  259 (Offset = 05B6)
+		glyphIdArray[100] =  260 (Offset = 05B8)
+		glyphIdArray[101] =  261 (Offset = 05BA)
+		glyphIdArray[102] =  251 (Offset = 05BC)
+		glyphIdArray[103] =  252 (Offset = 05BE)
+		glyphIdArray[104] =  408 (Offset = 05C0)
+		glyphIdArray[105] =  409 (Offset = 05C2)
+		glyphIdArray[106] =  410 (Offset = 05C4)
+		glyphIdArray[107] =  411 (Offset = 05C6)
+		glyphIdArray[108] =  253 (Offset = 05C8)
+		glyphIdArray[109] =  254 (Offset = 05CA)
+		glyphIdArray[110] =  262 (Offset = 05CC)
+		glyphIdArray[111] =  263 (Offset = 05CE)
+		glyphIdArray[112] =  264 (Offset = 05D0)
+		glyphIdArray[113] =  255 (Offset = 05D2)
+		glyphIdArray[114] =  412 (Offset = 05D4)
+		glyphIdArray[115] =  413 (Offset = 05D6)
+		glyphIdArray[116] =  414 (Offset = 05D8)
+		glyphIdArray[117] =  415 (Offset = 05DA)
+		glyphIdArray[118] =  416 (Offset = 05DC)
+		glyphIdArray[119] =  417 (Offset = 05DE)
+		glyphIdArray[120] =  265 (Offset = 05E0)
+		glyphIdArray[121] =  266 (Offset = 05E2)
+		glyphIdArray[122] =  267 (Offset = 05E4)
+		glyphIdArray[123] =  268 (Offset = 05E6)
+		glyphIdArray[124] =  418 (Offset = 05E8)
+		glyphIdArray[125] =  419 (Offset = 05EA)
+		glyphIdArray[126] =  246 (Offset = 05EC)
+		glyphIdArray[127] =  247 (Offset = 05EE)
+		glyphIdArray[128] =  420 (Offset = 05F0)
+		glyphIdArray[129] =  421 (Offset = 05F2)
+		glyphIdArray[130] =  422 (Offset = 05F4)
+		glyphIdArray[131] =  423 (Offset = 05F6)
+		glyphIdArray[132] =  424 (Offset = 05F8)
+		glyphIdArray[133] =  425 (Offset = 05FA)
+		glyphIdArray[134] =  426 (Offset = 05FC)
+		glyphIdArray[135] =  427 (Offset = 05FE)
+		glyphIdArray[136] =  428 (Offset = 0600)
+		glyphIdArray[137] =  429 (Offset = 0602)
+		glyphIdArray[138] =  430 (Offset = 0604)
+		glyphIdArray[139] =  431 (Offset = 0606)
+		glyphIdArray[140] =  432 (Offset = 0608)
+		glyphIdArray[141] =  433 (Offset = 060A)
+		glyphIdArray[142] =  434 (Offset = 060C)
+		glyphIdArray[143] =  435 (Offset = 060E)
+		glyphIdArray[144] =  248 (Offset = 0610)
+		glyphIdArray[145] =  213 (Offset = 0612)
+		glyphIdArray[146] =  394 (Offset = 0614)
+		glyphIdArray[147] =  395 (Offset = 0616)
+		glyphIdArray[148] =  436 (Offset = 0618)
+		glyphIdArray[149] =  437 (Offset = 061A)
+		glyphIdArray[150] =  438 (Offset = 061C)
+		glyphIdArray[151] =  439 (Offset = 061E)
+		glyphIdArray[152] =  440 (Offset = 0620)
+		glyphIdArray[153] =  269 (Offset = 0622)
+		glyphIdArray[154] =  270 (Offset = 0624)
+		glyphIdArray[155] =  441 (Offset = 0626)
+		glyphIdArray[156] =  442 (Offset = 0628)
+		glyphIdArray[157] =  271 (Offset = 062A)
+		glyphIdArray[158] =  272 (Offset = 062C)
+		glyphIdArray[159] =  273 (Offset = 062E)
+		glyphIdArray[160] =  274 (Offset = 0630)
+		glyphIdArray[161] =  224 (Offset = 0632)
+		glyphIdArray[162] =  225 (Offset = 0634)
+		glyphIdArray[163] =  275 (Offset = 0636)
+		glyphIdArray[164] =  276 (Offset = 0638)
+		glyphIdArray[165] =  443 (Offset = 063A)
+		glyphIdArray[166] =  444 (Offset = 063C)
+		glyphIdArray[167] =  277 (Offset = 063E)
+		glyphIdArray[168] =  278 (Offset = 0640)
+		glyphIdArray[169] =  396 (Offset = 0642)
+		glyphIdArray[170] =  445 (Offset = 0644)
+		glyphIdArray[171] =  446 (Offset = 0646)
+		glyphIdArray[172] =  447 (Offset = 0648)
+		glyphIdArray[173] =  448 (Offset = 064A)
+		glyphIdArray[174] =  449 (Offset = 064C)
+		glyphIdArray[175] =  450 (Offset = 064E)
+		glyphIdArray[176] =  279 (Offset = 0650)
+		glyphIdArray[177] =  280 (Offset = 0652)
+		glyphIdArray[178] =  175 (Offset = 0654)
+		glyphIdArray[179] =  176 (Offset = 0656)
+		glyphIdArray[180] =  281 (Offset = 0658)
+		glyphIdArray[181] =  282 (Offset = 065A)
+		glyphIdArray[182] =  451 (Offset = 065C)
+		glyphIdArray[183] =  452 (Offset = 065E)
+		glyphIdArray[184] =  283 (Offset = 0660)
+		glyphIdArray[185] =  284 (Offset = 0662)
+		glyphIdArray[186] =  285 (Offset = 0664)
+		glyphIdArray[187] =  286 (Offset = 0666)
+		glyphIdArray[188] =  453 (Offset = 0668)
+		glyphIdArray[189] =  454 (Offset = 066A)
+		glyphIdArray[190] =  249 (Offset = 066C)
+		glyphIdArray[191] =  250 (Offset = 066E)
+		glyphIdArray[192] =  226 (Offset = 0670)
+		glyphIdArray[193] =  227 (Offset = 0672)
+		glyphIdArray[194] =  287 (Offset = 0674)
+		glyphIdArray[195] =  288 (Offset = 0676)
+		glyphIdArray[196] =  289 (Offset = 0678)
+		glyphIdArray[197] =  290 (Offset = 067A)
+		glyphIdArray[198] =  455 (Offset = 067C)
+		glyphIdArray[199] =  456 (Offset = 067E)
+		glyphIdArray[200] =  457 (Offset = 0680)
+		glyphIdArray[201] =  458 (Offset = 0682)
+		glyphIdArray[202] =  459 (Offset = 0684)
+		glyphIdArray[203] =  460 (Offset = 0686)
+		glyphIdArray[204] =  461 (Offset = 0688)
+		glyphIdArray[205] =  462 (Offset = 068A)
+		glyphIdArray[206] =  291 (Offset = 068C)
+		glyphIdArray[207] =  292 (Offset = 068E)
+		glyphIdArray[208] =  293 (Offset = 0690)
+		glyphIdArray[209] =  294 (Offset = 0692)
+		glyphIdArray[210] =  463 (Offset = 0694)
+		glyphIdArray[211] =  464 (Offset = 0696)
+		glyphIdArray[212] =  465 (Offset = 0698)
+		glyphIdArray[213] =  466 (Offset = 069A)
+		glyphIdArray[214] =  467 (Offset = 069C)
+		glyphIdArray[215] =  468 (Offset = 069E)
+		glyphIdArray[216] =  186 (Offset = 06A0)
+		glyphIdArray[217] =  295 (Offset = 06A2)
+		glyphIdArray[218] =  296 (Offset = 06A4)
+		glyphIdArray[219] =  297 (Offset = 06A6)
+		glyphIdArray[220] =  298 (Offset = 06A8)
+		glyphIdArray[221] =  228 (Offset = 06AA)
+		glyphIdArray[222] =  229 (Offset = 06AC)
+		glyphIdArray[223] =  469 (Offset = 06AE)
+		glyphIdArray[224] =  214 (Offset = 06B0)
+		glyphIdArray[225] =  223 (Offset = 06B2)
+		glyphIdArray[226] =  217 (Offset = 06B4)
+		glyphIdArray[227] =  218 (Offset = 06B6)
+		glyphIdArray[228] =  219 (Offset = 06B8)
+		glyphIdArray[229] =  222 (Offset = 06BA)
+		glyphIdArray[230] =  215 (Offset = 06BC)
+		glyphIdArray[231] =  221 (Offset = 06BE)
+		glyphIdArray[232] =  495 (Offset = 06C0)
+		glyphIdArray[233] =  496 (Offset = 06C2)
+		glyphIdArray[234] =  497 (Offset = 06C4)
+		glyphIdArray[235] =  476 (Offset = 06C6)
+		glyphIdArray[236] =  498 (Offset = 06C8)
+		glyphIdArray[237] =  499 (Offset = 06CA)
+		glyphIdArray[238] =  500 (Offset = 06CC)
+		glyphIdArray[239] =  502 (Offset = 06CE)
+		glyphIdArray[240] =  503 (Offset = 06D0)
+		glyphIdArray[241] =  504 (Offset = 06D2)
+		glyphIdArray[242] =  505 (Offset = 06D4)
+		glyphIdArray[243] =  506 (Offset = 06D6)
+		glyphIdArray[244] =  299 (Offset = 06D8)
+		glyphIdArray[245] =  507 (Offset = 06DA)
+		glyphIdArray[246] =  508 (Offset = 06DC)
+		glyphIdArray[247] =  509 (Offset = 06DE)
+		glyphIdArray[248] =  510 (Offset = 06E0)
+		glyphIdArray[249] =  300 (Offset = 06E2)
+		glyphIdArray[250] =  511 (Offset = 06E4)
+		glyphIdArray[251] =  512 (Offset = 06E6)
+		glyphIdArray[252] =  513 (Offset = 06E8)
+		glyphIdArray[253] =  514 (Offset = 06EA)
+		glyphIdArray[254] =  515 (Offset = 06EC)
+		glyphIdArray[255] =  516 (Offset = 06EE)
+		glyphIdArray[256] =  517 (Offset = 06F0)
+		glyphIdArray[257] =  518 (Offset = 06F2)
+		glyphIdArray[258] =  519 (Offset = 06F4)
+		glyphIdArray[259] =  520 (Offset = 06F6)
+		glyphIdArray[260] =  521 (Offset = 06F8)
+		glyphIdArray[261] =  522 (Offset = 06FA)
+		glyphIdArray[262] =  301 (Offset = 06FC)
+		glyphIdArray[263] =  523 (Offset = 06FE)
+		glyphIdArray[264] =  524 (Offset = 0700)
+		glyphIdArray[265] =  525 (Offset = 0702)
+		glyphIdArray[266] =  526 (Offset = 0704)
+		glyphIdArray[267] =  527 (Offset = 0706)
+		glyphIdArray[268] =  528 (Offset = 0708)
+		glyphIdArray[269] =  529 (Offset = 070A)
+		glyphIdArray[270] =  530 (Offset = 070C)
+		glyphIdArray[271] =  531 (Offset = 070E)
+		glyphIdArray[272] =  532 (Offset = 0710)
+		glyphIdArray[273] =  302 (Offset = 0712)
+		glyphIdArray[274] =  533 (Offset = 0714)
+		glyphIdArray[275] =  534 (Offset = 0716)
+		glyphIdArray[276] =  303 (Offset = 0718)
+		glyphIdArray[277] =  304 (Offset = 071A)
+		glyphIdArray[278] =  535 (Offset = 071C)
+		glyphIdArray[279] =  536 (Offset = 071E)
+		glyphIdArray[280] =  537 (Offset = 0720)
+		glyphIdArray[281] =  538 (Offset = 0722)
+		glyphIdArray[282] =  539 (Offset = 0724)
+		glyphIdArray[283] =  540 (Offset = 0726)
+		glyphIdArray[284] =  541 (Offset = 0728)
+		glyphIdArray[285] =  542 (Offset = 072A)
+		glyphIdArray[286] =  543 (Offset = 072C)
+		glyphIdArray[287] =  544 (Offset = 072E)
+		glyphIdArray[288] =  652 (Offset = 0730)
+		glyphIdArray[289] =  545 (Offset = 0732)
+		glyphIdArray[290] =  546 (Offset = 0734)
+		glyphIdArray[291] =  305 (Offset = 0736)
+		glyphIdArray[292] =  306 (Offset = 0738)
+		glyphIdArray[293] =  547 (Offset = 073A)
+		glyphIdArray[294] =  307 (Offset = 073C)
+		glyphIdArray[295] =  548 (Offset = 073E)
+		glyphIdArray[296] =  549 (Offset = 0740)
+		glyphIdArray[297] =  550 (Offset = 0742)
+		glyphIdArray[298] =  551 (Offset = 0744)
+		glyphIdArray[299] =  552 (Offset = 0746)
+		glyphIdArray[300] =  553 (Offset = 0748)
+		glyphIdArray[301] =  554 (Offset = 074A)
+		glyphIdArray[302] =  555 (Offset = 074C)
+		glyphIdArray[303] =  648 (Offset = 074E)
+		glyphIdArray[304] =  649 (Offset = 0750)
+		glyphIdArray[305] = 1296 (Offset = 0752)
+		glyphIdArray[306] = 1297 (Offset = 0754)
+		glyphIdArray[307] =  751 (Offset = 0756)
+		glyphIdArray[308] =  897 (Offset = 0758)
+		glyphIdArray[309] =  899 (Offset = 075A)
+		glyphIdArray[310] =  901 (Offset = 075C)
+		glyphIdArray[311] =  903 (Offset = 075E)
+		glyphIdArray[312] =  905 (Offset = 0760)
+		glyphIdArray[313] =  909 (Offset = 0762)
+		glyphIdArray[314] =  911 (Offset = 0764)
+		glyphIdArray[315] =  915 (Offset = 0766)
+		glyphIdArray[316] =  917 (Offset = 0768)
+		glyphIdArray[317] =  921 (Offset = 076A)
+		glyphIdArray[318] =  925 (Offset = 076C)
+		glyphIdArray[319] =  929 (Offset = 076E)
+		glyphIdArray[320] =  933 (Offset = 0770)
+		glyphIdArray[321] =  937 (Offset = 0772)
+		glyphIdArray[322] =  939 (Offset = 0774)
+		glyphIdArray[323] =  941 (Offset = 0776)
+		glyphIdArray[324] =  943 (Offset = 0778)
+		glyphIdArray[325] =  945 (Offset = 077A)
+		glyphIdArray[326] =  949 (Offset = 077C)
+		glyphIdArray[327] =  953 (Offset = 077E)
+		glyphIdArray[328] =  957 (Offset = 0780)
+		glyphIdArray[329] =  961 (Offset = 0782)
+		glyphIdArray[330] =  965 (Offset = 0784)
+		glyphIdArray[331] =  969 (Offset = 0786)
+		glyphIdArray[332] =  973 (Offset = 0788)
+		glyphIdArray[333] =  752 (Offset = 078A)
+		glyphIdArray[334] =  977 (Offset = 078C)
+		glyphIdArray[335] =  981 (Offset = 078E)
+		glyphIdArray[336] =  985 (Offset = 0790)
+		glyphIdArray[337] =  989 (Offset = 0792)
+		glyphIdArray[338] =  993 (Offset = 0794)
+		glyphIdArray[339] =  997 (Offset = 0796)
+		glyphIdArray[340] = 1001 (Offset = 0798)
+		glyphIdArray[341] = 1005 (Offset = 079A)
+		glyphIdArray[342] = 1007 (Offset = 079C)
+		glyphIdArray[343] = 1009 (Offset = 079E)
+		glyphIdArray[344] =  753 (Offset = 07A0)
+		glyphIdArray[345] =  754 (Offset = 07A2)
+		glyphIdArray[346] =  755 (Offset = 07A4)
+		glyphIdArray[347] =  756 (Offset = 07A6)
+		glyphIdArray[348] =  757 (Offset = 07A8)
+		glyphIdArray[349] =  758 (Offset = 07AA)
+		glyphIdArray[350] =  759 (Offset = 07AC)
+		glyphIdArray[351] =  760 (Offset = 07AE)
+		glyphIdArray[352] =  761 (Offset = 07B0)
+		glyphIdArray[353] =  762 (Offset = 07B2)
+		glyphIdArray[354] =  763 (Offset = 07B4)
+		glyphIdArray[355] =  764 (Offset = 07B6)
+		glyphIdArray[356] =  778 (Offset = 07B8)
+		glyphIdArray[357] =  779 (Offset = 07BA)
+		glyphIdArray[358] =  780 (Offset = 07BC)
+		glyphIdArray[359] =  768 (Offset = 07BE)
+		glyphIdArray[360] =  769 (Offset = 07C0)
+		glyphIdArray[361] =  770 (Offset = 07C2)
+		glyphIdArray[362] = 1188 (Offset = 07C4)
+		glyphIdArray[363] = 1189 (Offset = 07C6)
+		glyphIdArray[364] = 1190 (Offset = 07C8)
+		glyphIdArray[365] = 1191 (Offset = 07CA)
+		glyphIdArray[366] = 1192 (Offset = 07CC)
+		glyphIdArray[367] = 1193 (Offset = 07CE)
+		glyphIdArray[368] = 1194 (Offset = 07D0)
+		glyphIdArray[369] = 1195 (Offset = 07D2)
+		glyphIdArray[370] = 1196 (Offset = 07D4)
+		glyphIdArray[371] = 1197 (Offset = 07D6)
+		glyphIdArray[372] = 1198 (Offset = 07D8)
+		glyphIdArray[373] = 1199 (Offset = 07DA)
+		glyphIdArray[374] = 1200 (Offset = 07DC)
+		glyphIdArray[375] = 1201 (Offset = 07DE)
+		glyphIdArray[376] = 1202 (Offset = 07E0)
+		glyphIdArray[377] = 1203 (Offset = 07E2)
+		glyphIdArray[378] = 1204 (Offset = 07E4)
+		glyphIdArray[379] = 1205 (Offset = 07E6)
+		glyphIdArray[380] = 1206 (Offset = 07E8)
+		glyphIdArray[381] = 1207 (Offset = 07EA)
+		glyphIdArray[382] = 1208 (Offset = 07EC)
+		glyphIdArray[383] = 1209 (Offset = 07EE)
+		glyphIdArray[384] = 1210 (Offset = 07F0)
+		glyphIdArray[385] = 1211 (Offset = 07F2)
+		glyphIdArray[386] = 1212 (Offset = 07F4)
+		glyphIdArray[387] = 1213 (Offset = 07F6)
+		glyphIdArray[388] = 1214 (Offset = 07F8)
+		glyphIdArray[389] = 1215 (Offset = 07FA)
+		glyphIdArray[390] = 1216 (Offset = 07FC)
+		glyphIdArray[391] = 1217 (Offset = 07FE)
+		glyphIdArray[392] = 1218 (Offset = 0800)
+		glyphIdArray[393] = 1219 (Offset = 0802)
+		glyphIdArray[394] = 1220 (Offset = 0804)
+		glyphIdArray[395] = 1221 (Offset = 0806)
+		glyphIdArray[396] = 1222 (Offset = 0808)
+		glyphIdArray[397] = 1223 (Offset = 080A)
+		glyphIdArray[398] = 1224 (Offset = 080C)
+		glyphIdArray[399] = 1225 (Offset = 080E)
+		glyphIdArray[400] = 1226 (Offset = 0810)
+		glyphIdArray[401] = 1227 (Offset = 0812)
+		glyphIdArray[402] = 1228 (Offset = 0814)
+		glyphIdArray[403] = 1229 (Offset = 0816)
+		glyphIdArray[404] = 1230 (Offset = 0818)
+		glyphIdArray[405] = 1231 (Offset = 081A)
+		glyphIdArray[406] = 1232 (Offset = 081C)
+		glyphIdArray[407] = 1233 (Offset = 081E)
+		glyphIdArray[408] = 1234 (Offset = 0820)
+		glyphIdArray[409] = 1235 (Offset = 0822)
+		glyphIdArray[410] = 1236 (Offset = 0824)
+		glyphIdArray[411] = 1237 (Offset = 0826)
+		glyphIdArray[412] = 1238 (Offset = 0828)
+		glyphIdArray[413] = 1239 (Offset = 082A)
+		glyphIdArray[414] = 1240 (Offset = 082C)
+		glyphIdArray[415] = 1241 (Offset = 082E)
+		glyphIdArray[416] = 1242 (Offset = 0830)
+		glyphIdArray[417] = 1243 (Offset = 0832)
+		glyphIdArray[418] = 1244 (Offset = 0834)
+		glyphIdArray[419] = 1245 (Offset = 0836)
+		glyphIdArray[420] = 1246 (Offset = 0838)
+		glyphIdArray[421] = 1247 (Offset = 083A)
+		glyphIdArray[422] = 1248 (Offset = 083C)
+		glyphIdArray[423] = 1249 (Offset = 083E)
+		glyphIdArray[424] = 1250 (Offset = 0840)
+		glyphIdArray[425] = 1251 (Offset = 0842)
+		glyphIdArray[426] = 1252 (Offset = 0844)
+		glyphIdArray[427] = 1253 (Offset = 0846)
+		glyphIdArray[428] = 1254 (Offset = 0848)
+		glyphIdArray[429] = 1255 (Offset = 084A)
+		glyphIdArray[430] = 1256 (Offset = 084C)
+		glyphIdArray[431] = 1257 (Offset = 084E)
+		glyphIdArray[432] = 1258 (Offset = 0850)
+		glyphIdArray[433] = 1259 (Offset = 0852)
+		glyphIdArray[434] = 1260 (Offset = 0854)
+		glyphIdArray[435] = 1261 (Offset = 0856)
+		glyphIdArray[436] = 1262 (Offset = 0858)
+		glyphIdArray[437] = 1263 (Offset = 085A)
+		glyphIdArray[438] = 1264 (Offset = 085C)
+		glyphIdArray[439] = 1265 (Offset = 085E)
+		glyphIdArray[440] = 1266 (Offset = 0860)
+		glyphIdArray[441] = 1267 (Offset = 0862)
+		glyphIdArray[442] = 1268 (Offset = 0864)
+		glyphIdArray[443] = 1269 (Offset = 0866)
+		glyphIdArray[444] =  483 (Offset = 0868)
+		glyphIdArray[445] =  484 (Offset = 086A)
+		glyphIdArray[446] = 1270 (Offset = 086C)
+		glyphIdArray[447] = 1271 (Offset = 086E)
+		glyphIdArray[448] = 1272 (Offset = 0870)
+		glyphIdArray[449] = 1273 (Offset = 0872)
+		glyphIdArray[450] = 1274 (Offset = 0874)
+		glyphIdArray[451] = 1275 (Offset = 0876)
+		glyphIdArray[452] =  177 (Offset = 0878)
+		glyphIdArray[453] =  178 (Offset = 087A)
+		glyphIdArray[454] =  650 (Offset = 087C)
+		glyphIdArray[455] =  308 (Offset = 087E)
+		glyphIdArray[456] =  181 (Offset = 0880)
+		glyphIdArray[457] =  182 (Offset = 0882)
+		glyphIdArray[458] =  195 (Offset = 0884)
+		glyphIdArray[459] =  485 (Offset = 0886)
+		glyphIdArray[460] =  179 (Offset = 0888)
+		glyphIdArray[461] =  180 (Offset = 088A)
+		glyphIdArray[462] =  196 (Offset = 088C)
+		glyphIdArray[463] =  130 (Offset = 088E)
+		glyphIdArray[464] =  193 (Offset = 0890)
+		glyphIdArray[465] =  135 (Offset = 0892)
+		glyphIdArray[466] =  846 (Offset = 0894)
+		glyphIdArray[467] =  847 (Offset = 0896)
+		glyphIdArray[468] =  850 (Offset = 0898)
+		glyphIdArray[469] =  848 (Offset = 089A)
+		glyphIdArray[470] =  849 (Offset = 089C)
+		glyphIdArray[471] =  853 (Offset = 089E)
+		glyphIdArray[472] =  854 (Offset = 08A0)
+		glyphIdArray[473] =  855 (Offset = 08A2)
+		glyphIdArray[474] =  856 (Offset = 08A4)
+		glyphIdArray[475] =  851 (Offset = 08A6)
+		glyphIdArray[476] =  852 (Offset = 08A8)
+		glyphIdArray[477] =  245 (Offset = 08AA)
+		glyphIdArray[478] =  487 (Offset = 08AC)
+		glyphIdArray[479] =  704 (Offset = 08AE)
+		glyphIdArray[480] = 1150 (Offset = 08B0)
+		glyphIdArray[481] =  188 (Offset = 08B2)
+		glyphIdArray[482] =  153 (Offset = 08B4)
+		glyphIdArray[483] =  237 (Offset = 08B6)
+		glyphIdArray[484] =  194 (Offset = 08B8)
+		glyphIdArray[485] =  165 (Offset = 08BA)
+		glyphIdArray[486] =  146 (Offset = 08BC)
+		glyphIdArray[487] =  319 (Offset = 08BE)
+		glyphIdArray[488] =  143 (Offset = 08C0)
+		glyphIdArray[489] =  321 (Offset = 08C2)
+		glyphIdArray[490] =  374 (Offset = 08C4)
+		glyphIdArray[491] =  401 (Offset = 08C6)
+		glyphIdArray[492] =  402 (Offset = 08C8)
+		glyphIdArray[493] =  403 (Offset = 08CA)
+		glyphIdArray[494] =  375 (Offset = 08CC)
+		glyphIdArray[495] =  184 (Offset = 08CE)
+		glyphIdArray[496] =  380 (Offset = 08D0)
+		glyphIdArray[497] =  493 (Offset = 08D2)
+		glyphIdArray[498] =  494 (Offset = 08D4)
+		glyphIdArray[499] = 1137 (Offset = 08D6)
+		glyphIdArray[500] = 1138 (Offset = 08D8)
+		glyphIdArray[501] = 1153 (Offset = 08DA)
+		glyphIdArray[502] = 1139 (Offset = 08DC)
+		glyphIdArray[503] =  857 (Offset = 08DE)
+		glyphIdArray[504] =  858 (Offset = 08E0)
+		glyphIdArray[505] =  859 (Offset = 08E2)
+		glyphIdArray[506] =  860 (Offset = 08E4)
+		glyphIdArray[507] =  861 (Offset = 08E6)
+		glyphIdArray[508] = 1156 (Offset = 08E8)
+		glyphIdArray[509] = 1141 (Offset = 08EA)
+		glyphIdArray[510] = 1143 (Offset = 08EC)
+		glyphIdArray[511] = 1157 (Offset = 08EE)
+		glyphIdArray[512] = 1142 (Offset = 08F0)
+		glyphIdArray[513] = 1158 (Offset = 08F2)
+		glyphIdArray[514] = 1145 (Offset = 08F4)
+		glyphIdArray[515] = 1159 (Offset = 08F6)
+		glyphIdArray[516] = 1160 (Offset = 08F8)
+		glyphIdArray[517] = 1161 (Offset = 08FA)
+		glyphIdArray[518] = 1162 (Offset = 08FC)
+		glyphIdArray[519] = 1163 (Offset = 08FE)
+		glyphIdArray[520] = 1164 (Offset = 0900)
+		glyphIdArray[521] = 1144 (Offset = 0902)
+		glyphIdArray[522] = 1172 (Offset = 0904)
+		glyphIdArray[523] = 1165 (Offset = 0906)
+		glyphIdArray[524] = 1166 (Offset = 0908)
+		glyphIdArray[525] = 1167 (Offset = 090A)
+		glyphIdArray[526] = 1168 (Offset = 090C)
+		glyphIdArray[527] = 1169 (Offset = 090E)
+		glyphIdArray[528] = 1174 (Offset = 0910)
+		glyphIdArray[529] = 1178 (Offset = 0912)
+		glyphIdArray[530] = 1179 (Offset = 0914)
+		glyphIdArray[531] = 1180 (Offset = 0916)
+		glyphIdArray[532] = 1181 (Offset = 0918)
+		glyphIdArray[533] = 1182 (Offset = 091A)
+		glyphIdArray[534] = 1175 (Offset = 091C)
+		glyphIdArray[535] = 1176 (Offset = 091E)
+		glyphIdArray[536] = 1177 (Offset = 0920)
+		glyphIdArray[537] = 1149 (Offset = 0922)
+		glyphIdArray[538] = 1183 (Offset = 0924)
+		glyphIdArray[539] = 1184 (Offset = 0926)
+		glyphIdArray[540] = 1185 (Offset = 0928)
+		glyphIdArray[541] = 1186 (Offset = 092A)
+		glyphIdArray[542] = 1187 (Offset = 092C)
+		glyphIdArray[543] =  821 (Offset = 092E)
+		glyphIdArray[544] =  822 (Offset = 0930)
+		glyphIdArray[545] = 1011 (Offset = 0932)
+		glyphIdArray[546] = 1012 (Offset = 0934)
+
+		Which Means:
+		   1. Char 0020 -> Index 3
+		      Char 0021 -> Index 4
+		      Char 0022 -> Index 5
+		      Char 0023 -> Index 6
+		      Char 0024 -> Index 7
+		      Char 0025 -> Index 8
+		      Char 0026 -> Index 9
+		      Char 0027 -> Index 10
+		      Char 0028 -> Index 11
+		      Char 0029 -> Index 12
+		      Char 002A -> Index 13
+		      Char 002B -> Index 14
+		      Char 002C -> Index 15
+		      Char 002D -> Index 16
+		      Char 002E -> Index 17
+		      Char 002F -> Index 18
+		      Char 0030 -> Index 19
+		      Char 0031 -> Index 20
+		      Char 0032 -> Index 21
+		      Char 0033 -> Index 22
+		      Char 0034 -> Index 23
+		      Char 0035 -> Index 24
+		      Char 0036 -> Index 25
+		      Char 0037 -> Index 26
+		      Char 0038 -> Index 27
+		      Char 0039 -> Index 28
+		      Char 003A -> Index 29
+		      Char 003B -> Index 30
+		      Char 003C -> Index 31
+		      Char 003D -> Index 32
+		      Char 003E -> Index 33
+		      Char 003F -> Index 34
+		      Char 0040 -> Index 35
+		      Char 0041 -> Index 36
+		      Char 0042 -> Index 37
+		      Char 0043 -> Index 38
+		      Char 0044 -> Index 39
+		      Char 0045 -> Index 40
+		      Char 0046 -> Index 41
+		      Char 0047 -> Index 42
+		      Char 0048 -> Index 43
+		      Char 0049 -> Index 44
+		      Char 004A -> Index 45
+		      Char 004B -> Index 46
+		      Char 004C -> Index 47
+		      Char 004D -> Index 48
+		      Char 004E -> Index 49
+		      Char 004F -> Index 50
+		      Char 0050 -> Index 51
+		      Char 0051 -> Index 52
+		      Char 0052 -> Index 53
+		      Char 0053 -> Index 54
+		      Char 0054 -> Index 55
+		      Char 0055 -> Index 56
+		      Char 0056 -> Index 57
+		      Char 0057 -> Index 58
+		      Char 0058 -> Index 59
+		      Char 0059 -> Index 60
+		      Char 005A -> Index 61
+		      Char 005B -> Index 62
+		      Char 005C -> Index 63
+		      Char 005D -> Index 64
+		      Char 005E -> Index 65
+		      Char 005F -> Index 66
+		      Char 0060 -> Index 67
+		      Char 0061 -> Index 68
+		      Char 0062 -> Index 69
+		      Char 0063 -> Index 70
+		      Char 0064 -> Index 71
+		      Char 0065 -> Index 72
+		      Char 0066 -> Index 73
+		      Char 0067 -> Index 74
+		      Char 0068 -> Index 75
+		      Char 0069 -> Index 76
+		      Char 006A -> Index 77
+		      Char 006B -> Index 78
+		      Char 006C -> Index 79
+		      Char 006D -> Index 80
+		      Char 006E -> Index 81
+		      Char 006F -> Index 82
+		      Char 0070 -> Index 83
+		      Char 0071 -> Index 84
+		      Char 0072 -> Index 85
+		      Char 0073 -> Index 86
+		      Char 0074 -> Index 87
+		      Char 0075 -> Index 88
+		      Char 0076 -> Index 89
+		      Char 0077 -> Index 90
+		      Char 0078 -> Index 91
+		      Char 0079 -> Index 92
+		      Char 007A -> Index 93
+		      Char 007B -> Index 94
+		      Char 007C -> Index 95
+		      Char 007D -> Index 96
+		      Char 007E -> Index 97
+		   2. Char 00A0 -> Index 3
+		      Char 00A1 -> Index 163
+		      Char 00A2 -> Index 132
+		      Char 00A3 -> Index 133
+		      Char 00A4 -> Index 862
+		      Char 00A5 -> Index 150
+		      Char 00A6 -> Index 230
+		      Char 00A7 -> Index 134
+		      Char 00A8 -> Index 142
+		      Char 00A9 -> Index 139
+		      Char 00AA -> Index 157
+		      Char 00AB -> Index 169
+		      Char 00AC -> Index 164
+		      Char 00AD -> Index 16
+		      Char 00AE -> Index 138
+		      Char 00AF -> Index 256
+		      Char 00B0 -> Index 131
+		      Char 00B1 -> Index 147
+		      Char 00B2 -> Index 240
+		      Char 00B3 -> Index 241
+		      Char 00B4 -> Index 141
+		      Char 00B5 -> Index 151
+		      Char 00B6 -> Index 136
+		      Char 00B7 -> Index 194
+		      Char 00B8 -> Index 220
+		      Char 00B9 -> Index 239
+		      Char 00BA -> Index 158
+		      Char 00BB -> Index 170
+		      Char 00BC -> Index 243
+		      Char 00BD -> Index 242
+		      Char 00BE -> Index 244
+		      Char 00BF -> Index 162
+		      Char 00C0 -> Index 172
+		      Char 00C1 -> Index 200
+		      Char 00C2 -> Index 198
+		      Char 00C3 -> Index 173
+		      Char 00C4 -> Index 98
+		      Char 00C5 -> Index 99
+		      Char 00C6 -> Index 144
+		      Char 00C7 -> Index 100
+		      Char 00C8 -> Index 202
+		      Char 00C9 -> Index 101
+		      Char 00CA -> Index 199
+		      Char 00CB -> Index 201
+		      Char 00CC -> Index 206
+		      Char 00CD -> Index 203
+		      Char 00CE -> Index 204
+		      Char 00CF -> Index 205
+		      Char 00D0 -> Index 231
+		      Char 00D1 -> Index 102
+		      Char 00D2 -> Index 209
+		      Char 00D3 -> Index 207
+		      Char 00D4 -> Index 208
+		      Char 00D5 -> Index 174
+		      Char 00D6 -> Index 103
+		      Char 00D7 -> Index 238
+		      Char 00D8 -> Index 145
+		      Char 00D9 -> Index 212
+		      Char 00DA -> Index 210
+		      Char 00DB -> Index 211
+		      Char 00DC -> Index 104
+		      Char 00DD -> Index 233
+		      Char 00DE -> Index 235
+		      Char 00DF -> Index 137
+		      Char 00E0 -> Index 106
+		      Char 00E1 -> Index 105
+		      Char 00E2 -> Index 107
+		      Char 00E3 -> Index 109
+		      Char 00E4 -> Index 108
+		      Char 00E5 -> Index 110
+		      Char 00E6 -> Index 160
+		      Char 00E7 -> Index 111
+		      Char 00E8 -> Index 113
+		      Char 00E9 -> Index 112
+		      Char 00EA -> Index 114
+		      Char 00EB -> Index 115
+		      Char 00EC -> Index 117
+		      Char 00ED -> Index 116
+		      Char 00EE -> Index 118
+		      Char 00EF -> Index 119
+		      Char 00F0 -> Index 232
+		      Char 00F1 -> Index 120
+		      Char 00F2 -> Index 122
+		      Char 00F3 -> Index 121
+		      Char 00F4 -> Index 123
+		      Char 00F5 -> Index 125
+		      Char 00F6 -> Index 124
+		      Char 00F7 -> Index 183
+		      Char 00F8 -> Index 161
+		      Char 00F9 -> Index 127
+		      Char 00FA -> Index 126
+		      Char 00FB -> Index 128
+		      Char 00FC -> Index 129
+		      Char 00FD -> Index 234
+		      Char 00FE -> Index 236
+		      Char 00FF -> Index 185
+		      Char 0100 -> Index 406
+		      Char 0101 -> Index 407
+		      Char 0102 -> Index 258
+		      Char 0103 -> Index 259
+		      Char 0104 -> Index 260
+		      Char 0105 -> Index 261
+		      Char 0106 -> Index 251
+		      Char 0107 -> Index 252
+		      Char 0108 -> Index 408
+		      Char 0109 -> Index 409
+		      Char 010A -> Index 410
+		      Char 010B -> Index 411
+		      Char 010C -> Index 253
+		      Char 010D -> Index 254
+		      Char 010E -> Index 262
+		      Char 010F -> Index 263
+		      Char 0110 -> Index 264
+		      Char 0111 -> Index 255
+		      Char 0112 -> Index 412
+		      Char 0113 -> Index 413
+		      Char 0114 -> Index 414
+		      Char 0115 -> Index 415
+		      Char 0116 -> Index 416
+		      Char 0117 -> Index 417
+		      Char 0118 -> Index 265
+		      Char 0119 -> Index 266
+		      Char 011A -> Index 267
+		      Char 011B -> Index 268
+		      Char 011C -> Index 418
+		      Char 011D -> Index 419
+		      Char 011E -> Index 246
+		      Char 011F -> Index 247
+		      Char 0120 -> Index 420
+		      Char 0121 -> Index 421
+		      Char 0122 -> Index 422
+		      Char 0123 -> Index 423
+		      Char 0124 -> Index 424
+		      Char 0125 -> Index 425
+		      Char 0126 -> Index 426
+		      Char 0127 -> Index 427
+		      Char 0128 -> Index 428
+		      Char 0129 -> Index 429
+		      Char 012A -> Index 430
+		      Char 012B -> Index 431
+		      Char 012C -> Index 432
+		      Char 012D -> Index 433
+		      Char 012E -> Index 434
+		      Char 012F -> Index 435
+		      Char 0130 -> Index 248
+		      Char 0131 -> Index 213
+		      Char 0132 -> Index 394
+		      Char 0133 -> Index 395
+		      Char 0134 -> Index 436
+		      Char 0135 -> Index 437
+		      Char 0136 -> Index 438
+		      Char 0137 -> Index 439
+		      Char 0138 -> Index 440
+		      Char 0139 -> Index 269
+		      Char 013A -> Index 270
+		      Char 013B -> Index 441
+		      Char 013C -> Index 442
+		      Char 013D -> Index 271
+		      Char 013E -> Index 272
+		      Char 013F -> Index 273
+		      Char 0140 -> Index 274
+		      Char 0141 -> Index 224
+		      Char 0142 -> Index 225
+		      Char 0143 -> Index 275
+		      Char 0144 -> Index 276
+		      Char 0145 -> Index 443
+		      Char 0146 -> Index 444
+		      Char 0147 -> Index 277
+		      Char 0148 -> Index 278
+		      Char 0149 -> Index 396
+		      Char 014A -> Index 445
+		      Char 014B -> Index 446
+		      Char 014C -> Index 447
+		      Char 014D -> Index 448
+		      Char 014E -> Index 449
+		      Char 014F -> Index 450
+		      Char 0150 -> Index 279
+		      Char 0151 -> Index 280
+		      Char 0152 -> Index 175
+		      Char 0153 -> Index 176
+		      Char 0154 -> Index 281
+		      Char 0155 -> Index 282
+		      Char 0156 -> Index 451
+		      Char 0157 -> Index 452
+		      Char 0158 -> Index 283
+		      Char 0159 -> Index 284
+		      Char 015A -> Index 285
+		      Char 015B -> Index 286
+		      Char 015C -> Index 453
+		      Char 015D -> Index 454
+		      Char 015E -> Index 249
+		      Char 015F -> Index 250
+		      Char 0160 -> Index 226
+		      Char 0161 -> Index 227
+		      Char 0162 -> Index 287
+		      Char 0163 -> Index 288
+		      Char 0164 -> Index 289
+		      Char 0165 -> Index 290
+		      Char 0166 -> Index 455
+		      Char 0167 -> Index 456
+		      Char 0168 -> Index 457
+		      Char 0169 -> Index 458
+		      Char 016A -> Index 459
+		      Char 016B -> Index 460
+		      Char 016C -> Index 461
+		      Char 016D -> Index 462
+		      Char 016E -> Index 291
+		      Char 016F -> Index 292
+		      Char 0170 -> Index 293
+		      Char 0171 -> Index 294
+		      Char 0172 -> Index 463
+		      Char 0173 -> Index 464
+		      Char 0174 -> Index 465
+		      Char 0175 -> Index 466
+		      Char 0176 -> Index 467
+		      Char 0177 -> Index 468
+		      Char 0178 -> Index 186
+		      Char 0179 -> Index 295
+		      Char 017A -> Index 296
+		      Char 017B -> Index 297
+		      Char 017C -> Index 298
+		      Char 017D -> Index 228
+		      Char 017E -> Index 229
+		      Char 017F -> Index 469
+		   3. Char 018F -> Index 1316
+		   4. Char 0192 -> Index 166
+		   5. Char 01A0 -> Index 1130
+		      Char 01A1 -> Index 1131
+		   6. Char 01AF -> Index 1132
+		      Char 01B0 -> Index 1133
+		   7. Char 01CD -> Index 1276
+		      Char 01CE -> Index 1277
+		      Char 01CF -> Index 1278
+		      Char 01D0 -> Index 1279
+		      Char 01D1 -> Index 1280
+		      Char 01D2 -> Index 1281
+		      Char 01D3 -> Index 1282
+		      Char 01D4 -> Index 1283
+		      Char 01D5 -> Index 1284
+		      Char 01D6 -> Index 1285
+		      Char 01D7 -> Index 1286
+		      Char 01D8 -> Index 1287
+		      Char 01D9 -> Index 1288
+		      Char 01DA -> Index 1289
+		      Char 01DB -> Index 1290
+		      Char 01DC -> Index 1291
+		   8. Char 01FA -> Index 470
+		      Char 01FB -> Index 471
+		      Char 01FC -> Index 472
+		      Char 01FD -> Index 473
+		      Char 01FE -> Index 474
+		      Char 01FF -> Index 475
+		   9. Char 0259 -> Index 1317
+		  10. Char 02C6 -> Index 214
+		      Char 02C7 -> Index 223
+		  11. Char 02C9 -> Index 216
+		  12. Char 02D8 -> Index 217
+		      Char 02D9 -> Index 218
+		      Char 02DA -> Index 219
+		      Char 02DB -> Index 222
+		      Char 02DC -> Index 215
+		      Char 02DD -> Index 221
+		  13. Char 0300 -> Index 1170
+		      Char 0301 -> Index 1171
+		  14. Char 0303 -> Index 1146
+		  15. Char 0309 -> Index 1140
+		  16. Char 0323 -> Index 1173
+		  17. Char 037E -> Index 30
+		  18. Char 0384 -> Index 495
+		      Char 0385 -> Index 496
+		      Char 0386 -> Index 497
+		      Char 0387 -> Index 476
+		      Char 0388 -> Index 498
+		      Char 0389 -> Index 499
+		      Char 038A -> Index 500
+		  19. Char 038C -> Index 501
+		  20. Char 038E -> Index 502
+		      Char 038F -> Index 503
+		      Char 0390 -> Index 504
+		      Char 0391 -> Index 505
+		      Char 0392 -> Index 506
+		      Char 0393 -> Index 299
+		      Char 0394 -> Index 507
+		      Char 0395 -> Index 508
+		      Char 0396 -> Index 509
+		      Char 0397 -> Index 510
+		      Char 0398 -> Index 300
+		      Char 0399 -> Index 511
+		      Char 039A -> Index 512
+		      Char 039B -> Index 513
+		      Char 039C -> Index 514
+		      Char 039D -> Index 515
+		      Char 039E -> Index 516
+		      Char 039F -> Index 517
+		      Char 03A0 -> Index 518
+		      Char 03A1 -> Index 519
+		  21. Char 03A3 -> Index 520
+		      Char 03A4 -> Index 521
+		      Char 03A5 -> Index 522
+		      Char 03A6 -> Index 301
+		      Char 03A7 -> Index 523
+		      Char 03A8 -> Index 524
+		      Char 03A9 -> Index 525
+		      Char 03AA -> Index 526
+		      Char 03AB -> Index 527
+		      Char 03AC -> Index 528
+		      Char 03AD -> Index 529
+		      Char 03AE -> Index 530
+		      Char 03AF -> Index 531
+		      Char 03B0 -> Index 532
+		      Char 03B1 -> Index 302
+		      Char 03B2 -> Index 533
+		      Char 03B3 -> Index 534
+		      Char 03B4 -> Index 303
+		      Char 03B5 -> Index 304
+		      Char 03B6 -> Index 535
+		      Char 03B7 -> Index 536
+		      Char 03B8 -> Index 537
+		      Char 03B9 -> Index 538
+		      Char 03BA -> Index 539
+		      Char 03BB -> Index 540
+		      Char 03BC -> Index 541
+		      Char 03BD -> Index 542
+		      Char 03BE -> Index 543
+		      Char 03BF -> Index 544
+		      Char 03C0 -> Index 652
+		      Char 03C1 -> Index 545
+		      Char 03C2 -> Index 546
+		      Char 03C3 -> Index 305
+		      Char 03C4 -> Index 306
+		      Char 03C5 -> Index 547
+		      Char 03C6 -> Index 307
+		      Char 03C7 -> Index 548
+		      Char 03C8 -> Index 549
+		      Char 03C9 -> Index 550
+		      Char 03CA -> Index 551
+		      Char 03CB -> Index 552
+		      Char 03CC -> Index 553
+		      Char 03CD -> Index 554
+		      Char 03CE -> Index 555
+		  22. Char 0401 -> Index 556
+		      Char 0402 -> Index 557
+		      Char 0403 -> Index 558
+		      Char 0404 -> Index 559
+		      Char 0405 -> Index 560
+		      Char 0406 -> Index 561
+		      Char 0407 -> Index 562
+		      Char 0408 -> Index 563
+		      Char 0409 -> Index 564
+		      Char 040A -> Index 565
+		      Char 040B -> Index 566
+		      Char 040C -> Index 567
+		  23. Char 040E -> Index 568
+		      Char 040F -> Index 569
+		      Char 0410 -> Index 570
+		      Char 0411 -> Index 571
+		      Char 0412 -> Index 572
+		      Char 0413 -> Index 573
+		      Char 0414 -> Index 574
+		      Char 0415 -> Index 575
+		      Char 0416 -> Index 576
+		      Char 0417 -> Index 577
+		      Char 0418 -> Index 578
+		      Char 0419 -> Index 579
+		      Char 041A -> Index 580
+		      Char 041B -> Index 581
+		      Char 041C -> Index 582
+		      Char 041D -> Index 583
+		      Char 041E -> Index 584
+		      Char 041F -> Index 585
+		      Char 0420 -> Index 586
+		      Char 0421 -> Index 587
+		      Char 0422 -> Index 588
+		      Char 0423 -> Index 589
+		      Char 0424 -> Index 590
+		      Char 0425 -> Index 591
+		      Char 0426 -> Index 592
+		      Char 0427 -> Index 593
+		      Char 0428 -> Index 594
+		      Char 0429 -> Index 595
+		      Char 042A -> Index 596
+		      Char 042B -> Index 597
+		      Char 042C -> Index 598
+		      Char 042D -> Index 599
+		      Char 042E -> Index 600
+		      Char 042F -> Index 601
+		      Char 0430 -> Index 602
+		      Char 0431 -> Index 603
+		      Char 0432 -> Index 604
+		      Char 0433 -> Index 605
+		      Char 0434 -> Index 606
+		      Char 0435 -> Index 607
+		      Char 0436 -> Index 608
+		      Char 0437 -> Index 609
+		      Char 0438 -> Index 610
+		      Char 0439 -> Index 611
+		      Char 043A -> Index 612
+		      Char 043B -> Index 613
+		      Char 043C -> Index 614
+		      Char 043D -> Index 615
+		      Char 043E -> Index 616
+		      Char 043F -> Index 617
+		      Char 0440 -> Index 618
+		      Char 0441 -> Index 619
+		      Char 0442 -> Index 620
+		      Char 0443 -> Index 621
+		      Char 0444 -> Index 622
+		      Char 0445 -> Index 623
+		      Char 0446 -> Index 624
+		      Char 0447 -> Index 625
+		      Char 0448 -> Index 626
+		      Char 0449 -> Index 627
+		      Char 044A -> Index 628
+		      Char 044B -> Index 629
+		      Char 044C -> Index 630
+		      Char 044D -> Index 631
+		      Char 044E -> Index 632
+		      Char 044F -> Index 633
+		  24. Char 0451 -> Index 634
+		      Char 0452 -> Index 635
+		      Char 0453 -> Index 636
+		      Char 0454 -> Index 637
+		      Char 0455 -> Index 638
+		      Char 0456 -> Index 639
+		      Char 0457 -> Index 640
+		      Char 0458 -> Index 641
+		      Char 0459 -> Index 642
+		      Char 045A -> Index 643
+		      Char 045B -> Index 644
+		      Char 045C -> Index 645
+		  25. Char 045E -> Index 646
+		      Char 045F -> Index 647
+		  26. Char 0490 -> Index 648
+		      Char 0491 -> Index 649
+		      Char 0492 -> Index 1296
+		      Char 0493 -> Index 1297
+		  27. Char 0496 -> Index 1298
+		      Char 0497 -> Index 1299
+		  28. Char 049A -> Index 1300
+		      Char 049B -> Index 1301
+		      Char 049C -> Index 1302
+		      Char 049D -> Index 1303
+		  29. Char 04A2 -> Index 1304
+		      Char 04A3 -> Index 1305
+		  30. Char 04AE -> Index 1306
+		      Char 04AF -> Index 1307
+		      Char 04B0 -> Index 1308
+		      Char 04B1 -> Index 1309
+		      Char 04B2 -> Index 1310
+		      Char 04B3 -> Index 1311
+		  31. Char 04B8 -> Index 1312
+		      Char 04B9 -> Index 1313
+		      Char 04BA -> Index 1314
+		      Char 04BB -> Index 1315
+		  32. Char 04D8 -> Index 1316
+		      Char 04D9 -> Index 1317
+		  33. Char 04E8 -> Index 1318
+		      Char 04E9 -> Index 1319
+		  34. Char 05B0 -> Index 653
+		      Char 05B1 -> Index 654
+		      Char 05B2 -> Index 655
+		      Char 05B3 -> Index 656
+		      Char 05B4 -> Index 657
+		      Char 05B5 -> Index 658
+		      Char 05B6 -> Index 659
+		      Char 05B7 -> Index 660
+		      Char 05B8 -> Index 661
+		      Char 05B9 -> Index 662
+		  35. Char 05BB -> Index 663
+		      Char 05BC -> Index 664
+		      Char 05BD -> Index 665
+		      Char 05BE -> Index 666
+		      Char 05BF -> Index 667
+		      Char 05C0 -> Index 668
+		      Char 05C1 -> Index 669
+		      Char 05C2 -> Index 670
+		      Char 05C3 -> Index 671
+		  36. Char 05D0 -> Index 672
+		      Char 05D1 -> Index 673
+		      Char 05D2 -> Index 674
+		      Char 05D3 -> Index 675
+		      Char 05D4 -> Index 676
+		      Char 05D5 -> Index 677
+		      Char 05D6 -> Index 678
+		      Char 05D7 -> Index 679
+		      Char 05D8 -> Index 680
+		      Char 05D9 -> Index 681
+		      Char 05DA -> Index 682
+		      Char 05DB -> Index 683
+		      Char 05DC -> Index 684
+		      Char 05DD -> Index 685
+		      Char 05DE -> Index 686
+		      Char 05DF -> Index 687
+		      Char 05E0 -> Index 688
+		      Char 05E1 -> Index 689
+		      Char 05E2 -> Index 690
+		      Char 05E3 -> Index 691
+		      Char 05E4 -> Index 692
+		      Char 05E5 -> Index 693
+		      Char 05E6 -> Index 694
+		      Char 05E7 -> Index 695
+		      Char 05E8 -> Index 696
+		      Char 05E9 -> Index 697
+		      Char 05EA -> Index 698
+		  37. Char 05F0 -> Index 699
+		      Char 05F1 -> Index 700
+		      Char 05F2 -> Index 701
+		      Char 05F3 -> Index 702
+		      Char 05F4 -> Index 703
+		  38. Char 060C -> Index 748
+		  39. Char 061B -> Index 749
+		  40. Char 061F -> Index 750
+		  41. Char 0621 -> Index 751
+		      Char 0622 -> Index 897
+		      Char 0623 -> Index 899
+		      Char 0624 -> Index 901
+		      Char 0625 -> Index 903
+		      Char 0626 -> Index 905
+		      Char 0627 -> Index 909
+		      Char 0628 -> Index 911
+		      Char 0629 -> Index 915
+		      Char 062A -> Index 917
+		      Char 062B -> Index 921
+		      Char 062C -> Index 925
+		      Char 062D -> Index 929
+		      Char 062E -> Index 933
+		      Char 062F -> Index 937
+		      Char 0630 -> Index 939
+		      Char 0631 -> Index 941
+		      Char 0632 -> Index 943
+		      Char 0633 -> Index 945
+		      Char 0634 -> Index 949
+		      Char 0635 -> Index 953
+		      Char 0636 -> Index 957
+		      Char 0637 -> Index 961
+		      Char 0638 -> Index 965
+		      Char 0639 -> Index 969
+		      Char 063A -> Index 973
+		  42. Char 0640 -> Index 752
+		      Char 0641 -> Index 977
+		      Char 0642 -> Index 981
+		      Char 0643 -> Index 985
+		      Char 0644 -> Index 989
+		      Char 0645 -> Index 993
+		      Char 0646 -> Index 997
+		      Char 0647 -> Index 1001
+		      Char 0648 -> Index 1005
+		      Char 0649 -> Index 1007
+		      Char 064A -> Index 1009
+		      Char 064B -> Index 753
+		      Char 064C -> Index 754
+		      Char 064D -> Index 755
+		      Char 064E -> Index 756
+		      Char 064F -> Index 757
+		      Char 0650 -> Index 758
+		      Char 0651 -> Index 759
+		      Char 0652 -> Index 760
+		  43. Char 0660 -> Index 761
+		      Char 0661 -> Index 762
+		      Char 0662 -> Index 763
+		      Char 0663 -> Index 764
+		      Char 0664 -> Index 765
+		      Char 0665 -> Index 766
+		      Char 0666 -> Index 767
+		      Char 0667 -> Index 768
+		      Char 0668 -> Index 769
+		      Char 0669 -> Index 770
+		      Char 066A -> Index 771
+		      Char 066B -> Index 772
+		  44. Char 066D -> Index 773
+		  45. Char 0671 -> Index 797
+		  46. Char 067E -> Index 799
+		  47. Char 0686 -> Index 807
+		  48. Char 0698 -> Index 811
+		  49. Char 06A4 -> Index 803
+		  50. Char 06A9 -> Index 813
+		  51. Char 06AF -> Index 817
+		  52. Char 06CC -> Index 821
+		  53. Char 06D5 -> Index 776
+		  54. Char 06F0 -> Index 761
+		      Char 06F1 -> Index 762
+		      Char 06F2 -> Index 763
+		      Char 06F3 -> Index 764
+		      Char 06F4 -> Index 778
+		      Char 06F5 -> Index 779
+		      Char 06F6 -> Index 780
+		      Char 06F7 -> Index 768
+		      Char 06F8 -> Index 769
+		      Char 06F9 -> Index 770
+		  55. Char 1E80 -> Index 477
+		      Char 1E81 -> Index 478
+		      Char 1E82 -> Index 479
+		      Char 1E83 -> Index 480
+		      Char 1E84 -> Index 481
+		      Char 1E85 -> Index 482
+		  56. Char 1EA0 -> Index 1188
+		      Char 1EA1 -> Index 1189
+		      Char 1EA2 -> Index 1190
+		      Char 1EA3 -> Index 1191
+		      Char 1EA4 -> Index 1192
+		      Char 1EA5 -> Index 1193
+		      Char 1EA6 -> Index 1194
+		      Char 1EA7 -> Index 1195
+		      Char 1EA8 -> Index 1196
+		      Char 1EA9 -> Index 1197
+		      Char 1EAA -> Index 1198
+		      Char 1EAB -> Index 1199
+		      Char 1EAC -> Index 1200
+		      Char 1EAD -> Index 1201
+		      Char 1EAE -> Index 1202
+		      Char 1EAF -> Index 1203
+		      Char 1EB0 -> Index 1204
+		      Char 1EB1 -> Index 1205
+		      Char 1EB2 -> Index 1206
+		      Char 1EB3 -> Index 1207
+		      Char 1EB4 -> Index 1208
+		      Char 1EB5 -> Index 1209
+		      Char 1EB6 -> Index 1210
+		      Char 1EB7 -> Index 1211
+		      Char 1EB8 -> Index 1212
+		      Char 1EB9 -> Index 1213
+		      Char 1EBA -> Index 1214
+		      Char 1EBB -> Index 1215
+		      Char 1EBC -> Index 1216
+		      Char 1EBD -> Index 1217
+		      Char 1EBE -> Index 1218
+		      Char 1EBF -> Index 1219
+		      Char 1EC0 -> Index 1220
+		      Char 1EC1 -> Index 1221
+		      Char 1EC2 -> Index 1222
+		      Char 1EC3 -> Index 1223
+		      Char 1EC4 -> Index 1224
+		      Char 1EC5 -> Index 1225
+		      Char 1EC6 -> Index 1226
+		      Char 1EC7 -> Index 1227
+		      Char 1EC8 -> Index 1228
+		      Char 1EC9 -> Index 1229
+		      Char 1ECA -> Index 1230
+		      Char 1ECB -> Index 1231
+		      Char 1ECC -> Index 1232
+		      Char 1ECD -> Index 1233
+		      Char 1ECE -> Index 1234
+		      Char 1ECF -> Index 1235
+		      Char 1ED0 -> Index 1236
+		      Char 1ED1 -> Index 1237
+		      Char 1ED2 -> Index 1238
+		      Char 1ED3 -> Index 1239
+		      Char 1ED4 -> Index 1240
+		      Char 1ED5 -> Index 1241
+		      Char 1ED6 -> Index 1242
+		      Char 1ED7 -> Index 1243
+		      Char 1ED8 -> Index 1244
+		      Char 1ED9 -> Index 1245
+		      Char 1EDA -> Index 1246
+		      Char 1EDB -> Index 1247
+		      Char 1EDC -> Index 1248
+		      Char 1EDD -> Index 1249
+		      Char 1EDE -> Index 1250
+		      Char 1EDF -> Index 1251
+		      Char 1EE0 -> Index 1252
+		      Char 1EE1 -> Index 1253
+		      Char 1EE2 -> Index 1254
+		      Char 1EE3 -> Index 1255
+		      Char 1EE4 -> Index 1256
+		      Char 1EE5 -> Index 1257
+		      Char 1EE6 -> Index 1258
+		      Char 1EE7 -> Index 1259
+		      Char 1EE8 -> Index 1260
+		      Char 1EE9 -> Index 1261
+		      Char 1EEA -> Index 1262
+		      Char 1EEB -> Index 1263
+		      Char 1EEC -> Index 1264
+		      Char 1EED -> Index 1265
+		      Char 1EEE -> Index 1266
+		      Char 1EEF -> Index 1267
+		      Char 1EF0 -> Index 1268
+		      Char 1EF1 -> Index 1269
+		      Char 1EF2 -> Index 483
+		      Char 1EF3 -> Index 484
+		      Char 1EF4 -> Index 1270
+		      Char 1EF5 -> Index 1271
+		      Char 1EF6 -> Index 1272
+		      Char 1EF7 -> Index 1273
+		      Char 1EF8 -> Index 1274
+		      Char 1EF9 -> Index 1275
+		  57. Char 200C -> Index 744
+		      Char 200D -> Index 745
+		      Char 200E -> Index 746
+		      Char 200F -> Index 747
+		  58. Char 2013 -> Index 177
+		      Char 2014 -> Index 178
+		      Char 2015 -> Index 650
+		  59. Char 2017 -> Index 308
+		      Char 2018 -> Index 181
+		      Char 2019 -> Index 182
+		      Char 201A -> Index 195
+		      Char 201B -> Index 485
+		      Char 201C -> Index 179
+		      Char 201D -> Index 180
+		      Char 201E -> Index 196
+		  60. Char 2020 -> Index 130
+		      Char 2021 -> Index 193
+		      Char 2022 -> Index 135
+		  61. Char 2026 -> Index 171
+		  62. Char 202A -> Index 846
+		      Char 202B -> Index 847
+		      Char 202C -> Index 850
+		      Char 202D -> Index 848
+		      Char 202E -> Index 849
+		  63. Char 2030 -> Index 197
+		  64. Char 2032 -> Index 397
+		      Char 2033 -> Index 398
+		  65. Char 2039 -> Index 189
+		      Char 203A -> Index 190
+		  66. Char 203C -> Index 309
+		  67. Char 203E -> Index 486
+		  68. Char 2044 -> Index 187
+		  69. Char 206A -> Index 853
+		      Char 206B -> Index 854
+		      Char 206C -> Index 855
+		      Char 206D -> Index 856
+		      Char 206E -> Index 851
+		      Char 206F -> Index 852
+		  70. Char 207F -> Index 310
+		  71. Char 20A3 -> Index 245
+		      Char 20A4 -> Index 487
+		  72. Char 20A7 -> Index 311
+		  73. Char 20AA -> Index 704
+		      Char 20AB -> Index 1150
+		      Char 20AC -> Index 188
+		  74. Char 2105 -> Index 399
+		  75. Char 2113 -> Index 400
+		  76. Char 2116 -> Index 651
+		  77. Char 2122 -> Index 140
+		  78. Char 2126 -> Index 159
+		  79. Char 212E -> Index 488
+		  80. Char 2153 -> Index 1151
+		      Char 2154 -> Index 1152
+		  81. Char 215B -> Index 489
+		      Char 215C -> Index 490
+		      Char 215D -> Index 491
+		      Char 215E -> Index 492
+		  82. Char 2190 -> Index 312
+		      Char 2191 -> Index 313
+		      Char 2192 -> Index 314
+		      Char 2193 -> Index 315
+		      Char 2194 -> Index 316
+		      Char 2195 -> Index 317
+		  83. Char 21A8 -> Index 318
+		  84. Char 2202 -> Index 152
+		  85. Char 2206 -> Index 168
+		  86. Char 220F -> Index 154
+		  87. Char 2211 -> Index 153
+		      Char 2212 -> Index 237
+		  88. Char 2215 -> Index 187
+		  89. Char 2219 -> Index 194
+		      Char 221A -> Index 165
+		  90. Char 221E -> Index 146
+		      Char 221F -> Index 319
+		  91. Char 2229 -> Index 320
+		  92. Char 222B -> Index 156
+		  93. Char 2248 -> Index 167
+		  94. Char 2260 -> Index 143
+		      Char 2261 -> Index 321
+		  95. Char 2264 -> Index 148
+		      Char 2265 -> Index 149
+		  96. Char 2302 -> Index 322
+		  97. Char 2310 -> Index 323
+		  98. Char 2320 -> Index 324
+		      Char 2321 -> Index 325
+		  99. Char 2500 -> Index 326
+		 100. Char 2502 -> Index 327
+		 101. Char 250C -> Index 328
+		 102. Char 2510 -> Index 329
+		 103. Char 2514 -> Index 330
+		 104. Char 2518 -> Index 331
+		 105. Char 251C -> Index 332
+		 106. Char 2524 -> Index 333
+		 107. Char 252C -> Index 334
+		 108. Char 2534 -> Index 335
+		 109. Char 253C -> Index 336
+		 110. Char 2550 -> Index 337
+		      Char 2551 -> Index 338
+		      Char 2552 -> Index 339
+		      Char 2553 -> Index 340
+		      Char 2554 -> Index 341
+		      Char 2555 -> Index 342
+		      Char 2556 -> Index 343
+		      Char 2557 -> Index 344
+		      Char 2558 -> Index 345
+		      Char 2559 -> Index 346
+		      Char 255A -> Index 347
+		      Char 255B -> Index 348
+		      Char 255C -> Index 349
+		      Char 255D -> Index 350
+		      Char 255E -> Index 351
+		      Char 255F -> Index 352
+		      Char 2560 -> Index 353
+		      Char 2561 -> Index 354
+		      Char 2562 -> Index 355
+		      Char 2563 -> Index 356
+		      Char 2564 -> Index 357
+		      Char 2565 -> Index 358
+		      Char 2566 -> Index 359
+		      Char 2567 -> Index 360
+		      Char 2568 -> Index 361
+		      Char 2569 -> Index 362
+		      Char 256A -> Index 363
+		      Char 256B -> Index 364
+		      Char 256C -> Index 365
+		 111. Char 2580 -> Index 366
+		 112. Char 2584 -> Index 367
+		 113. Char 2588 -> Index 368
+		 114. Char 258C -> Index 369
+		 115. Char 2590 -> Index 370
+		      Char 2591 -> Index 371
+		      Char 2592 -> Index 372
+		      Char 2593 -> Index 373
+		 116. Char 25A0 -> Index 374
+		      Char 25A1 -> Index 401
+		 117. Char 25AA -> Index 402
+		      Char 25AB -> Index 403
+		      Char 25AC -> Index 375
+		 118. Char 25B2 -> Index 376
+		 119. Char 25BA -> Index 377
+		 120. Char 25BC -> Index 378
+		 121. Char 25C4 -> Index 379
+		 122. Char 25CA -> Index 184
+		      Char 25CB -> Index 380
+		 123. Char 25CF -> Index 404
+		 124. Char 25D8 -> Index 381
+		      Char 25D9 -> Index 382
+		 125. Char 25E6 -> Index 405
+		 126. Char 263A -> Index 383
+		      Char 263B -> Index 384
+		      Char 263C -> Index 385
+		 127. Char 2640 -> Index 386
+		 128. Char 2642 -> Index 387
+		 129. Char 2660 -> Index 388
+		 130. Char 2663 -> Index 389
+		 131. Char 2665 -> Index 390
+		      Char 2666 -> Index 391
+		 132. Char 266A -> Index 392
+		      Char 266B -> Index 393
+		 133. Char E801 -> Index 705
+		      Char E802 -> Index 706
+		      Char E803 -> Index 707
+		      Char E804 -> Index 708
+		      Char E805 -> Index 709
+		 134. Char E818 -> Index 786
+		 135. Char E83A -> Index 795
+		 136. Char F001 -> Index 191
+		      Char F002 -> Index 192
+		 137. Char F004 -> Index 493
+		      Char F005 -> Index 494
+		      Char F006 -> Index 1137
+		      Char F007 -> Index 1138
+		      Char F008 -> Index 1153
+		      Char F009 -> Index 1139
+		      Char F00A -> Index 857
+		      Char F00B -> Index 858
+		      Char F00C -> Index 859
+		      Char F00D -> Index 860
+		      Char F00E -> Index 861
+		      Char F00F -> Index 1156
+		      Char F010 -> Index 1141
+		      Char F011 -> Index 1143
+		      Char F012 -> Index 1157
+		      Char F013 -> Index 1142
+		      Char F014 -> Index 1158
+		      Char F015 -> Index 1145
+		      Char F016 -> Index 1159
+		      Char F017 -> Index 1160
+		      Char F018 -> Index 1161
+		      Char F019 -> Index 1162
+		      Char F01A -> Index 1163
+		      Char F01B -> Index 1164
+		      Char F01C -> Index 1144
+		      Char F01D -> Index 1172
+		      Char F01E -> Index 1165
+		      Char F01F -> Index 1166
+		      Char F020 -> Index 1167
+		      Char F021 -> Index 1168
+		      Char F022 -> Index 1169
+		      Char F023 -> Index 1174
+		      Char F024 -> Index 1178
+		      Char F025 -> Index 1179
+		      Char F026 -> Index 1180
+		      Char F027 -> Index 1181
+		      Char F028 -> Index 1182
+		      Char F029 -> Index 1175
+		      Char F02A -> Index 1176
+		      Char F02B -> Index 1177
+		      Char F02C -> Index 1149
+		      Char F02D -> Index 1183
+		      Char F02E -> Index 1184
+		      Char F02F -> Index 1185
+		      Char F030 -> Index 1186
+		      Char F031 -> Index 1187
+		 138. Char FB01 -> Index 191
+		      Char FB02 -> Index 192
+		 139. Char FB20 -> Index 710
+		 140. Char FB2A -> Index 711
+		      Char FB2B -> Index 712
+		      Char FB2C -> Index 713
+		      Char FB2D -> Index 714
+		      Char FB2E -> Index 715
+		      Char FB2F -> Index 716
+		      Char FB30 -> Index 717
+		      Char FB31 -> Index 718
+		      Char FB32 -> Index 719
+		      Char FB33 -> Index 720
+		      Char FB34 -> Index 721
+		      Char FB35 -> Index 722
+		      Char FB36 -> Index 723
+		 141. Char FB38 -> Index 724
+		      Char FB39 -> Index 725
+		      Char FB3A -> Index 726
+		      Char FB3B -> Index 727
+		      Char FB3C -> Index 728
+		 142. Char FB3E -> Index 729
+		 143. Char FB40 -> Index 730
+		      Char FB41 -> Index 731
+		 144. Char FB43 -> Index 732
+		      Char FB44 -> Index 733
+		 145. Char FB46 -> Index 734
+		      Char FB47 -> Index 735
+		      Char FB48 -> Index 736
+		      Char FB49 -> Index 737
+		      Char FB4A -> Index 738
+		      Char FB4B -> Index 739
+		      Char FB4C -> Index 740
+		      Char FB4D -> Index 741
+		      Char FB4E -> Index 742
+		      Char FB4F -> Index 743
+		 146. Char FB56 -> Index 799
+		      Char FB57 -> Index 800
+		      Char FB58 -> Index 801
+		      Char FB59 -> Index 802
+		 147. Char FB7A -> Index 807
+		      Char FB7B -> Index 808
+		      Char FB7C -> Index 809
+		      Char FB7D -> Index 810
+		 148. Char FB8A -> Index 811
+		      Char FB8B -> Index 812
+		 149. Char FB8E -> Index 813
+		      Char FB8F -> Index 814
+		      Char FB90 -> Index 815
+		      Char FB91 -> Index 816
+		      Char FB92 -> Index 817
+		      Char FB93 -> Index 818
+		      Char FB94 -> Index 819
+		      Char FB95 -> Index 820
+		 150. Char FBFC -> Index 821
+		      Char FBFD -> Index 822
+		      Char FBFE -> Index 1011
+		      Char FBFF -> Index 1012
+		 151. Char FC5E -> Index 839
+		      Char FC5F -> Index 840
+		      Char FC60 -> Index 841
+		      Char FC61 -> Index 842
+		      Char FC62 -> Index 843
+		 152. Char FD3E -> Index 892
+		      Char FD3F -> Index 893
+		 153. Char FDF2 -> Index 895
+		 154. Char FE80 -> Index 896
+		      Char FE81 -> Index 897
+		      Char FE82 -> Index 898
+		      Char FE83 -> Index 899
+		      Char FE84 -> Index 900
+		      Char FE85 -> Index 901
+		      Char FE86 -> Index 902
+		      Char FE87 -> Index 903
+		      Char FE88 -> Index 904
+		      Char FE89 -> Index 905
+		      Char FE8A -> Index 906
+		      Char FE8B -> Index 907
+		      Char FE8C -> Index 908
+		      Char FE8D -> Index 909
+		      Char FE8E -> Index 910
+		      Char FE8F -> Index 911
+		      Char FE90 -> Index 912
+		      Char FE91 -> Index 913
+		      Char FE92 -> Index 914
+		      Char FE93 -> Index 915
+		      Char FE94 -> Index 916
+		      Char FE95 -> Index 917
+		      Char FE96 -> Index 918
+		      Char FE97 -> Index 919
+		      Char FE98 -> Index 920
+		      Char FE99 -> Index 921
+		      Char FE9A -> Index 922
+		      Char FE9B -> Index 923
+		      Char FE9C -> Index 924
+		      Char FE9D -> Index 925
+		      Char FE9E -> Index 926
+		      Char FE9F -> Index 927
+		      Char FEA0 -> Index 928
+		      Char FEA1 -> Index 929
+		      Char FEA2 -> Index 930
+		      Char FEA3 -> Index 931
+		      Char FEA4 -> Index 932
+		      Char FEA5 -> Index 933
+		      Char FEA6 -> Index 934
+		      Char FEA7 -> Index 935
+		      Char FEA8 -> Index 936
+		      Char FEA9 -> Index 937
+		      Char FEAA -> Index 938
+		      Char FEAB -> Index 939
+		      Char FEAC -> Index 940
+		      Char FEAD -> Index 941
+		      Char FEAE -> Index 942
+		      Char FEAF -> Index 943
+		      Char FEB0 -> Index 944
+		      Char FEB1 -> Index 945
+		      Char FEB2 -> Index 946
+		      Char FEB3 -> Index 947
+		      Char FEB4 -> Index 948
+		      Char FEB5 -> Index 949
+		      Char FEB6 -> Index 950
+		      Char FEB7 -> Index 951
+		      Char FEB8 -> Index 952
+		      Char FEB9 -> Index 953
+		      Char FEBA -> Index 954
+		      Char FEBB -> Index 955
+		      Char FEBC -> Index 956
+		      Char FEBD -> Index 957
+		      Char FEBE -> Index 958
+		      Char FEBF -> Index 959
+		      Char FEC0 -> Index 960
+		      Char FEC1 -> Index 961
+		      Char FEC2 -> Index 962
+		      Char FEC3 -> Index 963
+		      Char FEC4 -> Index 964
+		      Char FEC5 -> Index 965
+		      Char FEC6 -> Index 966
+		      Char FEC7 -> Index 967
+		      Char FEC8 -> Index 968
+		      Char FEC9 -> Index 969
+		      Char FECA -> Index 970
+		      Char FECB -> Index 971
+		      Char FECC -> Index 972
+		      Char FECD -> Index 973
+		      Char FECE -> Index 974
+		      Char FECF -> Index 975
+		      Char FED0 -> Index 976
+		      Char FED1 -> Index 977
+		      Char FED2 -> Index 978
+		      Char FED3 -> Index 979
+		      Char FED4 -> Index 980
+		      Char FED5 -> Index 981
+		      Char FED6 -> Index 982
+		      Char FED7 -> Index 983
+		      Char FED8 -> Index 984
+		      Char FED9 -> Index 985
+		      Char FEDA -> Index 986
+		      Char FEDB -> Index 987
+		      Char FEDC -> Index 988
+		      Char FEDD -> Index 989
+		      Char FEDE -> Index 990
+		      Char FEDF -> Index 991
+		      Char FEE0 -> Index 992
+		      Char FEE1 -> Index 993
+		      Char FEE2 -> Index 994
+		      Char FEE3 -> Index 995
+		      Char FEE4 -> Index 996
+		      Char FEE5 -> Index 997
+		      Char FEE6 -> Index 998
+		      Char FEE7 -> Index 999
+		      Char FEE8 -> Index 1000
+		      Char FEE9 -> Index 1001
+		      Char FEEA -> Index 1002
+		      Char FEEB -> Index 1003
+		      Char FEEC -> Index 1004
+		      Char FEED -> Index 1005
+		      Char FEEE -> Index 1006
+		      Char FEEF -> Index 1007
+		      Char FEF0 -> Index 1008
+		      Char FEF1 -> Index 1009
+		      Char FEF2 -> Index 1010
+		      Char FEF3 -> Index 1011
+		      Char FEF4 -> Index 1012
+		      Char FEF5 -> Index 1013
+		      Char FEF6 -> Index 1014
+		      Char FEF7 -> Index 1015
+		      Char FEF8 -> Index 1016
+		      Char FEF9 -> Index 1017
+		      Char FEFA -> Index 1018
+		      Char FEFB -> Index 1019
+		      Char FEFC -> Index 1020
+		 155. Char FFFC -> Index 863
+  
+Subtable  2.   Platform ID:   1
+               Specific ID:   0
+               'cmap' Offset: 0x00000952
+	      ->Format:	0 : Byte encoding table
+		Length:		262
+		Version:	0
+
+		Char   0 -> Index 1
+		Char   1 -> Index 0
+		Char   2 -> Index 0
+		Char   3 -> Index 0
+		Char   4 -> Index 0
+		Char   5 -> Index 0
+		Char   6 -> Index 0
+		Char   7 -> Index 0
+		Char   8 -> Index 1
+		Char   9 -> Index 2
+		Char  10 -> Index 0
+		Char  11 -> Index 0
+		Char  12 -> Index 0
+		Char  13 -> Index 2
+		Char  14 -> Index 0
+		Char  15 -> Index 0
+		Char  16 -> Index 0
+		Char  17 -> Index 0
+		Char  18 -> Index 0
+		Char  19 -> Index 0
+		Char  20 -> Index 0
+		Char  21 -> Index 0
+		Char  22 -> Index 0
+		Char  23 -> Index 0
+		Char  24 -> Index 0
+		Char  25 -> Index 0
+		Char  26 -> Index 0
+		Char  27 -> Index 0
+		Char  28 -> Index 0
+		Char  29 -> Index 1
+		Char  30 -> Index 0
+		Char  31 -> Index 0
+		Char  32 -> Index 3
+		Char  33 -> Index 4
+		Char  34 -> Index 5
+		Char  35 -> Index 6
+		Char  36 -> Index 7
+		Char  37 -> Index 8
+		Char  38 -> Index 9
+		Char  39 -> Index 10
+		Char  40 -> Index 11
+		Char  41 -> Index 12
+		Char  42 -> Index 13
+		Char  43 -> Index 14
+		Char  44 -> Index 15
+		Char  45 -> Index 16
+		Char  46 -> Index 17
+		Char  47 -> Index 18
+		Char  48 -> Index 19
+		Char  49 -> Index 20
+		Char  50 -> Index 21
+		Char  51 -> Index 22
+		Char  52 -> Index 23
+		Char  53 -> Index 24
+		Char  54 -> Index 25
+		Char  55 -> Index 26
+		Char  56 -> Index 27
+		Char  57 -> Index 28
+		Char  58 -> Index 29
+		Char  59 -> Index 30
+		Char  60 -> Index 31
+		Char  61 -> Index 32
+		Char  62 -> Index 33
+		Char  63 -> Index 34
+		Char  64 -> Index 35
+		Char  65 -> Index 36
+		Char  66 -> Index 37
+		Char  67 -> Index 38
+		Char  68 -> Index 39
+		Char  69 -> Index 40
+		Char  70 -> Index 41
+		Char  71 -> Index 42
+		Char  72 -> Index 43
+		Char  73 -> Index 44
+		Char  74 -> Index 45
+		Char  75 -> Index 46
+		Char  76 -> Index 47
+		Char  77 -> Index 48
+		Char  78 -> Index 49
+		Char  79 -> Index 50
+		Char  80 -> Index 51
+		Char  81 -> Index 52
+		Char  82 -> Index 53
+		Char  83 -> Index 54
+		Char  84 -> Index 55
+		Char  85 -> Index 56
+		Char  86 -> Index 57
+		Char  87 -> Index 58
+		Char  88 -> Index 59
+		Char  89 -> Index 60
+		Char  90 -> Index 61
+		Char  91 -> Index 62
+		Char  92 -> Index 63
+		Char  93 -> Index 64
+		Char  94 -> Index 65
+		Char  95 -> Index 66
+		Char  96 -> Index 67
+		Char  97 -> Index 68
+		Char  98 -> Index 69
+		Char  99 -> Index 70
+		Char 100 -> Index 71
+		Char 101 -> Index 72
+		Char 102 -> Index 73
+		Char 103 -> Index 74
+		Char 104 -> Index 75
+		Char 105 -> Index 76
+		Char 106 -> Index 77
+		Char 107 -> Index 78
+		Char 108 -> Index 79
+		Char 109 -> Index 80
+		Char 110 -> Index 81
+		Char 111 -> Index 82
+		Char 112 -> Index 83
+		Char 113 -> Index 84
+		Char 114 -> Index 85
+		Char 115 -> Index 86
+		Char 116 -> Index 87
+		Char 117 -> Index 88
+		Char 118 -> Index 89
+		Char 119 -> Index 90
+		Char 120 -> Index 91
+		Char 121 -> Index 92
+		Char 122 -> Index 93
+		Char 123 -> Index 94
+		Char 124 -> Index 95
+		Char 125 -> Index 96
+		Char 126 -> Index 97
+		Char 127 -> Index 0
+		Char 128 -> Index 98
+		Char 129 -> Index 99
+		Char 130 -> Index 100
+		Char 131 -> Index 101
+		Char 132 -> Index 102
+		Char 133 -> Index 103
+		Char 134 -> Index 104
+		Char 135 -> Index 105
+		Char 136 -> Index 106
+		Char 137 -> Index 107
+		Char 138 -> Index 108
+		Char 139 -> Index 109
+		Char 140 -> Index 110
+		Char 141 -> Index 111
+		Char 142 -> Index 112
+		Char 143 -> Index 113
+		Char 144 -> Index 114
+		Char 145 -> Index 115
+		Char 146 -> Index 116
+		Char 147 -> Index 117
+		Char 148 -> Index 118
+		Char 149 -> Index 119
+		Char 150 -> Index 120
+		Char 151 -> Index 121
+		Char 152 -> Index 122
+		Char 153 -> Index 123
+		Char 154 -> Index 124
+		Char 155 -> Index 125
+		Char 156 -> Index 126
+		Char 157 -> Index 127
+		Char 158 -> Index 128
+		Char 159 -> Index 129
+		Char 160 -> Index 130
+		Char 161 -> Index 131
+		Char 162 -> Index 132
+		Char 163 -> Index 133
+		Char 164 -> Index 134
+		Char 165 -> Index 135
+		Char 166 -> Index 136
+		Char 167 -> Index 137
+		Char 168 -> Index 138
+		Char 169 -> Index 139
+		Char 170 -> Index 140
+		Char 171 -> Index 141
+		Char 172 -> Index 142
+		Char 173 -> Index 143
+		Char 174 -> Index 144
+		Char 175 -> Index 145
+		Char 176 -> Index 146
+		Char 177 -> Index 147
+		Char 178 -> Index 148
+		Char 179 -> Index 149
+		Char 180 -> Index 150
+		Char 181 -> Index 151
+		Char 182 -> Index 152
+		Char 183 -> Index 153
+		Char 184 -> Index 154
+		Char 185 -> Index 155
+		Char 186 -> Index 156
+		Char 187 -> Index 157
+		Char 188 -> Index 158
+		Char 189 -> Index 159
+		Char 190 -> Index 160
+		Char 191 -> Index 161
+		Char 192 -> Index 162
+		Char 193 -> Index 163
+		Char 194 -> Index 164
+		Char 195 -> Index 165
+		Char 196 -> Index 166
+		Char 197 -> Index 167
+		Char 198 -> Index 168
+		Char 199 -> Index 169
+		Char 200 -> Index 170
+		Char 201 -> Index 171
+		Char 202 -> Index 3
+		Char 203 -> Index 172
+		Char 204 -> Index 173
+		Char 205 -> Index 174
+		Char 206 -> Index 175
+		Char 207 -> Index 176
+		Char 208 -> Index 177
+		Char 209 -> Index 178
+		Char 210 -> Index 179
+		Char 211 -> Index 180
+		Char 212 -> Index 181
+		Char 213 -> Index 182
+		Char 214 -> Index 183
+		Char 215 -> Index 184
+		Char 216 -> Index 185
+		Char 217 -> Index 186
+		Char 218 -> Index 187
+		Char 219 -> Index 188
+		Char 220 -> Index 189
+		Char 221 -> Index 190
+		Char 222 -> Index 191
+		Char 223 -> Index 192
+		Char 224 -> Index 193
+		Char 225 -> Index 194
+		Char 226 -> Index 195
+		Char 227 -> Index 196
+		Char 228 -> Index 197
+		Char 229 -> Index 198
+		Char 230 -> Index 199
+		Char 231 -> Index 200
+		Char 232 -> Index 201
+		Char 233 -> Index 202
+		Char 234 -> Index 203
+		Char 235 -> Index 204
+		Char 236 -> Index 205
+		Char 237 -> Index 206
+		Char 238 -> Index 207
+		Char 239 -> Index 208
+		Char 240 -> Index 0
+		Char 241 -> Index 209
+		Char 242 -> Index 210
+		Char 243 -> Index 211
+		Char 244 -> Index 212
+		Char 245 -> Index 213
+		Char 246 -> Index 214
+		Char 247 -> Index 215
+		Char 248 -> Index 216
+		Char 249 -> Index 217
+		Char 250 -> Index 218
+		Char 251 -> Index 219
+		Char 252 -> Index 220
+		Char 253 -> Index 221
+		Char 254 -> Index 222
+		Char 255 -> Index 223
+  
+Subtable  3.   Platform ID:   3
+               Specific ID:   1
+               'cmap' Offset: 0x00000A58
+	      ->Format:	4 : Segment mapping to delta values
+		Length:		2358
+		Version:	0
+		segCount:	156  (X2 = 312)
+		searchRange:	256
+		entrySelector:	7
+		rangeShift:	56
+		Seg   1 : St = 0020, En = 007E, D =    -29, RO =     0, gId# = N/A
+		Seg   2 : St = 00A0, En = 017F, D =      0, RO =   310, gId# = 0
+		Seg   3 : St = 018F, En = 018F, D =    917, RO =     0, gId# = N/A
+		Seg   4 : St = 0192, En = 0192, D =   -236, RO =     0, gId# = N/A
+		Seg   5 : St = 01A0, En = 01A1, D =    714, RO =     0, gId# = N/A
+		Seg   6 : St = 01AF, En = 01B0, D =    701, RO =     0, gId# = N/A
+		Seg   7 : St = 01CD, En = 01DC, D =    815, RO =     0, gId# = N/A
+		Seg   8 : St = 01FA, En = 01FF, D =    -36, RO =     0, gId# = N/A
+		Seg   9 : St = 0259, En = 0259, D =    716, RO =     0, gId# = N/A
+		Seg  10 : St = 02C6, En = 02C7, D =      0, RO =   742, gId# = 224
+		Seg  11 : St = 02C9, En = 02C9, D =   -497, RO =     0, gId# = N/A
+		Seg  12 : St = 02D8, En = 02DD, D =      0, RO =   742, gId# = 226
+		Seg  13 : St = 0300, En = 0301, D =    402, RO =     0, gId# = N/A
+		Seg  14 : St = 0303, En = 0303, D =    375, RO =     0, gId# = N/A
+		Seg  15 : St = 0309, En = 0309, D =    363, RO =     0, gId# = N/A
+		Seg  16 : St = 0323, En = 0323, D =    370, RO =     0, gId# = N/A
+		Seg  17 : St = 037E, En = 037E, D =   -864, RO =     0, gId# = N/A
+		Seg  18 : St = 0384, En = 038A, D =      0, RO =   742, gId# = 232
+		Seg  19 : St = 038C, En = 038C, D =   -407, RO =     0, gId# = N/A
+		Seg  20 : St = 038E, En = 03A1, D =      0, RO =   752, gId# = 239
+		Seg  21 : St = 03A3, En = 03CE, D =      0, RO =   790, gId# = 259
+		Seg  22 : St = 0401, En = 040C, D =   -469, RO =     0, gId# = N/A
+		Seg  23 : St = 040E, En = 044F, D =   -470, RO =     0, gId# = N/A
+		Seg  24 : St = 0451, En = 045C, D =   -471, RO =     0, gId# = N/A
+		Seg  25 : St = 045E, En = 045F, D =   -472, RO =     0, gId# = N/A
+		Seg  26 : St = 0490, En = 0493, D =      0, RO =   868, gId# = 303
+		Seg  27 : St = 0496, En = 0497, D =    124, RO =     0, gId# = N/A
+		Seg  28 : St = 049A, En = 049D, D =    122, RO =     0, gId# = N/A
+		Seg  29 : St = 04A2, En = 04A3, D =    118, RO =     0, gId# = N/A
+		Seg  30 : St = 04AE, En = 04B3, D =    108, RO =     0, gId# = N/A
+		Seg  31 : St = 04B8, En = 04BB, D =    104, RO =     0, gId# = N/A
+		Seg  32 : St = 04D8, En = 04D9, D =     76, RO =     0, gId# = N/A
+		Seg  33 : St = 04E8, En = 04E9, D =     62, RO =     0, gId# = N/A
+		Seg  34 : St = 05B0, En = 05B9, D =   -803, RO =     0, gId# = N/A
+		Seg  35 : St = 05BB, En = 05C3, D =   -804, RO =     0, gId# = N/A
+		Seg  36 : St = 05D0, En = 05EA, D =   -816, RO =     0, gId# = N/A
+		Seg  37 : St = 05F0, En = 05F4, D =   -821, RO =     0, gId# = N/A
+		Seg  38 : St = 060C, En = 060C, D =   -800, RO =     0, gId# = N/A
+		Seg  39 : St = 061B, En = 061B, D =   -814, RO =     0, gId# = N/A
+		Seg  40 : St = 061F, En = 061F, D =   -817, RO =     0, gId# = N/A
+		Seg  41 : St = 0621, En = 063A, D =      0, RO =   846, gId# = 307
+		Seg  42 : St = 0640, En = 0652, D =      0, RO =   896, gId# = 333
+		Seg  43 : St = 0660, En = 066B, D =   -871, RO =     0, gId# = N/A
+		Seg  44 : St = 066D, En = 066D, D =   -872, RO =     0, gId# = N/A
+		Seg  45 : St = 0671, En = 0671, D =   -852, RO =     0, gId# = N/A
+		Seg  46 : St = 067E, En = 067E, D =   -863, RO =     0, gId# = N/A
+		Seg  47 : St = 0686, En = 0686, D =   -863, RO =     0, gId# = N/A
+		Seg  48 : St = 0698, En = 0698, D =   -877, RO =     0, gId# = N/A
+		Seg  49 : St = 06A4, En = 06A4, D =   -897, RO =     0, gId# = N/A
+		Seg  50 : St = 06A9, En = 06A9, D =   -892, RO =     0, gId# = N/A
+		Seg  51 : St = 06AF, En = 06AF, D =   -894, RO =     0, gId# = N/A
+		Seg  52 : St = 06CC, En = 06CC, D =   -919, RO =     0, gId# = N/A
+		Seg  53 : St = 06D5, En = 06D5, D =   -973, RO =     0, gId# = N/A
+		Seg  54 : St = 06F0, En = 06F9, D =      0, RO =   910, gId# = 352
+		Seg  55 : St = 1E80, En = 1E85, D =  -7331, RO =     0, gId# = N/A
+		Seg  56 : St = 1EA0, En = 1EF9, D =      0, RO =   926, gId# = 362
+		Seg  57 : St = 200C, En = 200F, D =  -7460, RO =     0, gId# = N/A
+		Seg  58 : St = 2013, En = 2015, D =      0, RO =  1102, gId# = 452
+		Seg  59 : St = 2017, En = 201E, D =      0, RO =  1106, gId# = 455
+		Seg  60 : St = 2020, En = 2022, D =      0, RO =  1120, gId# = 463
+		Seg  61 : St = 2026, En = 2026, D =  -8059, RO =     0, gId# = N/A
+		Seg  62 : St = 202A, En = 202E, D =      0, RO =  1122, gId# = 466
+		Seg  63 : St = 2030, En = 2030, D =  -8043, RO =     0, gId# = N/A
+		Seg  64 : St = 2032, En = 2033, D =  -7845, RO =     0, gId# = N/A
+		Seg  65 : St = 2039, En = 203A, D =  -8060, RO =     0, gId# = N/A
+		Seg  66 : St = 203C, En = 203C, D =  -7943, RO =     0, gId# = N/A
+		Seg  67 : St = 203E, En = 203E, D =  -7768, RO =     0, gId# = N/A
+		Seg  68 : St = 2044, En = 2044, D =  -8073, RO =     0, gId# = N/A
+		Seg  69 : St = 206A, En = 206F, D =      0, RO =  1118, gId# = 471
+		Seg  70 : St = 207F, En = 207F, D =  -8009, RO =     0, gId# = N/A
+		Seg  71 : St = 20A3, En = 20A4, D =      0, RO =  1126, gId# = 477
+		Seg  72 : St = 20A7, En = 20A7, D =  -8048, RO =     0, gId# = N/A
+		Seg  73 : St = 20AA, En = 20AC, D =      0, RO =  1126, gId# = 479
+		Seg  74 : St = 2105, En = 2105, D =  -8054, RO =     0, gId# = N/A
+		Seg  75 : St = 2113, En = 2113, D =  -8067, RO =     0, gId# = N/A
+		Seg  76 : St = 2116, En = 2116, D =  -7819, RO =     0, gId# = N/A
+		Seg  77 : St = 2122, En = 2122, D =  -8342, RO =     0, gId# = N/A
+		Seg  78 : St = 2126, En = 2126, D =  -8327, RO =     0, gId# = N/A
+		Seg  79 : St = 212E, En = 212E, D =  -8006, RO =     0, gId# = N/A
+		Seg  80 : St = 2153, En = 2154, D =  -7380, RO =     0, gId# = N/A
+		Seg  81 : St = 215B, En = 215E, D =  -8050, RO =     0, gId# = N/A
+		Seg  82 : St = 2190, En = 2195, D =  -8280, RO =     0, gId# = N/A
+		Seg  83 : St = 21A8, En = 21A8, D =  -8298, RO =     0, gId# = N/A
+		Seg  84 : St = 2202, En = 2202, D =  -8554, RO =     0, gId# = N/A
+		Seg  85 : St = 2206, En = 2206, D =  -8542, RO =     0, gId# = N/A
+		Seg  86 : St = 220F, En = 220F, D =  -8565, RO =     0, gId# = N/A
+		Seg  87 : St = 2211, En = 2212, D =      0, RO =  1104, gId# = 482
+		Seg  88 : St = 2215, En = 2215, D =  -8538, RO =     0, gId# = N/A
+		Seg  89 : St = 2219, En = 221A, D =      0, RO =  1104, gId# = 484
+		Seg  90 : St = 221E, En = 221F, D =      0, RO =  1106, gId# = 486
+		Seg  91 : St = 2229, En = 2229, D =  -8425, RO =     0, gId# = N/A
+		Seg  92 : St = 222B, En = 222B, D =  -8591, RO =     0, gId# = N/A
+		Seg  93 : St = 2248, En = 2248, D =  -8609, RO =     0, gId# = N/A
+		Seg  94 : St = 2260, En = 2261, D =      0, RO =  1102, gId# = 488
+		Seg  95 : St = 2264, En = 2265, D =  -8656, RO =     0, gId# = N/A
+		Seg  96 : St = 2302, En = 2302, D =  -8640, RO =     0, gId# = N/A
+		Seg  97 : St = 2310, En = 2310, D =  -8653, RO =     0, gId# = N/A
+		Seg  98 : St = 2320, En = 2321, D =  -8668, RO =     0, gId# = N/A
+		Seg  99 : St = 2500, En = 2500, D =  -9146, RO =     0, gId# = N/A
+		Seg 100 : St = 2502, En = 2502, D =  -9147, RO =     0, gId# = N/A
+		Seg 101 : St = 250C, En = 250C, D =  -9156, RO =     0, gId# = N/A
+		Seg 102 : St = 2510, En = 2510, D =  -9159, RO =     0, gId# = N/A
+		Seg 103 : St = 2514, En = 2514, D =  -9162, RO =     0, gId# = N/A
+		Seg 104 : St = 2518, En = 2518, D =  -9165, RO =     0, gId# = N/A
+		Seg 105 : St = 251C, En = 251C, D =  -9168, RO =     0, gId# = N/A
+		Seg 106 : St = 2524, En = 2524, D =  -9175, RO =     0, gId# = N/A
+		Seg 107 : St = 252C, En = 252C, D =  -9182, RO =     0, gId# = N/A
+		Seg 108 : St = 2534, En = 2534, D =  -9189, RO =     0, gId# = N/A
+		Seg 109 : St = 253C, En = 253C, D =  -9196, RO =     0, gId# = N/A
+		Seg 110 : St = 2550, En = 256C, D =  -9215, RO =     0, gId# = N/A
+		Seg 111 : St = 2580, En = 2580, D =  -9234, RO =     0, gId# = N/A
+		Seg 112 : St = 2584, En = 2584, D =  -9237, RO =     0, gId# = N/A
+		Seg 113 : St = 2588, En = 2588, D =  -9240, RO =     0, gId# = N/A
+		Seg 114 : St = 258C, En = 258C, D =  -9243, RO =     0, gId# = N/A
+		Seg 115 : St = 2590, En = 2593, D =  -9246, RO =     0, gId# = N/A
+		Seg 116 : St = 25A0, En = 25A1, D =      0, RO =  1062, gId# = 490
+		Seg 117 : St = 25AA, En = 25AC, D =      0, RO =  1064, gId# = 492
+		Seg 118 : St = 25B2, En = 25B2, D =  -9274, RO =     0, gId# = N/A
+		Seg 119 : St = 25BA, En = 25BA, D =  -9281, RO =     0, gId# = N/A
+		Seg 120 : St = 25BC, En = 25BC, D =  -9282, RO =     0, gId# = N/A
+		Seg 121 : St = 25C4, En = 25C4, D =  -9289, RO =     0, gId# = N/A
+		Seg 122 : St = 25CA, En = 25CB, D =      0, RO =  1060, gId# = 495
+		Seg 123 : St = 25CF, En = 25CF, D =  -9275, RO =     0, gId# = N/A
+		Seg 124 : St = 25D8, En = 25D9, D =  -9307, RO =     0, gId# = N/A
+		Seg 125 : St = 25E6, En = 25E6, D =  -9297, RO =     0, gId# = N/A
+		Seg 126 : St = 263A, En = 263C, D =  -9403, RO =     0, gId# = N/A
+		Seg 127 : St = 2640, En = 2640, D =  -9406, RO =     0, gId# = N/A
+		Seg 128 : St = 2642, En = 2642, D =  -9407, RO =     0, gId# = N/A
+		Seg 129 : St = 2660, En = 2660, D =  -9436, RO =     0, gId# = N/A
+		Seg 130 : St = 2663, En = 2663, D =  -9438, RO =     0, gId# = N/A
+		Seg 131 : St = 2665, En = 2666, D =  -9439, RO =     0, gId# = N/A
+		Seg 132 : St = 266A, En = 266B, D =  -9442, RO =     0, gId# = N/A
+		Seg 133 : St = E801, En = E805, D =   6848, RO =     0, gId# = N/A
+		Seg 134 : St = E818, En = E818, D =   6906, RO =     0, gId# = N/A
+		Seg 135 : St = E83A, En = E83A, D =   6881, RO =     0, gId# = N/A
+		Seg 136 : St = F001, En = F002, D =   4286, RO =     0, gId# = N/A
+		Seg 137 : St = F004, En = F031, D =      0, RO =  1034, gId# = 497
+		Seg 138 : St = FB01, En = FB02, D =   1470, RO =     0, gId# = N/A
+		Seg 139 : St = FB20, En = FB20, D =   1958, RO =     0, gId# = N/A
+		Seg 140 : St = FB2A, En = FB36, D =   1949, RO =     0, gId# = N/A
+		Seg 141 : St = FB38, En = FB3C, D =   1948, RO =     0, gId# = N/A
+		Seg 142 : St = FB3E, En = FB3E, D =   1947, RO =     0, gId# = N/A
+		Seg 143 : St = FB40, En = FB41, D =   1946, RO =     0, gId# = N/A
+		Seg 144 : St = FB43, En = FB44, D =   1945, RO =     0, gId# = N/A
+		Seg 145 : St = FB46, En = FB4F, D =   1944, RO =     0, gId# = N/A
+		Seg 146 : St = FB56, En = FB59, D =   1993, RO =     0, gId# = N/A
+		Seg 147 : St = FB7A, En = FB7D, D =   1965, RO =     0, gId# = N/A
+		Seg 148 : St = FB8A, En = FB8B, D =   1953, RO =     0, gId# = N/A
+		Seg 149 : St = FB8E, En = FB95, D =   1951, RO =     0, gId# = N/A
+		Seg 150 : St = FBFC, En = FBFF, D =      0, RO =  1100, gId# = 543
+		Seg 151 : St = FC5E, En = FC62, D =   1769, RO =     0, gId# = N/A
+		Seg 152 : St = FD3E, En = FD3F, D =   1598, RO =     0, gId# = N/A
+		Seg 153 : St = FDF2, En = FDF2, D =   1421, RO =     0, gId# = N/A
+		Seg 154 : St = FE80, En = FEFC, D =   1280, RO =     0, gId# = N/A
+		Seg 155 : St = FFFC, En = FFFC, D =    867, RO =     0, gId# = N/A
+		Seg 156 : St = FFFF, En = FFFF, D =      1, RO =     0, gId# = N/A
+		glyphIdArray[0] =    3 (Offset = 04F0)
+		glyphIdArray[1] =  163 (Offset = 04F2)
+		glyphIdArray[2] =  132 (Offset = 04F4)
+		glyphIdArray[3] =  133 (Offset = 04F6)
+		glyphIdArray[4] =  862 (Offset = 04F8)
+		glyphIdArray[5] =  150 (Offset = 04FA)
+		glyphIdArray[6] =  230 (Offset = 04FC)
+		glyphIdArray[7] =  134 (Offset = 04FE)
+		glyphIdArray[8] =  142 (Offset = 0500)
+		glyphIdArray[9] =  139 (Offset = 0502)
+		glyphIdArray[10] =  157 (Offset = 0504)
+		glyphIdArray[11] =  169 (Offset = 0506)
+		glyphIdArray[12] =  164 (Offset = 0508)
+		glyphIdArray[13] =   16 (Offset = 050A)
+		glyphIdArray[14] =  138 (Offset = 050C)
+		glyphIdArray[15] =  256 (Offset = 050E)
+		glyphIdArray[16] =  131 (Offset = 0510)
+		glyphIdArray[17] =  147 (Offset = 0512)
+		glyphIdArray[18] =  240 (Offset = 0514)
+		glyphIdArray[19] =  241 (Offset = 0516)
+		glyphIdArray[20] =  141 (Offset = 0518)
+		glyphIdArray[21] =  151 (Offset = 051A)
+		glyphIdArray[22] =  136 (Offset = 051C)
+		glyphIdArray[23] =  194 (Offset = 051E)
+		glyphIdArray[24] =  220 (Offset = 0520)
+		glyphIdArray[25] =  239 (Offset = 0522)
+		glyphIdArray[26] =  158 (Offset = 0524)
+		glyphIdArray[27] =  170 (Offset = 0526)
+		glyphIdArray[28] =  243 (Offset = 0528)
+		glyphIdArray[29] =  242 (Offset = 052A)
+		glyphIdArray[30] =  244 (Offset = 052C)
+		glyphIdArray[31] =  162 (Offset = 052E)
+		glyphIdArray[32] =  172 (Offset = 0530)
+		glyphIdArray[33] =  200 (Offset = 0532)
+		glyphIdArray[34] =  198 (Offset = 0534)
+		glyphIdArray[35] =  173 (Offset = 0536)
+		glyphIdArray[36] =   98 (Offset = 0538)
+		glyphIdArray[37] =   99 (Offset = 053A)
+		glyphIdArray[38] =  144 (Offset = 053C)
+		glyphIdArray[39] =  100 (Offset = 053E)
+		glyphIdArray[40] =  202 (Offset = 0540)
+		glyphIdArray[41] =  101 (Offset = 0542)
+		glyphIdArray[42] =  199 (Offset = 0544)
+		glyphIdArray[43] =  201 (Offset = 0546)
+		glyphIdArray[44] =  206 (Offset = 0548)
+		glyphIdArray[45] =  203 (Offset = 054A)
+		glyphIdArray[46] =  204 (Offset = 054C)
+		glyphIdArray[47] =  205 (Offset = 054E)
+		glyphIdArray[48] =  231 (Offset = 0550)
+		glyphIdArray[49] =  102 (Offset = 0552)
+		glyphIdArray[50] =  209 (Offset = 0554)
+		glyphIdArray[51] =  207 (Offset = 0556)
+		glyphIdArray[52] =  208 (Offset = 0558)
+		glyphIdArray[53] =  174 (Offset = 055A)
+		glyphIdArray[54] =  103 (Offset = 055C)
+		glyphIdArray[55] =  238 (Offset = 055E)
+		glyphIdArray[56] =  145 (Offset = 0560)
+		glyphIdArray[57] =  212 (Offset = 0562)
+		glyphIdArray[58] =  210 (Offset = 0564)
+		glyphIdArray[59] =  211 (Offset = 0566)
+		glyphIdArray[60] =  104 (Offset = 0568)
+		glyphIdArray[61] =  233 (Offset = 056A)
+		glyphIdArray[62] =  235 (Offset = 056C)
+		glyphIdArray[63] =  137 (Offset = 056E)
+		glyphIdArray[64] =  106 (Offset = 0570)
+		glyphIdArray[65] =  105 (Offset = 0572)
+		glyphIdArray[66] =  107 (Offset = 0574)
+		glyphIdArray[67] =  109 (Offset = 0576)
+		glyphIdArray[68] =  108 (Offset = 0578)
+		glyphIdArray[69] =  110 (Offset = 057A)
+		glyphIdArray[70] =  160 (Offset = 057C)
+		glyphIdArray[71] =  111 (Offset = 057E)
+		glyphIdArray[72] =  113 (Offset = 0580)
+		glyphIdArray[73] =  112 (Offset = 0582)
+		glyphIdArray[74] =  114 (Offset = 0584)
+		glyphIdArray[75] =  115 (Offset = 0586)
+		glyphIdArray[76] =  117 (Offset = 0588)
+		glyphIdArray[77] =  116 (Offset = 058A)
+		glyphIdArray[78] =  118 (Offset = 058C)
+		glyphIdArray[79] =  119 (Offset = 058E)
+		glyphIdArray[80] =  232 (Offset = 0590)
+		glyphIdArray[81] =  120 (Offset = 0592)
+		glyphIdArray[82] =  122 (Offset = 0594)
+		glyphIdArray[83] =  121 (Offset = 0596)
+		glyphIdArray[84] =  123 (Offset = 0598)
+		glyphIdArray[85] =  125 (Offset = 059A)
+		glyphIdArray[86] =  124 (Offset = 059C)
+		glyphIdArray[87] =  183 (Offset = 059E)
+		glyphIdArray[88] =  161 (Offset = 05A0)
+		glyphIdArray[89] =  127 (Offset = 05A2)
+		glyphIdArray[90] =  126 (Offset = 05A4)
+		glyphIdArray[91] =  128 (Offset = 05A6)
+		glyphIdArray[92] =  129 (Offset = 05A8)
+		glyphIdArray[93] =  234 (Offset = 05AA)
+		glyphIdArray[94] =  236 (Offset = 05AC)
+		glyphIdArray[95] =  185 (Offset = 05AE)
+		glyphIdArray[96] =  406 (Offset = 05B0)
+		glyphIdArray[97] =  407 (Offset = 05B2)
+		glyphIdArray[98] =  258 (Offset = 05B4)
+		glyphIdArray[99] =  259 (Offset = 05B6)
+		glyphIdArray[100] =  260 (Offset = 05B8)
+		glyphIdArray[101] =  261 (Offset = 05BA)
+		glyphIdArray[102] =  251 (Offset = 05BC)
+		glyphIdArray[103] =  252 (Offset = 05BE)
+		glyphIdArray[104] =  408 (Offset = 05C0)
+		glyphIdArray[105] =  409 (Offset = 05C2)
+		glyphIdArray[106] =  410 (Offset = 05C4)
+		glyphIdArray[107] =  411 (Offset = 05C6)
+		glyphIdArray[108] =  253 (Offset = 05C8)
+		glyphIdArray[109] =  254 (Offset = 05CA)
+		glyphIdArray[110] =  262 (Offset = 05CC)
+		glyphIdArray[111] =  263 (Offset = 05CE)
+		glyphIdArray[112] =  264 (Offset = 05D0)
+		glyphIdArray[113] =  255 (Offset = 05D2)
+		glyphIdArray[114] =  412 (Offset = 05D4)
+		glyphIdArray[115] =  413 (Offset = 05D6)
+		glyphIdArray[116] =  414 (Offset = 05D8)
+		glyphIdArray[117] =  415 (Offset = 05DA)
+		glyphIdArray[118] =  416 (Offset = 05DC)
+		glyphIdArray[119] =  417 (Offset = 05DE)
+		glyphIdArray[120] =  265 (Offset = 05E0)
+		glyphIdArray[121] =  266 (Offset = 05E2)
+		glyphIdArray[122] =  267 (Offset = 05E4)
+		glyphIdArray[123] =  268 (Offset = 05E6)
+		glyphIdArray[124] =  418 (Offset = 05E8)
+		glyphIdArray[125] =  419 (Offset = 05EA)
+		glyphIdArray[126] =  246 (Offset = 05EC)
+		glyphIdArray[127] =  247 (Offset = 05EE)
+		glyphIdArray[128] =  420 (Offset = 05F0)
+		glyphIdArray[129] =  421 (Offset = 05F2)
+		glyphIdArray[130] =  422 (Offset = 05F4)
+		glyphIdArray[131] =  423 (Offset = 05F6)
+		glyphIdArray[132] =  424 (Offset = 05F8)
+		glyphIdArray[133] =  425 (Offset = 05FA)
+		glyphIdArray[134] =  426 (Offset = 05FC)
+		glyphIdArray[135] =  427 (Offset = 05FE)
+		glyphIdArray[136] =  428 (Offset = 0600)
+		glyphIdArray[137] =  429 (Offset = 0602)
+		glyphIdArray[138] =  430 (Offset = 0604)
+		glyphIdArray[139] =  431 (Offset = 0606)
+		glyphIdArray[140] =  432 (Offset = 0608)
+		glyphIdArray[141] =  433 (Offset = 060A)
+		glyphIdArray[142] =  434 (Offset = 060C)
+		glyphIdArray[143] =  435 (Offset = 060E)
+		glyphIdArray[144] =  248 (Offset = 0610)
+		glyphIdArray[145] =  213 (Offset = 0612)
+		glyphIdArray[146] =  394 (Offset = 0614)
+		glyphIdArray[147] =  395 (Offset = 0616)
+		glyphIdArray[148] =  436 (Offset = 0618)
+		glyphIdArray[149] =  437 (Offset = 061A)
+		glyphIdArray[150] =  438 (Offset = 061C)
+		glyphIdArray[151] =  439 (Offset = 061E)
+		glyphIdArray[152] =  440 (Offset = 0620)
+		glyphIdArray[153] =  269 (Offset = 0622)
+		glyphIdArray[154] =  270 (Offset = 0624)
+		glyphIdArray[155] =  441 (Offset = 0626)
+		glyphIdArray[156] =  442 (Offset = 0628)
+		glyphIdArray[157] =  271 (Offset = 062A)
+		glyphIdArray[158] =  272 (Offset = 062C)
+		glyphIdArray[159] =  273 (Offset = 062E)
+		glyphIdArray[160] =  274 (Offset = 0630)
+		glyphIdArray[161] =  224 (Offset = 0632)
+		glyphIdArray[162] =  225 (Offset = 0634)
+		glyphIdArray[163] =  275 (Offset = 0636)
+		glyphIdArray[164] =  276 (Offset = 0638)
+		glyphIdArray[165] =  443 (Offset = 063A)
+		glyphIdArray[166] =  444 (Offset = 063C)
+		glyphIdArray[167] =  277 (Offset = 063E)
+		glyphIdArray[168] =  278 (Offset = 0640)
+		glyphIdArray[169] =  396 (Offset = 0642)
+		glyphIdArray[170] =  445 (Offset = 0644)
+		glyphIdArray[171] =  446 (Offset = 0646)
+		glyphIdArray[172] =  447 (Offset = 0648)
+		glyphIdArray[173] =  448 (Offset = 064A)
+		glyphIdArray[174] =  449 (Offset = 064C)
+		glyphIdArray[175] =  450 (Offset = 064E)
+		glyphIdArray[176] =  279 (Offset = 0650)
+		glyphIdArray[177] =  280 (Offset = 0652)
+		glyphIdArray[178] =  175 (Offset = 0654)
+		glyphIdArray[179] =  176 (Offset = 0656)
+		glyphIdArray[180] =  281 (Offset = 0658)
+		glyphIdArray[181] =  282 (Offset = 065A)
+		glyphIdArray[182] =  451 (Offset = 065C)
+		glyphIdArray[183] =  452 (Offset = 065E)
+		glyphIdArray[184] =  283 (Offset = 0660)
+		glyphIdArray[185] =  284 (Offset = 0662)
+		glyphIdArray[186] =  285 (Offset = 0664)
+		glyphIdArray[187] =  286 (Offset = 0666)
+		glyphIdArray[188] =  453 (Offset = 0668)
+		glyphIdArray[189] =  454 (Offset = 066A)
+		glyphIdArray[190] =  249 (Offset = 066C)
+		glyphIdArray[191] =  250 (Offset = 066E)
+		glyphIdArray[192] =  226 (Offset = 0670)
+		glyphIdArray[193] =  227 (Offset = 0672)
+		glyphIdArray[194] =  287 (Offset = 0674)
+		glyphIdArray[195] =  288 (Offset = 0676)
+		glyphIdArray[196] =  289 (Offset = 0678)
+		glyphIdArray[197] =  290 (Offset = 067A)
+		glyphIdArray[198] =  455 (Offset = 067C)
+		glyphIdArray[199] =  456 (Offset = 067E)
+		glyphIdArray[200] =  457 (Offset = 0680)
+		glyphIdArray[201] =  458 (Offset = 0682)
+		glyphIdArray[202] =  459 (Offset = 0684)
+		glyphIdArray[203] =  460 (Offset = 0686)
+		glyphIdArray[204] =  461 (Offset = 0688)
+		glyphIdArray[205] =  462 (Offset = 068A)
+		glyphIdArray[206] =  291 (Offset = 068C)
+		glyphIdArray[207] =  292 (Offset = 068E)
+		glyphIdArray[208] =  293 (Offset = 0690)
+		glyphIdArray[209] =  294 (Offset = 0692)
+		glyphIdArray[210] =  463 (Offset = 0694)
+		glyphIdArray[211] =  464 (Offset = 0696)
+		glyphIdArray[212] =  465 (Offset = 0698)
+		glyphIdArray[213] =  466 (Offset = 069A)
+		glyphIdArray[214] =  467 (Offset = 069C)
+		glyphIdArray[215] =  468 (Offset = 069E)
+		glyphIdArray[216] =  186 (Offset = 06A0)
+		glyphIdArray[217] =  295 (Offset = 06A2)
+		glyphIdArray[218] =  296 (Offset = 06A4)
+		glyphIdArray[219] =  297 (Offset = 06A6)
+		glyphIdArray[220] =  298 (Offset = 06A8)
+		glyphIdArray[221] =  228 (Offset = 06AA)
+		glyphIdArray[222] =  229 (Offset = 06AC)
+		glyphIdArray[223] =  469 (Offset = 06AE)
+		glyphIdArray[224] =  214 (Offset = 06B0)
+		glyphIdArray[225] =  223 (Offset = 06B2)
+		glyphIdArray[226] =  217 (Offset = 06B4)
+		glyphIdArray[227] =  218 (Offset = 06B6)
+		glyphIdArray[228] =  219 (Offset = 06B8)
+		glyphIdArray[229] =  222 (Offset = 06BA)
+		glyphIdArray[230] =  215 (Offset = 06BC)
+		glyphIdArray[231] =  221 (Offset = 06BE)
+		glyphIdArray[232] =  495 (Offset = 06C0)
+		glyphIdArray[233] =  496 (Offset = 06C2)
+		glyphIdArray[234] =  497 (Offset = 06C4)
+		glyphIdArray[235] =  476 (Offset = 06C6)
+		glyphIdArray[236] =  498 (Offset = 06C8)
+		glyphIdArray[237] =  499 (Offset = 06CA)
+		glyphIdArray[238] =  500 (Offset = 06CC)
+		glyphIdArray[239] =  502 (Offset = 06CE)
+		glyphIdArray[240] =  503 (Offset = 06D0)
+		glyphIdArray[241] =  504 (Offset = 06D2)
+		glyphIdArray[242] =  505 (Offset = 06D4)
+		glyphIdArray[243] =  506 (Offset = 06D6)
+		glyphIdArray[244] =  299 (Offset = 06D8)
+		glyphIdArray[245] =  507 (Offset = 06DA)
+		glyphIdArray[246] =  508 (Offset = 06DC)
+		glyphIdArray[247] =  509 (Offset = 06DE)
+		glyphIdArray[248] =  510 (Offset = 06E0)
+		glyphIdArray[249] =  300 (Offset = 06E2)
+		glyphIdArray[250] =  511 (Offset = 06E4)
+		glyphIdArray[251] =  512 (Offset = 06E6)
+		glyphIdArray[252] =  513 (Offset = 06E8)
+		glyphIdArray[253] =  514 (Offset = 06EA)
+		glyphIdArray[254] =  515 (Offset = 06EC)
+		glyphIdArray[255] =  516 (Offset = 06EE)
+		glyphIdArray[256] =  517 (Offset = 06F0)
+		glyphIdArray[257] =  518 (Offset = 06F2)
+		glyphIdArray[258] =  519 (Offset = 06F4)
+		glyphIdArray[259] =  520 (Offset = 06F6)
+		glyphIdArray[260] =  521 (Offset = 06F8)
+		glyphIdArray[261] =  522 (Offset = 06FA)
+		glyphIdArray[262] =  301 (Offset = 06FC)
+		glyphIdArray[263] =  523 (Offset = 06FE)
+		glyphIdArray[264] =  524 (Offset = 0700)
+		glyphIdArray[265] =  525 (Offset = 0702)
+		glyphIdArray[266] =  526 (Offset = 0704)
+		glyphIdArray[267] =  527 (Offset = 0706)
+		glyphIdArray[268] =  528 (Offset = 0708)
+		glyphIdArray[269] =  529 (Offset = 070A)
+		glyphIdArray[270] =  530 (Offset = 070C)
+		glyphIdArray[271] =  531 (Offset = 070E)
+		glyphIdArray[272] =  532 (Offset = 0710)
+		glyphIdArray[273] =  302 (Offset = 0712)
+		glyphIdArray[274] =  533 (Offset = 0714)
+		glyphIdArray[275] =  534 (Offset = 0716)
+		glyphIdArray[276] =  303 (Offset = 0718)
+		glyphIdArray[277] =  304 (Offset = 071A)
+		glyphIdArray[278] =  535 (Offset = 071C)
+		glyphIdArray[279] =  536 (Offset = 071E)
+		glyphIdArray[280] =  537 (Offset = 0720)
+		glyphIdArray[281] =  538 (Offset = 0722)
+		glyphIdArray[282] =  539 (Offset = 0724)
+		glyphIdArray[283] =  540 (Offset = 0726)
+		glyphIdArray[284] =  541 (Offset = 0728)
+		glyphIdArray[285] =  542 (Offset = 072A)
+		glyphIdArray[286] =  543 (Offset = 072C)
+		glyphIdArray[287] =  544 (Offset = 072E)
+		glyphIdArray[288] =  652 (Offset = 0730)
+		glyphIdArray[289] =  545 (Offset = 0732)
+		glyphIdArray[290] =  546 (Offset = 0734)
+		glyphIdArray[291] =  305 (Offset = 0736)
+		glyphIdArray[292] =  306 (Offset = 0738)
+		glyphIdArray[293] =  547 (Offset = 073A)
+		glyphIdArray[294] =  307 (Offset = 073C)
+		glyphIdArray[295] =  548 (Offset = 073E)
+		glyphIdArray[296] =  549 (Offset = 0740)
+		glyphIdArray[297] =  550 (Offset = 0742)
+		glyphIdArray[298] =  551 (Offset = 0744)
+		glyphIdArray[299] =  552 (Offset = 0746)
+		glyphIdArray[300] =  553 (Offset = 0748)
+		glyphIdArray[301] =  554 (Offset = 074A)
+		glyphIdArray[302] =  555 (Offset = 074C)
+		glyphIdArray[303] =  648 (Offset = 074E)
+		glyphIdArray[304] =  649 (Offset = 0750)
+		glyphIdArray[305] = 1296 (Offset = 0752)
+		glyphIdArray[306] = 1297 (Offset = 0754)
+		glyphIdArray[307] =  751 (Offset = 0756)
+		glyphIdArray[308] =  897 (Offset = 0758)
+		glyphIdArray[309] =  899 (Offset = 075A)
+		glyphIdArray[310] =  901 (Offset = 075C)
+		glyphIdArray[311] =  903 (Offset = 075E)
+		glyphIdArray[312] =  905 (Offset = 0760)
+		glyphIdArray[313] =  909 (Offset = 0762)
+		glyphIdArray[314] =  911 (Offset = 0764)
+		glyphIdArray[315] =  915 (Offset = 0766)
+		glyphIdArray[316] =  917 (Offset = 0768)
+		glyphIdArray[317] =  921 (Offset = 076A)
+		glyphIdArray[318] =  925 (Offset = 076C)
+		glyphIdArray[319] =  929 (Offset = 076E)
+		glyphIdArray[320] =  933 (Offset = 0770)
+		glyphIdArray[321] =  937 (Offset = 0772)
+		glyphIdArray[322] =  939 (Offset = 0774)
+		glyphIdArray[323] =  941 (Offset = 0776)
+		glyphIdArray[324] =  943 (Offset = 0778)
+		glyphIdArray[325] =  945 (Offset = 077A)
+		glyphIdArray[326] =  949 (Offset = 077C)
+		glyphIdArray[327] =  953 (Offset = 077E)
+		glyphIdArray[328] =  957 (Offset = 0780)
+		glyphIdArray[329] =  961 (Offset = 0782)
+		glyphIdArray[330] =  965 (Offset = 0784)
+		glyphIdArray[331] =  969 (Offset = 0786)
+		glyphIdArray[332] =  973 (Offset = 0788)
+		glyphIdArray[333] =  752 (Offset = 078A)
+		glyphIdArray[334] =  977 (Offset = 078C)
+		glyphIdArray[335] =  981 (Offset = 078E)
+		glyphIdArray[336] =  985 (Offset = 0790)
+		glyphIdArray[337] =  989 (Offset = 0792)
+		glyphIdArray[338] =  993 (Offset = 0794)
+		glyphIdArray[339] =  997 (Offset = 0796)
+		glyphIdArray[340] = 1001 (Offset = 0798)
+		glyphIdArray[341] = 1005 (Offset = 079A)
+		glyphIdArray[342] = 1007 (Offset = 079C)
+		glyphIdArray[343] = 1009 (Offset = 079E)
+		glyphIdArray[344] =  753 (Offset = 07A0)
+		glyphIdArray[345] =  754 (Offset = 07A2)
+		glyphIdArray[346] =  755 (Offset = 07A4)
+		glyphIdArray[347] =  756 (Offset = 07A6)
+		glyphIdArray[348] =  757 (Offset = 07A8)
+		glyphIdArray[349] =  758 (Offset = 07AA)
+		glyphIdArray[350] =  759 (Offset = 07AC)
+		glyphIdArray[351] =  760 (Offset = 07AE)
+		glyphIdArray[352] =  761 (Offset = 07B0)
+		glyphIdArray[353] =  762 (Offset = 07B2)
+		glyphIdArray[354] =  763 (Offset = 07B4)
+		glyphIdArray[355] =  764 (Offset = 07B6)
+		glyphIdArray[356] =  778 (Offset = 07B8)
+		glyphIdArray[357] =  779 (Offset = 07BA)
+		glyphIdArray[358] =  780 (Offset = 07BC)
+		glyphIdArray[359] =  768 (Offset = 07BE)
+		glyphIdArray[360] =  769 (Offset = 07C0)
+		glyphIdArray[361] =  770 (Offset = 07C2)
+		glyphIdArray[362] = 1188 (Offset = 07C4)
+		glyphIdArray[363] = 1189 (Offset = 07C6)
+		glyphIdArray[364] = 1190 (Offset = 07C8)
+		glyphIdArray[365] = 1191 (Offset = 07CA)
+		glyphIdArray[366] = 1192 (Offset = 07CC)
+		glyphIdArray[367] = 1193 (Offset = 07CE)
+		glyphIdArray[368] = 1194 (Offset = 07D0)
+		glyphIdArray[369] = 1195 (Offset = 07D2)
+		glyphIdArray[370] = 1196 (Offset = 07D4)
+		glyphIdArray[371] = 1197 (Offset = 07D6)
+		glyphIdArray[372] = 1198 (Offset = 07D8)
+		glyphIdArray[373] = 1199 (Offset = 07DA)
+		glyphIdArray[374] = 1200 (Offset = 07DC)
+		glyphIdArray[375] = 1201 (Offset = 07DE)
+		glyphIdArray[376] = 1202 (Offset = 07E0)
+		glyphIdArray[377] = 1203 (Offset = 07E2)
+		glyphIdArray[378] = 1204 (Offset = 07E4)
+		glyphIdArray[379] = 1205 (Offset = 07E6)
+		glyphIdArray[380] = 1206 (Offset = 07E8)
+		glyphIdArray[381] = 1207 (Offset = 07EA)
+		glyphIdArray[382] = 1208 (Offset = 07EC)
+		glyphIdArray[383] = 1209 (Offset = 07EE)
+		glyphIdArray[384] = 1210 (Offset = 07F0)
+		glyphIdArray[385] = 1211 (Offset = 07F2)
+		glyphIdArray[386] = 1212 (Offset = 07F4)
+		glyphIdArray[387] = 1213 (Offset = 07F6)
+		glyphIdArray[388] = 1214 (Offset = 07F8)
+		glyphIdArray[389] = 1215 (Offset = 07FA)
+		glyphIdArray[390] = 1216 (Offset = 07FC)
+		glyphIdArray[391] = 1217 (Offset = 07FE)
+		glyphIdArray[392] = 1218 (Offset = 0800)
+		glyphIdArray[393] = 1219 (Offset = 0802)
+		glyphIdArray[394] = 1220 (Offset = 0804)
+		glyphIdArray[395] = 1221 (Offset = 0806)
+		glyphIdArray[396] = 1222 (Offset = 0808)
+		glyphIdArray[397] = 1223 (Offset = 080A)
+		glyphIdArray[398] = 1224 (Offset = 080C)
+		glyphIdArray[399] = 1225 (Offset = 080E)
+		glyphIdArray[400] = 1226 (Offset = 0810)
+		glyphIdArray[401] = 1227 (Offset = 0812)
+		glyphIdArray[402] = 1228 (Offset = 0814)
+		glyphIdArray[403] = 1229 (Offset = 0816)
+		glyphIdArray[404] = 1230 (Offset = 0818)
+		glyphIdArray[405] = 1231 (Offset = 081A)
+		glyphIdArray[406] = 1232 (Offset = 081C)
+		glyphIdArray[407] = 1233 (Offset = 081E)
+		glyphIdArray[408] = 1234 (Offset = 0820)
+		glyphIdArray[409] = 1235 (Offset = 0822)
+		glyphIdArray[410] = 1236 (Offset = 0824)
+		glyphIdArray[411] = 1237 (Offset = 0826)
+		glyphIdArray[412] = 1238 (Offset = 0828)
+		glyphIdArray[413] = 1239 (Offset = 082A)
+		glyphIdArray[414] = 1240 (Offset = 082C)
+		glyphIdArray[415] = 1241 (Offset = 082E)
+		glyphIdArray[416] = 1242 (Offset = 0830)
+		glyphIdArray[417] = 1243 (Offset = 0832)
+		glyphIdArray[418] = 1244 (Offset = 0834)
+		glyphIdArray[419] = 1245 (Offset = 0836)
+		glyphIdArray[420] = 1246 (Offset = 0838)
+		glyphIdArray[421] = 1247 (Offset = 083A)
+		glyphIdArray[422] = 1248 (Offset = 083C)
+		glyphIdArray[423] = 1249 (Offset = 083E)
+		glyphIdArray[424] = 1250 (Offset = 0840)
+		glyphIdArray[425] = 1251 (Offset = 0842)
+		glyphIdArray[426] = 1252 (Offset = 0844)
+		glyphIdArray[427] = 1253 (Offset = 0846)
+		glyphIdArray[428] = 1254 (Offset = 0848)
+		glyphIdArray[429] = 1255 (Offset = 084A)
+		glyphIdArray[430] = 1256 (Offset = 084C)
+		glyphIdArray[431] = 1257 (Offset = 084E)
+		glyphIdArray[432] = 1258 (Offset = 0850)
+		glyphIdArray[433] = 1259 (Offset = 0852)
+		glyphIdArray[434] = 1260 (Offset = 0854)
+		glyphIdArray[435] = 1261 (Offset = 0856)
+		glyphIdArray[436] = 1262 (Offset = 0858)
+		glyphIdArray[437] = 1263 (Offset = 085A)
+		glyphIdArray[438] = 1264 (Offset = 085C)
+		glyphIdArray[439] = 1265 (Offset = 085E)
+		glyphIdArray[440] = 1266 (Offset = 0860)
+		glyphIdArray[441] = 1267 (Offset = 0862)
+		glyphIdArray[442] = 1268 (Offset = 0864)
+		glyphIdArray[443] = 1269 (Offset = 0866)
+		glyphIdArray[444] =  483 (Offset = 0868)
+		glyphIdArray[445] =  484 (Offset = 086A)
+		glyphIdArray[446] = 1270 (Offset = 086C)
+		glyphIdArray[447] = 1271 (Offset = 086E)
+		glyphIdArray[448] = 1272 (Offset = 0870)
+		glyphIdArray[449] = 1273 (Offset = 0872)
+		glyphIdArray[450] = 1274 (Offset = 0874)
+		glyphIdArray[451] = 1275 (Offset = 0876)
+		glyphIdArray[452] =  177 (Offset = 0878)
+		glyphIdArray[453] =  178 (Offset = 087A)
+		glyphIdArray[454] =  650 (Offset = 087C)
+		glyphIdArray[455] =  308 (Offset = 087E)
+		glyphIdArray[456] =  181 (Offset = 0880)
+		glyphIdArray[457] =  182 (Offset = 0882)
+		glyphIdArray[458] =  195 (Offset = 0884)
+		glyphIdArray[459] =  485 (Offset = 0886)
+		glyphIdArray[460] =  179 (Offset = 0888)
+		glyphIdArray[461] =  180 (Offset = 088A)
+		glyphIdArray[462] =  196 (Offset = 088C)
+		glyphIdArray[463] =  130 (Offset = 088E)
+		glyphIdArray[464] =  193 (Offset = 0890)
+		glyphIdArray[465] =  135 (Offset = 0892)
+		glyphIdArray[466] =  846 (Offset = 0894)
+		glyphIdArray[467] =  847 (Offset = 0896)
+		glyphIdArray[468] =  850 (Offset = 0898)
+		glyphIdArray[469] =  848 (Offset = 089A)
+		glyphIdArray[470] =  849 (Offset = 089C)
+		glyphIdArray[471] =  853 (Offset = 089E)
+		glyphIdArray[472] =  854 (Offset = 08A0)
+		glyphIdArray[473] =  855 (Offset = 08A2)
+		glyphIdArray[474] =  856 (Offset = 08A4)
+		glyphIdArray[475] =  851 (Offset = 08A6)
+		glyphIdArray[476] =  852 (Offset = 08A8)
+		glyphIdArray[477] =  245 (Offset = 08AA)
+		glyphIdArray[478] =  487 (Offset = 08AC)
+		glyphIdArray[479] =  704 (Offset = 08AE)
+		glyphIdArray[480] = 1150 (Offset = 08B0)
+		glyphIdArray[481] =  188 (Offset = 08B2)
+		glyphIdArray[482] =  153 (Offset = 08B4)
+		glyphIdArray[483] =  237 (Offset = 08B6)
+		glyphIdArray[484] =  194 (Offset = 08B8)
+		glyphIdArray[485] =  165 (Offset = 08BA)
+		glyphIdArray[486] =  146 (Offset = 08BC)
+		glyphIdArray[487] =  319 (Offset = 08BE)
+		glyphIdArray[488] =  143 (Offset = 08C0)
+		glyphIdArray[489] =  321 (Offset = 08C2)
+		glyphIdArray[490] =  374 (Offset = 08C4)
+		glyphIdArray[491] =  401 (Offset = 08C6)
+		glyphIdArray[492] =  402 (Offset = 08C8)
+		glyphIdArray[493] =  403 (Offset = 08CA)
+		glyphIdArray[494] =  375 (Offset = 08CC)
+		glyphIdArray[495] =  184 (Offset = 08CE)
+		glyphIdArray[496] =  380 (Offset = 08D0)
+		glyphIdArray[497] =  493 (Offset = 08D2)
+		glyphIdArray[498] =  494 (Offset = 08D4)
+		glyphIdArray[499] = 1137 (Offset = 08D6)
+		glyphIdArray[500] = 1138 (Offset = 08D8)
+		glyphIdArray[501] = 1153 (Offset = 08DA)
+		glyphIdArray[502] = 1139 (Offset = 08DC)
+		glyphIdArray[503] =  857 (Offset = 08DE)
+		glyphIdArray[504] =  858 (Offset = 08E0)
+		glyphIdArray[505] =  859 (Offset = 08E2)
+		glyphIdArray[506] =  860 (Offset = 08E4)
+		glyphIdArray[507] =  861 (Offset = 08E6)
+		glyphIdArray[508] = 1156 (Offset = 08E8)
+		glyphIdArray[509] = 1141 (Offset = 08EA)
+		glyphIdArray[510] = 1143 (Offset = 08EC)
+		glyphIdArray[511] = 1157 (Offset = 08EE)
+		glyphIdArray[512] = 1142 (Offset = 08F0)
+		glyphIdArray[513] = 1158 (Offset = 08F2)
+		glyphIdArray[514] = 1145 (Offset = 08F4)
+		glyphIdArray[515] = 1159 (Offset = 08F6)
+		glyphIdArray[516] = 1160 (Offset = 08F8)
+		glyphIdArray[517] = 1161 (Offset = 08FA)
+		glyphIdArray[518] = 1162 (Offset = 08FC)
+		glyphIdArray[519] = 1163 (Offset = 08FE)
+		glyphIdArray[520] = 1164 (Offset = 0900)
+		glyphIdArray[521] = 1144 (Offset = 0902)
+		glyphIdArray[522] = 1172 (Offset = 0904)
+		glyphIdArray[523] = 1165 (Offset = 0906)
+		glyphIdArray[524] = 1166 (Offset = 0908)
+		glyphIdArray[525] = 1167 (Offset = 090A)
+		glyphIdArray[526] = 1168 (Offset = 090C)
+		glyphIdArray[527] = 1169 (Offset = 090E)
+		glyphIdArray[528] = 1174 (Offset = 0910)
+		glyphIdArray[529] = 1178 (Offset = 0912)
+		glyphIdArray[530] = 1179 (Offset = 0914)
+		glyphIdArray[531] = 1180 (Offset = 0916)
+		glyphIdArray[532] = 1181 (Offset = 0918)
+		glyphIdArray[533] = 1182 (Offset = 091A)
+		glyphIdArray[534] = 1175 (Offset = 091C)
+		glyphIdArray[535] = 1176 (Offset = 091E)
+		glyphIdArray[536] = 1177 (Offset = 0920)
+		glyphIdArray[537] = 1149 (Offset = 0922)
+		glyphIdArray[538] = 1183 (Offset = 0924)
+		glyphIdArray[539] = 1184 (Offset = 0926)
+		glyphIdArray[540] = 1185 (Offset = 0928)
+		glyphIdArray[541] = 1186 (Offset = 092A)
+		glyphIdArray[542] = 1187 (Offset = 092C)
+		glyphIdArray[543] =  821 (Offset = 092E)
+		glyphIdArray[544] =  822 (Offset = 0930)
+		glyphIdArray[545] = 1011 (Offset = 0932)
+		glyphIdArray[546] = 1012 (Offset = 0934)
+
+		Which Means:
+		   1. Char 0020 -> Index 3
+		      Char 0021 -> Index 4
+		      Char 0022 -> Index 5
+		      Char 0023 -> Index 6
+		      Char 0024 -> Index 7
+		      Char 0025 -> Index 8
+		      Char 0026 -> Index 9
+		      Char 0027 -> Index 10
+		      Char 0028 -> Index 11
+		      Char 0029 -> Index 12
+		      Char 002A -> Index 13
+		      Char 002B -> Index 14
+		      Char 002C -> Index 15
+		      Char 002D -> Index 16
+		      Char 002E -> Index 17
+		      Char 002F -> Index 18
+		      Char 0030 -> Index 19
+		      Char 0031 -> Index 20
+		      Char 0032 -> Index 21
+		      Char 0033 -> Index 22
+		      Char 0034 -> Index 23
+		      Char 0035 -> Index 24
+		      Char 0036 -> Index 25
+		      Char 0037 -> Index 26
+		      Char 0038 -> Index 27
+		      Char 0039 -> Index 28
+		      Char 003A -> Index 29
+		      Char 003B -> Index 30
+		      Char 003C -> Index 31
+		      Char 003D -> Index 32
+		      Char 003E -> Index 33
+		      Char 003F -> Index 34
+		      Char 0040 -> Index 35
+		      Char 0041 -> Index 36
+		      Char 0042 -> Index 37
+		      Char 0043 -> Index 38
+		      Char 0044 -> Index 39
+		      Char 0045 -> Index 40
+		      Char 0046 -> Index 41
+		      Char 0047 -> Index 42
+		      Char 0048 -> Index 43
+		      Char 0049 -> Index 44
+		      Char 004A -> Index 45
+		      Char 004B -> Index 46
+		      Char 004C -> Index 47
+		      Char 004D -> Index 48
+		      Char 004E -> Index 49
+		      Char 004F -> Index 50
+		      Char 0050 -> Index 51
+		      Char 0051 -> Index 52
+		      Char 0052 -> Index 53
+		      Char 0053 -> Index 54
+		      Char 0054 -> Index 55
+		      Char 0055 -> Index 56
+		      Char 0056 -> Index 57
+		      Char 0057 -> Index 58
+		      Char 0058 -> Index 59
+		      Char 0059 -> Index 60
+		      Char 005A -> Index 61
+		      Char 005B -> Index 62
+		      Char 005C -> Index 63
+		      Char 005D -> Index 64
+		      Char 005E -> Index 65
+		      Char 005F -> Index 66
+		      Char 0060 -> Index 67
+		      Char 0061 -> Index 68
+		      Char 0062 -> Index 69
+		      Char 0063 -> Index 70
+		      Char 0064 -> Index 71
+		      Char 0065 -> Index 72
+		      Char 0066 -> Index 73
+		      Char 0067 -> Index 74
+		      Char 0068 -> Index 75
+		      Char 0069 -> Index 76
+		      Char 006A -> Index 77
+		      Char 006B -> Index 78
+		      Char 006C -> Index 79
+		      Char 006D -> Index 80
+		      Char 006E -> Index 81
+		      Char 006F -> Index 82
+		      Char 0070 -> Index 83
+		      Char 0071 -> Index 84
+		      Char 0072 -> Index 85
+		      Char 0073 -> Index 86
+		      Char 0074 -> Index 87
+		      Char 0075 -> Index 88
+		      Char 0076 -> Index 89
+		      Char 0077 -> Index 90
+		      Char 0078 -> Index 91
+		      Char 0079 -> Index 92
+		      Char 007A -> Index 93
+		      Char 007B -> Index 94
+		      Char 007C -> Index 95
+		      Char 007D -> Index 96
+		      Char 007E -> Index 97
+		   2. Char 00A0 -> Index 3
+		      Char 00A1 -> Index 163
+		      Char 00A2 -> Index 132
+		      Char 00A3 -> Index 133
+		      Char 00A4 -> Index 862
+		      Char 00A5 -> Index 150
+		      Char 00A6 -> Index 230
+		      Char 00A7 -> Index 134
+		      Char 00A8 -> Index 142
+		      Char 00A9 -> Index 139
+		      Char 00AA -> Index 157
+		      Char 00AB -> Index 169
+		      Char 00AC -> Index 164
+		      Char 00AD -> Index 16
+		      Char 00AE -> Index 138
+		      Char 00AF -> Index 256
+		      Char 00B0 -> Index 131
+		      Char 00B1 -> Index 147
+		      Char 00B2 -> Index 240
+		      Char 00B3 -> Index 241
+		      Char 00B4 -> Index 141
+		      Char 00B5 -> Index 151
+		      Char 00B6 -> Index 136
+		      Char 00B7 -> Index 194
+		      Char 00B8 -> Index 220
+		      Char 00B9 -> Index 239
+		      Char 00BA -> Index 158
+		      Char 00BB -> Index 170
+		      Char 00BC -> Index 243
+		      Char 00BD -> Index 242
+		      Char 00BE -> Index 244
+		      Char 00BF -> Index 162
+		      Char 00C0 -> Index 172
+		      Char 00C1 -> Index 200
+		      Char 00C2 -> Index 198
+		      Char 00C3 -> Index 173
+		      Char 00C4 -> Index 98
+		      Char 00C5 -> Index 99
+		      Char 00C6 -> Index 144
+		      Char 00C7 -> Index 100
+		      Char 00C8 -> Index 202
+		      Char 00C9 -> Index 101
+		      Char 00CA -> Index 199
+		      Char 00CB -> Index 201
+		      Char 00CC -> Index 206
+		      Char 00CD -> Index 203
+		      Char 00CE -> Index 204
+		      Char 00CF -> Index 205
+		      Char 00D0 -> Index 231
+		      Char 00D1 -> Index 102
+		      Char 00D2 -> Index 209
+		      Char 00D3 -> Index 207
+		      Char 00D4 -> Index 208
+		      Char 00D5 -> Index 174
+		      Char 00D6 -> Index 103
+		      Char 00D7 -> Index 238
+		      Char 00D8 -> Index 145
+		      Char 00D9 -> Index 212
+		      Char 00DA -> Index 210
+		      Char 00DB -> Index 211
+		      Char 00DC -> Index 104
+		      Char 00DD -> Index 233
+		      Char 00DE -> Index 235
+		      Char 00DF -> Index 137
+		      Char 00E0 -> Index 106
+		      Char 00E1 -> Index 105
+		      Char 00E2 -> Index 107
+		      Char 00E3 -> Index 109
+		      Char 00E4 -> Index 108
+		      Char 00E5 -> Index 110
+		      Char 00E6 -> Index 160
+		      Char 00E7 -> Index 111
+		      Char 00E8 -> Index 113
+		      Char 00E9 -> Index 112
+		      Char 00EA -> Index 114
+		      Char 00EB -> Index 115
+		      Char 00EC -> Index 117
+		      Char 00ED -> Index 116
+		      Char 00EE -> Index 118
+		      Char 00EF -> Index 119
+		      Char 00F0 -> Index 232
+		      Char 00F1 -> Index 120
+		      Char 00F2 -> Index 122
+		      Char 00F3 -> Index 121
+		      Char 00F4 -> Index 123
+		      Char 00F5 -> Index 125
+		      Char 00F6 -> Index 124
+		      Char 00F7 -> Index 183
+		      Char 00F8 -> Index 161
+		      Char 00F9 -> Index 127
+		      Char 00FA -> Index 126
+		      Char 00FB -> Index 128
+		      Char 00FC -> Index 129
+		      Char 00FD -> Index 234
+		      Char 00FE -> Index 236
+		      Char 00FF -> Index 185
+		      Char 0100 -> Index 406
+		      Char 0101 -> Index 407
+		      Char 0102 -> Index 258
+		      Char 0103 -> Index 259
+		      Char 0104 -> Index 260
+		      Char 0105 -> Index 261
+		      Char 0106 -> Index 251
+		      Char 0107 -> Index 252
+		      Char 0108 -> Index 408
+		      Char 0109 -> Index 409
+		      Char 010A -> Index 410
+		      Char 010B -> Index 411
+		      Char 010C -> Index 253
+		      Char 010D -> Index 254
+		      Char 010E -> Index 262
+		      Char 010F -> Index 263
+		      Char 0110 -> Index 264
+		      Char 0111 -> Index 255
+		      Char 0112 -> Index 412
+		      Char 0113 -> Index 413
+		      Char 0114 -> Index 414
+		      Char 0115 -> Index 415
+		      Char 0116 -> Index 416
+		      Char 0117 -> Index 417
+		      Char 0118 -> Index 265
+		      Char 0119 -> Index 266
+		      Char 011A -> Index 267
+		      Char 011B -> Index 268
+		      Char 011C -> Index 418
+		      Char 011D -> Index 419
+		      Char 011E -> Index 246
+		      Char 011F -> Index 247
+		      Char 0120 -> Index 420
+		      Char 0121 -> Index 421
+		      Char 0122 -> Index 422
+		      Char 0123 -> Index 423
+		      Char 0124 -> Index 424
+		      Char 0125 -> Index 425
+		      Char 0126 -> Index 426
+		      Char 0127 -> Index 427
+		      Char 0128 -> Index 428
+		      Char 0129 -> Index 429
+		      Char 012A -> Index 430
+		      Char 012B -> Index 431
+		      Char 012C -> Index 432
+		      Char 012D -> Index 433
+		      Char 012E -> Index 434
+		      Char 012F -> Index 435
+		      Char 0130 -> Index 248
+		      Char 0131 -> Index 213
+		      Char 0132 -> Index 394
+		      Char 0133 -> Index 395
+		      Char 0134 -> Index 436
+		      Char 0135 -> Index 437
+		      Char 0136 -> Index 438
+		      Char 0137 -> Index 439
+		      Char 0138 -> Index 440
+		      Char 0139 -> Index 269
+		      Char 013A -> Index 270
+		      Char 013B -> Index 441
+		      Char 013C -> Index 442
+		      Char 013D -> Index 271
+		      Char 013E -> Index 272
+		      Char 013F -> Index 273
+		      Char 0140 -> Index 274
+		      Char 0141 -> Index 224
+		      Char 0142 -> Index 225
+		      Char 0143 -> Index 275
+		      Char 0144 -> Index 276
+		      Char 0145 -> Index 443
+		      Char 0146 -> Index 444
+		      Char 0147 -> Index 277
+		      Char 0148 -> Index 278
+		      Char 0149 -> Index 396
+		      Char 014A -> Index 445
+		      Char 014B -> Index 446
+		      Char 014C -> Index 447
+		      Char 014D -> Index 448
+		      Char 014E -> Index 449
+		      Char 014F -> Index 450
+		      Char 0150 -> Index 279
+		      Char 0151 -> Index 280
+		      Char 0152 -> Index 175
+		      Char 0153 -> Index 176
+		      Char 0154 -> Index 281
+		      Char 0155 -> Index 282
+		      Char 0156 -> Index 451
+		      Char 0157 -> Index 452
+		      Char 0158 -> Index 283
+		      Char 0159 -> Index 284
+		      Char 015A -> Index 285
+		      Char 015B -> Index 286
+		      Char 015C -> Index 453
+		      Char 015D -> Index 454
+		      Char 015E -> Index 249
+		      Char 015F -> Index 250
+		      Char 0160 -> Index 226
+		      Char 0161 -> Index 227
+		      Char 0162 -> Index 287
+		      Char 0163 -> Index 288
+		      Char 0164 -> Index 289
+		      Char 0165 -> Index 290
+		      Char 0166 -> Index 455
+		      Char 0167 -> Index 456
+		      Char 0168 -> Index 457
+		      Char 0169 -> Index 458
+		      Char 016A -> Index 459
+		      Char 016B -> Index 460
+		      Char 016C -> Index 461
+		      Char 016D -> Index 462
+		      Char 016E -> Index 291
+		      Char 016F -> Index 292
+		      Char 0170 -> Index 293
+		      Char 0171 -> Index 294
+		      Char 0172 -> Index 463
+		      Char 0173 -> Index 464
+		      Char 0174 -> Index 465
+		      Char 0175 -> Index 466
+		      Char 0176 -> Index 467
+		      Char 0177 -> Index 468
+		      Char 0178 -> Index 186
+		      Char 0179 -> Index 295
+		      Char 017A -> Index 296
+		      Char 017B -> Index 297
+		      Char 017C -> Index 298
+		      Char 017D -> Index 228
+		      Char 017E -> Index 229
+		      Char 017F -> Index 469
+		   3. Char 018F -> Index 1316
+		   4. Char 0192 -> Index 166
+		   5. Char 01A0 -> Index 1130
+		      Char 01A1 -> Index 1131
+		   6. Char 01AF -> Index 1132
+		      Char 01B0 -> Index 1133
+		   7. Char 01CD -> Index 1276
+		      Char 01CE -> Index 1277
+		      Char 01CF -> Index 1278
+		      Char 01D0 -> Index 1279
+		      Char 01D1 -> Index 1280
+		      Char 01D2 -> Index 1281
+		      Char 01D3 -> Index 1282
+		      Char 01D4 -> Index 1283
+		      Char 01D5 -> Index 1284
+		      Char 01D6 -> Index 1285
+		      Char 01D7 -> Index 1286
+		      Char 01D8 -> Index 1287
+		      Char 01D9 -> Index 1288
+		      Char 01DA -> Index 1289
+		      Char 01DB -> Index 1290
+		      Char 01DC -> Index 1291
+		   8. Char 01FA -> Index 470
+		      Char 01FB -> Index 471
+		      Char 01FC -> Index 472
+		      Char 01FD -> Index 473
+		      Char 01FE -> Index 474
+		      Char 01FF -> Index 475
+		   9. Char 0259 -> Index 1317
+		  10. Char 02C6 -> Index 214
+		      Char 02C7 -> Index 223
+		  11. Char 02C9 -> Index 216
+		  12. Char 02D8 -> Index 217
+		      Char 02D9 -> Index 218
+		      Char 02DA -> Index 219
+		      Char 02DB -> Index 222
+		      Char 02DC -> Index 215
+		      Char 02DD -> Index 221
+		  13. Char 0300 -> Index 1170
+		      Char 0301 -> Index 1171
+		  14. Char 0303 -> Index 1146
+		  15. Char 0309 -> Index 1140
+		  16. Char 0323 -> Index 1173
+		  17. Char 037E -> Index 30
+		  18. Char 0384 -> Index 495
+		      Char 0385 -> Index 496
+		      Char 0386 -> Index 497
+		      Char 0387 -> Index 476
+		      Char 0388 -> Index 498
+		      Char 0389 -> Index 499
+		      Char 038A -> Index 500
+		  19. Char 038C -> Index 501
+		  20. Char 038E -> Index 502
+		      Char 038F -> Index 503
+		      Char 0390 -> Index 504
+		      Char 0391 -> Index 505
+		      Char 0392 -> Index 506
+		      Char 0393 -> Index 299
+		      Char 0394 -> Index 507
+		      Char 0395 -> Index 508
+		      Char 0396 -> Index 509
+		      Char 0397 -> Index 510
+		      Char 0398 -> Index 300
+		      Char 0399 -> Index 511
+		      Char 039A -> Index 512
+		      Char 039B -> Index 513
+		      Char 039C -> Index 514
+		      Char 039D -> Index 515
+		      Char 039E -> Index 516
+		      Char 039F -> Index 517
+		      Char 03A0 -> Index 518
+		      Char 03A1 -> Index 519
+		  21. Char 03A3 -> Index 520
+		      Char 03A4 -> Index 521
+		      Char 03A5 -> Index 522
+		      Char 03A6 -> Index 301
+		      Char 03A7 -> Index 523
+		      Char 03A8 -> Index 524
+		      Char 03A9 -> Index 525
+		      Char 03AA -> Index 526
+		      Char 03AB -> Index 527
+		      Char 03AC -> Index 528
+		      Char 03AD -> Index 529
+		      Char 03AE -> Index 530
+		      Char 03AF -> Index 531
+		      Char 03B0 -> Index 532
+		      Char 03B1 -> Index 302
+		      Char 03B2 -> Index 533
+		      Char 03B3 -> Index 534
+		      Char 03B4 -> Index 303
+		      Char 03B5 -> Index 304
+		      Char 03B6 -> Index 535
+		      Char 03B7 -> Index 536
+		      Char 03B8 -> Index 537
+		      Char 03B9 -> Index 538
+		      Char 03BA -> Index 539
+		      Char 03BB -> Index 540
+		      Char 03BC -> Index 541
+		      Char 03BD -> Index 542
+		      Char 03BE -> Index 543
+		      Char 03BF -> Index 544
+		      Char 03C0 -> Index 652
+		      Char 03C1 -> Index 545
+		      Char 03C2 -> Index 546
+		      Char 03C3 -> Index 305
+		      Char 03C4 -> Index 306
+		      Char 03C5 -> Index 547
+		      Char 03C6 -> Index 307
+		      Char 03C7 -> Index 548
+		      Char 03C8 -> Index 549
+		      Char 03C9 -> Index 550
+		      Char 03CA -> Index 551
+		      Char 03CB -> Index 552
+		      Char 03CC -> Index 553
+		      Char 03CD -> Index 554
+		      Char 03CE -> Index 555
+		  22. Char 0401 -> Index 556
+		      Char 0402 -> Index 557
+		      Char 0403 -> Index 558
+		      Char 0404 -> Index 559
+		      Char 0405 -> Index 560
+		      Char 0406 -> Index 561
+		      Char 0407 -> Index 562
+		      Char 0408 -> Index 563
+		      Char 0409 -> Index 564
+		      Char 040A -> Index 565
+		      Char 040B -> Index 566
+		      Char 040C -> Index 567
+		  23. Char 040E -> Index 568
+		      Char 040F -> Index 569
+		      Char 0410 -> Index 570
+		      Char 0411 -> Index 571
+		      Char 0412 -> Index 572
+		      Char 0413 -> Index 573
+		      Char 0414 -> Index 574
+		      Char 0415 -> Index 575
+		      Char 0416 -> Index 576
+		      Char 0417 -> Index 577
+		      Char 0418 -> Index 578
+		      Char 0419 -> Index 579
+		      Char 041A -> Index 580
+		      Char 041B -> Index 581
+		      Char 041C -> Index 582
+		      Char 041D -> Index 583
+		      Char 041E -> Index 584
+		      Char 041F -> Index 585
+		      Char 0420 -> Index 586
+		      Char 0421 -> Index 587
+		      Char 0422 -> Index 588
+		      Char 0423 -> Index 589
+		      Char 0424 -> Index 590
+		      Char 0425 -> Index 591
+		      Char 0426 -> Index 592
+		      Char 0427 -> Index 593
+		      Char 0428 -> Index 594
+		      Char 0429 -> Index 595
+		      Char 042A -> Index 596
+		      Char 042B -> Index 597
+		      Char 042C -> Index 598
+		      Char 042D -> Index 599
+		      Char 042E -> Index 600
+		      Char 042F -> Index 601
+		      Char 0430 -> Index 602
+		      Char 0431 -> Index 603
+		      Char 0432 -> Index 604
+		      Char 0433 -> Index 605
+		      Char 0434 -> Index 606
+		      Char 0435 -> Index 607
+		      Char 0436 -> Index 608
+		      Char 0437 -> Index 609
+		      Char 0438 -> Index 610
+		      Char 0439 -> Index 611
+		      Char 043A -> Index 612
+		      Char 043B -> Index 613
+		      Char 043C -> Index 614
+		      Char 043D -> Index 615
+		      Char 043E -> Index 616
+		      Char 043F -> Index 617
+		      Char 0440 -> Index 618
+		      Char 0441 -> Index 619
+		      Char 0442 -> Index 620
+		      Char 0443 -> Index 621
+		      Char 0444 -> Index 622
+		      Char 0445 -> Index 623
+		      Char 0446 -> Index 624
+		      Char 0447 -> Index 625
+		      Char 0448 -> Index 626
+		      Char 0449 -> Index 627
+		      Char 044A -> Index 628
+		      Char 044B -> Index 629
+		      Char 044C -> Index 630
+		      Char 044D -> Index 631
+		      Char 044E -> Index 632
+		      Char 044F -> Index 633
+		  24. Char 0451 -> Index 634
+		      Char 0452 -> Index 635
+		      Char 0453 -> Index 636
+		      Char 0454 -> Index 637
+		      Char 0455 -> Index 638
+		      Char 0456 -> Index 639
+		      Char 0457 -> Index 640
+		      Char 0458 -> Index 641
+		      Char 0459 -> Index 642
+		      Char 045A -> Index 643
+		      Char 045B -> Index 644
+		      Char 045C -> Index 645
+		  25. Char 045E -> Index 646
+		      Char 045F -> Index 647
+		  26. Char 0490 -> Index 648
+		      Char 0491 -> Index 649
+		      Char 0492 -> Index 1296
+		      Char 0493 -> Index 1297
+		  27. Char 0496 -> Index 1298
+		      Char 0497 -> Index 1299
+		  28. Char 049A -> Index 1300
+		      Char 049B -> Index 1301
+		      Char 049C -> Index 1302
+		      Char 049D -> Index 1303
+		  29. Char 04A2 -> Index 1304
+		      Char 04A3 -> Index 1305
+		  30. Char 04AE -> Index 1306
+		      Char 04AF -> Index 1307
+		      Char 04B0 -> Index 1308
+		      Char 04B1 -> Index 1309
+		      Char 04B2 -> Index 1310
+		      Char 04B3 -> Index 1311
+		  31. Char 04B8 -> Index 1312
+		      Char 04B9 -> Index 1313
+		      Char 04BA -> Index 1314
+		      Char 04BB -> Index 1315
+		  32. Char 04D8 -> Index 1316
+		      Char 04D9 -> Index 1317
+		  33. Char 04E8 -> Index 1318
+		      Char 04E9 -> Index 1319
+		  34. Char 05B0 -> Index 653
+		      Char 05B1 -> Index 654
+		      Char 05B2 -> Index 655
+		      Char 05B3 -> Index 656
+		      Char 05B4 -> Index 657
+		      Char 05B5 -> Index 658
+		      Char 05B6 -> Index 659
+		      Char 05B7 -> Index 660
+		      Char 05B8 -> Index 661
+		      Char 05B9 -> Index 662
+		  35. Char 05BB -> Index 663
+		      Char 05BC -> Index 664
+		      Char 05BD -> Index 665
+		      Char 05BE -> Index 666
+		      Char 05BF -> Index 667
+		      Char 05C0 -> Index 668
+		      Char 05C1 -> Index 669
+		      Char 05C2 -> Index 670
+		      Char 05C3 -> Index 671
+		  36. Char 05D0 -> Index 672
+		      Char 05D1 -> Index 673
+		      Char 05D2 -> Index 674
+		      Char 05D3 -> Index 675
+		      Char 05D4 -> Index 676
+		      Char 05D5 -> Index 677
+		      Char 05D6 -> Index 678
+		      Char 05D7 -> Index 679
+		      Char 05D8 -> Index 680
+		      Char 05D9 -> Index 681
+		      Char 05DA -> Index 682
+		      Char 05DB -> Index 683
+		      Char 05DC -> Index 684
+		      Char 05DD -> Index 685
+		      Char 05DE -> Index 686
+		      Char 05DF -> Index 687
+		      Char 05E0 -> Index 688
+		      Char 05E1 -> Index 689
+		      Char 05E2 -> Index 690
+		      Char 05E3 -> Index 691
+		      Char 05E4 -> Index 692
+		      Char 05E5 -> Index 693
+		      Char 05E6 -> Index 694
+		      Char 05E7 -> Index 695
+		      Char 05E8 -> Index 696
+		      Char 05E9 -> Index 697
+		      Char 05EA -> Index 698
+		  37. Char 05F0 -> Index 699
+		      Char 05F1 -> Index 700
+		      Char 05F2 -> Index 701
+		      Char 05F3 -> Index 702
+		      Char 05F4 -> Index 703
+		  38. Char 060C -> Index 748
+		  39. Char 061B -> Index 749
+		  40. Char 061F -> Index 750
+		  41. Char 0621 -> Index 751
+		      Char 0622 -> Index 897
+		      Char 0623 -> Index 899
+		      Char 0624 -> Index 901
+		      Char 0625 -> Index 903
+		      Char 0626 -> Index 905
+		      Char 0627 -> Index 909
+		      Char 0628 -> Index 911
+		      Char 0629 -> Index 915
+		      Char 062A -> Index 917
+		      Char 062B -> Index 921
+		      Char 062C -> Index 925
+		      Char 062D -> Index 929
+		      Char 062E -> Index 933
+		      Char 062F -> Index 937
+		      Char 0630 -> Index 939
+		      Char 0631 -> Index 941
+		      Char 0632 -> Index 943
+		      Char 0633 -> Index 945
+		      Char 0634 -> Index 949
+		      Char 0635 -> Index 953
+		      Char 0636 -> Index 957
+		      Char 0637 -> Index 961
+		      Char 0638 -> Index 965
+		      Char 0639 -> Index 969
+		      Char 063A -> Index 973
+		  42. Char 0640 -> Index 752
+		      Char 0641 -> Index 977
+		      Char 0642 -> Index 981
+		      Char 0643 -> Index 985
+		      Char 0644 -> Index 989
+		      Char 0645 -> Index 993
+		      Char 0646 -> Index 997
+		      Char 0647 -> Index 1001
+		      Char 0648 -> Index 1005
+		      Char 0649 -> Index 1007
+		      Char 064A -> Index 1009
+		      Char 064B -> Index 753
+		      Char 064C -> Index 754
+		      Char 064D -> Index 755
+		      Char 064E -> Index 756
+		      Char 064F -> Index 757
+		      Char 0650 -> Index 758
+		      Char 0651 -> Index 759
+		      Char 0652 -> Index 760
+		  43. Char 0660 -> Index 761
+		      Char 0661 -> Index 762
+		      Char 0662 -> Index 763
+		      Char 0663 -> Index 764
+		      Char 0664 -> Index 765
+		      Char 0665 -> Index 766
+		      Char 0666 -> Index 767
+		      Char 0667 -> Index 768
+		      Char 0668 -> Index 769
+		      Char 0669 -> Index 770
+		      Char 066A -> Index 771
+		      Char 066B -> Index 772
+		  44. Char 066D -> Index 773
+		  45. Char 0671 -> Index 797
+		  46. Char 067E -> Index 799
+		  47. Char 0686 -> Index 807
+		  48. Char 0698 -> Index 811
+		  49. Char 06A4 -> Index 803
+		  50. Char 06A9 -> Index 813
+		  51. Char 06AF -> Index 817
+		  52. Char 06CC -> Index 821
+		  53. Char 06D5 -> Index 776
+		  54. Char 06F0 -> Index 761
+		      Char 06F1 -> Index 762
+		      Char 06F2 -> Index 763
+		      Char 06F3 -> Index 764
+		      Char 06F4 -> Index 778
+		      Char 06F5 -> Index 779
+		      Char 06F6 -> Index 780
+		      Char 06F7 -> Index 768
+		      Char 06F8 -> Index 769
+		      Char 06F9 -> Index 770
+		  55. Char 1E80 -> Index 477
+		      Char 1E81 -> Index 478
+		      Char 1E82 -> Index 479
+		      Char 1E83 -> Index 480
+		      Char 1E84 -> Index 481
+		      Char 1E85 -> Index 482
+		  56. Char 1EA0 -> Index 1188
+		      Char 1EA1 -> Index 1189
+		      Char 1EA2 -> Index 1190
+		      Char 1EA3 -> Index 1191
+		      Char 1EA4 -> Index 1192
+		      Char 1EA5 -> Index 1193
+		      Char 1EA6 -> Index 1194
+		      Char 1EA7 -> Index 1195
+		      Char 1EA8 -> Index 1196
+		      Char 1EA9 -> Index 1197
+		      Char 1EAA -> Index 1198
+		      Char 1EAB -> Index 1199
+		      Char 1EAC -> Index 1200
+		      Char 1EAD -> Index 1201
+		      Char 1EAE -> Index 1202
+		      Char 1EAF -> Index 1203
+		      Char 1EB0 -> Index 1204
+		      Char 1EB1 -> Index 1205
+		      Char 1EB2 -> Index 1206
+		      Char 1EB3 -> Index 1207
+		      Char 1EB4 -> Index 1208
+		      Char 1EB5 -> Index 1209
+		      Char 1EB6 -> Index 1210
+		      Char 1EB7 -> Index 1211
+		      Char 1EB8 -> Index 1212
+		      Char 1EB9 -> Index 1213
+		      Char 1EBA -> Index 1214
+		      Char 1EBB -> Index 1215
+		      Char 1EBC -> Index 1216
+		      Char 1EBD -> Index 1217
+		      Char 1EBE -> Index 1218
+		      Char 1EBF -> Index 1219
+		      Char 1EC0 -> Index 1220
+		      Char 1EC1 -> Index 1221
+		      Char 1EC2 -> Index 1222
+		      Char 1EC3 -> Index 1223
+		      Char 1EC4 -> Index 1224
+		      Char 1EC5 -> Index 1225
+		      Char 1EC6 -> Index 1226
+		      Char 1EC7 -> Index 1227
+		      Char 1EC8 -> Index 1228
+		      Char 1EC9 -> Index 1229
+		      Char 1ECA -> Index 1230
+		      Char 1ECB -> Index 1231
+		      Char 1ECC -> Index 1232
+		      Char 1ECD -> Index 1233
+		      Char 1ECE -> Index 1234
+		      Char 1ECF -> Index 1235
+		      Char 1ED0 -> Index 1236
+		      Char 1ED1 -> Index 1237
+		      Char 1ED2 -> Index 1238
+		      Char 1ED3 -> Index 1239
+		      Char 1ED4 -> Index 1240
+		      Char 1ED5 -> Index 1241
+		      Char 1ED6 -> Index 1242
+		      Char 1ED7 -> Index 1243
+		      Char 1ED8 -> Index 1244
+		      Char 1ED9 -> Index 1245
+		      Char 1EDA -> Index 1246
+		      Char 1EDB -> Index 1247
+		      Char 1EDC -> Index 1248
+		      Char 1EDD -> Index 1249
+		      Char 1EDE -> Index 1250
+		      Char 1EDF -> Index 1251
+		      Char 1EE0 -> Index 1252
+		      Char 1EE1 -> Index 1253
+		      Char 1EE2 -> Index 1254
+		      Char 1EE3 -> Index 1255
+		      Char 1EE4 -> Index 1256
+		      Char 1EE5 -> Index 1257
+		      Char 1EE6 -> Index 1258
+		      Char 1EE7 -> Index 1259
+		      Char 1EE8 -> Index 1260
+		      Char 1EE9 -> Index 1261
+		      Char 1EEA -> Index 1262
+		      Char 1EEB -> Index 1263
+		      Char 1EEC -> Index 1264
+		      Char 1EED -> Index 1265
+		      Char 1EEE -> Index 1266
+		      Char 1EEF -> Index 1267
+		      Char 1EF0 -> Index 1268
+		      Char 1EF1 -> Index 1269
+		      Char 1EF2 -> Index 483
+		      Char 1EF3 -> Index 484
+		      Char 1EF4 -> Index 1270
+		      Char 1EF5 -> Index 1271
+		      Char 1EF6 -> Index 1272
+		      Char 1EF7 -> Index 1273
+		      Char 1EF8 -> Index 1274
+		      Char 1EF9 -> Index 1275
+		  57. Char 200C -> Index 744
+		      Char 200D -> Index 745
+		      Char 200E -> Index 746
+		      Char 200F -> Index 747
+		  58. Char 2013 -> Index 177
+		      Char 2014 -> Index 178
+		      Char 2015 -> Index 650
+		  59. Char 2017 -> Index 308
+		      Char 2018 -> Index 181
+		      Char 2019 -> Index 182
+		      Char 201A -> Index 195
+		      Char 201B -> Index 485
+		      Char 201C -> Index 179
+		      Char 201D -> Index 180
+		      Char 201E -> Index 196
+		  60. Char 2020 -> Index 130
+		      Char 2021 -> Index 193
+		      Char 2022 -> Index 135
+		  61. Char 2026 -> Index 171
+		  62. Char 202A -> Index 846
+		      Char 202B -> Index 847
+		      Char 202C -> Index 850
+		      Char 202D -> Index 848
+		      Char 202E -> Index 849
+		  63. Char 2030 -> Index 197
+		  64. Char 2032 -> Index 397
+		      Char 2033 -> Index 398
+		  65. Char 2039 -> Index 189
+		      Char 203A -> Index 190
+		  66. Char 203C -> Index 309
+		  67. Char 203E -> Index 486
+		  68. Char 2044 -> Index 187
+		  69. Char 206A -> Index 853
+		      Char 206B -> Index 854
+		      Char 206C -> Index 855
+		      Char 206D -> Index 856
+		      Char 206E -> Index 851
+		      Char 206F -> Index 852
+		  70. Char 207F -> Index 310
+		  71. Char 20A3 -> Index 245
+		      Char 20A4 -> Index 487
+		  72. Char 20A7 -> Index 311
+		  73. Char 20AA -> Index 704
+		      Char 20AB -> Index 1150
+		      Char 20AC -> Index 188
+		  74. Char 2105 -> Index 399
+		  75. Char 2113 -> Index 400
+		  76. Char 2116 -> Index 651
+		  77. Char 2122 -> Index 140
+		  78. Char 2126 -> Index 159
+		  79. Char 212E -> Index 488
+		  80. Char 2153 -> Index 1151
+		      Char 2154 -> Index 1152
+		  81. Char 215B -> Index 489
+		      Char 215C -> Index 490
+		      Char 215D -> Index 491
+		      Char 215E -> Index 492
+		  82. Char 2190 -> Index 312
+		      Char 2191 -> Index 313
+		      Char 2192 -> Index 314
+		      Char 2193 -> Index 315
+		      Char 2194 -> Index 316
+		      Char 2195 -> Index 317
+		  83. Char 21A8 -> Index 318
+		  84. Char 2202 -> Index 152
+		  85. Char 2206 -> Index 168
+		  86. Char 220F -> Index 154
+		  87. Char 2211 -> Index 153
+		      Char 2212 -> Index 237
+		  88. Char 2215 -> Index 187
+		  89. Char 2219 -> Index 194
+		      Char 221A -> Index 165
+		  90. Char 221E -> Index 146
+		      Char 221F -> Index 319
+		  91. Char 2229 -> Index 320
+		  92. Char 222B -> Index 156
+		  93. Char 2248 -> Index 167
+		  94. Char 2260 -> Index 143
+		      Char 2261 -> Index 321
+		  95. Char 2264 -> Index 148
+		      Char 2265 -> Index 149
+		  96. Char 2302 -> Index 322
+		  97. Char 2310 -> Index 323
+		  98. Char 2320 -> Index 324
+		      Char 2321 -> Index 325
+		  99. Char 2500 -> Index 326
+		 100. Char 2502 -> Index 327
+		 101. Char 250C -> Index 328
+		 102. Char 2510 -> Index 329
+		 103. Char 2514 -> Index 330
+		 104. Char 2518 -> Index 331
+		 105. Char 251C -> Index 332
+		 106. Char 2524 -> Index 333
+		 107. Char 252C -> Index 334
+		 108. Char 2534 -> Index 335
+		 109. Char 253C -> Index 336
+		 110. Char 2550 -> Index 337
+		      Char 2551 -> Index 338
+		      Char 2552 -> Index 339
+		      Char 2553 -> Index 340
+		      Char 2554 -> Index 341
+		      Char 2555 -> Index 342
+		      Char 2556 -> Index 343
+		      Char 2557 -> Index 344
+		      Char 2558 -> Index 345
+		      Char 2559 -> Index 346
+		      Char 255A -> Index 347
+		      Char 255B -> Index 348
+		      Char 255C -> Index 349
+		      Char 255D -> Index 350
+		      Char 255E -> Index 351
+		      Char 255F -> Index 352
+		      Char 2560 -> Index 353
+		      Char 2561 -> Index 354
+		      Char 2562 -> Index 355
+		      Char 2563 -> Index 356
+		      Char 2564 -> Index 357
+		      Char 2565 -> Index 358
+		      Char 2566 -> Index 359
+		      Char 2567 -> Index 360
+		      Char 2568 -> Index 361
+		      Char 2569 -> Index 362
+		      Char 256A -> Index 363
+		      Char 256B -> Index 364
+		      Char 256C -> Index 365
+		 111. Char 2580 -> Index 366
+		 112. Char 2584 -> Index 367
+		 113. Char 2588 -> Index 368
+		 114. Char 258C -> Index 369
+		 115. Char 2590 -> Index 370
+		      Char 2591 -> Index 371
+		      Char 2592 -> Index 372
+		      Char 2593 -> Index 373
+		 116. Char 25A0 -> Index 374
+		      Char 25A1 -> Index 401
+		 117. Char 25AA -> Index 402
+		      Char 25AB -> Index 403
+		      Char 25AC -> Index 375
+		 118. Char 25B2 -> Index 376
+		 119. Char 25BA -> Index 377
+		 120. Char 25BC -> Index 378
+		 121. Char 25C4 -> Index 379
+		 122. Char 25CA -> Index 184
+		      Char 25CB -> Index 380
+		 123. Char 25CF -> Index 404
+		 124. Char 25D8 -> Index 381
+		      Char 25D9 -> Index 382
+		 125. Char 25E6 -> Index 405
+		 126. Char 263A -> Index 383
+		      Char 263B -> Index 384
+		      Char 263C -> Index 385
+		 127. Char 2640 -> Index 386
+		 128. Char 2642 -> Index 387
+		 129. Char 2660 -> Index 388
+		 130. Char 2663 -> Index 389
+		 131. Char 2665 -> Index 390
+		      Char 2666 -> Index 391
+		 132. Char 266A -> Index 392
+		      Char 266B -> Index 393
+		 133. Char E801 -> Index 705
+		      Char E802 -> Index 706
+		      Char E803 -> Index 707
+		      Char E804 -> Index 708
+		      Char E805 -> Index 709
+		 134. Char E818 -> Index 786
+		 135. Char E83A -> Index 795
+		 136. Char F001 -> Index 191
+		      Char F002 -> Index 192
+		 137. Char F004 -> Index 493
+		      Char F005 -> Index 494
+		      Char F006 -> Index 1137
+		      Char F007 -> Index 1138
+		      Char F008 -> Index 1153
+		      Char F009 -> Index 1139
+		      Char F00A -> Index 857
+		      Char F00B -> Index 858
+		      Char F00C -> Index 859
+		      Char F00D -> Index 860
+		      Char F00E -> Index 861
+		      Char F00F -> Index 1156
+		      Char F010 -> Index 1141
+		      Char F011 -> Index 1143
+		      Char F012 -> Index 1157
+		      Char F013 -> Index 1142
+		      Char F014 -> Index 1158
+		      Char F015 -> Index 1145
+		      Char F016 -> Index 1159
+		      Char F017 -> Index 1160
+		      Char F018 -> Index 1161
+		      Char F019 -> Index 1162
+		      Char F01A -> Index 1163
+		      Char F01B -> Index 1164
+		      Char F01C -> Index 1144
+		      Char F01D -> Index 1172
+		      Char F01E -> Index 1165
+		      Char F01F -> Index 1166
+		      Char F020 -> Index 1167
+		      Char F021 -> Index 1168
+		      Char F022 -> Index 1169
+		      Char F023 -> Index 1174
+		      Char F024 -> Index 1178
+		      Char F025 -> Index 1179
+		      Char F026 -> Index 1180
+		      Char F027 -> Index 1181
+		      Char F028 -> Index 1182
+		      Char F029 -> Index 1175
+		      Char F02A -> Index 1176
+		      Char F02B -> Index 1177
+		      Char F02C -> Index 1149
+		      Char F02D -> Index 1183
+		      Char F02E -> Index 1184
+		      Char F02F -> Index 1185
+		      Char F030 -> Index 1186
+		      Char F031 -> Index 1187
+		 138. Char FB01 -> Index 191
+		      Char FB02 -> Index 192
+		 139. Char FB20 -> Index 710
+		 140. Char FB2A -> Index 711
+		      Char FB2B -> Index 712
+		      Char FB2C -> Index 713
+		      Char FB2D -> Index 714
+		      Char FB2E -> Index 715
+		      Char FB2F -> Index 716
+		      Char FB30 -> Index 717
+		      Char FB31 -> Index 718
+		      Char FB32 -> Index 719
+		      Char FB33 -> Index 720
+		      Char FB34 -> Index 721
+		      Char FB35 -> Index 722
+		      Char FB36 -> Index 723
+		 141. Char FB38 -> Index 724
+		      Char FB39 -> Index 725
+		      Char FB3A -> Index 726
+		      Char FB3B -> Index 727
+		      Char FB3C -> Index 728
+		 142. Char FB3E -> Index 729
+		 143. Char FB40 -> Index 730
+		      Char FB41 -> Index 731
+		 144. Char FB43 -> Index 732
+		      Char FB44 -> Index 733
+		 145. Char FB46 -> Index 734
+		      Char FB47 -> Index 735
+		      Char FB48 -> Index 736
+		      Char FB49 -> Index 737
+		      Char FB4A -> Index 738
+		      Char FB4B -> Index 739
+		      Char FB4C -> Index 740
+		      Char FB4D -> Index 741
+		      Char FB4E -> Index 742
+		      Char FB4F -> Index 743
+		 146. Char FB56 -> Index 799
+		      Char FB57 -> Index 800
+		      Char FB58 -> Index 801
+		      Char FB59 -> Index 802
+		 147. Char FB7A -> Index 807
+		      Char FB7B -> Index 808
+		      Char FB7C -> Index 809
+		      Char FB7D -> Index 810
+		 148. Char FB8A -> Index 811
+		      Char FB8B -> Index 812
+		 149. Char FB8E -> Index 813
+		      Char FB8F -> Index 814
+		      Char FB90 -> Index 815
+		      Char FB91 -> Index 816
+		      Char FB92 -> Index 817
+		      Char FB93 -> Index 818
+		      Char FB94 -> Index 819
+		      Char FB95 -> Index 820
+		 150. Char FBFC -> Index 821
+		      Char FBFD -> Index 822
+		      Char FBFE -> Index 1011
+		      Char FBFF -> Index 1012
+		 151. Char FC5E -> Index 839
+		      Char FC5F -> Index 840
+		      Char FC60 -> Index 841
+		      Char FC61 -> Index 842
+		      Char FC62 -> Index 843
+		 152. Char FD3E -> Index 892
+		      Char FD3F -> Index 893
+		 153. Char FDF2 -> Index 895
+		 154. Char FE80 -> Index 896
+		      Char FE81 -> Index 897
+		      Char FE82 -> Index 898
+		      Char FE83 -> Index 899
+		      Char FE84 -> Index 900
+		      Char FE85 -> Index 901
+		      Char FE86 -> Index 902
+		      Char FE87 -> Index 903
+		      Char FE88 -> Index 904
+		      Char FE89 -> Index 905
+		      Char FE8A -> Index 906
+		      Char FE8B -> Index 907
+		      Char FE8C -> Index 908
+		      Char FE8D -> Index 909
+		      Char FE8E -> Index 910
+		      Char FE8F -> Index 911
+		      Char FE90 -> Index 912
+		      Char FE91 -> Index 913
+		      Char FE92 -> Index 914
+		      Char FE93 -> Index 915
+		      Char FE94 -> Index 916
+		      Char FE95 -> Index 917
+		      Char FE96 -> Index 918
+		      Char FE97 -> Index 919
+		      Char FE98 -> Index 920
+		      Char FE99 -> Index 921
+		      Char FE9A -> Index 922
+		      Char FE9B -> Index 923
+		      Char FE9C -> Index 924
+		      Char FE9D -> Index 925
+		      Char FE9E -> Index 926
+		      Char FE9F -> Index 927
+		      Char FEA0 -> Index 928
+		      Char FEA1 -> Index 929
+		      Char FEA2 -> Index 930
+		      Char FEA3 -> Index 931
+		      Char FEA4 -> Index 932
+		      Char FEA5 -> Index 933
+		      Char FEA6 -> Index 934
+		      Char FEA7 -> Index 935
+		      Char FEA8 -> Index 936
+		      Char FEA9 -> Index 937
+		      Char FEAA -> Index 938
+		      Char FEAB -> Index 939
+		      Char FEAC -> Index 940
+		      Char FEAD -> Index 941
+		      Char FEAE -> Index 942
+		      Char FEAF -> Index 943
+		      Char FEB0 -> Index 944
+		      Char FEB1 -> Index 945
+		      Char FEB2 -> Index 946
+		      Char FEB3 -> Index 947
+		      Char FEB4 -> Index 948
+		      Char FEB5 -> Index 949
+		      Char FEB6 -> Index 950
+		      Char FEB7 -> Index 951
+		      Char FEB8 -> Index 952
+		      Char FEB9 -> Index 953
+		      Char FEBA -> Index 954
+		      Char FEBB -> Index 955
+		      Char FEBC -> Index 956
+		      Char FEBD -> Index 957
+		      Char FEBE -> Index 958
+		      Char FEBF -> Index 959
+		      Char FEC0 -> Index 960
+		      Char FEC1 -> Index 961
+		      Char FEC2 -> Index 962
+		      Char FEC3 -> Index 963
+		      Char FEC4 -> Index 964
+		      Char FEC5 -> Index 965
+		      Char FEC6 -> Index 966
+		      Char FEC7 -> Index 967
+		      Char FEC8 -> Index 968
+		      Char FEC9 -> Index 969
+		      Char FECA -> Index 970
+		      Char FECB -> Index 971
+		      Char FECC -> Index 972
+		      Char FECD -> Index 973
+		      Char FECE -> Index 974
+		      Char FECF -> Index 975
+		      Char FED0 -> Index 976
+		      Char FED1 -> Index 977
+		      Char FED2 -> Index 978
+		      Char FED3 -> Index 979
+		      Char FED4 -> Index 980
+		      Char FED5 -> Index 981
+		      Char FED6 -> Index 982
+		      Char FED7 -> Index 983
+		      Char FED8 -> Index 984
+		      Char FED9 -> Index 985
+		      Char FEDA -> Index 986
+		      Char FEDB -> Index 987
+		      Char FEDC -> Index 988
+		      Char FEDD -> Index 989
+		      Char FEDE -> Index 990
+		      Char FEDF -> Index 991
+		      Char FEE0 -> Index 992
+		      Char FEE1 -> Index 993
+		      Char FEE2 -> Index 994
+		      Char FEE3 -> Index 995
+		      Char FEE4 -> Index 996
+		      Char FEE5 -> Index 997
+		      Char FEE6 -> Index 998
+		      Char FEE7 -> Index 999
+		      Char FEE8 -> Index 1000
+		      Char FEE9 -> Index 1001
+		      Char FEEA -> Index 1002
+		      Char FEEB -> Index 1003
+		      Char FEEC -> Index 1004
+		      Char FEED -> Index 1005
+		      Char FEEE -> Index 1006
+		      Char FEEF -> Index 1007
+		      Char FEF0 -> Index 1008
+		      Char FEF1 -> Index 1009
+		      Char FEF2 -> Index 1010
+		      Char FEF3 -> Index 1011
+		      Char FEF4 -> Index 1012
+		      Char FEF5 -> Index 1013
+		      Char FEF6 -> Index 1014
+		      Char FEF7 -> Index 1015
+		      Char FEF8 -> Index 1016
+		      Char FEF9 -> Index 1017
+		      Char FEFA -> Index 1018
+		      Char FEFB -> Index 1019
+		      Char FEFC -> Index 1020
+		 155. Char FFFC -> Index 863
+
+'cvt ' Table - Control Value Table
+----------------------------------
+Size = 1584 bytes, 792 entries
+	Values
+	------
+	   0: 1466
+	   1: 25
+	   2: 1466
+	   3: 26
+	   4: 1447
+	   5: 25
+	   6: 1062
+	   7: 24
+	   8: 0
+	   9: -25
+	  10: 0
+	  11: -24
+	  12: 0
+	  13: -25
+	  14: -407
+	  15: -24
+	  16: 1466
+	  17: 25
+	  18: -407
+	  19: -24
+	  20: 746
+	  21: 0
+	  22: 184
+	  23: 0
+	  24: 184
+	  25: 0
+	  26: 0
+	  27: 168
+	  28: 173
+	  29: 361
+	  30: 173
+	  31: 191
+	  32: 194
+	  33: 496
+	  34: 24
+	  35: 175
+	  36: 185
+	  37: 180
+	  38: 200
+	  39: 23
+	  40: 68
+	  41: 156
+	  42: 124
+	  43: 148
+	  44: 135
+	  45: 6
+	  46: 90
+	  47: 200
+	  48: 137
+	  49: 82
+	  50: 82
+	  51: 5
+	  52: 68
+	  53: 148
+	  54: 281
+	  55: -76
+	  56: 47
+	  57: 161
+	  58: 3
+	  59: 161
+	  60: 205
+	  61: 23
+	  62: 87
+	  63: 126
+	  64: 186
+	  65: 22
+	  66: 280
+	  67: -23
+	  68: 127
+	  69: 133
+	  70: 979
+	  71: 135
+	  72: 133
+	  73: 13
+	  74: 34
+	  75: 65
+	  76: 80
+	  77: 111
+	  78: 141
+	  79: 332
+	  80: -139
+	  81: 92
+	  82: 223
+	  83: 1155
+	  84: 55
+	  85: 76
+	  86: 110
+	  87: 112
+	  88: 384
+	  89: -168
+	  90: -114
+	  91: -110
+	  92: -92
+	  93: 165
+	  94: 185
+	  95: 968
+	  96: -3
+	  97: 11
+	  98: 26
+	  99: 99
+	 100: 99
+	 101: 205
+	 102: -18
+	 103: 1496
+	 104: -36
+	 105: 45
+	 106: 92
+	 107: 149
+	 108: 153
+	 109: 223
+	 110: 402
+	 111: 2485
+	 112: 64
+	 113: 87
+	 114: 128
+	 115: 185
+	 116: 925
+	 117: 114
+	 118: 154
+	 119: 861
+	 120: 1025
+	 121: -153
+	 122: -6
+	 123: 3
+	 124: 33
+	 125: 119
+	 126: 205
+	 127: 4
+	 128: 77
+	 129: 205
+	 130: 448
+	 131: 555
+	 132: 76
+	 133: 101
+	 134: 231
+	 135: 280
+	 136: 380
+	 137: 835
+	 138: 1496
+	 139: -93
+	 140: -80
+	 141: -60
+	 142: 3
+	 143: 28
+	 144: 93
+	 145: 104
+	 146: 154
+	 147: 186
+	 148: 309
+	 149: 327
+	 150: 545
+	 151: 1372
+	 152: -179
+	 153: -51
+	 154: 22
+	 155: 45
+	 156: 120
+	 157: 128
+	 158: 153
+	 159: 178
+	 160: 182
+	 161: 182
+	 162: 184
+	 163: 189
+	 164: 218
+	 165: 268
+	 166: 1520
+	 167: -92
+	 168: -16
+	 169: 25
+	 170: 44
+	 171: 73
+	 172: 127
+	 173: 180
+	 174: 206
+	 175: 448
+	 176: 1022
+	 177: -639
+	 178: -449
+	 179: 0
+	 180: 5
+	 181: 24
+	 182: 41
+	 183: 57
+	 184: 73
+	 185: 111
+	 186: 190
+	 187: 199
+	 188: 208
+	 189: 291
+	 190: 449
+	 191: 623
+	 192: 1292
+	 193: 1330
+	 194: 1344
+	 195: 1402
+	 196: -44
+	 197: 20
+	 198: 49
+	 199: 85
+	 200: 87
+	 201: 167
+	 202: 180
+	 203: 230
+	 204: 503
+	 205: 638
+	 206: 638
+	 207: 639
+	 208: 966
+	 209: 1094
+	 210: -190
+	 211: 14
+	 212: 133
+	 213: 145
+	 214: 191
+	 215: 194
+	 216: 197
+	 217: 225
+	 218: 282
+	 219: 303
+	 220: 335
+	 221: 342
+	 222: 553
+	 223: 623
+	 224: 670
+	 225: 882
+	 226: 8
+	 227: 44
+	 228: 49
+	 229: 49
+	 230: 100
+	 231: 105
+	 232: 137
+	 233: 152
+	 234: 199
+	 235: 222
+	 236: 299
+	 237: 438
+	 238: 524
+	 239: 719
+	 240: 931
+	 241: 1195
+	 242: 1275
+	 243: 1565
+	 244: -288
+	 245: -242
+	 246: 6
+	 247: 38
+	 248: 155
+	 249: 157
+	 250: 193
+	 251: 269
+	 252: 280
+	 253: 288
+	 254: 371
+	 255: 386
+	 256: 470
+	 257: 483
+	 258: 579
+	 259: 607
+	 260: 667
+	 261: 738
+	 262: 916
+	 263: 1193
+	 264: 1234
+	 265: 1889
+	 266: 28
+	 267: 94
+	 268: 109
+	 269: 141
+	 270: 171
+	 271: 247
+	 272: 274
+	 273: 312
+	 274: 337
+	 275: 347
+	 276: 360
+	 277: 380
+	 278: 391
+	 279: 401
+	 280: 409
+	 281: 461
+	 282: 464
+	 283: 488
+	 284: 577
+	 285: 596
+	 286: 619
+	 287: 751
+	 288: 872
+	 289: 881
+	 290: 957
+	 291: 1090
+	 292: 1090
+	 293: 1107
+	 294: 1139
+	 295: 1155
+	 296: 1414
+	 297: 1419
+	 298: 1768
+	 299: -424
+	 300: -316
+	 301: -303
+	 302: -265
+	 303: -206
+	 304: -122
+	 305: 81
+	 306: 124
+	 307: 129
+	 308: 145
+	 309: 149
+	 310: 158
+	 311: 180
+	 312: 185
+	 313: 207
+	 314: 217
+	 315: 217
+	 316: 223
+	 317: 226
+	 318: 261
+	 319: 267
+	 320: 270
+	 321: 270
+	 322: 288
+	 323: 289
+	 324: 341
+	 325: 379
+	 326: 379
+	 327: 382
+	 328: 397
+	 329: 418
+	 330: 424
+	 331: 425
+	 332: 436
+	 333: 464
+	 334: 464
+	 335: 482
+	 336: 489
+	 337: 498
+	 338: 501
+	 339: 507
+	 340: 512
+	 341: 512
+	 342: 518
+	 343: 539
+	 344: 545
+	 345: 546
+	 346: 546
+	 347: 547
+	 348: 626
+	 349: 631
+	 350: 660
+	 351: 668
+	 352: 719
+	 353: 719
+	 354: 720
+	 355: 748
+	 356: 761
+	 357: 791
+	 358: 802
+	 359: 811
+	 360: 821
+	 361: 828
+	 362: 857
+	 363: 879
+	 364: 881
+	 365: 903
+	 366: 912
+	 367: 912
+	 368: 949
+	 369: 993
+	 370: 1050
+	 371: 1231
+	 372: 1279
+	 373: 1330
+	 374: 1330
+	 375: 1430
+	 376: 1439
+	 377: 1448
+	 378: 1451
+	 379: 1474
+	 380: 1520
+	 381: 1548
+	 382: 1922
+	 383: 2048
+	 384: 2252
+	 385: -861
+	 386: -726
+	 387: -546
+	 388: -512
+	 389: -376
+	 390: -362
+	 391: -334
+	 392: -332
+	 393: -31
+	 394: 21
+	 395: 25
+	 396: 26
+	 397: 28
+	 398: 31
+	 399: 60
+	 400: 81
+	 401: 97
+	 402: 97
+	 403: 106
+	 404: 120
+	 405: 150
+	 406: 165
+	 407: 175
+	 408: 211
+	 409: 268
+	 410: 280
+	 411: 282
+	 412: 298
+	 413: 318
+	 414: 332
+	 415: 337
+	 416: 351
+	 417: 362
+	 418: 369
+	 419: 376
+	 420: 386
+	 421: 388
+	 422: 410
+	 423: 421
+	 424: 424
+	 425: 425
+	 426: 430
+	 427: 444
+	 428: 461
+	 429: 471
+	 430: 495
+	 431: 512
+	 432: 525
+	 433: 540
+	 434: 545
+	 435: 546
+	 436: 558
+	 437: 565
+	 438: 578
+	 439: 591
+	 440: 591
+	 441: 606
+	 442: 613
+	 443: 625
+	 444: 656
+	 445: 658
+	 446: 692
+	 447: 726
+	 448: 762
+	 449: 775
+	 450: 779
+	 451: 783
+	 452: 789
+	 453: 810
+	 454: 839
+	 455: 861
+	 456: 869
+	 457: 884
+	 458: 889
+	 459: 918
+	 460: 944
+	 461: 972
+	 462: 989
+	 463: 994
+	 464: 1014
+	 465: 1020
+	 466: 1020
+	 467: 1023
+	 468: 1034
+	 469: 1055
+	 470: 1058
+	 471: 1062
+	 472: 1067
+	 473: 1095
+	 474: 1119
+	 475: 1141
+	 476: 1182
+	 477: 1255
+	 478: 1255
+	 479: 1372
+	 480: 1483
+	 481: 1509
+	 482: 1546
+	 483: 1645
+	 484: 1670
+	 485: 1720
+	 486: 1777
+	 487: 1846
+	 488: 1854
+	 489: 1872
+	 490: 1873
+	 491: 1885
+	 492: 1935
+	 493: 1974
+	 494: 2004
+	 495: 2144
+	 496: 182
+	 497: 195
+	 498: 181
+	 499: 183
+	 500: 0
+	 501: 0
+	 502: 0
+	 503: 0
+	 504: 0
+	 505: 0
+	 506: 480
+	 507: 897
+	 508: 837
+	 509: 949
+	 510: 142
+	 511: 563
+	 512: 1049
+	 513: 718
+	 514: 718
+	 515: 45
+	 516: 95
+	 517: 100
+	 518: 845
+	 519: 575
+	 520: 0
+	 521: 680
+	 522: 392
+	 523: 637
+	 524: 436
+	 525: 548
+	 526: 1400
+	 527: 1595
+	 528: 571
+	 529: 334
+	 530: 240
+	 531: 1062
+	 532: 660
+	 533: 710
+	 534: 671
+	 535: 758
+	 536: 571
+	 537: 845
+	 538: 331
+	 539: 339
+	 540: 106
+	 541: 561
+	 542: 0
+	 543: 0
+	 544: 0
+	 545: 1556
+	 546: 1194
+	 547: 0
+	 548: 60
+	 549: 1219
+	 550: 237
+	 551: 1212
+	 552: 613
+	 553: 718
+	 554: 949
+	 555: 120
+	 556: 1548
+	 557: 382
+	 558: 751
+	 559: 1548
+	 560: 178
+	 561: 256
+	 562: 569
+	 563: 0
+	 564: 453
+	 565: 816
+	 566: 1067
+	 567: 971
+	 568: 218
+	 569: 991
+	 570: 263
+	 571: 1185
+	 572: 219
+	 573: 1034
+	 574: 279
+	 575: 493
+	 576: 679
+	 577: 848
+	 578: 267
+	 579: 445
+	 580: 1086
+	 581: 1368
+	 582: 33
+	 583: 924
+	 584: 174
+	 585: 881
+	 586: 381
+	 587: 181
+	 588: 581
+	 589: 0
+	 590: 2811
+	 591: 2188
+	 592: 299
+	 593: 334
+	 594: 426
+	 595: 135
+	 596: 84
+	 597: 306
+	 598: 504
+	 599: 1023
+	 600: 3
+	 601: 590
+	 602: 180
+	 603: 55
+	 604: 995
+	 605: 131
+	 606: 107
+	 607: 728
+	 608: 237
+	 609: 119
+	 610: 136
+	 611: 151
+	 612: 356
+	 613: 1127
+	 614: 142
+	 615: 51
+	 616: 380
+	 617: 231
+	 618: 166
+	 619: 670
+	 620: 809
+	 621: 1390
+	 622: 1578
+	 623: 1557
+	 624: 457
+	 625: 617
+	 626: 1162
+	 627: 531
+	 628: 436
+	 629: 2
+	 630: 1193
+	 631: 0
+	 632: 569
+	 633: 292
+	 634: 259
+	 635: 1300
+	 636: 132
+	 637: 349
+	 638: 922
+	 639: 1775
+	 640: 729
+	 641: 117
+	 642: 207
+	 643: 1034
+	 644: 222
+	 645: 940
+	 646: 1212
+	 647: 719
+	 648: 686
+	 649: 845
+	 650: 1264
+	 651: 1362
+	 652: 360
+	 653: 109
+	 654: 125
+	 655: 134
+	 656: 113
+	 657: -127
+	 658: 121
+	 659: 1368
+	 660: 1234
+	 661: 359
+	 662: 3
+	 663: 342
+	 664: 37
+	 665: 1248
+	 666: 148
+	 667: 124
+	 668: 818
+	 669: 1057
+	 670: 148
+	 671: 127
+	 672: 114
+	 673: 92
+	 674: 47
+	 675: 182
+	 676: 24
+	 677: 186
+	 678: 184
+	 679: 65
+	 680: 845
+	 681: 114
+	 682: 24
+	 683: 31
+	 684: 76
+	 685: 362
+	 686: 341
+	 687: 153
+	 688: 154
+	 689: 154
+	 690: 152
+	 691: 178
+	 692: 4
+	 693: 120
+	 694: 105
+	 695: 20
+	 696: 87
+	 697: 110
+	 698: 206
+	 699: 180
+	 700: 1620
+	 701: 696
+	 702: 103
+	 703: 1294
+	 704: 357
+	 705: 231
+	 706: 0
+	 707: 1227
+	 708: -430
+	 709: 90
+	 710: -90
+	 711: 153
+	 712: -153
+	 713: 110
+	 714: -110
+	 715: 45
+	 716: -44
+	 717: 135
+	 718: -132
+	 719: 184
+	 720: 168
+	 721: 229
+	 722: 143
+	 723: 168
+	 724: 389
+	 725: -389
+	 726: 112
+	 727: 30
+	 728: 217
+	 729: 222
+	 730: 332
+	 731: 1350
+	 732: 719
+	 733: 1350
+	 734: -211
+	 735: 650
+	 736: 729
+	 737: 595
+	 738: 662
+	 739: 183
+	 740: 0
+	 741: 0
+	 742: 0
+	 743: 0
+	 744: 0
+	 745: 0
+	 746: 0
+	 747: 293
+	 748: 280
+	 749: 234
+	 750: 234
+	 751: 174
+	 752: 70
+	 753: 62
+	 754: 1467
+	 755: 138
+	 756: 1239
+	 757: 83
+	 758: 63
+	 759: -116
+	 760: -43
+	 761: 21
+	 762: 40
+	 763: 34
+	 764: 153
+	 765: 98
+	 766: 74
+	 767: 228
+	 768: 109
+	 769: 238
+	 770: 229
+	 771: 72
+	 772: 960
+	 773: 51
+	 774: -434
+	 775: 689
+	 776: -186
+	 777: 880
+	 778: 121
+	 779: 1503
+	 780: 81
+	 781: -89
+	 782: -225
+	 783: 266
+	 784: 104
+	 785: -148
+	 786: 79
+	 787: 188
+	 788: 165
+	 789: 1797
+	 790: 97
+	 791: 1835
+
+'PCLT ' Table - Printer Command Language Table
+----------------------------------
+	version              0x00010000
+	fontNumber           1292025634 (0x4D02BF22)
+	pitch                569
+	xHeight              1062
+	style                0
+	typeFamily           0x4 218 (Monotype)
+	capHeight            1466
+	symbolSet            0
+	typeFace             "M Arial         "
+	characterComplement  0xFFFFFFFF003FFFFE
+	fileName             "ARLR00"
+	strokeWeight         0
+	widthType            0
+	serifStyle           1 0 (Sans Serif) (Sans Serif Square)
+	reserved             0
+
+'prep' Table - Control Value Program
+------------------------------------
+Size = 2815 bytes
+	00000: PUSHB[2]             84    15 
+	00003: NPUSHW      (34):   791   239   791   255   791     3    31   791    47   791 
+	                            79   791    95   791   143   791   159   791     6    15 
+	                           791    95   791   111   791   127   791   191   791   240 
+	                           791     6    64   791 
+	00073: PUSHB[3]            146    51    64 
+	00077: PUSHW[1]            791 
+	00080: PUSHB[3]            139    51    64 
+	00084: PUSHW[1]            791 
+	00087: PUSHB[4]            106   108    50    64 
+	00092: PUSHW[1]            791 
+	00095: PUSHB[3]             97    51    64 
+	00099: PUSHW[1]            791 
+	00102: PUSHB[4]             92    93    50    64 
+	00107: PUSHW[1]            791 
+	00110: PUSHB[4]             87    89    50    64 
+	00115: PUSHW[1]            791 
+	00118: PUSHB[4]             77    81    50    64 
+	00123: PUSHW[1]            791 
+	00126: PUSHB[4]             68    73    50    64 
+	00131: PUSHW[1]            791 
+	00134: PUSHB[3]             58    51    64 
+	00138: PUSHW[1]            791 
+	00141: PUSHB[4]             49    52    50    64 
+	00146: PUSHW[1]            791 
+	00149: PUSHB[4]             46    66    50    64 
+	00154: PUSHW[1]            791 
+	00157: PUSHB[4]             39    44    50    64 
+	00162: PUSHW[1]            791 
+	00165: PUSHB[4]             18    37    50   128 
+	00170: PUSHW[1]            791 
+	00173: PUSHB[4]             10    13    50   192 
+	00178: NPUSHW      (22):   790   208   790     2   112   790     1   708    15   257 
+	                            31   160   789   176   789     2   774    15   257    31 
+	                            64   786 
+	00224: PUSHB[4]             36    38    50   159 
+	00229: PUSHW[8]            772     1   770   769   100    31   -64   769 
+	00246: PUSHB[3]             13    17    50 
+	00250: NPUSHW      (10):   767   751    18    31   750   749   100    31   -64   749 
+	00272: PUSHB[4]             14    17    50   159 
+	00277: NPUSHW      (74):   738   175   738   191   738     3   738   738   737   737 
+	                           127   736     1    16   736    63   736   159   736   191 
+	                           736   207   736   239   736     6   736   736   735   735 
+	                           734   734    15   733    47   733    63   733    95   733 
+	                           159   733   191   733   239   733     7   733   733    16 
+	                           732     1     0   732     1    16   732    63   732     2 
+	                           732   732    16   731     1   731   731    15   730     1 
+	                           730   730   -64   723 
+	00427: PUSHB[3]             55    57    50 
+	00431: PUSHW[2]            -64   723 
+	00436: PUSHB[3]             43    47    50 
+	00440: PUSHW[2]            -64   723 
+	00445: PUSHB[3]             31    37    50 
+	00449: PUSHW[2]            -64   723 
+	00454: PUSHB[3]             23    27    50 
+	00458: PUSHW[2]            -64   723 
+	00463: PUSHB[3]             18    22    50 
+	00467: PUSHW[1]            722 
+	00470: PUSHB[3]            249    41    31 
+	00474: PUSHW[1]            739 
+	00477: PUSHB[4]             32    43    31   160 
+	00482: NPUSHW      (48):   724   176   724     2     0   724    16   724    32   724 
+	                            80   724    96   724   112   724     6    96   726   112 
+	                           726   128   726   144   726   160   726   176   726     6 
+	                             0   726    16   726    32   714    32   716    32   726 
+	                            48   726    64   726    80   726     8   720 
+	00580: PUSHB[3]             32    43    31 
+	00584: PUSHW[1]            719 
+	00587: PUSHB[3]             38    66    31 
+	00591: NPUSHW      (22):   718   711    23    31   717   712    23    31   716   710 
+	                            23    31   715   709    23    31   713   709    30    31 
+	                           714   710 
+	00637: PUSHB[3]             30    31     0 
+	00641: NPUSHW      (11):   710     0   711    16   710    16   711    47   709     5 
+	                           705 
+	00665: PUSHB[4]             36    18    31   255 
+	00670: NPUSHW      (17):   703     1    31   703    47   703    63   703    79   703 
+	                            95   703   143   703     6   703   546 
+	00706: PUSHB[3]            100    31    18 
+	00710: NPUSHW      (11):   699   202  2048    31   690   233  2048    31   678   162 
+	                          2048 
+	00734: NPUSHB     (106):    31    64    38    67    73    50    64    32    67    73 
+	                            50    64    38    58    61    50    64    32    58    61 
+	                            50   159    32   159    38     2    64    38   150   153 
+	                            50    64    32   150   153    50    64    38   142   146 
+	                            50    64    32   142   146    50    64    38   132   140 
+	                            50    64    32   132   140    50    64    38   122   129 
+	                            50    64    32   122   129    50    64    38   108   118 
+	                            50    64    32   108   118    50    64    38   100   106 
+	                            50    64    32   100   106    50    64    38    90    95 
+	                            50    64    32    90    95    50    64    38    79    84 
+	                            50    64    32    79    84    50 
+	00842: PUSHW[1]            670 
+	00845: PUSHB[8]             36    39    31    55    79   107     1    32 
+	00854: NPUSHW      (15):   631    48   631    64   631    80   631     4   631   631 
+	                           631   249  1024    31   667 
+	00886: PUSHB[3]             42    42    31 
+	00890: PUSHW[1]            666 
+	00893: NPUSHB      (43):    41    42    31   128   186     1   128   188     1   128 
+	                            82     1   128   162     1   128   101     1   128   126 
+	                             1   128   129     1   128    60     1   128    94     1 
+	                           128    43     1   128    28     1   128    30     1   128 
+	                            64     1   128 
+	00938: PUSHW[4]            312     1   128   320 
+	00947: PUSHB[5]              1   128    64     1   128 
+	00953: PUSHW[4]            312     1   128   313 
+	00962: NPUSHB      (24):     1   128   202     1   128   173     1   128   115     1 
+	                           128    38     1   128    37     1   128    36     1   128 
+	                            32     1    55    64 
+	00988: PUSHW[1]            545 
+	00991: PUSHB[3]             73    51    64 
+	00995: PUSHW[1]            545 
+	00998: PUSHB[3]             69    51    64 
+	01002: PUSHW[1]            545 
+	01005: PUSHB[4]             65    66    50    64 
+	01010: PUSHW[1]            545 
+	01013: PUSHB[4]             61    62    50    15 
+	01018: NPUSHW      (15):   545    63   545   127   545     3   191   545   207   545 
+	                           255   545     3    64   545 
+	01050: PUSHB[4]             32    34    50    64 
+	01055: PUSHW[1]            545 
+	01058: PUSHB[4]             25    30    50    64 
+	01063: PUSHW[1]            546 
+	01066: PUSHB[4]             42    63    50    64 
+	01071: PUSHW[1]            545 
+	01074: PUSHB[4]             46    58    50   111 
+	01079: NPUSHW      (72):   707   127   707   143   707   223   707     4    47   707 
+	                            96   707   207   707     3    15   707    63   707    95 
+	                           707   192   707   239   707   255   707     6   223   546 
+	                             1   143   546     1    15   546    47   546    63   546 
+	                            95   546   127   546   239   546     6   191   545   239 
+	                           545     2   111   545   127   545   175   545     3    47 
+	                           545    63   545    79   545     3   707   707   546   546 
+	                           545   545 
+	01225: NPUSHB      (29):    16    28    16    43    16    72     3   143    28     1 
+	                            15    30     1    79    30   255    30     2    55     0 
+	                            22    22     0     0     0    18    17     8    17 
+	01256: PUSHW[1]            269 
+	01259: PUSHB[7]            247    13   248   247    13     0     9 
+	01267: NPUSHW       (9):   654   655    29    31   656   655    29    31   655 
+	01287: PUSHB[3]            249    29    31 
+	01291: PUSHW[1]            408 
+	01294: PUSHB[3]             38   187    31 
+	01298: NPUSHW      (21):   407    30  1025    31   313    38   293    31   312   115 
+	                          1025    31   309    28  2049    31   308    28   683    31 
+	                           306 
+	01342: PUSHB[3]             28    86    31 
+	01346: PUSHW[1]            271 
+	01349: PUSHB[3]             38    44    31 
+	01353: PUSHW[3]            270    30  1025 
+	01360: PUSHB[7]             31   249    28   228    31   233    28 
+	01368: PUSHW[1]            513 
+	01371: PUSHB[7]             31   232    28   187    31   215    32 
+	01379: PUSHW[1]           1025 
+	01382: PUSHB[3]             31   213    28 
+	01386: PUSHW[1]            683 
+	01389: PUSHB[7]             31   212    28   137    31   201    47 
+	01397: PUSHW[1]           2049 
+	01400: PUSHB[3]             31   188    38 
+	01404: PUSHW[1]            257 
+	01407: PUSHB[3]             31   186    32 
+	01411: PUSHW[1]            513 
+	01414: PUSHB[7]             31   185    28    56    31   173   202 
+	01422: PUSHW[1]           1025 
+	01425: PUSHB[3]             31   129    38 
+	01429: PUSHW[1]            410 
+	01432: PUSHB[3]             31   126    38 
+	01436: PUSHW[1]            410 
+	01439: PUSHB[7]             31   125    28    71    31   107    28 
+	01447: PUSHW[1]           1025 
+	01450: PUSHB[3]             31   101    38 
+	01454: PUSHW[1]            410 
+	01457: PUSHB[3]             31    94   115 
+	01461: PUSHW[1]           1025 
+	01464: NPUSHB      (15):    31    82    38    90    31    72    28   137    31    68 
+	                            28    98    31    64   115 
+	01481: PUSHW[1]           2049 
+	01484: PUSHB[7]             31    63    28    94    31    60    38 
+	01492: PUSHW[1]            410 
+	01495: PUSHB[3]             31    53    28 
+	01499: PUSHW[1]           1025 
+	01502: PUSHB[7]             31    48    28   187    31    43    28 
+	01510: PUSHW[1]           1025 
+	01513: PUSHB[7]             31    42    28    86    31    41    28 
+	01521: PUSHW[1]            257 
+	01524: PUSHB[3]             31    35    30 
+	01528: PUSHW[1]           1025 
+	01531: PUSHB[3]             31    85    55 
+	01535: PUSHW[1]            360 
+	01538: NPUSHB      (44):     7   150     7    88     7    79     7    54     7    50 
+	                             7    44     7    33     7    31     7    29     7    27 
+	                             7    20     8    18     8    16     8    14     8    12 
+	                             8    10     8     8     8     6     8     4     8     2 
+	                             8     0     8    20 
+	01584: PUSHW[1]            -32 
+	01587: NPUSHB      (43):     0     0     1     0    20     6    16     0     0     1 
+	                             0     6     4     0     0     1     0     4    16     0 
+	                             0     1     0    16     2     0     0     1     0     2 
+	                             0     0     0     1     0     0     2     1     8     2 
+	                             0    74     0 
+	01632: PUSHB[1]             19 
+	01634: SPVTCA[x-axis] 
+	01635: MPPEM      
+	01636: SPVTCA[y-axis] 
+	01637: MPPEM      
+	01638: GTEQ       
+	01639: WS         
+	01640: SVTCA[x-axis] 
+	01641: MPPEM      
+	01642: PUSHB[1]            192 
+	01644: MUL        
+	01645: SVTCA[y-axis] 
+	01646: MPPEM      
+	01647: DIV        
+	01648: DUP        
+	01649: PUSHB[1]            246 
+	01651: GTEQ       
+	01652: SWAP       
+	01653: PUSHW[1]            266 
+	01656: LTEQ       
+	01657: AND        
+	01658: PUSHB[1]              5 
+	01660: SWAP       
+	01661: WS         
+	01662: SVTCA[x-axis] 
+	01663: PUSHB[1]             18 
+	01665: MPPEM      
+	01666: SVTCA[y-axis] 
+	01667: MPPEM      
+	01668: EQ         
+	01669: WS         
+	01670: PUSHB[1]             56 
+	01672: CALL       
+	01673: MPPEM      
+	01674: PUSHW[1]           2047 
+	01677: GT         
+	01678: PUSHB[1]             55 
+	01680: CALL       
+	01681: MPPEM      
+	01682: PUSHB[1]              7 
+	01684: LT         
+	01685: OR         
+	01686: IF         
+	01687: PUSHB[2]              1     1 
+	01690: INSTCTRL   
+	01691: EIF        
+	01692: PUSHB[1]             56 
+	01694: CALL       
+	01695: PUSHB[1]              2 
+	01697: GETINFO    
+	01698: PUSHW[1]            256 
+	01701: EQ         
+	01702: IF         
+	01703: PUSHW[1]            511 
+	01706: PUSHB[2]              1     1 
+	01709: INSTCTRL   
+	01710: SCANCTRL   
+	01711: ELSE       
+	01712: PUSHB[1]             18 
+	01714: RS         
+	01715: IF         
+	01716: PUSHW[2]              1   273 
+	01721: SCANCTRL   
+	01722: SCANTYPE   
+	01723: ELSE       
+	01724: PUSHW[2]              1   296 
+	01729: SCANCTRL   
+	01730: SCANTYPE   
+	01731: EIF        
+	01732: EIF        
+	01733: SVTCA[y-axis] 
+	01734: RTG        
+	01735: SZPS       
+	01736: SROUND     
+	01737: MIAP[rd+ci] 
+	01738: RTG        
+	01739: MIAP[rd+ci] 
+	01740: SRP2       
+	01741: MIAP[nrd+nci] 
+	01742: SRP1       
+	01743: IP         
+	01744: GC[cur p]  
+	01745: WCVTP      
+	01746: MIAP[nrd+nci] 
+	01747: SRP1       
+	01748: IP         
+	01749: GC[cur p]  
+	01750: WCVTP      
+	01751: MIAP[nrd+nci] 
+	01752: SRP1       
+	01753: IP         
+	01754: GC[cur p]  
+	01755: WCVTP      
+	01756: MIAP[nrd+nci] 
+	01757: SRP1       
+	01758: IP         
+	01759: GC[cur p]  
+	01760: WCVTP      
+	01761: MIAP[nrd+nci] 
+	01762: SRP1       
+	01763: IP         
+	01764: GC[cur p]  
+	01765: ADD        
+	01766: WCVTP      
+	01767: MIAP[nrd+nci] 
+	01768: SRP1       
+	01769: IP         
+	01770: GC[cur p]  
+	01771: ADD        
+	01772: WCVTP      
+	01773: CALL       
+	01774: CALL       
+	01775: CALL       
+	01776: CALL       
+	01777: CALL       
+	01778: CALL       
+	01779: CALL       
+	01780: CALL       
+	01781: CALL       
+	01782: CALL       
+	01783: CALL       
+	01784: RTG        
+	01785: CALL       
+	01786: CALL       
+	01787: CALL       
+	01788: CALL       
+	01789: CALL       
+	01790: CALL       
+	01791: CALL       
+	01792: CALL       
+	01793: CALL       
+	01794: CALL       
+	01795: CALL       
+	01796: RTG        
+	01797: CALL       
+	01798: SCVTCI     
+	01799: PUSHB[1]            150 
+	01801: MPPEM      
+	01802: GTEQ       
+	01803: IF         
+	01804: PUSHB[1]            170 
+	01806: SCVTCI     
+	01807: EIF        
+	01808: PUSHB[1]             50 
+	01810: MPPEM      
+	01811: GTEQ       
+	01812: IF         
+	01813: PUSHB[1]            255 
+	01815: SCVTCI     
+	01816: EIF        
+	01817: MPPEM      
+	01818: PUSHB[1]            147 
+	01820: GTEQ       
+	01821: DUP        
+	01822: NOT        
+	01823: IF         
+	01824: PUSHW[2]            498   496 
+	01829: RCVT       
+	01830: WCVTP      
+	01831: PUSHW[2]            497   496 
+	01836: RCVT       
+	01837: WCVTP      
+	01838: EIF        
+	01839: IF         
+	01840: PUSHW[2]            830   498 
+	01845: RCVT       
+	01846: GT         
+	01847: IF         
+	01848: PUSHW[2]            498   830 
+	01853: WCVTP      
+	01854: EIF        
+	01855: EIF        
+	01856: MPPEM      
+	01857: PUSHW[1]            342 
+	01860: GTEQ       
+	01861: DUP        
+	01862: NOT        
+	01863: IF         
+	01864: PUSHW[2]             32   497 
+	01869: RCVT       
+	01870: WCVTP      
+	01871: PUSHW[2]             38   497 
+	01876: RCVT       
+	01877: WCVTP      
+	01878: EIF        
+	01879: IF         
+	01880: PUSHW[2]           2078    32 
+	01885: RCVT       
+	01886: GT         
+	01887: IF         
+	01888: PUSHW[2]             32  2078 
+	01893: WCVTP      
+	01894: EIF        
+	01895: EIF        
+	01896: MPPEM      
+	01897: PUSHW[1]            410 
+	01900: GTEQ       
+	01901: DUP        
+	01902: NOT        
+	01903: IF         
+	01904: PUSHW[2]             37   498 
+	01909: RCVT       
+	01910: WCVTP      
+	01911: PUSHW[2]             36   498 
+	01916: RCVT       
+	01917: WCVTP      
+	01918: EIF        
+	01919: IF         
+	01920: PUSHW[2]           2313    37 
+	01925: RCVT       
+	01926: GT         
+	01927: IF         
+	01928: PUSHW[2]             37  2313 
+	01933: WCVTP      
+	01934: EIF        
+	01935: EIF        
+	01936: MPPEM      
+	01937: PUSHW[1]           1025 
+	01940: GTEQ       
+	01941: DUP        
+	01942: NOT        
+	01943: IF         
+	01944: PUSHB[2]            115    36 
+	01947: RCVT       
+	01948: WCVTP      
+	01949: PUSHB[2]             36    36 
+	01952: RCVT       
+	01953: WCVTP      
+	01954: EIF        
+	01955: IF         
+	01956: PUSHW[2]           5920   115 
+	01961: RCVT       
+	01962: GT         
+	01963: IF         
+	01964: PUSHW[2]            115  5920 
+	01969: WCVTP      
+	01970: EIF        
+	01971: EIF        
+	01972: MPPEM      
+	01973: PUSHW[1]           1025 
+	01976: GTEQ       
+	01977: DUP        
+	01978: NOT        
+	01979: IF         
+	01980: PUSHB[2]            202    37 
+	01983: RCVT       
+	01984: WCVTP      
+	01985: PUSHB[2]             37    37 
+	01988: RCVT       
+	01989: WCVTP      
+	01990: EIF        
+	01991: IF         
+	01992: PUSHW[2]           5760   202 
+	01997: RCVT       
+	01998: GT         
+	01999: IF         
+	02000: PUSHW[2]            202  5760 
+	02005: WCVTP      
+	02006: EIF        
+	02007: EIF        
+	02008: MPPEM      
+	02009: PUSHB[1]             62 
+	02011: GTEQ       
+	02012: DUP        
+	02013: NOT        
+	02014: IF         
+	02015: PUSHB[2]             28    28 
+	02018: RCVT       
+	02019: WCVTP      
+	02020: PUSHB[2]             30    28 
+	02023: RCVT       
+	02024: WCVTP      
+	02025: EIF        
+	02026: IF         
+	02027: PUSHW[2]            282    28 
+	02032: RCVT       
+	02033: GT         
+	02034: IF         
+	02035: PUSHW[2]             28   282 
+	02040: WCVTP      
+	02041: EIF        
+	02042: EIF        
+	02043: MPPEM      
+	02044: PUSHB[1]             86 
+	02046: GTEQ       
+	02047: DUP        
+	02048: NOT        
+	02049: IF         
+	02050: PUSHB[2]             28    28 
+	02053: RCVT       
+	02054: WCVTP      
+	02055: PUSHB[2]             47    28 
+	02058: RCVT       
+	02059: WCVTP      
+	02060: EIF        
+	02061: IF         
+	02062: PUSHW[2]            393    28 
+	02067: RCVT       
+	02068: GT         
+	02069: IF         
+	02070: PUSHW[2]             28   393 
+	02075: WCVTP      
+	02076: EIF        
+	02077: EIF        
+	02078: MPPEM      
+	02079: PUSHW[1]            769 
+	02082: GTEQ       
+	02083: DUP        
+	02084: NOT        
+	02085: IF         
+	02086: PUSHB[2]             28    28 
+	02089: RCVT       
+	02090: WCVTP      
+	02091: PUSHB[2]             28    28 
+	02094: RCVT       
+	02095: WCVTP      
+	02096: EIF        
+	02097: IF         
+	02098: PUSHW[2]           3552    28 
+	02103: RCVT       
+	02104: GT         
+	02105: IF         
+	02106: PUSHW[2]             28  3552 
+	02111: WCVTP      
+	02112: EIF        
+	02113: EIF        
+	02114: CALL       
+	02115: CALL       
+	02116: CALL       
+	02117: CALL       
+	02118: CALL       
+	02119: CALL       
+	02120: CALL       
+	02121: CALL       
+	02122: CALL       
+	02123: CALL       
+	02124: CALL       
+	02125: CALL       
+	02126: CALL       
+	02127: CALL       
+	02128: CALL       
+	02129: CALL       
+	02130: CALL       
+	02131: CALL       
+	02132: CALL       
+	02133: CALL       
+	02134: CALL       
+	02135: CALL       
+	02136: CALL       
+	02137: CALL       
+	02138: CALL       
+	02139: CALL       
+	02140: CALL       
+	02141: CALL       
+	02142: CALL       
+	02143: CALL       
+	02144: CALL       
+	02145: CALL       
+	02146: CALL       
+	02147: CALL       
+	02148: CALL       
+	02149: CALL       
+	02150: CALL       
+	02151: CALL       
+	02152: CALL       
+	02153: CALL       
+	02154: CALL       
+	02155: NEG        
+	02156: WS         
+	02157: CALL       
+	02158: CALL       
+	02159: SVTCA[x-axis] 
+	02160: PUSHB[4]             59    89    99    92 
+	02165: RCVT       
+	02166: NEG        
+	02167: SWAP       
+	02168: RCVT       
+	02169: ADD        
+	02170: SWAP       
+	02171: RCVT       
+	02172: NEG        
+	02173: ADD        
+	02174: SWAP       
+	02175: RCVT       
+	02176: ADD        
+	02177: PUSHB[1]            139 
+	02179: SROUND     
+	02180: ROUND[Gray] 
+	02181: RTG        
+	02182: PUSHB[1]            128 
+	02184: DIV        
+	02185: DUP        
+	02186: DUP        
+	02187: PUSHB[2]             99    89 
+	02190: RCVT       
+	02191: NEG        
+	02192: SWAP       
+	02193: RCVT       
+	02194: DUP        
+	02195: PUSHB[1]              3 
+	02197: MINDEX     
+	02198: ADD        
+	02199: DIV        
+	02200: MUL        
+	02201: ROUND[Gray] 
+	02202: DUP        
+	02203: PUSHB[1]              3 
+	02205: MINDEX     
+	02206: SUB        
+	02207: NEG        
+	02208: PUSHB[1]             89 
+	02210: SWAP       
+	02211: NEG        
+	02212: WCVTP      
+	02213: PUSHB[1]             99 
+	02215: SWAP       
+	02216: WCVTP      
+	02217: DUP        
+	02218: PUSHB[2]             59    92 
+	02221: RCVT       
+	02222: NEG        
+	02223: SWAP       
+	02224: RCVT       
+	02225: DUP        
+	02226: PUSHB[1]              3 
+	02228: MINDEX     
+	02229: ADD        
+	02230: DIV        
+	02231: MUL        
+	02232: ROUND[Gray] 
+	02233: DUP        
+	02234: PUSHB[1]              3 
+	02236: MINDEX     
+	02237: SUB        
+	02238: NEG        
+	02239: PUSHB[1]             92 
+	02241: SWAP       
+	02242: NEG        
+	02243: WCVTP      
+	02244: PUSHB[1]             59 
+	02246: SWAP       
+	02247: WCVTP      
+	02248: PUSHB[2]              0    92 
+	02251: RCVT       
+	02252: EQ         
+	02253: IF         
+	02254: PUSHB[2]             92    64 
+	02257: NEG        
+	02258: WCVTP      
+	02259: PUSHB[3]             59    64    59 
+	02263: RCVT       
+	02264: SWAP       
+	02265: SUB        
+	02266: WCVTP      
+	02267: EIF        
+	02268: PUSHB[4]             71    80    52    55 
+	02273: RCVT       
+	02274: NEG        
+	02275: SWAP       
+	02276: RCVT       
+	02277: ADD        
+	02278: SWAP       
+	02279: RCVT       
+	02280: NEG        
+	02281: ADD        
+	02282: SWAP       
+	02283: RCVT       
+	02284: ADD        
+	02285: PUSHB[1]            137 
+	02287: SROUND     
+	02288: ROUND[Gray] 
+	02289: RTG        
+	02290: PUSHB[1]            128 
+	02292: DIV        
+	02293: DUP        
+	02294: DUP        
+	02295: PUSHB[2]             52    80 
+	02298: RCVT       
+	02299: NEG        
+	02300: SWAP       
+	02301: RCVT       
+	02302: DUP        
+	02303: PUSHB[1]              3 
+	02305: MINDEX     
+	02306: ADD        
+	02307: DIV        
+	02308: MUL        
+	02309: ROUND[Gray] 
+	02310: DUP        
+	02311: PUSHB[1]              3 
+	02313: MINDEX     
+	02314: SUB        
+	02315: NEG        
+	02316: PUSHB[1]             80 
+	02318: SWAP       
+	02319: NEG        
+	02320: WCVTP      
+	02321: PUSHB[1]             52 
+	02323: SWAP       
+	02324: WCVTP      
+	02325: DUP        
+	02326: PUSHB[2]             71    55 
+	02329: RCVT       
+	02330: NEG        
+	02331: SWAP       
+	02332: RCVT       
+	02333: DUP        
+	02334: PUSHB[1]              3 
+	02336: MINDEX     
+	02337: ADD        
+	02338: DIV        
+	02339: MUL        
+	02340: ROUND[Gray] 
+	02341: DUP        
+	02342: PUSHB[1]              3 
+	02344: MINDEX     
+	02345: SUB        
+	02346: NEG        
+	02347: PUSHB[1]             55 
+	02349: SWAP       
+	02350: NEG        
+	02351: WCVTP      
+	02352: PUSHB[1]             71 
+	02354: SWAP       
+	02355: WCVTP      
+	02356: PUSHB[2]              0    55 
+	02359: RCVT       
+	02360: EQ         
+	02361: IF         
+	02362: PUSHB[2]             55    64 
+	02365: NEG        
+	02366: WCVTP      
+	02367: PUSHB[3]             71    64    71 
+	02371: RCVT       
+	02372: SWAP       
+	02373: SUB        
+	02374: WCVTP      
+	02375: EIF        
+	02376: SVTCA[y-axis] 
+	02377: MPPEM      
+	02378: GTEQ       
+	02379: WS         
+	02380: SVTCA[x-axis] 
+	02381: MPPEM      
+	02382: LT         
+	02383: IF         
+	02384: PUSHB[2]              8     0 
+	02387: WS         
+	02388: EIF        
+	02389: RS         
+	02390: NOT        
+	02391: IF         
+	02392: PUSHB[2]              8     0 
+	02395: WS         
+	02396: EIF        
+	02397: PUSHB[4]              2    11    10    18 
+	02402: RS         
+	02403: IF         
+	02404: ADD        
+	02405: ELSE       
+	02406: POP        
+	02407: EIF        
+	02408: WS         
+	02409: SZPS       
+	02410: SRP0       
+	02411: WCVTF      
+	02412: MIAP[nrd+nci] 
+	02413: PUSHB[1]             18 
+	02415: RS         
+	02416: IF         
+	02417: PUSHW[2]          15137  6270 
+	02422: ELSE       
+	02423: PUSHW[3]           1024   424    11 
+	02430: CALL       
+	02431: EIF        
+	02432: PUSHB[1]             12 
+	02434: SWAP       
+	02435: WS         
+	02436: PUSHB[1]             13 
+	02438: SWAP       
+	02439: WS         
+	02440: PUSHB[1]             18 
+	02442: RS         
+	02443: IF         
+	02444: PUSHW[2]          11585 11585 
+	02449: ELSE       
+	02450: PUSHW[3]           1024  1024    11 
+	02457: CALL       
+	02458: EIF        
+	02459: PUSHB[1]             14 
+	02461: SWAP       
+	02462: WS         
+	02463: PUSHB[1]             15 
+	02465: SWAP       
+	02466: WS         
+	02467: PUSHB[1]             18 
+	02469: RS         
+	02470: IF         
+	02471: PUSHW[2]           6270 15137 
+	02476: ELSE       
+	02477: PUSHW[3]            424  1024    11 
+	02484: CALL       
+	02485: EIF        
+	02486: PUSHB[1]             16 
+	02488: SWAP       
+	02489: WS         
+	02490: PUSHB[1]             17 
+	02492: SWAP       
+	02493: WS         
+	02494: SVTCA[y-axis] 
+	02495: CALL       
+	02496: DELTAC2    
+	02497: DELTAC3    
+	02498: DELTAC1    
+	02499: DELTAC3    
+	02500: SVTCA[y-axis] 
+	02501: RTG        
+	02502: RCVT       
+	02503: ROUND[Black] 
+	02504: WCVTP      
+	02505: RCVT       
+	02506: ROUND[Black] 
+	02507: WCVTP      
+	02508: RCVT       
+	02509: ROUND[Black] 
+	02510: WCVTP      
+	02511: DELTAC1    
+	02512: DELTAC1    
+	02513: DELTAC1    
+	02514: DELTAC1    
+	02515: DELTAC2    
+	02516: DELTAC3    
+	02517: DELTAC1    
+	02518: DELTAC2    
+	02519: DELTAC3    
+	02520: CALL       
+	02521: CALL       
+	02522: CALL       
+	02523: CALL       
+	02524: DELTAC2    
+	02525: DELTAC3    
+	02526: CALL       
+	02527: CALL       
+	02528: CALL       
+	02529: CALL       
+	02530: CALL       
+	02531: DELTAC1    
+	02532: DELTAC1    
+	02533: DELTAC1    
+	02534: DELTAC1    
+	02535: DELTAC1    
+	02536: DELTAC1    
+	02537: DELTAC1    
+	02538: DELTAC1    
+	02539: DELTAC1    
+	02540: DELTAC1    
+	02541: DELTAC1    
+	02542: DELTAC1    
+	02543: DELTAC1    
+	02544: DELTAC1    
+	02545: DELTAC1    
+	02546: DELTAC1    
+	02547: DELTAC1    
+	02548: DELTAC1    
+	02549: DELTAC1    
+	02550: DELTAC1    
+	02551: DELTAC1    
+	02552: DELTAC1    
+	02553: DELTAC1    
+	02554: DELTAC1    
+	02555: DELTAC1    
+	02556: CALL       
+	02557: CALL       
+	02558: CALL       
+	02559: RCVT       
+	02560: PUSHB[1]             64 
+	02562: SUB        
+	02563: WCVTP      
+	02564: DELTAC1    
+	02565: DELTAC2    
+	02566: SVTCA[y-axis] 
+	02567: SVTCA[y-axis] 
+	02568: MPPEM      
+	02569: PUSHB[1]             42 
+	02571: GTEQ       
+	02572: MPPEM      
+	02573: PUSHB[1]             63 
+	02575: LTEQ       
+	02576: AND        
+	02577: IF         
+	02578: PUSHB[2]              7     7 
+	02581: RCVT       
+	02582: PUSHB[1]             64 
+	02584: ADD        
+	02585: WCVTP      
+	02586: EIF        
+	02587: SVTCA[y-axis] 
+	02588: MPPEM      
+	02589: PUSHB[1]             58 
+	02591: GTEQ       
+	02592: MPPEM      
+	02593: PUSHB[1]             63 
+	02595: LTEQ       
+	02596: AND        
+	02597: IF         
+	02598: PUSHB[2]             11    11 
+	02601: RCVT       
+	02602: PUSHW[1]            -64 
+	02605: ADD        
+	02606: WCVTP      
+	02607: EIF        
+	02608: SVTCA[y-axis] 
+	02609: MPPEM      
+	02610: PUSHB[1]             46 
+	02612: GTEQ       
+	02613: MPPEM      
+	02614: PUSHB[1]             58 
+	02616: LTEQ       
+	02617: AND        
+	02618: IF         
+	02619: PUSHB[2]              3     3 
+	02622: RCVT       
+	02623: PUSHB[1]             64 
+	02625: ADD        
+	02626: WCVTP      
+	02627: EIF        
+	02628: SVTCA[y-axis] 
+	02629: MPPEM      
+	02630: PUSHB[1]             46 
+	02632: GTEQ       
+	02633: MPPEM      
+	02634: PUSHB[1]             60 
+	02636: LTEQ       
+	02637: AND        
+	02638: IF         
+	02639: PUSHB[2]              9     9 
+	02642: RCVT       
+	02643: PUSHW[1]            -64 
+	02646: ADD        
+	02647: WCVTP      
+	02648: EIF        
+	02649: CALL       
+	02650: CALL       
+	02651: CALL       
+	02652: CALL       
+	02653: CALL       
+	02654: CALL       
+	02655: CALL       
+	02656: CALL       
+	02657: CALL       
+	02658: CALL       
+	02659: CALL       
+	02660: CALL       
+	02661: CALL       
+	02662: CALL       
+	02663: CALL       
+	02664: CALL       
+	02665: CALL       
+	02666: CALL       
+	02667: DELTAC3    
+	02668: CALL       
+	02669: CALL       
+	02670: CALL       
+	02671: CALL       
+	02672: CALL       
+	02673: CALL       
+	02674: CALL       
+	02675: RS         
+	02676: NOT        
+	02677: IF         
+	02678: PUSHW[2]            128   699 
+	02683: PUSHB[4]              1    64    30     1 
+	02688: DELTAC2    
+	02689: SVTCA[y-axis] 
+	02690: DELTAC1    
+	02691: EIF        
+	02692: SPVTCA[x-axis] 
+	02693: PUSHB[1]             30 
+	02695: MPPEM      
+	02696: EQ         
+	02697: SPVTCA[y-axis] 
+	02698: PUSHB[1]             18 
+	02700: MPPEM      
+	02701: EQ         
+	02702: AND        
+	02703: PUSHB[1]             18 
+	02705: RS         
+	02706: NOT        
+	02707: AND        
+	02708: IF         
+	02709: PUSHW[3]            159   546     1 
+	02716: SVTCA[y-axis] 
+	02717: DELTAC1    
+	02718: EIF        
+	02719: SVTCA[y-axis] 
+	02720: CALL       
+	02721: DELTAC2    
+	02722: DELTAC1    
+	02723: SVTCA[x-axis] 
+	02724: CALL       
+	02725: SVTCA[x-axis] 
+	02726: DELTAC1    
+	02727: CALL       
+	02728: CALL       
+	02729: CALL       
+	02730: CALL       
+	02731: CALL       
+	02732: CALL       
+	02733: CALL       
+	02734: CALL       
+	02735: DELTAC1    
+	02736: DELTAC1    
+	02737: DELTAC1    
+	02738: DELTAC1    
+	02739: CALL       
+	02740: SVTCA[y-axis] 
+	02741: CALL       
+	02742: CALL       
+	02743: CALL       
+	02744: CALL       
+	02745: CALL       
+	02746: CALL       
+	02747: SVTCA[y-axis] 
+	02748: RCVT       
+	02749: ROUND[Black] 
+	02750: WCVTP      
+	02751: DELTAC1    
+	02752: RCVT       
+	02753: ROUND[Black] 
+	02754: WCVTP      
+	02755: DELTAC1    
+	02756: RCVT       
+	02757: ROUND[Black] 
+	02758: WCVTP      
+	02759: DELTAC1    
+	02760: DELTAC2    
+	02761: DELTAC3    
+	02762: RCVT       
+	02763: ROUND[Black] 
+	02764: WCVTP      
+	02765: DELTAC1    
+	02766: RCVT       
+	02767: ROUND[Black] 
+	02768: WCVTP      
+	02769: RCVT       
+	02770: ROUND[Black] 
+	02771: WCVTP      
+	02772: RCVT       
+	02773: ROUND[Black] 
+	02774: WCVTP      
+	02775: DELTAC1    
+	02776: DELTAC2    
+	02777: RCVT       
+	02778: ROUND[Black] 
+	02779: WCVTP      
+	02780: RCVT       
+	02781: ROUND[Black] 
+	02782: WCVTP      
+	02783: DELTAC1    
+	02784: CALL       
+	02785: CALL       
+	02786: CALL       
+	02787: CALL       
+	02788: CALL       
+	02789: DELTAC1    
+	02790: CALL       
+	02791: SVTCA[y-axis] 
+	02792: CALL       
+	02793: DELTAC1    
+	02794: CALL       
+	02795: DELTAC2    
+	02796: DELTAC3    
+	02797: CALL       
+	02798: CALL       
+	02799: CALL       
+	02800: CALL       
+	02801: CALL       
+	02802: CALL       
+	02803: CALL       
+	02804: CALL       
+	02805: CALL       
+	02806: CALL       
+	02807: CALL       
+	02808: CALL       
+	02809: CALL       
+	02810: CALL       
+	02811: DELTAC1    
+	02812: DELTAC2    
+	02813: DELTAC3    
+	02814: CALL       
+
+
+'fpgm' Table - Font Program
+---------------------------
+Size = 1646 bytes
+	00000: NPUSHB      (67):    85    84    65    64    63    62    61    60    59    58 
+	                            57    56    55    53    52    51    50    49    48    47 
+	                            46    45    44    43    42    41    40    39    38    37 
+	                            36    35    34    33    32    31    30    29    28    27 
+	                            26    25    24    23    22    21    20    19    18    17 
+	                            16    15    14    13    12    11    10     9     8     7 
+	                             6     5     4     3     2     1     0 
+	00069: FDEF       
+	00070: RCVT       
+	00071: SWAP       
+	00072: GC[cur p]  
+	00073: ADD        
+	00074: DUP        
+	00075: PUSHB[1]             38 
+	00077: ADD        
+	00078: PUSHB[1]              4 
+	00080: MINDEX     
+	00081: SWAP       
+	00082: SCFS       
+	00083: SCFS       
+	00084: ENDF       
+	00085: FDEF       
+	00086: RCVT       
+	00087: SWAP       
+	00088: GC[cur p]  
+	00089: SWAP       
+	00090: SUB        
+	00091: DUP        
+	00092: PUSHB[1]             38 
+	00094: SUB        
+	00095: PUSHB[1]              4 
+	00097: MINDEX     
+	00098: SWAP       
+	00099: SCFS       
+	00100: SCFS       
+	00101: ENDF       
+	00102: FDEF       
+	00103: RCVT       
+	00104: SWAP       
+	00105: GC[cur p]  
+	00106: ADD        
+	00107: PUSHB[1]             32 
+	00109: SUB        
+	00110: DUP        
+	00111: PUSHB[1]             70 
+	00113: ADD        
+	00114: PUSHB[1]              4 
+	00116: MINDEX     
+	00117: SWAP       
+	00118: SCFS       
+	00119: SCFS       
+	00120: ENDF       
+	00121: FDEF       
+	00122: RCVT       
+	00123: SWAP       
+	00124: GC[cur p]  
+	00125: SWAP       
+	00126: SUB        
+	00127: PUSHB[1]             32 
+	00129: ADD        
+	00130: DUP        
+	00131: PUSHB[1]             38 
+	00133: SUB        
+	00134: PUSHB[1]             32 
+	00136: SUB        
+	00137: PUSHB[1]              4 
+	00139: MINDEX     
+	00140: SWAP       
+	00141: SCFS       
+	00142: SCFS       
+	00143: ENDF       
+	00144: FDEF       
+	00145: RCVT       
+	00146: SWAP       
+	00147: GC[cur p]  
+	00148: ADD        
+	00149: PUSHB[1]             64 
+	00151: SUB        
+	00152: DUP        
+	00153: PUSHB[1]            102 
+	00155: ADD        
+	00156: PUSHB[1]              4 
+	00158: MINDEX     
+	00159: SWAP       
+	00160: SCFS       
+	00161: SCFS       
+	00162: ENDF       
+	00163: FDEF       
+	00164: RCVT       
+	00165: SWAP       
+	00166: GC[cur p]  
+	00167: SWAP       
+	00168: SUB        
+	00169: PUSHB[1]             64 
+	00171: ADD        
+	00172: DUP        
+	00173: PUSHB[1]             38 
+	00175: SUB        
+	00176: PUSHB[1]             64 
+	00178: SUB        
+	00179: PUSHB[1]              4 
+	00181: MINDEX     
+	00182: SWAP       
+	00183: SCFS       
+	00184: SCFS       
+	00185: ENDF       
+	00186: FDEF       
+	00187: SVTCA[x-axis] 
+	00188: SRP0       
+	00189: DUP        
+	00190: ALIGNRP    
+	00191: SVTCA[y-axis] 
+	00192: ALIGNRP    
+	00193: ENDF       
+	00194: FDEF       
+	00195: DUP        
+	00196: RCVT       
+	00197: SWAP       
+	00198: DUP        
+	00199: PUSHB[1]            205 
+	00201: WCVTP      
+	00202: SWAP       
+	00203: DUP        
+	00204: PUSHW[1]            346 
+	00207: LTEQ       
+	00208: IF         
+	00209: SWAP       
+	00210: DUP        
+	00211: PUSHB[1]            141 
+	00213: WCVTP      
+	00214: SWAP       
+	00215: EIF        
+	00216: DUP        
+	00217: PUSHB[1]            237 
+	00219: LTEQ       
+	00220: IF         
+	00221: SWAP       
+	00222: DUP        
+	00223: PUSHB[1]             77 
+	00225: WCVTP      
+	00226: SWAP       
+	00227: EIF        
+	00228: DUP        
+	00229: PUSHB[1]            144 
+	00231: LTEQ       
+	00232: IF         
+	00233: SWAP       
+	00234: DUP        
+	00235: PUSHB[1]             13 
+	00237: WCVTP      
+	00238: SWAP       
+	00239: EIF        
+	00240: POP        
+	00241: POP        
+	00242: ENDF       
+	00243: FDEF       
+	00244: DUP        
+	00245: DUP        
+	00246: RCVT       
+	00247: RTG        
+	00248: ROUND[Gray] 
+	00249: WCVTP      
+	00250: DUP        
+	00251: PUSHB[1]              1 
+	00253: ADD        
+	00254: DUP        
+	00255: RCVT       
+	00256: PUSHB[1]             70 
+	00258: SROUND     
+	00259: ROUND[Gray] 
+	00260: ROLL       
+	00261: RCVT       
+	00262: ADD        
+	00263: WCVTP      
+	00264: ENDF       
+	00265: FDEF       
+	00266: SVTCA[x-axis] 
+	00267: PUSHB[2]             11    10 
+	00270: RS         
+	00271: SWAP       
+	00272: RS         
+	00273: NEG        
+	00274: SPVFS      
+	00275: ENDF       
+	00276: FDEF       
+	00277: SVTCA[y-axis] 
+	00278: PUSHB[2]             10    11 
+	00281: RS         
+	00282: SWAP       
+	00283: RS         
+	00284: SFVFS      
+	00285: ENDF       
+	00286: FDEF       
+	00287: SVTCA[y-axis] 
+	00288: PUSHB[1]             23 
+	00290: SWAP       
+	00291: WCVTF      
+	00292: PUSHB[2]              1    23 
+	00295: MIAP[nrd+nci] 
+	00296: SVTCA[x-axis] 
+	00297: PUSHB[1]             23 
+	00299: SWAP       
+	00300: WCVTF      
+	00301: PUSHB[2]              2    23 
+	00304: RCVT       
+	00305: MSIRP[nrp] 
+	00306: PUSHB[2]              2     0 
+	00309: SFVTL[=p1,p2] 
+	00310: GFV        
+	00311: ENDF       
+	00312: FDEF       
+	00313: RCVT       
+	00314: PUSHB[1]             26 
+	00316: SWAP       
+	00317: WCVTP      
+	00318: RCVT       
+	00319: PUSHB[1]             25 
+	00321: SWAP       
+	00322: WCVTP      
+	00323: ENDF       
+	00324: FDEF       
+	00325: DUP        
+	00326: RCVT       
+	00327: PUSHB[1]              3 
+	00329: CINDEX     
+	00330: RCVT       
+	00331: SUB        
+	00332: ABS        
+	00333: PUSHB[1]             80 
+	00335: LTEQ       
+	00336: IF         
+	00337: RCVT       
+	00338: WCVTP      
+	00339: ELSE       
+	00340: POP        
+	00341: POP        
+	00342: EIF        
+	00343: ENDF       
+	00344: FDEF       
+	00345: PUSHB[1]              1 
+	00347: RS         
+	00348: MUL        
+	00349: SWAP       
+	00350: DIV        
+	00351: PUSHB[1]              0 
+	00353: SWAP       
+	00354: WS         
+	00355: PUSHB[1]             15 
+	00357: CALL       
+	00358: ENDF       
+	00359: FDEF       
+	00360: DUP        
+	00361: RCVT       
+	00362: PUSHB[1]              0 
+	00364: RS         
+	00365: ADD        
+	00366: WCVTP      
+	00367: ENDF       
+	00368: FDEF       
+	00369: SVTCA[x-axis] 
+	00370: PUSHB[1]              6 
+	00372: RS         
+	00373: PUSHB[1]              7 
+	00375: RS         
+	00376: NEG        
+	00377: SPVFS      
+	00378: ENDF       
+	00379: FDEF       
+	00380: DUP        
+	00381: ROUND[Black] 
+	00382: PUSHB[1]             64 
+	00384: SUB        
+	00385: PUSHB[1]              0 
+	00387: MAX        
+	00388: DUP        
+	00389: PUSHB[2]             44   192 
+	00392: ROLL       
+	00393: MIN        
+	00394: PUSHW[1]           4096 
+	00397: DIV        
+	00398: ADD        
+	00399: CALL       
+	00400: GPV        
+	00401: ABS        
+	00402: SWAP       
+	00403: ABS        
+	00404: SUB        
+	00405: NOT        
+	00406: IF         
+	00407: PUSHB[1]              3 
+	00409: SUB        
+	00410: EIF        
+	00411: ENDF       
+	00412: FDEF       
+	00413: RCVT       
+	00414: PUSHB[1]             17 
+	00416: CALL       
+	00417: PUSHB[1]             23 
+	00419: SWAP       
+	00420: WCVTP      
+	00421: PUSHB[1]             23 
+	00423: ROFF       
+	00424: MIRP[nrp0,nmd,rd,0] 
+	00425: RTG        
+	00426: ENDF       
+	00427: FDEF       
+	00428: RCVT       
+	00429: PUSHB[1]             17 
+	00431: CALL       
+	00432: PUSHB[1]             23 
+	00434: SWAP       
+	00435: WCVTP      
+	00436: ENDF       
+	00437: FDEF       
+	00438: PUSHB[1]             18 
+	00440: RS         
+	00441: IF         
+	00442: SDPVTL[1]  
+	00443: RCVT       
+	00444: PUSHB[1]             17 
+	00446: CALL       
+	00447: PUSHB[1]             23 
+	00449: SWAP       
+	00450: WCVTP      
+	00451: PUSHB[1]             23 
+	00453: ROFF       
+	00454: MIRP[nrp0,nmd,rd,0] 
+	00455: ELSE       
+	00456: SPVTCA[x-axis] 
+	00457: ROLL       
+	00458: RCVT       
+	00459: RTG        
+	00460: ROUND[Black] 
+	00461: DUP        
+	00462: PUSHB[1]             23 
+	00464: SWAP       
+	00465: WCVTP      
+	00466: ROLL       
+	00467: ROLL       
+	00468: SDPVTL[1]  
+	00469: DUP        
+	00470: PUSHB[1]            160 
+	00472: LTEQ       
+	00473: IF         
+	00474: PUSHB[1]             17 
+	00476: CALL       
+	00477: PUSHB[1]             23 
+	00479: SWAP       
+	00480: WCVTP      
+	00481: PUSHB[1]             23 
+	00483: ROFF       
+	00484: MIRP[nrp0,nmd,rd,0] 
+	00485: ELSE       
+	00486: POP        
+	00487: PUSHB[1]             23 
+	00489: ROFF       
+	00490: MIRP[nrp0,nmd,rd,0] 
+	00491: EIF        
+	00492: EIF        
+	00493: RTG        
+	00494: ENDF       
+	00495: FDEF       
+	00496: ENDF       
+	00497: FDEF       
+	00498: PUSHB[1]              2 
+	00500: CINDEX     
+	00501: GC[cur p]  
+	00502: ADD        
+	00503: ROLL       
+	00504: GC[cur p]  
+	00505: PUSHB[1]             64 
+	00507: SUB        
+	00508: MIN        
+	00509: SCFS       
+	00510: ENDF       
+	00511: FDEF       
+	00512: MPPEM      
+	00513: GTEQ       
+	00514: DUP        
+	00515: NOT        
+	00516: IF         
+	00517: PUSHB[1]              2 
+	00519: SCANCTRL   
+	00520: EIF        
+	00521: IF         
+	00522: PUSHB[1]              1 
+	00524: SCANCTRL   
+	00525: EIF        
+	00526: ENDF       
+	00527: FDEF       
+	00528: DUP        
+	00529: PUSHB[1]              3 
+	00531: CINDEX     
+	00532: RCVT       
+	00533: PUSHB[1]             25 
+	00535: SWAP       
+	00536: WCVTP      
+	00537: RCVT       
+	00538: PUSHB[1]             26 
+	00540: SWAP       
+	00541: WCVTP      
+	00542: RCVT       
+	00543: NEG        
+	00544: SWAP       
+	00545: RCVT       
+	00546: DUP        
+	00547: PUSHB[1]              3 
+	00549: CINDEX     
+	00550: ADD        
+	00551: ROUND[White] 
+	00552: DUP        
+	00553: PUSHB[1]              9 
+	00555: SWAP       
+	00556: WS         
+	00557: SWAP       
+	00558: ROUND[Gray] 
+	00559: ROLL       
+	00560: ROUND[White] 
+	00561: ADD        
+	00562: SUB        
+	00563: DUP        
+	00564: PUSHB[1]             26 
+	00566: ROLL       
+	00567: PUSHB[1]              0 
+	00569: GT         
+	00570: JROF       
+	00571: POP        
+	00572: PUSHB[3]             26    26    64 
+	00576: PUSHW[2]            -32    26 
+	00581: RCVT       
+	00582: DUP        
+	00583: ROLL       
+	00584: EQ         
+	00585: IF         
+	00586: SWAP       
+	00587: POP        
+	00588: PUSHB[1]             63 
+	00590: ELSE       
+	00591: SWAP       
+	00592: EIF        
+	00593: SUB        
+	00594: WCVTP      
+	00595: JMPR       
+	00596: PUSHB[2]             20     0 
+	00599: ROLL       
+	00600: GT         
+	00601: JROF       
+	00602: PUSHB[4]             25    64    32    25 
+	00607: RCVT       
+	00608: DUP        
+	00609: ROLL       
+	00610: EQ         
+	00611: IF         
+	00612: SWAP       
+	00613: POP        
+	00614: PUSHB[1]             63 
+	00616: ELSE       
+	00617: SWAP       
+	00618: EIF        
+	00619: SUB        
+	00620: WCVTP      
+	00621: ENDF       
+	00622: FDEF       
+	00623: PUSHB[2]             16    17 
+	00626: RS         
+	00627: SWAP       
+	00628: RS         
+	00629: SFVFS      
+	00630: ENDF       
+	00631: FDEF       
+	00632: PUSHB[2]             14    15 
+	00635: RS         
+	00636: SWAP       
+	00637: RS         
+	00638: SFVFS      
+	00639: ENDF       
+	00640: FDEF       
+	00641: PUSHB[2]             12    13 
+	00644: RS         
+	00645: SWAP       
+	00646: RS         
+	00647: SFVFS      
+	00648: ENDF       
+	00649: FDEF       
+	00650: PUSHB[2]             12    13 
+	00653: RS         
+	00654: SWAP       
+	00655: RS         
+	00656: NEG        
+	00657: SFVFS      
+	00658: ENDF       
+	00659: FDEF       
+	00660: PUSHB[2]             14    15 
+	00663: RS         
+	00664: SWAP       
+	00665: RS         
+	00666: NEG        
+	00667: SFVFS      
+	00668: ENDF       
+	00669: FDEF       
+	00670: PUSHB[2]             16    17 
+	00673: RS         
+	00674: SWAP       
+	00675: RS         
+	00676: NEG        
+	00677: SFVFS      
+	00678: ENDF       
+	00679: FDEF       
+	00680: MPPEM      
+	00681: GT         
+	00682: IF         
+	00683: RCVT       
+	00684: WCVTP      
+	00685: ELSE       
+	00686: POP        
+	00687: POP        
+	00688: EIF        
+	00689: ENDF       
+	00690: FDEF       
+	00691: SVTCA[x-axis] 
+	00692: DUP        
+	00693: PUSHB[1]              3 
+	00695: CINDEX     
+	00696: SWAP       
+	00697: MD[cur]    
+	00698: PUSHB[1]             64 
+	00700: ADD        
+	00701: PUSHB[1]             32 
+	00703: MUL        
+	00704: DUP        
+	00705: PUSHB[1]              0 
+	00707: GT         
+	00708: IF         
+	00709: SWAP       
+	00710: PUSHB[1]              2 
+	00712: CINDEX     
+	00713: SHPIX      
+	00714: SWAP       
+	00715: PUSHB[1]              2 
+	00717: CINDEX     
+	00718: NEG        
+	00719: SHPIX      
+	00720: SVTCA[y-axis] 
+	00721: ROLL       
+	00722: MUL        
+	00723: SHPIX      
+	00724: ELSE       
+	00725: POP        
+	00726: POP        
+	00727: POP        
+	00728: POP        
+	00729: POP        
+	00730: EIF        
+	00731: SVTCA[x-axis] 
+	00732: ENDF       
+	00733: FDEF       
+	00734: MPPEM      
+	00735: PUSHB[1]            100 
+	00737: LTEQ       
+	00738: IF         
+	00739: RCVT       
+	00740: ROUND[Black] 
+	00741: PUSHB[1]              9 
+	00743: RS         
+	00744: ADD        
+	00745: ROLL       
+	00746: SRP0       
+	00747: MSIRP[nrp] 
+	00748: ELSE       
+	00749: POP        
+	00750: POP        
+	00751: POP        
+	00752: EIF        
+	00753: ENDF       
+	00754: FDEF       
+	00755: SVTCA[x-axis] 
+	00756: PUSHB[1]              5 
+	00758: CINDEX     
+	00759: SRP0       
+	00760: SWAP       
+	00761: DUP        
+	00762: ROLL       
+	00763: MIRP[srp0,nmd,rd,1] 
+	00764: SVTCA[y-axis] 
+	00765: PUSHB[1]              1 
+	00767: ADD        
+	00768: SWAP       
+	00769: MIRP[nrp0,md,rd,1] 
+	00770: MIRP[nrp0,md,rd,0] 
+	00771: ENDF       
+	00772: FDEF       
+	00773: SVTCA[x-axis] 
+	00774: PUSHB[1]              5 
+	00776: CINDEX     
+	00777: SRP0       
+	00778: SWAP       
+	00779: DUP        
+	00780: ROLL       
+	00781: MIRP[srp0,nmd,rd,1] 
+	00782: SVTCA[y-axis] 
+	00783: PUSHB[1]              1 
+	00785: SUB        
+	00786: SWAP       
+	00787: MIRP[nrp0,md,rd,1] 
+	00788: MIRP[nrp0,md,rd,0] 
+	00789: ENDF       
+	00790: FDEF       
+	00791: SVTCA[x-axis] 
+	00792: PUSHB[1]              6 
+	00794: CINDEX     
+	00795: SRP0       
+	00796: MIRP[srp0,nmd,rd,1] 
+	00797: SVTCA[y-axis] 
+	00798: MIRP[nrp0,md,rd,1] 
+	00799: MIRP[nrp0,md,rd,0] 
+	00800: ENDF       
+	00801: FDEF       
+	00802: DUP        
+	00803: PUSHB[1]              1 
+	00805: ADD        
+	00806: SVTCA[x-axis] 
+	00807: SRP0       
+	00808: DUP        
+	00809: ALIGNRP    
+	00810: SVTCA[y-axis] 
+	00811: ALIGNRP    
+	00812: ENDF       
+	00813: FDEF       
+	00814: DUP        
+	00815: PUSHB[1]              1 
+	00817: SUB        
+	00818: SVTCA[x-axis] 
+	00819: SRP0       
+	00820: DUP        
+	00821: ALIGNRP    
+	00822: SVTCA[y-axis] 
+	00823: ALIGNRP    
+	00824: ENDF       
+	00825: FDEF       
+	00826: PUSHB[1]             43 
+	00828: CALL       
+	00829: PUSHB[1]             42 
+	00831: LOOPCALL   
+	00832: ENDF       
+	00833: FDEF       
+	00834: SVTCA[y-axis] 
+	00835: PUSHB[1]              7 
+	00837: RS         
+	00838: PUSHB[1]              6 
+	00840: RS         
+	00841: SFVFS      
+	00842: ENDF       
+	00843: FDEF       
+	00844: MIAP[nrd+nci] 
+	00845: PUSHB[1]             42 
+	00847: LOOPCALL   
+	00848: ENDF       
+	00849: FDEF       
+	00850: SHC[rp1,zp0] 
+	00851: ENDF       
+	00852: FDEF       
+	00853: SROUND     
+	00854: PUSHW[1]            547 
+	00857: SWAP       
+	00858: WCVTF      
+	00859: SRP0       
+	00860: DUP        
+	00861: PUSHW[1]            547 
+	00864: RCVT       
+	00865: DUP        
+	00866: PUSHB[1]              0 
+	00868: LT         
+	00869: IF         
+	00870: PUSHB[1]              1 
+	00872: SUB        
+	00873: EIF        
+	00874: MSIRP[nrp] 
+	00875: MDAP[rd]   
+	00876: RTG        
+	00877: ENDF       
+	00878: FDEF       
+	00879: POP        
+	00880: POP        
+	00881: GPV        
+	00882: ABS        
+	00883: SWAP       
+	00884: ABS        
+	00885: MAX        
+	00886: PUSHW[1]          16384 
+	00889: DIV        
+	00890: ENDF       
+	00891: FDEF       
+	00892: POP        
+	00893: PUSHB[1]            128 
+	00895: LTEQ       
+	00896: IF         
+	00897: GPV        
+	00898: ABS        
+	00899: SWAP       
+	00900: ABS        
+	00901: MAX        
+	00902: PUSHW[1]           8192 
+	00905: DIV        
+	00906: ELSE       
+	00907: PUSHB[3]              0    64    47 
+	00911: CALL       
+	00912: EIF        
+	00913: PUSHB[1]              2 
+	00915: ADD        
+	00916: ENDF       
+	00917: FDEF       
+	00918: POP        
+	00919: PUSHB[1]            192 
+	00921: LTEQ       
+	00922: IF         
+	00923: GPV        
+	00924: ABS        
+	00925: SWAP       
+	00926: ABS        
+	00927: MAX        
+	00928: PUSHW[1]           5461 
+	00931: DIV        
+	00932: ELSE       
+	00933: PUSHB[3]              0   128    47 
+	00937: CALL       
+	00938: EIF        
+	00939: PUSHB[1]              2 
+	00941: ADD        
+	00942: ENDF       
+	00943: FDEF       
+	00944: GPV        
+	00945: ABS        
+	00946: SWAP       
+	00947: ABS        
+	00948: MAX        
+	00949: PUSHW[1]          16384 
+	00952: DIV        
+	00953: ADD        
+	00954: SWAP       
+	00955: POP        
+	00956: ENDF       
+	00957: FDEF       
+	00958: PUSHB[5]              0     1     0     0     0 
+	00964: SZP2       
+	00965: PUSHB[1]              8 
+	00967: MINDEX     
+	00968: PUSHB[1]              8 
+	00970: MINDEX     
+	00971: PUSHB[1]              8 
+	00973: MINDEX     
+	00974: PUSHB[1]              8 
+	00976: MINDEX     
+	00977: ISECT      
+	00978: SRP0       
+	00979: SZPS       
+	00980: SZP0       
+	00981: RCVT       
+	00982: ROUND[Gray] 
+	00983: MSIRP[nrp] 
+	00984: PUSHB[1]              1 
+	00986: SZPS       
+	00987: ENDF       
+	00988: FDEF       
+	00989: PUSHB[5]              0     1     0     0     0 
+	00995: SZP2       
+	00996: PUSHB[1]              8 
+	00998: MINDEX     
+	00999: PUSHB[1]              8 
+	01001: MINDEX     
+	01002: PUSHB[1]              8 
+	01004: MINDEX     
+	01005: PUSHB[1]              8 
+	01007: MINDEX     
+	01008: ISECT      
+	01009: SRP0       
+	01010: SZPS       
+	01011: SZP0       
+	01012: RCVT       
+	01013: ROUND[Gray] 
+	01014: NEG        
+	01015: MSIRP[nrp] 
+	01016: PUSHB[1]              1 
+	01018: SZPS       
+	01019: ENDF       
+	01020: FDEF       
+	01021: MPPEM      
+	01022: GTEQ       
+	01023: SWAP       
+	01024: MPPEM      
+	01025: LTEQ       
+	01026: AND        
+	01027: IF         
+	01028: DUP        
+	01029: RCVT       
+	01030: ROLL       
+	01031: ADD        
+	01032: WCVTP      
+	01033: ELSE       
+	01034: POP        
+	01035: POP        
+	01036: EIF        
+	01037: ENDF       
+	01038: FDEF       
+	01039: MPPEM      
+	01040: EQ         
+	01041: IF         
+	01042: DUP        
+	01043: RCVT       
+	01044: ROLL       
+	01045: ADD        
+	01046: WCVTP      
+	01047: ELSE       
+	01048: POP        
+	01049: POP        
+	01050: EIF        
+	01051: ENDF       
+	01052: FDEF       
+	01053: MPPEM      
+	01054: GTEQ       
+	01055: SWAP       
+	01056: MPPEM      
+	01057: LTEQ       
+	01058: AND        
+	01059: IF         
+	01060: SHPIX      
+	01061: ELSE       
+	01062: POP        
+	01063: POP        
+	01064: EIF        
+	01065: ENDF       
+	01066: FDEF       
+	01067: MPPEM      
+	01068: EQ         
+	01069: IF         
+	01070: SHPIX      
+	01071: ELSE       
+	01072: POP        
+	01073: POP        
+	01074: EIF        
+	01075: ENDF       
+	01076: FDEF       
+	01077: PUSHB[1]             19 
+	01079: RS         
+	01080: IF         
+	01081: SPVTCA[x-axis] 
+	01082: ELSE       
+	01083: SPVTCA[y-axis] 
+	01084: EIF        
+	01085: ENDF       
+	01086: FDEF       
+	01087: PUSHB[1]             19 
+	01089: RS         
+	01090: IF         
+	01091: SPVTCA[y-axis] 
+	01092: ELSE       
+	01093: SPVTCA[x-axis] 
+	01094: EIF        
+	01095: ENDF       
+	01096: FDEF       
+	01097: MPPEM      
+	01098: EQ         
+	01099: PUSHB[1]             18 
+	01101: RS         
+	01102: NOT        
+	01103: AND        
+	01104: IF         
+	01105: SHPIX      
+	01106: ELSE       
+	01107: POP        
+	01108: POP        
+	01109: EIF        
+	01110: ENDF       
+	01111: FDEF       
+	01112: PUSHB[1]             18 
+	01114: RS         
+	01115: NOT        
+	01116: IF         
+	01117: GPV        
+	01118: PUSHB[1]              4 
+	01120: CINDEX     
+	01121: PUSHB[1]              4 
+	01123: CINDEX     
+	01124: SPVTL[=p1,p2] 
+	01125: GPV        
+	01126: ABS        
+	01127: SWAP       
+	01128: ABS        
+	01129: SUB        
+	01130: ABS        
+	01131: PUSHW[1]           1800 
+	01134: LTEQ       
+	01135: IF         
+	01136: PUSHB[1]              4 
+	01138: CINDEX     
+	01139: PUSHB[1]              4 
+	01141: CINDEX     
+	01142: SVTCA[x-axis] 
+	01143: DUP        
+	01144: GC[cur p]  
+	01145: PUSHB[1]             16 
+	01147: ADD        
+	01148: SCFS       
+	01149: DUP        
+	01150: GC[cur p]  
+	01151: PUSHB[1]             16 
+	01153: ADD        
+	01154: SCFS       
+	01155: EIF        
+	01156: SPVFS      
+	01157: POP        
+	01158: POP        
+	01159: ELSE       
+	01160: POP        
+	01161: POP        
+	01162: EIF        
+	01163: ENDF       
+	01164: FDEF       
+	01165: PUSHB[1]             18 
+	01167: RS         
+	01168: NOT        
+	01169: IF         
+	01170: GPV        
+	01171: PUSHB[1]              4 
+	01173: CINDEX     
+	01174: PUSHB[1]              4 
+	01176: CINDEX     
+	01177: SPVTL[=p1,p2] 
+	01178: GPV        
+	01179: ABS        
+	01180: SWAP       
+	01181: ABS        
+	01182: SUB        
+	01183: ABS        
+	01184: PUSHW[1]           1800 
+	01187: LTEQ       
+	01188: IF         
+	01189: PUSHB[1]              4 
+	01191: CINDEX     
+	01192: PUSHB[1]              4 
+	01194: CINDEX     
+	01195: SVTCA[x-axis] 
+	01196: DUP        
+	01197: GC[cur p]  
+	01198: PUSHW[1]            -16 
+	01201: ADD        
+	01202: SCFS       
+	01203: DUP        
+	01204: GC[cur p]  
+	01205: PUSHW[1]            -16 
+	01208: ADD        
+	01209: SCFS       
+	01210: EIF        
+	01211: SPVFS      
+	01212: POP        
+	01213: POP        
+	01214: ELSE       
+	01215: POP        
+	01216: POP        
+	01217: EIF        
+	01218: ENDF       
+	01219: FDEF       
+	01220: MPPEM      
+	01221: GTEQ       
+	01222: SWAP       
+	01223: MPPEM      
+	01224: LTEQ       
+	01225: AND        
+	01226: IF         
+	01227: PUSHB[1]             58 
+	01229: CALL       
+	01230: ELSE       
+	01231: POP        
+	01232: POP        
+	01233: EIF        
+	01234: ENDF       
+	01235: FDEF       
+	01236: MPPEM      
+	01237: GTEQ       
+	01238: SWAP       
+	01239: MPPEM      
+	01240: LTEQ       
+	01241: AND        
+	01242: IF         
+	01243: PUSHB[1]             59 
+	01245: CALL       
+	01246: ELSE       
+	01247: POP        
+	01248: POP        
+	01249: EIF        
+	01250: ENDF       
+	01251: FDEF       
+	01252: MPPEM      
+	01253: GTEQ       
+	01254: SWAP       
+	01255: MPPEM      
+	01256: LTEQ       
+	01257: AND        
+	01258: PUSHB[1]             18 
+	01260: RS         
+	01261: NOT        
+	01262: AND        
+	01263: IF         
+	01264: SHPIX      
+	01265: ELSE       
+	01266: POP        
+	01267: POP        
+	01268: EIF        
+	01269: ENDF       
+	01270: FDEF       
+	01271: GPV        
+	01272: ROLL       
+	01273: SPVTCA[x-axis] 
+	01274: MPPEM      
+	01275: EQ         
+	01276: PUSHB[1]              4 
+	01278: MINDEX     
+	01279: SPVTCA[y-axis] 
+	01280: MPPEM      
+	01281: EQ         
+	01282: AND        
+	01283: ROLL       
+	01284: ROLL       
+	01285: SPVFS      
+	01286: PUSHB[1]             18 
+	01288: RS         
+	01289: NOT        
+	01290: AND        
+	01291: IF         
+	01292: SHPIX      
+	01293: ELSE       
+	01294: POP        
+	01295: POP        
+	01296: EIF        
+	01297: ENDF       
+	01298: FDEF       
+	01299: MPPEM      
+	01300: GT         
+	01301: IF         
+	01302: PUSHB[1]              4 
+	01304: CINDEX     
+	01305: PUSHB[1]              4 
+	01307: CINDEX     
+	01308: MD[cur]    
+	01309: PUSHB[1]              4 
+	01311: CINDEX     
+	01312: PUSHB[1]              4 
+	01314: CINDEX     
+	01315: MD[cur]    
+	01316: SUB        
+	01317: DUP        
+	01318: PUSHB[1]              0 
+	01320: EQ         
+	01321: IF         
+	01322: POP        
+	01323: DUP        
+	01324: RS         
+	01325: PUSHB[1]              0 
+	01327: NEQ        
+	01328: IF         
+	01329: PUSHB[1]              3 
+	01331: CINDEX     
+	01332: PUSHB[1]              3 
+	01334: CINDEX     
+	01335: PUSHW[1]            -64 
+	01338: SHPIX      
+	01339: PUSHW[1]            -64 
+	01342: SHPIX      
+	01343: EIF        
+	01344: ELSE       
+	01345: PUSHB[1]             64 
+	01347: EQ         
+	01348: IF         
+	01349: DUP        
+	01350: RS         
+	01351: PUSHB[1]              0 
+	01353: EQ         
+	01354: IF         
+	01355: PUSHB[1]              2 
+	01357: CINDEX     
+	01358: PUSHW[1]            -64 
+	01361: SHPIX      
+	01362: EIF        
+	01363: ELSE       
+	01364: DUP        
+	01365: RS         
+	01366: PUSHB[1]              0 
+	01368: EQ         
+	01369: IF         
+	01370: PUSHB[1]              3 
+	01372: CINDEX     
+	01373: PUSHB[1]              3 
+	01375: CINDEX     
+	01376: PUSHW[1]            -64 
+	01379: SHPIX      
+	01380: PUSHW[1]            -64 
+	01383: SHPIX      
+	01384: ELSE       
+	01385: PUSHB[1]              3 
+	01387: CINDEX     
+	01388: PUSHW[1]            -64 
+	01391: SHPIX      
+	01392: EIF        
+	01393: EIF        
+	01394: EIF        
+	01395: EIF        
+	01396: POP        
+	01397: POP        
+	01398: POP        
+	01399: POP        
+	01400: ENDF       
+	01401: FDEF       
+	01402: GC[cur p]  
+	01403: SWAP       
+	01404: GC[cur p]  
+	01405: ADD        
+	01406: ROLL       
+	01407: ROLL       
+	01408: GC[cur p]  
+	01409: SWAP       
+	01410: DUP        
+	01411: GC[cur p]  
+	01412: ROLL       
+	01413: ADD        
+	01414: ROLL       
+	01415: SUB        
+	01416: PUSHW[1]           -128 
+	01419: DIV        
+	01420: SWAP       
+	01421: DUP        
+	01422: SRP0       
+	01423: SWAP       
+	01424: ROLL       
+	01425: PUSHW[2]            706   706 
+	01430: ROLL       
+	01431: WCVTF      
+	01432: RCVT       
+	01433: ADD        
+	01434: DUP        
+	01435: PUSHB[1]              0 
+	01437: LT         
+	01438: IF         
+	01439: PUSHB[1]              1 
+	01441: SUB        
+	01442: PUSHW[1]            -70 
+	01445: MAX        
+	01446: ELSE       
+	01447: PUSHB[1]             70 
+	01449: MIN        
+	01450: EIF        
+	01451: PUSHB[1]             16 
+	01453: ADD        
+	01454: ROUND[Gray] 
+	01455: SVTCA[x-axis] 
+	01456: MSIRP[nrp] 
+	01457: ENDF       
+	01458: FDEF       
+	01459: PUSHB[2]              2     0 
+	01462: WS         
+	01463: PUSHB[2]             35     1 
+	01466: GETINFO    
+	01467: LTEQ       
+	01468: PUSHB[2]             64     1 
+	01471: GETINFO    
+	01472: GTEQ       
+	01473: AND        
+	01474: IF         
+	01475: PUSHW[2]           4096    32 
+	01480: GETINFO    
+	01481: EQ         
+	01482: IF         
+	01483: PUSHB[3]              2     1     2 
+	01487: RS         
+	01488: ADD        
+	01489: WS         
+	01490: EIF        
+	01491: PUSHB[2]             36     1 
+	01494: GETINFO    
+	01495: LTEQ       
+	01496: IF         
+	01497: PUSHW[2]           8192    64 
+	01502: GETINFO    
+	01503: EQ         
+	01504: IF         
+	01505: PUSHB[3]              2     2     2 
+	01509: RS         
+	01510: ADD        
+	01511: WS         
+	01512: PUSHB[2]             36     1 
+	01515: GETINFO    
+	01516: EQ         
+	01517: IF         
+	01518: PUSHB[3]              2    32     2 
+	01522: RS         
+	01523: ADD        
+	01524: WS         
+	01525: SVTCA[y-axis] 
+	01526: MPPEM      
+	01527: SVTCA[x-axis] 
+	01528: MPPEM      
+	01529: GT         
+	01530: IF         
+	01531: PUSHB[3]              2     8     2 
+	01535: RS         
+	01536: ADD        
+	01537: WS         
+	01538: EIF        
+	01539: ELSE       
+	01540: PUSHW[2]          16384   128 
+	01545: GETINFO    
+	01546: EQ         
+	01547: IF         
+	01548: PUSHB[3]              2     4     2 
+	01552: RS         
+	01553: ADD        
+	01554: WS         
+	01555: EIF        
+	01556: PUSHW[2]          16384   128 
+	01561: MUL        
+	01562: PUSHW[1]            256 
+	01565: GETINFO    
+	01566: EQ         
+	01567: IF         
+	01568: PUSHB[3]              2     8     2 
+	01572: RS         
+	01573: ADD        
+	01574: WS         
+	01575: EIF        
+	01576: PUSHW[2]          16384   256 
+	01581: MUL        
+	01582: PUSHW[1]            512 
+	01585: GETINFO    
+	01586: EQ         
+	01587: IF         
+	01588: PUSHB[3]              2    16     2 
+	01592: RS         
+	01593: ADD        
+	01594: WS         
+	01595: EIF        
+	01596: PUSHW[2]          16384   512 
+	01601: MUL        
+	01602: PUSHW[1]           1024 
+	01605: GETINFO    
+	01606: EQ         
+	01607: IF         
+	01608: PUSHB[3]              2    64     2 
+	01612: RS         
+	01613: ADD        
+	01614: WS         
+	01615: EIF        
+	01616: EIF        
+	01617: EIF        
+	01618: EIF        
+	01619: EIF        
+	01620: ENDF       
+	01621: FDEF       
+	01622: PUSHB[1]              2 
+	01624: RS         
+	01625: EQ         
+	01626: IF         
+	01627: MPPEM      
+	01628: GTEQ       
+	01629: SWAP       
+	01630: MPPEM      
+	01631: LTEQ       
+	01632: AND        
+	01633: IF         
+	01634: SHPIX      
+	01635: ELSE       
+	01636: POP        
+	01637: POP        
+	01638: EIF        
+	01639: ELSE       
+	01640: POP        
+	01641: POP        
+	01642: POP        
+	01643: POP        
+	01644: EIF        
+	01645: ENDF       
+
+
+'hmtx' Table - Horizontal Metrics
+---------------------------------
+Size = 5280 bytes, 1320 entries
+	  0. advWid: 1536, LSdBear: 256
+	  1. advWid:    0, LSdBear: 0
+	  2. advWid:  569, LSdBear: 0
+	  3. advWid:  569, LSdBear: 0
+	  4. advWid:  569, LSdBear: 176
+	  5. advWid:  727, LSdBear: 94
+	  6. advWid: 1139, LSdBear: 21
+	  7. advWid: 1139, LSdBear: 73
+	  8. advWid: 1821, LSdBear: 119
+	  9. advWid: 1366, LSdBear: 88
+	 10. advWid:  391, LSdBear: 90
+	 11. advWid:  682, LSdBear: 124
+	 12. advWid:  682, LSdBear: 124
+	 13. advWid:  797, LSdBear: 64
+	 14. advWid: 1196, LSdBear: 114
+	 15. advWid:  569, LSdBear: 170
+	 16. advWid:  682, LSdBear: 65
+	 17. advWid:  569, LSdBear: 186
+	 18. advWid:  569, LSdBear: 0
+	 19. advWid: 1139, LSdBear: 85
+	 20. advWid: 1139, LSdBear: 223
+	 21. advWid: 1139, LSdBear: 60
+	 22. advWid: 1139, LSdBear: 86
+	 23. advWid: 1139, LSdBear: 26
+	 24. advWid: 1139, LSdBear: 85
+	 25. advWid: 1139, LSdBear: 77
+	 26. advWid: 1139, LSdBear: 97
+	 27. advWid: 1139, LSdBear: 83
+	 28. advWid: 1139, LSdBear: 85
+	 29. advWid:  569, LSdBear: 185
+	 30. advWid:  569, LSdBear: 170
+	 31. advWid: 1196, LSdBear: 112
+	 32. advWid: 1196, LSdBear: 114
+	 33. advWid: 1196, LSdBear: 112
+	 34. advWid: 1139, LSdBear: 90
+	 35. advWid: 2079, LSdBear: 111
+	 36. advWid: 1366, LSdBear: -3
+	 37. advWid: 1366, LSdBear: 150
+	 38. advWid: 1479, LSdBear: 102
+	 39. advWid: 1479, LSdBear: 158
+	 40. advWid: 1366, LSdBear: 162
+	 41. advWid: 1251, LSdBear: 168
+	 42. advWid: 1593, LSdBear: 109
+	 43. advWid: 1479, LSdBear: 164
+	 44. advWid:  569, LSdBear: 191
+	 45. advWid: 1024, LSdBear: 55
+	 46. advWid: 1366, LSdBear: 150
+	 47. advWid: 1139, LSdBear: 150
+	 48. advWid: 1706, LSdBear: 152
+	 49. advWid: 1479, LSdBear: 156
+	 50. advWid: 1593, LSdBear: 99
+	 51. advWid: 1366, LSdBear: 158
+	 52. advWid: 1593, LSdBear: 88
+	 53. advWid: 1479, LSdBear: 161
+	 54. advWid: 1366, LSdBear: 92
+	 55. advWid: 1251, LSdBear: 48
+	 56. advWid: 1479, LSdBear: 161
+	 57. advWid: 1366, LSdBear: 9
+	 58. advWid: 1933, LSdBear: 25
+	 59. advWid: 1366, LSdBear: 9
+	 60. advWid: 1366, LSdBear: 6
+	 61. advWid: 1251, LSdBear: 41
+	 62. advWid:  569, LSdBear: 139
+	 63. advWid:  569, LSdBear: 0
+	 64. advWid:  569, LSdBear: 39
+	 65. advWid:  961, LSdBear: 54
+	 66. advWid: 1139, LSdBear: -31
+	 67. advWid:  682, LSdBear: 89
+	 68. advWid: 1139, LSdBear: 74
+	 69. advWid: 1139, LSdBear: 134
+	 70. advWid: 1024, LSdBear: 80
+	 71. advWid: 1139, LSdBear: 70
+	 72. advWid: 1139, LSdBear: 75
+	 73. advWid:  569, LSdBear: 19
+	 74. advWid: 1139, LSdBear: 66
+	 75. advWid: 1139, LSdBear: 135
+	 76. advWid:  455, LSdBear: 136
+	 77. advWid:  455, LSdBear: -94
+	 78. advWid: 1024, LSdBear: 136
+	 79. advWid:  455, LSdBear: 131
+	 80. advWid: 1706, LSdBear: 135
+	 81. advWid: 1139, LSdBear: 135
+	 82. advWid: 1139, LSdBear: 68
+	 83. advWid: 1139, LSdBear: 135
+	 84. advWid: 1139, LSdBear: 72
+	 85. advWid:  682, LSdBear: 133
+	 86. advWid: 1024, LSdBear: 63
+	 87. advWid:  569, LSdBear: 36
+	 88. advWid: 1139, LSdBear: 131
+	 89. advWid: 1024, LSdBear: 26
+	 90. advWid: 1479, LSdBear: 6
+	 91. advWid: 1024, LSdBear: 15
+	 92. advWid: 1024, LSdBear: 33
+	 93. advWid: 1024, LSdBear: 40
+	 94. advWid:  684, LSdBear: 57
+	 95. advWid:  532, LSdBear: 188
+	 96. advWid:  684, LSdBear: 47
+	 97. advWid: 1196, LSdBear: 87
+	 98. advWid: 1366, LSdBear: -3
+	 99. advWid: 1366, LSdBear: -3
+	100. advWid: 1479, LSdBear: 104
+	101. advWid: 1366, LSdBear: 162
+	102. advWid: 1479, LSdBear: 156
+	103. advWid: 1593, LSdBear: 99
+	104. advWid: 1479, LSdBear: 161
+	105. advWid: 1139, LSdBear: 74
+	106. advWid: 1139, LSdBear: 74
+	107. advWid: 1139, LSdBear: 74
+	108. advWid: 1139, LSdBear: 74
+	109. advWid: 1139, LSdBear: 74
+	110. advWid: 1139, LSdBear: 74
+	111. advWid: 1024, LSdBear: 80
+	112. advWid: 1139, LSdBear: 75
+	113. advWid: 1139, LSdBear: 75
+	114. advWid: 1139, LSdBear: 75
+	115. advWid: 1139, LSdBear: 75
+	116. advWid:  569, LSdBear: 189
+	117. advWid:  569, LSdBear: 35
+	118. advWid:  569, LSdBear: -27
+	119. advWid:  569, LSdBear: 9
+	120. advWid: 1139, LSdBear: 135
+	121. advWid: 1139, LSdBear: 68
+	122. advWid: 1139, LSdBear: 68
+	123. advWid: 1139, LSdBear: 68
+	124. advWid: 1139, LSdBear: 68
+	125. advWid: 1139, LSdBear: 68
+	126. advWid: 1139, LSdBear: 131
+	127. advWid: 1139, LSdBear: 131
+	128. advWid: 1139, LSdBear: 131
+	129. advWid: 1139, LSdBear: 131
+	130. advWid: 1139, LSdBear: 73
+	131. advWid:  819, LSdBear: 128
+	132. advWid: 1139, LSdBear: 107
+	133. advWid: 1139, LSdBear: 27
+	134. advWid: 1139, LSdBear: 81
+	135. advWid:  717, LSdBear: 109
+	136. advWid: 1100, LSdBear: 1
+	137. advWid: 1251, LSdBear: 153
+	138. advWid: 1509, LSdBear: 3
+	139. advWid: 1509, LSdBear: 3
+	140. advWid: 2048, LSdBear: 225
+	141. advWid:  682, LSdBear: 222
+	142. advWid:  682, LSdBear: 61
+	143. advWid: 1124, LSdBear: 78
+	144. advWid: 2048, LSdBear: 1
+	145. advWid: 1593, LSdBear: 83
+	146. advWid: 1460, LSdBear: 154
+	147. advWid: 1124, LSdBear: 78
+	148. advWid: 1124, LSdBear: 77
+	149. advWid: 1124, LSdBear: 77
+	150. advWid: 1139, LSdBear: -3
+	151. advWid: 1180, LSdBear: 160
+	152. advWid: 1012, LSdBear: 56
+	153. advWid: 1460, LSdBear: 122
+	154. advWid: 1686, LSdBear: 161
+	155. advWid: 1124, LSdBear: 0
+	156. advWid:  561, LSdBear: 0
+	157. advWid:  758, LSdBear: 47
+	158. advWid:  748, LSdBear: 45
+	159. advWid: 1573, LSdBear: 127
+	160. advWid: 1821, LSdBear: 68
+	161. advWid: 1251, LSdBear: 129
+	162. advWid: 1251, LSdBear: 158
+	163. advWid:  682, LSdBear: 232
+	164. advWid: 1196, LSdBear: 114
+	165. advWid: 1124, LSdBear: 84
+	166. advWid: 1139, LSdBear: 46
+	167. advWid: 1124, LSdBear: 51
+	168. advWid: 1253, LSdBear: 26
+	169. advWid: 1139, LSdBear: 134
+	170. advWid: 1139, LSdBear: 140
+	171. advWid: 2048, LSdBear: 239
+	172. advWid: 1366, LSdBear: -3
+	173. advWid: 1366, LSdBear: -3
+	174. advWid: 1593, LSdBear: 99
+	175. advWid: 2048, LSdBear: 129
+	176. advWid: 1933, LSdBear: 82
+	177. advWid: 1139, LSdBear: -4
+	178. advWid: 2048, LSdBear: 0
+	179. advWid:  682, LSdBear: 83
+	180. advWid:  682, LSdBear: 71
+	181. advWid:  455, LSdBear: 128
+	182. advWid:  455, LSdBear: 108
+	183. advWid: 1124, LSdBear: 78
+	184. advWid: 1012, LSdBear: 47
+	185. advWid: 1024, LSdBear: 33
+	186. advWid: 1366, LSdBear: 6
+	187. advWid:  342, LSdBear: -455
+	188. advWid: 1139, LSdBear: -28
+	189. advWid:  682, LSdBear: 92
+	190. advWid:  682, LSdBear: 92
+	191. advWid: 1024, LSdBear: 23
+	192. advWid: 1024, LSdBear: 23
+	193. advWid: 1139, LSdBear: 73
+	194. advWid:  569, LSdBear: 185
+	195. advWid:  455, LSdBear: 108
+	196. advWid:  682, LSdBear: 71
+	197. advWid: 2048, LSdBear: 37
+	198. advWid: 1366, LSdBear: -3
+	199. advWid: 1366, LSdBear: 162
+	200. advWid: 1366, LSdBear: -3
+	201. advWid: 1366, LSdBear: 162
+	202. advWid: 1366, LSdBear: 162
+	203. advWid:  569, LSdBear: 141
+	204. advWid:  569, LSdBear: -32
+	205. advWid:  569, LSdBear: 4
+	206. advWid:  569, LSdBear: 21
+	207. advWid: 1593, LSdBear: 99
+	208. advWid: 1593, LSdBear: 99
+	209. advWid: 1593, LSdBear: 99
+	210. advWid: 1479, LSdBear: 161
+	211. advWid: 1479, LSdBear: 161
+	212. advWid: 1479, LSdBear: 161
+	213. advWid:  569, LSdBear: 198
+	214. advWid:  682, LSdBear: 25
+	215. advWid:  682, LSdBear: 6
+	216. advWid:  682, LSdBear: 29
+	217. advWid:  682, LSdBear: 46
+	218. advWid:  682, LSdBear: 229
+	219. advWid:  682, LSdBear: 162
+	220. advWid:  682, LSdBear: 107
+	221. advWid:  682, LSdBear: 58
+	222. advWid:  682, LSdBear: 183
+	223. advWid:  682, LSdBear: 40
+	224. advWid: 1139, LSdBear: 0
+	225. advWid:  455, LSdBear: 3
+	226. advWid: 1366, LSdBear: 92
+	227. advWid: 1024, LSdBear: 63
+	228. advWid: 1251, LSdBear: 41
+	229. advWid: 1024, LSdBear: 40
+	230. advWid:  532, LSdBear: 188
+	231. advWid: 1479, LSdBear: -3
+	232. advWid: 1139, LSdBear: 73
+	233. advWid: 1366, LSdBear: 6
+	234. advWid: 1024, LSdBear: 33
+	235. advWid: 1366, LSdBear: 158
+	236. advWid: 1139, LSdBear: 135
+	237. advWid: 1196, LSdBear: 114
+	238. advWid: 1196, LSdBear: 161
+	239. advWid:  682, LSdBear: 107
+	240. advWid:  682, LSdBear: 25
+	241. advWid:  682, LSdBear: 33
+	242. advWid: 1708, LSdBear: 107
+	243. advWid: 1708, LSdBear: 107
+	244. advWid: 1708, LSdBear: 33
+	245. advWid: 1139, LSdBear: 0
+	246. advWid: 1593, LSdBear: 109
+	247. advWid: 1139, LSdBear: 66
+	248. advWid:  569, LSdBear: 177
+	249. advWid: 1366, LSdBear: 92
+	250. advWid: 1024, LSdBear: 63
+	251. advWid: 1479, LSdBear: 102
+	252. advWid: 1024, LSdBear: 80
+	253. advWid: 1479, LSdBear: 102
+	254. advWid: 1024, LSdBear: 80
+	255. advWid: 1139, LSdBear: 70
+	256. advWid: 1131, LSdBear: -31
+	257. advWid:  682, LSdBear: 497
+	258. advWid: 1366, LSdBear: -3
+	259. advWid: 1139, LSdBear: 74
+	260. advWid: 1366, LSdBear: -3
+	261. advWid: 1139, LSdBear: 74
+	262. advWid: 1479, LSdBear: 158
+	263. advWid: 1259, LSdBear: 71
+	264. advWid: 1479, LSdBear: -3
+	265. advWid: 1366, LSdBear: 162
+	266. advWid: 1139, LSdBear: 75
+	267. advWid: 1366, LSdBear: 162
+	268. advWid: 1139, LSdBear: 75
+	269. advWid: 1139, LSdBear: 150
+	270. advWid:  455, LSdBear: 66
+	271. advWid: 1139, LSdBear: 150
+	272. advWid:  597, LSdBear: 136
+	273. advWid: 1139, LSdBear: 154
+	274. advWid:  684, LSdBear: 131
+	275. advWid: 1479, LSdBear: 156
+	276. advWid: 1139, LSdBear: 135
+	277. advWid: 1479, LSdBear: 156
+	278. advWid: 1139, LSdBear: 135
+	279. advWid: 1593, LSdBear: 99
+	280. advWid: 1139, LSdBear: 68
+	281. advWid: 1479, LSdBear: 161
+	282. advWid:  682, LSdBear: 133
+	283. advWid: 1479, LSdBear: 161
+	284. advWid:  682, LSdBear: 60
+	285. advWid: 1366, LSdBear: 92
+	286. advWid: 1024, LSdBear: 63
+	287. advWid: 1251, LSdBear: 48
+	288. advWid:  569, LSdBear: 36
+	289. advWid: 1251, LSdBear: 48
+	290. advWid:  768, LSdBear: 35
+	291. advWid: 1479, LSdBear: 161
+	292. advWid: 1139, LSdBear: 131
+	293. advWid: 1479, LSdBear: 161
+	294. advWid: 1139, LSdBear: 131
+	295. advWid: 1251, LSdBear: 41
+	296. advWid: 1024, LSdBear: 40
+	297. advWid: 1251, LSdBear: 41
+	298. advWid: 1024, LSdBear: 40
+	299. advWid: 1128, LSdBear: 164
+	300. advWid: 1593, LSdBear: 96
+	301. advWid: 1634, LSdBear: 85
+	302. advWid: 1184, LSdBear: 72
+	303. advWid: 1140, LSdBear: 72
+	304. advWid:  913, LSdBear: 98
+	305. advWid: 1264, LSdBear: 68
+	306. advWid:  809, LSdBear: 46
+	307. advWid: 1328, LSdBear: 72
+	308. advWid: 1131, LSdBear: -31
+	309. advWid: 1024, LSdBear: 176
+	310. advWid:  747, LSdBear: 82
+	311. advWid: 2240, LSdBear: 51
+	312. advWid: 2048, LSdBear: 79
+	313. advWid: 1024, LSdBear: 153
+	314. advWid: 2048, LSdBear: 79
+	315. advWid: 1024, LSdBear: 153
+	316. advWid: 2048, LSdBear: 79
+	317. advWid: 1024, LSdBear: 152
+	318. advWid: 1024, LSdBear: 152
+	319. advWid: 2005, LSdBear: 362
+	320. advWid: 1472, LSdBear: 158
+	321. advWid: 1195, LSdBear: 114
+	322. advWid: 1237, LSdBear: 157
+	323. advWid: 1196, LSdBear: 113
+	324. advWid: 1237, LSdBear: 546
+	325. advWid: 1237, LSdBear: 261
+	326. advWid: 1451, LSdBear: -23
+	327. advWid: 1280, LSdBear: 457
+	328. advWid: 1451, LSdBear: 638
+	329. advWid: 1451, LSdBear: -23
+	330. advWid: 1451, LSdBear: 638
+	331. advWid: 1451, LSdBear: -23
+	332. advWid: 1451, LSdBear: 638
+	333. advWid: 1451, LSdBear: -23
+	334. advWid: 1451, LSdBear: -23
+	335. advWid: 1451, LSdBear: -23
+	336. advWid: 1451, LSdBear: -23
+	337. advWid: 1451, LSdBear: -23
+	338. advWid: 1451, LSdBear: 448
+	339. advWid: 1451, LSdBear: 638
+	340. advWid: 1451, LSdBear: 448
+	341. advWid: 1451, LSdBear: 448
+	342. advWid: 1451, LSdBear: -23
+	343. advWid: 1451, LSdBear: -23
+	344. advWid: 1451, LSdBear: -23
+	345. advWid: 1451, LSdBear: 638
+	346. advWid: 1451, LSdBear: 448
+	347. advWid: 1451, LSdBear: 448
+	348. advWid: 1451, LSdBear: -23
+	349. advWid: 1451, LSdBear: -23
+	350. advWid: 1451, LSdBear: -23
+	351. advWid: 1451, LSdBear: 638
+	352. advWid: 1451, LSdBear: 448
+	353. advWid: 1451, LSdBear: 448
+	354. advWid: 1451, LSdBear: -23
+	355. advWid: 1451, LSdBear: -23
+	356. advWid: 1451, LSdBear: -23
+	357. advWid: 1451, LSdBear: -23
+	358. advWid: 1451, LSdBear: -23
+	359. advWid: 1451, LSdBear: -23
+	360. advWid: 1451, LSdBear: -23
+	361. advWid: 1451, LSdBear: -23
+	362. advWid: 1451, LSdBear: -23
+	363. advWid: 1451, LSdBear: -23
+	364. advWid: 1451, LSdBear: -23
+	365. advWid: 1451, LSdBear: -23
+	366. advWid: 1451, LSdBear: -23
+	367. advWid: 1451, LSdBear: -23
+	368. advWid: 1451, LSdBear: -23
+	369. advWid: 1451, LSdBear: -23
+	370. advWid: 1451, LSdBear: 726
+	371. advWid: 1451, LSdBear: 102
+	372. advWid: 1451, LSdBear: -22
+	373. advWid: 1493, LSdBear: -1
+	374. advWid: 1237, LSdBear: 146
+	375. advWid: 2048, LSdBear: 0
+	376. advWid: 2027, LSdBear: 304
+	377. advWid: 2027, LSdBear: 288
+	378. advWid: 2027, LSdBear: 304
+	379. advWid: 2027, LSdBear: 288
+	380. advWid: 1237, LSdBear: 178
+	381. advWid: 1237, LSdBear: 128
+	382. advWid: 1237, LSdBear: 42
+	383. advWid: 2091, LSdBear: 408
+	384. advWid: 2155, LSdBear: 440
+	385. advWid: 1877, LSdBear: 16
+	386. advWid: 1536, LSdBear: 244
+	387. advWid: 1536, LSdBear: 111
+	388. advWid: 1088, LSdBear: 58
+	389. advWid: 1344, LSdBear: 55
+	390. advWid: 1216, LSdBear: 63
+	391. advWid: 1045, LSdBear: 64
+	392. advWid: 1024, LSdBear: 37
+	393. advWid: 1536, LSdBear: 85
+	394. advWid: 1505, LSdBear: 191
+	395. advWid:  909, LSdBear: 137
+	396. advWid: 1237, LSdBear: -39
+	397. advWid:  384, LSdBear: 128
+	398. advWid:  725, LSdBear: 134
+	399. advWid: 1813, LSdBear: 97
+	400. advWid:  662, LSdBear: 15
+	401. advWid: 1237, LSdBear: 146
+	402. advWid:  726, LSdBear: 131
+	403. advWid:  726, LSdBear: 131
+	404. advWid: 1237, LSdBear: 178
+	405. advWid:  726, LSdBear: 112
+	406. advWid: 1366, LSdBear: -3
+	407. advWid: 1139, LSdBear: 74
+	408. advWid: 1479, LSdBear: 102
+	409. advWid: 1024, LSdBear: 80
+	410. advWid: 1479, LSdBear: 102
+	411. advWid: 1024, LSdBear: 80
+	412. advWid: 1366, LSdBear: 162
+	413. advWid: 1139, LSdBear: 75
+	414. advWid: 1366, LSdBear: 162
+	415. advWid: 1139, LSdBear: 75
+	416. advWid: 1366, LSdBear: 162
+	417. advWid: 1139, LSdBear: 75
+	418. advWid: 1593, LSdBear: 109
+	419. advWid: 1139, LSdBear: 66
+	420. advWid: 1593, LSdBear: 109
+	421. advWid: 1139, LSdBear: 66
+	422. advWid: 1593, LSdBear: 109
+	423. advWid: 1139, LSdBear: 66
+	424. advWid: 1479, LSdBear: 164
+	425. advWid: 1139, LSdBear: 135
+	426. advWid: 1479, LSdBear: 31
+	427. advWid: 1139, LSdBear: 6
+	428. advWid:  569, LSdBear: -50
+	429. advWid:  569, LSdBear: -50
+	430. advWid:  569, LSdBear: -28
+	431. advWid:  569, LSdBear: -28
+	432. advWid:  569, LSdBear: -10
+	433. advWid:  569, LSdBear: -11
+	434. advWid:  569, LSdBear: 163
+	435. advWid:  455, LSdBear: 102
+	436. advWid: 1024, LSdBear: 55
+	437. advWid:  455, LSdBear: -94
+	438. advWid: 1366, LSdBear: 150
+	439. advWid: 1024, LSdBear: 136
+	440. advWid: 1024, LSdBear: 134
+	441. advWid: 1139, LSdBear: 150
+	442. advWid:  455, LSdBear: -6
+	443. advWid: 1479, LSdBear: 156
+	444. advWid: 1139, LSdBear: 135
+	445. advWid: 1481, LSdBear: 165
+	446. advWid: 1139, LSdBear: 139
+	447. advWid: 1593, LSdBear: 99
+	448. advWid: 1139, LSdBear: 68
+	449. advWid: 1593, LSdBear: 99
+	450. advWid: 1139, LSdBear: 68
+	451. advWid: 1479, LSdBear: 161
+	452. advWid:  682, LSdBear: 107
+	453. advWid: 1366, LSdBear: 92
+	454. advWid: 1024, LSdBear: 63
+	455. advWid: 1251, LSdBear: 48
+	456. advWid:  569, LSdBear: 12
+	457. advWid: 1479, LSdBear: 161
+	458. advWid: 1139, LSdBear: 131
+	459. advWid: 1479, LSdBear: 161
+	460. advWid: 1139, LSdBear: 131
+	461. advWid: 1479, LSdBear: 161
+	462. advWid: 1139, LSdBear: 131
+	463. advWid: 1479, LSdBear: 161
+	464. advWid: 1139, LSdBear: 131
+	465. advWid: 1933, LSdBear: 25
+	466. advWid: 1479, LSdBear: 6
+	467. advWid: 1366, LSdBear: 6
+	468. advWid: 1024, LSdBear: 33
+	469. advWid:  455, LSdBear: 137
+	470. advWid: 1366, LSdBear: -3
+	471. advWid: 1139, LSdBear: 74
+	472. advWid: 2048, LSdBear: 1
+	473. advWid: 1821, LSdBear: 68
+	474. advWid: 1593, LSdBear: 83
+	475. advWid: 1251, LSdBear: 129
+	476. advWid:  569, LSdBear: 185
+	477. advWid: 1933, LSdBear: 25
+	478. advWid: 1479, LSdBear: 6
+	479. advWid: 1933, LSdBear: 25
+	480. advWid: 1479, LSdBear: 6
+	481. advWid: 1933, LSdBear: 25
+	482. advWid: 1479, LSdBear: 6
+	483. advWid: 1366, LSdBear: 6
+	484. advWid: 1024, LSdBear: 33
+	485. advWid:  455, LSdBear: 138
+	486. advWid:  682, LSdBear: -31
+	487. advWid: 1139, LSdBear: 27
+	488. advWid: 1229, LSdBear: 90
+	489. advWid: 1708, LSdBear: 107
+	490. advWid: 1708, LSdBear: 34
+	491. advWid: 1708, LSdBear: 34
+	492. advWid: 1708, LSdBear: 74
+	493. advWid:  682, LSdBear: 226
+	494. advWid:  682, LSdBear: 107
+	495. advWid:  682, LSdBear: 222
+	496. advWid:  682, LSdBear: -22
+	497. advWid: 1367, LSdBear: -1
+	498. advWid: 1606, LSdBear: -89
+	499. advWid: 1716, LSdBear: -88
+	500. advWid:  786, LSdBear: -88
+	501. advWid: 1586, LSdBear: -89
+	502. advWid: 1752, LSdBear: -89
+	503. advWid: 1541, LSdBear: -89
+	504. advWid:  455, LSdBear: -136
+	505. advWid: 1366, LSdBear: -3
+	506. advWid: 1366, LSdBear: 150
+	507. advWid: 1368, LSdBear: -2
+	508. advWid: 1366, LSdBear: 162
+	509. advWid: 1251, LSdBear: 41
+	510. advWid: 1479, LSdBear: 164
+	511. advWid:  569, LSdBear: 191
+	512. advWid: 1366, LSdBear: 150
+	513. advWid: 1368, LSdBear: 11
+	514. advWid: 1706, LSdBear: 152
+	515. advWid: 1479, LSdBear: 156
+	516. advWid: 1331, LSdBear: 109
+	517. advWid: 1593, LSdBear: 99
+	518. advWid: 1479, LSdBear: 164
+	519. advWid: 1366, LSdBear: 158
+	520. advWid: 1266, LSdBear: 148
+	521. advWid: 1251, LSdBear: 48
+	522. advWid: 1366, LSdBear: 6
+	523. advWid: 1366, LSdBear: 9
+	524. advWid: 1711, LSdBear: 127
+	525. advWid: 1531, LSdBear: 97
+	526. advWid:  569, LSdBear: 4
+	527. advWid: 1366, LSdBear: 6
+	528. advWid: 1184, LSdBear: 72
+	529. advWid:  913, LSdBear: 98
+	530. advWid: 1139, LSdBear: 139
+	531. advWid:  455, LSdBear: 107
+	532. advWid: 1120, LSdBear: 136
+	533. advWid: 1178, LSdBear: 140
+	534. advWid: 1024, LSdBear: 25
+	535. advWid:  903, LSdBear: 72
+	536. advWid: 1139, LSdBear: 139
+	537. advWid: 1139, LSdBear: 92
+	538. advWid:  455, LSdBear: 137
+	539. advWid: 1024, LSdBear: 134
+	540. advWid: 1024, LSdBear: 24
+	541. advWid: 1180, LSdBear: 160
+	542. advWid: 1024, LSdBear: 26
+	543. advWid:  917, LSdBear: 92
+	544. advWid: 1139, LSdBear: 68
+	545. advWid: 1165, LSdBear: 131
+	546. advWid:  987, LSdBear: 86
+	547. advWid: 1120, LSdBear: 136
+	548. advWid: 1075, LSdBear: 17
+	549. advWid: 1460, LSdBear: 122
+	550. advWid: 1599, LSdBear: 87
+	551. advWid:  455, LSdBear: -55
+	552. advWid: 1120, LSdBear: 136
+	553. advWid: 1139, LSdBear: 72
+	554. advWid: 1120, LSdBear: 136
+	555. advWid: 1599, LSdBear: 87
+	556. advWid: 1367, LSdBear: 162
+	557. advWid: 1771, LSdBear: 50
+	558. advWid: 1109, LSdBear: 161
+	559. advWid: 1472, LSdBear: 100
+	560. advWid: 1366, LSdBear: 92
+	561. advWid:  569, LSdBear: 191
+	562. advWid:  569, LSdBear: 4
+	563. advWid: 1024, LSdBear: 55
+	564. advWid: 2165, LSdBear: 13
+	565. advWid: 2069, LSdBear: 164
+	566. advWid: 1749, LSdBear: 49
+	567. advWid: 1193, LSdBear: 161
+	568. advWid: 1301, LSdBear: 10
+	569. advWid: 1472, LSdBear: 160
+	570. advWid: 1366, LSdBear: -3
+	571. advWid: 1344, LSdBear: 167
+	572. advWid: 1366, LSdBear: 150
+	573. advWid: 1109, LSdBear: 161
+	574. advWid: 1387, LSdBear: 0
+	575. advWid: 1366, LSdBear: 162
+	576. advWid: 1891, LSdBear: 7
+	577. advWid: 1237, LSdBear: 78
+	578. advWid: 1472, LSdBear: 161
+	579. advWid: 1472, LSdBear: 161
+	580. advWid: 1193, LSdBear: 161
+	581. advWid: 1344, LSdBear: 18
+	582. advWid: 1706, LSdBear: 152
+	583. advWid: 1479, LSdBear: 164
+	584. advWid: 1593, LSdBear: 99
+	585. advWid: 1472, LSdBear: 160
+	586. advWid: 1366, LSdBear: 158
+	587. advWid: 1479, LSdBear: 102
+	588. advWid: 1251, LSdBear: 48
+	589. advWid: 1301, LSdBear: 10
+	590. advWid: 1557, LSdBear: 82
+	591. advWid: 1366, LSdBear: 9
+	592. advWid: 1515, LSdBear: 159
+	593. advWid: 1365, LSdBear: 87
+	594. advWid: 1877, LSdBear: 161
+	595. advWid: 1920, LSdBear: 161
+	596. advWid: 1621, LSdBear: 0
+	597. advWid: 1813, LSdBear: 168
+	598. advWid: 1344, LSdBear: 165
+	599. advWid: 1472, LSdBear: 85
+	600. advWid: 2069, LSdBear: 164
+	601. advWid: 1479, LSdBear: 26
+	602. advWid: 1139, LSdBear: 74
+	603. advWid: 1173, LSdBear: 91
+	604. advWid: 1088, LSdBear: 136
+	605. advWid:  747, LSdBear: 136
+	606. advWid: 1195, LSdBear: 0
+	607. advWid: 1139, LSdBear: 75
+	608. advWid: 1370, LSdBear: -5
+	609. advWid:  939, LSdBear: 50
+	610. advWid: 1144, LSdBear: 135
+	611. advWid: 1144, LSdBear: 135
+	612. advWid:  896, LSdBear: 134
+	613. advWid: 1195, LSdBear: 24
+	614. advWid: 1408, LSdBear: 140
+	615. advWid: 1131, LSdBear: 136
+	616. advWid: 1139, LSdBear: 68
+	617. advWid: 1109, LSdBear: 136
+	618. advWid: 1139, LSdBear: 135
+	619. advWid: 1024, LSdBear: 80
+	620. advWid:  938, LSdBear: 38
+	621. advWid: 1024, LSdBear: 33
+	622. advWid: 1685, LSdBear: 75
+	623. advWid: 1024, LSdBear: 15
+	624. advWid: 1173, LSdBear: 138
+	625. advWid: 1067, LSdBear: 69
+	626. advWid: 1643, LSdBear: 141
+	627. advWid: 1685, LSdBear: 141
+	628. advWid: 1280, LSdBear: 40
+	629. advWid: 1472, LSdBear: 139
+	630. advWid: 1067, LSdBear: 132
+	631. advWid: 1045, LSdBear: 48
+	632. advWid: 1536, LSdBear: 137
+	633. advWid: 1109, LSdBear: 31
+	634. advWid: 1139, LSdBear: 75
+	635. advWid: 1139, LSdBear: 0
+	636. advWid:  747, LSdBear: 137
+	637. advWid: 1045, LSdBear: 75
+	638. advWid: 1024, LSdBear: 63
+	639. advWid:  455, LSdBear: 136
+	640. advWid:  569, LSdBear: 9
+	641. advWid:  455, LSdBear: -94
+	642. advWid: 1856, LSdBear: 19
+	643. advWid: 1664, LSdBear: 131
+	644. advWid: 1139, LSdBear: 0
+	645. advWid:  896, LSdBear: 134
+	646. advWid: 1024, LSdBear: 33
+	647. advWid: 1131, LSdBear: 136
+	648. advWid: 1001, LSdBear: 161
+	649. advWid:  842, LSdBear: 136
+	650. advWid: 2048, LSdBear: 65
+	651. advWid: 2197, LSdBear: 160
+	652. advWid: 1413, LSdBear: 45
+	653. advWid:  682, LSdBear: 257
+	654. advWid:  682, LSdBear: 30
+	655. advWid:  682, LSdBear: 49
+	656. advWid:  682, LSdBear: 49
+	657. advWid:  682, LSdBear: 257
+	658. advWid:  682, LSdBear: 126
+	659. advWid:  682, LSdBear: 126
+	660. advWid:  682, LSdBear: 140
+	661. advWid:  682, LSdBear: 140
+	662. advWid:  682, LSdBear: 257
+	663. advWid:  682, LSdBear: 16
+	664. advWid:  682, LSdBear: 257
+	665. advWid:  682, LSdBear: 289
+	666. advWid:  784, LSdBear: 125
+	667. advWid:  682, LSdBear: 140
+	668. advWid:  563, LSdBear: 210
+	669. advWid:  682, LSdBear: 779
+	670. advWid:  682, LSdBear: -252
+	671. advWid:  569, LSdBear: 185
+	672. advWid: 1153, LSdBear: 105
+	673. advWid: 1110, LSdBear: 50
+	674. advWid:  817, LSdBear: 25
+	675. advWid: 1041, LSdBear: 45
+	676. advWid: 1233, LSdBear: 150
+	677. advWid:  505, LSdBear: 155
+	678. advWid:  783, LSdBear: 95
+	679. advWid: 1226, LSdBear: 155
+	680. advWid: 1208, LSdBear: 140
+	681. advWid:  505, LSdBear: 155
+	682. advWid: 1043, LSdBear: 40
+	683. advWid:  944, LSdBear: 80
+	684. advWid:  948, LSdBear: 60
+	685. advWid: 1226, LSdBear: 155
+	686. advWid: 1231, LSdBear: 80
+	687. advWid:  505, LSdBear: 155
+	688. advWid:  722, LSdBear: 60
+	689. advWid: 1176, LSdBear: 90
+	690. advWid: 1084, LSdBear: 25
+	691. advWid: 1160, LSdBear: 110
+	692. advWid: 1119, LSdBear: 115
+	693. advWid:  945, LSdBear: 25
+	694. advWid:  980, LSdBear: 10
+	695. advWid: 1126, LSdBear: 150
+	696. advWid: 1043, LSdBear: 40
+	697. advWid: 1422, LSdBear: 100
+	698. advWid: 1316, LSdBear: 40
+	699. advWid: 1010, LSdBear: 155
+	700. advWid: 1010, LSdBear: 155
+	701. advWid: 1010, LSdBear: 155
+	702. advWid:  483, LSdBear: 90
+	703. advWid:  854, LSdBear: 90
+	704. advWid: 1670, LSdBear: 155
+	705. advWid:  505, LSdBear: -84
+	706. advWid: 1043, LSdBear: 40
+	707. advWid: 1043, LSdBear: 40
+	708. advWid:  948, LSdBear: -169
+	709. advWid:  948, LSdBear: -169
+	710. advWid: 1096, LSdBear: 45
+	711. advWid: 1422, LSdBear: 100
+	712. advWid: 1422, LSdBear: 100
+	713. advWid: 1422, LSdBear: 100
+	714. advWid: 1422, LSdBear: 100
+	715. advWid: 1153, LSdBear: 105
+	716. advWid: 1153, LSdBear: 105
+	717. advWid: 1153, LSdBear: 105
+	718. advWid: 1110, LSdBear: 50
+	719. advWid:  817, LSdBear: 25
+	720. advWid: 1041, LSdBear: 45
+	721. advWid: 1233, LSdBear: 150
+	722. advWid:  587, LSdBear: 0
+	723. advWid:  842, LSdBear: 0
+	724. advWid: 1208, LSdBear: 140
+	725. advWid:  587, LSdBear: 0
+	726. advWid: 1043, LSdBear: 40
+	727. advWid:  944, LSdBear: 80
+	728. advWid:  948, LSdBear: 60
+	729. advWid: 1231, LSdBear: 80
+	730. advWid:  722, LSdBear: 60
+	731. advWid: 1176, LSdBear: 90
+	732. advWid: 1160, LSdBear: 110
+	733. advWid: 1119, LSdBear: 115
+	734. advWid:  980, LSdBear: 10
+	735. advWid: 1126, LSdBear: 150
+	736. advWid: 1043, LSdBear: 40
+	737. advWid: 1422, LSdBear: 100
+	738. advWid: 1316, LSdBear: 40
+	739. advWid:  505, LSdBear: 155
+	740. advWid: 1110, LSdBear: 50
+	741. advWid:  944, LSdBear: 80
+	742. advWid: 1119, LSdBear: 115
+	743. advWid: 1179, LSdBear: 60
+	744. advWid:    0, LSdBear: -36
+	745. advWid:    0, LSdBear: -219
+	746. advWid:    0, LSdBear: -36
+	747. advWid:    0, LSdBear: -431
+	748. advWid:  653, LSdBear: 171
+	749. advWid:  653, LSdBear: 160
+	750. advWid:  730, LSdBear: 67
+	751. advWid:  845, LSdBear: 121
+	752. advWid:  424, LSdBear: 0
+	753. advWid:  412, LSdBear: 70
+	754. advWid:  485, LSdBear: 70
+	755. advWid:  412, LSdBear: 70
+	756. advWid:  412, LSdBear: 70
+	757. advWid:  429, LSdBear: 72
+	758. advWid:  412, LSdBear: 70
+	759. advWid:  433, LSdBear: 70
+	760. advWid:  337, LSdBear: 70
+	761. advWid: 1077, LSdBear: 380
+	762. advWid: 1077, LSdBear: 302
+	763. advWid: 1077, LSdBear: 183
+	764. advWid: 1077, LSdBear: 129
+	765. advWid: 1077, LSdBear: 300
+	766. advWid: 1077, LSdBear: 190
+	767. advWid: 1077, LSdBear: 175
+	768. advWid: 1077, LSdBear: 129
+	769. advWid: 1077, LSdBear: 154
+	770. advWid: 1077, LSdBear: 219
+	771. advWid: 1077, LSdBear: 133
+	772. advWid:  653, LSdBear: 193
+	773. advWid: 1077, LSdBear: 179
+	774. advWid: 1536, LSdBear: 256
+	775. advWid: 1536, LSdBear: 256
+	776. advWid:  578, LSdBear: 54
+	777. advWid: 1536, LSdBear: 256
+	778. advWid: 1077, LSdBear: 158
+	779. advWid: 1077, LSdBear: 152
+	780. advWid: 1077, LSdBear: 203
+	781. advWid: 1536, LSdBear: 256
+	782. advWid: 1536, LSdBear: 256
+	783. advWid: 1536, LSdBear: 256
+	784. advWid: 1536, LSdBear: 256
+	785. advWid: 1536, LSdBear: 256
+	786. advWid:  433, LSdBear: 70
+	787. advWid: 1536, LSdBear: 256
+	788. advWid: 1536, LSdBear: 256
+	789. advWid: 1536, LSdBear: 256
+	790. advWid: 1536, LSdBear: 256
+	791. advWid: 1536, LSdBear: 256
+	792. advWid: 1536, LSdBear: 256
+	793. advWid: 1536, LSdBear: 256
+	794. advWid: 1536, LSdBear: 256
+	795. advWid: 1307, LSdBear: 0
+	796. advWid: 1536, LSdBear: 256
+	797. advWid: 1536, LSdBear: 256
+	798. advWid: 1536, LSdBear: 256
+	799. advWid: 1461, LSdBear: 128
+	800. advWid: 1461, LSdBear: 128
+	801. advWid:  500, LSdBear: -3
+	802. advWid:  500, LSdBear: -3
+	803. advWid: 1536, LSdBear: 256
+	804. advWid: 1536, LSdBear: 256
+	805. advWid: 1536, LSdBear: 256
+	806. advWid: 1536, LSdBear: 256
+	807. advWid: 1153, LSdBear: 54
+	808. advWid: 1077, LSdBear: 54
+	809. advWid: 1085, LSdBear: 0
+	810. advWid: 1085, LSdBear: 0
+	811. advWid: 1001, LSdBear: 144
+	812. advWid: 1001, LSdBear: 144
+	813. advWid: 1663, LSdBear: 90
+	814. advWid: 1910, LSdBear: 90
+	815. advWid:  807, LSdBear: 0
+	816. advWid: 1054, LSdBear: 0
+	817. advWid: 1663, LSdBear: 90
+	818. advWid: 1910, LSdBear: 90
+	819. advWid:  807, LSdBear: 0
+	820. advWid: 1054, LSdBear: 0
+	821. advWid: 1307, LSdBear: 50
+	822. advWid: 1205, LSdBear: 106
+	823. advWid: 1536, LSdBear: 256
+	824. advWid: 1536, LSdBear: 256
+	825. advWid: 1536, LSdBear: 256
+	826. advWid: 1536, LSdBear: 256
+	827. advWid: 1536, LSdBear: 256
+	828. advWid: 1536, LSdBear: 256
+	829. advWid: 1536, LSdBear: 256
+	830. advWid: 1536, LSdBear: 256
+	831. advWid: 1536, LSdBear: 256
+	832. advWid: 1536, LSdBear: 256
+	833. advWid: 1536, LSdBear: 256
+	834. advWid: 1536, LSdBear: 256
+	835. advWid: 1536, LSdBear: 256
+	836. advWid: 1536, LSdBear: 256
+	837. advWid: 1536, LSdBear: 256
+	838. advWid: 1536, LSdBear: 256
+	839. advWid:  463, LSdBear: 48
+	840. advWid:  433, LSdBear: 70
+	841. advWid:  433, LSdBear: 70
+	842. advWid:  433, LSdBear: 64
+	843. advWid:  433, LSdBear: 70
+	844. advWid: 1536, LSdBear: 256
+	845. advWid: 1536, LSdBear: 256
+	846. advWid:    0, LSdBear: -36
+	847. advWid:    0, LSdBear: -431
+	848. advWid:    0, LSdBear: -234
+	849. advWid:    0, LSdBear: -234
+	850. advWid:    0, LSdBear: -234
+	851. advWid:    0, LSdBear: -234
+	852. advWid:    0, LSdBear: -234
+	853. advWid:    0, LSdBear: -234
+	854. advWid:    0, LSdBear: -234
+	855. advWid:    0, LSdBear: -234
+	856. advWid:    0, LSdBear: -234
+	857. advWid:    0, LSdBear: -36
+	858. advWid:    0, LSdBear: -234
+	859. advWid:    0, LSdBear: -36
+	860. advWid:    0, LSdBear: -224
+	861. advWid:    0, LSdBear: -36
+	862. advWid: 1139, LSdBear: 74
+	863. advWid: 2048, LSdBear: 0
+	864. advWid: 1536, LSdBear: 256
+	865. advWid: 1536, LSdBear: 256
+	866. advWid: 1536, LSdBear: 256
+	867. advWid: 1536, LSdBear: 256
+	868. advWid: 1536, LSdBear: 256
+	869. advWid: 1536, LSdBear: 256
+	870. advWid: 1536, LSdBear: 256
+	871. advWid: 1536, LSdBear: 256
+	872. advWid: 1536, LSdBear: 256
+	873. advWid: 1536, LSdBear: 256
+	874. advWid: 1536, LSdBear: 256
+	875. advWid: 1536, LSdBear: 256
+	876. advWid: 1536, LSdBear: 256
+	877. advWid: 1536, LSdBear: 256
+	878. advWid: 1536, LSdBear: 256
+	879. advWid: 1536, LSdBear: 256
+	880. advWid: 1536, LSdBear: 256
+	881. advWid: 1536, LSdBear: 256
+	882. advWid: 1536, LSdBear: 256
+	883. advWid: 1536, LSdBear: 256
+	884. advWid: 1536, LSdBear: 256
+	885. advWid: 1536, LSdBear: 256
+	886. advWid: 1536, LSdBear: 256
+	887. advWid: 1536, LSdBear: 256
+	888. advWid: 1536, LSdBear: 256
+	889. advWid: 1536, LSdBear: 256
+	890. advWid: 1536, LSdBear: 256
+	891. advWid: 1536, LSdBear: 256
+	892. advWid:  653, LSdBear: 127
+	893. advWid:  653, LSdBear: 93
+	894. advWid: 1536, LSdBear: 256
+	895. advWid: 1262, LSdBear: 21
+	896. advWid:  845, LSdBear: 121
+	897. advWid:  424, LSdBear: 14
+	898. advWid:  470, LSdBear: 34
+	899. advWid:  424, LSdBear: 86
+	900. advWid:  470, LSdBear: 86
+	901. advWid:  885, LSdBear: 120
+	902. advWid:  885, LSdBear: 120
+	903. advWid:  424, LSdBear: 45
+	904. advWid:  470, LSdBear: 89
+	905. advWid: 1307, LSdBear: 50
+	906. advWid: 1205, LSdBear: 106
+	907. advWid:  500, LSdBear: 0
+	908. advWid:  500, LSdBear: 0
+	909. advWid:  424, LSdBear: 147
+	910. advWid:  470, LSdBear: 89
+	911. advWid: 1461, LSdBear: 128
+	912. advWid: 1461, LSdBear: 128
+	913. advWid:  500, LSdBear: 0
+	914. advWid:  500, LSdBear: 0
+	915. advWid:  578, LSdBear: 0
+	916. advWid:  768, LSdBear: 61
+	917. advWid: 1461, LSdBear: 128
+	918. advWid: 1461, LSdBear: 128
+	919. advWid:  500, LSdBear: 0
+	920. advWid:  500, LSdBear: 0
+	921. advWid: 1461, LSdBear: 128
+	922. advWid: 1461, LSdBear: 128
+	923. advWid:  500, LSdBear: 0
+	924. advWid:  500, LSdBear: 0
+	925. advWid: 1153, LSdBear: 54
+	926. advWid: 1077, LSdBear: 54
+	927. advWid: 1085, LSdBear: 0
+	928. advWid: 1085, LSdBear: 0
+	929. advWid: 1153, LSdBear: 54
+	930. advWid: 1077, LSdBear: 54
+	931. advWid: 1085, LSdBear: 0
+	932. advWid: 1085, LSdBear: 0
+	933. advWid: 1153, LSdBear: 54
+	934. advWid: 1077, LSdBear: 54
+	935. advWid: 1085, LSdBear: 0
+	936. advWid: 1085, LSdBear: 0
+	937. advWid:  691, LSdBear: 165
+	938. advWid:  691, LSdBear: 165
+	939. advWid:  691, LSdBear: 165
+	940. advWid:  691, LSdBear: 165
+	941. advWid: 1001, LSdBear: 144
+	942. advWid: 1001, LSdBear: 144
+	943. advWid: 1001, LSdBear: 144
+	944. advWid: 1001, LSdBear: 144
+	945. advWid: 1682, LSdBear: 132
+	946. advWid: 1682, LSdBear: 132
+	947. advWid: 1087, LSdBear: 0
+	948. advWid: 1087, LSdBear: 0
+	949. advWid: 1682, LSdBear: 132
+	950. advWid: 1682, LSdBear: 132
+	951. advWid: 1087, LSdBear: 0
+	952. advWid: 1087, LSdBear: 0
+	953. advWid: 2249, LSdBear: 132
+	954. advWid: 2249, LSdBear: 132
+	955. advWid: 1733, LSdBear: 0
+	956. advWid: 1733, LSdBear: 0
+	957. advWid: 2249, LSdBear: 132
+	958. advWid: 2249, LSdBear: 132
+	959. advWid: 1733, LSdBear: 0
+	960. advWid: 1733, LSdBear: 0
+	961. advWid: 1191, LSdBear: 0
+	962. advWid: 1191, LSdBear: 0
+	963. advWid: 1191, LSdBear: 0
+	964. advWid: 1191, LSdBear: 0
+	965. advWid: 1191, LSdBear: 0
+	966. advWid: 1191, LSdBear: 0
+	967. advWid: 1191, LSdBear: 0
+	968. advWid: 1191, LSdBear: 0
+	969. advWid: 1114, LSdBear: 42
+	970. advWid:  922, LSdBear: 54
+	971. advWid: 1077, LSdBear: 0
+	972. advWid:  807, LSdBear: 0
+	973. advWid: 1114, LSdBear: 42
+	974. advWid:  922, LSdBear: 54
+	975. advWid: 1077, LSdBear: 0
+	976. advWid:  807, LSdBear: 0
+	977. advWid: 1615, LSdBear: 109
+	978. advWid: 1615, LSdBear: 109
+	979. advWid:  548, LSdBear: 0
+	980. advWid:  538, LSdBear: 0
+	981. advWid: 1191, LSdBear: 140
+	982. advWid: 1191, LSdBear: 140
+	983. advWid:  548, LSdBear: 0
+	984. advWid:  538, LSdBear: 0
+	985. advWid: 1231, LSdBear: 115
+	986. advWid: 1231, LSdBear: 115
+	987. advWid:  807, LSdBear: 0
+	988. advWid:  807, LSdBear: 0
+	989. advWid: 1037, LSdBear: 141
+	990. advWid: 1037, LSdBear: 141
+	991. advWid:  424, LSdBear: 0
+	992. advWid:  424, LSdBear: 0
+	993. advWid:  692, LSdBear: 105
+	994. advWid:  692, LSdBear: 105
+	995. advWid:  807, LSdBear: 0
+	996. advWid:  807, LSdBear: 0
+	997. advWid: 1077, LSdBear: 139
+	998. advWid: 1077, LSdBear: 139
+	999. advWid:  500, LSdBear: 0
+	1000. advWid:  500, LSdBear: 0
+	1001. advWid:  578, LSdBear: 54
+	1002. advWid:  768, LSdBear: 61
+	1003. advWid:  922, LSdBear: 0
+	1004. advWid:  807, LSdBear: 0
+	1005. advWid:  885, LSdBear: 120
+	1006. advWid:  885, LSdBear: 120
+	1007. advWid: 1307, LSdBear: 50
+	1008. advWid: 1205, LSdBear: 106
+	1009. advWid: 1307, LSdBear: 50
+	1010. advWid: 1205, LSdBear: 106
+	1011. advWid:  500, LSdBear: 0
+	1012. advWid:  500, LSdBear: 0
+	1013. advWid: 1114, LSdBear: 64
+	1014. advWid: 1230, LSdBear: 64
+	1015. advWid: 1114, LSdBear: 38
+	1016. advWid: 1230, LSdBear: 48
+	1017. advWid: 1114, LSdBear: 83
+	1018. advWid: 1230, LSdBear: 65
+	1019. advWid: 1114, LSdBear: 83
+	1020. advWid: 1230, LSdBear: 65
+	1021. advWid: 1536, LSdBear: 256
+	1022. advWid: 1536, LSdBear: 256
+	1023. advWid:  412, LSdBear: 70
+	1024. advWid:  412, LSdBear: 70
+	1025. advWid: 1536, LSdBear: 256
+	1026. advWid: 1536, LSdBear: 256
+	1027. advWid: 1536, LSdBear: 256
+	1028. advWid:  337, LSdBear: 70
+	1029. advWid:  433, LSdBear: 70
+	1030. advWid: 1536, LSdBear: 256
+	1031. advWid: 1536, LSdBear: 256
+	1032. advWid:  429, LSdBear: 72
+	1033. advWid:  485, LSdBear: 70
+	1034. advWid: 1536, LSdBear: 256
+	1035. advWid: 1536, LSdBear: 256
+	1036. advWid: 1536, LSdBear: 256
+	1037. advWid:  433, LSdBear: 70
+	1038. advWid:  433, LSdBear: 70
+	1039. advWid:  433, LSdBear: 70
+	1040. advWid:  433, LSdBear: 70
+	1041. advWid:  433, LSdBear: 64
+	1042. advWid:  463, LSdBear: 48
+	1043. advWid: 1536, LSdBear: 256
+	1044. advWid:  412, LSdBear: 70
+	1045. advWid:  412, LSdBear: 70
+	1046. advWid: 1536, LSdBear: 256
+	1047. advWid: 1536, LSdBear: 256
+	1048. advWid: 1536, LSdBear: 256
+	1049. advWid: 1536, LSdBear: 256
+	1050. advWid: 1536, LSdBear: 256
+	1051. advWid: 1536, LSdBear: 256
+	1052. advWid: 1536, LSdBear: 256
+	1053. advWid: 1536, LSdBear: 256
+	1054. advWid: 1536, LSdBear: 256
+	1055. advWid: 1536, LSdBear: 256
+	1056. advWid: 1536, LSdBear: 256
+	1057. advWid: 1536, LSdBear: 256
+	1058. advWid: 1536, LSdBear: 256
+	1059. advWid: 1536, LSdBear: 256
+	1060. advWid: 1536, LSdBear: 256
+	1061. advWid: 1536, LSdBear: 256
+	1062. advWid: 1536, LSdBear: 256
+	1063. advWid: 1536, LSdBear: 256
+	1064. advWid: 1536, LSdBear: 256
+	1065. advWid: 1536, LSdBear: 256
+	1066. advWid: 1536, LSdBear: 256
+	1067. advWid: 1536, LSdBear: 256
+	1068. advWid: 1536, LSdBear: 256
+	1069. advWid: 1536, LSdBear: 256
+	1070. advWid: 1536, LSdBear: 256
+	1071. advWid: 1536, LSdBear: 256
+	1072. advWid: 1536, LSdBear: 256
+	1073. advWid: 1536, LSdBear: 256
+	1074. advWid: 1536, LSdBear: 256
+	1075. advWid: 1536, LSdBear: 256
+	1076. advWid: 1536, LSdBear: 256
+	1077. advWid: 1536, LSdBear: 256
+	1078. advWid: 1536, LSdBear: 256
+	1079. advWid: 1536, LSdBear: 256
+	1080. advWid: 1536, LSdBear: 256
+	1081. advWid: 1536, LSdBear: 256
+	1082. advWid: 1536, LSdBear: 256
+	1083. advWid: 1536, LSdBear: 256
+	1084. advWid: 1536, LSdBear: 256
+	1085. advWid: 1536, LSdBear: 256
+	1086. advWid: 1536, LSdBear: 256
+	1087. advWid: 1536, LSdBear: 256
+	1088. advWid: 1536, LSdBear: 256
+	1089. advWid: 1536, LSdBear: 256
+	1090. advWid: 1536, LSdBear: 256
+	1091. advWid: 1536, LSdBear: 256
+	1092. advWid: 1536, LSdBear: 256
+	1093. advWid: 1536, LSdBear: 256
+	1094. advWid: 1536, LSdBear: 256
+	1095. advWid: 1536, LSdBear: 256
+	1096. advWid: 1536, LSdBear: 256
+	1097. advWid: 1536, LSdBear: 256
+	1098. advWid: 1536, LSdBear: 256
+	1099. advWid: 1536, LSdBear: 256
+	1100. advWid:  653, LSdBear: 202
+	1101. advWid:  653, LSdBear: 199
+	1102. advWid:  653, LSdBear: 198
+	1103. advWid: 1536, LSdBear: 256
+	1104. advWid: 1536, LSdBear: 256
+	1105. advWid: 1536, LSdBear: 256
+	1106. advWid: 1536, LSdBear: 256
+	1107. advWid: 1536, LSdBear: 256
+	1108. advWid: 1536, LSdBear: 256
+	1109. advWid: 1536, LSdBear: 256
+	1110. advWid: 1536, LSdBear: 256
+	1111. advWid: 1536, LSdBear: 256
+	1112. advWid: 1536, LSdBear: 256
+	1113. advWid: 1536, LSdBear: 256
+	1114. advWid: 1536, LSdBear: 256
+	1115. advWid: 1536, LSdBear: 256
+	1116. advWid: 1536, LSdBear: 256
+	1117. advWid: 1536, LSdBear: 256
+	1118. advWid: 1536, LSdBear: 256
+	1119. advWid: 1536, LSdBear: 256
+	1120. advWid: 1536, LSdBear: 256
+	1121. advWid: 1536, LSdBear: 256
+	1122. advWid: 1536, LSdBear: 256
+	1123. advWid: 1536, LSdBear: 256
+	1124. advWid: 1536, LSdBear: 256
+	1125. advWid: 1536, LSdBear: 256
+	1126. advWid: 1536, LSdBear: 256
+	1127. advWid:  256, LSdBear: 0
+	1128. advWid: 2048, LSdBear: 0
+	1129. advWid: 4096, LSdBear: 0
+	1130. advWid: 1756, LSdBear: 99
+	1131. advWid: 1343, LSdBear: 68
+	1132. advWid: 1749, LSdBear: 161
+	1133. advWid: 1371, LSdBear: 131
+	1134. advWid:    0, LSdBear: -548
+	1135. advWid:    0, LSdBear: -977
+	1136. advWid:    0, LSdBear: -858
+	1137. advWid:    0, LSdBear: -428
+	1138. advWid:    0, LSdBear: -809
+	1139. advWid:    0, LSdBear: -653
+	1140. advWid:    0, LSdBear: -471
+	1141. advWid:    0, LSdBear: -499
+	1142. advWid:    0, LSdBear: -751
+	1143. advWid:    0, LSdBear: -921
+	1144. advWid:    0, LSdBear: -611
+	1145. advWid:    0, LSdBear: -1035
+	1146. advWid:    0, LSdBear: -910
+	1147. advWid:    0, LSdBear: -299
+	1148. advWid:    0, LSdBear: -299
+	1149. advWid:    0, LSdBear: -254
+	1150. advWid: 1051, LSdBear: 160
+	1151. advWid: 1708, LSdBear: 107
+	1152. advWid: 1708, LSdBear: 25
+	1153. advWid:    0, LSdBear: -330
+	1154. advWid:    0, LSdBear: -653
+	1155. advWid:    0, LSdBear: -504
+	1156. advWid:    0, LSdBear: -858
+	1157. advWid:    0, LSdBear: -429
+	1158. advWid:    0, LSdBear: -751
+	1159. advWid:    0, LSdBear: -1080
+	1160. advWid:    0, LSdBear: -1292
+	1161. advWid:    0, LSdBear: -1361
+	1162. advWid:    0, LSdBear: -910
+	1163. advWid:    0, LSdBear: -1110
+	1164. advWid:    0, LSdBear: -1174
+	1165. advWid:    0, LSdBear: -783
+	1166. advWid:    0, LSdBear: -899
+	1167. advWid:    0, LSdBear: -1059
+	1168. advWid:    0, LSdBear: -831
+	1169. advWid:    0, LSdBear: -1128
+	1170. advWid:    0, LSdBear: -534
+	1171. advWid:    0, LSdBear: -380
+	1172. advWid:    0, LSdBear: -574
+	1173. advWid:    0, LSdBear: -783
+	1174. advWid:    0, LSdBear: -673
+	1175. advWid:    0, LSdBear: -394
+	1176. advWid:    0, LSdBear: -324
+	1177. advWid:    0, LSdBear: -789
+	1178. advWid:    0, LSdBear: -660
+	1179. advWid:    0, LSdBear: -680
+	1180. advWid:    0, LSdBear: -880
+	1181. advWid:    0, LSdBear: -747
+	1182. advWid:    0, LSdBear: -980
+	1183. advWid:    0, LSdBear: -1005
+	1184. advWid:    0, LSdBear: -1006
+	1185. advWid:    0, LSdBear: -1130
+	1186. advWid:    0, LSdBear: -1130
+	1187. advWid:  455, LSdBear: 136
+	1188. advWid: 1366, LSdBear: -3
+	1189. advWid: 1139, LSdBear: 74
+	1190. advWid: 1366, LSdBear: -3
+	1191. advWid: 1139, LSdBear: 74
+	1192. advWid: 1366, LSdBear: -3
+	1193. advWid: 1139, LSdBear: 74
+	1194. advWid: 1366, LSdBear: -3
+	1195. advWid: 1139, LSdBear: 74
+	1196. advWid: 1366, LSdBear: -3
+	1197. advWid: 1139, LSdBear: 74
+	1198. advWid: 1366, LSdBear: -3
+	1199. advWid: 1139, LSdBear: 74
+	1200. advWid: 1366, LSdBear: -3
+	1201. advWid: 1139, LSdBear: 74
+	1202. advWid: 1366, LSdBear: -3
+	1203. advWid: 1139, LSdBear: 74
+	1204. advWid: 1366, LSdBear: -3
+	1205. advWid: 1139, LSdBear: 74
+	1206. advWid: 1366, LSdBear: -3
+	1207. advWid: 1139, LSdBear: 74
+	1208. advWid: 1366, LSdBear: -3
+	1209. advWid: 1139, LSdBear: 74
+	1210. advWid: 1366, LSdBear: -3
+	1211. advWid: 1139, LSdBear: 74
+	1212. advWid: 1366, LSdBear: 162
+	1213. advWid: 1139, LSdBear: 75
+	1214. advWid: 1366, LSdBear: 162
+	1215. advWid: 1139, LSdBear: 75
+	1216. advWid: 1366, LSdBear: 162
+	1217. advWid: 1139, LSdBear: 75
+	1218. advWid: 1366, LSdBear: 162
+	1219. advWid: 1139, LSdBear: 75
+	1220. advWid: 1366, LSdBear: 162
+	1221. advWid: 1139, LSdBear: 75
+	1222. advWid: 1366, LSdBear: 162
+	1223. advWid: 1139, LSdBear: 75
+	1224. advWid: 1366, LSdBear: 162
+	1225. advWid: 1139, LSdBear: 75
+	1226. advWid: 1366, LSdBear: 162
+	1227. advWid: 1139, LSdBear: 75
+	1228. advWid:  569, LSdBear: 99
+	1229. advWid:  455, LSdBear: 31
+	1230. advWid:  569, LSdBear: 186
+	1231. advWid:  455, LSdBear: 124
+	1232. advWid: 1593, LSdBear: 99
+	1233. advWid: 1139, LSdBear: 68
+	1234. advWid: 1593, LSdBear: 99
+	1235. advWid: 1139, LSdBear: 68
+	1236. advWid: 1593, LSdBear: 99
+	1237. advWid: 1139, LSdBear: 68
+	1238. advWid: 1593, LSdBear: 99
+	1239. advWid: 1139, LSdBear: 68
+	1240. advWid: 1593, LSdBear: 99
+	1241. advWid: 1139, LSdBear: 68
+	1242. advWid: 1593, LSdBear: 99
+	1243. advWid: 1139, LSdBear: 68
+	1244. advWid: 1593, LSdBear: 99
+	1245. advWid: 1139, LSdBear: 68
+	1246. advWid: 1756, LSdBear: 99
+	1247. advWid: 1343, LSdBear: 68
+	1248. advWid: 1756, LSdBear: 99
+	1249. advWid: 1343, LSdBear: 68
+	1250. advWid: 1756, LSdBear: 99
+	1251. advWid: 1343, LSdBear: 68
+	1252. advWid: 1756, LSdBear: 99
+	1253. advWid: 1343, LSdBear: 68
+	1254. advWid: 1756, LSdBear: 99
+	1255. advWid: 1343, LSdBear: 68
+	1256. advWid: 1479, LSdBear: 161
+	1257. advWid: 1139, LSdBear: 131
+	1258. advWid: 1479, LSdBear: 161
+	1259. advWid: 1139, LSdBear: 131
+	1260. advWid: 1749, LSdBear: 161
+	1261. advWid: 1371, LSdBear: 131
+	1262. advWid: 1749, LSdBear: 161
+	1263. advWid: 1371, LSdBear: 131
+	1264. advWid: 1749, LSdBear: 161
+	1265. advWid: 1371, LSdBear: 131
+	1266. advWid: 1749, LSdBear: 161
+	1267. advWid: 1371, LSdBear: 131
+	1268. advWid: 1749, LSdBear: 161
+	1269. advWid: 1371, LSdBear: 131
+	1270. advWid: 1366, LSdBear: 6
+	1271. advWid: 1024, LSdBear: 33
+	1272. advWid: 1366, LSdBear: 6
+	1273. advWid: 1024, LSdBear: 33
+	1274. advWid: 1366, LSdBear: 6
+	1275. advWid: 1024, LSdBear: 33
+	1276. advWid: 1366, LSdBear: -3
+	1277. advWid: 1139, LSdBear: 74
+	1278. advWid:  569, LSdBear: -30
+	1279. advWid:  455, LSdBear: -80
+	1280. advWid: 1593, LSdBear: 99
+	1281. advWid: 1139, LSdBear: 68
+	1282. advWid: 1479, LSdBear: 161
+	1283. advWid: 1139, LSdBear: 131
+	1284. advWid: 1479, LSdBear: 161
+	1285. advWid: 1139, LSdBear: 131
+	1286. advWid: 1479, LSdBear: 161
+	1287. advWid: 1139, LSdBear: 131
+	1288. advWid: 1479, LSdBear: 161
+	1289. advWid: 1139, LSdBear: 131
+	1290. advWid: 1479, LSdBear: 161
+	1291. advWid: 1139, LSdBear: 131
+	1292. advWid:    0, LSdBear: -258
+	1293. advWid:    0, LSdBear: -258
+	1294. advWid:    0, LSdBear: -258
+	1295. advWid:    0, LSdBear: -258
+	1296. advWid: 1109, LSdBear: -3
+	1297. advWid:  747, LSdBear: 12
+	1298. advWid: 1891, LSdBear: 7
+	1299. advWid: 1370, LSdBear: -5
+	1300. advWid: 1193, LSdBear: 161
+	1301. advWid:  896, LSdBear: 134
+	1302. advWid: 1193, LSdBear: 161
+	1303. advWid:  896, LSdBear: 134
+	1304. advWid: 1479, LSdBear: 164
+	1305. advWid: 1131, LSdBear: 136
+	1306. advWid: 1139, LSdBear: -3
+	1307. advWid: 1024, LSdBear: 20
+	1308. advWid: 1139, LSdBear: -3
+	1309. advWid: 1024, LSdBear: 20
+	1310. advWid: 1366, LSdBear: 9
+	1311. advWid: 1024, LSdBear: 15
+	1312. advWid: 1365, LSdBear: 87
+	1313. advWid: 1067, LSdBear: 69
+	1314. advWid: 1365, LSdBear: 161
+	1315. advWid: 1067, LSdBear: 136
+	1316. advWid: 1541, LSdBear: 99
+	1317. advWid: 1139, LSdBear: 85
+	1318. advWid: 1593, LSdBear: 96
+	1319. advWid: 1139, LSdBear: 68
+
+'VDMX' Table - Precomputed Vertical Device Metrics
+--------------------------------------------------
+  Version:                 0
+  Number of Hgt Records:   3
+  Number of Ratio Records: 3
+
+    Ratio Record #1
+	CharSetId     1
+	xRatio        1
+	yStartRatio   1
+	yEndRatio     1
+	Record Offset 24 (group #1)
+
+
+    Ratio Record #2
+	CharSetId     1
+	xRatio        5
+	yStartRatio   3
+	yEndRatio     3
+	Record Offset 1516 (group #2)
+
+
+    Ratio Record #3
+	CharSetId     1
+	xRatio        2
+	yStartRatio   1
+	yEndRatio     1
+	Record Offset 3008 (group #3)
+
+   VDMX Height Record Groups
+   -------------------------
+   1.	Number of Hgt Records  248
+	Starting Y Pel Height  8
+	Ending Y Pel Height    255
+
+	     1. Pel Height= 8
+	        yMax=       8
+	        yMin=       -2
+
+	     2. Pel Height= 9
+	        yMax=       9
+	        yMin=       -3
+
+	     3. Pel Height= 10
+	        yMax=       10
+	        yMin=       -3
+
+	     4. Pel Height= 11
+	        yMax=       11
+	        yMin=       -3
+
+	     5. Pel Height= 12
+	        yMax=       12
+	        yMin=       -3
+
+	     6. Pel Height= 13
+	        yMax=       13
+	        yMin=       -3
+
+	     7. Pel Height= 14
+	        yMax=       13
+	        yMin=       -3
+
+	     8. Pel Height= 15
+	        yMax=       14
+	        yMin=       -3
+
+	     9. Pel Height= 16
+	        yMax=       15
+	        yMin=       -3
+
+	    10. Pel Height= 17
+	        yMax=       15
+	        yMin=       -4
+
+	    11. Pel Height= 18
+	        yMax=       17
+	        yMin=       -4
+
+	    12. Pel Height= 19
+	        yMax=       18
+	        yMin=       -4
+
+	    13. Pel Height= 20
+	        yMax=       19
+	        yMin=       -4
+
+	    14. Pel Height= 21
+	        yMax=       19
+	        yMin=       -5
+
+	    15. Pel Height= 22
+	        yMax=       20
+	        yMin=       -5
+
+	    16. Pel Height= 23
+	        yMax=       21
+	        yMin=       -5
+
+	    17. Pel Height= 24
+	        yMax=       21
+	        yMin=       -6
+
+	    18. Pel Height= 25
+	        yMax=       23
+	        yMin=       -5
+
+	    19. Pel Height= 26
+	        yMax=       25
+	        yMin=       -6
+
+	    20. Pel Height= 27
+	        yMax=       26
+	        yMin=       -6
+
+	    21. Pel Height= 28
+	        yMax=       26
+	        yMin=       -6
+
+	    22. Pel Height= 29
+	        yMax=       27
+	        yMin=       -6
+
+	    23. Pel Height= 30
+	        yMax=       28
+	        yMin=       -7
+
+	    24. Pel Height= 31
+	        yMax=       28
+	        yMin=       -7
+
+	    25. Pel Height= 32
+	        yMax=       29
+	        yMin=       -7
+
+	    26. Pel Height= 33
+	        yMax=       31
+	        yMin=       -7
+
+	    27. Pel Height= 34
+	        yMax=       32
+	        yMin=       -7
+
+	    28. Pel Height= 35
+	        yMax=       32
+	        yMin=       -8
+
+	    29. Pel Height= 36
+	        yMax=       33
+	        yMin=       -8
+
+	    30. Pel Height= 37
+	        yMax=       34
+	        yMin=       -8
+
+	    31. Pel Height= 38
+	        yMax=       34
+	        yMin=       -9
+
+	    32. Pel Height= 39
+	        yMax=       35
+	        yMin=       -9
+
+	    33. Pel Height= 40
+	        yMax=       36
+	        yMin=       -9
+
+	    34. Pel Height= 41
+	        yMax=       38
+	        yMin=       -9
+
+	    35. Pel Height= 42
+	        yMax=       38
+	        yMin=       -9
+
+	    36. Pel Height= 43
+	        yMax=       39
+	        yMin=       -10
+
+	    37. Pel Height= 44
+	        yMax=       40
+	        yMin=       -10
+
+	    38. Pel Height= 45
+	        yMax=       40
+	        yMin=       -10
+
+	    39. Pel Height= 46
+	        yMax=       42
+	        yMin=       -10
+
+	    40. Pel Height= 47
+	        yMax=       43
+	        yMin=       -10
+
+	    41. Pel Height= 48
+	        yMax=       45
+	        yMin=       -10
+
+	    42. Pel Height= 49
+	        yMax=       45
+	        yMin=       -11
+
+	    43. Pel Height= 50
+	        yMax=       46
+	        yMin=       -11
+
+	    44. Pel Height= 51
+	        yMax=       47
+	        yMin=       -11
+
+	    45. Pel Height= 52
+	        yMax=       48
+	        yMin=       -12
+
+	    46. Pel Height= 53
+	        yMax=       48
+	        yMin=       -12
+
+	    47. Pel Height= 54
+	        yMax=       49
+	        yMin=       -12
+
+	    48. Pel Height= 55
+	        yMax=       51
+	        yMin=       -12
+
+	    49. Pel Height= 56
+	        yMax=       52
+	        yMin=       -13
+
+	    50. Pel Height= 57
+	        yMax=       52
+	        yMin=       -13
+
+	    51. Pel Height= 58
+	        yMax=       53
+	        yMin=       -13
+
+	    52. Pel Height= 59
+	        yMax=       53
+	        yMin=       -13
+
+	    53. Pel Height= 60
+	        yMax=       54
+	        yMin=       -13
+
+	    54. Pel Height= 61
+	        yMax=       55
+	        yMin=       -13
+
+	    55. Pel Height= 62
+	        yMax=       56
+	        yMin=       -13
+
+	    56. Pel Height= 63
+	        yMax=       57
+	        yMin=       -14
+
+	    57. Pel Height= 64
+	        yMax=       58
+	        yMin=       -14
+
+	    58. Pel Height= 65
+	        yMax=       59
+	        yMin=       -14
+
+	    59. Pel Height= 66
+	        yMax=       60
+	        yMin=       -14
+
+	    60. Pel Height= 67
+	        yMax=       60
+	        yMin=       -15
+
+	    61. Pel Height= 68
+	        yMax=       61
+	        yMin=       -15
+
+	    62. Pel Height= 69
+	        yMax=       62
+	        yMin=       -15
+
+	    63. Pel Height= 70
+	        yMax=       63
+	        yMin=       -16
+
+	    64. Pel Height= 71
+	        yMax=       64
+	        yMin=       -16
+
+	    65. Pel Height= 72
+	        yMax=       65
+	        yMin=       -16
+
+	    66. Pel Height= 73
+	        yMax=       66
+	        yMin=       -16
+
+	    67. Pel Height= 74
+	        yMax=       66
+	        yMin=       -16
+
+	    68. Pel Height= 75
+	        yMax=       67
+	        yMin=       -16
+
+	    69. Pel Height= 76
+	        yMax=       68
+	        yMin=       -16
+
+	    70. Pel Height= 77
+	        yMax=       70
+	        yMin=       -17
+
+	    71. Pel Height= 78
+	        yMax=       70
+	        yMin=       -17
+
+	    72. Pel Height= 79
+	        yMax=       71
+	        yMin=       -17
+
+	    73. Pel Height= 80
+	        yMax=       72
+	        yMin=       -17
+
+	    74. Pel Height= 81
+	        yMax=       73
+	        yMin=       -18
+
+	    75. Pel Height= 82
+	        yMax=       73
+	        yMin=       -18
+
+	    76. Pel Height= 83
+	        yMax=       74
+	        yMin=       -18
+
+	    77. Pel Height= 84
+	        yMax=       75
+	        yMin=       -19
+
+	    78. Pel Height= 85
+	        yMax=       77
+	        yMin=       -19
+
+	    79. Pel Height= 86
+	        yMax=       77
+	        yMin=       -19
+
+	    80. Pel Height= 87
+	        yMax=       78
+	        yMin=       -19
+
+	    81. Pel Height= 88
+	        yMax=       79
+	        yMin=       -20
+
+	    82. Pel Height= 89
+	        yMax=       80
+	        yMin=       -20
+
+	    83. Pel Height= 90
+	        yMax=       80
+	        yMin=       -19
+
+	    84. Pel Height= 91
+	        yMax=       81
+	        yMin=       -20
+
+	    85. Pel Height= 92
+	        yMax=       83
+	        yMin=       -20
+
+	    86. Pel Height= 93
+	        yMax=       84
+	        yMin=       -20
+
+	    87. Pel Height= 94
+	        yMax=       84
+	        yMin=       -20
+
+	    88. Pel Height= 95
+	        yMax=       85
+	        yMin=       -21
+
+	    89. Pel Height= 96
+	        yMax=       86
+	        yMin=       -21
+
+	    90. Pel Height= 97
+	        yMax=       87
+	        yMin=       -21
+
+	    91. Pel Height= 98
+	        yMax=       87
+	        yMin=       -22
+
+	    92. Pel Height= 99
+	        yMax=       89
+	        yMin=       -22
+
+	    93. Pel Height= 100
+	        yMax=       90
+	        yMin=       -22
+
+	    94. Pel Height= 101
+	        yMax=       91
+	        yMin=       -22
+
+	    95. Pel Height= 102
+	        yMax=       92
+	        yMin=       -23
+
+	    96. Pel Height= 103
+	        yMax=       92
+	        yMin=       -23
+
+	    97. Pel Height= 104
+	        yMax=       93
+	        yMin=       -23
+
+	    98. Pel Height= 105
+	        yMax=       94
+	        yMin=       -24
+
+	    99. Pel Height= 106
+	        yMax=       96
+	        yMin=       -23
+
+	   100. Pel Height= 107
+	        yMax=       96
+	        yMin=       -23
+
+	   101. Pel Height= 108
+	        yMax=       97
+	        yMin=       -23
+
+	   102. Pel Height= 109
+	        yMax=       98
+	        yMin=       -24
+
+	   103. Pel Height= 110
+	        yMax=       99
+	        yMin=       -24
+
+	   104. Pel Height= 111
+	        yMax=       99
+	        yMin=       -24
+
+	   105. Pel Height= 112
+	        yMax=       100
+	        yMin=       -25
+
+	   106. Pel Height= 113
+	        yMax=       101
+	        yMin=       -25
+
+	   107. Pel Height= 114
+	        yMax=       103
+	        yMin=       -25
+
+	   108. Pel Height= 115
+	        yMax=       103
+	        yMin=       -25
+
+	   109. Pel Height= 116
+	        yMax=       104
+	        yMin=       -26
+
+	   110. Pel Height= 117
+	        yMax=       105
+	        yMin=       -26
+
+	   111. Pel Height= 118
+	        yMax=       106
+	        yMin=       -26
+
+	   112. Pel Height= 119
+	        yMax=       106
+	        yMin=       -27
+
+	   113. Pel Height= 120
+	        yMax=       107
+	        yMin=       -27
+
+	   114. Pel Height= 121
+	        yMax=       109
+	        yMin=       -27
+
+	   115. Pel Height= 122
+	        yMax=       110
+	        yMin=       -27
+
+	   116. Pel Height= 123
+	        yMax=       110
+	        yMin=       -27
+
+	   117. Pel Height= 124
+	        yMax=       111
+	        yMin=       -27
+
+	   118. Pel Height= 125
+	        yMax=       112
+	        yMin=       -27
+
+	   119. Pel Height= 126
+	        yMax=       113
+	        yMin=       -28
+
+	   120. Pel Height= 127
+	        yMax=       113
+	        yMin=       -28
+
+	   121. Pel Height= 128
+	        yMax=       115
+	        yMin=       -28
+
+	   122. Pel Height= 129
+	        yMax=       116
+	        yMin=       -28
+
+	   123. Pel Height= 130
+	        yMax=       117
+	        yMin=       -29
+
+	   124. Pel Height= 131
+	        yMax=       118
+	        yMin=       -29
+
+	   125. Pel Height= 132
+	        yMax=       118
+	        yMin=       -29
+
+	   126. Pel Height= 133
+	        yMax=       119
+	        yMin=       -30
+
+	   127. Pel Height= 134
+	        yMax=       120
+	        yMin=       -30
+
+	   128. Pel Height= 135
+	        yMax=       121
+	        yMin=       -30
+
+	   129. Pel Height= 136
+	        yMax=       122
+	        yMin=       -30
+
+	   130. Pel Height= 137
+	        yMax=       123
+	        yMin=       -31
+
+	   131. Pel Height= 138
+	        yMax=       124
+	        yMin=       -31
+
+	   132. Pel Height= 139
+	        yMax=       125
+	        yMin=       -30
+
+	   133. Pel Height= 140
+	        yMax=       125
+	        yMin=       -31
+
+	   134. Pel Height= 141
+	        yMax=       126
+	        yMin=       -31
+
+	   135. Pel Height= 142
+	        yMax=       127
+	        yMin=       -31
+
+	   136. Pel Height= 143
+	        yMax=       129
+	        yMin=       -31
+
+	   137. Pel Height= 144
+	        yMax=       129
+	        yMin=       -32
+
+	   138. Pel Height= 145
+	        yMax=       130
+	        yMin=       -32
+
+	   139. Pel Height= 146
+	        yMax=       131
+	        yMin=       -32
+
+	   140. Pel Height= 147
+	        yMax=       132
+	        yMin=       -33
+
+	   141. Pel Height= 148
+	        yMax=       132
+	        yMin=       -33
+
+	   142. Pel Height= 149
+	        yMax=       133
+	        yMin=       -33
+
+	   143. Pel Height= 150
+	        yMax=       135
+	        yMin=       -33
+
+	   144. Pel Height= 151
+	        yMax=       136
+	        yMin=       -32
+
+	   145. Pel Height= 152
+	        yMax=       136
+	        yMin=       -33
+
+	   146. Pel Height= 153
+	        yMax=       137
+	        yMin=       -33
+
+	   147. Pel Height= 154
+	        yMax=       138
+	        yMin=       -34
+
+	   148. Pel Height= 155
+	        yMax=       139
+	        yMin=       -34
+
+	   149. Pel Height= 156
+	        yMax=       140
+	        yMin=       -34
+
+	   150. Pel Height= 157
+	        yMax=       140
+	        yMin=       -34
+
+	   151. Pel Height= 158
+	        yMax=       142
+	        yMin=       -34
+
+	   152. Pel Height= 159
+	        yMax=       143
+	        yMin=       -34
+
+	   153. Pel Height= 160
+	        yMax=       144
+	        yMin=       -34
+
+	   154. Pel Height= 161
+	        yMax=       144
+	        yMin=       -35
+
+	   155. Pel Height= 162
+	        yMax=       145
+	        yMin=       -35
+
+	   156. Pel Height= 163
+	        yMax=       146
+	        yMin=       -35
+
+	   157. Pel Height= 164
+	        yMax=       147
+	        yMin=       -35
+
+	   158. Pel Height= 165
+	        yMax=       148
+	        yMin=       -36
+
+	   159. Pel Height= 166
+	        yMax=       149
+	        yMin=       -37
+
+	   160. Pel Height= 167
+	        yMax=       150
+	        yMin=       -37
+
+	   161. Pel Height= 168
+	        yMax=       151
+	        yMin=       -37
+
+	   162. Pel Height= 169
+	        yMax=       151
+	        yMin=       -37
+
+	   163. Pel Height= 170
+	        yMax=       152
+	        yMin=       -37
+
+	   164. Pel Height= 171
+	        yMax=       153
+	        yMin=       -37
+
+	   165. Pel Height= 172
+	        yMax=       155
+	        yMin=       -37
+
+	   166. Pel Height= 173
+	        yMax=       155
+	        yMin=       -37
+
+	   167. Pel Height= 174
+	        yMax=       156
+	        yMin=       -37
+
+	   168. Pel Height= 175
+	        yMax=       157
+	        yMin=       -37
+
+	   169. Pel Height= 176
+	        yMax=       158
+	        yMin=       -37
+
+	   170. Pel Height= 177
+	        yMax=       158
+	        yMin=       -38
+
+	   171. Pel Height= 178
+	        yMax=       159
+	        yMin=       -38
+
+	   172. Pel Height= 179
+	        yMax=       160
+	        yMin=       -38
+
+	   173. Pel Height= 180
+	        yMax=       162
+	        yMin=       -39
+
+	   174. Pel Height= 181
+	        yMax=       163
+	        yMin=       -40
+
+	   175. Pel Height= 182
+	        yMax=       163
+	        yMin=       -40
+
+	   176. Pel Height= 183
+	        yMax=       164
+	        yMin=       -40
+
+	   177. Pel Height= 184
+	        yMax=       165
+	        yMin=       -40
+
+	   178. Pel Height= 185
+	        yMax=       166
+	        yMin=       -40
+
+	   179. Pel Height= 186
+	        yMax=       166
+	        yMin=       -40
+
+	   180. Pel Height= 187
+	        yMax=       168
+	        yMin=       -40
+
+	   181. Pel Height= 188
+	        yMax=       169
+	        yMin=       -41
+
+	   182. Pel Height= 189
+	        yMax=       170
+	        yMin=       -41
+
+	   183. Pel Height= 190
+	        yMax=       170
+	        yMin=       -41
+
+	   184. Pel Height= 191
+	        yMax=       171
+	        yMin=       -41
+
+	   185. Pel Height= 192
+	        yMax=       172
+	        yMin=       -41
+
+	   186. Pel Height= 193
+	        yMax=       173
+	        yMin=       -41
+
+	   187. Pel Height= 194
+	        yMax=       174
+	        yMin=       -41
+
+	   188. Pel Height= 195
+	        yMax=       175
+	        yMin=       -42
+
+	   189. Pel Height= 196
+	        yMax=       176
+	        yMin=       -42
+
+	   190. Pel Height= 197
+	        yMax=       177
+	        yMin=       -43
+
+	   191. Pel Height= 198
+	        yMax=       177
+	        yMin=       -43
+
+	   192. Pel Height= 199
+	        yMax=       178
+	        yMin=       -43
+
+	   193. Pel Height= 200
+	        yMax=       179
+	        yMin=       -44
+
+	   194. Pel Height= 201
+	        yMax=       180
+	        yMin=       -44
+
+	   195. Pel Height= 202
+	        yMax=       181
+	        yMin=       -44
+
+	   196. Pel Height= 203
+	        yMax=       182
+	        yMin=       -44
+
+	   197. Pel Height= 204
+	        yMax=       183
+	        yMin=       -44
+
+	   198. Pel Height= 205
+	        yMax=       184
+	        yMin=       -44
+
+	   199. Pel Height= 206
+	        yMax=       185
+	        yMin=       -44
+
+	   200. Pel Height= 207
+	        yMax=       185
+	        yMin=       -44
+
+	   201. Pel Height= 208
+	        yMax=       186
+	        yMin=       -44
+
+	   202. Pel Height= 209
+	        yMax=       188
+	        yMin=       -44
+
+	   203. Pel Height= 210
+	        yMax=       189
+	        yMin=       -45
+
+	   204. Pel Height= 211
+	        yMax=       189
+	        yMin=       -46
+
+	   205. Pel Height= 212
+	        yMax=       190
+	        yMin=       -46
+
+	   206. Pel Height= 213
+	        yMax=       191
+	        yMin=       -46
+
+	   207. Pel Height= 214
+	        yMax=       192
+	        yMin=       -47
+
+	   208. Pel Height= 215
+	        yMax=       192
+	        yMin=       -47
+
+	   209. Pel Height= 216
+	        yMax=       194
+	        yMin=       -47
+
+	   210. Pel Height= 217
+	        yMax=       195
+	        yMin=       -47
+
+	   211. Pel Height= 218
+	        yMax=       196
+	        yMin=       -47
+
+	   212. Pel Height= 219
+	        yMax=       196
+	        yMin=       -47
+
+	   213. Pel Height= 220
+	        yMax=       197
+	        yMin=       -47
+
+	   214. Pel Height= 221
+	        yMax=       198
+	        yMin=       -47
+
+	   215. Pel Height= 222
+	        yMax=       199
+	        yMin=       -48
+
+	   216. Pel Height= 223
+	        yMax=       199
+	        yMin=       -48
+
+	   217. Pel Height= 224
+	        yMax=       201
+	        yMin=       -49
+
+	   218. Pel Height= 225
+	        yMax=       202
+	        yMin=       -49
+
+	   219. Pel Height= 226
+	        yMax=       203
+	        yMin=       -49
+
+	   220. Pel Height= 227
+	        yMax=       203
+	        yMin=       -49
+
+	   221. Pel Height= 228
+	        yMax=       204
+	        yMin=       -49
+
+	   222. Pel Height= 229
+	        yMax=       205
+	        yMin=       -49
+
+	   223. Pel Height= 230
+	        yMax=       206
+	        yMin=       -49
+
+	   224. Pel Height= 231
+	        yMax=       208
+	        yMin=       -50
+
+	   225. Pel Height= 232
+	        yMax=       208
+	        yMin=       -50
+
+	   226. Pel Height= 233
+	        yMax=       209
+	        yMin=       -50
+
+	   227. Pel Height= 234
+	        yMax=       210
+	        yMin=       -51
+
+	   228. Pel Height= 235
+	        yMax=       211
+	        yMin=       -51
+
+	   229. Pel Height= 236
+	        yMax=       211
+	        yMin=       -51
+
+	   230. Pel Height= 237
+	        yMax=       212
+	        yMin=       -51
+
+	   231. Pel Height= 238
+	        yMax=       214
+	        yMin=       -52
+
+	   232. Pel Height= 239
+	        yMax=       215
+	        yMin=       -52
+
+	   233. Pel Height= 240
+	        yMax=       215
+	        yMin=       -52
+
+	   234. Pel Height= 241
+	        yMax=       216
+	        yMin=       -52
+
+	   235. Pel Height= 242
+	        yMax=       217
+	        yMin=       -52
+
+	   236. Pel Height= 243
+	        yMax=       218
+	        yMin=       -52
+
+	   237. Pel Height= 244
+	        yMax=       218
+	        yMin=       -52
+
+	   238. Pel Height= 245
+	        yMax=       220
+	        yMin=       -53
+
+	   239. Pel Height= 246
+	        yMax=       221
+	        yMin=       -53
+
+	   240. Pel Height= 247
+	        yMax=       222
+	        yMin=       -53
+
+	   241. Pel Height= 248
+	        yMax=       222
+	        yMin=       -54
+
+	   242. Pel Height= 249
+	        yMax=       223
+	        yMin=       -54
+
+	   243. Pel Height= 250
+	        yMax=       224
+	        yMin=       -54
+
+	   244. Pel Height= 251
+	        yMax=       225
+	        yMin=       -54
+
+	   245. Pel Height= 252
+	        yMax=       225
+	        yMin=       -54
+
+	   246. Pel Height= 253
+	        yMax=       227
+	        yMin=       -55
+
+	   247. Pel Height= 254
+	        yMax=       228
+	        yMin=       -55
+
+	   248. Pel Height= 255
+	        yMax=       229
+	        yMin=       -55
+
+
+   2.	Number of Hgt Records  248
+	Starting Y Pel Height  8
+	Ending Y Pel Height    255
+
+	     1. Pel Height= 8
+	        yMax=       8
+	        yMin=       -2
+
+	     2. Pel Height= 9
+	        yMax=       9
+	        yMin=       -3
+
+	     3. Pel Height= 10
+	        yMax=       10
+	        yMin=       -3
+
+	     4. Pel Height= 11
+	        yMax=       11
+	        yMin=       -3
+
+	     5. Pel Height= 12
+	        yMax=       12
+	        yMin=       -3
+
+	     6. Pel Height= 13
+	        yMax=       13
+	        yMin=       -3
+
+	     7. Pel Height= 14
+	        yMax=       13
+	        yMin=       -3
+
+	     8. Pel Height= 15
+	        yMax=       14
+	        yMin=       -3
+
+	     9. Pel Height= 16
+	        yMax=       15
+	        yMin=       -3
+
+	    10. Pel Height= 17
+	        yMax=       15
+	        yMin=       -4
+
+	    11. Pel Height= 18
+	        yMax=       17
+	        yMin=       -4
+
+	    12. Pel Height= 19
+	        yMax=       18
+	        yMin=       -4
+
+	    13. Pel Height= 20
+	        yMax=       19
+	        yMin=       -4
+
+	    14. Pel Height= 21
+	        yMax=       19
+	        yMin=       -5
+
+	    15. Pel Height= 22
+	        yMax=       20
+	        yMin=       -5
+
+	    16. Pel Height= 23
+	        yMax=       21
+	        yMin=       -5
+
+	    17. Pel Height= 24
+	        yMax=       21
+	        yMin=       -6
+
+	    18. Pel Height= 25
+	        yMax=       23
+	        yMin=       -5
+
+	    19. Pel Height= 26
+	        yMax=       25
+	        yMin=       -6
+
+	    20. Pel Height= 27
+	        yMax=       26
+	        yMin=       -6
+
+	    21. Pel Height= 28
+	        yMax=       26
+	        yMin=       -6
+
+	    22. Pel Height= 29
+	        yMax=       27
+	        yMin=       -6
+
+	    23. Pel Height= 30
+	        yMax=       28
+	        yMin=       -7
+
+	    24. Pel Height= 31
+	        yMax=       28
+	        yMin=       -7
+
+	    25. Pel Height= 32
+	        yMax=       29
+	        yMin=       -7
+
+	    26. Pel Height= 33
+	        yMax=       31
+	        yMin=       -7
+
+	    27. Pel Height= 34
+	        yMax=       32
+	        yMin=       -7
+
+	    28. Pel Height= 35
+	        yMax=       32
+	        yMin=       -8
+
+	    29. Pel Height= 36
+	        yMax=       33
+	        yMin=       -8
+
+	    30. Pel Height= 37
+	        yMax=       34
+	        yMin=       -8
+
+	    31. Pel Height= 38
+	        yMax=       34
+	        yMin=       -9
+
+	    32. Pel Height= 39
+	        yMax=       35
+	        yMin=       -9
+
+	    33. Pel Height= 40
+	        yMax=       36
+	        yMin=       -9
+
+	    34. Pel Height= 41
+	        yMax=       38
+	        yMin=       -9
+
+	    35. Pel Height= 42
+	        yMax=       38
+	        yMin=       -9
+
+	    36. Pel Height= 43
+	        yMax=       39
+	        yMin=       -10
+
+	    37. Pel Height= 44
+	        yMax=       40
+	        yMin=       -10
+
+	    38. Pel Height= 45
+	        yMax=       40
+	        yMin=       -10
+
+	    39. Pel Height= 46
+	        yMax=       42
+	        yMin=       -10
+
+	    40. Pel Height= 47
+	        yMax=       43
+	        yMin=       -10
+
+	    41. Pel Height= 48
+	        yMax=       45
+	        yMin=       -10
+
+	    42. Pel Height= 49
+	        yMax=       45
+	        yMin=       -11
+
+	    43. Pel Height= 50
+	        yMax=       46
+	        yMin=       -11
+
+	    44. Pel Height= 51
+	        yMax=       47
+	        yMin=       -11
+
+	    45. Pel Height= 52
+	        yMax=       48
+	        yMin=       -12
+
+	    46. Pel Height= 53
+	        yMax=       48
+	        yMin=       -12
+
+	    47. Pel Height= 54
+	        yMax=       49
+	        yMin=       -12
+
+	    48. Pel Height= 55
+	        yMax=       51
+	        yMin=       -12
+
+	    49. Pel Height= 56
+	        yMax=       52
+	        yMin=       -13
+
+	    50. Pel Height= 57
+	        yMax=       52
+	        yMin=       -13
+
+	    51. Pel Height= 58
+	        yMax=       53
+	        yMin=       -13
+
+	    52. Pel Height= 59
+	        yMax=       53
+	        yMin=       -13
+
+	    53. Pel Height= 60
+	        yMax=       54
+	        yMin=       -13
+
+	    54. Pel Height= 61
+	        yMax=       55
+	        yMin=       -13
+
+	    55. Pel Height= 62
+	        yMax=       56
+	        yMin=       -13
+
+	    56. Pel Height= 63
+	        yMax=       57
+	        yMin=       -14
+
+	    57. Pel Height= 64
+	        yMax=       58
+	        yMin=       -14
+
+	    58. Pel Height= 65
+	        yMax=       59
+	        yMin=       -14
+
+	    59. Pel Height= 66
+	        yMax=       60
+	        yMin=       -15
+
+	    60. Pel Height= 67
+	        yMax=       60
+	        yMin=       -15
+
+	    61. Pel Height= 68
+	        yMax=       61
+	        yMin=       -15
+
+	    62. Pel Height= 69
+	        yMax=       62
+	        yMin=       -15
+
+	    63. Pel Height= 70
+	        yMax=       63
+	        yMin=       -16
+
+	    64. Pel Height= 71
+	        yMax=       64
+	        yMin=       -16
+
+	    65. Pel Height= 72
+	        yMax=       65
+	        yMin=       -16
+
+	    66. Pel Height= 73
+	        yMax=       66
+	        yMin=       -16
+
+	    67. Pel Height= 74
+	        yMax=       66
+	        yMin=       -16
+
+	    68. Pel Height= 75
+	        yMax=       67
+	        yMin=       -16
+
+	    69. Pel Height= 76
+	        yMax=       68
+	        yMin=       -16
+
+	    70. Pel Height= 77
+	        yMax=       70
+	        yMin=       -17
+
+	    71. Pel Height= 78
+	        yMax=       70
+	        yMin=       -17
+
+	    72. Pel Height= 79
+	        yMax=       71
+	        yMin=       -17
+
+	    73. Pel Height= 80
+	        yMax=       72
+	        yMin=       -17
+
+	    74. Pel Height= 81
+	        yMax=       73
+	        yMin=       -18
+
+	    75. Pel Height= 82
+	        yMax=       73
+	        yMin=       -18
+
+	    76. Pel Height= 83
+	        yMax=       74
+	        yMin=       -18
+
+	    77. Pel Height= 84
+	        yMax=       75
+	        yMin=       -19
+
+	    78. Pel Height= 85
+	        yMax=       77
+	        yMin=       -19
+
+	    79. Pel Height= 86
+	        yMax=       77
+	        yMin=       -19
+
+	    80. Pel Height= 87
+	        yMax=       78
+	        yMin=       -19
+
+	    81. Pel Height= 88
+	        yMax=       79
+	        yMin=       -20
+
+	    82. Pel Height= 89
+	        yMax=       80
+	        yMin=       -20
+
+	    83. Pel Height= 90
+	        yMax=       80
+	        yMin=       -19
+
+	    84. Pel Height= 91
+	        yMax=       81
+	        yMin=       -20
+
+	    85. Pel Height= 92
+	        yMax=       83
+	        yMin=       -20
+
+	    86. Pel Height= 93
+	        yMax=       84
+	        yMin=       -20
+
+	    87. Pel Height= 94
+	        yMax=       84
+	        yMin=       -20
+
+	    88. Pel Height= 95
+	        yMax=       85
+	        yMin=       -21
+
+	    89. Pel Height= 96
+	        yMax=       86
+	        yMin=       -21
+
+	    90. Pel Height= 97
+	        yMax=       87
+	        yMin=       -21
+
+	    91. Pel Height= 98
+	        yMax=       87
+	        yMin=       -21
+
+	    92. Pel Height= 99
+	        yMax=       89
+	        yMin=       -22
+
+	    93. Pel Height= 100
+	        yMax=       90
+	        yMin=       -22
+
+	    94. Pel Height= 101
+	        yMax=       91
+	        yMin=       -22
+
+	    95. Pel Height= 102
+	        yMax=       92
+	        yMin=       -23
+
+	    96. Pel Height= 103
+	        yMax=       92
+	        yMin=       -23
+
+	    97. Pel Height= 104
+	        yMax=       93
+	        yMin=       -23
+
+	    98. Pel Height= 105
+	        yMax=       94
+	        yMin=       -23
+
+	    99. Pel Height= 106
+	        yMax=       96
+	        yMin=       -23
+
+	   100. Pel Height= 107
+	        yMax=       96
+	        yMin=       -23
+
+	   101. Pel Height= 108
+	        yMax=       97
+	        yMin=       -23
+
+	   102. Pel Height= 109
+	        yMax=       98
+	        yMin=       -23
+
+	   103. Pel Height= 110
+	        yMax=       99
+	        yMin=       -24
+
+	   104. Pel Height= 111
+	        yMax=       99
+	        yMin=       -24
+
+	   105. Pel Height= 112
+	        yMax=       100
+	        yMin=       -24
+
+	   106. Pel Height= 113
+	        yMax=       101
+	        yMin=       -25
+
+	   107. Pel Height= 114
+	        yMax=       103
+	        yMin=       -25
+
+	   108. Pel Height= 115
+	        yMax=       103
+	        yMin=       -25
+
+	   109. Pel Height= 116
+	        yMax=       104
+	        yMin=       -25
+
+	   110. Pel Height= 117
+	        yMax=       105
+	        yMin=       -26
+
+	   111. Pel Height= 118
+	        yMax=       106
+	        yMin=       -26
+
+	   112. Pel Height= 119
+	        yMax=       106
+	        yMin=       -26
+
+	   113. Pel Height= 120
+	        yMax=       107
+	        yMin=       -27
+
+	   114. Pel Height= 121
+	        yMax=       109
+	        yMin=       -27
+
+	   115. Pel Height= 122
+	        yMax=       110
+	        yMin=       -27
+
+	   116. Pel Height= 123
+	        yMax=       110
+	        yMin=       -27
+
+	   117. Pel Height= 124
+	        yMax=       111
+	        yMin=       -27
+
+	   118. Pel Height= 125
+	        yMax=       112
+	        yMin=       -28
+
+	   119. Pel Height= 126
+	        yMax=       113
+	        yMin=       -28
+
+	   120. Pel Height= 127
+	        yMax=       114
+	        yMin=       -28
+
+	   121. Pel Height= 128
+	        yMax=       115
+	        yMin=       -28
+
+	   122. Pel Height= 129
+	        yMax=       116
+	        yMin=       -29
+
+	   123. Pel Height= 130
+	        yMax=       117
+	        yMin=       -29
+
+	   124. Pel Height= 131
+	        yMax=       118
+	        yMin=       -29
+
+	   125. Pel Height= 132
+	        yMax=       118
+	        yMin=       -29
+
+	   126. Pel Height= 133
+	        yMax=       119
+	        yMin=       -29
+
+	   127. Pel Height= 134
+	        yMax=       120
+	        yMin=       -29
+
+	   128. Pel Height= 135
+	        yMax=       121
+	        yMin=       -30
+
+	   129. Pel Height= 136
+	        yMax=       122
+	        yMin=       -30
+
+	   130. Pel Height= 137
+	        yMax=       123
+	        yMin=       -30
+
+	   131. Pel Height= 138
+	        yMax=       124
+	        yMin=       -30
+
+	   132. Pel Height= 139
+	        yMax=       125
+	        yMin=       -30
+
+	   133. Pel Height= 140
+	        yMax=       125
+	        yMin=       -30
+
+	   134. Pel Height= 141
+	        yMax=       126
+	        yMin=       -30
+
+	   135. Pel Height= 142
+	        yMax=       127
+	        yMin=       -30
+
+	   136. Pel Height= 143
+	        yMax=       129
+	        yMin=       -31
+
+	   137. Pel Height= 144
+	        yMax=       129
+	        yMin=       -31
+
+	   138. Pel Height= 145
+	        yMax=       130
+	        yMin=       -32
+
+	   139. Pel Height= 146
+	        yMax=       131
+	        yMin=       -32
+
+	   140. Pel Height= 147
+	        yMax=       132
+	        yMin=       -32
+
+	   141. Pel Height= 148
+	        yMax=       132
+	        yMin=       -32
+
+	   142. Pel Height= 149
+	        yMax=       133
+	        yMin=       -32
+
+	   143. Pel Height= 150
+	        yMax=       135
+	        yMin=       -33
+
+	   144. Pel Height= 151
+	        yMax=       136
+	        yMin=       -32
+
+	   145. Pel Height= 152
+	        yMax=       136
+	        yMin=       -33
+
+	   146. Pel Height= 153
+	        yMax=       137
+	        yMin=       -33
+
+	   147. Pel Height= 154
+	        yMax=       138
+	        yMin=       -34
+
+	   148. Pel Height= 155
+	        yMax=       139
+	        yMin=       -34
+
+	   149. Pel Height= 156
+	        yMax=       140
+	        yMin=       -34
+
+	   150. Pel Height= 157
+	        yMax=       140
+	        yMin=       -34
+
+	   151. Pel Height= 158
+	        yMax=       142
+	        yMin=       -34
+
+	   152. Pel Height= 159
+	        yMax=       143
+	        yMin=       -34
+
+	   153. Pel Height= 160
+	        yMax=       144
+	        yMin=       -34
+
+	   154. Pel Height= 161
+	        yMax=       144
+	        yMin=       -35
+
+	   155. Pel Height= 162
+	        yMax=       145
+	        yMin=       -35
+
+	   156. Pel Height= 163
+	        yMax=       146
+	        yMin=       -35
+
+	   157. Pel Height= 164
+	        yMax=       147
+	        yMin=       -35
+
+	   158. Pel Height= 165
+	        yMax=       148
+	        yMin=       -36
+
+	   159. Pel Height= 166
+	        yMax=       149
+	        yMin=       -37
+
+	   160. Pel Height= 167
+	        yMax=       150
+	        yMin=       -37
+
+	   161. Pel Height= 168
+	        yMax=       151
+	        yMin=       -37
+
+	   162. Pel Height= 169
+	        yMax=       151
+	        yMin=       -37
+
+	   163. Pel Height= 170
+	        yMax=       152
+	        yMin=       -37
+
+	   164. Pel Height= 171
+	        yMax=       153
+	        yMin=       -37
+
+	   165. Pel Height= 172
+	        yMax=       155
+	        yMin=       -37
+
+	   166. Pel Height= 173
+	        yMax=       155
+	        yMin=       -37
+
+	   167. Pel Height= 174
+	        yMax=       156
+	        yMin=       -37
+
+	   168. Pel Height= 175
+	        yMax=       157
+	        yMin=       -37
+
+	   169. Pel Height= 176
+	        yMax=       158
+	        yMin=       -37
+
+	   170. Pel Height= 177
+	        yMax=       158
+	        yMin=       -38
+
+	   171. Pel Height= 178
+	        yMax=       159
+	        yMin=       -38
+
+	   172. Pel Height= 179
+	        yMax=       160
+	        yMin=       -39
+
+	   173. Pel Height= 180
+	        yMax=       162
+	        yMin=       -39
+
+	   174. Pel Height= 181
+	        yMax=       163
+	        yMin=       -40
+
+	   175. Pel Height= 182
+	        yMax=       163
+	        yMin=       -40
+
+	   176. Pel Height= 183
+	        yMax=       164
+	        yMin=       -40
+
+	   177. Pel Height= 184
+	        yMax=       165
+	        yMin=       -40
+
+	   178. Pel Height= 185
+	        yMax=       166
+	        yMin=       -40
+
+	   179. Pel Height= 186
+	        yMax=       166
+	        yMin=       -40
+
+	   180. Pel Height= 187
+	        yMax=       168
+	        yMin=       -40
+
+	   181. Pel Height= 188
+	        yMax=       169
+	        yMin=       -41
+
+	   182. Pel Height= 189
+	        yMax=       170
+	        yMin=       -41
+
+	   183. Pel Height= 190
+	        yMax=       170
+	        yMin=       -41
+
+	   184. Pel Height= 191
+	        yMax=       171
+	        yMin=       -41
+
+	   185. Pel Height= 192
+	        yMax=       172
+	        yMin=       -41
+
+	   186. Pel Height= 193
+	        yMax=       173
+	        yMin=       -41
+
+	   187. Pel Height= 194
+	        yMax=       174
+	        yMin=       -41
+
+	   188. Pel Height= 195
+	        yMax=       175
+	        yMin=       -42
+
+	   189. Pel Height= 196
+	        yMax=       176
+	        yMin=       -42
+
+	   190. Pel Height= 197
+	        yMax=       177
+	        yMin=       -43
+
+	   191. Pel Height= 198
+	        yMax=       177
+	        yMin=       -43
+
+	   192. Pel Height= 199
+	        yMax=       178
+	        yMin=       -44
+
+	   193. Pel Height= 200
+	        yMax=       179
+	        yMin=       -44
+
+	   194. Pel Height= 201
+	        yMax=       180
+	        yMin=       -44
+
+	   195. Pel Height= 202
+	        yMax=       181
+	        yMin=       -44
+
+	   196. Pel Height= 203
+	        yMax=       182
+	        yMin=       -44
+
+	   197. Pel Height= 204
+	        yMax=       183
+	        yMin=       -44
+
+	   198. Pel Height= 205
+	        yMax=       184
+	        yMin=       -44
+
+	   199. Pel Height= 206
+	        yMax=       185
+	        yMin=       -44
+
+	   200. Pel Height= 207
+	        yMax=       185
+	        yMin=       -44
+
+	   201. Pel Height= 208
+	        yMax=       186
+	        yMin=       -44
+
+	   202. Pel Height= 209
+	        yMax=       188
+	        yMin=       -44
+
+	   203. Pel Height= 210
+	        yMax=       189
+	        yMin=       -45
+
+	   204. Pel Height= 211
+	        yMax=       189
+	        yMin=       -46
+
+	   205. Pel Height= 212
+	        yMax=       190
+	        yMin=       -46
+
+	   206. Pel Height= 213
+	        yMax=       191
+	        yMin=       -46
+
+	   207. Pel Height= 214
+	        yMax=       192
+	        yMin=       -47
+
+	   208. Pel Height= 215
+	        yMax=       192
+	        yMin=       -47
+
+	   209. Pel Height= 216
+	        yMax=       194
+	        yMin=       -47
+
+	   210. Pel Height= 217
+	        yMax=       195
+	        yMin=       -47
+
+	   211. Pel Height= 218
+	        yMax=       196
+	        yMin=       -47
+
+	   212. Pel Height= 219
+	        yMax=       196
+	        yMin=       -47
+
+	   213. Pel Height= 220
+	        yMax=       197
+	        yMin=       -47
+
+	   214. Pel Height= 221
+	        yMax=       198
+	        yMin=       -47
+
+	   215. Pel Height= 222
+	        yMax=       199
+	        yMin=       -48
+
+	   216. Pel Height= 223
+	        yMax=       199
+	        yMin=       -48
+
+	   217. Pel Height= 224
+	        yMax=       201
+	        yMin=       -49
+
+	   218. Pel Height= 225
+	        yMax=       202
+	        yMin=       -49
+
+	   219. Pel Height= 226
+	        yMax=       203
+	        yMin=       -49
+
+	   220. Pel Height= 227
+	        yMax=       203
+	        yMin=       -49
+
+	   221. Pel Height= 228
+	        yMax=       204
+	        yMin=       -49
+
+	   222. Pel Height= 229
+	        yMax=       205
+	        yMin=       -49
+
+	   223. Pel Height= 230
+	        yMax=       206
+	        yMin=       -49
+
+	   224. Pel Height= 231
+	        yMax=       208
+	        yMin=       -50
+
+	   225. Pel Height= 232
+	        yMax=       208
+	        yMin=       -50
+
+	   226. Pel Height= 233
+	        yMax=       209
+	        yMin=       -50
+
+	   227. Pel Height= 234
+	        yMax=       210
+	        yMin=       -51
+
+	   228. Pel Height= 235
+	        yMax=       211
+	        yMin=       -51
+
+	   229. Pel Height= 236
+	        yMax=       211
+	        yMin=       -51
+
+	   230. Pel Height= 237
+	        yMax=       212
+	        yMin=       -51
+
+	   231. Pel Height= 238
+	        yMax=       214
+	        yMin=       -52
+
+	   232. Pel Height= 239
+	        yMax=       215
+	        yMin=       -52
+
+	   233. Pel Height= 240
+	        yMax=       215
+	        yMin=       -52
+
+	   234. Pel Height= 241
+	        yMax=       216
+	        yMin=       -52
+
+	   235. Pel Height= 242
+	        yMax=       217
+	        yMin=       -52
+
+	   236. Pel Height= 243
+	        yMax=       218
+	        yMin=       -52
+
+	   237. Pel Height= 244
+	        yMax=       218
+	        yMin=       -52
+
+	   238. Pel Height= 245
+	        yMax=       220
+	        yMin=       -53
+
+	   239. Pel Height= 246
+	        yMax=       221
+	        yMin=       -53
+
+	   240. Pel Height= 247
+	        yMax=       222
+	        yMin=       -53
+
+	   241. Pel Height= 248
+	        yMax=       222
+	        yMin=       -54
+
+	   242. Pel Height= 249
+	        yMax=       223
+	        yMin=       -54
+
+	   243. Pel Height= 250
+	        yMax=       224
+	        yMin=       -54
+
+	   244. Pel Height= 251
+	        yMax=       225
+	        yMin=       -54
+
+	   245. Pel Height= 252
+	        yMax=       225
+	        yMin=       -54
+
+	   246. Pel Height= 253
+	        yMax=       227
+	        yMin=       -55
+
+	   247. Pel Height= 254
+	        yMax=       228
+	        yMin=       -55
+
+	   248. Pel Height= 255
+	        yMax=       229
+	        yMin=       -55
+
+
+   3.	Number of Hgt Records  248
+	Starting Y Pel Height  8
+	Ending Y Pel Height    255
+
+	     1. Pel Height= 8
+	        yMax=       8
+	        yMin=       -2
+
+	     2. Pel Height= 9
+	        yMax=       9
+	        yMin=       -3
+
+	     3. Pel Height= 10
+	        yMax=       10
+	        yMin=       -3
+
+	     4. Pel Height= 11
+	        yMax=       11
+	        yMin=       -3
+
+	     5. Pel Height= 12
+	        yMax=       12
+	        yMin=       -3
+
+	     6. Pel Height= 13
+	        yMax=       13
+	        yMin=       -3
+
+	     7. Pel Height= 14
+	        yMax=       13
+	        yMin=       -3
+
+	     8. Pel Height= 15
+	        yMax=       14
+	        yMin=       -3
+
+	     9. Pel Height= 16
+	        yMax=       15
+	        yMin=       -3
+
+	    10. Pel Height= 17
+	        yMax=       15
+	        yMin=       -4
+
+	    11. Pel Height= 18
+	        yMax=       17
+	        yMin=       -4
+
+	    12. Pel Height= 19
+	        yMax=       18
+	        yMin=       -4
+
+	    13. Pel Height= 20
+	        yMax=       19
+	        yMin=       -4
+
+	    14. Pel Height= 21
+	        yMax=       19
+	        yMin=       -5
+
+	    15. Pel Height= 22
+	        yMax=       20
+	        yMin=       -5
+
+	    16. Pel Height= 23
+	        yMax=       21
+	        yMin=       -5
+
+	    17. Pel Height= 24
+	        yMax=       21
+	        yMin=       -6
+
+	    18. Pel Height= 25
+	        yMax=       23
+	        yMin=       -5
+
+	    19. Pel Height= 26
+	        yMax=       25
+	        yMin=       -6
+
+	    20. Pel Height= 27
+	        yMax=       26
+	        yMin=       -6
+
+	    21. Pel Height= 28
+	        yMax=       26
+	        yMin=       -6
+
+	    22. Pel Height= 29
+	        yMax=       27
+	        yMin=       -6
+
+	    23. Pel Height= 30
+	        yMax=       28
+	        yMin=       -7
+
+	    24. Pel Height= 31
+	        yMax=       28
+	        yMin=       -7
+
+	    25. Pel Height= 32
+	        yMax=       29
+	        yMin=       -7
+
+	    26. Pel Height= 33
+	        yMax=       31
+	        yMin=       -7
+
+	    27. Pel Height= 34
+	        yMax=       32
+	        yMin=       -7
+
+	    28. Pel Height= 35
+	        yMax=       32
+	        yMin=       -8
+
+	    29. Pel Height= 36
+	        yMax=       33
+	        yMin=       -8
+
+	    30. Pel Height= 37
+	        yMax=       34
+	        yMin=       -8
+
+	    31. Pel Height= 38
+	        yMax=       34
+	        yMin=       -9
+
+	    32. Pel Height= 39
+	        yMax=       35
+	        yMin=       -9
+
+	    33. Pel Height= 40
+	        yMax=       36
+	        yMin=       -9
+
+	    34. Pel Height= 41
+	        yMax=       38
+	        yMin=       -9
+
+	    35. Pel Height= 42
+	        yMax=       38
+	        yMin=       -9
+
+	    36. Pel Height= 43
+	        yMax=       39
+	        yMin=       -10
+
+	    37. Pel Height= 44
+	        yMax=       40
+	        yMin=       -10
+
+	    38. Pel Height= 45
+	        yMax=       40
+	        yMin=       -10
+
+	    39. Pel Height= 46
+	        yMax=       42
+	        yMin=       -10
+
+	    40. Pel Height= 47
+	        yMax=       43
+	        yMin=       -10
+
+	    41. Pel Height= 48
+	        yMax=       45
+	        yMin=       -10
+
+	    42. Pel Height= 49
+	        yMax=       45
+	        yMin=       -11
+
+	    43. Pel Height= 50
+	        yMax=       46
+	        yMin=       -11
+
+	    44. Pel Height= 51
+	        yMax=       47
+	        yMin=       -11
+
+	    45. Pel Height= 52
+	        yMax=       48
+	        yMin=       -12
+
+	    46. Pel Height= 53
+	        yMax=       48
+	        yMin=       -12
+
+	    47. Pel Height= 54
+	        yMax=       49
+	        yMin=       -12
+
+	    48. Pel Height= 55
+	        yMax=       51
+	        yMin=       -12
+
+	    49. Pel Height= 56
+	        yMax=       52
+	        yMin=       -13
+
+	    50. Pel Height= 57
+	        yMax=       52
+	        yMin=       -13
+
+	    51. Pel Height= 58
+	        yMax=       53
+	        yMin=       -13
+
+	    52. Pel Height= 59
+	        yMax=       53
+	        yMin=       -13
+
+	    53. Pel Height= 60
+	        yMax=       54
+	        yMin=       -13
+
+	    54. Pel Height= 61
+	        yMax=       55
+	        yMin=       -13
+
+	    55. Pel Height= 62
+	        yMax=       56
+	        yMin=       -13
+
+	    56. Pel Height= 63
+	        yMax=       57
+	        yMin=       -14
+
+	    57. Pel Height= 64
+	        yMax=       58
+	        yMin=       -14
+
+	    58. Pel Height= 65
+	        yMax=       59
+	        yMin=       -14
+
+	    59. Pel Height= 66
+	        yMax=       60
+	        yMin=       -14
+
+	    60. Pel Height= 67
+	        yMax=       60
+	        yMin=       -15
+
+	    61. Pel Height= 68
+	        yMax=       61
+	        yMin=       -15
+
+	    62. Pel Height= 69
+	        yMax=       62
+	        yMin=       -15
+
+	    63. Pel Height= 70
+	        yMax=       63
+	        yMin=       -16
+
+	    64. Pel Height= 71
+	        yMax=       64
+	        yMin=       -16
+
+	    65. Pel Height= 72
+	        yMax=       65
+	        yMin=       -16
+
+	    66. Pel Height= 73
+	        yMax=       66
+	        yMin=       -16
+
+	    67. Pel Height= 74
+	        yMax=       66
+	        yMin=       -16
+
+	    68. Pel Height= 75
+	        yMax=       67
+	        yMin=       -16
+
+	    69. Pel Height= 76
+	        yMax=       68
+	        yMin=       -16
+
+	    70. Pel Height= 77
+	        yMax=       70
+	        yMin=       -17
+
+	    71. Pel Height= 78
+	        yMax=       70
+	        yMin=       -17
+
+	    72. Pel Height= 79
+	        yMax=       71
+	        yMin=       -17
+
+	    73. Pel Height= 80
+	        yMax=       72
+	        yMin=       -17
+
+	    74. Pel Height= 81
+	        yMax=       73
+	        yMin=       -18
+
+	    75. Pel Height= 82
+	        yMax=       73
+	        yMin=       -18
+
+	    76. Pel Height= 83
+	        yMax=       74
+	        yMin=       -18
+
+	    77. Pel Height= 84
+	        yMax=       75
+	        yMin=       -19
+
+	    78. Pel Height= 85
+	        yMax=       77
+	        yMin=       -19
+
+	    79. Pel Height= 86
+	        yMax=       77
+	        yMin=       -19
+
+	    80. Pel Height= 87
+	        yMax=       78
+	        yMin=       -19
+
+	    81. Pel Height= 88
+	        yMax=       79
+	        yMin=       -20
+
+	    82. Pel Height= 89
+	        yMax=       80
+	        yMin=       -20
+
+	    83. Pel Height= 90
+	        yMax=       80
+	        yMin=       -19
+
+	    84. Pel Height= 91
+	        yMax=       81
+	        yMin=       -20
+
+	    85. Pel Height= 92
+	        yMax=       83
+	        yMin=       -20
+
+	    86. Pel Height= 93
+	        yMax=       84
+	        yMin=       -20
+
+	    87. Pel Height= 94
+	        yMax=       84
+	        yMin=       -20
+
+	    88. Pel Height= 95
+	        yMax=       85
+	        yMin=       -21
+
+	    89. Pel Height= 96
+	        yMax=       86
+	        yMin=       -21
+
+	    90. Pel Height= 97
+	        yMax=       87
+	        yMin=       -21
+
+	    91. Pel Height= 98
+	        yMax=       87
+	        yMin=       -21
+
+	    92. Pel Height= 99
+	        yMax=       89
+	        yMin=       -22
+
+	    93. Pel Height= 100
+	        yMax=       90
+	        yMin=       -22
+
+	    94. Pel Height= 101
+	        yMax=       91
+	        yMin=       -22
+
+	    95. Pel Height= 102
+	        yMax=       92
+	        yMin=       -23
+
+	    96. Pel Height= 103
+	        yMax=       92
+	        yMin=       -23
+
+	    97. Pel Height= 104
+	        yMax=       93
+	        yMin=       -23
+
+	    98. Pel Height= 105
+	        yMax=       94
+	        yMin=       -23
+
+	    99. Pel Height= 106
+	        yMax=       96
+	        yMin=       -23
+
+	   100. Pel Height= 107
+	        yMax=       96
+	        yMin=       -23
+
+	   101. Pel Height= 108
+	        yMax=       97
+	        yMin=       -23
+
+	   102. Pel Height= 109
+	        yMax=       98
+	        yMin=       -23
+
+	   103. Pel Height= 110
+	        yMax=       99
+	        yMin=       -24
+
+	   104. Pel Height= 111
+	        yMax=       99
+	        yMin=       -24
+
+	   105. Pel Height= 112
+	        yMax=       100
+	        yMin=       -24
+
+	   106. Pel Height= 113
+	        yMax=       101
+	        yMin=       -25
+
+	   107. Pel Height= 114
+	        yMax=       103
+	        yMin=       -25
+
+	   108. Pel Height= 115
+	        yMax=       103
+	        yMin=       -25
+
+	   109. Pel Height= 116
+	        yMax=       104
+	        yMin=       -25
+
+	   110. Pel Height= 117
+	        yMax=       105
+	        yMin=       -26
+
+	   111. Pel Height= 118
+	        yMax=       106
+	        yMin=       -26
+
+	   112. Pel Height= 119
+	        yMax=       106
+	        yMin=       -26
+
+	   113. Pel Height= 120
+	        yMax=       107
+	        yMin=       -27
+
+	   114. Pel Height= 121
+	        yMax=       109
+	        yMin=       -27
+
+	   115. Pel Height= 122
+	        yMax=       110
+	        yMin=       -27
+
+	   116. Pel Height= 123
+	        yMax=       110
+	        yMin=       -27
+
+	   117. Pel Height= 124
+	        yMax=       111
+	        yMin=       -27
+
+	   118. Pel Height= 125
+	        yMax=       112
+	        yMin=       -28
+
+	   119. Pel Height= 126
+	        yMax=       113
+	        yMin=       -28
+
+	   120. Pel Height= 127
+	        yMax=       114
+	        yMin=       -28
+
+	   121. Pel Height= 128
+	        yMax=       115
+	        yMin=       -28
+
+	   122. Pel Height= 129
+	        yMax=       116
+	        yMin=       -28
+
+	   123. Pel Height= 130
+	        yMax=       117
+	        yMin=       -29
+
+	   124. Pel Height= 131
+	        yMax=       118
+	        yMin=       -29
+
+	   125. Pel Height= 132
+	        yMax=       118
+	        yMin=       -29
+
+	   126. Pel Height= 133
+	        yMax=       119
+	        yMin=       -29
+
+	   127. Pel Height= 134
+	        yMax=       120
+	        yMin=       -29
+
+	   128. Pel Height= 135
+	        yMax=       121
+	        yMin=       -30
+
+	   129. Pel Height= 136
+	        yMax=       122
+	        yMin=       -30
+
+	   130. Pel Height= 137
+	        yMax=       123
+	        yMin=       -30
+
+	   131. Pel Height= 138
+	        yMax=       124
+	        yMin=       -30
+
+	   132. Pel Height= 139
+	        yMax=       125
+	        yMin=       -30
+
+	   133. Pel Height= 140
+	        yMax=       125
+	        yMin=       -30
+
+	   134. Pel Height= 141
+	        yMax=       126
+	        yMin=       -30
+
+	   135. Pel Height= 142
+	        yMax=       127
+	        yMin=       -30
+
+	   136. Pel Height= 143
+	        yMax=       129
+	        yMin=       -31
+
+	   137. Pel Height= 144
+	        yMax=       129
+	        yMin=       -31
+
+	   138. Pel Height= 145
+	        yMax=       130
+	        yMin=       -32
+
+	   139. Pel Height= 146
+	        yMax=       131
+	        yMin=       -32
+
+	   140. Pel Height= 147
+	        yMax=       132
+	        yMin=       -32
+
+	   141. Pel Height= 148
+	        yMax=       132
+	        yMin=       -32
+
+	   142. Pel Height= 149
+	        yMax=       133
+	        yMin=       -32
+
+	   143. Pel Height= 150
+	        yMax=       135
+	        yMin=       -33
+
+	   144. Pel Height= 151
+	        yMax=       136
+	        yMin=       -32
+
+	   145. Pel Height= 152
+	        yMax=       136
+	        yMin=       -33
+
+	   146. Pel Height= 153
+	        yMax=       137
+	        yMin=       -33
+
+	   147. Pel Height= 154
+	        yMax=       138
+	        yMin=       -34
+
+	   148. Pel Height= 155
+	        yMax=       139
+	        yMin=       -34
+
+	   149. Pel Height= 156
+	        yMax=       140
+	        yMin=       -34
+
+	   150. Pel Height= 157
+	        yMax=       140
+	        yMin=       -34
+
+	   151. Pel Height= 158
+	        yMax=       142
+	        yMin=       -34
+
+	   152. Pel Height= 159
+	        yMax=       143
+	        yMin=       -34
+
+	   153. Pel Height= 160
+	        yMax=       144
+	        yMin=       -34
+
+	   154. Pel Height= 161
+	        yMax=       144
+	        yMin=       -35
+
+	   155. Pel Height= 162
+	        yMax=       145
+	        yMin=       -35
+
+	   156. Pel Height= 163
+	        yMax=       146
+	        yMin=       -35
+
+	   157. Pel Height= 164
+	        yMax=       147
+	        yMin=       -35
+
+	   158. Pel Height= 165
+	        yMax=       148
+	        yMin=       -36
+
+	   159. Pel Height= 166
+	        yMax=       149
+	        yMin=       -37
+
+	   160. Pel Height= 167
+	        yMax=       150
+	        yMin=       -37
+
+	   161. Pel Height= 168
+	        yMax=       151
+	        yMin=       -37
+
+	   162. Pel Height= 169
+	        yMax=       151
+	        yMin=       -37
+
+	   163. Pel Height= 170
+	        yMax=       152
+	        yMin=       -37
+
+	   164. Pel Height= 171
+	        yMax=       153
+	        yMin=       -37
+
+	   165. Pel Height= 172
+	        yMax=       155
+	        yMin=       -37
+
+	   166. Pel Height= 173
+	        yMax=       155
+	        yMin=       -37
+
+	   167. Pel Height= 174
+	        yMax=       156
+	        yMin=       -37
+
+	   168. Pel Height= 175
+	        yMax=       157
+	        yMin=       -37
+
+	   169. Pel Height= 176
+	        yMax=       158
+	        yMin=       -37
+
+	   170. Pel Height= 177
+	        yMax=       158
+	        yMin=       -38
+
+	   171. Pel Height= 178
+	        yMax=       159
+	        yMin=       -38
+
+	   172. Pel Height= 179
+	        yMax=       160
+	        yMin=       -39
+
+	   173. Pel Height= 180
+	        yMax=       162
+	        yMin=       -39
+
+	   174. Pel Height= 181
+	        yMax=       163
+	        yMin=       -40
+
+	   175. Pel Height= 182
+	        yMax=       163
+	        yMin=       -40
+
+	   176. Pel Height= 183
+	        yMax=       164
+	        yMin=       -40
+
+	   177. Pel Height= 184
+	        yMax=       165
+	        yMin=       -40
+
+	   178. Pel Height= 185
+	        yMax=       166
+	        yMin=       -40
+
+	   179. Pel Height= 186
+	        yMax=       166
+	        yMin=       -40
+
+	   180. Pel Height= 187
+	        yMax=       168
+	        yMin=       -40
+
+	   181. Pel Height= 188
+	        yMax=       169
+	        yMin=       -41
+
+	   182. Pel Height= 189
+	        yMax=       170
+	        yMin=       -41
+
+	   183. Pel Height= 190
+	        yMax=       170
+	        yMin=       -41
+
+	   184. Pel Height= 191
+	        yMax=       171
+	        yMin=       -41
+
+	   185. Pel Height= 192
+	        yMax=       172
+	        yMin=       -41
+
+	   186. Pel Height= 193
+	        yMax=       173
+	        yMin=       -41
+
+	   187. Pel Height= 194
+	        yMax=       174
+	        yMin=       -41
+
+	   188. Pel Height= 195
+	        yMax=       175
+	        yMin=       -42
+
+	   189. Pel Height= 196
+	        yMax=       176
+	        yMin=       -42
+
+	   190. Pel Height= 197
+	        yMax=       177
+	        yMin=       -43
+
+	   191. Pel Height= 198
+	        yMax=       177
+	        yMin=       -43
+
+	   192. Pel Height= 199
+	        yMax=       178
+	        yMin=       -44
+
+	   193. Pel Height= 200
+	        yMax=       179
+	        yMin=       -44
+
+	   194. Pel Height= 201
+	        yMax=       180
+	        yMin=       -44
+
+	   195. Pel Height= 202
+	        yMax=       181
+	        yMin=       -44
+
+	   196. Pel Height= 203
+	        yMax=       182
+	        yMin=       -44
+
+	   197. Pel Height= 204
+	        yMax=       183
+	        yMin=       -44
+
+	   198. Pel Height= 205
+	        yMax=       184
+	        yMin=       -44
+
+	   199. Pel Height= 206
+	        yMax=       185
+	        yMin=       -44
+
+	   200. Pel Height= 207
+	        yMax=       185
+	        yMin=       -44
+
+	   201. Pel Height= 208
+	        yMax=       186
+	        yMin=       -44
+
+	   202. Pel Height= 209
+	        yMax=       188
+	        yMin=       -44
+
+	   203. Pel Height= 210
+	        yMax=       189
+	        yMin=       -45
+
+	   204. Pel Height= 211
+	        yMax=       189
+	        yMin=       -46
+
+	   205. Pel Height= 212
+	        yMax=       190
+	        yMin=       -46
+
+	   206. Pel Height= 213
+	        yMax=       191
+	        yMin=       -46
+
+	   207. Pel Height= 214
+	        yMax=       192
+	        yMin=       -47
+
+	   208. Pel Height= 215
+	        yMax=       192
+	        yMin=       -47
+
+	   209. Pel Height= 216
+	        yMax=       194
+	        yMin=       -47
+
+	   210. Pel Height= 217
+	        yMax=       195
+	        yMin=       -47
+
+	   211. Pel Height= 218
+	        yMax=       196
+	        yMin=       -47
+
+	   212. Pel Height= 219
+	        yMax=       196
+	        yMin=       -47
+
+	   213. Pel Height= 220
+	        yMax=       197
+	        yMin=       -47
+
+	   214. Pel Height= 221
+	        yMax=       198
+	        yMin=       -47
+
+	   215. Pel Height= 222
+	        yMax=       199
+	        yMin=       -48
+
+	   216. Pel Height= 223
+	        yMax=       200
+	        yMin=       -48
+
+	   217. Pel Height= 224
+	        yMax=       201
+	        yMin=       -49
+
+	   218. Pel Height= 225
+	        yMax=       202
+	        yMin=       -49
+
+	   219. Pel Height= 226
+	        yMax=       203
+	        yMin=       -49
+
+	   220. Pel Height= 227
+	        yMax=       203
+	        yMin=       -49
+
+	   221. Pel Height= 228
+	        yMax=       204
+	        yMin=       -49
+
+	   222. Pel Height= 229
+	        yMax=       205
+	        yMin=       -49
+
+	   223. Pel Height= 230
+	        yMax=       206
+	        yMin=       -49
+
+	   224. Pel Height= 231
+	        yMax=       208
+	        yMin=       -50
+
+	   225. Pel Height= 232
+	        yMax=       208
+	        yMin=       -50
+
+	   226. Pel Height= 233
+	        yMax=       209
+	        yMin=       -50
+
+	   227. Pel Height= 234
+	        yMax=       210
+	        yMin=       -51
+
+	   228. Pel Height= 235
+	        yMax=       211
+	        yMin=       -51
+
+	   229. Pel Height= 236
+	        yMax=       211
+	        yMin=       -51
+
+	   230. Pel Height= 237
+	        yMax=       212
+	        yMin=       -51
+
+	   231. Pel Height= 238
+	        yMax=       214
+	        yMin=       -52
+
+	   232. Pel Height= 239
+	        yMax=       215
+	        yMin=       -52
+
+	   233. Pel Height= 240
+	        yMax=       215
+	        yMin=       -52
+
+	   234. Pel Height= 241
+	        yMax=       216
+	        yMin=       -52
+
+	   235. Pel Height= 242
+	        yMax=       217
+	        yMin=       -52
+
+	   236. Pel Height= 243
+	        yMax=       218
+	        yMin=       -52
+
+	   237. Pel Height= 244
+	        yMax=       218
+	        yMin=       -52
+
+	   238. Pel Height= 245
+	        yMax=       220
+	        yMin=       -53
+
+	   239. Pel Height= 246
+	        yMax=       221
+	        yMin=       -53
+
+	   240. Pel Height= 247
+	        yMax=       222
+	        yMin=       -53
+
+	   241. Pel Height= 248
+	        yMax=       222
+	        yMin=       -54
+
+	   242. Pel Height= 249
+	        yMax=       223
+	        yMin=       -54
+
+	   243. Pel Height= 250
+	        yMax=       224
+	        yMin=       -54
+
+	   244. Pel Height= 251
+	        yMax=       225
+	        yMin=       -54
+
+	   245. Pel Height= 252
+	        yMax=       225
+	        yMin=       -54
+
+	   246. Pel Height= 253
+	        yMax=       227
+	        yMin=       -55
+
+	   247. Pel Height= 254
+	        yMax=       228
+	        yMin=       -55
+
+	   248. Pel Height= 255
+	        yMax=       229
+	        yMin=       -55
+
+
+
+'LTSH' Table - Linear Threshold Table
+-------------------------------------
+Size = 1324 bytes
+ 'LTSH' Version:          0
+ Number of Glyphs:        1320
+
+   Glyph #   Threshold
+   -------   ---------
+        0.           7
+        1.           1
+        2.           1
+        3.           1
+        4.         171
+        5.           6
+        6.           6
+        7.           6
+        8.           5
+        9.           5
+       10.           6
+       11.           6
+       12.           6
+       13.           6
+       14.           7
+       15.           7
+       16.           6
+       17.           7
+       18.           7
+       19.           6
+       20.           6
+       21.           6
+       22.           6
+       23.           6
+       24.           6
+       25.           6
+       26.           6
+       27.           6
+       28.           6
+       29.           7
+       30.           7
+       31.           7
+       32.           7
+       33.           7
+       34.           6
+       35.           1
+       36.          37
+       37.           5
+       38.          12
+       39.          12
+       40.          12
+       41.          12
+       42.          18
+       43.          28
+       44.          62
+       45.          28
+       46.           5
+       47.           6
+       48.         117
+       49.          28
+       50.          18
+       51.          28
+       52.          18
+       53.          18
+       54.           5
+       55.         154
+       56.          28
+       57.          31
+       58.         133
+       59.         224
+       60.         150
+       61.          18
+       62.           7
+       63.           7
+       64.           7
+       65.         194
+       66.           6
+       67.           6
+       68.          38
+       69.          53
+       70.           6
+       71.          35
+       72.          39
+       73.         101
+       74.          83
+       75.          55
+       76.          57
+       77.         229
+       78.          93
+       79.          57
+       80.         113
+       81.          55
+       82.          36
+       83.          53
+       84.          83
+       85.           6
+       86.          43
+       87.          18
+       88.          55
+       89.         198
+       90.         164
+       91.         213
+       92.         196
+       93.          99
+       94.           6
+       95.         254
+       96.           6
+       97.           7
+       98.           5
+       99.           5
+      100.           6
+      101.           5
+      102.           6
+      103.           7
+      104.           6
+      105.           6
+      106.           6
+      107.           6
+      108.           6
+      109.           6
+      110.           6
+      111.           6
+      112.           6
+      113.           6
+      114.           6
+      115.           6
+      116.           7
+      117.           7
+      118.           7
+      119.           7
+      120.           6
+      121.           6
+      122.           6
+      123.           6
+      124.           6
+      125.           6
+      126.           6
+      127.           6
+      128.           6
+      129.           6
+      130.           6
+      131.           5
+      132.           6
+      133.           6
+      134.           6
+      135.           6
+      136.           6
+      137.          17
+      138.           6
+      139.           6
+      140.           1
+      141.           6
+      142.           6
+      143.           6
+      144.           1
+      145.          12
+      146.           6
+      147.           6
+      148.           6
+      149.           6
+      150.           6
+      151.          24
+      152.          12
+      153.          12
+      154.           1
+      155.           6
+      156.         255
+      157.          22
+      158.          24
+      159.           1
+      160.           5
+      161.          41
+      162.          12
+      163.         225
+      164.           7
+      165.          82
+      166.           6
+      167.          12
+      168.          77
+      169.           6
+      170.           6
+      171.           1
+      172.           5
+      173.           5
+      174.           7
+      175.          17
+      176.           7
+      177.           6
+      178.           1
+      179.          20
+      180.          20
+      181.           5
+      182.           5
+      183.           6
+      184.           2
+      185.           6
+      186.           5
+      187.           1
+      188.           6
+      189.           6
+      190.           7
+      191.           1
+      192.           1
+      193.           6
+      194.           7
+      195.           5
+      196.          20
+      197.          95
+      198.           5
+      199.           5
+      200.           5
+      201.           5
+      202.           5
+      203.           7
+      204.           7
+      205.           7
+      206.           7
+      207.           7
+      208.           7
+      209.           7
+      210.           6
+      211.           6
+      212.           6
+      213.         255
+      214.           6
+      215.         252
+      216.           1
+      217.           1
+      218.           1
+      219.           1
+      220.           6
+      221.           1
+      222.           1
+      223.           1
+      224.           1
+      225.          25
+      226.           5
+      227.           6
+      228.          28
+      229.          99
+      230.         254
+      231.           6
+      232.           6
+      233.           5
+      234.           6
+      235.           5
+      236.           6
+      237.           1
+      238.           7
+      239.           6
+      240.           6
+      241.           6
+      242.          12
+      243.           4
+      244.          12
+      245.           1
+      246.          18
+      247.          83
+      248.          62
+      249.           1
+      250.          43
+      251.          46
+      252.          11
+      253.          46
+      254.          11
+      255.          45
+      256.           6
+      257.           6
+      258.          37
+      259.          38
+      260.          37
+      261.          38
+      262.          46
+      263.           1
+      264.          46
+      265.          12
+      266.          39
+      267.          12
+      268.          39
+      269.           1
+      270.          57
+      271.           1
+      272.          37
+      273.           1
+      274.           1
+      275.          46
+      276.          55
+      277.          46
+      278.          55
+      279.          18
+      280.          36
+      281.          46
+      282.           1
+      283.          46
+      284.           1
+      285.           1
+      286.          43
+      287.         154
+      288.         254
+      289.         154
+      290.           1
+      291.          46
+      292.          55
+      293.          46
+      294.          55
+      295.          28
+      296.          99
+      297.          28
+      298.          99
+      299.           1
+      300.          18
+      301.          48
+      302.          11
+      303.          45
+      304.          38
+      305.          18
+      306.          30
+      307.          30
+      308.          20
+      309.           1
+      310.          38
+      311.          50
+      312.           1
+      313.           1
+      314.           1
+      315.           1
+      316.           1
+      317.           1
+      318.           1
+      319.          25
+      320.           1
+      321.           1
+      322.          25
+      323.           1
+      324.          25
+      325.          25
+      326.           1
+      327.           1
+      328.           1
+      329.           1
+      330.           1
+      331.           1
+      332.           1
+      333.           1
+      334.           1
+      335.           1
+      336.           1
+      337.           1
+      338.           1
+      339.           1
+      340.           1
+      341.           1
+      342.           1
+      343.           1
+      344.           1
+      345.           1
+      346.           1
+      347.           1
+      348.           1
+      349.           1
+      350.           1
+      351.           1
+      352.           1
+      353.           1
+      354.           1
+      355.           1
+      356.           1
+      357.           1
+      358.           1
+      359.           1
+      360.           1
+      361.           1
+      362.           1
+      363.           1
+      364.           1
+      365.           1
+      366.           1
+      367.           1
+      368.           1
+      369.           1
+      370.           1
+      371.           1
+      372.           1
+      373.          25
+      374.          25
+      375.           1
+      376.          50
+      377.          50
+      378.          50
+      379.          50
+      380.          25
+      381.          25
+      382.          25
+      383.           1
+      384.           1
+      385.          43
+      386.           1
+      387.           1
+      388.           1
+      389.           1
+      390.           1
+      391.          49
+      392.           1
+      393.           1
+      394.          18
+      395.           1
+      396.          25
+      397.           1
+      398.          25
+      399.          49
+      400.          18
+      401.          25
+      402.           1
+      403.           1
+      404.          25
+      405.           1
+      406.          37
+      407.          38
+      408.          46
+      409.          11
+      410.          46
+      411.          11
+      412.          12
+      413.          39
+      414.          12
+      415.          39
+      416.          12
+      417.          39
+      418.          18
+      419.          83
+      420.          18
+      421.          83
+      422.          18
+      423.           1
+      424.          46
+      425.          55
+      426.          46
+      427.          55
+      428.          62
+      429.         255
+      430.          62
+      431.         255
+      432.          62
+      433.         255
+      434.          62
+      435.          57
+      436.          28
+      437.         229
+      438.           1
+      439.          93
+      440.          24
+      441.           1
+      442.          57
+      443.          46
+      444.          55
+      445.           1
+      446.           1
+      447.          18
+      448.          36
+      449.          18
+      450.          36
+      451.          46
+      452.           1
+      453.           1
+      454.          43
+      455.          28
+      456.          18
+      457.          46
+      458.          55
+      459.          46
+      460.          55
+      461.          46
+      462.          55
+      463.          46
+      464.          55
+      465.         133
+      466.         164
+      467.         149
+      468.         196
+      469.          57
+      470.          37
+      471.          38
+      472.           1
+      473.           1
+      474.          12
+      475.          41
+      476.         255
+      477.         133
+      478.         164
+      479.         133
+      480.         164
+      481.         133
+      482.         164
+      483.         149
+      484.         196
+      485.           1
+      486.           1
+      487.           1
+      488.          12
+      489.          12
+      490.          12
+      491.          12
+      492.          12
+      493.           1
+      494.           1
+      495.           1
+      496.           1
+      497.          37
+      498.           1
+      499.          22
+      500.          18
+      501.           1
+      502.         130
+      503.          20
+      504.         221
+      505.          37
+      506.           1
+      507.          13
+      508.          12
+      509.          28
+      510.          46
+      511.          62
+      512.           1
+      513.          16
+      514.         117
+      515.          46
+      516.          31
+      517.          18
+      518.          46
+      519.          28
+      520.           1
+      521.         154
+      522.         149
+      523.          77
+      524.          39
+      525.          15
+      526.          62
+      527.         149
+      528.          11
+      529.          38
+      530.          41
+      531.         221
+      532.          41
+      533.           1
+      534.          30
+      535.          18
+      536.          41
+      537.          36
+      538.         221
+      539.          24
+      540.          21
+      541.          24
+      542.         198
+      543.          49
+      544.          36
+      545.          36
+      546.          36
+      547.          41
+      548.          21
+      549.          40
+      550.          42
+      551.         221
+      552.          41
+      553.          36
+      554.          41
+      555.          42
+      556.          12
+      557.           1
+      558.          37
+      559.          12
+      560.           1
+      561.          62
+      562.          62
+      563.          28
+      564.           1
+      565.          49
+      566.          55
+      567.          12
+      568.          49
+      569.          27
+      570.          37
+      571.          36
+      572.           1
+      573.          37
+      574.          12
+      575.          12
+      576.          24
+      577.          25
+      578.          12
+      579.          12
+      580.          12
+      581.          18
+      582.         117
+      583.          46
+      584.          18
+      585.          28
+      586.          28
+      587.          46
+      588.         154
+      589.          49
+      590.          49
+      591.          77
+      592.          26
+      593.          28
+      594.          43
+      595.          20
+      596.          37
+      597.          49
+      598.          20
+      599.           1
+      600.          49
+      601.          46
+      602.          38
+      603.          49
+      604.          36
+      605.          38
+      606.           1
+      607.          39
+      608.          40
+      609.          11
+      610.          55
+      611.          55
+      612.          13
+      613.          55
+      614.          22
+      615.          55
+      616.          36
+      617.          55
+      618.          53
+      619.          11
+      620.          20
+      621.         196
+      622.          49
+      623.         213
+      624.          49
+      625.           1
+      626.          44
+      627.          49
+      628.          36
+      629.           1
+      630.          42
+      631.          49
+      632.           1
+      633.          37
+      634.          39
+      635.          55
+      636.          38
+      637.          49
+      638.          43
+      639.          57
+      640.         255
+      641.         223
+      642.          36
+      643.          36
+      644.          55
+      645.          13
+      646.         196
+      647.          55
+      648.           1
+      649.           1
+      650.           1
+      651.          49
+      652.          12
+      653.           1
+      654.           1
+      655.           1
+      656.           1
+      657.           1
+      658.           1
+      659.           1
+      660.           1
+      661.           1
+      662.           1
+      663.           1
+      664.           1
+      665.           1
+      666.           1
+      667.           1
+      668.         179
+      669.           1
+      670.           1
+      671.           1
+      672.           1
+      673.           1
+      674.          12
+      675.           1
+      676.           1
+      677.         247
+      678.          18
+      679.           1
+      680.          12
+      681.         247
+      682.           1
+      683.           1
+      684.          28
+      685.           1
+      686.           1
+      687.         247
+      688.          12
+      689.          12
+      690.           1
+      691.          16
+      692.          44
+      693.          12
+      694.          12
+      695.          31
+      696.           1
+      697.          19
+      698.          22
+      699.         194
+      700.         194
+      701.         194
+      702.           1
+      703.           1
+      704.         202
+      705.         247
+      706.           1
+      707.           1
+      708.          28
+      709.          28
+      710.          15
+      711.          19
+      712.          19
+      713.          19
+      714.          19
+      715.           1
+      716.           1
+      717.           1
+      718.           1
+      719.          12
+      720.           1
+      721.           1
+      722.           1
+      723.          11
+      724.          12
+      725.           1
+      726.           1
+      727.           1
+      728.          28
+      729.           1
+      730.          12
+      731.          12
+      732.          16
+      733.          44
+      734.          12
+      735.          31
+      736.           1
+      737.          19
+      738.          22
+      739.         247
+      740.           1
+      741.           1
+      742.          44
+      743.           1
+      744.           1
+      745.           1
+      746.           1
+      747.           1
+      748.           1
+      749.           1
+      750.           8
+      751.           1
+      752.           1
+      753.           1
+      754.          20
+      755.           1
+      756.           1
+      757.          32
+      758.           1
+      759.          27
+      760.           4
+      761.           1
+      762.           1
+      763.           1
+      764.           1
+      765.           1
+      766.           1
+      767.           1
+      768.           1
+      769.           1
+      770.           1
+      771.           1
+      772.           1
+      773.           1
+      774.           1
+      775.           1
+      776.           1
+      777.           1
+      778.           1
+      779.           1
+      780.           1
+      781.           1
+      782.           1
+      783.           1
+      784.           1
+      785.           1
+      786.          27
+      787.           1
+      788.           1
+      789.           1
+      790.           1
+      791.           1
+      792.           1
+      793.           1
+      794.           1
+      795.           1
+      796.           1
+      797.           1
+      798.           1
+      799.           1
+      800.           1
+      801.          44
+      802.          44
+      803.           1
+      804.           1
+      805.           1
+      806.           1
+      807.           1
+      808.           1
+      809.           1
+      810.           1
+      811.           1
+      812.           1
+      813.           9
+      814.           1
+      815.           1
+      816.          35
+      817.           9
+      818.           1
+      819.           1
+      820.          35
+      821.           1
+      822.           1
+      823.           1
+      824.           1
+      825.           1
+      826.           1
+      827.           1
+      828.           1
+      829.           1
+      830.           1
+      831.           1
+      832.           1
+      833.           1
+      834.           1
+      835.           1
+      836.           1
+      837.           1
+      838.           1
+      839.          43
+      840.          27
+      841.          27
+      842.          27
+      843.          27
+      844.           1
+      845.           1
+      846.           1
+      847.           1
+      848.           1
+      849.           1
+      850.           1
+      851.           1
+      852.           1
+      853.           1
+      854.           1
+      855.           1
+      856.           1
+      857.           1
+      858.           1
+      859.           1
+      860.           1
+      861.           1
+      862.          12
+      863.           1
+      864.           1
+      865.           1
+      866.           1
+      867.           1
+      868.           1
+      869.           1
+      870.           1
+      871.           1
+      872.           1
+      873.           1
+      874.           1
+      875.           1
+      876.           1
+      877.           1
+      878.           1
+      879.           1
+      880.           1
+      881.           1
+      882.           1
+      883.           1
+      884.           1
+      885.           1
+      886.           1
+      887.           1
+      888.           1
+      889.           1
+      890.           1
+      891.           1
+      892.           1
+      893.           1
+      894.           1
+      895.          44
+      896.           1
+      897.           1
+      898.           1
+      899.           1
+      900.           1
+      901.           1
+      902.           1
+      903.           1
+      904.           1
+      905.           1
+      906.           1
+      907.          44
+      908.          44
+      909.           1
+      910.           1
+      911.           1
+      912.           1
+      913.          44
+      914.          44
+      915.           1
+      916.           1
+      917.           1
+      918.           1
+      919.          44
+      920.          44
+      921.           1
+      922.           1
+      923.          44
+      924.          44
+      925.           1
+      926.           1
+      927.           1
+      928.           1
+      929.           1
+      930.           1
+      931.           1
+      932.           1
+      933.           1
+      934.           1
+      935.           1
+      936.           1
+      937.          41
+      938.          41
+      939.          41
+      940.          41
+      941.           1
+      942.           1
+      943.           1
+      944.           1
+      945.          43
+      946.          43
+      947.          17
+      948.          17
+      949.          43
+      950.          43
+      951.          17
+      952.          17
+      953.           1
+      954.           1
+      955.           1
+      956.           1
+      957.           1
+      958.           1
+      959.           1
+      960.           1
+      961.          50
+      962.          50
+      963.          50
+      964.          50
+      965.          50
+      966.          50
+      967.          50
+      968.          50
+      969.          35
+      970.           1
+      971.           1
+      972.           1
+      973.          35
+      974.           1
+      975.           1
+      976.           1
+      977.           1
+      978.           1
+      979.          29
+      980.           1
+      981.          50
+      982.          50
+      983.          29
+      984.           1
+      985.           1
+      986.           1
+      987.           1
+      988.           1
+      989.           1
+      990.           1
+      991.           1
+      992.           1
+      993.           1
+      994.           1
+      995.           1
+      996.           1
+      997.           1
+      998.           1
+      999.          44
+     1000.          44
+     1001.           1
+     1002.           1
+     1003.           1
+     1004.           1
+     1005.           1
+     1006.           1
+     1007.           1
+     1008.           1
+     1009.           1
+     1010.           1
+     1011.          44
+     1012.          44
+     1013.          35
+     1014.           1
+     1015.          35
+     1016.           1
+     1017.          35
+     1018.           1
+     1019.          35
+     1020.           1
+     1021.           1
+     1022.           1
+     1023.           1
+     1024.           1
+     1025.           1
+     1026.           1
+     1027.           1
+     1028.           4
+     1029.          27
+     1030.           1
+     1031.           1
+     1032.          32
+     1033.          20
+     1034.           1
+     1035.           1
+     1036.           1
+     1037.          27
+     1038.          27
+     1039.          27
+     1040.          27
+     1041.          27
+     1042.          43
+     1043.           1
+     1044.           1
+     1045.           1
+     1046.           1
+     1047.           1
+     1048.           1
+     1049.           1
+     1050.           1
+     1051.           1
+     1052.           1
+     1053.           1
+     1054.           1
+     1055.           1
+     1056.           1
+     1057.           1
+     1058.           1
+     1059.           1
+     1060.           1
+     1061.           1
+     1062.           1
+     1063.           1
+     1064.           1
+     1065.           1
+     1066.           1
+     1067.           1
+     1068.           1
+     1069.           1
+     1070.           1
+     1071.           1
+     1072.           1
+     1073.           1
+     1074.           1
+     1075.           1
+     1076.           1
+     1077.           1
+     1078.           1
+     1079.           1
+     1080.           1
+     1081.           1
+     1082.           1
+     1083.           1
+     1084.           1
+     1085.           1
+     1086.           1
+     1087.           1
+     1088.           1
+     1089.           1
+     1090.           1
+     1091.           1
+     1092.           1
+     1093.           1
+     1094.           1
+     1095.           1
+     1096.           1
+     1097.           1
+     1098.           1
+     1099.           1
+     1100.           1
+     1101.           1
+     1102.           1
+     1103.           1
+     1104.           1
+     1105.           1
+     1106.           1
+     1107.           1
+     1108.           1
+     1109.           1
+     1110.           1
+     1111.           1
+     1112.           1
+     1113.           1
+     1114.           1
+     1115.           1
+     1116.           1
+     1117.           1
+     1118.           1
+     1119.           1
+     1120.           1
+     1121.           1
+     1122.           1
+     1123.           1
+     1124.           1
+     1125.           1
+     1126.           1
+     1127.           1
+     1128.           1
+     1129.           1
+     1130.           1
+     1131.          17
+     1132.          25
+     1133.           1
+     1134.           1
+     1135.           1
+     1136.           1
+     1137.           1
+     1138.           1
+     1139.           1
+     1140.           1
+     1141.           1
+     1142.           1
+     1143.           1
+     1144.           1
+     1145.           1
+     1146.           1
+     1147.           1
+     1148.           1
+     1149.           1
+     1150.           1
+     1151.           1
+     1152.           1
+     1153.           1
+     1154.           1
+     1155.           1
+     1156.           1
+     1157.           1
+     1158.           1
+     1159.           1
+     1160.           1
+     1161.           1
+     1162.           1
+     1163.           1
+     1164.           1
+     1165.           1
+     1166.           1
+     1167.           1
+     1168.           1
+     1169.           1
+     1170.           1
+     1171.           1
+     1172.           1
+     1173.           1
+     1174.           1
+     1175.           1
+     1176.           1
+     1177.           1
+     1178.           1
+     1179.           1
+     1180.           1
+     1181.           1
+     1182.           1
+     1183.           1
+     1184.           1
+     1185.           1
+     1186.           1
+     1187.          57
+     1188.          37
+     1189.          38
+     1190.          37
+     1191.          38
+     1192.          37
+     1193.          38
+     1194.          37
+     1195.          38
+     1196.          37
+     1197.          38
+     1198.          37
+     1199.          38
+     1200.          37
+     1201.          38
+     1202.          37
+     1203.          38
+     1204.          37
+     1205.          38
+     1206.          37
+     1207.          38
+     1208.          37
+     1209.          38
+     1210.          37
+     1211.          38
+     1212.          12
+     1213.          39
+     1214.          12
+     1215.          39
+     1216.          12
+     1217.          39
+     1218.          12
+     1219.          39
+     1220.          12
+     1221.          39
+     1222.          12
+     1223.          39
+     1224.          12
+     1225.          39
+     1226.          12
+     1227.          39
+     1228.          62
+     1229.           7
+     1230.          62
+     1231.          57
+     1232.          18
+     1233.          36
+     1234.          18
+     1235.          36
+     1236.          18
+     1237.          36
+     1238.          18
+     1239.          36
+     1240.          18
+     1241.          36
+     1242.          18
+     1243.          36
+     1244.          18
+     1245.          36
+     1246.           1
+     1247.          17
+     1248.           1
+     1249.          17
+     1250.           1
+     1251.          17
+     1252.           1
+     1253.          17
+     1254.           1
+     1255.          17
+     1256.          28
+     1257.          55
+     1258.          28
+     1259.          55
+     1260.          25
+     1261.           1
+     1262.          25
+     1263.           1
+     1264.          25
+     1265.           1
+     1266.          25
+     1267.           1
+     1268.          25
+     1269.           1
+     1270.         150
+     1271.         196
+     1272.         150
+     1273.         196
+     1274.         150
+     1275.         196
+     1276.          37
+     1277.          38
+     1278.          62
+     1279.          57
+     1280.          18
+     1281.          36
+     1282.          28
+     1283.          55
+     1284.          28
+     1285.          55
+     1286.          28
+     1287.          55
+     1288.          28
+     1289.          55
+     1290.          28
+     1291.          55
+     1292.           0
+     1293.           0
+     1294.           0
+     1295.           0
+     1296.          37
+     1297.          38
+     1298.           1
+     1299.           1
+     1300.           7
+     1301.           1
+     1302.           7
+     1303.           1
+     1304.          46
+     1305.          20
+     1306.           1
+     1307.           1
+     1308.           1
+     1309.           1
+     1310.           1
+     1311.           1
+     1312.           1
+     1313.           1
+     1314.           1
+     1315.           1
+     1316.           1
+     1317.           1
+     1318.           1
+     1319.           1
+
+'hdmx' Table - Horizontal Device Metrics
+----------------------------------------
+Size = 31784 bytes
+	'hdmx' version:		0
+	# device records:	24
+	Record length:		1324
+	DevRec  0: ppem =  11, maxWid =  22
+    0.   8
+    1.   0
+    2.   3
+    3.   3
+    4.   2
+    5.   4
+    6.   6
+    7.   6
+    8.  10
+    9.   7
+   10.   2
+   11.   4
+   12.   4
+   13.   4
+   14.   6
+   15.   3
+   16.   4
+   17.   3
+   18.   3
+   19.   6
+   20.   6
+   21.   6
+   22.   6
+   23.   6
+   24.   6
+   25.   6
+   26.   6
+   27.   6
+   28.   6
+   29.   3
+   30.   3
+   31.   6
+   32.   6
+   33.   6
+   34.   6
+   35.  11
+   36.   8
+   37.   7
+   38.   7
+   39.   7
+   40.   6
+   41.   6
+   42.   8
+   43.   7
+   44.   2
+   45.   5
+   46.   7
+   47.   6
+   48.   8
+   49.   7
+   50.   8
+   51.   6
+   52.   8
+   53.   7
+   54.   7
+   55.   6
+   56.   7
+   57.   8
+   58.  10
+   59.   7
+   60.   8
+   61.   7
+   62.   3
+   63.   3
+   64.   3
+   65.   5
+   66.   6
+   67.   4
+   68.   6
+   69.   6
+   70.   6
+   71.   6
+   72.   6
+   73.   4
+   74.   6
+   75.   6
+   76.   2
+   77.   2
+   78.   5
+   79.   2
+   80.   8
+   81.   6
+   82.   6
+   83.   6
+   84.   6
+   85.   4
+   86.   6
+   87.   3
+   88.   6
+   89.   6
+   90.  10
+   91.   6
+   92.   6
+   93.   6
+   94.   4
+   95.   2
+   96.   4
+   97.   6
+   98.   8
+   99.   8
+  100.   7
+  101.   6
+  102.   7
+  103.   8
+  104.   7
+  105.   6
+  106.   6
+  107.   6
+  108.   6
+  109.   6
+  110.   6
+  111.   6
+  112.   6
+  113.   6
+  114.   6
+  115.   6
+  116.   2
+  117.   2
+  118.   2
+  119.   2
+  120.   6
+  121.   6
+  122.   6
+  123.   6
+  124.   6
+  125.   6
+  126.   6
+  127.   6
+  128.   6
+  129.   6
+  130.   6
+  131.   4
+  132.   6
+  133.   6
+  134.   6
+  135.   4
+  136.   6
+  137.   7
+  138.   8
+  139.   8
+  140.  11
+  141.   4
+  142.   4
+  143.   6
+  144.  11
+  145.   8
+  146.   8
+  147.   6
+  148.   6
+  149.   6
+  150.   6
+  151.   6
+  152.   6
+  153.   7
+  154.   9
+  155.   6
+  156.   3
+  157.   4
+  158.   5
+  159.   8
+  160.  10
+  161.   6
+  162.   6
+  163.   2
+  164.   6
+  165.   7
+  166.   6
+  167.   7
+  168.   6
+  169.   6
+  170.   6
+  171.  11
+  172.   8
+  173.   8
+  174.   8
+  175.  11
+  176.  10
+  177.   6
+  178.  11
+  179.   4
+  180.   4
+  181.   2
+  182.   2
+  183.   6
+  184.   5
+  185.   6
+  186.   8
+  187.   2
+  188.   6
+  189.   4
+  190.   4
+  191.   6
+  192.   6
+  193.   6
+  194.   3
+  195.   2
+  196.   4
+  197.  11
+  198.   8
+  199.   6
+  200.   8
+  201.   6
+  202.   6
+  203.   2
+  204.   2
+  205.   2
+  206.   2
+  207.   8
+  208.   8
+  209.   8
+  210.   7
+  211.   7
+  212.   7
+  213.   2
+  214.   4
+  215.   4
+  216.   4
+  217.   4
+  218.   4
+  219.   4
+  220.   4
+  221.   4
+  222.   4
+  223.   4
+  224.   6
+  225.   2
+  226.   7
+  227.   6
+  228.   7
+  229.   6
+  230.   2
+  231.   8
+  232.   6
+  233.   8
+  234.   6
+  235.   7
+  236.   6
+  237.   6
+  238.   6
+  239.   4
+  240.   4
+  241.   4
+  242.  10
+  243.   9
+  244.  10
+  245.   6
+  246.   8
+  247.   6
+  248.   2
+  249.   7
+  250.   6
+  251.   7
+  252.   6
+  253.   7
+  254.   6
+  255.   6
+  256.   6
+  257.   4
+  258.   8
+  259.   6
+  260.   8
+  261.   6
+  262.   7
+  263.   7
+  264.   8
+  265.   6
+  266.   6
+  267.   6
+  268.   6
+  269.   6
+  270.   2
+  271.   6
+  272.   4
+  273.   6
+  274.   4
+  275.   7
+  276.   6
+  277.   7
+  278.   6
+  279.   8
+  280.   6
+  281.   7
+  282.   4
+  283.   7
+  284.   4
+  285.   7
+  286.   6
+  287.   6
+  288.   3
+  289.   6
+  290.   4
+  291.   7
+  292.   6
+  293.   7
+  294.   6
+  295.   7
+  296.   6
+  297.   7
+  298.   6
+  299.   6
+  300.   8
+  301.   8
+  302.   6
+  303.   6
+  304.   5
+  305.   7
+  306.   4
+  307.   7
+  308.   6
+  309.   6
+  310.   4
+  311.  12
+  312.  11
+  313.   6
+  314.  11
+  315.   6
+  316.  11
+  317.   6
+  318.   6
+  319.  11
+  320.   8
+  321.   6
+  322.   7
+  323.   6
+  324.   7
+  325.   7
+  326.   8
+  327.   7
+  328.   8
+  329.   8
+  330.   8
+  331.   8
+  332.   8
+  333.   8
+  334.   8
+  335.   8
+  336.   8
+  337.   8
+  338.   8
+  339.   8
+  340.   8
+  341.   8
+  342.   8
+  343.   8
+  344.   8
+  345.   8
+  346.   8
+  347.   8
+  348.   8
+  349.   8
+  350.   8
+  351.   8
+  352.   8
+  353.   8
+  354.   8
+  355.   8
+  356.   8
+  357.   8
+  358.   8
+  359.   8
+  360.   8
+  361.   8
+  362.   8
+  363.   8
+  364.   8
+  365.   8
+  366.   8
+  367.   8
+  368.   8
+  369.   8
+  370.   8
+  371.   8
+  372.   8
+  373.   8
+  374.   7
+  375.  11
+  376.  11
+  377.  11
+  378.  11
+  379.  11
+  380.   7
+  381.   7
+  382.   7
+  383.  11
+  384.  12
+  385.  10
+  386.   8
+  387.   8
+  388.   6
+  389.   7
+  390.   7
+  391.   6
+  392.   6
+  393.   8
+  394.   8
+  395.   5
+  396.   7
+  397.   2
+  398.   4
+  399.  10
+  400.   4
+  401.   7
+  402.   4
+  403.   4
+  404.   7
+  405.   4
+  406.   8
+  407.   6
+  408.   7
+  409.   6
+  410.   7
+  411.   6
+  412.   6
+  413.   6
+  414.   6
+  415.   6
+  416.   6
+  417.   6
+  418.   8
+  419.   6
+  420.   8
+  421.   6
+  422.   8
+  423.   6
+  424.   7
+  425.   6
+  426.   9
+  427.   6
+  428.   2
+  429.   2
+  430.   2
+  431.   2
+  432.   2
+  433.   2
+  434.   2
+  435.   2
+  436.   5
+  437.   2
+  438.   7
+  439.   5
+  440.   6
+  441.   6
+  442.   2
+  443.   7
+  444.   6
+  445.   8
+  446.   6
+  447.   8
+  448.   6
+  449.   8
+  450.   6
+  451.   7
+  452.   4
+  453.   7
+  454.   6
+  455.   6
+  456.   4
+  457.   7
+  458.   6
+  459.   7
+  460.   6
+  461.   7
+  462.   6
+  463.   8
+  464.   6
+  465.  10
+  466.  10
+  467.   8
+  468.   6
+  469.   2
+  470.   8
+  471.   6
+  472.  11
+  473.  10
+  474.   8
+  475.   6
+  476.   3
+  477.  10
+  478.  10
+  479.  10
+  480.  10
+  481.  10
+  482.  10
+  483.   8
+  484.   6
+  485.   2
+  486.   4
+  487.   6
+  488.   6
+  489.  10
+  490.  10
+  491.  10
+  492.  10
+  493.   4
+  494.   4
+  495.   4
+  496.   4
+  497.   8
+  498.   9
+  499.   9
+  500.   5
+  501.   9
+  502.  10
+  503.   8
+  504.   2
+  505.   8
+  506.   7
+  507.   8
+  508.   6
+  509.   7
+  510.   7
+  511.   2
+  512.   7
+  513.   8
+  514.   8
+  515.   7
+  516.   7
+  517.   8
+  518.   7
+  519.   6
+  520.   7
+  521.   6
+  522.   8
+  523.   7
+  524.   8
+  525.   8
+  526.   2
+  527.   8
+  528.   6
+  529.   5
+  530.   6
+  531.   2
+  532.   6
+  533.   6
+  534.   6
+  535.   5
+  536.   6
+  537.   6
+  538.   2
+  539.   6
+  540.   6
+  541.   6
+  542.   6
+  543.   5
+  544.   6
+  545.   6
+  546.   5
+  547.   6
+  548.   5
+  549.   8
+  550.   8
+  551.   2
+  552.   6
+  553.   6
+  554.   6
+  555.   8
+  556.   6
+  557.  10
+  558.   6
+  559.   7
+  560.   7
+  561.   2
+  562.   2
+  563.   5
+  564.  12
+  565.  11
+  566.   9
+  567.   7
+  568.   7
+  569.   7
+  570.   8
+  571.   7
+  572.   7
+  573.   6
+  574.   8
+  575.   6
+  576.  12
+  577.   7
+  578.   9
+  579.   9
+  580.   7
+  581.   7
+  582.   8
+  583.   7
+  584.   8
+  585.   7
+  586.   6
+  587.   7
+  588.   6
+  589.   7
+  590.   8
+  591.   7
+  592.   7
+  593.   6
+  594.  10
+  595.  10
+  596.   8
+  597.   9
+  598.   7
+  599.   8
+  600.  11
+  601.   8
+  602.   6
+  603.   6
+  604.   7
+  605.   4
+  606.   6
+  607.   6
+  608.   8
+  609.   5
+  610.   6
+  611.   6
+  612.   5
+  613.   6
+  614.   8
+  615.   6
+  616.   6
+  617.   6
+  618.   6
+  619.   6
+  620.   6
+  621.   6
+  622.   8
+  623.   6
+  624.   6
+  625.   6
+  626.   8
+  627.   8
+  628.   7
+  629.   8
+  630.   6
+  631.   6
+  632.   8
+  633.   6
+  634.   6
+  635.   6
+  636.   4
+  637.   6
+  638.   6
+  639.   2
+  640.   2
+  641.   2
+  642.  10
+  643.   9
+  644.   6
+  645.   5
+  646.   6
+  647.   6
+  648.   5
+  649.   5
+  650.  11
+  651.  13
+  652.   9
+  653.   4
+  654.   4
+  655.   4
+  656.   4
+  657.   4
+  658.   4
+  659.   4
+  660.   4
+  661.   4
+  662.   4
+  663.   4
+  664.   4
+  665.   4
+  666.   4
+  667.   4
+  668.   3
+  669.   4
+  670.   4
+  671.   3
+  672.   6
+  673.   6
+  674.   5
+  675.   6
+  676.   7
+  677.   3
+  678.   3
+  679.   7
+  680.   7
+  681.   3
+  682.   6
+  683.   5
+  684.   5
+  685.   7
+  686.   7
+  687.   3
+  688.   5
+  689.   7
+  690.   6
+  691.   6
+  692.   6
+  693.   6
+  694.   6
+  695.   6
+  696.   6
+  697.   9
+  698.   7
+  699.   6
+  700.   6
+  701.   6
+  702.   3
+  703.   5
+  704.   9
+  705.   3
+  706.   6
+  707.   6
+  708.   5
+  709.   5
+  710.   7
+  711.   9
+  712.   9
+  713.   9
+  714.   9
+  715.   6
+  716.   6
+  717.   6
+  718.   6
+  719.   5
+  720.   6
+  721.   7
+  722.   3
+  723.   5
+  724.   7
+  725.   3
+  726.   6
+  727.   5
+  728.   5
+  729.   7
+  730.   5
+  731.   7
+  732.   6
+  733.   6
+  734.   6
+  735.   6
+  736.   6
+  737.   9
+  738.   7
+  739.   3
+  740.   6
+  741.   5
+  742.   6
+  743.   6
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.   4
+  749.   4
+  750.   4
+  751.   5
+  752.   2
+  753.   2
+  754.   3
+  755.   2
+  756.   2
+  757.   2
+  758.   2
+  759.   2
+  760.   2
+  761.   6
+  762.   6
+  763.   6
+  764.   6
+  765.   6
+  766.   6
+  767.   6
+  768.   6
+  769.   6
+  770.   6
+  771.   6
+  772.   4
+  773.   6
+  774.   8
+  775.   8
+  776.   3
+  777.   8
+  778.   6
+  779.   6
+  780.   6
+  781.   8
+  782.   8
+  783.   8
+  784.   8
+  785.   8
+  786.   2
+  787.   8
+  788.   8
+  789.   8
+  790.   8
+  791.   8
+  792.   8
+  793.   8
+  794.   8
+  795.   7
+  796.   8
+  797.   8
+  798.   8
+  799.   8
+  800.   8
+  801.   3
+  802.   3
+  803.   8
+  804.   8
+  805.   8
+  806.   8
+  807.   6
+  808.   6
+  809.   6
+  810.   6
+  811.   5
+  812.   5
+  813.   9
+  814.  10
+  815.   4
+  816.   6
+  817.   9
+  818.  10
+  819.   4
+  820.   6
+  821.   7
+  822.   6
+  823.   8
+  824.   8
+  825.   8
+  826.   8
+  827.   8
+  828.   8
+  829.   8
+  830.   8
+  831.   8
+  832.   8
+  833.   8
+  834.   8
+  835.   8
+  836.   8
+  837.   8
+  838.   8
+  839.   2
+  840.   2
+  841.   2
+  842.   2
+  843.   2
+  844.   8
+  845.   8
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.   7
+  863.  11
+  864.   8
+  865.   8
+  866.   8
+  867.   8
+  868.   8
+  869.   8
+  870.   8
+  871.   8
+  872.   8
+  873.   8
+  874.   8
+  875.   8
+  876.   8
+  877.   8
+  878.   8
+  879.   8
+  880.   8
+  881.   8
+  882.   8
+  883.   8
+  884.   8
+  885.   8
+  886.   8
+  887.   8
+  888.   8
+  889.   8
+  890.   8
+  891.   8
+  892.   4
+  893.   4
+  894.   8
+  895.   7
+  896.   5
+  897.   2
+  898.   3
+  899.   2
+  900.   3
+  901.   5
+  902.   5
+  903.   2
+  904.   3
+  905.   7
+  906.   6
+  907.   3
+  908.   3
+  909.   2
+  910.   3
+  911.   8
+  912.   8
+  913.   3
+  914.   3
+  915.   3
+  916.   4
+  917.   8
+  918.   8
+  919.   3
+  920.   3
+  921.   8
+  922.   8
+  923.   3
+  924.   3
+  925.   6
+  926.   6
+  927.   6
+  928.   6
+  929.   6
+  930.   6
+  931.   6
+  932.   6
+  933.   6
+  934.   6
+  935.   6
+  936.   6
+  937.   4
+  938.   4
+  939.   4
+  940.   4
+  941.   5
+  942.   5
+  943.   5
+  944.   5
+  945.   9
+  946.   9
+  947.   6
+  948.   6
+  949.   9
+  950.   9
+  951.   6
+  952.   6
+  953.  12
+  954.  12
+  955.   9
+  956.   9
+  957.  12
+  958.  12
+  959.   9
+  960.   9
+  961.   6
+  962.   6
+  963.   6
+  964.   6
+  965.   6
+  966.   6
+  967.   6
+  968.   6
+  969.   6
+  970.   5
+  971.   6
+  972.   4
+  973.   6
+  974.   5
+  975.   6
+  976.   4
+  977.   9
+  978.   9
+  979.   3
+  980.   3
+  981.   6
+  982.   6
+  983.   3
+  984.   3
+  985.   7
+  986.   7
+  987.   4
+  988.   4
+  989.   6
+  990.   6
+  991.   2
+  992.   2
+  993.   4
+  994.   4
+  995.   4
+  996.   4
+  997.   6
+  998.   6
+  999.   3
+ 1000.   3
+ 1001.   3
+ 1002.   4
+ 1003.   5
+ 1004.   4
+ 1005.   5
+ 1006.   5
+ 1007.   7
+ 1008.   6
+ 1009.   7
+ 1010.   6
+ 1011.   3
+ 1012.   3
+ 1013.   6
+ 1014.   7
+ 1015.   6
+ 1016.   7
+ 1017.   6
+ 1018.   7
+ 1019.   6
+ 1020.   7
+ 1021.   8
+ 1022.   8
+ 1023.   2
+ 1024.   2
+ 1025.   8
+ 1026.   8
+ 1027.   8
+ 1028.   2
+ 1029.   2
+ 1030.   8
+ 1031.   8
+ 1032.   2
+ 1033.   3
+ 1034.   8
+ 1035.   8
+ 1036.   8
+ 1037.   2
+ 1038.   2
+ 1039.   2
+ 1040.   2
+ 1041.   2
+ 1042.   2
+ 1043.   8
+ 1044.   2
+ 1045.   2
+ 1046.   8
+ 1047.   8
+ 1048.   8
+ 1049.   8
+ 1050.   8
+ 1051.   8
+ 1052.   8
+ 1053.   8
+ 1054.   8
+ 1055.   8
+ 1056.   8
+ 1057.   8
+ 1058.   8
+ 1059.   8
+ 1060.   8
+ 1061.   8
+ 1062.   8
+ 1063.   8
+ 1064.   8
+ 1065.   8
+ 1066.   8
+ 1067.   8
+ 1068.   8
+ 1069.   8
+ 1070.   8
+ 1071.   8
+ 1072.   8
+ 1073.   8
+ 1074.   8
+ 1075.   8
+ 1076.   8
+ 1077.   8
+ 1078.   8
+ 1079.   8
+ 1080.   8
+ 1081.   8
+ 1082.   8
+ 1083.   8
+ 1084.   8
+ 1085.   8
+ 1086.   8
+ 1087.   8
+ 1088.   8
+ 1089.   8
+ 1090.   8
+ 1091.   8
+ 1092.   8
+ 1093.   8
+ 1094.   8
+ 1095.   8
+ 1096.   8
+ 1097.   8
+ 1098.   8
+ 1099.   8
+ 1100.   4
+ 1101.   4
+ 1102.   4
+ 1103.   8
+ 1104.   8
+ 1105.   8
+ 1106.   8
+ 1107.   8
+ 1108.   8
+ 1109.   8
+ 1110.   8
+ 1111.   8
+ 1112.   8
+ 1113.   8
+ 1114.   8
+ 1115.   8
+ 1116.   8
+ 1117.   8
+ 1118.   8
+ 1119.   8
+ 1120.   8
+ 1121.   8
+ 1122.   8
+ 1123.   8
+ 1124.   8
+ 1125.   8
+ 1126.   8
+ 1127.   1
+ 1128.  11
+ 1129.  22
+ 1130.   9
+ 1131.   7
+ 1132.   9
+ 1133.   7
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.   6
+ 1151.   9
+ 1152.   9
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.   2
+ 1188.   8
+ 1189.   6
+ 1190.   8
+ 1191.   6
+ 1192.   8
+ 1193.   6
+ 1194.   8
+ 1195.   6
+ 1196.   8
+ 1197.   6
+ 1198.   8
+ 1199.   6
+ 1200.   8
+ 1201.   6
+ 1202.   8
+ 1203.   6
+ 1204.   8
+ 1205.   6
+ 1206.   8
+ 1207.   6
+ 1208.   8
+ 1209.   6
+ 1210.   8
+ 1211.   6
+ 1212.   6
+ 1213.   6
+ 1214.   6
+ 1215.   6
+ 1216.   6
+ 1217.   6
+ 1218.   6
+ 1219.   6
+ 1220.   6
+ 1221.   6
+ 1222.   6
+ 1223.   6
+ 1224.   6
+ 1225.   6
+ 1226.   6
+ 1227.   6
+ 1228.   2
+ 1229.   2
+ 1230.   2
+ 1231.   2
+ 1232.   8
+ 1233.   6
+ 1234.   8
+ 1235.   6
+ 1236.   8
+ 1237.   6
+ 1238.   8
+ 1239.   6
+ 1240.   8
+ 1241.   6
+ 1242.   8
+ 1243.   6
+ 1244.   8
+ 1245.   6
+ 1246.   9
+ 1247.   7
+ 1248.   9
+ 1249.   7
+ 1250.   9
+ 1251.   7
+ 1252.   9
+ 1253.   7
+ 1254.   9
+ 1255.   7
+ 1256.   7
+ 1257.   6
+ 1258.   7
+ 1259.   6
+ 1260.   9
+ 1261.   7
+ 1262.   9
+ 1263.   7
+ 1264.   9
+ 1265.   7
+ 1266.   9
+ 1267.   7
+ 1268.   9
+ 1269.   7
+ 1270.   8
+ 1271.   6
+ 1272.   8
+ 1273.   6
+ 1274.   8
+ 1275.   6
+ 1276.   8
+ 1277.   6
+ 1278.   2
+ 1279.   2
+ 1280.   8
+ 1281.   6
+ 1282.   7
+ 1283.   6
+ 1284.   7
+ 1285.   6
+ 1286.   7
+ 1287.   6
+ 1288.   7
+ 1289.   6
+ 1290.   7
+ 1291.   6
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.   6
+ 1297.   4
+ 1298.  10
+ 1299.   7
+ 1300.   6
+ 1301.   5
+ 1302.   6
+ 1303.   5
+ 1304.   8
+ 1305.   6
+ 1306.   6
+ 1307.   6
+ 1308.   6
+ 1309.   6
+ 1310.   7
+ 1311.   6
+ 1312.   7
+ 1313.   6
+ 1314.   7
+ 1315.   6
+ 1316.   8
+ 1317.   6
+ 1318.   9
+ 1319.   6
+
+
+	DevRec  1: ppem =  12, maxWid =  24
+    0.   9
+    1.   0
+    2.   3
+    3.   3
+    4.   3
+    5.   4
+    6.   7
+    7.   7
+    8.  11
+    9.   8
+   10.   2
+   11.   4
+   12.   4
+   13.   5
+   14.   7
+   15.   3
+   16.   4
+   17.   3
+   18.   3
+   19.   7
+   20.   7
+   21.   7
+   22.   7
+   23.   7
+   24.   7
+   25.   7
+   26.   7
+   27.   7
+   28.   7
+   29.   3
+   30.   3
+   31.   7
+   32.   7
+   33.   7
+   34.   7
+   35.  12
+   36.   7
+   37.   8
+   38.   9
+   39.   9
+   40.   8
+   41.   7
+   42.   9
+   43.   9
+   44.   3
+   45.   6
+   46.   8
+   47.   7
+   48.   9
+   49.   9
+   50.   9
+   51.   8
+   52.   9
+   53.   9
+   54.   8
+   55.   7
+   56.   9
+   57.   7
+   58.  11
+   59.   7
+   60.   7
+   61.   7
+   62.   3
+   63.   3
+   64.   3
+   65.   5
+   66.   7
+   67.   4
+   68.   7
+   69.   7
+   70.   6
+   71.   7
+   72.   7
+   73.   3
+   74.   7
+   75.   7
+   76.   3
+   77.   3
+   78.   6
+   79.   3
+   80.  11
+   81.   7
+   82.   7
+   83.   7
+   84.   7
+   85.   4
+   86.   7
+   87.   3
+   88.   7
+   89.   5
+   90.   9
+   91.   5
+   92.   5
+   93.   5
+   94.   4
+   95.   3
+   96.   4
+   97.   7
+   98.   7
+   99.   7
+  100.   9
+  101.   8
+  102.   9
+  103.   9
+  104.   9
+  105.   7
+  106.   7
+  107.   7
+  108.   7
+  109.   7
+  110.   7
+  111.   6
+  112.   7
+  113.   7
+  114.   7
+  115.   7
+  116.   3
+  117.   3
+  118.   3
+  119.   3
+  120.   7
+  121.   7
+  122.   7
+  123.   7
+  124.   7
+  125.   7
+  126.   7
+  127.   7
+  128.   7
+  129.   7
+  130.   7
+  131.   5
+  132.   7
+  133.   7
+  134.   7
+  135.   4
+  136.   6
+  137.   8
+  138.   9
+  139.   9
+  140.  12
+  141.   4
+  142.   4
+  143.   7
+  144.  12
+  145.   9
+  146.   9
+  147.   7
+  148.   7
+  149.   7
+  150.   7
+  151.   7
+  152.   6
+  153.   9
+  154.  10
+  155.   7
+  156.   3
+  157.   4
+  158.   4
+  159.   9
+  160.  11
+  161.   7
+  162.   7
+  163.   3
+  164.   7
+  165.   7
+  166.   7
+  167.   7
+  168.   7
+  169.   7
+  170.   7
+  171.  12
+  172.   7
+  173.   7
+  174.   9
+  175.  12
+  176.  11
+  177.   7
+  178.  12
+  179.   4
+  180.   4
+  181.   3
+  182.   3
+  183.   7
+  184.   6
+  185.   5
+  186.   7
+  187.   2
+  188.   7
+  189.   4
+  190.   4
+  191.   6
+  192.   6
+  193.   7
+  194.   3
+  195.   3
+  196.   4
+  197.  11
+  198.   7
+  199.   8
+  200.   7
+  201.   8
+  202.   8
+  203.   3
+  204.   3
+  205.   3
+  206.   3
+  207.   9
+  208.   9
+  209.   9
+  210.   9
+  211.   9
+  212.   9
+  213.   3
+  214.   4
+  215.   4
+  216.   4
+  217.   4
+  218.   4
+  219.   4
+  220.   4
+  221.   4
+  222.   4
+  223.   4
+  224.   7
+  225.   3
+  226.   8
+  227.   7
+  228.   7
+  229.   5
+  230.   3
+  231.   9
+  232.   7
+  233.   7
+  234.   5
+  235.   8
+  236.   7
+  237.   7
+  238.   7
+  239.   4
+  240.   4
+  241.   4
+  242.  10
+  243.  10
+  244.  10
+  245.   7
+  246.   9
+  247.   7
+  248.   3
+  249.   8
+  250.   7
+  251.   9
+  252.   6
+  253.   9
+  254.   6
+  255.   7
+  256.   7
+  257.   4
+  258.   7
+  259.   7
+  260.   7
+  261.   7
+  262.   9
+  263.   7
+  264.   9
+  265.   8
+  266.   7
+  267.   8
+  268.   7
+  269.   7
+  270.   3
+  271.   7
+  272.   4
+  273.   7
+  274.   4
+  275.   9
+  276.   7
+  277.   9
+  278.   7
+  279.   9
+  280.   7
+  281.   9
+  282.   4
+  283.   9
+  284.   4
+  285.   8
+  286.   7
+  287.   7
+  288.   3
+  289.   7
+  290.   5
+  291.   9
+  292.   7
+  293.   9
+  294.   7
+  295.   7
+  296.   5
+  297.   7
+  298.   5
+  299.   7
+  300.   9
+  301.   9
+  302.   7
+  303.   7
+  304.   5
+  305.   7
+  306.   5
+  307.   8
+  308.   7
+  309.   6
+  310.   4
+  311.  13
+  312.  12
+  313.   6
+  314.  12
+  315.   6
+  316.  12
+  317.   6
+  318.   6
+  319.  12
+  320.   9
+  321.   7
+  322.   7
+  323.   7
+  324.   7
+  325.   7
+  326.   9
+  327.   8
+  328.   9
+  329.   9
+  330.   9
+  331.   9
+  332.   9
+  333.   9
+  334.   9
+  335.   9
+  336.   9
+  337.   9
+  338.   9
+  339.   9
+  340.   9
+  341.   9
+  342.   9
+  343.   9
+  344.   9
+  345.   9
+  346.   9
+  347.   9
+  348.   9
+  349.   9
+  350.   9
+  351.   9
+  352.   9
+  353.   9
+  354.   9
+  355.   9
+  356.   9
+  357.   9
+  358.   9
+  359.   9
+  360.   9
+  361.   9
+  362.   9
+  363.   9
+  364.   9
+  365.   9
+  366.   9
+  367.   9
+  368.   9
+  369.   9
+  370.   9
+  371.   9
+  372.   9
+  373.   9
+  374.   7
+  375.  12
+  376.  12
+  377.  12
+  378.  12
+  379.  12
+  380.   7
+  381.   7
+  382.   7
+  383.  12
+  384.  13
+  385.  11
+  386.   9
+  387.   9
+  388.   6
+  389.   8
+  390.   7
+  391.   6
+  392.   6
+  393.   9
+  394.   9
+  395.   5
+  396.   7
+  397.   2
+  398.   4
+  399.  11
+  400.   4
+  401.   7
+  402.   4
+  403.   4
+  404.   7
+  405.   4
+  406.   7
+  407.   7
+  408.   9
+  409.   6
+  410.   9
+  411.   6
+  412.   8
+  413.   7
+  414.   8
+  415.   7
+  416.   8
+  417.   7
+  418.   9
+  419.   7
+  420.   9
+  421.   7
+  422.   9
+  423.   7
+  424.   9
+  425.   7
+  426.   9
+  427.   7
+  428.   3
+  429.   3
+  430.   3
+  431.   3
+  432.   3
+  433.   3
+  434.   3
+  435.   3
+  436.   6
+  437.   3
+  438.   8
+  439.   6
+  440.   7
+  441.   7
+  442.   3
+  443.   9
+  444.   7
+  445.   9
+  446.   7
+  447.   9
+  448.   7
+  449.   9
+  450.   7
+  451.   9
+  452.   4
+  453.   8
+  454.   7
+  455.   7
+  456.   3
+  457.   9
+  458.   7
+  459.   9
+  460.   7
+  461.   9
+  462.   7
+  463.   9
+  464.   7
+  465.  11
+  466.   9
+  467.   7
+  468.   5
+  469.   3
+  470.   7
+  471.   7
+  472.  12
+  473.  11
+  474.   9
+  475.   7
+  476.   3
+  477.  11
+  478.   9
+  479.  11
+  480.   9
+  481.  11
+  482.   9
+  483.   7
+  484.   5
+  485.   3
+  486.   4
+  487.   7
+  488.   7
+  489.  10
+  490.  10
+  491.  10
+  492.  10
+  493.   4
+  494.   4
+  495.   4
+  496.   4
+  497.   7
+  498.   9
+  499.  10
+  500.   4
+  501.   9
+  502.   9
+  503.   9
+  504.   3
+  505.   7
+  506.   8
+  507.   7
+  508.   8
+  509.   7
+  510.   9
+  511.   3
+  512.   8
+  513.   7
+  514.   9
+  515.   9
+  516.   8
+  517.   9
+  518.   9
+  519.   8
+  520.   7
+  521.   7
+  522.   7
+  523.   7
+  524.   9
+  525.   9
+  526.   3
+  527.   7
+  528.   7
+  529.   5
+  530.   7
+  531.   3
+  532.   7
+  533.   7
+  534.   5
+  535.   5
+  536.   7
+  537.   7
+  538.   3
+  539.   7
+  540.   5
+  541.   7
+  542.   5
+  543.   5
+  544.   7
+  545.   7
+  546.   6
+  547.   7
+  548.   6
+  549.   9
+  550.   9
+  551.   3
+  552.   7
+  553.   7
+  554.   7
+  555.   9
+  556.   8
+  557.  10
+  558.   7
+  559.   9
+  560.   8
+  561.   3
+  562.   3
+  563.   6
+  564.  13
+  565.  12
+  566.  10
+  567.   7
+  568.   8
+  569.   9
+  570.   7
+  571.   8
+  572.   8
+  573.   7
+  574.   8
+  575.   8
+  576.  11
+  577.   7
+  578.   9
+  579.   9
+  580.   7
+  581.   8
+  582.   9
+  583.   9
+  584.   9
+  585.   9
+  586.   8
+  587.   9
+  588.   7
+  589.   8
+  590.   9
+  591.   7
+  592.   9
+  593.   8
+  594.  11
+  595.  11
+  596.  10
+  597.  10
+  598.   8
+  599.   9
+  600.  12
+  601.   9
+  602.   7
+  603.   7
+  604.   6
+  605.   4
+  606.   7
+  607.   7
+  608.   9
+  609.   6
+  610.   7
+  611.   7
+  612.   6
+  613.   7
+  614.   9
+  615.   7
+  616.   7
+  617.   7
+  618.   7
+  619.   6
+  620.   5
+  621.   5
+  622.   9
+  623.   5
+  624.   7
+  625.   6
+  626.   9
+  627.   9
+  628.   8
+  629.   9
+  630.   7
+  631.   6
+  632.   9
+  633.   7
+  634.   7
+  635.   7
+  636.   4
+  637.   6
+  638.   7
+  639.   3
+  640.   3
+  641.   3
+  642.  11
+  643.  10
+  644.   7
+  645.   6
+  646.   5
+  647.   7
+  648.   6
+  649.   5
+  650.  12
+  651.  13
+  652.   8
+  653.   4
+  654.   4
+  655.   4
+  656.   4
+  657.   4
+  658.   4
+  659.   4
+  660.   4
+  661.   4
+  662.   4
+  663.   4
+  664.   4
+  665.   4
+  666.   5
+  667.   4
+  668.   3
+  669.   4
+  670.   4
+  671.   3
+  672.   7
+  673.   7
+  674.   5
+  675.   6
+  676.   7
+  677.   3
+  678.   5
+  679.   7
+  680.   7
+  681.   3
+  682.   6
+  683.   6
+  684.   6
+  685.   7
+  686.   7
+  687.   3
+  688.   4
+  689.   7
+  690.   6
+  691.   7
+  692.   7
+  693.   6
+  694.   6
+  695.   7
+  696.   6
+  697.   8
+  698.   8
+  699.   6
+  700.   6
+  701.   6
+  702.   3
+  703.   5
+  704.   9
+  705.   3
+  706.   6
+  707.   6
+  708.   6
+  709.   6
+  710.   6
+  711.   8
+  712.   8
+  713.   8
+  714.   8
+  715.   7
+  716.   7
+  717.   7
+  718.   7
+  719.   5
+  720.   6
+  721.   7
+  722.   3
+  723.   5
+  724.   7
+  725.   3
+  726.   6
+  727.   6
+  728.   6
+  729.   7
+  730.   4
+  731.   7
+  732.   7
+  733.   7
+  734.   6
+  735.   7
+  736.   6
+  737.   8
+  738.   8
+  739.   3
+  740.   7
+  741.   6
+  742.   7
+  743.   7
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.   4
+  749.   4
+  750.   4
+  751.   5
+  752.   2
+  753.   2
+  754.   3
+  755.   2
+  756.   2
+  757.   3
+  758.   2
+  759.   3
+  760.   2
+  761.   6
+  762.   6
+  763.   6
+  764.   6
+  765.   6
+  766.   6
+  767.   6
+  768.   6
+  769.   6
+  770.   6
+  771.   6
+  772.   4
+  773.   6
+  774.   9
+  775.   9
+  776.   3
+  777.   9
+  778.   6
+  779.   6
+  780.   6
+  781.   9
+  782.   9
+  783.   9
+  784.   9
+  785.   9
+  786.   3
+  787.   9
+  788.   9
+  789.   9
+  790.   9
+  791.   9
+  792.   9
+  793.   9
+  794.   9
+  795.   8
+  796.   9
+  797.   9
+  798.   9
+  799.   9
+  800.   9
+  801.   3
+  802.   3
+  803.   9
+  804.   9
+  805.   9
+  806.   9
+  807.   7
+  808.   6
+  809.   6
+  810.   6
+  811.   6
+  812.   6
+  813.  10
+  814.  11
+  815.   5
+  816.   6
+  817.  10
+  818.  11
+  819.   5
+  820.   6
+  821.   8
+  822.   7
+  823.   9
+  824.   9
+  825.   9
+  826.   9
+  827.   9
+  828.   9
+  829.   9
+  830.   9
+  831.   9
+  832.   9
+  833.   9
+  834.   9
+  835.   9
+  836.   9
+  837.   9
+  838.   9
+  839.   3
+  840.   3
+  841.   3
+  842.   3
+  843.   3
+  844.   9
+  845.   9
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.   7
+  863.  12
+  864.   9
+  865.   9
+  866.   9
+  867.   9
+  868.   9
+  869.   9
+  870.   9
+  871.   9
+  872.   9
+  873.   9
+  874.   9
+  875.   9
+  876.   9
+  877.   9
+  878.   9
+  879.   9
+  880.   9
+  881.   9
+  882.   9
+  883.   9
+  884.   9
+  885.   9
+  886.   9
+  887.   9
+  888.   9
+  889.   9
+  890.   9
+  891.   9
+  892.   4
+  893.   4
+  894.   9
+  895.   7
+  896.   5
+  897.   2
+  898.   3
+  899.   2
+  900.   3
+  901.   5
+  902.   5
+  903.   2
+  904.   3
+  905.   8
+  906.   7
+  907.   3
+  908.   3
+  909.   2
+  910.   3
+  911.   9
+  912.   9
+  913.   3
+  914.   3
+  915.   3
+  916.   5
+  917.   9
+  918.   9
+  919.   3
+  920.   3
+  921.   9
+  922.   9
+  923.   3
+  924.   3
+  925.   7
+  926.   6
+  927.   6
+  928.   6
+  929.   7
+  930.   6
+  931.   6
+  932.   6
+  933.   7
+  934.   6
+  935.   6
+  936.   6
+  937.   4
+  938.   4
+  939.   4
+  940.   4
+  941.   6
+  942.   6
+  943.   6
+  944.   6
+  945.  10
+  946.  10
+  947.   6
+  948.   6
+  949.  10
+  950.  10
+  951.   6
+  952.   6
+  953.  13
+  954.  13
+  955.  10
+  956.  10
+  957.  13
+  958.  13
+  959.  10
+  960.  10
+  961.   7
+  962.   7
+  963.   7
+  964.   7
+  965.   7
+  966.   7
+  967.   7
+  968.   7
+  969.   7
+  970.   5
+  971.   6
+  972.   5
+  973.   7
+  974.   5
+  975.   6
+  976.   5
+  977.   9
+  978.   9
+  979.   3
+  980.   3
+  981.   7
+  982.   7
+  983.   3
+  984.   3
+  985.   7
+  986.   7
+  987.   5
+  988.   5
+  989.   6
+  990.   6
+  991.   2
+  992.   2
+  993.   4
+  994.   4
+  995.   5
+  996.   5
+  997.   6
+  998.   6
+  999.   3
+ 1000.   3
+ 1001.   3
+ 1002.   5
+ 1003.   5
+ 1004.   5
+ 1005.   5
+ 1006.   5
+ 1007.   8
+ 1008.   7
+ 1009.   8
+ 1010.   7
+ 1011.   3
+ 1012.   3
+ 1013.   7
+ 1014.   7
+ 1015.   7
+ 1016.   7
+ 1017.   7
+ 1018.   7
+ 1019.   7
+ 1020.   7
+ 1021.   9
+ 1022.   9
+ 1023.   2
+ 1024.   2
+ 1025.   9
+ 1026.   9
+ 1027.   9
+ 1028.   2
+ 1029.   3
+ 1030.   9
+ 1031.   9
+ 1032.   3
+ 1033.   3
+ 1034.   9
+ 1035.   9
+ 1036.   9
+ 1037.   3
+ 1038.   3
+ 1039.   3
+ 1040.   3
+ 1041.   3
+ 1042.   3
+ 1043.   9
+ 1044.   2
+ 1045.   2
+ 1046.   9
+ 1047.   9
+ 1048.   9
+ 1049.   9
+ 1050.   9
+ 1051.   9
+ 1052.   9
+ 1053.   9
+ 1054.   9
+ 1055.   9
+ 1056.   9
+ 1057.   9
+ 1058.   9
+ 1059.   9
+ 1060.   9
+ 1061.   9
+ 1062.   9
+ 1063.   9
+ 1064.   9
+ 1065.   9
+ 1066.   9
+ 1067.   9
+ 1068.   9
+ 1069.   9
+ 1070.   9
+ 1071.   9
+ 1072.   9
+ 1073.   9
+ 1074.   9
+ 1075.   9
+ 1076.   9
+ 1077.   9
+ 1078.   9
+ 1079.   9
+ 1080.   9
+ 1081.   9
+ 1082.   9
+ 1083.   9
+ 1084.   9
+ 1085.   9
+ 1086.   9
+ 1087.   9
+ 1088.   9
+ 1089.   9
+ 1090.   9
+ 1091.   9
+ 1092.   9
+ 1093.   9
+ 1094.   9
+ 1095.   9
+ 1096.   9
+ 1097.   9
+ 1098.   9
+ 1099.   9
+ 1100.   4
+ 1101.   4
+ 1102.   4
+ 1103.   9
+ 1104.   9
+ 1105.   9
+ 1106.   9
+ 1107.   9
+ 1108.   9
+ 1109.   9
+ 1110.   9
+ 1111.   9
+ 1112.   9
+ 1113.   9
+ 1114.   9
+ 1115.   9
+ 1116.   9
+ 1117.   9
+ 1118.   9
+ 1119.   9
+ 1120.   9
+ 1121.   9
+ 1122.   9
+ 1123.   9
+ 1124.   9
+ 1125.   9
+ 1126.   9
+ 1127.   2
+ 1128.  12
+ 1129.  24
+ 1130.  10
+ 1131.   8
+ 1132.  10
+ 1133.   8
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.   6
+ 1151.  10
+ 1152.  10
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.   3
+ 1188.   7
+ 1189.   7
+ 1190.   7
+ 1191.   7
+ 1192.   7
+ 1193.   7
+ 1194.   7
+ 1195.   7
+ 1196.   7
+ 1197.   7
+ 1198.   7
+ 1199.   7
+ 1200.   7
+ 1201.   7
+ 1202.   7
+ 1203.   7
+ 1204.   7
+ 1205.   7
+ 1206.   7
+ 1207.   7
+ 1208.   7
+ 1209.   7
+ 1210.   7
+ 1211.   7
+ 1212.   8
+ 1213.   7
+ 1214.   8
+ 1215.   7
+ 1216.   8
+ 1217.   7
+ 1218.   8
+ 1219.   7
+ 1220.   8
+ 1221.   7
+ 1222.   8
+ 1223.   7
+ 1224.   8
+ 1225.   7
+ 1226.   8
+ 1227.   7
+ 1228.   3
+ 1229.   3
+ 1230.   3
+ 1231.   3
+ 1232.   9
+ 1233.   7
+ 1234.   9
+ 1235.   7
+ 1236.   9
+ 1237.   7
+ 1238.   9
+ 1239.   7
+ 1240.   9
+ 1241.   7
+ 1242.   9
+ 1243.   7
+ 1244.   9
+ 1245.   7
+ 1246.  10
+ 1247.   8
+ 1248.  10
+ 1249.   8
+ 1250.  10
+ 1251.   8
+ 1252.  10
+ 1253.   8
+ 1254.  10
+ 1255.   8
+ 1256.   9
+ 1257.   7
+ 1258.   9
+ 1259.   7
+ 1260.  10
+ 1261.   8
+ 1262.  10
+ 1263.   8
+ 1264.  10
+ 1265.   8
+ 1266.  10
+ 1267.   8
+ 1268.  10
+ 1269.   8
+ 1270.   7
+ 1271.   5
+ 1272.   7
+ 1273.   5
+ 1274.   7
+ 1275.   5
+ 1276.   7
+ 1277.   7
+ 1278.   3
+ 1279.   3
+ 1280.   9
+ 1281.   7
+ 1282.   9
+ 1283.   7
+ 1284.   9
+ 1285.   7
+ 1286.   9
+ 1287.   7
+ 1288.   9
+ 1289.   7
+ 1290.   9
+ 1291.   7
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.   7
+ 1297.   4
+ 1298.  11
+ 1299.   8
+ 1300.   7
+ 1301.   5
+ 1302.   7
+ 1303.   5
+ 1304.   9
+ 1305.   7
+ 1306.   7
+ 1307.   6
+ 1308.   7
+ 1309.   6
+ 1310.   8
+ 1311.   6
+ 1312.   8
+ 1313.   6
+ 1314.   8
+ 1315.   6
+ 1316.   9
+ 1317.   7
+ 1318.   9
+ 1319.   7
+
+
+	DevRec  2: ppem =  13, maxWid =  26
+    0.  10
+    1.   0
+    2.   4
+    3.   4
+    4.   3
+    5.   5
+    6.   7
+    7.   7
+    8.  12
+    9.   9
+   10.   2
+   11.   4
+   12.   4
+   13.   5
+   14.   8
+   15.   4
+   16.   4
+   17.   4
+   18.   4
+   19.   7
+   20.   7
+   21.   7
+   22.   7
+   23.   7
+   24.   7
+   25.   7
+   26.   7
+   27.   7
+   28.   7
+   29.   4
+   30.   4
+   31.   8
+   32.   8
+   33.   8
+   34.   7
+   35.  13
+   36.   9
+   37.   9
+   38.   9
+   39.   9
+   40.   9
+   41.   8
+   42.  10
+   43.   9
+   44.   3
+   45.   6
+   46.   9
+   47.   7
+   48.  11
+   49.   9
+   50.  10
+   51.   9
+   52.  10
+   53.   9
+   54.   9
+   55.   7
+   56.   9
+   57.   9
+   58.  13
+   59.   7
+   60.   9
+   61.   7
+   62.   4
+   63.   4
+   64.   4
+   65.   5
+   66.   7
+   67.   4
+   68.   7
+   69.   7
+   70.   7
+   71.   7
+   72.   7
+   73.   3
+   74.   7
+   75.   7
+   76.   3
+   77.   3
+   78.   7
+   79.   3
+   80.  11
+   81.   7
+   82.   7
+   83.   7
+   84.   7
+   85.   4
+   86.   7
+   87.   4
+   88.   7
+   89.   5
+   90.   9
+   91.   7
+   92.   7
+   93.   7
+   94.   4
+   95.   3
+   96.   4
+   97.   8
+   98.   9
+   99.   9
+  100.   9
+  101.   9
+  102.   9
+  103.  10
+  104.   9
+  105.   7
+  106.   7
+  107.   7
+  108.   7
+  109.   7
+  110.   7
+  111.   7
+  112.   7
+  113.   7
+  114.   7
+  115.   7
+  116.   3
+  117.   3
+  118.   3
+  119.   3
+  120.   7
+  121.   7
+  122.   7
+  123.   7
+  124.   7
+  125.   7
+  126.   7
+  127.   7
+  128.   7
+  129.   7
+  130.   7
+  131.   5
+  132.   7
+  133.   7
+  134.   7
+  135.   5
+  136.   7
+  137.   9
+  138.  10
+  139.  10
+  140.  13
+  141.   4
+  142.   4
+  143.   7
+  144.  13
+  145.  10
+  146.   9
+  147.   7
+  148.   7
+  149.   7
+  150.   7
+  151.   7
+  152.   6
+  153.   9
+  154.  11
+  155.   7
+  156.   3
+  157.   4
+  158.   5
+  159.  10
+  160.  12
+  161.   7
+  162.   8
+  163.   3
+  164.   8
+  165.   8
+  166.   7
+  167.   7
+  168.   8
+  169.   7
+  170.   7
+  171.  13
+  172.   9
+  173.   9
+  174.  10
+  175.  13
+  176.  12
+  177.   7
+  178.  13
+  179.   4
+  180.   4
+  181.   3
+  182.   3
+  183.   7
+  184.   6
+  185.   7
+  186.   9
+  187.   2
+  188.   7
+  189.   4
+  190.   4
+  191.   7
+  192.   7
+  193.   7
+  194.   4
+  195.   3
+  196.   4
+  197.  14
+  198.   9
+  199.   9
+  200.   9
+  201.   9
+  202.   9
+  203.   3
+  204.   3
+  205.   3
+  206.   3
+  207.  10
+  208.  10
+  209.  10
+  210.   9
+  211.   9
+  212.   9
+  213.   3
+  214.   4
+  215.   4
+  216.   4
+  217.   4
+  218.   4
+  219.   4
+  220.   4
+  221.   4
+  222.   4
+  223.   4
+  224.   7
+  225.   3
+  226.   9
+  227.   7
+  228.   7
+  229.   7
+  230.   3
+  231.   9
+  232.   7
+  233.   9
+  234.   7
+  235.   9
+  236.   7
+  237.   8
+  238.   8
+  239.   4
+  240.   4
+  241.   4
+  242.  11
+  243.  11
+  244.  11
+  245.   7
+  246.  10
+  247.   7
+  248.   3
+  249.   9
+  250.   7
+  251.   9
+  252.   7
+  253.   9
+  254.   7
+  255.   7
+  256.   7
+  257.   4
+  258.   9
+  259.   7
+  260.   9
+  261.   7
+  262.   9
+  263.   8
+  264.   9
+  265.   9
+  266.   7
+  267.   9
+  268.   7
+  269.   7
+  270.   3
+  271.   7
+  272.   4
+  273.   7
+  274.   4
+  275.   9
+  276.   7
+  277.   9
+  278.   7
+  279.  10
+  280.   7
+  281.   9
+  282.   4
+  283.   9
+  284.   4
+  285.   9
+  286.   7
+  287.   7
+  288.   3
+  289.   7
+  290.   5
+  291.   9
+  292.   7
+  293.   9
+  294.   7
+  295.   7
+  296.   7
+  297.   7
+  298.   7
+  299.   7
+  300.  10
+  301.   9
+  302.   8
+  303.   7
+  304.   6
+  305.   8
+  306.   5
+  307.   8
+  308.   7
+  309.   7
+  310.   5
+  311.  15
+  312.  13
+  313.   7
+  314.  13
+  315.   7
+  316.  13
+  317.   7
+  318.   7
+  319.  13
+  320.   9
+  321.   8
+  322.   8
+  323.   8
+  324.   8
+  325.   8
+  326.   9
+  327.   8
+  328.   9
+  329.   9
+  330.   9
+  331.   9
+  332.   9
+  333.   9
+  334.   9
+  335.   9
+  336.   9
+  337.   9
+  338.   9
+  339.   9
+  340.   9
+  341.   9
+  342.   9
+  343.   9
+  344.   9
+  345.   9
+  346.   9
+  347.   9
+  348.   9
+  349.   9
+  350.   9
+  351.   9
+  352.   9
+  353.   9
+  354.   9
+  355.   9
+  356.   9
+  357.   9
+  358.   9
+  359.   9
+  360.   9
+  361.   9
+  362.   9
+  363.   9
+  364.   9
+  365.   9
+  366.   9
+  367.   9
+  368.   9
+  369.   9
+  370.   9
+  371.   9
+  372.   9
+  373.   9
+  374.   8
+  375.  13
+  376.  13
+  377.  13
+  378.  13
+  379.  13
+  380.   8
+  381.   8
+  382.   8
+  383.  13
+  384.  14
+  385.  12
+  386.  10
+  387.  10
+  388.   7
+  389.   9
+  390.   8
+  391.   7
+  392.   7
+  393.  10
+  394.  10
+  395.   6
+  396.   8
+  397.   2
+  398.   5
+  399.  12
+  400.   5
+  401.   8
+  402.   5
+  403.   5
+  404.   8
+  405.   5
+  406.   9
+  407.   7
+  408.   9
+  409.   7
+  410.   9
+  411.   7
+  412.   9
+  413.   7
+  414.   9
+  415.   7
+  416.   9
+  417.   7
+  418.  10
+  419.   7
+  420.  10
+  421.   7
+  422.  10
+  423.   7
+  424.   9
+  425.   7
+  426.   9
+  427.   7
+  428.   3
+  429.   3
+  430.   3
+  431.   3
+  432.   3
+  433.   3
+  434.   3
+  435.   3
+  436.   6
+  437.   3
+  438.   9
+  439.   7
+  440.   7
+  441.   7
+  442.   3
+  443.   9
+  444.   7
+  445.   9
+  446.   7
+  447.  10
+  448.   7
+  449.  10
+  450.   7
+  451.   9
+  452.   4
+  453.   9
+  454.   7
+  455.   8
+  456.   4
+  457.   9
+  458.   7
+  459.   9
+  460.   7
+  461.   9
+  462.   7
+  463.   9
+  464.   7
+  465.  13
+  466.   9
+  467.   9
+  468.   7
+  469.   3
+  470.   9
+  471.   7
+  472.  13
+  473.  12
+  474.  10
+  475.   7
+  476.   3
+  477.  13
+  478.   9
+  479.  13
+  480.   9
+  481.  13
+  482.   9
+  483.   9
+  484.   7
+  485.   3
+  486.   4
+  487.   7
+  488.   8
+  489.  11
+  490.  11
+  491.  11
+  492.  11
+  493.   4
+  494.   4
+  495.   4
+  496.   4
+  497.   9
+  498.  10
+  499.  11
+  500.   5
+  501.  10
+  502.  11
+  503.  10
+  504.   3
+  505.   9
+  506.   9
+  507.   9
+  508.   9
+  509.   7
+  510.   9
+  511.   3
+  512.   9
+  513.   9
+  514.  11
+  515.   9
+  516.   8
+  517.  10
+  518.   9
+  519.   9
+  520.   8
+  521.   7
+  522.   9
+  523.   7
+  524.   9
+  525.  10
+  526.   3
+  527.   9
+  528.   8
+  529.   6
+  530.   7
+  531.   3
+  532.   7
+  533.   7
+  534.   7
+  535.   6
+  536.   7
+  537.   7
+  538.   3
+  539.   7
+  540.   7
+  541.   7
+  542.   5
+  543.   6
+  544.   7
+  545.   7
+  546.   6
+  547.   7
+  548.   7
+  549.   9
+  550.   9
+  551.   3
+  552.   7
+  553.   7
+  554.   7
+  555.   9
+  556.   9
+  557.  11
+  558.   7
+  559.   9
+  560.   9
+  561.   3
+  562.   3
+  563.   6
+  564.  14
+  565.  13
+  566.  11
+  567.   8
+  568.   8
+  569.   9
+  570.   9
+  571.   9
+  572.   9
+  573.   7
+  574.   9
+  575.   9
+  576.  11
+  577.   8
+  578.   9
+  579.   9
+  580.   8
+  581.   9
+  582.  11
+  583.   9
+  584.  10
+  585.   9
+  586.   9
+  587.   9
+  588.   7
+  589.   8
+  590.  11
+  591.   7
+  592.  10
+  593.   9
+  594.  11
+  595.  11
+  596.  10
+  597.  11
+  598.   8
+  599.   9
+  600.  13
+  601.   9
+  602.   7
+  603.   7
+  604.   7
+  605.   5
+  606.   8
+  607.   7
+  608.   9
+  609.   6
+  610.   7
+  611.   7
+  612.   6
+  613.   7
+  614.   9
+  615.   7
+  616.   7
+  617.   7
+  618.   7
+  619.   7
+  620.   5
+  621.   7
+  622.   9
+  623.   7
+  624.   7
+  625.   7
+  626.  11
+  627.  12
+  628.   8
+  629.   9
+  630.   7
+  631.   7
+  632.  10
+  633.   7
+  634.   7
+  635.   7
+  636.   5
+  637.   7
+  638.   7
+  639.   3
+  640.   3
+  641.   3
+  642.  12
+  643.  11
+  644.   7
+  645.   6
+  646.   7
+  647.   7
+  648.   6
+  649.   5
+  650.  13
+  651.  14
+  652.   9
+  653.   4
+  654.   4
+  655.   4
+  656.   4
+  657.   4
+  658.   4
+  659.   4
+  660.   4
+  661.   4
+  662.   4
+  663.   4
+  664.   4
+  665.   4
+  666.   5
+  667.   4
+  668.   3
+  669.   4
+  670.   4
+  671.   4
+  672.   7
+  673.   7
+  674.   5
+  675.   7
+  676.   8
+  677.   3
+  678.   5
+  679.   8
+  680.   8
+  681.   3
+  682.   7
+  683.   6
+  684.   6
+  685.   8
+  686.   8
+  687.   3
+  688.   5
+  689.   7
+  690.   7
+  691.   7
+  692.   7
+  693.   6
+  694.   6
+  695.   7
+  696.   7
+  697.   9
+  698.   8
+  699.   6
+  700.   6
+  701.   6
+  702.   3
+  703.   5
+  704.   9
+  705.   3
+  706.   7
+  707.   7
+  708.   6
+  709.   6
+  710.   7
+  711.   9
+  712.   9
+  713.   9
+  714.   9
+  715.   7
+  716.   7
+  717.   7
+  718.   7
+  719.   5
+  720.   7
+  721.   8
+  722.   4
+  723.   5
+  724.   8
+  725.   4
+  726.   7
+  727.   6
+  728.   6
+  729.   8
+  730.   5
+  731.   7
+  732.   7
+  733.   7
+  734.   6
+  735.   7
+  736.   7
+  737.   9
+  738.   8
+  739.   3
+  740.   7
+  741.   6
+  742.   7
+  743.   7
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.   4
+  749.   4
+  750.   5
+  751.   5
+  752.   3
+  753.   3
+  754.   3
+  755.   3
+  756.   3
+  757.   3
+  758.   3
+  759.   3
+  760.   2
+  761.   7
+  762.   7
+  763.   7
+  764.   7
+  765.   7
+  766.   7
+  767.   7
+  768.   7
+  769.   7
+  770.   7
+  771.   7
+  772.   4
+  773.   7
+  774.  10
+  775.  10
+  776.   4
+  777.  10
+  778.   7
+  779.   7
+  780.   7
+  781.  10
+  782.  10
+  783.  10
+  784.  10
+  785.  10
+  786.   3
+  787.  10
+  788.  10
+  789.  10
+  790.  10
+  791.  10
+  792.  10
+  793.  10
+  794.  10
+  795.   8
+  796.  10
+  797.  10
+  798.  10
+  799.   9
+  800.   9
+  801.   3
+  802.   3
+  803.  10
+  804.  10
+  805.  10
+  806.  10
+  807.   7
+  808.   7
+  809.   7
+  810.   7
+  811.   6
+  812.   6
+  813.  11
+  814.  12
+  815.   5
+  816.   7
+  817.  11
+  818.  12
+  819.   5
+  820.   7
+  821.   8
+  822.   8
+  823.  10
+  824.  10
+  825.  10
+  826.  10
+  827.  10
+  828.  10
+  829.  10
+  830.  10
+  831.  10
+  832.  10
+  833.  10
+  834.  10
+  835.  10
+  836.  10
+  837.  10
+  838.  10
+  839.   3
+  840.   3
+  841.   3
+  842.   3
+  843.   3
+  844.  10
+  845.  10
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.   7
+  863.  13
+  864.  10
+  865.  10
+  866.  10
+  867.  10
+  868.  10
+  869.  10
+  870.  10
+  871.  10
+  872.  10
+  873.  10
+  874.  10
+  875.  10
+  876.  10
+  877.  10
+  878.  10
+  879.  10
+  880.  10
+  881.  10
+  882.  10
+  883.  10
+  884.  10
+  885.  10
+  886.  10
+  887.  10
+  888.  10
+  889.  10
+  890.  10
+  891.  10
+  892.   4
+  893.   4
+  894.  10
+  895.   8
+  896.   5
+  897.   3
+  898.   3
+  899.   3
+  900.   3
+  901.   6
+  902.   6
+  903.   3
+  904.   3
+  905.   8
+  906.   8
+  907.   3
+  908.   3
+  909.   3
+  910.   3
+  911.   9
+  912.   9
+  913.   3
+  914.   3
+  915.   4
+  916.   5
+  917.   9
+  918.   9
+  919.   3
+  920.   3
+  921.   9
+  922.   9
+  923.   3
+  924.   3
+  925.   7
+  926.   7
+  927.   7
+  928.   7
+  929.   7
+  930.   7
+  931.   7
+  932.   7
+  933.   7
+  934.   7
+  935.   7
+  936.   7
+  937.   4
+  938.   4
+  939.   4
+  940.   4
+  941.   6
+  942.   6
+  943.   6
+  944.   6
+  945.  11
+  946.  11
+  947.   7
+  948.   7
+  949.  11
+  950.  11
+  951.   7
+  952.   7
+  953.  14
+  954.  14
+  955.  11
+  956.  11
+  957.  14
+  958.  14
+  959.  11
+  960.  11
+  961.   8
+  962.   8
+  963.   8
+  964.   8
+  965.   8
+  966.   8
+  967.   8
+  968.   8
+  969.   7
+  970.   6
+  971.   7
+  972.   5
+  973.   7
+  974.   6
+  975.   7
+  976.   5
+  977.  10
+  978.  10
+  979.   3
+  980.   3
+  981.   8
+  982.   8
+  983.   3
+  984.   3
+  985.   8
+  986.   8
+  987.   5
+  988.   5
+  989.   7
+  990.   7
+  991.   3
+  992.   3
+  993.   4
+  994.   4
+  995.   5
+  996.   5
+  997.   7
+  998.   7
+  999.   3
+ 1000.   3
+ 1001.   4
+ 1002.   5
+ 1003.   6
+ 1004.   5
+ 1005.   6
+ 1006.   6
+ 1007.   8
+ 1008.   8
+ 1009.   8
+ 1010.   8
+ 1011.   3
+ 1012.   3
+ 1013.   7
+ 1014.   8
+ 1015.   7
+ 1016.   8
+ 1017.   7
+ 1018.   8
+ 1019.   7
+ 1020.   8
+ 1021.  10
+ 1022.  10
+ 1023.   3
+ 1024.   3
+ 1025.  10
+ 1026.  10
+ 1027.  10
+ 1028.   2
+ 1029.   3
+ 1030.  10
+ 1031.  10
+ 1032.   3
+ 1033.   3
+ 1034.  10
+ 1035.  10
+ 1036.  10
+ 1037.   3
+ 1038.   3
+ 1039.   3
+ 1040.   3
+ 1041.   3
+ 1042.   3
+ 1043.  10
+ 1044.   3
+ 1045.   3
+ 1046.  10
+ 1047.  10
+ 1048.  10
+ 1049.  10
+ 1050.  10
+ 1051.  10
+ 1052.  10
+ 1053.  10
+ 1054.  10
+ 1055.  10
+ 1056.  10
+ 1057.  10
+ 1058.  10
+ 1059.  10
+ 1060.  10
+ 1061.  10
+ 1062.  10
+ 1063.  10
+ 1064.  10
+ 1065.  10
+ 1066.  10
+ 1067.  10
+ 1068.  10
+ 1069.  10
+ 1070.  10
+ 1071.  10
+ 1072.  10
+ 1073.  10
+ 1074.  10
+ 1075.  10
+ 1076.  10
+ 1077.  10
+ 1078.  10
+ 1079.  10
+ 1080.  10
+ 1081.  10
+ 1082.  10
+ 1083.  10
+ 1084.  10
+ 1085.  10
+ 1086.  10
+ 1087.  10
+ 1088.  10
+ 1089.  10
+ 1090.  10
+ 1091.  10
+ 1092.  10
+ 1093.  10
+ 1094.  10
+ 1095.  10
+ 1096.  10
+ 1097.  10
+ 1098.  10
+ 1099.  10
+ 1100.   4
+ 1101.   4
+ 1102.   4
+ 1103.  10
+ 1104.  10
+ 1105.  10
+ 1106.  10
+ 1107.  10
+ 1108.  10
+ 1109.  10
+ 1110.  10
+ 1111.  10
+ 1112.  10
+ 1113.  10
+ 1114.  10
+ 1115.  10
+ 1116.  10
+ 1117.  10
+ 1118.  10
+ 1119.  10
+ 1120.  10
+ 1121.  10
+ 1122.  10
+ 1123.  10
+ 1124.  10
+ 1125.  10
+ 1126.  10
+ 1127.   2
+ 1128.  13
+ 1129.  26
+ 1130.  11
+ 1131.   9
+ 1132.  11
+ 1133.   9
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.   7
+ 1151.  11
+ 1152.  11
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.   3
+ 1188.   9
+ 1189.   7
+ 1190.   9
+ 1191.   7
+ 1192.   9
+ 1193.   7
+ 1194.   9
+ 1195.   7
+ 1196.   9
+ 1197.   7
+ 1198.   9
+ 1199.   7
+ 1200.   9
+ 1201.   7
+ 1202.   9
+ 1203.   7
+ 1204.   9
+ 1205.   7
+ 1206.   9
+ 1207.   7
+ 1208.   9
+ 1209.   7
+ 1210.   9
+ 1211.   7
+ 1212.   9
+ 1213.   7
+ 1214.   9
+ 1215.   7
+ 1216.   9
+ 1217.   7
+ 1218.   9
+ 1219.   7
+ 1220.   9
+ 1221.   7
+ 1222.   9
+ 1223.   7
+ 1224.   9
+ 1225.   7
+ 1226.   9
+ 1227.   7
+ 1228.   3
+ 1229.   3
+ 1230.   3
+ 1231.   3
+ 1232.  10
+ 1233.   7
+ 1234.  10
+ 1235.   7
+ 1236.  10
+ 1237.   7
+ 1238.  10
+ 1239.   7
+ 1240.  10
+ 1241.   7
+ 1242.  10
+ 1243.   7
+ 1244.  10
+ 1245.   7
+ 1246.  11
+ 1247.   9
+ 1248.  11
+ 1249.   9
+ 1250.  11
+ 1251.   9
+ 1252.  11
+ 1253.   9
+ 1254.  11
+ 1255.   9
+ 1256.   9
+ 1257.   7
+ 1258.   9
+ 1259.   7
+ 1260.  11
+ 1261.   9
+ 1262.  11
+ 1263.   9
+ 1264.  11
+ 1265.   9
+ 1266.  11
+ 1267.   9
+ 1268.  11
+ 1269.   9
+ 1270.   9
+ 1271.   7
+ 1272.   9
+ 1273.   7
+ 1274.   9
+ 1275.   7
+ 1276.   9
+ 1277.   7
+ 1278.   3
+ 1279.   3
+ 1280.  10
+ 1281.   7
+ 1282.   9
+ 1283.   7
+ 1284.   9
+ 1285.   7
+ 1286.   9
+ 1287.   7
+ 1288.   9
+ 1289.   7
+ 1290.   9
+ 1291.   7
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.   7
+ 1297.   5
+ 1298.  12
+ 1299.   9
+ 1300.   8
+ 1301.   6
+ 1302.   8
+ 1303.   6
+ 1304.   9
+ 1305.   7
+ 1306.   7
+ 1307.   7
+ 1308.   7
+ 1309.   7
+ 1310.   9
+ 1311.   7
+ 1312.   9
+ 1313.   7
+ 1314.   9
+ 1315.   7
+ 1316.  10
+ 1317.   7
+ 1318.  10
+ 1319.   7
+
+
+	DevRec  3: ppem =  15, maxWid =  30
+    0.  11
+    1.   0
+    2.   4
+    3.   4
+    4.   5
+    5.   5
+    6.   8
+    7.   8
+    8.  13
+    9.  10
+   10.   3
+   11.   5
+   12.   5
+   13.   6
+   14.   9
+   15.   4
+   16.   5
+   17.   4
+   18.   4
+   19.   8
+   20.   8
+   21.   8
+   22.   8
+   23.   8
+   24.   8
+   25.   8
+   26.   8
+   27.   8
+   28.   8
+   29.   4
+   30.   4
+   31.   9
+   32.   9
+   33.   9
+   34.   8
+   35.  15
+   36.   9
+   37.  10
+   38.  11
+   39.  11
+   40.  10
+   41.   9
+   42.  11
+   43.  10
+   44.   3
+   45.   7
+   46.  10
+   47.   8
+   48.  11
+   49.  10
+   50.  12
+   51.  10
+   52.  12
+   53.  11
+   54.  10
+   55.   9
+   56.  10
+   57.   9
+   58.  15
+   59.   9
+   60.   9
+   61.   8
+   62.   4
+   63.   4
+   64.   4
+   65.   5
+   66.   8
+   67.   5
+   68.   8
+   69.   8
+   70.   8
+   71.   8
+   72.   8
+   73.   4
+   74.   8
+   75.   8
+   76.   3
+   77.   3
+   78.   7
+   79.   3
+   80.  13
+   81.   8
+   82.   8
+   83.   8
+   84.   8
+   85.   5
+   86.   8
+   87.   4
+   88.   8
+   89.   7
+   90.  11
+   91.   7
+   92.   7
+   93.   8
+   94.   5
+   95.   3
+   96.   5
+   97.   9
+   98.   9
+   99.   9
+  100.  11
+  101.  10
+  102.  10
+  103.  12
+  104.  10
+  105.   8
+  106.   8
+  107.   8
+  108.   8
+  109.   8
+  110.   8
+  111.   8
+  112.   8
+  113.   8
+  114.   8
+  115.   8
+  116.   3
+  117.   3
+  118.   3
+  119.   3
+  120.   8
+  121.   8
+  122.   8
+  123.   8
+  124.   8
+  125.   8
+  126.   8
+  127.   8
+  128.   8
+  129.   8
+  130.   8
+  131.   6
+  132.   8
+  133.   8
+  134.   8
+  135.   5
+  136.   8
+  137.   9
+  138.  11
+  139.  11
+  140.  15
+  141.   5
+  142.   5
+  143.   8
+  144.  15
+  145.  12
+  146.  11
+  147.   8
+  148.   8
+  149.   8
+  150.   8
+  151.   8
+  152.   7
+  153.  11
+  154.  12
+  155.   8
+  156.   4
+  157.   5
+  158.   5
+  159.  12
+  160.  13
+  161.   8
+  162.   9
+  163.   5
+  164.   9
+  165.   9
+  166.   8
+  167.   8
+  168.   9
+  169.   8
+  170.   8
+  171.  15
+  172.   9
+  173.   9
+  174.  12
+  175.  15
+  176.  14
+  177.   8
+  178.  15
+  179.   5
+  180.   5
+  181.   3
+  182.   3
+  183.   8
+  184.   7
+  185.   7
+  186.   9
+  187.   3
+  188.   8
+  189.   5
+  190.   5
+  191.   8
+  192.   8
+  193.   8
+  194.   4
+  195.   3
+  196.   5
+  197.  14
+  198.   9
+  199.  10
+  200.   9
+  201.  10
+  202.  10
+  203.   3
+  204.   3
+  205.   3
+  206.   3
+  207.  12
+  208.  12
+  209.  12
+  210.  10
+  211.  10
+  212.  10
+  213.   3
+  214.   5
+  215.   4
+  216.   5
+  217.   5
+  218.   5
+  219.   5
+  220.   5
+  221.   5
+  222.   5
+  223.   5
+  224.   8
+  225.   3
+  226.  10
+  227.   8
+  228.   8
+  229.   8
+  230.   3
+  231.  11
+  232.   8
+  233.   9
+  234.   7
+  235.  10
+  236.   8
+  237.   9
+  238.   9
+  239.   5
+  240.   5
+  241.   5
+  242.  13
+  243.  13
+  244.  13
+  245.   8
+  246.  11
+  247.   8
+  248.   3
+  249.  10
+  250.   8
+  251.  11
+  252.   8
+  253.  11
+  254.   8
+  255.   8
+  256.   8
+  257.   5
+  258.   9
+  259.   8
+  260.   9
+  261.   8
+  262.  11
+  263.   9
+  264.  11
+  265.  10
+  266.   8
+  267.  10
+  268.   8
+  269.   8
+  270.   3
+  271.   8
+  272.   4
+  273.   8
+  274.   5
+  275.  10
+  276.   8
+  277.  10
+  278.   8
+  279.  12
+  280.   8
+  281.  11
+  282.   5
+  283.  11
+  284.   5
+  285.  10
+  286.   8
+  287.   9
+  288.   4
+  289.   9
+  290.   6
+  291.  10
+  292.   8
+  293.  10
+  294.   8
+  295.   8
+  296.   8
+  297.   8
+  298.   8
+  299.   8
+  300.  12
+  301.  11
+  302.   9
+  303.   8
+  304.   7
+  305.   9
+  306.   5
+  307.  10
+  308.   8
+  309.   8
+  310.   5
+  311.  17
+  312.  15
+  313.   8
+  314.  15
+  315.   8
+  316.  15
+  317.   8
+  318.   8
+  319.  15
+  320.  11
+  321.   9
+  322.   9
+  323.   9
+  324.   9
+  325.   9
+  326.  11
+  327.   9
+  328.  11
+  329.  11
+  330.  11
+  331.  11
+  332.  11
+  333.  11
+  334.  11
+  335.  11
+  336.  11
+  337.  11
+  338.  11
+  339.  11
+  340.  11
+  341.  11
+  342.  11
+  343.  11
+  344.  11
+  345.  11
+  346.  11
+  347.  11
+  348.  11
+  349.  11
+  350.  11
+  351.  11
+  352.  11
+  353.  11
+  354.  11
+  355.  11
+  356.  11
+  357.  11
+  358.  11
+  359.  11
+  360.  11
+  361.  11
+  362.  11
+  363.  11
+  364.  11
+  365.  11
+  366.  11
+  367.  11
+  368.  11
+  369.  11
+  370.  11
+  371.  11
+  372.  11
+  373.  11
+  374.   9
+  375.  15
+  376.  15
+  377.  15
+  378.  15
+  379.  15
+  380.   9
+  381.   9
+  382.   9
+  383.  15
+  384.  16
+  385.  14
+  386.  11
+  387.  11
+  388.   8
+  389.  10
+  390.   9
+  391.   8
+  392.   8
+  393.  11
+  394.  11
+  395.   7
+  396.   9
+  397.   3
+  398.   5
+  399.  13
+  400.   5
+  401.   9
+  402.   5
+  403.   5
+  404.   9
+  405.   5
+  406.   9
+  407.   8
+  408.  11
+  409.   8
+  410.  11
+  411.   8
+  412.  10
+  413.   8
+  414.  10
+  415.   8
+  416.  10
+  417.   8
+  418.  11
+  419.   8
+  420.  11
+  421.   8
+  422.  11
+  423.   8
+  424.  10
+  425.   8
+  426.  10
+  427.   8
+  428.   3
+  429.   3
+  430.   3
+  431.   3
+  432.   3
+  433.   3
+  434.   3
+  435.   3
+  436.   7
+  437.   3
+  438.  10
+  439.   7
+  440.   8
+  441.   8
+  442.   3
+  443.  10
+  444.   8
+  445.  11
+  446.   8
+  447.  12
+  448.   8
+  449.  12
+  450.   8
+  451.  11
+  452.   5
+  453.  10
+  454.   8
+  455.   9
+  456.   4
+  457.  10
+  458.   8
+  459.  10
+  460.   8
+  461.  10
+  462.   8
+  463.  11
+  464.   8
+  465.  15
+  466.  11
+  467.   9
+  468.   7
+  469.   3
+  470.   9
+  471.   8
+  472.  15
+  473.  13
+  474.  12
+  475.   8
+  476.   3
+  477.  15
+  478.  11
+  479.  15
+  480.  11
+  481.  15
+  482.  11
+  483.   9
+  484.   7
+  485.   3
+  486.   5
+  487.   8
+  488.   9
+  489.  13
+  490.  13
+  491.  13
+  492.  13
+  493.   5
+  494.   5
+  495.   5
+  496.   5
+  497.   9
+  498.  12
+  499.  13
+  500.   6
+  501.  12
+  502.  12
+  503.  11
+  504.   3
+  505.   9
+  506.  10
+  507.  10
+  508.  10
+  509.   8
+  510.  10
+  511.   3
+  512.  10
+  513.  11
+  514.  11
+  515.  10
+  516.  10
+  517.  12
+  518.  10
+  519.  10
+  520.   9
+  521.   9
+  522.   9
+  523.   9
+  524.  11
+  525.  11
+  526.   3
+  527.   9
+  528.   9
+  529.   7
+  530.   8
+  531.   3
+  532.   8
+  533.   9
+  534.   7
+  535.   7
+  536.   8
+  537.   8
+  538.   3
+  539.   8
+  540.   7
+  541.   8
+  542.   7
+  543.   7
+  544.   8
+  545.   8
+  546.   7
+  547.   8
+  548.   8
+  549.  11
+  550.  12
+  551.   3
+  552.   8
+  553.   8
+  554.   8
+  555.  12
+  556.  10
+  557.  13
+  558.   8
+  559.  11
+  560.  10
+  561.   3
+  562.   3
+  563.   7
+  564.  16
+  565.  15
+  566.  13
+  567.   9
+  568.  10
+  569.  11
+  570.   9
+  571.  10
+  572.  10
+  573.   8
+  574.  10
+  575.  10
+  576.  14
+  577.   9
+  578.  11
+  579.  11
+  580.   9
+  581.  10
+  582.  11
+  583.  10
+  584.  12
+  585.  10
+  586.  10
+  587.  11
+  588.   9
+  589.  10
+  590.  11
+  591.   9
+  592.  11
+  593.   9
+  594.  14
+  595.  15
+  596.  12
+  597.  13
+  598.  10
+  599.  11
+  600.  15
+  601.  11
+  602.   8
+  603.   9
+  604.   8
+  605.   5
+  606.   9
+  607.   8
+  608.   9
+  609.   7
+  610.   8
+  611.   8
+  612.   7
+  613.   8
+  614.  10
+  615.   8
+  616.   8
+  617.   8
+  618.   8
+  619.   8
+  620.   7
+  621.   7
+  622.  11
+  623.   7
+  624.   9
+  625.   8
+  626.  11
+  627.  11
+  628.   9
+  629.  11
+  630.   8
+  631.   8
+  632.  11
+  633.   8
+  634.   8
+  635.   8
+  636.   5
+  637.   8
+  638.   8
+  639.   3
+  640.   3
+  641.   3
+  642.  14
+  643.  12
+  644.   8
+  645.   7
+  646.   7
+  647.   8
+  648.   7
+  649.   6
+  650.  15
+  651.  16
+  652.  10
+  653.   5
+  654.   5
+  655.   5
+  656.   5
+  657.   5
+  658.   5
+  659.   5
+  660.   5
+  661.   5
+  662.   5
+  663.   5
+  664.   5
+  665.   5
+  666.   6
+  667.   5
+  668.   3
+  669.   5
+  670.   5
+  671.   4
+  672.   8
+  673.   8
+  674.   6
+  675.   8
+  676.   9
+  677.   3
+  678.   6
+  679.   9
+  680.   9
+  681.   3
+  682.   8
+  683.   7
+  684.   7
+  685.   9
+  686.   9
+  687.   3
+  688.   5
+  689.   9
+  690.   8
+  691.   9
+  692.   8
+  693.   7
+  694.   7
+  695.   8
+  696.   8
+  697.  10
+  698.  10
+  699.   6
+  700.   6
+  701.   6
+  702.   4
+  703.   6
+  704.  12
+  705.   3
+  706.   8
+  707.   8
+  708.   7
+  709.   7
+  710.   8
+  711.  10
+  712.  10
+  713.  10
+  714.  10
+  715.   8
+  716.   8
+  717.   8
+  718.   8
+  719.   6
+  720.   8
+  721.   9
+  722.   4
+  723.   6
+  724.   9
+  725.   4
+  726.   8
+  727.   7
+  728.   7
+  729.   9
+  730.   5
+  731.   9
+  732.   9
+  733.   8
+  734.   7
+  735.   8
+  736.   8
+  737.  10
+  738.  10
+  739.   3
+  740.   8
+  741.   7
+  742.   8
+  743.   9
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.   5
+  749.   5
+  750.   5
+  751.   6
+  752.   3
+  753.   3
+  754.   4
+  755.   3
+  756.   3
+  757.   3
+  758.   3
+  759.   3
+  760.   2
+  761.   8
+  762.   8
+  763.   8
+  764.   8
+  765.   8
+  766.   8
+  767.   8
+  768.   8
+  769.   8
+  770.   8
+  771.   8
+  772.   5
+  773.   8
+  774.  11
+  775.  11
+  776.   4
+  777.  11
+  778.   8
+  779.   8
+  780.   8
+  781.  11
+  782.  11
+  783.  11
+  784.  11
+  785.  11
+  786.   3
+  787.  11
+  788.  11
+  789.  11
+  790.  11
+  791.  11
+  792.  11
+  793.  11
+  794.  11
+  795.  10
+  796.  11
+  797.  11
+  798.  11
+  799.  11
+  800.  11
+  801.   4
+  802.   4
+  803.  11
+  804.  11
+  805.  11
+  806.  11
+  807.   8
+  808.   8
+  809.   8
+  810.   8
+  811.   7
+  812.   7
+  813.  12
+  814.  14
+  815.   6
+  816.   8
+  817.  12
+  818.  14
+  819.   6
+  820.   8
+  821.  10
+  822.   9
+  823.  11
+  824.  11
+  825.  11
+  826.  11
+  827.  11
+  828.  11
+  829.  11
+  830.  11
+  831.  11
+  832.  11
+  833.  11
+  834.  11
+  835.  11
+  836.  11
+  837.  11
+  838.  11
+  839.   3
+  840.   3
+  841.   3
+  842.   3
+  843.   3
+  844.  11
+  845.  11
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.   8
+  863.  15
+  864.  11
+  865.  11
+  866.  11
+  867.  11
+  868.  11
+  869.  11
+  870.  11
+  871.  11
+  872.  11
+  873.  11
+  874.  11
+  875.  11
+  876.  11
+  877.  11
+  878.  11
+  879.  11
+  880.  11
+  881.  11
+  882.  11
+  883.  11
+  884.  11
+  885.  11
+  886.  11
+  887.  11
+  888.  11
+  889.  11
+  890.  11
+  891.  11
+  892.   5
+  893.   5
+  894.  11
+  895.   9
+  896.   6
+  897.   3
+  898.   3
+  899.   3
+  900.   3
+  901.   6
+  902.   6
+  903.   3
+  904.   3
+  905.  10
+  906.   9
+  907.   4
+  908.   4
+  909.   3
+  910.   3
+  911.  11
+  912.  11
+  913.   4
+  914.   4
+  915.   4
+  916.   6
+  917.  11
+  918.  11
+  919.   4
+  920.   4
+  921.  11
+  922.  11
+  923.   4
+  924.   4
+  925.   8
+  926.   8
+  927.   8
+  928.   8
+  929.   8
+  930.   8
+  931.   8
+  932.   8
+  933.   8
+  934.   8
+  935.   8
+  936.   8
+  937.   5
+  938.   5
+  939.   5
+  940.   5
+  941.   7
+  942.   7
+  943.   7
+  944.   7
+  945.  12
+  946.  12
+  947.   8
+  948.   8
+  949.  12
+  950.  12
+  951.   8
+  952.   8
+  953.  16
+  954.  16
+  955.  13
+  956.  13
+  957.  16
+  958.  16
+  959.  13
+  960.  13
+  961.   9
+  962.   9
+  963.   9
+  964.   9
+  965.   9
+  966.   9
+  967.   9
+  968.   9
+  969.   8
+  970.   7
+  971.   8
+  972.   6
+  973.   8
+  974.   7
+  975.   8
+  976.   6
+  977.  12
+  978.  12
+  979.   4
+  980.   4
+  981.   9
+  982.   9
+  983.   4
+  984.   4
+  985.   9
+  986.   9
+  987.   6
+  988.   6
+  989.   8
+  990.   8
+  991.   3
+  992.   3
+  993.   5
+  994.   5
+  995.   6
+  996.   6
+  997.   8
+  998.   8
+  999.   4
+ 1000.   4
+ 1001.   4
+ 1002.   6
+ 1003.   7
+ 1004.   6
+ 1005.   6
+ 1006.   6
+ 1007.  10
+ 1008.   9
+ 1009.  10
+ 1010.   9
+ 1011.   4
+ 1012.   4
+ 1013.   8
+ 1014.   9
+ 1015.   8
+ 1016.   9
+ 1017.   8
+ 1018.   9
+ 1019.   8
+ 1020.   9
+ 1021.  11
+ 1022.  11
+ 1023.   3
+ 1024.   3
+ 1025.  11
+ 1026.  11
+ 1027.  11
+ 1028.   2
+ 1029.   3
+ 1030.  11
+ 1031.  11
+ 1032.   3
+ 1033.   4
+ 1034.  11
+ 1035.  11
+ 1036.  11
+ 1037.   3
+ 1038.   3
+ 1039.   3
+ 1040.   3
+ 1041.   3
+ 1042.   3
+ 1043.  11
+ 1044.   3
+ 1045.   3
+ 1046.  11
+ 1047.  11
+ 1048.  11
+ 1049.  11
+ 1050.  11
+ 1051.  11
+ 1052.  11
+ 1053.  11
+ 1054.  11
+ 1055.  11
+ 1056.  11
+ 1057.  11
+ 1058.  11
+ 1059.  11
+ 1060.  11
+ 1061.  11
+ 1062.  11
+ 1063.  11
+ 1064.  11
+ 1065.  11
+ 1066.  11
+ 1067.  11
+ 1068.  11
+ 1069.  11
+ 1070.  11
+ 1071.  11
+ 1072.  11
+ 1073.  11
+ 1074.  11
+ 1075.  11
+ 1076.  11
+ 1077.  11
+ 1078.  11
+ 1079.  11
+ 1080.  11
+ 1081.  11
+ 1082.  11
+ 1083.  11
+ 1084.  11
+ 1085.  11
+ 1086.  11
+ 1087.  11
+ 1088.  11
+ 1089.  11
+ 1090.  11
+ 1091.  11
+ 1092.  11
+ 1093.  11
+ 1094.  11
+ 1095.  11
+ 1096.  11
+ 1097.  11
+ 1098.  11
+ 1099.  11
+ 1100.   5
+ 1101.   5
+ 1102.   5
+ 1103.  11
+ 1104.  11
+ 1105.  11
+ 1106.  11
+ 1107.  11
+ 1108.  11
+ 1109.  11
+ 1110.  11
+ 1111.  11
+ 1112.  11
+ 1113.  11
+ 1114.  11
+ 1115.  11
+ 1116.  11
+ 1117.  11
+ 1118.  11
+ 1119.  11
+ 1120.  11
+ 1121.  11
+ 1122.  11
+ 1123.  11
+ 1124.  11
+ 1125.  11
+ 1126.  11
+ 1127.   2
+ 1128.  15
+ 1129.  30
+ 1130.  13
+ 1131.  10
+ 1132.  13
+ 1133.  10
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.   8
+ 1151.  13
+ 1152.  13
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.   3
+ 1188.   9
+ 1189.   8
+ 1190.   9
+ 1191.   8
+ 1192.   9
+ 1193.   8
+ 1194.   9
+ 1195.   8
+ 1196.   9
+ 1197.   8
+ 1198.   9
+ 1199.   8
+ 1200.   9
+ 1201.   8
+ 1202.   9
+ 1203.   8
+ 1204.   9
+ 1205.   8
+ 1206.   9
+ 1207.   8
+ 1208.   9
+ 1209.   8
+ 1210.   9
+ 1211.   8
+ 1212.  10
+ 1213.   8
+ 1214.  10
+ 1215.   8
+ 1216.  10
+ 1217.   8
+ 1218.  10
+ 1219.   8
+ 1220.  10
+ 1221.   8
+ 1222.  10
+ 1223.   8
+ 1224.  10
+ 1225.   8
+ 1226.  10
+ 1227.   8
+ 1228.   3
+ 1229.   3
+ 1230.   3
+ 1231.   3
+ 1232.  12
+ 1233.   8
+ 1234.  12
+ 1235.   8
+ 1236.  12
+ 1237.   8
+ 1238.  12
+ 1239.   8
+ 1240.  12
+ 1241.   8
+ 1242.  12
+ 1243.   8
+ 1244.  12
+ 1245.   8
+ 1246.  13
+ 1247.  10
+ 1248.  13
+ 1249.  10
+ 1250.  13
+ 1251.  10
+ 1252.  13
+ 1253.  10
+ 1254.  13
+ 1255.  10
+ 1256.  10
+ 1257.   8
+ 1258.  10
+ 1259.   8
+ 1260.  13
+ 1261.  10
+ 1262.  13
+ 1263.  10
+ 1264.  13
+ 1265.  10
+ 1266.  13
+ 1267.  10
+ 1268.  13
+ 1269.  10
+ 1270.   9
+ 1271.   7
+ 1272.   9
+ 1273.   7
+ 1274.   9
+ 1275.   7
+ 1276.   9
+ 1277.   8
+ 1278.   3
+ 1279.   3
+ 1280.  12
+ 1281.   8
+ 1282.  10
+ 1283.   8
+ 1284.  10
+ 1285.   8
+ 1286.  10
+ 1287.   8
+ 1288.  10
+ 1289.   8
+ 1290.  10
+ 1291.   8
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.   8
+ 1297.   5
+ 1298.  14
+ 1299.  10
+ 1300.   9
+ 1301.   7
+ 1302.   9
+ 1303.   7
+ 1304.  11
+ 1305.   8
+ 1306.   8
+ 1307.   8
+ 1308.   8
+ 1309.   8
+ 1310.  10
+ 1311.   8
+ 1312.  10
+ 1313.   8
+ 1314.  10
+ 1315.   8
+ 1316.  11
+ 1317.   8
+ 1318.  12
+ 1319.   8
+
+
+	DevRec  4: ppem =  16, maxWid =  32
+    0.  12
+    1.   0
+    2.   4
+    3.   4
+    4.   5
+    5.   6
+    6.   9
+    7.   9
+    8.  14
+    9.  11
+   10.   3
+   11.   5
+   12.   5
+   13.   6
+   14.   9
+   15.   4
+   16.   5
+   17.   4
+   18.   4
+   19.   9
+   20.   9
+   21.   9
+   22.   9
+   23.   9
+   24.   9
+   25.   9
+   26.   9
+   27.   9
+   28.   9
+   29.   4
+   30.   4
+   31.   9
+   32.   9
+   33.   9
+   34.   9
+   35.  16
+   36.  11
+   37.  11
+   38.  12
+   39.  12
+   40.  11
+   41.  10
+   42.  12
+   43.  11
+   44.   3
+   45.   8
+   46.  11
+   47.   9
+   48.  13
+   49.  11
+   50.  12
+   51.  11
+   52.  12
+   53.  11
+   54.  11
+   55.   9
+   56.  11
+   57.  11
+   58.  15
+   59.  11
+   60.   9
+   61.   9
+   62.   4
+   63.   4
+   64.   4
+   65.   7
+   66.   9
+   67.   5
+   68.   9
+   69.   9
+   70.   8
+   71.   9
+   72.   9
+   73.   4
+   74.   9
+   75.   8
+   76.   4
+   77.   3
+   78.   8
+   79.   3
+   80.  13
+   81.   8
+   82.   9
+   83.   9
+   84.   9
+   85.   5
+   86.   8
+   87.   4
+   88.   8
+   89.   7
+   90.  11
+   91.   7
+   92.   7
+   93.   7
+   94.   5
+   95.   3
+   96.   5
+   97.   9
+   98.  11
+   99.  11
+  100.  12
+  101.  11
+  102.  11
+  103.  12
+  104.  11
+  105.   9
+  106.   9
+  107.   9
+  108.   9
+  109.   9
+  110.   9
+  111.   8
+  112.   9
+  113.   9
+  114.   9
+  115.   9
+  116.   3
+  117.   3
+  118.   3
+  119.   3
+  120.   8
+  121.   9
+  122.   9
+  123.   9
+  124.   9
+  125.   9
+  126.   8
+  127.   8
+  128.   8
+  129.   8
+  130.   9
+  131.   6
+  132.   9
+  133.   9
+  134.   9
+  135.   6
+  136.   9
+  137.   9
+  138.  12
+  139.  12
+  140.  16
+  141.   5
+  142.   5
+  143.   9
+  144.  16
+  145.  12
+  146.  11
+  147.   9
+  148.   9
+  149.   9
+  150.   9
+  151.   9
+  152.   8
+  153.  11
+  154.  13
+  155.   9
+  156.   4
+  157.   5
+  158.   5
+  159.  12
+  160.  14
+  161.   9
+  162.  10
+  163.   5
+  164.   9
+  165.   9
+  166.   9
+  167.   9
+  168.   9
+  169.   9
+  170.   9
+  171.  16
+  172.  11
+  173.  11
+  174.  12
+  175.  17
+  176.  15
+  177.   9
+  178.  16
+  179.   5
+  180.   5
+  181.   4
+  182.   4
+  183.   9
+  184.   8
+  185.   7
+  186.   9
+  187.   3
+  188.   9
+  189.   5
+  190.   5
+  191.   8
+  192.   8
+  193.   9
+  194.   4
+  195.   4
+  196.   5
+  197.  17
+  198.  11
+  199.  11
+  200.  11
+  201.  11
+  202.  11
+  203.   3
+  204.   3
+  205.   3
+  206.   3
+  207.  12
+  208.  12
+  209.  12
+  210.  11
+  211.  11
+  212.  11
+  213.   3
+  214.   5
+  215.   4
+  216.   5
+  217.   5
+  218.   5
+  219.   5
+  220.   5
+  221.   5
+  222.   5
+  223.   5
+  224.   9
+  225.   3
+  226.  11
+  227.   8
+  228.   9
+  229.   7
+  230.   3
+  231.  12
+  232.   9
+  233.   9
+  234.   7
+  235.  11
+  236.   9
+  237.   9
+  238.   9
+  239.   5
+  240.   5
+  241.   5
+  242.  13
+  243.  13
+  244.  13
+  245.   9
+  246.  12
+  247.   9
+  248.   3
+  249.  11
+  250.   8
+  251.  12
+  252.   8
+  253.  12
+  254.   8
+  255.   9
+  256.   9
+  257.   5
+  258.  11
+  259.   9
+  260.  11
+  261.   9
+  262.  12
+  263.  10
+  264.  12
+  265.  11
+  266.   9
+  267.  11
+  268.   9
+  269.   9
+  270.   3
+  271.   9
+  272.   4
+  273.   9
+  274.   5
+  275.  11
+  276.   8
+  277.  11
+  278.   8
+  279.  12
+  280.   9
+  281.  11
+  282.   5
+  283.  11
+  284.   5
+  285.  11
+  286.   8
+  287.   9
+  288.   4
+  289.   9
+  290.   6
+  291.  11
+  292.   8
+  293.  11
+  294.   8
+  295.   9
+  296.   7
+  297.   9
+  298.   7
+  299.   9
+  300.  12
+  301.  11
+  302.   9
+  303.   9
+  304.   7
+  305.  10
+  306.   5
+  307.  10
+  308.   9
+  309.   8
+  310.   6
+  311.  18
+  312.  16
+  313.   8
+  314.  16
+  315.   8
+  316.  16
+  317.   8
+  318.   8
+  319.  16
+  320.  12
+  321.   9
+  322.  10
+  323.   9
+  324.  10
+  325.  10
+  326.  11
+  327.  10
+  328.  11
+  329.  11
+  330.  11
+  331.  11
+  332.  11
+  333.  11
+  334.  11
+  335.  11
+  336.  11
+  337.  11
+  338.  11
+  339.  11
+  340.  11
+  341.  11
+  342.  11
+  343.  11
+  344.  11
+  345.  11
+  346.  11
+  347.  11
+  348.  11
+  349.  11
+  350.  11
+  351.  11
+  352.  11
+  353.  11
+  354.  11
+  355.  11
+  356.  11
+  357.  11
+  358.  11
+  359.  11
+  360.  11
+  361.  11
+  362.  11
+  363.  11
+  364.  11
+  365.  11
+  366.  11
+  367.  11
+  368.  11
+  369.  11
+  370.  11
+  371.  11
+  372.  11
+  373.  12
+  374.  10
+  375.  16
+  376.  16
+  377.  16
+  378.  16
+  379.  16
+  380.  10
+  381.  10
+  382.  10
+  383.  16
+  384.  17
+  385.  15
+  386.  12
+  387.  12
+  388.   9
+  389.  11
+  390.  10
+  391.   8
+  392.   8
+  393.  12
+  394.  12
+  395.   7
+  396.  10
+  397.   3
+  398.   6
+  399.  14
+  400.   5
+  401.  10
+  402.   6
+  403.   6
+  404.  10
+  405.   6
+  406.  11
+  407.   9
+  408.  12
+  409.   8
+  410.  12
+  411.   8
+  412.  11
+  413.   9
+  414.  11
+  415.   9
+  416.  11
+  417.   9
+  418.  12
+  419.   9
+  420.  12
+  421.   9
+  422.  12
+  423.   9
+  424.  11
+  425.   8
+  426.  11
+  427.   8
+  428.   3
+  429.   3
+  430.   3
+  431.   3
+  432.   3
+  433.   3
+  434.   3
+  435.   4
+  436.   8
+  437.   3
+  438.  11
+  439.   8
+  440.   8
+  441.   9
+  442.   3
+  443.  11
+  444.   8
+  445.  12
+  446.   9
+  447.  12
+  448.   9
+  449.  12
+  450.   9
+  451.  11
+  452.   5
+  453.  11
+  454.   8
+  455.  10
+  456.   4
+  457.  11
+  458.   8
+  459.  11
+  460.   8
+  461.  11
+  462.   8
+  463.  12
+  464.   8
+  465.  15
+  466.  11
+  467.   9
+  468.   7
+  469.   3
+  470.  11
+  471.   9
+  472.  16
+  473.  14
+  474.  12
+  475.   9
+  476.   3
+  477.  15
+  478.  11
+  479.  15
+  480.  11
+  481.  15
+  482.  11
+  483.   9
+  484.   7
+  485.   4
+  486.   5
+  487.   9
+  488.  10
+  489.  13
+  490.  13
+  491.  13
+  492.  13
+  493.   5
+  494.   5
+  495.   5
+  496.   5
+  497.  11
+  498.  13
+  499.  13
+  500.   6
+  501.  12
+  502.  12
+  503.  12
+  504.   3
+  505.  11
+  506.  11
+  507.  11
+  508.  11
+  509.   9
+  510.  11
+  511.   3
+  512.  11
+  513.  11
+  514.  13
+  515.  11
+  516.  10
+  517.  12
+  518.  11
+  519.  11
+  520.  10
+  521.   9
+  522.   9
+  523.  11
+  524.  11
+  525.  12
+  526.   3
+  527.   9
+  528.   9
+  529.   7
+  530.   8
+  531.   3
+  532.   8
+  533.   9
+  534.   8
+  535.   7
+  536.   8
+  537.   9
+  538.   3
+  539.   8
+  540.   8
+  541.   9
+  542.   7
+  543.   7
+  544.   9
+  545.   9
+  546.   8
+  547.   8
+  548.   8
+  549.  11
+  550.  13
+  551.   3
+  552.   8
+  553.   9
+  554.   8
+  555.  13
+  556.  11
+  557.  14
+  558.   9
+  559.  12
+  560.  11
+  561.   3
+  562.   3
+  563.   8
+  564.  17
+  565.  16
+  566.  13
+  567.   9
+  568.  10
+  569.  12
+  570.  11
+  571.  11
+  572.  11
+  573.   9
+  574.  11
+  575.  11
+  576.  14
+  577.  10
+  578.  12
+  579.  12
+  580.   9
+  581.  11
+  582.  13
+  583.  11
+  584.  12
+  585.  11
+  586.  11
+  587.  12
+  588.   9
+  589.  10
+  590.  11
+  591.  11
+  592.  12
+  593.  10
+  594.  13
+  595.  14
+  596.  13
+  597.  14
+  598.  11
+  599.  12
+  600.  16
+  601.  12
+  602.   9
+  603.   9
+  604.   9
+  605.   6
+  606.   9
+  607.   9
+  608.  10
+  609.   7
+  610.   8
+  611.   8
+  612.   7
+  613.   8
+  614.  11
+  615.   8
+  616.   9
+  617.   8
+  618.   9
+  619.   8
+  620.   7
+  621.   7
+  622.  13
+  623.   7
+  624.   9
+  625.   8
+  626.  11
+  627.  11
+  628.  10
+  629.  12
+  630.   9
+  631.   8
+  632.  12
+  633.   9
+  634.   9
+  635.   8
+  636.   6
+  637.   8
+  638.   8
+  639.   4
+  640.   3
+  641.   3
+  642.  15
+  643.  13
+  644.   8
+  645.   7
+  646.   7
+  647.   8
+  648.   8
+  649.   7
+  650.  16
+  651.  17
+  652.  11
+  653.   5
+  654.   5
+  655.   5
+  656.   5
+  657.   5
+  658.   5
+  659.   5
+  660.   5
+  661.   5
+  662.   5
+  663.   5
+  664.   5
+  665.   5
+  666.   6
+  667.   5
+  668.   3
+  669.   5
+  670.   5
+  671.   4
+  672.   9
+  673.   9
+  674.   6
+  675.   8
+  676.  10
+  677.   3
+  678.   6
+  679.  10
+  680.   9
+  681.   3
+  682.   8
+  683.   7
+  684.   7
+  685.  10
+  686.  10
+  687.   3
+  688.   6
+  689.   9
+  690.   8
+  691.   9
+  692.   9
+  693.   7
+  694.   8
+  695.   9
+  696.   8
+  697.  11
+  698.  10
+  699.   6
+  700.   6
+  701.   6
+  702.   4
+  703.   7
+  704.  12
+  705.   3
+  706.   8
+  707.   8
+  708.   7
+  709.   7
+  710.   9
+  711.  11
+  712.  11
+  713.  11
+  714.  11
+  715.   9
+  716.   9
+  717.   9
+  718.   9
+  719.   6
+  720.   8
+  721.  10
+  722.   5
+  723.   7
+  724.   9
+  725.   5
+  726.   8
+  727.   7
+  728.   7
+  729.  10
+  730.   6
+  731.   9
+  732.   9
+  733.   9
+  734.   8
+  735.   9
+  736.   8
+  737.  11
+  738.  10
+  739.   3
+  740.   9
+  741.   7
+  742.   9
+  743.   9
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.   5
+  749.   5
+  750.   6
+  751.   7
+  752.   3
+  753.   3
+  754.   4
+  755.   3
+  756.   3
+  757.   3
+  758.   3
+  759.   3
+  760.   3
+  761.   8
+  762.   8
+  763.   8
+  764.   8
+  765.   8
+  766.   8
+  767.   8
+  768.   8
+  769.   8
+  770.   8
+  771.   8
+  772.   5
+  773.   8
+  774.  12
+  775.  12
+  776.   5
+  777.  12
+  778.   8
+  779.   8
+  780.   8
+  781.  12
+  782.  12
+  783.  12
+  784.  12
+  785.  12
+  786.   3
+  787.  12
+  788.  12
+  789.  12
+  790.  12
+  791.  12
+  792.  12
+  793.  12
+  794.  12
+  795.  10
+  796.  12
+  797.  12
+  798.  12
+  799.  11
+  800.  11
+  801.   4
+  802.   4
+  803.  12
+  804.  12
+  805.  12
+  806.  12
+  807.   9
+  808.   8
+  809.   8
+  810.   8
+  811.   8
+  812.   8
+  813.  13
+  814.  15
+  815.   6
+  816.   8
+  817.  13
+  818.  15
+  819.   6
+  820.   8
+  821.  10
+  822.   9
+  823.  12
+  824.  12
+  825.  12
+  826.  12
+  827.  12
+  828.  12
+  829.  12
+  830.  12
+  831.  12
+  832.  12
+  833.  12
+  834.  12
+  835.  12
+  836.  12
+  837.  12
+  838.  12
+  839.   4
+  840.   3
+  841.   3
+  842.   3
+  843.   3
+  844.  12
+  845.  12
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.   9
+  863.  16
+  864.  12
+  865.  12
+  866.  12
+  867.  12
+  868.  12
+  869.  12
+  870.  12
+  871.  12
+  872.  12
+  873.  12
+  874.  12
+  875.  12
+  876.  12
+  877.  12
+  878.  12
+  879.  12
+  880.  12
+  881.  12
+  882.  12
+  883.  12
+  884.  12
+  885.  12
+  886.  12
+  887.  12
+  888.  12
+  889.  12
+  890.  12
+  891.  12
+  892.   5
+  893.   5
+  894.  12
+  895.  10
+  896.   7
+  897.   3
+  898.   4
+  899.   3
+  900.   4
+  901.   7
+  902.   7
+  903.   3
+  904.   4
+  905.  10
+  906.   9
+  907.   4
+  908.   4
+  909.   3
+  910.   4
+  911.  11
+  912.  11
+  913.   4
+  914.   4
+  915.   5
+  916.   6
+  917.  11
+  918.  11
+  919.   4
+  920.   4
+  921.  11
+  922.  11
+  923.   4
+  924.   4
+  925.   9
+  926.   8
+  927.   8
+  928.   8
+  929.   9
+  930.   8
+  931.   8
+  932.   8
+  933.   9
+  934.   8
+  935.   8
+  936.   8
+  937.   5
+  938.   5
+  939.   5
+  940.   5
+  941.   8
+  942.   8
+  943.   8
+  944.   8
+  945.  13
+  946.  13
+  947.   9
+  948.   9
+  949.  13
+  950.  13
+  951.   9
+  952.   9
+  953.  18
+  954.  18
+  955.  14
+  956.  14
+  957.  18
+  958.  18
+  959.  14
+  960.  14
+  961.   9
+  962.   9
+  963.   9
+  964.   9
+  965.   9
+  966.   9
+  967.   9
+  968.   9
+  969.   9
+  970.   7
+  971.   8
+  972.   6
+  973.   9
+  974.   7
+  975.   8
+  976.   6
+  977.  13
+  978.  13
+  979.   4
+  980.   4
+  981.   9
+  982.   9
+  983.   4
+  984.   4
+  985.  10
+  986.  10
+  987.   6
+  988.   6
+  989.   8
+  990.   8
+  991.   3
+  992.   3
+  993.   5
+  994.   5
+  995.   6
+  996.   6
+  997.   8
+  998.   8
+  999.   4
+ 1000.   4
+ 1001.   5
+ 1002.   6
+ 1003.   7
+ 1004.   6
+ 1005.   7
+ 1006.   7
+ 1007.  10
+ 1008.   9
+ 1009.  10
+ 1010.   9
+ 1011.   4
+ 1012.   4
+ 1013.   9
+ 1014.  10
+ 1015.   9
+ 1016.  10
+ 1017.   9
+ 1018.  10
+ 1019.   9
+ 1020.  10
+ 1021.  12
+ 1022.  12
+ 1023.   3
+ 1024.   3
+ 1025.  12
+ 1026.  12
+ 1027.  12
+ 1028.   3
+ 1029.   3
+ 1030.  12
+ 1031.  12
+ 1032.   3
+ 1033.   4
+ 1034.  12
+ 1035.  12
+ 1036.  12
+ 1037.   3
+ 1038.   3
+ 1039.   3
+ 1040.   3
+ 1041.   3
+ 1042.   4
+ 1043.  12
+ 1044.   3
+ 1045.   3
+ 1046.  12
+ 1047.  12
+ 1048.  12
+ 1049.  12
+ 1050.  12
+ 1051.  12
+ 1052.  12
+ 1053.  12
+ 1054.  12
+ 1055.  12
+ 1056.  12
+ 1057.  12
+ 1058.  12
+ 1059.  12
+ 1060.  12
+ 1061.  12
+ 1062.  12
+ 1063.  12
+ 1064.  12
+ 1065.  12
+ 1066.  12
+ 1067.  12
+ 1068.  12
+ 1069.  12
+ 1070.  12
+ 1071.  12
+ 1072.  12
+ 1073.  12
+ 1074.  12
+ 1075.  12
+ 1076.  12
+ 1077.  12
+ 1078.  12
+ 1079.  12
+ 1080.  12
+ 1081.  12
+ 1082.  12
+ 1083.  12
+ 1084.  12
+ 1085.  12
+ 1086.  12
+ 1087.  12
+ 1088.  12
+ 1089.  12
+ 1090.  12
+ 1091.  12
+ 1092.  12
+ 1093.  12
+ 1094.  12
+ 1095.  12
+ 1096.  12
+ 1097.  12
+ 1098.  12
+ 1099.  12
+ 1100.   5
+ 1101.   5
+ 1102.   5
+ 1103.  12
+ 1104.  12
+ 1105.  12
+ 1106.  12
+ 1107.  12
+ 1108.  12
+ 1109.  12
+ 1110.  12
+ 1111.  12
+ 1112.  12
+ 1113.  12
+ 1114.  12
+ 1115.  12
+ 1116.  12
+ 1117.  12
+ 1118.  12
+ 1119.  12
+ 1120.  12
+ 1121.  12
+ 1122.  12
+ 1123.  12
+ 1124.  12
+ 1125.  12
+ 1126.  12
+ 1127.   2
+ 1128.  16
+ 1129.  32
+ 1130.  14
+ 1131.  11
+ 1132.  14
+ 1133.  11
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.   8
+ 1151.  13
+ 1152.  13
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.   4
+ 1188.  11
+ 1189.   9
+ 1190.  11
+ 1191.   9
+ 1192.  11
+ 1193.   9
+ 1194.  11
+ 1195.   9
+ 1196.  11
+ 1197.   9
+ 1198.  11
+ 1199.   9
+ 1200.  11
+ 1201.   9
+ 1202.  11
+ 1203.   9
+ 1204.  11
+ 1205.   9
+ 1206.  11
+ 1207.   9
+ 1208.  11
+ 1209.   9
+ 1210.  11
+ 1211.   9
+ 1212.  11
+ 1213.   9
+ 1214.  11
+ 1215.   9
+ 1216.  11
+ 1217.   9
+ 1218.  11
+ 1219.   9
+ 1220.  11
+ 1221.   9
+ 1222.  11
+ 1223.   9
+ 1224.  11
+ 1225.   9
+ 1226.  11
+ 1227.   9
+ 1228.   3
+ 1229.   4
+ 1230.   3
+ 1231.   4
+ 1232.  12
+ 1233.   9
+ 1234.  12
+ 1235.   9
+ 1236.  12
+ 1237.   9
+ 1238.  12
+ 1239.   9
+ 1240.  12
+ 1241.   9
+ 1242.  12
+ 1243.   9
+ 1244.  12
+ 1245.   9
+ 1246.  14
+ 1247.  11
+ 1248.  14
+ 1249.  11
+ 1250.  14
+ 1251.  11
+ 1252.  14
+ 1253.  11
+ 1254.  14
+ 1255.  11
+ 1256.  11
+ 1257.   8
+ 1258.  11
+ 1259.   8
+ 1260.  14
+ 1261.  11
+ 1262.  14
+ 1263.  11
+ 1264.  14
+ 1265.  11
+ 1266.  14
+ 1267.  11
+ 1268.  14
+ 1269.  11
+ 1270.   9
+ 1271.   7
+ 1272.   9
+ 1273.   7
+ 1274.   9
+ 1275.   7
+ 1276.  11
+ 1277.   9
+ 1278.   3
+ 1279.   4
+ 1280.  12
+ 1281.   9
+ 1282.  11
+ 1283.   8
+ 1284.  11
+ 1285.   8
+ 1286.  11
+ 1287.   8
+ 1288.  11
+ 1289.   8
+ 1290.  11
+ 1291.   8
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.   9
+ 1297.   6
+ 1298.  15
+ 1299.  11
+ 1300.   9
+ 1301.   7
+ 1302.   9
+ 1303.   7
+ 1304.  12
+ 1305.   9
+ 1306.   9
+ 1307.   8
+ 1308.   9
+ 1309.   8
+ 1310.  11
+ 1311.   8
+ 1312.  11
+ 1313.   8
+ 1314.  11
+ 1315.   8
+ 1316.  12
+ 1317.   9
+ 1318.  12
+ 1319.   9
+
+
+	DevRec  5: ppem =  17, maxWid =  34
+    0.  13
+    1.   0
+    2.   5
+    3.   5
+    4.   5
+    5.   6
+    6.   9
+    7.   9
+    8.  15
+    9.  11
+   10.   3
+   11.   6
+   12.   6
+   13.   7
+   14.  10
+   15.   5
+   16.   6
+   17.   5
+   18.   5
+   19.   9
+   20.   9
+   21.   9
+   22.   9
+   23.   9
+   24.   9
+   25.   9
+   26.   9
+   27.   9
+   28.   9
+   29.   5
+   30.   5
+   31.  10
+   32.  10
+   33.  10
+   34.   9
+   35.  17
+   36.  11
+   37.  11
+   38.  12
+   39.  12
+   40.  11
+   41.  10
+   42.  12
+   43.  11
+   44.   5
+   45.   9
+   46.  11
+   47.   9
+   48.  13
+   49.  11
+   50.  12
+   51.  11
+   52.  12
+   53.  11
+   54.  11
+   55.   9
+   56.  11
+   57.  11
+   58.  17
+   59.  11
+   60.  11
+   61.   9
+   62.   5
+   63.   5
+   64.   5
+   65.   7
+   66.   9
+   67.   6
+   68.   9
+   69.   9
+   70.   9
+   71.   9
+   72.   9
+   73.   5
+   74.   9
+   75.   9
+   76.   4
+   77.   3
+   78.   8
+   79.   3
+   80.  13
+   81.   9
+   82.   9
+   83.   9
+   84.   9
+   85.   6
+   86.   8
+   87.   4
+   88.   9
+   89.   7
+   90.  11
+   91.   7
+   92.   9
+   93.   8
+   94.   6
+   95.   5
+   96.   6
+   97.  10
+   98.  11
+   99.  11
+  100.  12
+  101.  11
+  102.  11
+  103.  12
+  104.  11
+  105.   9
+  106.   9
+  107.   9
+  108.   9
+  109.   9
+  110.   9
+  111.   9
+  112.   9
+  113.   9
+  114.   9
+  115.   9
+  116.   5
+  117.   5
+  118.   5
+  119.   5
+  120.   9
+  121.   9
+  122.   9
+  123.   9
+  124.   9
+  125.   9
+  126.   9
+  127.   9
+  128.   9
+  129.   9
+  130.   9
+  131.   7
+  132.   9
+  133.   9
+  134.   9
+  135.   6
+  136.   9
+  137.  10
+  138.  13
+  139.  13
+  140.  17
+  141.   6
+  142.   6
+  143.   9
+  144.  17
+  145.  13
+  146.  12
+  147.   9
+  148.   9
+  149.   9
+  150.   9
+  151.   9
+  152.   8
+  153.  12
+  154.  14
+  155.   9
+  156.   4
+  157.   5
+  158.   5
+  159.  13
+  160.  15
+  161.   9
+  162.  10
+  163.   5
+  164.  10
+  165.  10
+  166.   9
+  167.   9
+  168.  11
+  169.   9
+  170.   9
+  171.  17
+  172.  11
+  173.  11
+  174.  12
+  175.  17
+  176.  16
+  177.   9
+  178.  17
+  179.   6
+  180.   6
+  181.   4
+  182.   4
+  183.   9
+  184.   8
+  185.   9
+  186.  11
+  187.   3
+  188.   9
+  189.   6
+  190.   6
+  191.   9
+  192.   9
+  193.   9
+  194.   5
+  195.   4
+  196.   6
+  197.  17
+  198.  11
+  199.  11
+  200.  11
+  201.  11
+  202.  11
+  203.   5
+  204.   5
+  205.   5
+  206.   5
+  207.  12
+  208.  12
+  209.  12
+  210.  11
+  211.  11
+  212.  11
+  213.   5
+  214.   6
+  215.   4
+  216.   6
+  217.   6
+  218.   6
+  219.   6
+  220.   6
+  221.   6
+  222.   6
+  223.   6
+  224.   9
+  225.   3
+  226.  11
+  227.   8
+  228.   9
+  229.   8
+  230.   5
+  231.  12
+  232.   9
+  233.  11
+  234.   9
+  235.  11
+  236.   9
+  237.  10
+  238.  10
+  239.   6
+  240.   6
+  241.   6
+  242.  14
+  243.  14
+  244.  14
+  245.   9
+  246.  12
+  247.   9
+  248.   5
+  249.  11
+  250.   8
+  251.  12
+  252.   9
+  253.  12
+  254.   9
+  255.  10
+  256.   9
+  257.   6
+  258.  11
+  259.   9
+  260.  11
+  261.   9
+  262.  12
+  263.  10
+  264.  12
+  265.  11
+  266.   9
+  267.  11
+  268.   9
+  269.   9
+  270.   3
+  271.   9
+  272.   4
+  273.   9
+  274.   6
+  275.  11
+  276.   9
+  277.  11
+  278.   9
+  279.  12
+  280.   9
+  281.  11
+  282.   6
+  283.  11
+  284.   6
+  285.  11
+  286.   8
+  287.   9
+  288.   4
+  289.   9
+  290.   6
+  291.  11
+  292.   9
+  293.  11
+  294.   9
+  295.   9
+  296.   8
+  297.   9
+  298.   8
+  299.   9
+  300.  12
+  301.  13
+  302.  10
+  303.   9
+  304.   8
+  305.  11
+  306.   6
+  307.  11
+  308.   9
+  309.   9
+  310.   6
+  311.  19
+  312.  17
+  313.   9
+  314.  17
+  315.   9
+  316.  17
+  317.   9
+  318.   9
+  319.  17
+  320.  12
+  321.  10
+  322.  10
+  323.  10
+  324.  10
+  325.  10
+  326.  12
+  327.  11
+  328.  12
+  329.  12
+  330.  12
+  331.  12
+  332.  12
+  333.  12
+  334.  12
+  335.  12
+  336.  12
+  337.  12
+  338.  12
+  339.  12
+  340.  12
+  341.  12
+  342.  12
+  343.  12
+  344.  12
+  345.  12
+  346.  12
+  347.  12
+  348.  12
+  349.  12
+  350.  12
+  351.  12
+  352.  12
+  353.  12
+  354.  12
+  355.  12
+  356.  12
+  357.  12
+  358.  12
+  359.  12
+  360.  12
+  361.  12
+  362.  12
+  363.  12
+  364.  12
+  365.  12
+  366.  12
+  367.  12
+  368.  12
+  369.  12
+  370.  12
+  371.  12
+  372.  12
+  373.  12
+  374.  10
+  375.  17
+  376.  17
+  377.  17
+  378.  17
+  379.  17
+  380.  10
+  381.  10
+  382.  10
+  383.  17
+  384.  18
+  385.  16
+  386.  13
+  387.  13
+  388.   9
+  389.  11
+  390.  10
+  391.   9
+  392.   9
+  393.  13
+  394.  13
+  395.   8
+  396.  10
+  397.   3
+  398.   6
+  399.  15
+  400.   6
+  401.  10
+  402.   6
+  403.   6
+  404.  10
+  405.   6
+  406.  11
+  407.   9
+  408.  12
+  409.   9
+  410.  12
+  411.   9
+  412.  11
+  413.   9
+  414.  11
+  415.   9
+  416.  11
+  417.   9
+  418.  12
+  419.   9
+  420.  12
+  421.   9
+  422.  12
+  423.   9
+  424.  11
+  425.   9
+  426.  11
+  427.   9
+  428.   5
+  429.   5
+  430.   5
+  431.   5
+  432.   5
+  433.   5
+  434.   5
+  435.   4
+  436.   9
+  437.   3
+  438.  11
+  439.   8
+  440.   8
+  441.   9
+  442.   3
+  443.  11
+  444.   9
+  445.  12
+  446.   9
+  447.  12
+  448.   9
+  449.  12
+  450.   9
+  451.  11
+  452.   6
+  453.  11
+  454.   8
+  455.  10
+  456.   4
+  457.  11
+  458.   9
+  459.  11
+  460.   9
+  461.  11
+  462.   9
+  463.  12
+  464.   9
+  465.  17
+  466.  11
+  467.  11
+  468.   9
+  469.   4
+  470.  11
+  471.   9
+  472.  17
+  473.  15
+  474.  13
+  475.   9
+  476.   4
+  477.  17
+  478.  11
+  479.  17
+  480.  11
+  481.  17
+  482.  11
+  483.  11
+  484.   9
+  485.   4
+  486.   6
+  487.   9
+  488.  10
+  489.  14
+  490.  14
+  491.  14
+  492.  14
+  493.   6
+  494.   6
+  495.   6
+  496.   6
+  497.  11
+  498.  13
+  499.  13
+  500.   6
+  501.  13
+  502.  14
+  503.  13
+  504.   3
+  505.  11
+  506.  11
+  507.  11
+  508.  11
+  509.   9
+  510.  11
+  511.   5
+  512.  11
+  513.  11
+  514.  13
+  515.  11
+  516.  11
+  517.  12
+  518.  11
+  519.  11
+  520.  11
+  521.   9
+  522.  11
+  523.  11
+  524.  13
+  525.  13
+  526.   5
+  527.  11
+  528.  10
+  529.   8
+  530.   9
+  531.   3
+  532.   9
+  533.  10
+  534.   9
+  535.   8
+  536.   9
+  537.   9
+  538.   3
+  539.   8
+  540.   9
+  541.   9
+  542.   7
+  543.   8
+  544.   9
+  545.   9
+  546.   8
+  547.   9
+  548.   9
+  549.  11
+  550.  13
+  551.   3
+  552.   9
+  553.   9
+  554.   9
+  555.  13
+  556.  11
+  557.  15
+  558.   9
+  559.  12
+  560.  11
+  561.   5
+  562.   5
+  563.   9
+  564.  18
+  565.  17
+  566.  15
+  567.  10
+  568.  11
+  569.  11
+  570.  11
+  571.  11
+  572.  11
+  573.   9
+  574.  12
+  575.  11
+  576.  15
+  577.  10
+  578.  12
+  579.  12
+  580.  10
+  581.  10
+  582.  13
+  583.  11
+  584.  12
+  585.  11
+  586.  11
+  587.  12
+  588.   9
+  589.  11
+  590.  13
+  591.  11
+  592.  13
+  593.  10
+  594.  15
+  595.  15
+  596.  13
+  597.  14
+  598.  10
+  599.  12
+  600.  16
+  601.  12
+  602.   9
+  603.   9
+  604.   9
+  605.   6
+  606.  10
+  607.   9
+  608.  11
+  609.   8
+  610.   9
+  611.   9
+  612.   7
+  613.  10
+  614.  11
+  615.   9
+  616.   9
+  617.   9
+  618.   9
+  619.   9
+  620.   8
+  621.   9
+  622.  13
+  623.   7
+  624.  10
+  625.   9
+  626.  14
+  627.  14
+  628.  11
+  629.  12
+  630.   9
+  631.   9
+  632.  13
+  633.   9
+  634.   9
+  635.   9
+  636.   6
+  637.   9
+  638.   8
+  639.   4
+  640.   5
+  641.   3
+  642.  15
+  643.  14
+  644.   9
+  645.   7
+  646.   9
+  647.   9
+  648.   8
+  649.   7
+  650.  17
+  651.  18
+  652.  12
+  653.   6
+  654.   6
+  655.   6
+  656.   6
+  657.   6
+  658.   6
+  659.   6
+  660.   6
+  661.   6
+  662.   6
+  663.   6
+  664.   6
+  665.   6
+  666.   7
+  667.   6
+  668.   3
+  669.   6
+  670.   6
+  671.   5
+  672.  10
+  673.   9
+  674.   7
+  675.   9
+  676.  10
+  677.   3
+  678.   7
+  679.  10
+  680.  10
+  681.   3
+  682.   9
+  683.   8
+  684.   8
+  685.  10
+  686.  10
+  687.   3
+  688.   6
+  689.  10
+  690.   9
+  691.  10
+  692.   9
+  693.   8
+  694.   8
+  695.   9
+  696.   9
+  697.  12
+  698.  11
+  699.   7
+  700.   7
+  701.   7
+  702.   4
+  703.   7
+  704.  12
+  705.   3
+  706.   9
+  707.   9
+  708.   8
+  709.   8
+  710.   9
+  711.  12
+  712.  12
+  713.  12
+  714.  12
+  715.  10
+  716.  10
+  717.  10
+  718.   9
+  719.   7
+  720.   9
+  721.  10
+  722.   5
+  723.   7
+  724.  10
+  725.   5
+  726.   9
+  727.   8
+  728.   8
+  729.  10
+  730.   6
+  731.  10
+  732.  10
+  733.   9
+  734.   8
+  735.   9
+  736.   9
+  737.  12
+  738.  11
+  739.   3
+  740.   9
+  741.   8
+  742.   9
+  743.  10
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.   5
+  749.   5
+  750.   6
+  751.   7
+  752.   4
+  753.   3
+  754.   4
+  755.   3
+  756.   3
+  757.   4
+  758.   3
+  759.   4
+  760.   3
+  761.   9
+  762.   9
+  763.   9
+  764.   9
+  765.   9
+  766.   9
+  767.   9
+  768.   9
+  769.   9
+  770.   9
+  771.   9
+  772.   5
+  773.   9
+  774.  13
+  775.  13
+  776.   5
+  777.  13
+  778.   9
+  779.   9
+  780.   9
+  781.  13
+  782.  13
+  783.  13
+  784.  13
+  785.  13
+  786.   4
+  787.  13
+  788.  13
+  789.  13
+  790.  13
+  791.  13
+  792.  13
+  793.  13
+  794.  13
+  795.  11
+  796.  13
+  797.  13
+  798.  13
+  799.  12
+  800.  12
+  801.   4
+  802.   4
+  803.  13
+  804.  13
+  805.  13
+  806.  13
+  807.  10
+  808.   9
+  809.   9
+  810.   9
+  811.   8
+  812.   8
+  813.  14
+  814.  16
+  815.   7
+  816.   9
+  817.  14
+  818.  16
+  819.   7
+  820.   9
+  821.  11
+  822.  10
+  823.  13
+  824.  13
+  825.  13
+  826.  13
+  827.  13
+  828.  13
+  829.  13
+  830.  13
+  831.  13
+  832.  13
+  833.  13
+  834.  13
+  835.  13
+  836.  13
+  837.  13
+  838.  13
+  839.   4
+  840.   4
+  841.   4
+  842.   4
+  843.   4
+  844.  13
+  845.  13
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.   9
+  863.  17
+  864.  13
+  865.  13
+  866.  13
+  867.  13
+  868.  13
+  869.  13
+  870.  13
+  871.  13
+  872.  13
+  873.  13
+  874.  13
+  875.  13
+  876.  13
+  877.  13
+  878.  13
+  879.  13
+  880.  13
+  881.  13
+  882.  13
+  883.  13
+  884.  13
+  885.  13
+  886.  13
+  887.  13
+  888.  13
+  889.  13
+  890.  13
+  891.  13
+  892.   5
+  893.   5
+  894.  13
+  895.  10
+  896.   7
+  897.   4
+  898.   4
+  899.   4
+  900.   4
+  901.   7
+  902.   7
+  903.   4
+  904.   4
+  905.  11
+  906.  10
+  907.   4
+  908.   4
+  909.   4
+  910.   4
+  911.  12
+  912.  12
+  913.   4
+  914.   4
+  915.   5
+  916.   6
+  917.  12
+  918.  12
+  919.   4
+  920.   4
+  921.  12
+  922.  12
+  923.   4
+  924.   4
+  925.  10
+  926.   9
+  927.   9
+  928.   9
+  929.  10
+  930.   9
+  931.   9
+  932.   9
+  933.  10
+  934.   9
+  935.   9
+  936.   9
+  937.   6
+  938.   6
+  939.   6
+  940.   6
+  941.   8
+  942.   8
+  943.   8
+  944.   8
+  945.  14
+  946.  14
+  947.   9
+  948.   9
+  949.  14
+  950.  14
+  951.   9
+  952.   9
+  953.  19
+  954.  19
+  955.  14
+  956.  14
+  957.  19
+  958.  19
+  959.  14
+  960.  14
+  961.  10
+  962.  10
+  963.  10
+  964.  10
+  965.  10
+  966.  10
+  967.  10
+  968.  10
+  969.   9
+  970.   8
+  971.   9
+  972.   7
+  973.   9
+  974.   8
+  975.   9
+  976.   7
+  977.  13
+  978.  13
+  979.   5
+  980.   4
+  981.  10
+  982.  10
+  983.   5
+  984.   4
+  985.  10
+  986.  10
+  987.   7
+  988.   7
+  989.   9
+  990.   9
+  991.   4
+  992.   4
+  993.   6
+  994.   6
+  995.   7
+  996.   7
+  997.   9
+  998.   9
+  999.   4
+ 1000.   4
+ 1001.   5
+ 1002.   6
+ 1003.   8
+ 1004.   7
+ 1005.   7
+ 1006.   7
+ 1007.  11
+ 1008.  10
+ 1009.  11
+ 1010.  10
+ 1011.   4
+ 1012.   4
+ 1013.   9
+ 1014.  10
+ 1015.   9
+ 1016.  10
+ 1017.   9
+ 1018.  10
+ 1019.   9
+ 1020.  10
+ 1021.  13
+ 1022.  13
+ 1023.   3
+ 1024.   3
+ 1025.  13
+ 1026.  13
+ 1027.  13
+ 1028.   3
+ 1029.   4
+ 1030.  13
+ 1031.  13
+ 1032.   4
+ 1033.   4
+ 1034.  13
+ 1035.  13
+ 1036.  13
+ 1037.   4
+ 1038.   4
+ 1039.   4
+ 1040.   4
+ 1041.   4
+ 1042.   4
+ 1043.  13
+ 1044.   3
+ 1045.   3
+ 1046.  13
+ 1047.  13
+ 1048.  13
+ 1049.  13
+ 1050.  13
+ 1051.  13
+ 1052.  13
+ 1053.  13
+ 1054.  13
+ 1055.  13
+ 1056.  13
+ 1057.  13
+ 1058.  13
+ 1059.  13
+ 1060.  13
+ 1061.  13
+ 1062.  13
+ 1063.  13
+ 1064.  13
+ 1065.  13
+ 1066.  13
+ 1067.  13
+ 1068.  13
+ 1069.  13
+ 1070.  13
+ 1071.  13
+ 1072.  13
+ 1073.  13
+ 1074.  13
+ 1075.  13
+ 1076.  13
+ 1077.  13
+ 1078.  13
+ 1079.  13
+ 1080.  13
+ 1081.  13
+ 1082.  13
+ 1083.  13
+ 1084.  13
+ 1085.  13
+ 1086.  13
+ 1087.  13
+ 1088.  13
+ 1089.  13
+ 1090.  13
+ 1091.  13
+ 1092.  13
+ 1093.  13
+ 1094.  13
+ 1095.  13
+ 1096.  13
+ 1097.  13
+ 1098.  13
+ 1099.  13
+ 1100.   5
+ 1101.   5
+ 1102.   5
+ 1103.  13
+ 1104.  13
+ 1105.  13
+ 1106.  13
+ 1107.  13
+ 1108.  13
+ 1109.  13
+ 1110.  13
+ 1111.  13
+ 1112.  13
+ 1113.  13
+ 1114.  13
+ 1115.  13
+ 1116.  13
+ 1117.  13
+ 1118.  13
+ 1119.  13
+ 1120.  13
+ 1121.  13
+ 1122.  13
+ 1123.  13
+ 1124.  13
+ 1125.  13
+ 1126.  13
+ 1127.   2
+ 1128.  17
+ 1129.  34
+ 1130.  15
+ 1131.  11
+ 1132.  15
+ 1133.  11
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.   9
+ 1151.  14
+ 1152.  14
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.   4
+ 1188.  11
+ 1189.   9
+ 1190.  11
+ 1191.   9
+ 1192.  11
+ 1193.   9
+ 1194.  11
+ 1195.   9
+ 1196.  11
+ 1197.   9
+ 1198.  11
+ 1199.   9
+ 1200.  11
+ 1201.   9
+ 1202.  11
+ 1203.   9
+ 1204.  11
+ 1205.   9
+ 1206.  11
+ 1207.   9
+ 1208.  11
+ 1209.   9
+ 1210.  11
+ 1211.   9
+ 1212.  11
+ 1213.   9
+ 1214.  11
+ 1215.   9
+ 1216.  11
+ 1217.   9
+ 1218.  11
+ 1219.   9
+ 1220.  11
+ 1221.   9
+ 1222.  11
+ 1223.   9
+ 1224.  11
+ 1225.   9
+ 1226.  11
+ 1227.   9
+ 1228.   5
+ 1229.   4
+ 1230.   5
+ 1231.   4
+ 1232.  12
+ 1233.   9
+ 1234.  12
+ 1235.   9
+ 1236.  12
+ 1237.   9
+ 1238.  12
+ 1239.   9
+ 1240.  12
+ 1241.   9
+ 1242.  12
+ 1243.   9
+ 1244.  12
+ 1245.   9
+ 1246.  15
+ 1247.  11
+ 1248.  15
+ 1249.  11
+ 1250.  15
+ 1251.  11
+ 1252.  15
+ 1253.  11
+ 1254.  15
+ 1255.  11
+ 1256.  11
+ 1257.   9
+ 1258.  11
+ 1259.   9
+ 1260.  15
+ 1261.  11
+ 1262.  15
+ 1263.  11
+ 1264.  15
+ 1265.  11
+ 1266.  15
+ 1267.  11
+ 1268.  15
+ 1269.  11
+ 1270.  11
+ 1271.   9
+ 1272.  11
+ 1273.   9
+ 1274.  11
+ 1275.   9
+ 1276.  11
+ 1277.   9
+ 1278.   5
+ 1279.   4
+ 1280.  12
+ 1281.   9
+ 1282.  11
+ 1283.   9
+ 1284.  11
+ 1285.   9
+ 1286.  11
+ 1287.   9
+ 1288.  11
+ 1289.   9
+ 1290.  11
+ 1291.   9
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.   9
+ 1297.   6
+ 1298.  16
+ 1299.  11
+ 1300.  10
+ 1301.   7
+ 1302.  10
+ 1303.   7
+ 1304.  12
+ 1305.   9
+ 1306.   9
+ 1307.   9
+ 1308.   9
+ 1309.   9
+ 1310.  11
+ 1311.   9
+ 1312.  11
+ 1313.   9
+ 1314.  11
+ 1315.   9
+ 1316.  13
+ 1317.   9
+ 1318.  13
+ 1319.   9
+
+
+	DevRec  6: ppem =  19, maxWid =  38
+    0.  14
+    1.   0
+    2.   5
+    3.   5
+    4.   6
+    5.   7
+    6.  11
+    7.  11
+    8.  17
+    9.  13
+   10.   4
+   11.   6
+   12.   6
+   13.   7
+   14.  11
+   15.   5
+   16.   6
+   17.   5
+   18.   5
+   19.  11
+   20.  11
+   21.  11
+   22.  11
+   23.  11
+   24.  11
+   25.  11
+   26.  11
+   27.  11
+   28.  11
+   29.   5
+   30.   5
+   31.  11
+   32.  11
+   33.  11
+   34.  11
+   35.  19
+   36.  13
+   37.  13
+   38.  14
+   39.  14
+   40.  13
+   41.  12
+   42.  15
+   43.  13
+   44.   6
+   45.  10
+   46.  13
+   47.  11
+   48.  15
+   49.  13
+   50.  15
+   51.  13
+   52.  15
+   53.  14
+   54.  13
+   55.  12
+   56.  13
+   57.  13
+   58.  19
+   59.  13
+   60.  12
+   61.  12
+   62.   5
+   63.   5
+   64.   5
+   65.   7
+   66.  11
+   67.   6
+   68.  10
+   69.  11
+   70.  10
+   71.  11
+   72.  11
+   73.   6
+   74.  11
+   75.  10
+   76.   4
+   77.   4
+   78.   9
+   79.   4
+   80.  16
+   81.  10
+   82.  11
+   83.  11
+   84.  11
+   85.   6
+   86.  10
+   87.   5
+   88.  10
+   89.   9
+   90.  13
+   91.   9
+   92.   9
+   93.   9
+   94.   6
+   95.   6
+   96.   6
+   97.  11
+   98.  13
+   99.  13
+  100.  14
+  101.  13
+  102.  13
+  103.  15
+  104.  13
+  105.  10
+  106.  10
+  107.  10
+  108.  10
+  109.  10
+  110.  10
+  111.  10
+  112.  11
+  113.  11
+  114.  11
+  115.  11
+  116.   6
+  117.   6
+  118.   6
+  119.   6
+  120.  10
+  121.  11
+  122.  11
+  123.  11
+  124.  11
+  125.  11
+  126.  10
+  127.  10
+  128.  10
+  129.  10
+  130.  11
+  131.   8
+  132.  11
+  133.  11
+  134.  11
+  135.   7
+  136.  10
+  137.  12
+  138.  14
+  139.  14
+  140.  19
+  141.   6
+  142.   6
+  143.  10
+  144.  19
+  145.  15
+  146.  14
+  147.  10
+  148.  10
+  149.  10
+  150.  11
+  151.  11
+  152.   9
+  153.  14
+  154.  16
+  155.  10
+  156.   4
+  157.   7
+  158.   7
+  159.  15
+  160.  17
+  161.  11
+  162.  12
+  163.   6
+  164.  11
+  165.  11
+  166.  11
+  167.  10
+  168.  12
+  169.  11
+  170.  11
+  171.  19
+  172.  13
+  173.  13
+  174.  15
+  175.  19
+  176.  18
+  177.  11
+  178.  19
+  179.   7
+  180.   7
+  181.   4
+  182.   4
+  183.  10
+  184.   9
+  185.   9
+  186.  12
+  187.   3
+  188.  11
+  189.   6
+  190.   6
+  191.  10
+  192.  10
+  193.  11
+  194.   5
+  195.   4
+  196.   7
+  197.  17
+  198.  13
+  199.  13
+  200.  13
+  201.  13
+  202.  13
+  203.   6
+  204.   6
+  205.   6
+  206.   6
+  207.  15
+  208.  15
+  209.  15
+  210.  13
+  211.  13
+  212.  13
+  213.   6
+  214.   6
+  215.   5
+  216.   6
+  217.   6
+  218.   6
+  219.   6
+  220.   6
+  221.   6
+  222.   6
+  223.   6
+  224.  11
+  225.   4
+  226.  13
+  227.  10
+  228.  12
+  229.   9
+  230.   6
+  231.  14
+  232.  11
+  233.  12
+  234.   9
+  235.  13
+  236.  11
+  237.  11
+  238.  11
+  239.   6
+  240.   6
+  241.   6
+  242.  16
+  243.  16
+  244.  16
+  245.  11
+  246.  15
+  247.  11
+  248.   6
+  249.  13
+  250.  10
+  251.  14
+  252.  10
+  253.  14
+  254.  10
+  255.  11
+  256.  11
+  257.   6
+  258.  13
+  259.  10
+  260.  13
+  261.  10
+  262.  14
+  263.  12
+  264.  14
+  265.  13
+  266.  11
+  267.  13
+  268.  11
+  269.  11
+  270.   4
+  271.  11
+  272.   6
+  273.  11
+  274.   6
+  275.  13
+  276.  10
+  277.  13
+  278.  10
+  279.  15
+  280.  11
+  281.  14
+  282.   6
+  283.  14
+  284.   6
+  285.  13
+  286.  10
+  287.  12
+  288.   6
+  289.  12
+  290.   7
+  291.  13
+  292.  10
+  293.  13
+  294.  10
+  295.  12
+  296.   9
+  297.  12
+  298.   9
+  299.  10
+  300.  15
+  301.  14
+  302.  11
+  303.  11
+  304.   8
+  305.  12
+  306.   8
+  307.  12
+  308.  11
+  309.  10
+  310.   7
+  311.  21
+  312.  19
+  313.  10
+  314.  19
+  315.  10
+  316.  19
+  317.  10
+  318.  10
+  319.  19
+  320.  14
+  321.  11
+  322.  11
+  323.  11
+  324.  11
+  325.  11
+  326.  13
+  327.  12
+  328.  13
+  329.  13
+  330.  13
+  331.  13
+  332.  13
+  333.  13
+  334.  13
+  335.  13
+  336.  13
+  337.  13
+  338.  13
+  339.  13
+  340.  13
+  341.  13
+  342.  13
+  343.  13
+  344.  13
+  345.  13
+  346.  13
+  347.  13
+  348.  13
+  349.  13
+  350.  13
+  351.  13
+  352.  13
+  353.  13
+  354.  13
+  355.  13
+  356.  13
+  357.  13
+  358.  13
+  359.  13
+  360.  13
+  361.  13
+  362.  13
+  363.  13
+  364.  13
+  365.  13
+  366.  13
+  367.  13
+  368.  13
+  369.  13
+  370.  13
+  371.  13
+  372.  13
+  373.  14
+  374.  11
+  375.  19
+  376.  19
+  377.  19
+  378.  19
+  379.  19
+  380.  11
+  381.  11
+  382.  11
+  383.  19
+  384.  20
+  385.  17
+  386.  14
+  387.  14
+  388.  10
+  389.  12
+  390.  11
+  391.  10
+  392.  10
+  393.  14
+  394.  14
+  395.   8
+  396.  11
+  397.   4
+  398.   7
+  399.  17
+  400.   6
+  401.  11
+  402.   7
+  403.   7
+  404.  11
+  405.   7
+  406.  13
+  407.  10
+  408.  14
+  409.  10
+  410.  14
+  411.  10
+  412.  13
+  413.  11
+  414.  13
+  415.  11
+  416.  13
+  417.  11
+  418.  15
+  419.  11
+  420.  15
+  421.  11
+  422.  15
+  423.  11
+  424.  13
+  425.  10
+  426.  13
+  427.  10
+  428.   6
+  429.   6
+  430.   6
+  431.   6
+  432.   6
+  433.   6
+  434.   6
+  435.   4
+  436.  10
+  437.   4
+  438.  13
+  439.   9
+  440.  10
+  441.  11
+  442.   4
+  443.  13
+  444.  10
+  445.  14
+  446.  11
+  447.  15
+  448.  11
+  449.  15
+  450.  11
+  451.  14
+  452.   6
+  453.  13
+  454.  10
+  455.  12
+  456.   5
+  457.  13
+  458.  10
+  459.  13
+  460.  10
+  461.  13
+  462.  10
+  463.  13
+  464.  10
+  465.  19
+  466.  13
+  467.  12
+  468.   9
+  469.   4
+  470.  13
+  471.  10
+  472.  19
+  473.  17
+  474.  15
+  475.  11
+  476.   6
+  477.  19
+  478.  13
+  479.  19
+  480.  13
+  481.  19
+  482.  13
+  483.  12
+  484.   9
+  485.   4
+  486.   6
+  487.  11
+  488.  11
+  489.  16
+  490.  16
+  491.  16
+  492.  16
+  493.   6
+  494.   6
+  495.   6
+  496.   6
+  497.  13
+  498.  15
+  499.  15
+  500.   7
+  501.  15
+  502.  16
+  503.  15
+  504.   4
+  505.  13
+  506.  13
+  507.  13
+  508.  13
+  509.  12
+  510.  13
+  511.   6
+  512.  13
+  513.  13
+  514.  15
+  515.  13
+  516.  12
+  517.  15
+  518.  13
+  519.  13
+  520.  12
+  521.  12
+  522.  12
+  523.  13
+  524.  14
+  525.  14
+  526.   6
+  527.  12
+  528.  11
+  529.   8
+  530.  10
+  531.   4
+  532.  10
+  533.  11
+  534.  10
+  535.   8
+  536.  10
+  537.  11
+  538.   4
+  539.  10
+  540.   9
+  541.  11
+  542.   9
+  543.   9
+  544.  11
+  545.  11
+  546.   9
+  547.  10
+  548.  10
+  549.  14
+  550.  16
+  551.   4
+  552.  10
+  553.  11
+  554.  10
+  555.  16
+  556.  13
+  557.  16
+  558.  10
+  559.  14
+  560.  13
+  561.   6
+  562.   6
+  563.  10
+  564.  20
+  565.  19
+  566.  15
+  567.  11
+  568.  12
+  569.  14
+  570.  13
+  571.  12
+  572.  13
+  573.  10
+  574.  13
+  575.  13
+  576.  18
+  577.  11
+  578.  14
+  579.  14
+  580.  11
+  581.  12
+  582.  15
+  583.  13
+  584.  15
+  585.  13
+  586.  13
+  587.  14
+  588.  12
+  589.  12
+  590.  14
+  591.  13
+  592.  14
+  593.  13
+  594.  17
+  595.  17
+  596.  15
+  597.  17
+  598.  13
+  599.  14
+  600.  19
+  601.  14
+  602.  10
+  603.  11
+  604.  10
+  605.   7
+  606.  11
+  607.  11
+  608.  14
+  609.   9
+  610.  10
+  611.  10
+  612.   8
+  613.  10
+  614.  13
+  615.  10
+  616.  11
+  617.   9
+  618.  11
+  619.  10
+  620.   8
+  621.   9
+  622.  16
+  623.   9
+  624.  11
+  625.  10
+  626.  14
+  627.  14
+  628.  12
+  629.  14
+  630.  11
+  631.  10
+  632.  14
+  633.  10
+  634.  11
+  635.  10
+  636.   7
+  637.  10
+  638.  10
+  639.   4
+  640.   6
+  641.   4
+  642.  17
+  643.  15
+  644.  10
+  645.   8
+  646.   9
+  647.  10
+  648.   9
+  649.   8
+  650.  19
+  651.  20
+  652.  13
+  653.   6
+  654.   6
+  655.   6
+  656.   6
+  657.   6
+  658.   6
+  659.   6
+  660.   6
+  661.   6
+  662.   6
+  663.   6
+  664.   6
+  665.   6
+  666.   7
+  667.   6
+  668.   4
+  669.   6
+  670.   6
+  671.   5
+  672.  11
+  673.  10
+  674.   8
+  675.  10
+  676.  11
+  677.   4
+  678.   7
+  679.  11
+  680.  11
+  681.   4
+  682.  10
+  683.   9
+  684.   9
+  685.  11
+  686.  11
+  687.   4
+  688.   7
+  689.  11
+  690.  10
+  691.  11
+  692.  10
+  693.   9
+  694.   9
+  695.  10
+  696.  10
+  697.  13
+  698.  12
+  699.   9
+  700.   9
+  701.   9
+  702.   4
+  703.   8
+  704.  16
+  705.   4
+  706.  10
+  707.  10
+  708.   9
+  709.   9
+  710.  10
+  711.  13
+  712.  13
+  713.  13
+  714.  13
+  715.  11
+  716.  11
+  717.  11
+  718.  10
+  719.   8
+  720.  10
+  721.  11
+  722.   5
+  723.   8
+  724.  11
+  725.   5
+  726.  10
+  727.   9
+  728.   9
+  729.  11
+  730.   7
+  731.  11
+  732.  11
+  733.  10
+  734.   9
+  735.  10
+  736.  10
+  737.  13
+  738.  12
+  739.   4
+  740.  10
+  741.   9
+  742.  10
+  743.  11
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.   6
+  749.   6
+  750.   7
+  751.   8
+  752.   4
+  753.   4
+  754.   5
+  755.   4
+  756.   4
+  757.   4
+  758.   4
+  759.   4
+  760.   3
+  761.  10
+  762.  10
+  763.  10
+  764.  10
+  765.  10
+  766.  10
+  767.  10
+  768.  10
+  769.  10
+  770.  10
+  771.  10
+  772.   6
+  773.  10
+  774.  14
+  775.  14
+  776.   5
+  777.  14
+  778.  10
+  779.  10
+  780.  10
+  781.  14
+  782.  14
+  783.  14
+  784.  14
+  785.  14
+  786.   4
+  787.  14
+  788.  14
+  789.  14
+  790.  14
+  791.  14
+  792.  14
+  793.  14
+  794.  14
+  795.  12
+  796.  14
+  797.  14
+  798.  14
+  799.  14
+  800.  14
+  801.   5
+  802.   5
+  803.  14
+  804.  14
+  805.  14
+  806.  14
+  807.  11
+  808.  10
+  809.  10
+  810.  10
+  811.   9
+  812.   9
+  813.  15
+  814.  18
+  815.   7
+  816.  10
+  817.  15
+  818.  18
+  819.   7
+  820.  10
+  821.  12
+  822.  11
+  823.  14
+  824.  14
+  825.  14
+  826.  14
+  827.  14
+  828.  14
+  829.  14
+  830.  14
+  831.  14
+  832.  14
+  833.  14
+  834.  14
+  835.  14
+  836.  14
+  837.  14
+  838.  14
+  839.   4
+  840.   4
+  841.   4
+  842.   4
+  843.   4
+  844.  14
+  845.  14
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.  11
+  863.  19
+  864.  14
+  865.  14
+  866.  14
+  867.  14
+  868.  14
+  869.  14
+  870.  14
+  871.  14
+  872.  14
+  873.  14
+  874.  14
+  875.  14
+  876.  14
+  877.  14
+  878.  14
+  879.  14
+  880.  14
+  881.  14
+  882.  14
+  883.  14
+  884.  14
+  885.  14
+  886.  14
+  887.  14
+  888.  14
+  889.  14
+  890.  14
+  891.  14
+  892.   6
+  893.   6
+  894.  14
+  895.  12
+  896.   8
+  897.   4
+  898.   4
+  899.   4
+  900.   4
+  901.   8
+  902.   8
+  903.   4
+  904.   4
+  905.  12
+  906.  11
+  907.   5
+  908.   5
+  909.   4
+  910.   4
+  911.  14
+  912.  14
+  913.   5
+  914.   5
+  915.   5
+  916.   7
+  917.  14
+  918.  14
+  919.   5
+  920.   5
+  921.  14
+  922.  14
+  923.   5
+  924.   5
+  925.  11
+  926.  10
+  927.  10
+  928.  10
+  929.  11
+  930.  10
+  931.  10
+  932.  10
+  933.  11
+  934.  10
+  935.  10
+  936.  10
+  937.   6
+  938.   6
+  939.   6
+  940.   6
+  941.   9
+  942.   9
+  943.   9
+  944.   9
+  945.  16
+  946.  16
+  947.  10
+  948.  10
+  949.  16
+  950.  16
+  951.  10
+  952.  10
+  953.  21
+  954.  21
+  955.  16
+  956.  16
+  957.  21
+  958.  21
+  959.  16
+  960.  16
+  961.  11
+  962.  11
+  963.  11
+  964.  11
+  965.  11
+  966.  11
+  967.  11
+  968.  11
+  969.  10
+  970.   9
+  971.  10
+  972.   7
+  973.  10
+  974.   9
+  975.  10
+  976.   7
+  977.  15
+  978.  15
+  979.   5
+  980.   5
+  981.  11
+  982.  11
+  983.   5
+  984.   5
+  985.  11
+  986.  11
+  987.   7
+  988.   7
+  989.  10
+  990.  10
+  991.   4
+  992.   4
+  993.   6
+  994.   6
+  995.   7
+  996.   7
+  997.  10
+  998.  10
+  999.   5
+ 1000.   5
+ 1001.   5
+ 1002.   7
+ 1003.   9
+ 1004.   7
+ 1005.   8
+ 1006.   8
+ 1007.  12
+ 1008.  11
+ 1009.  12
+ 1010.  11
+ 1011.   5
+ 1012.   5
+ 1013.  10
+ 1014.  11
+ 1015.  10
+ 1016.  11
+ 1017.  10
+ 1018.  11
+ 1019.  10
+ 1020.  11
+ 1021.  14
+ 1022.  14
+ 1023.   4
+ 1024.   4
+ 1025.  14
+ 1026.  14
+ 1027.  14
+ 1028.   3
+ 1029.   4
+ 1030.  14
+ 1031.  14
+ 1032.   4
+ 1033.   5
+ 1034.  14
+ 1035.  14
+ 1036.  14
+ 1037.   4
+ 1038.   4
+ 1039.   4
+ 1040.   4
+ 1041.   4
+ 1042.   4
+ 1043.  14
+ 1044.   4
+ 1045.   4
+ 1046.  14
+ 1047.  14
+ 1048.  14
+ 1049.  14
+ 1050.  14
+ 1051.  14
+ 1052.  14
+ 1053.  14
+ 1054.  14
+ 1055.  14
+ 1056.  14
+ 1057.  14
+ 1058.  14
+ 1059.  14
+ 1060.  14
+ 1061.  14
+ 1062.  14
+ 1063.  14
+ 1064.  14
+ 1065.  14
+ 1066.  14
+ 1067.  14
+ 1068.  14
+ 1069.  14
+ 1070.  14
+ 1071.  14
+ 1072.  14
+ 1073.  14
+ 1074.  14
+ 1075.  14
+ 1076.  14
+ 1077.  14
+ 1078.  14
+ 1079.  14
+ 1080.  14
+ 1081.  14
+ 1082.  14
+ 1083.  14
+ 1084.  14
+ 1085.  14
+ 1086.  14
+ 1087.  14
+ 1088.  14
+ 1089.  14
+ 1090.  14
+ 1091.  14
+ 1092.  14
+ 1093.  14
+ 1094.  14
+ 1095.  14
+ 1096.  14
+ 1097.  14
+ 1098.  14
+ 1099.  14
+ 1100.   6
+ 1101.   6
+ 1102.   6
+ 1103.  14
+ 1104.  14
+ 1105.  14
+ 1106.  14
+ 1107.  14
+ 1108.  14
+ 1109.  14
+ 1110.  14
+ 1111.  14
+ 1112.  14
+ 1113.  14
+ 1114.  14
+ 1115.  14
+ 1116.  14
+ 1117.  14
+ 1118.  14
+ 1119.  14
+ 1120.  14
+ 1121.  14
+ 1122.  14
+ 1123.  14
+ 1124.  14
+ 1125.  14
+ 1126.  14
+ 1127.   2
+ 1128.  19
+ 1129.  38
+ 1130.  16
+ 1131.  12
+ 1132.  16
+ 1133.  13
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.  10
+ 1151.  16
+ 1152.  16
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.   4
+ 1188.  13
+ 1189.  10
+ 1190.  13
+ 1191.  10
+ 1192.  13
+ 1193.  10
+ 1194.  13
+ 1195.  10
+ 1196.  13
+ 1197.  10
+ 1198.  13
+ 1199.  10
+ 1200.  13
+ 1201.  10
+ 1202.  13
+ 1203.  10
+ 1204.  13
+ 1205.  10
+ 1206.  13
+ 1207.  10
+ 1208.  13
+ 1209.  10
+ 1210.  13
+ 1211.  10
+ 1212.  13
+ 1213.  11
+ 1214.  13
+ 1215.  11
+ 1216.  13
+ 1217.  11
+ 1218.  13
+ 1219.  11
+ 1220.  13
+ 1221.  11
+ 1222.  13
+ 1223.  11
+ 1224.  13
+ 1225.  11
+ 1226.  13
+ 1227.  11
+ 1228.   6
+ 1229.   4
+ 1230.   6
+ 1231.   4
+ 1232.  15
+ 1233.  11
+ 1234.  15
+ 1235.  11
+ 1236.  15
+ 1237.  11
+ 1238.  15
+ 1239.  11
+ 1240.  15
+ 1241.  11
+ 1242.  15
+ 1243.  11
+ 1244.  15
+ 1245.  11
+ 1246.  16
+ 1247.  12
+ 1248.  16
+ 1249.  12
+ 1250.  16
+ 1251.  12
+ 1252.  16
+ 1253.  12
+ 1254.  16
+ 1255.  12
+ 1256.  13
+ 1257.  10
+ 1258.  13
+ 1259.  10
+ 1260.  16
+ 1261.  13
+ 1262.  16
+ 1263.  13
+ 1264.  16
+ 1265.  13
+ 1266.  16
+ 1267.  13
+ 1268.  16
+ 1269.  13
+ 1270.  12
+ 1271.   9
+ 1272.  12
+ 1273.   9
+ 1274.  12
+ 1275.   9
+ 1276.  13
+ 1277.  10
+ 1278.   6
+ 1279.   4
+ 1280.  15
+ 1281.  11
+ 1282.  13
+ 1283.  10
+ 1284.  13
+ 1285.  10
+ 1286.  13
+ 1287.  10
+ 1288.  13
+ 1289.  10
+ 1290.  13
+ 1291.  10
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.  10
+ 1297.   7
+ 1298.  18
+ 1299.  13
+ 1300.  11
+ 1301.   8
+ 1302.  11
+ 1303.   8
+ 1304.  14
+ 1305.  11
+ 1306.  11
+ 1307.  10
+ 1308.  11
+ 1309.  10
+ 1310.  13
+ 1311.  10
+ 1312.  13
+ 1313.  10
+ 1314.  13
+ 1315.  10
+ 1316.  14
+ 1317.  11
+ 1318.  15
+ 1319.  11
+
+
+	DevRec  7: ppem =  21, maxWid =  42
+    0.  16
+    1.   0
+    2.   6
+    3.   6
+    4.   6
+    5.   7
+    6.  12
+    7.  12
+    8.  19
+    9.  14
+   10.   4
+   11.   7
+   12.   7
+   13.   8
+   14.  12
+   15.   6
+   16.   7
+   17.   6
+   18.   6
+   19.  12
+   20.  12
+   21.  12
+   22.  12
+   23.  12
+   24.  12
+   25.  12
+   26.  12
+   27.  12
+   28.  12
+   29.   6
+   30.   6
+   31.  12
+   32.  12
+   33.  12
+   34.  12
+   35.  21
+   36.  13
+   37.  14
+   38.  15
+   39.  15
+   40.  14
+   41.  13
+   42.  16
+   43.  14
+   44.   6
+   45.  11
+   46.  14
+   47.  12
+   48.  17
+   49.  14
+   50.  16
+   51.  14
+   52.  16
+   53.  15
+   54.  14
+   55.  12
+   56.  14
+   57.  13
+   58.  21
+   59.  14
+   60.  14
+   61.  13
+   62.   6
+   63.   6
+   64.   6
+   65.   8
+   66.  12
+   67.   7
+   68.  12
+   69.  11
+   70.  11
+   71.  11
+   72.  12
+   73.   6
+   74.  11
+   75.  11
+   76.   5
+   77.   4
+   78.  10
+   79.   4
+   80.  16
+   81.  11
+   82.  12
+   83.  11
+   84.  11
+   85.   7
+   86.  11
+   87.   6
+   88.  11
+   89.  11
+   90.  15
+   91.  10
+   92.  11
+   93.   9
+   94.   7
+   95.   6
+   96.   7
+   97.  12
+   98.  13
+   99.  13
+  100.  15
+  101.  14
+  102.  14
+  103.  16
+  104.  14
+  105.  12
+  106.  12
+  107.  12
+  108.  12
+  109.  12
+  110.  12
+  111.  11
+  112.  12
+  113.  12
+  114.  12
+  115.  12
+  116.   6
+  117.   6
+  118.   6
+  119.   6
+  120.  11
+  121.  12
+  122.  12
+  123.  12
+  124.  12
+  125.  12
+  126.  11
+  127.  11
+  128.  11
+  129.  11
+  130.  12
+  131.   8
+  132.  12
+  133.  12
+  134.  12
+  135.   7
+  136.  11
+  137.  13
+  138.  15
+  139.  15
+  140.  21
+  141.   7
+  142.   7
+  143.  12
+  144.  21
+  145.  16
+  146.  15
+  147.  12
+  148.  12
+  149.  12
+  150.  12
+  151.  11
+  152.  10
+  153.  15
+  154.  17
+  155.  12
+  156.   6
+  157.   7
+  158.   8
+  159.  16
+  160.  19
+  161.  12
+  162.  13
+  163.   6
+  164.  12
+  165.  12
+  166.  12
+  167.  12
+  168.  13
+  169.  12
+  170.  12
+  171.  21
+  172.  13
+  173.  13
+  174.  16
+  175.  21
+  176.  20
+  177.  12
+  178.  21
+  179.   7
+  180.   7
+  181.   5
+  182.   5
+  183.  12
+  184.  10
+  185.  11
+  186.  14
+  187.   4
+  188.  12
+  189.   7
+  190.   7
+  191.  11
+  192.  11
+  193.  12
+  194.   6
+  195.   5
+  196.   7
+  197.  21
+  198.  13
+  199.  14
+  200.  13
+  201.  14
+  202.  14
+  203.   6
+  204.   6
+  205.   6
+  206.   6
+  207.  16
+  208.  16
+  209.  16
+  210.  14
+  211.  14
+  212.  14
+  213.   6
+  214.   7
+  215.   7
+  216.   7
+  217.   7
+  218.   7
+  219.   7
+  220.   7
+  221.   7
+  222.   7
+  223.   7
+  224.  12
+  225.   4
+  226.  14
+  227.  11
+  228.  13
+  229.   9
+  230.   6
+  231.  15
+  232.  12
+  233.  14
+  234.  11
+  235.  14
+  236.  12
+  237.  12
+  238.  12
+  239.   7
+  240.   7
+  241.   7
+  242.  18
+  243.  18
+  244.  18
+  245.  12
+  246.  16
+  247.  11
+  248.   6
+  249.  14
+  250.  11
+  251.  15
+  252.  11
+  253.  15
+  254.  11
+  255.  12
+  256.  12
+  257.   7
+  258.  13
+  259.  12
+  260.  13
+  261.  12
+  262.  15
+  263.  13
+  264.  15
+  265.  14
+  266.  12
+  267.  14
+  268.  12
+  269.  12
+  270.   4
+  271.  12
+  272.   6
+  273.  12
+  274.   7
+  275.  14
+  276.  11
+  277.  14
+  278.  11
+  279.  16
+  280.  12
+  281.  15
+  282.   7
+  283.  15
+  284.   7
+  285.  14
+  286.  11
+  287.  12
+  288.   6
+  289.  12
+  290.   8
+  291.  14
+  292.  11
+  293.  14
+  294.  11
+  295.  13
+  296.   9
+  297.  13
+  298.   9
+  299.  12
+  300.  16
+  301.  16
+  302.  12
+  303.  12
+  304.   9
+  305.  13
+  306.   8
+  307.  14
+  308.  12
+  309.  11
+  310.   8
+  311.  23
+  312.  21
+  313.  11
+  314.  21
+  315.  11
+  316.  21
+  317.  11
+  318.  11
+  319.  21
+  320.  15
+  321.  12
+  322.  13
+  323.  12
+  324.  13
+  325.  13
+  326.  15
+  327.  13
+  328.  15
+  329.  15
+  330.  15
+  331.  15
+  332.  15
+  333.  15
+  334.  15
+  335.  15
+  336.  15
+  337.  15
+  338.  15
+  339.  15
+  340.  15
+  341.  15
+  342.  15
+  343.  15
+  344.  15
+  345.  15
+  346.  15
+  347.  15
+  348.  15
+  349.  15
+  350.  15
+  351.  15
+  352.  15
+  353.  15
+  354.  15
+  355.  15
+  356.  15
+  357.  15
+  358.  15
+  359.  15
+  360.  15
+  361.  15
+  362.  15
+  363.  15
+  364.  15
+  365.  15
+  366.  15
+  367.  15
+  368.  15
+  369.  15
+  370.  15
+  371.  15
+  372.  15
+  373.  15
+  374.  13
+  375.  21
+  376.  21
+  377.  21
+  378.  21
+  379.  21
+  380.  13
+  381.  13
+  382.  13
+  383.  21
+  384.  22
+  385.  19
+  386.  16
+  387.  16
+  388.  11
+  389.  14
+  390.  12
+  391.  11
+  392.  11
+  393.  16
+  394.  15
+  395.   9
+  396.  13
+  397.   4
+  398.   7
+  399.  19
+  400.   7
+  401.  13
+  402.   7
+  403.   7
+  404.  13
+  405.   7
+  406.  13
+  407.  12
+  408.  15
+  409.  11
+  410.  15
+  411.  11
+  412.  14
+  413.  12
+  414.  14
+  415.  12
+  416.  14
+  417.  12
+  418.  16
+  419.  11
+  420.  16
+  421.  11
+  422.  16
+  423.  12
+  424.  14
+  425.  11
+  426.  14
+  427.  11
+  428.   6
+  429.   6
+  430.   6
+  431.   6
+  432.   6
+  433.   6
+  434.   6
+  435.   5
+  436.  11
+  437.   4
+  438.  14
+  439.  10
+  440.  10
+  441.  12
+  442.   4
+  443.  14
+  444.  11
+  445.  15
+  446.  12
+  447.  16
+  448.  12
+  449.  16
+  450.  12
+  451.  15
+  452.   7
+  453.  14
+  454.  11
+  455.  13
+  456.   6
+  457.  14
+  458.  11
+  459.  14
+  460.  11
+  461.  14
+  462.  11
+  463.  14
+  464.  11
+  465.  21
+  466.  15
+  467.  14
+  468.  11
+  469.   5
+  470.  13
+  471.  12
+  472.  21
+  473.  19
+  474.  16
+  475.  12
+  476.   6
+  477.  21
+  478.  15
+  479.  21
+  480.  15
+  481.  21
+  482.  15
+  483.  14
+  484.  11
+  485.   5
+  486.   7
+  487.  12
+  488.  13
+  489.  18
+  490.  18
+  491.  18
+  492.  18
+  493.   7
+  494.   7
+  495.   7
+  496.   7
+  497.  13
+  498.  16
+  499.  17
+  500.   8
+  501.  16
+  502.  17
+  503.  16
+  504.   4
+  505.  13
+  506.  14
+  507.  14
+  508.  14
+  509.  13
+  510.  14
+  511.   6
+  512.  14
+  513.  14
+  514.  17
+  515.  14
+  516.  14
+  517.  16
+  518.  14
+  519.  14
+  520.  13
+  521.  12
+  522.  14
+  523.  14
+  524.  18
+  525.  16
+  526.   6
+  527.  14
+  528.  12
+  529.   9
+  530.  11
+  531.   4
+  532.  10
+  533.  12
+  534.  10
+  535.   9
+  536.  11
+  537.  12
+  538.   4
+  539.  10
+  540.  11
+  541.  11
+  542.  11
+  543.   9
+  544.  12
+  545.  12
+  546.  10
+  547.  10
+  548.  11
+  549.  14
+  550.  16
+  551.   4
+  552.  10
+  553.  12
+  554.  10
+  555.  16
+  556.  14
+  557.  18
+  558.  11
+  559.  15
+  560.  14
+  561.   6
+  562.   6
+  563.  11
+  564.  22
+  565.  21
+  566.  18
+  567.  12
+  568.  13
+  569.  15
+  570.  13
+  571.  14
+  572.  14
+  573.  11
+  574.  14
+  575.  14
+  576.  19
+  577.  13
+  578.  15
+  579.  15
+  580.  12
+  581.  14
+  582.  17
+  583.  14
+  584.  16
+  585.  14
+  586.  14
+  587.  15
+  588.  12
+  589.  13
+  590.  16
+  591.  14
+  592.  16
+  593.  14
+  594.  18
+  595.  20
+  596.  17
+  597.  19
+  598.  14
+  599.  15
+  600.  21
+  601.  15
+  602.  12
+  603.  12
+  604.  11
+  605.   8
+  606.  12
+  607.  12
+  608.  14
+  609.  10
+  610.  11
+  611.  11
+  612.   9
+  613.  11
+  614.  13
+  615.  11
+  616.  12
+  617.  10
+  618.  11
+  619.  11
+  620.  10
+  621.  11
+  622.  17
+  623.  10
+  624.  12
+  625.  11
+  626.  16
+  627.  16
+  628.  13
+  629.  15
+  630.  11
+  631.  11
+  632.  16
+  633.  11
+  634.  12
+  635.  12
+  636.   8
+  637.  11
+  638.  11
+  639.   5
+  640.   6
+  641.   4
+  642.  19
+  643.  17
+  644.  12
+  645.   9
+  646.  11
+  647.  11
+  648.  10
+  649.   9
+  650.  21
+  651.  23
+  652.  14
+  653.   7
+  654.   7
+  655.   7
+  656.   7
+  657.   7
+  658.   7
+  659.   7
+  660.   7
+  661.   7
+  662.   7
+  663.   7
+  664.   7
+  665.   7
+  666.   8
+  667.   7
+  668.   6
+  669.   7
+  670.   7
+  671.   6
+  672.  12
+  673.  11
+  674.   8
+  675.  11
+  676.  13
+  677.   6
+  678.   8
+  679.  13
+  680.  12
+  681.   6
+  682.  11
+  683.  10
+  684.  10
+  685.  13
+  686.  13
+  687.   6
+  688.   7
+  689.  12
+  690.  11
+  691.  12
+  692.  11
+  693.  10
+  694.  10
+  695.  12
+  696.  11
+  697.  15
+  698.  14
+  699.  11
+  700.  11
+  701.  11
+  702.   5
+  703.   9
+  704.  18
+  705.   6
+  706.  11
+  707.  11
+  708.  10
+  709.  10
+  710.  11
+  711.  15
+  712.  15
+  713.  15
+  714.  15
+  715.  12
+  716.  12
+  717.  12
+  718.  11
+  719.   8
+  720.  11
+  721.  13
+  722.   6
+  723.   9
+  724.  12
+  725.   6
+  726.  11
+  727.  10
+  728.  10
+  729.  13
+  730.   7
+  731.  12
+  732.  12
+  733.  11
+  734.  10
+  735.  12
+  736.  11
+  737.  15
+  738.  14
+  739.   6
+  740.  11
+  741.  10
+  742.  11
+  743.  12
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.   7
+  749.   7
+  750.   7
+  751.   9
+  752.   4
+  753.   4
+  754.   5
+  755.   4
+  756.   4
+  757.   4
+  758.   4
+  759.   4
+  760.   3
+  761.  11
+  762.  11
+  763.  11
+  764.  11
+  765.  11
+  766.  11
+  767.  11
+  768.  11
+  769.  11
+  770.  11
+  771.  11
+  772.   7
+  773.  11
+  774.  16
+  775.  16
+  776.   6
+  777.  16
+  778.  11
+  779.  11
+  780.  11
+  781.  16
+  782.  16
+  783.  16
+  784.  16
+  785.  16
+  786.   4
+  787.  16
+  788.  16
+  789.  16
+  790.  16
+  791.  16
+  792.  16
+  793.  16
+  794.  16
+  795.  13
+  796.  16
+  797.  16
+  798.  16
+  799.  15
+  800.  15
+  801.   5
+  802.   5
+  803.  16
+  804.  16
+  805.  16
+  806.  16
+  807.  12
+  808.  11
+  809.  11
+  810.  11
+  811.  10
+  812.  10
+  813.  17
+  814.  20
+  815.   8
+  816.  11
+  817.  17
+  818.  20
+  819.   8
+  820.  11
+  821.  13
+  822.  12
+  823.  16
+  824.  16
+  825.  16
+  826.  16
+  827.  16
+  828.  16
+  829.  16
+  830.  16
+  831.  16
+  832.  16
+  833.  16
+  834.  16
+  835.  16
+  836.  16
+  837.  16
+  838.  16
+  839.   5
+  840.   4
+  841.   4
+  842.   4
+  843.   4
+  844.  16
+  845.  16
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.  12
+  863.  21
+  864.  16
+  865.  16
+  866.  16
+  867.  16
+  868.  16
+  869.  16
+  870.  16
+  871.  16
+  872.  16
+  873.  16
+  874.  16
+  875.  16
+  876.  16
+  877.  16
+  878.  16
+  879.  16
+  880.  16
+  881.  16
+  882.  16
+  883.  16
+  884.  16
+  885.  16
+  886.  16
+  887.  16
+  888.  16
+  889.  16
+  890.  16
+  891.  16
+  892.   7
+  893.   7
+  894.  16
+  895.  13
+  896.   9
+  897.   4
+  898.   5
+  899.   4
+  900.   5
+  901.   9
+  902.   9
+  903.   4
+  904.   5
+  905.  13
+  906.  12
+  907.   5
+  908.   5
+  909.   4
+  910.   5
+  911.  15
+  912.  15
+  913.   5
+  914.   5
+  915.   6
+  916.   8
+  917.  15
+  918.  15
+  919.   5
+  920.   5
+  921.  15
+  922.  15
+  923.   5
+  924.   5
+  925.  12
+  926.  11
+  927.  11
+  928.  11
+  929.  12
+  930.  11
+  931.  11
+  932.  11
+  933.  12
+  934.  11
+  935.  11
+  936.  11
+  937.   7
+  938.   7
+  939.   7
+  940.   7
+  941.  10
+  942.  10
+  943.  10
+  944.  10
+  945.  17
+  946.  17
+  947.  11
+  948.  11
+  949.  17
+  950.  17
+  951.  11
+  952.  11
+  953.  23
+  954.  23
+  955.  18
+  956.  18
+  957.  23
+  958.  23
+  959.  18
+  960.  18
+  961.  12
+  962.  12
+  963.  12
+  964.  12
+  965.  12
+  966.  12
+  967.  12
+  968.  12
+  969.  11
+  970.   9
+  971.  11
+  972.   8
+  973.  11
+  974.   9
+  975.  11
+  976.   8
+  977.  17
+  978.  17
+  979.   6
+  980.   6
+  981.  12
+  982.  12
+  983.   6
+  984.   6
+  985.  13
+  986.  13
+  987.   8
+  988.   8
+  989.  11
+  990.  11
+  991.   4
+  992.   4
+  993.   7
+  994.   7
+  995.   8
+  996.   8
+  997.  11
+  998.  11
+  999.   5
+ 1000.   5
+ 1001.   6
+ 1002.   8
+ 1003.   9
+ 1004.   8
+ 1005.   9
+ 1006.   9
+ 1007.  13
+ 1008.  12
+ 1009.  13
+ 1010.  12
+ 1011.   5
+ 1012.   5
+ 1013.  11
+ 1014.  13
+ 1015.  11
+ 1016.  13
+ 1017.  11
+ 1018.  13
+ 1019.  11
+ 1020.  13
+ 1021.  16
+ 1022.  16
+ 1023.   4
+ 1024.   4
+ 1025.  16
+ 1026.  16
+ 1027.  16
+ 1028.   3
+ 1029.   4
+ 1030.  16
+ 1031.  16
+ 1032.   4
+ 1033.   5
+ 1034.  16
+ 1035.  16
+ 1036.  16
+ 1037.   4
+ 1038.   4
+ 1039.   4
+ 1040.   4
+ 1041.   4
+ 1042.   5
+ 1043.  16
+ 1044.   4
+ 1045.   4
+ 1046.  16
+ 1047.  16
+ 1048.  16
+ 1049.  16
+ 1050.  16
+ 1051.  16
+ 1052.  16
+ 1053.  16
+ 1054.  16
+ 1055.  16
+ 1056.  16
+ 1057.  16
+ 1058.  16
+ 1059.  16
+ 1060.  16
+ 1061.  16
+ 1062.  16
+ 1063.  16
+ 1064.  16
+ 1065.  16
+ 1066.  16
+ 1067.  16
+ 1068.  16
+ 1069.  16
+ 1070.  16
+ 1071.  16
+ 1072.  16
+ 1073.  16
+ 1074.  16
+ 1075.  16
+ 1076.  16
+ 1077.  16
+ 1078.  16
+ 1079.  16
+ 1080.  16
+ 1081.  16
+ 1082.  16
+ 1083.  16
+ 1084.  16
+ 1085.  16
+ 1086.  16
+ 1087.  16
+ 1088.  16
+ 1089.  16
+ 1090.  16
+ 1091.  16
+ 1092.  16
+ 1093.  16
+ 1094.  16
+ 1095.  16
+ 1096.  16
+ 1097.  16
+ 1098.  16
+ 1099.  16
+ 1100.   7
+ 1101.   7
+ 1102.   7
+ 1103.  16
+ 1104.  16
+ 1105.  16
+ 1106.  16
+ 1107.  16
+ 1108.  16
+ 1109.  16
+ 1110.  16
+ 1111.  16
+ 1112.  16
+ 1113.  16
+ 1114.  16
+ 1115.  16
+ 1116.  16
+ 1117.  16
+ 1118.  16
+ 1119.  16
+ 1120.  16
+ 1121.  16
+ 1122.  16
+ 1123.  16
+ 1124.  16
+ 1125.  16
+ 1126.  16
+ 1127.   3
+ 1128.  21
+ 1129.  42
+ 1130.  18
+ 1131.  14
+ 1132.  18
+ 1133.  14
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.  11
+ 1151.  18
+ 1152.  18
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.   5
+ 1188.  13
+ 1189.  12
+ 1190.  13
+ 1191.  12
+ 1192.  13
+ 1193.  12
+ 1194.  13
+ 1195.  12
+ 1196.  13
+ 1197.  12
+ 1198.  13
+ 1199.  12
+ 1200.  13
+ 1201.  12
+ 1202.  13
+ 1203.  12
+ 1204.  13
+ 1205.  12
+ 1206.  13
+ 1207.  12
+ 1208.  13
+ 1209.  12
+ 1210.  13
+ 1211.  12
+ 1212.  14
+ 1213.  12
+ 1214.  14
+ 1215.  12
+ 1216.  14
+ 1217.  12
+ 1218.  14
+ 1219.  12
+ 1220.  14
+ 1221.  12
+ 1222.  14
+ 1223.  12
+ 1224.  14
+ 1225.  12
+ 1226.  14
+ 1227.  12
+ 1228.   6
+ 1229.   5
+ 1230.   6
+ 1231.   5
+ 1232.  16
+ 1233.  12
+ 1234.  16
+ 1235.  12
+ 1236.  16
+ 1237.  12
+ 1238.  16
+ 1239.  12
+ 1240.  16
+ 1241.  12
+ 1242.  16
+ 1243.  12
+ 1244.  16
+ 1245.  12
+ 1246.  18
+ 1247.  14
+ 1248.  18
+ 1249.  14
+ 1250.  18
+ 1251.  14
+ 1252.  18
+ 1253.  14
+ 1254.  18
+ 1255.  14
+ 1256.  14
+ 1257.  11
+ 1258.  14
+ 1259.  11
+ 1260.  18
+ 1261.  14
+ 1262.  18
+ 1263.  14
+ 1264.  18
+ 1265.  14
+ 1266.  18
+ 1267.  14
+ 1268.  18
+ 1269.  14
+ 1270.  14
+ 1271.  11
+ 1272.  14
+ 1273.  11
+ 1274.  14
+ 1275.  11
+ 1276.  13
+ 1277.  12
+ 1278.   6
+ 1279.   5
+ 1280.  16
+ 1281.  12
+ 1282.  14
+ 1283.  11
+ 1284.  14
+ 1285.  11
+ 1286.  14
+ 1287.  11
+ 1288.  14
+ 1289.  11
+ 1290.  14
+ 1291.  11
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.  11
+ 1297.   8
+ 1298.  19
+ 1299.  14
+ 1300.  12
+ 1301.   9
+ 1302.  12
+ 1303.   9
+ 1304.  15
+ 1305.  12
+ 1306.  12
+ 1307.  11
+ 1308.  12
+ 1309.  11
+ 1310.  14
+ 1311.  11
+ 1312.  14
+ 1313.  11
+ 1314.  14
+ 1315.  11
+ 1316.  16
+ 1317.  12
+ 1318.  16
+ 1319.  12
+
+
+	DevRec  8: ppem =  24, maxWid =  48
+    0.  18
+    1.   0
+    2.   7
+    3.   7
+    4.   8
+    5.   9
+    6.  13
+    7.  13
+    8.  21
+    9.  16
+   10.   5
+   11.   8
+   12.   8
+   13.   9
+   14.  14
+   15.   7
+   16.   8
+   17.   7
+   18.   7
+   19.  13
+   20.  13
+   21.  13
+   22.  13
+   23.  13
+   24.  13
+   25.  13
+   26.  13
+   27.  13
+   28.  13
+   29.   7
+   30.   7
+   31.  14
+   32.  14
+   33.  14
+   34.  13
+   35.  24
+   36.  15
+   37.  16
+   38.  17
+   39.  17
+   40.  16
+   41.  15
+   42.  19
+   43.  17
+   44.   6
+   45.  12
+   46.  16
+   47.  13
+   48.  19
+   49.  17
+   50.  19
+   51.  16
+   52.  19
+   53.  17
+   54.  16
+   55.  14
+   56.  17
+   57.  15
+   58.  23
+   59.  15
+   60.  16
+   61.  15
+   62.   7
+   63.   7
+   64.   7
+   65.  12
+   66.  13
+   67.   8
+   68.  13
+   69.  14
+   70.  12
+   71.  14
+   72.  13
+   73.   7
+   74.  14
+   75.  14
+   76.   5
+   77.   6
+   78.  12
+   79.   6
+   80.  20
+   81.  14
+   82.  13
+   83.  14
+   84.  14
+   85.   8
+   86.  12
+   87.   7
+   88.  14
+   89.  11
+   90.  17
+   91.  11
+   92.  12
+   93.  12
+   94.   8
+   95.   6
+   96.   8
+   97.  14
+   98.  15
+   99.  15
+  100.  17
+  101.  16
+  102.  17
+  103.  19
+  104.  17
+  105.  13
+  106.  13
+  107.  13
+  108.  13
+  109.  13
+  110.  13
+  111.  12
+  112.  13
+  113.  13
+  114.  13
+  115.  13
+  116.   6
+  117.   6
+  118.   6
+  119.   6
+  120.  14
+  121.  13
+  122.  13
+  123.  13
+  124.  13
+  125.  13
+  126.  14
+  127.  14
+  128.  14
+  129.  14
+  130.  13
+  131.  10
+  132.  13
+  133.  13
+  134.  13
+  135.   8
+  136.  13
+  137.  15
+  138.  18
+  139.  18
+  140.  24
+  141.   8
+  142.   8
+  143.  13
+  144.  24
+  145.  19
+  146.  17
+  147.  13
+  148.  13
+  149.  13
+  150.  13
+  151.  14
+  152.  12
+  153.  17
+  154.  20
+  155.  13
+  156.   6
+  157.   9
+  158.   9
+  159.  18
+  160.  21
+  161.  15
+  162.  15
+  163.   8
+  164.  14
+  165.  13
+  166.  13
+  167.  13
+  168.  15
+  169.  13
+  170.  13
+  171.  24
+  172.  15
+  173.  15
+  174.  19
+  175.  24
+  176.  23
+  177.  13
+  178.  24
+  179.   8
+  180.   8
+  181.   5
+  182.   5
+  183.  13
+  184.  12
+  185.  12
+  186.  16
+  187.   4
+  188.  13
+  189.   8
+  190.   8
+  191.  12
+  192.  12
+  193.  13
+  194.   7
+  195.   5
+  196.   8
+  197.  26
+  198.  15
+  199.  16
+  200.  15
+  201.  16
+  202.  16
+  203.   6
+  204.   6
+  205.   6
+  206.   6
+  207.  19
+  208.  19
+  209.  19
+  210.  17
+  211.  17
+  212.  17
+  213.   6
+  214.   8
+  215.   8
+  216.   8
+  217.   8
+  218.   8
+  219.   8
+  220.   8
+  221.   8
+  222.   8
+  223.   8
+  224.  13
+  225.   6
+  226.  16
+  227.  12
+  228.  15
+  229.  12
+  230.   6
+  231.  17
+  232.  13
+  233.  16
+  234.  12
+  235.  16
+  236.  13
+  237.  14
+  238.  14
+  239.   8
+  240.   8
+  241.   8
+  242.  20
+  243.  20
+  244.  20
+  245.  13
+  246.  19
+  247.  14
+  248.   6
+  249.  16
+  250.  12
+  251.  17
+  252.  12
+  253.  17
+  254.  12
+  255.  13
+  256.  13
+  257.   8
+  258.  15
+  259.  13
+  260.  15
+  261.  13
+  262.  17
+  263.  15
+  264.  17
+  265.  16
+  266.  13
+  267.  16
+  268.  13
+  269.  13
+  270.   6
+  271.  13
+  272.   7
+  273.  13
+  274.   8
+  275.  17
+  276.  14
+  277.  17
+  278.  14
+  279.  19
+  280.  13
+  281.  17
+  282.   8
+  283.  17
+  284.   8
+  285.  16
+  286.  12
+  287.  14
+  288.   7
+  289.  14
+  290.   9
+  291.  17
+  292.  14
+  293.  17
+  294.  14
+  295.  15
+  296.  12
+  297.  15
+  298.  12
+  299.  13
+  300.  19
+  301.  18
+  302.  14
+  303.  13
+  304.  11
+  305.  15
+  306.   9
+  307.  16
+  308.  13
+  309.  12
+  310.   9
+  311.  26
+  312.  24
+  313.  12
+  314.  24
+  315.  12
+  316.  24
+  317.  12
+  318.  12
+  319.  24
+  320.  17
+  321.  14
+  322.  15
+  323.  14
+  324.  15
+  325.  15
+  326.  17
+  327.  15
+  328.  17
+  329.  17
+  330.  17
+  331.  17
+  332.  17
+  333.  17
+  334.  17
+  335.  17
+  336.  17
+  337.  17
+  338.  17
+  339.  17
+  340.  17
+  341.  17
+  342.  17
+  343.  17
+  344.  17
+  345.  17
+  346.  17
+  347.  17
+  348.  17
+  349.  17
+  350.  17
+  351.  17
+  352.  17
+  353.  17
+  354.  17
+  355.  17
+  356.  17
+  357.  17
+  358.  17
+  359.  17
+  360.  17
+  361.  17
+  362.  17
+  363.  17
+  364.  17
+  365.  17
+  366.  17
+  367.  17
+  368.  17
+  369.  17
+  370.  17
+  371.  17
+  372.  17
+  373.  18
+  374.  15
+  375.  24
+  376.  24
+  377.  24
+  378.  24
+  379.  24
+  380.  15
+  381.  15
+  382.  15
+  383.  25
+  384.  25
+  385.  22
+  386.  18
+  387.  18
+  388.  13
+  389.  16
+  390.  14
+  391.  12
+  392.  12
+  393.  18
+  394.  18
+  395.  11
+  396.  15
+  397.   5
+  398.   9
+  399.  21
+  400.   8
+  401.  15
+  402.   9
+  403.   9
+  404.  15
+  405.   9
+  406.  15
+  407.  13
+  408.  17
+  409.  12
+  410.  17
+  411.  12
+  412.  16
+  413.  13
+  414.  16
+  415.  13
+  416.  16
+  417.  13
+  418.  19
+  419.  14
+  420.  19
+  421.  14
+  422.  19
+  423.  13
+  424.  17
+  425.  14
+  426.  17
+  427.  14
+  428.   6
+  429.   6
+  430.   6
+  431.   6
+  432.   6
+  433.   6
+  434.   6
+  435.   5
+  436.  12
+  437.   6
+  438.  16
+  439.  12
+  440.  12
+  441.  13
+  442.   6
+  443.  17
+  444.  14
+  445.  17
+  446.  13
+  447.  19
+  448.  13
+  449.  19
+  450.  13
+  451.  17
+  452.   8
+  453.  16
+  454.  12
+  455.  15
+  456.   7
+  457.  17
+  458.  14
+  459.  17
+  460.  14
+  461.  17
+  462.  14
+  463.  17
+  464.  14
+  465.  23
+  466.  17
+  467.  16
+  468.  12
+  469.   5
+  470.  15
+  471.  13
+  472.  24
+  473.  21
+  474.  19
+  475.  15
+  476.   6
+  477.  23
+  478.  17
+  479.  23
+  480.  17
+  481.  23
+  482.  17
+  483.  16
+  484.  12
+  485.   5
+  486.   8
+  487.  13
+  488.  14
+  489.  20
+  490.  20
+  491.  20
+  492.  20
+  493.   8
+  494.   8
+  495.   8
+  496.   8
+  497.  15
+  498.  19
+  499.  20
+  500.   9
+  501.  19
+  502.  20
+  503.  18
+  504.   6
+  505.  15
+  506.  16
+  507.  16
+  508.  16
+  509.  15
+  510.  17
+  511.   6
+  512.  16
+  513.  16
+  514.  19
+  515.  17
+  516.  16
+  517.  19
+  518.  17
+  519.  16
+  520.  15
+  521.  14
+  522.  16
+  523.  15
+  524.  19
+  525.  18
+  526.   6
+  527.  16
+  528.  14
+  529.  11
+  530.  14
+  531.   6
+  532.  14
+  533.  14
+  534.  11
+  535.  11
+  536.  14
+  537.  13
+  538.   6
+  539.  12
+  540.  12
+  541.  14
+  542.  11
+  543.  11
+  544.  13
+  545.  14
+  546.  12
+  547.  14
+  548.  13
+  549.  18
+  550.  18
+  551.   6
+  552.  14
+  553.  13
+  554.  14
+  555.  18
+  556.  16
+  557.  21
+  558.  13
+  559.  17
+  560.  16
+  561.   6
+  562.   6
+  563.  12
+  564.  25
+  565.  24
+  566.  22
+  567.  14
+  568.  15
+  569.  17
+  570.  15
+  571.  16
+  572.  16
+  573.  13
+  574.  16
+  575.  16
+  576.  22
+  577.  15
+  578.  17
+  579.  17
+  580.  14
+  581.  16
+  582.  19
+  583.  17
+  584.  19
+  585.  17
+  586.  16
+  587.  17
+  588.  14
+  589.  15
+  590.  18
+  591.  15
+  592.  18
+  593.  16
+  594.  22
+  595.  23
+  596.  19
+  597.  21
+  598.  16
+  599.  17
+  600.  24
+  601.  17
+  602.  13
+  603.  14
+  604.  13
+  605.   9
+  606.  14
+  607.  13
+  608.  16
+  609.  11
+  610.  13
+  611.  13
+  612.  11
+  613.  14
+  614.  17
+  615.  13
+  616.  13
+  617.  13
+  618.  14
+  619.  12
+  620.  11
+  621.  12
+  622.  20
+  623.  11
+  624.  14
+  625.  13
+  626.  19
+  627.  20
+  628.  15
+  629.  17
+  630.  13
+  631.  12
+  632.  18
+  633.  13
+  634.  13
+  635.  14
+  636.   9
+  637.  12
+  638.  12
+  639.   5
+  640.   6
+  641.   6
+  642.  22
+  643.  20
+  644.  14
+  645.  11
+  646.  12
+  647.  13
+  648.  12
+  649.  10
+  650.  24
+  651.  26
+  652.  17
+  653.   8
+  654.   8
+  655.   8
+  656.   8
+  657.   8
+  658.   8
+  659.   8
+  660.   8
+  661.   8
+  662.   8
+  663.   8
+  664.   8
+  665.   8
+  666.   9
+  667.   8
+  668.   6
+  669.   8
+  670.   8
+  671.   7
+  672.  14
+  673.  13
+  674.  10
+  675.  12
+  676.  14
+  677.   6
+  678.   9
+  679.  14
+  680.  14
+  681.   6
+  682.  12
+  683.  11
+  684.  11
+  685.  14
+  686.  14
+  687.   6
+  688.   8
+  689.  14
+  690.  13
+  691.  14
+  692.  13
+  693.  11
+  694.  11
+  695.  13
+  696.  12
+  697.  17
+  698.  15
+  699.  12
+  700.  12
+  701.  12
+  702.   6
+  703.  10
+  704.  21
+  705.   6
+  706.  12
+  707.  12
+  708.  11
+  709.  11
+  710.  13
+  711.  17
+  712.  17
+  713.  17
+  714.  17
+  715.  14
+  716.  14
+  717.  14
+  718.  13
+  719.  10
+  720.  12
+  721.  14
+  722.   7
+  723.  10
+  724.  14
+  725.   7
+  726.  12
+  727.  11
+  728.  11
+  729.  14
+  730.   8
+  731.  14
+  732.  14
+  733.  13
+  734.  11
+  735.  13
+  736.  12
+  737.  17
+  738.  15
+  739.   6
+  740.  13
+  741.  11
+  742.  13
+  743.  14
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.   8
+  749.   8
+  750.   9
+  751.  10
+  752.   5
+  753.   5
+  754.   6
+  755.   5
+  756.   5
+  757.   5
+  758.   5
+  759.   5
+  760.   4
+  761.  13
+  762.  13
+  763.  13
+  764.  13
+  765.  13
+  766.  13
+  767.  13
+  768.  13
+  769.  13
+  770.  13
+  771.  13
+  772.   8
+  773.  13
+  774.  18
+  775.  18
+  776.   7
+  777.  18
+  778.  13
+  779.  13
+  780.  13
+  781.  18
+  782.  18
+  783.  18
+  784.  18
+  785.  18
+  786.   5
+  787.  18
+  788.  18
+  789.  18
+  790.  18
+  791.  18
+  792.  18
+  793.  18
+  794.  18
+  795.  15
+  796.  18
+  797.  18
+  798.  18
+  799.  17
+  800.  17
+  801.   6
+  802.   6
+  803.  18
+  804.  18
+  805.  18
+  806.  18
+  807.  14
+  808.  13
+  809.  13
+  810.  13
+  811.  12
+  812.  12
+  813.  19
+  814.  22
+  815.   9
+  816.  12
+  817.  19
+  818.  22
+  819.   9
+  820.  12
+  821.  15
+  822.  14
+  823.  18
+  824.  18
+  825.  18
+  826.  18
+  827.  18
+  828.  18
+  829.  18
+  830.  18
+  831.  18
+  832.  18
+  833.  18
+  834.  18
+  835.  18
+  836.  18
+  837.  18
+  838.  18
+  839.   5
+  840.   5
+  841.   5
+  842.   5
+  843.   5
+  844.  18
+  845.  18
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.  13
+  863.  24
+  864.  18
+  865.  18
+  866.  18
+  867.  18
+  868.  18
+  869.  18
+  870.  18
+  871.  18
+  872.  18
+  873.  18
+  874.  18
+  875.  18
+  876.  18
+  877.  18
+  878.  18
+  879.  18
+  880.  18
+  881.  18
+  882.  18
+  883.  18
+  884.  18
+  885.  18
+  886.  18
+  887.  18
+  888.  18
+  889.  18
+  890.  18
+  891.  18
+  892.   8
+  893.   8
+  894.  18
+  895.  15
+  896.  10
+  897.   5
+  898.   6
+  899.   5
+  900.   6
+  901.  10
+  902.  10
+  903.   5
+  904.   6
+  905.  15
+  906.  14
+  907.   6
+  908.   6
+  909.   5
+  910.   6
+  911.  17
+  912.  17
+  913.   6
+  914.   6
+  915.   7
+  916.   9
+  917.  17
+  918.  17
+  919.   6
+  920.   6
+  921.  17
+  922.  17
+  923.   6
+  924.   6
+  925.  14
+  926.  13
+  927.  13
+  928.  13
+  929.  14
+  930.  13
+  931.  13
+  932.  13
+  933.  14
+  934.  13
+  935.  13
+  936.  13
+  937.   8
+  938.   8
+  939.   8
+  940.   8
+  941.  12
+  942.  12
+  943.  12
+  944.  12
+  945.  20
+  946.  20
+  947.  13
+  948.  13
+  949.  20
+  950.  20
+  951.  13
+  952.  13
+  953.  26
+  954.  26
+  955.  20
+  956.  20
+  957.  26
+  958.  26
+  959.  20
+  960.  20
+  961.  14
+  962.  14
+  963.  14
+  964.  14
+  965.  14
+  966.  14
+  967.  14
+  968.  14
+  969.  13
+  970.  11
+  971.  13
+  972.   9
+  973.  13
+  974.  11
+  975.  13
+  976.   9
+  977.  19
+  978.  19
+  979.   6
+  980.   6
+  981.  14
+  982.  14
+  983.   6
+  984.   6
+  985.  14
+  986.  14
+  987.   9
+  988.   9
+  989.  12
+  990.  12
+  991.   5
+  992.   5
+  993.   8
+  994.   8
+  995.   9
+  996.   9
+  997.  13
+  998.  13
+  999.   6
+ 1000.   6
+ 1001.   7
+ 1002.   9
+ 1003.  11
+ 1004.   9
+ 1005.  10
+ 1006.  10
+ 1007.  15
+ 1008.  14
+ 1009.  15
+ 1010.  14
+ 1011.   6
+ 1012.   6
+ 1013.  13
+ 1014.  14
+ 1015.  13
+ 1016.  14
+ 1017.  13
+ 1018.  14
+ 1019.  13
+ 1020.  14
+ 1021.  18
+ 1022.  18
+ 1023.   5
+ 1024.   5
+ 1025.  18
+ 1026.  18
+ 1027.  18
+ 1028.   4
+ 1029.   5
+ 1030.  18
+ 1031.  18
+ 1032.   5
+ 1033.   6
+ 1034.  18
+ 1035.  18
+ 1036.  18
+ 1037.   5
+ 1038.   5
+ 1039.   5
+ 1040.   5
+ 1041.   5
+ 1042.   5
+ 1043.  18
+ 1044.   5
+ 1045.   5
+ 1046.  18
+ 1047.  18
+ 1048.  18
+ 1049.  18
+ 1050.  18
+ 1051.  18
+ 1052.  18
+ 1053.  18
+ 1054.  18
+ 1055.  18
+ 1056.  18
+ 1057.  18
+ 1058.  18
+ 1059.  18
+ 1060.  18
+ 1061.  18
+ 1062.  18
+ 1063.  18
+ 1064.  18
+ 1065.  18
+ 1066.  18
+ 1067.  18
+ 1068.  18
+ 1069.  18
+ 1070.  18
+ 1071.  18
+ 1072.  18
+ 1073.  18
+ 1074.  18
+ 1075.  18
+ 1076.  18
+ 1077.  18
+ 1078.  18
+ 1079.  18
+ 1080.  18
+ 1081.  18
+ 1082.  18
+ 1083.  18
+ 1084.  18
+ 1085.  18
+ 1086.  18
+ 1087.  18
+ 1088.  18
+ 1089.  18
+ 1090.  18
+ 1091.  18
+ 1092.  18
+ 1093.  18
+ 1094.  18
+ 1095.  18
+ 1096.  18
+ 1097.  18
+ 1098.  18
+ 1099.  18
+ 1100.   8
+ 1101.   8
+ 1102.   8
+ 1103.  18
+ 1104.  18
+ 1105.  18
+ 1106.  18
+ 1107.  18
+ 1108.  18
+ 1109.  18
+ 1110.  18
+ 1111.  18
+ 1112.  18
+ 1113.  18
+ 1114.  18
+ 1115.  18
+ 1116.  18
+ 1117.  18
+ 1118.  18
+ 1119.  18
+ 1120.  18
+ 1121.  18
+ 1122.  18
+ 1123.  18
+ 1124.  18
+ 1125.  18
+ 1126.  18
+ 1127.   3
+ 1128.  24
+ 1129.  48
+ 1130.  21
+ 1131.  16
+ 1132.  21
+ 1133.  16
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.  12
+ 1151.  20
+ 1152.  20
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.   5
+ 1188.  15
+ 1189.  13
+ 1190.  15
+ 1191.  13
+ 1192.  15
+ 1193.  13
+ 1194.  15
+ 1195.  13
+ 1196.  15
+ 1197.  13
+ 1198.  15
+ 1199.  13
+ 1200.  15
+ 1201.  13
+ 1202.  15
+ 1203.  13
+ 1204.  15
+ 1205.  13
+ 1206.  15
+ 1207.  13
+ 1208.  15
+ 1209.  13
+ 1210.  15
+ 1211.  13
+ 1212.  16
+ 1213.  13
+ 1214.  16
+ 1215.  13
+ 1216.  16
+ 1217.  13
+ 1218.  16
+ 1219.  13
+ 1220.  16
+ 1221.  13
+ 1222.  16
+ 1223.  13
+ 1224.  16
+ 1225.  13
+ 1226.  16
+ 1227.  13
+ 1228.   6
+ 1229.   5
+ 1230.   6
+ 1231.   5
+ 1232.  19
+ 1233.  13
+ 1234.  19
+ 1235.  13
+ 1236.  19
+ 1237.  13
+ 1238.  19
+ 1239.  13
+ 1240.  19
+ 1241.  13
+ 1242.  19
+ 1243.  13
+ 1244.  19
+ 1245.  13
+ 1246.  21
+ 1247.  16
+ 1248.  21
+ 1249.  16
+ 1250.  21
+ 1251.  16
+ 1252.  21
+ 1253.  16
+ 1254.  21
+ 1255.  16
+ 1256.  17
+ 1257.  14
+ 1258.  17
+ 1259.  14
+ 1260.  21
+ 1261.  16
+ 1262.  21
+ 1263.  16
+ 1264.  21
+ 1265.  16
+ 1266.  21
+ 1267.  16
+ 1268.  21
+ 1269.  16
+ 1270.  16
+ 1271.  12
+ 1272.  16
+ 1273.  12
+ 1274.  16
+ 1275.  12
+ 1276.  15
+ 1277.  13
+ 1278.   6
+ 1279.   5
+ 1280.  19
+ 1281.  13
+ 1282.  17
+ 1283.  14
+ 1284.  17
+ 1285.  14
+ 1286.  17
+ 1287.  14
+ 1288.  17
+ 1289.  14
+ 1290.  17
+ 1291.  14
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.  13
+ 1297.   9
+ 1298.  22
+ 1299.  16
+ 1300.  14
+ 1301.  11
+ 1302.  14
+ 1303.  11
+ 1304.  17
+ 1305.  13
+ 1306.  13
+ 1307.  12
+ 1308.  13
+ 1309.  12
+ 1310.  16
+ 1311.  12
+ 1312.  16
+ 1313.  13
+ 1314.  16
+ 1315.  13
+ 1316.  18
+ 1317.  13
+ 1318.  19
+ 1319.  13
+
+
+	DevRec  9: ppem =  27, maxWid =  54
+    0.  20
+    1.   0
+    2.   8
+    3.   8
+    4.   8
+    5.  10
+    6.  15
+    7.  15
+    8.  24
+    9.  18
+   10.   5
+   11.   9
+   12.   9
+   13.  11
+   14.  16
+   15.   8
+   16.   9
+   17.   8
+   18.   8
+   19.  15
+   20.  15
+   21.  15
+   22.  15
+   23.  15
+   24.  15
+   25.  15
+   26.  15
+   27.  15
+   28.  15
+   29.   8
+   30.   8
+   31.  16
+   32.  16
+   33.  16
+   34.  15
+   35.  27
+   36.  18
+   37.  18
+   38.  20
+   39.  20
+   40.  18
+   41.  17
+   42.  21
+   43.  19
+   44.   8
+   45.  13
+   46.  18
+   47.  15
+   48.  23
+   49.  19
+   50.  21
+   51.  17
+   52.  21
+   53.  20
+   54.  18
+   55.  16
+   56.  19
+   57.  17
+   58.  28
+   59.  17
+   60.  18
+   61.  17
+   62.   8
+   63.   8
+   64.   8
+   65.  12
+   66.  15
+   67.   9
+   68.  15
+   69.  15
+   70.  14
+   71.  15
+   72.  15
+   73.   7
+   74.  15
+   75.  15
+   76.   6
+   77.   6
+   78.  14
+   79.   6
+   80.  22
+   81.  15
+   82.  15
+   83.  15
+   84.  15
+   85.   9
+   86.  14
+   87.   8
+   88.  15
+   89.  13
+   90.  19
+   91.  12
+   92.  14
+   93.  13
+   94.   9
+   95.   6
+   96.   9
+   97.  16
+   98.  18
+   99.  18
+  100.  20
+  101.  18
+  102.  19
+  103.  21
+  104.  19
+  105.  15
+  106.  15
+  107.  15
+  108.  15
+  109.  15
+  110.  15
+  111.  14
+  112.  15
+  113.  15
+  114.  15
+  115.  15
+  116.   6
+  117.   6
+  118.   6
+  119.   6
+  120.  15
+  121.  15
+  122.  15
+  123.  15
+  124.  15
+  125.  15
+  126.  15
+  127.  15
+  128.  15
+  129.  15
+  130.  15
+  131.  11
+  132.  15
+  133.  15
+  134.  15
+  135.   9
+  136.  15
+  137.  17
+  138.  20
+  139.  20
+  140.  27
+  141.   9
+  142.   9
+  143.  15
+  144.  27
+  145.  21
+  146.  19
+  147.  15
+  148.  15
+  149.  15
+  150.  15
+  151.  16
+  152.  13
+  153.  19
+  154.  22
+  155.  15
+  156.   7
+  157.  10
+  158.  10
+  159.  21
+  160.  24
+  161.  17
+  162.  17
+  163.   8
+  164.  16
+  165.  15
+  166.  15
+  167.  15
+  168.  17
+  169.  15
+  170.  15
+  171.  27
+  172.  18
+  173.  18
+  174.  21
+  175.  27
+  176.  25
+  177.  15
+  178.  27
+  179.   9
+  180.   9
+  181.   6
+  182.   6
+  183.  15
+  184.  13
+  185.  14
+  186.  18
+  187.   5
+  188.  15
+  189.   9
+  190.   9
+  191.  14
+  192.  14
+  193.  15
+  194.   8
+  195.   6
+  196.   9
+  197.  29
+  198.  18
+  199.  18
+  200.  18
+  201.  18
+  202.  18
+  203.   8
+  204.   8
+  205.   8
+  206.   8
+  207.  21
+  208.  21
+  209.  21
+  210.  19
+  211.  19
+  212.  19
+  213.   6
+  214.   9
+  215.   8
+  216.   9
+  217.   9
+  218.   9
+  219.   9
+  220.   9
+  221.   9
+  222.   9
+  223.   9
+  224.  15
+  225.   6
+  226.  18
+  227.  14
+  228.  17
+  229.  13
+  230.   6
+  231.  20
+  232.  15
+  233.  18
+  234.  14
+  235.  18
+  236.  15
+  237.  16
+  238.  16
+  239.   9
+  240.   9
+  241.   9
+  242.  23
+  243.  23
+  244.  23
+  245.  15
+  246.  21
+  247.  15
+  248.   8
+  249.  18
+  250.  14
+  251.  20
+  252.  14
+  253.  20
+  254.  14
+  255.  15
+  256.  15
+  257.   9
+  258.  18
+  259.  15
+  260.  18
+  261.  15
+  262.  20
+  263.  17
+  264.  20
+  265.  18
+  266.  15
+  267.  18
+  268.  15
+  269.  15
+  270.   6
+  271.  15
+  272.   8
+  273.  15
+  274.   9
+  275.  19
+  276.  15
+  277.  19
+  278.  15
+  279.  21
+  280.  15
+  281.  20
+  282.   9
+  283.  20
+  284.   9
+  285.  18
+  286.  14
+  287.  16
+  288.   7
+  289.  16
+  290.  10
+  291.  19
+  292.  15
+  293.  19
+  294.  15
+  295.  17
+  296.  13
+  297.  17
+  298.  13
+  299.  15
+  300.  21
+  301.  22
+  302.  16
+  303.  15
+  304.  12
+  305.  17
+  306.  11
+  307.  18
+  308.  15
+  309.  14
+  310.  10
+  311.  29
+  312.  27
+  313.  14
+  314.  27
+  315.  14
+  316.  27
+  317.  14
+  318.  14
+  319.  26
+  320.  19
+  321.  16
+  322.  16
+  323.  16
+  324.  16
+  325.  16
+  326.  19
+  327.  17
+  328.  19
+  329.  19
+  330.  19
+  331.  19
+  332.  19
+  333.  19
+  334.  19
+  335.  19
+  336.  19
+  337.  19
+  338.  19
+  339.  19
+  340.  19
+  341.  19
+  342.  19
+  343.  19
+  344.  19
+  345.  19
+  346.  19
+  347.  19
+  348.  19
+  349.  19
+  350.  19
+  351.  19
+  352.  19
+  353.  19
+  354.  19
+  355.  19
+  356.  19
+  357.  19
+  358.  19
+  359.  19
+  360.  19
+  361.  19
+  362.  19
+  363.  19
+  364.  19
+  365.  19
+  366.  19
+  367.  19
+  368.  19
+  369.  19
+  370.  19
+  371.  19
+  372.  19
+  373.  20
+  374.  16
+  375.  27
+  376.  27
+  377.  27
+  378.  27
+  379.  27
+  380.  16
+  381.  16
+  382.  16
+  383.  28
+  384.  28
+  385.  25
+  386.  20
+  387.  20
+  388.  14
+  389.  18
+  390.  16
+  391.  14
+  392.  14
+  393.  20
+  394.  20
+  395.  12
+  396.  16
+  397.   5
+  398.  10
+  399.  24
+  400.   9
+  401.  16
+  402.  10
+  403.  10
+  404.  16
+  405.  10
+  406.  18
+  407.  15
+  408.  20
+  409.  14
+  410.  20
+  411.  14
+  412.  18
+  413.  15
+  414.  18
+  415.  15
+  416.  18
+  417.  15
+  418.  21
+  419.  15
+  420.  21
+  421.  15
+  422.  21
+  423.  15
+  424.  19
+  425.  15
+  426.  19
+  427.  15
+  428.   8
+  429.   6
+  430.   8
+  431.   6
+  432.   8
+  433.   6
+  434.   8
+  435.   6
+  436.  13
+  437.   6
+  438.  18
+  439.  14
+  440.  14
+  441.  15
+  442.   6
+  443.  19
+  444.  15
+  445.  20
+  446.  15
+  447.  21
+  448.  15
+  449.  21
+  450.  15
+  451.  20
+  452.   9
+  453.  18
+  454.  14
+  455.  17
+  456.   8
+  457.  19
+  458.  15
+  459.  19
+  460.  15
+  461.  19
+  462.  15
+  463.  20
+  464.  15
+  465.  28
+  466.  19
+  467.  18
+  468.  14
+  469.   6
+  470.  18
+  471.  15
+  472.  27
+  473.  24
+  474.  21
+  475.  17
+  476.   6
+  477.  28
+  478.  19
+  479.  28
+  480.  19
+  481.  28
+  482.  19
+  483.  18
+  484.  14
+  485.   6
+  486.   9
+  487.  15
+  488.  16
+  489.  23
+  490.  23
+  491.  23
+  492.  23
+  493.   9
+  494.   9
+  495.   9
+  496.   9
+  497.  18
+  498.  21
+  499.  23
+  500.  10
+  501.  21
+  502.  22
+  503.  20
+  504.   6
+  505.  18
+  506.  18
+  507.  18
+  508.  18
+  509.  17
+  510.  19
+  511.   8
+  512.  18
+  513.  18
+  514.  23
+  515.  19
+  516.  18
+  517.  21
+  518.  19
+  519.  17
+  520.  17
+  521.  16
+  522.  18
+  523.  17
+  524.  22
+  525.  20
+  526.   8
+  527.  18
+  528.  16
+  529.  12
+  530.  15
+  531.   6
+  532.  15
+  533.  16
+  534.  14
+  535.  12
+  536.  15
+  537.  15
+  538.   6
+  539.  14
+  540.  14
+  541.  16
+  542.  13
+  543.  12
+  544.  15
+  545.  15
+  546.  13
+  547.  15
+  548.  14
+  549.  18
+  550.  21
+  551.   6
+  552.  15
+  553.  15
+  554.  15
+  555.  21
+  556.  18
+  557.  23
+  558.  15
+  559.  19
+  560.  18
+  561.   8
+  562.   8
+  563.  13
+  564.  29
+  565.  27
+  566.  23
+  567.  16
+  568.  17
+  569.  19
+  570.  18
+  571.  18
+  572.  18
+  573.  15
+  574.  18
+  575.  18
+  576.  25
+  577.  16
+  578.  19
+  579.  19
+  580.  16
+  581.  18
+  582.  23
+  583.  19
+  584.  21
+  585.  18
+  586.  17
+  587.  20
+  588.  16
+  589.  17
+  590.  20
+  591.  17
+  592.  20
+  593.  17
+  594.  25
+  595.  25
+  596.  21
+  597.  24
+  598.  18
+  599.  19
+  600.  27
+  601.  20
+  602.  15
+  603.  15
+  604.  14
+  605.  10
+  606.  16
+  607.  15
+  608.  18
+  609.  12
+  610.  15
+  611.  15
+  612.  12
+  613.  16
+  614.  19
+  615.  15
+  616.  15
+  617.  15
+  618.  15
+  619.  14
+  620.  12
+  621.  14
+  622.  22
+  623.  12
+  624.  15
+  625.  14
+  626.  22
+  627.  22
+  628.  17
+  629.  19
+  630.  14
+  631.  14
+  632.  20
+  633.  15
+  634.  15
+  635.  15
+  636.  10
+  637.  14
+  638.  14
+  639.   6
+  640.   6
+  641.   6
+  642.  24
+  643.  22
+  644.  15
+  645.  12
+  646.  14
+  647.  15
+  648.  13
+  649.  11
+  650.  27
+  651.  29
+  652.  19
+  653.   9
+  654.   9
+  655.   9
+  656.   9
+  657.   9
+  658.   9
+  659.   9
+  660.   9
+  661.   9
+  662.   9
+  663.   9
+  664.   9
+  665.   9
+  666.  10
+  667.   9
+  668.   6
+  669.   9
+  670.   9
+  671.   8
+  672.  15
+  673.  15
+  674.  11
+  675.  14
+  676.  16
+  677.   6
+  678.  10
+  679.  16
+  680.  16
+  681.   6
+  682.  14
+  683.  12
+  684.  13
+  685.  16
+  686.  16
+  687.   6
+  688.  10
+  689.  16
+  690.  14
+  691.  15
+  692.  15
+  693.  12
+  694.  13
+  695.  15
+  696.  14
+  697.  19
+  698.  17
+  699.  12
+  700.  12
+  701.  12
+  702.   6
+  703.  11
+  704.  21
+  705.   6
+  706.  14
+  707.  14
+  708.  13
+  709.  13
+  710.  14
+  711.  19
+  712.  19
+  713.  19
+  714.  19
+  715.  15
+  716.  15
+  717.  15
+  718.  15
+  719.  11
+  720.  14
+  721.  16
+  722.   8
+  723.  11
+  724.  16
+  725.   8
+  726.  14
+  727.  12
+  728.  13
+  729.  16
+  730.  10
+  731.  16
+  732.  15
+  733.  15
+  734.  13
+  735.  15
+  736.  14
+  737.  19
+  738.  17
+  739.   6
+  740.  15
+  741.  12
+  742.  15
+  743.  16
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.   9
+  749.   9
+  750.  10
+  751.  11
+  752.   6
+  753.   5
+  754.   6
+  755.   5
+  756.   5
+  757.   6
+  758.   5
+  759.   6
+  760.   4
+  761.  14
+  762.  14
+  763.  14
+  764.  14
+  765.  14
+  766.  14
+  767.  14
+  768.  14
+  769.  14
+  770.  14
+  771.  14
+  772.   9
+  773.  14
+  774.  20
+  775.  20
+  776.   8
+  777.  20
+  778.  14
+  779.  14
+  780.  14
+  781.  20
+  782.  20
+  783.  20
+  784.  20
+  785.  20
+  786.   6
+  787.  20
+  788.  20
+  789.  20
+  790.  20
+  791.  20
+  792.  20
+  793.  20
+  794.  20
+  795.  17
+  796.  20
+  797.  20
+  798.  20
+  799.  19
+  800.  19
+  801.   7
+  802.   7
+  803.  20
+  804.  20
+  805.  20
+  806.  20
+  807.  15
+  808.  14
+  809.  14
+  810.  14
+  811.  13
+  812.  13
+  813.  22
+  814.  25
+  815.  11
+  816.  14
+  817.  22
+  818.  25
+  819.  11
+  820.  14
+  821.  17
+  822.  16
+  823.  20
+  824.  20
+  825.  20
+  826.  20
+  827.  20
+  828.  20
+  829.  20
+  830.  20
+  831.  20
+  832.  20
+  833.  20
+  834.  20
+  835.  20
+  836.  20
+  837.  20
+  838.  20
+  839.   6
+  840.   6
+  841.   6
+  842.   6
+  843.   6
+  844.  20
+  845.  20
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.  15
+  863.  27
+  864.  20
+  865.  20
+  866.  20
+  867.  20
+  868.  20
+  869.  20
+  870.  20
+  871.  20
+  872.  20
+  873.  20
+  874.  20
+  875.  20
+  876.  20
+  877.  20
+  878.  20
+  879.  20
+  880.  20
+  881.  20
+  882.  20
+  883.  20
+  884.  20
+  885.  20
+  886.  20
+  887.  20
+  888.  20
+  889.  20
+  890.  20
+  891.  20
+  892.   9
+  893.   9
+  894.  20
+  895.  17
+  896.  11
+  897.   6
+  898.   6
+  899.   6
+  900.   6
+  901.  12
+  902.  12
+  903.   6
+  904.   6
+  905.  17
+  906.  16
+  907.   7
+  908.   7
+  909.   6
+  910.   6
+  911.  19
+  912.  19
+  913.   7
+  914.   7
+  915.   8
+  916.  10
+  917.  19
+  918.  19
+  919.   7
+  920.   7
+  921.  19
+  922.  19
+  923.   7
+  924.   7
+  925.  15
+  926.  14
+  927.  14
+  928.  14
+  929.  15
+  930.  14
+  931.  14
+  932.  14
+  933.  15
+  934.  14
+  935.  14
+  936.  14
+  937.   9
+  938.   9
+  939.   9
+  940.   9
+  941.  13
+  942.  13
+  943.  13
+  944.  13
+  945.  22
+  946.  22
+  947.  14
+  948.  14
+  949.  22
+  950.  22
+  951.  14
+  952.  14
+  953.  30
+  954.  30
+  955.  23
+  956.  23
+  957.  30
+  958.  30
+  959.  23
+  960.  23
+  961.  16
+  962.  16
+  963.  16
+  964.  16
+  965.  16
+  966.  16
+  967.  16
+  968.  16
+  969.  15
+  970.  12
+  971.  14
+  972.  11
+  973.  15
+  974.  12
+  975.  14
+  976.  11
+  977.  21
+  978.  21
+  979.   7
+  980.   7
+  981.  16
+  982.  16
+  983.   7
+  984.   7
+  985.  16
+  986.  16
+  987.  11
+  988.  11
+  989.  14
+  990.  14
+  991.   6
+  992.   6
+  993.   9
+  994.   9
+  995.  11
+  996.  11
+  997.  14
+  998.  14
+  999.   7
+ 1000.   7
+ 1001.   8
+ 1002.  10
+ 1003.  12
+ 1004.  11
+ 1005.  12
+ 1006.  12
+ 1007.  17
+ 1008.  16
+ 1009.  17
+ 1010.  16
+ 1011.   7
+ 1012.   7
+ 1013.  15
+ 1014.  16
+ 1015.  15
+ 1016.  16
+ 1017.  15
+ 1018.  16
+ 1019.  15
+ 1020.  16
+ 1021.  20
+ 1022.  20
+ 1023.   5
+ 1024.   5
+ 1025.  20
+ 1026.  20
+ 1027.  20
+ 1028.   4
+ 1029.   6
+ 1030.  20
+ 1031.  20
+ 1032.   6
+ 1033.   6
+ 1034.  20
+ 1035.  20
+ 1036.  20
+ 1037.   6
+ 1038.   6
+ 1039.   6
+ 1040.   6
+ 1041.   6
+ 1042.   6
+ 1043.  20
+ 1044.   5
+ 1045.   5
+ 1046.  20
+ 1047.  20
+ 1048.  20
+ 1049.  20
+ 1050.  20
+ 1051.  20
+ 1052.  20
+ 1053.  20
+ 1054.  20
+ 1055.  20
+ 1056.  20
+ 1057.  20
+ 1058.  20
+ 1059.  20
+ 1060.  20
+ 1061.  20
+ 1062.  20
+ 1063.  20
+ 1064.  20
+ 1065.  20
+ 1066.  20
+ 1067.  20
+ 1068.  20
+ 1069.  20
+ 1070.  20
+ 1071.  20
+ 1072.  20
+ 1073.  20
+ 1074.  20
+ 1075.  20
+ 1076.  20
+ 1077.  20
+ 1078.  20
+ 1079.  20
+ 1080.  20
+ 1081.  20
+ 1082.  20
+ 1083.  20
+ 1084.  20
+ 1085.  20
+ 1086.  20
+ 1087.  20
+ 1088.  20
+ 1089.  20
+ 1090.  20
+ 1091.  20
+ 1092.  20
+ 1093.  20
+ 1094.  20
+ 1095.  20
+ 1096.  20
+ 1097.  20
+ 1098.  20
+ 1099.  20
+ 1100.   9
+ 1101.   9
+ 1102.   9
+ 1103.  20
+ 1104.  20
+ 1105.  20
+ 1106.  20
+ 1107.  20
+ 1108.  20
+ 1109.  20
+ 1110.  20
+ 1111.  20
+ 1112.  20
+ 1113.  20
+ 1114.  20
+ 1115.  20
+ 1116.  20
+ 1117.  20
+ 1118.  20
+ 1119.  20
+ 1120.  20
+ 1121.  20
+ 1122.  20
+ 1123.  20
+ 1124.  20
+ 1125.  20
+ 1126.  20
+ 1127.   3
+ 1128.  27
+ 1129.  54
+ 1130.  23
+ 1131.  18
+ 1132.  23
+ 1133.  18
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.  14
+ 1151.  23
+ 1152.  23
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.   6
+ 1188.  18
+ 1189.  15
+ 1190.  18
+ 1191.  15
+ 1192.  18
+ 1193.  15
+ 1194.  18
+ 1195.  15
+ 1196.  18
+ 1197.  15
+ 1198.  18
+ 1199.  15
+ 1200.  18
+ 1201.  15
+ 1202.  18
+ 1203.  15
+ 1204.  18
+ 1205.  15
+ 1206.  18
+ 1207.  15
+ 1208.  18
+ 1209.  15
+ 1210.  18
+ 1211.  15
+ 1212.  18
+ 1213.  15
+ 1214.  18
+ 1215.  15
+ 1216.  18
+ 1217.  15
+ 1218.  18
+ 1219.  15
+ 1220.  18
+ 1221.  15
+ 1222.  18
+ 1223.  15
+ 1224.  18
+ 1225.  15
+ 1226.  18
+ 1227.  15
+ 1228.   8
+ 1229.   6
+ 1230.   8
+ 1231.   6
+ 1232.  21
+ 1233.  15
+ 1234.  21
+ 1235.  15
+ 1236.  21
+ 1237.  15
+ 1238.  21
+ 1239.  15
+ 1240.  21
+ 1241.  15
+ 1242.  21
+ 1243.  15
+ 1244.  21
+ 1245.  15
+ 1246.  23
+ 1247.  18
+ 1248.  23
+ 1249.  18
+ 1250.  23
+ 1251.  18
+ 1252.  23
+ 1253.  18
+ 1254.  23
+ 1255.  18
+ 1256.  19
+ 1257.  15
+ 1258.  19
+ 1259.  15
+ 1260.  23
+ 1261.  18
+ 1262.  23
+ 1263.  18
+ 1264.  23
+ 1265.  18
+ 1266.  23
+ 1267.  18
+ 1268.  23
+ 1269.  18
+ 1270.  18
+ 1271.  14
+ 1272.  18
+ 1273.  14
+ 1274.  18
+ 1275.  14
+ 1276.  18
+ 1277.  15
+ 1278.   8
+ 1279.   6
+ 1280.  21
+ 1281.  15
+ 1282.  19
+ 1283.  15
+ 1284.  19
+ 1285.  15
+ 1286.  19
+ 1287.  15
+ 1288.  19
+ 1289.  15
+ 1290.  19
+ 1291.  15
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.  15
+ 1297.  10
+ 1298.  25
+ 1299.  18
+ 1300.  16
+ 1301.  12
+ 1302.  16
+ 1303.  12
+ 1304.  20
+ 1305.  15
+ 1306.  15
+ 1307.  14
+ 1308.  15
+ 1309.  14
+ 1310.  18
+ 1311.  14
+ 1312.  18
+ 1313.  14
+ 1314.  18
+ 1315.  14
+ 1316.  20
+ 1317.  15
+ 1318.  21
+ 1319.  15
+
+
+	DevRec 10: ppem =  29, maxWid =  58
+    0.  22
+    1.   0
+    2.   8
+    3.   8
+    4.   9
+    5.  10
+    6.  16
+    7.  16
+    8.  26
+    9.  19
+   10.   6
+   11.  10
+   12.  10
+   13.  11
+   14.  17
+   15.   8
+   16.  10
+   17.   8
+   18.   8
+   19.  16
+   20.  16
+   21.  16
+   22.  16
+   23.  16
+   24.  16
+   25.  16
+   26.  16
+   27.  16
+   28.  16
+   29.   8
+   30.   8
+   31.  17
+   32.  17
+   33.  17
+   34.  16
+   35.  29
+   36.  19
+   37.  19
+   38.  21
+   39.  21
+   40.  19
+   41.  18
+   42.  23
+   43.  21
+   44.   7
+   45.  15
+   46.  19
+   47.  16
+   48.  23
+   49.  21
+   50.  23
+   51.  19
+   52.  23
+   53.  21
+   54.  19
+   55.  19
+   56.  21
+   57.  19
+   58.  30
+   59.  19
+   60.  19
+   61.  18
+   62.   8
+   63.   8
+   64.   8
+   65.  14
+   66.  16
+   67.  10
+   68.  16
+   69.  16
+   70.  15
+   71.  16
+   72.  16
+   73.   8
+   74.  16
+   75.  16
+   76.   7
+   77.   7
+   78.  14
+   79.   7
+   80.  25
+   81.  16
+   82.  16
+   83.  16
+   84.  16
+   85.  10
+   86.  15
+   87.   8
+   88.  16
+   89.  13
+   90.  21
+   91.  13
+   92.  13
+   93.  14
+   94.  10
+   95.   8
+   96.  10
+   97.  17
+   98.  19
+   99.  19
+  100.  21
+  101.  19
+  102.  21
+  103.  23
+  104.  21
+  105.  16
+  106.  16
+  107.  16
+  108.  16
+  109.  16
+  110.  16
+  111.  15
+  112.  16
+  113.  16
+  114.  16
+  115.  16
+  116.   9
+  117.   9
+  118.   9
+  119.   9
+  120.  16
+  121.  16
+  122.  16
+  123.  16
+  124.  16
+  125.  16
+  126.  16
+  127.  16
+  128.  16
+  129.  16
+  130.  16
+  131.  12
+  132.  16
+  133.  16
+  134.  16
+  135.  10
+  136.  16
+  137.  18
+  138.  21
+  139.  21
+  140.  29
+  141.  10
+  142.  10
+  143.  16
+  144.  29
+  145.  23
+  146.  21
+  147.  16
+  148.  16
+  149.  16
+  150.  16
+  151.  17
+  152.  14
+  153.  21
+  154.  24
+  155.  16
+  156.   7
+  157.  11
+  158.  11
+  159.  22
+  160.  26
+  161.  18
+  162.  18
+  163.   9
+  164.  17
+  165.  16
+  166.  16
+  167.  16
+  168.  18
+  169.  16
+  170.  16
+  171.  29
+  172.  19
+  173.  19
+  174.  23
+  175.  29
+  176.  27
+  177.  16
+  178.  29
+  179.  10
+  180.  10
+  181.   6
+  182.   6
+  183.  16
+  184.  14
+  185.  13
+  186.  19
+  187.   5
+  188.  16
+  189.  10
+  190.  10
+  191.  15
+  192.  15
+  193.  16
+  194.   8
+  195.   6
+  196.  10
+  197.  29
+  198.  19
+  199.  19
+  200.  19
+  201.  19
+  202.  19
+  203.   7
+  204.   7
+  205.   7
+  206.   7
+  207.  23
+  208.  23
+  209.  23
+  210.  21
+  211.  21
+  212.  21
+  213.   9
+  214.  10
+  215.   9
+  216.  10
+  217.  10
+  218.  10
+  219.  10
+  220.  10
+  221.  10
+  222.  10
+  223.  10
+  224.  16
+  225.   6
+  226.  19
+  227.  15
+  228.  18
+  229.  14
+  230.   8
+  231.  21
+  232.  16
+  233.  19
+  234.  13
+  235.  19
+  236.  16
+  237.  17
+  238.  17
+  239.  10
+  240.  10
+  241.  10
+  242.  24
+  243.  24
+  244.  24
+  245.  16
+  246.  23
+  247.  16
+  248.   7
+  249.  19
+  250.  15
+  251.  21
+  252.  15
+  253.  21
+  254.  15
+  255.  16
+  256.  16
+  257.  10
+  258.  19
+  259.  16
+  260.  19
+  261.  16
+  262.  21
+  263.  18
+  264.  21
+  265.  19
+  266.  16
+  267.  19
+  268.  16
+  269.  16
+  270.   7
+  271.  16
+  272.   9
+  273.  16
+  274.  10
+  275.  21
+  276.  16
+  277.  21
+  278.  16
+  279.  23
+  280.  16
+  281.  21
+  282.  10
+  283.  21
+  284.  10
+  285.  19
+  286.  15
+  287.  19
+  288.   8
+  289.  19
+  290.  11
+  291.  21
+  292.  16
+  293.  21
+  294.  16
+  295.  18
+  296.  14
+  297.  18
+  298.  14
+  299.  16
+  300.  23
+  301.  22
+  302.  17
+  303.  16
+  304.  13
+  305.  18
+  306.  12
+  307.  18
+  308.  16
+  309.  15
+  310.  11
+  311.  31
+  312.  29
+  313.  15
+  314.  29
+  315.  15
+  316.  29
+  317.  15
+  318.  15
+  319.  28
+  320.  21
+  321.  17
+  322.  18
+  323.  17
+  324.  18
+  325.  18
+  326.  21
+  327.  18
+  328.  21
+  329.  21
+  330.  21
+  331.  21
+  332.  21
+  333.  21
+  334.  21
+  335.  21
+  336.  21
+  337.  21
+  338.  21
+  339.  21
+  340.  21
+  341.  21
+  342.  21
+  343.  21
+  344.  21
+  345.  21
+  346.  21
+  347.  21
+  348.  21
+  349.  21
+  350.  21
+  351.  21
+  352.  21
+  353.  21
+  354.  21
+  355.  21
+  356.  21
+  357.  21
+  358.  21
+  359.  21
+  360.  21
+  361.  21
+  362.  21
+  363.  21
+  364.  21
+  365.  21
+  366.  21
+  367.  21
+  368.  21
+  369.  21
+  370.  21
+  371.  21
+  372.  21
+  373.  21
+  374.  18
+  375.  29
+  376.  29
+  377.  29
+  378.  29
+  379.  29
+  380.  18
+  381.  18
+  382.  18
+  383.  30
+  384.  31
+  385.  27
+  386.  22
+  387.  22
+  388.  15
+  389.  19
+  390.  17
+  391.  15
+  392.  15
+  393.  22
+  394.  21
+  395.  13
+  396.  18
+  397.   5
+  398.  10
+  399.  26
+  400.   9
+  401.  18
+  402.  10
+  403.  10
+  404.  18
+  405.  10
+  406.  19
+  407.  16
+  408.  21
+  409.  15
+  410.  21
+  411.  15
+  412.  19
+  413.  16
+  414.  19
+  415.  16
+  416.  19
+  417.  16
+  418.  23
+  419.  16
+  420.  23
+  421.  16
+  422.  23
+  423.  16
+  424.  21
+  425.  16
+  426.  21
+  427.  16
+  428.   7
+  429.   9
+  430.   7
+  431.   9
+  432.   7
+  433.   9
+  434.   7
+  435.   7
+  436.  15
+  437.   7
+  438.  19
+  439.  14
+  440.  15
+  441.  16
+  442.   7
+  443.  21
+  444.  16
+  445.  21
+  446.  16
+  447.  23
+  448.  16
+  449.  23
+  450.  16
+  451.  21
+  452.  10
+  453.  19
+  454.  15
+  455.  18
+  456.   8
+  457.  21
+  458.  16
+  459.  21
+  460.  16
+  461.  21
+  462.  16
+  463.  21
+  464.  16
+  465.  30
+  466.  21
+  467.  19
+  468.  13
+  469.   7
+  470.  19
+  471.  16
+  472.  29
+  473.  26
+  474.  23
+  475.  18
+  476.   8
+  477.  30
+  478.  21
+  479.  30
+  480.  21
+  481.  30
+  482.  21
+  483.  19
+  484.  13
+  485.   6
+  486.  10
+  487.  16
+  488.  17
+  489.  24
+  490.  24
+  491.  24
+  492.  24
+  493.  10
+  494.  10
+  495.  10
+  496.  10
+  497.  19
+  498.  23
+  499.  24
+  500.  11
+  501.  22
+  502.  24
+  503.  22
+  504.   7
+  505.  19
+  506.  19
+  507.  19
+  508.  19
+  509.  18
+  510.  21
+  511.   7
+  512.  19
+  513.  19
+  514.  23
+  515.  21
+  516.  19
+  517.  23
+  518.  21
+  519.  19
+  520.  18
+  521.  19
+  522.  19
+  523.  19
+  524.  23
+  525.  22
+  526.   7
+  527.  19
+  528.  17
+  529.  13
+  530.  16
+  531.   7
+  532.  16
+  533.  17
+  534.  14
+  535.  13
+  536.  16
+  537.  16
+  538.   7
+  539.  15
+  540.  15
+  541.  17
+  542.  13
+  543.  13
+  544.  16
+  545.  17
+  546.  14
+  547.  16
+  548.  15
+  549.  21
+  550.  23
+  551.   7
+  552.  16
+  553.  16
+  554.  16
+  555.  23
+  556.  19
+  557.  25
+  558.  16
+  559.  21
+  560.  19
+  561.   7
+  562.   7
+  563.  15
+  564.  31
+  565.  29
+  566.  25
+  567.  17
+  568.  18
+  569.  21
+  570.  19
+  571.  19
+  572.  19
+  573.  16
+  574.  20
+  575.  19
+  576.  27
+  577.  18
+  578.  21
+  579.  21
+  580.  17
+  581.  19
+  582.  23
+  583.  21
+  584.  23
+  585.  21
+  586.  19
+  587.  21
+  588.  19
+  589.  18
+  590.  22
+  591.  19
+  592.  21
+  593.  19
+  594.  27
+  595.  27
+  596.  23
+  597.  26
+  598.  19
+  599.  21
+  600.  29
+  601.  21
+  602.  16
+  603.  17
+  604.  15
+  605.  11
+  606.  17
+  607.  16
+  608.  20
+  609.  13
+  610.  16
+  611.  16
+  612.  13
+  613.  17
+  614.  20
+  615.  16
+  616.  16
+  617.  16
+  618.  16
+  619.  15
+  620.  13
+  621.  13
+  622.  24
+  623.  13
+  624.  17
+  625.  15
+  626.  23
+  627.  24
+  628.  18
+  629.  21
+  630.  15
+  631.  15
+  632.  22
+  633.  16
+  634.  16
+  635.  16
+  636.  11
+  637.  15
+  638.  15
+  639.   7
+  640.   9
+  641.   7
+  642.  26
+  643.  24
+  644.  16
+  645.  13
+  646.  13
+  647.  16
+  648.  14
+  649.  12
+  650.  29
+  651.  31
+  652.  20
+  653.  10
+  654.  10
+  655.  10
+  656.  10
+  657.  10
+  658.  10
+  659.  10
+  660.  10
+  661.  10
+  662.  10
+  663.  10
+  664.  10
+  665.  10
+  666.  11
+  667.  10
+  668.   7
+  669.  10
+  670.  10
+  671.   8
+  672.  16
+  673.  16
+  674.  12
+  675.  15
+  676.  17
+  677.   7
+  678.  11
+  679.  17
+  680.  17
+  681.   7
+  682.  15
+  683.  13
+  684.  13
+  685.  17
+  686.  17
+  687.   7
+  688.  10
+  689.  17
+  690.  15
+  691.  16
+  692.  16
+  693.  13
+  694.  14
+  695.  16
+  696.  15
+  697.  20
+  698.  19
+  699.  14
+  700.  14
+  701.  14
+  702.   7
+  703.  12
+  704.  25
+  705.   7
+  706.  15
+  707.  15
+  708.  13
+  709.  13
+  710.  16
+  711.  20
+  712.  20
+  713.  20
+  714.  20
+  715.  16
+  716.  16
+  717.  16
+  718.  16
+  719.  12
+  720.  15
+  721.  17
+  722.   8
+  723.  12
+  724.  17
+  725.   8
+  726.  15
+  727.  13
+  728.  13
+  729.  17
+  730.  10
+  731.  17
+  732.  16
+  733.  16
+  734.  14
+  735.  16
+  736.  15
+  737.  20
+  738.  19
+  739.   7
+  740.  16
+  741.  13
+  742.  16
+  743.  17
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.   9
+  749.   9
+  750.  10
+  751.  12
+  752.   6
+  753.   6
+  754.   7
+  755.   6
+  756.   6
+  757.   6
+  758.   6
+  759.   6
+  760.   5
+  761.  15
+  762.  15
+  763.  15
+  764.  15
+  765.  15
+  766.  15
+  767.  15
+  768.  15
+  769.  15
+  770.  15
+  771.  15
+  772.   9
+  773.  15
+  774.  22
+  775.  22
+  776.   8
+  777.  22
+  778.  15
+  779.  15
+  780.  15
+  781.  22
+  782.  22
+  783.  22
+  784.  22
+  785.  22
+  786.   6
+  787.  22
+  788.  22
+  789.  22
+  790.  22
+  791.  22
+  792.  22
+  793.  22
+  794.  22
+  795.  19
+  796.  22
+  797.  22
+  798.  22
+  799.  21
+  800.  21
+  801.   7
+  802.   7
+  803.  22
+  804.  22
+  805.  22
+  806.  22
+  807.  16
+  808.  15
+  809.  15
+  810.  15
+  811.  14
+  812.  14
+  813.  24
+  814.  27
+  815.  11
+  816.  15
+  817.  24
+  818.  27
+  819.  11
+  820.  15
+  821.  19
+  822.  17
+  823.  22
+  824.  22
+  825.  22
+  826.  22
+  827.  22
+  828.  22
+  829.  22
+  830.  22
+  831.  22
+  832.  22
+  833.  22
+  834.  22
+  835.  22
+  836.  22
+  837.  22
+  838.  22
+  839.   7
+  840.   6
+  841.   6
+  842.   6
+  843.   6
+  844.  22
+  845.  22
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.  16
+  863.  29
+  864.  22
+  865.  22
+  866.  22
+  867.  22
+  868.  22
+  869.  22
+  870.  22
+  871.  22
+  872.  22
+  873.  22
+  874.  22
+  875.  22
+  876.  22
+  877.  22
+  878.  22
+  879.  22
+  880.  22
+  881.  22
+  882.  22
+  883.  22
+  884.  22
+  885.  22
+  886.  22
+  887.  22
+  888.  22
+  889.  22
+  890.  22
+  891.  22
+  892.   9
+  893.   9
+  894.  22
+  895.  18
+  896.  12
+  897.   6
+  898.   7
+  899.   6
+  900.   7
+  901.  13
+  902.  13
+  903.   6
+  904.   7
+  905.  19
+  906.  17
+  907.   7
+  908.   7
+  909.   6
+  910.   7
+  911.  21
+  912.  21
+  913.   7
+  914.   7
+  915.   8
+  916.  11
+  917.  21
+  918.  21
+  919.   7
+  920.   7
+  921.  21
+  922.  21
+  923.   7
+  924.   7
+  925.  16
+  926.  15
+  927.  15
+  928.  15
+  929.  16
+  930.  15
+  931.  15
+  932.  15
+  933.  16
+  934.  15
+  935.  15
+  936.  15
+  937.  10
+  938.  10
+  939.  10
+  940.  10
+  941.  14
+  942.  14
+  943.  14
+  944.  14
+  945.  24
+  946.  24
+  947.  15
+  948.  15
+  949.  24
+  950.  24
+  951.  15
+  952.  15
+  953.  32
+  954.  32
+  955.  25
+  956.  25
+  957.  32
+  958.  32
+  959.  25
+  960.  25
+  961.  17
+  962.  17
+  963.  17
+  964.  17
+  965.  17
+  966.  17
+  967.  17
+  968.  17
+  969.  16
+  970.  13
+  971.  15
+  972.  11
+  973.  16
+  974.  13
+  975.  15
+  976.  11
+  977.  23
+  978.  23
+  979.   8
+  980.   8
+  981.  17
+  982.  17
+  983.   8
+  984.   8
+  985.  17
+  986.  17
+  987.  11
+  988.  11
+  989.  15
+  990.  15
+  991.   6
+  992.   6
+  993.  10
+  994.  10
+  995.  11
+  996.  11
+  997.  15
+  998.  15
+  999.   7
+ 1000.   7
+ 1001.   8
+ 1002.  11
+ 1003.  13
+ 1004.  11
+ 1005.  13
+ 1006.  13
+ 1007.  19
+ 1008.  17
+ 1009.  19
+ 1010.  17
+ 1011.   7
+ 1012.   7
+ 1013.  16
+ 1014.  17
+ 1015.  16
+ 1016.  17
+ 1017.  16
+ 1018.  17
+ 1019.  16
+ 1020.  17
+ 1021.  22
+ 1022.  22
+ 1023.   6
+ 1024.   6
+ 1025.  22
+ 1026.  22
+ 1027.  22
+ 1028.   5
+ 1029.   6
+ 1030.  22
+ 1031.  22
+ 1032.   6
+ 1033.   7
+ 1034.  22
+ 1035.  22
+ 1036.  22
+ 1037.   6
+ 1038.   6
+ 1039.   6
+ 1040.   6
+ 1041.   6
+ 1042.   7
+ 1043.  22
+ 1044.   6
+ 1045.   6
+ 1046.  22
+ 1047.  22
+ 1048.  22
+ 1049.  22
+ 1050.  22
+ 1051.  22
+ 1052.  22
+ 1053.  22
+ 1054.  22
+ 1055.  22
+ 1056.  22
+ 1057.  22
+ 1058.  22
+ 1059.  22
+ 1060.  22
+ 1061.  22
+ 1062.  22
+ 1063.  22
+ 1064.  22
+ 1065.  22
+ 1066.  22
+ 1067.  22
+ 1068.  22
+ 1069.  22
+ 1070.  22
+ 1071.  22
+ 1072.  22
+ 1073.  22
+ 1074.  22
+ 1075.  22
+ 1076.  22
+ 1077.  22
+ 1078.  22
+ 1079.  22
+ 1080.  22
+ 1081.  22
+ 1082.  22
+ 1083.  22
+ 1084.  22
+ 1085.  22
+ 1086.  22
+ 1087.  22
+ 1088.  22
+ 1089.  22
+ 1090.  22
+ 1091.  22
+ 1092.  22
+ 1093.  22
+ 1094.  22
+ 1095.  22
+ 1096.  22
+ 1097.  22
+ 1098.  22
+ 1099.  22
+ 1100.   9
+ 1101.   9
+ 1102.   9
+ 1103.  22
+ 1104.  22
+ 1105.  22
+ 1106.  22
+ 1107.  22
+ 1108.  22
+ 1109.  22
+ 1110.  22
+ 1111.  22
+ 1112.  22
+ 1113.  22
+ 1114.  22
+ 1115.  22
+ 1116.  22
+ 1117.  22
+ 1118.  22
+ 1119.  22
+ 1120.  22
+ 1121.  22
+ 1122.  22
+ 1123.  22
+ 1124.  22
+ 1125.  22
+ 1126.  22
+ 1127.   4
+ 1128.  29
+ 1129.  58
+ 1130.  25
+ 1131.  19
+ 1132.  25
+ 1133.  19
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.  15
+ 1151.  24
+ 1152.  24
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.   7
+ 1188.  19
+ 1189.  16
+ 1190.  19
+ 1191.  16
+ 1192.  19
+ 1193.  16
+ 1194.  19
+ 1195.  16
+ 1196.  19
+ 1197.  16
+ 1198.  19
+ 1199.  16
+ 1200.  19
+ 1201.  16
+ 1202.  19
+ 1203.  16
+ 1204.  19
+ 1205.  16
+ 1206.  19
+ 1207.  16
+ 1208.  19
+ 1209.  16
+ 1210.  19
+ 1211.  16
+ 1212.  19
+ 1213.  16
+ 1214.  19
+ 1215.  16
+ 1216.  19
+ 1217.  16
+ 1218.  19
+ 1219.  16
+ 1220.  19
+ 1221.  16
+ 1222.  19
+ 1223.  16
+ 1224.  19
+ 1225.  16
+ 1226.  19
+ 1227.  16
+ 1228.   7
+ 1229.   7
+ 1230.   7
+ 1231.   7
+ 1232.  23
+ 1233.  16
+ 1234.  23
+ 1235.  16
+ 1236.  23
+ 1237.  16
+ 1238.  23
+ 1239.  16
+ 1240.  23
+ 1241.  16
+ 1242.  23
+ 1243.  16
+ 1244.  23
+ 1245.  16
+ 1246.  25
+ 1247.  19
+ 1248.  25
+ 1249.  19
+ 1250.  25
+ 1251.  19
+ 1252.  25
+ 1253.  19
+ 1254.  25
+ 1255.  19
+ 1256.  21
+ 1257.  16
+ 1258.  21
+ 1259.  16
+ 1260.  25
+ 1261.  19
+ 1262.  25
+ 1263.  19
+ 1264.  25
+ 1265.  19
+ 1266.  25
+ 1267.  19
+ 1268.  25
+ 1269.  19
+ 1270.  19
+ 1271.  13
+ 1272.  19
+ 1273.  13
+ 1274.  19
+ 1275.  13
+ 1276.  19
+ 1277.  16
+ 1278.   7
+ 1279.   7
+ 1280.  23
+ 1281.  16
+ 1282.  21
+ 1283.  16
+ 1284.  21
+ 1285.  16
+ 1286.  21
+ 1287.  16
+ 1288.  21
+ 1289.  16
+ 1290.  21
+ 1291.  16
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.  16
+ 1297.  11
+ 1298.  27
+ 1299.  19
+ 1300.  17
+ 1301.  13
+ 1302.  17
+ 1303.  13
+ 1304.  21
+ 1305.  16
+ 1306.  16
+ 1307.  15
+ 1308.  16
+ 1309.  15
+ 1310.  19
+ 1311.  15
+ 1312.  19
+ 1313.  15
+ 1314.  19
+ 1315.  15
+ 1316.  22
+ 1317.  16
+ 1318.  23
+ 1319.  16
+
+
+	DevRec 11: ppem =  32, maxWid =  64
+    0.  24
+    1.   0
+    2.   9
+    3.   9
+    4.  11
+    5.  11
+    6.  18
+    7.  18
+    8.  28
+    9.  21
+   10.   6
+   11.  11
+   12.  11
+   13.  12
+   14.  19
+   15.   9
+   16.  11
+   17.   9
+   18.   9
+   19.  18
+   20.  18
+   21.  18
+   22.  18
+   23.  18
+   24.  18
+   25.  18
+   26.  18
+   27.  18
+   28.  18
+   29.   9
+   30.   9
+   31.  19
+   32.  19
+   33.  19
+   34.  18
+   35.  32
+   36.  21
+   37.  21
+   38.  23
+   39.  23
+   40.  21
+   41.  20
+   42.  25
+   43.  23
+   44.   9
+   45.  16
+   46.  21
+   47.  18
+   48.  27
+   49.  23
+   50.  25
+   51.  21
+   52.  25
+   53.  23
+   54.  21
+   55.  19
+   56.  23
+   57.  21
+   58.  32
+   59.  21
+   60.  21
+   61.  20
+   62.   9
+   63.   9
+   64.   9
+   65.  14
+   66.  18
+   67.  11
+   68.  17
+   69.  17
+   70.  16
+   71.  17
+   72.  17
+   73.  10
+   74.  17
+   75.  18
+   76.   7
+   77.   7
+   78.  16
+   79.   7
+   80.  27
+   81.  18
+   82.  17
+   83.  17
+   84.  17
+   85.  11
+   86.  16
+   87.   9
+   88.  18
+   89.  15
+   90.  23
+   91.  14
+   92.  15
+   93.  15
+   94.  11
+   95.   8
+   96.  11
+   97.  19
+   98.  21
+   99.  21
+  100.  23
+  101.  21
+  102.  23
+  103.  25
+  104.  23
+  105.  17
+  106.  17
+  107.  17
+  108.  17
+  109.  17
+  110.  17
+  111.  16
+  112.  17
+  113.  17
+  114.  17
+  115.  17
+  116.   9
+  117.   9
+  118.   9
+  119.   9
+  120.  18
+  121.  17
+  122.  17
+  123.  17
+  124.  17
+  125.  17
+  126.  18
+  127.  18
+  128.  18
+  129.  18
+  130.  18
+  131.  13
+  132.  18
+  133.  18
+  134.  18
+  135.  11
+  136.  17
+  137.  20
+  138.  24
+  139.  24
+  140.  32
+  141.  11
+  142.  11
+  143.  18
+  144.  32
+  145.  25
+  146.  23
+  147.  18
+  148.  18
+  149.  18
+  150.  18
+  151.  18
+  152.  16
+  153.  23
+  154.  26
+  155.  18
+  156.   7
+  157.  12
+  158.  12
+  159.  25
+  160.  28
+  161.  20
+  162.  20
+  163.  11
+  164.  19
+  165.  17
+  166.  18
+  167.  18
+  168.  20
+  169.  18
+  170.  18
+  171.  32
+  172.  21
+  173.  21
+  174.  25
+  175.  32
+  176.  30
+  177.  18
+  178.  32
+  179.  11
+  180.  11
+  181.   7
+  182.   7
+  183.  18
+  184.  16
+  185.  15
+  186.  21
+  187.   5
+  188.  18
+  189.  11
+  190.  11
+  191.  16
+  192.  16
+  193.  18
+  194.   9
+  195.   7
+  196.  11
+  197.  32
+  198.  21
+  199.  21
+  200.  21
+  201.  21
+  202.  21
+  203.   9
+  204.   9
+  205.   9
+  206.   9
+  207.  25
+  208.  25
+  209.  25
+  210.  23
+  211.  23
+  212.  23
+  213.   9
+  214.  11
+  215.   9
+  216.  11
+  217.  11
+  218.  11
+  219.  11
+  220.  11
+  221.  11
+  222.  11
+  223.  11
+  224.  18
+  225.   7
+  226.  21
+  227.  16
+  228.  20
+  229.  15
+  230.   8
+  231.  23
+  232.  18
+  233.  21
+  234.  15
+  235.  21
+  236.  18
+  237.  19
+  238.  19
+  239.  11
+  240.  11
+  241.  11
+  242.  27
+  243.  27
+  244.  27
+  245.  18
+  246.  25
+  247.  17
+  248.   9
+  249.  21
+  250.  16
+  251.  23
+  252.  16
+  253.  23
+  254.  16
+  255.  18
+  256.  18
+  257.  11
+  258.  21
+  259.  17
+  260.  21
+  261.  17
+  262.  23
+  263.  20
+  264.  23
+  265.  21
+  266.  17
+  267.  21
+  268.  17
+  269.  18
+  270.   7
+  271.  18
+  272.   9
+  273.  18
+  274.  11
+  275.  23
+  276.  18
+  277.  23
+  278.  18
+  279.  25
+  280.  17
+  281.  23
+  282.  11
+  283.  23
+  284.  11
+  285.  21
+  286.  16
+  287.  19
+  288.   9
+  289.  19
+  290.  12
+  291.  23
+  292.  18
+  293.  23
+  294.  18
+  295.  20
+  296.  15
+  297.  20
+  298.  15
+  299.  18
+  300.  25
+  301.  26
+  302.  19
+  303.  18
+  304.  14
+  305.  20
+  306.  13
+  307.  21
+  308.  18
+  309.  16
+  310.  12
+  311.  35
+  312.  32
+  313.  16
+  314.  32
+  315.  16
+  316.  32
+  317.  16
+  318.  16
+  319.  31
+  320.  23
+  321.  19
+  322.  19
+  323.  19
+  324.  19
+  325.  19
+  326.  23
+  327.  20
+  328.  23
+  329.  23
+  330.  23
+  331.  23
+  332.  23
+  333.  23
+  334.  23
+  335.  23
+  336.  23
+  337.  23
+  338.  23
+  339.  23
+  340.  23
+  341.  23
+  342.  23
+  343.  23
+  344.  23
+  345.  23
+  346.  23
+  347.  23
+  348.  23
+  349.  23
+  350.  23
+  351.  23
+  352.  23
+  353.  23
+  354.  23
+  355.  23
+  356.  23
+  357.  23
+  358.  23
+  359.  23
+  360.  23
+  361.  23
+  362.  23
+  363.  23
+  364.  23
+  365.  23
+  366.  23
+  367.  23
+  368.  23
+  369.  23
+  370.  23
+  371.  23
+  372.  23
+  373.  23
+  374.  19
+  375.  32
+  376.  32
+  377.  32
+  378.  32
+  379.  32
+  380.  19
+  381.  19
+  382.  19
+  383.  33
+  384.  34
+  385.  29
+  386.  24
+  387.  24
+  388.  17
+  389.  21
+  390.  19
+  391.  16
+  392.  16
+  393.  24
+  394.  24
+  395.  14
+  396.  19
+  397.   6
+  398.  11
+  399.  28
+  400.  10
+  401.  19
+  402.  11
+  403.  11
+  404.  19
+  405.  11
+  406.  21
+  407.  17
+  408.  23
+  409.  16
+  410.  23
+  411.  16
+  412.  21
+  413.  17
+  414.  21
+  415.  17
+  416.  21
+  417.  17
+  418.  25
+  419.  17
+  420.  25
+  421.  17
+  422.  25
+  423.  18
+  424.  23
+  425.  18
+  426.  23
+  427.  18
+  428.   9
+  429.   9
+  430.   9
+  431.   9
+  432.   9
+  433.   9
+  434.   9
+  435.   7
+  436.  16
+  437.   7
+  438.  21
+  439.  16
+  440.  16
+  441.  18
+  442.   7
+  443.  23
+  444.  18
+  445.  23
+  446.  18
+  447.  25
+  448.  17
+  449.  25
+  450.  17
+  451.  23
+  452.  11
+  453.  21
+  454.  16
+  455.  20
+  456.   9
+  457.  23
+  458.  18
+  459.  23
+  460.  18
+  461.  23
+  462.  18
+  463.  23
+  464.  18
+  465.  32
+  466.  23
+  467.  21
+  468.  15
+  469.   7
+  470.  21
+  471.  17
+  472.  32
+  473.  28
+  474.  25
+  475.  20
+  476.   9
+  477.  32
+  478.  23
+  479.  32
+  480.  23
+  481.  32
+  482.  23
+  483.  21
+  484.  15
+  485.   7
+  486.  11
+  487.  18
+  488.  19
+  489.  27
+  490.  27
+  491.  27
+  492.  27
+  493.  11
+  494.  11
+  495.  11
+  496.  11
+  497.  21
+  498.  25
+  499.  27
+  500.  12
+  501.  25
+  502.  26
+  503.  24
+  504.   7
+  505.  21
+  506.  21
+  507.  21
+  508.  21
+  509.  20
+  510.  23
+  511.   9
+  512.  21
+  513.  21
+  514.  27
+  515.  23
+  516.  21
+  517.  25
+  518.  23
+  519.  21
+  520.  20
+  521.  19
+  522.  21
+  523.  21
+  524.  27
+  525.  24
+  526.   9
+  527.  21
+  528.  19
+  529.  14
+  530.  18
+  531.   7
+  532.  18
+  533.  18
+  534.  16
+  535.  14
+  536.  18
+  537.  17
+  538.   7
+  539.  16
+  540.  16
+  541.  18
+  542.  15
+  543.  14
+  544.  17
+  545.  17
+  546.  14
+  547.  18
+  548.  17
+  549.  23
+  550.  24
+  551.   7
+  552.  18
+  553.  17
+  554.  18
+  555.  24
+  556.  21
+  557.  28
+  558.  17
+  559.  23
+  560.  21
+  561.   9
+  562.   9
+  563.  16
+  564.  34
+  565.  32
+  566.  27
+  567.  19
+  568.  20
+  569.  23
+  570.  21
+  571.  20
+  572.  21
+  573.  17
+  574.  22
+  575.  21
+  576.  30
+  577.  19
+  578.  23
+  579.  23
+  580.  19
+  581.  21
+  582.  27
+  583.  23
+  584.  25
+  585.  23
+  586.  21
+  587.  23
+  588.  19
+  589.  20
+  590.  24
+  591.  21
+  592.  24
+  593.  21
+  594.  29
+  595.  30
+  596.  25
+  597.  28
+  598.  21
+  599.  23
+  600.  32
+  601.  23
+  602.  17
+  603.  17
+  604.  16
+  605.  12
+  606.  19
+  607.  17
+  608.  22
+  609.  15
+  610.  18
+  611.  18
+  612.  14
+  613.  19
+  614.  22
+  615.  18
+  616.  17
+  617.  17
+  618.  17
+  619.  16
+  620.  15
+  621.  15
+  622.  25
+  623.  14
+  624.  18
+  625.  17
+  626.  26
+  627.  26
+  628.  19
+  629.  23
+  630.  17
+  631.  16
+  632.  24
+  633.  17
+  634.  17
+  635.  18
+  636.  12
+  637.  16
+  638.  16
+  639.   7
+  640.   9
+  641.   7
+  642.  28
+  643.  25
+  644.  18
+  645.  14
+  646.  15
+  647.  18
+  648.  16
+  649.  13
+  650.  32
+  651.  34
+  652.  22
+  653.  11
+  654.  11
+  655.  11
+  656.  11
+  657.  11
+  658.  11
+  659.  11
+  660.  11
+  661.  11
+  662.  11
+  663.  11
+  664.  11
+  665.  11
+  666.  12
+  667.  11
+  668.   7
+  669.  11
+  670.  11
+  671.   9
+  672.  18
+  673.  17
+  674.  13
+  675.  16
+  676.  19
+  677.   7
+  678.  12
+  679.  19
+  680.  19
+  681.   7
+  682.  16
+  683.  15
+  684.  15
+  685.  19
+  686.  19
+  687.   7
+  688.  11
+  689.  18
+  690.  17
+  691.  18
+  692.  17
+  693.  15
+  694.  15
+  695.  18
+  696.  16
+  697.  22
+  698.  21
+  699.  15
+  700.  15
+  701.  15
+  702.   8
+  703.  13
+  704.  28
+  705.   7
+  706.  16
+  707.  16
+  708.  15
+  709.  15
+  710.  17
+  711.  22
+  712.  22
+  713.  22
+  714.  22
+  715.  18
+  716.  18
+  717.  18
+  718.  17
+  719.  13
+  720.  16
+  721.  19
+  722.   9
+  723.  13
+  724.  19
+  725.   9
+  726.  16
+  727.  15
+  728.  15
+  729.  19
+  730.  11
+  731.  18
+  732.  18
+  733.  17
+  734.  15
+  735.  18
+  736.  16
+  737.  22
+  738.  21
+  739.   7
+  740.  17
+  741.  15
+  742.  17
+  743.  18
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.  10
+  749.  10
+  750.  11
+  751.  13
+  752.   7
+  753.   6
+  754.   8
+  755.   6
+  756.   6
+  757.   7
+  758.   6
+  759.   7
+  760.   5
+  761.  17
+  762.  17
+  763.  17
+  764.  17
+  765.  17
+  766.  17
+  767.  17
+  768.  17
+  769.  17
+  770.  17
+  771.  17
+  772.  10
+  773.  17
+  774.  24
+  775.  24
+  776.   9
+  777.  24
+  778.  17
+  779.  17
+  780.  17
+  781.  24
+  782.  24
+  783.  24
+  784.  24
+  785.  24
+  786.   7
+  787.  24
+  788.  24
+  789.  24
+  790.  24
+  791.  24
+  792.  24
+  793.  24
+  794.  24
+  795.  20
+  796.  24
+  797.  24
+  798.  24
+  799.  23
+  800.  23
+  801.   8
+  802.   8
+  803.  24
+  804.  24
+  805.  24
+  806.  24
+  807.  18
+  808.  17
+  809.  17
+  810.  17
+  811.  16
+  812.  16
+  813.  26
+  814.  30
+  815.  13
+  816.  16
+  817.  26
+  818.  30
+  819.  13
+  820.  16
+  821.  20
+  822.  19
+  823.  24
+  824.  24
+  825.  24
+  826.  24
+  827.  24
+  828.  24
+  829.  24
+  830.  24
+  831.  24
+  832.  24
+  833.  24
+  834.  24
+  835.  24
+  836.  24
+  837.  24
+  838.  24
+  839.   7
+  840.   7
+  841.   7
+  842.   7
+  843.   7
+  844.  24
+  845.  24
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.  18
+  863.  32
+  864.  24
+  865.  24
+  866.  24
+  867.  24
+  868.  24
+  869.  24
+  870.  24
+  871.  24
+  872.  24
+  873.  24
+  874.  24
+  875.  24
+  876.  24
+  877.  24
+  878.  24
+  879.  24
+  880.  24
+  881.  24
+  882.  24
+  883.  24
+  884.  24
+  885.  24
+  886.  24
+  887.  24
+  888.  24
+  889.  24
+  890.  24
+  891.  24
+  892.  10
+  893.  10
+  894.  24
+  895.  20
+  896.  13
+  897.   7
+  898.   7
+  899.   7
+  900.   7
+  901.  14
+  902.  14
+  903.   7
+  904.   7
+  905.  20
+  906.  19
+  907.   8
+  908.   8
+  909.   7
+  910.   7
+  911.  23
+  912.  23
+  913.   8
+  914.   8
+  915.   9
+  916.  12
+  917.  23
+  918.  23
+  919.   8
+  920.   8
+  921.  23
+  922.  23
+  923.   8
+  924.   8
+  925.  18
+  926.  17
+  927.  17
+  928.  17
+  929.  18
+  930.  17
+  931.  17
+  932.  17
+  933.  18
+  934.  17
+  935.  17
+  936.  17
+  937.  11
+  938.  11
+  939.  11
+  940.  11
+  941.  16
+  942.  16
+  943.  16
+  944.  16
+  945.  26
+  946.  26
+  947.  17
+  948.  17
+  949.  26
+  950.  26
+  951.  17
+  952.  17
+  953.  35
+  954.  35
+  955.  27
+  956.  27
+  957.  35
+  958.  35
+  959.  27
+  960.  27
+  961.  19
+  962.  19
+  963.  19
+  964.  19
+  965.  19
+  966.  19
+  967.  19
+  968.  19
+  969.  17
+  970.  14
+  971.  17
+  972.  13
+  973.  17
+  974.  14
+  975.  17
+  976.  13
+  977.  25
+  978.  25
+  979.   9
+  980.   8
+  981.  19
+  982.  19
+  983.   9
+  984.   8
+  985.  19
+  986.  19
+  987.  13
+  988.  13
+  989.  16
+  990.  16
+  991.   7
+  992.   7
+  993.  11
+  994.  11
+  995.  13
+  996.  13
+  997.  17
+  998.  17
+  999.   8
+ 1000.   8
+ 1001.   9
+ 1002.  12
+ 1003.  14
+ 1004.  13
+ 1005.  14
+ 1006.  14
+ 1007.  20
+ 1008.  19
+ 1009.  20
+ 1010.  19
+ 1011.   8
+ 1012.   8
+ 1013.  17
+ 1014.  19
+ 1015.  17
+ 1016.  19
+ 1017.  17
+ 1018.  19
+ 1019.  17
+ 1020.  19
+ 1021.  24
+ 1022.  24
+ 1023.   6
+ 1024.   6
+ 1025.  24
+ 1026.  24
+ 1027.  24
+ 1028.   5
+ 1029.   7
+ 1030.  24
+ 1031.  24
+ 1032.   7
+ 1033.   8
+ 1034.  24
+ 1035.  24
+ 1036.  24
+ 1037.   7
+ 1038.   7
+ 1039.   7
+ 1040.   7
+ 1041.   7
+ 1042.   7
+ 1043.  24
+ 1044.   6
+ 1045.   6
+ 1046.  24
+ 1047.  24
+ 1048.  24
+ 1049.  24
+ 1050.  24
+ 1051.  24
+ 1052.  24
+ 1053.  24
+ 1054.  24
+ 1055.  24
+ 1056.  24
+ 1057.  24
+ 1058.  24
+ 1059.  24
+ 1060.  24
+ 1061.  24
+ 1062.  24
+ 1063.  24
+ 1064.  24
+ 1065.  24
+ 1066.  24
+ 1067.  24
+ 1068.  24
+ 1069.  24
+ 1070.  24
+ 1071.  24
+ 1072.  24
+ 1073.  24
+ 1074.  24
+ 1075.  24
+ 1076.  24
+ 1077.  24
+ 1078.  24
+ 1079.  24
+ 1080.  24
+ 1081.  24
+ 1082.  24
+ 1083.  24
+ 1084.  24
+ 1085.  24
+ 1086.  24
+ 1087.  24
+ 1088.  24
+ 1089.  24
+ 1090.  24
+ 1091.  24
+ 1092.  24
+ 1093.  24
+ 1094.  24
+ 1095.  24
+ 1096.  24
+ 1097.  24
+ 1098.  24
+ 1099.  24
+ 1100.  10
+ 1101.  10
+ 1102.  10
+ 1103.  24
+ 1104.  24
+ 1105.  24
+ 1106.  24
+ 1107.  24
+ 1108.  24
+ 1109.  24
+ 1110.  24
+ 1111.  24
+ 1112.  24
+ 1113.  24
+ 1114.  24
+ 1115.  24
+ 1116.  24
+ 1117.  24
+ 1118.  24
+ 1119.  24
+ 1120.  24
+ 1121.  24
+ 1122.  24
+ 1123.  24
+ 1124.  24
+ 1125.  24
+ 1126.  24
+ 1127.   4
+ 1128.  32
+ 1129.  64
+ 1130.  27
+ 1131.  21
+ 1132.  27
+ 1133.  21
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.  16
+ 1151.  27
+ 1152.  27
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.   7
+ 1188.  21
+ 1189.  17
+ 1190.  21
+ 1191.  17
+ 1192.  21
+ 1193.  17
+ 1194.  21
+ 1195.  17
+ 1196.  21
+ 1197.  17
+ 1198.  21
+ 1199.  17
+ 1200.  21
+ 1201.  17
+ 1202.  21
+ 1203.  17
+ 1204.  21
+ 1205.  17
+ 1206.  21
+ 1207.  17
+ 1208.  21
+ 1209.  17
+ 1210.  21
+ 1211.  17
+ 1212.  21
+ 1213.  17
+ 1214.  21
+ 1215.  17
+ 1216.  21
+ 1217.  17
+ 1218.  21
+ 1219.  17
+ 1220.  21
+ 1221.  17
+ 1222.  21
+ 1223.  17
+ 1224.  21
+ 1225.  17
+ 1226.  21
+ 1227.  17
+ 1228.   9
+ 1229.   7
+ 1230.   9
+ 1231.   7
+ 1232.  25
+ 1233.  17
+ 1234.  25
+ 1235.  17
+ 1236.  25
+ 1237.  17
+ 1238.  25
+ 1239.  17
+ 1240.  25
+ 1241.  17
+ 1242.  25
+ 1243.  17
+ 1244.  25
+ 1245.  17
+ 1246.  27
+ 1247.  21
+ 1248.  27
+ 1249.  21
+ 1250.  27
+ 1251.  21
+ 1252.  27
+ 1253.  21
+ 1254.  27
+ 1255.  21
+ 1256.  23
+ 1257.  18
+ 1258.  23
+ 1259.  18
+ 1260.  27
+ 1261.  21
+ 1262.  27
+ 1263.  21
+ 1264.  27
+ 1265.  21
+ 1266.  27
+ 1267.  21
+ 1268.  27
+ 1269.  21
+ 1270.  21
+ 1271.  15
+ 1272.  21
+ 1273.  15
+ 1274.  21
+ 1275.  15
+ 1276.  21
+ 1277.  17
+ 1278.   9
+ 1279.   7
+ 1280.  25
+ 1281.  17
+ 1282.  23
+ 1283.  18
+ 1284.  23
+ 1285.  18
+ 1286.  23
+ 1287.  18
+ 1288.  23
+ 1289.  18
+ 1290.  23
+ 1291.  18
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.  17
+ 1297.  12
+ 1298.  30
+ 1299.  21
+ 1300.  19
+ 1301.  14
+ 1302.  19
+ 1303.  14
+ 1304.  23
+ 1305.  18
+ 1306.  18
+ 1307.  16
+ 1308.  18
+ 1309.  16
+ 1310.  21
+ 1311.  16
+ 1312.  21
+ 1313.  17
+ 1314.  21
+ 1315.  17
+ 1316.  24
+ 1317.  18
+ 1318.  25
+ 1319.  18
+
+
+	DevRec 12: ppem =  33, maxWid =  66
+    0.  25
+    1.   0
+    2.   9
+    3.   9
+    4.  11
+    5.  12
+    6.  18
+    7.  18
+    8.  29
+    9.  22
+   10.   6
+   11.  11
+   12.  11
+   13.  13
+   14.  19
+   15.   9
+   16.  11
+   17.   9
+   18.   9
+   19.  18
+   20.  18
+   21.  18
+   22.  18
+   23.  18
+   24.  18
+   25.  18
+   26.  18
+   27.  18
+   28.  18
+   29.   9
+   30.   9
+   31.  19
+   32.  19
+   33.  19
+   34.  18
+   35.  34
+   36.  22
+   37.  22
+   38.  24
+   39.  24
+   40.  22
+   41.  20
+   42.  26
+   43.  24
+   44.   9
+   45.  17
+   46.  22
+   47.  18
+   48.  27
+   49.  24
+   50.  26
+   51.  22
+   52.  26
+   53.  24
+   54.  22
+   55.  21
+   56.  24
+   57.  22
+   58.  34
+   59.  21
+   60.  21
+   61.  20
+   62.   9
+   63.   9
+   64.   9
+   65.  14
+   66.  18
+   67.  11
+   68.  17
+   69.  18
+   70.  17
+   71.  18
+   72.  17
+   73.  10
+   74.  18
+   75.  18
+   76.   7
+   77.   7
+   78.  16
+   79.   7
+   80.  27
+   81.  18
+   82.  17
+   83.  18
+   84.  18
+   85.  11
+   86.  17
+   87.   9
+   88.  18
+   89.  15
+   90.  23
+   91.  15
+   92.  15
+   93.  16
+   94.  11
+   95.   8
+   96.  11
+   97.  19
+   98.  22
+   99.  22
+  100.  24
+  101.  22
+  102.  24
+  103.  26
+  104.  24
+  105.  17
+  106.  17
+  107.  17
+  108.  17
+  109.  17
+  110.  17
+  111.  17
+  112.  17
+  113.  17
+  114.  17
+  115.  17
+  116.   9
+  117.   9
+  118.   9
+  119.   9
+  120.  18
+  121.  17
+  122.  17
+  123.  17
+  124.  17
+  125.  17
+  126.  18
+  127.  18
+  128.  18
+  129.  18
+  130.  18
+  131.  13
+  132.  18
+  133.  18
+  134.  18
+  135.  12
+  136.  18
+  137.  20
+  138.  24
+  139.  24
+  140.  33
+  141.  11
+  142.  11
+  143.  18
+  144.  33
+  145.  26
+  146.  24
+  147.  18
+  148.  18
+  149.  18
+  150.  18
+  151.  19
+  152.  16
+  153.  24
+  154.  27
+  155.  18
+  156.   7
+  157.  12
+  158.  12
+  159.  25
+  160.  29
+  161.  20
+  162.  20
+  163.  11
+  164.  19
+  165.  19
+  166.  18
+  167.  18
+  168.  20
+  169.  18
+  170.  18
+  171.  33
+  172.  22
+  173.  22
+  174.  26
+  175.  33
+  176.  31
+  177.  18
+  178.  33
+  179.  11
+  180.  11
+  181.   7
+  182.   7
+  183.  18
+  184.  16
+  185.  15
+  186.  21
+  187.   6
+  188.  18
+  189.  11
+  190.  11
+  191.  17
+  192.  17
+  193.  18
+  194.   9
+  195.   7
+  196.  11
+  197.  32
+  198.  22
+  199.  22
+  200.  22
+  201.  22
+  202.  22
+  203.   9
+  204.   9
+  205.   9
+  206.   9
+  207.  26
+  208.  26
+  209.  26
+  210.  24
+  211.  24
+  212.  24
+  213.   9
+  214.  11
+  215.   9
+  216.  11
+  217.  11
+  218.  11
+  219.  11
+  220.  11
+  221.  11
+  222.  11
+  223.  11
+  224.  18
+  225.   7
+  226.  22
+  227.  17
+  228.  20
+  229.  16
+  230.   8
+  231.  24
+  232.  18
+  233.  21
+  234.  15
+  235.  22
+  236.  18
+  237.  19
+  238.  19
+  239.  11
+  240.  11
+  241.  11
+  242.  28
+  243.  28
+  244.  28
+  245.  18
+  246.  26
+  247.  18
+  248.   9
+  249.  22
+  250.  17
+  251.  24
+  252.  17
+  253.  24
+  254.  17
+  255.  18
+  256.  18
+  257.  11
+  258.  22
+  259.  17
+  260.  22
+  261.  17
+  262.  24
+  263.  20
+  264.  24
+  265.  22
+  266.  17
+  267.  22
+  268.  17
+  269.  18
+  270.   7
+  271.  18
+  272.  10
+  273.  18
+  274.  11
+  275.  24
+  276.  18
+  277.  24
+  278.  18
+  279.  26
+  280.  17
+  281.  24
+  282.  11
+  283.  24
+  284.  11
+  285.  22
+  286.  17
+  287.  21
+  288.   9
+  289.  21
+  290.  12
+  291.  24
+  292.  18
+  293.  24
+  294.  18
+  295.  20
+  296.  16
+  297.  20
+  298.  16
+  299.  18
+  300.  26
+  301.  26
+  302.  19
+  303.  18
+  304.  14
+  305.  20
+  306.  13
+  307.  21
+  308.  18
+  309.  17
+  310.  12
+  311.  36
+  312.  33
+  313.  17
+  314.  33
+  315.  17
+  316.  33
+  317.  17
+  318.  17
+  319.  32
+  320.  24
+  321.  19
+  322.  20
+  323.  19
+  324.  20
+  325.  20
+  326.  23
+  327.  21
+  328.  23
+  329.  23
+  330.  23
+  331.  23
+  332.  23
+  333.  23
+  334.  23
+  335.  23
+  336.  23
+  337.  23
+  338.  23
+  339.  23
+  340.  23
+  341.  23
+  342.  23
+  343.  23
+  344.  23
+  345.  23
+  346.  23
+  347.  23
+  348.  23
+  349.  23
+  350.  23
+  351.  23
+  352.  23
+  353.  23
+  354.  23
+  355.  23
+  356.  23
+  357.  23
+  358.  23
+  359.  23
+  360.  23
+  361.  23
+  362.  23
+  363.  23
+  364.  23
+  365.  23
+  366.  23
+  367.  23
+  368.  23
+  369.  23
+  370.  23
+  371.  23
+  372.  23
+  373.  24
+  374.  20
+  375.  33
+  376.  33
+  377.  33
+  378.  33
+  379.  33
+  380.  20
+  381.  20
+  382.  20
+  383.  34
+  384.  35
+  385.  30
+  386.  25
+  387.  25
+  388.  18
+  389.  22
+  390.  20
+  391.  17
+  392.  17
+  393.  25
+  394.  24
+  395.  15
+  396.  20
+  397.   6
+  398.  12
+  399.  29
+  400.  11
+  401.  20
+  402.  12
+  403.  12
+  404.  20
+  405.  12
+  406.  22
+  407.  17
+  408.  24
+  409.  17
+  410.  24
+  411.  17
+  412.  22
+  413.  17
+  414.  22
+  415.  17
+  416.  22
+  417.  17
+  418.  26
+  419.  18
+  420.  26
+  421.  18
+  422.  26
+  423.  18
+  424.  24
+  425.  18
+  426.  24
+  427.  18
+  428.   9
+  429.   9
+  430.   9
+  431.   9
+  432.   9
+  433.   9
+  434.   9
+  435.   7
+  436.  17
+  437.   7
+  438.  22
+  439.  16
+  440.  17
+  441.  18
+  442.   7
+  443.  24
+  444.  18
+  445.  24
+  446.  18
+  447.  26
+  448.  17
+  449.  26
+  450.  17
+  451.  24
+  452.  11
+  453.  22
+  454.  17
+  455.  20
+  456.   9
+  457.  24
+  458.  18
+  459.  24
+  460.  18
+  461.  24
+  462.  18
+  463.  24
+  464.  18
+  465.  34
+  466.  23
+  467.  21
+  468.  15
+  469.   7
+  470.  22
+  471.  17
+  472.  33
+  473.  29
+  474.  26
+  475.  20
+  476.   9
+  477.  34
+  478.  23
+  479.  34
+  480.  23
+  481.  34
+  482.  23
+  483.  21
+  484.  15
+  485.   7
+  486.  11
+  487.  18
+  488.  20
+  489.  28
+  490.  28
+  491.  28
+  492.  28
+  493.  11
+  494.  11
+  495.  11
+  496.  11
+  497.  22
+  498.  26
+  499.  28
+  500.  13
+  501.  26
+  502.  27
+  503.  25
+  504.   7
+  505.  22
+  506.  22
+  507.  22
+  508.  22
+  509.  20
+  510.  24
+  511.   9
+  512.  22
+  513.  22
+  514.  27
+  515.  24
+  516.  21
+  517.  26
+  518.  24
+  519.  22
+  520.  20
+  521.  21
+  522.  21
+  523.  21
+  524.  27
+  525.  25
+  526.   9
+  527.  21
+  528.  19
+  529.  14
+  530.  18
+  531.   7
+  532.  18
+  533.  19
+  534.  17
+  535.  15
+  536.  18
+  537.  17
+  538.   7
+  539.  17
+  540.  17
+  541.  19
+  542.  15
+  543.  15
+  544.  17
+  545.  18
+  546.  15
+  547.  18
+  548.  17
+  549.  23
+  550.  25
+  551.   7
+  552.  18
+  553.  17
+  554.  18
+  555.  25
+  556.  22
+  557.  29
+  558.  18
+  559.  24
+  560.  22
+  561.   9
+  562.   9
+  563.  17
+  564.  35
+  565.  33
+  566.  28
+  567.  19
+  568.  21
+  569.  24
+  570.  22
+  571.  21
+  572.  22
+  573.  18
+  574.  22
+  575.  22
+  576.  30
+  577.  20
+  578.  24
+  579.  24
+  580.  19
+  581.  22
+  582.  27
+  583.  24
+  584.  26
+  585.  24
+  586.  22
+  587.  24
+  588.  21
+  589.  21
+  590.  25
+  591.  21
+  592.  24
+  593.  22
+  594.  30
+  595.  31
+  596.  26
+  597.  29
+  598.  22
+  599.  24
+  600.  33
+  601.  24
+  602.  17
+  603.  18
+  604.  17
+  605.  12
+  606.  19
+  607.  17
+  608.  21
+  609.  15
+  610.  18
+  611.  18
+  612.  14
+  613.  19
+  614.  23
+  615.  18
+  616.  17
+  617.  18
+  618.  18
+  619.  17
+  620.  15
+  621.  15
+  622.  26
+  623.  15
+  624.  19
+  625.  17
+  626.  26
+  627.  27
+  628.  20
+  629.  24
+  630.  18
+  631.  17
+  632.  25
+  633.  18
+  634.  17
+  635.  18
+  636.  12
+  637.  17
+  638.  17
+  639.   7
+  640.   9
+  641.   7
+  642.  29
+  643.  26
+  644.  18
+  645.  14
+  646.  15
+  647.  18
+  648.  16
+  649.  14
+  650.  33
+  651.  35
+  652.  23
+  653.  11
+  654.  11
+  655.  11
+  656.  11
+  657.  11
+  658.  11
+  659.  11
+  660.  11
+  661.  11
+  662.  11
+  663.  11
+  664.  11
+  665.  11
+  666.  13
+  667.  11
+  668.   7
+  669.  11
+  670.  11
+  671.   9
+  672.  19
+  673.  18
+  674.  13
+  675.  17
+  676.  20
+  677.   7
+  678.  13
+  679.  20
+  680.  19
+  681.   7
+  682.  17
+  683.  15
+  684.  15
+  685.  20
+  686.  20
+  687.   7
+  688.  12
+  689.  19
+  690.  17
+  691.  19
+  692.  18
+  693.  15
+  694.  16
+  695.  18
+  696.  17
+  697.  23
+  698.  21
+  699.  15
+  700.  15
+  701.  15
+  702.   8
+  703.  14
+  704.  28
+  705.   7
+  706.  17
+  707.  17
+  708.  15
+  709.  15
+  710.  18
+  711.  23
+  712.  23
+  713.  23
+  714.  23
+  715.  19
+  716.  19
+  717.  19
+  718.  18
+  719.  13
+  720.  17
+  721.  20
+  722.   9
+  723.  14
+  724.  19
+  725.   9
+  726.  17
+  727.  15
+  728.  15
+  729.  20
+  730.  12
+  731.  19
+  732.  19
+  733.  18
+  734.  16
+  735.  18
+  736.  17
+  737.  23
+  738.  21
+  739.   7
+  740.  18
+  741.  15
+  742.  18
+  743.  19
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.  11
+  749.  11
+  750.  12
+  751.  14
+  752.   7
+  753.   7
+  754.   8
+  755.   7
+  756.   7
+  757.   7
+  758.   7
+  759.   7
+  760.   5
+  761.  17
+  762.  17
+  763.  17
+  764.  17
+  765.  17
+  766.  17
+  767.  17
+  768.  17
+  769.  17
+  770.  17
+  771.  17
+  772.  11
+  773.  17
+  774.  25
+  775.  25
+  776.   9
+  777.  25
+  778.  17
+  779.  17
+  780.  17
+  781.  25
+  782.  25
+  783.  25
+  784.  25
+  785.  25
+  786.   7
+  787.  25
+  788.  25
+  789.  25
+  790.  25
+  791.  25
+  792.  25
+  793.  25
+  794.  25
+  795.  21
+  796.  25
+  797.  25
+  798.  25
+  799.  24
+  800.  24
+  801.   8
+  802.   8
+  803.  25
+  804.  25
+  805.  25
+  806.  25
+  807.  19
+  808.  17
+  809.  17
+  810.  17
+  811.  16
+  812.  16
+  813.  27
+  814.  31
+  815.  13
+  816.  17
+  817.  27
+  818.  31
+  819.  13
+  820.  17
+  821.  21
+  822.  19
+  823.  25
+  824.  25
+  825.  25
+  826.  25
+  827.  25
+  828.  25
+  829.  25
+  830.  25
+  831.  25
+  832.  25
+  833.  25
+  834.  25
+  835.  25
+  836.  25
+  837.  25
+  838.  25
+  839.   7
+  840.   7
+  841.   7
+  842.   7
+  843.   7
+  844.  25
+  845.  25
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.  18
+  863.  33
+  864.  25
+  865.  25
+  866.  25
+  867.  25
+  868.  25
+  869.  25
+  870.  25
+  871.  25
+  872.  25
+  873.  25
+  874.  25
+  875.  25
+  876.  25
+  877.  25
+  878.  25
+  879.  25
+  880.  25
+  881.  25
+  882.  25
+  883.  25
+  884.  25
+  885.  25
+  886.  25
+  887.  25
+  888.  25
+  889.  25
+  890.  25
+  891.  25
+  892.  11
+  893.  11
+  894.  25
+  895.  20
+  896.  14
+  897.   7
+  898.   8
+  899.   7
+  900.   8
+  901.  14
+  902.  14
+  903.   7
+  904.   8
+  905.  21
+  906.  19
+  907.   8
+  908.   8
+  909.   7
+  910.   8
+  911.  24
+  912.  24
+  913.   8
+  914.   8
+  915.   9
+  916.  12
+  917.  24
+  918.  24
+  919.   8
+  920.   8
+  921.  24
+  922.  24
+  923.   8
+  924.   8
+  925.  19
+  926.  17
+  927.  17
+  928.  17
+  929.  19
+  930.  17
+  931.  17
+  932.  17
+  933.  19
+  934.  17
+  935.  17
+  936.  17
+  937.  11
+  938.  11
+  939.  11
+  940.  11
+  941.  16
+  942.  16
+  943.  16
+  944.  16
+  945.  27
+  946.  27
+  947.  18
+  948.  18
+  949.  27
+  950.  27
+  951.  18
+  952.  18
+  953.  36
+  954.  36
+  955.  28
+  956.  28
+  957.  36
+  958.  36
+  959.  28
+  960.  28
+  961.  19
+  962.  19
+  963.  19
+  964.  19
+  965.  19
+  966.  19
+  967.  19
+  968.  19
+  969.  18
+  970.  15
+  971.  17
+  972.  13
+  973.  18
+  974.  15
+  975.  17
+  976.  13
+  977.  26
+  978.  26
+  979.   9
+  980.   9
+  981.  19
+  982.  19
+  983.   9
+  984.   9
+  985.  20
+  986.  20
+  987.  13
+  988.  13
+  989.  17
+  990.  17
+  991.   7
+  992.   7
+  993.  11
+  994.  11
+  995.  13
+  996.  13
+  997.  17
+  998.  17
+  999.   8
+ 1000.   8
+ 1001.   9
+ 1002.  12
+ 1003.  15
+ 1004.  13
+ 1005.  14
+ 1006.  14
+ 1007.  21
+ 1008.  19
+ 1009.  21
+ 1010.  19
+ 1011.   8
+ 1012.   8
+ 1013.  18
+ 1014.  20
+ 1015.  18
+ 1016.  20
+ 1017.  18
+ 1018.  20
+ 1019.  18
+ 1020.  20
+ 1021.  25
+ 1022.  25
+ 1023.   7
+ 1024.   7
+ 1025.  25
+ 1026.  25
+ 1027.  25
+ 1028.   5
+ 1029.   7
+ 1030.  25
+ 1031.  25
+ 1032.   7
+ 1033.   8
+ 1034.  25
+ 1035.  25
+ 1036.  25
+ 1037.   7
+ 1038.   7
+ 1039.   7
+ 1040.   7
+ 1041.   7
+ 1042.   7
+ 1043.  25
+ 1044.   7
+ 1045.   7
+ 1046.  25
+ 1047.  25
+ 1048.  25
+ 1049.  25
+ 1050.  25
+ 1051.  25
+ 1052.  25
+ 1053.  25
+ 1054.  25
+ 1055.  25
+ 1056.  25
+ 1057.  25
+ 1058.  25
+ 1059.  25
+ 1060.  25
+ 1061.  25
+ 1062.  25
+ 1063.  25
+ 1064.  25
+ 1065.  25
+ 1066.  25
+ 1067.  25
+ 1068.  25
+ 1069.  25
+ 1070.  25
+ 1071.  25
+ 1072.  25
+ 1073.  25
+ 1074.  25
+ 1075.  25
+ 1076.  25
+ 1077.  25
+ 1078.  25
+ 1079.  25
+ 1080.  25
+ 1081.  25
+ 1082.  25
+ 1083.  25
+ 1084.  25
+ 1085.  25
+ 1086.  25
+ 1087.  25
+ 1088.  25
+ 1089.  25
+ 1090.  25
+ 1091.  25
+ 1092.  25
+ 1093.  25
+ 1094.  25
+ 1095.  25
+ 1096.  25
+ 1097.  25
+ 1098.  25
+ 1099.  25
+ 1100.  11
+ 1101.  11
+ 1102.  11
+ 1103.  25
+ 1104.  25
+ 1105.  25
+ 1106.  25
+ 1107.  25
+ 1108.  25
+ 1109.  25
+ 1110.  25
+ 1111.  25
+ 1112.  25
+ 1113.  25
+ 1114.  25
+ 1115.  25
+ 1116.  25
+ 1117.  25
+ 1118.  25
+ 1119.  25
+ 1120.  25
+ 1121.  25
+ 1122.  25
+ 1123.  25
+ 1124.  25
+ 1125.  25
+ 1126.  25
+ 1127.   4
+ 1128.  33
+ 1129.  66
+ 1130.  28
+ 1131.  22
+ 1132.  28
+ 1133.  22
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.  17
+ 1151.  28
+ 1152.  28
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.   7
+ 1188.  22
+ 1189.  17
+ 1190.  22
+ 1191.  17
+ 1192.  22
+ 1193.  17
+ 1194.  22
+ 1195.  17
+ 1196.  22
+ 1197.  17
+ 1198.  22
+ 1199.  17
+ 1200.  22
+ 1201.  17
+ 1202.  22
+ 1203.  17
+ 1204.  22
+ 1205.  17
+ 1206.  22
+ 1207.  17
+ 1208.  22
+ 1209.  17
+ 1210.  22
+ 1211.  17
+ 1212.  22
+ 1213.  17
+ 1214.  22
+ 1215.  17
+ 1216.  22
+ 1217.  17
+ 1218.  22
+ 1219.  17
+ 1220.  22
+ 1221.  17
+ 1222.  22
+ 1223.  17
+ 1224.  22
+ 1225.  17
+ 1226.  22
+ 1227.  17
+ 1228.   9
+ 1229.   7
+ 1230.   9
+ 1231.   7
+ 1232.  26
+ 1233.  17
+ 1234.  26
+ 1235.  17
+ 1236.  26
+ 1237.  17
+ 1238.  26
+ 1239.  17
+ 1240.  26
+ 1241.  17
+ 1242.  26
+ 1243.  17
+ 1244.  26
+ 1245.  17
+ 1246.  28
+ 1247.  22
+ 1248.  28
+ 1249.  22
+ 1250.  28
+ 1251.  22
+ 1252.  28
+ 1253.  22
+ 1254.  28
+ 1255.  22
+ 1256.  24
+ 1257.  18
+ 1258.  24
+ 1259.  18
+ 1260.  28
+ 1261.  22
+ 1262.  28
+ 1263.  22
+ 1264.  28
+ 1265.  22
+ 1266.  28
+ 1267.  22
+ 1268.  28
+ 1269.  22
+ 1270.  21
+ 1271.  15
+ 1272.  21
+ 1273.  15
+ 1274.  21
+ 1275.  15
+ 1276.  22
+ 1277.  17
+ 1278.   9
+ 1279.   7
+ 1280.  26
+ 1281.  17
+ 1282.  24
+ 1283.  18
+ 1284.  24
+ 1285.  18
+ 1286.  24
+ 1287.  18
+ 1288.  24
+ 1289.  18
+ 1290.  24
+ 1291.  18
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.  18
+ 1297.  12
+ 1298.  30
+ 1299.  22
+ 1300.  19
+ 1301.  14
+ 1302.  19
+ 1303.  14
+ 1304.  24
+ 1305.  18
+ 1306.  18
+ 1307.  17
+ 1308.  18
+ 1309.  17
+ 1310.  22
+ 1311.  17
+ 1312.  22
+ 1313.  17
+ 1314.  22
+ 1315.  17
+ 1316.  25
+ 1317.  18
+ 1318.  26
+ 1319.  18
+
+
+	DevRec 13: ppem =  37, maxWid =  74
+    0.  28
+    1.   0
+    2.  10
+    3.  10
+    4.  11
+    5.  13
+    6.  21
+    7.  21
+    8.  33
+    9.  25
+   10.   7
+   11.  12
+   12.  12
+   13.  14
+   14.  22
+   15.  10
+   16.  12
+   17.  10
+   18.  10
+   19.  21
+   20.  21
+   21.  21
+   22.  21
+   23.  21
+   24.  21
+   25.  21
+   26.  21
+   27.  21
+   28.  21
+   29.  10
+   30.  10
+   31.  22
+   32.  22
+   33.  22
+   34.  21
+   35.  38
+   36.  25
+   37.  25
+   38.  27
+   39.  27
+   40.  25
+   41.  23
+   42.  29
+   43.  27
+   44.   9
+   45.  19
+   46.  25
+   47.  21
+   48.  31
+   49.  27
+   50.  29
+   51.  25
+   52.  29
+   53.  27
+   54.  25
+   55.  23
+   56.  27
+   57.  25
+   58.  38
+   59.  25
+   60.  23
+   61.  23
+   62.  10
+   63.  10
+   64.  10
+   65.  17
+   66.  21
+   67.  12
+   68.  20
+   69.  21
+   70.  19
+   71.  21
+   72.  20
+   73.  10
+   74.  21
+   75.  21
+   76.   7
+   77.   9
+   78.  19
+   79.   7
+   80.  31
+   81.  21
+   82.  21
+   83.  21
+   84.  21
+   85.  12
+   86.  18
+   87.  10
+   88.  21
+   89.  17
+   90.  27
+   91.  17
+   92.  17
+   93.  18
+   94.  12
+   95.   9
+   96.  12
+   97.  22
+   98.  25
+   99.  25
+  100.  27
+  101.  25
+  102.  27
+  103.  29
+  104.  27
+  105.  20
+  106.  20
+  107.  20
+  108.  20
+  109.  20
+  110.  20
+  111.  19
+  112.  20
+  113.  20
+  114.  20
+  115.  20
+  116.   9
+  117.   9
+  118.   9
+  119.   9
+  120.  21
+  121.  21
+  122.  21
+  123.  21
+  124.  21
+  125.  21
+  126.  21
+  127.  21
+  128.  21
+  129.  21
+  130.  21
+  131.  15
+  132.  21
+  133.  21
+  134.  21
+  135.  13
+  136.  20
+  137.  23
+  138.  27
+  139.  27
+  140.  37
+  141.  12
+  142.  12
+  143.  20
+  144.  37
+  145.  29
+  146.  26
+  147.  20
+  148.  20
+  149.  20
+  150.  21
+  151.  21
+  152.  18
+  153.  26
+  154.  30
+  155.  20
+  156.   9
+  157.  14
+  158.  14
+  159.  28
+  160.  33
+  161.  23
+  162.  23
+  163.  11
+  164.  22
+  165.  21
+  166.  21
+  167.  20
+  168.  23
+  169.  21
+  170.  21
+  171.  37
+  172.  25
+  173.  25
+  174.  29
+  175.  37
+  176.  35
+  177.  21
+  178.  37
+  179.  12
+  180.  12
+  181.   8
+  182.   8
+  183.  20
+  184.  18
+  185.  17
+  186.  23
+  187.   6
+  188.  21
+  189.  12
+  190.  12
+  191.  19
+  192.  19
+  193.  21
+  194.  10
+  195.   8
+  196.  12
+  197.  37
+  198.  25
+  199.  25
+  200.  25
+  201.  25
+  202.  25
+  203.   9
+  204.   9
+  205.   9
+  206.   9
+  207.  29
+  208.  29
+  209.  29
+  210.  27
+  211.  27
+  212.  27
+  213.   9
+  214.  12
+  215.  11
+  216.  12
+  217.  12
+  218.  12
+  219.  12
+  220.  12
+  221.  12
+  222.  12
+  223.  12
+  224.  21
+  225.   8
+  226.  25
+  227.  18
+  228.  23
+  229.  18
+  230.   9
+  231.  27
+  232.  21
+  233.  23
+  234.  17
+  235.  25
+  236.  21
+  237.  22
+  238.  22
+  239.  12
+  240.  12
+  241.  12
+  242.  31
+  243.  31
+  244.  31
+  245.  21
+  246.  29
+  247.  21
+  248.   9
+  249.  25
+  250.  18
+  251.  27
+  252.  19
+  253.  27
+  254.  19
+  255.  21
+  256.  20
+  257.  12
+  258.  25
+  259.  20
+  260.  25
+  261.  20
+  262.  27
+  263.  23
+  264.  27
+  265.  25
+  266.  20
+  267.  25
+  268.  20
+  269.  21
+  270.   7
+  271.  21
+  272.  11
+  273.  21
+  274.  12
+  275.  27
+  276.  21
+  277.  27
+  278.  21
+  279.  29
+  280.  21
+  281.  27
+  282.  12
+  283.  27
+  284.  12
+  285.  25
+  286.  18
+  287.  23
+  288.  10
+  289.  23
+  290.  14
+  291.  27
+  292.  21
+  293.  27
+  294.  21
+  295.  23
+  296.  18
+  297.  23
+  298.  18
+  299.  20
+  300.  29
+  301.  30
+  302.  21
+  303.  21
+  304.  17
+  305.  23
+  306.  15
+  307.  24
+  308.  20
+  309.  19
+  310.  14
+  311.  40
+  312.  37
+  313.  19
+  314.  37
+  315.  19
+  316.  37
+  317.  19
+  318.  19
+  319.  36
+  320.  27
+  321.  22
+  322.  22
+  323.  22
+  324.  22
+  325.  22
+  326.  26
+  327.  23
+  328.  26
+  329.  26
+  330.  26
+  331.  26
+  332.  26
+  333.  26
+  334.  26
+  335.  26
+  336.  26
+  337.  26
+  338.  26
+  339.  26
+  340.  26
+  341.  26
+  342.  26
+  343.  26
+  344.  26
+  345.  26
+  346.  26
+  347.  26
+  348.  26
+  349.  26
+  350.  26
+  351.  26
+  352.  26
+  353.  26
+  354.  26
+  355.  26
+  356.  26
+  357.  26
+  358.  26
+  359.  26
+  360.  26
+  361.  26
+  362.  26
+  363.  26
+  364.  26
+  365.  26
+  366.  26
+  367.  26
+  368.  26
+  369.  26
+  370.  26
+  371.  26
+  372.  26
+  373.  27
+  374.  22
+  375.  37
+  376.  37
+  377.  37
+  378.  37
+  379.  37
+  380.  22
+  381.  22
+  382.  22
+  383.  38
+  384.  39
+  385.  34
+  386.  28
+  387.  28
+  388.  20
+  389.  24
+  390.  22
+  391.  19
+  392.  19
+  393.  28
+  394.  27
+  395.  16
+  396.  22
+  397.   7
+  398.  13
+  399.  33
+  400.  12
+  401.  22
+  402.  13
+  403.  13
+  404.  22
+  405.  13
+  406.  25
+  407.  20
+  408.  27
+  409.  19
+  410.  27
+  411.  19
+  412.  25
+  413.  20
+  414.  25
+  415.  20
+  416.  25
+  417.  20
+  418.  29
+  419.  21
+  420.  29
+  421.  21
+  422.  29
+  423.  21
+  424.  27
+  425.  21
+  426.  27
+  427.  21
+  428.   9
+  429.   9
+  430.   9
+  431.   9
+  432.   9
+  433.   9
+  434.   9
+  435.   7
+  436.  19
+  437.   9
+  438.  25
+  439.  19
+  440.  19
+  441.  21
+  442.   7
+  443.  27
+  444.  21
+  445.  27
+  446.  21
+  447.  29
+  448.  21
+  449.  29
+  450.  21
+  451.  27
+  452.  12
+  453.  25
+  454.  18
+  455.  23
+  456.  10
+  457.  27
+  458.  21
+  459.  27
+  460.  21
+  461.  27
+  462.  21
+  463.  27
+  464.  21
+  465.  38
+  466.  27
+  467.  23
+  468.  17
+  469.   7
+  470.  25
+  471.  20
+  472.  37
+  473.  33
+  474.  29
+  475.  23
+  476.   9
+  477.  38
+  478.  27
+  479.  38
+  480.  27
+  481.  38
+  482.  27
+  483.  23
+  484.  17
+  485.   8
+  486.  12
+  487.  21
+  488.  22
+  489.  31
+  490.  31
+  491.  31
+  492.  31
+  493.  12
+  494.  12
+  495.  12
+  496.  12
+  497.  25
+  498.  29
+  499.  31
+  500.  14
+  501.  29
+  502.  30
+  503.  28
+  504.   8
+  505.  25
+  506.  25
+  507.  25
+  508.  25
+  509.  23
+  510.  27
+  511.   9
+  512.  25
+  513.  25
+  514.  31
+  515.  27
+  516.  24
+  517.  29
+  518.  27
+  519.  25
+  520.  23
+  521.  23
+  522.  23
+  523.  25
+  524.  30
+  525.  28
+  526.   9
+  527.  23
+  528.  21
+  529.  17
+  530.  21
+  531.   8
+  532.  20
+  533.  21
+  534.  19
+  535.  16
+  536.  21
+  537.  21
+  538.   8
+  539.  19
+  540.  19
+  541.  21
+  542.  17
+  543.  17
+  544.  21
+  545.  21
+  546.  18
+  547.  20
+  548.  19
+  549.  26
+  550.  29
+  551.   8
+  552.  20
+  553.  21
+  554.  20
+  555.  29
+  556.  25
+  557.  32
+  558.  20
+  559.  27
+  560.  25
+  561.   9
+  562.   9
+  563.  19
+  564.  39
+  565.  37
+  566.  32
+  567.  22
+  568.  24
+  569.  27
+  570.  25
+  571.  24
+  572.  25
+  573.  20
+  574.  25
+  575.  25
+  576.  34
+  577.  22
+  578.  27
+  579.  27
+  580.  22
+  581.  24
+  582.  31
+  583.  27
+  584.  29
+  585.  27
+  586.  25
+  587.  27
+  588.  23
+  589.  24
+  590.  28
+  591.  25
+  592.  27
+  593.  25
+  594.  34
+  595.  35
+  596.  29
+  597.  33
+  598.  24
+  599.  27
+  600.  37
+  601.  27
+  602.  20
+  603.  21
+  604.  20
+  605.  14
+  606.  22
+  607.  20
+  608.  25
+  609.  17
+  610.  21
+  611.  21
+  612.  16
+  613.  22
+  614.  25
+  615.  20
+  616.  21
+  617.  20
+  618.  21
+  619.  19
+  620.  17
+  621.  17
+  622.  30
+  623.  17
+  624.  21
+  625.  19
+  626.  30
+  627.  30
+  628.  23
+  629.  27
+  630.  20
+  631.  19
+  632.  28
+  633.  20
+  634.  20
+  635.  21
+  636.  14
+  637.  19
+  638.  18
+  639.   7
+  640.   9
+  641.   9
+  642.  34
+  643.  30
+  644.  21
+  645.  16
+  646.  17
+  647.  20
+  648.  18
+  649.  15
+  650.  37
+  651.  40
+  652.  26
+  653.  12
+  654.  12
+  655.  12
+  656.  12
+  657.  12
+  658.  12
+  659.  12
+  660.  12
+  661.  12
+  662.  12
+  663.  12
+  664.  12
+  665.  12
+  666.  14
+  667.  12
+  668.   9
+  669.  12
+  670.  12
+  671.  10
+  672.  21
+  673.  20
+  674.  15
+  675.  19
+  676.  22
+  677.   9
+  678.  14
+  679.  22
+  680.  22
+  681.   9
+  682.  19
+  683.  17
+  684.  17
+  685.  22
+  686.  22
+  687.   9
+  688.  13
+  689.  21
+  690.  20
+  691.  21
+  692.  20
+  693.  17
+  694.  18
+  695.  20
+  696.  19
+  697.  26
+  698.  24
+  699.  18
+  700.  18
+  701.  18
+  702.   9
+  703.  15
+  704.  30
+  705.   9
+  706.  19
+  707.  19
+  708.  17
+  709.  17
+  710.  20
+  711.  26
+  712.  26
+  713.  26
+  714.  26
+  715.  21
+  716.  21
+  717.  21
+  718.  20
+  719.  15
+  720.  19
+  721.  22
+  722.  11
+  723.  15
+  724.  22
+  725.  11
+  726.  19
+  727.  17
+  728.  17
+  729.  22
+  730.  13
+  731.  21
+  732.  21
+  733.  20
+  734.  18
+  735.  20
+  736.  19
+  737.  26
+  738.  24
+  739.   9
+  740.  20
+  741.  17
+  742.  20
+  743.  21
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.  12
+  749.  12
+  750.  13
+  751.  15
+  752.   8
+  753.   7
+  754.   9
+  755.   7
+  756.   7
+  757.   8
+  758.   7
+  759.   8
+  760.   6
+  761.  19
+  762.  19
+  763.  19
+  764.  19
+  765.  19
+  766.  19
+  767.  19
+  768.  19
+  769.  19
+  770.  19
+  771.  19
+  772.  12
+  773.  19
+  774.  28
+  775.  28
+  776.  10
+  777.  28
+  778.  19
+  779.  19
+  780.  19
+  781.  28
+  782.  28
+  783.  28
+  784.  28
+  785.  28
+  786.   8
+  787.  28
+  788.  28
+  789.  28
+  790.  28
+  791.  28
+  792.  28
+  793.  28
+  794.  28
+  795.  24
+  796.  28
+  797.  28
+  798.  28
+  799.  26
+  800.  26
+  801.   9
+  802.   9
+  803.  28
+  804.  28
+  805.  28
+  806.  28
+  807.  21
+  808.  19
+  809.  20
+  810.  20
+  811.  18
+  812.  18
+  813.  30
+  814.  35
+  815.  15
+  816.  19
+  817.  30
+  818.  35
+  819.  15
+  820.  19
+  821.  24
+  822.  22
+  823.  28
+  824.  28
+  825.  28
+  826.  28
+  827.  28
+  828.  28
+  829.  28
+  830.  28
+  831.  28
+  832.  28
+  833.  28
+  834.  28
+  835.  28
+  836.  28
+  837.  28
+  838.  28
+  839.   8
+  840.   8
+  841.   8
+  842.   8
+  843.   8
+  844.  28
+  845.  28
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.  21
+  863.  37
+  864.  28
+  865.  28
+  866.  28
+  867.  28
+  868.  28
+  869.  28
+  870.  28
+  871.  28
+  872.  28
+  873.  28
+  874.  28
+  875.  28
+  876.  28
+  877.  28
+  878.  28
+  879.  28
+  880.  28
+  881.  28
+  882.  28
+  883.  28
+  884.  28
+  885.  28
+  886.  28
+  887.  28
+  888.  28
+  889.  28
+  890.  28
+  891.  28
+  892.  12
+  893.  12
+  894.  28
+  895.  23
+  896.  15
+  897.   8
+  898.   8
+  899.   8
+  900.   8
+  901.  16
+  902.  16
+  903.   8
+  904.   8
+  905.  24
+  906.  22
+  907.   9
+  908.   9
+  909.   8
+  910.   8
+  911.  26
+  912.  26
+  913.   9
+  914.   9
+  915.  10
+  916.  14
+  917.  26
+  918.  26
+  919.   9
+  920.   9
+  921.  26
+  922.  26
+  923.   9
+  924.   9
+  925.  21
+  926.  19
+  927.  20
+  928.  20
+  929.  21
+  930.  19
+  931.  20
+  932.  20
+  933.  21
+  934.  19
+  935.  20
+  936.  20
+  937.  12
+  938.  12
+  939.  12
+  940.  12
+  941.  18
+  942.  18
+  943.  18
+  944.  18
+  945.  30
+  946.  30
+  947.  20
+  948.  20
+  949.  30
+  950.  30
+  951.  20
+  952.  20
+  953.  41
+  954.  41
+  955.  31
+  956.  31
+  957.  41
+  958.  41
+  959.  31
+  960.  31
+  961.  22
+  962.  22
+  963.  22
+  964.  22
+  965.  22
+  966.  22
+  967.  22
+  968.  22
+  969.  20
+  970.  17
+  971.  19
+  972.  15
+  973.  20
+  974.  17
+  975.  19
+  976.  15
+  977.  29
+  978.  29
+  979.  10
+  980.  10
+  981.  22
+  982.  22
+  983.  10
+  984.  10
+  985.  22
+  986.  22
+  987.  15
+  988.  15
+  989.  19
+  990.  19
+  991.   8
+  992.   8
+  993.  13
+  994.  13
+  995.  15
+  996.  15
+  997.  19
+  998.  19
+  999.   9
+ 1000.   9
+ 1001.  10
+ 1002.  14
+ 1003.  17
+ 1004.  15
+ 1005.  16
+ 1006.  16
+ 1007.  24
+ 1008.  22
+ 1009.  24
+ 1010.  22
+ 1011.   9
+ 1012.   9
+ 1013.  20
+ 1014.  22
+ 1015.  20
+ 1016.  22
+ 1017.  20
+ 1018.  22
+ 1019.  20
+ 1020.  22
+ 1021.  28
+ 1022.  28
+ 1023.   7
+ 1024.   7
+ 1025.  28
+ 1026.  28
+ 1027.  28
+ 1028.   6
+ 1029.   8
+ 1030.  28
+ 1031.  28
+ 1032.   8
+ 1033.   9
+ 1034.  28
+ 1035.  28
+ 1036.  28
+ 1037.   8
+ 1038.   8
+ 1039.   8
+ 1040.   8
+ 1041.   8
+ 1042.   8
+ 1043.  28
+ 1044.   7
+ 1045.   7
+ 1046.  28
+ 1047.  28
+ 1048.  28
+ 1049.  28
+ 1050.  28
+ 1051.  28
+ 1052.  28
+ 1053.  28
+ 1054.  28
+ 1055.  28
+ 1056.  28
+ 1057.  28
+ 1058.  28
+ 1059.  28
+ 1060.  28
+ 1061.  28
+ 1062.  28
+ 1063.  28
+ 1064.  28
+ 1065.  28
+ 1066.  28
+ 1067.  28
+ 1068.  28
+ 1069.  28
+ 1070.  28
+ 1071.  28
+ 1072.  28
+ 1073.  28
+ 1074.  28
+ 1075.  28
+ 1076.  28
+ 1077.  28
+ 1078.  28
+ 1079.  28
+ 1080.  28
+ 1081.  28
+ 1082.  28
+ 1083.  28
+ 1084.  28
+ 1085.  28
+ 1086.  28
+ 1087.  28
+ 1088.  28
+ 1089.  28
+ 1090.  28
+ 1091.  28
+ 1092.  28
+ 1093.  28
+ 1094.  28
+ 1095.  28
+ 1096.  28
+ 1097.  28
+ 1098.  28
+ 1099.  28
+ 1100.  12
+ 1101.  12
+ 1102.  12
+ 1103.  28
+ 1104.  28
+ 1105.  28
+ 1106.  28
+ 1107.  28
+ 1108.  28
+ 1109.  28
+ 1110.  28
+ 1111.  28
+ 1112.  28
+ 1113.  28
+ 1114.  28
+ 1115.  28
+ 1116.  28
+ 1117.  28
+ 1118.  28
+ 1119.  28
+ 1120.  28
+ 1121.  28
+ 1122.  28
+ 1123.  28
+ 1124.  28
+ 1125.  28
+ 1126.  28
+ 1127.   5
+ 1128.  37
+ 1129.  74
+ 1130.  32
+ 1131.  24
+ 1132.  32
+ 1133.  25
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.  19
+ 1151.  31
+ 1152.  31
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.   7
+ 1188.  25
+ 1189.  20
+ 1190.  25
+ 1191.  20
+ 1192.  25
+ 1193.  20
+ 1194.  25
+ 1195.  20
+ 1196.  25
+ 1197.  20
+ 1198.  25
+ 1199.  20
+ 1200.  25
+ 1201.  20
+ 1202.  25
+ 1203.  20
+ 1204.  25
+ 1205.  20
+ 1206.  25
+ 1207.  20
+ 1208.  25
+ 1209.  20
+ 1210.  25
+ 1211.  20
+ 1212.  25
+ 1213.  20
+ 1214.  25
+ 1215.  20
+ 1216.  25
+ 1217.  20
+ 1218.  25
+ 1219.  20
+ 1220.  25
+ 1221.  20
+ 1222.  25
+ 1223.  20
+ 1224.  25
+ 1225.  20
+ 1226.  25
+ 1227.  20
+ 1228.   9
+ 1229.   7
+ 1230.   9
+ 1231.   7
+ 1232.  29
+ 1233.  21
+ 1234.  29
+ 1235.  21
+ 1236.  29
+ 1237.  21
+ 1238.  29
+ 1239.  21
+ 1240.  29
+ 1241.  21
+ 1242.  29
+ 1243.  21
+ 1244.  29
+ 1245.  21
+ 1246.  32
+ 1247.  24
+ 1248.  32
+ 1249.  24
+ 1250.  32
+ 1251.  24
+ 1252.  32
+ 1253.  24
+ 1254.  32
+ 1255.  24
+ 1256.  27
+ 1257.  21
+ 1258.  27
+ 1259.  21
+ 1260.  32
+ 1261.  25
+ 1262.  32
+ 1263.  25
+ 1264.  32
+ 1265.  25
+ 1266.  32
+ 1267.  25
+ 1268.  32
+ 1269.  25
+ 1270.  23
+ 1271.  17
+ 1272.  23
+ 1273.  17
+ 1274.  23
+ 1275.  17
+ 1276.  25
+ 1277.  20
+ 1278.   9
+ 1279.   7
+ 1280.  29
+ 1281.  21
+ 1282.  27
+ 1283.  21
+ 1284.  27
+ 1285.  21
+ 1286.  27
+ 1287.  21
+ 1288.  27
+ 1289.  21
+ 1290.  27
+ 1291.  21
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.  20
+ 1297.  14
+ 1298.  34
+ 1299.  25
+ 1300.  22
+ 1301.  16
+ 1302.  22
+ 1303.  16
+ 1304.  27
+ 1305.  20
+ 1306.  21
+ 1307.  19
+ 1308.  21
+ 1309.  19
+ 1310.  25
+ 1311.  19
+ 1312.  25
+ 1313.  19
+ 1314.  25
+ 1315.  19
+ 1316.  28
+ 1317.  21
+ 1318.  29
+ 1319.  21
+
+
+	DevRec 14: ppem =  42, maxWid =  84
+    0.  32
+    1.   0
+    2.  12
+    3.  12
+    4.  14
+    5.  15
+    6.  23
+    7.  23
+    8.  37
+    9.  28
+   10.   8
+   11.  14
+   12.  14
+   13.  16
+   14.  25
+   15.  12
+   16.  14
+   17.  12
+   18.  12
+   19.  23
+   20.  23
+   21.  23
+   22.  23
+   23.  23
+   24.  23
+   25.  23
+   26.  23
+   27.  23
+   28.  23
+   29.  12
+   30.  12
+   31.  25
+   32.  25
+   33.  25
+   34.  23
+   35.  43
+   36.  28
+   37.  28
+   38.  30
+   39.  30
+   40.  28
+   41.  26
+   42.  33
+   43.  30
+   44.  12
+   45.  21
+   46.  28
+   47.  23
+   48.  35
+   49.  30
+   50.  33
+   51.  28
+   52.  33
+   53.  30
+   54.  28
+   55.  26
+   56.  30
+   57.  28
+   58.  42
+   59.  27
+   60.  28
+   61.  26
+   62.  12
+   63.  12
+   64.  12
+   65.  19
+   66.  23
+   67.  14
+   68.  23
+   69.  23
+   70.  21
+   71.  23
+   72.  23
+   73.  13
+   74.  23
+   75.  23
+   76.  10
+   77.  10
+   78.  21
+   79.  10
+   80.  36
+   81.  23
+   82.  23
+   83.  23
+   84.  23
+   85.  14
+   86.  20
+   87.  12
+   88.  23
+   89.  23
+   90.  29
+   91.  22
+   92.  21
+   93.  21
+   94.  14
+   95.  11
+   96.  14
+   97.  25
+   98.  28
+   99.  28
+  100.  30
+  101.  28
+  102.  30
+  103.  33
+  104.  30
+  105.  23
+  106.  23
+  107.  23
+  108.  23
+  109.  23
+  110.  23
+  111.  21
+  112.  23
+  113.  23
+  114.  23
+  115.  23
+  116.  12
+  117.  12
+  118.  12
+  119.  12
+  120.  23
+  121.  23
+  122.  23
+  123.  23
+  124.  23
+  125.  23
+  126.  23
+  127.  23
+  128.  23
+  129.  23
+  130.  23
+  131.  17
+  132.  23
+  133.  23
+  134.  23
+  135.  15
+  136.  23
+  137.  26
+  138.  31
+  139.  31
+  140.  42
+  141.  14
+  142.  14
+  143.  23
+  144.  42
+  145.  33
+  146.  30
+  147.  23
+  148.  23
+  149.  23
+  150.  23
+  151.  24
+  152.  21
+  153.  30
+  154.  35
+  155.  23
+  156.  10
+  157.  16
+  158.  15
+  159.  32
+  160.  37
+  161.  26
+  162.  26
+  163.  14
+  164.  25
+  165.  23
+  166.  23
+  167.  23
+  168.  26
+  169.  23
+  170.  23
+  171.  42
+  172.  28
+  173.  28
+  174.  33
+  175.  42
+  176.  40
+  177.  23
+  178.  42
+  179.  14
+  180.  14
+  181.   9
+  182.   9
+  183.  23
+  184.  21
+  185.  21
+  186.  28
+  187.   7
+  188.  23
+  189.  14
+  190.  14
+  191.  21
+  192.  21
+  193.  23
+  194.  12
+  195.   9
+  196.  14
+  197.  43
+  198.  28
+  199.  28
+  200.  28
+  201.  28
+  202.  28
+  203.  12
+  204.  12
+  205.  12
+  206.  12
+  207.  33
+  208.  33
+  209.  33
+  210.  30
+  211.  30
+  212.  30
+  213.  12
+  214.  14
+  215.  13
+  216.  14
+  217.  14
+  218.  14
+  219.  14
+  220.  14
+  221.  14
+  222.  14
+  223.  14
+  224.  23
+  225.   9
+  226.  28
+  227.  20
+  228.  26
+  229.  21
+  230.  11
+  231.  30
+  232.  23
+  233.  28
+  234.  21
+  235.  28
+  236.  23
+  237.  25
+  238.  25
+  239.  14
+  240.  14
+  241.  14
+  242.  35
+  243.  35
+  244.  35
+  245.  23
+  246.  33
+  247.  23
+  248.  12
+  249.  28
+  250.  20
+  251.  30
+  252.  21
+  253.  30
+  254.  21
+  255.  23
+  256.  23
+  257.  14
+  258.  28
+  259.  23
+  260.  28
+  261.  23
+  262.  30
+  263.  26
+  264.  30
+  265.  28
+  266.  23
+  267.  28
+  268.  23
+  269.  23
+  270.  10
+  271.  23
+  272.  12
+  273.  23
+  274.  14
+  275.  30
+  276.  23
+  277.  30
+  278.  23
+  279.  33
+  280.  23
+  281.  30
+  282.  14
+  283.  30
+  284.  14
+  285.  28
+  286.  20
+  287.  26
+  288.  12
+  289.  26
+  290.  16
+  291.  30
+  292.  23
+  293.  30
+  294.  23
+  295.  26
+  296.  21
+  297.  26
+  298.  21
+  299.  23
+  300.  33
+  301.  34
+  302.  24
+  303.  23
+  304.  19
+  305.  26
+  306.  17
+  307.  27
+  308.  23
+  309.  21
+  310.  15
+  311.  46
+  312.  42
+  313.  21
+  314.  42
+  315.  21
+  316.  42
+  317.  21
+  318.  21
+  319.  41
+  320.  30
+  321.  25
+  322.  25
+  323.  25
+  324.  25
+  325.  25
+  326.  30
+  327.  26
+  328.  30
+  329.  30
+  330.  30
+  331.  30
+  332.  30
+  333.  30
+  334.  30
+  335.  30
+  336.  30
+  337.  30
+  338.  30
+  339.  30
+  340.  30
+  341.  30
+  342.  30
+  343.  30
+  344.  30
+  345.  30
+  346.  30
+  347.  30
+  348.  30
+  349.  30
+  350.  30
+  351.  30
+  352.  30
+  353.  30
+  354.  30
+  355.  30
+  356.  30
+  357.  30
+  358.  30
+  359.  30
+  360.  30
+  361.  30
+  362.  30
+  363.  30
+  364.  30
+  365.  30
+  366.  30
+  367.  30
+  368.  30
+  369.  30
+  370.  30
+  371.  30
+  372.  30
+  373.  31
+  374.  25
+  375.  42
+  376.  42
+  377.  42
+  378.  42
+  379.  42
+  380.  25
+  381.  25
+  382.  25
+  383.  43
+  384.  44
+  385.  39
+  386.  32
+  387.  32
+  388.  22
+  389.  28
+  390.  25
+  391.  21
+  392.  21
+  393.  32
+  394.  31
+  395.  19
+  396.  25
+  397.   8
+  398.  15
+  399.  37
+  400.  14
+  401.  25
+  402.  15
+  403.  15
+  404.  25
+  405.  15
+  406.  28
+  407.  23
+  408.  30
+  409.  21
+  410.  30
+  411.  21
+  412.  28
+  413.  23
+  414.  28
+  415.  23
+  416.  28
+  417.  23
+  418.  33
+  419.  23
+  420.  33
+  421.  23
+  422.  33
+  423.  23
+  424.  30
+  425.  23
+  426.  30
+  427.  23
+  428.  12
+  429.  12
+  430.  12
+  431.  12
+  432.  12
+  433.  12
+  434.  12
+  435.  10
+  436.  21
+  437.  10
+  438.  28
+  439.  21
+  440.  21
+  441.  23
+  442.  10
+  443.  30
+  444.  23
+  445.  30
+  446.  23
+  447.  33
+  448.  23
+  449.  33
+  450.  23
+  451.  30
+  452.  14
+  453.  28
+  454.  20
+  455.  26
+  456.  12
+  457.  30
+  458.  23
+  459.  30
+  460.  23
+  461.  30
+  462.  23
+  463.  30
+  464.  23
+  465.  42
+  466.  29
+  467.  28
+  468.  21
+  469.  10
+  470.  28
+  471.  23
+  472.  42
+  473.  37
+  474.  33
+  475.  26
+  476.  12
+  477.  42
+  478.  29
+  479.  42
+  480.  29
+  481.  42
+  482.  29
+  483.  28
+  484.  21
+  485.   9
+  486.  14
+  487.  23
+  488.  25
+  489.  35
+  490.  35
+  491.  35
+  492.  35
+  493.  14
+  494.  14
+  495.  14
+  496.  14
+  497.  28
+  498.  33
+  499.  35
+  500.  16
+  501.  33
+  502.  35
+  503.  32
+  504.  10
+  505.  28
+  506.  28
+  507.  28
+  508.  28
+  509.  26
+  510.  30
+  511.  12
+  512.  28
+  513.  28
+  514.  35
+  515.  30
+  516.  27
+  517.  33
+  518.  30
+  519.  28
+  520.  26
+  521.  26
+  522.  28
+  523.  27
+  524.  35
+  525.  31
+  526.  12
+  527.  28
+  528.  24
+  529.  19
+  530.  23
+  531.  10
+  532.  23
+  533.  24
+  534.  21
+  535.  19
+  536.  23
+  537.  23
+  538.  10
+  539.  21
+  540.  21
+  541.  24
+  542.  23
+  543.  19
+  544.  23
+  545.  24
+  546.  20
+  547.  23
+  548.  22
+  549.  30
+  550.  33
+  551.  10
+  552.  23
+  553.  23
+  554.  23
+  555.  33
+  556.  28
+  557.  36
+  558.  23
+  559.  30
+  560.  28
+  561.  12
+  562.  12
+  563.  21
+  564.  44
+  565.  42
+  566.  36
+  567.  24
+  568.  27
+  569.  30
+  570.  28
+  571.  28
+  572.  28
+  573.  23
+  574.  28
+  575.  28
+  576.  39
+  577.  25
+  578.  30
+  579.  30
+  580.  24
+  581.  28
+  582.  35
+  583.  30
+  584.  33
+  585.  30
+  586.  28
+  587.  30
+  588.  26
+  589.  27
+  590.  32
+  591.  27
+  592.  31
+  593.  28
+  594.  39
+  595.  39
+  596.  33
+  597.  37
+  598.  28
+  599.  30
+  600.  42
+  601.  30
+  602.  23
+  603.  24
+  604.  22
+  605.  15
+  606.  25
+  607.  23
+  608.  28
+  609.  19
+  610.  23
+  611.  23
+  612.  18
+  613.  25
+  614.  29
+  615.  23
+  616.  23
+  617.  23
+  618.  23
+  619.  21
+  620.  19
+  621.  21
+  622.  35
+  623.  22
+  624.  24
+  625.  22
+  626.  34
+  627.  35
+  628.  26
+  629.  30
+  630.  22
+  631.  21
+  632.  32
+  633.  23
+  634.  23
+  635.  23
+  636.  15
+  637.  21
+  638.  20
+  639.  10
+  640.  12
+  641.  10
+  642.  38
+  643.  34
+  644.  23
+  645.  18
+  646.  21
+  647.  23
+  648.  21
+  649.  17
+  650.  42
+  651.  45
+  652.  29
+  653.  14
+  654.  14
+  655.  14
+  656.  14
+  657.  14
+  658.  14
+  659.  14
+  660.  14
+  661.  14
+  662.  14
+  663.  14
+  664.  14
+  665.  14
+  666.  16
+  667.  14
+  668.  10
+  669.  14
+  670.  14
+  671.  12
+  672.  24
+  673.  23
+  674.  17
+  675.  21
+  676.  25
+  677.  10
+  678.  16
+  679.  25
+  680.  25
+  681.  10
+  682.  21
+  683.  19
+  684.  19
+  685.  25
+  686.  25
+  687.  10
+  688.  15
+  689.  24
+  690.  22
+  691.  24
+  692.  23
+  693.  19
+  694.  20
+  695.  23
+  696.  21
+  697.  29
+  698.  27
+  699.  20
+  700.  20
+  701.  20
+  702.  10
+  703.  18
+  704.  37
+  705.  10
+  706.  21
+  707.  21
+  708.  19
+  709.  19
+  710.  22
+  711.  29
+  712.  29
+  713.  29
+  714.  29
+  715.  24
+  716.  24
+  717.  24
+  718.  23
+  719.  17
+  720.  21
+  721.  25
+  722.  12
+  723.  17
+  724.  25
+  725.  12
+  726.  21
+  727.  19
+  728.  19
+  729.  25
+  730.  15
+  731.  24
+  732.  24
+  733.  23
+  734.  20
+  735.  23
+  736.  21
+  737.  29
+  738.  27
+  739.  10
+  740.  23
+  741.  19
+  742.  23
+  743.  24
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.  13
+  749.  13
+  750.  15
+  751.  17
+  752.   9
+  753.   8
+  754.  10
+  755.   8
+  756.   8
+  757.   9
+  758.   8
+  759.   9
+  760.   7
+  761.  22
+  762.  22
+  763.  22
+  764.  22
+  765.  22
+  766.  22
+  767.  22
+  768.  22
+  769.  22
+  770.  22
+  771.  22
+  772.  13
+  773.  22
+  774.  32
+  775.  32
+  776.  12
+  777.  32
+  778.  22
+  779.  22
+  780.  22
+  781.  32
+  782.  32
+  783.  32
+  784.  32
+  785.  32
+  786.   9
+  787.  32
+  788.  32
+  789.  32
+  790.  32
+  791.  32
+  792.  32
+  793.  32
+  794.  32
+  795.  27
+  796.  32
+  797.  32
+  798.  32
+  799.  30
+  800.  30
+  801.  10
+  802.  10
+  803.  32
+  804.  32
+  805.  32
+  806.  32
+  807.  24
+  808.  22
+  809.  22
+  810.  22
+  811.  21
+  812.  21
+  813.  34
+  814.  39
+  815.  17
+  816.  22
+  817.  34
+  818.  39
+  819.  17
+  820.  22
+  821.  27
+  822.  25
+  823.  32
+  824.  32
+  825.  32
+  826.  32
+  827.  32
+  828.  32
+  829.  32
+  830.  32
+  831.  32
+  832.  32
+  833.  32
+  834.  32
+  835.  32
+  836.  32
+  837.  32
+  838.  32
+  839.  10
+  840.   9
+  841.   9
+  842.   9
+  843.   9
+  844.  32
+  845.  32
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.  23
+  863.  42
+  864.  32
+  865.  32
+  866.  32
+  867.  32
+  868.  32
+  869.  32
+  870.  32
+  871.  32
+  872.  32
+  873.  32
+  874.  32
+  875.  32
+  876.  32
+  877.  32
+  878.  32
+  879.  32
+  880.  32
+  881.  32
+  882.  32
+  883.  32
+  884.  32
+  885.  32
+  886.  32
+  887.  32
+  888.  32
+  889.  32
+  890.  32
+  891.  32
+  892.  13
+  893.  13
+  894.  32
+  895.  26
+  896.  17
+  897.   9
+  898.  10
+  899.   9
+  900.  10
+  901.  18
+  902.  18
+  903.   9
+  904.  10
+  905.  27
+  906.  25
+  907.  10
+  908.  10
+  909.   9
+  910.  10
+  911.  30
+  912.  30
+  913.  10
+  914.  10
+  915.  12
+  916.  16
+  917.  30
+  918.  30
+  919.  10
+  920.  10
+  921.  30
+  922.  30
+  923.  10
+  924.  10
+  925.  24
+  926.  22
+  927.  22
+  928.  22
+  929.  24
+  930.  22
+  931.  22
+  932.  22
+  933.  24
+  934.  22
+  935.  22
+  936.  22
+  937.  14
+  938.  14
+  939.  14
+  940.  14
+  941.  21
+  942.  21
+  943.  21
+  944.  21
+  945.  35
+  946.  35
+  947.  22
+  948.  22
+  949.  35
+  950.  35
+  951.  22
+  952.  22
+  953.  46
+  954.  46
+  955.  36
+  956.  36
+  957.  46
+  958.  46
+  959.  36
+  960.  36
+  961.  24
+  962.  24
+  963.  24
+  964.  24
+  965.  24
+  966.  24
+  967.  24
+  968.  24
+  969.  23
+  970.  19
+  971.  22
+  972.  17
+  973.  23
+  974.  19
+  975.  22
+  976.  17
+  977.  33
+  978.  33
+  979.  11
+  980.  11
+  981.  24
+  982.  24
+  983.  11
+  984.  11
+  985.  25
+  986.  25
+  987.  17
+  988.  17
+  989.  21
+  990.  21
+  991.   9
+  992.   9
+  993.  14
+  994.  14
+  995.  17
+  996.  17
+  997.  22
+  998.  22
+  999.  10
+ 1000.  10
+ 1001.  12
+ 1002.  16
+ 1003.  19
+ 1004.  17
+ 1005.  18
+ 1006.  18
+ 1007.  27
+ 1008.  25
+ 1009.  27
+ 1010.  25
+ 1011.  10
+ 1012.  10
+ 1013.  23
+ 1014.  25
+ 1015.  23
+ 1016.  25
+ 1017.  23
+ 1018.  25
+ 1019.  23
+ 1020.  25
+ 1021.  32
+ 1022.  32
+ 1023.   8
+ 1024.   8
+ 1025.  32
+ 1026.  32
+ 1027.  32
+ 1028.   7
+ 1029.   9
+ 1030.  32
+ 1031.  32
+ 1032.   9
+ 1033.  10
+ 1034.  32
+ 1035.  32
+ 1036.  32
+ 1037.   9
+ 1038.   9
+ 1039.   9
+ 1040.   9
+ 1041.   9
+ 1042.  10
+ 1043.  32
+ 1044.   8
+ 1045.   8
+ 1046.  32
+ 1047.  32
+ 1048.  32
+ 1049.  32
+ 1050.  32
+ 1051.  32
+ 1052.  32
+ 1053.  32
+ 1054.  32
+ 1055.  32
+ 1056.  32
+ 1057.  32
+ 1058.  32
+ 1059.  32
+ 1060.  32
+ 1061.  32
+ 1062.  32
+ 1063.  32
+ 1064.  32
+ 1065.  32
+ 1066.  32
+ 1067.  32
+ 1068.  32
+ 1069.  32
+ 1070.  32
+ 1071.  32
+ 1072.  32
+ 1073.  32
+ 1074.  32
+ 1075.  32
+ 1076.  32
+ 1077.  32
+ 1078.  32
+ 1079.  32
+ 1080.  32
+ 1081.  32
+ 1082.  32
+ 1083.  32
+ 1084.  32
+ 1085.  32
+ 1086.  32
+ 1087.  32
+ 1088.  32
+ 1089.  32
+ 1090.  32
+ 1091.  32
+ 1092.  32
+ 1093.  32
+ 1094.  32
+ 1095.  32
+ 1096.  32
+ 1097.  32
+ 1098.  32
+ 1099.  32
+ 1100.  13
+ 1101.  13
+ 1102.  13
+ 1103.  32
+ 1104.  32
+ 1105.  32
+ 1106.  32
+ 1107.  32
+ 1108.  32
+ 1109.  32
+ 1110.  32
+ 1111.  32
+ 1112.  32
+ 1113.  32
+ 1114.  32
+ 1115.  32
+ 1116.  32
+ 1117.  32
+ 1118.  32
+ 1119.  32
+ 1120.  32
+ 1121.  32
+ 1122.  32
+ 1123.  32
+ 1124.  32
+ 1125.  32
+ 1126.  32
+ 1127.   5
+ 1128.  42
+ 1129.  84
+ 1130.  36
+ 1131.  28
+ 1132.  36
+ 1133.  28
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.  22
+ 1151.  35
+ 1152.  35
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.  10
+ 1188.  28
+ 1189.  23
+ 1190.  28
+ 1191.  23
+ 1192.  28
+ 1193.  23
+ 1194.  28
+ 1195.  23
+ 1196.  28
+ 1197.  23
+ 1198.  28
+ 1199.  23
+ 1200.  28
+ 1201.  23
+ 1202.  28
+ 1203.  23
+ 1204.  28
+ 1205.  23
+ 1206.  28
+ 1207.  23
+ 1208.  28
+ 1209.  23
+ 1210.  28
+ 1211.  23
+ 1212.  28
+ 1213.  23
+ 1214.  28
+ 1215.  23
+ 1216.  28
+ 1217.  23
+ 1218.  28
+ 1219.  23
+ 1220.  28
+ 1221.  23
+ 1222.  28
+ 1223.  23
+ 1224.  28
+ 1225.  23
+ 1226.  28
+ 1227.  23
+ 1228.  12
+ 1229.  10
+ 1230.  12
+ 1231.  10
+ 1232.  33
+ 1233.  23
+ 1234.  33
+ 1235.  23
+ 1236.  33
+ 1237.  23
+ 1238.  33
+ 1239.  23
+ 1240.  33
+ 1241.  23
+ 1242.  33
+ 1243.  23
+ 1244.  33
+ 1245.  23
+ 1246.  36
+ 1247.  28
+ 1248.  36
+ 1249.  28
+ 1250.  36
+ 1251.  28
+ 1252.  36
+ 1253.  28
+ 1254.  36
+ 1255.  28
+ 1256.  30
+ 1257.  23
+ 1258.  30
+ 1259.  23
+ 1260.  36
+ 1261.  28
+ 1262.  36
+ 1263.  28
+ 1264.  36
+ 1265.  28
+ 1266.  36
+ 1267.  28
+ 1268.  36
+ 1269.  28
+ 1270.  28
+ 1271.  21
+ 1272.  28
+ 1273.  21
+ 1274.  28
+ 1275.  21
+ 1276.  28
+ 1277.  23
+ 1278.  12
+ 1279.  10
+ 1280.  33
+ 1281.  23
+ 1282.  30
+ 1283.  23
+ 1284.  30
+ 1285.  23
+ 1286.  30
+ 1287.  23
+ 1288.  30
+ 1289.  23
+ 1290.  30
+ 1291.  23
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.  23
+ 1297.  15
+ 1298.  39
+ 1299.  28
+ 1300.  24
+ 1301.  18
+ 1302.  24
+ 1303.  18
+ 1304.  30
+ 1305.  23
+ 1306.  23
+ 1307.  21
+ 1308.  23
+ 1309.  21
+ 1310.  28
+ 1311.  21
+ 1312.  28
+ 1313.  22
+ 1314.  28
+ 1315.  22
+ 1316.  32
+ 1317.  23
+ 1318.  33
+ 1319.  23
+
+
+	DevRec 15: ppem =  46, maxWid =  92
+    0.  35
+    1.   0
+    2.  13
+    3.  13
+    4.  14
+    5.  16
+    6.  26
+    7.  26
+    8.  41
+    9.  31
+   10.   9
+   11.  15
+   12.  15
+   13.  18
+   14.  27
+   15.  13
+   16.  15
+   17.  13
+   18.  13
+   19.  26
+   20.  26
+   21.  26
+   22.  26
+   23.  26
+   24.  26
+   25.  26
+   26.  26
+   27.  26
+   28.  26
+   29.  13
+   30.  13
+   31.  27
+   32.  27
+   33.  27
+   34.  26
+   35.  47
+   36.  31
+   37.  31
+   38.  33
+   39.  33
+   40.  31
+   41.  28
+   42.  36
+   43.  33
+   44.  12
+   45.  23
+   46.  31
+   47.  26
+   48.  37
+   49.  33
+   50.  36
+   51.  31
+   52.  36
+   53.  33
+   54.  31
+   55.  28
+   56.  33
+   57.  31
+   58.  46
+   59.  31
+   60.  30
+   61.  28
+   62.  13
+   63.  13
+   64.  13
+   65.  21
+   66.  26
+   67.  15
+   68.  26
+   69.  26
+   70.  23
+   71.  26
+   72.  26
+   73.  14
+   74.  26
+   75.  26
+   76.  10
+   77.  10
+   78.  23
+   79.  10
+   80.  38
+   81.  26
+   82.  26
+   83.  26
+   84.  26
+   85.  15
+   86.  23
+   87.  13
+   88.  26
+   89.  23
+   90.  33
+   91.  23
+   92.  23
+   93.  23
+   94.  15
+   95.  11
+   96.  15
+   97.  27
+   98.  31
+   99.  31
+  100.  33
+  101.  31
+  102.  33
+  103.  36
+  104.  33
+  105.  26
+  106.  26
+  107.  26
+  108.  26
+  109.  26
+  110.  26
+  111.  23
+  112.  26
+  113.  26
+  114.  26
+  115.  26
+  116.  12
+  117.  12
+  118.  12
+  119.  12
+  120.  26
+  121.  26
+  122.  26
+  123.  26
+  124.  26
+  125.  26
+  126.  26
+  127.  26
+  128.  26
+  129.  26
+  130.  26
+  131.  18
+  132.  26
+  133.  26
+  134.  26
+  135.  16
+  136.  25
+  137.  28
+  138.  34
+  139.  34
+  140.  46
+  141.  15
+  142.  15
+  143.  25
+  144.  46
+  145.  36
+  146.  33
+  147.  25
+  148.  25
+  149.  25
+  150.  26
+  151.  27
+  152.  23
+  153.  33
+  154.  38
+  155.  25
+  156.  15
+  157.  17
+  158.  17
+  159.  35
+  160.  41
+  161.  28
+  162.  28
+  163.  14
+  164.  27
+  165.  25
+  166.  26
+  167.  25
+  168.  28
+  169.  26
+  170.  26
+  171.  46
+  172.  31
+  173.  31
+  174.  36
+  175.  46
+  176.  43
+  177.  26
+  178.  46
+  179.  15
+  180.  15
+  181.  10
+  182.  10
+  183.  25
+  184.  23
+  185.  23
+  186.  30
+  187.   8
+  188.  26
+  189.  15
+  190.  15
+  191.  23
+  192.  23
+  193.  26
+  194.  13
+  195.  10
+  196.  15
+  197.  46
+  198.  31
+  199.  31
+  200.  31
+  201.  31
+  202.  31
+  203.  12
+  204.  12
+  205.  12
+  206.  12
+  207.  36
+  208.  36
+  209.  36
+  210.  33
+  211.  33
+  212.  33
+  213.  12
+  214.  15
+  215.  13
+  216.  15
+  217.  15
+  218.  15
+  219.  15
+  220.  15
+  221.  15
+  222.  15
+  223.  15
+  224.  26
+  225.  10
+  226.  31
+  227.  23
+  228.  28
+  229.  23
+  230.  11
+  231.  33
+  232.  26
+  233.  30
+  234.  23
+  235.  31
+  236.  26
+  237.  27
+  238.  27
+  239.  15
+  240.  15
+  241.  15
+  242.  38
+  243.  38
+  244.  38
+  245.  26
+  246.  36
+  247.  26
+  248.  12
+  249.  31
+  250.  23
+  251.  33
+  252.  23
+  253.  33
+  254.  23
+  255.  26
+  256.  25
+  257.  15
+  258.  31
+  259.  26
+  260.  31
+  261.  26
+  262.  33
+  263.  28
+  264.  33
+  265.  31
+  266.  26
+  267.  31
+  268.  26
+  269.  26
+  270.  10
+  271.  26
+  272.  13
+  273.  26
+  274.  15
+  275.  33
+  276.  26
+  277.  33
+  278.  26
+  279.  36
+  280.  26
+  281.  33
+  282.  15
+  283.  33
+  284.  15
+  285.  31
+  286.  23
+  287.  28
+  288.  13
+  289.  28
+  290.  17
+  291.  33
+  292.  26
+  293.  33
+  294.  26
+  295.  28
+  296.  23
+  297.  28
+  298.  23
+  299.  25
+  300.  36
+  301.  37
+  302.  27
+  303.  26
+  304.  21
+  305.  28
+  306.  18
+  307.  30
+  308.  25
+  309.  23
+  310.  17
+  311.  50
+  312.  46
+  313.  23
+  314.  46
+  315.  23
+  316.  46
+  317.  23
+  318.  23
+  319.  45
+  320.  33
+  321.  27
+  322.  28
+  323.  27
+  324.  28
+  325.  28
+  326.  33
+  327.  29
+  328.  33
+  329.  33
+  330.  33
+  331.  33
+  332.  33
+  333.  33
+  334.  33
+  335.  33
+  336.  33
+  337.  33
+  338.  33
+  339.  33
+  340.  33
+  341.  33
+  342.  33
+  343.  33
+  344.  33
+  345.  33
+  346.  33
+  347.  33
+  348.  33
+  349.  33
+  350.  33
+  351.  33
+  352.  33
+  353.  33
+  354.  33
+  355.  33
+  356.  33
+  357.  33
+  358.  33
+  359.  33
+  360.  33
+  361.  33
+  362.  33
+  363.  33
+  364.  33
+  365.  33
+  366.  33
+  367.  33
+  368.  33
+  369.  33
+  370.  33
+  371.  33
+  372.  33
+  373.  34
+  374.  28
+  375.  46
+  376.  46
+  377.  46
+  378.  46
+  379.  46
+  380.  28
+  381.  28
+  382.  28
+  383.  47
+  384.  48
+  385.  42
+  386.  35
+  387.  35
+  388.  24
+  389.  30
+  390.  27
+  391.  23
+  392.  23
+  393.  35
+  394.  34
+  395.  20
+  396.  28
+  397.   9
+  398.  16
+  399.  41
+  400.  15
+  401.  28
+  402.  16
+  403.  16
+  404.  28
+  405.  16
+  406.  31
+  407.  26
+  408.  33
+  409.  23
+  410.  33
+  411.  23
+  412.  31
+  413.  26
+  414.  31
+  415.  26
+  416.  31
+  417.  26
+  418.  36
+  419.  26
+  420.  36
+  421.  26
+  422.  36
+  423.  26
+  424.  33
+  425.  26
+  426.  33
+  427.  26
+  428.  12
+  429.  12
+  430.  12
+  431.  12
+  432.  12
+  433.  12
+  434.  12
+  435.  10
+  436.  23
+  437.  10
+  438.  31
+  439.  23
+  440.  23
+  441.  26
+  442.  10
+  443.  33
+  444.  26
+  445.  33
+  446.  26
+  447.  36
+  448.  26
+  449.  36
+  450.  26
+  451.  33
+  452.  15
+  453.  31
+  454.  23
+  455.  28
+  456.  13
+  457.  33
+  458.  26
+  459.  33
+  460.  26
+  461.  33
+  462.  26
+  463.  33
+  464.  26
+  465.  46
+  466.  33
+  467.  30
+  468.  23
+  469.  10
+  470.  31
+  471.  26
+  472.  46
+  473.  41
+  474.  36
+  475.  28
+  476.  12
+  477.  46
+  478.  33
+  479.  46
+  480.  33
+  481.  46
+  482.  33
+  483.  30
+  484.  23
+  485.  10
+  486.  15
+  487.  26
+  488.  28
+  489.  38
+  490.  38
+  491.  38
+  492.  38
+  493.  15
+  494.  15
+  495.  15
+  496.  15
+  497.  31
+  498.  36
+  499.  39
+  500.  18
+  501.  36
+  502.  38
+  503.  35
+  504.  10
+  505.  31
+  506.  31
+  507.  31
+  508.  31
+  509.  28
+  510.  33
+  511.  12
+  512.  31
+  513.  31
+  514.  37
+  515.  33
+  516.  30
+  517.  36
+  518.  33
+  519.  31
+  520.  28
+  521.  28
+  522.  30
+  523.  31
+  524.  38
+  525.  34
+  526.  12
+  527.  30
+  528.  27
+  529.  21
+  530.  26
+  531.  10
+  532.  25
+  533.  26
+  534.  23
+  535.  20
+  536.  26
+  537.  26
+  538.  10
+  539.  23
+  540.  23
+  541.  27
+  542.  23
+  543.  21
+  544.  26
+  545.  26
+  546.  22
+  547.  25
+  548.  24
+  549.  33
+  550.  36
+  551.  10
+  552.  25
+  553.  26
+  554.  25
+  555.  36
+  556.  31
+  557.  40
+  558.  25
+  559.  33
+  560.  31
+  561.  12
+  562.  12
+  563.  23
+  564.  49
+  565.  46
+  566.  39
+  567.  27
+  568.  29
+  569.  33
+  570.  31
+  571.  30
+  572.  31
+  573.  25
+  574.  31
+  575.  31
+  576.  42
+  577.  28
+  578.  33
+  579.  33
+  580.  27
+  581.  30
+  582.  37
+  583.  33
+  584.  36
+  585.  33
+  586.  31
+  587.  33
+  588.  28
+  589.  29
+  590.  35
+  591.  31
+  592.  34
+  593.  31
+  594.  42
+  595.  43
+  596.  36
+  597.  41
+  598.  30
+  599.  33
+  600.  46
+  601.  33
+  602.  26
+  603.  26
+  604.  24
+  605.  17
+  606.  27
+  607.  26
+  608.  31
+  609.  21
+  610.  26
+  611.  26
+  612.  20
+  613.  27
+  614.  32
+  615.  25
+  616.  26
+  617.  25
+  618.  26
+  619.  23
+  620.  21
+  621.  23
+  622.  38
+  623.  23
+  624.  26
+  625.  24
+  626.  37
+  627.  38
+  628.  29
+  629.  33
+  630.  24
+  631.  23
+  632.  35
+  633.  25
+  634.  26
+  635.  26
+  636.  17
+  637.  23
+  638.  23
+  639.  10
+  640.  12
+  641.  10
+  642.  42
+  643.  37
+  644.  26
+  645.  20
+  646.  23
+  647.  25
+  648.  22
+  649.  19
+  650.  46
+  651.  49
+  652.  32
+  653.  15
+  654.  15
+  655.  15
+  656.  15
+  657.  15
+  658.  15
+  659.  15
+  660.  15
+  661.  15
+  662.  15
+  663.  15
+  664.  15
+  665.  15
+  666.  18
+  667.  15
+  668.  10
+  669.  15
+  670.  15
+  671.  13
+  672.  26
+  673.  25
+  674.  18
+  675.  23
+  676.  28
+  677.  10
+  678.  18
+  679.  28
+  680.  27
+  681.  10
+  682.  23
+  683.  21
+  684.  21
+  685.  28
+  686.  28
+  687.  10
+  688.  16
+  689.  26
+  690.  24
+  691.  26
+  692.  25
+  693.  21
+  694.  22
+  695.  25
+  696.  23
+  697.  32
+  698.  30
+  699.  21
+  700.  21
+  701.  21
+  702.  11
+  703.  19
+  704.  37
+  705.  10
+  706.  23
+  707.  23
+  708.  21
+  709.  21
+  710.  25
+  711.  32
+  712.  32
+  713.  32
+  714.  32
+  715.  26
+  716.  26
+  717.  26
+  718.  25
+  719.  18
+  720.  23
+  721.  28
+  722.  13
+  723.  19
+  724.  27
+  725.  13
+  726.  23
+  727.  21
+  728.  21
+  729.  28
+  730.  16
+  731.  26
+  732.  26
+  733.  25
+  734.  22
+  735.  25
+  736.  23
+  737.  32
+  738.  30
+  739.  10
+  740.  25
+  741.  21
+  742.  25
+  743.  26
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.  15
+  749.  15
+  750.  16
+  751.  19
+  752.  10
+  753.   9
+  754.  11
+  755.   9
+  756.   9
+  757.  10
+  758.   9
+  759.  10
+  760.   8
+  761.  24
+  762.  24
+  763.  24
+  764.  24
+  765.  24
+  766.  24
+  767.  24
+  768.  24
+  769.  24
+  770.  24
+  771.  24
+  772.  15
+  773.  24
+  774.  35
+  775.  35
+  776.  13
+  777.  35
+  778.  24
+  779.  24
+  780.  24
+  781.  35
+  782.  35
+  783.  35
+  784.  35
+  785.  35
+  786.  10
+  787.  35
+  788.  35
+  789.  35
+  790.  35
+  791.  35
+  792.  35
+  793.  35
+  794.  35
+  795.  29
+  796.  35
+  797.  35
+  798.  35
+  799.  33
+  800.  33
+  801.  11
+  802.  11
+  803.  35
+  804.  35
+  805.  35
+  806.  35
+  807.  26
+  808.  24
+  809.  24
+  810.  24
+  811.  22
+  812.  22
+  813.  37
+  814.  43
+  815.  18
+  816.  24
+  817.  37
+  818.  43
+  819.  18
+  820.  24
+  821.  29
+  822.  27
+  823.  35
+  824.  35
+  825.  35
+  826.  35
+  827.  35
+  828.  35
+  829.  35
+  830.  35
+  831.  35
+  832.  35
+  833.  35
+  834.  35
+  835.  35
+  836.  35
+  837.  35
+  838.  35
+  839.  10
+  840.  10
+  841.  10
+  842.  10
+  843.  10
+  844.  35
+  845.  35
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.  26
+  863.  46
+  864.  35
+  865.  35
+  866.  35
+  867.  35
+  868.  35
+  869.  35
+  870.  35
+  871.  35
+  872.  35
+  873.  35
+  874.  35
+  875.  35
+  876.  35
+  877.  35
+  878.  35
+  879.  35
+  880.  35
+  881.  35
+  882.  35
+  883.  35
+  884.  35
+  885.  35
+  886.  35
+  887.  35
+  888.  35
+  889.  35
+  890.  35
+  891.  35
+  892.  15
+  893.  15
+  894.  35
+  895.  28
+  896.  19
+  897.  10
+  898.  11
+  899.  10
+  900.  11
+  901.  20
+  902.  20
+  903.  10
+  904.  11
+  905.  29
+  906.  27
+  907.  11
+  908.  11
+  909.  10
+  910.  11
+  911.  33
+  912.  33
+  913.  11
+  914.  11
+  915.  13
+  916.  17
+  917.  33
+  918.  33
+  919.  11
+  920.  11
+  921.  33
+  922.  33
+  923.  11
+  924.  11
+  925.  26
+  926.  24
+  927.  24
+  928.  24
+  929.  26
+  930.  24
+  931.  24
+  932.  24
+  933.  26
+  934.  24
+  935.  24
+  936.  24
+  937.  16
+  938.  16
+  939.  16
+  940.  16
+  941.  22
+  942.  22
+  943.  22
+  944.  22
+  945.  38
+  946.  38
+  947.  24
+  948.  24
+  949.  38
+  950.  38
+  951.  24
+  952.  24
+  953.  51
+  954.  51
+  955.  39
+  956.  39
+  957.  51
+  958.  51
+  959.  39
+  960.  39
+  961.  27
+  962.  27
+  963.  27
+  964.  27
+  965.  27
+  966.  27
+  967.  27
+  968.  27
+  969.  25
+  970.  21
+  971.  24
+  972.  18
+  973.  25
+  974.  21
+  975.  24
+  976.  18
+  977.  36
+  978.  36
+  979.  12
+  980.  12
+  981.  27
+  982.  27
+  983.  12
+  984.  12
+  985.  28
+  986.  28
+  987.  18
+  988.  18
+  989.  23
+  990.  23
+  991.  10
+  992.  10
+  993.  16
+  994.  16
+  995.  18
+  996.  18
+  997.  24
+  998.  24
+  999.  11
+ 1000.  11
+ 1001.  13
+ 1002.  17
+ 1003.  21
+ 1004.  18
+ 1005.  20
+ 1006.  20
+ 1007.  29
+ 1008.  27
+ 1009.  29
+ 1010.  27
+ 1011.  11
+ 1012.  11
+ 1013.  25
+ 1014.  28
+ 1015.  25
+ 1016.  28
+ 1017.  25
+ 1018.  28
+ 1019.  25
+ 1020.  28
+ 1021.  35
+ 1022.  35
+ 1023.   9
+ 1024.   9
+ 1025.  35
+ 1026.  35
+ 1027.  35
+ 1028.   8
+ 1029.  10
+ 1030.  35
+ 1031.  35
+ 1032.  10
+ 1033.  11
+ 1034.  35
+ 1035.  35
+ 1036.  35
+ 1037.  10
+ 1038.  10
+ 1039.  10
+ 1040.  10
+ 1041.  10
+ 1042.  10
+ 1043.  35
+ 1044.   9
+ 1045.   9
+ 1046.  35
+ 1047.  35
+ 1048.  35
+ 1049.  35
+ 1050.  35
+ 1051.  35
+ 1052.  35
+ 1053.  35
+ 1054.  35
+ 1055.  35
+ 1056.  35
+ 1057.  35
+ 1058.  35
+ 1059.  35
+ 1060.  35
+ 1061.  35
+ 1062.  35
+ 1063.  35
+ 1064.  35
+ 1065.  35
+ 1066.  35
+ 1067.  35
+ 1068.  35
+ 1069.  35
+ 1070.  35
+ 1071.  35
+ 1072.  35
+ 1073.  35
+ 1074.  35
+ 1075.  35
+ 1076.  35
+ 1077.  35
+ 1078.  35
+ 1079.  35
+ 1080.  35
+ 1081.  35
+ 1082.  35
+ 1083.  35
+ 1084.  35
+ 1085.  35
+ 1086.  35
+ 1087.  35
+ 1088.  35
+ 1089.  35
+ 1090.  35
+ 1091.  35
+ 1092.  35
+ 1093.  35
+ 1094.  35
+ 1095.  35
+ 1096.  35
+ 1097.  35
+ 1098.  35
+ 1099.  35
+ 1100.  15
+ 1101.  15
+ 1102.  15
+ 1103.  35
+ 1104.  35
+ 1105.  35
+ 1106.  35
+ 1107.  35
+ 1108.  35
+ 1109.  35
+ 1110.  35
+ 1111.  35
+ 1112.  35
+ 1113.  35
+ 1114.  35
+ 1115.  35
+ 1116.  35
+ 1117.  35
+ 1118.  35
+ 1119.  35
+ 1120.  35
+ 1121.  35
+ 1122.  35
+ 1123.  35
+ 1124.  35
+ 1125.  35
+ 1126.  35
+ 1127.   6
+ 1128.  46
+ 1129.  92
+ 1130.  39
+ 1131.  30
+ 1132.  39
+ 1133.  31
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.  24
+ 1151.  38
+ 1152.  38
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.  10
+ 1188.  31
+ 1189.  26
+ 1190.  31
+ 1191.  26
+ 1192.  31
+ 1193.  26
+ 1194.  31
+ 1195.  26
+ 1196.  31
+ 1197.  26
+ 1198.  31
+ 1199.  26
+ 1200.  31
+ 1201.  26
+ 1202.  31
+ 1203.  26
+ 1204.  31
+ 1205.  26
+ 1206.  31
+ 1207.  26
+ 1208.  31
+ 1209.  26
+ 1210.  31
+ 1211.  26
+ 1212.  31
+ 1213.  26
+ 1214.  31
+ 1215.  26
+ 1216.  31
+ 1217.  26
+ 1218.  31
+ 1219.  26
+ 1220.  31
+ 1221.  26
+ 1222.  31
+ 1223.  26
+ 1224.  31
+ 1225.  26
+ 1226.  31
+ 1227.  26
+ 1228.  12
+ 1229.  10
+ 1230.  12
+ 1231.  10
+ 1232.  36
+ 1233.  26
+ 1234.  36
+ 1235.  26
+ 1236.  36
+ 1237.  26
+ 1238.  36
+ 1239.  26
+ 1240.  36
+ 1241.  26
+ 1242.  36
+ 1243.  26
+ 1244.  36
+ 1245.  26
+ 1246.  39
+ 1247.  30
+ 1248.  39
+ 1249.  30
+ 1250.  39
+ 1251.  30
+ 1252.  39
+ 1253.  30
+ 1254.  39
+ 1255.  30
+ 1256.  33
+ 1257.  26
+ 1258.  33
+ 1259.  26
+ 1260.  39
+ 1261.  31
+ 1262.  39
+ 1263.  31
+ 1264.  39
+ 1265.  31
+ 1266.  39
+ 1267.  31
+ 1268.  39
+ 1269.  31
+ 1270.  30
+ 1271.  23
+ 1272.  30
+ 1273.  23
+ 1274.  30
+ 1275.  23
+ 1276.  31
+ 1277.  26
+ 1278.  12
+ 1279.  10
+ 1280.  36
+ 1281.  26
+ 1282.  33
+ 1283.  26
+ 1284.  33
+ 1285.  26
+ 1286.  33
+ 1287.  26
+ 1288.  33
+ 1289.  26
+ 1290.  33
+ 1291.  26
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.  25
+ 1297.  17
+ 1298.  42
+ 1299.  31
+ 1300.  27
+ 1301.  20
+ 1302.  27
+ 1303.  20
+ 1304.  33
+ 1305.  25
+ 1306.  26
+ 1307.  23
+ 1308.  26
+ 1309.  23
+ 1310.  31
+ 1311.  23
+ 1312.  31
+ 1313.  24
+ 1314.  31
+ 1315.  24
+ 1316.  35
+ 1317.  26
+ 1318.  36
+ 1319.  26
+
+
+	DevRec 16: ppem =  50, maxWid = 100
+    0.  38
+    1.   0
+    2.  14
+    3.  14
+    4.  16
+    5.  18
+    6.  28
+    7.  28
+    8.  44
+    9.  33
+   10.  10
+   11.  17
+   12.  17
+   13.  19
+   14.  29
+   15.  14
+   16.  17
+   17.  14
+   18.  14
+   19.  28
+   20.  28
+   21.  28
+   22.  28
+   23.  28
+   24.  28
+   25.  28
+   26.  28
+   27.  28
+   28.  28
+   29.  14
+   30.  14
+   31.  29
+   32.  29
+   33.  29
+   34.  28
+   35.  51
+   36.  33
+   37.  33
+   38.  36
+   39.  36
+   40.  33
+   41.  31
+   42.  39
+   43.  36
+   44.  14
+   45.  25
+   46.  33
+   47.  28
+   48.  41
+   49.  36
+   50.  39
+   51.  33
+   52.  39
+   53.  36
+   54.  33
+   55.  31
+   56.  36
+   57.  33
+   58.  50
+   59.  33
+   60.  33
+   61.  31
+   62.  14
+   63.  14
+   64.  14
+   65.  22
+   66.  28
+   67.  17
+   68.  28
+   69.  28
+   70.  25
+   71.  28
+   72.  28
+   73.  14
+   74.  28
+   75.  28
+   76.  12
+   77.  10
+   78.  25
+   79.  12
+   80.  40
+   81.  28
+   82.  28
+   83.  28
+   84.  28
+   85.  17
+   86.  25
+   87.  14
+   88.  28
+   89.  25
+   90.  35
+   91.  24
+   92.  25
+   93.  25
+   94.  17
+   95.  12
+   96.  17
+   97.  29
+   98.  33
+   99.  33
+  100.  36
+  101.  33
+  102.  36
+  103.  39
+  104.  36
+  105.  28
+  106.  28
+  107.  28
+  108.  28
+  109.  28
+  110.  28
+  111.  25
+  112.  28
+  113.  28
+  114.  28
+  115.  28
+  116.  14
+  117.  14
+  118.  14
+  119.  14
+  120.  28
+  121.  28
+  122.  28
+  123.  28
+  124.  28
+  125.  28
+  126.  28
+  127.  28
+  128.  28
+  129.  28
+  130.  28
+  131.  20
+  132.  28
+  133.  28
+  134.  28
+  135.  18
+  136.  27
+  137.  31
+  138.  37
+  139.  37
+  140.  50
+  141.  17
+  142.  17
+  143.  27
+  144.  50
+  145.  39
+  146.  36
+  147.  27
+  148.  27
+  149.  27
+  150.  28
+  151.  29
+  152.  25
+  153.  36
+  154.  41
+  155.  27
+  156.  16
+  157.  19
+  158.  18
+  159.  38
+  160.  44
+  161.  31
+  162.  31
+  163.  16
+  164.  29
+  165.  27
+  166.  28
+  167.  27
+  168.  30
+  169.  28
+  170.  28
+  171.  50
+  172.  33
+  173.  33
+  174.  39
+  175.  50
+  176.  47
+  177.  28
+  178.  50
+  179.  17
+  180.  17
+  181.  11
+  182.  11
+  183.  27
+  184.  25
+  185.  25
+  186.  33
+  187.   8
+  188.  28
+  189.  17
+  190.  17
+  191.  25
+  192.  25
+  193.  28
+  194.  14
+  195.  11
+  196.  17
+  197.  50
+  198.  33
+  199.  33
+  200.  33
+  201.  33
+  202.  33
+  203.  14
+  204.  14
+  205.  14
+  206.  14
+  207.  39
+  208.  39
+  209.  39
+  210.  36
+  211.  36
+  212.  36
+  213.  14
+  214.  17
+  215.  15
+  216.  17
+  217.  17
+  218.  17
+  219.  17
+  220.  17
+  221.  17
+  222.  17
+  223.  17
+  224.  28
+  225.  11
+  226.  33
+  227.  25
+  228.  31
+  229.  25
+  230.  12
+  231.  36
+  232.  28
+  233.  33
+  234.  25
+  235.  33
+  236.  28
+  237.  29
+  238.  29
+  239.  17
+  240.  17
+  241.  17
+  242.  42
+  243.  42
+  244.  42
+  245.  28
+  246.  39
+  247.  28
+  248.  14
+  249.  33
+  250.  25
+  251.  36
+  252.  25
+  253.  36
+  254.  25
+  255.  28
+  256.  28
+  257.  17
+  258.  33
+  259.  28
+  260.  33
+  261.  28
+  262.  36
+  263.  31
+  264.  36
+  265.  33
+  266.  28
+  267.  33
+  268.  28
+  269.  28
+  270.  12
+  271.  28
+  272.  15
+  273.  28
+  274.  17
+  275.  36
+  276.  28
+  277.  36
+  278.  28
+  279.  39
+  280.  28
+  281.  36
+  282.  17
+  283.  36
+  284.  17
+  285.  33
+  286.  25
+  287.  31
+  288.  13
+  289.  31
+  290.  19
+  291.  36
+  292.  28
+  293.  36
+  294.  28
+  295.  31
+  296.  25
+  297.  31
+  298.  25
+  299.  28
+  300.  39
+  301.  40
+  302.  29
+  303.  28
+  304.  22
+  305.  31
+  306.  20
+  307.  32
+  308.  28
+  309.  25
+  310.  18
+  311.  54
+  312.  50
+  313.  25
+  314.  50
+  315.  25
+  316.  50
+  317.  25
+  318.  25
+  319.  49
+  320.  36
+  321.  29
+  322.  30
+  323.  29
+  324.  30
+  325.  30
+  326.  35
+  327.  31
+  328.  35
+  329.  35
+  330.  35
+  331.  35
+  332.  35
+  333.  35
+  334.  35
+  335.  35
+  336.  35
+  337.  35
+  338.  35
+  339.  35
+  340.  35
+  341.  35
+  342.  35
+  343.  35
+  344.  35
+  345.  35
+  346.  35
+  347.  35
+  348.  35
+  349.  35
+  350.  35
+  351.  35
+  352.  35
+  353.  35
+  354.  35
+  355.  35
+  356.  35
+  357.  35
+  358.  35
+  359.  35
+  360.  35
+  361.  35
+  362.  35
+  363.  35
+  364.  35
+  365.  35
+  366.  35
+  367.  35
+  368.  35
+  369.  35
+  370.  35
+  371.  35
+  372.  35
+  373.  36
+  374.  30
+  375.  50
+  376.  49
+  377.  49
+  378.  49
+  379.  49
+  380.  30
+  381.  30
+  382.  30
+  383.  51
+  384.  53
+  385.  46
+  386.  38
+  387.  38
+  388.  27
+  389.  33
+  390.  30
+  391.  26
+  392.  25
+  393.  38
+  394.  37
+  395.  22
+  396.  30
+  397.   9
+  398.  18
+  399.  44
+  400.  16
+  401.  30
+  402.  18
+  403.  18
+  404.  30
+  405.  18
+  406.  33
+  407.  28
+  408.  36
+  409.  25
+  410.  36
+  411.  25
+  412.  33
+  413.  28
+  414.  33
+  415.  28
+  416.  33
+  417.  28
+  418.  39
+  419.  28
+  420.  39
+  421.  28
+  422.  39
+  423.  28
+  424.  36
+  425.  28
+  426.  36
+  427.  28
+  428.  14
+  429.  14
+  430.  14
+  431.  14
+  432.  14
+  433.  14
+  434.  14
+  435.  12
+  436.  25
+  437.  10
+  438.  33
+  439.  25
+  440.  25
+  441.  28
+  442.  12
+  443.  36
+  444.  28
+  445.  36
+  446.  28
+  447.  39
+  448.  28
+  449.  39
+  450.  28
+  451.  36
+  452.  17
+  453.  33
+  454.  25
+  455.  31
+  456.  14
+  457.  36
+  458.  28
+  459.  36
+  460.  28
+  461.  36
+  462.  28
+  463.  36
+  464.  28
+  465.  50
+  466.  35
+  467.  33
+  468.  25
+  469.  12
+  470.  33
+  471.  28
+  472.  50
+  473.  44
+  474.  39
+  475.  31
+  476.  12
+  477.  50
+  478.  35
+  479.  50
+  480.  35
+  481.  50
+  482.  35
+  483.  33
+  484.  25
+  485.  11
+  486.  17
+  487.  28
+  488.  30
+  489.  42
+  490.  42
+  491.  42
+  492.  42
+  493.  17
+  494.  17
+  495.  17
+  496.  17
+  497.  33
+  498.  39
+  499.  42
+  500.  19
+  501.  39
+  502.  42
+  503.  38
+  504.  10
+  505.  33
+  506.  33
+  507.  33
+  508.  33
+  509.  31
+  510.  36
+  511.  14
+  512.  33
+  513.  33
+  514.  41
+  515.  36
+  516.  33
+  517.  39
+  518.  36
+  519.  33
+  520.  31
+  521.  31
+  522.  33
+  523.  33
+  524.  42
+  525.  37
+  526.  14
+  527.  33
+  528.  29
+  529.  22
+  530.  28
+  531.  10
+  532.  27
+  533.  29
+  534.  25
+  535.  22
+  536.  28
+  537.  28
+  538.  10
+  539.  25
+  540.  25
+  541.  29
+  542.  25
+  543.  22
+  544.  28
+  545.  28
+  546.  24
+  547.  27
+  548.  26
+  549.  36
+  550.  39
+  551.  10
+  552.  27
+  553.  28
+  554.  27
+  555.  39
+  556.  33
+  557.  43
+  558.  27
+  559.  36
+  560.  33
+  561.  14
+  562.  14
+  563.  25
+  564.  53
+  565.  51
+  566.  43
+  567.  29
+  568.  32
+  569.  36
+  570.  33
+  571.  33
+  572.  33
+  573.  27
+  574.  34
+  575.  33
+  576.  46
+  577.  30
+  578.  36
+  579.  36
+  580.  29
+  581.  33
+  582.  41
+  583.  36
+  584.  39
+  585.  36
+  586.  33
+  587.  36
+  588.  31
+  589.  32
+  590.  38
+  591.  33
+  592.  37
+  593.  33
+  594.  46
+  595.  47
+  596.  40
+  597.  44
+  598.  33
+  599.  36
+  600.  51
+  601.  36
+  602.  28
+  603.  29
+  604.  27
+  605.  18
+  606.  29
+  607.  28
+  608.  33
+  609.  23
+  610.  28
+  611.  28
+  612.  22
+  613.  29
+  614.  34
+  615.  28
+  616.  28
+  617.  27
+  618.  28
+  619.  25
+  620.  23
+  621.  25
+  622.  41
+  623.  24
+  624.  29
+  625.  26
+  626.  40
+  627.  41
+  628.  31
+  629.  36
+  630.  26
+  631.  26
+  632.  38
+  633.  27
+  634.  28
+  635.  28
+  636.  18
+  637.  26
+  638.  25
+  639.  12
+  640.  14
+  641.  10
+  642.  45
+  643.  41
+  644.  28
+  645.  22
+  646.  25
+  647.  28
+  648.  24
+  649.  21
+  650.  50
+  651.  54
+  652.  35
+  653.  17
+  654.  17
+  655.  17
+  656.  17
+  657.  17
+  658.  17
+  659.  17
+  660.  17
+  661.  17
+  662.  17
+  663.  17
+  664.  17
+  665.  17
+  666.  19
+  667.  17
+  668.  13
+  669.  17
+  670.  17
+  671.  14
+  672.  28
+  673.  27
+  674.  20
+  675.  25
+  676.  30
+  677.  13
+  678.  19
+  679.  30
+  680.  30
+  681.  13
+  682.  25
+  683.  23
+  684.  23
+  685.  30
+  686.  30
+  687.  13
+  688.  18
+  689.  29
+  690.  26
+  691.  28
+  692.  27
+  693.  23
+  694.  24
+  695.  27
+  696.  25
+  697.  35
+  698.  32
+  699.  26
+  700.  26
+  701.  26
+  702.  12
+  703.  21
+  704.  42
+  705.  13
+  706.  25
+  707.  25
+  708.  23
+  709.  23
+  710.  27
+  711.  35
+  712.  35
+  713.  35
+  714.  35
+  715.  28
+  716.  28
+  717.  28
+  718.  27
+  719.  20
+  720.  25
+  721.  30
+  722.  14
+  723.  21
+  724.  30
+  725.  14
+  726.  25
+  727.  23
+  728.  23
+  729.  30
+  730.  18
+  731.  29
+  732.  28
+  733.  27
+  734.  24
+  735.  27
+  736.  25
+  737.  35
+  738.  32
+  739.  13
+  740.  27
+  741.  23
+  742.  27
+  743.  29
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.  16
+  749.  16
+  750.  18
+  751.  21
+  752.  10
+  753.  10
+  754.  12
+  755.  10
+  756.  10
+  757.  10
+  758.  10
+  759.  11
+  760.   8
+  761.  26
+  762.  26
+  763.  26
+  764.  26
+  765.  26
+  766.  26
+  767.  26
+  768.  26
+  769.  26
+  770.  26
+  771.  26
+  772.  16
+  773.  26
+  774.  38
+  775.  38
+  776.  14
+  777.  38
+  778.  26
+  779.  26
+  780.  26
+  781.  38
+  782.  38
+  783.  38
+  784.  38
+  785.  38
+  786.  11
+  787.  38
+  788.  38
+  789.  38
+  790.  38
+  791.  38
+  792.  38
+  793.  38
+  794.  38
+  795.  32
+  796.  38
+  797.  38
+  798.  38
+  799.  36
+  800.  36
+  801.  12
+  802.  12
+  803.  38
+  804.  38
+  805.  38
+  806.  38
+  807.  28
+  808.  26
+  809.  26
+  810.  26
+  811.  24
+  812.  24
+  813.  41
+  814.  47
+  815.  20
+  816.  26
+  817.  41
+  818.  47
+  819.  20
+  820.  26
+  821.  32
+  822.  29
+  823.  38
+  824.  38
+  825.  38
+  826.  38
+  827.  38
+  828.  38
+  829.  38
+  830.  38
+  831.  38
+  832.  38
+  833.  38
+  834.  38
+  835.  38
+  836.  38
+  837.  38
+  838.  38
+  839.  11
+  840.  11
+  841.  11
+  842.  11
+  843.  11
+  844.  38
+  845.  38
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.  28
+  863.  50
+  864.  38
+  865.  38
+  866.  38
+  867.  38
+  868.  38
+  869.  38
+  870.  38
+  871.  38
+  872.  38
+  873.  38
+  874.  38
+  875.  38
+  876.  38
+  877.  38
+  878.  38
+  879.  38
+  880.  38
+  881.  38
+  882.  38
+  883.  38
+  884.  38
+  885.  38
+  886.  38
+  887.  38
+  888.  38
+  889.  38
+  890.  38
+  891.  38
+  892.  16
+  893.  16
+  894.  38
+  895.  31
+  896.  21
+  897.  10
+  898.  11
+  899.  10
+  900.  11
+  901.  22
+  902.  22
+  903.  10
+  904.  11
+  905.  32
+  906.  29
+  907.  12
+  908.  12
+  909.  10
+  910.  11
+  911.  36
+  912.  36
+  913.  12
+  914.  12
+  915.  14
+  916.  19
+  917.  36
+  918.  36
+  919.  12
+  920.  12
+  921.  36
+  922.  36
+  923.  12
+  924.  12
+  925.  28
+  926.  26
+  927.  26
+  928.  26
+  929.  28
+  930.  26
+  931.  26
+  932.  26
+  933.  28
+  934.  26
+  935.  26
+  936.  26
+  937.  17
+  938.  17
+  939.  17
+  940.  17
+  941.  24
+  942.  24
+  943.  24
+  944.  24
+  945.  41
+  946.  41
+  947.  27
+  948.  27
+  949.  41
+  950.  41
+  951.  27
+  952.  27
+  953.  55
+  954.  55
+  955.  42
+  956.  42
+  957.  55
+  958.  55
+  959.  42
+  960.  42
+  961.  29
+  962.  29
+  963.  29
+  964.  29
+  965.  29
+  966.  29
+  967.  29
+  968.  29
+  969.  27
+  970.  23
+  971.  26
+  972.  20
+  973.  27
+  974.  23
+  975.  26
+  976.  20
+  977.  39
+  978.  39
+  979.  13
+  980.  13
+  981.  29
+  982.  29
+  983.  13
+  984.  13
+  985.  30
+  986.  30
+  987.  20
+  988.  20
+  989.  25
+  990.  25
+  991.  10
+  992.  10
+  993.  17
+  994.  17
+  995.  20
+  996.  20
+  997.  26
+  998.  26
+  999.  12
+ 1000.  12
+ 1001.  14
+ 1002.  19
+ 1003.  23
+ 1004.  20
+ 1005.  22
+ 1006.  22
+ 1007.  32
+ 1008.  29
+ 1009.  32
+ 1010.  29
+ 1011.  12
+ 1012.  12
+ 1013.  27
+ 1014.  30
+ 1015.  27
+ 1016.  30
+ 1017.  27
+ 1018.  30
+ 1019.  27
+ 1020.  30
+ 1021.  38
+ 1022.  38
+ 1023.  10
+ 1024.  10
+ 1025.  38
+ 1026.  38
+ 1027.  38
+ 1028.   8
+ 1029.  11
+ 1030.  38
+ 1031.  38
+ 1032.  10
+ 1033.  12
+ 1034.  38
+ 1035.  38
+ 1036.  38
+ 1037.  11
+ 1038.  11
+ 1039.  11
+ 1040.  11
+ 1041.  11
+ 1042.  11
+ 1043.  38
+ 1044.  10
+ 1045.  10
+ 1046.  38
+ 1047.  38
+ 1048.  38
+ 1049.  38
+ 1050.  38
+ 1051.  38
+ 1052.  38
+ 1053.  38
+ 1054.  38
+ 1055.  38
+ 1056.  38
+ 1057.  38
+ 1058.  38
+ 1059.  38
+ 1060.  38
+ 1061.  38
+ 1062.  38
+ 1063.  38
+ 1064.  38
+ 1065.  38
+ 1066.  38
+ 1067.  38
+ 1068.  38
+ 1069.  38
+ 1070.  38
+ 1071.  38
+ 1072.  38
+ 1073.  38
+ 1074.  38
+ 1075.  38
+ 1076.  38
+ 1077.  38
+ 1078.  38
+ 1079.  38
+ 1080.  38
+ 1081.  38
+ 1082.  38
+ 1083.  38
+ 1084.  38
+ 1085.  38
+ 1086.  38
+ 1087.  38
+ 1088.  38
+ 1089.  38
+ 1090.  38
+ 1091.  38
+ 1092.  38
+ 1093.  38
+ 1094.  38
+ 1095.  38
+ 1096.  38
+ 1097.  38
+ 1098.  38
+ 1099.  38
+ 1100.  16
+ 1101.  16
+ 1102.  16
+ 1103.  38
+ 1104.  38
+ 1105.  38
+ 1106.  38
+ 1107.  38
+ 1108.  38
+ 1109.  38
+ 1110.  38
+ 1111.  38
+ 1112.  38
+ 1113.  38
+ 1114.  38
+ 1115.  38
+ 1116.  38
+ 1117.  38
+ 1118.  38
+ 1119.  38
+ 1120.  38
+ 1121.  38
+ 1122.  38
+ 1123.  38
+ 1124.  38
+ 1125.  38
+ 1126.  38
+ 1127.   6
+ 1128.  50
+ 1129. 100
+ 1130.  43
+ 1131.  33
+ 1132.  43
+ 1133.  33
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.  26
+ 1151.  42
+ 1152.  42
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.  12
+ 1188.  33
+ 1189.  28
+ 1190.  33
+ 1191.  28
+ 1192.  33
+ 1193.  28
+ 1194.  33
+ 1195.  28
+ 1196.  33
+ 1197.  28
+ 1198.  33
+ 1199.  28
+ 1200.  33
+ 1201.  28
+ 1202.  33
+ 1203.  28
+ 1204.  33
+ 1205.  28
+ 1206.  33
+ 1207.  28
+ 1208.  33
+ 1209.  28
+ 1210.  33
+ 1211.  28
+ 1212.  33
+ 1213.  28
+ 1214.  33
+ 1215.  28
+ 1216.  33
+ 1217.  28
+ 1218.  33
+ 1219.  28
+ 1220.  33
+ 1221.  28
+ 1222.  33
+ 1223.  28
+ 1224.  33
+ 1225.  28
+ 1226.  33
+ 1227.  28
+ 1228.  14
+ 1229.  12
+ 1230.  14
+ 1231.  12
+ 1232.  39
+ 1233.  28
+ 1234.  39
+ 1235.  28
+ 1236.  39
+ 1237.  28
+ 1238.  39
+ 1239.  28
+ 1240.  39
+ 1241.  28
+ 1242.  39
+ 1243.  28
+ 1244.  39
+ 1245.  28
+ 1246.  43
+ 1247.  33
+ 1248.  43
+ 1249.  33
+ 1250.  43
+ 1251.  33
+ 1252.  43
+ 1253.  33
+ 1254.  43
+ 1255.  33
+ 1256.  36
+ 1257.  28
+ 1258.  36
+ 1259.  28
+ 1260.  43
+ 1261.  33
+ 1262.  43
+ 1263.  33
+ 1264.  43
+ 1265.  33
+ 1266.  43
+ 1267.  33
+ 1268.  43
+ 1269.  33
+ 1270.  33
+ 1271.  25
+ 1272.  33
+ 1273.  25
+ 1274.  33
+ 1275.  25
+ 1276.  33
+ 1277.  28
+ 1278.  14
+ 1279.  12
+ 1280.  39
+ 1281.  28
+ 1282.  36
+ 1283.  28
+ 1284.  36
+ 1285.  28
+ 1286.  36
+ 1287.  28
+ 1288.  36
+ 1289.  28
+ 1290.  36
+ 1291.  28
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.  27
+ 1297.  18
+ 1298.  46
+ 1299.  33
+ 1300.  29
+ 1301.  22
+ 1302.  29
+ 1303.  22
+ 1304.  36
+ 1305.  28
+ 1306.  28
+ 1307.  25
+ 1308.  28
+ 1309.  25
+ 1310.  33
+ 1311.  25
+ 1312.  33
+ 1313.  26
+ 1314.  33
+ 1315.  26
+ 1316.  38
+ 1317.  28
+ 1318.  39
+ 1319.  28
+
+
+	DevRec 17: ppem =  54, maxWid = 108
+    0.  41
+    1.   0
+    2.  15
+    3.  15
+    4.  17
+    5.  19
+    6.  30
+    7.  30
+    8.  48
+    9.  36
+   10.  10
+   11.  18
+   12.  18
+   13.  21
+   14.  32
+   15.  15
+   16.  18
+   17.  15
+   18.  15
+   19.  30
+   20.  30
+   21.  30
+   22.  30
+   23.  30
+   24.  30
+   25.  30
+   26.  30
+   27.  30
+   28.  30
+   29.  15
+   30.  15
+   31.  32
+   32.  32
+   33.  32
+   34.  30
+   35.  55
+   36.  36
+   37.  36
+   38.  39
+   39.  39
+   40.  36
+   41.  33
+   42.  42
+   43.  39
+   44.  15
+   45.  27
+   46.  36
+   47.  30
+   48.  45
+   49.  39
+   50.  42
+   51.  36
+   52.  42
+   53.  39
+   54.  36
+   55.  33
+   56.  39
+   57.  36
+   58.  54
+   59.  35
+   60.  35
+   61.  33
+   62.  15
+   63.  15
+   64.  15
+   65.  24
+   66.  30
+   67.  18
+   68.  30
+   69.  30
+   70.  27
+   71.  30
+   72.  30
+   73.  15
+   74.  30
+   75.  29
+   76.  13
+   77.  13
+   78.  27
+   79.  13
+   80.  45
+   81.  29
+   82.  30
+   83.  30
+   84.  30
+   85.  18
+   86.  27
+   87.  15
+   88.  29
+   89.  27
+   90.  39
+   91.  26
+   92.  27
+   93.  26
+   94.  18
+   95.  14
+   96.  18
+   97.  32
+   98.  36
+   99.  36
+  100.  39
+  101.  36
+  102.  39
+  103.  42
+  104.  39
+  105.  30
+  106.  30
+  107.  30
+  108.  30
+  109.  30
+  110.  30
+  111.  27
+  112.  30
+  113.  30
+  114.  30
+  115.  30
+  116.  15
+  117.  15
+  118.  15
+  119.  15
+  120.  29
+  121.  30
+  122.  30
+  123.  30
+  124.  30
+  125.  30
+  126.  29
+  127.  29
+  128.  29
+  129.  29
+  130.  30
+  131.  22
+  132.  30
+  133.  30
+  134.  30
+  135.  19
+  136.  29
+  137.  33
+  138.  40
+  139.  40
+  140.  54
+  141.  18
+  142.  18
+  143.  30
+  144.  54
+  145.  42
+  146.  39
+  147.  30
+  148.  30
+  149.  30
+  150.  30
+  151.  31
+  152.  27
+  153.  39
+  154.  44
+  155.  30
+  156.  16
+  157.  20
+  158.  20
+  159.  41
+  160.  48
+  161.  33
+  162.  33
+  163.  17
+  164.  32
+  165.  29
+  166.  30
+  167.  30
+  168.  34
+  169.  30
+  170.  30
+  171.  54
+  172.  36
+  173.  36
+  174.  42
+  175.  54
+  176.  51
+  177.  30
+  178.  54
+  179.  18
+  180.  18
+  181.  12
+  182.  12
+  183.  30
+  184.  27
+  185.  27
+  186.  35
+  187.   9
+  188.  30
+  189.  18
+  190.  18
+  191.  27
+  192.  27
+  193.  30
+  194.  15
+  195.  12
+  196.  18
+  197.  53
+  198.  36
+  199.  36
+  200.  36
+  201.  36
+  202.  36
+  203.  15
+  204.  15
+  205.  15
+  206.  15
+  207.  42
+  208.  42
+  209.  42
+  210.  39
+  211.  39
+  212.  39
+  213.  15
+  214.  18
+  215.  16
+  216.  18
+  217.  18
+  218.  18
+  219.  18
+  220.  18
+  221.  18
+  222.  18
+  223.  18
+  224.  30
+  225.  12
+  226.  36
+  227.  27
+  228.  33
+  229.  26
+  230.  14
+  231.  39
+  232.  30
+  233.  35
+  234.  27
+  235.  36
+  236.  30
+  237.  32
+  238.  32
+  239.  18
+  240.  18
+  241.  18
+  242.  45
+  243.  45
+  244.  45
+  245.  30
+  246.  42
+  247.  30
+  248.  15
+  249.  36
+  250.  27
+  251.  39
+  252.  27
+  253.  39
+  254.  27
+  255.  30
+  256.  30
+  257.  18
+  258.  36
+  259.  30
+  260.  36
+  261.  30
+  262.  39
+  263.  33
+  264.  39
+  265.  36
+  266.  30
+  267.  36
+  268.  30
+  269.  30
+  270.  13
+  271.  30
+  272.  16
+  273.  30
+  274.  18
+  275.  39
+  276.  29
+  277.  39
+  278.  29
+  279.  42
+  280.  30
+  281.  39
+  282.  18
+  283.  39
+  284.  18
+  285.  36
+  286.  27
+  287.  33
+  288.  15
+  289.  33
+  290.  20
+  291.  39
+  292.  29
+  293.  39
+  294.  29
+  295.  33
+  296.  26
+  297.  33
+  298.  26
+  299.  30
+  300.  42
+  301.  43
+  302.  31
+  303.  30
+  304.  24
+  305.  33
+  306.  21
+  307.  35
+  308.  30
+  309.  27
+  310.  20
+  311.  59
+  312.  54
+  313.  27
+  314.  54
+  315.  27
+  316.  54
+  317.  27
+  318.  27
+  319.  53
+  320.  39
+  321.  32
+  322.  33
+  323.  32
+  324.  33
+  325.  33
+  326.  38
+  327.  34
+  328.  38
+  329.  38
+  330.  38
+  331.  38
+  332.  38
+  333.  38
+  334.  38
+  335.  38
+  336.  38
+  337.  38
+  338.  38
+  339.  38
+  340.  38
+  341.  38
+  342.  38
+  343.  38
+  344.  38
+  345.  38
+  346.  38
+  347.  38
+  348.  38
+  349.  38
+  350.  38
+  351.  38
+  352.  38
+  353.  38
+  354.  38
+  355.  38
+  356.  38
+  357.  38
+  358.  38
+  359.  38
+  360.  38
+  361.  38
+  362.  38
+  363.  38
+  364.  38
+  365.  38
+  366.  38
+  367.  38
+  368.  38
+  369.  38
+  370.  38
+  371.  38
+  372.  38
+  373.  39
+  374.  33
+  375.  54
+  376.  53
+  377.  53
+  378.  53
+  379.  53
+  380.  33
+  381.  33
+  382.  33
+  383.  55
+  384.  57
+  385.  49
+  386.  41
+  387.  41
+  388.  29
+  389.  35
+  390.  32
+  391.  28
+  392.  27
+  393.  41
+  394.  40
+  395.  24
+  396.  33
+  397.  10
+  398.  19
+  399.  48
+  400.  17
+  401.  33
+  402.  19
+  403.  19
+  404.  33
+  405.  19
+  406.  36
+  407.  30
+  408.  39
+  409.  27
+  410.  39
+  411.  27
+  412.  36
+  413.  30
+  414.  36
+  415.  30
+  416.  36
+  417.  30
+  418.  42
+  419.  30
+  420.  42
+  421.  30
+  422.  42
+  423.  30
+  424.  39
+  425.  29
+  426.  39
+  427.  29
+  428.  15
+  429.  15
+  430.  15
+  431.  15
+  432.  15
+  433.  15
+  434.  15
+  435.  13
+  436.  27
+  437.  13
+  438.  36
+  439.  27
+  440.  27
+  441.  30
+  442.  13
+  443.  39
+  444.  29
+  445.  39
+  446.  30
+  447.  42
+  448.  30
+  449.  42
+  450.  30
+  451.  39
+  452.  18
+  453.  36
+  454.  27
+  455.  33
+  456.  15
+  457.  39
+  458.  29
+  459.  39
+  460.  29
+  461.  39
+  462.  29
+  463.  39
+  464.  29
+  465.  54
+  466.  39
+  467.  35
+  468.  27
+  469.  13
+  470.  36
+  471.  30
+  472.  54
+  473.  48
+  474.  42
+  475.  33
+  476.  15
+  477.  54
+  478.  39
+  479.  54
+  480.  39
+  481.  54
+  482.  39
+  483.  35
+  484.  27
+  485.  12
+  486.  18
+  487.  30
+  488.  32
+  489.  45
+  490.  45
+  491.  45
+  492.  45
+  493.  18
+  494.  18
+  495.  18
+  496.  18
+  497.  36
+  498.  42
+  499.  45
+  500.  21
+  501.  42
+  502.  44
+  503.  41
+  504.  13
+  505.  36
+  506.  36
+  507.  36
+  508.  36
+  509.  33
+  510.  39
+  511.  15
+  512.  36
+  513.  36
+  514.  45
+  515.  39
+  516.  35
+  517.  42
+  518.  39
+  519.  36
+  520.  33
+  521.  33
+  522.  35
+  523.  35
+  524.  45
+  525.  40
+  526.  15
+  527.  35
+  528.  31
+  529.  24
+  530.  30
+  531.  13
+  532.  30
+  533.  31
+  534.  27
+  535.  24
+  536.  30
+  537.  30
+  538.  13
+  539.  27
+  540.  27
+  541.  31
+  542.  27
+  543.  24
+  544.  30
+  545.  31
+  546.  26
+  547.  30
+  548.  28
+  549.  39
+  550.  42
+  551.  13
+  552.  30
+  553.  30
+  554.  30
+  555.  42
+  556.  36
+  557.  47
+  558.  29
+  559.  39
+  560.  36
+  561.  15
+  562.  15
+  563.  27
+  564.  57
+  565.  55
+  566.  45
+  567.  31
+  568.  34
+  569.  39
+  570.  36
+  571.  35
+  572.  36
+  573.  29
+  574.  37
+  575.  36
+  576.  50
+  577.  33
+  578.  39
+  579.  39
+  580.  31
+  581.  35
+  582.  45
+  583.  39
+  584.  42
+  585.  39
+  586.  36
+  587.  39
+  588.  33
+  589.  34
+  590.  41
+  591.  35
+  592.  40
+  593.  36
+  594.  49
+  595.  51
+  596.  43
+  597.  48
+  598.  35
+  599.  39
+  600.  55
+  601.  39
+  602.  30
+  603.  31
+  604.  29
+  605.  20
+  606.  32
+  607.  30
+  608.  36
+  609.  25
+  610.  29
+  611.  29
+  612.  24
+  613.  31
+  614.  37
+  615.  29
+  616.  30
+  617.  28
+  618.  30
+  619.  27
+  620.  25
+  621.  27
+  622.  44
+  623.  26
+  624.  31
+  625.  28
+  626.  43
+  627.  44
+  628.  34
+  629.  39
+  630.  28
+  631.  28
+  632.  41
+  633.  29
+  634.  30
+  635.  29
+  636.  20
+  637.  28
+  638.  27
+  639.  13
+  640.  15
+  641.  13
+  642.  49
+  643.  44
+  644.  29
+  645.  24
+  646.  27
+  647.  29
+  648.  26
+  649.  22
+  650.  54
+  651.  58
+  652.  37
+  653.  18
+  654.  18
+  655.  18
+  656.  18
+  657.  18
+  658.  18
+  659.  18
+  660.  18
+  661.  18
+  662.  18
+  663.  18
+  664.  18
+  665.  18
+  666.  21
+  667.  18
+  668.  13
+  669.  18
+  670.  18
+  671.  15
+  672.  30
+  673.  29
+  674.  22
+  675.  27
+  676.  33
+  677.  13
+  678.  21
+  679.  32
+  680.  32
+  681.  13
+  682.  28
+  683.  25
+  684.  25
+  685.  32
+  686.  32
+  687.  13
+  688.  19
+  689.  31
+  690.  29
+  691.  31
+  692.  30
+  693.  25
+  694.  26
+  695.  30
+  696.  28
+  697.  38
+  698.  35
+  699.  26
+  700.  26
+  701.  26
+  702.  13
+  703.  23
+  704.  42
+  705.  13
+  706.  28
+  707.  28
+  708.  25
+  709.  25
+  710.  29
+  711.  38
+  712.  38
+  713.  38
+  714.  38
+  715.  30
+  716.  30
+  717.  30
+  718.  29
+  719.  22
+  720.  27
+  721.  33
+  722.  15
+  723.  22
+  724.  32
+  725.  15
+  726.  28
+  727.  25
+  728.  25
+  729.  32
+  730.  19
+  731.  31
+  732.  31
+  733.  30
+  734.  26
+  735.  30
+  736.  28
+  737.  38
+  738.  35
+  739.  13
+  740.  29
+  741.  25
+  742.  30
+  743.  31
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.  17
+  749.  17
+  750.  19
+  751.  22
+  752.  11
+  753.  11
+  754.  13
+  755.  11
+  756.  11
+  757.  11
+  758.  11
+  759.  11
+  760.   9
+  761.  28
+  762.  28
+  763.  28
+  764.  28
+  765.  28
+  766.  28
+  767.  28
+  768.  28
+  769.  28
+  770.  28
+  771.  28
+  772.  17
+  773.  28
+  774.  41
+  775.  41
+  776.  15
+  777.  41
+  778.  28
+  779.  28
+  780.  28
+  781.  41
+  782.  41
+  783.  41
+  784.  41
+  785.  41
+  786.  11
+  787.  41
+  788.  41
+  789.  41
+  790.  41
+  791.  41
+  792.  41
+  793.  41
+  794.  41
+  795.  34
+  796.  41
+  797.  41
+  798.  41
+  799.  39
+  800.  39
+  801.  13
+  802.  13
+  803.  41
+  804.  41
+  805.  41
+  806.  41
+  807.  30
+  808.  28
+  809.  29
+  810.  29
+  811.  26
+  812.  26
+  813.  44
+  814.  50
+  815.  21
+  816.  28
+  817.  44
+  818.  50
+  819.  21
+  820.  28
+  821.  34
+  822.  32
+  823.  41
+  824.  41
+  825.  41
+  826.  41
+  827.  41
+  828.  41
+  829.  41
+  830.  41
+  831.  41
+  832.  41
+  833.  41
+  834.  41
+  835.  41
+  836.  41
+  837.  41
+  838.  41
+  839.  12
+  840.  11
+  841.  11
+  842.  11
+  843.  11
+  844.  41
+  845.  41
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.  30
+  863.  54
+  864.  41
+  865.  41
+  866.  41
+  867.  41
+  868.  41
+  869.  41
+  870.  41
+  871.  41
+  872.  41
+  873.  41
+  874.  41
+  875.  41
+  876.  41
+  877.  41
+  878.  41
+  879.  41
+  880.  41
+  881.  41
+  882.  41
+  883.  41
+  884.  41
+  885.  41
+  886.  41
+  887.  41
+  888.  41
+  889.  41
+  890.  41
+  891.  41
+  892.  17
+  893.  17
+  894.  41
+  895.  33
+  896.  22
+  897.  11
+  898.  12
+  899.  11
+  900.  12
+  901.  23
+  902.  23
+  903.  11
+  904.  12
+  905.  34
+  906.  32
+  907.  13
+  908.  13
+  909.  11
+  910.  12
+  911.  39
+  912.  39
+  913.  13
+  914.  13
+  915.  15
+  916.  20
+  917.  39
+  918.  39
+  919.  13
+  920.  13
+  921.  39
+  922.  39
+  923.  13
+  924.  13
+  925.  30
+  926.  28
+  927.  29
+  928.  29
+  929.  30
+  930.  28
+  931.  29
+  932.  29
+  933.  30
+  934.  28
+  935.  29
+  936.  29
+  937.  18
+  938.  18
+  939.  18
+  940.  18
+  941.  26
+  942.  26
+  943.  26
+  944.  26
+  945.  44
+  946.  44
+  947.  29
+  948.  29
+  949.  44
+  950.  44
+  951.  29
+  952.  29
+  953.  59
+  954.  59
+  955.  46
+  956.  46
+  957.  59
+  958.  59
+  959.  46
+  960.  46
+  961.  31
+  962.  31
+  963.  31
+  964.  31
+  965.  31
+  966.  31
+  967.  31
+  968.  31
+  969.  29
+  970.  24
+  971.  28
+  972.  21
+  973.  29
+  974.  24
+  975.  28
+  976.  21
+  977.  43
+  978.  43
+  979.  14
+  980.  14
+  981.  31
+  982.  31
+  983.  14
+  984.  14
+  985.  32
+  986.  32
+  987.  21
+  988.  21
+  989.  27
+  990.  27
+  991.  11
+  992.  11
+  993.  18
+  994.  18
+  995.  21
+  996.  21
+  997.  28
+  998.  28
+  999.  13
+ 1000.  13
+ 1001.  15
+ 1002.  20
+ 1003.  24
+ 1004.  21
+ 1005.  23
+ 1006.  23
+ 1007.  34
+ 1008.  32
+ 1009.  34
+ 1010.  32
+ 1011.  13
+ 1012.  13
+ 1013.  29
+ 1014.  32
+ 1015.  29
+ 1016.  32
+ 1017.  29
+ 1018.  32
+ 1019.  29
+ 1020.  32
+ 1021.  41
+ 1022.  41
+ 1023.  11
+ 1024.  11
+ 1025.  41
+ 1026.  41
+ 1027.  41
+ 1028.   9
+ 1029.  11
+ 1030.  41
+ 1031.  41
+ 1032.  11
+ 1033.  13
+ 1034.  41
+ 1035.  41
+ 1036.  41
+ 1037.  11
+ 1038.  11
+ 1039.  11
+ 1040.  11
+ 1041.  11
+ 1042.  12
+ 1043.  41
+ 1044.  11
+ 1045.  11
+ 1046.  41
+ 1047.  41
+ 1048.  41
+ 1049.  41
+ 1050.  41
+ 1051.  41
+ 1052.  41
+ 1053.  41
+ 1054.  41
+ 1055.  41
+ 1056.  41
+ 1057.  41
+ 1058.  41
+ 1059.  41
+ 1060.  41
+ 1061.  41
+ 1062.  41
+ 1063.  41
+ 1064.  41
+ 1065.  41
+ 1066.  41
+ 1067.  41
+ 1068.  41
+ 1069.  41
+ 1070.  41
+ 1071.  41
+ 1072.  41
+ 1073.  41
+ 1074.  41
+ 1075.  41
+ 1076.  41
+ 1077.  41
+ 1078.  41
+ 1079.  41
+ 1080.  41
+ 1081.  41
+ 1082.  41
+ 1083.  41
+ 1084.  41
+ 1085.  41
+ 1086.  41
+ 1087.  41
+ 1088.  41
+ 1089.  41
+ 1090.  41
+ 1091.  41
+ 1092.  41
+ 1093.  41
+ 1094.  41
+ 1095.  41
+ 1096.  41
+ 1097.  41
+ 1098.  41
+ 1099.  41
+ 1100.  17
+ 1101.  17
+ 1102.  17
+ 1103.  41
+ 1104.  41
+ 1105.  41
+ 1106.  41
+ 1107.  41
+ 1108.  41
+ 1109.  41
+ 1110.  41
+ 1111.  41
+ 1112.  41
+ 1113.  41
+ 1114.  41
+ 1115.  41
+ 1116.  41
+ 1117.  41
+ 1118.  41
+ 1119.  41
+ 1120.  41
+ 1121.  41
+ 1122.  41
+ 1123.  41
+ 1124.  41
+ 1125.  41
+ 1126.  41
+ 1127.   7
+ 1128.  54
+ 1129. 108
+ 1130.  46
+ 1131.  35
+ 1132.  46
+ 1133.  36
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.  28
+ 1151.  45
+ 1152.  45
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.  13
+ 1188.  36
+ 1189.  30
+ 1190.  36
+ 1191.  30
+ 1192.  36
+ 1193.  30
+ 1194.  36
+ 1195.  30
+ 1196.  36
+ 1197.  30
+ 1198.  36
+ 1199.  30
+ 1200.  36
+ 1201.  30
+ 1202.  36
+ 1203.  30
+ 1204.  36
+ 1205.  30
+ 1206.  36
+ 1207.  30
+ 1208.  36
+ 1209.  30
+ 1210.  36
+ 1211.  30
+ 1212.  36
+ 1213.  30
+ 1214.  36
+ 1215.  30
+ 1216.  36
+ 1217.  30
+ 1218.  36
+ 1219.  30
+ 1220.  36
+ 1221.  30
+ 1222.  36
+ 1223.  30
+ 1224.  36
+ 1225.  30
+ 1226.  36
+ 1227.  30
+ 1228.  15
+ 1229.  13
+ 1230.  15
+ 1231.  13
+ 1232.  42
+ 1233.  30
+ 1234.  42
+ 1235.  30
+ 1236.  42
+ 1237.  30
+ 1238.  42
+ 1239.  30
+ 1240.  42
+ 1241.  30
+ 1242.  42
+ 1243.  30
+ 1244.  42
+ 1245.  30
+ 1246.  46
+ 1247.  35
+ 1248.  46
+ 1249.  35
+ 1250.  46
+ 1251.  35
+ 1252.  46
+ 1253.  35
+ 1254.  46
+ 1255.  35
+ 1256.  39
+ 1257.  29
+ 1258.  39
+ 1259.  29
+ 1260.  46
+ 1261.  36
+ 1262.  46
+ 1263.  36
+ 1264.  46
+ 1265.  36
+ 1266.  46
+ 1267.  36
+ 1268.  46
+ 1269.  36
+ 1270.  35
+ 1271.  27
+ 1272.  35
+ 1273.  27
+ 1274.  35
+ 1275.  27
+ 1276.  36
+ 1277.  30
+ 1278.  15
+ 1279.  13
+ 1280.  42
+ 1281.  30
+ 1282.  39
+ 1283.  29
+ 1284.  39
+ 1285.  29
+ 1286.  39
+ 1287.  29
+ 1288.  39
+ 1289.  29
+ 1290.  39
+ 1291.  29
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.  29
+ 1297.  20
+ 1298.  50
+ 1299.  36
+ 1300.  31
+ 1301.  24
+ 1302.  31
+ 1303.  24
+ 1304.  39
+ 1305.  30
+ 1306.  30
+ 1307.  27
+ 1308.  30
+ 1309.  27
+ 1310.  36
+ 1311.  27
+ 1312.  36
+ 1313.  28
+ 1314.  36
+ 1315.  28
+ 1316.  41
+ 1317.  30
+ 1318.  42
+ 1319.  30
+
+
+	DevRec 18: ppem =  58, maxWid = 116
+    0.  44
+    1.   0
+    2.  16
+    3.  16
+    4.  19
+    5.  21
+    6.  32
+    7.  32
+    8.  52
+    9.  39
+   10.  11
+   11.  19
+   12.  19
+   13.  23
+   14.  34
+   15.  16
+   16.  19
+   17.  16
+   18.  16
+   19.  32
+   20.  32
+   21.  32
+   22.  32
+   23.  32
+   24.  32
+   25.  32
+   26.  32
+   27.  32
+   28.  32
+   29.  16
+   30.  16
+   31.  34
+   32.  34
+   33.  34
+   34.  32
+   35.  59
+   36.  39
+   37.  39
+   38.  42
+   39.  42
+   40.  39
+   41.  35
+   42.  45
+   43.  42
+   44.  15
+   45.  29
+   46.  39
+   47.  32
+   48.  47
+   49.  42
+   50.  45
+   51.  39
+   52.  45
+   53.  42
+   54.  39
+   55.  36
+   56.  42
+   57.  39
+   58.  58
+   59.  37
+   60.  38
+   61.  35
+   62.  16
+   63.  16
+   64.  16
+   65.  24
+   66.  32
+   67.  19
+   68.  32
+   69.  32
+   70.  29
+   71.  32
+   72.  32
+   73.  16
+   74.  32
+   75.  32
+   76.  13
+   77.  13
+   78.  30
+   79.  13
+   80.  49
+   81.  32
+   82.  32
+   83.  32
+   84.  32
+   85.  19
+   86.  29
+   87.  16
+   88.  32
+   89.  29
+   90.  41
+   91.  28
+   92.  27
+   93.  28
+   94.  19
+   95.  14
+   96.  19
+   97.  34
+   98.  39
+   99.  39
+  100.  42
+  101.  39
+  102.  42
+  103.  45
+  104.  42
+  105.  32
+  106.  32
+  107.  32
+  108.  32
+  109.  32
+  110.  32
+  111.  29
+  112.  32
+  113.  32
+  114.  32
+  115.  32
+  116.  15
+  117.  15
+  118.  15
+  119.  15
+  120.  32
+  121.  32
+  122.  32
+  123.  32
+  124.  32
+  125.  32
+  126.  32
+  127.  32
+  128.  32
+  129.  32
+  130.  32
+  131.  23
+  132.  32
+  133.  32
+  134.  32
+  135.  20
+  136.  31
+  137.  35
+  138.  43
+  139.  43
+  140.  58
+  141.  19
+  142.  19
+  143.  32
+  144.  58
+  145.  45
+  146.  41
+  147.  32
+  148.  32
+  149.  32
+  150.  32
+  151.  33
+  152.  29
+  153.  41
+  154.  48
+  155.  32
+  156.  17
+  157.  21
+  158.  21
+  159.  45
+  160.  52
+  161.  35
+  162.  35
+  163.  19
+  164.  34
+  165.  32
+  166.  32
+  167.  32
+  168.  36
+  169.  32
+  170.  32
+  171.  58
+  172.  39
+  173.  39
+  174.  45
+  175.  58
+  176.  55
+  177.  32
+  178.  58
+  179.  19
+  180.  19
+  181.  13
+  182.  13
+  183.  32
+  184.  29
+  185.  27
+  186.  38
+  187.  10
+  188.  32
+  189.  19
+  190.  19
+  191.  29
+  192.  29
+  193.  32
+  194.  16
+  195.  13
+  196.  19
+  197.  57
+  198.  39
+  199.  39
+  200.  39
+  201.  39
+  202.  39
+  203.  15
+  204.  15
+  205.  15
+  206.  15
+  207.  45
+  208.  45
+  209.  45
+  210.  42
+  211.  42
+  212.  42
+  213.  15
+  214.  19
+  215.  17
+  216.  19
+  217.  19
+  218.  19
+  219.  19
+  220.  19
+  221.  19
+  222.  19
+  223.  19
+  224.  32
+  225.  13
+  226.  39
+  227.  29
+  228.  35
+  229.  28
+  230.  14
+  231.  42
+  232.  32
+  233.  38
+  234.  27
+  235.  39
+  236.  32
+  237.  34
+  238.  34
+  239.  19
+  240.  19
+  241.  19
+  242.  48
+  243.  48
+  244.  48
+  245.  32
+  246.  45
+  247.  32
+  248.  15
+  249.  39
+  250.  29
+  251.  42
+  252.  29
+  253.  42
+  254.  29
+  255.  32
+  256.  32
+  257.  19
+  258.  39
+  259.  32
+  260.  39
+  261.  32
+  262.  42
+  263.  36
+  264.  42
+  265.  39
+  266.  32
+  267.  39
+  268.  32
+  269.  32
+  270.  13
+  271.  32
+  272.  17
+  273.  32
+  274.  19
+  275.  42
+  276.  32
+  277.  42
+  278.  32
+  279.  45
+  280.  32
+  281.  42
+  282.  19
+  283.  42
+  284.  19
+  285.  39
+  286.  29
+  287.  36
+  288.  16
+  289.  36
+  290.  22
+  291.  42
+  292.  32
+  293.  42
+  294.  32
+  295.  35
+  296.  28
+  297.  35
+  298.  28
+  299.  32
+  300.  45
+  301.  46
+  302.  34
+  303.  32
+  304.  26
+  305.  36
+  306.  23
+  307.  38
+  308.  32
+  309.  29
+  310.  21
+  311.  63
+  312.  58
+  313.  29
+  314.  58
+  315.  29
+  316.  58
+  317.  29
+  318.  29
+  319.  57
+  320.  42
+  321.  34
+  322.  35
+  323.  34
+  324.  35
+  325.  35
+  326.  41
+  327.  36
+  328.  41
+  329.  41
+  330.  41
+  331.  41
+  332.  41
+  333.  41
+  334.  41
+  335.  41
+  336.  41
+  337.  41
+  338.  41
+  339.  41
+  340.  41
+  341.  41
+  342.  41
+  343.  41
+  344.  41
+  345.  41
+  346.  41
+  347.  41
+  348.  41
+  349.  41
+  350.  41
+  351.  41
+  352.  41
+  353.  41
+  354.  41
+  355.  41
+  356.  41
+  357.  41
+  358.  41
+  359.  41
+  360.  41
+  361.  41
+  362.  41
+  363.  41
+  364.  41
+  365.  41
+  366.  41
+  367.  41
+  368.  41
+  369.  41
+  370.  41
+  371.  41
+  372.  41
+  373.  42
+  374.  35
+  375.  58
+  376.  57
+  377.  57
+  378.  57
+  379.  57
+  380.  35
+  381.  35
+  382.  35
+  383.  59
+  384.  61
+  385.  53
+  386.  44
+  387.  44
+  388.  31
+  389.  38
+  390.  34
+  391.  30
+  392.  29
+  393.  44
+  394.  43
+  395.  26
+  396.  35
+  397.  11
+  398.  21
+  399.  51
+  400.  19
+  401.  35
+  402.  21
+  403.  21
+  404.  35
+  405.  21
+  406.  39
+  407.  32
+  408.  42
+  409.  29
+  410.  42
+  411.  29
+  412.  39
+  413.  32
+  414.  39
+  415.  32
+  416.  39
+  417.  32
+  418.  45
+  419.  32
+  420.  45
+  421.  32
+  422.  45
+  423.  32
+  424.  42
+  425.  32
+  426.  42
+  427.  32
+  428.  15
+  429.  15
+  430.  15
+  431.  15
+  432.  15
+  433.  15
+  434.  15
+  435.  13
+  436.  29
+  437.  13
+  438.  39
+  439.  30
+  440.  29
+  441.  32
+  442.  13
+  443.  42
+  444.  32
+  445.  42
+  446.  32
+  447.  45
+  448.  32
+  449.  45
+  450.  32
+  451.  42
+  452.  19
+  453.  39
+  454.  29
+  455.  35
+  456.  16
+  457.  42
+  458.  32
+  459.  42
+  460.  32
+  461.  42
+  462.  32
+  463.  42
+  464.  32
+  465.  58
+  466.  41
+  467.  38
+  468.  27
+  469.  13
+  470.  39
+  471.  32
+  472.  58
+  473.  52
+  474.  45
+  475.  35
+  476.  15
+  477.  58
+  478.  41
+  479.  58
+  480.  41
+  481.  58
+  482.  41
+  483.  38
+  484.  27
+  485.  13
+  486.  19
+  487.  32
+  488.  35
+  489.  48
+  490.  48
+  491.  48
+  492.  48
+  493.  19
+  494.  19
+  495.  19
+  496.  19
+  497.  39
+  498.  45
+  499.  49
+  500.  22
+  501.  45
+  502.  48
+  503.  44
+  504.  13
+  505.  39
+  506.  39
+  507.  39
+  508.  39
+  509.  35
+  510.  42
+  511.  15
+  512.  39
+  513.  39
+  514.  47
+  515.  42
+  516.  38
+  517.  45
+  518.  42
+  519.  39
+  520.  36
+  521.  36
+  522.  38
+  523.  37
+  524.  48
+  525.  43
+  526.  15
+  527.  38
+  528.  34
+  529.  26
+  530.  32
+  531.  13
+  532.  32
+  533.  33
+  534.  29
+  535.  26
+  536.  32
+  537.  32
+  538.  13
+  539.  29
+  540.  29
+  541.  33
+  542.  29
+  543.  26
+  544.  32
+  545.  33
+  546.  28
+  547.  32
+  548.  30
+  549.  41
+  550.  45
+  551.  13
+  552.  32
+  553.  32
+  554.  32
+  555.  45
+  556.  39
+  557.  50
+  558.  31
+  559.  42
+  560.  39
+  561.  15
+  562.  15
+  563.  29
+  564.  61
+  565.  59
+  566.  50
+  567.  34
+  568.  37
+  569.  42
+  570.  39
+  571.  38
+  572.  39
+  573.  31
+  574.  39
+  575.  39
+  576.  54
+  577.  35
+  578.  42
+  579.  42
+  580.  34
+  581.  38
+  582.  47
+  583.  42
+  584.  45
+  585.  42
+  586.  39
+  587.  42
+  588.  36
+  589.  37
+  590.  44
+  591.  37
+  592.  43
+  593.  39
+  594.  53
+  595.  54
+  596.  46
+  597.  51
+  598.  38
+  599.  42
+  600.  59
+  601.  42
+  602.  32
+  603.  33
+  604.  31
+  605.  21
+  606.  34
+  607.  32
+  608.  39
+  609.  27
+  610.  32
+  611.  32
+  612.  25
+  613.  34
+  614.  40
+  615.  32
+  616.  32
+  617.  31
+  618.  32
+  619.  29
+  620.  27
+  621.  27
+  622.  48
+  623.  28
+  624.  33
+  625.  30
+  626.  47
+  627.  48
+  628.  36
+  629.  42
+  630.  30
+  631.  30
+  632.  44
+  633.  31
+  634.  32
+  635.  32
+  636.  21
+  637.  30
+  638.  29
+  639.  13
+  640.  15
+  641.  13
+  642.  53
+  643.  47
+  644.  32
+  645.  25
+  646.  27
+  647.  32
+  648.  28
+  649.  24
+  650.  58
+  651.  62
+  652.  40
+  653.  19
+  654.  19
+  655.  19
+  656.  19
+  657.  19
+  658.  19
+  659.  19
+  660.  19
+  661.  19
+  662.  19
+  663.  19
+  664.  19
+  665.  19
+  666.  22
+  667.  19
+  668.  14
+  669.  19
+  670.  19
+  671.  16
+  672.  33
+  673.  31
+  674.  23
+  675.  29
+  676.  35
+  677.  14
+  678.  22
+  679.  35
+  680.  34
+  681.  14
+  682.  30
+  683.  27
+  684.  27
+  685.  35
+  686.  35
+  687.  14
+  688.  20
+  689.  33
+  690.  31
+  691.  33
+  692.  32
+  693.  27
+  694.  28
+  695.  32
+  696.  30
+  697.  40
+  698.  37
+  699.  29
+  700.  29
+  701.  29
+  702.  14
+  703.  24
+  704.  46
+  705.  14
+  706.  30
+  707.  30
+  708.  27
+  709.  27
+  710.  31
+  711.  40
+  712.  40
+  713.  40
+  714.  40
+  715.  33
+  716.  33
+  717.  33
+  718.  31
+  719.  23
+  720.  29
+  721.  35
+  722.  17
+  723.  24
+  724.  34
+  725.  17
+  726.  30
+  727.  27
+  728.  27
+  729.  35
+  730.  20
+  731.  33
+  732.  33
+  733.  32
+  734.  28
+  735.  32
+  736.  30
+  737.  40
+  738.  37
+  739.  14
+  740.  31
+  741.  27
+  742.  32
+  743.  33
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.  19
+  749.  19
+  750.  21
+  751.  24
+  752.  12
+  753.  12
+  754.  14
+  755.  12
+  756.  12
+  757.  12
+  758.  12
+  759.  12
+  760.  10
+  761.  31
+  762.  31
+  763.  31
+  764.  31
+  765.  31
+  766.  31
+  767.  31
+  768.  31
+  769.  31
+  770.  31
+  771.  31
+  772.  19
+  773.  31
+  774.  44
+  775.  44
+  776.  16
+  777.  44
+  778.  31
+  779.  31
+  780.  31
+  781.  44
+  782.  44
+  783.  44
+  784.  44
+  785.  44
+  786.  12
+  787.  44
+  788.  44
+  789.  44
+  790.  44
+  791.  44
+  792.  44
+  793.  44
+  794.  44
+  795.  37
+  796.  44
+  797.  44
+  798.  44
+  799.  41
+  800.  41
+  801.  14
+  802.  14
+  803.  44
+  804.  44
+  805.  44
+  806.  44
+  807.  33
+  808.  31
+  809.  31
+  810.  31
+  811.  28
+  812.  28
+  813.  47
+  814.  54
+  815.  23
+  816.  30
+  817.  47
+  818.  54
+  819.  23
+  820.  30
+  821.  37
+  822.  34
+  823.  44
+  824.  44
+  825.  44
+  826.  44
+  827.  44
+  828.  44
+  829.  44
+  830.  44
+  831.  44
+  832.  44
+  833.  44
+  834.  44
+  835.  44
+  836.  44
+  837.  44
+  838.  44
+  839.  13
+  840.  12
+  841.  12
+  842.  12
+  843.  12
+  844.  44
+  845.  44
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.  32
+  863.  58
+  864.  44
+  865.  44
+  866.  44
+  867.  44
+  868.  44
+  869.  44
+  870.  44
+  871.  44
+  872.  44
+  873.  44
+  874.  44
+  875.  44
+  876.  44
+  877.  44
+  878.  44
+  879.  44
+  880.  44
+  881.  44
+  882.  44
+  883.  44
+  884.  44
+  885.  44
+  886.  44
+  887.  44
+  888.  44
+  889.  44
+  890.  44
+  891.  44
+  892.  19
+  893.  19
+  894.  44
+  895.  36
+  896.  24
+  897.  12
+  898.  13
+  899.  12
+  900.  13
+  901.  25
+  902.  25
+  903.  12
+  904.  13
+  905.  37
+  906.  34
+  907.  14
+  908.  14
+  909.  12
+  910.  13
+  911.  41
+  912.  41
+  913.  14
+  914.  14
+  915.  16
+  916.  22
+  917.  41
+  918.  41
+  919.  14
+  920.  14
+  921.  41
+  922.  41
+  923.  14
+  924.  14
+  925.  33
+  926.  31
+  927.  31
+  928.  31
+  929.  33
+  930.  31
+  931.  31
+  932.  31
+  933.  33
+  934.  31
+  935.  31
+  936.  31
+  937.  20
+  938.  20
+  939.  20
+  940.  20
+  941.  28
+  942.  28
+  943.  28
+  944.  28
+  945.  48
+  946.  48
+  947.  31
+  948.  31
+  949.  48
+  950.  48
+  951.  31
+  952.  31
+  953.  64
+  954.  64
+  955.  49
+  956.  49
+  957.  64
+  958.  64
+  959.  49
+  960.  49
+  961.  34
+  962.  34
+  963.  34
+  964.  34
+  965.  34
+  966.  34
+  967.  34
+  968.  34
+  969.  32
+  970.  26
+  971.  31
+  972.  23
+  973.  32
+  974.  26
+  975.  31
+  976.  23
+  977.  46
+  978.  46
+  979.  16
+  980.  15
+  981.  34
+  982.  34
+  983.  16
+  984.  15
+  985.  35
+  986.  35
+  987.  23
+  988.  23
+  989.  29
+  990.  29
+  991.  12
+  992.  12
+  993.  20
+  994.  20
+  995.  23
+  996.  23
+  997.  31
+  998.  31
+  999.  14
+ 1000.  14
+ 1001.  16
+ 1002.  22
+ 1003.  26
+ 1004.  23
+ 1005.  25
+ 1006.  25
+ 1007.  37
+ 1008.  34
+ 1009.  37
+ 1010.  34
+ 1011.  14
+ 1012.  14
+ 1013.  32
+ 1014.  35
+ 1015.  32
+ 1016.  35
+ 1017.  32
+ 1018.  35
+ 1019.  32
+ 1020.  35
+ 1021.  44
+ 1022.  44
+ 1023.  12
+ 1024.  12
+ 1025.  44
+ 1026.  44
+ 1027.  44
+ 1028.  10
+ 1029.  12
+ 1030.  44
+ 1031.  44
+ 1032.  12
+ 1033.  14
+ 1034.  44
+ 1035.  44
+ 1036.  44
+ 1037.  12
+ 1038.  12
+ 1039.  12
+ 1040.  12
+ 1041.  12
+ 1042.  13
+ 1043.  44
+ 1044.  12
+ 1045.  12
+ 1046.  44
+ 1047.  44
+ 1048.  44
+ 1049.  44
+ 1050.  44
+ 1051.  44
+ 1052.  44
+ 1053.  44
+ 1054.  44
+ 1055.  44
+ 1056.  44
+ 1057.  44
+ 1058.  44
+ 1059.  44
+ 1060.  44
+ 1061.  44
+ 1062.  44
+ 1063.  44
+ 1064.  44
+ 1065.  44
+ 1066.  44
+ 1067.  44
+ 1068.  44
+ 1069.  44
+ 1070.  44
+ 1071.  44
+ 1072.  44
+ 1073.  44
+ 1074.  44
+ 1075.  44
+ 1076.  44
+ 1077.  44
+ 1078.  44
+ 1079.  44
+ 1080.  44
+ 1081.  44
+ 1082.  44
+ 1083.  44
+ 1084.  44
+ 1085.  44
+ 1086.  44
+ 1087.  44
+ 1088.  44
+ 1089.  44
+ 1090.  44
+ 1091.  44
+ 1092.  44
+ 1093.  44
+ 1094.  44
+ 1095.  44
+ 1096.  44
+ 1097.  44
+ 1098.  44
+ 1099.  44
+ 1100.  19
+ 1101.  19
+ 1102.  19
+ 1103.  44
+ 1104.  44
+ 1105.  44
+ 1106.  44
+ 1107.  44
+ 1108.  44
+ 1109.  44
+ 1110.  44
+ 1111.  44
+ 1112.  44
+ 1113.  44
+ 1114.  44
+ 1115.  44
+ 1116.  44
+ 1117.  44
+ 1118.  44
+ 1119.  44
+ 1120.  44
+ 1121.  44
+ 1122.  44
+ 1123.  44
+ 1124.  44
+ 1125.  44
+ 1126.  44
+ 1127.   7
+ 1128.  58
+ 1129. 116
+ 1130.  50
+ 1131.  38
+ 1132.  50
+ 1133.  39
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.  30
+ 1151.  48
+ 1152.  48
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.  13
+ 1188.  39
+ 1189.  32
+ 1190.  39
+ 1191.  32
+ 1192.  39
+ 1193.  32
+ 1194.  39
+ 1195.  32
+ 1196.  39
+ 1197.  32
+ 1198.  39
+ 1199.  32
+ 1200.  39
+ 1201.  32
+ 1202.  39
+ 1203.  32
+ 1204.  39
+ 1205.  32
+ 1206.  39
+ 1207.  32
+ 1208.  39
+ 1209.  32
+ 1210.  39
+ 1211.  32
+ 1212.  39
+ 1213.  32
+ 1214.  39
+ 1215.  32
+ 1216.  39
+ 1217.  32
+ 1218.  39
+ 1219.  32
+ 1220.  39
+ 1221.  32
+ 1222.  39
+ 1223.  32
+ 1224.  39
+ 1225.  32
+ 1226.  39
+ 1227.  32
+ 1228.  15
+ 1229.  13
+ 1230.  15
+ 1231.  13
+ 1232.  45
+ 1233.  32
+ 1234.  45
+ 1235.  32
+ 1236.  45
+ 1237.  32
+ 1238.  45
+ 1239.  32
+ 1240.  45
+ 1241.  32
+ 1242.  45
+ 1243.  32
+ 1244.  45
+ 1245.  32
+ 1246.  50
+ 1247.  38
+ 1248.  50
+ 1249.  38
+ 1250.  50
+ 1251.  38
+ 1252.  50
+ 1253.  38
+ 1254.  50
+ 1255.  38
+ 1256.  42
+ 1257.  32
+ 1258.  42
+ 1259.  32
+ 1260.  50
+ 1261.  39
+ 1262.  50
+ 1263.  39
+ 1264.  50
+ 1265.  39
+ 1266.  50
+ 1267.  39
+ 1268.  50
+ 1269.  39
+ 1270.  38
+ 1271.  27
+ 1272.  38
+ 1273.  27
+ 1274.  38
+ 1275.  27
+ 1276.  39
+ 1277.  32
+ 1278.  15
+ 1279.  13
+ 1280.  45
+ 1281.  32
+ 1282.  42
+ 1283.  32
+ 1284.  42
+ 1285.  32
+ 1286.  42
+ 1287.  32
+ 1288.  42
+ 1289.  32
+ 1290.  42
+ 1291.  32
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.  31
+ 1297.  21
+ 1298.  54
+ 1299.  39
+ 1300.  34
+ 1301.  25
+ 1302.  34
+ 1303.  25
+ 1304.  42
+ 1305.  32
+ 1306.  32
+ 1307.  29
+ 1308.  32
+ 1309.  29
+ 1310.  39
+ 1311.  29
+ 1312.  39
+ 1313.  30
+ 1314.  39
+ 1315.  30
+ 1316.  44
+ 1317.  32
+ 1318.  45
+ 1319.  32
+
+
+	DevRec 19: ppem =  67, maxWid = 134
+    0.  50
+    1.   0
+    2.  19
+    3.  19
+    4.  22
+    5.  24
+    6.  37
+    7.  37
+    8.  60
+    9.  45
+   10.  13
+   11.  22
+   12.  22
+   13.  26
+   14.  39
+   15.  19
+   16.  22
+   17.  19
+   18.  19
+   19.  37
+   20.  37
+   21.  37
+   22.  37
+   23.  37
+   24.  37
+   25.  37
+   26.  37
+   27.  37
+   28.  37
+   29.  19
+   30.  19
+   31.  39
+   32.  39
+   33.  39
+   34.  37
+   35.  68
+   36.  45
+   37.  45
+   38.  48
+   39.  48
+   40.  45
+   41.  41
+   42.  52
+   43.  48
+   44.  19
+   45.  34
+   46.  45
+   47.  37
+   48.  55
+   49.  48
+   50.  52
+   51.  45
+   52.  52
+   53.  48
+   54.  45
+   55.  41
+   56.  48
+   57.  45
+   58.  66
+   59.  43
+   60.  45
+   61.  41
+   62.  19
+   63.  19
+   64.  19
+   65.  30
+   66.  37
+   67.  22
+   68.  37
+   69.  37
+   70.  34
+   71.  37
+   72.  37
+   73.  19
+   74.  37
+   75.  37
+   76.  15
+   77.  15
+   78.  34
+   79.  15
+   80.  57
+   81.  37
+   82.  37
+   83.  37
+   84.  37
+   85.  22
+   86.  34
+   87.  19
+   88.  37
+   89.  33
+   90.  47
+   91.  32
+   92.  33
+   93.  33
+   94.  22
+   95.  17
+   96.  22
+   97.  39
+   98.  45
+   99.  45
+  100.  48
+  101.  45
+  102.  48
+  103.  52
+  104.  48
+  105.  37
+  106.  37
+  107.  37
+  108.  37
+  109.  37
+  110.  37
+  111.  34
+  112.  37
+  113.  37
+  114.  37
+  115.  37
+  116.  18
+  117.  18
+  118.  18
+  119.  18
+  120.  37
+  121.  37
+  122.  37
+  123.  37
+  124.  37
+  125.  37
+  126.  37
+  127.  37
+  128.  37
+  129.  37
+  130.  37
+  131.  27
+  132.  37
+  133.  37
+  134.  37
+  135.  23
+  136.  36
+  137.  41
+  138.  49
+  139.  49
+  140.  67
+  141.  22
+  142.  22
+  143.  37
+  144.  67
+  145.  52
+  146.  48
+  147.  37
+  148.  37
+  149.  37
+  150.  37
+  151.  39
+  152.  33
+  153.  48
+  154.  55
+  155.  37
+  156.  20
+  157.  25
+  158.  24
+  159.  51
+  160.  60
+  161.  41
+  162.  41
+  163.  22
+  164.  39
+  165.  37
+  166.  37
+  167.  37
+  168.  41
+  169.  37
+  170.  37
+  171.  67
+  172.  45
+  173.  45
+  174.  52
+  175.  67
+  176.  63
+  177.  37
+  178.  67
+  179.  22
+  180.  22
+  181.  15
+  182.  15
+  183.  37
+  184.  33
+  185.  33
+  186.  45
+  187.  11
+  188.  37
+  189.  22
+  190.  22
+  191.  34
+  192.  34
+  193.  37
+  194.  19
+  195.  15
+  196.  22
+  197.  67
+  198.  45
+  199.  45
+  200.  45
+  201.  45
+  202.  45
+  203.  19
+  204.  19
+  205.  19
+  206.  19
+  207.  52
+  208.  52
+  209.  52
+  210.  48
+  211.  48
+  212.  48
+  213.  18
+  214.  22
+  215.  20
+  216.  22
+  217.  22
+  218.  22
+  219.  22
+  220.  22
+  221.  22
+  222.  22
+  223.  22
+  224.  37
+  225.  15
+  226.  45
+  227.  34
+  228.  41
+  229.  33
+  230.  17
+  231.  48
+  232.  37
+  233.  45
+  234.  33
+  235.  45
+  236.  37
+  237.  39
+  238.  39
+  239.  22
+  240.  22
+  241.  22
+  242.  56
+  243.  56
+  244.  56
+  245.  37
+  246.  52
+  247.  37
+  248.  19
+  249.  45
+  250.  34
+  251.  48
+  252.  34
+  253.  48
+  254.  34
+  255.  37
+  256.  37
+  257.  22
+  258.  45
+  259.  37
+  260.  45
+  261.  37
+  262.  48
+  263.  41
+  264.  48
+  265.  45
+  266.  37
+  267.  45
+  268.  37
+  269.  37
+  270.  15
+  271.  37
+  272.  20
+  273.  37
+  274.  22
+  275.  48
+  276.  37
+  277.  48
+  278.  37
+  279.  52
+  280.  37
+  281.  48
+  282.  22
+  283.  48
+  284.  22
+  285.  45
+  286.  34
+  287.  41
+  288.  19
+  289.  41
+  290.  25
+  291.  48
+  292.  37
+  293.  48
+  294.  37
+  295.  41
+  296.  33
+  297.  41
+  298.  33
+  299.  37
+  300.  52
+  301.  53
+  302.  39
+  303.  37
+  304.  30
+  305.  41
+  306.  26
+  307.  43
+  308.  37
+  309.  34
+  310.  24
+  311.  73
+  312.  67
+  313.  34
+  314.  67
+  315.  34
+  316.  67
+  317.  34
+  318.  34
+  319.  66
+  320.  48
+  321.  39
+  322.  40
+  323.  39
+  324.  40
+  325.  40
+  326.  47
+  327.  42
+  328.  47
+  329.  47
+  330.  47
+  331.  47
+  332.  47
+  333.  47
+  334.  47
+  335.  47
+  336.  47
+  337.  47
+  338.  47
+  339.  47
+  340.  47
+  341.  47
+  342.  47
+  343.  47
+  344.  47
+  345.  47
+  346.  47
+  347.  47
+  348.  47
+  349.  47
+  350.  47
+  351.  47
+  352.  47
+  353.  47
+  354.  47
+  355.  47
+  356.  47
+  357.  47
+  358.  47
+  359.  47
+  360.  47
+  361.  47
+  362.  47
+  363.  47
+  364.  47
+  365.  47
+  366.  47
+  367.  47
+  368.  47
+  369.  47
+  370.  47
+  371.  47
+  372.  47
+  373.  49
+  374.  40
+  375.  67
+  376.  66
+  377.  66
+  378.  66
+  379.  66
+  380.  40
+  381.  40
+  382.  40
+  383.  68
+  384.  71
+  385.  61
+  386.  50
+  387.  50
+  388.  36
+  389.  44
+  390.  40
+  391.  34
+  392.  34
+  393.  50
+  394.  49
+  395.  30
+  396.  40
+  397.  13
+  398.  24
+  399.  59
+  400.  22
+  401.  40
+  402.  24
+  403.  24
+  404.  40
+  405.  24
+  406.  45
+  407.  37
+  408.  48
+  409.  34
+  410.  48
+  411.  34
+  412.  45
+  413.  37
+  414.  45
+  415.  37
+  416.  45
+  417.  37
+  418.  52
+  419.  37
+  420.  52
+  421.  37
+  422.  52
+  423.  37
+  424.  48
+  425.  37
+  426.  48
+  427.  37
+  428.  19
+  429.  18
+  430.  19
+  431.  18
+  432.  19
+  433.  18
+  434.  19
+  435.  15
+  436.  34
+  437.  15
+  438.  45
+  439.  34
+  440.  34
+  441.  37
+  442.  15
+  443.  48
+  444.  37
+  445.  48
+  446.  37
+  447.  52
+  448.  37
+  449.  52
+  450.  37
+  451.  48
+  452.  22
+  453.  45
+  454.  34
+  455.  41
+  456.  19
+  457.  48
+  458.  37
+  459.  48
+  460.  37
+  461.  48
+  462.  37
+  463.  48
+  464.  37
+  465.  66
+  466.  47
+  467.  45
+  468.  33
+  469.  15
+  470.  45
+  471.  37
+  472.  67
+  473.  60
+  474.  52
+  475.  41
+  476.  18
+  477.  66
+  478.  47
+  479.  66
+  480.  47
+  481.  66
+  482.  47
+  483.  45
+  484.  33
+  485.  15
+  486.  22
+  487.  37
+  488.  40
+  489.  56
+  490.  56
+  491.  56
+  492.  56
+  493.  22
+  494.  22
+  495.  22
+  496.  22
+  497.  45
+  498.  53
+  499.  56
+  500.  26
+  501.  52
+  502.  56
+  503.  50
+  504.  15
+  505.  45
+  506.  45
+  507.  45
+  508.  45
+  509.  41
+  510.  48
+  511.  19
+  512.  45
+  513.  45
+  514.  55
+  515.  48
+  516.  44
+  517.  52
+  518.  48
+  519.  45
+  520.  41
+  521.  41
+  522.  45
+  523.  43
+  524.  56
+  525.  50
+  526.  19
+  527.  45
+  528.  39
+  529.  30
+  530.  37
+  531.  15
+  532.  37
+  533.  39
+  534.  34
+  535.  30
+  536.  37
+  537.  37
+  538.  15
+  539.  34
+  540.  34
+  541.  39
+  542.  33
+  543.  30
+  544.  37
+  545.  38
+  546.  32
+  547.  37
+  548.  35
+  549.  48
+  550.  52
+  551.  15
+  552.  37
+  553.  37
+  554.  37
+  555.  52
+  556.  45
+  557.  58
+  558.  36
+  559.  48
+  560.  45
+  561.  19
+  562.  19
+  563.  34
+  564.  71
+  565.  68
+  566.  57
+  567.  39
+  568.  43
+  569.  48
+  570.  45
+  571.  44
+  572.  45
+  573.  36
+  574.  45
+  575.  45
+  576.  62
+  577.  40
+  578.  48
+  579.  48
+  580.  39
+  581.  44
+  582.  55
+  583.  48
+  584.  52
+  585.  48
+  586.  45
+  587.  48
+  588.  41
+  589.  43
+  590.  51
+  591.  43
+  592.  50
+  593.  45
+  594.  61
+  595.  63
+  596.  53
+  597.  59
+  598.  44
+  599.  48
+  600.  68
+  601.  48
+  602.  37
+  603.  38
+  604.  36
+  605.  24
+  606.  39
+  607.  37
+  608.  45
+  609.  31
+  610.  37
+  611.  37
+  612.  29
+  613.  39
+  614.  46
+  615.  37
+  616.  37
+  617.  36
+  618.  37
+  619.  34
+  620.  31
+  621.  33
+  622.  55
+  623.  32
+  624.  38
+  625.  35
+  626.  54
+  627.  55
+  628.  42
+  629.  48
+  630.  35
+  631.  34
+  632.  50
+  633.  36
+  634.  37
+  635.  37
+  636.  24
+  637.  34
+  638.  34
+  639.  15
+  640.  18
+  641.  15
+  642.  61
+  643.  54
+  644.  37
+  645.  29
+  646.  33
+  647.  37
+  648.  33
+  649.  28
+  650.  67
+  651.  72
+  652.  46
+  653.  22
+  654.  22
+  655.  22
+  656.  22
+  657.  22
+  658.  22
+  659.  22
+  660.  22
+  661.  22
+  662.  22
+  663.  22
+  664.  22
+  665.  22
+  666.  26
+  667.  22
+  668.  17
+  669.  22
+  670.  22
+  671.  19
+  672.  38
+  673.  36
+  674.  27
+  675.  34
+  676.  40
+  677.  17
+  678.  26
+  679.  40
+  680.  40
+  681.  17
+  682.  34
+  683.  31
+  684.  31
+  685.  40
+  686.  40
+  687.  17
+  688.  24
+  689.  38
+  690.  35
+  691.  38
+  692.  37
+  693.  31
+  694.  32
+  695.  37
+  696.  34
+  697.  47
+  698.  43
+  699.  34
+  700.  34
+  701.  34
+  702.  16
+  703.  28
+  704.  55
+  705.  17
+  706.  34
+  707.  34
+  708.  31
+  709.  31
+  710.  36
+  711.  47
+  712.  47
+  713.  47
+  714.  47
+  715.  38
+  716.  38
+  717.  38
+  718.  36
+  719.  27
+  720.  34
+  721.  40
+  722.  19
+  723.  28
+  724.  40
+  725.  19
+  726.  34
+  727.  31
+  728.  31
+  729.  40
+  730.  24
+  731.  38
+  732.  38
+  733.  37
+  734.  32
+  735.  37
+  736.  34
+  737.  47
+  738.  43
+  739.  17
+  740.  36
+  741.  31
+  742.  37
+  743.  39
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.  21
+  749.  21
+  750.  24
+  751.  28
+  752.  14
+  753.  13
+  754.  16
+  755.  13
+  756.  13
+  757.  14
+  758.  13
+  759.  14
+  760.  11
+  761.  35
+  762.  35
+  763.  35
+  764.  35
+  765.  35
+  766.  35
+  767.  35
+  768.  35
+  769.  35
+  770.  35
+  771.  35
+  772.  21
+  773.  35
+  774.  50
+  775.  50
+  776.  19
+  777.  50
+  778.  35
+  779.  35
+  780.  35
+  781.  50
+  782.  50
+  783.  50
+  784.  50
+  785.  50
+  786.  14
+  787.  50
+  788.  50
+  789.  50
+  790.  50
+  791.  50
+  792.  50
+  793.  50
+  794.  50
+  795.  43
+  796.  50
+  797.  50
+  798.  50
+  799.  48
+  800.  48
+  801.  16
+  802.  16
+  803.  50
+  804.  50
+  805.  50
+  806.  50
+  807.  38
+  808.  35
+  809.  36
+  810.  36
+  811.  33
+  812.  33
+  813.  54
+  814.  62
+  815.  26
+  816.  34
+  817.  54
+  818.  62
+  819.  26
+  820.  34
+  821.  43
+  822.  39
+  823.  50
+  824.  50
+  825.  50
+  826.  50
+  827.  50
+  828.  50
+  829.  50
+  830.  50
+  831.  50
+  832.  50
+  833.  50
+  834.  50
+  835.  50
+  836.  50
+  837.  50
+  838.  50
+  839.  15
+  840.  14
+  841.  14
+  842.  14
+  843.  14
+  844.  50
+  845.  50
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.  37
+  863.  67
+  864.  50
+  865.  50
+  866.  50
+  867.  50
+  868.  50
+  869.  50
+  870.  50
+  871.  50
+  872.  50
+  873.  50
+  874.  50
+  875.  50
+  876.  50
+  877.  50
+  878.  50
+  879.  50
+  880.  50
+  881.  50
+  882.  50
+  883.  50
+  884.  50
+  885.  50
+  886.  50
+  887.  50
+  888.  50
+  889.  50
+  890.  50
+  891.  50
+  892.  21
+  893.  21
+  894.  50
+  895.  41
+  896.  28
+  897.  14
+  898.  15
+  899.  14
+  900.  15
+  901.  29
+  902.  29
+  903.  14
+  904.  15
+  905.  43
+  906.  39
+  907.  16
+  908.  16
+  909.  14
+  910.  15
+  911.  48
+  912.  48
+  913.  16
+  914.  16
+  915.  19
+  916.  25
+  917.  48
+  918.  48
+  919.  16
+  920.  16
+  921.  48
+  922.  48
+  923.  16
+  924.  16
+  925.  38
+  926.  35
+  927.  36
+  928.  36
+  929.  38
+  930.  35
+  931.  36
+  932.  36
+  933.  38
+  934.  35
+  935.  36
+  936.  36
+  937.  23
+  938.  23
+  939.  23
+  940.  23
+  941.  33
+  942.  33
+  943.  33
+  944.  33
+  945.  55
+  946.  55
+  947.  36
+  948.  36
+  949.  55
+  950.  55
+  951.  36
+  952.  36
+  953.  74
+  954.  74
+  955.  57
+  956.  57
+  957.  74
+  958.  74
+  959.  57
+  960.  57
+  961.  39
+  962.  39
+  963.  39
+  964.  39
+  965.  39
+  966.  39
+  967.  39
+  968.  39
+  969.  36
+  970.  30
+  971.  35
+  972.  26
+  973.  36
+  974.  30
+  975.  35
+  976.  26
+  977.  53
+  978.  53
+  979.  18
+  980.  18
+  981.  39
+  982.  39
+  983.  18
+  984.  18
+  985.  40
+  986.  40
+  987.  26
+  988.  26
+  989.  34
+  990.  34
+  991.  14
+  992.  14
+  993.  23
+  994.  23
+  995.  26
+  996.  26
+  997.  35
+  998.  35
+  999.  16
+ 1000.  16
+ 1001.  19
+ 1002.  25
+ 1003.  30
+ 1004.  26
+ 1005.  29
+ 1006.  29
+ 1007.  43
+ 1008.  39
+ 1009.  43
+ 1010.  39
+ 1011.  16
+ 1012.  16
+ 1013.  36
+ 1014.  40
+ 1015.  36
+ 1016.  40
+ 1017.  36
+ 1018.  40
+ 1019.  36
+ 1020.  40
+ 1021.  50
+ 1022.  50
+ 1023.  13
+ 1024.  13
+ 1025.  50
+ 1026.  50
+ 1027.  50
+ 1028.  11
+ 1029.  14
+ 1030.  50
+ 1031.  50
+ 1032.  14
+ 1033.  16
+ 1034.  50
+ 1035.  50
+ 1036.  50
+ 1037.  14
+ 1038.  14
+ 1039.  14
+ 1040.  14
+ 1041.  14
+ 1042.  15
+ 1043.  50
+ 1044.  13
+ 1045.  13
+ 1046.  50
+ 1047.  50
+ 1048.  50
+ 1049.  50
+ 1050.  50
+ 1051.  50
+ 1052.  50
+ 1053.  50
+ 1054.  50
+ 1055.  50
+ 1056.  50
+ 1057.  50
+ 1058.  50
+ 1059.  50
+ 1060.  50
+ 1061.  50
+ 1062.  50
+ 1063.  50
+ 1064.  50
+ 1065.  50
+ 1066.  50
+ 1067.  50
+ 1068.  50
+ 1069.  50
+ 1070.  50
+ 1071.  50
+ 1072.  50
+ 1073.  50
+ 1074.  50
+ 1075.  50
+ 1076.  50
+ 1077.  50
+ 1078.  50
+ 1079.  50
+ 1080.  50
+ 1081.  50
+ 1082.  50
+ 1083.  50
+ 1084.  50
+ 1085.  50
+ 1086.  50
+ 1087.  50
+ 1088.  50
+ 1089.  50
+ 1090.  50
+ 1091.  50
+ 1092.  50
+ 1093.  50
+ 1094.  50
+ 1095.  50
+ 1096.  50
+ 1097.  50
+ 1098.  50
+ 1099.  50
+ 1100.  21
+ 1101.  21
+ 1102.  21
+ 1103.  50
+ 1104.  50
+ 1105.  50
+ 1106.  50
+ 1107.  50
+ 1108.  50
+ 1109.  50
+ 1110.  50
+ 1111.  50
+ 1112.  50
+ 1113.  50
+ 1114.  50
+ 1115.  50
+ 1116.  50
+ 1117.  50
+ 1118.  50
+ 1119.  50
+ 1120.  50
+ 1121.  50
+ 1122.  50
+ 1123.  50
+ 1124.  50
+ 1125.  50
+ 1126.  50
+ 1127.   8
+ 1128.  67
+ 1129. 134
+ 1130.  57
+ 1131.  44
+ 1132.  57
+ 1133.  45
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.  34
+ 1151.  56
+ 1152.  56
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.  15
+ 1188.  45
+ 1189.  37
+ 1190.  45
+ 1191.  37
+ 1192.  45
+ 1193.  37
+ 1194.  45
+ 1195.  37
+ 1196.  45
+ 1197.  37
+ 1198.  45
+ 1199.  37
+ 1200.  45
+ 1201.  37
+ 1202.  45
+ 1203.  37
+ 1204.  45
+ 1205.  37
+ 1206.  45
+ 1207.  37
+ 1208.  45
+ 1209.  37
+ 1210.  45
+ 1211.  37
+ 1212.  45
+ 1213.  37
+ 1214.  45
+ 1215.  37
+ 1216.  45
+ 1217.  37
+ 1218.  45
+ 1219.  37
+ 1220.  45
+ 1221.  37
+ 1222.  45
+ 1223.  37
+ 1224.  45
+ 1225.  37
+ 1226.  45
+ 1227.  37
+ 1228.  19
+ 1229.  15
+ 1230.  19
+ 1231.  15
+ 1232.  52
+ 1233.  37
+ 1234.  52
+ 1235.  37
+ 1236.  52
+ 1237.  37
+ 1238.  52
+ 1239.  37
+ 1240.  52
+ 1241.  37
+ 1242.  52
+ 1243.  37
+ 1244.  52
+ 1245.  37
+ 1246.  57
+ 1247.  44
+ 1248.  57
+ 1249.  44
+ 1250.  57
+ 1251.  44
+ 1252.  57
+ 1253.  44
+ 1254.  57
+ 1255.  44
+ 1256.  48
+ 1257.  37
+ 1258.  48
+ 1259.  37
+ 1260.  57
+ 1261.  45
+ 1262.  57
+ 1263.  45
+ 1264.  57
+ 1265.  45
+ 1266.  57
+ 1267.  45
+ 1268.  57
+ 1269.  45
+ 1270.  45
+ 1271.  33
+ 1272.  45
+ 1273.  33
+ 1274.  45
+ 1275.  33
+ 1276.  45
+ 1277.  37
+ 1278.  19
+ 1279.  15
+ 1280.  52
+ 1281.  37
+ 1282.  48
+ 1283.  37
+ 1284.  48
+ 1285.  37
+ 1286.  48
+ 1287.  37
+ 1288.  48
+ 1289.  37
+ 1290.  48
+ 1291.  37
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.  36
+ 1297.  24
+ 1298.  62
+ 1299.  45
+ 1300.  39
+ 1301.  29
+ 1302.  39
+ 1303.  29
+ 1304.  48
+ 1305.  37
+ 1306.  37
+ 1307.  34
+ 1308.  37
+ 1309.  34
+ 1310.  45
+ 1311.  34
+ 1312.  45
+ 1313.  35
+ 1314.  45
+ 1315.  35
+ 1316.  50
+ 1317.  37
+ 1318.  52
+ 1319.  37
+
+
+	DevRec 20: ppem =  75, maxWid = 150
+    0.  56
+    1.   0
+    2.  21
+    3.  21
+    4.  23
+    5.  27
+    6.  42
+    7.  42
+    8.  67
+    9.  50
+   10.  14
+   11.  25
+   12.  25
+   13.  29
+   14.  44
+   15.  21
+   16.  25
+   17.  21
+   18.  21
+   19.  42
+   20.  42
+   21.  42
+   22.  42
+   23.  42
+   24.  42
+   25.  42
+   26.  42
+   27.  42
+   28.  42
+   29.  21
+   30.  21
+   31.  44
+   32.  44
+   33.  44
+   34.  42
+   35.  76
+   36.  50
+   37.  50
+   38.  54
+   39.  54
+   40.  50
+   41.  46
+   42.  58
+   43.  54
+   44.  21
+   45.  38
+   46.  50
+   47.  42
+   48.  61
+   49.  54
+   50.  58
+   51.  50
+   52.  58
+   53.  54
+   54.  50
+   55.  45
+   56.  54
+   57.  50
+   58.  75
+   59.  49
+   60.  49
+   61.  46
+   62.  21
+   63.  21
+   64.  21
+   65.  34
+   66.  42
+   67.  25
+   68.  42
+   69.  42
+   70.  38
+   71.  42
+   72.  42
+   73.  21
+   74.  42
+   75.  42
+   76.  17
+   77.  17
+   78.  38
+   79.  17
+   80.  63
+   81.  42
+   82.  42
+   83.  42
+   84.  42
+   85.  25
+   86.  38
+   87.  21
+   88.  42
+   89.  37
+   90.  53
+   91.  36
+   92.  37
+   93.  37
+   94.  25
+   95.  20
+   96.  25
+   97.  44
+   98.  50
+   99.  50
+  100.  54
+  101.  50
+  102.  54
+  103.  58
+  104.  54
+  105.  42
+  106.  42
+  107.  42
+  108.  42
+  109.  42
+  110.  42
+  111.  38
+  112.  42
+  113.  42
+  114.  42
+  115.  42
+  116.  21
+  117.  21
+  118.  21
+  119.  21
+  120.  42
+  121.  42
+  122.  42
+  123.  42
+  124.  42
+  125.  42
+  126.  42
+  127.  42
+  128.  42
+  129.  42
+  130.  42
+  131.  30
+  132.  42
+  133.  42
+  134.  42
+  135.  26
+  136.  40
+  137.  46
+  138.  55
+  139.  55
+  140.  75
+  141.  25
+  142.  25
+  143.  41
+  144.  75
+  145.  58
+  146.  53
+  147.  41
+  148.  41
+  149.  41
+  150.  42
+  151.  43
+  152.  37
+  153.  53
+  154.  62
+  155.  41
+  156.  23
+  157.  28
+  158.  27
+  159.  58
+  160.  67
+  161.  46
+  162.  46
+  163.  23
+  164.  44
+  165.  41
+  166.  42
+  167.  41
+  168.  46
+  169.  42
+  170.  42
+  171.  75
+  172.  50
+  173.  50
+  174.  58
+  175.  75
+  176.  71
+  177.  42
+  178.  75
+  179.  25
+  180.  25
+  181.  17
+  182.  17
+  183.  41
+  184.  37
+  185.  37
+  186.  49
+  187.  13
+  188.  42
+  189.  25
+  190.  25
+  191.  38
+  192.  38
+  193.  42
+  194.  21
+  195.  17
+  196.  25
+  197.  76
+  198.  50
+  199.  50
+  200.  50
+  201.  50
+  202.  50
+  203.  21
+  204.  21
+  205.  21
+  206.  21
+  207.  58
+  208.  58
+  209.  58
+  210.  54
+  211.  54
+  212.  54
+  213.  21
+  214.  25
+  215.  24
+  216.  25
+  217.  25
+  218.  25
+  219.  25
+  220.  25
+  221.  25
+  222.  25
+  223.  25
+  224.  42
+  225.  17
+  226.  50
+  227.  38
+  228.  46
+  229.  37
+  230.  20
+  231.  54
+  232.  42
+  233.  49
+  234.  37
+  235.  50
+  236.  42
+  237.  44
+  238.  44
+  239.  25
+  240.  25
+  241.  25
+  242.  63
+  243.  63
+  244.  63
+  245.  42
+  246.  58
+  247.  42
+  248.  21
+  249.  50
+  250.  38
+  251.  54
+  252.  38
+  253.  54
+  254.  38
+  255.  42
+  256.  41
+  257.  25
+  258.  50
+  259.  42
+  260.  50
+  261.  42
+  262.  54
+  263.  46
+  264.  54
+  265.  50
+  266.  42
+  267.  50
+  268.  42
+  269.  42
+  270.  17
+  271.  42
+  272.  22
+  273.  42
+  274.  25
+  275.  54
+  276.  42
+  277.  54
+  278.  42
+  279.  58
+  280.  42
+  281.  54
+  282.  25
+  283.  54
+  284.  25
+  285.  50
+  286.  38
+  287.  45
+  288.  21
+  289.  45
+  290.  28
+  291.  54
+  292.  42
+  293.  54
+  294.  42
+  295.  46
+  296.  37
+  297.  46
+  298.  37
+  299.  41
+  300.  58
+  301.  60
+  302.  43
+  303.  42
+  304.  33
+  305.  46
+  306.  30
+  307.  49
+  308.  41
+  309.  38
+  310.  27
+  311.  82
+  312.  75
+  313.  38
+  314.  75
+  315.  38
+  316.  75
+  317.  38
+  318.  38
+  319.  73
+  320.  54
+  321.  44
+  322.  45
+  323.  44
+  324.  45
+  325.  45
+  326.  53
+  327.  47
+  328.  53
+  329.  53
+  330.  53
+  331.  53
+  332.  53
+  333.  53
+  334.  53
+  335.  53
+  336.  53
+  337.  53
+  338.  53
+  339.  53
+  340.  53
+  341.  53
+  342.  53
+  343.  53
+  344.  53
+  345.  53
+  346.  53
+  347.  53
+  348.  53
+  349.  53
+  350.  53
+  351.  53
+  352.  53
+  353.  53
+  354.  53
+  355.  53
+  356.  53
+  357.  53
+  358.  53
+  359.  53
+  360.  53
+  361.  53
+  362.  53
+  363.  53
+  364.  53
+  365.  53
+  366.  53
+  367.  53
+  368.  53
+  369.  53
+  370.  53
+  371.  53
+  372.  53
+  373.  55
+  374.  45
+  375.  75
+  376.  74
+  377.  74
+  378.  74
+  379.  74
+  380.  45
+  381.  45
+  382.  45
+  383.  77
+  384.  79
+  385.  69
+  386.  56
+  387.  56
+  388.  40
+  389.  49
+  390.  45
+  391.  38
+  392.  38
+  393.  56
+  394.  55
+  395.  33
+  396.  45
+  397.  14
+  398.  27
+  399.  66
+  400.  24
+  401.  45
+  402.  27
+  403.  27
+  404.  45
+  405.  27
+  406.  50
+  407.  42
+  408.  54
+  409.  38
+  410.  54
+  411.  38
+  412.  50
+  413.  42
+  414.  50
+  415.  42
+  416.  50
+  417.  42
+  418.  58
+  419.  42
+  420.  58
+  421.  42
+  422.  58
+  423.  42
+  424.  54
+  425.  42
+  426.  54
+  427.  42
+  428.  21
+  429.  21
+  430.  21
+  431.  21
+  432.  21
+  433.  21
+  434.  21
+  435.  17
+  436.  38
+  437.  17
+  438.  50
+  439.  38
+  440.  38
+  441.  42
+  442.  17
+  443.  54
+  444.  42
+  445.  54
+  446.  42
+  447.  58
+  448.  42
+  449.  58
+  450.  42
+  451.  54
+  452.  25
+  453.  50
+  454.  38
+  455.  46
+  456.  21
+  457.  54
+  458.  42
+  459.  54
+  460.  42
+  461.  54
+  462.  42
+  463.  54
+  464.  42
+  465.  75
+  466.  53
+  467.  49
+  468.  37
+  469.  17
+  470.  50
+  471.  42
+  472.  75
+  473.  67
+  474.  58
+  475.  46
+  476.  21
+  477.  75
+  478.  53
+  479.  75
+  480.  53
+  481.  75
+  482.  53
+  483.  49
+  484.  37
+  485.  17
+  486.  25
+  487.  42
+  488.  45
+  489.  63
+  490.  63
+  491.  63
+  492.  63
+  493.  25
+  494.  25
+  495.  25
+  496.  25
+  497.  50
+  498.  59
+  499.  63
+  500.  29
+  501.  58
+  502.  62
+  503.  56
+  504.  17
+  505.  50
+  506.  50
+  507.  50
+  508.  50
+  509.  46
+  510.  54
+  511.  21
+  512.  50
+  513.  50
+  514.  61
+  515.  54
+  516.  49
+  517.  58
+  518.  54
+  519.  50
+  520.  46
+  521.  45
+  522.  49
+  523.  49
+  524.  63
+  525.  56
+  526.  21
+  527.  49
+  528.  43
+  529.  33
+  530.  42
+  531.  17
+  532.  41
+  533.  43
+  534.  38
+  535.  33
+  536.  42
+  537.  42
+  538.  17
+  539.  38
+  540.  38
+  541.  43
+  542.  37
+  543.  34
+  544.  42
+  545.  43
+  546.  36
+  547.  41
+  548.  39
+  549.  53
+  550.  59
+  551.  17
+  552.  41
+  553.  42
+  554.  41
+  555.  59
+  556.  50
+  557.  65
+  558.  41
+  559.  54
+  560.  50
+  561.  21
+  562.  21
+  563.  38
+  564.  79
+  565.  76
+  566.  64
+  567.  44
+  568.  48
+  569.  54
+  570.  50
+  571.  49
+  572.  50
+  573.  41
+  574.  51
+  575.  50
+  576.  69
+  577.  45
+  578.  54
+  579.  54
+  580.  44
+  581.  49
+  582.  61
+  583.  54
+  584.  58
+  585.  54
+  586.  50
+  587.  54
+  588.  45
+  589.  48
+  590.  57
+  591.  49
+  592.  55
+  593.  50
+  594.  69
+  595.  70
+  596.  59
+  597.  66
+  598.  49
+  599.  54
+  600.  76
+  601.  54
+  602.  42
+  603.  43
+  604.  40
+  605.  27
+  606.  44
+  607.  42
+  608.  50
+  609.  34
+  610.  42
+  611.  42
+  612.  33
+  613.  44
+  614.  52
+  615.  41
+  616.  42
+  617.  41
+  618.  42
+  619.  38
+  620.  34
+  621.  37
+  622.  62
+  623.  36
+  624.  43
+  625.  39
+  626.  60
+  627.  62
+  628.  47
+  629.  54
+  630.  39
+  631.  38
+  632.  56
+  633.  41
+  634.  42
+  635.  42
+  636.  27
+  637.  38
+  638.  38
+  639.  17
+  640.  21
+  641.  17
+  642.  68
+  643.  61
+  644.  42
+  645.  33
+  646.  37
+  647.  41
+  648.  37
+  649.  31
+  650.  75
+  651.  80
+  652.  52
+  653.  25
+  654.  25
+  655.  25
+  656.  25
+  657.  25
+  658.  25
+  659.  25
+  660.  25
+  661.  25
+  662.  25
+  663.  25
+  664.  25
+  665.  25
+  666.  29
+  667.  25
+  668.  19
+  669.  25
+  670.  25
+  671.  21
+  672.  42
+  673.  41
+  674.  30
+  675.  38
+  676.  45
+  677.  19
+  678.  29
+  679.  45
+  680.  44
+  681.  19
+  682.  38
+  683.  35
+  684.  35
+  685.  45
+  686.  45
+  687.  19
+  688.  26
+  689.  43
+  690.  40
+  691.  42
+  692.  41
+  693.  35
+  694.  36
+  695.  41
+  696.  38
+  697.  52
+  698.  48
+  699.  37
+  700.  37
+  701.  37
+  702.  18
+  703.  31
+  704.  60
+  705.  19
+  706.  38
+  707.  38
+  708.  35
+  709.  35
+  710.  40
+  711.  52
+  712.  52
+  713.  52
+  714.  52
+  715.  42
+  716.  42
+  717.  42
+  718.  41
+  719.  30
+  720.  38
+  721.  45
+  722.  22
+  723.  31
+  724.  44
+  725.  22
+  726.  38
+  727.  35
+  728.  35
+  729.  45
+  730.  26
+  731.  43
+  732.  42
+  733.  41
+  734.  36
+  735.  41
+  736.  38
+  737.  52
+  738.  48
+  739.  19
+  740.  41
+  741.  35
+  742.  41
+  743.  43
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.  24
+  749.  24
+  750.  27
+  751.  31
+  752.  16
+  753.  15
+  754.  18
+  755.  15
+  756.  15
+  757.  16
+  758.  15
+  759.  16
+  760.  12
+  761.  39
+  762.  39
+  763.  39
+  764.  39
+  765.  39
+  766.  39
+  767.  39
+  768.  39
+  769.  39
+  770.  39
+  771.  39
+  772.  24
+  773.  39
+  774.  56
+  775.  56
+  776.  21
+  777.  56
+  778.  39
+  779.  39
+  780.  39
+  781.  56
+  782.  56
+  783.  56
+  784.  56
+  785.  56
+  786.  16
+  787.  56
+  788.  56
+  789.  56
+  790.  56
+  791.  56
+  792.  56
+  793.  56
+  794.  56
+  795.  48
+  796.  56
+  797.  56
+  798.  56
+  799.  54
+  800.  54
+  801.  18
+  802.  18
+  803.  56
+  804.  56
+  805.  56
+  806.  56
+  807.  42
+  808.  39
+  809.  40
+  810.  40
+  811.  37
+  812.  37
+  813.  61
+  814.  70
+  815.  30
+  816.  39
+  817.  61
+  818.  70
+  819.  30
+  820.  39
+  821.  48
+  822.  44
+  823.  56
+  824.  56
+  825.  56
+  826.  56
+  827.  56
+  828.  56
+  829.  56
+  830.  56
+  831.  56
+  832.  56
+  833.  56
+  834.  56
+  835.  56
+  836.  56
+  837.  56
+  838.  56
+  839.  17
+  840.  16
+  841.  16
+  842.  16
+  843.  16
+  844.  56
+  845.  56
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.  42
+  863.  75
+  864.  56
+  865.  56
+  866.  56
+  867.  56
+  868.  56
+  869.  56
+  870.  56
+  871.  56
+  872.  56
+  873.  56
+  874.  56
+  875.  56
+  876.  56
+  877.  56
+  878.  56
+  879.  56
+  880.  56
+  881.  56
+  882.  56
+  883.  56
+  884.  56
+  885.  56
+  886.  56
+  887.  56
+  888.  56
+  889.  56
+  890.  56
+  891.  56
+  892.  24
+  893.  24
+  894.  56
+  895.  46
+  896.  31
+  897.  16
+  898.  17
+  899.  16
+  900.  17
+  901.  32
+  902.  32
+  903.  16
+  904.  17
+  905.  48
+  906.  44
+  907.  18
+  908.  18
+  909.  16
+  910.  17
+  911.  54
+  912.  54
+  913.  18
+  914.  18
+  915.  21
+  916.  28
+  917.  54
+  918.  54
+  919.  18
+  920.  18
+  921.  54
+  922.  54
+  923.  18
+  924.  18
+  925.  42
+  926.  39
+  927.  40
+  928.  40
+  929.  42
+  930.  39
+  931.  40
+  932.  40
+  933.  42
+  934.  39
+  935.  40
+  936.  40
+  937.  25
+  938.  25
+  939.  25
+  940.  25
+  941.  37
+  942.  37
+  943.  37
+  944.  37
+  945.  62
+  946.  62
+  947.  40
+  948.  40
+  949.  62
+  950.  62
+  951.  40
+  952.  40
+  953.  82
+  954.  82
+  955.  63
+  956.  63
+  957.  82
+  958.  82
+  959.  63
+  960.  63
+  961.  44
+  962.  44
+  963.  44
+  964.  44
+  965.  44
+  966.  44
+  967.  44
+  968.  44
+  969.  41
+  970.  34
+  971.  39
+  972.  30
+  973.  41
+  974.  34
+  975.  39
+  976.  30
+  977.  59
+  978.  59
+  979.  20
+  980.  20
+  981.  44
+  982.  44
+  983.  20
+  984.  20
+  985.  45
+  986.  45
+  987.  30
+  988.  30
+  989.  38
+  990.  38
+  991.  16
+  992.  16
+  993.  25
+  994.  25
+  995.  30
+  996.  30
+  997.  39
+  998.  39
+  999.  18
+ 1000.  18
+ 1001.  21
+ 1002.  28
+ 1003.  34
+ 1004.  30
+ 1005.  32
+ 1006.  32
+ 1007.  48
+ 1008.  44
+ 1009.  48
+ 1010.  44
+ 1011.  18
+ 1012.  18
+ 1013.  41
+ 1014.  45
+ 1015.  41
+ 1016.  45
+ 1017.  41
+ 1018.  45
+ 1019.  41
+ 1020.  45
+ 1021.  56
+ 1022.  56
+ 1023.  15
+ 1024.  15
+ 1025.  56
+ 1026.  56
+ 1027.  56
+ 1028.  12
+ 1029.  16
+ 1030.  56
+ 1031.  56
+ 1032.  16
+ 1033.  18
+ 1034.  56
+ 1035.  56
+ 1036.  56
+ 1037.  16
+ 1038.  16
+ 1039.  16
+ 1040.  16
+ 1041.  16
+ 1042.  17
+ 1043.  56
+ 1044.  15
+ 1045.  15
+ 1046.  56
+ 1047.  56
+ 1048.  56
+ 1049.  56
+ 1050.  56
+ 1051.  56
+ 1052.  56
+ 1053.  56
+ 1054.  56
+ 1055.  56
+ 1056.  56
+ 1057.  56
+ 1058.  56
+ 1059.  56
+ 1060.  56
+ 1061.  56
+ 1062.  56
+ 1063.  56
+ 1064.  56
+ 1065.  56
+ 1066.  56
+ 1067.  56
+ 1068.  56
+ 1069.  56
+ 1070.  56
+ 1071.  56
+ 1072.  56
+ 1073.  56
+ 1074.  56
+ 1075.  56
+ 1076.  56
+ 1077.  56
+ 1078.  56
+ 1079.  56
+ 1080.  56
+ 1081.  56
+ 1082.  56
+ 1083.  56
+ 1084.  56
+ 1085.  56
+ 1086.  56
+ 1087.  56
+ 1088.  56
+ 1089.  56
+ 1090.  56
+ 1091.  56
+ 1092.  56
+ 1093.  56
+ 1094.  56
+ 1095.  56
+ 1096.  56
+ 1097.  56
+ 1098.  56
+ 1099.  56
+ 1100.  24
+ 1101.  24
+ 1102.  24
+ 1103.  56
+ 1104.  56
+ 1105.  56
+ 1106.  56
+ 1107.  56
+ 1108.  56
+ 1109.  56
+ 1110.  56
+ 1111.  56
+ 1112.  56
+ 1113.  56
+ 1114.  56
+ 1115.  56
+ 1116.  56
+ 1117.  56
+ 1118.  56
+ 1119.  56
+ 1120.  56
+ 1121.  56
+ 1122.  56
+ 1123.  56
+ 1124.  56
+ 1125.  56
+ 1126.  56
+ 1127.   9
+ 1128.  75
+ 1129. 150
+ 1130.  64
+ 1131.  49
+ 1132.  64
+ 1133.  50
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.  38
+ 1151.  63
+ 1152.  63
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.  17
+ 1188.  50
+ 1189.  42
+ 1190.  50
+ 1191.  42
+ 1192.  50
+ 1193.  42
+ 1194.  50
+ 1195.  42
+ 1196.  50
+ 1197.  42
+ 1198.  50
+ 1199.  42
+ 1200.  50
+ 1201.  42
+ 1202.  50
+ 1203.  42
+ 1204.  50
+ 1205.  42
+ 1206.  50
+ 1207.  42
+ 1208.  50
+ 1209.  42
+ 1210.  50
+ 1211.  42
+ 1212.  50
+ 1213.  42
+ 1214.  50
+ 1215.  42
+ 1216.  50
+ 1217.  42
+ 1218.  50
+ 1219.  42
+ 1220.  50
+ 1221.  42
+ 1222.  50
+ 1223.  42
+ 1224.  50
+ 1225.  42
+ 1226.  50
+ 1227.  42
+ 1228.  21
+ 1229.  17
+ 1230.  21
+ 1231.  17
+ 1232.  58
+ 1233.  42
+ 1234.  58
+ 1235.  42
+ 1236.  58
+ 1237.  42
+ 1238.  58
+ 1239.  42
+ 1240.  58
+ 1241.  42
+ 1242.  58
+ 1243.  42
+ 1244.  58
+ 1245.  42
+ 1246.  64
+ 1247.  49
+ 1248.  64
+ 1249.  49
+ 1250.  64
+ 1251.  49
+ 1252.  64
+ 1253.  49
+ 1254.  64
+ 1255.  49
+ 1256.  54
+ 1257.  42
+ 1258.  54
+ 1259.  42
+ 1260.  64
+ 1261.  50
+ 1262.  64
+ 1263.  50
+ 1264.  64
+ 1265.  50
+ 1266.  64
+ 1267.  50
+ 1268.  64
+ 1269.  50
+ 1270.  49
+ 1271.  37
+ 1272.  49
+ 1273.  37
+ 1274.  49
+ 1275.  37
+ 1276.  50
+ 1277.  42
+ 1278.  21
+ 1279.  17
+ 1280.  58
+ 1281.  42
+ 1282.  54
+ 1283.  42
+ 1284.  54
+ 1285.  42
+ 1286.  54
+ 1287.  42
+ 1288.  54
+ 1289.  42
+ 1290.  54
+ 1291.  42
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.  41
+ 1297.  27
+ 1298.  69
+ 1299.  50
+ 1300.  44
+ 1301.  33
+ 1302.  44
+ 1303.  33
+ 1304.  54
+ 1305.  41
+ 1306.  42
+ 1307.  38
+ 1308.  42
+ 1309.  38
+ 1310.  50
+ 1311.  38
+ 1312.  50
+ 1313.  39
+ 1314.  50
+ 1315.  39
+ 1316.  56
+ 1317.  42
+ 1318.  58
+ 1319.  42
+
+
+	DevRec 21: ppem =  83, maxWid = 166
+    0.  62
+    1.   0
+    2.  23
+    3.  23
+    4.  25
+    5.  29
+    6.  46
+    7.  46
+    8.  74
+    9.  55
+   10.  16
+   11.  28
+   12.  28
+   13.  32
+   14.  48
+   15.  23
+   16.  28
+   17.  23
+   18.  23
+   19.  46
+   20.  46
+   21.  46
+   22.  46
+   23.  46
+   24.  46
+   25.  46
+   26.  46
+   27.  46
+   28.  46
+   29.  23
+   30.  23
+   31.  48
+   32.  48
+   33.  48
+   34.  46
+   35.  84
+   36.  55
+   37.  55
+   38.  60
+   39.  60
+   40.  55
+   41.  51
+   42.  65
+   43.  60
+   44.  23
+   45.  42
+   46.  55
+   47.  46
+   48.  69
+   49.  60
+   50.  65
+   51.  55
+   52.  65
+   53.  60
+   54.  55
+   55.  52
+   56.  60
+   57.  55
+   58.  83
+   59.  56
+   60.  54
+   61.  51
+   62.  23
+   63.  23
+   64.  23
+   65.  38
+   66.  46
+   67.  28
+   68.  46
+   69.  46
+   70.  42
+   71.  46
+   72.  46
+   73.  24
+   74.  46
+   75.  46
+   76.  18
+   77.  19
+   78.  43
+   79.  18
+   80.  71
+   81.  46
+   82.  46
+   83.  46
+   84.  46
+   85.  28
+   86.  42
+   87.  23
+   88.  46
+   89.  41
+   90.  59
+   91.  42
+   92.  39
+   93.  40
+   94.  28
+   95.  20
+   96.  28
+   97.  48
+   98.  55
+   99.  55
+  100.  60
+  101.  55
+  102.  60
+  103.  65
+  104.  60
+  105.  46
+  106.  46
+  107.  46
+  108.  46
+  109.  46
+  110.  46
+  111.  42
+  112.  46
+  113.  46
+  114.  46
+  115.  46
+  116.  23
+  117.  23
+  118.  23
+  119.  23
+  120.  46
+  121.  46
+  122.  46
+  123.  46
+  124.  46
+  125.  46
+  126.  46
+  127.  46
+  128.  46
+  129.  46
+  130.  46
+  131.  33
+  132.  46
+  133.  46
+  134.  46
+  135.  29
+  136.  45
+  137.  51
+  138.  61
+  139.  61
+  140.  83
+  141.  28
+  142.  28
+  143.  46
+  144.  83
+  145.  65
+  146.  59
+  147.  46
+  148.  46
+  149.  46
+  150.  46
+  151.  48
+  152.  41
+  153.  59
+  154.  68
+  155.  46
+  156.  23
+  157.  31
+  158.  30
+  159.  64
+  160.  74
+  161.  51
+  162.  51
+  163.  25
+  164.  48
+  165.  46
+  166.  46
+  167.  46
+  168.  50
+  169.  46
+  170.  46
+  171.  83
+  172.  55
+  173.  55
+  174.  65
+  175.  83
+  176.  78
+  177.  46
+  178.  83
+  179.  28
+  180.  28
+  181.  18
+  182.  18
+  183.  46
+  184.  41
+  185.  39
+  186.  54
+  187.  14
+  188.  46
+  189.  28
+  190.  28
+  191.  42
+  192.  42
+  193.  46
+  194.  23
+  195.  18
+  196.  28
+  197.  83
+  198.  55
+  199.  55
+  200.  55
+  201.  55
+  202.  55
+  203.  23
+  204.  23
+  205.  23
+  206.  23
+  207.  65
+  208.  65
+  209.  65
+  210.  60
+  211.  60
+  212.  60
+  213.  23
+  214.  28
+  215.  24
+  216.  28
+  217.  28
+  218.  28
+  219.  28
+  220.  28
+  221.  28
+  222.  28
+  223.  28
+  224.  46
+  225.  18
+  226.  55
+  227.  42
+  228.  51
+  229.  40
+  230.  20
+  231.  60
+  232.  46
+  233.  54
+  234.  39
+  235.  55
+  236.  46
+  237.  48
+  238.  48
+  239.  28
+  240.  28
+  241.  28
+  242.  69
+  243.  69
+  244.  69
+  245.  46
+  246.  65
+  247.  46
+  248.  23
+  249.  55
+  250.  42
+  251.  60
+  252.  42
+  253.  60
+  254.  42
+  255.  46
+  256.  46
+  257.  28
+  258.  55
+  259.  46
+  260.  55
+  261.  46
+  262.  60
+  263.  51
+  264.  60
+  265.  55
+  266.  46
+  267.  55
+  268.  46
+  269.  46
+  270.  18
+  271.  46
+  272.  24
+  273.  46
+  274.  28
+  275.  60
+  276.  46
+  277.  60
+  278.  46
+  279.  65
+  280.  46
+  281.  60
+  282.  28
+  283.  60
+  284.  28
+  285.  55
+  286.  42
+  287.  52
+  288.  24
+  289.  52
+  290.  31
+  291.  60
+  292.  46
+  293.  60
+  294.  46
+  295.  51
+  296.  40
+  297.  51
+  298.  40
+  299.  46
+  300.  65
+  301.  66
+  302.  48
+  303.  46
+  304.  37
+  305.  51
+  306.  33
+  307.  54
+  308.  46
+  309.  42
+  310.  30
+  311.  90
+  312.  83
+  313.  42
+  314.  83
+  315.  42
+  316.  83
+  317.  42
+  318.  42
+  319.  81
+  320.  60
+  321.  48
+  322.  50
+  323.  48
+  324.  50
+  325.  50
+  326.  59
+  327.  52
+  328.  59
+  329.  59
+  330.  59
+  331.  59
+  332.  59
+  333.  59
+  334.  59
+  335.  59
+  336.  59
+  337.  59
+  338.  59
+  339.  59
+  340.  59
+  341.  59
+  342.  59
+  343.  59
+  344.  59
+  345.  59
+  346.  59
+  347.  59
+  348.  59
+  349.  59
+  350.  59
+  351.  59
+  352.  59
+  353.  59
+  354.  59
+  355.  59
+  356.  59
+  357.  59
+  358.  59
+  359.  59
+  360.  59
+  361.  59
+  362.  59
+  363.  59
+  364.  59
+  365.  59
+  366.  59
+  367.  59
+  368.  59
+  369.  59
+  370.  59
+  371.  59
+  372.  59
+  373.  61
+  374.  50
+  375.  83
+  376.  82
+  377.  82
+  378.  82
+  379.  82
+  380.  50
+  381.  50
+  382.  50
+  383.  85
+  384.  87
+  385.  76
+  386.  62
+  387.  62
+  388.  44
+  389.  54
+  390.  49
+  391.  42
+  392.  42
+  393.  62
+  394.  61
+  395.  37
+  396.  50
+  397.  16
+  398.  29
+  399.  73
+  400.  27
+  401.  50
+  402.  29
+  403.  29
+  404.  50
+  405.  29
+  406.  55
+  407.  46
+  408.  60
+  409.  42
+  410.  60
+  411.  42
+  412.  55
+  413.  46
+  414.  55
+  415.  46
+  416.  55
+  417.  46
+  418.  65
+  419.  46
+  420.  65
+  421.  46
+  422.  65
+  423.  46
+  424.  60
+  425.  46
+  426.  60
+  427.  46
+  428.  23
+  429.  23
+  430.  23
+  431.  23
+  432.  23
+  433.  23
+  434.  23
+  435.  18
+  436.  42
+  437.  19
+  438.  55
+  439.  43
+  440.  42
+  441.  46
+  442.  18
+  443.  60
+  444.  46
+  445.  60
+  446.  46
+  447.  65
+  448.  46
+  449.  65
+  450.  46
+  451.  60
+  452.  28
+  453.  55
+  454.  42
+  455.  51
+  456.  23
+  457.  60
+  458.  46
+  459.  60
+  460.  46
+  461.  60
+  462.  46
+  463.  60
+  464.  46
+  465.  83
+  466.  59
+  467.  54
+  468.  39
+  469.  18
+  470.  55
+  471.  46
+  472.  83
+  473.  74
+  474.  65
+  475.  51
+  476.  21
+  477.  83
+  478.  59
+  479.  83
+  480.  59
+  481.  83
+  482.  59
+  483.  54
+  484.  39
+  485.  18
+  486.  28
+  487.  46
+  488.  50
+  489.  69
+  490.  69
+  491.  69
+  492.  69
+  493.  28
+  494.  28
+  495.  28
+  496.  28
+  497.  55
+  498.  65
+  499.  70
+  500.  32
+  501.  64
+  502.  68
+  503.  62
+  504.  18
+  505.  55
+  506.  55
+  507.  55
+  508.  55
+  509.  51
+  510.  60
+  511.  23
+  512.  55
+  513.  55
+  514.  69
+  515.  60
+  516.  54
+  517.  65
+  518.  60
+  519.  55
+  520.  51
+  521.  52
+  522.  54
+  523.  56
+  524.  69
+  525.  62
+  526.  23
+  527.  54
+  528.  48
+  529.  37
+  530.  46
+  531.  18
+  532.  45
+  533.  48
+  534.  42
+  535.  37
+  536.  46
+  537.  46
+  538.  18
+  539.  42
+  540.  42
+  541.  48
+  542.  41
+  543.  37
+  544.  46
+  545.  47
+  546.  40
+  547.  45
+  548.  44
+  549.  59
+  550.  65
+  551.  18
+  552.  45
+  553.  46
+  554.  45
+  555.  65
+  556.  55
+  557.  72
+  558.  45
+  559.  60
+  560.  55
+  561.  23
+  562.  23
+  563.  42
+  564.  88
+  565.  84
+  566.  71
+  567.  48
+  568.  53
+  569.  60
+  570.  55
+  571.  54
+  572.  55
+  573.  45
+  574.  56
+  575.  55
+  576.  77
+  577.  50
+  578.  60
+  579.  60
+  580.  48
+  581.  54
+  582.  69
+  583.  60
+  584.  65
+  585.  60
+  586.  55
+  587.  60
+  588.  52
+  589.  53
+  590.  63
+  591.  56
+  592.  61
+  593.  55
+  594.  76
+  595.  78
+  596.  66
+  597.  73
+  598.  54
+  599.  60
+  600.  84
+  601.  60
+  602.  46
+  603.  48
+  604.  44
+  605.  30
+  606.  48
+  607.  46
+  608.  56
+  609.  38
+  610.  46
+  611.  46
+  612.  36
+  613.  48
+  614.  57
+  615.  46
+  616.  46
+  617.  45
+  618.  46
+  619.  42
+  620.  38
+  621.  39
+  622.  68
+  623.  42
+  624.  48
+  625.  43
+  626.  67
+  627.  68
+  628.  52
+  629.  60
+  630.  43
+  631.  42
+  632.  62
+  633.  45
+  634.  46
+  635.  46
+  636.  30
+  637.  42
+  638.  42
+  639.  18
+  640.  23
+  641.  19
+  642.  75
+  643.  67
+  644.  46
+  645.  36
+  646.  39
+  647.  46
+  648.  41
+  649.  34
+  650.  83
+  651.  89
+  652.  57
+  653.  28
+  654.  28
+  655.  28
+  656.  28
+  657.  28
+  658.  28
+  659.  28
+  660.  28
+  661.  28
+  662.  28
+  663.  28
+  664.  28
+  665.  28
+  666.  32
+  667.  28
+  668.  20
+  669.  28
+  670.  28
+  671.  23
+  672.  47
+  673.  45
+  674.  33
+  675.  42
+  676.  50
+  677.  20
+  678.  32
+  679.  50
+  680.  49
+  681.  20
+  682.  42
+  683.  38
+  684.  38
+  685.  50
+  686.  50
+  687.  20
+  688.  29
+  689.  48
+  690.  44
+  691.  47
+  692.  45
+  693.  38
+  694.  40
+  695.  46
+  696.  42
+  697.  58
+  698.  53
+  699.  41
+  700.  41
+  701.  41
+  702.  20
+  703.  35
+  704.  67
+  705.  20
+  706.  42
+  707.  42
+  708.  38
+  709.  38
+  710.  44
+  711.  58
+  712.  58
+  713.  58
+  714.  58
+  715.  47
+  716.  47
+  717.  47
+  718.  45
+  719.  33
+  720.  42
+  721.  50
+  722.  24
+  723.  34
+  724.  49
+  725.  24
+  726.  42
+  727.  38
+  728.  38
+  729.  50
+  730.  29
+  731.  48
+  732.  47
+  733.  45
+  734.  40
+  735.  46
+  736.  42
+  737.  58
+  738.  53
+  739.  20
+  740.  45
+  741.  38
+  742.  45
+  743.  48
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.  26
+  749.  26
+  750.  30
+  751.  34
+  752.  17
+  753.  17
+  754.  20
+  755.  17
+  756.  17
+  757.  17
+  758.  17
+  759.  18
+  760.  14
+  761.  44
+  762.  44
+  763.  44
+  764.  44
+  765.  44
+  766.  44
+  767.  44
+  768.  44
+  769.  44
+  770.  44
+  771.  44
+  772.  26
+  773.  44
+  774.  62
+  775.  62
+  776.  23
+  777.  62
+  778.  44
+  779.  44
+  780.  44
+  781.  62
+  782.  62
+  783.  62
+  784.  62
+  785.  62
+  786.  18
+  787.  62
+  788.  62
+  789.  62
+  790.  62
+  791.  62
+  792.  62
+  793.  62
+  794.  62
+  795.  53
+  796.  62
+  797.  62
+  798.  62
+  799.  59
+  800.  59
+  801.  20
+  802.  20
+  803.  62
+  804.  62
+  805.  62
+  806.  62
+  807.  47
+  808.  44
+  809.  44
+  810.  44
+  811.  41
+  812.  41
+  813.  67
+  814.  77
+  815.  33
+  816.  43
+  817.  67
+  818.  77
+  819.  33
+  820.  43
+  821.  53
+  822.  49
+  823.  62
+  824.  62
+  825.  62
+  826.  62
+  827.  62
+  828.  62
+  829.  62
+  830.  62
+  831.  62
+  832.  62
+  833.  62
+  834.  62
+  835.  62
+  836.  62
+  837.  62
+  838.  62
+  839.  19
+  840.  18
+  841.  18
+  842.  18
+  843.  18
+  844.  62
+  845.  62
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.  46
+  863.  83
+  864.  62
+  865.  62
+  866.  62
+  867.  62
+  868.  62
+  869.  62
+  870.  62
+  871.  62
+  872.  62
+  873.  62
+  874.  62
+  875.  62
+  876.  62
+  877.  62
+  878.  62
+  879.  62
+  880.  62
+  881.  62
+  882.  62
+  883.  62
+  884.  62
+  885.  62
+  886.  62
+  887.  62
+  888.  62
+  889.  62
+  890.  62
+  891.  62
+  892.  26
+  893.  26
+  894.  62
+  895.  51
+  896.  34
+  897.  17
+  898.  19
+  899.  17
+  900.  19
+  901.  36
+  902.  36
+  903.  17
+  904.  19
+  905.  53
+  906.  49
+  907.  20
+  908.  20
+  909.  17
+  910.  19
+  911.  59
+  912.  59
+  913.  20
+  914.  20
+  915.  23
+  916.  31
+  917.  59
+  918.  59
+  919.  20
+  920.  20
+  921.  59
+  922.  59
+  923.  20
+  924.  20
+  925.  47
+  926.  44
+  927.  44
+  928.  44
+  929.  47
+  930.  44
+  931.  44
+  932.  44
+  933.  47
+  934.  44
+  935.  44
+  936.  44
+  937.  28
+  938.  28
+  939.  28
+  940.  28
+  941.  41
+  942.  41
+  943.  41
+  944.  41
+  945.  68
+  946.  68
+  947.  44
+  948.  44
+  949.  68
+  950.  68
+  951.  44
+  952.  44
+  953.  91
+  954.  91
+  955.  70
+  956.  70
+  957.  91
+  958.  91
+  959.  70
+  960.  70
+  961.  48
+  962.  48
+  963.  48
+  964.  48
+  965.  48
+  966.  48
+  967.  48
+  968.  48
+  969.  45
+  970.  37
+  971.  44
+  972.  33
+  973.  45
+  974.  37
+  975.  44
+  976.  33
+  977.  65
+  978.  65
+  979.  22
+  980.  22
+  981.  48
+  982.  48
+  983.  22
+  984.  22
+  985.  50
+  986.  50
+  987.  33
+  988.  33
+  989.  42
+  990.  42
+  991.  17
+  992.  17
+  993.  28
+  994.  28
+  995.  33
+  996.  33
+  997.  44
+  998.  44
+  999.  20
+ 1000.  20
+ 1001.  23
+ 1002.  31
+ 1003.  37
+ 1004.  33
+ 1005.  36
+ 1006.  36
+ 1007.  53
+ 1008.  49
+ 1009.  53
+ 1010.  49
+ 1011.  20
+ 1012.  20
+ 1013.  45
+ 1014.  50
+ 1015.  45
+ 1016.  50
+ 1017.  45
+ 1018.  50
+ 1019.  45
+ 1020.  50
+ 1021.  62
+ 1022.  62
+ 1023.  17
+ 1024.  17
+ 1025.  62
+ 1026.  62
+ 1027.  62
+ 1028.  14
+ 1029.  18
+ 1030.  62
+ 1031.  62
+ 1032.  17
+ 1033.  20
+ 1034.  62
+ 1035.  62
+ 1036.  62
+ 1037.  18
+ 1038.  18
+ 1039.  18
+ 1040.  18
+ 1041.  18
+ 1042.  19
+ 1043.  62
+ 1044.  17
+ 1045.  17
+ 1046.  62
+ 1047.  62
+ 1048.  62
+ 1049.  62
+ 1050.  62
+ 1051.  62
+ 1052.  62
+ 1053.  62
+ 1054.  62
+ 1055.  62
+ 1056.  62
+ 1057.  62
+ 1058.  62
+ 1059.  62
+ 1060.  62
+ 1061.  62
+ 1062.  62
+ 1063.  62
+ 1064.  62
+ 1065.  62
+ 1066.  62
+ 1067.  62
+ 1068.  62
+ 1069.  62
+ 1070.  62
+ 1071.  62
+ 1072.  62
+ 1073.  62
+ 1074.  62
+ 1075.  62
+ 1076.  62
+ 1077.  62
+ 1078.  62
+ 1079.  62
+ 1080.  62
+ 1081.  62
+ 1082.  62
+ 1083.  62
+ 1084.  62
+ 1085.  62
+ 1086.  62
+ 1087.  62
+ 1088.  62
+ 1089.  62
+ 1090.  62
+ 1091.  62
+ 1092.  62
+ 1093.  62
+ 1094.  62
+ 1095.  62
+ 1096.  62
+ 1097.  62
+ 1098.  62
+ 1099.  62
+ 1100.  26
+ 1101.  26
+ 1102.  26
+ 1103.  62
+ 1104.  62
+ 1105.  62
+ 1106.  62
+ 1107.  62
+ 1108.  62
+ 1109.  62
+ 1110.  62
+ 1111.  62
+ 1112.  62
+ 1113.  62
+ 1114.  62
+ 1115.  62
+ 1116.  62
+ 1117.  62
+ 1118.  62
+ 1119.  62
+ 1120.  62
+ 1121.  62
+ 1122.  62
+ 1123.  62
+ 1124.  62
+ 1125.  62
+ 1126.  62
+ 1127.  10
+ 1128.  83
+ 1129. 166
+ 1130.  71
+ 1131.  54
+ 1132.  71
+ 1133.  56
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.  43
+ 1151.  69
+ 1152.  69
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.  18
+ 1188.  55
+ 1189.  46
+ 1190.  55
+ 1191.  46
+ 1192.  55
+ 1193.  46
+ 1194.  55
+ 1195.  46
+ 1196.  55
+ 1197.  46
+ 1198.  55
+ 1199.  46
+ 1200.  55
+ 1201.  46
+ 1202.  55
+ 1203.  46
+ 1204.  55
+ 1205.  46
+ 1206.  55
+ 1207.  46
+ 1208.  55
+ 1209.  46
+ 1210.  55
+ 1211.  46
+ 1212.  55
+ 1213.  46
+ 1214.  55
+ 1215.  46
+ 1216.  55
+ 1217.  46
+ 1218.  55
+ 1219.  46
+ 1220.  55
+ 1221.  46
+ 1222.  55
+ 1223.  46
+ 1224.  55
+ 1225.  46
+ 1226.  55
+ 1227.  46
+ 1228.  23
+ 1229.  18
+ 1230.  23
+ 1231.  18
+ 1232.  65
+ 1233.  46
+ 1234.  65
+ 1235.  46
+ 1236.  65
+ 1237.  46
+ 1238.  65
+ 1239.  46
+ 1240.  65
+ 1241.  46
+ 1242.  65
+ 1243.  46
+ 1244.  65
+ 1245.  46
+ 1246.  71
+ 1247.  54
+ 1248.  71
+ 1249.  54
+ 1250.  71
+ 1251.  54
+ 1252.  71
+ 1253.  54
+ 1254.  71
+ 1255.  54
+ 1256.  60
+ 1257.  46
+ 1258.  60
+ 1259.  46
+ 1260.  71
+ 1261.  56
+ 1262.  71
+ 1263.  56
+ 1264.  71
+ 1265.  56
+ 1266.  71
+ 1267.  56
+ 1268.  71
+ 1269.  56
+ 1270.  54
+ 1271.  39
+ 1272.  54
+ 1273.  39
+ 1274.  54
+ 1275.  39
+ 1276.  55
+ 1277.  46
+ 1278.  23
+ 1279.  18
+ 1280.  65
+ 1281.  46
+ 1282.  60
+ 1283.  46
+ 1284.  60
+ 1285.  46
+ 1286.  60
+ 1287.  46
+ 1288.  60
+ 1289.  46
+ 1290.  60
+ 1291.  46
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.  45
+ 1297.  30
+ 1298.  77
+ 1299.  56
+ 1300.  48
+ 1301.  36
+ 1302.  48
+ 1303.  36
+ 1304.  60
+ 1305.  46
+ 1306.  46
+ 1307.  42
+ 1308.  46
+ 1309.  42
+ 1310.  55
+ 1311.  42
+ 1312.  55
+ 1313.  43
+ 1314.  55
+ 1315.  43
+ 1316.  62
+ 1317.  46
+ 1318.  65
+ 1319.  46
+
+
+	DevRec 22: ppem =  92, maxWid = 184
+    0.  69
+    1.   0
+    2.  26
+    3.  26
+    4.  26
+    5.  33
+    6.  51
+    7.  51
+    8.  82
+    9.  61
+   10.  18
+   11.  31
+   12.  31
+   13.  36
+   14.  54
+   15.  26
+   16.  31
+   17.  26
+   18.  26
+   19.  51
+   20.  51
+   21.  51
+   22.  51
+   23.  51
+   24.  51
+   25.  51
+   26.  51
+   27.  51
+   28.  51
+   29.  26
+   30.  26
+   31.  54
+   32.  54
+   33.  54
+   34.  51
+   35.  93
+   36.  61
+   37.  61
+   38.  66
+   39.  66
+   40.  61
+   41.  56
+   42.  72
+   43.  66
+   44.  26
+   45.  46
+   46.  61
+   47.  51
+   48.  75
+   49.  66
+   50.  72
+   51.  61
+   52.  72
+   53.  66
+   54.  61
+   55.  57
+   56.  66
+   57.  61
+   58.  91
+   59.  62
+   60.  61
+   61.  56
+   62.  26
+   63.  26
+   64.  26
+   65.  41
+   66.  51
+   67.  31
+   68.  51
+   69.  51
+   70.  46
+   71.  51
+   72.  51
+   73.  27
+   74.  52
+   75.  51
+   76.  20
+   77.  21
+   78.  47
+   79.  20
+   80.  77
+   81.  51
+   82.  51
+   83.  51
+   84.  52
+   85.  31
+   86.  46
+   87.  26
+   88.  51
+   89.  45
+   90.  65
+   91.  45
+   92.  45
+   93.  45
+   94.  31
+   95.  23
+   96.  31
+   97.  54
+   98.  61
+   99.  61
+  100.  66
+  101.  61
+  102.  66
+  103.  72
+  104.  66
+  105.  51
+  106.  51
+  107.  51
+  108.  51
+  109.  51
+  110.  51
+  111.  46
+  112.  51
+  113.  51
+  114.  51
+  115.  51
+  116.  24
+  117.  24
+  118.  24
+  119.  24
+  120.  51
+  121.  51
+  122.  51
+  123.  51
+  124.  51
+  125.  51
+  126.  51
+  127.  51
+  128.  51
+  129.  51
+  130.  51
+  131.  37
+  132.  51
+  133.  51
+  134.  51
+  135.  32
+  136.  49
+  137.  56
+  138.  68
+  139.  68
+  140.  92
+  141.  31
+  142.  31
+  143.  51
+  144.  92
+  145.  72
+  146.  66
+  147.  51
+  148.  51
+  149.  51
+  150.  51
+  151.  53
+  152.  45
+  153.  66
+  154.  76
+  155.  51
+  156.  25
+  157.  34
+  158.  34
+  159.  71
+  160.  82
+  161.  56
+  162.  56
+  163.  28
+  164.  54
+  165.  50
+  166.  51
+  167.  51
+  168.  57
+  169.  51
+  170.  51
+  171.  92
+  172.  61
+  173.  61
+  174.  72
+  175.  92
+  176.  87
+  177.  51
+  178.  92
+  179.  31
+  180.  31
+  181.  20
+  182.  20
+  183.  51
+  184.  45
+  185.  45
+  186.  61
+  187.  15
+  188.  51
+  189.  31
+  190.  31
+  191.  46
+  192.  46
+  193.  51
+  194.  26
+  195.  20
+  196.  31
+  197.  93
+  198.  61
+  199.  61
+  200.  61
+  201.  61
+  202.  61
+  203.  26
+  204.  26
+  205.  26
+  206.  26
+  207.  72
+  208.  72
+  209.  72
+  210.  66
+  211.  66
+  212.  66
+  213.  24
+  214.  31
+  215.  28
+  216.  31
+  217.  31
+  218.  31
+  219.  31
+  220.  31
+  221.  31
+  222.  31
+  223.  31
+  224.  51
+  225.  20
+  226.  61
+  227.  46
+  228.  56
+  229.  45
+  230.  23
+  231.  66
+  232.  51
+  233.  61
+  234.  45
+  235.  61
+  236.  51
+  237.  54
+  238.  54
+  239.  31
+  240.  31
+  241.  31
+  242.  77
+  243.  77
+  244.  77
+  245.  51
+  246.  72
+  247.  52
+  248.  26
+  249.  61
+  250.  46
+  251.  66
+  252.  46
+  253.  66
+  254.  46
+  255.  51
+  256.  51
+  257.  31
+  258.  61
+  259.  51
+  260.  61
+  261.  51
+  262.  66
+  263.  57
+  264.  66
+  265.  61
+  266.  51
+  267.  61
+  268.  51
+  269.  51
+  270.  20
+  271.  51
+  272.  27
+  273.  51
+  274.  31
+  275.  66
+  276.  51
+  277.  66
+  278.  51
+  279.  72
+  280.  51
+  281.  66
+  282.  31
+  283.  66
+  284.  31
+  285.  61
+  286.  46
+  287.  57
+  288.  26
+  289.  57
+  290.  35
+  291.  66
+  292.  51
+  293.  66
+  294.  51
+  295.  56
+  296.  45
+  297.  56
+  298.  45
+  299.  51
+  300.  72
+  301.  73
+  302.  53
+  303.  51
+  304.  41
+  305.  57
+  306.  36
+  307.  60
+  308.  51
+  309.  46
+  310.  34
+  311. 100
+  312.  92
+  313.  46
+  314.  92
+  315.  46
+  316.  92
+  317.  46
+  318.  46
+  319.  90
+  320.  66
+  321.  54
+  322.  56
+  323.  54
+  324.  56
+  325.  56
+  326.  65
+  327.  58
+  328.  65
+  329.  65
+  330.  65
+  331.  65
+  332.  65
+  333.  65
+  334.  65
+  335.  65
+  336.  65
+  337.  65
+  338.  65
+  339.  65
+  340.  65
+  341.  65
+  342.  65
+  343.  65
+  344.  65
+  345.  65
+  346.  65
+  347.  65
+  348.  65
+  349.  65
+  350.  65
+  351.  65
+  352.  65
+  353.  65
+  354.  65
+  355.  65
+  356.  65
+  357.  65
+  358.  65
+  359.  65
+  360.  65
+  361.  65
+  362.  65
+  363.  65
+  364.  65
+  365.  65
+  366.  65
+  367.  65
+  368.  65
+  369.  65
+  370.  65
+  371.  65
+  372.  65
+  373.  67
+  374.  56
+  375.  92
+  376.  91
+  377.  91
+  378.  91
+  379.  91
+  380.  56
+  381.  56
+  382.  56
+  383.  94
+  384.  97
+  385.  84
+  386.  69
+  387.  69
+  388.  49
+  389.  60
+  390.  55
+  391.  47
+  392.  46
+  393.  69
+  394.  68
+  395.  41
+  396.  56
+  397.  17
+  398.  33
+  399.  81
+  400.  30
+  401.  56
+  402.  33
+  403.  33
+  404.  56
+  405.  33
+  406.  61
+  407.  51
+  408.  66
+  409.  46
+  410.  66
+  411.  46
+  412.  61
+  413.  51
+  414.  61
+  415.  51
+  416.  61
+  417.  51
+  418.  72
+  419.  52
+  420.  72
+  421.  52
+  422.  72
+  423.  51
+  424.  66
+  425.  51
+  426.  66
+  427.  51
+  428.  26
+  429.  24
+  430.  26
+  431.  24
+  432.  26
+  433.  24
+  434.  26
+  435.  20
+  436.  46
+  437.  21
+  438.  61
+  439.  47
+  440.  46
+  441.  51
+  442.  20
+  443.  66
+  444.  51
+  445.  67
+  446.  51
+  447.  72
+  448.  51
+  449.  72
+  450.  51
+  451.  66
+  452.  31
+  453.  61
+  454.  46
+  455.  56
+  456.  26
+  457.  66
+  458.  51
+  459.  66
+  460.  51
+  461.  66
+  462.  51
+  463.  66
+  464.  51
+  465.  91
+  466.  65
+  467.  61
+  468.  45
+  469.  20
+  470.  61
+  471.  51
+  472.  92
+  473.  82
+  474.  72
+  475.  56
+  476.  24
+  477.  91
+  478.  65
+  479.  91
+  480.  65
+  481.  91
+  482.  65
+  483.  61
+  484.  45
+  485.  20
+  486.  31
+  487.  51
+  488.  55
+  489.  77
+  490.  77
+  491.  77
+  492.  77
+  493.  31
+  494.  31
+  495.  31
+  496.  31
+  497.  61
+  498.  72
+  499.  77
+  500.  35
+  501.  71
+  502.  77
+  503.  69
+  504.  20
+  505.  61
+  506.  61
+  507.  61
+  508.  61
+  509.  56
+  510.  66
+  511.  26
+  512.  61
+  513.  61
+  514.  75
+  515.  66
+  516.  60
+  517.  72
+  518.  66
+  519.  61
+  520.  57
+  521.  57
+  522.  61
+  523.  62
+  524.  77
+  525.  69
+  526.  26
+  527.  61
+  528.  53
+  529.  41
+  530.  51
+  531.  20
+  532.  50
+  533.  53
+  534.  46
+  535.  41
+  536.  51
+  537.  51
+  538.  20
+  539.  46
+  540.  46
+  541.  53
+  542.  45
+  543.  41
+  544.  51
+  545.  52
+  546.  44
+  547.  50
+  548.  48
+  549.  66
+  550.  72
+  551.  20
+  552.  50
+  553.  51
+  554.  50
+  555.  72
+  556.  61
+  557.  80
+  558.  50
+  559.  66
+  560.  61
+  561.  26
+  562.  26
+  563.  46
+  564.  97
+  565.  93
+  566.  79
+  567.  54
+  568.  58
+  569.  66
+  570.  61
+  571.  60
+  572.  61
+  573.  50
+  574.  62
+  575.  61
+  576.  85
+  577.  56
+  578.  66
+  579.  66
+  580.  54
+  581.  60
+  582.  75
+  583.  66
+  584.  72
+  585.  66
+  586.  61
+  587.  66
+  588.  57
+  589.  58
+  590.  70
+  591.  62
+  592.  68
+  593.  61
+  594.  84
+  595.  86
+  596.  73
+  597.  81
+  598.  60
+  599.  66
+  600.  93
+  601.  66
+  602.  51
+  603.  53
+  604.  49
+  605.  34
+  606.  54
+  607.  51
+  608.  62
+  609.  42
+  610.  51
+  611.  51
+  612.  40
+  613.  54
+  614.  63
+  615.  51
+  616.  51
+  617.  50
+  618.  51
+  619.  46
+  620.  42
+  621.  45
+  622.  76
+  623.  45
+  624.  53
+  625.  48
+  626.  74
+  627.  76
+  628.  58
+  629.  66
+  630.  48
+  631.  47
+  632.  69
+  633.  50
+  634.  51
+  635.  51
+  636.  34
+  637.  47
+  638.  46
+  639.  20
+  640.  24
+  641.  21
+  642.  83
+  643.  75
+  644.  51
+  645.  40
+  646.  45
+  647.  51
+  648.  45
+  649.  38
+  650.  92
+  651.  99
+  652.  63
+  653.  31
+  654.  31
+  655.  31
+  656.  31
+  657.  31
+  658.  31
+  659.  31
+  660.  31
+  661.  31
+  662.  31
+  663.  31
+  664.  31
+  665.  31
+  666.  35
+  667.  31
+  668.  20
+  669.  31
+  670.  31
+  671.  26
+  672.  52
+  673.  50
+  674.  37
+  675.  47
+  676.  55
+  677.  23
+  678.  35
+  679.  55
+  680.  54
+  681.  23
+  682.  47
+  683.  42
+  684.  43
+  685.  55
+  686.  55
+  687.  23
+  688.  32
+  689.  53
+  690.  49
+  691.  52
+  692.  50
+  693.  42
+  694.  44
+  695.  51
+  696.  47
+  697.  64
+  698.  59
+  699.  46
+  700.  46
+  701.  46
+  702.  22
+  703.  38
+  704.  76
+  705.  23
+  706.  47
+  707.  47
+  708.  43
+  709.  43
+  710.  49
+  711.  64
+  712.  64
+  713.  64
+  714.  64
+  715.  52
+  716.  52
+  717.  52
+  718.  50
+  719.  37
+  720.  47
+  721.  55
+  722.  26
+  723.  38
+  724.  54
+  725.  26
+  726.  47
+  727.  42
+  728.  43
+  729.  55
+  730.  32
+  731.  53
+  732.  52
+  733.  50
+  734.  44
+  735.  51
+  736.  47
+  737.  64
+  738.  59
+  739.  23
+  740.  50
+  741.  42
+  742.  50
+  743.  53
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.  29
+  749.  29
+  750.  33
+  751.  38
+  752.  19
+  753.  19
+  754.  22
+  755.  19
+  756.  19
+  757.  19
+  758.  19
+  759.  19
+  760.  15
+  761.  48
+  762.  48
+  763.  48
+  764.  48
+  765.  48
+  766.  48
+  767.  48
+  768.  48
+  769.  48
+  770.  48
+  771.  48
+  772.  29
+  773.  48
+  774.  69
+  775.  69
+  776.  26
+  777.  69
+  778.  48
+  779.  48
+  780.  48
+  781.  69
+  782.  69
+  783.  69
+  784.  69
+  785.  69
+  786.  19
+  787.  69
+  788.  69
+  789.  69
+  790.  69
+  791.  69
+  792.  69
+  793.  69
+  794.  69
+  795.  59
+  796.  69
+  797.  69
+  798.  69
+  799.  66
+  800.  66
+  801.  22
+  802.  22
+  803.  69
+  804.  69
+  805.  69
+  806.  69
+  807.  52
+  808.  48
+  809.  49
+  810.  49
+  811.  45
+  812.  45
+  813.  75
+  814.  86
+  815.  36
+  816.  47
+  817.  75
+  818.  86
+  819.  36
+  820.  47
+  821.  59
+  822.  54
+  823.  69
+  824.  69
+  825.  69
+  826.  69
+  827.  69
+  828.  69
+  829.  69
+  830.  69
+  831.  69
+  832.  69
+  833.  69
+  834.  69
+  835.  69
+  836.  69
+  837.  69
+  838.  69
+  839.  21
+  840.  19
+  841.  19
+  842.  19
+  843.  19
+  844.  69
+  845.  69
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.  51
+  863.  92
+  864.  69
+  865.  69
+  866.  69
+  867.  69
+  868.  69
+  869.  69
+  870.  69
+  871.  69
+  872.  69
+  873.  69
+  874.  69
+  875.  69
+  876.  69
+  877.  69
+  878.  69
+  879.  69
+  880.  69
+  881.  69
+  882.  69
+  883.  69
+  884.  69
+  885.  69
+  886.  69
+  887.  69
+  888.  69
+  889.  69
+  890.  69
+  891.  69
+  892.  29
+  893.  29
+  894.  69
+  895.  57
+  896.  38
+  897.  19
+  898.  21
+  899.  19
+  900.  21
+  901.  40
+  902.  40
+  903.  19
+  904.  21
+  905.  59
+  906.  54
+  907.  22
+  908.  22
+  909.  19
+  910.  21
+  911.  66
+  912.  66
+  913.  22
+  914.  22
+  915.  26
+  916.  35
+  917.  66
+  918.  66
+  919.  22
+  920.  22
+  921.  66
+  922.  66
+  923.  22
+  924.  22
+  925.  52
+  926.  48
+  927.  49
+  928.  49
+  929.  52
+  930.  48
+  931.  49
+  932.  49
+  933.  52
+  934.  48
+  935.  49
+  936.  49
+  937.  31
+  938.  31
+  939.  31
+  940.  31
+  941.  45
+  942.  45
+  943.  45
+  944.  45
+  945.  76
+  946.  76
+  947.  49
+  948.  49
+  949.  76
+  950.  76
+  951.  49
+  952.  49
+  953. 101
+  954. 101
+  955.  78
+  956.  78
+  957. 101
+  958. 101
+  959.  78
+  960.  78
+  961.  54
+  962.  54
+  963.  54
+  964.  54
+  965.  54
+  966.  54
+  967.  54
+  968.  54
+  969.  50
+  970.  41
+  971.  48
+  972.  36
+  973.  50
+  974.  41
+  975.  48
+  976.  36
+  977.  73
+  978.  73
+  979.  25
+  980.  24
+  981.  54
+  982.  54
+  983.  25
+  984.  24
+  985.  55
+  986.  55
+  987.  36
+  988.  36
+  989.  47
+  990.  47
+  991.  19
+  992.  19
+  993.  31
+  994.  31
+  995.  36
+  996.  36
+  997.  48
+  998.  48
+  999.  22
+ 1000.  22
+ 1001.  26
+ 1002.  35
+ 1003.  41
+ 1004.  36
+ 1005.  40
+ 1006.  40
+ 1007.  59
+ 1008.  54
+ 1009.  59
+ 1010.  54
+ 1011.  22
+ 1012.  22
+ 1013.  50
+ 1014.  55
+ 1015.  50
+ 1016.  55
+ 1017.  50
+ 1018.  55
+ 1019.  50
+ 1020.  55
+ 1021.  69
+ 1022.  69
+ 1023.  19
+ 1024.  19
+ 1025.  69
+ 1026.  69
+ 1027.  69
+ 1028.  15
+ 1029.  19
+ 1030.  69
+ 1031.  69
+ 1032.  19
+ 1033.  22
+ 1034.  69
+ 1035.  69
+ 1036.  69
+ 1037.  19
+ 1038.  19
+ 1039.  19
+ 1040.  19
+ 1041.  19
+ 1042.  21
+ 1043.  69
+ 1044.  19
+ 1045.  19
+ 1046.  69
+ 1047.  69
+ 1048.  69
+ 1049.  69
+ 1050.  69
+ 1051.  69
+ 1052.  69
+ 1053.  69
+ 1054.  69
+ 1055.  69
+ 1056.  69
+ 1057.  69
+ 1058.  69
+ 1059.  69
+ 1060.  69
+ 1061.  69
+ 1062.  69
+ 1063.  69
+ 1064.  69
+ 1065.  69
+ 1066.  69
+ 1067.  69
+ 1068.  69
+ 1069.  69
+ 1070.  69
+ 1071.  69
+ 1072.  69
+ 1073.  69
+ 1074.  69
+ 1075.  69
+ 1076.  69
+ 1077.  69
+ 1078.  69
+ 1079.  69
+ 1080.  69
+ 1081.  69
+ 1082.  69
+ 1083.  69
+ 1084.  69
+ 1085.  69
+ 1086.  69
+ 1087.  69
+ 1088.  69
+ 1089.  69
+ 1090.  69
+ 1091.  69
+ 1092.  69
+ 1093.  69
+ 1094.  69
+ 1095.  69
+ 1096.  69
+ 1097.  69
+ 1098.  69
+ 1099.  69
+ 1100.  29
+ 1101.  29
+ 1102.  29
+ 1103.  69
+ 1104.  69
+ 1105.  69
+ 1106.  69
+ 1107.  69
+ 1108.  69
+ 1109.  69
+ 1110.  69
+ 1111.  69
+ 1112.  69
+ 1113.  69
+ 1114.  69
+ 1115.  69
+ 1116.  69
+ 1117.  69
+ 1118.  69
+ 1119.  69
+ 1120.  69
+ 1121.  69
+ 1122.  69
+ 1123.  69
+ 1124.  69
+ 1125.  69
+ 1126.  69
+ 1127.  12
+ 1128.  92
+ 1129. 184
+ 1130.  79
+ 1131.  60
+ 1132.  79
+ 1133.  62
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.  47
+ 1151.  77
+ 1152.  77
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.  20
+ 1188.  61
+ 1189.  51
+ 1190.  61
+ 1191.  51
+ 1192.  61
+ 1193.  51
+ 1194.  61
+ 1195.  51
+ 1196.  61
+ 1197.  51
+ 1198.  61
+ 1199.  51
+ 1200.  61
+ 1201.  51
+ 1202.  61
+ 1203.  51
+ 1204.  61
+ 1205.  51
+ 1206.  61
+ 1207.  51
+ 1208.  61
+ 1209.  51
+ 1210.  61
+ 1211.  51
+ 1212.  61
+ 1213.  51
+ 1214.  61
+ 1215.  51
+ 1216.  61
+ 1217.  51
+ 1218.  61
+ 1219.  51
+ 1220.  61
+ 1221.  51
+ 1222.  61
+ 1223.  51
+ 1224.  61
+ 1225.  51
+ 1226.  61
+ 1227.  51
+ 1228.  26
+ 1229.  20
+ 1230.  26
+ 1231.  20
+ 1232.  72
+ 1233.  51
+ 1234.  72
+ 1235.  51
+ 1236.  72
+ 1237.  51
+ 1238.  72
+ 1239.  51
+ 1240.  72
+ 1241.  51
+ 1242.  72
+ 1243.  51
+ 1244.  72
+ 1245.  51
+ 1246.  79
+ 1247.  60
+ 1248.  79
+ 1249.  60
+ 1250.  79
+ 1251.  60
+ 1252.  79
+ 1253.  60
+ 1254.  79
+ 1255.  60
+ 1256.  66
+ 1257.  51
+ 1258.  66
+ 1259.  51
+ 1260.  79
+ 1261.  62
+ 1262.  79
+ 1263.  62
+ 1264.  79
+ 1265.  62
+ 1266.  79
+ 1267.  62
+ 1268.  79
+ 1269.  62
+ 1270.  61
+ 1271.  45
+ 1272.  61
+ 1273.  45
+ 1274.  61
+ 1275.  45
+ 1276.  61
+ 1277.  51
+ 1278.  26
+ 1279.  20
+ 1280.  72
+ 1281.  51
+ 1282.  66
+ 1283.  51
+ 1284.  66
+ 1285.  51
+ 1286.  66
+ 1287.  51
+ 1288.  66
+ 1289.  51
+ 1290.  66
+ 1291.  51
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.  50
+ 1297.  34
+ 1298.  85
+ 1299.  62
+ 1300.  54
+ 1301.  40
+ 1302.  54
+ 1303.  40
+ 1304.  66
+ 1305.  51
+ 1306.  51
+ 1307.  46
+ 1308.  51
+ 1309.  46
+ 1310.  61
+ 1311.  46
+ 1312.  61
+ 1313.  48
+ 1314.  61
+ 1315.  48
+ 1316.  69
+ 1317.  51
+ 1318.  72
+ 1319.  51
+
+
+	DevRec 23: ppem = 100, maxWid = 200
+    0.  75
+    1.   0
+    2.  28
+    3.  28
+    4.  28
+    5.  36
+    6.  56
+    7.  56
+    8.  89
+    9.  67
+   10.  19
+   11.  33
+   12.  33
+   13.  39
+   14.  58
+   15.  28
+   16.  33
+   17.  28
+   18.  28
+   19.  56
+   20.  56
+   21.  56
+   22.  56
+   23.  56
+   24.  56
+   25.  56
+   26.  56
+   27.  56
+   28.  56
+   29.  28
+   30.  28
+   31.  58
+   32.  58
+   33.  58
+   34.  56
+   35. 102
+   36.  67
+   37.  67
+   38.  72
+   39.  72
+   40.  67
+   41.  61
+   42.  78
+   43.  72
+   44.  28
+   45.  50
+   46.  67
+   47.  56
+   48.  83
+   49.  72
+   50.  78
+   51.  67
+   52.  78
+   53.  72
+   54.  67
+   55.  62
+   56.  72
+   57.  67
+   58.  99
+   59.  66
+   60.  66
+   61.  61
+   62.  28
+   63.  28
+   64.  28
+   65.  43
+   66.  56
+   67.  33
+   68.  56
+   69.  56
+   70.  50
+   71.  56
+   72.  56
+   73.  29
+   74.  55
+   75.  56
+   76.  22
+   77.  22
+   78.  50
+   79.  22
+   80.  84
+   81.  56
+   82.  56
+   83.  56
+   84.  55
+   85.  33
+   86.  50
+   87.  28
+   88.  56
+   89.  49
+   90.  71
+   91.  49
+   92.  49
+   93.  49
+   94.  33
+   95.  26
+   96.  33
+   97.  58
+   98.  67
+   99.  67
+  100.  72
+  101.  67
+  102.  72
+  103.  78
+  104.  72
+  105.  56
+  106.  56
+  107.  56
+  108.  56
+  109.  56
+  110.  56
+  111.  50
+  112.  56
+  113.  56
+  114.  56
+  115.  56
+  116.  27
+  117.  27
+  118.  27
+  119.  27
+  120.  56
+  121.  56
+  122.  56
+  123.  56
+  124.  56
+  125.  56
+  126.  56
+  127.  56
+  128.  56
+  129.  56
+  130.  56
+  131.  40
+  132.  56
+  133.  56
+  134.  56
+  135.  35
+  136.  54
+  137.  61
+  138.  74
+  139.  74
+  140. 100
+  141.  33
+  142.  33
+  143.  55
+  144. 100
+  145.  78
+  146.  71
+  147.  55
+  148.  55
+  149.  55
+  150.  56
+  151.  58
+  152.  49
+  153.  71
+  154.  82
+  155.  55
+  156.  29
+  157.  37
+  158.  37
+  159.  77
+  160.  89
+  161.  61
+  162.  61
+  163.  31
+  164.  58
+  165.  55
+  166.  56
+  167.  55
+  168.  61
+  169.  56
+  170.  56
+  171. 100
+  172.  67
+  173.  67
+  174.  78
+  175. 100
+  176.  94
+  177.  56
+  178. 100
+  179.  33
+  180.  33
+  181.  22
+  182.  22
+  183.  55
+  184.  49
+  185.  49
+  186.  66
+  187.  17
+  188.  56
+  189.  33
+  190.  33
+  191.  50
+  192.  50
+  193.  56
+  194.  28
+  195.  22
+  196.  33
+  197. 100
+  198.  67
+  199.  67
+  200.  67
+  201.  67
+  202.  67
+  203.  28
+  204.  28
+  205.  28
+  206.  28
+  207.  78
+  208.  78
+  209.  78
+  210.  72
+  211.  72
+  212.  72
+  213.  27
+  214.  33
+  215.  31
+  216.  33
+  217.  33
+  218.  33
+  219.  33
+  220.  33
+  221.  33
+  222.  33
+  223.  33
+  224.  56
+  225.  22
+  226.  67
+  227.  50
+  228.  61
+  229.  49
+  230.  26
+  231.  72
+  232.  56
+  233.  66
+  234.  49
+  235.  67
+  236.  56
+  237.  58
+  238.  58
+  239.  33
+  240.  33
+  241.  33
+  242.  83
+  243.  83
+  244.  83
+  245.  56
+  246.  78
+  247.  55
+  248.  28
+  249.  67
+  250.  50
+  251.  72
+  252.  50
+  253.  72
+  254.  50
+  255.  56
+  256.  55
+  257.  33
+  258.  67
+  259.  56
+  260.  67
+  261.  56
+  262.  72
+  263.  61
+  264.  72
+  265.  67
+  266.  56
+  267.  67
+  268.  56
+  269.  56
+  270.  22
+  271.  56
+  272.  29
+  273.  56
+  274.  33
+  275.  72
+  276.  56
+  277.  72
+  278.  56
+  279.  78
+  280.  56
+  281.  72
+  282.  33
+  283.  72
+  284.  33
+  285.  67
+  286.  50
+  287.  62
+  288.  29
+  289.  62
+  290.  38
+  291.  72
+  292.  56
+  293.  72
+  294.  56
+  295.  61
+  296.  49
+  297.  61
+  298.  49
+  299.  55
+  300.  78
+  301.  80
+  302.  58
+  303.  56
+  304.  45
+  305.  62
+  306.  40
+  307.  65
+  308.  55
+  309.  50
+  310.  36
+  311. 109
+  312. 100
+  313.  50
+  314. 100
+  315.  50
+  316. 100
+  317.  50
+  318.  50
+  319.  98
+  320.  72
+  321.  58
+  322.  60
+  323.  58
+  324.  60
+  325.  60
+  326.  71
+  327.  63
+  328.  71
+  329.  71
+  330.  71
+  331.  71
+  332.  71
+  333.  71
+  334.  71
+  335.  71
+  336.  71
+  337.  71
+  338.  71
+  339.  71
+  340.  71
+  341.  71
+  342.  71
+  343.  71
+  344.  71
+  345.  71
+  346.  71
+  347.  71
+  348.  71
+  349.  71
+  350.  71
+  351.  71
+  352.  71
+  353.  71
+  354.  71
+  355.  71
+  356.  71
+  357.  71
+  358.  71
+  359.  71
+  360.  71
+  361.  71
+  362.  71
+  363.  71
+  364.  71
+  365.  71
+  366.  71
+  367.  71
+  368.  71
+  369.  71
+  370.  71
+  371.  71
+  372.  71
+  373.  73
+  374.  60
+  375. 100
+  376.  99
+  377.  99
+  378.  99
+  379.  99
+  380.  60
+  381.  60
+  382.  60
+  383. 102
+  384. 105
+  385.  92
+  386.  75
+  387.  75
+  388.  53
+  389.  66
+  390.  59
+  391.  51
+  392.  50
+  393.  75
+  394.  73
+  395.  44
+  396.  60
+  397.  19
+  398.  35
+  399.  89
+  400.  32
+  401.  60
+  402.  35
+  403.  35
+  404.  60
+  405.  35
+  406.  67
+  407.  56
+  408.  72
+  409.  50
+  410.  72
+  411.  50
+  412.  67
+  413.  56
+  414.  67
+  415.  56
+  416.  67
+  417.  56
+  418.  78
+  419.  55
+  420.  78
+  421.  55
+  422.  78
+  423.  56
+  424.  72
+  425.  56
+  426.  72
+  427.  56
+  428.  28
+  429.  27
+  430.  28
+  431.  27
+  432.  28
+  433.  27
+  434.  28
+  435.  22
+  436.  50
+  437.  22
+  438.  67
+  439.  50
+  440.  50
+  441.  56
+  442.  22
+  443.  72
+  444.  56
+  445.  72
+  446.  56
+  447.  78
+  448.  56
+  449.  78
+  450.  56
+  451.  72
+  452.  33
+  453.  67
+  454.  50
+  455.  61
+  456.  28
+  457.  72
+  458.  56
+  459.  72
+  460.  56
+  461.  72
+  462.  56
+  463.  72
+  464.  56
+  465.  99
+  466.  71
+  467.  66
+  468.  49
+  469.  22
+  470.  67
+  471.  56
+  472. 100
+  473.  89
+  474.  78
+  475.  61
+  476.  27
+  477.  99
+  478.  71
+  479.  99
+  480.  71
+  481.  99
+  482.  71
+  483.  66
+  484.  49
+  485.  22
+  486.  33
+  487.  56
+  488.  60
+  489.  83
+  490.  83
+  491.  83
+  492.  83
+  493.  33
+  494.  33
+  495.  33
+  496.  33
+  497.  67
+  498.  78
+  499.  84
+  500.  38
+  501.  77
+  502.  83
+  503.  75
+  504.  23
+  505.  67
+  506.  67
+  507.  67
+  508.  67
+  509.  61
+  510.  72
+  511.  28
+  512.  67
+  513.  67
+  514.  83
+  515.  72
+  516.  65
+  517.  78
+  518.  72
+  519.  67
+  520.  62
+  521.  62
+  522.  66
+  523.  66
+  524.  84
+  525.  75
+  526.  28
+  527.  66
+  528.  58
+  529.  45
+  530.  56
+  531.  23
+  532.  55
+  533.  58
+  534.  50
+  535.  44
+  536.  56
+  537.  56
+  538.  23
+  539.  50
+  540.  50
+  541.  58
+  542.  49
+  543.  45
+  544.  56
+  545.  57
+  546.  48
+  547.  55
+  548.  52
+  549.  71
+  550.  78
+  551.  23
+  552.  55
+  553.  56
+  554.  55
+  555.  78
+  556.  67
+  557.  86
+  558.  54
+  559.  72
+  560.  67
+  561.  28
+  562.  28
+  563.  50
+  564. 106
+  565. 101
+  566.  85
+  567.  58
+  568.  64
+  569.  72
+  570.  67
+  571.  66
+  572.  67
+  573.  54
+  574.  68
+  575.  67
+  576.  92
+  577.  60
+  578.  72
+  579.  72
+  580.  58
+  581.  66
+  582.  83
+  583.  72
+  584.  78
+  585.  72
+  586.  67
+  587.  72
+  588.  62
+  589.  64
+  590.  76
+  591.  66
+  592.  74
+  593.  67
+  594.  92
+  595.  94
+  596.  79
+  597.  89
+  598.  66
+  599.  72
+  600. 101
+  601.  72
+  602.  56
+  603.  57
+  604.  53
+  605.  36
+  606.  58
+  607.  56
+  608.  67
+  609.  46
+  610.  56
+  611.  56
+  612.  44
+  613.  58
+  614.  69
+  615.  55
+  616.  56
+  617.  54
+  618.  56
+  619.  50
+  620.  46
+  621.  49
+  622.  82
+  623.  49
+  624.  57
+  625.  52
+  626.  80
+  627.  82
+  628.  63
+  629.  72
+  630.  52
+  631.  51
+  632.  75
+  633.  54
+  634.  56
+  635.  56
+  636.  36
+  637.  51
+  638.  50
+  639.  22
+  640.  27
+  641.  22
+  642.  91
+  643.  81
+  644.  56
+  645.  44
+  646.  49
+  647.  55
+  648.  49
+  649.  41
+  650. 100
+  651. 107
+  652.  69
+  653.  33
+  654.  33
+  655.  33
+  656.  33
+  657.  33
+  658.  33
+  659.  33
+  660.  33
+  661.  33
+  662.  33
+  663.  33
+  664.  33
+  665.  33
+  666.  38
+  667.  33
+  668.  27
+  669.  33
+  670.  33
+  671.  28
+  672.  56
+  673.  54
+  674.  40
+  675.  51
+  676.  60
+  677.  24
+  678.  38
+  679.  60
+  680.  59
+  681.  24
+  682.  51
+  683.  46
+  684.  46
+  685.  60
+  686.  60
+  687.  24
+  688.  35
+  689.  57
+  690.  53
+  691.  57
+  692.  55
+  693.  46
+  694.  48
+  695.  55
+  696.  51
+  697.  69
+  698.  64
+  699.  49
+  700.  49
+  701.  49
+  702.  24
+  703.  42
+  704.  79
+  705.  24
+  706.  51
+  707.  51
+  708.  46
+  709.  46
+  710.  54
+  711.  69
+  712.  69
+  713.  69
+  714.  69
+  715.  56
+  716.  56
+  717.  56
+  718.  54
+  719.  40
+  720.  51
+  721.  60
+  722.  29
+  723.  41
+  724.  59
+  725.  29
+  726.  51
+  727.  46
+  728.  46
+  729.  60
+  730.  35
+  731.  57
+  732.  57
+  733.  55
+  734.  48
+  735.  55
+  736.  51
+  737.  69
+  738.  64
+  739.  24
+  740.  54
+  741.  46
+  742.  55
+  743.  58
+  744.   0
+  745.   0
+  746.   0
+  747.   0
+  748.  32
+  749.  32
+  750.  36
+  751.  41
+  752.  21
+  753.  20
+  754.  24
+  755.  20
+  756.  20
+  757.  21
+  758.  20
+  759.  21
+  760.  16
+  761.  53
+  762.  53
+  763.  53
+  764.  53
+  765.  53
+  766.  53
+  767.  53
+  768.  53
+  769.  53
+  770.  53
+  771.  53
+  772.  32
+  773.  53
+  774.  75
+  775.  75
+  776.  28
+  777.  75
+  778.  53
+  779.  53
+  780.  53
+  781.  75
+  782.  75
+  783.  75
+  784.  75
+  785.  75
+  786.  21
+  787.  75
+  788.  75
+  789.  75
+  790.  75
+  791.  75
+  792.  75
+  793.  75
+  794.  75
+  795.  64
+  796.  75
+  797.  75
+  798.  75
+  799.  71
+  800.  71
+  801.  24
+  802.  24
+  803.  75
+  804.  75
+  805.  75
+  806.  75
+  807.  56
+  808.  53
+  809.  53
+  810.  53
+  811.  49
+  812.  49
+  813.  81
+  814.  93
+  815.  39
+  816.  51
+  817.  81
+  818.  93
+  819.  39
+  820.  51
+  821.  64
+  822.  59
+  823.  75
+  824.  75
+  825.  75
+  826.  75
+  827.  75
+  828.  75
+  829.  75
+  830.  75
+  831.  75
+  832.  75
+  833.  75
+  834.  75
+  835.  75
+  836.  75
+  837.  75
+  838.  75
+  839.  23
+  840.  21
+  841.  21
+  842.  21
+  843.  21
+  844.  75
+  845.  75
+  846.   0
+  847.   0
+  848.   0
+  849.   0
+  850.   0
+  851.   0
+  852.   0
+  853.   0
+  854.   0
+  855.   0
+  856.   0
+  857.   0
+  858.   0
+  859.   0
+  860.   0
+  861.   0
+  862.  56
+  863. 100
+  864.  75
+  865.  75
+  866.  75
+  867.  75
+  868.  75
+  869.  75
+  870.  75
+  871.  75
+  872.  75
+  873.  75
+  874.  75
+  875.  75
+  876.  75
+  877.  75
+  878.  75
+  879.  75
+  880.  75
+  881.  75
+  882.  75
+  883.  75
+  884.  75
+  885.  75
+  886.  75
+  887.  75
+  888.  75
+  889.  75
+  890.  75
+  891.  75
+  892.  32
+  893.  32
+  894.  75
+  895.  62
+  896.  41
+  897.  21
+  898.  23
+  899.  21
+  900.  23
+  901.  43
+  902.  43
+  903.  21
+  904.  23
+  905.  64
+  906.  59
+  907.  24
+  908.  24
+  909.  21
+  910.  23
+  911.  71
+  912.  71
+  913.  24
+  914.  24
+  915.  28
+  916.  38
+  917.  71
+  918.  71
+  919.  24
+  920.  24
+  921.  71
+  922.  71
+  923.  24
+  924.  24
+  925.  56
+  926.  53
+  927.  53
+  928.  53
+  929.  56
+  930.  53
+  931.  53
+  932.  53
+  933.  56
+  934.  53
+  935.  53
+  936.  53
+  937.  34
+  938.  34
+  939.  34
+  940.  34
+  941.  49
+  942.  49
+  943.  49
+  944.  49
+  945.  82
+  946.  82
+  947.  53
+  948.  53
+  949.  82
+  950.  82
+  951.  53
+  952.  53
+  953. 110
+  954. 110
+  955.  85
+  956.  85
+  957. 110
+  958. 110
+  959.  85
+  960.  85
+  961.  58
+  962.  58
+  963.  58
+  964.  58
+  965.  58
+  966.  58
+  967.  58
+  968.  58
+  969.  54
+  970.  45
+  971.  53
+  972.  39
+  973.  54
+  974.  45
+  975.  53
+  976.  39
+  977.  79
+  978.  79
+  979.  27
+  980.  26
+  981.  58
+  982.  58
+  983.  27
+  984.  26
+  985.  60
+  986.  60
+  987.  39
+  988.  39
+  989.  51
+  990.  51
+  991.  21
+  992.  21
+  993.  34
+  994.  34
+  995.  39
+  996.  39
+  997.  53
+  998.  53
+  999.  24
+ 1000.  24
+ 1001.  28
+ 1002.  38
+ 1003.  45
+ 1004.  39
+ 1005.  43
+ 1006.  43
+ 1007.  64
+ 1008.  59
+ 1009.  64
+ 1010.  59
+ 1011.  24
+ 1012.  24
+ 1013.  54
+ 1014.  60
+ 1015.  54
+ 1016.  60
+ 1017.  54
+ 1018.  60
+ 1019.  54
+ 1020.  60
+ 1021.  75
+ 1022.  75
+ 1023.  20
+ 1024.  20
+ 1025.  75
+ 1026.  75
+ 1027.  75
+ 1028.  16
+ 1029.  21
+ 1030.  75
+ 1031.  75
+ 1032.  21
+ 1033.  24
+ 1034.  75
+ 1035.  75
+ 1036.  75
+ 1037.  21
+ 1038.  21
+ 1039.  21
+ 1040.  21
+ 1041.  21
+ 1042.  23
+ 1043.  75
+ 1044.  20
+ 1045.  20
+ 1046.  75
+ 1047.  75
+ 1048.  75
+ 1049.  75
+ 1050.  75
+ 1051.  75
+ 1052.  75
+ 1053.  75
+ 1054.  75
+ 1055.  75
+ 1056.  75
+ 1057.  75
+ 1058.  75
+ 1059.  75
+ 1060.  75
+ 1061.  75
+ 1062.  75
+ 1063.  75
+ 1064.  75
+ 1065.  75
+ 1066.  75
+ 1067.  75
+ 1068.  75
+ 1069.  75
+ 1070.  75
+ 1071.  75
+ 1072.  75
+ 1073.  75
+ 1074.  75
+ 1075.  75
+ 1076.  75
+ 1077.  75
+ 1078.  75
+ 1079.  75
+ 1080.  75
+ 1081.  75
+ 1082.  75
+ 1083.  75
+ 1084.  75
+ 1085.  75
+ 1086.  75
+ 1087.  75
+ 1088.  75
+ 1089.  75
+ 1090.  75
+ 1091.  75
+ 1092.  75
+ 1093.  75
+ 1094.  75
+ 1095.  75
+ 1096.  75
+ 1097.  75
+ 1098.  75
+ 1099.  75
+ 1100.  32
+ 1101.  32
+ 1102.  32
+ 1103.  75
+ 1104.  75
+ 1105.  75
+ 1106.  75
+ 1107.  75
+ 1108.  75
+ 1109.  75
+ 1110.  75
+ 1111.  75
+ 1112.  75
+ 1113.  75
+ 1114.  75
+ 1115.  75
+ 1116.  75
+ 1117.  75
+ 1118.  75
+ 1119.  75
+ 1120.  75
+ 1121.  75
+ 1122.  75
+ 1123.  75
+ 1124.  75
+ 1125.  75
+ 1126.  75
+ 1127.  13
+ 1128. 100
+ 1129. 200
+ 1130.  86
+ 1131.  66
+ 1132.  85
+ 1133.  67
+ 1134.   0
+ 1135.   0
+ 1136.   0
+ 1137.   0
+ 1138.   0
+ 1139.   0
+ 1140.   0
+ 1141.   0
+ 1142.   0
+ 1143.   0
+ 1144.   0
+ 1145.   0
+ 1146.   0
+ 1147.   0
+ 1148.   0
+ 1149.   0
+ 1150.  51
+ 1151.  83
+ 1152.  83
+ 1153.   0
+ 1154.   0
+ 1155.   0
+ 1156.   0
+ 1157.   0
+ 1158.   0
+ 1159.   0
+ 1160.   0
+ 1161.   0
+ 1162.   0
+ 1163.   0
+ 1164.   0
+ 1165.   0
+ 1166.   0
+ 1167.   0
+ 1168.   0
+ 1169.   0
+ 1170.   0
+ 1171.   0
+ 1172.   0
+ 1173.   0
+ 1174.   0
+ 1175.   0
+ 1176.   0
+ 1177.   0
+ 1178.   0
+ 1179.   0
+ 1180.   0
+ 1181.   0
+ 1182.   0
+ 1183.   0
+ 1184.   0
+ 1185.   0
+ 1186.   0
+ 1187.  22
+ 1188.  67
+ 1189.  56
+ 1190.  67
+ 1191.  56
+ 1192.  67
+ 1193.  56
+ 1194.  67
+ 1195.  56
+ 1196.  67
+ 1197.  56
+ 1198.  67
+ 1199.  56
+ 1200.  67
+ 1201.  56
+ 1202.  67
+ 1203.  56
+ 1204.  67
+ 1205.  56
+ 1206.  67
+ 1207.  56
+ 1208.  67
+ 1209.  56
+ 1210.  67
+ 1211.  56
+ 1212.  67
+ 1213.  56
+ 1214.  67
+ 1215.  56
+ 1216.  67
+ 1217.  56
+ 1218.  67
+ 1219.  56
+ 1220.  67
+ 1221.  56
+ 1222.  67
+ 1223.  56
+ 1224.  67
+ 1225.  56
+ 1226.  67
+ 1227.  56
+ 1228.  28
+ 1229.  22
+ 1230.  28
+ 1231.  22
+ 1232.  78
+ 1233.  56
+ 1234.  78
+ 1235.  56
+ 1236.  78
+ 1237.  56
+ 1238.  78
+ 1239.  56
+ 1240.  78
+ 1241.  56
+ 1242.  78
+ 1243.  56
+ 1244.  78
+ 1245.  56
+ 1246.  86
+ 1247.  66
+ 1248.  86
+ 1249.  66
+ 1250.  86
+ 1251.  66
+ 1252.  86
+ 1253.  66
+ 1254.  86
+ 1255.  66
+ 1256.  72
+ 1257.  56
+ 1258.  72
+ 1259.  56
+ 1260.  85
+ 1261.  67
+ 1262.  85
+ 1263.  67
+ 1264.  85
+ 1265.  67
+ 1266.  85
+ 1267.  67
+ 1268.  85
+ 1269.  67
+ 1270.  66
+ 1271.  49
+ 1272.  66
+ 1273.  49
+ 1274.  66
+ 1275.  49
+ 1276.  67
+ 1277.  56
+ 1278.  28
+ 1279.  22
+ 1280.  78
+ 1281.  56
+ 1282.  72
+ 1283.  56
+ 1284.  72
+ 1285.  56
+ 1286.  72
+ 1287.  56
+ 1288.  72
+ 1289.  56
+ 1290.  72
+ 1291.  56
+ 1292.   0
+ 1293.   0
+ 1294.   0
+ 1295.   0
+ 1296.  54
+ 1297.  36
+ 1298.  92
+ 1299.  67
+ 1300.  58
+ 1301.  44
+ 1302.  58
+ 1303.  44
+ 1304.  72
+ 1305.  55
+ 1306.  56
+ 1307.  50
+ 1308.  56
+ 1309.  50
+ 1310.  67
+ 1311.  50
+ 1312.  67
+ 1313.  52
+ 1314.  67
+ 1315.  52
+ 1316.  75
+ 1317.  56
+ 1318.  78
+ 1319.  56
+
+
+
+'kern' Table - Kerning Data
+---------------------------
+Size = 5472 bytes
+ 'kern' Version:           0
+ Number of subtables:      1
+
+   Subtable format     0
+   Subtable version    0
+   Bytes in subtable   5468
+   Coverage bits       0x1
+   Number of pairs     909
+   Search Range        3072
+   Entry Selector      9
+   Range Shift         2382
+
+   Left Glyph   Right Glyph   Kern Move
+   ----------   -----------   ---------
+            3            36        -113
+            3            55         -37
+            3            60         -37
+            3           497        -113
+            3           505        -113
+            3           507        -113
+            3           513        -113
+            3           521         -37
+            3           522         -37
+            3           527         -37
+           20            20        -152
+           36             3        -113
+           36            55        -152
+           36            57        -152
+           36            58         -76
+           36            60        -152
+           36            89         -37
+           36            90         -37
+           36            92         -37
+           36           182        -152
+           41            15        -227
+           41            17        -227
+           41            36        -113
+           47             3         -76
+           47            55        -152
+           47            57        -152
+           47            58        -152
+           47            60        -152
+           47            92         -76
+           47           182        -113
+           51             3         -37
+           51            15        -264
+           51            17        -264
+           51            36        -152
+           53            55         -37
+           53            57         -37
+           53            58         -37
+           53            60         -37
+           55             3         -37
+           55            15        -227
+           55            16        -113
+           55            17        -227
+           55            29        -227
+           55            30        -227
+           55            36        -152
+           55            50         -37
+           55            68        -227
+           55            70        -227
+           55            72        -227
+           55            76         -76
+           55            82        -227
+           55            85         -76
+           55            86        -227
+           55            88         -76
+           55            90        -113
+           55            92        -113
+           57            15        -188
+           57            16        -113
+           57            17        -188
+           57            29         -76
+           57            30         -76
+           57            36        -152
+           57            68        -152
+           57            72        -113
+           57            76         -37
+           57            82        -113
+           57            85         -76
+           57            88         -76
+           57            92         -76
+           58            15        -113
+           58            16         -37
+           58            17        -113
+           58            29         -37
+           58            30         -37
+           58            36         -76
+           58            68         -76
+           58            72         -37
+           58            76          +0
+           58            82         -37
+           58            85         -37
+           58            88         -37
+           58            92         -18
+           60             3         -37
+           60            15        -264
+           60            16        -188
+           60            17        -264
+           60            29        -113
+           60            30        -133
+           60            36        -152
+           60            68        -152
+           60            72        -188
+           60            76         -76
+           60            82        -188
+           60            83        -152
+           60            84        -188
+           60            88        -113
+           60            89        -113
+           73            73         -37
+           73           182         +37
+           85            15        -113
+           85            17        -113
+           85           182         +76
+           89            15        -152
+           89            17        -152
+           90            15        -113
+           90            17        -113
+           92            15        -152
+           92            17        -152
+          181           181         -37
+          182             3         -76
+          182            86         -37
+          182           182         -37
+          196           557        -160
+          196           566        -160
+          196           588        -160
+          196           593         -68
+          196           596         -68
+          299            15        -225
+          299            17        -225
+          299           504        +164
+          299           505        -188
+          299           507        -188
+          299           513        -188
+          299           538         -88
+          299           551         +88
+          300           505         -37
+          300           507         -37
+          300           513         -37
+          300           522         -66
+          300           527         -66
+          301           505         -59
+          301           522         -66
+          301           527         -66
+          303           306         -29
+          303           540         -39
+          303           548         -55
+          303           652         -29
+          306           302         -29
+          306           303         -29
+          306           305         -29
+          306           307         -29
+          306           528         -29
+          306           535         -29
+          306           544         -29
+          306           546         -29
+          306           550         -29
+          306           555         -29
+          307           306         -29
+          307           540         -39
+          307           548         -55
+          307           652         -29
+          497           300         -43
+          497           301         -59
+          497           517         -43
+          497           521        -152
+          497           522        -152
+          497           527        -152
+          497           534         -37
+          497           542         -37
+          497           548         -37
+          501           522         -66
+          502           300        -115
+          502           301        -115
+          502           302        -186
+          502           305        -186
+          502           307        -186
+          502           504        +170
+          502           505        -152
+          502           507        -152
+          502           513        -152
+          502           517        -115
+          502           525         -98
+          502           530        -152
+          502           531         -76
+          502           536        -152
+          502           538         -76
+          502           539        -152
+          502           541        -152
+          502           544        -186
+          502           551         +98
+          502           553        -186
+          503           522         -47
+          503           527         -47
+          505             3        -113
+          505           182        -152
+          505           300         -43
+          505           301         -59
+          505           517         -43
+          505           521        -152
+          505           522        -152
+          505           527        -152
+          505           534         -37
+          505           542         -37
+          505           548         -37
+          507             3        -113
+          507           300         -43
+          507           517         -43
+          507           521        -119
+          507           522        -152
+          507           527        -152
+          512           300         -63
+          512           301        -113
+          512           302         -25
+          512           303         -25
+          512           305         -25
+          512           307         -25
+          512           517         -63
+          512           528         -25
+          512           535         -25
+          512           537         -25
+          512           543         -25
+          512           544         -25
+          512           550         -25
+          512           553         -25
+          512           555         -25
+          513             3        -113
+          513           300         -43
+          513           517         -43
+          513           521        -152
+          513           522        -152
+          513           527        -152
+          517           505         -37
+          517           507         -43
+          517           513         -37
+          517           522         -66
+          517           527         -66
+          519             3         -37
+          519            15        -262
+          519            17        -262
+          519           505        -152
+          519           507        -152
+          519           513        -152
+          520           306         -98
+          520           652         -98
+          521             3         -37
+          521            15        -225
+          521            17        -225
+          521            29        -225
+          521            30        -225
+          521           300         -37
+          521           301         -37
+          521           302        -225
+          521           304        -225
+          521           305        -225
+          521           307        -225
+          521           504        +188
+          521           505        -152
+          521           507        -152
+          521           513        -152
+          521           517         -37
+          521           525         -37
+          521           528        -225
+          521           529        -225
+          521           532        -178
+          521           534        -178
+          521           536        -150
+          521           538         -76
+          521           541        -150
+          521           542        -113
+          521           544        -225
+          521           547        -176
+          521           548        -113
+          521           549        -150
+          521           551        +188
+          521           552        -178
+          521           553        -225
+          521           554        -178
+          522             3         -37
+          522            15        -262
+          522            16        -186
+          522            17        -262
+          522            29        -113
+          522            30        -113
+          522           300        -115
+          522           301        -115
+          522           302        -186
+          522           305        -186
+          522           307        -186
+          522           504        +188
+          522           505        -152
+          522           507        -152
+          522           513        -152
+          522           517        -115
+          522           525         -98
+          522           530        -152
+          522           531         -76
+          522           534         -98
+          522           536        -152
+          522           538         -76
+          522           539        -152
+          522           541        -152
+          522           544        -186
+          522           551        +121
+          522           553        -186
+          524           302         -78
+          524           303         -78
+          524           305         -78
+          524           307         -78
+          524           528         -78
+          524           537         -39
+          524           544         -78
+          524           550         -78
+          524           553         -78
+          524           555         -78
+          525           522         -47
+          525           527         -47
+          527             3         -37
+          527           300        -115
+          527           301        -115
+          527           302        -186
+          527           305        -186
+          527           307        -186
+          527           504        +170
+          527           505        -152
+          527           507        -152
+          527           513        -152
+          527           517        -115
+          527           525         -98
+          527           530        -152
+          527           531         -76
+          527           536        -152
+          527           538         -76
+          527           539        -152
+          527           541        -152
+          527           544        -186
+          527           551         +98
+          527           553        -186
+          535           302        -137
+          535           303         -76
+          535           305        -137
+          535           306         -86
+          535           307        -137
+          535           528        -137
+          535           530         -37
+          535           534         -86
+          535           536         -37
+          535           537         -98
+          535           538         -37
+          535           539         -37
+          535           542         -86
+          535           544        -137
+          535           550        -137
+          535           553        -137
+          535           555        -137
+          535           652         -86
+          537           540         -39
+          539           302         -25
+          539           303         -25
+          539           305         -25
+          539           307         -25
+          539           528         -25
+          539           535         -25
+          539           537         -25
+          539           543         -25
+          539           544         -25
+          539           546         -25
+          539           550         -25
+          539           553         -25
+          539           555         -25
+          540           302         -31
+          540           303         -31
+          540           305         -31
+          540           307         -37
+          540           528         -31
+          540           543         -31
+          540           544         -31
+          540           546         -47
+          540           547         -49
+          540           550         -31
+          540           553         -31
+          540           554         -49
+          540           555         -31
+          543           302         -55
+          543           303         -55
+          543           305         -55
+          543           307         -55
+          543           528         -55
+          543           535         -55
+          543           543         -55
+          543           544         -55
+          543           546         -55
+          543           553         -55
+          544           306         -29
+          544           540         -39
+          544           548         -55
+          544           652         -29
+          545           306         -29
+          545           540         -39
+          545           652         -29
+          548           302         -55
+          548           303         -55
+          548           305         -55
+          548           307         -55
+          548           528         -55
+          548           535         -55
+          548           544         -55
+          548           546         -55
+          548           550         -55
+          548           553         -55
+          548           555         -55
+          550           306         -29
+          550           540         -39
+          550           548         -55
+          550           652         -29
+          553           306         -29
+          553           540         -39
+          553           548         -55
+          553           652         -29
+          555           306         -29
+          555           540         -39
+          555           548         -55
+          555           652         -29
+          558            15        -250
+          558            17        -250
+          558           169        -137
+          558           170        -137
+          558           178         -45
+          564           182        -160
+          565           182        -137
+          570           182        -115
+          570           574         +68
+          570           577         -23
+          570           581         +45
+          570           584         -45
+          570           585         -23
+          570           587         -45
+          570           588        -160
+          570           589         -90
+          570           590         -68
+          570           593        -160
+          570           599         -45
+          570           602         +23
+          570           620         -45
+          570           621         -23
+          570           622         +23
+          570           631         +45
+          571           570         -45
+          571           577         -23
+          571           584         -23
+          571           587         -23
+          571           588         -92
+          571           589         -47
+          571           590         -23
+          571           591         -45
+          571           593         -92
+          571           596         -68
+          571           599         -23
+          571           601         -23
+          571           613         -23
+          571           621         -45
+          572           570         -68
+          572           574         -45
+          572           576         -45
+          572           577         -68
+          572           581         -23
+          572           584         -68
+          572           587         -68
+          572           588        -137
+          572           589         -68
+          572           590         -68
+          572           591         -90
+          572           593         -92
+          572           596        -115
+          572           601         -68
+          572           606         -23
+          572           614         -23
+          572           620         -68
+          572           621         -23
+          572           623         -23
+          572           625         -68
+          572           633         -23
+          573            15        -250
+          573            17        -250
+          573           169        -137
+          573           170        -137
+          573           178         -45
+          573           570        -137
+          573           574        -137
+          573           577         -45
+          573           581        -115
+          573           582         -47
+          573           584        -115
+          573           587         -92
+          573           601         -68
+          573           602        -115
+          573           604        -115
+          573           606        -137
+          573           607        -137
+          573           610        -115
+          573           613        -115
+          573           614        -115
+          573           615        -115
+          573           616        -137
+          573           618        -115
+          573           621        -137
+          573           629        -115
+          573           630        -115
+          573           632        -115
+          573           633        -137
+          574           589         +23
+          574           590         -45
+          574           593         -70
+          574           609         +68
+          574           616         +23
+          574           621         +45
+          575           577         -45
+          575           619         -23
+          576           577         -23
+          576           584         -45
+          576           587         -23
+          576           588         +23
+          576           589         +45
+          576           596         +45
+          576           602         +23
+          576           607         -25
+          576           616         -23
+          576           621         -23
+          577           581         -23
+          577           584         -23
+          577           587         -23
+          577           588         -45
+          577           589         -23
+          577           590         -23
+          577           593         -45
+          577           601         -23
+          580           577         -23
+          580           584         -23
+          580           587         -23
+          580           589         +23
+          580           590         -70
+          581           590         -23
+          581           603         +23
+          581           621         +23
+          582           590         -23
+          582           593         -23
+          582           602         +23
+          582           607         +23
+          582           616         +23
+          582           619         +23
+          582           621         +23
+          582           625         -23
+          582           631         +23
+          584           570         -45
+          584           574         -45
+          584           576         -45
+          584           581         -23
+          584           589         -45
+          584           591         -92
+          584           593         -45
+          584           601         -45
+          584           606         -45
+          584           613         -23
+          584           623         -23
+          586            15        -387
+          586            17        -387
+          586            29         -45
+          586            30         -45
+          586           170        -115
+          586           570        -137
+          586           574        -137
+          586           576         -23
+          586           577         -45
+          586           581        -115
+          586           582         -23
+          586           584         -45
+          586           587         -23
+          586           588         -92
+          586           589         -45
+          586           590         -23
+          586           591         -92
+          586           601         -45
+          586           602         -68
+          586           606        -160
+          586           607         -90
+          586           616         -90
+          586           631         -45
+          586           633         -68
+          587           570         -45
+          587           574         -45
+          587           577         -23
+          587           581         -68
+          587           582         -23
+          587           584         -45
+          587           588         -68
+          587           589         -68
+          587           591        -115
+          587           593         -68
+          587           596         -70
+          587           599         -23
+          587           602         +23
+          587           608         +45
+          587           625         -23
+          588            15        -227
+          588            17        -227
+          588           169         -90
+          588           170         -90
+          588           178         -45
+          588           570         -68
+          588           574         -68
+          588           576         +23
+          588           577         -23
+          588           581         -45
+          588           584         -92
+          588           590         -68
+          588           601         -45
+          588           602         -92
+          588           604         -90
+          588           607        -115
+          588           610         -90
+          588           612         -90
+          588           613         -92
+          588           614         -90
+          588           616        -160
+          588           617         -90
+          588           618        -115
+          588           619        -115
+          588           621        -115
+          588           623         -90
+          588           627         -90
+          588           629         -90
+          588           630         -90
+          588           632         -90
+          588           633        -115
+          589            15        -272
+          589            17        -272
+          589            29         -45
+          589            30         -45
+          589           169         -90
+          589           170         -92
+          589           178         -23
+          589           570        -137
+          589           574         -92
+          589           577         -45
+          589           581         -68
+          589           584         -68
+          589           590         -68
+          589           599         -45
+          589           601         -45
+          589           603         -45
+          589           604        -115
+          589           605         -92
+          589           606        -160
+          589           607        -137
+          589           608         -68
+          589           609        -115
+          589           610         -92
+          589           611         -68
+          589           612         -92
+          589           613        -137
+          589           614         -92
+          589           615         -92
+          589           616        -137
+          589           617         -92
+          589           618         -92
+          589           619        -137
+          589           623         -92
+          589           624         -92
+          589           626         -92
+          589           627         -92
+          589           632         -92
+          589           633        -137
+          590           570         -45
+          590           574         -68
+          590           581         -68
+          590           588        -115
+          590           589         -92
+          590           593         -45
+          590           601         -70
+          590           613         -68
+          591           577         -45
+          591           584         -68
+          591           587         -68
+          591           590         -68
+          591           599         -70
+          591           616         -23
+          591           621         -45
+          592           584         -45
+          592           602         +45
+          595           602         +23
+          595           621         +45
+          596           182        -137
+          596           601         -68
+          598           182        -160
+          598           570         -45
+          598           574         -45
+          598           576         -68
+          598           577         -23
+          598           581         -70
+          598           582         -45
+          598           584         -45
+          598           587         -45
+          598           588        -205
+          598           591         -92
+          598           593        -160
+          598           599         -23
+          598           601         -92
+          599           574         -68
+          599           576         -25
+          599           577         -23
+          599           581         -68
+          599           591         -70
+          599           601         -45
+          599           606         -68
+          599           608         +23
+          599           613         -68
+          599           614         -23
+          599           633         -23
+          600           570         -68
+          600           574         -90
+          600           576         -45
+          600           581         -92
+          600           584         -23
+          600           587         -23
+          600           588        -115
+          600           591         -92
+          600           593         -68
+          600           606         -92
+          600           613         -92
+          600           614         -23
+          602           609         -23
+          602           620         -45
+          602           621         -23
+          602           625         -45
+          603           602         -47
+          603           606         -92
+          603           607         -23
+          603           608         -23
+          603           609         -45
+          603           613         -92
+          603           614         -45
+          603           619         -23
+          603           621         -45
+          603           622         -23
+          603           623         -68
+          603           625         -68
+          603           628         -68
+          603           631         -23
+          603           633         -45
+          604           602         -23
+          604           603         -23
+          604           606         -23
+          604           607         -23
+          604           608         -23
+          604           609         -23
+          604           613         -47
+          604           614         -23
+          604           616         -23
+          604           619         -23
+          604           620         -45
+          604           621         -45
+          604           622         -23
+          604           625         -92
+          604           628         -68
+          604           633         -23
+          605            15        -250
+          605            17        -250
+          605           602         -45
+          605           606         -92
+          605           607         -45
+          605           609         -23
+          605           613         -45
+          605           616         -45
+          605           619         -45
+          605           633         -23
+          606           628         -45
+          606           631         +23
+          607           603         -23
+          607           606         -45
+          607           608         -23
+          607           609         -45
+          607           613         -68
+          607           620         -68
+          607           621         -23
+          607           623         -45
+          607           625         -68
+          608           603         +23
+          608           621         +23
+          608           625         -23
+          608           628         +45
+          609           603         -23
+          609           606         -45
+          609           607         -23
+          609           609         -23
+          609           613         -23
+          609           616         -23
+          609           619         -23
+          609           621         -23
+          609           622         -23
+          609           625         -68
+          609           628         -45
+          612           602         +45
+          612           603         +45
+          612           607         +23
+          612           609         +23
+          612           613         +23
+          612           616         +23
+          612           619         +23
+          612           620         +23
+          612           621         +23
+          612           631         +23
+          613           616         +23
+          613           625         -45
+          614           603         -23
+          614           609         -23
+          614           621         +23
+          616           606         -45
+          616           608         -23
+          616           609         -23
+          616           613         -45
+          616           620         -45
+          616           621         -23
+          616           623         -23
+          616           625         -45
+          618           606         -47
+          618           609         -23
+          618           613         -70
+          618           620         -45
+          618           621         -23
+          618           623         -23
+          618           625         -45
+          618           633         -23
+          619           608         +23
+          619           616         +23
+          619           625         -23
+          619           631         +23
+          620            15        -227
+          620            17        -227
+          620           602         -23
+          620           606         -68
+          620           607         -23
+          620           608         +68
+          620           613         -45
+          620           616         -23
+          620           619         -23
+          620           621         +23
+          621            15        -205
+          621            17        -205
+          621           170         +23
+          621           602         -23
+          621           603         +23
+          621           606         -68
+          621           607         -23
+          621           608         +23
+          621           613         -45
+          621           614         -23
+          621           616         -25
+          621           618         -23
+          621           619         -23
+          621           622         -23
+          621           631         -23
+          621           633         -23
+          622           603         -23
+          622           606         -45
+          622           613         -45
+          622           620         -45
+          622           621         -23
+          622           625         -45
+          622           633         -23
+          623           602         -23
+          623           603         -23
+          623           607         -23
+          623           609         -23
+          623           616         -23
+          623           619         -23
+          623           620         -23
+          623           622         -23
+          623           625         -45
+          624           607         -23
+          624           609         -23
+          624           616         -23
+          624           619         -23
+          627           607         -23
+          627           616         -23
+          627           621         +23
+          630           620        -160
+          630           625        -137
+          631           606         -45
+          631           607         +23
+          631           609         -23
+          631           613         -45
+          631           616         +23
+          631           620         -45
+          631           623         -23
+          631           633         -23
+          632           606         -45
+          632           608         -23
+          632           613         -45
+          632           614         -23
+          632           620         -45
+          632           623         -23
+          632           625         -45
+          646            15        -205
+          646            17        -205
+          648            15        -250
+          648            17        -250
+          648            29         -45
+          648            30         -45
+          648           169        -160
+          648           170        -160
+          648           178         -45
+          652           302         -29
+          652           305         -29
+          652           307         -29
+          652           528         -29
+          652           535         -29
+          652           544         -29
+          652           546         -29
+          652           550         -29
+          652           555         -29
+
+; 'GSUB' Table - Glyph Substitution
+; -------------------------------------
+
+GSUBHeader GSUBHeaderT0000  
+0X00010000            
+ScriptListT000a       
+FeatureListT0024      
+LookupListT0058       
+
+ScriptList ScriptListT000a  
+1                     
+                      ; ScriptRecord[0]
+'arab'                
+ScriptT0012           
+
+Script ScriptT0012  
+LangSysT0016          
+0                     
+
+LangSys LangSysT0016  
+NULL                  
+0XFFFF                
+4                     
+0                     
+1                     
+2                     
+3                     
+
+FeatureList FeatureListT0024  
+4                     
+                      ; FeatureRecord[0]
+'init'                
+FeatureT003e          
+                      ; FeatureRecord[1]
+'medi'                
+FeatureT0044          
+                      ; FeatureRecord[2]
+'fina'                
+FeatureT004a          
+                      ; FeatureRecord[3]
+'liga'                
+FeatureT0050          
+
+Feature FeatureT003e  
+NULL                  
+1                     
+0                     
+
+Feature FeatureT0044  
+NULL                  
+1                     
+1                     
+
+Feature FeatureT004a  
+NULL                  
+1                     
+2                     
+
+Feature FeatureT0050  
+NULL                  
+2                     
+3                     
+4                     
+
+LookupList LookupListT0058  
+5                     
+LookupT0064           
+LookupT00e6           
+LookupT0168           
+LookupT022e           
+LookupT0296           
+
+Lookup LookupT0064  
+1                     
+1                     
+1                     
+SingleSubstFormat2T006c 
+
+SingleSubstFormat2 SingleSubstFormat2T006c  
+2                     
+CoverageFormat1T00aa  
+28                    
+801                   
+809                   
+815                   
+819                   
+1011                  
+907                   
+913                   
+919                   
+923                   
+927                   
+931                   
+935                   
+947                   
+951                   
+955                   
+959                   
+963                   
+967                   
+971                   
+975                   
+979                   
+983                   
+987                   
+991                   
+995                   
+999                   
+1003                  
+1011                  
+
+CoverageFormat1 CoverageFormat1T00aa  
+1                     
+28                    
+799                   
+807                   
+813                   
+817                   
+821                   
+905                   
+911                   
+917                   
+921                   
+925                   
+929                   
+933                   
+945                   
+949                   
+953                   
+957                   
+961                   
+965                   
+969                   
+973                   
+977                   
+981                   
+985                   
+989                   
+993                   
+997                   
+1001                  
+1009                  
+
+Lookup LookupT00e6  
+1                     
+1                     
+1                     
+SingleSubstFormat2T00ee 
+
+SingleSubstFormat2 SingleSubstFormat2T00ee  
+2                     
+CoverageFormat1T012c  
+28                    
+802                   
+810                   
+816                   
+820                   
+1012                  
+908                   
+914                   
+920                   
+924                   
+928                   
+932                   
+936                   
+948                   
+952                   
+956                   
+960                   
+964                   
+968                   
+972                   
+976                   
+980                   
+984                   
+988                   
+992                   
+996                   
+1000                  
+1004                  
+1012                  
+
+CoverageFormat1 CoverageFormat1T012c  
+1                     
+28                    
+799                   
+807                   
+813                   
+817                   
+821                   
+905                   
+911                   
+917                   
+921                   
+925                   
+929                   
+933                   
+945                   
+949                   
+953                   
+957                   
+961                   
+965                   
+969                   
+973                   
+977                   
+981                   
+985                   
+989                   
+993                   
+997                   
+1001                  
+1009                  
+
+Lookup LookupT0168  
+1                     
+1                     
+1                     
+SingleSubstFormat2T0170 
+
+SingleSubstFormat2 SingleSubstFormat2T0170  
+2                     
+CoverageFormat1T01d0  
+45                    
+800                   
+808                   
+812                   
+814                   
+818                   
+822                   
+898                   
+900                   
+902                   
+904                   
+906                   
+910                   
+912                   
+916                   
+918                   
+922                   
+926                   
+930                   
+934                   
+938                   
+940                   
+942                   
+944                   
+946                   
+950                   
+954                   
+958                   
+962                   
+966                   
+970                   
+974                   
+978                   
+982                   
+986                   
+990                   
+994                   
+998                   
+1002                  
+1006                  
+1008                  
+1010                  
+1014                  
+1016                  
+1018                  
+1020                  
+
+CoverageFormat1 CoverageFormat1T01d0  
+1                     
+45                    
+799                   
+807                   
+811                   
+813                   
+817                   
+821                   
+897                   
+899                   
+901                   
+903                   
+905                   
+909                   
+911                   
+915                   
+917                   
+921                   
+925                   
+929                   
+933                   
+937                   
+939                   
+941                   
+943                   
+945                   
+949                   
+953                   
+957                   
+961                   
+965                   
+969                   
+973                   
+977                   
+981                   
+985                   
+989                   
+993                   
+997                   
+1001                  
+1005                  
+1007                  
+1009                  
+1013                  
+1015                  
+1017                  
+1019                  
+
+Lookup LookupT022e  
+4                     
+9                     
+1                     
+LigatureSubstFormat1T0236 
+
+LigatureSubstFormat1 LigatureSubstFormat1T0236  
+1                     
+CoverageFormat1T028e  
+2                     
+LigatureSetT0240      
+LigatureSetT026c      
+
+LigatureSet LigatureSetT0240  
+5                     
+LigatureT024c         
+LigatureT0254         
+LigatureT025a         
+LigatureT0260         
+LigatureT0266         
+
+Ligature LigatureT024c  
+895                   
+3                     
+992                   
+1002                  
+
+Ligature LigatureT0254  
+1013                  
+2                     
+898                   
+
+Ligature LigatureT025a  
+1015                  
+2                     
+900                   
+
+Ligature LigatureT0260  
+1017                  
+2                     
+904                   
+
+Ligature LigatureT0266  
+1019                  
+2                     
+910                   
+
+LigatureSet LigatureSetT026c  
+4                     
+LigatureT0276         
+LigatureT027c         
+LigatureT0282         
+LigatureT0288         
+
+Ligature LigatureT0276  
+1014                  
+2                     
+898                   
+
+Ligature LigatureT027c  
+1016                  
+2                     
+900                   
+
+Ligature LigatureT0282  
+1018                  
+2                     
+904                   
+
+Ligature LigatureT0288  
+1020                  
+2                     
+910                   
+
+CoverageFormat1 CoverageFormat1T028e  
+1                     
+2                     
+991                   
+992                   
+
+Lookup LookupT0296  
+4                     
+7                     
+1                     
+LigatureSubstFormat1T029e 
+
+LigatureSubstFormat1 LigatureSubstFormat1T029e  
+1                     
+CoverageFormat1T02d8  
+1                     
+LigatureSetT02a6      
+
+LigatureSet LigatureSetT02a6  
+6                     
+LigatureT02b4         
+LigatureT02ba         
+LigatureT02c0         
+LigatureT02c6         
+LigatureT02cc         
+LigatureT02d2         
+
+Ligature LigatureT02b4  
+786                   
+2                     
+753                   
+
+Ligature LigatureT02ba  
+839                   
+2                     
+754                   
+
+Ligature LigatureT02c0  
+840                   
+2                     
+755                   
+
+Ligature LigatureT02c6  
+841                   
+2                     
+756                   
+
+Ligature LigatureT02cc  
+842                   
+2                     
+757                   
+
+Ligature LigatureT02d2  
+843                   
+2                     
+758                   
+
+CoverageFormat1 CoverageFormat1T02d8  
+1                     
+1                     
+759                   
+
+; 'GDEF' Table - Glyph Definition
+;-------------------------------------
+
+GDEFHeader GDEFHeaderT0000  
+0X00010000            
+ClassDefFormat2T000c  
+NULL                  
+NULL                  
+NULL                  ; AttachClassDef (1.2)
+
+ClassDefFormat2 ClassDefFormat2T000c  
+2                     
+23                    
+                      ; ClassRangeRecord[0]
+744                   
+752                   
+1                     
+                      ; ClassRangeRecord[1]
+753                   
+760                   
+3                     
+                      ; ClassRangeRecord[2]
+761                   
+773                   
+1                     
+                      ; ClassRangeRecord[3]
+776                   
+776                   
+1                     
+                      ; ClassRangeRecord[4]
+778                   
+780                   
+1                     
+                      ; ClassRangeRecord[5]
+786                   
+786                   
+3                     
+                      ; ClassRangeRecord[6]
+795                   
+795                   
+1                     
+                      ; ClassRangeRecord[7]
+799                   
+802                   
+1                     
+                      ; ClassRangeRecord[8]
+807                   
+822                   
+1                     
+                      ; ClassRangeRecord[9]
+839                   
+843                   
+3                     
+                      ; ClassRangeRecord[10]
+892                   
+893                   
+1                     
+                      ; ClassRangeRecord[11]
+895                   
+895                   
+2                     
+                      ; ClassRangeRecord[12]
+896                   
+896                   
+1                     
+                      ; ClassRangeRecord[13]
+897                   
+908                   
+2                     
+                      ; ClassRangeRecord[14]
+909                   
+1012                  
+1                     
+                      ; ClassRangeRecord[15]
+1013                  
+1020                  
+2                     
+                      ; ClassRangeRecord[16]
+1023                  
+1024                  
+3                     
+                      ; ClassRangeRecord[17]
+1028                  
+1029                  
+3                     
+                      ; ClassRangeRecord[18]
+1032                  
+1033                  
+3                     
+                      ; ClassRangeRecord[19]
+1037                  
+1042                  
+3                     
+                      ; ClassRangeRecord[20]
+1044                  
+1045                  
+3                     
+                      ; ClassRangeRecord[21]
+1100                  
+1102                  
+1                     
+                      ; ClassRangeRecord[22]
+1127                  
+1129                  
+1                     
+
+; 'JSTF' Table - Justification
+;-------------------------------------
+
+JSTFHeader JSTFHeaderT0000  
+0X00010000            
+1                     
+                      ; JstfScriptRecord[0]
+'arab'                
+JstfScriptT000c       
+
+JstfScript JstfScriptT000c  
+ExtenderGlyphT0012    
+NULL                  
+0                     
+
+ExtenderGlyph ExtenderGlyphT0012  
+5                     
+752                   
+795                   
+1127                  
+1128                  
+1129                  
+
+'DSIG' Table - Digital Signature
+-------------------------------------
+Size = 6488 bytes
+  'DSIG' version:  1
+  numSigs:       1
+  Flags:			0001
+
+'loca' Table - Index To Location Table
+--------------------------------------
+Size = 5284 bytes, 1321 entries
+	Idx   0 -> glyfOff 0x00000000
+	Idx   1 -> glyfOff 0x0000006C* No contours *
+	Idx   2 -> glyfOff 0x0000006C* No contours *
+	Idx   3 -> glyfOff 0x0000006C* No contours *
+	Idx   4 -> glyfOff 0x0000006C
+	Idx   5 -> glyfOff 0x00000118
+	Idx   6 -> glyfOff 0x000001C0
+	Idx   7 -> glyfOff 0x00000362
+	Idx   8 -> glyfOff 0x000005E8
+	Idx   9 -> glyfOff 0x00000790
+	Idx  10 -> glyfOff 0x0000097A
+	Idx  11 -> glyfOff 0x000009C0
+	Idx  12 -> glyfOff 0x00000A40
+	Idx  13 -> glyfOff 0x00000AE6
+	Idx  14 -> glyfOff 0x00000BC6
+	Idx  15 -> glyfOff 0x00000C2E
+	Idx  16 -> glyfOff 0x00000CA6
+	Idx  17 -> glyfOff 0x00000CEC
+	Idx  18 -> glyfOff 0x00000D28
+	Idx  19 -> glyfOff 0x00000D98
+	Idx  20 -> glyfOff 0x00000F54
+	Idx  21 -> glyfOff 0x00001030
+	Idx  22 -> glyfOff 0x0000125A
+	Idx  23 -> glyfOff 0x00001434
+	Idx  24 -> glyfOff 0x00001594
+	Idx  25 -> glyfOff 0x0000174E
+	Idx  26 -> glyfOff 0x00001924
+	Idx  27 -> glyfOff 0x000019D0
+	Idx  28 -> glyfOff 0x00001C64
+	Idx  29 -> glyfOff 0x00001E98
+	Idx  30 -> glyfOff 0x00001EF4
+	Idx  31 -> glyfOff 0x00001FB2
+	Idx  32 -> glyfOff 0x00002034
+	Idx  33 -> glyfOff 0x000020A4
+	Idx  34 -> glyfOff 0x0000212A
+	Idx  35 -> glyfOff 0x0000221C
+	Idx  36 -> glyfOff 0x0000241C
+	Idx  37 -> glyfOff 0x000025C6
+	Idx  38 -> glyfOff 0x0000275E
+	Idx  39 -> glyfOff 0x00002898
+	Idx  40 -> glyfOff 0x000029E0
+	Idx  41 -> glyfOff 0x00002AA4
+	Idx  42 -> glyfOff 0x00002B5A
+	Idx  43 -> glyfOff 0x00002CEA
+	Idx  44 -> glyfOff 0x00002DF0
+	Idx  45 -> glyfOff 0x00002ED4
+	Idx  46 -> glyfOff 0x00002FBC
+	Idx  47 -> glyfOff 0x000031F2
+	Idx  48 -> glyfOff 0x0000327C
+	Idx  49 -> glyfOff 0x000035A6
+	Idx  50 -> glyfOff 0x00003750
+	Idx  51 -> glyfOff 0x00003884
+	Idx  52 -> glyfOff 0x0000398A
+	Idx  53 -> glyfOff 0x00003B7E
+	Idx  54 -> glyfOff 0x00003DEA
+	Idx  55 -> glyfOff 0x00004094
+	Idx  56 -> glyfOff 0x00004142
+	Idx  57 -> glyfOff 0x00004266
+	Idx  58 -> glyfOff 0x000043DA
+	Idx  59 -> glyfOff 0x00004618
+	Idx  60 -> glyfOff 0x00004924
+	Idx  61 -> glyfOff 0x00004ACA
+	Idx  62 -> glyfOff 0x00004C0A
+	Idx  63 -> glyfOff 0x00004C74
+	Idx  64 -> glyfOff 0x00004CDE
+	Idx  65 -> glyfOff 0x00004D42
+	Idx  66 -> glyfOff 0x00004DCA
+	Idx  67 -> glyfOff 0x00004DFE
+	Idx  68 -> glyfOff 0x00004E7A
+	Idx  69 -> glyfOff 0x0000514C
+	Idx  70 -> glyfOff 0x0000532A
+	Idx  71 -> glyfOff 0x000054DE
+	Idx  72 -> glyfOff 0x00005692
+	Idx  73 -> glyfOff 0x00005850
+	Idx  74 -> glyfOff 0x000059A4
+	Idx  75 -> glyfOff 0x00005B94
+	Idx  76 -> glyfOff 0x00005D38
+	Idx  77 -> glyfOff 0x00005E2C
+	Idx  78 -> glyfOff 0x00005F44
+	Idx  79 -> glyfOff 0x000061DC
+	Idx  80 -> glyfOff 0x000062D8
+	Idx  81 -> glyfOff 0x00006508
+	Idx  82 -> glyfOff 0x000066CE
+	Idx  83 -> glyfOff 0x00006890
+	Idx  84 -> glyfOff 0x00006A54
+	Idx  85 -> glyfOff 0x00006BEA
+	Idx  86 -> glyfOff 0x00006CF0
+	Idx  87 -> glyfOff 0x00007098
+	Idx  88 -> glyfOff 0x000071BC
+	Idx  89 -> glyfOff 0x0000735A
+	Idx  90 -> glyfOff 0x00007578
+	Idx  91 -> glyfOff 0x000079E2
+	Idx  92 -> glyfOff 0x00007C06
+	Idx  93 -> glyfOff 0x00007E5E
+	Idx  94 -> glyfOff 0x00008046
+	Idx  95 -> glyfOff 0x00008144
+	Idx  96 -> glyfOff 0x00008190
+	Idx  97 -> glyfOff 0x00008292
+	Idx  98 -> glyfOff 0x00008332
+	Idx  99 -> glyfOff 0x0000837E
+	Idx 100 -> glyfOff 0x000083B2
+	Idx 101 -> glyfOff 0x000083EE
+	Idx 102 -> glyfOff 0x00008430
+	Idx 103 -> glyfOff 0x00008496
+	Idx 104 -> glyfOff 0x000084DC
+	Idx 105 -> glyfOff 0x00008510
+	Idx 106 -> glyfOff 0x00008546
+	Idx 107 -> glyfOff 0x0000857C
+	Idx 108 -> glyfOff 0x000085CC
+	Idx 109 -> glyfOff 0x0000860E
+	Idx 110 -> glyfOff 0x00008660
+	Idx 111 -> glyfOff 0x00008698
+	Idx 112 -> glyfOff 0x000086EA
+	Idx 113 -> glyfOff 0x00008720
+	Idx 114 -> glyfOff 0x00008760
+	Idx 115 -> glyfOff 0x000087A2
+	Idx 116 -> glyfOff 0x000087E0
+	Idx 117 -> glyfOff 0x0000882A
+	Idx 118 -> glyfOff 0x0000886A
+	Idx 119 -> glyfOff 0x00008898
+	Idx 120 -> glyfOff 0x000088D0
+	Idx 121 -> glyfOff 0x00008920
+	Idx 122 -> glyfOff 0x00008956
+	Idx 123 -> glyfOff 0x00008996
+	Idx 124 -> glyfOff 0x000089D0
+	Idx 125 -> glyfOff 0x00008A14
+	Idx 126 -> glyfOff 0x00008A5E
+	Idx 127 -> glyfOff 0x00008A9A
+	Idx 128 -> glyfOff 0x00008ACA
+	Idx 129 -> glyfOff 0x00008B0E
+	Idx 130 -> glyfOff 0x00008B46
+	Idx 131 -> glyfOff 0x00008BD6
+	Idx 132 -> glyfOff 0x00008C5C
+	Idx 133 -> glyfOff 0x00008E6A
+	Idx 134 -> glyfOff 0x00008FFE
+	Idx 135 -> glyfOff 0x000091AE
+	Idx 136 -> glyfOff 0x000091FA
+	Idx 137 -> glyfOff 0x0000928E
+	Idx 138 -> glyfOff 0x000094B2
+	Idx 139 -> glyfOff 0x00009706
+	Idx 140 -> glyfOff 0x000098F6
+	Idx 141 -> glyfOff 0x000099E2
+	Idx 142 -> glyfOff 0x00009A64
+	Idx 143 -> glyfOff 0x00009ACE
+	Idx 144 -> glyfOff 0x00009BEC
+	Idx 145 -> glyfOff 0x00009D48
+	Idx 146 -> glyfOff 0x00009F90
+	Idx 147 -> glyfOff 0x0000A0F2
+	Idx 148 -> glyfOff 0x0000A180
+	Idx 149 -> glyfOff 0x0000A22A
+	Idx 150 -> glyfOff 0x0000A2EE
+	Idx 151 -> glyfOff 0x0000A436
+	Idx 152 -> glyfOff 0x0000A5E0
+	Idx 153 -> glyfOff 0x0000A6CE
+	Idx 154 -> glyfOff 0x0000A794
+	Idx 155 -> glyfOff 0x0000A7F8
+	Idx 156 -> glyfOff 0x0000A866
+	Idx 157 -> glyfOff 0x0000A990
+	Idx 158 -> glyfOff 0x0000AAB4
+	Idx 159 -> glyfOff 0x0000AB44
+	Idx 160 -> glyfOff 0x0000AD26
+	Idx 161 -> glyfOff 0x0000AF80
+	Idx 162 -> glyfOff 0x0000B2D2
+	Idx 163 -> glyfOff 0x0000B3C8
+	Idx 164 -> glyfOff 0x0000B46E
+	Idx 165 -> glyfOff 0x0000B4BE
+	Idx 166 -> glyfOff 0x0000B574
+	Idx 167 -> glyfOff 0x0000B694
+	Idx 168 -> glyfOff 0x0000B832
+	Idx 169 -> glyfOff 0x0000B8CC
+	Idx 170 -> glyfOff 0x0000B990
+	Idx 171 -> glyfOff 0x0000BA50
+	Idx 172 -> glyfOff 0x0000BAB8
+	Idx 173 -> glyfOff 0x0000BAF4
+	Idx 174 -> glyfOff 0x0000BB4C
+	Idx 175 -> glyfOff 0x0000BB9A
+	Idx 176 -> glyfOff 0x0000BDB2
+	Idx 177 -> glyfOff 0x0000BFF8
+	Idx 178 -> glyfOff 0x0000C030
+	Idx 179 -> glyfOff 0x0000C062
+	Idx 180 -> glyfOff 0x0000C18C
+	Idx 181 -> glyfOff 0x0000C2B8
+	Idx 182 -> glyfOff 0x0000C366
+	Idx 183 -> glyfOff 0x0000C40A
+	Idx 184 -> glyfOff 0x0000C4AC
+	Idx 185 -> glyfOff 0x0000C57E
+	Idx 186 -> glyfOff 0x0000C5D2
+	Idx 187 -> glyfOff 0x0000C608
+	Idx 188 -> glyfOff 0x0000C660
+	Idx 189 -> glyfOff 0x0000C7B2
+	Idx 190 -> glyfOff 0x0000C824
+	Idx 191 -> glyfOff 0x0000C87E
+	Idx 192 -> glyfOff 0x0000C9F6
+	Idx 193 -> glyfOff 0x0000CB62
+	Idx 194 -> glyfOff 0x0000CC42
+	Idx 195 -> glyfOff 0x0000CC74
+	Idx 196 -> glyfOff 0x0000CD10
+	Idx 197 -> glyfOff 0x0000CE34
+	Idx 198 -> glyfOff 0x0000D0AA
+	Idx 199 -> glyfOff 0x0000D0E4
+	Idx 200 -> glyfOff 0x0000D128
+	Idx 201 -> glyfOff 0x0000D164
+	Idx 202 -> glyfOff 0x0000D1C6
+	Idx 203 -> glyfOff 0x0000D208
+	Idx 204 -> glyfOff 0x0000D24E
+	Idx 205 -> glyfOff 0x0000D29A
+	Idx 206 -> glyfOff 0x0000D2CC
+	Idx 207 -> glyfOff 0x0000D320
+	Idx 208 -> glyfOff 0x0000D35E
+	Idx 209 -> glyfOff 0x0000D38E
+	Idx 210 -> glyfOff 0x0000D3CC
+	Idx 211 -> glyfOff 0x0000D412
+	Idx 212 -> glyfOff 0x0000D454
+	Idx 213 -> glyfOff 0x0000D492
+	Idx 214 -> glyfOff 0x0000D514
+	Idx 215 -> glyfOff 0x0000D582
+	Idx 216 -> glyfOff 0x0000D668
+	Idx 217 -> glyfOff 0x0000D6A4
+	Idx 218 -> glyfOff 0x0000D724
+	Idx 219 -> glyfOff 0x0000D758
+	Idx 220 -> glyfOff 0x0000D7FA
+	Idx 221 -> glyfOff 0x0000D882
+	Idx 222 -> glyfOff 0x0000D8EE
+	Idx 223 -> glyfOff 0x0000D97A
+	Idx 224 -> glyfOff 0x0000D9E6
+	Idx 225 -> glyfOff 0x0000DAD2
+	Idx 226 -> glyfOff 0x0000DBC4
+	Idx 227 -> glyfOff 0x0000DBF8
+	Idx 228 -> glyfOff 0x0000DC2C
+	Idx 229 -> glyfOff 0x0000DC5C
+	Idx 230 -> glyfOff 0x0000DCA0
+	Idx 231 -> glyfOff 0x0000DD18
+	Idx 232 -> glyfOff 0x0000DE92
+	Idx 233 -> glyfOff 0x0000E0AC
+	Idx 234 -> glyfOff 0x0000E0DE
+	Idx 235 -> glyfOff 0x0000E118
+	Idx 236 -> glyfOff 0x0000E212
+	Idx 237 -> glyfOff 0x0000E3A0
+	Idx 238 -> glyfOff 0x0000E3D6
+	Idx 239 -> glyfOff 0x0000E53A
+	Idx 240 -> glyfOff 0x0000E5B6
+	Idx 241 -> glyfOff 0x0000E696
+	Idx 242 -> glyfOff 0x0000E78C
+	Idx 243 -> glyfOff 0x0000E91C
+	Idx 244 -> glyfOff 0x0000EA86
+	Idx 245 -> glyfOff 0x0000EC74
+	Idx 246 -> glyfOff 0x0000ED70
+	Idx 247 -> glyfOff 0x0000EDB6
+	Idx 248 -> glyfOff 0x0000EDEA
+	Idx 249 -> glyfOff 0x0000EE2C
+	Idx 250 -> glyfOff 0x0000EE66
+	Idx 251 -> glyfOff 0x0000EEBA
+	Idx 252 -> glyfOff 0x0000EF02
+	Idx 253 -> glyfOff 0x0000EF4C
+	Idx 254 -> glyfOff 0x0000EF7C
+	Idx 255 -> glyfOff 0x0000EFAC
+	Idx 256 -> glyfOff 0x0000F194
+	Idx 257 -> glyfOff 0x0000F1D2
+	Idx 258 -> glyfOff 0x0000F20C
+	Idx 259 -> glyfOff 0x0000F23C
+	Idx 260 -> glyfOff 0x0000F270
+	Idx 261 -> glyfOff 0x0000F2A0
+	Idx 262 -> glyfOff 0x0000F2CC
+	Idx 263 -> glyfOff 0x0000F314
+	Idx 264 -> glyfOff 0x0000F4CA
+	Idx 265 -> glyfOff 0x0000F644
+	Idx 266 -> glyfOff 0x0000F670
+	Idx 267 -> glyfOff 0x0000F6B2
+	Idx 268 -> glyfOff 0x0000F6F6
+	Idx 269 -> glyfOff 0x0000F726
+	Idx 270 -> glyfOff 0x0000F756
+	Idx 271 -> glyfOff 0x0000F7AC
+	Idx 272 -> glyfOff 0x0000F88A
+	Idx 273 -> glyfOff 0x0000F99C
+	Idx 274 -> glyfOff 0x0000F9E0
+	Idx 275 -> glyfOff 0x0000FA16
+	Idx 276 -> glyfOff 0x0000FA70
+	Idx 277 -> glyfOff 0x0000FAAE
+	Idx 278 -> glyfOff 0x0000FAE2
+	Idx 279 -> glyfOff 0x0000FB12
+	Idx 280 -> glyfOff 0x0000FB4E
+	Idx 281 -> glyfOff 0x0000FB8E
+	Idx 282 -> glyfOff 0x0000FBCC
+	Idx 283 -> glyfOff 0x0000FC08
+	Idx 284 -> glyfOff 0x0000FC4A
+	Idx 285 -> glyfOff 0x0000FC80
+	Idx 286 -> glyfOff 0x0000FCBC
+	Idx 287 -> glyfOff 0x0000FCFC
+	Idx 288 -> glyfOff 0x0000FE0A
+	Idx 289 -> glyfOff 0x0000FF76
+	Idx 290 -> glyfOff 0x0000FFC6
+	Idx 291 -> glyfOff 0x00010122
+	Idx 292 -> glyfOff 0x00010178
+	Idx 293 -> glyfOff 0x000101AC
+	Idx 294 -> glyfOff 0x000101FA
+	Idx 295 -> glyfOff 0x00010246
+	Idx 296 -> glyfOff 0x00010288
+	Idx 297 -> glyfOff 0x000102C0
+	Idx 298 -> glyfOff 0x000102F6
+	Idx 299 -> glyfOff 0x0001033E
+	Idx 300 -> glyfOff 0x000103E0
+	Idx 301 -> glyfOff 0x0001057C
+	Idx 302 -> glyfOff 0x00010744
+	Idx 303 -> glyfOff 0x000108C6
+	Idx 304 -> glyfOff 0x00010AB8
+	Idx 305 -> glyfOff 0x00010C0A
+	Idx 306 -> glyfOff 0x00010D8E
+	Idx 307 -> glyfOff 0x00010E70
+	Idx 308 -> glyfOff 0x0001100A
+	Idx 309 -> glyfOff 0x00011074
+	Idx 310 -> glyfOff 0x0001109C
+	Idx 311 -> glyfOff 0x0001113A
+	Idx 312 -> glyfOff 0x000113BC
+	Idx 313 -> glyfOff 0x000113FC
+	Idx 314 -> glyfOff 0x0001143C
+	Idx 315 -> glyfOff 0x0001147C
+	Idx 316 -> glyfOff 0x000114BA
+	Idx 317 -> glyfOff 0x00011518
+	Idx 318 -> glyfOff 0x00011576
+	Idx 319 -> glyfOff 0x000115E4
+	Idx 320 -> glyfOff 0x00011604
+	Idx 321 -> glyfOff 0x000116EE
+	Idx 322 -> glyfOff 0x0001178E
+	Idx 323 -> glyfOff 0x000117C4
+	Idx 324 -> glyfOff 0x00011812
+	Idx 325 -> glyfOff 0x0001185C
+	Idx 326 -> glyfOff 0x000118A6
+	Idx 327 -> glyfOff 0x000118C2
+	Idx 328 -> glyfOff 0x000118DE
+	Idx 329 -> glyfOff 0x000118FE
+	Idx 330 -> glyfOff 0x0001191E
+	Idx 331 -> glyfOff 0x0001193E
+	Idx 332 -> glyfOff 0x0001195E
+	Idx 333 -> glyfOff 0x00011984
+	Idx 334 -> glyfOff 0x000119AA
+	Idx 335 -> glyfOff 0x000119D0
+	Idx 336 -> glyfOff 0x000119F6
+	Idx 337 -> glyfOff 0x00011A26
+	Idx 338 -> glyfOff 0x00011A4E
+	Idx 339 -> glyfOff 0x00011A76
+	Idx 340 -> glyfOff 0x00011AA2
+	Idx 341 -> glyfOff 0x00011ACE
+	Idx 342 -> glyfOff 0x00011B02
+	Idx 343 -> glyfOff 0x00011B2C
+	Idx 344 -> glyfOff 0x00011B58
+	Idx 345 -> glyfOff 0x00011B8E
+	Idx 346 -> glyfOff 0x00011BB8
+	Idx 347 -> glyfOff 0x00011BE4
+	Idx 348 -> glyfOff 0x00011C1A
+	Idx 349 -> glyfOff 0x00011C44
+	Idx 350 -> glyfOff 0x00011C6E
+	Idx 351 -> glyfOff 0x00011CA2
+	Idx 352 -> glyfOff 0x00011CD2
+	Idx 353 -> glyfOff 0x00011D06
+	Idx 354 -> glyfOff 0x00011D4A
+	Idx 355 -> glyfOff 0x00011D7A
+	Idx 356 -> glyfOff 0x00011DAE
+	Idx 357 -> glyfOff 0x00011DF0
+	Idx 358 -> glyfOff 0x00011E24
+	Idx 359 -> glyfOff 0x00011E56
+	Idx 360 -> glyfOff 0x00011E98
+	Idx 361 -> glyfOff 0x00011ECC
+	Idx 362 -> glyfOff 0x00011EFC
+	Idx 363 -> glyfOff 0x00011F3E
+	Idx 364 -> glyfOff 0x00011F82
+	Idx 365 -> glyfOff 0x00011FC8
+	Idx 366 -> glyfOff 0x00012024
+	Idx 367 -> glyfOff 0x00012040
+	Idx 368 -> glyfOff 0x0001205C
+	Idx 369 -> glyfOff 0x00012078
+	Idx 370 -> glyfOff 0x00012094
+	Idx 371 -> glyfOff 0x000120B0
+	Idx 372 -> glyfOff 0x0001221E
+	Idx 373 -> glyfOff 0x000124EE
+	Idx 374 -> glyfOff 0x0001275E
+	Idx 375 -> glyfOff 0x0001277A
+	Idx 376 -> glyfOff 0x00012794
+	Idx 377 -> glyfOff 0x000127B0
+	Idx 378 -> glyfOff 0x000127CC
+	Idx 379 -> glyfOff 0x000127E8
+	Idx 380 -> glyfOff 0x00012804
+	Idx 381 -> glyfOff 0x00012860
+	Idx 382 -> glyfOff 0x0001289A
+	Idx 383 -> glyfOff 0x00012904
+	Idx 384 -> glyfOff 0x000129CE
+	Idx 385 -> glyfOff 0x00012A6E
+	Idx 386 -> glyfOff 0x00012B44
+	Idx 387 -> glyfOff 0x00012BC4
+	Idx 388 -> glyfOff 0x00012C4C
+	Idx 389 -> glyfOff 0x00012CBC
+	Idx 390 -> glyfOff 0x00012D52
+	Idx 391 -> glyfOff 0x00012DB0
+	Idx 392 -> glyfOff 0x00012DF6
+	Idx 393 -> glyfOff 0x00012E54
+	Idx 394 -> glyfOff 0x00012EB6
+	Idx 395 -> glyfOff 0x00012F6E
+	Idx 396 -> glyfOff 0x0001302C
+	Idx 397 -> glyfOff 0x00013058
+	Idx 398 -> glyfOff 0x000130B4
+	Idx 399 -> glyfOff 0x000130F8
+	Idx 400 -> glyfOff 0x00013264
+	Idx 401 -> glyfOff 0x00013358
+	Idx 402 -> glyfOff 0x00013382
+	Idx 403 -> glyfOff 0x0001339E
+	Idx 404 -> glyfOff 0x000133CA
+	Idx 405 -> glyfOff 0x00013402
+	Idx 406 -> glyfOff 0x0001344E
+	Idx 407 -> glyfOff 0x0001348E
+	Idx 408 -> glyfOff 0x000134C2
+	Idx 409 -> glyfOff 0x000134F2
+	Idx 410 -> glyfOff 0x00013522
+	Idx 411 -> glyfOff 0x00013552
+	Idx 412 -> glyfOff 0x00013596
+	Idx 413 -> glyfOff 0x000135C6
+	Idx 414 -> glyfOff 0x000135F6
+	Idx 415 -> glyfOff 0x00013636
+	Idx 416 -> glyfOff 0x00013666
+	Idx 417 -> glyfOff 0x00013696
+	Idx 418 -> glyfOff 0x000136C6
+	Idx 419 -> glyfOff 0x00013706
+	Idx 420 -> glyfOff 0x00013736
+	Idx 421 -> glyfOff 0x00013766
+	Idx 422 -> glyfOff 0x00013796
+	Idx 423 -> glyfOff 0x000137C4
+	Idx 424 -> glyfOff 0x000139C8
+	Idx 425 -> glyfOff 0x000139F8
+	Idx 426 -> glyfOff 0x00013A28
+	Idx 427 -> glyfOff 0x00013B78
+	Idx 428 -> glyfOff 0x00013D2E
+	Idx 429 -> glyfOff 0x00013D5E
+	Idx 430 -> glyfOff 0x00013D8C
+	Idx 431 -> glyfOff 0x00013DBC
+	Idx 432 -> glyfOff 0x00013DEA
+	Idx 433 -> glyfOff 0x00013E1A
+	Idx 434 -> glyfOff 0x00013E48
+	Idx 435 -> glyfOff 0x00013F76
+	Idx 436 -> glyfOff 0x000140A4
+	Idx 437 -> glyfOff 0x000140D4
+	Idx 438 -> glyfOff 0x00014244
+	Idx 439 -> glyfOff 0x0001427C
+	Idx 440 -> glyfOff 0x000142AC
+	Idx 441 -> glyfOff 0x0001443E
+	Idx 442 -> glyfOff 0x0001446C
+	Idx 443 -> glyfOff 0x0001449A
+	Idx 444 -> glyfOff 0x000144C8
+	Idx 445 -> glyfOff 0x000144F0
+	Idx 446 -> glyfOff 0x0001464E
+	Idx 447 -> glyfOff 0x000147E6
+	Idx 448 -> glyfOff 0x0001481E
+	Idx 449 -> glyfOff 0x0001485E
+	Idx 450 -> glyfOff 0x0001489A
+	Idx 451 -> glyfOff 0x000148CA
+	Idx 452 -> glyfOff 0x000148F8
+	Idx 453 -> glyfOff 0x00014914
+	Idx 454 -> glyfOff 0x00014944
+	Idx 455 -> glyfOff 0x00014974
+	Idx 456 -> glyfOff 0x00014A64
+	Idx 457 -> glyfOff 0x00014BCC
+	Idx 458 -> glyfOff 0x00014BFC
+	Idx 459 -> glyfOff 0x00014C36
+	Idx 460 -> glyfOff 0x00014C76
+	Idx 461 -> glyfOff 0x00014CA6
+	Idx 462 -> glyfOff 0x00014CD6
+	Idx 463 -> glyfOff 0x00014D18
+	Idx 464 -> glyfOff 0x00014EB8
+	Idx 465 -> glyfOff 0x00015098
+	Idx 466 -> glyfOff 0x000150D8
+	Idx 467 -> glyfOff 0x00015118
+	Idx 468 -> glyfOff 0x00015148
+	Idx 469 -> glyfOff 0x00015188
+	Idx 470 -> glyfOff 0x00015272
+	Idx 471 -> glyfOff 0x000152F2
+	Idx 472 -> glyfOff 0x000153D6
+	Idx 473 -> glyfOff 0x00015406
+	Idx 474 -> glyfOff 0x00015436
+	Idx 475 -> glyfOff 0x00015466
+	Idx 476 -> glyfOff 0x00015496
+	Idx 477 -> glyfOff 0x000154D2
+	Idx 478 -> glyfOff 0x00015504
+	Idx 479 -> glyfOff 0x00015536
+	Idx 480 -> glyfOff 0x00015566
+	Idx 481 -> glyfOff 0x00015596
+	Idx 482 -> glyfOff 0x000155DC
+	Idx 483 -> glyfOff 0x0001560E
+	Idx 484 -> glyfOff 0x0001563E
+	Idx 485 -> glyfOff 0x00015674
+	Idx 486 -> glyfOff 0x000156E6
+	Idx 487 -> glyfOff 0x0001571A
+	Idx 488 -> glyfOff 0x000158E8
+	Idx 489 -> glyfOff 0x000159EA
+	Idx 490 -> glyfOff 0x00015B7A
+	Idx 491 -> glyfOff 0x00015DAA
+	Idx 492 -> glyfOff 0x00015FFA
+	Idx 493 -> glyfOff 0x0001618C
+	Idx 494 -> glyfOff 0x000161F0
+	Idx 495 -> glyfOff 0x0001627A
+	Idx 496 -> glyfOff 0x0001628A
+	Idx 497 -> glyfOff 0x00016318
+	Idx 498 -> glyfOff 0x00016516
+	Idx 499 -> glyfOff 0x00016642
+	Idx 500 -> glyfOff 0x000167AE
+	Idx 501 -> glyfOff 0x0001689E
+	Idx 502 -> glyfOff 0x00016A22
+	Idx 503 -> glyfOff 0x00016C3C
+	Idx 504 -> glyfOff 0x00016E68
+	Idx 505 -> glyfOff 0x00016F5A
+	Idx 506 -> glyfOff 0x00016F6A
+	Idx 507 -> glyfOff 0x00016F7A
+	Idx 508 -> glyfOff 0x00017092
+	Idx 509 -> glyfOff 0x000170A2
+	Idx 510 -> glyfOff 0x000170B2
+	Idx 511 -> glyfOff 0x000170C2
+	Idx 512 -> glyfOff 0x000170D2
+	Idx 513 -> glyfOff 0x000170E2
+	Idx 514 -> glyfOff 0x00017200
+	Idx 515 -> glyfOff 0x00017210
+	Idx 516 -> glyfOff 0x00017220
+	Idx 517 -> glyfOff 0x00017294
+	Idx 518 -> glyfOff 0x000172A4
+	Idx 519 -> glyfOff 0x00017374
+	Idx 520 -> glyfOff 0x00017384
+	Idx 521 -> glyfOff 0x00017496
+	Idx 522 -> glyfOff 0x000174A6
+	Idx 523 -> glyfOff 0x000174B6
+	Idx 524 -> glyfOff 0x000174C6
+	Idx 525 -> glyfOff 0x00017624
+	Idx 526 -> glyfOff 0x00017802
+	Idx 527 -> glyfOff 0x00017844
+	Idx 528 -> glyfOff 0x0001787A
+	Idx 529 -> glyfOff 0x000178B0
+	Idx 530 -> glyfOff 0x000178E0
+	Idx 531 -> glyfOff 0x00017910
+	Idx 532 -> glyfOff 0x00017964
+	Idx 533 -> glyfOff 0x0001798C
+	Idx 534 -> glyfOff 0x00017B16
+	Idx 535 -> glyfOff 0x00017C5E
+	Idx 536 -> glyfOff 0x00017DB2
+	Idx 537 -> glyfOff 0x00017F1A
+	Idx 538 -> glyfOff 0x0001809E
+	Idx 539 -> glyfOff 0x00018102
+	Idx 540 -> glyfOff 0x00018294
+	Idx 541 -> glyfOff 0x000183B0
+	Idx 542 -> glyfOff 0x000183C0
+	Idx 543 -> glyfOff 0x000183D0
+	Idx 544 -> glyfOff 0x00018556
+	Idx 545 -> glyfOff 0x00018566
+	Idx 546 -> glyfOff 0x000186CC
+	Idx 547 -> glyfOff 0x00018826
+	Idx 548 -> glyfOff 0x0001895A
+	Idx 549 -> glyfOff 0x00018AB8
+	Idx 550 -> glyfOff 0x00018C26
+	Idx 551 -> glyfOff 0x00018DEC
+	Idx 552 -> glyfOff 0x00018E2C
+	Idx 553 -> glyfOff 0x00018E64
+	Idx 554 -> glyfOff 0x00018E9A
+	Idx 555 -> glyfOff 0x00018EC0
+	Idx 556 -> glyfOff 0x00018EF0
+	Idx 557 -> glyfOff 0x00018F16
+	Idx 558 -> glyfOff 0x0001908C
+	Idx 559 -> glyfOff 0x000190BC
+	Idx 560 -> glyfOff 0x000191F2
+	Idx 561 -> glyfOff 0x00019202
+	Idx 562 -> glyfOff 0x00019212
+	Idx 563 -> glyfOff 0x00019254
+	Idx 564 -> glyfOff 0x00019264
+	Idx 565 -> glyfOff 0x000193F8
+	Idx 566 -> glyfOff 0x000195A4
+	Idx 567 -> glyfOff 0x0001972E
+	Idx 568 -> glyfOff 0x00019756
+	Idx 569 -> glyfOff 0x00019786
+	Idx 570 -> glyfOff 0x000198E2
+	Idx 571 -> glyfOff 0x000198F2
+	Idx 572 -> glyfOff 0x00019A2A
+	Idx 573 -> glyfOff 0x00019A3A
+	Idx 574 -> glyfOff 0x00019AD4
+	Idx 575 -> glyfOff 0x00019C34
+	Idx 576 -> glyfOff 0x00019C44
+	Idx 577 -> glyfOff 0x00019EAA
+	Idx 578 -> glyfOff 0x0001A034
+	Idx 579 -> glyfOff 0x0001A19C
+	Idx 580 -> glyfOff 0x0001A1CC
+	Idx 581 -> glyfOff 0x0001A342
+	Idx 582 -> glyfOff 0x0001A474
+	Idx 583 -> glyfOff 0x0001A484
+	Idx 584 -> glyfOff 0x0001A494
+	Idx 585 -> glyfOff 0x0001A4A4
+	Idx 586 -> glyfOff 0x0001A57E
+	Idx 587 -> glyfOff 0x0001A58E
+	Idx 588 -> glyfOff 0x0001A59E
+	Idx 589 -> glyfOff 0x0001A5AE
+	Idx 590 -> glyfOff 0x0001A6A6
+	Idx 591 -> glyfOff 0x0001A820
+	Idx 592 -> glyfOff 0x0001A830
+	Idx 593 -> glyfOff 0x0001A958
+	Idx 594 -> glyfOff 0x0001AA8C
+	Idx 595 -> glyfOff 0x0001ABDE
+	Idx 596 -> glyfOff 0x0001AD72
+	Idx 597 -> glyfOff 0x0001AE90
+	Idx 598 -> glyfOff 0x0001B01C
+	Idx 599 -> glyfOff 0x0001B12E
+	Idx 600 -> glyfOff 0x0001B164
+	Idx 601 -> glyfOff 0x0001B39A
+	Idx 602 -> glyfOff 0x0001B43A
+	Idx 603 -> glyfOff 0x0001B44A
+	Idx 604 -> glyfOff 0x0001B5E0
+	Idx 605 -> glyfOff 0x0001B782
+	Idx 606 -> glyfOff 0x0001B806
+	Idx 607 -> glyfOff 0x0001B988
+	Idx 608 -> glyfOff 0x0001B998
+	Idx 609 -> glyfOff 0x0001BC00
+	Idx 610 -> glyfOff 0x0001BD80
+	Idx 611 -> glyfOff 0x0001BF00
+	Idx 612 -> glyfOff 0x0001BF30
+	Idx 613 -> glyfOff 0x0001C0D0
+	Idx 614 -> glyfOff 0x0001C256
+	Idx 615 -> glyfOff 0x0001C41A
+	Idx 616 -> glyfOff 0x0001C546
+	Idx 617 -> glyfOff 0x0001C556
+	Idx 618 -> glyfOff 0x0001C686
+	Idx 619 -> glyfOff 0x0001C696
+	Idx 620 -> glyfOff 0x0001C6A6
+	Idx 621 -> glyfOff 0x0001C766
+	Idx 622 -> glyfOff 0x0001C776
+	Idx 623 -> glyfOff 0x0001C95C
+	Idx 624 -> glyfOff 0x0001C96C
+	Idx 625 -> glyfOff 0x0001CAA2
+	Idx 626 -> glyfOff 0x0001CBB0
+	Idx 627 -> glyfOff 0x0001CD5C
+	Idx 628 -> glyfOff 0x0001CF12
+	Idx 629 -> glyfOff 0x0001D054
+	Idx 630 -> glyfOff 0x0001D1C4
+	Idx 631 -> glyfOff 0x0001D30C
+	Idx 632 -> glyfOff 0x0001D35E
+	Idx 633 -> glyfOff 0x0001D540
+	Idx 634 -> glyfOff 0x0001D6BC
+	Idx 635 -> glyfOff 0x0001D6FA
+	Idx 636 -> glyfOff 0x0001D8A0
+	Idx 637 -> glyfOff 0x0001D8C4
+	Idx 638 -> glyfOff 0x0001DA04
+	Idx 639 -> glyfOff 0x0001DA14
+	Idx 640 -> glyfOff 0x0001DA24
+	Idx 641 -> glyfOff 0x0001DA5C
+	Idx 642 -> glyfOff 0x0001DA6C
+	Idx 643 -> glyfOff 0x0001DBF8
+	Idx 644 -> glyfOff 0x0001DD66
+	Idx 645 -> glyfOff 0x0001DEDA
+	Idx 646 -> glyfOff 0x0001DEFE
+	Idx 647 -> glyfOff 0x0001DF2E
+	Idx 648 -> glyfOff 0x0001E09C
+	Idx 649 -> glyfOff 0x0001E14E
+	Idx 650 -> glyfOff 0x0001E20C
+	Idx 651 -> glyfOff 0x0001E23A
+	Idx 652 -> glyfOff 0x0001E3F0
+	Idx 653 -> glyfOff 0x0001E4E8
+	Idx 654 -> glyfOff 0x0001E576
+	Idx 655 -> glyfOff 0x0001E6A2
+	Idx 656 -> glyfOff 0x0001E756
+	Idx 657 -> glyfOff 0x0001E830
+	Idx 658 -> glyfOff 0x0001E87A
+	Idx 659 -> glyfOff 0x0001E8F8
+	Idx 660 -> glyfOff 0x0001E9BE
+	Idx 661 -> glyfOff 0x0001E9E6
+	Idx 662 -> glyfOff 0x0001EA30
+	Idx 663 -> glyfOff 0x0001EA86
+	Idx 664 -> glyfOff 0x0001EB72
+	Idx 665 -> glyfOff 0x0001EBBC
+	Idx 666 -> glyfOff 0x0001EBF0
+	Idx 667 -> glyfOff 0x0001EC18
+	Idx 668 -> glyfOff 0x0001EC40
+	Idx 669 -> glyfOff 0x0001EC74
+	Idx 670 -> glyfOff 0x0001ECB8
+	Idx 671 -> glyfOff 0x0001ECFC
+	Idx 672 -> glyfOff 0x0001ED3A
+	Idx 673 -> glyfOff 0x0001EE78
+	Idx 674 -> glyfOff 0x0001EF30
+	Idx 675 -> glyfOff 0x0001F050
+	Idx 676 -> glyfOff 0x0001F0C6
+	Idx 677 -> glyfOff 0x0001F194
+	Idx 678 -> glyfOff 0x0001F1E6
+	Idx 679 -> glyfOff 0x0001F278
+	Idx 680 -> glyfOff 0x0001F328
+	Idx 681 -> glyfOff 0x0001F41C
+	Idx 682 -> glyfOff 0x0001F470
+	Idx 683 -> glyfOff 0x0001F506
+	Idx 684 -> glyfOff 0x0001F5C4
+	Idx 685 -> glyfOff 0x0001F6AE
+	Idx 686 -> glyfOff 0x0001F760
+	Idx 687 -> glyfOff 0x0001F880
+	Idx 688 -> glyfOff 0x0001F8D2
+	Idx 689 -> glyfOff 0x0001F97C
+	Idx 690 -> glyfOff 0x0001FAB2
+	Idx 691 -> glyfOff 0x0001FB8A
+	Idx 692 -> glyfOff 0x0001FC70
+	Idx 693 -> glyfOff 0x0001FD76
+	Idx 694 -> glyfOff 0x0001FE5C
+	Idx 695 -> glyfOff 0x0001FF3E
+	Idx 696 -> glyfOff 0x00020032
+	Idx 697 -> glyfOff 0x000200D0
+	Idx 698 -> glyfOff 0x000201D6
+	Idx 699 -> glyfOff 0x000202D0
+	Idx 700 -> glyfOff 0x00020348
+	Idx 701 -> glyfOff 0x000203C0
+	Idx 702 -> glyfOff 0x00020436
+	Idx 703 -> glyfOff 0x0002046C
+	Idx 704 -> glyfOff 0x000204C8
+	Idx 705 -> glyfOff 0x00020590
+	Idx 706 -> glyfOff 0x0002061C
+	Idx 707 -> glyfOff 0x00020654
+	Idx 708 -> glyfOff 0x0002069A
+	Idx 709 -> glyfOff 0x000206CA
+	Idx 710 -> glyfOff 0x00020734
+	Idx 711 -> glyfOff 0x000207F4
+	Idx 712 -> glyfOff 0x00020828
+	Idx 713 -> glyfOff 0x00020858
+	Idx 714 -> glyfOff 0x0002088C
+	Idx 715 -> glyfOff 0x000208BC
+	Idx 716 -> glyfOff 0x000208EC
+	Idx 717 -> glyfOff 0x0002091C
+	Idx 718 -> glyfOff 0x00020ABC
+	Idx 719 -> glyfOff 0x00020AF4
+	Idx 720 -> glyfOff 0x00020B34
+	Idx 721 -> glyfOff 0x00020B6C
+	Idx 722 -> glyfOff 0x00020BA4
+	Idx 723 -> glyfOff 0x00020C40
+	Idx 724 -> glyfOff 0x00020D3A
+	Idx 725 -> glyfOff 0x00020D6A
+	Idx 726 -> glyfOff 0x00020E0E
+	Idx 727 -> glyfOff 0x00020E3C
+	Idx 728 -> glyfOff 0x00020E7C
+	Idx 729 -> glyfOff 0x00020ECC
+	Idx 730 -> glyfOff 0x00020EFC
+	Idx 731 -> glyfOff 0x00020F48
+	Idx 732 -> glyfOff 0x000210E0
+	Idx 733 -> glyfOff 0x00021246
+	Idx 734 -> glyfOff 0x000213A6
+	Idx 735 -> glyfOff 0x000213EC
+	Idx 736 -> glyfOff 0x00021440
+	Idx 737 -> glyfOff 0x00021478
+	Idx 738 -> glyfOff 0x000215EA
+	Idx 739 -> glyfOff 0x00021620
+	Idx 740 -> glyfOff 0x000216B2
+	Idx 741 -> glyfOff 0x000216F0
+	Idx 742 -> glyfOff 0x0002171E
+	Idx 743 -> glyfOff 0x0002175C
+	Idx 744 -> glyfOff 0x0002188C
+	Idx 745 -> glyfOff 0x000218B4
+	Idx 746 -> glyfOff 0x000219F0
+	Idx 747 -> glyfOff 0x00021A80
+	Idx 748 -> glyfOff 0x00021B2A
+	Idx 749 -> glyfOff 0x00021BAC
+	Idx 750 -> glyfOff 0x00021C68
+	Idx 751 -> glyfOff 0x00021D80
+	Idx 752 -> glyfOff 0x00021E8E
+	Idx 753 -> glyfOff 0x00021EC2
+	Idx 754 -> glyfOff 0x00021F48
+	Idx 755 -> glyfOff 0x000220A4
+	Idx 756 -> glyfOff 0x00022126
+	Idx 757 -> glyfOff 0x00022170
+	Idx 758 -> glyfOff 0x0002227A
+	Idx 759 -> glyfOff 0x000222C2
+	Idx 760 -> glyfOff 0x000223C6
+	Idx 761 -> glyfOff 0x00022442
+	Idx 762 -> glyfOff 0x0002249A
+	Idx 763 -> glyfOff 0x0002251E
+	Idx 764 -> glyfOff 0x00022608
+	Idx 765 -> glyfOff 0x0002271E
+	Idx 766 -> glyfOff 0x0002281A
+	Idx 767 -> glyfOff 0x000228C4
+	Idx 768 -> glyfOff 0x000229B4
+	Idx 769 -> glyfOff 0x00022A86
+	Idx 770 -> glyfOff 0x00022B70
+	Idx 771 -> glyfOff 0x00022C58
+	Idx 772 -> glyfOff 0x00022D08
+	Idx 773 -> glyfOff 0x00022D8A
+	Idx 774 -> glyfOff 0x00022FE8
+	Idx 775 -> glyfOff 0x00023012
+	Idx 776 -> glyfOff 0x0002303C
+	Idx 777 -> glyfOff 0x000230F4
+	Idx 778 -> glyfOff 0x0002311E
+	Idx 779 -> glyfOff 0x00023260
+	Idx 780 -> glyfOff 0x00023366
+	Idx 781 -> glyfOff 0x00023450
+	Idx 782 -> glyfOff 0x0002347A
+	Idx 783 -> glyfOff 0x000234A4
+	Idx 784 -> glyfOff 0x000234CE
+	Idx 785 -> glyfOff 0x000234F8
+	Idx 786 -> glyfOff 0x00023522
+	Idx 787 -> glyfOff 0x000236A2
+	Idx 788 -> glyfOff 0x000236CC
+	Idx 789 -> glyfOff 0x000236F6
+	Idx 790 -> glyfOff 0x00023720
+	Idx 791 -> glyfOff 0x0002374A
+	Idx 792 -> glyfOff 0x00023774
+	Idx 793 -> glyfOff 0x0002379E
+	Idx 794 -> glyfOff 0x000237C8
+	Idx 795 -> glyfOff 0x000237F2
+	Idx 796 -> glyfOff 0x00023826
+	Idx 797 -> glyfOff 0x00023850
+	Idx 798 -> glyfOff 0x0002387A
+	Idx 799 -> glyfOff 0x000238A4
+	Idx 800 -> glyfOff 0x00023A1E
+	Idx 801 -> glyfOff 0x00023A2E
+	Idx 802 -> glyfOff 0x00023B50
+	Idx 803 -> glyfOff 0x00023B60
+	Idx 804 -> glyfOff 0x00023B8A
+	Idx 805 -> glyfOff 0x00023BB4
+	Idx 806 -> glyfOff 0x00023BDE
+	Idx 807 -> glyfOff 0x00023C08
+	Idx 808 -> glyfOff 0x00023DB2
+	Idx 809 -> glyfOff 0x00023FCE
+	Idx 810 -> glyfOff 0x000240FC
+	Idx 811 -> glyfOff 0x0002410C
+	Idx 812 -> glyfOff 0x00024288
+	Idx 813 -> glyfOff 0x00024298
+	Idx 814 -> glyfOff 0x000243DE
+	Idx 815 -> glyfOff 0x000245AA
+	Idx 816 -> glyfOff 0x000246B0
+	Idx 817 -> glyfOff 0x00024830
+	Idx 818 -> glyfOff 0x000249D0
+	Idx 819 -> glyfOff 0x00024BF4
+	Idx 820 -> glyfOff 0x00024D4E
+	Idx 821 -> glyfOff 0x00024F30
+	Idx 822 -> glyfOff 0x00025074
+	Idx 823 -> glyfOff 0x000251A2
+	Idx 824 -> glyfOff 0x000251CC
+	Idx 825 -> glyfOff 0x000251F6
+	Idx 826 -> glyfOff 0x00025220
+	Idx 827 -> glyfOff 0x0002524A
+	Idx 828 -> glyfOff 0x00025274
+	Idx 829 -> glyfOff 0x0002529E
+	Idx 830 -> glyfOff 0x000252C8
+	Idx 831 -> glyfOff 0x000252F2
+	Idx 832 -> glyfOff 0x0002531C
+	Idx 833 -> glyfOff 0x00025346
+	Idx 834 -> glyfOff 0x00025370
+	Idx 835 -> glyfOff 0x0002539A
+	Idx 836 -> glyfOff 0x000253C4
+	Idx 837 -> glyfOff 0x000253EE
+	Idx 838 -> glyfOff 0x00025418
+	Idx 839 -> glyfOff 0x00025442
+	Idx 840 -> glyfOff 0x0002567E
+	Idx 841 -> glyfOff 0x000257FA
+	Idx 842 -> glyfOff 0x0002593E
+	Idx 843 -> glyfOff 0x00025B26
+	Idx 844 -> glyfOff 0x00025C6E
+	Idx 845 -> glyfOff 0x00025C98
+	Idx 846 -> glyfOff 0x00025CC2
+	Idx 847 -> glyfOff 0x00025CF2
+	Idx 848 -> glyfOff 0x00025D22
+	Idx 849 -> glyfOff 0x00025D72
+	Idx 850 -> glyfOff 0x00025DC2
+	Idx 851 -> glyfOff 0x00025E02
+	Idx 852 -> glyfOff 0x00025E74
+	Idx 853 -> glyfOff 0x00025EC8
+	Idx 854 -> glyfOff 0x00025F26
+	Idx 855 -> glyfOff 0x00025F7C
+	Idx 856 -> glyfOff 0x00025FB2
+	Idx 857 -> glyfOff 0x00025FF4
+	Idx 858 -> glyfOff 0x0002603A
+	Idx 859 -> glyfOff 0x00026084
+	Idx 860 -> glyfOff 0x000260B4
+	Idx 861 -> glyfOff 0x000260EC
+	Idx 862 -> glyfOff 0x0002611C
+	Idx 863 -> glyfOff 0x00026254
+	Idx 864 -> glyfOff 0x0002659A
+	Idx 865 -> glyfOff 0x000265C4
+	Idx 866 -> glyfOff 0x000265EE
+	Idx 867 -> glyfOff 0x00026618
+	Idx 868 -> glyfOff 0x00026642
+	Idx 869 -> glyfOff 0x0002666C
+	Idx 870 -> glyfOff 0x00026696
+	Idx 871 -> glyfOff 0x000266C0
+	Idx 872 -> glyfOff 0x000266EA
+	Idx 873 -> glyfOff 0x00026714
+	Idx 874 -> glyfOff 0x0002673E
+	Idx 875 -> glyfOff 0x00026768
+	Idx 876 -> glyfOff 0x00026792
+	Idx 877 -> glyfOff 0x000267BC
+	Idx 878 -> glyfOff 0x000267E6
+	Idx 879 -> glyfOff 0x00026810
+	Idx 880 -> glyfOff 0x0002683A
+	Idx 881 -> glyfOff 0x00026864
+	Idx 882 -> glyfOff 0x0002688E
+	Idx 883 -> glyfOff 0x000268B8
+	Idx 884 -> glyfOff 0x000268E2
+	Idx 885 -> glyfOff 0x0002690C
+	Idx 886 -> glyfOff 0x00026936
+	Idx 887 -> glyfOff 0x00026960
+	Idx 888 -> glyfOff 0x0002698A
+	Idx 889 -> glyfOff 0x000269B4
+	Idx 890 -> glyfOff 0x000269DE
+	Idx 891 -> glyfOff 0x00026A08
+	Idx 892 -> glyfOff 0x00026A32
+	Idx 893 -> glyfOff 0x00026AD0
+	Idx 894 -> glyfOff 0x00026AE6
+	Idx 895 -> glyfOff 0x00026B10
+	Idx 896 -> glyfOff 0x00026DF0
+	Idx 897 -> glyfOff 0x00026E00
+	Idx 898 -> glyfOff 0x00026F1A
+	Idx 899 -> glyfOff 0x0002703C
+	Idx 900 -> glyfOff 0x0002717A
+	Idx 901 -> glyfOff 0x000272BC
+	Idx 902 -> glyfOff 0x00027462
+	Idx 903 -> glyfOff 0x00027472
+	Idx 904 -> glyfOff 0x000275B4
+	Idx 905 -> glyfOff 0x00027704
+	Idx 906 -> glyfOff 0x000278F4
+	Idx 907 -> glyfOff 0x00027AC8
+	Idx 908 -> glyfOff 0x00027BE0
+	Idx 909 -> glyfOff 0x00027BF0
+	Idx 910 -> glyfOff 0x00027C72
+	Idx 911 -> glyfOff 0x00027D00
+	Idx 912 -> glyfOff 0x00027E00
+	Idx 913 -> glyfOff 0x00027E10
+	Idx 914 -> glyfOff 0x00027EB0
+	Idx 915 -> glyfOff 0x00027EC0
+	Idx 916 -> glyfOff 0x00027FD6
+	Idx 917 -> glyfOff 0x00028128
+	Idx 918 -> glyfOff 0x00028258
+	Idx 919 -> glyfOff 0x00028268
+	Idx 920 -> glyfOff 0x00028336
+	Idx 921 -> glyfOff 0x00028346
+	Idx 922 -> glyfOff 0x000284BC
+	Idx 923 -> glyfOff 0x000284CC
+	Idx 924 -> glyfOff 0x000285E0
+	Idx 925 -> glyfOff 0x000285F0
+	Idx 926 -> glyfOff 0x00028724
+	Idx 927 -> glyfOff 0x000288BA
+	Idx 928 -> glyfOff 0x00028976
+	Idx 929 -> glyfOff 0x00028986
+	Idx 930 -> glyfOff 0x00028A84
+	Idx 931 -> glyfOff 0x00028BDE
+	Idx 932 -> glyfOff 0x00028C6A
+	Idx 933 -> glyfOff 0x00028C7A
+	Idx 934 -> glyfOff 0x00028DA4
+	Idx 935 -> glyfOff 0x00028F30
+	Idx 936 -> glyfOff 0x00028FEC
+	Idx 937 -> glyfOff 0x00028FFC
+	Idx 938 -> glyfOff 0x00029094
+	Idx 939 -> glyfOff 0x000290A4
+	Idx 940 -> glyfOff 0x00029170
+	Idx 941 -> glyfOff 0x00029180
+	Idx 942 -> glyfOff 0x00029258
+	Idx 943 -> glyfOff 0x00029268
+	Idx 944 -> glyfOff 0x00029370
+	Idx 945 -> glyfOff 0x00029380
+	Idx 946 -> glyfOff 0x00029546
+	Idx 947 -> glyfOff 0x00029556
+	Idx 948 -> glyfOff 0x000296AE
+	Idx 949 -> glyfOff 0x000296BE
+	Idx 950 -> glyfOff 0x00029928
+	Idx 951 -> glyfOff 0x00029938
+	Idx 952 -> glyfOff 0x00029B32
+	Idx 953 -> glyfOff 0x00029B42
+	Idx 954 -> glyfOff 0x00029CAC
+	Idx 955 -> glyfOff 0x00029CBC
+	Idx 956 -> glyfOff 0x00029DAC
+	Idx 957 -> glyfOff 0x00029DBC
+	Idx 958 -> glyfOff 0x00029F54
+	Idx 959 -> glyfOff 0x00029F64
+	Idx 960 -> glyfOff 0x0002A082
+	Idx 961 -> glyfOff 0x0002A092
+	Idx 962 -> glyfOff 0x0002A1D2
+	Idx 963 -> glyfOff 0x0002A1E2
+	Idx 964 -> glyfOff 0x0002A1F2
+	Idx 965 -> glyfOff 0x0002A202
+	Idx 966 -> glyfOff 0x0002A37A
+	Idx 967 -> glyfOff 0x0002A38A
+	Idx 968 -> glyfOff 0x0002A39A
+	Idx 969 -> glyfOff 0x0002A3AA
+	Idx 970 -> glyfOff 0x0002A4FC
+	Idx 971 -> glyfOff 0x0002A64A
+	Idx 972 -> glyfOff 0x0002A718
+	Idx 973 -> glyfOff 0x0002A7FC
+	Idx 974 -> glyfOff 0x0002A97C
+	Idx 975 -> glyfOff 0x0002AAFE
+	Idx 976 -> glyfOff 0x0002ABFE
+	Idx 977 -> glyfOff 0x0002AD12
+	Idx 978 -> glyfOff 0x0002AE56
+	Idx 979 -> glyfOff 0x0002AE66
+	Idx 980 -> glyfOff 0x0002AF54
+	Idx 981 -> glyfOff 0x0002B02E
+	Idx 982 -> glyfOff 0x0002B1CA
+	Idx 983 -> glyfOff 0x0002B1DA
+	Idx 984 -> glyfOff 0x0002B2F8
+	Idx 985 -> glyfOff 0x0002B3FE
+	Idx 986 -> glyfOff 0x0002B606
+	Idx 987 -> glyfOff 0x0002B616
+	Idx 988 -> glyfOff 0x0002B626
+	Idx 989 -> glyfOff 0x0002B636
+	Idx 990 -> glyfOff 0x0002B780
+	Idx 991 -> glyfOff 0x0002B790
+	Idx 992 -> glyfOff 0x0002B848
+	Idx 993 -> glyfOff 0x0002B858
+	Idx 994 -> glyfOff 0x0002B966
+	Idx 995 -> glyfOff 0x0002B976
+	Idx 996 -> glyfOff 0x0002BA62
+	Idx 997 -> glyfOff 0x0002BA72
+	Idx 998 -> glyfOff 0x0002BB90
+	Idx 999 -> glyfOff 0x0002BBA0
+	Idx 1000 -> glyfOff 0x0002BC3E
+	Idx 1001 -> glyfOff 0x0002BC4E
+	Idx 1002 -> glyfOff 0x0002BC5E
+	Idx 1003 -> glyfOff 0x0002BD4C
+	Idx 1004 -> glyfOff 0x0002BEC0
+	Idx 1005 -> glyfOff 0x0002BFEC
+	Idx 1006 -> glyfOff 0x0002C0E6
+	Idx 1007 -> glyfOff 0x0002C0F6
+	Idx 1008 -> glyfOff 0x0002C106
+	Idx 1009 -> glyfOff 0x0002C116
+	Idx 1010 -> glyfOff 0x0002C2B4
+	Idx 1011 -> glyfOff 0x0002C46E
+	Idx 1012 -> glyfOff 0x0002C53C
+	Idx 1013 -> glyfOff 0x0002C54C
+	Idx 1014 -> glyfOff 0x0002C7AC
+	Idx 1015 -> glyfOff 0x0002C9F6
+	Idx 1016 -> glyfOff 0x0002CC7C
+	Idx 1017 -> glyfOff 0x0002CEE4
+	Idx 1018 -> glyfOff 0x0002D168
+	Idx 1019 -> glyfOff 0x0002D3DE
+	Idx 1020 -> glyfOff 0x0002D5AE
+	Idx 1021 -> glyfOff 0x0002D768
+	Idx 1022 -> glyfOff 0x0002D792
+	Idx 1023 -> glyfOff 0x0002D7BC
+	Idx 1024 -> glyfOff 0x0002D7CC
+	Idx 1025 -> glyfOff 0x0002D7DC
+	Idx 1026 -> glyfOff 0x0002D806
+	Idx 1027 -> glyfOff 0x0002D830
+	Idx 1028 -> glyfOff 0x0002D85A
+	Idx 1029 -> glyfOff 0x0002D86A
+	Idx 1030 -> glyfOff 0x0002D87A
+	Idx 1031 -> glyfOff 0x0002D8A4
+	Idx 1032 -> glyfOff 0x0002D8CE
+	Idx 1033 -> glyfOff 0x0002D8DE
+	Idx 1034 -> glyfOff 0x0002D8EE
+	Idx 1035 -> glyfOff 0x0002D918
+	Idx 1036 -> glyfOff 0x0002D942
+	Idx 1037 -> glyfOff 0x0002D96C
+	Idx 1038 -> glyfOff 0x0002D97C
+	Idx 1039 -> glyfOff 0x0002D98C
+	Idx 1040 -> glyfOff 0x0002D99C
+	Idx 1041 -> glyfOff 0x0002D9AC
+	Idx 1042 -> glyfOff 0x0002D9BC
+	Idx 1043 -> glyfOff 0x0002D9CC
+	Idx 1044 -> glyfOff 0x0002D9F6
+	Idx 1045 -> glyfOff 0x0002DA06
+	Idx 1046 -> glyfOff 0x0002DA16
+	Idx 1047 -> glyfOff 0x0002DA40
+	Idx 1048 -> glyfOff 0x0002DA6A
+	Idx 1049 -> glyfOff 0x0002DA94
+	Idx 1050 -> glyfOff 0x0002DABE
+	Idx 1051 -> glyfOff 0x0002DAE8
+	Idx 1052 -> glyfOff 0x0002DB12
+	Idx 1053 -> glyfOff 0x0002DB3C
+	Idx 1054 -> glyfOff 0x0002DB66
+	Idx 1055 -> glyfOff 0x0002DB90
+	Idx 1056 -> glyfOff 0x0002DBBA
+	Idx 1057 -> glyfOff 0x0002DBE4
+	Idx 1058 -> glyfOff 0x0002DC0E
+	Idx 1059 -> glyfOff 0x0002DC38
+	Idx 1060 -> glyfOff 0x0002DC62
+	Idx 1061 -> glyfOff 0x0002DC8C
+	Idx 1062 -> glyfOff 0x0002DCB6
+	Idx 1063 -> glyfOff 0x0002DCE0
+	Idx 1064 -> glyfOff 0x0002DD0A
+	Idx 1065 -> glyfOff 0x0002DD34
+	Idx 1066 -> glyfOff 0x0002DD5E
+	Idx 1067 -> glyfOff 0x0002DD88
+	Idx 1068 -> glyfOff 0x0002DDB2
+	Idx 1069 -> glyfOff 0x0002DDDC
+	Idx 1070 -> glyfOff 0x0002DE06
+	Idx 1071 -> glyfOff 0x0002DE30
+	Idx 1072 -> glyfOff 0x0002DE5A
+	Idx 1073 -> glyfOff 0x0002DE84
+	Idx 1074 -> glyfOff 0x0002DEAE
+	Idx 1075 -> glyfOff 0x0002DED8
+	Idx 1076 -> glyfOff 0x0002DF02
+	Idx 1077 -> glyfOff 0x0002DF2C
+	Idx 1078 -> glyfOff 0x0002DF56
+	Idx 1079 -> glyfOff 0x0002DF80
+	Idx 1080 -> glyfOff 0x0002DFAA
+	Idx 1081 -> glyfOff 0x0002DFD4
+	Idx 1082 -> glyfOff 0x0002DFFE
+	Idx 1083 -> glyfOff 0x0002E028
+	Idx 1084 -> glyfOff 0x0002E052
+	Idx 1085 -> glyfOff 0x0002E07C
+	Idx 1086 -> glyfOff 0x0002E0A6
+	Idx 1087 -> glyfOff 0x0002E0D0
+	Idx 1088 -> glyfOff 0x0002E0FA
+	Idx 1089 -> glyfOff 0x0002E124
+	Idx 1090 -> glyfOff 0x0002E14E
+	Idx 1091 -> glyfOff 0x0002E178
+	Idx 1092 -> glyfOff 0x0002E1A2
+	Idx 1093 -> glyfOff 0x0002E1CC
+	Idx 1094 -> glyfOff 0x0002E1F6
+	Idx 1095 -> glyfOff 0x0002E220
+	Idx 1096 -> glyfOff 0x0002E24A
+	Idx 1097 -> glyfOff 0x0002E274
+	Idx 1098 -> glyfOff 0x0002E29E
+	Idx 1099 -> glyfOff 0x0002E2C8
+	Idx 1100 -> glyfOff 0x0002E2F2
+	Idx 1101 -> glyfOff 0x0002E392
+	Idx 1102 -> glyfOff 0x0002E3D6
+	Idx 1103 -> glyfOff 0x0002E44C
+	Idx 1104 -> glyfOff 0x0002E476
+	Idx 1105 -> glyfOff 0x0002E4A0
+	Idx 1106 -> glyfOff 0x0002E4CA
+	Idx 1107 -> glyfOff 0x0002E4F4
+	Idx 1108 -> glyfOff 0x0002E51E
+	Idx 1109 -> glyfOff 0x0002E548
+	Idx 1110 -> glyfOff 0x0002E572
+	Idx 1111 -> glyfOff 0x0002E59C
+	Idx 1112 -> glyfOff 0x0002E5C6
+	Idx 1113 -> glyfOff 0x0002E5F0
+	Idx 1114 -> glyfOff 0x0002E61A
+	Idx 1115 -> glyfOff 0x0002E644
+	Idx 1116 -> glyfOff 0x0002E66E
+	Idx 1117 -> glyfOff 0x0002E698
+	Idx 1118 -> glyfOff 0x0002E6C2
+	Idx 1119 -> glyfOff 0x0002E6EC
+	Idx 1120 -> glyfOff 0x0002E716
+	Idx 1121 -> glyfOff 0x0002E740
+	Idx 1122 -> glyfOff 0x0002E76A
+	Idx 1123 -> glyfOff 0x0002E794
+	Idx 1124 -> glyfOff 0x0002E7BE
+	Idx 1125 -> glyfOff 0x0002E7E8
+	Idx 1126 -> glyfOff 0x0002E812
+	Idx 1127 -> glyfOff 0x0002E83C
+	Idx 1128 -> glyfOff 0x0002E870
+	Idx 1129 -> glyfOff 0x0002E8A4
+	Idx 1130 -> glyfOff 0x0002E8D8
+	Idx 1131 -> glyfOff 0x0002EA6A
+	Idx 1132 -> glyfOff 0x0002EC06
+	Idx 1133 -> glyfOff 0x0002EDA2
+	Idx 1134 -> glyfOff 0x0002EF2E
+	Idx 1135 -> glyfOff 0x0002EF74
+	Idx 1136 -> glyfOff 0x0002EFBA
+	Idx 1137 -> glyfOff 0x0002F028
+	Idx 1138 -> glyfOff 0x0002F084
+	Idx 1139 -> glyfOff 0x0002F0D6
+	Idx 1140 -> glyfOff 0x0002F146
+	Idx 1141 -> glyfOff 0x0002F21E
+	Idx 1142 -> glyfOff 0x0002F2EA
+	Idx 1143 -> glyfOff 0x0002F3C2
+	Idx 1144 -> glyfOff 0x0002F48E
+	Idx 1145 -> glyfOff 0x0002F52E
+	Idx 1146 -> glyfOff 0x0002F648
+	Idx 1147 -> glyfOff 0x0002F6FC
+	Idx 1148 -> glyfOff 0x0002F77E
+	Idx 1149 -> glyfOff 0x0002F7D8
+	Idx 1150 -> glyfOff 0x0002F818
+	Idx 1151 -> glyfOff 0x0002F936
+	Idx 1152 -> glyfOff 0x0002FA80
+	Idx 1153 -> glyfOff 0x0002FC18
+	Idx 1154 -> glyfOff 0x0002FC74
+	Idx 1155 -> glyfOff 0x0002FCD2
+	Idx 1156 -> glyfOff 0x0002FD2E
+	Idx 1157 -> glyfOff 0x0002FD8A
+	Idx 1158 -> glyfOff 0x0002FE3E
+	Idx 1159 -> glyfOff 0x0002FEF4
+	Idx 1160 -> glyfOff 0x0002FFA0
+	Idx 1161 -> glyfOff 0x0003004C
+	Idx 1162 -> glyfOff 0x000300F8
+	Idx 1163 -> glyfOff 0x000301B0
+	Idx 1164 -> glyfOff 0x00030268
+	Idx 1165 -> glyfOff 0x00030320
+	Idx 1166 -> glyfOff 0x00030332
+	Idx 1167 -> glyfOff 0x00030344
+	Idx 1168 -> glyfOff 0x00030356
+	Idx 1169 -> glyfOff 0x00030368
+	Idx 1170 -> glyfOff 0x0003037A
+	Idx 1171 -> glyfOff 0x000303E8
+	Idx 1172 -> glyfOff 0x00030456
+	Idx 1173 -> glyfOff 0x0003050E
+	Idx 1174 -> glyfOff 0x00030520
+	Idx 1175 -> glyfOff 0x00030532
+	Idx 1176 -> glyfOff 0x00030544
+	Idx 1177 -> glyfOff 0x00030554
+	Idx 1178 -> glyfOff 0x00030566
+	Idx 1179 -> glyfOff 0x00030578
+	Idx 1180 -> glyfOff 0x0003058A
+	Idx 1181 -> glyfOff 0x0003059C
+	Idx 1182 -> glyfOff 0x000305AE
+	Idx 1183 -> glyfOff 0x000305C0
+	Idx 1184 -> glyfOff 0x0003066E
+	Idx 1185 -> glyfOff 0x0003071A
+	Idx 1186 -> glyfOff 0x000307C8
+	Idx 1187 -> glyfOff 0x00030874
+	Idx 1188 -> glyfOff 0x0003090C
+	Idx 1189 -> glyfOff 0x00030946
+	Idx 1190 -> glyfOff 0x00030970
+	Idx 1191 -> glyfOff 0x0003099A
+	Idx 1192 -> glyfOff 0x000309EE
+	Idx 1193 -> glyfOff 0x00030A40
+	Idx 1194 -> glyfOff 0x00030ABC
+	Idx 1195 -> glyfOff 0x00030B06
+	Idx 1196 -> glyfOff 0x00030B82
+	Idx 1197 -> glyfOff 0x00030BD6
+	Idx 1198 -> glyfOff 0x00030C5A
+	Idx 1199 -> glyfOff 0x00030CAC
+	Idx 1200 -> glyfOff 0x00030D22
+	Idx 1201 -> glyfOff 0x00030D7A
+	Idx 1202 -> glyfOff 0x00030DE0
+	Idx 1203 -> glyfOff 0x00030E36
+	Idx 1204 -> glyfOff 0x00030E90
+	Idx 1205 -> glyfOff 0x00030F0E
+	Idx 1206 -> glyfOff 0x00030F5A
+	Idx 1207 -> glyfOff 0x00030FB8
+	Idx 1208 -> glyfOff 0x0003101C
+	Idx 1209 -> glyfOff 0x0003106A
+	Idx 1210 -> glyfOff 0x000310B8
+	Idx 1211 -> glyfOff 0x00031110
+	Idx 1212 -> glyfOff 0x00031158
+	Idx 1213 -> glyfOff 0x00031182
+	Idx 1214 -> glyfOff 0x000311B0
+	Idx 1215 -> glyfOff 0x000311D6
+	Idx 1216 -> glyfOff 0x0003120A
+	Idx 1217 -> glyfOff 0x0003123A
+	Idx 1218 -> glyfOff 0x0003126A
+	Idx 1219 -> glyfOff 0x000312BC
+	Idx 1220 -> glyfOff 0x0003132A
+	Idx 1221 -> glyfOff 0x00031380
+	Idx 1222 -> glyfOff 0x000313F4
+	Idx 1223 -> glyfOff 0x00031448
+	Idx 1224 -> glyfOff 0x000314BC
+	Idx 1225 -> glyfOff 0x00031502
+	Idx 1226 -> glyfOff 0x0003156A
+	Idx 1227 -> glyfOff 0x000315B0
+	Idx 1228 -> glyfOff 0x0003160C
+	Idx 1229 -> glyfOff 0x0003163C
+	Idx 1230 -> glyfOff 0x00031676
+	Idx 1231 -> glyfOff 0x0003169C
+	Idx 1232 -> glyfOff 0x000316CC
+	Idx 1233 -> glyfOff 0x000316F2
+	Idx 1234 -> glyfOff 0x00031718
+	Idx 1235 -> glyfOff 0x0003174A
+	Idx 1236 -> glyfOff 0x0003177A
+	Idx 1237 -> glyfOff 0x000317CC
+	Idx 1238 -> glyfOff 0x00031832
+	Idx 1239 -> glyfOff 0x00031888
+	Idx 1240 -> glyfOff 0x000318EE
+	Idx 1241 -> glyfOff 0x00031942
+	Idx 1242 -> glyfOff 0x000319B0
+	Idx 1243 -> glyfOff 0x000319F2
+	Idx 1244 -> glyfOff 0x00031A52
+	Idx 1245 -> glyfOff 0x00031A94
+	Idx 1246 -> glyfOff 0x00031AE0
+	Idx 1247 -> glyfOff 0x00031B1A
+	Idx 1248 -> glyfOff 0x00031B56
+	Idx 1249 -> glyfOff 0x00031B90
+	Idx 1250 -> glyfOff 0x00031BCC
+	Idx 1251 -> glyfOff 0x00031C00
+	Idx 1252 -> glyfOff 0x00031C32
+	Idx 1253 -> glyfOff 0x00031C62
+	Idx 1254 -> glyfOff 0x00031C92
+	Idx 1255 -> glyfOff 0x00031CBC
+	Idx 1256 -> glyfOff 0x00031CE2
+	Idx 1257 -> glyfOff 0x00031D0C
+	Idx 1258 -> glyfOff 0x00031D3A
+	Idx 1259 -> glyfOff 0x00031D64
+	Idx 1260 -> glyfOff 0x00031DB0
+	Idx 1261 -> glyfOff 0x00031DF4
+	Idx 1262 -> glyfOff 0x00031E2A
+	Idx 1263 -> glyfOff 0x00031E66
+	Idx 1264 -> glyfOff 0x00031E9A
+	Idx 1265 -> glyfOff 0x00031EC8
+	Idx 1266 -> glyfOff 0x00031F06
+	Idx 1267 -> glyfOff 0x00031F36
+	Idx 1268 -> glyfOff 0x00031F70
+	Idx 1269 -> glyfOff 0x00031F9A
+	Idx 1270 -> glyfOff 0x00031FC8
+	Idx 1271 -> glyfOff 0x00031FEE
+	Idx 1272 -> glyfOff 0x00032014
+	Idx 1273 -> glyfOff 0x00032040
+	Idx 1274 -> glyfOff 0x0003209C
+	Idx 1275 -> glyfOff 0x000320CC
+	Idx 1276 -> glyfOff 0x000320FC
+	Idx 1277 -> glyfOff 0x0003212C
+	Idx 1278 -> glyfOff 0x00032164
+	Idx 1279 -> glyfOff 0x00032198
+	Idx 1280 -> glyfOff 0x000321C6
+	Idx 1281 -> glyfOff 0x000321F6
+	Idx 1282 -> glyfOff 0x00032226
+	Idx 1283 -> glyfOff 0x00032256
+	Idx 1284 -> glyfOff 0x00032286
+	Idx 1285 -> glyfOff 0x000322BA
+	Idx 1286 -> glyfOff 0x00032310
+	Idx 1287 -> glyfOff 0x00032344
+	Idx 1288 -> glyfOff 0x000323A4
+	Idx 1289 -> glyfOff 0x000323D8
+	Idx 1290 -> glyfOff 0x00032430
+	Idx 1291 -> glyfOff 0x00032464
+	Idx 1292 -> glyfOff 0x000324C0
+	Idx 1293 -> glyfOff 0x0003255E
+	Idx 1294 -> glyfOff 0x0003262C
+	Idx 1295 -> glyfOff 0x0003274C
+	Idx 1296 -> glyfOff 0x00032814
+	Idx 1297 -> glyfOff 0x000328A4
+	Idx 1298 -> glyfOff 0x0003293A
+	Idx 1299 -> glyfOff 0x00032B26
+	Idx 1300 -> glyfOff 0x00032D22
+	Idx 1301 -> glyfOff 0x00032E9A
+	Idx 1302 -> glyfOff 0x00033016
+	Idx 1303 -> glyfOff 0x000331C0
+	Idx 1304 -> glyfOff 0x00033372
+	Idx 1305 -> glyfOff 0x0003345A
+	Idx 1306 -> glyfOff 0x00033590
+	Idx 1307 -> glyfOff 0x00033688
+	Idx 1308 -> glyfOff 0x0003379A
+	Idx 1309 -> glyfOff 0x000338B8
+	Idx 1310 -> glyfOff 0x000339EE
+	Idx 1311 -> glyfOff 0x00033B58
+	Idx 1312 -> glyfOff 0x00033CC6
+	Idx 1313 -> glyfOff 0x00033E5C
+	Idx 1314 -> glyfOff 0x00033FD8
+	Idx 1315 -> glyfOff 0x000340E8
+	Idx 1316 -> glyfOff 0x000341F8
+	Idx 1317 -> glyfOff 0x00034324
+	Idx 1318 -> glyfOff 0x00034460
+	Idx 1319 -> glyfOff 0x000345A2
+	           Ends at 0x00034726
+
+'glyf' Table - Glyph Data
+-------------------------
+Size = 214822 bytes, 1320 entries
+	Glyph   0: off = 0x00000000, len = 108
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	66
+	00000: PUSHB[5]              2     1   228     6     7 
+	00006: PUSHW[1]            665 
+	00009: NPUSHB      (19):     0     5     4   228     3     0    10     7     4   228 
+	                             1     0    25     8     6     5   228     2     3 
+	00030: PUSHW[5]            561     9   409   302    24 
+	00041: CALL       
+	00042: SRP0       
+	00043: MIRP[srp0,nmd,rd,2] 
+	00044: ALIGNRP    
+	00045: MIRP[srp0,md,rd,1] 
+	00046: ALIGNRP    
+	00047: FLIPOFF    
+	00048: SRP0       
+	00049: MIRP[srp0,nmd,rd,0] 
+	00050: ALIGNRP    
+	00051: FLIPON     
+	00052: MIRP[srp0,md,rd,1] 
+	00053: ALIGNRP    
+	00054: SVTCA[y-axis] 
+	00055: MIAP[rd+ci] 
+	00056: ALIGNRP    
+	00057: MIRP[srp0,md,rd,1] 
+	00058: ALIGNRP    
+	00059: SRP0       
+	00060: MIRP[srp0,md,rd,0] 
+	00061: ALIGNRP    
+	00062: MIRP[srp0,md,rd,1] 
+	00063: ALIGNRP    
+	00064: IUP[y]     
+	00065: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph   1: off = 0x0000006C, len = 0
+
+	Glyph   2: off = 0x0000006C, len = 0
+
+	Glyph   3: off = 0x0000006C, len = 0
+
+	Glyph   4: off = 0x0000006C, len = 172
+	  numberOfContours:	2
+	  xMin:			176
+	  yMin:			0
+	  xMax:			399
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  9
+
+	  Length of Instructions:	125
+	00000: PUSHB[2]              6     2 
+	00003: RS         
+	00004: EQ         
+	00005: IF         
+	00006: PUSHB[3]              2     0     5 
+	00010: PUSHW[1]            687 
+	00013: NPUSHB      (11):     8    60     6    10     9    58     4    60     6    58 
+	                             1 
+	00026: SVTCA[x-axis] 
+	00027: MDAP[rd]   
+	00028: MIRP[nrp0,nmd,rd,0] 
+	00029: MIRP[srp0,md,rd,1] 
+	00030: MIRP[nrp0,nmd,rd,0] 
+	00031: SVTCA[y-axis] 
+	00032: MIAP[rd+ci] 
+	00033: MIRP[srp0,md,rd,1] 
+	00034: MIRP[nrp0,nmd,rd,2] 
+	00035: MIAP[rd+ci] 
+	00036: ELSE       
+	00037: PUSHB[2]             28     5 
+	00040: PUSHW[1]            687 
+	00043: NPUSHB      (38):     8    60     6     2     0     6    10    11   203     3 
+	                             9    58     5    56     4    60     0    56     6    58 
+	                             1     3    60     2     2    32     1     1     1   203 
+	                            10    10    11   129    33   161   152    24 
+	00083: CALL       
+	00084: CALL       
+	00085: FLIPOFF    
+	00086: SRP0       
+	00087: MIRP[srp0,nmd,rd,0] 
+	00088: DELTAP1    
+	00089: ALIGNRP    
+	00090: FLIPON     
+	00091: SRP0       
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: SRP0       
+	00094: MIRP[nrp0,nmd,rd,0] 
+	00095: MIRP[nrp0,nmd,rd,0] 
+	00096: MIRP[srp0,md,rd,1] 
+	00097: MIRP[nrp0,nmd,rd,0] 
+	00098: MIRP[nrp0,nmd,rd,0] 
+	00099: SRP0       
+	00100: MIRP[nrp0,md,rd,2] 
+	00101: SVTCA[y-axis] 
+	00102: MIAP[rd+ci] 
+	00103: MIAP[rd+ci] 
+	00104: FLIPON     
+	00105: SRP0       
+	00106: MIRP[srp0,md,rd,1] 
+	00107: MIRP[nrp0,nmd,rd,2] 
+	00108: MPPEM      
+	00109: GTEQ       
+	00110: IF         
+	00111: PUSHB[4]              5     4     0     1 
+	00116: SVTCA[x-axis] 
+	00117: SRP0       
+	00118: ALIGNRP    
+	00119: SRP0       
+	00120: ALIGNRP    
+	00121: EIF        
+	00122: EIF        
+	00123: IUP[y]     
+	00124: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:                              X-Short On
+	  2:        XDual                         On
+	  3:  YDual XDual                 X-Short On
+	  4:        XDual                         On
+	  5:                              X-Short On
+	  6:                              X-Short On
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   231,   364)  ->  Abs (   231,   364)
+	  1: Rel (   -55,   777)  ->  Abs (   176,  1141)
+	  2: Rel (     0,   325)  ->  Abs (   176,  1466)
+	  3: Rel (   223,     0)  ->  Abs (   399,  1466)
+	  4: Rel (     0,  -325)  ->  Abs (   399,  1141)
+	  5: Rel (   -52,  -777)  ->  Abs (   347,   364)
+	  6: Rel (  -163,  -364)  ->  Abs (   184,     0)
+	  7: Rel (     0,   205)  ->  Abs (   184,   205)
+	  8: Rel (   207,     0)  ->  Abs (   391,   205)
+	  9: Rel (     0,  -205)  ->  Abs (   391,     0)
+
+	Glyph   5: off = 0x00000118, len = 168
+	  numberOfContours:	2
+	  xMin:			94
+	  yMin:			947
+	  xMax:			631
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  11
+
+	  Length of Instructions:	117
+	00000: PUSHW[2]              0    -8 
+	00005: PUSHB[4]             34    37    52     5 
+	00010: PUSHW[1]             -8 
+	00013: NPUSHB      (34):    38    41    52    11     6    10     7     5     0     4 
+	                             1     0     5     5     6    11   238     9     8     8 
+	                             3     3     2     0     7     8    60    10    15     9 
+	                           128     9     2     9 
+	00049: PUSHW[1]            -64 
+	00052: NPUSHB      (21):    13    15    52     9   222     1     3     4    60     2 
+	                             1    64    13    17    52     1    25    12   113   167 
+	                            24 
+	00075: CALL       
+	00076: FLIPOFF    
+	00077: SRP0       
+	00078: MIRP[srp0,nmd,rd,0] 
+	00079: CALL       
+	00080: ALIGNRP    
+	00081: FLIPON     
+	00082: MIRP[srp0,md,rd,1] 
+	00083: ALIGNRP    
+	00084: SRP0       
+	00085: MIRP[srp0,md,rd,1] 
+	00086: CALL       
+	00087: DELTAP1    
+	00088: ALIGNRP    
+	00089: MIRP[srp0,md,rd,1] 
+	00090: ALIGNRP    
+	00091: SVTCA[y-axis] 
+	00092: MIAP[rd+ci] 
+	00093: ALIGNRP    
+	00094: SRP0       
+	00095: ALIGNRP    
+	00096: SRP0       
+	00097: ALIGNRP    
+	00098: MIRP[srp0,md,rd,1] 
+	00099: ALIGNRP    
+	00100: ALIGNRP    
+	00101: SRP0       
+	00102: ALIGNRP    
+	00103: SVTCA[x-axis] 
+	00104: SRP1       
+	00105: SRP2       
+	00106: IP         
+	00107: IP         
+	00108: SRP1       
+	00109: SRP2       
+	00110: IP         
+	00111: IP         
+	00112: IUP[y]     
+	00113: IUP[x]     
+	00114: SVTCA[x-axis] 
+	00115: CALL       
+	00116: CALL       
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:                              X-Short On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual                 X-Short On
+	  4:        XDual         Y-Short         On
+	  5:                              X-Short On
+	  6:  YDual XDual                 X-Short On
+	  7:                              X-Short On
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual         Y-Short         On
+	 11:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   144,   947)  ->  Abs (   144,   947)
+	  1: Rel (   -50,   279)  ->  Abs (    94,  1226)
+	  2: Rel (     0,   240)  ->  Abs (    94,  1466)
+	  3: Rel (   205,     0)  ->  Abs (   299,  1466)
+	  4: Rel (     0,  -240)  ->  Abs (   299,  1226)
+	  5: Rel (   -45,  -279)  ->  Abs (   254,   947)
+	  6: Rel (   221,     0)  ->  Abs (   475,   947)
+	  7: Rel (   -49,   279)  ->  Abs (   426,  1226)
+	  8: Rel (     0,   240)  ->  Abs (   426,  1466)
+	  9: Rel (   205,     0)  ->  Abs (   631,  1466)
+	 10: Rel (     0,  -240)  ->  Abs (   631,  1226)
+	 11: Rel (   -48,  -279)  ->  Abs (   583,   947)
+
+	Glyph   6: off = 0x000001C0, len = 418
+	  numberOfContours:	2
+	  xMin:			21
+	  yMin:			-25
+	  xMax:			1113
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  27
+	  1:  31
+
+	  Length of Instructions:	305
+	00000: NPUSHB     (135):    40    29    56    29     2     9     4     9    29     2 
+	                            87    15   183    19   183    28   199    19   199    28 
+	                           248    29     6     1     2    21     0     9     4     3 
+	                            20     0     9     5     6    17     0     9     8     7 
+	                            16     0     9    11     7    16    27    10    12     7 
+	                            16    24    13    15     7    16    23    14    18     6 
+	                            17    23    14    19     3    20    23    14    22     2 
+	                            21    23    14    25     2    21    24    13    26     2 
+	                            21    27    10    28     3    20    27    10    29     3 
+	                            20    24    13    30     6    17    24    13    31     6 
+	                            17    27    10    10    27    27    37     0     9    20 
+	                             0     0     9    13    24    24    37    23    14    20 
+	                            23    23    14    21     2    37    20     3     3     0 
+	                            16     7    37    17     6 
+	00137: PUSHW[1]            438 
+	00140: NPUSHB      (56):    14    14    13    13    10    10     9     0    27    24 
+	                            24    23    23     0    10    21    20    20    17    16 
+	                            62    14     7     6     6     3     2    62     0    24 
+	                           148    13    23   148    13    37    14    64    17    57 
+	                            79    14   159    14     2    14   117    33    10   148 
+	                            27     9   148    27    37     0 
+	00198: PUSHW[1]            -64 
+	00201: PUSHB[6]             17    57    32     0     1     0 
+	00208: PUSHW[1]            673 
+	00211: PUSHB[4]             32   169   104    24 
+	00216: CALL       
+	00217: SRP0       
+	00218: MIRP[srp0,nmd,rd,2] 
+	00219: DELTAP1    
+	00220: CALL       
+	00221: MIRP[nrp0,md,rd,1] 
+	00222: MIRP[nrp0,nmd,rd,0] 
+	00223: SRP0       
+	00224: MIRP[nrp0,nmd,rd,0] 
+	00225: SRP0       
+	00226: MIRP[srp0,nmd,rd,2] 
+	00227: DELTAP1    
+	00228: CALL       
+	00229: MIRP[nrp0,md,rd,1] 
+	00230: MIRP[nrp0,nmd,rd,0] 
+	00231: SRP0       
+	00232: MIRP[nrp0,nmd,rd,0] 
+	00233: SRP0       
+	00234: MIRP[srp0,nmd,rd,0] 
+	00235: ALIGNRP    
+	00236: ALIGNRP    
+	00237: SRP0       
+	00238: ALIGNRP    
+	00239: SRP0       
+	00240: MIRP[srp0,nmd,rd,0] 
+	00241: ALIGNRP    
+	00242: ALIGNRP    
+	00243: SRP0       
+	00244: ALIGNRP    
+	00245: SVTCA[y-axis] 
+	00246: MIAP[rd+ci] 
+	00247: ALIGNRP    
+	00248: SRP0       
+	00249: ALIGNRP    
+	00250: SRP0       
+	00251: ALIGNRP    
+	00252: MIAP[rd+ci] 
+	00253: ALIGNRP    
+	00254: SRP0       
+	00255: ALIGNRP    
+	00256: SRP0       
+	00257: ALIGNRP    
+	00258: SRP0       
+	00259: MIRP[srp0,md,rd,1] 
+	00260: ALIGNRP    
+	00261: MIRP[srp0,md,rd,1] 
+	00262: ALIGNRP    
+	00263: SRP1       
+	00264: IP         
+	00265: MDAP[rd]   
+	00266: ALIGNRP    
+	00267: MIRP[srp0,md,rd,1] 
+	00268: ALIGNRP    
+	00269: SDPVTL[1]  
+	00270: SFVTCA[x-axis] 
+	00271: MDAP[nrd]  
+	00272: CALL       
+	00273: RDTG       
+	00274: SRP0       
+	00275: MDRP[nrp0,nmd,rd,0] 
+	00276: SDPVTL[1]  
+	00277: MDAP[nrd]  
+	00278: RTG        
+	00279: CALL       
+	00280: RDTG       
+	00281: SRP0       
+	00282: MDRP[nrp0,nmd,rd,0] 
+	00283: ISECT      
+	00284: ISECT      
+	00285: ISECT      
+	00286: ISECT      
+	00287: ISECT      
+	00288: ISECT      
+	00289: ISECT      
+	00290: ISECT      
+	00291: ISECT      
+	00292: ISECT      
+	00293: ISECT      
+	00294: ISECT      
+	00295: ISECT      
+	00296: ISECT      
+	00297: ISECT      
+	00298: ISECT      
+	00299: IUP[y]     
+	00300: IUP[x]     
+	00301: SVTCA[x-axis] 
+	00302: DELTAP1    
+	00303: DELTAP1    
+	00304: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual         Y-Short X-Short On
+	  1:        XDual                 X-Short On
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual                 X-Short On
+	  5:        XDual                 X-Short On
+	  6:  YDual                               On
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:        XDual                 X-Short On
+	 10:  YDual XDual                 X-Short On
+	 11:                              X-Short On
+	 12:  YDual                               On
+	 13:        XDual                 X-Short On
+	 14:  YDual XDual                 X-Short On
+	 15:                              X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual         Y-Short         On
+	 18:  YDual                       X-Short On
+	 19:                              X-Short On
+	 20:  YDual                               On
+	 21:        XDual         Y-Short         On
+	 22:  YDual                               On
+	 23:                              X-Short On
+	 24:  YDual                       X-Short On
+	 25:        XDual                 X-Short On
+	 26:  YDual                               On
+	 27:                              X-Short On
+	 28:        XDual                 X-Short On
+	 29:  YDual                               On
+	 30:        XDual                 X-Short On
+	 31:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   103,   -25)  ->  Abs (   103,   -25)
+	  1: Rel (    87,   426)  ->  Abs (   190,   401)
+	  2: Rel (  -169,     0)  ->  Abs (    21,   401)
+	  3: Rel (     0,   149)  ->  Abs (    21,   550)
+	  4: Rel (   199,     0)  ->  Abs (   220,   550)
+	  5: Rel (    74,   363)  ->  Abs (   294,   913)
+	  6: Rel (  -273,     0)  ->  Abs (    21,   913)
+	  7: Rel (     0,   149)  ->  Abs (    21,  1062)
+	  8: Rel (   303,     0)  ->  Abs (   324,  1062)
+	  9: Rel (    87,   429)  ->  Abs (   411,  1491)
+	 10: Rel (   150,     0)  ->  Abs (   561,  1491)
+	 11: Rel (   -87,  -429)  ->  Abs (   474,  1062)
+	 12: Rel (   315,     0)  ->  Abs (   789,  1062)
+	 13: Rel (    87,   429)  ->  Abs (   876,  1491)
+	 14: Rel (   151,     0)  ->  Abs (  1027,  1491)
+	 15: Rel (   -87,  -429)  ->  Abs (   940,  1062)
+	 16: Rel (   173,     0)  ->  Abs (  1113,  1062)
+	 17: Rel (     0,  -149)  ->  Abs (  1113,   913)
+	 18: Rel (  -203,     0)  ->  Abs (   910,   913)
+	 19: Rel (   -75,  -363)  ->  Abs (   835,   550)
+	 20: Rel (   278,     0)  ->  Abs (  1113,   550)
+	 21: Rel (     0,  -149)  ->  Abs (  1113,   401)
+	 22: Rel (  -308,     0)  ->  Abs (   805,   401)
+	 23: Rel (   -87,  -426)  ->  Abs (   718,   -25)
+	 24: Rel (  -150,     0)  ->  Abs (   568,   -25)
+	 25: Rel (    86,   426)  ->  Abs (   654,   401)
+	 26: Rel (  -314,     0)  ->  Abs (   340,   401)
+	 27: Rel (   -87,  -426)  ->  Abs (   253,   -25)
+	 28: Rel (   117,   575)  ->  Abs (   370,   550)
+	 29: Rel (   314,     0)  ->  Abs (   684,   550)
+	 30: Rel (    75,   363)  ->  Abs (   759,   913)
+	 31: Rel (  -315,     0)  ->  Abs (   444,   913)
+
+	Glyph   7: off = 0x00000362, len = 646
+	  numberOfContours:	3
+	  xMin:			73
+	  yMin:			-211
+	  xMax:			1043
+	  yMax:			1601
+
+	EndPoints
+	---------
+	  0:  42
+	  1:  49
+	  2:  56
+
+	  Length of Instructions:	468
+	00000: NPUSHB      (37):   124    30     1     4    48    44    54    54    47    70 
+	                            33    85    33    80    47    93    54   106     3    99 
+	                            47   122     3   119    33   115    47   123    54   135 
+	                            33   128    47   142    54    16    49 
+	00039: PUSHW[1]            -34 
+	00042: PUSHB[8]             11    57    30    32    32    36    52    44 
+	00051: PUSHW[1]            -32 
+	00054: NPUSHB      (44):    32    35    52   106     8    56    42    22    12    55 
+	                            32    22    42    48    33    11     0    21    12    55 
+	                            49    48    33     0    21    55    33    48    48   202 
+	                            12    55    20    12    12    55    48    12    33    55 
+	                             4    23    50     6 
+	00100: PUSHW[1]            676 
+	00103: PUSHB[7]             80     5     1     5   237     1    28 
+	00111: PUSHW[3]            676    27   685 
+	00118: PUSHB[4]             23    31   211    43 
+	00123: PUSHW[1]            309 
+	00126: NPUSHB      (10):    20    21    22   128    23    23    20     5     0    42 
+	00138: PUSHW[1]            311 
+	00141: PUSHB[3]              1    10    50 
+	00145: PUSHW[1]            309 
+	00148: PUSHB[5]             41   211     1    13    28 
+	00154: PUSHW[3]            312    27   664 
+	00161: PUSHB[3]             53   115    38 
+	00165: PUSHW[1]            -64 
+	00168: NPUSHB      (10):    18    57    48    38    64    38   128    38     3    38 
+	00180: PUSHW[1]            594 
+	00183: NPUSHB      (15):    42    22    23    23    31    31    32    32    56    56 
+	                            50    50    41    41    42 
+	00200: PUSHW[1]            403 
+	00203: NPUSHB      (22):     0    21    20    20    43    43    49    49    11    11 
+	                            10    10    48     0    64     0   128     0   208     0 
+	                             4     0 
+	00227: PUSHW[1]            524 
+	00230: NPUSHB       (9):     5    46   115   111    16   127    16     2    16 
+	00241: PUSHW[3]            398     6   312 
+	00248: NPUSHB      (15):    63     5    79     5   127     5   143     5     4     5 
+	                            25    57   199   139    24 
+	00265: CALL       
+	00266: FLIPOFF    
+	00267: SRP0       
+	00268: MIRP[srp0,nmd,rd,0] 
+	00269: DELTAP1    
+	00270: FLIPON     
+	00271: MIRP[nrp0,md,rd,1] 
+	00272: MIRP[srp0,nmd,rd,0] 
+	00273: DELTAP2    
+	00274: MIRP[nrp0,md,rd,1] 
+	00275: SRP0       
+	00276: MIRP[srp0,nmd,rd,0] 
+	00277: DELTAP1    
+	00278: ALIGNRP    
+	00279: SRP0       
+	00280: ALIGNRP    
+	00281: SRP0       
+	00282: ALIGNRP    
+	00283: SRP0       
+	00284: ALIGNRP    
+	00285: SRP0       
+	00286: ALIGNRP    
+	00287: SRP0       
+	00288: ALIGNRP    
+	00289: SRP0       
+	00290: MIRP[srp0,md,rd,1] 
+	00291: ALIGNRP    
+	00292: SRP0       
+	00293: ALIGNRP    
+	00294: SRP0       
+	00295: ALIGNRP    
+	00296: SRP0       
+	00297: ALIGNRP    
+	00298: SRP0       
+	00299: ALIGNRP    
+	00300: SRP0       
+	00301: ALIGNRP    
+	00302: SRP0       
+	00303: ALIGNRP    
+	00304: SRP0       
+	00305: MIRP[srp0,nmd,rd,0] 
+	00306: DELTAP1    
+	00307: CALL       
+	00308: MIRP[nrp0,md,rd,1] 
+	00309: MIRP[srp0,nmd,rd,0] 
+	00310: MIRP[nrp0,md,rd,1] 
+	00311: SVTCA[y-axis] 
+	00312: MIAP[rd+ci] 
+	00313: MIRP[srp0,nmd,rd,0] 
+	00314: MIRP[srp0,md,rd,1] 
+	00315: ALIGNRP    
+	00316: SRP0       
+	00317: MIRP[srp0,nmd,rd,0] 
+	00318: ALIGNRP    
+	00319: MIAP[rd+ci] 
+	00320: ALIGNRP    
+	00321: SRP0       
+	00322: MIRP[srp0,nmd,rd,0] 
+	00323: ALIGNRP    
+	00324: SRP0       
+	00325: MIRP[srp0,md,rd,1] 
+	00326: MIRP[nrp0,nmd,rd,0] 
+	00327: SRP0       
+	00328: MIRP[srp0,md,rd,1] 
+	00329: MIRP[nrp0,nmd,rd,0] 
+	00330: SRP0       
+	00331: MIRP[srp0,md,rd,1] 
+	00332: DELTAP1    
+	00333: MIRP[nrp0,nmd,rd,0] 
+	00334: SRP1       
+	00335: SRP2       
+	00336: SLOOP      
+	00337: IP         
+	00338: SDPVTL[1]  
+	00339: SFVTPV     
+	00340: MDAP[nrd]  
+	00341: CALL       
+	00342: SDPVTL[1]  
+	00343: SFVTPV     
+	00344: RDTG       
+	00345: MDRP[nrp0,nmd,rd,0] 
+	00346: ISECT      
+	00347: ISECT      
+	00348: ISECT      
+	00349: ISECT      
+	00350: IUP[y]     
+	00351: IUP[x]     
+	00352: RTG        
+	00353: RS         
+	00354: JROF       
+	00355: NPUSHB      (74):    33    55    12    19    36    37    35    37    34    37 
+	                             3     6    18    38    14    15    13    15     2     6 
+	                            55    33    53    79     1    51    40    53    79     1 
+	                            44    19    46    79     0    48    12    46    79     0 
+	                            54    37    56    79     1    33    32    55    56    52 
+	                            39    50    79     0    51    50    45    17    43    79 
+	                             1    44    43    19    20    47    15    49    79     0 
+	                            48    49    12    11 
+	00431: SVTCA[y-axis] 
+	00432: SRP0       
+	00433: ALIGNRP    
+	00434: SRP0       
+	00435: ALIGNRP    
+	00436: CALL       
+	00437: SRP0       
+	00438: ALIGNRP    
+	00439: SRP0       
+	00440: ALIGNRP    
+	00441: CALL       
+	00442: SRP0       
+	00443: ALIGNRP    
+	00444: CALL       
+	00445: SRP0       
+	00446: ALIGNRP    
+	00447: SRP0       
+	00448: ALIGNRP    
+	00449: CALL       
+	00450: SVTCA[x-axis] 
+	00451: CALL       
+	00452: CALL       
+	00453: CALL       
+	00454: CALL       
+	00455: LOOPCALL   
+	00456: CALL       
+	00457: LOOPCALL   
+	00458: FLIPRGON   
+	00459: FLIPRGON   
+	00460: SVTCA[x-axis] 
+	00461: CALL       
+	00462: CALL       
+	00463: SVTCA[y-axis] 
+	00464: CALL       
+	00465: DELTAP1    
+	00466: SVTCA[x-axis] 
+	00467: DELTAP1    
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual       Rep-  2 Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short On
+	 11:        XDual                         On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual                 X-Short On
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:                      Y-Short X-Short On
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual               Y-Short X-Short On
+	 32:        XDual                         On
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short X-Short On
+	 35:        XDual Rep-  2 Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:                      Y-Short X-Short Off
+	 41:                      Y-Short X-Short On
+	 42:        XDual         Y-Short         On
+	 43:                              X-Short On
+	 44:                      Y-Short X-Short Off
+	 45:                      Y-Short X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual         Y-Short         Off
+	 48:        XDual         Y-Short X-Short Off
+	 49:        XDual         Y-Short X-Short On
+	 50:        XDual                 X-Short On
+	 51:  YDual XDual         Y-Short X-Short Off
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short         On
+	 54:  YDual XDual         Y-Short         Off
+	 55:  YDual               Y-Short X-Short Off
+	 56:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   510,  -211)  ->  Abs (   510,  -211)
+	  1: Rel (     0,   180)  ->  Abs (   510,   -31)
+	  2: Rel (  -135,    17)  ->  Abs (   375,   -14)
+	  3: Rel (  -169,    87)  ->  Abs (   206,    73)
+	  4: Rel (  -123,   194)  ->  Abs (    83,   267)
+	  5: Rel (   -10,   140)  ->  Abs (    73,   407)
+	  6: Rel (   181,    34)  ->  Abs (   254,   441)
+	  7: Rel (    21,  -145)  ->  Abs (   275,   296)
+	  8: Rel (    53,   -68)  ->  Abs (   328,   228)
+	  9: Rel (    76,   -96)  ->  Abs (   404,   132)
+	 10: Rel (   106,   -11)  ->  Abs (   510,   121)
+	 11: Rel (     0,   573)  ->  Abs (   510,   694)
+	 12: Rel (  -111,    21)  ->  Abs (   399,   715)
+	 13: Rel (  -116,    65)  ->  Abs (   283,   780)
+	 14: Rel (   -86,    48)  ->  Abs (   197,   828)
+	 15: Rel (   -93,   170)  ->  Abs (   104,   998)
+	 16: Rel (     0,   108)  ->  Abs (   104,  1106)
+	 17: Rel (     0,   192)  ->  Abs (   104,  1298)
+	 18: Rel (   136,   119)  ->  Abs (   240,  1417)
+	 19: Rel (    91,    80)  ->  Abs (   331,  1497)
+	 20: Rel (   179,    18)  ->  Abs (   510,  1515)
+	 21: Rel (     0,    86)  ->  Abs (   510,  1601)
+	 22: Rel (   106,     0)  ->  Abs (   616,  1601)
+	 23: Rel (     0,   -86)  ->  Abs (   616,  1515)
+	 24: Rel (   157,   -15)  ->  Abs (   773,  1500)
+	 25: Rel (    92,   -77)  ->  Abs (   865,  1423)
+	 26: Rel (   118,   -98)  ->  Abs (   983,  1325)
+	 27: Rel (    24,  -171)  ->  Abs (  1007,  1154)
+	 28: Rel (  -186,   -28)  ->  Abs (   821,  1126)
+	 29: Rel (   -16,   106)  ->  Abs (   805,  1232)
+	 30: Rel (  -101,   113)  ->  Abs (   704,  1345)
+	 31: Rel (   -88,    18)  ->  Abs (   616,  1363)
+	 32: Rel (     0,  -519)  ->  Abs (   616,   844)
+	 33: Rel (   136,   -34)  ->  Abs (   752,   810)
+	 34: Rel (    44,   -19)  ->  Abs (   796,   791)
+	 35: Rel (    84,   -37)  ->  Abs (   880,   754)
+	 36: Rel (   106,  -106)  ->  Abs (   986,   648)
+	 37: Rel (    57,  -146)  ->  Abs (  1043,   502)
+	 38: Rel (     0,   -85)  ->  Abs (  1043,   417)
+	 39: Rel (     0,  -187)  ->  Abs (  1043,   230)
+	 40: Rel (  -238,  -250)  ->  Abs (   805,   -20)
+	 41: Rel (  -189,    -9)  ->  Abs (   616,   -29)
+	 42: Rel (     0,  -182)  ->  Abs (   616,  -211)
+	 43: Rel (  -106,  1576)  ->  Abs (   510,  1365)
+	 44: Rel (  -105,   -16)  ->  Abs (   405,  1349)
+	 45: Rel (  -121,  -136)  ->  Abs (   284,  1213)
+	 46: Rel (     0,   -93)  ->  Abs (   284,  1120)
+	 47: Rel (     0,   -92)  ->  Abs (   284,  1028)
+	 48: Rel (   103,  -124)  ->  Abs (   387,   904)
+	 49: Rel (   123,   -37)  ->  Abs (   510,   867)
+	 50: Rel (   106,  -746)  ->  Abs (   616,   121)
+	 51: Rel (   105,    13)  ->  Abs (   721,   134)
+	 52: Rel (   137,   156)  ->  Abs (   858,   290)
+	 53: Rel (     0,   115)  ->  Abs (   858,   405)
+	 54: Rel (     0,    98)  ->  Abs (   858,   503)
+	 55: Rel (   -97,   119)  ->  Abs (   761,   622)
+	 56: Rel (  -145,    47)  ->  Abs (   616,   669)
+
+	Glyph   8: off = 0x000005E8, len = 424
+	  numberOfContours:	5
+	  xMin:			119
+	  yMin:			-54
+	  xMax:			1695
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+	  2:  27
+	  3:  39
+	  4:  51
+
+	  Length of Instructions:	263
+	00000: NPUSHB      (10):   144    25   144    26     2   104     8    26    27    27 
+	00012: PUSHW[1]            666 
+	00015: NPUSHB      (15):    24    25    20    24    24    25    24    27    21    15 
+	                            25    26    49    43    18 
+	00032: PUSHW[5]            671     9   357    12   671 
+	00043: NPUSHB      (11):     3    26    25    25     3     1    27    24    24    37 
+	                            40 
+	00056: PUSHW[5]            671    31   357    46   671 
+	00067: PUSHB[3]             37    11    28 
+	00071: PUSHW[5]            666    43   256    49   666 
+	00082: PUSHB[4]             34   172    53     6 
+	00087: PUSHW[5]            666    21   256    15   666 
+	00098: NPUSHB       (9):    32     0     1     0   117    52    87    90    24 
+	00109: CALL       
+	00110: SRP0       
+	00111: MIRP[srp0,nmd,rd,2] 
+	00112: DELTAP1    
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: MIRP[srp0,nmd,rd,0] 
+	00115: MIRP[nrp0,md,rd,1] 
+	00116: SRP0       
+	00117: MIRP[srp0,nmd,rd,2] 
+	00118: MIRP[nrp0,md,rd,1] 
+	00119: MIRP[srp0,nmd,rd,0] 
+	00120: MIRP[nrp0,md,rd,1] 
+	00121: SVTCA[y-axis] 
+	00122: MIAP[rd+ci] 
+	00123: MIRP[nrp0,md,rd,1] 
+	00124: MIRP[srp0,md,rd,1] 
+	00125: MIRP[nrp0,md,rd,1] 
+	00126: SRP0       
+	00127: ALIGNRP    
+	00128: SRP0       
+	00129: ALIGNRP    
+	00130: MIAP[rd+ci] 
+	00131: ALIGNRP    
+	00132: SRP0       
+	00133: ALIGNRP    
+	00134: SRP0       
+	00135: MIRP[nrp0,md,rd,1] 
+	00136: MIRP[srp0,md,rd,1] 
+	00137: MIRP[nrp0,md,rd,1] 
+	00138: SVTCA[x-axis] 
+	00139: SRP1       
+	00140: SRP2       
+	00141: IP         
+	00142: IP         
+	00143: SRP1       
+	00144: SRP2       
+	00145: IP         
+	00146: IP         
+	00147: SDPVTL[1]  
+	00148: MDAP[nrd]  
+	00149: CALL       
+	00150: RDTG       
+	00151: SRP0       
+	00152: MDRP[nrp0,nmd,rd,0] 
+	00153: IUP[y]     
+	00154: IUP[x]     
+	00155: RTG        
+	00156: RS         
+	00157: JROF       
+	00158: NPUSHB      (82):     1    51    41    30    43    31     0    51    32    49 
+	                            31     1    45    38    43    31     0    47    36    49 
+	                            31     1    13     2    15    31     0    23     4    21 
+	                            31     1    17    10    15    31     0    19     8    21 
+	                            31     1    42    29    40    31     1    50    33    40 
+	                            31     1    44    39    46    31     0    48    35    46 
+	                            31     0    14     1    12    31     1    22     5    12 
+	                            31     1    16    11    18    31     0    20     7    18 
+	                            31     0 
+	00242: SVTCA[y-axis] 
+	00243: CALL       
+	00244: CALL       
+	00245: CALL       
+	00246: CALL       
+	00247: CALL       
+	00248: CALL       
+	00249: CALL       
+	00250: CALL       
+	00251: SVTCA[x-axis] 
+	00252: CALL       
+	00253: CALL       
+	00254: CALL       
+	00255: CALL       
+	00256: CALL       
+	00257: CALL       
+	00258: CALL       
+	00259: CALL       
+	00260: FLIPRGON   
+	00261: SVTCA[x-axis] 
+	00262: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:                                      On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:                              X-Short On
+	 25:                                      On
+	 26:  YDual XDual                 X-Short On
+	 27:                                      On
+	 28:                                      On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:                      Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual               Y-Short X-Short Off
+	 40:                                      On
+	 41:  YDual                       X-Short Off
+	 42:                      Y-Short X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:        XDual         Y-Short X-Short Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual         Y-Short         On
+	 50:  YDual XDual         Y-Short         Off
+	 51:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   119,  1114)  ->  Abs (   119,  1114)
+	  1: Rel (     0,   157)  ->  Abs (   119,  1271)
+	  2: Rel (   158,   220)  ->  Abs (   277,  1491)
+	  3: Rel (   150,     0)  ->  Abs (   427,  1491)
+	  4: Rel (   138,     0)  ->  Abs (   565,  1491)
+	  5: Rel (   181,  -197)  ->  Abs (   746,  1294)
+	  6: Rel (     0,  -191)  ->  Abs (   746,  1103)
+	  7: Rel (     0,  -186)  ->  Abs (   746,   917)
+	  8: Rel (  -183,  -201)  ->  Abs (   563,   716)
+	  9: Rel (  -134,     0)  ->  Abs (   429,   716)
+	 10: Rel (  -133,     0)  ->  Abs (   296,   716)
+	 11: Rel (  -177,   198)  ->  Abs (   119,   914)
+	 12: Rel (   313,   453)  ->  Abs (   432,  1367)
+	 13: Rel (   -67,     0)  ->  Abs (   365,  1367)
+	 14: Rel (   -89,  -116)  ->  Abs (   276,  1251)
+	 15: Rel (     0,  -155)  ->  Abs (   276,  1096)
+	 16: Rel (     0,  -141)  ->  Abs (   276,   955)
+	 17: Rel (    90,  -115)  ->  Abs (   366,   840)
+	 18: Rel (    66,     0)  ->  Abs (   432,   840)
+	 19: Rel (    68,     0)  ->  Abs (   500,   840)
+	 20: Rel (    89,   116)  ->  Abs (   589,   956)
+	 21: Rel (     0,   154)  ->  Abs (   589,  1110)
+	 22: Rel (     0,   142)  ->  Abs (   589,  1252)
+	 23: Rel (   -90,   115)  ->  Abs (   499,  1367)
+	 24: Rel (   -66, -1421)  ->  Abs (   433,   -54)
+	 25: Rel (   802,  1545)  ->  Abs (  1235,  1491)
+	 26: Rel (   146,     0)  ->  Abs (  1381,  1491)
+	 27: Rel (  -799, -1545)  ->  Abs (   582,   -54)
+	 28: Rel (   485,   398)  ->  Abs (  1067,   344)
+	 29: Rel (     0,   158)  ->  Abs (  1067,   502)
+	 30: Rel (   158,   219)  ->  Abs (  1225,   721)
+	 31: Rel (   151,     0)  ->  Abs (  1376,   721)
+	 32: Rel (   138,     0)  ->  Abs (  1514,   721)
+	 33: Rel (   181,  -197)  ->  Abs (  1695,   524)
+	 34: Rel (     0,  -191)  ->  Abs (  1695,   333)
+	 35: Rel (     0,  -186)  ->  Abs (  1695,   147)
+	 36: Rel (  -183,  -201)  ->  Abs (  1512,   -54)
+	 37: Rel (  -135,     0)  ->  Abs (  1377,   -54)
+	 38: Rel (  -133,     0)  ->  Abs (  1244,   -54)
+	 39: Rel (  -177,   199)  ->  Abs (  1067,   145)
+	 40: Rel (   314,   452)  ->  Abs (  1381,   597)
+	 41: Rel (   -68,     0)  ->  Abs (  1313,   597)
+	 42: Rel (   -89,  -116)  ->  Abs (  1224,   481)
+	 43: Rel (     0,  -155)  ->  Abs (  1224,   326)
+	 44: Rel (     0,  -140)  ->  Abs (  1224,   186)
+	 45: Rel (    90,  -116)  ->  Abs (  1314,    70)
+	 46: Rel (    66,     0)  ->  Abs (  1380,    70)
+	 47: Rel (    69,     0)  ->  Abs (  1449,    70)
+	 48: Rel (    89,   116)  ->  Abs (  1538,   186)
+	 49: Rel (     0,   154)  ->  Abs (  1538,   340)
+	 50: Rel (     0,   142)  ->  Abs (  1538,   482)
+	 51: Rel (   -90,   115)  ->  Abs (  1448,   597)
+
+	Glyph   9: off = 0x00000790, len = 490
+	  numberOfContours:	3
+	  xMin:			88
+	  yMin:			-34
+	  xMax:			1319
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  31
+	  1:  44
+	  2:  54
+
+	  Length of Instructions:	317
+	00000: NPUSHB     (200):   122    21   114    22   114    23   122    46   122    47 
+	                           134    22   166    47   221     0     8   150    29   163 
+	                            22     2   137    47   131    54     2   131    28   132 
+	                            33     2   180    22     1    96    23    97    33     2 
+	                            22    21    64    22   106     0     3   170    30   218 
+	                            22     2   115    28   115    29     2   117    26   114 
+	                            27     2   117     0   123    22     2   138    23   131 
+	                            27     2   169    21   174    22     2   131    30   138 
+	                            32     2   138    10   131    28     2   203    32   198 
+	                            39     2   205    22   194    27     2   186    26   198 
+	                            20     2   105    54   186    22     2   105    23   101 
+	                            51     2   101    47     1    86    51    92    54     2 
+	                            70    51    90    31     2    77    22    66    27     2 
+	                            48    26    57    31     2    38    27    36    32     2 
+	                             0    45    45    30    45    46    10    10     0    27 
+	                            22    22    29    21    32    22    22    32    32   186 
+	                            10    45    20    10    10    45    38    41    16     1 
+	                            52    41    30    58     3    11    27   134    29    35 
+	                            94    96    19   112    19   160    19     3    47    19 
+	                            64    19     2    19   220    29   143    24     1    24 
+	00202: PUSHW[1]            602 
+	00205: NPUSHB      (28):    25    62    30   114    32    29     1    29    56    56 
+	                            41    94   160    13     1    13   160    49    94    32 
+	                             7     1     7   106    55   113   152    24 
+	00235: CALL       
+	00236: SRP0       
+	00237: MIRP[srp0,nmd,rd,2] 
+	00238: DELTAP1    
+	00239: MIRP[nrp0,md,rd,1] 
+	00240: MIRP[srp0,nmd,rd,0] 
+	00241: DELTAP1    
+	00242: MIRP[nrp0,md,rd,1] 
+	00243: SRP0       
+	00244: MIRP[srp0,nmd,rd,0] 
+	00245: DELTAP1    
+	00246: MIRP[nrp0,nmd,rd,0] 
+	00247: MIRP[srp0,nmd,rd,0] 
+	00248: MIRP[nrp0,md,rd,1] 
+	00249: DELTAP1    
+	00250: SRP0       
+	00251: MIRP[srp0,nmd,rd,0] 
+	00252: DELTAP1    
+	00253: DELTAP1    
+	00254: MIRP[nrp0,md,rd,1] 
+	00255: SRP0       
+	00256: MIRP[nrp0,nmd,rd,0] 
+	00257: SVTCA[y-axis] 
+	00258: MIAP[rd+ci] 
+	00259: MIRP[nrp0,nmd,rd,0] 
+	00260: MIRP[nrp0,md,rd,1] 
+	00261: MIAP[rd+ci] 
+	00262: MIRP[nrp0,md,rd,1] 
+	00263: SDPVTL[1]  
+	00264: SFVTPV     
+	00265: MDAP[nrd]  
+	00266: CALL       
+	00267: SFVTPV     
+	00268: RDTG       
+	00269: SRP0       
+	00270: MDRP[nrp0,nmd,rd,0] 
+	00271: SPVTL[p1,p2] 
+	00272: SFVTPV     
+	00273: ALIGNRP    
+	00274: SDPVTL[1]  
+	00275: SFVTPV     
+	00276: SRP0       
+	00277: MDRP[nrp0,nmd,rd,0] 
+	00278: SPVTL[p1,p2] 
+	00279: SFVTPV     
+	00280: SRP0       
+	00281: ALIGNRP    
+	00282: ALIGNRP    
+	00283: SDPVTL[1]  
+	00284: SFVTPV     
+	00285: SRP0       
+	00286: MDRP[nrp0,nmd,rd,0] 
+	00287: IUP[y]     
+	00288: IUP[x]     
+	00289: SVTCA[x-axis] 
+	00290: DELTAP1    
+	00291: DELTAP1    
+	00292: DELTAP1    
+	00293: DELTAP1    
+	00294: DELTAP1    
+	00295: DELTAP1    
+	00296: DELTAP1    
+	00297: DELTAP1    
+	00298: DELTAP1    
+	00299: DELTAP1    
+	00300: DELTAP1    
+	00301: DELTAP1    
+	00302: DELTAP1    
+	00303: DELTAP1    
+	00304: DELTAP1    
+	00305: DELTAP1    
+	00306: DELTAP1    
+	00307: DELTAP1    
+	00308: DELTAP1    
+	00309: SVTCA[y-axis] 
+	00310: DELTAP1    
+	00311: DELTAP1    
+	00312: DELTAP1    
+	00313: DELTAP1    
+	00314: DELTAP1    
+	00315: DELTAP1    
+	00316: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short         On
+	 22:                                      On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short On
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short On
+	 30:                      Y-Short X-Short On
+	 31:  YDual               Y-Short X-Short Off
+	 32:                                      On
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short Off
+	 40:                      Y-Short X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:        XDual         Y-Short         Off
+	 43:        XDual         Y-Short X-Short Off
+	 44:        XDual         Y-Short X-Short On
+	 45:                                      On
+	 46:                                      On
+	 47:                      Y-Short X-Short Off
+	 48:                      Y-Short X-Short Off
+	 49:        XDual         Y-Short         On
+	 50:        XDual         Y-Short         Off
+	 51:        XDual         Y-Short X-Short Off
+	 52:  YDual XDual                 X-Short On
+	 53:  YDual XDual                 X-Short Off
+	 54:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   973,   173)  ->  Abs (   973,   173)
+	  1: Rel (   -89,   -99)  ->  Abs (   884,    74)
+	  2: Rel (  -210,   -99)  ->  Abs (   674,   -25)
+	  3: Rel (  -122,     0)  ->  Abs (   552,   -25)
+	  4: Rel (  -225,     0)  ->  Abs (   327,   -25)
+	  5: Rel (  -132,   152)  ->  Abs (   195,   127)
+	  6: Rel (  -107,   124)  ->  Abs (    88,   251)
+	  7: Rel (     0,   153)  ->  Abs (    88,   404)
+	  8: Rel (     0,   136)  ->  Abs (    88,   540)
+	  9: Rel (   175,   219)  ->  Abs (   263,   759)
+	 10: Rel (   174,    83)  ->  Abs (   437,   842)
+	 11: Rel (   -99,   114)  ->  Abs (   338,   956)
+	 12: Rel (   -66,   142)  ->  Abs (   272,  1098)
+	 13: Rel (     0,    66)  ->  Abs (   272,  1164)
+	 14: Rel (     0,   132)  ->  Abs (   272,  1296)
+	 15: Rel (   207,   195)  ->  Abs (   479,  1491)
+	 16: Rel (   157,     0)  ->  Abs (   636,  1491)
+	 17: Rel (   150,     0)  ->  Abs (   786,  1491)
+	 18: Rel (   191,  -184)  ->  Abs (   977,  1307)
+	 19: Rel (     0,  -129)  ->  Abs (   977,  1178)
+	 20: Rel (     0,  -209)  ->  Abs (   977,   969)
+	 21: Rel (  -277,  -148)  ->  Abs (   700,   821)
+	 22: Rel (   263,  -335)  ->  Abs (   963,   486)
+	 23: Rel (    45,    88)  ->  Abs (  1008,   574)
+	 24: Rel (    25,   116)  ->  Abs (  1033,   690)
+	 25: Rel (   187,   -40)  ->  Abs (  1220,   650)
+	 26: Rel (   -48,  -192)  ->  Abs (  1172,   458)
+	 27: Rel (   -82,  -124)  ->  Abs (  1090,   334)
+	 28: Rel (   101,  -134)  ->  Abs (  1191,   200)
+	 29: Rel (   128,   -91)  ->  Abs (  1319,   109)
+	 30: Rel (  -121,  -143)  ->  Abs (  1198,   -34)
+	 31: Rel (  -109,    70)  ->  Abs (  1089,    36)
+	 32: Rel (  -482,   901)  ->  Abs (   607,   937)
+	 33: Rel (   117,    69)  ->  Abs (   724,  1006)
+	 34: Rel (    69,   104)  ->  Abs (   793,  1110)
+	 35: Rel (     0,    63)  ->  Abs (   793,  1173)
+	 36: Rel (     0,    75)  ->  Abs (   793,  1248)
+	 37: Rel (   -95,    95)  ->  Abs (   698,  1343)
+	 38: Rel (   -71,     0)  ->  Abs (   627,  1343)
+	 39: Rel (   -73,     0)  ->  Abs (   554,  1343)
+	 40: Rel (   -97,   -94)  ->  Abs (   457,  1249)
+	 41: Rel (     0,   -68)  ->  Abs (   457,  1181)
+	 42: Rel (     0,   -34)  ->  Abs (   457,  1147)
+	 43: Rel (    35,   -75)  ->  Abs (   492,  1072)
+	 44: Rel (    35,   -42)  ->  Abs (   527,  1030)
+	 45: Rel (   333,  -715)  ->  Abs (   860,   315)
+	 46: Rel (  -330,   409)  ->  Abs (   530,   724)
+	 47: Rel (  -146,   -87)  ->  Abs (   384,   637)
+	 48: Rel (  -102,  -149)  ->  Abs (   282,   488)
+	 49: Rel (     0,   -73)  ->  Abs (   282,   415)
+	 50: Rel (     0,   -89)  ->  Abs (   282,   326)
+	 51: Rel (   142,  -192)  ->  Abs (   424,   134)
+	 52: Rel (   130,     0)  ->  Abs (   554,   134)
+	 53: Rel (    81,     0)  ->  Abs (   635,   134)
+	 54: Rel (   173,   101)  ->  Abs (   808,   235)
+
+	Glyph  10: off = 0x0000097A, len = 70
+	  numberOfContours:	1
+	  xMin:			90
+	  yMin:			947
+	  xMax:			295
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	38
+	00000: NPUSHB      (21):     0     5     3     1     5   238     2     0     3   129 
+	                            32     1   144     1     2     1   106     6   113   167 
+	                            24 
+	00023: CALL       
+	00024: SRP0       
+	00025: MIRP[srp0,nmd,rd,2] 
+	00026: DELTAP1    
+	00027: MIRP[nrp0,md,rd,1] 
+	00028: SVTCA[y-axis] 
+	00029: MIAP[rd+ci] 
+	00030: MIRP[nrp0,md,rd,1] 
+	00031: SVTCA[x-axis] 
+	00032: SRP1       
+	00033: SRP2       
+	00034: IP         
+	00035: IP         
+	00036: IUP[y]     
+	00037: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:                              X-Short On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual                 X-Short On
+	  4:        XDual         Y-Short         On
+	  5:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   136,   947)  ->  Abs (   136,   947)
+	  1: Rel (   -46,   274)  ->  Abs (    90,  1221)
+	  2: Rel (     0,   245)  ->  Abs (    90,  1466)
+	  3: Rel (   205,     0)  ->  Abs (   295,  1466)
+	  4: Rel (     0,  -245)  ->  Abs (   295,  1221)
+	  5: Rel (   -48,  -274)  ->  Abs (   247,   947)
+
+	Glyph  11: off = 0x000009C0, len = 128
+	  numberOfContours:	1
+	  xMin:			124
+	  yMin:			-431
+	  xMax:			608
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  16
+
+	  Length of Instructions:	61
+	00000: NPUSHB      (10):    39    15     1     0    16    18     7     8    16    16 
+	00012: PUSHW[1]            307 
+	00015: PUSHB[4]              0   159    14     8 
+	00020: PUSHW[1]            307 
+	00023: NPUSHB      (17):     7   159    14    94     0     3    16     3    32     3 
+	                             3     3   172    17   157   140    24 
+	00042: CALL       
+	00043: SRP0       
+	00044: MIRP[srp0,nmd,rd,2] 
+	00045: DELTAP1    
+	00046: MIRP[srp0,md,rd,1] 
+	00047: MIRP[srp0,nmd,rd,2] 
+	00048: MIRP[nrp0,md,rd,1] 
+	00049: SRP0       
+	00050: MIRP[srp0,nmd,rd,2] 
+	00051: MIRP[nrp0,md,rd,1] 
+	00052: SVTCA[y-axis] 
+	00053: MIAP[rd+ci] 
+	00054: ALIGNRP    
+	00055: MIAP[rd+ci] 
+	00056: ALIGNRP    
+	00057: IUP[y]     
+	00058: IUP[x]     
+	00059: SVTCA[x-axis] 
+	00060: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:                              X-Short Off
+	  3:        XDual                         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual XDual                 X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual                         Off
+	 16:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   479,  -431)  ->  Abs (   479,  -431)
+	  1: Rel (  -149,   188)  ->  Abs (   330,  -243)
+	  2: Rel (  -206,   504)  ->  Abs (   124,   261)
+	  3: Rel (     0,   270)  ->  Abs (   124,   531)
+	  4: Rel (     0,   238)  ->  Abs (   124,   769)
+	  5: Rel (    77,   218)  ->  Abs (   201,   987)
+	  6: Rel (    90,   253)  ->  Abs (   291,  1240)
+	  7: Rel (   188,   251)  ->  Abs (   479,  1491)
+	  8: Rel (   129,     0)  ->  Abs (   608,  1491)
+	  9: Rel (  -121,  -208)  ->  Abs (   487,  1283)
+	 10: Rel (   -39,   -89)  ->  Abs (   448,  1194)
+	 11: Rel (   -61,  -138)  ->  Abs (   387,  1056)
+	 12: Rel (   -35,  -150)  ->  Abs (   352,   906)
+	 13: Rel (   -43,  -187)  ->  Abs (   309,   719)
+	 14: Rel (     0,  -189)  ->  Abs (   309,   530)
+	 15: Rel (     0,  -481)  ->  Abs (   309,    49)
+	 16: Rel (   299,  -480)  ->  Abs (   608,  -431)
+
+	Glyph  12: off = 0x00000A40, len = 166
+	  numberOfContours:	1
+	  xMin:			124
+	  yMin:			-431
+	  xMax:			608
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  16
+
+	  Length of Instructions:	101
+	00000: NPUSHB      (12):    40     2    40    16     2     9    10    16     1     0 
+	                            18     9 
+	00014: PUSHW[1]            307 
+	00017: PUSHB[4]             10   159     3     1 
+	00022: PUSHW[1]            307 
+	00025: PUSHB[5]              0   159     3    94    14 
+	00031: PUSHW[1]            -16 
+	00034: PUSHB[5]             16    16     2    85    14 
+	00040: PUSHW[1]             -8 
+	00043: PUSHB[5]             15    15     2    85    14 
+	00049: PUSHW[1]            -28 
+	00052: PUSHB[5]             13    13     2    85    14 
+	00058: PUSHW[1]            -20 
+	00061: NPUSHB      (15):    10    10     2    85    15    14    31    14     2    14 
+	                           172    18   157   140    24 
+	00078: CALL       
+	00079: SRP0       
+	00080: MIRP[srp0,nmd,rd,2] 
+	00081: DELTAP1    
+	00082: CALL       
+	00083: CALL       
+	00084: CALL       
+	00085: CALL       
+	00086: MIRP[srp0,md,rd,1] 
+	00087: MIRP[srp0,nmd,rd,2] 
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: SRP0       
+	00090: MIRP[srp0,nmd,rd,2] 
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: SVTCA[y-axis] 
+	00093: MIAP[rd+ci] 
+	00094: ALIGNRP    
+	00095: MIAP[rd+ci] 
+	00096: ALIGNRP    
+	00097: IUP[y]     
+	00098: IUP[x]     
+	00099: SVTCA[x-axis] 
+	00100: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                       X-Short On
+	  2:                                      Off
+	  3:        XDual                         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual XDual                 X-Short On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual                         Off
+	 16:                              X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   253,  -431)  ->  Abs (   253,  -431)
+	  1: Rel (  -129,     0)  ->  Abs (   124,  -431)
+	  2: Rel (   299,   480)  ->  Abs (   423,    49)
+	  3: Rel (     0,   481)  ->  Abs (   423,   530)
+	  4: Rel (     0,   188)  ->  Abs (   423,   718)
+	  5: Rel (   -43,   185)  ->  Abs (   380,   903)
+	  6: Rel (   -34,   150)  ->  Abs (   346,  1053)
+	  7: Rel (   -61,   138)  ->  Abs (   285,  1191)
+	  8: Rel (   -39,    90)  ->  Abs (   246,  1281)
+	  9: Rel (  -122,   210)  ->  Abs (   124,  1491)
+	 10: Rel (   129,     0)  ->  Abs (   253,  1491)
+	 11: Rel (   188,  -251)  ->  Abs (   441,  1240)
+	 12: Rel (    90,  -253)  ->  Abs (   531,   987)
+	 13: Rel (    77,  -218)  ->  Abs (   608,   769)
+	 14: Rel (     0,  -238)  ->  Abs (   608,   531)
+	 15: Rel (     0,  -270)  ->  Abs (   608,   261)
+	 16: Rel (  -207,  -504)  ->  Abs (   401,  -243)
+
+	Glyph  13: off = 0x00000AE6, len = 224
+	  numberOfContours:	1
+	  xMin:			64
+	  yMin:			867
+	  xMax:			725
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  24
+
+	  Length of Instructions:	134
+	00000: NPUSHB      (74):    11     1    11    10    27     1    27    10     4    10 
+	                             9    12    14    15    16    17     7     6    11     1 
+	                             2    24    22    21    20    19     7     0     4     3 
+	                             8    23    18    13     7     7     6     5    24    23 
+	                            22    21    19    18    17    16    15    13    12    11 
+	                            20     4     7     3     8     1    10     6     5    11 
+	                             0     0    16    32    20     1    20   191     6     5 
+	                             0    11   165     6 
+	00076: PUSHW[1]            405 
+	00079: NPUSHB      (13):     5   165     0    64    17    19    52     0    25    25 
+	                           112   140    24 
+	00094: CALL       
+	00095: FLIPOFF    
+	00096: SRP0       
+	00097: MIRP[srp0,nmd,rd,0] 
+	00098: CALL       
+	00099: FLIPON     
+	00100: MIRP[srp0,nmd,rd,0] 
+	00101: MIRP[srp0,md,rd,1] 
+	00102: MIRP[nrp0,nmd,rd,0] 
+	00103: SVTCA[y-axis] 
+	00104: MIAP[rd+ci] 
+	00105: ALIGNRP    
+	00106: MIRP[srp0,md,rd,1] 
+	00107: DELTAP1    
+	00108: ALIGNRP    
+	00109: IP         
+	00110: MDAP[rd]   
+	00111: ALIGNRP    
+	00112: SRP2       
+	00113: SLOOP      
+	00114: IP         
+	00115: SRP2       
+	00116: SLOOP      
+	00117: IP         
+	00118: SVTCA[x-axis] 
+	00119: SRP1       
+	00120: SRP2       
+	00121: SLOOP      
+	00122: IP         
+	00123: SRP2       
+	00124: SLOOP      
+	00125: IP         
+	00126: SRP1       
+	00127: SRP2       
+	00128: SLOOP      
+	00129: IP         
+	00130: IUP[y]     
+	00131: IUP[x]     
+	00132: SVTCA[y-axis] 
+	00133: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual XDual                 X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:                      Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:                      Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short On
+	 16:                      Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual               Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:  YDual               Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    64,  1197)  ->  Abs (    64,  1197)
+	  1: Rel (    46,   142)  ->  Abs (   110,  1339)
+	  2: Rel (   159,   -56)  ->  Abs (   269,  1283)
+	  3: Rel (    72,   -41)  ->  Abs (   341,  1242)
+	  4: Rel (   -19,   181)  ->  Abs (   322,  1423)
+	  5: Rel (    -1,    68)  ->  Abs (   321,  1491)
+	  6: Rel (   145,     0)  ->  Abs (   466,  1491)
+	  7: Rel (    -3,   -99)  ->  Abs (   463,  1392)
+	  8: Rel (   -20,  -149)  ->  Abs (   443,  1243)
+	  9: Rel (   103,    52)  ->  Abs (   546,  1295)
+	 10: Rel (   133,    44)  ->  Abs (   679,  1339)
+	 11: Rel (    46,  -142)  ->  Abs (   725,  1197)
+	 12: Rel (  -127,   -42)  ->  Abs (   598,  1155)
+	 13: Rel (  -122,   -14)  ->  Abs (   476,  1141)
+	 14: Rel (    61,   -53)  ->  Abs (   537,  1088)
+	 15: Rel (   111,  -136)  ->  Abs (   648,   952)
+	 16: Rel (  -120,   -85)  ->  Abs (   528,   867)
+	 17: Rel (   -58,    79)  ->  Abs (   470,   946)
+	 18: Rel (   -79,   136)  ->  Abs (   391,  1082)
+	 19: Rel (   -74,  -141)  ->  Abs (   317,   941)
+	 20: Rel (   -56,   -74)  ->  Abs (   261,   867)
+	 21: Rel (  -118,    85)  ->  Abs (   143,   952)
+	 22: Rel (   116,   143)  ->  Abs (   259,  1095)
+	 23: Rel (    50,    46)  ->  Abs (   309,  1141)
+	 24: Rel (  -129,    25)  ->  Abs (   180,  1166)
+
+	Glyph  14: off = 0x00000BC6, len = 104
+	  numberOfContours:	1
+	  xMin:			114
+	  yMin:			237
+	  xMax:			1082
+	  yMax:			1206
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	56
+	00000: NPUSHB      (31):     0   110     9     2   249     8     3   110     5     7 
+	                             6     9   110    10     4    10   249     5     1   110 
+	                            63     2    79     2     2     2    25    12    87    90 
+	                            24 
+	00033: CALL       
+	00034: FLIPOFF    
+	00035: SRP0       
+	00036: MIRP[srp0,nmd,rd,0] 
+	00037: DELTAP1    
+	00038: FLIPON     
+	00039: MIRP[srp0,nmd,rd,0] 
+	00040: ALIGNRP    
+	00041: MIRP[nrp0,md,rd,1] 
+	00042: ALIGNRP    
+	00043: SRP0       
+	00044: MIRP[nrp0,nmd,rd,0] 
+	00045: ALIGNRP    
+	00046: ALIGNRP    
+	00047: SVTCA[y-axis] 
+	00048: MDAP[rd]   
+	00049: MIRP[srp0,nmd,rd,0] 
+	00050: ALIGNRP    
+	00051: MIRP[srp0,md,rd,1] 
+	00052: ALIGNRP    
+	00053: MIRP[srp0,nmd,rd,0] 
+	00054: IUP[y]     
+	00055: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:  YDual                               On
+	  9:        XDual         Y-Short         On
+	 10:  YDual                               On
+	 11:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   513,   237)  ->  Abs (   513,   237)
+	  1: Rel (     0,   402)  ->  Abs (   513,   639)
+	  2: Rel (  -399,     0)  ->  Abs (   114,   639)
+	  3: Rel (     0,   168)  ->  Abs (   114,   807)
+	  4: Rel (   399,     0)  ->  Abs (   513,   807)
+	  5: Rel (     0,   399)  ->  Abs (   513,  1206)
+	  6: Rel (   170,     0)  ->  Abs (   683,  1206)
+	  7: Rel (     0,  -399)  ->  Abs (   683,   807)
+	  8: Rel (   399,     0)  ->  Abs (  1082,   807)
+	  9: Rel (     0,  -168)  ->  Abs (  1082,   639)
+	 10: Rel (  -399,     0)  ->  Abs (   683,   639)
+	 11: Rel (     0,  -402)  ->  Abs (   683,   237)
+
+	Glyph  15: off = 0x00000C2E, len = 120
+	  numberOfContours:	1
+	  xMin:			170
+	  yMin:			-290
+	  xMax:			387
+	  yMax:			205
+
+	EndPoints
+	---------
+	  0:  10
+
+	  Length of Instructions:	78
+	00000: PUSHB[6]             10     3     0     7   171     6 
+	00007: PUSHW[1]            336 
+	00010: NPUSHB      (38):     1     3    60     2     2     1    10     1    60     0 
+	                            10     2     3     1     3    60     0     6    56     7 
+	                            58    79     0    95     0   111     0   127     0   160 
+	                             0     5     0   160    11   161   152    24 
+	00050: CALL       
+	00051: SRP0       
+	00052: MIRP[srp0,nmd,rd,0] 
+	00053: DELTAP1    
+	00054: MIRP[srp0,nmd,rd,0] 
+	00055: MIRP[nrp0,nmd,rd,0] 
+	00056: SRP0       
+	00057: MIRP[nrp0,md,rd,1] 
+	00058: ALIGNRP    
+	00059: SRP0       
+	00060: ALIGNRP    
+	00061: SVTCA[y-axis] 
+	00062: MIAP[rd+ci] 
+	00063: MIRP[nrp0,md,rd,1] 
+	00064: ALIGNRP    
+	00065: SRP0       
+	00066: ALIGNRP    
+	00067: SRP0       
+	00068: MIRP[nrp0,md,rd,1] 
+	00069: SRP0       
+	00070: MIRP[srp0,md,rd,1] 
+	00071: MIRP[nrp0,md,rd,1] 
+	00072: SVTCA[x-axis] 
+	00073: SRP1       
+	00074: SRP2       
+	00075: IP         
+	00076: IUP[y]     
+	00077: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   182,     0)  ->  Abs (   182,     0)
+	  1: Rel (     0,   205)  ->  Abs (   182,   205)
+	  2: Rel (   205,     0)  ->  Abs (   387,   205)
+	  3: Rel (     0,  -205)  ->  Abs (   387,     0)
+	  4: Rel (     0,  -113)  ->  Abs (   387,  -113)
+	  5: Rel (   -80,  -139)  ->  Abs (   307,  -252)
+	  6: Rel (   -87,   -38)  ->  Abs (   220,  -290)
+	  7: Rel (   -50,    77)  ->  Abs (   170,  -213)
+	  8: Rel (    57,    25)  ->  Abs (   227,  -188)
+	  9: Rel (    54,    97)  ->  Abs (   281,   -91)
+	 10: Rel (     3,    91)  ->  Abs (   284,     0)
+
+	Glyph  16: off = 0x00000CA6, len = 70
+	  numberOfContours:	1
+	  xMin:			65
+	  yMin:			440
+	  xMax:			618
+	  yMax:			621
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	44
+	00000: NPUSHB      (25):   112     2   112     3     2    77     1    77     2     2 
+	                             1    35     0     2    26     5   112     0     1     0 
+	                            25     4   112   141    24 
+	00027: CALL       
+	00028: FLIPOFF    
+	00029: SRP0       
+	00030: MIRP[nrp0,nmd,rd,0] 
+	00031: DELTAP1    
+	00032: SRP0       
+	00033: MIRP[nrp0,nmd,rd,2] 
+	00034: SVTCA[y-axis] 
+	00035: MDAP[rd]   
+	00036: FLIPON     
+	00037: MIRP[nrp0,md,rd,1] 
+	00038: IUP[y]     
+	00039: IUP[x]     
+	00040: SVTCA[y-axis] 
+	00041: DELTAP2    
+	00042: SVTCA[x-axis] 
+	00043: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (    65,   440)  ->  Abs (    65,   440)
+	  1: Rel (     0,   181)  ->  Abs (    65,   621)
+	  2: Rel (   553,     0)  ->  Abs (   618,   621)
+	  3: Rel (     0,  -181)  ->  Abs (   618,   440)
+
+	Glyph  17: off = 0x00000CEC, len = 60
+	  numberOfContours:	1
+	  xMin:			186
+	  yMin:			0
+	  xMax:			391
+	  yMax:			205
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	37
+	00000: NPUSHB      (24):     2    60     0    10     2    60    95     0   111     0 
+	                           127     0   175     0     4   160     0     1     0   160 
+	                             4   161   152    24 
+	00026: CALL       
+	00027: SRP0       
+	00028: MIRP[srp0,nmd,rd,2] 
+	00029: DELTAP1    
+	00030: DELTAP1    
+	00031: MIRP[nrp0,md,rd,1] 
+	00032: SVTCA[y-axis] 
+	00033: MIAP[rd+ci] 
+	00034: MIRP[nrp0,md,rd,1] 
+	00035: IUP[y]     
+	00036: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   186,     0)  ->  Abs (   186,     0)
+	  1: Rel (     0,   205)  ->  Abs (   186,   205)
+	  2: Rel (   205,     0)  ->  Abs (   391,   205)
+	  3: Rel (     0,  -205)  ->  Abs (   391,     0)
+
+	Glyph  18: off = 0x00000D28, len = 112
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-25
+	  xMax:			569
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	83
+	00000: PUSHW[2]              3   -34 
+	00005: PUSHB[3]             20    57     2 
+	00009: PUSHW[1]            -34 
+	00012: NPUSHB      (32):    20    57   151     3     1     2     3   159     3   175 
+	                             3     2     3   118     0     1    20     0     0     1 
+	                             2     1     0     3     0    10     3   232     0     2 
+	                           232     1 
+	00046: PUSHW[1]            425 
+	00049: PUSHB[6]              0     0     4   179   122    24 
+	00056: CALL       
+	00057: SRP0       
+	00058: ALIGNRP    
+	00059: SRP0       
+	00060: MIRP[srp0,nmd,rd,0] 
+	00061: MIRP[nrp0,md,rd,1] 
+	00062: SRP0       
+	00063: MIRP[nrp0,md,rd,1] 
+	00064: SVTCA[y-axis] 
+	00065: MIAP[rd+ci] 
+	00066: ALIGNRP    
+	00067: MIAP[rd+ci] 
+	00068: ALIGNRP    
+	00069: SDPVTL[1]  
+	00070: SFVTCA[x-axis] 
+	00071: MDAP[nrd]  
+	00072: CALL       
+	00073: DELTAP1    
+	00074: RDTG       
+	00075: SRP0       
+	00076: MDRP[nrp0,nmd,rd,0] 
+	00077: IUP[y]     
+	00078: IUP[x]     
+	00079: SVTCA[x-axis] 
+	00080: DELTAP1    
+	00081: CALL       
+	00082: CALL       
+
+	Flags
+	-----
+	  0:        XDual         Y-Short         On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (     0,   -25)  ->  Abs (     0,   -25)
+	  1: Rel (   425,  1516)  ->  Abs (   425,  1491)
+	  2: Rel (   144,     0)  ->  Abs (   569,  1491)
+	  3: Rel (  -424, -1516)  ->  Abs (   145,   -25)
+
+	Glyph  19: off = 0x00000D98, len = 444
+	  numberOfContours:	2
+	  xMin:			85
+	  yMin:			-25
+	  xMax:			1041
+	  yMax:			1472
+
+	EndPoints
+	---------
+	  0:  16
+	  1:  29
+
+	  Length of Instructions:	341
+	00000: PUSHB[2]              2     2 
+	00003: RS         
+	00004: EQ         
+	00005: IF         
+	00006: NPUSHB      (10):    26    30     4     5    20    30    13    13    23     9 
+	00018: PUSHW[1]            -24 
+	00021: PUSHB[5]             15    15     2    85     9 
+	00027: PUSHW[1]            -24 
+	00030: NPUSHB      (25):    13    13     2    85     9    17     0    12    15    15 
+	                             2    85     0    22    12    12     2    85     0    12 
+	                            13    13     2    85     0 
+	00057: MDAP[rd]   
+	00058: CALL       
+	00059: CALL       
+	00060: CALL       
+	00061: MDRP[nrp0,md,rd,1] 
+	00062: MDAP[rd]   
+	00063: CALL       
+	00064: CALL       
+	00065: MDRP[nrp0,md,rd,1] 
+	00066: SVTCA[y-axis] 
+	00067: MIAP[rd+ci] 
+	00068: MIRP[nrp0,md,rd,1] 
+	00069: MIAP[rd+ci] 
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: IUP[y]     
+	00072: IUP[x]     
+	00073: ELSE       
+	00074: PUSHB[2]              6     2 
+	00077: RS         
+	00078: EQ         
+	00079: IF         
+	00080: NPUSHB      (10):    26    30     4     5    20    30    13    13    23     9 
+	00092: PUSHW[1]            -12 
+	00095: PUSHB[5]             15    15     6    85     9 
+	00101: PUSHW[1]            -26 
+	00104: PUSHB[5]             13    13     6    85     9 
+	00110: PUSHW[1]            -18 
+	00113: NPUSHB      (25):    11    11     6    85     9    17     0    16    13    13 
+	                             6    85     0    16    12    12     6    85     0    16 
+	                            11    11     6    85     0 
+	00140: MDAP[rd]   
+	00141: CALL       
+	00142: CALL       
+	00143: CALL       
+	00144: MDRP[nrp0,md,rd,1] 
+	00145: MDAP[rd]   
+	00146: CALL       
+	00147: CALL       
+	00148: CALL       
+	00149: MDRP[nrp0,md,rd,1] 
+	00150: SVTCA[y-axis] 
+	00151: MIAP[rd+ci] 
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: MIAP[rd+ci] 
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: IUP[y]     
+	00156: IUP[x]     
+	00157: ELSE       
+	00158: PUSHB[5]              6    32    25    16    28 
+	00164: PUSHW[1]            -16 
+	00167: PUSHB[3]              2    32    11 
+	00171: PUSHW[7]            -32    22   -32    18   -32    15   -32 
+	00186: NPUSHB      (98):     4     6   135     2   136    11   136    15   201    14 
+	                             5     9     7    11    24     2    69    19    76    21 
+	                            74    25    67    27    84    19    92    21    92    25 
+	                            82    27   107     7   107    11    99    19   108    21 
+	                           107    25    96    27   121     2   119     6   118    11 
+	                           122    15   135     6   152     7   150    16   201    24 
+	                           218     2   214     6   214    11   219    15    26    26 
+	                            30     4     5    20    30    13    13    23   115     9 
+	                            64    33    35    52    48     9     1     0     9    16 
+	                             9     2     9   144    31    17   115     0 
+	00286: PUSHW[1]            -64 
+	00289: NPUSHB      (14):    33    35    52    32     0    64     0     2     0   144 
+	                            30   199   139    24 
+	00305: CALL       
+	00306: SRP0       
+	00307: MIRP[srp0,nmd,rd,2] 
+	00308: DELTAP1    
+	00309: CALL       
+	00310: MIRP[nrp0,md,rd,1] 
+	00311: SRP0       
+	00312: MIRP[srp0,nmd,rd,2] 
+	00313: DELTAP1    
+	00314: DELTAP2    
+	00315: CALL       
+	00316: MIRP[nrp0,md,rd,1] 
+	00317: SVTCA[y-axis] 
+	00318: MIAP[rd+ci] 
+	00319: MIRP[nrp0,md,rd,1] 
+	00320: MIAP[rd+ci] 
+	00321: MIRP[nrp0,md,rd,1] 
+	00322: IUP[y]     
+	00323: IUP[x]     
+	00324: SVTCA[x-axis] 
+	00325: DELTAP1    
+	00326: DELTAP2    
+	00327: SVTCA[y-axis] 
+	00328: DELTAP1    
+	00329: SVTCA[y-axis] 
+	00330: SHPIX      
+	00331: SHPIX      
+	00332: SHPIX      
+	00333: SHPIX      
+	00334: SHPIX      
+	00335: SVTCA[x-axis] 
+	00336: SHPIX      
+	00337: SHPIX      
+	00338: SHPIX      
+	00339: EIF        
+	00340: EIF        
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         Off
+	  2:        XDual                 X-Short Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual                         Off
+	 11:                              X-Short Off
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:        XDual                 X-Short On
+	 18:        XDual                         Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:        XDual                         On
+	 24:        XDual                         Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:                      Y-Short X-Short On
+	 29:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    85,   723)  ->  Abs (    85,   723)
+	  1: Rel (     0,   260)  ->  Abs (    85,   983)
+	  2: Rel (   107,   317)  ->  Abs (   192,  1300)
+	  3: Rel (   211,   172)  ->  Abs (   403,  1472)
+	  4: Rel (   160,     0)  ->  Abs (   563,  1472)
+	  5: Rel (   118,     0)  ->  Abs (   681,  1472)
+	  6: Rel (   178,   -95)  ->  Abs (   859,  1377)
+	  7: Rel (   116,  -179)  ->  Abs (   975,  1198)
+	  8: Rel (    66,  -257)  ->  Abs (  1041,   941)
+	  9: Rel (     0,  -218)  ->  Abs (  1041,   723)
+	 10: Rel (     0,  -258)  ->  Abs (  1041,   465)
+	 11: Rel (  -106,  -317)  ->  Abs (   935,   148)
+	 12: Rel (  -211,  -173)  ->  Abs (   724,   -25)
+	 13: Rel (  -161,     0)  ->  Abs (   563,   -25)
+	 14: Rel (  -212,     0)  ->  Abs (   351,   -25)
+	 15: Rel (  -121,   152)  ->  Abs (   230,   127)
+	 16: Rel (  -145,   183)  ->  Abs (    85,   310)
+	 17: Rel (   185,   413)  ->  Abs (   270,   723)
+	 18: Rel (     0,  -361)  ->  Abs (   270,   362)
+	 19: Rel (   169,  -239)  ->  Abs (   439,   123)
+	 20: Rel (   124,     0)  ->  Abs (   563,   123)
+	 21: Rel (   124,     0)  ->  Abs (   687,   123)
+	 22: Rel (   169,   240)  ->  Abs (   856,   363)
+	 23: Rel (     0,   360)  ->  Abs (   856,   723)
+	 24: Rel (     0,   362)  ->  Abs (   856,  1085)
+	 25: Rel (  -169,   238)  ->  Abs (   687,  1323)
+	 26: Rel (  -126,     0)  ->  Abs (   561,  1323)
+	 27: Rel (  -124,     0)  ->  Abs (   437,  1323)
+	 28: Rel (   -74,  -105)  ->  Abs (   363,  1218)
+	 29: Rel (   -93,  -134)  ->  Abs (   270,  1084)
+
+	Glyph  20: off = 0x00000F54, len = 220
+	  numberOfContours:	1
+	  xMin:			223
+	  yMin:			0
+	  xMax:			763
+	  yMax:			1472
+
+	EndPoints
+	---------
+	  0:  10
+
+	  Length of Instructions:	175
+	00000: NPUSHB      (32):     3    64    13    17    52   107     4   127     2   143 
+	                             2   153     8     4   172     4     1     9     0     6 
+	                             5     2     3     9     5     1    12     2     1   202 
+	                            10     0 
+	00034: PUSHW[1]            -64 
+	00037: NPUSHB      (10):    33    35    52    48     0     1    32     0     1     0 
+	00049: PUSHW[1]            -32 
+	00052: PUSHB[5]             16    16     2    85     0 
+	00058: PUSHW[1]            -22 
+	00061: NPUSHB      (17):    15    15     2    85     0    28    12    12     2    85 
+	                             0    14    13    13     2    85     0 
+	00080: PUSHW[1]            -16 
+	00083: NPUSHB      (25):    15    15     6    85     0    16    12    12     6    85 
+	                             0    16    13    13     6    85     0    26    12     5 
+	                            64    13    15    52     5 
+	00110: PUSHW[1]            -64 
+	00113: NPUSHB      (14):    33    35    52    48     5     1    32     5    64     5 
+	                             2     5    25    11 
+	00129: PUSHW[3]            316   389    24 
+	00136: CALL       
+	00137: FLIPOFF    
+	00138: SRP0       
+	00139: MIRP[nrp0,nmd,rd,0] 
+	00140: DELTAP1    
+	00141: DELTAP2    
+	00142: CALL       
+	00143: CALL       
+	00144: SRP0       
+	00145: MIRP[srp0,nmd,rd,2] 
+	00146: CALL       
+	00147: CALL       
+	00148: CALL       
+	00149: CALL       
+	00150: CALL       
+	00151: CALL       
+	00152: CALL       
+	00153: DELTAP1    
+	00154: DELTAP2    
+	00155: CALL       
+	00156: ALIGNRP    
+	00157: FLIPON     
+	00158: MIRP[srp0,md,rd,1] 
+	00159: ALIGNRP    
+	00160: SVTCA[y-axis] 
+	00161: MIAP[rd+ci] 
+	00162: MIAP[rd+ci] 
+	00163: SLOOP      
+	00164: IP         
+	00165: SVTCA[x-axis] 
+	00166: SRP1       
+	00167: IP         
+	00168: IUP[y]     
+	00169: IUP[x]     
+	00170: SVTCA[x-axis] 
+	00171: DELTAP1    
+	00172: SVTCA[y-axis] 
+	00173: DELTAP1    
+	00174: CALL       
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short Off
+	  5:                      Y-Short X-Short On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   763,     0)  ->  Abs (   763,     0)
+	  1: Rel (  -180,     0)  ->  Abs (   583,     0)
+	  2: Rel (     0,  1147)  ->  Abs (   583,  1147)
+	  3: Rel (   -65,   -62)  ->  Abs (   518,  1085)
+	  4: Rel (  -211,  -124)  ->  Abs (   307,   961)
+	  5: Rel (   -84,   -31)  ->  Abs (   223,   930)
+	  6: Rel (     0,   174)  ->  Abs (   223,  1104)
+	  7: Rel (   151,    71)  ->  Abs (   374,  1175)
+	  8: Rel (   226,   202)  ->  Abs (   600,  1377)
+	  9: Rel (    47,    95)  ->  Abs (   647,  1472)
+	 10: Rel (   116,     0)  ->  Abs (   763,  1472)
+
+	Glyph  21: off = 0x00001030, len = 554
+	  numberOfContours:	1
+	  xMin:			60
+	  yMin:			0
+	  xMax:			1031
+	  yMax:			1472
+
+	EndPoints
+	---------
+	  0:  30
+
+	  Length of Instructions:	455
+	00000: PUSHB[2]              6     2 
+	00003: RS         
+	00004: EQ         
+	00005: IF         
+	00006: NPUSHB       (9):    17    16    13    24    19    19     6    85    13 
+	00017: PUSHW[1]            -12 
+	00020: PUSHB[5]             17    17     6    85    13 
+	00026: PUSHW[1]            -18 
+	00029: NPUSHB       (9):    16    16     6    85    13    30    20     5    30 
+	00040: PUSHW[1]            -24 
+	00043: NPUSHB      (23):    19    19     6    85    30    30    17    17     6    85 
+	                            30    28    14    16     6    85    30    12    13    13 
+	                             6    85    30 
+	00068: PUSHW[1]            699 
+	00071: NPUSHB      (12):     2    10    23    23    32    31    16    17     2     2 
+	                            32    31 
+	00085: SRP1       
+	00086: SRP2       
+	00087: IP         
+	00088: MDAP[rd]   
+	00089: MDRP[srp0,nmd,rd,0] 
+	00090: MDRP[nrp0,md,rd,1] 
+	00091: SRP1       
+	00092: SRP2       
+	00093: IP         
+	00094: MDAP[rd]   
+	00095: MDRP[nrp0,md,rd,1] 
+	00096: SVTCA[y-axis] 
+	00097: MDAP[rd]   
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: CALL       
+	00100: CALL       
+	00101: CALL       
+	00102: CALL       
+	00103: MIAP[rd+ci] 
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: CALL       
+	00106: CALL       
+	00107: CALL       
+	00108: MDRP[nrp0,nmd,rd,0] 
+	00109: SHP[rp2,zp1] 
+	00110: IUP[y]     
+	00111: IUP[x]     
+	00112: ELSE       
+	00113: PUSHB[2]              2     2 
+	00116: RS         
+	00117: EQ         
+	00118: IF         
+	00119: NPUSHB       (9):    17    16    13    12    18    18     2    85    13 
+	00130: PUSHW[1]            -12 
+	00133: NPUSHB       (9):    15    17     2    85    13    30    20     5    30 
+	00144: PUSHW[1]            -32 
+	00147: NPUSHB      (11):    18    19     2    85    30    20    15    17     2    85 
+	                            30 
+	00160: PUSHW[1]            699 
+	00163: PUSHB[3]              2    10    23 
+	00167: PUSHW[1]            -24 
+	00170: PUSHB[5]             11    11     2    85    23 
+	00176: PUSHW[1]            -20 
+	00179: NPUSHB      (14):    13    13     2    85    23    23    32    31    16    17 
+	                             2     2    32    31 
+	00195: SRP1       
+	00196: SRP2       
+	00197: IP         
+	00198: MDAP[rd]   
+	00199: MDRP[srp0,nmd,rd,0] 
+	00200: MDRP[nrp0,md,rd,1] 
+	00201: SRP1       
+	00202: SRP2       
+	00203: IP         
+	00204: MDAP[rd]   
+	00205: CALL       
+	00206: CALL       
+	00207: MDRP[nrp0,md,rd,1] 
+	00208: SVTCA[y-axis] 
+	00209: MDAP[rd]   
+	00210: MIRP[nrp0,md,rd,1] 
+	00211: CALL       
+	00212: CALL       
+	00213: MIAP[rd+ci] 
+	00214: MIRP[nrp0,md,rd,1] 
+	00215: CALL       
+	00216: CALL       
+	00217: MDRP[nrp0,nmd,rd,0] 
+	00218: SHP[rp2,zp1] 
+	00219: IUP[y]     
+	00220: IUP[x]     
+	00221: ELSE       
+	00222: NPUSHB      (54):    59     5    59     6   187     5   191     6   187     7 
+	                           199     8   201    28     7    73    12    89    12    84 
+	                            14   107    12   100    14   122    18   122    19   137 
+	                            18   188    18   229    26   229    27   240    26    12 
+	                           191    11   183    19     2    27    16    28    16    29 
+	                            16    30    16     6 
+	00278: PUSHW[7]            -16     7   -32     8   -16     9   -16 
+	00293: NPUSHB      (26):    30    10    16     8     6     6   202    28    26    20 
+	                            28    28    26     8    28    26     3     1     2     8 
+	                            26    28     3    13    30    16 
+	00321: PUSHW[1]            676 
+	00324: PUSHB[4]             79    17     1    17 
+	00329: PUSHW[1]            280 
+	00332: PUSHB[6]             13    30    20     5     0    30 
+	00339: PUSHW[1]            699 
+	00342: NPUSHB      (15):     1     2    12    10   115    23   211     0     0     1 
+	                            64    33    35    52     1 
+	00359: PUSHW[4]            641    32    16   312 
+	00368: NPUSHB      (12):    17   181    63     2    95     2   111     2   127     2 
+	                             4     2 
+	00382: PUSHW[3]            548    31   399 
+	00389: PUSHB[2]            139    24 
+	00392: CALL       
+	00393: SRP0       
+	00394: MIRP[srp0,nmd,rd,2] 
+	00395: DELTAP1    
+	00396: MIRP[srp0,nmd,rd,0] 
+	00397: MIRP[nrp0,md,rd,1] 
+	00398: SRP0       
+	00399: MIRP[srp0,nmd,rd,2] 
+	00400: CALL       
+	00401: ALIGNRP    
+	00402: SRP0       
+	00403: MIRP[srp0,nmd,rd,0] 
+	00404: MIRP[nrp0,md,rd,1] 
+	00405: SVTCA[y-axis] 
+	00406: MIAP[rd+ci] 
+	00407: ALIGNRP    
+	00408: MIRP[srp0,md,rd,1] 
+	00409: ALIGNRP    
+	00410: MIAP[rd+ci] 
+	00411: MIRP[nrp0,md,rd,1] 
+	00412: MIRP[srp0,md,rd,1] 
+	00413: DELTAP1    
+	00414: MIRP[nrp0,nmd,rd,0] 
+	00415: SRP1       
+	00416: SRP2       
+	00417: SLOOP      
+	00418: IP         
+	00419: SVTCA[x-axis] 
+	00420: SRP1       
+	00421: SRP2       
+	00422: SLOOP      
+	00423: IP         
+	00424: SDPVTL[1]  
+	00425: SFVTPV     
+	00426: MDAP[nrd]  
+	00427: CALL       
+	00428: SFVTPV     
+	00429: RDTG       
+	00430: SRP0       
+	00431: MDRP[nrp0,nmd,rd,0] 
+	00432: SVTCA[x-axis] 
+	00433: SRP1       
+	00434: SRP2       
+	00435: IP         
+	00436: IUP[y]     
+	00437: IUP[x]     
+	00438: SVTCA[y-axis] 
+	00439: SHPIX      
+	00440: SHPIX      
+	00441: SHPIX      
+	00442: SHPIX      
+	00443: SVTCA[x-axis] 
+	00444: SHPIX      
+	00445: SHPIX      
+	00446: SHPIX      
+	00447: SHPIX      
+	00448: SVTCA[y-axis] 
+	00449: DELTAP1    
+	00450: SVTCA[x-axis] 
+	00451: DELTAP1    
+	00452: DELTAP3    
+	00453: EIF        
+	00454: EIF        
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short On
+	 28:                      Y-Short X-Short Off
+	 29:                      Y-Short X-Short Off
+	 30:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1031,   173)  ->  Abs (  1031,   173)
+	  1: Rel (     0,  -173)  ->  Abs (  1031,     0)
+	  2: Rel (  -969,     0)  ->  Abs (    62,     0)
+	  3: Rel (    -2,    65)  ->  Abs (    60,    65)
+	  4: Rel (    23,    60)  ->  Abs (    83,   125)
+	  5: Rel (    37,    99)  ->  Abs (   120,   224)
+	  6: Rel (   163,   192)  ->  Abs (   283,   416)
+	  7: Rel (   154,   126)  ->  Abs (   437,   542)
+	  8: Rel (   239,   196)  ->  Abs (   676,   738)
+	  9: Rel (   168,   229)  ->  Abs (   844,   967)
+	 10: Rel (     0,   102)  ->  Abs (   844,  1069)
+	 11: Rel (     0,   107)  ->  Abs (   844,  1176)
+	 12: Rel (  -153,   147)  ->  Abs (   691,  1323)
+	 13: Rel (  -123,     0)  ->  Abs (   568,  1323)
+	 14: Rel (  -130,     0)  ->  Abs (   438,  1323)
+	 15: Rel (  -156,  -156)  ->  Abs (   282,  1167)
+	 16: Rel (    -1,  -138)  ->  Abs (   281,  1029)
+	 17: Rel (  -185,    19)  ->  Abs (    96,  1048)
+	 18: Rel (    19,   207)  ->  Abs (   115,  1255)
+	 19: Rel (   248,   217)  ->  Abs (   363,  1472)
+	 20: Rel (   209,     0)  ->  Abs (   572,  1472)
+	 21: Rel (   211,     0)  ->  Abs (   783,  1472)
+	 22: Rel (   246,  -234)  ->  Abs (  1029,  1238)
+	 23: Rel (     0,  -173)  ->  Abs (  1029,  1065)
+	 24: Rel (     0,   -88)  ->  Abs (  1029,   977)
+	 25: Rel (   -72,  -170)  ->  Abs (   957,   807)
+	 26: Rel (  -167,  -188)  ->  Abs (   790,   619)
+	 27: Rel (  -194,  -164)  ->  Abs (   596,   455)
+	 28: Rel (  -162,  -136)  ->  Abs (   434,   319)
+	 29: Rel (   -92,   -97)  ->  Abs (   342,   222)
+	 30: Rel (   -30,   -49)  ->  Abs (   312,   173)
+
+	Glyph  22: off = 0x0000125A, len = 474
+	  numberOfContours:	1
+	  xMin:			86
+	  yMin:			-26
+	  xMax:			1046
+	  yMax:			1472
+
+	EndPoints
+	---------
+	  0:  43
+
+	  Length of Instructions:	345
+	00000: PUSHB[2]              2     2 
+	00003: RS         
+	00004: EQ         
+	00005: IF         
+	00006: NPUSHB      (11):    25    24    64    13    13     2    85    24    28     0 
+	                             1 
+	00019: PUSHW[1]            -64 
+	00022: NPUSHB      (43):    12    13     2    85     1    41    35    10    13    15 
+	                            12    15    30    10    10    41    21    30    28     4 
+	                            30    41    28     5    41    13    35    13    12    24 
+	                            25     1     0    18    32    16    12    12     2    85 
+	                            32     7    38 
+	00067: PUSHW[1]            -24 
+	00070: PUSHB[5]             12    13     2    85    38 
+	00076: MDAP[rd]   
+	00077: CALL       
+	00078: MDRP[nrp0,md,rd,1] 
+	00079: MDAP[rd]   
+	00080: CALL       
+	00081: MDRP[nrp0,md,rd,1] 
+	00082: MDAP[rd]   
+	00083: MDRP[nrp0,md,rd,1] 
+	00084: MDAP[rd]   
+	00085: MDRP[nrp0,md,rd,1] 
+	00086: MDAP[rd]   
+	00087: SVTCA[y-axis] 
+	00088: SRP2       
+	00089: IP         
+	00090: MIAP[rd+ci] 
+	00091: MIAP[rd+ci] 
+	00092: SRP0       
+	00093: MIRP[nrp0,md,rd,1] 
+	00094: SRP0       
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: SRP2       
+	00097: IP         
+	00098: MDAP[rd]   
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: MDRP[nrp0,nmd,rd,2] 
+	00101: SRP0       
+	00102: MDRP[nrp0,nmd,rd,2] 
+	00103: SRP2       
+	00104: IP         
+	00105: SRP0       
+	00106: MDRP[nrp0,nmd,rd,0] 
+	00107: CALL       
+	00108: SHP[rp2,zp1] 
+	00109: SRP0       
+	00110: MDRP[nrp0,nmd,rd,0] 
+	00111: CALL       
+	00112: SHP[rp2,zp1] 
+	00113: IUP[y]     
+	00114: IUP[x]     
+	00115: ELSE       
+	00116: NPUSHB      (40):     5    13    22    13    69    13   134    13     4    69 
+	                            17    87    17   118    27     3    82    22   108    16 
+	                           106    20   100    22   117    13   121    20   134    13 
+	                           138    20   137    27   165    13    10     5    32     3 
+	00158: PUSHW[1]            -32 
+	00161: NPUSHB      (11):    11    12    13    14     4     7     1    35    13    12 
+	                             1 
+	00174: PUSHW[1]            676 
+	00177: PUSHB[4]             64     0     1     0 
+	00182: PUSHW[4]            280    41    13   309 
+	00191: PUSHB[5]             12    12    21     4    24 
+	00197: PUSHW[3]            676    25   616 
+	00204: NPUSHB      (39):    21    30    28     5     4    30    41    13    18   115 
+	                            95    32   111    32     2    32    24    13    13     6 
+	                            85    32   128     7   115    38    64    33    35    52 
+	                            48    38     1     0    38    16    38     2    38 
+	00245: PUSHW[1]            -12 
+	00248: PUSHB[8]             13    13     6    85    38   144    45    24 
+	00257: PUSHW[1]            312 
+	00260: PUSHB[3]             25   211     1 
+	00264: PUSHW[3]            312     0   -64 
+	00271: NPUSHB      (11):    33    35    52    32     0    64     0     2     0   144 
+	                            44 
+	00284: PUSHW[1]            402 
+	00287: PUSHB[2]            139    24 
+	00290: CALL       
+	00291: SRP0       
+	00292: MIRP[srp0,nmd,rd,2] 
+	00293: DELTAP1    
+	00294: CALL       
+	00295: MIRP[nrp0,md,rd,1] 
+	00296: MIRP[srp0,nmd,rd,0] 
+	00297: MIRP[nrp0,md,rd,1] 
+	00298: SRP0       
+	00299: MIRP[srp0,nmd,rd,2] 
+	00300: CALL       
+	00301: DELTAP1    
+	00302: DELTAP2    
+	00303: CALL       
+	00304: MIRP[nrp0,md,rd,1] 
+	00305: MIRP[srp0,nmd,rd,0] 
+	00306: CALL       
+	00307: DELTAP1    
+	00308: MIRP[nrp0,md,rd,1] 
+	00309: SVTCA[y-axis] 
+	00310: MIAP[rd+ci] 
+	00311: MIRP[nrp0,md,rd,1] 
+	00312: MIAP[rd+ci] 
+	00313: MIRP[nrp0,md,rd,1] 
+	00314: MIRP[srp0,md,rd,1] 
+	00315: MIRP[nrp0,nmd,rd,0] 
+	00316: SRP1       
+	00317: SRP2       
+	00318: IP         
+	00319: MDAP[rd]   
+	00320: MIRP[nrp0,md,rd,1] 
+	00321: SRP0       
+	00322: MIRP[srp0,md,rd,1] 
+	00323: DELTAP1    
+	00324: MIRP[nrp0,nmd,rd,0] 
+	00325: SRP1       
+	00326: SRP2       
+	00327: IP         
+	00328: SVTCA[x-axis] 
+	00329: SRP1       
+	00330: SRP2       
+	00331: SLOOP      
+	00332: IP         
+	00333: IUP[y]     
+	00334: IUP[x]     
+	00335: SVTCA[x-axis] 
+	00336: SHPIX      
+	00337: SHPIX      
+	00338: SVTCA[x-axis] 
+	00339: DELTAP1    
+	00340: SVTCA[y-axis] 
+	00341: DELTAP1    
+	00342: SVTCA[x-axis] 
+	00343: DELTAP2    
+	00344: EIF        
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short On
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:                                      Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    86,   387)  ->  Abs (    86,   387)
+	  1: Rel (   180,    24)  ->  Abs (   266,   411)
+	  2: Rel (    31,  -153)  ->  Abs (   297,   258)
+	  3: Rel (   149,  -135)  ->  Abs (   446,   123)
+	  4: Rel (   107,     0)  ->  Abs (   553,   123)
+	  5: Rel (   127,     0)  ->  Abs (   680,   123)
+	  6: Rel (   175,   176)  ->  Abs (   855,   299)
+	  7: Rel (     0,   130)  ->  Abs (   855,   429)
+	  8: Rel (     0,   124)  ->  Abs (   855,   553)
+	  9: Rel (  -162,   161)  ->  Abs (   693,   714)
+	 10: Rel (  -125,     0)  ->  Abs (   568,   714)
+	 11: Rel (   -51,     0)  ->  Abs (   517,   714)
+	 12: Rel (   -76,   -20)  ->  Abs (   441,   694)
+	 13: Rel (    20,   158)  ->  Abs (   461,   852)
+	 14: Rel (    18,    -2)  ->  Abs (   479,   850)
+	 15: Rel (    11,     0)  ->  Abs (   490,   850)
+	 16: Rel (   115,     0)  ->  Abs (   605,   850)
+	 17: Rel (   184,   120)  ->  Abs (   789,   970)
+	 18: Rel (     0,   125)  ->  Abs (   789,  1095)
+	 19: Rel (     0,    99)  ->  Abs (   789,  1194)
+	 20: Rel (  -134,   130)  ->  Abs (   655,  1324)
+	 21: Rel (  -106,     0)  ->  Abs (   549,  1324)
+	 22: Rel (  -105,     0)  ->  Abs (   444,  1324)
+	 23: Rel (  -140,  -132)  ->  Abs (   304,  1192)
+	 24: Rel (   -20,  -132)  ->  Abs (   284,  1060)
+	 25: Rel (  -180,    32)  ->  Abs (   104,  1092)
+	 26: Rel (    33,   181)  ->  Abs (   137,  1273)
+	 27: Rel (   234,   199)  ->  Abs (   371,  1472)
+	 28: Rel (   174,     0)  ->  Abs (   545,  1472)
+	 29: Rel (   120,     0)  ->  Abs (   665,  1472)
+	 30: Rel (   202,  -103)  ->  Abs (   867,  1369)
+	 31: Rel (   107,  -178)  ->  Abs (   974,  1191)
+	 32: Rel (     0,  -100)  ->  Abs (   974,  1091)
+	 33: Rel (     0,   -95)  ->  Abs (   974,   996)
+	 34: Rel (  -102,  -156)  ->  Abs (   872,   840)
+	 35: Rel (  -100,   -46)  ->  Abs (   772,   794)
+	 36: Rel (   130,   -30)  ->  Abs (   902,   764)
+	 37: Rel (   144,  -189)  ->  Abs (  1046,   575)
+	 38: Rel (     0,  -142)  ->  Abs (  1046,   433)
+	 39: Rel (     0,  -192)  ->  Abs (  1046,   241)
+	 40: Rel (  -280,  -267)  ->  Abs (   766,   -26)
+	 41: Rel (  -214,     0)  ->  Abs (   552,   -26)
+	 42: Rel (  -193,     0)  ->  Abs (   359,   -26)
+	 43: Rel (  -255,   230)  ->  Abs (   104,   204)
+
+	Glyph  23: off = 0x00001434, len = 352
+	  numberOfContours:	2
+	  xMin:			26
+	  yMin:			0
+	  xMax:			1040
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  10
+	  1:  13
+
+	  Length of Instructions:	294
+	00000: NPUSHB      (54):    18    88    12   104    12   154    12   169    12   201 
+	                            12     5    76     3    76    13   148     4     3    18 
+	                             1     2     8     0    12     6     3     7     5    10 
+	                            11     3     7     0    12    12    13    13   202     3 
+	                             4    20     3     3     4     3    13     0     2    12 
+	                            13     4     7     3 
+	00056: PUSHW[4]            699     8     2   416 
+	00065: NPUSHB      (10):     0     4     4     0    12    12     0   202    10     4 
+	00077: PUSHW[1]            614 
+	00080: PUSHB[8]              5     5    10    64    29    31    52    10 
+	00089: PUSHW[1]            -32 
+	00092: PUSHB[5]             16    16     2    85    10 
+	00098: PUSHW[1]            -26 
+	00101: PUSHB[5]             13    13     2    85    10 
+	00107: PUSHW[1]            -18 
+	00110: PUSHB[5]             13    13     6    85    10 
+	00116: PUSHW[1]            311 
+	00119: NPUSHB      (13):     7    64    34    35    52     7   128    33    53     7 
+	                           144    15     2 
+	00134: PUSHW[1]            -64 
+	00137: NPUSHB      (11):    13    20    52     0     2    16     2    32     2     3 
+	                             2 
+	00150: PUSHW[1]            -32 
+	00153: PUSHB[5]             13    13     2    85     2 
+	00159: PUSHW[1]            -28 
+	00162: PUSHB[7]             13    13     6    85     2   181    14 
+	00170: PUSHW[1]            396 
+	00173: PUSHB[2]            139    24 
+	00176: CALL       
+	00177: SRP0       
+	00178: MIRP[nrp0,md,rd,0] 
+	00179: CALL       
+	00180: CALL       
+	00181: DELTAP1    
+	00182: CALL       
+	00183: SRP0       
+	00184: MIRP[srp0,nmd,rd,2] 
+	00185: CALL       
+	00186: CALL       
+	00187: MIRP[srp0,nmd,rd,0] 
+	00188: CALL       
+	00189: CALL       
+	00190: CALL       
+	00191: CALL       
+	00192: ALIGNRP    
+	00193: SRP0       
+	00194: MIRP[nrp0,nmd,rd,2] 
+	00195: SRP0       
+	00196: MIRP[srp0,md,rd,1] 
+	00197: ALIGNRP    
+	00198: SVTCA[y-axis] 
+	00199: MIAP[rd+ci] 
+	00200: MIAP[rd+ci] 
+	00201: SRP0       
+	00202: MIRP[srp0,nmd,rd,0] 
+	00203: ALIGNRP    
+	00204: MIRP[srp0,nmd,rd,2] 
+	00205: ALIGNRP    
+	00206: SRP1       
+	00207: IP         
+	00208: IP         
+	00209: SVTCA[x-axis] 
+	00210: SRP1       
+	00211: SRP2       
+	00212: IP         
+	00213: IP         
+	00214: SDPVTL[1]  
+	00215: MDAP[nrd]  
+	00216: CALL       
+	00217: SFVTCA[y-axis] 
+	00218: RDTG       
+	00219: SRP0       
+	00220: MDRP[nrp0,nmd,rd,0] 
+	00221: ISECT      
+	00222: ISECT      
+	00223: ISECT      
+	00224: IUP[y]     
+	00225: IUP[x]     
+	00226: SVTCA[x-axis] 
+	00227: RS         
+	00228: NOT        
+	00229: IF         
+	00230: PUSHW[2]             13   -34 
+	00235: PUSHB[3]             18    57    13 
+	00239: PUSHW[1]            -44 
+	00242: NPUSHB      (11):    51    57     3    34    45    57     3     4    29    29 
+	                            60 
+	00255: CALL       
+	00256: CALL       
+	00257: CALL       
+	00258: CALL       
+	00259: EIF        
+	00260: DELTAP1    
+	00261: SVTCA[y-axis] 
+	00262: DELTAP1    
+	00263: RS         
+	00264: NOT        
+	00265: IF         
+	00266: NPUSHB      (20):    12    64    11    57    12   128    80    57    12    64 
+	                            38    57    12    34    28    57    12    64    45    57 
+	00288: CALL       
+	00289: CALL       
+	00290: CALL       
+	00291: CALL       
+	00292: CALL       
+	00293: EIF        
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:                                      On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual XDual                 X-Short On
+	  8:        XDual         Y-Short         On
+	  9:  YDual                       X-Short On
+	 10:        XDual                         On
+	 11:                              X-Short On
+	 12:        XDual                         On
+	 13:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   662,     0)  ->  Abs (   662,     0)
+	  1: Rel (     0,   351)  ->  Abs (   662,   351)
+	  2: Rel (  -636,     0)  ->  Abs (    26,   351)
+	  3: Rel (     0,   165)  ->  Abs (    26,   516)
+	  4: Rel (   669,   950)  ->  Abs (   695,  1466)
+	  5: Rel (   147,     0)  ->  Abs (   842,  1466)
+	  6: Rel (     0,  -950)  ->  Abs (   842,   516)
+	  7: Rel (   198,     0)  ->  Abs (  1040,   516)
+	  8: Rel (     0,  -165)  ->  Abs (  1040,   351)
+	  9: Rel (  -198,     0)  ->  Abs (   842,   351)
+	 10: Rel (     0,  -351)  ->  Abs (   842,     0)
+	 11: Rel (  -180,   516)  ->  Abs (   662,   516)
+	 12: Rel (     0,   661)  ->  Abs (   662,  1177)
+	 13: Rel (  -459,  -661)  ->  Abs (   203,   516)
+
+	Glyph  24: off = 0x00001594, len = 442
+	  numberOfContours:	1
+	  xMin:			85
+	  yMin:			-25
+	  xMax:			1057
+	  yMax:			1446
+
+	EndPoints
+	---------
+	  0:  30
+
+	  Length of Instructions:	342
+	00000: PUSHB[2]              2     2 
+	00003: RS         
+	00004: EQ         
+	00005: IF         
+	00006: PUSHW[2]              1   -64 
+	00011: NPUSHB      (13):    13    13     2    85     1    28    14    10    30    21 
+	                            21    28    18 
+	00026: PUSHW[1]            699 
+	00029: NPUSHB      (11):    15     4     4    30    28    13    14     1     0     7 
+	                            24 
+	00042: PUSHW[1]            -22 
+	00045: PUSHB[5]             15    15     2    85    24 
+	00051: PUSHW[1]            -22 
+	00054: PUSHB[5]             13    13     2    85    24 
+	00060: MDAP[rd]   
+	00061: CALL       
+	00062: CALL       
+	00063: MDRP[nrp0,md,rd,1] 
+	00064: MDAP[rd]   
+	00065: MDRP[nrp0,md,rd,1] 
+	00066: MDAP[rd]   
+	00067: SVTCA[y-axis] 
+	00068: MIAP[rd+ci] 
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: MIAP[rd+ci] 
+	00071: MIRP[nrp0,md,rd,1] 
+	00072: SRP2       
+	00073: IP         
+	00074: MDAP[rd]   
+	00075: MIRP[srp0,md,rd,1] 
+	00076: MDRP[nrp0,nmd,rd,0] 
+	00077: SRP0       
+	00078: MDRP[nrp0,nmd,rd,0] 
+	00079: CALL       
+	00080: IUP[y]     
+	00081: IUP[x]     
+	00082: ELSE       
+	00083: NPUSHB      (41):    18    12    13    13     6    85    15    12    13    13 
+	                             6    85    75    26   121    29   138    29   150    19 
+	                           167    19   195    12   214    12   219    27     8     9 
+	                            19    24    14    42    26     3     9    48     5    48 
+	                            11 
+	00126: PUSHW[3]            -32     3   -32 
+	00133: NPUSHB      (16):    19    10    21    18    19    19   202    14    15    20 
+	                            14    19    20    14    15    13 
+	00151: PUSHW[1]            676 
+	00154: NPUSHB      (19):    14    10    30    21    64    14   160    14     2    14 
+	                            14    15    64    21     1    21    21    28    18 
+	00175: PUSHW[1]            699 
+	00178: PUSHB[8]             15     4     1   211    64     0     1     0 
+	00187: PUSHW[1]            280 
+	00190: NPUSHB      (32):     4    30    28    13    17    95    16   111    16   127 
+	                            16   143    16     4    16   128     7   115    24    64 
+	                            33    35    52    48    24     1     0    24    16    24 
+	                             2    24 
+	00224: PUSHW[1]            -12 
+	00227: PUSHB[8]             13    13     6    85    24   144    32    18 
+	00236: PUSHW[5]            309    15   405    13   312 
+	00247: PUSHB[3]             14   181     1 
+	00251: PUSHW[3]            312     0   -64 
+	00258: NPUSHB      (11):    33    35    52    32     0    64     0     2     0   144 
+	                            31 
+	00271: PUSHW[1]            402 
+	00274: PUSHB[2]            139    24 
+	00277: CALL       
+	00278: SRP0       
+	00279: MIRP[srp0,nmd,rd,2] 
+	00280: DELTAP1    
+	00281: CALL       
+	00282: MIRP[nrp0,md,rd,1] 
+	00283: MIRP[srp0,nmd,rd,0] 
+	00284: MIRP[nrp0,md,rd,1] 
+	00285: MIRP[srp0,nmd,rd,0] 
+	00286: MIRP[nrp0,md,rd,1] 
+	00287: SRP0       
+	00288: MIRP[srp0,nmd,rd,2] 
+	00289: CALL       
+	00290: DELTAP1    
+	00291: DELTAP2    
+	00292: CALL       
+	00293: MIRP[nrp0,md,rd,1] 
+	00294: MIRP[srp0,nmd,rd,0] 
+	00295: DELTAP1    
+	00296: ALIGNRP    
+	00297: SVTCA[y-axis] 
+	00298: MIAP[rd+ci] 
+	00299: MIRP[nrp0,md,rd,1] 
+	00300: MIRP[srp0,md,rd,1] 
+	00301: DELTAP1    
+	00302: MIRP[nrp0,nmd,rd,0] 
+	00303: MIAP[rd+ci] 
+	00304: MIRP[nrp0,md,rd,1] 
+	00305: SRP2       
+	00306: IP         
+	00307: MDAP[rd]   
+	00308: DELTAP1    
+	00309: SRP1       
+	00310: IP         
+	00311: MDAP[rd]   
+	00312: DELTAP1    
+	00313: SRP0       
+	00314: MIRP[nrp0,md,rd,1] 
+	00315: SRP0       
+	00316: MIRP[nrp0,nmd,rd,0] 
+	00317: SDPVTL[1]  
+	00318: SFVTL[=p1,p2] 
+	00319: MDAP[nrd]  
+	00320: CALL       
+	00321: SFVTCA[x-axis] 
+	00322: RDTG       
+	00323: SRP0       
+	00324: MDRP[nrp0,nmd,rd,0] 
+	00325: SVTCA[y-axis] 
+	00326: SRP1       
+	00327: SRP2       
+	00328: IP         
+	00329: IUP[y]     
+	00330: IUP[x]     
+	00331: SVTCA[x-axis] 
+	00332: SHPIX      
+	00333: SHPIX      
+	00334: SHPIX      
+	00335: SHPIX      
+	00336: SVTCA[x-axis] 
+	00337: DELTAP2    
+	00338: DELTAP1    
+	00339: CALL       
+	00340: CALL       
+	00341: EIF        
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:                      Y-Short X-Short Off
+	 13:                      Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short On
+	 15:        XDual                 X-Short On
+	 16:  YDual                               On
+	 17:        XDual         Y-Short         On
+	 18:  YDual                               On
+	 19:                              X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:                                      Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short On
+	 27:                      Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    85,   384)  ->  Abs (    85,   384)
+	  1: Rel (   189,    16)  ->  Abs (   274,   400)
+	  2: Rel (    21,  -138)  ->  Abs (   295,   262)
+	  3: Rel (   153,  -139)  ->  Abs (   448,   123)
+	  4: Rel (   108,     0)  ->  Abs (   556,   123)
+	  5: Rel (   130,     0)  ->  Abs (   686,   123)
+	  6: Rel (   180,   196)  ->  Abs (   866,   319)
+	  7: Rel (     0,   162)  ->  Abs (   866,   481)
+	  8: Rel (     0,   154)  ->  Abs (   866,   635)
+	  9: Rel (  -173,   178)  ->  Abs (   693,   813)
+	 10: Rel (  -140,     0)  ->  Abs (   553,   813)
+	 11: Rel (   -87,     0)  ->  Abs (   466,   813)
+	 12: Rel (  -140,   -79)  ->  Abs (   326,   734)
+	 13: Rel (   -40,   -63)  ->  Abs (   286,   671)
+	 14: Rel (  -169,    22)  ->  Abs (   117,   693)
+	 15: Rel (   142,   753)  ->  Abs (   259,  1446)
+	 16: Rel (   729,     0)  ->  Abs (   988,  1446)
+	 17: Rel (     0,  -172)  ->  Abs (   988,  1274)
+	 18: Rel (  -585,     0)  ->  Abs (   403,  1274)
+	 19: Rel (   -79,  -394)  ->  Abs (   324,   880)
+	 20: Rel (   132,    92)  ->  Abs (   456,   972)
+	 21: Rel (   145,     0)  ->  Abs (   601,   972)
+	 22: Rel (   192,     0)  ->  Abs (   793,   972)
+	 23: Rel (   264,  -266)  ->  Abs (  1057,   706)
+	 24: Rel (     0,  -209)  ->  Abs (  1057,   497)
+	 25: Rel (     0,  -199)  ->  Abs (  1057,   298)
+	 26: Rel (  -116,  -145)  ->  Abs (   941,   153)
+	 27: Rel (  -141,  -178)  ->  Abs (   800,   -25)
+	 28: Rel (  -244,     0)  ->  Abs (   556,   -25)
+	 29: Rel (  -200,     0)  ->  Abs (   356,   -25)
+	 30: Rel (  -253,   224)  ->  Abs (   103,   199)
+
+	Glyph  25: off = 0x0000174E, len = 470
+	  numberOfContours:	2
+	  xMin:			77
+	  yMin:			-25
+	  xMax:			1045
+	  yMax:			1472
+
+	EndPoints
+	---------
+	  0:  29
+	  1:  42
+
+	  Length of Instructions:	335
+	00000: PUSHB[2]              2     2 
+	00003: RS         
+	00004: EQ         
+	00005: IF         
+	00006: NPUSHB      (31):    15     1    31     1    95     1     3     1    27    40 
+	                            30    64    13     1    13    13    20     5    30    27 
+	                             5    34    30    20    13    10    30     1     0    37 
+	                            16 
+	00039: PUSHW[1]            -12 
+	00042: NPUSHB      (25):    13    13     2    85    16    30    23    16    15    15 
+	                             2    85    23    16    12    12     2    85    23    12 
+	                            13    13     2    85    23 
+	00069: MDAP[rd]   
+	00070: CALL       
+	00071: CALL       
+	00072: CALL       
+	00073: MDRP[nrp0,md,rd,1] 
+	00074: MDAP[rd]   
+	00075: CALL       
+	00076: MDRP[nrp0,md,rd,1] 
+	00077: MDRP[srp0,nmd,rd,0] 
+	00078: MDRP[nrp0,md,rd,1] 
+	00079: SRP0       
+	00080: MDRP[nrp0,nmd,rd,1] 
+	00081: SVTCA[y-axis] 
+	00082: MIAP[rd+ci] 
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: MIAP[rd+ci] 
+	00085: MIRP[nrp0,md,rd,1] 
+	00086: SRP2       
+	00087: IP         
+	00088: MDAP[rd]   
+	00089: DELTAP1    
+	00090: MIRP[nrp0,md,rd,1] 
+	00091: SRP0       
+	00092: MDRP[nrp0,nmd,rd,0] 
+	00093: DELTAP1    
+	00094: IUP[y]     
+	00095: IUP[x]     
+	00096: ELSE       
+	00097: NPUSHB      (45):   107    25     1    68     7    64    21    68    25    68 
+	                            32    90    18    84    32   107     3   100     7   100 
+	                             8   106    18   100    32   116     8   117    28   133 
+	                             8   134    28   214     8   212    22    17     7    32 
+	                            13    13     6    85    39 
+	00144: PUSHW[1]            -32 
+	00147: PUSHB[5]             13    13     6    85    35 
+	00153: PUSHW[1]            -32 
+	00156: NPUSHB      (11):    13    13     6    85    33    32    13    13     6    85 
+	                             7 
+	00169: PUSHW[1]            -32 
+	00172: PUSHB[5]             39    32    35    32    33 
+	00178: PUSHW[1]            -32 
+	00181: NPUSHB      (17):    40    30    64    13    80    13     2    13    13    20 
+	                            27     1   211    95     0     1     0 
+	00200: PUSHW[1]            616 
+	00203: NPUSHB       (9):     5    30    27     5    34    30    20    13     1 
+	00214: PUSHW[1]            312 
+	00217: NPUSHB      (18):     0   181    37   115    16    64    33    35    52    48 
+	                            16     1     0    16    16    16     2    16 
+	00237: PUSHW[1]            -16 
+	00240: PUSHB[8]             12    12     6    85    16   144    44    10 
+	00249: PUSHW[3]            312    30   313 
+	00256: NPUSHB      (22):    63    23    95    23   111    23   127    23     4    23 
+	                            22    12    12     6    85    23    22    13    13     6 
+	                            85    23 
+	00280: PUSHW[1]            548 
+	00283: PUSHB[4]             43   199   139    24 
+	00288: CALL       
+	00289: SRP0       
+	00290: MIRP[srp0,nmd,rd,2] 
+	00291: CALL       
+	00292: CALL       
+	00293: DELTAP1    
+	00294: MIRP[nrp0,md,rd,1] 
+	00295: MIRP[nrp0,md,rd,1] 
+	00296: SRP0       
+	00297: MIRP[srp0,nmd,rd,2] 
+	00298: CALL       
+	00299: DELTAP1    
+	00300: DELTAP2    
+	00301: CALL       
+	00302: MIRP[nrp0,md,rd,1] 
+	00303: MIRP[srp0,nmd,rd,0] 
+	00304: MIRP[nrp0,md,rd,1] 
+	00305: SVTCA[y-axis] 
+	00306: MIAP[rd+ci] 
+	00307: MIRP[nrp0,md,rd,1] 
+	00308: MIAP[rd+ci] 
+	00309: MIRP[nrp0,md,rd,1] 
+	00310: MIRP[srp0,md,rd,1] 
+	00311: DELTAP1    
+	00312: MIRP[nrp0,nmd,rd,0] 
+	00313: SRP1       
+	00314: SRP2       
+	00315: IP         
+	00316: MDAP[rd]   
+	00317: DELTAP1    
+	00318: MIRP[nrp0,md,rd,1] 
+	00319: IUP[y]     
+	00320: IUP[x]     
+	00321: SVTCA[x-axis] 
+	00322: SHPIX      
+	00323: SHPIX      
+	00324: SHPIX      
+	00325: SHPIX      
+	00326: CALL       
+	00327: CALL       
+	00328: CALL       
+	00329: CALL       
+	00330: SVTCA[x-axis] 
+	00331: DELTAP1    
+	00332: SVTCA[y-axis] 
+	00333: DELTAP1    
+	00334: EIF        
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:                                      Off
+	 23:        XDual                         On
+	 24:        XDual                         Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:                                      On
+	 31:        XDual         Y-Short         Off
+	 32:        XDual         Y-Short X-Short Off
+	 33:        XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1019,  1107)  ->  Abs (  1019,  1107)
+	  1: Rel (  -179,   -14)  ->  Abs (   840,  1093)
+	  2: Rel (   -24,   106)  ->  Abs (   816,  1199)
+	  3: Rel (   -44,    48)  ->  Abs (   772,  1247)
+	  4: Rel (   -73,    77)  ->  Abs (   699,  1324)
+	  5: Rel (  -107,     0)  ->  Abs (   592,  1324)
+	  6: Rel (   -86,     0)  ->  Abs (   506,  1324)
+	  7: Rel (   -65,   -48)  ->  Abs (   441,  1276)
+	  8: Rel (   -85,   -62)  ->  Abs (   356,  1214)
+	  9: Rel (   -98,  -238)  ->  Abs (   258,   976)
+	 10: Rel (    -2,  -220)  ->  Abs (   256,   756)
+	 11: Rel (    65,    99)  ->  Abs (   321,   855)
+	 12: Rel (   188,    96)  ->  Abs (   509,   951)
+	 13: Rel (   103,     0)  ->  Abs (   612,   951)
+	 14: Rel (   180,     0)  ->  Abs (   792,   951)
+	 15: Rel (   253,  -265)  ->  Abs (  1045,   686)
+	 16: Rel (     0,  -210)  ->  Abs (  1045,   476)
+	 17: Rel (     0,  -138)  ->  Abs (  1045,   338)
+	 18: Rel (  -119,  -237)  ->  Abs (   926,   101)
+	 19: Rel (  -208,  -126)  ->  Abs (   718,   -25)
+	 20: Rel (  -132,     0)  ->  Abs (   586,   -25)
+	 21: Rel (  -225,     0)  ->  Abs (   361,   -25)
+	 22: Rel (  -284,   331)  ->  Abs (    77,   306)
+	 23: Rel (     0,   380)  ->  Abs (    77,   686)
+	 24: Rel (     0,   425)  ->  Abs (    77,  1111)
+	 25: Rel (   157,   193)  ->  Abs (   234,  1304)
+	 26: Rel (   137,   168)  ->  Abs (   371,  1472)
+	 27: Rel (   232,     0)  ->  Abs (   603,  1472)
+	 28: Rel (   173,     0)  ->  Abs (   776,  1472)
+	 29: Rel (   221,  -194)  ->  Abs (   997,  1278)
+	 30: Rel (  -713,  -803)  ->  Abs (   284,   475)
+	 31: Rel (     0,   -93)  ->  Abs (   284,   382)
+	 32: Rel (    79,  -170)  ->  Abs (   363,   212)
+	 33: Rel (   142,   -89)  ->  Abs (   505,   123)
+	 34: Rel (    78,     0)  ->  Abs (   583,   123)
+	 35: Rel (   114,     0)  ->  Abs (   697,   123)
+	 36: Rel (   164,   184)  ->  Abs (   861,   307)
+	 37: Rel (     0,   158)  ->  Abs (   861,   465)
+	 38: Rel (     0,   152)  ->  Abs (   861,   617)
+	 39: Rel (  -162,   175)  ->  Abs (   699,   792)
+	 40: Rel (  -123,     0)  ->  Abs (   576,   792)
+	 41: Rel (  -122,     0)  ->  Abs (   454,   792)
+	 42: Rel (  -170,  -175)  ->  Abs (   284,   617)
+
+	Glyph  26: off = 0x00001924, len = 172
+	  numberOfContours:	1
+	  xMin:			97
+	  yMin:			0
+	  xMax:			1046
+	  yMax:			1447
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	112
+	00000: NPUSHB      (14):   196    13     1     4    13     1     4     2     8     4 
+	                             9     3    13     0 
+	00016: PUSHW[1]            699 
+	00019: NPUSHB      (48):     2     1     4     9    12    13   115     3     3     2 
+	                            64    33    35    52    79     2    95     2   111     2 
+	                             3     2    26    15     8   115     9   235     0    79 
+	                             1    95     1    95     2     3    63     1    95     1 
+	                           111     1   127     1     4     1    25    14 
+	00069: PUSHW[1]            402 
+	00072: PUSHB[2]            139    24 
+	00075: CALL       
+	00076: FLIPOFF    
+	00077: SRP0       
+	00078: MIRP[srp0,nmd,rd,0] 
+	00079: DELTAP1    
+	00080: DELTAP2    
+	00081: ALIGNRP    
+	00082: FLIPON     
+	00083: MIRP[srp0,nmd,rd,0] 
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: FLIPOFF    
+	00086: SRP0       
+	00087: MIRP[srp0,nmd,rd,2] 
+	00088: DELTAP2    
+	00089: CALL       
+	00090: ALIGNRP    
+	00091: FLIPON     
+	00092: SRP0       
+	00093: MIRP[nrp0,md,rd,1] 
+	00094: SVTCA[y-axis] 
+	00095: MIAP[rd+ci] 
+	00096: MIAP[rd+ci] 
+	00097: ALIGNRP    
+	00098: MIRP[srp0,md,rd,1] 
+	00099: ALIGNRP    
+	00100: IP         
+	00101: SRP1       
+	00102: IP         
+	00103: SVTCA[x-axis] 
+	00104: SRP1       
+	00105: SRP2       
+	00106: IP         
+	00107: IUP[y]     
+	00108: IUP[x]     
+	00109: SVTCA[x-axis] 
+	00110: DELTAP2    
+	00111: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+	  4:                      Y-Short X-Short Off
+	  5:                                      Off
+	  6:                              X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:                      Y-Short X-Short On
+	  9:  YDual                       X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:        XDual                 X-Short Off
+	 12:        XDual                 X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    97,  1274)  ->  Abs (    97,  1274)
+	  1: Rel (     0,   173)  ->  Abs (    97,  1447)
+	  2: Rel (   949,     0)  ->  Abs (  1046,  1447)
+	  3: Rel (     0,  -140)  ->  Abs (  1046,  1307)
+	  4: Rel (  -140,  -149)  ->  Abs (   906,  1158)
+	  5: Rel (  -275,  -494)  ->  Abs (   631,   664)
+	  6: Rel (   -75,  -261)  ->  Abs (   556,   403)
+	  7: Rel (   -54,  -184)  ->  Abs (   502,   219)
+	  8: Rel (   -15,  -219)  ->  Abs (   487,     0)
+	  9: Rel (  -185,     0)  ->  Abs (   302,     0)
+	 10: Rel (     3,   173)  ->  Abs (   305,   173)
+	 11: Rel (   130,   490)  ->  Abs (   435,   663)
+	 12: Rel (   243,   455)  ->  Abs (   678,  1118)
+	 13: Rel (   137,   156)  ->  Abs (   815,  1274)
+
+	Glyph  27: off = 0x000019D0, len = 660
+	  numberOfContours:	3
+	  xMin:			83
+	  yMin:			-25
+	  xMax:			1049
+	  yMax:			1472
+
+	EndPoints
+	---------
+	  0:  23
+	  1:  35
+	  2:  48
+
+	  Length of Instructions:	512
+	00000: PUSHB[2]              2     2 
+	00003: RS         
+	00004: EQ         
+	00005: IF         
+	00006: PUSHB[5]             12     0    27    30    46 
+	00012: PUSHW[1]            -64 
+	00015: NPUSHB      (23):    19    19     2    85    46    46    18    33    30     6 
+	                             5    40    30    18    13    30     9    12    12    12 
+	                             2    85     9 
+	00040: PUSHW[1]            -12 
+	00043: PUSHB[7]             13    13     2    85     9    43    15 
+	00051: PUSHW[1]            -16 
+	00054: PUSHB[5]             15    15     2    85    15 
+	00060: PUSHW[1]            -24 
+	00063: PUSHB[5]             11    11     2    85    15 
+	00069: PUSHW[1]            -24 
+	00072: PUSHB[7]             13    13     2    85    15    24     3 
+	00080: PUSHW[1]            -16 
+	00083: PUSHB[5]             16    16     2    85     3 
+	00089: PUSHW[1]            -16 
+	00092: PUSHB[5]             15    15     2    85     3 
+	00098: PUSHW[1]            -12 
+	00101: NPUSHB      (25):    13    13     2    85     3    36    21    12    11    11 
+	                             2    85    21    12    12    12     2    85    21    12 
+	                            13    13     2    85    21 
+	00128: MDAP[rd]   
+	00129: CALL       
+	00130: CALL       
+	00131: CALL       
+	00132: MDRP[nrp0,md,rd,1] 
+	00133: MDAP[rd]   
+	00134: CALL       
+	00135: CALL       
+	00136: CALL       
+	00137: MDRP[nrp0,md,rd,1] 
+	00138: MDAP[rd]   
+	00139: CALL       
+	00140: CALL       
+	00141: CALL       
+	00142: MDRP[nrp0,md,rd,1] 
+	00143: MDAP[rd]   
+	00144: CALL       
+	00145: CALL       
+	00146: MDRP[nrp0,md,rd,1] 
+	00147: SVTCA[y-axis] 
+	00148: MIAP[rd+ci] 
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: MIAP[rd+ci] 
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: SRP2       
+	00153: IP         
+	00154: MDAP[rd]   
+	00155: CALL       
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: IP         
+	00158: IP         
+	00159: IUP[y]     
+	00160: IUP[x]     
+	00161: ELSE       
+	00162: PUSHB[2]              6     2 
+	00165: RS         
+	00166: EQ         
+	00167: IF         
+	00168: PUSHB[8]             30     9    12    12    12     6    85     9 
+	00177: PUSHW[1]            -12 
+	00180: PUSHB[7]             13    13     6    85     9    43    15 
+	00188: PUSHW[1]            -28 
+	00191: PUSHB[5]             15    15     6    85    15 
+	00197: PUSHW[1]            -28 
+	00200: PUSHB[7]             13    13     6    85    15    24     3 
+	00208: PUSHW[1]            -16 
+	00211: PUSHB[5]             15    15     6    85     3 
+	00217: PUSHW[1]             -4 
+	00220: NPUSHB      (34):    13    13     6    85     3    36    21    12    12    12 
+	                             6    85    21    12    13    13     6    85    21    12 
+	                             0    27    30    46    46    18    33    30     6     5 
+	                            40    30    18    13 
+	00256: SVTCA[y-axis] 
+	00257: MIAP[rd+ci] 
+	00258: MIRP[nrp0,md,rd,1] 
+	00259: MIAP[rd+ci] 
+	00260: MIRP[nrp0,md,rd,1] 
+	00261: SRP2       
+	00262: IP         
+	00263: MDAP[rd]   
+	00264: MIRP[nrp0,md,rd,1] 
+	00265: IP         
+	00266: IP         
+	00267: SVTCA[x-axis] 
+	00268: MDAP[rd]   
+	00269: CALL       
+	00270: CALL       
+	00271: MDRP[nrp0,md,rd,1] 
+	00272: MDAP[rd]   
+	00273: CALL       
+	00274: CALL       
+	00275: MDRP[nrp0,md,rd,1] 
+	00276: MDAP[rd]   
+	00277: CALL       
+	00278: CALL       
+	00279: MDRP[nrp0,md,rd,1] 
+	00280: MDAP[rd]   
+	00281: CALL       
+	00282: CALL       
+	00283: MDRP[nrp0,md,rd,1] 
+	00284: IUP[y]     
+	00285: IUP[x]     
+	00286: ELSE       
+	00287: NPUSHB      (55):    53    22     1    41    22    73    22    73    38   230 
+	                            12   233    48     5     9    48     1   125     0   125 
+	                             1   124     4   116     8   113    11   114    12   117 
+	                            13   122    23   139     0   138     1   140     4   134 
+	                             8   129    11   132    12   134    13   141    23   204 
+	                            17   198    19    18    34 
+	00344: PUSHW[1]            -32 
+	00347: PUSHB[3]             28    32    26 
+	00351: PUSHW[1]            -32 
+	00354: PUSHB[3]             32    32    47 
+	00358: PUSHW[1]            -32 
+	00361: PUSHB[3]             45    32    38 
+	00365: PUSHW[1]            -32 
+	00368: NPUSHB      (30):    41    32    12     0    30    24     0    12    27    30 
+	                            46   160    46     1    46    18    33    30     6     5 
+	                            40    30    18    13    30   115   191     9     1     9 
+	00400: PUSHW[1]            615 
+	00403: NPUSHB      (16):    43   115    15    64    32    35    52    48    15     1 
+	                             0    15    16    15     2    15 
+	00421: PUSHW[1]            401 
+	00424: PUSHB[7]             50    24   115   176     3     1     3 
+	00432: PUSHW[1]            615 
+	00435: PUSHB[3]             36   115    21 
+	00439: PUSHW[1]            -64 
+	00442: NPUSHB      (14):    33    35    52    32    21    64    21     2    21   144 
+	                            49   199   139    24 
+	00458: CALL       
+	00459: SRP0       
+	00460: MIRP[srp0,nmd,rd,2] 
+	00461: DELTAP1    
+	00462: CALL       
+	00463: MIRP[nrp0,md,rd,1] 
+	00464: MIRP[srp0,nmd,rd,0] 
+	00465: DELTAP1    
+	00466: MIRP[nrp0,md,rd,1] 
+	00467: SRP0       
+	00468: MIRP[srp0,nmd,rd,0] 
+	00469: DELTAP1    
+	00470: DELTAP2    
+	00471: CALL       
+	00472: MIRP[nrp0,md,rd,1] 
+	00473: MIRP[srp0,nmd,rd,0] 
+	00474: DELTAP1    
+	00475: MIRP[nrp0,md,rd,1] 
+	00476: SVTCA[y-axis] 
+	00477: MIAP[rd+ci] 
+	00478: MIRP[nrp0,md,rd,1] 
+	00479: MIAP[rd+ci] 
+	00480: MIRP[nrp0,md,rd,1] 
+	00481: SRP2       
+	00482: IP         
+	00483: DELTAP1    
+	00484: MDAP[rd]   
+	00485: MIRP[nrp0,md,rd,1] 
+	00486: IP         
+	00487: IP         
+	00488: SVTCA[x-axis] 
+	00489: SRP1       
+	00490: SRP2       
+	00491: IP         
+	00492: IP         
+	00493: IUP[y]     
+	00494: IUP[x]     
+	00495: SVTCA[x-axis] 
+	00496: SHPIX      
+	00497: SHPIX      
+	00498: SHPIX      
+	00499: SHPIX      
+	00500: SHPIX      
+	00501: SHPIX      
+	00502: SHPIX      
+	00503: SHPIX      
+	00504: SVTCA[x-axis] 
+	00505: DELTAP1    
+	00506: DELTAP3    
+	00507: DELTAP2    
+	00508: SVTCA[y-axis] 
+	00509: DELTAP2    
+	00510: EIF        
+	00511: EIF        
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                                      Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:                                      Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:        XDual                 X-Short On
+	 25:        XDual         Y-Short         Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:                      Y-Short X-Short Off
+	 36:                              X-Short On
+	 37:        XDual         Y-Short         Off
+	 38:        XDual         Y-Short X-Short Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   362,   795)  ->  Abs (   362,   795)
+	  1: Rel (  -112,    41)  ->  Abs (   250,   836)
+	  2: Rel (  -108,   152)  ->  Abs (   142,   988)
+	  3: Rel (     0,   106)  ->  Abs (   142,  1094)
+	  4: Rel (     0,   160)  ->  Abs (   142,  1254)
+	  5: Rel (   230,   218)  ->  Abs (   372,  1472)
+	  6: Rel (   191,     0)  ->  Abs (   563,  1472)
+	  7: Rel (   192,     0)  ->  Abs (   755,  1472)
+	  8: Rel (   234,  -223)  ->  Abs (   989,  1249)
+	  9: Rel (     0,  -160)  ->  Abs (   989,  1089)
+	 10: Rel (     0,  -102)  ->  Abs (   989,   987)
+	 11: Rel (  -107,  -151)  ->  Abs (   882,   836)
+	 12: Rel (  -109,   -41)  ->  Abs (   773,   795)
+	 13: Rel (   135,   -44)  ->  Abs (   908,   751)
+	 14: Rel (   141,  -196)  ->  Abs (  1049,   555)
+	 15: Rel (     0,  -136)  ->  Abs (  1049,   419)
+	 16: Rel (     0,  -188)  ->  Abs (  1049,   231)
+	 17: Rel (  -266,  -256)  ->  Abs (   783,   -25)
+	 18: Rel (  -217,     0)  ->  Abs (   566,   -25)
+	 19: Rel (  -217,     0)  ->  Abs (   349,   -25)
+	 20: Rel (  -266,   257)  ->  Abs (    83,   232)
+	 21: Rel (     0,   192)  ->  Abs (    83,   424)
+	 22: Rel (     0,   143)  ->  Abs (    83,   567)
+	 23: Rel (   145,   193)  ->  Abs (   228,   760)
+	 24: Rel (    98,   340)  ->  Abs (   326,  1100)
+	 25: Rel (     0,  -104)  ->  Abs (   326,   996)
+	 26: Rel (   134,  -132)  ->  Abs (   460,   864)
+	 27: Rel (   107,     0)  ->  Abs (   567,   864)
+	 28: Rel (   104,     0)  ->  Abs (   671,   864)
+	 29: Rel (   133,   131)  ->  Abs (   804,   995)
+	 30: Rel (     0,    95)  ->  Abs (   804,  1090)
+	 31: Rel (     0,    99)  ->  Abs (   804,  1189)
+	 32: Rel (  -137,   135)  ->  Abs (   667,  1324)
+	 33: Rel (  -102,     0)  ->  Abs (   565,  1324)
+	 34: Rel (  -103,     0)  ->  Abs (   462,  1324)
+	 35: Rel (  -136,  -132)  ->  Abs (   326,  1192)
+	 36: Rel (   -58,  -769)  ->  Abs (   268,   423)
+	 37: Rel (     0,   -77)  ->  Abs (   268,   346)
+	 38: Rel (    73,  -144)  ->  Abs (   341,   202)
+	 39: Rel (   144,   -79)  ->  Abs (   485,   123)
+	 40: Rel (    83,     0)  ->  Abs (   568,   123)
+	 41: Rel (   129,     0)  ->  Abs (   697,   123)
+	 42: Rel (   168,   166)  ->  Abs (   865,   289)
+	 43: Rel (     0,   128)  ->  Abs (   865,   417)
+	 44: Rel (     0,   130)  ->  Abs (   865,   547)
+	 45: Rel (  -173,   170)  ->  Abs (   692,   717)
+	 46: Rel (  -130,     0)  ->  Abs (   562,   717)
+	 47: Rel (  -127,     0)  ->  Abs (   435,   717)
+	 48: Rel (  -167,  -168)  ->  Abs (   268,   549)
+
+	Glyph  28: off = 0x00001C64, len = 564
+	  numberOfContours:	2
+	  xMin:			85
+	  yMin:			-25
+	  xMax:			1049
+	  yMax:			1472
+
+	EndPoints
+	---------
+	  0:  30
+	  1:  42
+
+	  Length of Instructions:	430
+	00000: PUSHB[2]              6     2 
+	00003: RS         
+	00004: EQ         
+	00005: IF         
+	00006: PUSHB[8]             11    31    24     1     0    37    17    24 
+	00015: PUSHW[1]            -10 
+	00018: PUSHB[5]             15    15     6    85    24 
+	00024: PUSHW[1]            -12 
+	00027: PUSHB[5]             13    13     6    85    24 
+	00033: PUSHW[1]            -16 
+	00036: NPUSHB      (40):    12    12     6    85    24    17    12    13    13     6 
+	                            85    17    16    12    12     6    85    17    24    17 
+	                            44    43    11    40    30    15    14    31    14    79 
+	                            14     3    14    14    20     0    80     1     1     1 
+	00078: PUSHW[1]            -64 
+	00081: NPUSHB      (13):    16    17     6    85     1     4    30    28    13    34 
+	                            30    20     5 
+	00096: SVTCA[y-axis] 
+	00097: MIAP[rd+ci] 
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: MIAP[rd+ci] 
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: MDRP[nrp0,nmd,rd,0] 
+	00102: CALL       
+	00103: DELTAP1    
+	00104: SHP[rp2,zp1] 
+	00105: SRP2       
+	00106: IP         
+	00107: MDAP[rd]   
+	00108: DELTAP1    
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: SHP[rp2,zp1] 
+	00111: SVTCA[x-axis] 
+	00112: SRP1       
+	00113: SRP2       
+	00114: IP         
+	00115: IP         
+	00116: MDAP[rd]   
+	00117: CALL       
+	00118: CALL       
+	00119: MDAP[rd]   
+	00120: CALL       
+	00121: CALL       
+	00122: CALL       
+	00123: SRP0       
+	00124: MDRP[nrp0,md,rd,1] 
+	00125: MDRP[srp0,nmd,rd,0] 
+	00126: MDRP[nrp0,md,rd,1] 
+	00127: SRP0       
+	00128: MDRP[srp0,md,rd,1] 
+	00129: MDRP[nrp0,nmd,rd,1] 
+	00130: IUP[y]     
+	00131: IUP[x]     
+	00132: ELSE       
+	00133: PUSHB[2]              2     2 
+	00136: RS         
+	00137: EQ         
+	00138: IF         
+	00139: PUSHB[8]             11    31    24     1     0    37    17    24 
+	00148: PUSHW[1]            -22 
+	00151: PUSHB[5]             15    15     2    85    24 
+	00157: PUSHW[1]            -22 
+	00160: NPUSHB      (42):    13    13     2    85    24    17    12    12    12     2 
+	                            85    17    24    17    44    43    11    40    30    15 
+	                            14    31    14    79    14     3    14    14    20     0 
+	                            80     1     1     1     4    30    28    13    34    30 
+	                            20     5 
+	00204: SVTCA[y-axis] 
+	00205: MIAP[rd+ci] 
+	00206: MIRP[nrp0,md,rd,1] 
+	00207: MIAP[rd+ci] 
+	00208: MIRP[nrp0,md,rd,1] 
+	00209: MDRP[nrp0,nmd,rd,0] 
+	00210: DELTAP1    
+	00211: SHP[rp2,zp1] 
+	00212: SRP2       
+	00213: IP         
+	00214: MDAP[rd]   
+	00215: DELTAP1    
+	00216: MIRP[nrp0,md,rd,1] 
+	00217: SHP[rp2,zp1] 
+	00218: SVTCA[x-axis] 
+	00219: SRP1       
+	00220: SRP2       
+	00221: IP         
+	00222: IP         
+	00223: MDAP[rd]   
+	00224: CALL       
+	00225: MDAP[rd]   
+	00226: CALL       
+	00227: CALL       
+	00228: SRP0       
+	00229: MDRP[nrp0,md,rd,1] 
+	00230: MDRP[srp0,nmd,rd,0] 
+	00231: MDRP[nrp0,md,rd,1] 
+	00232: SRP0       
+	00233: MDRP[srp0,md,rd,1] 
+	00234: MDRP[nrp0,nmd,rd,1] 
+	00235: IUP[y]     
+	00236: IUP[x]     
+	00237: ELSE       
+	00238: NPUSHB      (52):    58    26    76    22    64    35    91    22    87    35 
+	                           102     3   108    22   109    26   103    35   122    26 
+	                           125    30   140    26   139    30   154    22   169    26 
+	                           188    26   234    22   230    32   246    32    19    61 
+	                            22   158    22   173    22     3    58    41   100     6 
+	                             2    39 
+	00292: PUSHW[3]            -32    35   -32 
+	00299: NPUSHB      (24):    33    32     6    32    40    30    79    14    95    14 
+	                             2    14    14    28    34    30    20     5     1   211 
+	                            80     0     1     0 
+	00325: PUSHW[1]            616 
+	00328: PUSHB[5]              4    30    28    13    31 
+	00334: PUSHW[3]            313    11   312 
+	00341: NPUSHB      (17):    24    64    33    35    52    48    24     1     0    24 
+	                            16    24     2    24   144    44     1 
+	00360: PUSHW[1]            312 
+	00363: PUSHB[5]              0   181    37   115    17 
+	00369: PUSHW[1]            -64 
+	00372: NPUSHB      (14):    33    35    52    32    17    64    17     2    17   144 
+	                            43   199   139    24 
+	00388: CALL       
+	00389: SRP0       
+	00390: MIRP[srp0,nmd,rd,2] 
+	00391: DELTAP1    
+	00392: CALL       
+	00393: MIRP[nrp0,md,rd,1] 
+	00394: MIRP[srp0,nmd,rd,0] 
+	00395: MIRP[nrp0,md,rd,1] 
+	00396: SRP0       
+	00397: MIRP[srp0,nmd,rd,2] 
+	00398: DELTAP1    
+	00399: DELTAP2    
+	00400: CALL       
+	00401: MIRP[nrp0,md,rd,1] 
+	00402: MIRP[nrp0,md,rd,1] 
+	00403: SVTCA[y-axis] 
+	00404: MIAP[rd+ci] 
+	00405: MIRP[nrp0,md,rd,1] 
+	00406: MIRP[srp0,md,rd,1] 
+	00407: DELTAP1    
+	00408: MIRP[nrp0,nmd,rd,0] 
+	00409: MIAP[rd+ci] 
+	00410: MIRP[nrp0,md,rd,1] 
+	00411: SRP2       
+	00412: IP         
+	00413: MDAP[rd]   
+	00414: DELTAP1    
+	00415: MIRP[nrp0,md,rd,1] 
+	00416: IUP[y]     
+	00417: IUP[x]     
+	00418: SVTCA[x-axis] 
+	00419: SHPIX      
+	00420: SHPIX      
+	00421: SHPIX      
+	00422: SHPIX      
+	00423: SVTCA[y-axis] 
+	00424: DELTAP1    
+	00425: DELTAP2    
+	00426: SVTCA[x-axis] 
+	00427: DELTAP1    
+	00428: EIF        
+	00429: EIF        
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:  YDual XDual Rep-  2 Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual               Y-Short X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:                              X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:                                      Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual                 X-Short Off
+	 24:        XDual                         On
+	 25:        XDual                         Off
+	 26:                              X-Short Off
+	 27:                      Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:                                      On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:                      Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   112,   339)  ->  Abs (   112,   339)
+	  1: Rel (   173,    16)  ->  Abs (   285,   355)
+	  2: Rel (    22,  -122)  ->  Abs (   307,   233)
+	  3: Rel (   124,  -110)  ->  Abs (   431,   123)
+	  4: Rel (    97,     0)  ->  Abs (   528,   123)
+	  5: Rel (    83,     0)  ->  Abs (   611,   123)
+	  6: Rel (   125,    76)  ->  Abs (   736,   199)
+	  7: Rel (    80,   127)  ->  Abs (   816,   326)
+	  8: Rel (    54,   216)  ->  Abs (   870,   542)
+	  9: Rel (     0,   112)  ->  Abs (   870,   654)
+	 10: Rel (     0,    12)  ->  Abs (   870,   666)
+	 11: Rel (    -1,    24)  ->  Abs (   869,   690)
+	 12: Rel (   -54,   -86)  ->  Abs (   815,   604)
+	 13: Rel (  -187,  -107)  ->  Abs (   628,   497)
+	 14: Rel (  -109,     0)  ->  Abs (   519,   497)
+	 15: Rel (  -182,     0)  ->  Abs (   337,   497)
+	 16: Rel (  -252,   264)  ->  Abs (    85,   761)
+	 17: Rel (     0,   216)  ->  Abs (    85,   977)
+	 18: Rel (     0,   223)  ->  Abs (    85,  1200)
+	 19: Rel (   263,   272)  ->  Abs (   348,  1472)
+	 20: Rel (   198,     0)  ->  Abs (   546,  1472)
+	 21: Rel (   143,     0)  ->  Abs (   689,  1472)
+	 22: Rel (   237,  -154)  ->  Abs (   926,  1318)
+	 23: Rel (   123,  -285)  ->  Abs (  1049,  1033)
+	 24: Rel (     0,  -270)  ->  Abs (  1049,   763)
+	 25: Rel (     0,  -281)  ->  Abs (  1049,   482)
+	 26: Rel (  -122,  -333)  ->  Abs (   927,   149)
+	 27: Rel (  -241,  -174)  ->  Abs (   686,   -25)
+	 28: Rel (  -162,     0)  ->  Abs (   524,   -25)
+	 29: Rel (  -172,     0)  ->  Abs (   352,   -25)
+	 30: Rel (  -218,   191)  ->  Abs (   134,   166)
+	 31: Rel (   715,   820)  ->  Abs (   849,   986)
+	 32: Rel (     0,   155)  ->  Abs (   849,  1141)
+	 33: Rel (  -165,   182)  ->  Abs (   684,  1323)
+	 34: Rel (  -116,     0)  ->  Abs (   568,  1323)
+	 35: Rel (  -120,     0)  ->  Abs (   448,  1323)
+	 36: Rel (  -178,  -196)  ->  Abs (   270,  1127)
+	 37: Rel (     0,  -156)  ->  Abs (   270,   971)
+	 38: Rel (     0,  -140)  ->  Abs (   270,   831)
+	 39: Rel (   169,  -175)  ->  Abs (   439,   656)
+	 40: Rel (   124,     0)  ->  Abs (   563,   656)
+	 41: Rel (   125,     0)  ->  Abs (   688,   656)
+	 42: Rel (   161,   175)  ->  Abs (   849,   831)
+
+	Glyph  29: off = 0x00001E98, len = 92
+	  numberOfContours:	2
+	  xMin:			185
+	  yMin:			0
+	  xMax:			390
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	56
+	00000: NPUSHB      (32):     4     5     0     6     7     9     2     6    60     4 
+	                             3    60     1     6     4    10     2    60    47     0 
+	                            63     0     2    32     0     1     0   161     8   161 
+	                           152    24 
+	00034: CALL       
+	00035: SRP0       
+	00036: MIRP[srp0,nmd,rd,0] 
+	00037: DELTAP1    
+	00038: DELTAP2    
+	00039: MIRP[nrp0,md,rd,1] 
+	00040: SVTCA[y-axis] 
+	00041: MIAP[rd+ci] 
+	00042: MIAP[rd+ci] 
+	00043: MIRP[nrp0,md,rd,1] 
+	00044: SRP0       
+	00045: MIRP[nrp0,md,rd,1] 
+	00046: SVTCA[x-axis] 
+	00047: SRP1       
+	00048: SRP2       
+	00049: IP         
+	00050: IP         
+	00051: SRP2       
+	00052: IP         
+	00053: IP         
+	00054: IUP[y]     
+	00055: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:                              X-Short On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   185,   857)  ->  Abs (   185,   857)
+	  1: Rel (     0,   205)  ->  Abs (   185,  1062)
+	  2: Rel (   205,     0)  ->  Abs (   390,  1062)
+	  3: Rel (     0,  -205)  ->  Abs (   390,   857)
+	  4: Rel (  -205,  -857)  ->  Abs (   185,     0)
+	  5: Rel (     0,   205)  ->  Abs (   185,   205)
+	  6: Rel (   205,     0)  ->  Abs (   390,   205)
+	  7: Rel (     0,  -205)  ->  Abs (   390,     0)
+
+	Glyph  30: off = 0x00001EF4, len = 190
+	  numberOfContours:	2
+	  xMin:			170
+	  yMin:			-290
+	  xMax:			387
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  14
+
+	  Length of Instructions:	133
+	00000: NPUSHB      (47):   115    11   131    11   147    11   163    11   240    11 
+	                             5     0    11     1    38    10    55    10    70    10 
+	                            86    10   101    10   181    10   226    10     7    11 
+	                            10    14     7     4     3    60     1     7    60     6 
+	                             6     5    14     4    11   171    10 
+	00049: PUSHW[1]            336 
+	00052: NPUSHB      (35):     5    60     4     1     6     4    10     2   129     0 
+	                             0     5     6     7    60     4    10    56    11    58 
+	                             5    47     4    63     4     2    32     4     1     4 
+	                           161    15   161   152    24 
+	00089: CALL       
+	00090: SRP0       
+	00091: MIRP[srp0,nmd,rd,0] 
+	00092: DELTAP1    
+	00093: DELTAP2    
+	00094: ALIGNRP    
+	00095: MIRP[srp0,nmd,rd,0] 
+	00096: MIRP[nrp0,nmd,rd,0] 
+	00097: SRP0       
+	00098: MIRP[srp0,md,rd,1] 
+	00099: ALIGNRP    
+	00100: SRP0       
+	00101: ALIGNRP    
+	00102: SRP0       
+	00103: MIRP[nrp0,md,rd,1] 
+	00104: SVTCA[y-axis] 
+	00105: MIAP[rd+ci] 
+	00106: MIAP[rd+ci] 
+	00107: SRP0       
+	00108: MIRP[srp0,md,rd,1] 
+	00109: MIRP[srp0,md,rd,1] 
+	00110: MIRP[nrp0,md,rd,1] 
+	00111: SRP0       
+	00112: ALIGNRP    
+	00113: SRP0       
+	00114: ALIGNRP    
+	00115: SRP0       
+	00116: MIRP[nrp0,md,rd,1] 
+	00117: SRP0       
+	00118: MIRP[nrp0,md,rd,1] 
+	00119: SVTCA[x-axis] 
+	00120: SRP1       
+	00121: SRP2       
+	00122: IP         
+	00123: SVTCA[y-axis] 
+	00124: SRP0       
+	00125: MDRP[nrp0,md,nrd,1] 
+	00126: IUP[y]     
+	00127: IUP[x]     
+	00128: SVTCA[x-axis] 
+	00129: DELTAP2    
+	00130: SVTCA[y-axis] 
+	00131: DELTAP3    
+	00132: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:                              X-Short On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   182,   857)  ->  Abs (   182,   857)
+	  1: Rel (     0,   205)  ->  Abs (   182,  1062)
+	  2: Rel (   205,     0)  ->  Abs (   387,  1062)
+	  3: Rel (     0,  -205)  ->  Abs (   387,   857)
+	  4: Rel (  -205,  -857)  ->  Abs (   182,     0)
+	  5: Rel (     0,   205)  ->  Abs (   182,   205)
+	  6: Rel (   205,     0)  ->  Abs (   387,   205)
+	  7: Rel (     0,  -205)  ->  Abs (   387,     0)
+	  8: Rel (     0,  -113)  ->  Abs (   387,  -113)
+	  9: Rel (   -80,  -139)  ->  Abs (   307,  -252)
+	 10: Rel (   -87,   -38)  ->  Abs (   220,  -290)
+	 11: Rel (   -50,    77)  ->  Abs (   170,  -213)
+	 12: Rel (    57,    25)  ->  Abs (   227,  -188)
+	 13: Rel (    54,    97)  ->  Abs (   281,   -91)
+	 14: Rel (     3,    91)  ->  Abs (   284,     0)
+
+	Glyph  31: off = 0x00001FB2, len = 130
+	  numberOfContours:	1
+	  xMin:			112
+	  yMin:			226
+	  xMax:			1083
+	  yMax:			1219
+
+	EndPoints
+	---------
+	  0:  6
+
+	  Length of Instructions:	90
+	00000: NPUSHB      (12):   143     3   128     5     2     3     5     6     3     8 
+	                             2     5 
+	00014: PUSHW[4]            602     6     3   602 
+	00023: PUSHB[3]              2    64     6 
+	00027: PUSHW[3]            336     2   336 
+	00034: NPUSHB      (21):     0   171     1   171    32     4     2    26     8     4 
+	                            60     1    32     0     1     0   117     7    87    90 
+	                            24 
+	00057: CALL       
+	00058: SRP0       
+	00059: MIRP[srp0,nmd,rd,2] 
+	00060: DELTAP1    
+	00061: ALIGNRP    
+	00062: MIRP[nrp0,md,rd,1] 
+	00063: FLIPOFF    
+	00064: SRP0       
+	00065: MIRP[srp0,nmd,rd,2] 
+	00066: SVTCA[y-axis] 
+	00067: RTHG       
+	00068: MDAP[rd]   
+	00069: SMD        
+	00070: FLIPON     
+	00071: MIRP[nrp0,md,rd,1] 
+	00072: MIRP[nrp0,md,rd,1] 
+	00073: MIRP[nrp0,md,rd,1] 
+	00074: MIRP[nrp0,md,rd,1] 
+	00075: RTG        
+	00076: SMD        
+	00077: SRP0       
+	00078: MIRP[nrp0,md,rd,1] 
+	00079: SRP0       
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: SVTCA[x-axis] 
+	00082: SRP1       
+	00083: SRP2       
+	00084: SLOOP      
+	00085: IP         
+	00086: IUP[y]     
+	00087: IUP[x]     
+	00088: SVTCA[y-axis] 
+	00089: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:                                      On
+	  3:        XDual         Y-Short         On
+	  4:                                      On
+	  5:                                      On
+	  6:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   112,   641)  ->  Abs (   112,   641)
+	  1: Rel (     0,   168)  ->  Abs (   112,   809)
+	  2: Rel (   971,   410)  ->  Abs (  1083,  1219)
+	  3: Rel (     0,  -179)  ->  Abs (  1083,  1040)
+	  4: Rel (  -770,  -316)  ->  Abs (   313,   724)
+	  5: Rel (   770,  -319)  ->  Abs (  1083,   405)
+	  6: Rel (     0,  -179)  ->  Abs (  1083,   226)
+
+	Glyph  32: off = 0x00002034, len = 112
+	  numberOfContours:	2
+	  xMin:			114
+	  yMin:			417
+	  xMax:			1082
+	  yMax:			1030
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	71
+	00000: NPUSHB      (39):     5     6     1     4     7     9     0    37     3     1 
+	                            37     3     2     7    37     4     4     6    37    48 
+	                             2     1   159     2   207     2     2     2   191     5 
+	                             0    26     9     1    25     8    87    90    24 
+	00041: CALL       
+	00042: FLIPOFF    
+	00043: SRP0       
+	00044: MIRP[nrp0,nmd,rd,0] 
+	00045: SRP0       
+	00046: MIRP[nrp0,nmd,rd,2] 
+	00047: SVTCA[y-axis] 
+	00048: MDAP[rd]   
+	00049: FLIPON     
+	00050: MIRP[nrp0,md,rd,1] 
+	00051: DELTAP1    
+	00052: DELTAP2    
+	00053: MIRP[nrp0,md,rd,1] 
+	00054: ALIGNRP    
+	00055: SRP0       
+	00056: MIRP[nrp0,md,rd,1] 
+	00057: SRP0       
+	00058: ALIGNRP    
+	00059: MIRP[nrp0,md,rd,1] 
+	00060: SRP0       
+	00061: MIRP[nrp0,md,rd,1] 
+	00062: SVTCA[x-axis] 
+	00063: SRP1       
+	00064: IP         
+	00065: IP         
+	00066: SRP1       
+	00067: IP         
+	00068: IP         
+	00069: IUP[y]     
+	00070: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1082,   862)  ->  Abs (  1082,   862)
+	  1: Rel (  -968,     0)  ->  Abs (   114,   862)
+	  2: Rel (     0,   168)  ->  Abs (   114,  1030)
+	  3: Rel (   968,     0)  ->  Abs (  1082,  1030)
+	  4: Rel (     0,  -613)  ->  Abs (  1082,   417)
+	  5: Rel (  -968,     0)  ->  Abs (   114,   417)
+	  6: Rel (     0,   168)  ->  Abs (   114,   585)
+	  7: Rel (   968,     0)  ->  Abs (  1082,   585)
+
+	Glyph  33: off = 0x000020A4, len = 134
+	  numberOfContours:	1
+	  xMin:			112
+	  yMin:			226
+	  xMax:			1083
+	  yMax:			1219
+
+	EndPoints
+	---------
+	  0:  6
+
+	  Length of Instructions:	90
+	00000: NPUSHB      (12):   128     2   143     4     2     4     2     1     3     7 
+	                             5     2 
+	00014: PUSHW[4]            602     1     4   602 
+	00023: PUSHB[3]              5    64     1 
+	00027: PUSHW[3]            336     5   336 
+	00034: NPUSHB      (21):     0   171     6   171    32     3     3    60     6     0 
+	                            26     8    32     5     1     5   117     7    87    90 
+	                            24 
+	00057: CALL       
+	00058: SRP0       
+	00059: MIRP[nrp0,nmd,rd,2] 
+	00060: DELTAP1    
+	00061: FLIPOFF    
+	00062: SRP0       
+	00063: MIRP[srp0,nmd,rd,2] 
+	00064: ALIGNRP    
+	00065: FLIPON     
+	00066: MIRP[nrp0,md,rd,1] 
+	00067: SVTCA[y-axis] 
+	00068: RTHG       
+	00069: MDAP[rd]   
+	00070: SMD        
+	00071: MIRP[nrp0,md,rd,1] 
+	00072: MIRP[nrp0,md,rd,1] 
+	00073: MIRP[nrp0,md,rd,1] 
+	00074: MIRP[nrp0,md,rd,1] 
+	00075: RTG        
+	00076: SMD        
+	00077: SRP0       
+	00078: MIRP[nrp0,md,rd,1] 
+	00079: SRP0       
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: SVTCA[x-axis] 
+	00082: SRP1       
+	00083: SRP2       
+	00084: SLOOP      
+	00085: IP         
+	00086: IUP[y]     
+	00087: IUP[x]     
+	00088: SVTCA[y-axis] 
+	00089: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:  YDual XDual         Y-Short         On
+	  3:                                      On
+	  4:                                      On
+	  5:  YDual XDual         Y-Short         On
+	  6:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (  1083,   641)  ->  Abs (  1083,   641)
+	  1: Rel (  -971,  -415)  ->  Abs (   112,   226)
+	  2: Rel (     0,   179)  ->  Abs (   112,   405)
+	  3: Rel (   769,   319)  ->  Abs (   881,   724)
+	  4: Rel (  -769,   316)  ->  Abs (   112,  1040)
+	  5: Rel (     0,   179)  ->  Abs (   112,  1219)
+	  6: Rel (   971,  -410)  ->  Abs (  1083,   809)
+
+	Glyph  34: off = 0x0000212A, len = 242
+	  numberOfContours:	2
+	  xMin:			90
+	  yMin:			0
+	  xMax:			1036
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  30
+	  1:  34
+
+	  Length of Instructions:	132
+	00000: NPUSHB      (47):   140    26   139    27     2   124    26   124    27     2 
+	                            98    26   101    27     2   107    12    97    14     2 
+	                            90    12    84    14     2    54    14    68    14     2 
+	                            27    25     8     7     4     0    16    39    17    17 
+	                             0    13    41    20     1    30     0 
+	00049: PUSHW[1]            687 
+	00052: NPUSHB      (35):    33    34    33    60    31    10    31    60    34    34 
+	                            32    60    33    33    30     0    94    30   110    10 
+	                            94    23   106    36    16    94    32    17     1    17 
+	                           106    35    87    90    24 
+	00089: CALL       
+	00090: SRP0       
+	00091: MIRP[srp0,nmd,rd,2] 
+	00092: DELTAP1    
+	00093: MIRP[nrp0,md,rd,1] 
+	00094: SRP0       
+	00095: MIRP[srp0,nmd,rd,2] 
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: MIRP[srp0,nmd,rd,0] 
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: SRP0       
+	00100: ALIGNRP    
+	00101: SRP0       
+	00102: MIRP[nrp0,md,rd,1] 
+	00103: ALIGNRP    
+	00104: SRP0       
+	00105: MIRP[srp0,md,rd,1] 
+	00106: SVTCA[y-axis] 
+	00107: MIAP[rd+ci] 
+	00108: MIRP[nrp0,md,rd,1] 
+	00109: ALIGNRP    
+	00110: SRP0       
+	00111: MIRP[srp0,nmd,rd,2] 
+	00112: ALIGNRP    
+	00113: MIAP[rd+ci] 
+	00114: MIRP[nrp0,md,rd,1] 
+	00115: SRP2       
+	00116: IP         
+	00117: MDAP[rd]   
+	00118: MIRP[nrp0,nmd,rd,0] 
+	00119: SRP1       
+	00120: SLOOP      
+	00121: IP         
+	00122: IUP[y]     
+	00123: IUP[x]     
+	00124: SVTCA[x-axis] 
+	00125: DELTAP1    
+	00126: DELTAP1    
+	00127: DELTAP1    
+	00128: DELTAP1    
+	00129: SVTCA[y-axis] 
+	00130: DELTAP1    
+	00131: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:                      Y-Short         Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short X-Short On
+	 27:              Rep-  2 Y-Short X-Short Off
+	 30:                      Y-Short X-Short On
+	 31:                              X-Short On
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual                 X-Short On
+	 34:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   472,   361)  ->  Abs (   472,   361)
+	  1: Rel (    -1,    36)  ->  Abs (   471,   397)
+	  2: Rel (     0,    18)  ->  Abs (   471,   415)
+	  3: Rel (     0,   106)  ->  Abs (   471,   521)
+	  4: Rel (    30,    77)  ->  Abs (   501,   598)
+	  5: Rel (    22,    58)  ->  Abs (   523,   656)
+	  6: Rel (    49,    59)  ->  Abs (   572,   715)
+	  7: Rel (    36,    43)  ->  Abs (   608,   758)
+	  8: Rel (   187,   165)  ->  Abs (   795,   923)
+	  9: Rel (    56,    98)  ->  Abs (   851,  1021)
+	 10: Rel (     0,    58)  ->  Abs (   851,  1079)
+	 11: Rel (     0,   105)  ->  Abs (   851,  1184)
+	 12: Rel (  -164,   159)  ->  Abs (   687,  1343)
+	 13: Rel (  -119,     0)  ->  Abs (   568,  1343)
+	 14: Rel (  -115,     0)  ->  Abs (   453,  1343)
+	 15: Rel (  -154,  -144)  ->  Abs (   299,  1199)
+	 16: Rel (   -24,  -153)  ->  Abs (   275,  1046)
+	 17: Rel (  -185,    22)  ->  Abs (    90,  1068)
+	 18: Rel (    25,   205)  ->  Abs (   115,  1273)
+	 19: Rel (   247,   218)  ->  Abs (   362,  1491)
+	 20: Rel (   203,     0)  ->  Abs (   565,  1491)
+	 21: Rel (   215,     0)  ->  Abs (   780,  1491)
+	 22: Rel (   256,  -234)  ->  Abs (  1036,  1257)
+	 23: Rel (     0,  -166)  ->  Abs (  1036,  1091)
+	 24: Rel (     0,   -96)  ->  Abs (  1036,   995)
+	 25: Rel (   -90,  -162)  ->  Abs (   946,   833)
+	 26: Rel (  -131,  -116)  ->  Abs (   815,   717)
+	 27: Rel (   -88,   -78)  ->  Abs (   727,   639)
+	 28: Rel (   -54,   -74)  ->  Abs (   673,   565)
+	 29: Rel (   -26,   -96)  ->  Abs (   647,   469)
+	 30: Rel (    -2,  -108)  ->  Abs (   645,   361)
+	 31: Rel (  -184,  -361)  ->  Abs (   461,     0)
+	 32: Rel (     0,   205)  ->  Abs (   461,   205)
+	 33: Rel (   205,     0)  ->  Abs (   666,   205)
+	 34: Rel (     0,  -205)  ->  Abs (   666,     0)
+
+	Glyph  35: off = 0x0000221C, len = 512
+	  numberOfContours:	2
+	  xMin:			111
+	  yMin:			-431
+	  xMax:			2005
+	  yMax:			1493
+
+	EndPoints
+	---------
+	  0:  71
+	  1:  87
+
+	  Length of Instructions:	247
+	00000: NPUSHB      (87):     4    33    16    32    22    33    33    37    53    13 
+	                            51    14    69    14    73    24    68    33    70    36 
+	                            70    73    71    86    84    14   122    41    14    22 
+	                            37    41     1    38     9    42    29    38    41    53 
+	                            26    54    57    67    37    86    24    89    29    91 
+	                            33    86    41    86    73    89    86   101    24   101 
+	                            37   102    41   118    26   122    29   114    36   133 
+	                            24   132    26   140    29   139    33   135    38    25 
+	                            14    16    80    14     0     3    83 
+	00089: PUSHW[1]            699 
+	00092: NPUSHB      (10):    15    39    48    11    80    11     2    11     7    22 
+	00104: PUSHW[4]            584    67    75   699 
+	00113: PUSHB[5]             67    58     3    10    31 
+	00119: PUSHW[1]            699 
+	00122: PUSHB[8]             58     1    32    43   112    43     2    43 
+	00131: PUSHW[3]            333    39   699 
+	00138: PUSHB[7]             47    72    36    15     7     1     7 
+	00146: PUSHW[1]            643 
+	00149: NPUSHB      (15):    16    80    62     0    36    18   160    15    36    48 
+	                            16   112    16     2    16 
+	00166: PUSHW[3]            425    27   670 
+	00173: PUSHB[5]             63    56    42    36    43 
+	00179: PUSHW[3]            265    35   670 
+	00186: NPUSHB       (9):    32    53     1    53    25    88    87   140    24 
+	00197: CALL       
+	00198: FLIPOFF    
+	00199: SRP0       
+	00200: MIRP[srp0,nmd,rd,0] 
+	00201: DELTAP1    
+	00202: FLIPON     
+	00203: MIRP[nrp0,md,rd,1] 
+	00204: MIRP[srp0,md,rd,1] 
+	00205: MIRP[nrp0,md,rd,1] 
+	00206: MIRP[srp0,nmd,rd,0] 
+	00207: MIRP[nrp0,md,rd,1] 
+	00208: MIRP[srp0,nmd,rd,0] 
+	00209: DELTAP1    
+	00210: MIRP[nrp0,md,rd,1] 
+	00211: MIRP[srp0,nmd,rd,0] 
+	00212: MIRP[srp0,md,rd,1] 
+	00213: MIRP[nrp0,nmd,rd,0] 
+	00214: SRP0       
+	00215: MIRP[srp0,md,rd,1] 
+	00216: DELTAP1    
+	00217: MIRP[nrp0,md,rd,1] 
+	00218: SVTCA[y-axis] 
+	00219: MDAP[rd]   
+	00220: MIRP[nrp0,md,rd,1] 
+	00221: MIRP[nrp0,md,rd,1] 
+	00222: DELTAP1    
+	00223: MIAP[rd+ci] 
+	00224: MIRP[nrp0,md,rd,1] 
+	00225: MIAP[rd+ci] 
+	00226: MIRP[nrp0,nmd,rd,0] 
+	00227: MIRP[nrp0,md,rd,1] 
+	00228: SRP0       
+	00229: MIRP[nrp0,md,rd,1] 
+	00230: MIAP[rd+ci] 
+	00231: DELTAP1    
+	00232: MIRP[nrp0,nmd,rd,0] 
+	00233: MIRP[nrp0,md,rd,1] 
+	00234: SRP2       
+	00235: IP         
+	00236: IP         
+	00237: SVTCA[x-axis] 
+	00238: SRP1       
+	00239: SRP2       
+	00240: IP         
+	00241: IUP[y]     
+	00242: IUP[x]     
+	00243: SVTCA[y-axis] 
+	00244: DELTAP1    
+	00245: SVTCA[x-axis] 
+	00246: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:        XDual                 X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:                              X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:        XDual                 X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:                              X-Short Off
+	 30:  YDual               Y-Short         Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:                      Y-Short         Off
+	 34:                              X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:        XDual                 X-Short Off
+	 38:                      Y-Short         Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual                               Off
+	 41:  YDual               Y-Short         Off
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:  YDual XDual                 X-Short On
+	 44:                      Y-Short X-Short Off
+	 45:                      Y-Short X-Short Off
+	 46:                      Y-Short         Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short Off
+	 49:  YDual               Y-Short         Off
+	 50:  YDual               Y-Short         Off
+	 51:  YDual               Y-Short X-Short On
+	 52:  YDual               Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short         On
+	 54:  YDual XDual         Y-Short         Off
+	 55:  YDual XDual         Y-Short X-Short On
+	 56:        XDual                 X-Short Off
+	 57:                                      Off
+	 58:  YDual                               On
+	 59:  YDual XDual                 X-Short Off
+	 60:                      Y-Short         Off
+	 61:        XDual         Y-Short X-Short On
+	 62:        XDual         Y-Short X-Short Off
+	 63:        XDual         Y-Short         On
+	 64:        XDual                         Off
+	 65:                      Y-Short X-Short On
+	 66:                      Y-Short X-Short Off
+	 67:  YDual                       X-Short On
+	 68:  YDual                       X-Short Off
+	 69:  YDual               Y-Short X-Short Off
+	 70:  YDual               Y-Short X-Short On
+	 71:  YDual               Y-Short X-Short Off
+	 72:                                      On
+	 73:        XDual         Y-Short         Off
+	 74:        XDual         Y-Short X-Short Off
+	 75:  YDual XDual                 X-Short On
+	 76:  YDual XDual                 X-Short Off
+	 77:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 80:  YDual XDual         Y-Short         On
+	 81:  YDual XDual         Y-Short         Off
+	 82:  YDual               Y-Short X-Short Off
+	 83:  YDual                       X-Short On
+	 84:  YDual                       X-Short Off
+	 85:              Rep-  2 Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1161,   163)  ->  Abs (  1161,   163)
+	  1: Rel (   -65,   -75)  ->  Abs (  1096,    88)
+	  2: Rel (  -161,   -91)  ->  Abs (   935,    -3)
+	  3: Rel (   -81,     0)  ->  Abs (   854,    -3)
+	  4: Rel (   -89,     0)  ->  Abs (   765,    -3)
+	  5: Rel (  -168,   104)  ->  Abs (   597,   101)
+	  6: Rel (  -105,   216)  ->  Abs (   492,   317)
+	  7: Rel (     0,   129)  ->  Abs (   492,   446)
+	  8: Rel (     0,   159)  ->  Abs (   492,   605)
+	  9: Rel (   163,   319)  ->  Abs (   655,   924)
+	 10: Rel (   242,   160)  ->  Abs (   897,  1084)
+	 11: Rel (   114,     0)  ->  Abs (  1011,  1084)
+	 12: Rel (    87,     0)  ->  Abs (  1098,  1084)
+	 13: Rel (   158,   -91)  ->  Abs (  1256,   993)
+	 14: Rel (    57,   -93)  ->  Abs (  1313,   900)
+	 15: Rel (    34,   155)  ->  Abs (  1347,  1055)
+	 16: Rel (   179,     0)  ->  Abs (  1526,  1055)
+	 17: Rel (  -144,  -671)  ->  Abs (  1382,   384)
+	 18: Rel (   -30,  -140)  ->  Abs (  1352,   244)
+	 19: Rel (     0,   -15)  ->  Abs (  1352,   229)
+	 20: Rel (     0,   -27)  ->  Abs (  1352,   202)
+	 21: Rel (    41,   -39)  ->  Abs (  1393,   163)
+	 22: Rel (    29,     0)  ->  Abs (  1422,   163)
+	 23: Rel (    53,     0)  ->  Abs (  1475,   163)
+	 24: Rel (    86,    61)  ->  Abs (  1561,   224)
+	 25: Rel (   114,    80)  ->  Abs (  1675,   304)
+	 26: Rel (   133,   269)  ->  Abs (  1808,   573)
+	 27: Rel (     0,   143)  ->  Abs (  1808,   716)
+	 28: Rel (     0,   167)  ->  Abs (  1808,   883)
+	 29: Rel (  -171,   290)  ->  Abs (  1637,  1173)
+	 30: Rel (  -339,   174)  ->  Abs (  1298,  1347)
+	 31: Rel (  -205,     0)  ->  Abs (  1093,  1347)
+	 32: Rel (  -234,     0)  ->  Abs (   859,  1347)
+	 33: Rel (  -387,  -219)  ->  Abs (   472,  1128)
+	 34: Rel (  -213,  -409)  ->  Abs (   259,   719)
+	 35: Rel (     0,  -234)  ->  Abs (   259,   485)
+	 36: Rel (     0,  -245)  ->  Abs (   259,   240)
+	 37: Rel (   213,  -354)  ->  Abs (   472,  -114)
+	 38: Rel (   403,  -169)  ->  Abs (   875,  -283)
+	 39: Rel (   245,     0)  ->  Abs (  1120,  -283)
+	 40: Rel (   262,     0)  ->  Abs (  1382,  -283)
+	 41: Rel (   354,   176)  ->  Abs (  1736,  -107)
+	 42: Rel (    88,   126)  ->  Abs (  1824,    19)
+	 43: Rel (   181,     0)  ->  Abs (  2005,    19)
+	 44: Rel (   -51,  -105)  ->  Abs (  1954,   -86)
+	 45: Rel (  -248,  -218)  ->  Abs (  1706,  -304)
+	 46: Rel (  -342,  -127)  ->  Abs (  1364,  -431)
+	 47: Rel (  -241,     0)  ->  Abs (  1123,  -431)
+	 48: Rel (  -222,     0)  ->  Abs (   901,  -431)
+	 49: Rel (  -375,   114)  ->  Abs (   526,  -317)
+	 50: Rel (  -264,   229)  ->  Abs (   262,   -88)
+	 51: Rel (   -67,   149)  ->  Abs (   195,    61)
+	 52: Rel (   -84,   189)  ->  Abs (   111,   250)
+	 53: Rel (     0,   219)  ->  Abs (   111,   469)
+	 54: Rel (     0,   244)  ->  Abs (   111,   713)
+	 55: Rel (   100,   221)  ->  Abs (   211,   934)
+	 56: Rel (   122,   271)  ->  Abs (   333,  1205)
+	 57: Rel (   449,   288)  ->  Abs (   782,  1493)
+	 58: Rel (   320,     0)  ->  Abs (  1102,  1493)
+	 59: Rel (   248,     0)  ->  Abs (  1350,  1493)
+	 60: Rel (   395,  -203)  ->  Abs (  1745,  1290)
+	 61: Rel (   114,  -201)  ->  Abs (  1859,  1089)
+	 62: Rel (    97,  -173)  ->  Abs (  1956,   916)
+	 63: Rel (     0,  -203)  ->  Abs (  1956,   713)
+	 64: Rel (     0,  -290)  ->  Abs (  1956,   423)
+	 65: Rel (  -204,  -225)  ->  Abs (  1752,   198)
+	 66: Rel (  -182,  -202)  ->  Abs (  1570,    -4)
+	 67: Rel (  -216,     0)  ->  Abs (  1354,    -4)
+	 68: Rel (   -69,     0)  ->  Abs (  1285,    -4)
+	 69: Rel (   -85,    42)  ->  Abs (  1200,    38)
+	 70: Rel (   -20,    39)  ->  Abs (  1180,    77)
+	 71: Rel (   -13,    25)  ->  Abs (  1167,   102)
+	 72: Rel (  -490,   332)  ->  Abs (   677,   434)
+	 73: Rel (     0,  -137)  ->  Abs (   677,   297)
+	 74: Rel (   130,  -152)  ->  Abs (   807,   145)
+	 75: Rel (    84,     0)  ->  Abs (   891,   145)
+	 76: Rel (    56,     0)  ->  Abs (   947,   145)
+	 77: Rel (   124,    67)  ->  Abs (  1071,   212)
+	 78: Rel (   113,   132)  ->  Abs (  1184,   344)
+	 79: Rel (    72,   203)  ->  Abs (  1256,   547)
+	 80: Rel (     0,   102)  ->  Abs (  1256,   649)
+	 81: Rel (     0,   136)  ->  Abs (  1256,   785)
+	 82: Rel (  -135,   150)  ->  Abs (  1121,   935)
+	 83: Rel (   -97,     0)  ->  Abs (  1024,   935)
+	 84: Rel (   -64,     0)  ->  Abs (   960,   935)
+	 85: Rel (  -113,   -65)  ->  Abs (   847,   870)
+	 86: Rel (  -106,  -144)  ->  Abs (   741,   726)
+	 87: Rel (   -64,  -206)  ->  Abs (   677,   520)
+
+	Glyph  36: off = 0x0000241C, len = 426
+	  numberOfContours:	2
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  14
+
+	  Length of Instructions:	359
+	00000: PUSHB[7]              1    14    15    16     2    85     2 
+	00008: PUSHW[1]            -14 
+	00011: PUSHB[5]             15    16     2    85     2 
+	00017: PUSHW[1]             -8 
+	00020: PUSHB[5]             13    13     6    85     2 
+	00026: PUSHW[1]            -12 
+	00029: NPUSHB      (89):    12    12     6    85     9    12    12    12     6    85 
+	                             5    12    12    12     6    85    47    16    48    16 
+	                           103     8   104     9    96    16   136     3   144    16 
+	                           201     5   198     6   192    16   240    16    11     8 
+	                             5    89     1    86     2    80    16   104    11   176 
+	                            16   243    12   243    13   243    14     9     4    12 
+	                             4    13     4    14     3    11    10     9     5     4 
+	                             4    12    13    14     8     6     7     7    12     9 
+	                             5     4     8     6    12     7     1     0     0 
+	00120: PUSHW[1]             -8 
+	00123: NPUSHB      (15):    12    12     2    85     0    32     7    12    20     7 
+	                             7    12     2     3     3 
+	00140: PUSHW[1]             -8 
+	00143: NPUSHB      (21):    12    12     2    85     3    32     4    12    20     4 
+	                             4    12     9    30     5     5     8    30     6     3 
+	                             6 
+	00166: PUSHW[1]            624 
+	00169: NPUSHB       (9):     0     8    12   233    64     2     1     2     2 
+	00180: PUSHW[3]            267     1   267 
+	00187: NPUSHB      (18):    12    32     0   101     7     3    82    80     4   207 
+	                             4   223     4     3   144     4     1     4 
+	00207: PUSHW[1]            257 
+	00210: NPUSHB      (11):    80    12   192     7   223    12     3   144    12     1 
+	                            12 
+	00223: PUSHW[1]            257 
+	00226: NPUSHB      (16):    15     7   207     7     2   127     7   128     7     2 
+	                             7   147    15   214   215    24 
+	00244: CALL       
+	00245: SRP0       
+	00246: MIRP[srp0,nmd,rd,0] 
+	00247: DELTAP1    
+	00248: DELTAP2    
+	00249: RTHG       
+	00250: MIRP[srp0,nmd,rd,0] 
+	00251: DELTAP1    
+	00252: DELTAP2    
+	00253: MIRP[srp0,nmd,rd,0] 
+	00254: DELTAP1    
+	00255: DELTAP2    
+	00256: RTG        
+	00257: MIRP[nrp0,md,rd,1] 
+	00258: SRP0       
+	00259: MIRP[nrp0,md,rd,1] 
+	00260: SMD        
+	00261: RTHG       
+	00262: SRP0       
+	00263: MIRP[nrp0,md,rd,1] 
+	00264: MIRP[nrp0,md,rd,1] 
+	00265: SVTCA[y-axis] 
+	00266: RTG        
+	00267: MIAP[rd+ci] 
+	00268: ALIGNRP    
+	00269: SMD        
+	00270: MIRP[nrp0,md,rd,1] 
+	00271: MIAP[rd+ci] 
+	00272: MIRP[nrp0,nmd,rd,0] 
+	00273: ALIGNRP    
+	00274: SRP0       
+	00275: MIRP[nrp0,md,rd,1] 
+	00276: ALIGNRP    
+	00277: SRP0       
+	00278: MIRP[nrp0,md,rd,1] 
+	00279: SDPVTL[1]  
+	00280: SFVTCA[x-axis] 
+	00281: MDAP[nrd]  
+	00282: CALL       
+	00283: CALL       
+	00284: RDTG       
+	00285: SRP0       
+	00286: MDRP[nrp0,nmd,rd,0] 
+	00287: SDPVTL[1]  
+	00288: MDAP[nrd]  
+	00289: RTG        
+	00290: CALL       
+	00291: CALL       
+	00292: RDTG       
+	00293: SRP0       
+	00294: MDRP[nrp0,nmd,rd,0] 
+	00295: SVTCA[x-axis] 
+	00296: SRP1       
+	00297: SRP2       
+	00298: IP         
+	00299: IP         
+	00300: SRP1       
+	00301: IP         
+	00302: IP         
+	00303: SDPVTL[1]  
+	00304: SRP0       
+	00305: MDRP[nrp0,nmd,rd,0] 
+	00306: MDRP[nrp0,nmd,rd,0] 
+	00307: SFVTPV     
+	00308: MDRP[nrp0,nmd,rd,0] 
+	00309: MDRP[nrp0,nmd,rd,0] 
+	00310: SDPVTL[1]  
+	00311: SFVTCA[x-axis] 
+	00312: SRP0       
+	00313: MDRP[nrp0,nmd,rd,0] 
+	00314: MDRP[nrp0,nmd,rd,0] 
+	00315: SFVTPV     
+	00316: MDRP[nrp0,nmd,rd,0] 
+	00317: MDRP[nrp0,nmd,rd,0] 
+	00318: IUP[y]     
+	00319: IUP[x]     
+	00320: SVTCA[x-axis] 
+	00321: MPPEM      
+	00322: PUSHB[1]             11 
+	00324: GTEQ       
+	00325: MPPEM      
+	00326: PUSHB[1]             30 
+	00328: LTEQ       
+	00329: AND        
+	00330: IF         
+	00331: PUSHB[5]              4    15     3     8     7 
+	00337: PUSHW[3]            -16     0    -8 
+	00344: SHPIX      
+	00345: SHPIX      
+	00346: SHPIX      
+	00347: SHPIX      
+	00348: EIF        
+	00349: SVTCA[x-axis] 
+	00350: DELTAP3    
+	00351: DELTAP2    
+	00352: DELTAP1    
+	00353: CALL       
+	00354: CALL       
+	00355: CALL       
+	00356: CALL       
+	00357: CALL       
+	00358: CALL       
+
+	Flags
+	-----
+	  0:  YDual                       X-Short On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+	  4:  YDual                       X-Short On
+	  5:                              X-Short On
+	  6:  YDual                               On
+	  7:                              X-Short On
+	  8:        XDual                 X-Short On
+	  9:  YDual                               On
+	 10:                              X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    -3,     0)  ->  Abs (    -3,     0)
+	  1: Rel (   563,  1466)  ->  Abs (   560,  1466)
+	  2: Rel (   209,     0)  ->  Abs (   769,  1466)
+	  3: Rel (   600, -1466)  ->  Abs (  1369,     0)
+	  4: Rel (  -221,     0)  ->  Abs (  1148,     0)
+	  5: Rel (  -171,   444)  ->  Abs (   977,   444)
+	  6: Rel (  -613,     0)  ->  Abs (   364,   444)
+	  7: Rel (  -161,  -444)  ->  Abs (   203,     0)
+	  8: Rel (   217,   602)  ->  Abs (   420,   602)
+	  9: Rel (   497,     0)  ->  Abs (   917,   602)
+	 10: Rel (  -153,   406)  ->  Abs (   764,  1008)
+	 11: Rel (   -70,   185)  ->  Abs (   694,  1193)
+	 12: Rel (   -34,   119)  ->  Abs (   660,  1312)
+	 13: Rel (   -28,  -141)  ->  Abs (   632,  1171)
+	 14: Rel (   -51,  -139)  ->  Abs (   581,  1032)
+
+	Glyph  37: off = 0x000025C6, len = 408
+	  numberOfContours:	3
+	  xMin:			150
+	  yMin:			0
+	  xMax:			1257
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  17
+	  1:  29
+	  2:  42
+
+	  Length of Instructions:	275
+	00000: PUSHW[2]              4   -12 
+	00005: NPUSHB      (71):    11    11     6    85     4     4    70    35    86    35 
+	                           102    35   115     9   132     9     6   105    26   117 
+	                             5   112     9   115    11   131     5   131    11     6 
+	                            39    22     9     3    24    39    42    30    22    29 
+	                             9     9    19    18    30    42    42    41    41     0 
+	                            28    29    30     2     1     2    31    30    30    17 
+	                             0     8    24    38     6    12    16    16     2    85 
+	                             6 
+	00078: PUSHW[1]            -26 
+	00081: NPUSHB      (51):    15    15     2    85     6    18    13    13     2    85 
+	                             6     6    12    12     2    85     6     8    11    11 
+	                             6    85     6    12    12    12     6    85     6    20 
+	                            13    13     6    85     6    84    37    38    12    28 
+	                            16    16     2    85    12    10    13    13     2    85 
+	                            12 
+	00134: PUSHW[1]            -12 
+	00137: NPUSHB      (21):    11    11     6    85    12    26    44    29    30    32 
+	                             1    32     0     1     0    32    16    16     2    85 
+	                             0 
+	00160: PUSHW[1]            -10 
+	00163: PUSHB[5]             15    15     2    85     0 
+	00169: PUSHW[1]            -10 
+	00172: PUSHB[5]             13    13     2    85     0 
+	00178: PUSHW[1]             -6 
+	00181: PUSHB[5]             12    12     2    85     0 
+	00187: PUSHW[1]             -6 
+	00190: PUSHB[5]             12    12     6    85     0 
+	00196: PUSHW[1]            -16 
+	00199: NPUSHB      (10):    13    13     6    85     0    93    43    59    92    24 
+	00211: CALL       
+	00212: SRP0       
+	00213: MIRP[srp0,nmd,rd,2] 
+	00214: CALL       
+	00215: CALL       
+	00216: CALL       
+	00217: CALL       
+	00218: CALL       
+	00219: CALL       
+	00220: DELTAP1    
+	00221: ALIGNRP    
+	00222: MIRP[srp0,md,rd,1] 
+	00223: ALIGNRP    
+	00224: FLIPOFF    
+	00225: SRP0       
+	00226: MIRP[srp0,nmd,rd,2] 
+	00227: CALL       
+	00228: CALL       
+	00229: CALL       
+	00230: FLIPON     
+	00231: MIRP[nrp0,md,rd,1] 
+	00232: MIRP[srp0,nmd,rd,0] 
+	00233: CALL       
+	00234: CALL       
+	00235: CALL       
+	00236: CALL       
+	00237: CALL       
+	00238: CALL       
+	00239: CALL       
+	00240: MIRP[nrp0,md,rd,1] 
+	00241: SVTCA[y-axis] 
+	00242: MIAP[rd+ci] 
+	00243: ALIGNRP    
+	00244: MIRP[srp0,md,rd,1] 
+	00245: ALIGNRP    
+	00246: MIAP[rd+ci] 
+	00247: ALIGNRP    
+	00248: MIRP[srp0,md,rd,1] 
+	00249: ALIGNRP    
+	00250: SRP2       
+	00251: IP         
+	00252: MDAP[rd]   
+	00253: ALIGNRP    
+	00254: SRP0       
+	00255: MIRP[srp0,md,rd,1] 
+	00256: ALIGNRP    
+	00257: IP         
+	00258: MDAP[rd]   
+	00259: SRP1       
+	00260: IP         
+	00261: SRP1       
+	00262: SRP2       
+	00263: IP         
+	00264: SVTCA[x-axis] 
+	00265: SRP2       
+	00266: SLOOP      
+	00267: IP         
+	00268: IUP[y]     
+	00269: IUP[x]     
+	00270: SVTCA[x-axis] 
+	00271: DELTAP1    
+	00272: SVTCA[y-axis] 
+	00273: DELTAP1    
+	00274: CALL       
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:              Rep-  2 Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:                                      On
+	 19:  YDual                               On
+	 20:  YDual XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                               On
+	 30:        XDual                         On
+	 31:  YDual                               On
+	 32:  YDual XDual                 X-Short Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   150,     0)  ->  Abs (   150,     0)
+	  1: Rel (     0,  1466)  ->  Abs (   150,  1466)
+	  2: Rel (   550,     0)  ->  Abs (   700,  1466)
+	  3: Rel (   168,     0)  ->  Abs (   868,  1466)
+	  4: Rel (   203,   -89)  ->  Abs (  1071,  1377)
+	  5: Rel (   115,  -185)  ->  Abs (  1186,  1192)
+	  6: Rel (     0,  -101)  ->  Abs (  1186,  1091)
+	  7: Rel (     0,   -94)  ->  Abs (  1186,   997)
+	  8: Rel (  -102,  -166)  ->  Abs (  1084,   831)
+	  9: Rel (  -103,   -51)  ->  Abs (   981,   780)
+	 10: Rel (   133,   -39)  ->  Abs (  1114,   741)
+	 11: Rel (   143,  -188)  ->  Abs (  1257,   553)
+	 12: Rel (     0,  -128)  ->  Abs (  1257,   425)
+	 13: Rel (     0,  -103)  ->  Abs (  1257,   322)
+	 14: Rel (   -87,  -177)  ->  Abs (  1170,   145)
+	 15: Rel (  -128,   -96)  ->  Abs (  1042,    49)
+	 16: Rel (  -193,   -49)  ->  Abs (   849,     0)
+	 17: Rel (  -140,     0)  ->  Abs (   709,     0)
+	 18: Rel (  -365,   850)  ->  Abs (   344,   850)
+	 19: Rel (   317,     0)  ->  Abs (   661,   850)
+	 20: Rel (   129,     0)  ->  Abs (   790,   850)
+	 21: Rel (    56,    17)  ->  Abs (   846,   867)
+	 22: Rel (    74,    22)  ->  Abs (   920,   889)
+	 23: Rel (    75,   102)  ->  Abs (   995,   991)
+	 24: Rel (     0,    77)  ->  Abs (   995,  1068)
+	 25: Rel (     0,    73)  ->  Abs (   995,  1141)
+	 26: Rel (   -70,   111)  ->  Abs (   925,  1252)
+	 27: Rel (  -130,    41)  ->  Abs (   795,  1293)
+	 28: Rel (  -158,     0)  ->  Abs (   637,  1293)
+	 29: Rel (  -293,     0)  ->  Abs (   344,  1293)
+	 30: Rel (     0, -1120)  ->  Abs (   344,   173)
+	 31: Rel (   365,     0)  ->  Abs (   709,   173)
+	 32: Rel (    94,     0)  ->  Abs (   803,   173)
+	 33: Rel (    38,     7)  ->  Abs (   841,   180)
+	 34: Rel (    67,    12)  ->  Abs (   908,   192)
+	 35: Rel (    90,    56)  ->  Abs (   998,   248)
+	 36: Rel (    58,   107)  ->  Abs (  1056,   355)
+	 37: Rel (     0,    70)  ->  Abs (  1056,   425)
+	 38: Rel (     0,    82)  ->  Abs (  1056,   507)
+	 39: Rel (   -84,   121)  ->  Abs (   972,   628)
+	 40: Rel (  -149,    49)  ->  Abs (   823,   677)
+	 41: Rel (  -140,     0)  ->  Abs (   683,   677)
+	 42: Rel (  -339,     0)  ->  Abs (   344,   677)
+
+	Glyph  38: off = 0x0000275E, len = 314
+	  numberOfContours:	1
+	  xMin:			102
+	  yMin:			-25
+	  xMax:			1398
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	211
+	00000: PUSHB[6]             99     2   106    29     2     1 
+	00007: PUSHW[1]            -24 
+	00010: PUSHB[5]             11    11     6    85     0 
+	00016: PUSHW[1]            -24 
+	00019: NPUSHB      (95):    11    11     6    85    32     0    50    13    99     0 
+	                           112     0   116    29   128     0   132    29   144     0 
+	                           154     5   171     3   165    13   185     3   180    13 
+	                           199    13   208     0   228    29   243    29    17    14 
+	                            18    29    17    29    29     3    42     6    40    17 
+	                            42    28    32    31    71    13    86    20    87    21 
+	                            86    25   104     5   107    29   123    18   139    18 
+	                           154     3   153    14   154    28   168     1   164     2 
+	                           168    17   213    14    19     0    20     0    26    16 
+	                            20    16    26     4     2 
+	00116: PUSHW[1]            -34 
+	00119: PUSHB[3]             40    57     1 
+	00123: PUSHW[1]            -64 
+	00126: NPUSHB      (45):    40    57    16    15     0     1     4    27    19    30 
+	                            12     3    27    30     4     9    16    38    15    74 
+	                             0    38    32     1     1     1    26    31    23    38 
+	                            32     8     1     8    12    11    11     6    85     8 
+	                            25    30    99    92    24 
+	00173: CALL       
+	00174: FLIPOFF    
+	00175: SRP0       
+	00176: MIRP[srp0,nmd,rd,0] 
+	00177: CALL       
+	00178: DELTAP1    
+	00179: FLIPON     
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: FLIPOFF    
+	00182: SRP0       
+	00183: MIRP[srp0,nmd,rd,2] 
+	00184: DELTAP1    
+	00185: FLIPON     
+	00186: MIRP[nrp0,md,rd,1] 
+	00187: MIRP[srp0,nmd,rd,0] 
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: SVTCA[y-axis] 
+	00190: MIAP[rd+ci] 
+	00191: MIRP[nrp0,md,rd,1] 
+	00192: MIAP[rd+ci] 
+	00193: MIRP[nrp0,md,rd,1] 
+	00194: SRP1       
+	00195: SLOOP      
+	00196: IP         
+	00197: IUP[y]     
+	00198: IUP[x]     
+	00199: SVTCA[x-axis] 
+	00200: CALL       
+	00201: CALL       
+	00202: DELTAP1    
+	00203: DELTAP1    
+	00204: DELTAP2    
+	00205: SVTCA[y-axis] 
+	00206: DELTAP1    
+	00207: CALL       
+	00208: CALL       
+	00209: SVTCA[x-axis] 
+	00210: DELTAP3    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short         Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short         Off
+	  7:                              X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:        XDual                 X-Short Off
+	 11:  YDual               Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:                      Y-Short         Off
+	 15:        XDual         Y-Short X-Short On
+	 16:                      Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:                      Y-Short X-Short Off
+	 22:                              X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:        XDual                 X-Short Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1204,   514)  ->  Abs (  1204,   514)
+	  1: Rel (   194,   -49)  ->  Abs (  1398,   465)
+	  2: Rel (   -61,  -239)  ->  Abs (  1337,   226)
+	  3: Rel (  -317,  -251)  ->  Abs (  1020,   -25)
+	  4: Rel (  -229,     0)  ->  Abs (   791,   -25)
+	  5: Rel (  -237,     0)  ->  Abs (   554,   -25)
+	  6: Rel (  -297,   193)  ->  Abs (   257,   168)
+	  7: Rel (  -155,   366)  ->  Abs (   102,   534)
+	  8: Rel (     0,   210)  ->  Abs (   102,   744)
+	  9: Rel (     0,   229)  ->  Abs (   102,   973)
+	 10: Rel (   175,   341)  ->  Abs (   277,  1314)
+	 11: Rel (   323,   177)  ->  Abs (   600,  1491)
+	 12: Rel (   194,     0)  ->  Abs (   794,  1491)
+	 13: Rel (   220,     0)  ->  Abs (  1014,  1491)
+	 14: Rel (   300,  -224)  ->  Abs (  1314,  1267)
+	 15: Rel (    59,  -203)  ->  Abs (  1373,  1064)
+	 16: Rel (  -191,   -45)  ->  Abs (  1182,  1019)
+	 17: Rel (   -51,   160)  ->  Abs (  1131,  1179)
+	 18: Rel (  -194,   146)  ->  Abs (   937,  1325)
+	 19: Rel (  -147,     0)  ->  Abs (   790,  1325)
+	 20: Rel (  -169,     0)  ->  Abs (   621,  1325)
+	 21: Rel (  -227,  -162)  ->  Abs (   394,  1163)
+	 22: Rel (   -92,  -273)  ->  Abs (   302,   890)
+	 23: Rel (     0,  -145)  ->  Abs (   302,   745)
+	 24: Rel (     0,  -187)  ->  Abs (   302,   558)
+	 25: Rel (   109,  -279)  ->  Abs (   411,   279)
+	 26: Rel (   230,  -138)  ->  Abs (   641,   141)
+	 27: Rel (   134,     0)  ->  Abs (   775,   141)
+	 28: Rel (   163,     0)  ->  Abs (   938,   141)
+	 29: Rel (   226,   188)  ->  Abs (  1164,   329)
+
+	Glyph  39: off = 0x00002898, len = 328
+	  numberOfContours:	2
+	  xMin:			158
+	  yMin:			0
+	  xMax:			1370
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  15
+	  1:  29
+
+	  Length of Instructions:	229
+	00000: NPUSHB      (47):    32    31     1    67     8    28    29    30     2     1 
+	                             2    17    16    30    15     0     8    23    38    32 
+	                             9     1    31    64    13    13     2    85     9    32 
+	                            16    16     2    85     9    10    15    15     2    85 
+	                             9    24    13    13     2    85     9 
+	00049: PUSHW[1]            -12 
+	00052: NPUSHB      (21):    12    12     6    85     9    26    31    29    16    32 
+	                             1    32     0     1     0    32    16    16     2    85 
+	                             0 
+	00075: PUSHW[1]            -10 
+	00078: PUSHB[5]             15    15     2    85     0 
+	00084: PUSHW[1]            -10 
+	00087: PUSHB[5]             13    13     2    85     0 
+	00093: PUSHW[1]             -6 
+	00096: PUSHB[5]             12    12     2    85     0 
+	00102: PUSHW[1]             -9 
+	00105: PUSHB[5]             12    12     6    85     0 
+	00111: PUSHW[1]             -8 
+	00114: NPUSHB      (10):    13    13     6    85     0    93    30    59    92    24 
+	00126: CALL       
+	00127: SRP0       
+	00128: MIRP[srp0,nmd,rd,2] 
+	00129: CALL       
+	00130: CALL       
+	00131: CALL       
+	00132: CALL       
+	00133: CALL       
+	00134: CALL       
+	00135: DELTAP1    
+	00136: ALIGNRP    
+	00137: MIRP[srp0,md,rd,1] 
+	00138: ALIGNRP    
+	00139: SRP0       
+	00140: MIRP[srp0,nmd,rd,2] 
+	00141: CALL       
+	00142: CALL       
+	00143: CALL       
+	00144: CALL       
+	00145: CALL       
+	00146: DELTAP1    
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: SVTCA[y-axis] 
+	00149: MIAP[rd+ci] 
+	00150: ALIGNRP    
+	00151: MIRP[srp0,md,rd,1] 
+	00152: ALIGNRP    
+	00153: MIAP[rd+ci] 
+	00154: ALIGNRP    
+	00155: MIRP[srp0,md,rd,1] 
+	00156: ALIGNRP    
+	00157: IUP[y]     
+	00158: IUP[x]     
+	00159: RS         
+	00160: JROF       
+	00161: NPUSHB      (54):     3    27     7     8     6     8     5     8     4     8 
+	                             4     6    25    24    26    24     2     6    11    10 
+	                            12    10    13    10     3     6    21    22    20    22 
+	                            19    22     3     6    27     3    23    33     1    18 
+	                            14    23    33     1    24     8    28    33     1    22 
+	                            10    17    33     0 
+	00217: CALL       
+	00218: CALL       
+	00219: SVTCA[x-axis] 
+	00220: CALL       
+	00221: CALL       
+	00222: LOOPCALL   
+	00223: LOOPCALL   
+	00224: LOOPCALL   
+	00225: LOOPCALL   
+	00226: FLIPRGON   
+	00227: SVTCA[x-axis] 
+	00228: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short On
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                              X-Short Off
+	 12:              Rep-  2 Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual               Y-Short         On
+	 17:  YDual                               On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual               Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   158,     0)  ->  Abs (   158,     0)
+	  1: Rel (     0,  1466)  ->  Abs (   158,  1466)
+	  2: Rel (   505,     0)  ->  Abs (   663,  1466)
+	  3: Rel (   171,     0)  ->  Abs (   834,  1466)
+	  4: Rel (    90,   -21)  ->  Abs (   924,  1445)
+	  5: Rel (   126,   -29)  ->  Abs (  1050,  1416)
+	  6: Rel (    89,   -76)  ->  Abs (  1139,  1340)
+	  7: Rel (   116,   -98)  ->  Abs (  1255,  1242)
+	  8: Rel (   115,  -305)  ->  Abs (  1370,   937)
+	  9: Rel (     0,  -196)  ->  Abs (  1370,   741)
+	 10: Rel (     0,  -167)  ->  Abs (  1370,   574)
+	 11: Rel (   -78,  -258)  ->  Abs (  1292,   316)
+	 12: Rel (  -122,  -169)  ->  Abs (  1170,   147)
+	 13: Rel (  -145,   -97)  ->  Abs (  1025,    50)
+	 14: Rel (  -205,   -50)  ->  Abs (   820,     0)
+	 15: Rel (  -133,     0)  ->  Abs (   687,     0)
+	 16: Rel (  -335,   173)  ->  Abs (   352,   173)
+	 17: Rel (   313,     0)  ->  Abs (   665,   173)
+	 18: Rel (   145,     0)  ->  Abs (   810,   173)
+	 19: Rel (   165,    54)  ->  Abs (   975,   227)
+	 20: Rel (    49,    49)  ->  Abs (  1024,   276)
+	 21: Rel (    69,    69)  ->  Abs (  1093,   345)
+	 22: Rel (    77,   233)  ->  Abs (  1170,   578)
+	 23: Rel (     0,   166)  ->  Abs (  1170,   744)
+	 24: Rel (     0,   230)  ->  Abs (  1170,   974)
+	 25: Rel (  -151,   247)  ->  Abs (  1019,  1221)
+	 26: Rel (  -108,    42)  ->  Abs (   911,  1263)
+	 27: Rel (   -78,    30)  ->  Abs (   833,  1293)
+	 28: Rel (  -173,     0)  ->  Abs (   660,  1293)
+	 29: Rel (  -308,     0)  ->  Abs (   352,  1293)
+
+	Glyph  40: off = 0x000029E0, len = 196
+	  numberOfContours:	1
+	  xMin:			162
+	  yMin:			0
+	  xMax:			1256
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	149
+	00000: NPUSHB      (21):     6     5    30     8     8     7     7     0     3     4 
+	                            30     2     1     2    10     9    30    11     0     8 
+	                             7 
+	00023: PUSHW[1]            -64 
+	00026: NPUSHB      (29):    16    18    52     7    84     3    74    32    10    32 
+	                            13     2    10    26    13     4     9    32     1    32 
+	                             0     1     0    32    16    16     2    85     0 
+	00057: PUSHW[1]            -10 
+	00060: PUSHB[5]             15    15     2    85     0 
+	00066: PUSHW[1]            -10 
+	00069: PUSHB[5]             13    13     2    85     0 
+	00075: PUSHW[1]             -6 
+	00078: PUSHB[5]             12    12     2    85     0 
+	00084: PUSHW[1]             -6 
+	00087: PUSHB[5]             12    12     6    85     0 
+	00093: PUSHW[1]            -16 
+	00096: NPUSHB      (10):    13    13     6    85     0    93    12    59    91    24 
+	00108: CALL       
+	00109: FLIPOFF    
+	00110: SRP0       
+	00111: MIRP[srp0,nmd,rd,0] 
+	00112: CALL       
+	00113: CALL       
+	00114: CALL       
+	00115: CALL       
+	00116: CALL       
+	00117: CALL       
+	00118: DELTAP1    
+	00119: ALIGNRP    
+	00120: FLIPON     
+	00121: MIRP[srp0,md,rd,1] 
+	00122: ALIGNRP    
+	00123: FLIPOFF    
+	00124: SRP0       
+	00125: MIRP[srp0,nmd,rd,2] 
+	00126: DELTAP1    
+	00127: FLIPON     
+	00128: MIRP[srp0,nmd,rd,0] 
+	00129: MIRP[nrp0,nmd,rd,0] 
+	00130: CALL       
+	00131: SVTCA[y-axis] 
+	00132: MIAP[rd+ci] 
+	00133: ALIGNRP    
+	00134: MIRP[srp0,md,rd,1] 
+	00135: ALIGNRP    
+	00136: MIAP[rd+ci] 
+	00137: ALIGNRP    
+	00138: MIRP[srp0,md,rd,1] 
+	00139: ALIGNRP    
+	00140: SRP2       
+	00141: IP         
+	00142: MDAP[rd]   
+	00143: ALIGNRP    
+	00144: SRP0       
+	00145: MIRP[srp0,md,rd,1] 
+	00146: ALIGNRP    
+	00147: IUP[y]     
+	00148: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual                               On
+	  7:        XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:        XDual                         On
+	 10:  YDual                               On
+	 11:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   162,     0)  ->  Abs (   162,     0)
+	  1: Rel (     0,  1466)  ->  Abs (   162,  1466)
+	  2: Rel (  1060,     0)  ->  Abs (  1222,  1466)
+	  3: Rel (     0,  -173)  ->  Abs (  1222,  1293)
+	  4: Rel (  -866,     0)  ->  Abs (   356,  1293)
+	  5: Rel (     0,  -449)  ->  Abs (   356,   844)
+	  6: Rel (   811,     0)  ->  Abs (  1167,   844)
+	  7: Rel (     0,  -172)  ->  Abs (  1167,   672)
+	  8: Rel (  -811,     0)  ->  Abs (   356,   672)
+	  9: Rel (     0,  -499)  ->  Abs (   356,   173)
+	 10: Rel (   900,     0)  ->  Abs (  1256,   173)
+	 11: Rel (     0,  -173)  ->  Abs (  1256,     0)
+
+	Glyph  41: off = 0x00002AA4, len = 182
+	  numberOfContours:	1
+	  xMin:			168
+	  yMin:			0
+	  xMax:			1157
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	141
+	00000: NPUSHB      (43):     6     5    30     8     8   143     7     1     7     7 
+	                             0     3     4    30     2     1     2     0     8     7 
+	                           156    32     2    32    11     2     2    26    11     4 
+	                             9    32     1    32     0     1     0    32    16    16 
+	                             2    85     0 
+	00045: PUSHW[1]            -10 
+	00048: PUSHB[5]             15    15     2    85     0 
+	00054: PUSHW[1]            -10 
+	00057: PUSHB[5]             13    13     2    85     0 
+	00063: PUSHW[1]             -6 
+	00066: NPUSHB      (11):    12    12     2    85     0    12    11    11     6    85 
+	                             0 
+	00079: PUSHW[1]             -2 
+	00082: PUSHB[5]             12    12     6    85     0 
+	00088: PUSHW[1]            -16 
+	00091: NPUSHB      (10):    13    13     6    85     0    93    10    59    92    24 
+	00103: CALL       
+	00104: FLIPOFF    
+	00105: SRP0       
+	00106: MIRP[srp0,nmd,rd,0] 
+	00107: CALL       
+	00108: CALL       
+	00109: CALL       
+	00110: CALL       
+	00111: CALL       
+	00112: CALL       
+	00113: CALL       
+	00114: DELTAP1    
+	00115: ALIGNRP    
+	00116: FLIPON     
+	00117: MIRP[srp0,md,rd,1] 
+	00118: ALIGNRP    
+	00119: FLIPOFF    
+	00120: SRP0       
+	00121: MIRP[srp0,nmd,rd,2] 
+	00122: DELTAP1    
+	00123: FLIPON     
+	00124: MIRP[nrp0,nmd,rd,0] 
+	00125: SVTCA[y-axis] 
+	00126: MIAP[rd+ci] 
+	00127: MIAP[rd+ci] 
+	00128: ALIGNRP    
+	00129: MIRP[srp0,md,rd,1] 
+	00130: ALIGNRP    
+	00131: SRP2       
+	00132: IP         
+	00133: MDAP[rd]   
+	00134: DELTAP1    
+	00135: ALIGNRP    
+	00136: SRP0       
+	00137: MIRP[srp0,md,rd,1] 
+	00138: ALIGNRP    
+	00139: IUP[y]     
+	00140: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual                               On
+	  7:        XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   168,     0)  ->  Abs (   168,     0)
+	  1: Rel (     0,  1466)  ->  Abs (   168,  1466)
+	  2: Rel (   989,     0)  ->  Abs (  1157,  1466)
+	  3: Rel (     0,  -173)  ->  Abs (  1157,  1293)
+	  4: Rel (  -795,     0)  ->  Abs (   362,  1293)
+	  5: Rel (     0,  -454)  ->  Abs (   362,   839)
+	  6: Rel (   688,     0)  ->  Abs (  1050,   839)
+	  7: Rel (     0,  -173)  ->  Abs (  1050,   666)
+	  8: Rel (  -688,     0)  ->  Abs (   362,   666)
+	  9: Rel (     0,  -666)  ->  Abs (   362,     0)
+
+	Glyph  42: off = 0x00002B5A, len = 400
+	  numberOfContours:	1
+	  xMin:			109
+	  yMin:			-25
+	  xMax:			1465
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  37
+
+	  Length of Instructions:	275
+	00000: NPUSHB      (26):    27    20    27    21     2    96    39     1    94     8 
+	                            19     1    18     3    36    36     0    33    18    23 
+	                             2    37     0    30     2     1 
+	00028: PUSHW[1]            -64 
+	00031: NPUSHB      (32):    12    12     6    85     1     1     6    23    30    14 
+	                             3    33    30     6     9     1     1    38    39    37 
+	                            36    32     3     3    32     2    32    39    96     2 
+	                             3     2 
+	00065: PUSHW[1]            -28 
+	00068: PUSHB[5]             15    15     2    85     2 
+	00074: PUSHW[1]            -14 
+	00077: PUSHB[5]             13    13     2    85     2 
+	00083: PUSHW[1]            -38 
+	00086: PUSHB[5]             12    12     2    85     2 
+	00092: PUSHW[1]            -12 
+	00095: NPUSHB      (27):    12    12     6    85     2   114   128    39     1    39 
+	                            29    38    32    10     1    10    16    12    12     6 
+	                            85    10    25    38    99    91    24 
+	00124: CALL       
+	00125: FLIPOFF    
+	00126: SRP0       
+	00127: MIRP[srp0,nmd,rd,0] 
+	00128: CALL       
+	00129: DELTAP1    
+	00130: FLIPON     
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: FLIPON     
+	00133: SRP0       
+	00134: DELTAP1    
+	00135: MIRP[srp0,nmd,rd,2] 
+	00136: CALL       
+	00137: CALL       
+	00138: CALL       
+	00139: CALL       
+	00140: DELTAP1    
+	00141: ALIGNRP    
+	00142: FLIPON     
+	00143: SRP0       
+	00144: MIRP[srp0,md,rd,1] 
+	00145: ALIGNRP    
+	00146: SRP1       
+	00147: SRP2       
+	00148: IP         
+	00149: MDAP[rd]   
+	00150: SVTCA[y-axis] 
+	00151: MIAP[rd+ci] 
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: MIAP[rd+ci] 
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: SRP2       
+	00156: IP         
+	00157: MDAP[rd]   
+	00158: CALL       
+	00159: ALIGNRP    
+	00160: MIRP[srp0,md,rd,1] 
+	00161: ALIGNRP    
+	00162: SRP1       
+	00163: SRP2       
+	00164: IP         
+	00165: SRP1       
+	00166: SRP2       
+	00167: IP         
+	00168: SVTCA[x-axis] 
+	00169: SRP1       
+	00170: SRP2       
+	00171: IP         
+	00172: SRP2       
+	00173: IP         
+	00174: IUP[y]     
+	00175: IUP[x]     
+	00176: RS         
+	00177: JROF       
+	00178: NPUSHB      (68):     4    35    27    28    26    28    25    28     3     6 
+	                            12    38    16    37    21    38    31    38     8    37 
+	                             4    38    35    37    24    13    29    33     0    22 
+	                            15    19    33     1    17    18    20    19    32     7 
+	                            29    33     0    34     5    37    33     1    28    11 
+	                            23    33     1    20    17    23    33     1    30     9 
+	                            33    33     0    36     3    33    33     0 
+	00248: SVTCA[y-axis] 
+	00249: CALL       
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+	00253: SVTCA[x-axis] 
+	00254: CALL       
+	00255: CALL       
+	00256: SRP0       
+	00257: ALIGNRP    
+	00258: SRP0       
+	00259: ALIGNRP    
+	00260: CALL       
+	00261: CALL       
+	00262: CALL       
+	00263: CALL       
+	00264: CALL       
+	00265: CALL       
+	00266: CALL       
+	00267: CALL       
+	00268: CALL       
+	00269: LOOPCALL   
+	00270: FLIPRGON   
+	00271: SVTCA[x-axis] 
+	00272: DELTAP1    
+	00273: SVTCA[y-axis] 
+	00274: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual               Y-Short         On
+	  3:        XDual                         On
+	  4:                      Y-Short X-Short Off
+	  5:                      Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short         Off
+	  9:                              X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:        XDual                 X-Short Off
+	 13:  YDual               Y-Short         Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:                      Y-Short         Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short X-Short On
+	 19:                      Y-Short X-Short On
+	 20:  YDual       Rep-  2 Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short On
+	 28:                      Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:        XDual                 X-Short Off
+	 32:                      Y-Short         Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   844,   575)  ->  Abs (   844,   575)
+	  1: Rel (     0,   172)  ->  Abs (   844,   747)
+	  2: Rel (   621,     1)  ->  Abs (  1465,   748)
+	  3: Rel (     0,  -544)  ->  Abs (  1465,   204)
+	  4: Rel (  -143,  -114)  ->  Abs (  1322,    90)
+	  5: Rel (  -304,  -115)  ->  Abs (  1018,   -25)
+	  6: Rel (  -160,     0)  ->  Abs (   858,   -25)
+	  7: Rel (  -216,     0)  ->  Abs (   642,   -25)
+	  8: Rel (  -353,   185)  ->  Abs (   289,   160)
+	  9: Rel (  -180,   350)  ->  Abs (   109,   510)
+	 10: Rel (     0,   216)  ->  Abs (   109,   726)
+	 11: Rel (     0,   214)  ->  Abs (   109,   940)
+	 12: Rel (   179,   371)  ->  Abs (   288,  1311)
+	 13: Rel (   336,   180)  ->  Abs (   624,  1491)
+	 14: Rel (   219,     0)  ->  Abs (   843,  1491)
+	 15: Rel (   159,     0)  ->  Abs (  1002,  1491)
+	 16: Rel (   257,  -103)  ->  Abs (  1259,  1388)
+	 17: Rel (   146,  -184)  ->  Abs (  1405,  1204)
+	 18: Rel (    38,  -148)  ->  Abs (  1443,  1056)
+	 19: Rel (  -175,   -48)  ->  Abs (  1268,  1008)
+	 20: Rel (   -33,   112)  ->  Abs (  1235,  1120)
+	 21: Rel (   -98,   128)  ->  Abs (  1137,  1248)
+	 22: Rel (  -182,    77)  ->  Abs (   955,  1325)
+	 23: Rel (  -111,     0)  ->  Abs (   844,  1325)
+	 24: Rel (  -133,     0)  ->  Abs (   711,  1325)
+	 25: Rel (  -194,   -81)  ->  Abs (   517,  1244)
+	 26: Rel (  -119,  -132)  ->  Abs (   398,  1112)
+	 27: Rel (   -33,   -79)  ->  Abs (   365,  1033)
+	 28: Rel (   -56,  -136)  ->  Abs (   309,   897)
+	 29: Rel (     0,  -159)  ->  Abs (   309,   738)
+	 30: Rel (     0,  -196)  ->  Abs (   309,   542)
+	 31: Rel (   135,  -264)  ->  Abs (   444,   278)
+	 32: Rel (   258,  -128)  ->  Abs (   702,   150)
+	 33: Rel (   145,     0)  ->  Abs (   847,   150)
+	 34: Rel (   126,     0)  ->  Abs (   973,   150)
+	 35: Rel (   240,    97)  ->  Abs (  1213,   247)
+	 36: Rel (    62,    55)  ->  Abs (  1275,   302)
+	 37: Rel (     0,   273)  ->  Abs (  1275,   575)
+
+	Glyph  43: off = 0x00002CEA, len = 262
+	  numberOfContours:	1
+	  xMin:			164
+	  yMin:			0
+	  xMax:			1314
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	216
+	00000: PUSHW[2]             13   -64 
+	00005: NPUSHB      (26):    19    21    52     4     3    30     9    10   160    10 
+	                           208    10     2    10     5     2     2    11     8     8 
+	                             5     8    32     7     7     6 
+	00033: PUSHW[1]            -18 
+	00036: PUSHB[5]             15    15     2    85     6 
+	00042: PUSHW[1]            -14 
+	00045: NPUSHB      (11):    13    13     2    85     6    16    12    12     2    85 
+	                             6 
+	00058: PUSHW[1]            -32 
+	00061: NPUSHB      (24):    11    11     6    85     6     1    12    12     6    85 
+	                             6    93   128    13     1    13     2    11    32     1 
+	                            32     0     1     0 
+	00087: PUSHW[1]            -64 
+	00090: NPUSHB      (10):    19    21    52     0    32    16    16     2    85     0 
+	00102: PUSHW[1]            -10 
+	00105: PUSHB[5]             15    15     2    85     0 
+	00111: PUSHW[1]            -10 
+	00114: PUSHB[5]             13    13     2    85     0 
+	00120: PUSHW[1]             -6 
+	00123: NPUSHB      (11):    12    12     2    85     0     8    11    11     6    85 
+	                             0 
+	00136: PUSHW[1]             -9 
+	00139: PUSHB[5]             12    12     6    85     0 
+	00145: PUSHW[1]             -8 
+	00148: NPUSHB      (22):    13    13     6    85     0    93    12    32    13     1 
+	                            32    13    80    13    96    13   112    13     4    59 
+	                            89    24 
+	00172: CALL       
+	00173: DELTAP1    
+	00174: DELTAP2    
+	00175: SRP0       
+	00176: MIRP[srp0,nmd,rd,2] 
+	00177: CALL       
+	00178: CALL       
+	00179: CALL       
+	00180: CALL       
+	00181: CALL       
+	00182: CALL       
+	00183: CALL       
+	00184: CALL       
+	00185: DELTAP1    
+	00186: ALIGNRP    
+	00187: MIRP[srp0,md,rd,1] 
+	00188: ALIGNRP    
+	00189: SRP0       
+	00190: DELTAP1    
+	00191: MIRP[srp0,nmd,rd,2] 
+	00192: CALL       
+	00193: CALL       
+	00194: CALL       
+	00195: CALL       
+	00196: CALL       
+	00197: ALIGNRP    
+	00198: SRP0       
+	00199: MIRP[srp0,md,rd,1] 
+	00200: ALIGNRP    
+	00201: SVTCA[y-axis] 
+	00202: MIAP[rd+ci] 
+	00203: ALIGNRP    
+	00204: MIAP[rd+ci] 
+	00205: ALIGNRP    
+	00206: IP         
+	00207: DELTAP1    
+	00208: MDAP[rd]   
+	00209: ALIGNRP    
+	00210: MIRP[srp0,md,rd,1] 
+	00211: ALIGNRP    
+	00212: IUP[y]     
+	00213: IUP[x]     
+	00214: SVTCA[x-axis] 
+	00215: CALL       
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:  YDual                       X-Short On
+	  9:        XDual                         On
+	 10:  YDual                               On
+	 11:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   164,     0)  ->  Abs (   164,     0)
+	  1: Rel (     0,  1466)  ->  Abs (   164,  1466)
+	  2: Rel (   194,     0)  ->  Abs (   358,  1466)
+	  3: Rel (     0,  -602)  ->  Abs (   358,   864)
+	  4: Rel (   762,     0)  ->  Abs (  1120,   864)
+	  5: Rel (     0,   602)  ->  Abs (  1120,  1466)
+	  6: Rel (   194,     0)  ->  Abs (  1314,  1466)
+	  7: Rel (     0, -1466)  ->  Abs (  1314,     0)
+	  8: Rel (  -194,     0)  ->  Abs (  1120,     0)
+	  9: Rel (     0,   691)  ->  Abs (  1120,   691)
+	 10: Rel (  -762,     0)  ->  Abs (   358,   691)
+	 11: Rel (     0,  -691)  ->  Abs (   358,     0)
+
+	Glyph  44: off = 0x00002DF0, len = 228
+	  numberOfContours:	1
+	  xMin:			191
+	  yMin:			0
+	  xMax:			385
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	204
+	00000: PUSHB[6]              1     2     0     8     2     5 
+	00007: PUSHW[1]            -64 
+	00010: PUSHB[4]             56    61    52     5 
+	00015: PUSHW[1]            -64 
+	00018: PUSHB[4]             51    52    52     5 
+	00023: PUSHW[1]            -64 
+	00026: PUSHB[4]             45    48    52     5 
+	00031: PUSHW[1]            -64 
+	00034: PUSHB[4]             40    41    52     5 
+	00039: PUSHW[1]            -64 
+	00042: PUSHB[4]             35    37    52     5 
+	00047: PUSHW[1]            -64 
+	00050: PUSHB[4]             29    30    52     5 
+	00055: PUSHW[1]            -64 
+	00058: PUSHB[4]             24    26    52     5 
+	00063: PUSHW[1]            -64 
+	00066: NPUSHB      (42):    13    16    52    32     5   144     5   175     5     3 
+	                             3    32     1     0     0   143     0   160     0   176 
+	                             0     4    47     0    64     0    80     0   223     0 
+	                           240     0     5    18    32     0   143     0   144     0 
+	                             3     5 
+	00110: PUSHW[1]            -64 
+	00113: NPUSHB      (11):    13    13     2    85     0    24    16    16     2    85 
+	                             0 
+	00126: PUSHW[1]            -20 
+	00129: PUSHB[5]             15    15     2    85     0 
+	00135: PUSHW[1]            -18 
+	00138: PUSHB[5]             13    13     2    85     0 
+	00144: PUSHW[1]            -10 
+	00147: NPUSHB      (16):    12    12     2    85     0    32    11    11     6    85 
+	                             0   162     4   214    89    24 
+	00165: CALL       
+	00166: SRP0       
+	00167: MIRP[srp0,nmd,rd,2] 
+	00168: CALL       
+	00169: CALL       
+	00170: CALL       
+	00171: CALL       
+	00172: CALL       
+	00173: CALL       
+	00174: DELTAP1    
+	00175: RS         
+	00176: NOT        
+	00177: IF         
+	00178: PUSHB[3]            128     0     1 
+	00182: SVTCA[x-axis] 
+	00183: DELTAP1    
+	00184: EIF        
+	00185: DELTAP2    
+	00186: DELTAP3    
+	00187: ALIGNRP    
+	00188: MIRP[srp0,md,rd,1] 
+	00189: DELTAP1    
+	00190: CALL       
+	00191: CALL       
+	00192: CALL       
+	00193: CALL       
+	00194: CALL       
+	00195: CALL       
+	00196: CALL       
+	00197: CALL       
+	00198: ALIGNRP    
+	00199: SVTCA[y-axis] 
+	00200: MIAP[rd+ci] 
+	00201: MIAP[rd+ci] 
+	00202: IUP[y]     
+	00203: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   191,     0)  ->  Abs (   191,     0)
+	  1: Rel (     0,  1466)  ->  Abs (   191,  1466)
+	  2: Rel (   194,     0)  ->  Abs (   385,  1466)
+	  3: Rel (     0, -1466)  ->  Abs (   385,     0)
+
+	Glyph  45: off = 0x00002ED4, len = 232
+	  numberOfContours:	1
+	  xMin:			55
+	  yMin:			-25
+	  xMax:			865
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	169
+	00000: NPUSHB      (16):   101     2   103     6   116     2   117     6   136    13 
+	                           136    17     6     9     2     1 
+	00018: PUSHW[1]            -64 
+	00021: PUSHB[5]             11    12     6    85     1 
+	00027: PUSHW[1]            282 
+	00030: NPUSHB      (11):     4    30    15     9     9    38    10    10     8    38 
+	                            11 
+	00043: PUSHW[1]            -22 
+	00046: PUSHB[5]             16    16     2    85    11 
+	00052: PUSHW[1]            -22 
+	00055: PUSHB[5]             13    13     2    85    11 
+	00061: PUSHW[1]             -2 
+	00064: PUSHB[5]             12    12     2    85    11 
+	00070: PUSHW[1]            -24 
+	00073: PUSHB[5]             11    11     6    85    11 
+	00079: PUSHW[1]             -2 
+	00082: NPUSHB      (22):    12    12     6    85    11    93    32    19     1    32 
+	                            19    64    19    80    19    96    19     4    19     1 
+	                            38     0 
+	00106: PUSHW[1]            -24 
+	00109: PUSHB[5]             12    12     2    85     0 
+	00115: PUSHW[1]            -22 
+	00118: PUSHB[5]             12    12     6    85     0 
+	00124: PUSHW[1]            -36 
+	00127: NPUSHB      (10):    13    13     6    85     0    75    18   182    89    24 
+	00139: CALL       
+	00140: SRP0       
+	00141: MIRP[srp0,nmd,rd,2] 
+	00142: CALL       
+	00143: CALL       
+	00144: CALL       
+	00145: MIRP[nrp0,md,rd,1] 
+	00146: SRP0       
+	00147: DELTAP1    
+	00148: DELTAP2    
+	00149: MIRP[srp0,nmd,rd,2] 
+	00150: CALL       
+	00151: CALL       
+	00152: CALL       
+	00153: CALL       
+	00154: CALL       
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: ALIGNRP    
+	00157: SRP0       
+	00158: MIRP[nrp0,md,rd,1] 
+	00159: SVTCA[y-axis] 
+	00160: MIAP[rd+ci] 
+	00161: MIRP[nrp0,md,rd,1] 
+	00162: MIRP[nrp0,md,rd,1] 
+	00163: CALL       
+	00164: MIAP[rd+ci] 
+	00165: IUP[y]     
+	00166: IUP[x]     
+	00167: SVTCA[y-axis] 
+	00168: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:        XDual                         On
+	 10:  YDual XDual                 X-Short On
+	 11:        XDual                         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    59,   416)  ->  Abs (    59,   416)
+	  1: Rel (   175,    24)  ->  Abs (   234,   440)
+	  2: Rel (     7,  -168)  ->  Abs (   241,   272)
+	  3: Rel (   112,  -124)  ->  Abs (   353,   148)
+	  4: Rel (    99,     0)  ->  Abs (   452,   148)
+	  5: Rel (    73,     0)  ->  Abs (   525,   148)
+	  6: Rel (   106,    67)  ->  Abs (   631,   215)
+	  7: Rel (    40,   115)  ->  Abs (   671,   330)
+	  8: Rel (     0,   126)  ->  Abs (   671,   456)
+	  9: Rel (     0,  1010)  ->  Abs (   671,  1466)
+	 10: Rel (   194,     0)  ->  Abs (   865,  1466)
+	 11: Rel (     0,  -999)  ->  Abs (   865,   467)
+	 12: Rel (     0,  -184)  ->  Abs (   865,   283)
+	 13: Rel (   -89,  -202)  ->  Abs (   776,    81)
+	 14: Rel (  -193,  -106)  ->  Abs (   583,   -25)
+	 15: Rel (  -130,     0)  ->  Abs (   453,   -25)
+	 16: Rel (  -193,     0)  ->  Abs (   260,   -25)
+	 17: Rel (  -205,   222)  ->  Abs (    55,   197)
+
+	Glyph  46: off = 0x00002FBC, len = 566
+	  numberOfContours:	1
+	  xMin:			150
+	  yMin:			0
+	  xMax:			1362
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	510
+	00000: NPUSHB      (30):     3    34    55    57     8     9    58    39    10    53 
+	                             6    54    10    71    10    87     3   134     3   215 
+	                             3     7   118    10   217     3   217    10     3     6 
+	00032: PUSHW[1]            -12 
+	00035: NPUSHB      (24):    13    13     2    85    40     5   140     4   138     5 
+	                           170     4   234     8     5    10     4     1    53     4 
+	                           214     4     2     9 
+	00061: PUSHW[1]            -32 
+	00064: NPUSHB       (9):    18    33    52     3    32    18    33    52     3 
+	00075: PUSHW[1]            -34 
+	00078: PUSHB[4]             12    57    18     9 
+	00083: PUSHW[1]            -32 
+	00086: PUSHB[4]             18    33    52     8 
+	00091: PUSHW[1]            -32 
+	00094: PUSHB[4]             18    33    52     4 
+	00099: PUSHW[1]            -32 
+	00102: PUSHB[4]             29    33    52     4 
+	00107: PUSHW[1]            -64 
+	00110: PUSHB[4]             18    22    52     8 
+	00115: PUSHW[1]            -34 
+	00118: NPUSHB      (61):    25    57     8     9    37    37    61     8     9    25 
+	                            25    61     6     6     7     9    10     9     8    10 
+	                             5     3     4     4    32     5    10    20     5     5 
+	                            10     9     8     8    32     7     6    20     7     7 
+	                             6    10    10     0     5     2     4     1     2     7 
+	                            11     8     0     8    10     3     2    11     1     0 
+	                             4 
+	00181: PUSHW[1]            570 
+	00184: NPUSHB      (15):    48     5     1   160     5   176     5   192     5   224 
+	                             5     4     5    74     8 
+	00201: PUSHW[1]            570 
+	00204: NPUSHB      (11):    48     7     1    32     7   128     7   176     7     3 
+	                             7 
+	00217: PUSHW[1]            646 
+	00220: NPUSHB      (12):    11    32    32     0     1     0    32    16    16     2 
+	                            85     0 
+	00234: PUSHW[1]            -10 
+	00237: PUSHB[5]             15    15     2    85     0 
+	00243: PUSHW[1]            -10 
+	00246: PUSHB[5]             13    13     2    85     0 
+	00252: PUSHW[1]             -6 
+	00255: PUSHB[5]             12    12     2    85     0 
+	00261: PUSHW[1]             -6 
+	00264: PUSHB[5]             12    12     6    85     0 
+	00270: PUSHW[1]            -14 
+	00273: NPUSHB      (10):    13    13     6    85     0    93    12    59   168    24 
+	00285: CALL       
+	00286: SRP0       
+	00287: MIRP[srp0,nmd,rd,0] 
+	00288: CALL       
+	00289: CALL       
+	00290: CALL       
+	00291: CALL       
+	00292: CALL       
+	00293: CALL       
+	00294: DELTAP1    
+	00295: MIRP[nrp0,md,rd,1] 
+	00296: MIRP[srp0,md,rd,1] 
+	00297: DELTAP1    
+	00298: DELTAP2    
+	00299: MIRP[nrp0,md,rd,1] 
+	00300: MIRP[srp0,nmd,rd,0] 
+	00301: DELTAP1    
+	00302: DELTAP2    
+	00303: MIRP[nrp0,md,rd,1] 
+	00304: SRP0       
+	00305: ALIGNRP    
+	00306: SRP0       
+	00307: ALIGNRP    
+	00308: ALIGNRP    
+	00309: ALIGNRP    
+	00310: SVTCA[y-axis] 
+	00311: MIAP[rd+ci] 
+	00312: ALIGNRP    
+	00313: ALIGNRP    
+	00314: ALIGNRP    
+	00315: MIAP[rd+ci] 
+	00316: ALIGNRP    
+	00317: ALIGNRP    
+	00318: ALIGNRP    
+	00319: SRP2       
+	00320: IP         
+	00321: MDAP[rd]   
+	00322: SDPVTL[1]  
+	00323: SFVTCA[x-axis] 
+	00324: MDAP[nrd]  
+	00325: CALL       
+	00326: SFVTPV     
+	00327: RDTG       
+	00328: SRP0       
+	00329: MDRP[nrp0,nmd,rd,0] 
+	00330: SDPVTL[1]  
+	00331: SFVTCA[x-axis] 
+	00332: MDAP[nrd]  
+	00333: RTG        
+	00334: CALL       
+	00335: SFVTCA[y-axis] 
+	00336: RDTG       
+	00337: SRP0       
+	00338: MDRP[nrp0,nmd,rd,0] 
+	00339: SPVTL[p1,p2] 
+	00340: SFVTL[=p1,p2] 
+	00341: SRP0       
+	00342: ALIGNRP    
+	00343: SFVTL[=p1,p2] 
+	00344: ALIGNRP    
+	00345: SVTCA[x-axis] 
+	00346: MPPEM      
+	00347: PUSHB[1]             24 
+	00349: GTEQ       
+	00350: MPPEM      
+	00351: PUSHB[1]             27 
+	00353: LTEQ       
+	00354: AND        
+	00355: IF         
+	00356: PUSHW[2]              4   -40 
+	00361: SHPIX      
+	00362: EIF        
+	00363: PUSHB[2]              6     2 
+	00366: RS         
+	00367: EQ         
+	00368: IF         
+	00369: PUSHW[2]              4   -16 
+	00374: PUSHB[4]             12    17    52     3 
+	00379: PUSHW[1]            -16 
+	00382: NPUSHB      (23):    12    17    52     6    16    14    17    52     8    16 
+	                            14    16    52     9    16    14    17    52    10    16 
+	                            13    16    52 
+	00407: SVTCA[y-axis] 
+	00408: CALL       
+	00409: CALL       
+	00410: CALL       
+	00411: CALL       
+	00412: CALL       
+	00413: CALL       
+	00414: EIF        
+	00415: IUP[y]     
+	00416: IUP[x]     
+	00417: SVTCA[x-axis] 
+	00418: CALL       
+	00419: CALL       
+	00420: CALL       
+	00421: CALL       
+	00422: CALL       
+	00423: CALL       
+	00424: CALL       
+	00425: RS         
+	00426: NOT        
+	00427: IF         
+	00428: NPUSHB      (17):     9    34    25    57     8    44    25    57     4    44 
+	                            25    57     4    34    27    57     5 
+	00447: PUSHW[1]            -34 
+	00450: PUSHB[7]             22    57     4    34    22    57     6 
+	00458: PUSHW[1]            -34 
+	00461: NPUSHB      (11):    18    57     8    34    20    57     4    64    20    57 
+	                             8 
+	00474: PUSHW[1]            -34 
+	00477: PUSHB[6]             37    57     4    64    21    57 
+	00484: CALL       
+	00485: CALL       
+	00486: CALL       
+	00487: CALL       
+	00488: CALL       
+	00489: CALL       
+	00490: CALL       
+	00491: CALL       
+	00492: CALL       
+	00493: CALL       
+	00494: CALL       
+	00495: EIF        
+	00496: SVTCA[y-axis] 
+	00497: CALL       
+	00498: CALL       
+	00499: CALL       
+	00500: SVTCA[x-axis] 
+	00501: DELTAP2    
+	00502: DELTAP3    
+	00503: DELTAP1    
+	00504: CALL       
+	00505: SVTCA[y-axis] 
+	00506: DELTAP2    
+	00507: DELTAP1    
+	00508: CALL       
+	00509: CALL       
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:                                      On
+	  5:  YDual                               On
+	  6:                                      On
+	  7:                                      On
+	  8:  YDual                               On
+	  9:                                      On
+	 10:                      Y-Short X-Short On
+	 11:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   150,     0)  ->  Abs (   150,     0)
+	  1: Rel (     0,  1466)  ->  Abs (   150,  1466)
+	  2: Rel (   194,     0)  ->  Abs (   344,  1466)
+	  3: Rel (     0,  -727)  ->  Abs (   344,   739)
+	  4: Rel (   728,   727)  ->  Abs (  1072,  1466)
+	  5: Rel (   263,     0)  ->  Abs (  1335,  1466)
+	  6: Rel (  -615,  -594)  ->  Abs (   720,   872)
+	  7: Rel (   642,  -872)  ->  Abs (  1362,     0)
+	  8: Rel (  -256,     0)  ->  Abs (  1106,     0)
+	  9: Rel (  -522,   742)  ->  Abs (   584,   742)
+	 10: Rel (  -240,  -234)  ->  Abs (   344,   508)
+	 11: Rel (     0,  -508)  ->  Abs (   344,     0)
+
+	Glyph  47: off = 0x000031F2, len = 138
+	  numberOfContours:	1
+	  xMin:			150
+	  yMin:			0
+	  xMax:			1066
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	109
+	00000: NPUSHB      (12):     1     2     4     3    30     5     0     8    32     4 
+	                             1     4 
+	00014: PUSHW[1]            679 
+	00017: NPUSHB      (15):     7     2     3    32     1    32     0     1     0    32 
+	                            16    16     2    85     0 
+	00034: PUSHW[1]            -10 
+	00037: PUSHB[5]             15    15     2    85     0 
+	00043: PUSHW[1]            -10 
+	00046: PUSHB[5]             13    13     2    85     0 
+	00052: PUSHW[1]             -6 
+	00055: PUSHB[5]             12    12     2    85     0 
+	00061: PUSHW[1]            -10 
+	00064: PUSHB[5]             12    12     6    85     0 
+	00070: PUSHW[1]             -8 
+	00073: NPUSHB      (10):    13    13     6    85     0    93     6    59    92    24 
+	00085: CALL       
+	00086: SRP0       
+	00087: MIRP[srp0,nmd,rd,2] 
+	00088: CALL       
+	00089: CALL       
+	00090: CALL       
+	00091: CALL       
+	00092: CALL       
+	00093: CALL       
+	00094: DELTAP1    
+	00095: ALIGNRP    
+	00096: MIRP[srp0,md,rd,1] 
+	00097: ALIGNRP    
+	00098: SRP0       
+	00099: MIRP[nrp0,nmd,rd,2] 
+	00100: DELTAP1    
+	00101: SVTCA[y-axis] 
+	00102: MIAP[rd+ci] 
+	00103: ALIGNRP    
+	00104: MIRP[srp0,md,rd,1] 
+	00105: ALIGNRP    
+	00106: MIAP[rd+ci] 
+	00107: IUP[y]     
+	00108: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   150,     0)  ->  Abs (   150,     0)
+	  1: Rel (     0,  1466)  ->  Abs (   150,  1466)
+	  2: Rel (   194,     0)  ->  Abs (   344,  1466)
+	  3: Rel (     0, -1293)  ->  Abs (   344,   173)
+	  4: Rel (   722,     0)  ->  Abs (  1066,   173)
+	  5: Rel (     0,  -173)  ->  Abs (  1066,     0)
+
+	Glyph  48: off = 0x0000327C, len = 810
+	  numberOfContours:	1
+	  xMin:			152
+	  yMin:			0
+	  xMax:			1551
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  16
+
+	  Length of Instructions:	740
+	00000: PUSHB[2]              2     2 
+	00003: RS         
+	00004: EQ         
+	00005: IF         
+	00006: PUSHW[2]              8   -10 
+	00011: NPUSHB      (11):    12    12     2    85     8    14    13    17     2    85 
+	                             2 
+	00024: PUSHW[1]            -18 
+	00027: PUSHB[5]             13    17     2    85     5 
+	00033: PUSHW[1]            -18 
+	00036: NPUSHB      (40):    13    17     2    85    12    18    12    12     2    85 
+	                             5    15    12     3     9     0     1     2     8     9 
+	                            11    14     0     8     9     2    10    11     6    16 
+	                            16     2    85    11    16    13    13     2    85    11 
+	00078: PUSHW[1]             -6 
+	00081: PUSHB[7]             12    12     2    85    11    16     0 
+	00089: PUSHW[1]            -26 
+	00092: PUSHB[5]             16    16     2    85     0 
+	00098: PUSHW[1]             -8 
+	00101: PUSHB[5]             15    15     2    85     0 
+	00107: PUSHW[1]             -4 
+	00110: PUSHB[5]             13    13     2    85     0 
+	00116: MDAP[rd]   
+	00117: CALL       
+	00118: CALL       
+	00119: CALL       
+	00120: MDRP[nrp0,md,rd,1] 
+	00121: MDAP[rd]   
+	00122: CALL       
+	00123: CALL       
+	00124: CALL       
+	00125: MDRP[nrp0,md,rd,1] 
+	00126: SVTCA[y-axis] 
+	00127: MIAP[rd+ci] 
+	00128: MIAP[rd+ci] 
+	00129: MDRP[nrp0,nmd,nrd,0] 
+	00130: MDRP[nrp0,nmd,nrd,0] 
+	00131: SRP0       
+	00132: MDRP[srp0,nmd,nrd,0] 
+	00133: MDRP[srp0,nmd,nrd,0] 
+	00134: MDRP[nrp0,nmd,nrd,0] 
+	00135: SRP1       
+	00136: SRP2       
+	00137: SLOOP      
+	00138: IP         
+	00139: CALL       
+	00140: CALL       
+	00141: IUP[y]     
+	00142: IUP[x]     
+	00143: SVTCA[x-axis] 
+	00144: CALL       
+	00145: CALL       
+	00146: CALL       
+	00147: SVTCA[y-axis] 
+	00148: ELSE       
+	00149: PUSHB[2]              6     2 
+	00152: RS         
+	00153: EQ         
+	00154: IF         
+	00155: NPUSHB      (31):     7    32    11    11     6    85     6    32    11    11 
+	                             6    85     3    32    11    11     6    85     4    32 
+	                            11    11     6    85     5    32    11    11     6    85 
+	                             8 
+	00188: PUSHW[1]            -14 
+	00191: NPUSHB      (35):    11    11     6    85     2    12    11    11     6    85 
+	                             3     6    12    12     6    85     2    14    12    12 
+	                             6    85     9    12    12    12     6    85    10    12 
+	                            12    12     6    85     7 
+	00228: PUSHW[1]             -8 
+	00231: PUSHB[5]             13    13     6    85     8 
+	00237: PUSHW[1]             -8 
+	00240: NPUSHB      (31):    13    13     6    85    38     5     1    12    32    10 
+	                            18    52    15    32    10    18    52    15     5    12 
+	                             3     0     1    14    11     0     8     8     1     2 
+	                            10 
+	00273: PUSHW[1]            -18 
+	00276: PUSHB[5]             11    11     6    85    10 
+	00282: PUSHW[1]            -18 
+	00285: PUSHB[5]             12    12     6    85    10 
+	00291: PUSHW[4]            598    18    16   598 
+	00300: NPUSHB      (13):     0    12    11    11     6    85     0     6    12    12 
+	                             6    85     0 
+	00315: PUSHW[1]             -8 
+	00318: PUSHB[5]             13    13     6    85     0 
+	00324: SVTCA[x-axis] 
+	00325: MDAP[rd]   
+	00326: CALL       
+	00327: CALL       
+	00328: CALL       
+	00329: MIRP[srp0,nmd,rd,0] 
+	00330: MDAP[rd]   
+	00331: MIRP[srp0,nmd,rd,0] 
+	00332: CALL       
+	00333: CALL       
+	00334: SVTCA[y-axis] 
+	00335: MIAP[rd+ci] 
+	00336: ALIGNRP    
+	00337: MIAP[rd+ci] 
+	00338: ALIGNRP    
+	00339: ALIGNRP    
+	00340: SRP1       
+	00341: SRP2       
+	00342: SLOOP      
+	00343: IP         
+	00344: CALL       
+	00345: CALL       
+	00346: DELTAP1    
+	00347: IUP[y]     
+	00348: IUP[x]     
+	00349: SVTCA[x-axis] 
+	00350: CALL       
+	00351: CALL       
+	00352: CALL       
+	00353: CALL       
+	00354: CALL       
+	00355: CALL       
+	00356: CALL       
+	00357: CALL       
+	00358: SVTCA[y-axis] 
+	00359: CALL       
+	00360: CALL       
+	00361: CALL       
+	00362: CALL       
+	00363: CALL       
+	00364: ELSE       
+	00365: NPUSHB     (127):     0     2    15     8    20     2    27     8     4   118 
+	                            12   134    12   200    12     3     9    12    73    12 
+	                            73    15     3    41     4    37    13    44    14    88 
+	                             3    91     4   118    13   120    14   135    13     8 
+	                            11     2     5     8    57    13    54    14    79     2 
+	                            75     3    68     7    64     8    77    13    66    14 
+	                            10   152     2   153     3   150     7   150     8   168 
+	                             3   167     7     6    18     2    15    14    14    48 
+	                             5     2    20     5     5     2     8    12    13    13 
+	                            48     5     8    20     5     5     8    12    82    15 
+	                            82     1    64     1     2     2     8     8     9    10 
+	                            11    11    13    13    14    14    16     0     8     9 
+	                             2    96    18   128    18     2    18 
+	00494: PUSHW[3]            680    13   305 
+	00501: PUSHB[3]              5    32     8 
+	00505: PUSHW[1]            305 
+	00508: NPUSHB      (10):    12     9    10    32    64    12   127    11     1    11 
+	00520: PUSHW[3]            598    14   267 
+	00527: PUSHB[3]              5    32     2 
+	00531: PUSHW[1]            267 
+	00534: NPUSHB       (9):    15     1     0    32    15   112    16     1    16 
+	00545: PUSHW[1]            598 
+	00548: PUSHB[8]             32     5    96     5   128     5     3     5 
+	00557: PUSHW[1]            680 
+	00560: PUSHB[4]             17    59    89    24 
+	00565: CALL       
+	00566: RTHG       
+	00567: SRP0       
+	00568: MIRP[srp0,nmd,rd,0] 
+	00569: DELTAP1    
+	00570: MIRP[srp0,nmd,rd,0] 
+	00571: DELTAP1    
+	00572: ALIGNRP    
+	00573: RTG        
+	00574: MIRP[srp0,md,rd,1] 
+	00575: ALIGNRP    
+	00576: SRP0       
+	00577: MIRP[nrp0,md,rd,1] 
+	00578: SMD        
+	00579: RTHG       
+	00580: SRP0       
+	00581: MIRP[nrp0,md,rd,1] 
+	00582: MIRP[srp0,nmd,rd,0] 
+	00583: DELTAP1    
+	00584: ALIGNRP    
+	00585: SMD        
+	00586: RTG        
+	00587: MIRP[srp0,md,rd,1] 
+	00588: ALIGNRP    
+	00589: SRP0       
+	00590: MIRP[nrp0,md,rd,1] 
+	00591: SMD        
+	00592: RTHG       
+	00593: SRP0       
+	00594: MIRP[nrp0,md,rd,1] 
+	00595: MIRP[nrp0,nmd,rd,0] 
+	00596: DELTAP1    
+	00597: SVTCA[y-axis] 
+	00598: RTG        
+	00599: MIAP[rd+ci] 
+	00600: MIAP[rd+ci] 
+	00601: ALIGNRP    
+	00602: ALIGNRP    
+	00603: SRP0       
+	00604: ALIGNRP    
+	00605: SRP0       
+	00606: ALIGNRP    
+	00607: SRP0       
+	00608: ALIGNRP    
+	00609: SRP0       
+	00610: ALIGNRP    
+	00611: SRP0       
+	00612: ALIGNRP    
+	00613: SRP0       
+	00614: ALIGNRP    
+	00615: SMD        
+	00616: SRP0       
+	00617: MIRP[nrp0,md,rd,1] 
+	00618: MIRP[nrp0,md,rd,1] 
+	00619: SDPVTL[1]  
+	00620: SFVTCA[x-axis] 
+	00621: MDAP[nrd]  
+	00622: CALL       
+	00623: SDPVTL[1]  
+	00624: RDTG       
+	00625: MDRP[nrp0,nmd,rd,0] 
+	00626: SDPVTL[1]  
+	00627: MDAP[nrd]  
+	00628: RTG        
+	00629: CALL       
+	00630: SDPVTL[1]  
+	00631: RDTG       
+	00632: MDRP[nrp0,nmd,rd,0] 
+	00633: IUP[y]     
+	00634: IUP[x]     
+	00635: SVTCA[y-axis] 
+	00636: MPPEM      
+	00637: PUSHB[1]             11 
+	00639: GTEQ       
+	00640: MPPEM      
+	00641: PUSHB[1]             30 
+	00643: LTEQ       
+	00644: AND        
+	00645: IF         
+	00646: PUSHW[6]             12    -5     8   -42     2   -42 
+	00659: SHPIX      
+	00660: SHPIX      
+	00661: SHPIX      
+	00662: EIF        
+	00663: SVTCA[x-axis] 
+	00664: MPPEM      
+	00665: PUSHB[1]             12 
+	00667: GTEQ       
+	00668: MPPEM      
+	00669: PUSHB[1]             40 
+	00671: LTEQ       
+	00672: AND        
+	00673: IF         
+	00674: PUSHW[2]             13    -8 
+	00679: PUSHB[2]             14    10 
+	00682: SHPIX      
+	00683: SHPIX      
+	00684: EIF        
+	00685: SVTCA[x-axis] 
+	00686: RS         
+	00687: NOT        
+	00688: IF         
+	00689: PUSHW[2]             13   -44 
+	00694: PUSHB[7]             33    57    14    44    33    57    13 
+	00702: PUSHW[1]            -44 
+	00705: PUSHB[7]             55    57    14    50    55    57    13 
+	00713: PUSHW[1]            -44 
+	00716: PUSHB[6]             45    57    14    44    45    57 
+	00723: CALL       
+	00724: CALL       
+	00725: CALL       
+	00726: CALL       
+	00727: CALL       
+	00728: CALL       
+	00729: EIF        
+	00730: DELTAP3    
+	00731: DELTAP2    
+	00732: DELTAP1    
+	00733: SVTCA[y-axis] 
+	00734: DELTAP2    
+	00735: DELTAP1    
+	00736: SVTCA[x-axis] 
+	00737: DELTAP1    
+	00738: EIF        
+	00739: EIF        
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:                                      On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:                                      On
+	  9:  YDual                               On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+	 12:        XDual                         On
+	 13:                                      On
+	 14:  YDual                       X-Short On
+	 15:                                      On
+	 16:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   152,     0)  ->  Abs (   152,     0)
+	  1: Rel (     0,  1466)  ->  Abs (   152,  1466)
+	  2: Rel (   292,     0)  ->  Abs (   444,  1466)
+	  3: Rel (   347, -1038)  ->  Abs (   791,   428)
+	  4: Rel (    48,  -145)  ->  Abs (   839,   283)
+	  5: Rel (    22,   -72)  ->  Abs (   861,   211)
+	  6: Rel (    25,    80)  ->  Abs (   886,   291)
+	  7: Rel (    53,   155)  ->  Abs (   939,   446)
+	  8: Rel (   351,  1020)  ->  Abs (  1290,  1466)
+	  9: Rel (   261,     0)  ->  Abs (  1551,  1466)
+	 10: Rel (     0, -1466)  ->  Abs (  1551,     0)
+	 11: Rel (  -187,     0)  ->  Abs (  1364,     0)
+	 12: Rel (     0,  1227)  ->  Abs (  1364,  1227)
+	 13: Rel (  -426, -1227)  ->  Abs (   938,     0)
+	 14: Rel (  -175,     0)  ->  Abs (   763,     0)
+	 15: Rel (  -424,  1248)  ->  Abs (   339,  1248)
+	 16: Rel (     0, -1248)  ->  Abs (   339,     0)
+
+	Glyph  49: off = 0x000035A6, len = 426
+	  numberOfContours:	1
+	  xMin:			156
+	  yMin:			0
+	  xMax:			1311
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	381
+	00000: PUSHB[2]             18    11 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (10):    19    21    52     8    24    12    22     2    85     3 
+	00018: PUSHW[1]            -24 
+	00021: NPUSHB      (33):    12    22     2    85     8     2     3     3    32     7 
+	                             8    20     7     7     8     2     7     3     3     8 
+	                             9     4     2     2     9     7     8     4     3    32 
+	                             6     6     5 
+	00056: PUSHW[1]            -20 
+	00059: PUSHB[5]             15    15     2    85     5 
+	00065: PUSHW[1]            -14 
+	00068: NPUSHB      (11):    13    13     2    85     5    18    12    12     2    85 
+	                             5 
+	00081: PUSHW[1]             -9 
+	00084: NPUSHB      (26):    11    11     6    85     5    93    32    11     1    32 
+	                            11    80    11    96    11   112    11   128    11     5 
+	                            11     8     9    32     1     0 
+	00112: PUSHW[1]            -64 
+	00115: NPUSHB      (13):    19    21    52    32     0     1     0    32    16    16 
+	                             2    85     0 
+	00130: PUSHW[1]            -10 
+	00133: PUSHB[5]             15    15     2    85     0 
+	00139: PUSHW[1]            -10 
+	00142: PUSHB[5]             13    13     2    85     0 
+	00148: PUSHW[1]             -6 
+	00151: NPUSHB      (11):    12    12     2    85     0     4    11    11     6    85 
+	                             0 
+	00164: PUSHW[1]             -9 
+	00167: PUSHB[5]             12    12     6    85     0 
+	00173: PUSHW[1]             -8 
+	00176: NPUSHB      (10):    13    13     6    85     0    93    10    59    89    24 
+	00188: CALL       
+	00189: SRP0       
+	00190: MIRP[srp0,nmd,rd,2] 
+	00191: CALL       
+	00192: CALL       
+	00193: CALL       
+	00194: CALL       
+	00195: CALL       
+	00196: CALL       
+	00197: CALL       
+	00198: DELTAP1    
+	00199: CALL       
+	00200: ALIGNRP    
+	00201: MIRP[srp0,md,rd,1] 
+	00202: ALIGNRP    
+	00203: SRP0       
+	00204: DELTAP1    
+	00205: DELTAP2    
+	00206: MIRP[srp0,nmd,rd,0] 
+	00207: CALL       
+	00208: CALL       
+	00209: CALL       
+	00210: CALL       
+	00211: ALIGNRP    
+	00212: SRP0       
+	00213: MIRP[srp0,md,rd,1] 
+	00214: ALIGNRP    
+	00215: SVTCA[y-axis] 
+	00216: MIAP[rd+ci] 
+	00217: ALIGNRP    
+	00218: MIAP[rd+ci] 
+	00219: ALIGNRP    
+	00220: SRP2       
+	00221: IP         
+	00222: IP         
+	00223: SVTCA[x-axis] 
+	00224: SRP1       
+	00225: IP         
+	00226: IP         
+	00227: SDPVTL[1]  
+	00228: SFVTCA[y-axis] 
+	00229: MDAP[nrd]  
+	00230: CALL       
+	00231: SDPVTL[1]  
+	00232: RDTG       
+	00233: MDRP[nrp0,nmd,rd,0] 
+	00234: PUSHB[2]              6     2 
+	00237: RS         
+	00238: EQ         
+	00239: IF         
+	00240: PUSHW[2]              3   -32 
+	00245: PUSHB[8]             12    17    52     8    32    12    17    52 
+	00254: SVTCA[y-axis] 
+	00255: CALL       
+	00256: CALL       
+	00257: EIF        
+	00258: IUP[y]     
+	00259: IUP[x]     
+	00260: CALL       
+	00261: CALL       
+	00262: SVTCA[x-axis] 
+	00263: CALL       
+	00264: RS         
+	00265: NOT        
+	00266: IF         
+	00267: PUSHB[5]              8    64    70    57     3 
+	00273: PUSHW[1]            -64 
+	00276: PUSHB[7]             70    57     8    64    50    57     3 
+	00284: PUSHW[1]            -64 
+	00287: PUSHB[7]             50    57     7    34    25    57     2 
+	00295: PUSHW[1]            -34 
+	00298: PUSHB[7]             25    57     7    34    50    57     2 
+	00306: PUSHW[1]            -34 
+	00309: PUSHB[7]             50    57     7    34    35    57     2 
+	00317: PUSHW[1]            -34 
+	00320: NPUSHB      (11):    35    57     7    14    20    57     7    14    19    57 
+	                             2 
+	00333: PUSHW[1]            -12 
+	00336: PUSHB[7]             19    57     7    14    29    57     2 
+	00344: PUSHW[1]            -12 
+	00347: PUSHB[7]             29    57     7    14    21    57     2 
+	00355: PUSHW[1]             -8 
+	00358: PUSHB[2]             21    57 
+	00361: CALL       
+	00362: CALL       
+	00363: CALL       
+	00364: CALL       
+	00365: CALL       
+	00366: CALL       
+	00367: CALL       
+	00368: SVTCA[x-axis] 
+	00369: CALL       
+	00370: CALL       
+	00371: CALL       
+	00372: CALL       
+	00373: CALL       
+	00374: CALL       
+	00375: SVTCA[y-axis] 
+	00376: CALL       
+	00377: CALL       
+	00378: CALL       
+	00379: CALL       
+	00380: EIF        
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual                       X-Short On
+	  8:                                      On
+	  9:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   156,     0)  ->  Abs (   156,     0)
+	  1: Rel (     0,  1466)  ->  Abs (   156,  1466)
+	  2: Rel (   199,     0)  ->  Abs (   355,  1466)
+	  3: Rel (   770, -1151)  ->  Abs (  1125,   315)
+	  4: Rel (     0,  1151)  ->  Abs (  1125,  1466)
+	  5: Rel (   186,     0)  ->  Abs (  1311,  1466)
+	  6: Rel (     0, -1466)  ->  Abs (  1311,     0)
+	  7: Rel (  -199,     0)  ->  Abs (  1112,     0)
+	  8: Rel (  -770,  1152)  ->  Abs (   342,  1152)
+	  9: Rel (     0, -1152)  ->  Abs (   342,     0)
+
+	Glyph  50: off = 0x00003750, len = 308
+	  numberOfContours:	2
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1501
+	  yMax:			1492
+
+	EndPoints
+	---------
+	  0:  14
+	  1:  27
+
+	  Length of Instructions:	202
+	00000: NPUSHB      (80):    26    15     1    20    16    20    20    27    23    27 
+	                            27     4     4    16     4    20    11    23    11    27 
+	                             4   169    23   182    14   198    14     3    23    23 
+	                            24    27     2    32    29    64    17    79    19    79 
+	                            23    64    26    88     5    88     9    87    16    85 
+	                            17    95    19    90    23    95    24    86    26    87 
+	                            27   139    23   153     2    16    25    30     3     3 
+	                            18    30    11     9    21    38    32     7     1     7 
+	00082: PUSHW[1]            -24 
+	00085: PUSHB[5]             16    16     2    85     7 
+	00091: PUSHW[1]            -18 
+	00094: PUSHB[5]             13    13     2    85     7 
+	00100: PUSHW[1]            -16 
+	00103: PUSHB[5]             12    12     2    85     7 
+	00109: PUSHW[1]            -22 
+	00112: PUSHB[5]             11    11     6    85     7 
+	00118: PUSHW[1]            -12 
+	00121: PUSHB[5]             13    13     6    85     7 
+	00127: PUSHW[1]             -6 
+	00130: NPUSHB      (33):    12    12     6    85     7    26   128    29     1    29 
+	                            15    38    32     0     1     0     6    11    11     6 
+	                            85     0     6    12    12     6    85     0    25    28 
+	                            99    92    24 
+	00165: CALL       
+	00166: FLIPOFF    
+	00167: SRP0       
+	00168: MIRP[srp0,nmd,rd,0] 
+	00169: CALL       
+	00170: CALL       
+	00171: DELTAP1    
+	00172: FLIPON     
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: FLIPOFF    
+	00175: SRP0       
+	00176: DELTAP1    
+	00177: MIRP[srp0,nmd,rd,2] 
+	00178: CALL       
+	00179: CALL       
+	00180: CALL       
+	00181: CALL       
+	00182: CALL       
+	00183: CALL       
+	00184: DELTAP1    
+	00185: FLIPON     
+	00186: MIRP[nrp0,md,rd,1] 
+	00187: SVTCA[y-axis] 
+	00188: MIAP[rd+ci] 
+	00189: MIRP[nrp0,md,rd,1] 
+	00190: MIAP[rd+ci] 
+	00191: MIRP[nrp0,md,rd,1] 
+	00192: IUP[y]     
+	00193: IUP[x]     
+	00194: SVTCA[x-axis] 
+	00195: DELTAP1    
+	00196: DELTAP2    
+	00197: SVTCA[y-axis] 
+	00198: DELTAP1    
+	00199: DELTAP1    
+	00200: DELTAP1    
+	00201: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         Off
+	  2:                                      Off
+	  3:  YDual                               On
+	  4:  YDual XDual                 X-Short Off
+	  5:                      Y-Short         Off
+	  6:        XDual                 X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                              X-Short Off
+	 10:                      Y-Short         Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short         Off
+	 14:                              X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:        XDual                         Off
+	 17:                                      Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:                                      Off
+	 21:        XDual                         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:                              X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:                                      Off
+
+	Coordinates
+	-----------
+	  0: Rel (    99,   714)  ->  Abs (    99,   714)
+	  1: Rel (     0,   365)  ->  Abs (    99,  1079)
+	  2: Rel (   392,   413)  ->  Abs (   491,  1492)
+	  3: Rel (   310,     0)  ->  Abs (   801,  1492)
+	  4: Rel (   203,     0)  ->  Abs (  1004,  1492)
+	  5: Rel (   326,  -194)  ->  Abs (  1330,  1298)
+	  6: Rel (   171,  -347)  ->  Abs (  1501,   951)
+	  7: Rel (     0,  -220)  ->  Abs (  1501,   731)
+	  8: Rel (     0,  -223)  ->  Abs (  1501,   508)
+	  9: Rel (  -180,  -352)  ->  Abs (  1321,   156)
+	 10: Rel (  -330,  -181)  ->  Abs (   991,   -25)
+	 11: Rel (  -191,     0)  ->  Abs (   800,   -25)
+	 12: Rel (  -207,     0)  ->  Abs (   593,   -25)
+	 13: Rel (  -326,   200)  ->  Abs (   267,   175)
+	 14: Rel (  -168,   346)  ->  Abs (    99,   521)
+	 15: Rel (   200,   190)  ->  Abs (   299,   711)
+	 16: Rel (     0,  -265)  ->  Abs (   299,   446)
+	 17: Rel (   285,  -305)  ->  Abs (   584,   141)
+	 18: Rel (   215,     0)  ->  Abs (   799,   141)
+	 19: Rel (   219,     0)  ->  Abs (  1018,   141)
+	 20: Rel (   283,   308)  ->  Abs (  1301,   449)
+	 21: Rel (     0,   283)  ->  Abs (  1301,   732)
+	 22: Rel (     0,   179)  ->  Abs (  1301,   911)
+	 23: Rel (  -121,   267)  ->  Abs (  1180,  1178)
+	 24: Rel (  -233,   147)  ->  Abs (   947,  1325)
+	 25: Rel (  -145,     0)  ->  Abs (   802,  1325)
+	 26: Rel (  -206,     0)  ->  Abs (   596,  1325)
+	 27: Rel (  -297,  -283)  ->  Abs (   299,  1042)
+
+	Glyph  51: off = 0x00003884, len = 262
+	  numberOfContours:	2
+	  xMin:			158
+	  yMin:			0
+	  xMax:			1277
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  24
+
+	  Length of Instructions:	178
+	00000: NPUSHB      (44):   101    17   107    20     2    75    16    75    20    91 
+	                            16    91    20     4    11    12    30    15    14    14 
+	                             0    23    24    30     2     1     2     0     8    18 
+	                            38     8    10    13    13     2    85     8    16    11 
+	                            11     6    85     8 
+	00046: PUSHW[1]            -12 
+	00049: NPUSHB      (27):    12    12     6    85     8    26    32    26     1    32 
+	                            26     1    26    24    13    32     1    32     0     1 
+	                             0    32    16    16     2    85     0 
+	00078: PUSHW[1]            -10 
+	00081: PUSHB[5]             15    15     2    85     0 
+	00087: PUSHW[1]            -10 
+	00090: PUSHB[5]             13    13     2    85     0 
+	00096: PUSHW[1]             -6 
+	00099: NPUSHB      (11):    12    12     2    85     0    12    11    11     6    85 
+	                             0 
+	00112: PUSHW[1]             -6 
+	00115: PUSHB[5]             12    12     6    85     0 
+	00121: PUSHW[1]            -16 
+	00124: NPUSHB      (10):    13    13     6    85     0    93    25    59    92    24 
+	00136: CALL       
+	00137: SRP0       
+	00138: MIRP[srp0,nmd,rd,2] 
+	00139: CALL       
+	00140: CALL       
+	00141: CALL       
+	00142: CALL       
+	00143: CALL       
+	00144: CALL       
+	00145: CALL       
+	00146: DELTAP1    
+	00147: ALIGNRP    
+	00148: MIRP[srp0,md,rd,1] 
+	00149: ALIGNRP    
+	00150: FLIPOFF    
+	00151: SRP0       
+	00152: DELTAP2    
+	00153: DELTAP1    
+	00154: MIRP[srp0,nmd,rd,2] 
+	00155: CALL       
+	00156: CALL       
+	00157: CALL       
+	00158: FLIPON     
+	00159: MIRP[nrp0,md,rd,1] 
+	00160: SVTCA[y-axis] 
+	00161: MIAP[rd+ci] 
+	00162: MIAP[rd+ci] 
+	00163: ALIGNRP    
+	00164: MIRP[srp0,md,rd,1] 
+	00165: ALIGNRP    
+	00166: SRP2       
+	00167: IP         
+	00168: MDAP[rd]   
+	00169: ALIGNRP    
+	00170: MIRP[srp0,md,rd,1] 
+	00171: ALIGNRP    
+	00172: IUP[y]     
+	00173: IUP[x]     
+	00174: SVTCA[x-axis] 
+	00175: DELTAP1    
+	00176: SVTCA[y-axis] 
+	00177: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short On
+	  5:        XDual Rep-  2 Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                              X-Short Off
+	 11:  YDual                               On
+	 12:  YDual                               On
+	 13:        XDual                         On
+	 14:        XDual                         On
+	 15:  YDual                               On
+	 16:  YDual XDual                 X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual               Y-Short X-Short On
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   158,     0)  ->  Abs (   158,     0)
+	  1: Rel (     0,  1466)  ->  Abs (   158,  1466)
+	  2: Rel (   553,     0)  ->  Abs (   711,  1466)
+	  3: Rel (   146,     0)  ->  Abs (   857,  1466)
+	  4: Rel (    77,   -14)  ->  Abs (   934,  1452)
+	  5: Rel (   108,   -18)  ->  Abs (  1042,  1434)
+	  6: Rel (   146,  -101)  ->  Abs (  1188,  1333)
+	  7: Rel (    89,  -182)  ->  Abs (  1277,  1151)
+	  8: Rel (     0,  -109)  ->  Abs (  1277,  1042)
+	  9: Rel (     0,  -187)  ->  Abs (  1277,   855)
+	 10: Rel (  -238,  -259)  ->  Abs (  1039,   596)
+	 11: Rel (  -311,     0)  ->  Abs (   728,   596)
+	 12: Rel (  -376,     0)  ->  Abs (   352,   596)
+	 13: Rel (     0,  -596)  ->  Abs (   352,     0)
+	 14: Rel (     0,   769)  ->  Abs (   352,   769)
+	 15: Rel (   379,     0)  ->  Abs (   731,   769)
+	 16: Rel (   188,     0)  ->  Abs (   919,   769)
+	 17: Rel (   158,   140)  ->  Abs (  1077,   909)
+	 18: Rel (     0,   127)  ->  Abs (  1077,  1036)
+	 19: Rel (     0,    92)  ->  Abs (  1077,  1128)
+	 20: Rel (   -93,   131)  ->  Abs (   984,  1259)
+	 21: Rel (   -76,    21)  ->  Abs (   908,  1280)
+	 22: Rel (   -49,    13)  ->  Abs (   859,  1293)
+	 23: Rel (  -132,     0)  ->  Abs (   727,  1293)
+	 24: Rel (  -375,     0)  ->  Abs (   352,  1293)
+
+	Glyph  52: off = 0x0000398A, len = 500
+	  numberOfContours:	2
+	  xMin:			88
+	  yMin:			-114
+	  xMax:			1518
+	  yMax:			1492
+
+	EndPoints
+	---------
+	  0:  21
+	  1:  40
+
+	  Length of Instructions:	360
+	00000: NPUSHB     (149):    95    38   159    38     2    25    24    55    21     2 
+	                            11    28     4    31     4    35    27    28    20    31 
+	                            20    35     6    42     5    45    23    43    38    59 
+	                             5    60    23    58    38    76     5    76    23    73 
+	                            38    93     5    85    35    88    38   111     5   123 
+	                             3   122     5   140     3   140     5   149     0   154 
+	                             3   164     0   171     3   213     0   213    22   229 
+	                             0   229    23   229    24    26    28     5    43     0 
+	                            42     5    59     5     4    93     5   146    24   150 
+	                            38   213    38     4    37    22    42    38    52    22 
+	                            57    38    73    24    73    28    69    31    69    35 
+	                            75    38    86     8    88    17    85    21    90    28 
+	                            90    29    86    31    87    32    87    34   105     5 
+	                           102    21   107    38   123    38   142    28   142    38 
+	                           219    24   220    38    25    11    24     1    21 
+	00151: PUSHW[1]            -44 
+	00154: PUSHB[3]             27    57     0 
+	00158: PUSHW[1]            -44 
+	00161: NPUSHB      (56):    27    57     4    24    20    24    42     5    58     5 
+	                             4     2     3    22    40     3     7    40    38    24 
+	                            22     5     0     6    33     3    19    26     5     2 
+	                            40    38    24    22     0     5    36    30    30    15 
+	                             3     2     8    36    30     7     9    26    38    19 
+	                            24    15    15     2    85    19 
+	00219: PUSHW[1]            -18 
+	00222: PUSHB[5]             13    13     2    85    19 
+	00228: PUSHW[1]            -24 
+	00231: PUSHB[5]             12    12     2    85    19 
+	00237: PUSHW[1]            -16 
+	00240: PUSHB[5]             11    11     6    85    19 
+	00246: PUSHW[1]            -12 
+	00249: PUSHB[5]             13    13     6    85    19 
+	00255: PUSHW[1]            -12 
+	00258: NPUSHB      (37):    12    12     6    85    19    74     2    26    32    42 
+	                           128    42     2    42    33    38    32    11     1    11 
+	                            24    11    11     6    85    11     6    12    12     6 
+	                            85    11    25    41    99    92    24 
+	00297: CALL       
+	00298: FLIPOFF    
+	00299: SRP0       
+	00300: MIRP[srp0,nmd,rd,0] 
+	00301: CALL       
+	00302: CALL       
+	00303: DELTAP1    
+	00304: FLIPON     
+	00305: MIRP[nrp0,md,rd,1] 
+	00306: FLIPOFF    
+	00307: SRP0       
+	00308: DELTAP1    
+	00309: MIRP[srp0,nmd,rd,2] 
+	00310: FLIPON     
+	00311: MIRP[srp0,nmd,rd,0] 
+	00312: CALL       
+	00313: CALL       
+	00314: CALL       
+	00315: CALL       
+	00316: CALL       
+	00317: CALL       
+	00318: MIRP[nrp0,md,rd,1] 
+	00319: SVTCA[y-axis] 
+	00320: MIAP[rd+ci] 
+	00321: MIRP[nrp0,md,rd,1] 
+	00322: MIAP[rd+ci] 
+	00323: MIAP[rd+ci] 
+	00324: MIRP[nrp0,md,rd,1] 
+	00325: SRP1       
+	00326: SLOOP      
+	00327: IP         
+	00328: SRP2       
+	00329: IP         
+	00330: SVTCA[x-axis] 
+	00331: SRP1       
+	00332: SRP2       
+	00333: IP         
+	00334: SRP2       
+	00335: SLOOP      
+	00336: IP         
+	00337: SVTCA[y-axis] 
+	00338: SRP1       
+	00339: SHP[rp1,zp0] 
+	00340: SRP0       
+	00341: MDRP[nrp0,md,nrd,1] 
+	00342: SRP0       
+	00343: MDRP[nrp0,md,nrd,1] 
+	00344: DELTAP1    
+	00345: IUP[y]     
+	00346: IUP[x]     
+	00347: SVTCA[x-axis] 
+	00348: CALL       
+	00349: CALL       
+	00350: DELTAP1    
+	00351: DELTAP1    
+	00352: SVTCA[y-axis] 
+	00353: DELTAP3    
+	00354: DELTAP2    
+	00355: DELTAP1    
+	00356: SVTCA[x-axis] 
+	00357: DELTAP1    
+	00358: DELTAP2    
+	00359: DELTAP3    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short On
+	  3:                      Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short         Off
+	 10:                              X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:        XDual                 X-Short Off
+	 14:  YDual               Y-Short         Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:                      Y-Short         Off
+	 18:        XDual                 X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:                              X-Short Off
+	 22:  YDual               Y-Short         On
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:        XDual                         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:                              X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:                                      Off
+	 33:        XDual                         On
+	 34:        XDual                         Off
+	 35:                                      Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1269,   157)  ->  Abs (  1269,   157)
+	  1: Rel (   135,   -93)  ->  Abs (  1404,    64)
+	  2: Rel (   114,   -43)  ->  Abs (  1518,    21)
+	  3: Rel (   -57,  -135)  ->  Abs (  1461,  -114)
+	  4: Rel (  -158,    57)  ->  Abs (  1303,   -57)
+	  5: Rel (  -157,   123)  ->  Abs (  1146,    66)
+	  6: Rel (  -163,   -91)  ->  Abs (   983,   -25)
+	  7: Rel (  -197,     0)  ->  Abs (   786,   -25)
+	  8: Rel (  -199,     0)  ->  Abs (   587,   -25)
+	  9: Rel (  -324,   192)  ->  Abs (   263,   167)
+	 10: Rel (  -175,   348)  ->  Abs (    88,   515)
+	 11: Rel (     0,   218)  ->  Abs (    88,   733)
+	 12: Rel (     0,   217)  ->  Abs (    88,   950)
+	 13: Rel (   176,   356)  ->  Abs (   264,  1306)
+	 14: Rel (   325,   186)  ->  Abs (   589,  1492)
+	 15: Rel (   201,     0)  ->  Abs (   790,  1492)
+	 16: Rel (   203,     0)  ->  Abs (   993,  1492)
+	 17: Rel (   326,  -193)  ->  Abs (  1319,  1299)
+	 18: Rel (   171,  -347)  ->  Abs (  1490,   952)
+	 19: Rel (     0,  -218)  ->  Abs (  1490,   734)
+	 20: Rel (     0,  -181)  ->  Abs (  1490,   553)
+	 21: Rel (  -110,  -289)  ->  Abs (  1380,   264)
+	 22: Rel (  -538,   141)  ->  Abs (   842,   405)
+	 23: Rel (   168,   -47)  ->  Abs (  1010,   358)
+	 24: Rel (   109,   -93)  ->  Abs (  1119,   265)
+	 25: Rel (   171,   156)  ->  Abs (  1290,   421)
+	 26: Rel (     0,   313)  ->  Abs (  1290,   734)
+	 27: Rel (     0,   178)  ->  Abs (  1290,   912)
+	 28: Rel (  -121,   266)  ->  Abs (  1169,  1178)
+	 29: Rel (  -233,   147)  ->  Abs (   936,  1325)
+	 30: Rel (  -145,     0)  ->  Abs (   791,  1325)
+	 31: Rel (  -217,     0)  ->  Abs (   574,  1325)
+	 32: Rel (  -286,  -297)  ->  Abs (   288,  1028)
+	 33: Rel (     0,  -295)  ->  Abs (   288,   733)
+	 34: Rel (     0,  -286)  ->  Abs (   288,   447)
+	 35: Rel (   283,  -306)  ->  Abs (   571,   141)
+	 36: Rel (   220,     0)  ->  Abs (   791,   141)
+	 37: Rel (   104,     0)  ->  Abs (   895,   141)
+	 38: Rel (    92,    39)  ->  Abs (   987,   180)
+	 39: Rel (   -91,    59)  ->  Abs (   896,   239)
+	 40: Rel (  -101,    25)  ->  Abs (   795,   264)
+
+	Glyph  53: off = 0x00003B7E, len = 620
+	  numberOfContours:	2
+	  xMin:			161
+	  yMin:			0
+	  xMax:			1453
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  24
+	  1:  34
+
+	  Length of Instructions:	508
+	00000: NPUSHB      (33):    18    11    14     1    18    54    28    90    31   102 
+	                             8   109    31     4     9    16    13    13     6    85 
+	                             8    16    13    13     6    85     7    16    13    13 
+	                             6    85    36 
+	00035: PUSHW[1]            -64 
+	00038: PUSHB[5]             12    12     2    85    13 
+	00044: PUSHW[1]            -12 
+	00047: PUSHB[5]             12    12     2    85    12 
+	00053: PUSHW[1]            -12 
+	00056: PUSHB[5]             12    12     2    85    11 
+	00062: PUSHW[1]            -12 
+	00065: PUSHB[5]             12    12     2    85    18 
+	00071: PUSHW[1]            -30 
+	00074: PUSHB[4]             18    26    52    18 
+	00079: PUSHW[1]            -16 
+	00082: PUSHB[4]             34    39    52    17 
+	00087: PUSHW[1]            -30 
+	00090: PUSHB[4]             29    39    52    16 
+	00095: PUSHW[1]            -30 
+	00098: PUSHB[4]             29    39    52    15 
+	00103: PUSHW[1]            -30 
+	00106: PUSHB[4]             29    39    52    18 
+	00111: PUSHW[1]            -40 
+	00114: PUSHB[4]             29    38    52    17 
+	00119: PUSHW[1]            -30 
+	00122: PUSHB[4]             18    26    52    16 
+	00127: PUSHW[1]            -30 
+	00130: PUSHB[4]             18    26    52    15 
+	00135: PUSHW[1]            -30 
+	00138: NPUSHB      (73):    18    26    52    37    14    74    28    74    32    83 
+	                            11    92    28   109    28   114     9   120    14   121 
+	                            15   133    10   136    15   151    13   169    15   184 
+	                            15   232    14   231    15    16    14    12    12    32 
+	                            17    15    20    17    17    15    17    15    12     9 
+	                            18    27     2    33    26    22    10     6    18    17 
+	                            16    13    12     5    24     9     9    22    23    26 
+	                            25    30    23 
+	00213: PUSHW[1]            -64 
+	00216: NPUSHB      (25):    11    11     6    85    23    23     0    33    34    30 
+	                             2     1     2     0    24    24    15    15    14     8 
+	                            30    38    14   156     6 
+	00243: PUSHW[1]            -24 
+	00246: PUSHB[5]             15    15     2    85     6 
+	00252: PUSHW[1]            -10 
+	00255: PUSHB[5]             13    13     2    85     6 
+	00261: PUSHW[1]            -32 
+	00264: NPUSHB      (34):    12    12     2    85     6     6    13    13     6    85 
+	                             6    93    32    36   112    36   128    36     3    36 
+	                            34    24    32     1    32     0     1     0    32    16 
+	                            16     2    85     0 
+	00300: PUSHW[1]            -10 
+	00303: PUSHB[5]             15    15     2    85     0 
+	00309: PUSHW[1]            -10 
+	00312: PUSHB[5]             13    13     2    85     0 
+	00318: PUSHW[1]             -6 
+	00321: NPUSHB      (11):    12    12     2    85     0     6    11    11     6    85 
+	                             0 
+	00334: PUSHW[1]             -9 
+	00337: PUSHB[5]             12    12     6    85     0 
+	00343: PUSHW[1]             -8 
+	00346: NPUSHB      (10):    13    13     6    85     0    93    35    59   168    24 
+	00358: CALL       
+	00359: FLIPOFF    
+	00360: SRP0       
+	00361: MIRP[srp0,nmd,rd,0] 
+	00362: CALL       
+	00363: CALL       
+	00364: CALL       
+	00365: CALL       
+	00366: CALL       
+	00367: CALL       
+	00368: CALL       
+	00369: DELTAP1    
+	00370: ALIGNRP    
+	00371: FLIPON     
+	00372: MIRP[srp0,md,rd,1] 
+	00373: ALIGNRP    
+	00374: SRP0       
+	00375: DELTAP1    
+	00376: MIRP[srp0,nmd,rd,2] 
+	00377: CALL       
+	00378: CALL       
+	00379: CALL       
+	00380: CALL       
+	00381: RTHG       
+	00382: MIRP[nrp0,nmd,rd,0] 
+	00383: RTG        
+	00384: MIRP[nrp0,md,rd,1] 
+	00385: SVTCA[y-axis] 
+	00386: MIAP[rd+ci] 
+	00387: ALIGNRP    
+	00388: SRP0       
+	00389: ALIGNRP    
+	00390: SRP0       
+	00391: ALIGNRP    
+	00392: MIAP[rd+ci] 
+	00393: ALIGNRP    
+	00394: MIRP[srp0,md,rd,1] 
+	00395: ALIGNRP    
+	00396: SRP2       
+	00397: IP         
+	00398: MDAP[rd]   
+	00399: CALL       
+	00400: MIRP[srp0,md,rd,1] 
+	00401: ALIGNRP    
+	00402: SRP0       
+	00403: ALIGNRP    
+	00404: IP         
+	00405: MDAP[rd]   
+	00406: SRP2       
+	00407: SLOOP      
+	00408: IP         
+	00409: SVTCA[x-axis] 
+	00410: SRP1       
+	00411: SLOOP      
+	00412: IP         
+	00413: SDPVTL[1]  
+	00414: SFVTPV     
+	00415: MDAP[nrd]  
+	00416: CALL       
+	00417: SFVTCA[x-axis] 
+	00418: RDTG       
+	00419: SRP0       
+	00420: MDRP[nrp0,nmd,rd,0] 
+	00421: IUP[y]     
+	00422: IUP[x]     
+	00423: SVTCA[x-axis] 
+	00424: DELTAP1    
+	00425: CALL       
+	00426: CALL       
+	00427: CALL       
+	00428: CALL       
+	00429: CALL       
+	00430: CALL       
+	00431: CALL       
+	00432: CALL       
+	00433: CALL       
+	00434: CALL       
+	00435: CALL       
+	00436: CALL       
+	00437: CALL       
+	00438: SVTCA[y-axis] 
+	00439: CALL       
+	00440: CALL       
+	00441: CALL       
+	00442: DELTAP1    
+	00443: RS         
+	00444: NOT        
+	00445: IF         
+	00446: NPUSHB      (10):     8    64    15    57    15    16    58    17    18    58 
+	00458: CALL       
+	00459: CALL       
+	00460: CALL       
+	00461: EIF        
+	00462: SVTCA[x-axis] 
+	00463: DELTAP2    
+	00464: RS         
+	00465: NOT        
+	00466: IF         
+	00467: PUSHW[2]             14   -34 
+	00472: NPUSHB      (26):    25    57    17    34    25    57    18    34    25    57 
+	                            14    64    28    57    16    34    20    57    16    34 
+	                            31    57    16    34    21    57 
+	00500: CALL       
+	00501: CALL       
+	00502: CALL       
+	00503: CALL       
+	00504: CALL       
+	00505: CALL       
+	00506: CALL       
+	00507: EIF        
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:        XDual                 X-Short On
+	 15:  YDual                       X-Short On
+	 16:                              X-Short On
+	 17:  YDual       Rep-  2 Y-Short X-Short Off
+	 20:  YDual               Y-Short X-Short On
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short On
+	 24:        XDual                         On
+	 25:        XDual                         On
+	 26:  YDual                               On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   161,     0)  ->  Abs (   161,     0)
+	  1: Rel (     0,  1466)  ->  Abs (   161,  1466)
+	  2: Rel (   650,     0)  ->  Abs (   811,  1466)
+	  3: Rel (   196,     0)  ->  Abs (  1007,  1466)
+	  4: Rel (   204,   -79)  ->  Abs (  1211,  1387)
+	  5: Rel (   122,  -200)  ->  Abs (  1333,  1187)
+	  6: Rel (     0,  -121)  ->  Abs (  1333,  1066)
+	  7: Rel (     0,  -156)  ->  Abs (  1333,   910)
+	  8: Rel (  -202,  -214)  ->  Abs (  1131,   696)
+	  9: Rel (  -211,   -29)  ->  Abs (   920,   667)
+	 10: Rel (    77,   -37)  ->  Abs (   997,   630)
+	 11: Rel (    40,   -36)  ->  Abs (  1037,   594)
+	 12: Rel (    85,   -78)  ->  Abs (  1122,   516)
+	 13: Rel (    76,  -117)  ->  Abs (  1198,   399)
+	 14: Rel (   255,  -399)  ->  Abs (  1453,     0)
+	 15: Rel (  -244,     0)  ->  Abs (  1209,     0)
+	 16: Rel (  -194,   305)  ->  Abs (  1015,   305)
+	 17: Rel (   -85,   132)  ->  Abs (   930,   437)
+	 18: Rel (  -110,   140)  ->  Abs (   820,   577)
+	 19: Rel (   -87,    56)  ->  Abs (   733,   633)
+	 20: Rel (   -45,    11)  ->  Abs (   688,   644)
+	 21: Rel (   -33,     7)  ->  Abs (   655,   651)
+	 22: Rel (   -75,     0)  ->  Abs (   580,   651)
+	 23: Rel (  -225,     0)  ->  Abs (   355,   651)
+	 24: Rel (     0,  -651)  ->  Abs (   355,     0)
+	 25: Rel (     0,   819)  ->  Abs (   355,   819)
+	 26: Rel (   417,     0)  ->  Abs (   772,   819)
+	 27: Rel (   133,     0)  ->  Abs (   905,   819)
+	 28: Rel (   150,    55)  ->  Abs (  1055,   874)
+	 29: Rel (    78,   121)  ->  Abs (  1133,   995)
+	 30: Rel (     0,    71)  ->  Abs (  1133,  1066)
+	 31: Rel (     0,   104)  ->  Abs (  1133,  1170)
+	 32: Rel (  -151,   134)  ->  Abs (   982,  1304)
+	 33: Rel (  -163,     0)  ->  Abs (   819,  1304)
+	 34: Rel (  -464,     0)  ->  Abs (   355,  1304)
+
+	Glyph  54: off = 0x00003DEA, len = 682
+	  numberOfContours:	1
+	  xMin:			92
+	  yMin:			-25
+	  xMax:			1259
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  48
+
+	  Length of Instructions:	533
+	00000: NPUSHB      (39):    99     3    99     4   115     3   116     4     4    37 
+	                            39    53     3    57    28    67     3    73     7    76 
+	                            29    69    31    68    36    70    39    83     3    89 
+	                             7    92    29    87    40   137    19    14    35 
+	00041: PUSHW[1]            -14 
+	00044: PUSHB[5]             16    16     2    85    36 
+	00050: PUSHW[1]            -14 
+	00053: PUSHB[5]             16    16     2    85    37 
+	00059: PUSHW[1]            -14 
+	00062: PUSHB[5]             16    16     2    85    38 
+	00068: PUSHW[1]            -14 
+	00071: PUSHB[5]             16    16     2    85    39 
+	00077: PUSHW[1]            -14 
+	00080: PUSHB[5]             16    16     2    85    35 
+	00086: PUSHW[1]            -10 
+	00089: PUSHB[5]             13    16     2    85    36 
+	00095: PUSHW[1]            -10 
+	00098: PUSHB[5]             13    16     2    85    37 
+	00104: PUSHW[1]            -10 
+	00107: PUSHB[5]             13    16     2    85    38 
+	00113: PUSHW[1]            -10 
+	00116: PUSHB[5]             13    16     2    85    39 
+	00122: PUSHW[1]            -10 
+	00125: NPUSHB      (70):    13    16     2    85    40    13    38    36     2    36 
+	                             3    39    37    54    15    52    35    68    37    69 
+	                            47    90    32    86    35    85    37   108    11   106 
+	                            13   107    14   102    20   101    24   121    11   122 
+	                            13   122    15   125    16   117    36   115    37   134 
+	                             3   138    11   137    13   138    15   141    16   133 
+	                            36   131    37   146    13   150    15   150    21    30 
+	00197: PUSHB[2]              6     2 
+	00200: RS         
+	00201: EQ         
+	00202: IF         
+	00203: NPUSHB      (45):    33    38    18    27    38    26     9    38    41     1 
+	                            38     0     0    41    26    18     4    50    49    38 
+	                             0   101     0     2     0    13    45   121    27   137 
+	                            27     2    27    37    22    13    45    30    39    37 
+	                             1    37     5    22     5 
+	00250: PUSHW[1]            -12 
+	00253: NPUSHB      (12):    12    12     6    85     5    30    45     9    30    30 
+	                            22     3 
+	00267: SVTCA[y-axis] 
+	00268: MIAP[rd+ci] 
+	00269: MIRP[nrp0,md,rd,1] 
+	00270: MIAP[rd+ci] 
+	00271: MIRP[nrp0,md,rd,1] 
+	00272: CALL       
+	00273: SRP1       
+	00274: SRP2       
+	00275: IP         
+	00276: DELTAP1    
+	00277: SRP1       
+	00278: SRP2       
+	00279: IP         
+	00280: SRP1       
+	00281: SRP2       
+	00282: IP         
+	00283: DELTAP1    
+	00284: SRP1       
+	00285: SRP2       
+	00286: IP         
+	00287: DELTAP1    
+	00288: SVTCA[x-axis] 
+	00289: SRP1       
+	00290: SRP2       
+	00291: SLOOP      
+	00292: IP         
+	00293: MDAP[rd]   
+	00294: MIRP[nrp0,md,rd,1] 
+	00295: MDAP[rd]   
+	00296: MIRP[nrp0,md,rd,1] 
+	00297: MDAP[rd]   
+	00298: MIRP[nrp0,md,rd,1] 
+	00299: MDAP[rd]   
+	00300: MIRP[nrp0,md,rd,1] 
+	00301: ELSE       
+	00302: NPUSHB      (45):    37    36    14    13    11     5    33    28    29    30 
+	                            27     8     7     6     4     3     2     6     1    37 
+	                            36    34    14    13    11     6     5    30    27    45 
+	                            26    64    12    12     2    85   143    26     1    26 
+	                           237    22     0    45     1 
+	00349: PUSHW[1]            -64 
+	00352: NPUSHB      (18):    12    12     2    85    16     1    32     1    80     1 
+	                            96     1   112     1   144     1     6     1 
+	00372: PUSHW[1]            432 
+	00375: NPUSHB      (19):    45    30    30    22     3     5    30    45     9    27 
+	                            38    26    74     9    38     0    41     1    41 
+	00396: PUSHW[1]            -22 
+	00399: PUSHB[5]             14    14     2    85    41 
+	00405: PUSHW[1]            -12 
+	00408: NPUSHB      (13):    12    12     2    85    41    26    50    33    38    18 
+	                             1    38    18 
+	00423: PUSHW[1]            -20 
+	00426: PUSHB[5]             14    14     2    85    18 
+	00432: PUSHW[1]            -10 
+	00435: PUSHB[5]             13    13     2    85    18 
+	00441: PUSHW[1]             -8 
+	00444: NPUSHB      (15):    12    12     2    85    18    84    32     0     1     0 
+	                            25    49    99    91    24 
+	00461: CALL       
+	00462: FLIPOFF    
+	00463: SRP0       
+	00464: MIRP[srp0,nmd,rd,0] 
+	00465: DELTAP1    
+	00466: FLIPON     
+	00467: MIRP[nrp0,nmd,rd,0] 
+	00468: CALL       
+	00469: CALL       
+	00470: CALL       
+	00471: MIRP[nrp0,md,rd,1] 
+	00472: SRP0       
+	00473: MIRP[nrp0,md,rd,1] 
+	00474: FLIPOFF    
+	00475: SRP0       
+	00476: MIRP[srp0,nmd,rd,2] 
+	00477: CALL       
+	00478: CALL       
+	00479: DELTAP1    
+	00480: FLIPON     
+	00481: MIRP[nrp0,md,rd,1] 
+	00482: MIRP[srp0,nmd,rd,0] 
+	00483: MIRP[nrp0,md,rd,1] 
+	00484: SVTCA[y-axis] 
+	00485: MIAP[rd+ci] 
+	00486: MIRP[nrp0,md,rd,1] 
+	00487: MIAP[rd+ci] 
+	00488: MIRP[nrp0,md,rd,1] 
+	00489: SRP0       
+	00490: MIRP[srp0,md,rd,1] 
+	00491: DELTAP1    
+	00492: CALL       
+	00493: MIRP[nrp0,nmd,rd,0] 
+	00494: SRP0       
+	00495: MIRP[srp0,md,rd,1] 
+	00496: DELTAP1    
+	00497: CALL       
+	00498: MIRP[srp0,nmd,rd,0] 
+	00499: SRP1       
+	00500: SRP2       
+	00501: SLOOP      
+	00502: IP         
+	00503: SRP1       
+	00504: SLOOP      
+	00505: IP         
+	00506: SRP1       
+	00507: SRP2       
+	00508: IP         
+	00509: IP         
+	00510: SVTCA[x-axis] 
+	00511: SRP2       
+	00512: SLOOP      
+	00513: IP         
+	00514: EIF        
+	00515: IUP[y]     
+	00516: IUP[x]     
+	00517: SVTCA[y-axis] 
+	00518: DELTAP1    
+	00519: DELTAP2    
+	00520: CALL       
+	00521: CALL       
+	00522: CALL       
+	00523: CALL       
+	00524: CALL       
+	00525: CALL       
+	00526: CALL       
+	00527: CALL       
+	00528: CALL       
+	00529: CALL       
+	00530: SVTCA[x-axis] 
+	00531: DELTAP1    
+	00532: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual Rep-  2 Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short         Off
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short X-Short On
+	 27:                      Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:                      Y-Short X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:        XDual         Y-Short X-Short On
+	 36:        XDual         Y-Short X-Short Off
+	 37:                      Y-Short         Off
+	 38:        XDual         Y-Short X-Short On
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:        XDual         Y-Short         Off
+	 43:                      Y-Short X-Short Off
+	 44:                      Y-Short X-Short Off
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short Off
+	 47:  YDual               Y-Short         Off
+	 48:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    92,   471)  ->  Abs (    92,   471)
+	  1: Rel (   183,    16)  ->  Abs (   275,   487)
+	  2: Rel (    13,  -110)  ->  Abs (   288,   377)
+	  3: Rel (    95,  -141)  ->  Abs (   383,   236)
+	  4: Rel (   200,   -87)  ->  Abs (   583,   149)
+	  5: Rel (   125,     0)  ->  Abs (   708,   149)
+	  6: Rel (   111,     0)  ->  Abs (   819,   149)
+	  7: Rel (   170,    66)  ->  Abs (   989,   215)
+	  8: Rel (    83,   115)  ->  Abs (  1072,   330)
+	  9: Rel (     0,    68)  ->  Abs (  1072,   398)
+	 10: Rel (     0,    69)  ->  Abs (  1072,   467)
+	 11: Rel (   -80,   103)  ->  Abs (   992,   570)
+	 12: Rel (   -92,    35)  ->  Abs (   900,   605)
+	 13: Rel (   -59,    23)  ->  Abs (   841,   628)
+	 14: Rel (  -404,    97)  ->  Abs (   437,   725)
+	 15: Rel (   -81,    43)  ->  Abs (   356,   768)
+	 16: Rel (  -105,    55)  ->  Abs (   251,   823)
+	 17: Rel (  -103,   163)  ->  Abs (   148,   986)
+	 18: Rel (     0,   101)  ->  Abs (   148,  1087)
+	 19: Rel (     0,   111)  ->  Abs (   148,  1198)
+	 20: Rel (   126,   193)  ->  Abs (   274,  1391)
+	 21: Rel (   242,   100)  ->  Abs (   516,  1491)
+	 22: Rel (   148,     0)  ->  Abs (   664,  1491)
+	 23: Rel (   163,     0)  ->  Abs (   827,  1491)
+	 24: Rel (   249,  -105)  ->  Abs (  1076,  1386)
+	 25: Rel (   134,  -204)  ->  Abs (  1210,  1182)
+	 26: Rel (     5,  -129)  ->  Abs (  1215,  1053)
+	 27: Rel (  -186,   -14)  ->  Abs (  1029,  1039)
+	 28: Rel (   -15,   139)  ->  Abs (  1014,  1178)
+	 29: Rel (  -173,   142)  ->  Abs (   841,  1320)
+	 30: Rel (  -169,     0)  ->  Abs (   672,  1320)
+	 31: Rel (  -176,     0)  ->  Abs (   496,  1320)
+	 32: Rel (  -161,  -129)  ->  Abs (   335,  1191)
+	 33: Rel (     0,   -91)  ->  Abs (   335,  1100)
+	 34: Rel (     0,   -79)  ->  Abs (   335,  1021)
+	 35: Rel (    57,   -51)  ->  Abs (   392,   970)
+	 36: Rel (    56,   -51)  ->  Abs (   448,   919)
+	 37: Rel (   473,  -107)  ->  Abs (   921,   812)
+	 38: Rel (    88,   -40)  ->  Abs (  1009,   772)
+	 39: Rel (   128,   -59)  ->  Abs (  1137,   713)
+	 40: Rel (   122,  -181)  ->  Abs (  1259,   532)
+	 41: Rel (     0,  -118)  ->  Abs (  1259,   414)
+	 42: Rel (     0,  -117)  ->  Abs (  1259,   297)
+	 43: Rel (  -134,  -207)  ->  Abs (  1125,    90)
+	 44: Rel (  -251,  -115)  ->  Abs (   874,   -25)
+	 45: Rel (  -157,     0)  ->  Abs (   717,   -25)
+	 46: Rel (  -199,     0)  ->  Abs (   518,   -25)
+	 47: Rel (  -269,   116)  ->  Abs (   249,    91)
+	 48: Rel (  -153,   233)  ->  Abs (    96,   324)
+
+	Glyph  55: off = 0x00004094, len = 174
+	  numberOfContours:	1
+	  xMin:			48
+	  yMin:			0
+	  xMax:			1210
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	137
+	00000: NPUSHB      (13):     5     2    30     4     3     2     0     8     7     6 
+	                             5     4     9 
+	00015: PUSHW[1]            627 
+	00018: PUSHB[4]             32     4     1     4 
+	00023: PUSHW[1]            257 
+	00026: PUSHB[8]              6    32     1     2    47     3     1     3 
+	00035: PUSHW[1]            257 
+	00038: PUSHB[6]              1     1    32     0     1     0 
+	00045: PUSHW[1]            -24 
+	00048: NPUSHB      (11):    16    16     2    85     0     8    15    15     2    85 
+	                             0 
+	00061: PUSHW[1]            -14 
+	00064: PUSHB[5]             12    12     2    85     0 
+	00070: PUSHW[1]            -30 
+	00073: PUSHB[5]             13    13     2    85     0 
+	00079: PUSHW[1]             -4 
+	00082: PUSHB[5]             12    12     6    85     0 
+	00088: PUSHW[1]             -2 
+	00091: PUSHB[5]             13    13     6    85     0 
+	00097: PUSHW[1]            627 
+	00100: PUSHB[4]              8   182   153    24 
+	00105: CALL       
+	00106: SRP0       
+	00107: MIRP[srp0,nmd,rd,2] 
+	00108: CALL       
+	00109: CALL       
+	00110: CALL       
+	00111: CALL       
+	00112: CALL       
+	00113: CALL       
+	00114: DELTAP1    
+	00115: ALIGNRP    
+	00116: SRP0       
+	00117: MIRP[srp0,nmd,rd,0] 
+	00118: DELTAP1    
+	00119: ALIGNRP    
+	00120: SRP0       
+	00121: MIRP[srp0,md,rd,1] 
+	00122: MIRP[nrp0,nmd,rd,0] 
+	00123: DELTAP1    
+	00124: MIRP[nrp0,nmd,rd,2] 
+	00125: SRP0       
+	00126: ALIGNRP    
+	00127: SRP0       
+	00128: ALIGNRP    
+	00129: SVTCA[y-axis] 
+	00130: MIAP[rd+ci] 
+	00131: MIAP[rd+ci] 
+	00132: ALIGNRP    
+	00133: MIRP[srp0,md,rd,1] 
+	00134: ALIGNRP    
+	00135: IUP[y]     
+	00136: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   531,     0)  ->  Abs (   531,     0)
+	  1: Rel (     0,  1293)  ->  Abs (   531,  1293)
+	  2: Rel (  -483,     0)  ->  Abs (    48,  1293)
+	  3: Rel (     0,   173)  ->  Abs (    48,  1466)
+	  4: Rel (  1162,     0)  ->  Abs (  1210,  1466)
+	  5: Rel (     0,  -173)  ->  Abs (  1210,  1293)
+	  6: Rel (  -485,     0)  ->  Abs (   725,  1293)
+	  7: Rel (     0, -1293)  ->  Abs (   725,     0)
+
+	Glyph  56: off = 0x00004142, len = 292
+	  numberOfContours:	1
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1314
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  20
+
+	  Length of Instructions:	217
+	00000: NPUSHB      (10):    38    15    88     4    88     8   201     8     4    22 
+	00012: PUSHW[1]            -64 
+	00015: NPUSHB      (22):    19    21    52    52     4    59     8    70     4    74 
+	                             8   118    15   166     5   232    15     7    12     0 
+	                             2    17 
+	00039: PUSHW[1]            699 
+	00042: PUSHB[5]              6     9    20    38     2 
+	00048: PUSHW[1]            -20 
+	00051: PUSHB[5]             15    15     2    85     2 
+	00057: PUSHW[1]            -14 
+	00060: NPUSHB      (11):    13    13     2    85     2    16    12    12     2    85 
+	                             2 
+	00073: PUSHW[1]            -32 
+	00076: NPUSHB      (28):    11    11     6    85     2    93    32    22     1    32 
+	                            22    80    22     2    96    22   112    22   128    22 
+	                             3    22    13    38    32    10     1    10 
+	00106: PUSHW[1]            -64 
+	00109: NPUSHB      (10):    19    21    52    10    32    16    16     2    85    10 
+	00121: PUSHW[1]            -10 
+	00124: PUSHB[5]             15    15     2    85    10 
+	00130: PUSHW[1]            -10 
+	00133: PUSHB[5]             13    13     2    85    10 
+	00139: PUSHW[1]             -6 
+	00142: NPUSHB      (11):    12    12     2    85    10     4    11    11     6    85 
+	                            10 
+	00155: PUSHW[1]             -9 
+	00158: PUSHB[5]             12    12     6    85    10 
+	00164: PUSHW[1]             -8 
+	00167: NPUSHB      (10):    13    13     6    85    10    93    21    59    89    24 
+	00179: CALL       
+	00180: FLIPOFF    
+	00181: SRP0       
+	00182: MIRP[srp0,nmd,rd,0] 
+	00183: CALL       
+	00184: CALL       
+	00185: CALL       
+	00186: CALL       
+	00187: CALL       
+	00188: CALL       
+	00189: CALL       
+	00190: CALL       
+	00191: DELTAP1    
+	00192: MIRP[nrp0,md,rd,1] 
+	00193: FLIPON     
+	00194: SRP0       
+	00195: DELTAP1    
+	00196: DELTAP1    
+	00197: DELTAP2    
+	00198: MIRP[srp0,nmd,rd,2] 
+	00199: CALL       
+	00200: CALL       
+	00201: CALL       
+	00202: CALL       
+	00203: FLIPON     
+	00204: MIRP[nrp0,md,rd,1] 
+	00205: SVTCA[y-axis] 
+	00206: MIAP[rd+ci] 
+	00207: MIRP[nrp0,md,rd,1] 
+	00208: MIAP[rd+ci] 
+	00209: ALIGNRP    
+	00210: IUP[y]     
+	00211: IUP[x]     
+	00212: SVTCA[x-axis] 
+	00213: DELTAP1    
+	00214: CALL       
+	00215: SVTCA[y-axis] 
+	00216: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:        XDual         Y-Short         Off
+	  4:                              X-Short Off
+	  5:                      Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short         Off
+	  9:                              X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:        XDual                         On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:        XDual         Y-Short         Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1120,  1466)  ->  Abs (  1120,  1466)
+	  1: Rel (   194,     0)  ->  Abs (  1314,  1466)
+	  2: Rel (     0,  -847)  ->  Abs (  1314,   619)
+	  3: Rel (     0,  -221)  ->  Abs (  1314,   398)
+	  4: Rel (  -100,  -260)  ->  Abs (  1214,   138)
+	  5: Rel (  -261,  -163)  ->  Abs (   953,   -25)
+	  6: Rel (  -212,     0)  ->  Abs (   741,   -25)
+	  7: Rel (  -206,     0)  ->  Abs (   535,   -25)
+	  8: Rel (  -262,   142)  ->  Abs (   273,   117)
+	  9: Rel (  -112,   269)  ->  Abs (   161,   386)
+	 10: Rel (     0,   233)  ->  Abs (   161,   619)
+	 11: Rel (     0,   847)  ->  Abs (   161,  1466)
+	 12: Rel (   194,     0)  ->  Abs (   355,  1466)
+	 13: Rel (     0,  -846)  ->  Abs (   355,   620)
+	 14: Rel (     0,  -191)  ->  Abs (   355,   429)
+	 15: Rel (    71,  -181)  ->  Abs (   426,   248)
+	 16: Rel (   173,   -98)  ->  Abs (   599,   150)
+	 17: Rel (   125,     0)  ->  Abs (   724,   150)
+	 18: Rel (   214,     0)  ->  Abs (   938,   150)
+	 19: Rel (   182,   194)  ->  Abs (  1120,   344)
+	 20: Rel (     0,   276)  ->  Abs (  1120,   620)
+
+	Glyph  57: off = 0x00004266, len = 372
+	  numberOfContours:	1
+	  xMin:			9
+	  yMin:			0
+	  xMax:			1350
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  10
+
+	  Length of Instructions:	318
+	00000: PUSHB[2]              2     2 
+	00003: RS         
+	00004: EQ         
+	00005: IF         
+	00006: NPUSHB      (18):     5     1     0     8     2     1     2     0     8    10 
+	                             0     5     9     8     5     1     2     5 
+	00026: MDAP[rd]   
+	00027: MDRP[srp0,md,rd,1] 
+	00028: MDRP[nrp0,md,rd,1] 
+	00029: SRP0       
+	00030: MDRP[srp0,md,rd,1] 
+	00031: MDRP[nrp0,md,rd,1] 
+	00032: SRP1       
+	00033: SHP[rp1,zp0] 
+	00034: SHP[rp1,zp0] 
+	00035: SVTCA[y-axis] 
+	00036: MIAP[rd+ci] 
+	00037: MIAP[rd+ci] 
+	00038: MIAP[rd+ci] 
+	00039: SRP1       
+	00040: SRP2       
+	00041: IP         
+	00042: IUP[y]     
+	00043: IUP[x]     
+	00044: ELSE       
+	00045: NPUSHB      (36):    47     5     1    42     0    40     3    37    10    47 
+	                            12    48    12    96    12   137     8   137     9   144 
+	                            12   192    12   240    12    11    32    12    80    12 
+	                             2     4     2    11     8     2 
+	00083: PUSHB[2]              6     2 
+	00086: RS         
+	00087: EQ         
+	00088: IF         
+	00089: PUSHB[8]              9     1    12    11     0     8     1     2 
+	00098: SVTCA[y-axis] 
+	00099: MIAP[rd+ci] 
+	00100: MIAP[rd+ci] 
+	00101: SVTCA[x-axis] 
+	00102: SRP1       
+	00103: SRP2       
+	00104: IP         
+	00105: IP         
+	00106: ELSE       
+	00107: NPUSHB      (36):    10     9     9    32     8     5    20     8     8     5 
+	                             0     1     1    32     2     5    20     2     2     5 
+	                             9     1     2     5   233    32    10     0     8     9 
+	                           101     8     1   101     2     8 
+	00145: PUSHW[1]            -64 
+	00148: NPUSHB      (11):    40    57    80     8     1   128     8   144     8     2 
+	                             8 
+	00161: PUSHW[1]            257 
+	00164: NPUSHB      (13):     2    64    40    57    95     2     1   143     2   159 
+	                             2     2     2 
+	00179: PUSHW[1]            257 
+	00182: NPUSHB      (17):    32     5    80     5     2    48     5    96     5   144 
+	                             5   192     5   240     5     5     5 
+	00201: PUSHW[1]            648 
+	00204: PUSHB[4]             11    96   168    24 
+	00209: CALL       
+	00210: RTHG       
+	00211: SRP0       
+	00212: MIRP[srp0,nmd,rd,0] 
+	00213: DELTAP1    
+	00214: DELTAP2    
+	00215: MIRP[nrp0,nmd,rd,0] 
+	00216: DELTAP1    
+	00217: DELTAP2    
+	00218: CALL       
+	00219: MIRP[nrp0,nmd,rd,0] 
+	00220: DELTAP1    
+	00221: DELTAP2    
+	00222: CALL       
+	00223: RTG        
+	00224: SRP0       
+	00225: MIRP[nrp0,md,rd,1] 
+	00226: SRP0       
+	00227: MIRP[nrp0,md,rd,1] 
+	00228: SVTCA[y-axis] 
+	00229: MIAP[rd+ci] 
+	00230: ALIGNRP    
+	00231: SMD        
+	00232: RTHG       
+	00233: MIRP[nrp0,md,rd,1] 
+	00234: RTG        
+	00235: MIAP[rd+ci] 
+	00236: ALIGNRP    
+	00237: SDPVTL[1]  
+	00238: SFVTCA[x-axis] 
+	00239: MDAP[nrd]  
+	00240: CALL       
+	00241: RDTG       
+	00242: SRP0       
+	00243: MDRP[nrp0,nmd,rd,0] 
+	00244: SDPVTL[1]  
+	00245: MDAP[nrd]  
+	00246: RTG        
+	00247: CALL       
+	00248: RDTG       
+	00249: SRP0       
+	00250: MDRP[nrp0,nmd,rd,0] 
+	00251: SVTCA[x-axis] 
+	00252: MPPEM      
+	00253: PUSHB[1]             11 
+	00255: GTEQ       
+	00256: MPPEM      
+	00257: PUSHB[1]             20 
+	00259: LTEQ       
+	00260: AND        
+	00261: IF         
+	00262: PUSHB[3]              0    15    10 
+	00266: PUSHW[1]            -15 
+	00269: PUSHB[3]              9    18     1 
+	00273: PUSHW[1]            -15 
+	00276: PUSHB[3]              8    20     2 
+	00280: PUSHW[1]            -18 
+	00283: SHPIX      
+	00284: SHPIX      
+	00285: SHPIX      
+	00286: SHPIX      
+	00287: SHPIX      
+	00288: SHPIX      
+	00289: EIF        
+	00290: SVTCA[x-axis] 
+	00291: MPPEM      
+	00292: PUSHB[1]             40 
+	00294: GTEQ       
+	00295: MPPEM      
+	00296: PUSHB[1]             54 
+	00298: LTEQ       
+	00299: AND        
+	00300: IF         
+	00301: PUSHW[2]              0   -64 
+	00306: SHPIX      
+	00307: EIF        
+	00308: EIF        
+	00309: IUP[y]     
+	00310: IUP[x]     
+	00311: SVTCA[x-axis] 
+	00312: DELTAP1    
+	00313: DELTAP2    
+	00314: DELTAP1    
+	00315: SVTCA[y-axis] 
+	00316: DELTAP1    
+	00317: EIF        
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:                                      On
+	  9:  YDual XDual                 X-Short On
+	 10:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   577,     0)  ->  Abs (   577,     0)
+	  1: Rel (  -568,  1466)  ->  Abs (     9,  1466)
+	  2: Rel (   210,     0)  ->  Abs (   219,  1466)
+	  3: Rel (   381, -1065)  ->  Abs (   600,   401)
+	  4: Rel (    46,  -128)  ->  Abs (   646,   273)
+	  5: Rel (    31,  -112)  ->  Abs (   677,   161)
+	  6: Rel (    34,   120)  ->  Abs (   711,   281)
+	  7: Rel (    45,   120)  ->  Abs (   756,   401)
+	  8: Rel (   396,  1065)  ->  Abs (  1152,  1466)
+	  9: Rel (   198,     0)  ->  Abs (  1350,  1466)
+	 10: Rel (  -574, -1466)  ->  Abs (   776,     0)
+
+	Glyph  58: off = 0x000043DA, len = 574
+	  numberOfContours:	1
+	  xMin:			25
+	  yMin:			0
+	  xMax:			1910
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  24
+
+	  Length of Instructions:	475
+	00000: NPUSHB      (38):    41     0    38    17    41    18    38    24    57     0 
+	                            54    17    57    18    54    24    73     0    71    17 
+	                            73    18    71    24    88     0    87    17    88    18 
+	                            87    24    16   152     8   152    15     2 
+	00040: PUSHB[2]              6     2 
+	00043: RS         
+	00044: EQ         
+	00045: IF         
+	00046: NPUSHB      (51):    16     1    26    25    43    21    52     5    52    12 
+	                            68     5    68    12    75    21    84     5    84    12 
+	                            91    21   100     5   100    12   107    21   116     5 
+	                           116    12   123    21    15     5    21    12     3     0 
+	                             1    18     8     0     8    15     2     8     2     1 
+	                             2 
+	00099: SVTCA[y-axis] 
+	00100: MIAP[rd+ci] 
+	00101: MIAP[rd+ci] 
+	00102: MIAP[rd+ci] 
+	00103: MIAP[rd+ci] 
+	00104: MIAP[rd+ci] 
+	00105: SRP1       
+	00106: SRP2       
+	00107: SLOOP      
+	00108: IP         
+	00109: DELTAP1    
+	00110: SVTCA[x-axis] 
+	00111: SRP1       
+	00112: SRP2       
+	00113: IP         
+	00114: IP         
+	00115: ELSE       
+	00116: NPUSHB      (30):     3     4     5     5     2     6     7     8     8     5 
+	                            10    11    12    12     9    13    14    15    15    12 
+	                            20    19    18    18    21    22    23    24    24    21 
+	00148: PUSHW[1]           -196 
+	00151: PUSHB[4]              5     0    24    32 
+	00156: PUSHW[1]           -196 
+	00159: PUSHB[4]             12    18    17    32 
+	00164: PUSHW[1]           -196 
+	00167: NPUSHB      (90):    21     8     9    32     0     5     2     2    32     1 
+	                             0    20     1     1     0    24     5     8     8    30 
+	                            21    24    20    21    21    24    18    12     9     9 
+	                            30    21    18    20    21    21    18    17    12    15 
+	                            15    32    16    17    20    16    16    17    18     9 
+	                            12     8    24    21     5    15    17    16    12     0 
+	                             2     5    21    12     5     3    24    16    15    15 
+	                             9     9     8     8     2     2     1     2    24    18 
+	                            18    17    17     0     8    26    23    23    26    16 
+	00259: NPUSHW       (9):   337    32    12   337    21   337    64     5   337 
+	00279: PUSHB[7]             32    32     1     1     1    25    25 
+	00287: PUSHW[1]            395 
+	00290: PUSHB[2]            168    24 
+	00293: CALL       
+	00294: FLIPOFF    
+	00295: SRP0       
+	00296: MIRP[srp0,nmd,rd,0] 
+	00297: DELTAP1    
+	00298: SMD        
+	00299: RTHG       
+	00300: FLIPON     
+	00301: MIRP[srp0,md,rd,1] 
+	00302: SMD        
+	00303: RTG        
+	00304: MIRP[srp0,md,rd,1] 
+	00305: MIRP[srp0,md,rd,1] 
+	00306: SMD        
+	00307: RTHG       
+	00308: MIRP[srp0,md,rd,1] 
+	00309: RTG        
+	00310: FLIPOFF    
+	00311: RCVT       
+	00312: NEG        
+	00313: WCVTP      
+	00314: MIRP[nrp0,nmd,rd,2] 
+	00315: SVTCA[y-axis] 
+	00316: MIAP[rd+ci] 
+	00317: ALIGNRP    
+	00318: SRP0       
+	00319: ALIGNRP    
+	00320: SRP0       
+	00321: ALIGNRP    
+	00322: MIAP[rd+ci] 
+	00323: ALIGNRP    
+	00324: SRP0       
+	00325: ALIGNRP    
+	00326: SRP0       
+	00327: ALIGNRP    
+	00328: SRP0       
+	00329: ALIGNRP    
+	00330: SRP0       
+	00331: ALIGNRP    
+	00332: SRP2       
+	00333: SLOOP      
+	00334: IP         
+	00335: SVTCA[x-axis] 
+	00336: SRP2       
+	00337: IP         
+	00338: IP         
+	00339: SRP1       
+	00340: SRP2       
+	00341: IP         
+	00342: IP         
+	00343: SRP1       
+	00344: SRP2       
+	00345: IP         
+	00346: IP         
+	00347: SRP1       
+	00348: IP         
+	00349: IP         
+	00350: SDPVTL[1]  
+	00351: FLIPON     
+	00352: MDAP[nrd]  
+	00353: CALL       
+	00354: SDPVTL[1]  
+	00355: RDTG       
+	00356: MDRP[nrp0,nmd,rd,0] 
+	00357: SDPVTL[1]  
+	00358: MDAP[nrd]  
+	00359: RTG        
+	00360: CALL       
+	00361: SDPVTL[1]  
+	00362: RDTG       
+	00363: MDRP[nrp0,nmd,rd,0] 
+	00364: SDPVTL[1]  
+	00365: MDAP[nrd]  
+	00366: RTG        
+	00367: CALL       
+	00368: SDPVTL[1]  
+	00369: RDTG       
+	00370: MDRP[nrp0,nmd,rd,0] 
+	00371: SDPVTL[1]  
+	00372: MDAP[nrd]  
+	00373: RTG        
+	00374: CALL       
+	00375: SDPVTL[1]  
+	00376: RDTG       
+	00377: MDRP[nrp0,nmd,rd,0] 
+	00378: CALL       
+	00379: CALL       
+	00380: CALL       
+	00381: SDPVTL[1]  
+	00382: SFVTPV     
+	00383: SRP0       
+	00384: MDRP[nrp0,nmd,rd,0] 
+	00385: MDRP[nrp0,nmd,rd,0] 
+	00386: SDPVTL[1]  
+	00387: SFVTPV     
+	00388: SRP0       
+	00389: ALIGNRP    
+	00390: MDRP[nrp0,nmd,rd,0] 
+	00391: SDPVTL[1]  
+	00392: SFVTPV     
+	00393: SRP0       
+	00394: MDRP[nrp0,nmd,rd,0] 
+	00395: MDRP[nrp0,nmd,rd,0] 
+	00396: SDPVTL[1]  
+	00397: SFVTPV     
+	00398: SRP0       
+	00399: MDRP[nrp0,nmd,rd,0] 
+	00400: MDRP[nrp0,nmd,rd,0] 
+	00401: SDPVTL[1]  
+	00402: SFVTPV     
+	00403: SRP0       
+	00404: MDRP[nrp0,nmd,rd,0] 
+	00405: MDRP[nrp0,nmd,rd,0] 
+	00406: SDPVTL[1]  
+	00407: SFVTPV     
+	00408: SRP0       
+	00409: MDRP[nrp0,nmd,rd,0] 
+	00410: MDRP[nrp0,nmd,rd,0] 
+	00411: SVTCA[x-axis] 
+	00412: MPPEM      
+	00413: PUSHB[1]             15 
+	00415: GTEQ       
+	00416: MPPEM      
+	00417: PUSHB[1]             17 
+	00419: LTEQ       
+	00420: AND        
+	00421: IF         
+	00422: PUSHB[3]             18    10    24 
+	00426: PUSHW[1]            -10 
+	00429: SHPIX      
+	00430: SHPIX      
+	00431: EIF        
+	00432: SVTCA[x-axis] 
+	00433: MPPEM      
+	00434: PUSHB[1]             37 
+	00436: GTEQ       
+	00437: MPPEM      
+	00438: PUSHB[1]             42 
+	00440: LTEQ       
+	00441: AND        
+	00442: IF         
+	00443: PUSHW[2]              0   -64 
+	00448: SHPIX      
+	00449: EIF        
+	00450: SVTCA[y-axis] 
+	00451: MPPEM      
+	00452: PUSHB[1]             11 
+	00454: GTEQ       
+	00455: MPPEM      
+	00456: PUSHB[1]             14 
+	00458: LTEQ       
+	00459: AND        
+	00460: IF         
+	00461: PUSHB[4]             12    64     5    64 
+	00466: SHPIX      
+	00467: SHPIX      
+	00468: EIF        
+	00469: EIF        
+	00470: IUP[y]     
+	00471: IUP[x]     
+	00472: SVTCA[x-axis] 
+	00473: DELTAP3    
+	00474: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                 X-Short On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:                                      On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual                 X-Short On
+	 11:        XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:        XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:                                      On
+	 18:  YDual                       X-Short On
+	 19:                                      On
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual               Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short X-Short On
+	 24:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   414,     0)  ->  Abs (   414,     0)
+	  1: Rel (  -389,  1466)  ->  Abs (    25,  1466)
+	  2: Rel (   199,     0)  ->  Abs (   224,  1466)
+	  3: Rel (   223,  -961)  ->  Abs (   447,   505)
+	  4: Rel (    36,  -151)  ->  Abs (   483,   354)
+	  5: Rel (    26,  -149)  ->  Abs (   509,   205)
+	  6: Rel (    56,   235)  ->  Abs (   565,   440)
+	  7: Rel (    10,    36)  ->  Abs (   575,   476)
+	  8: Rel (   279,   990)  ->  Abs (   854,  1466)
+	  9: Rel (   234,     0)  ->  Abs (  1088,  1466)
+	 10: Rel (   210,  -742)  ->  Abs (  1298,   724)
+	 11: Rel (    79,  -276)  ->  Abs (  1377,   448)
+	 12: Rel (    35,  -243)  ->  Abs (  1412,   205)
+	 13: Rel (    28,   139)  ->  Abs (  1440,   344)
+	 14: Rel (    45,   180)  ->  Abs (  1485,   524)
+	 15: Rel (   230,   942)  ->  Abs (  1715,  1466)
+	 16: Rel (   195,     0)  ->  Abs (  1910,  1466)
+	 17: Rel (  -402, -1466)  ->  Abs (  1508,     0)
+	 18: Rel (  -187,     0)  ->  Abs (  1321,     0)
+	 19: Rel (  -309,  1117)  ->  Abs (  1012,  1117)
+	 20: Rel (   -39,   140)  ->  Abs (   973,  1257)
+	 21: Rel (    -7,    32)  ->  Abs (   966,  1289)
+	 22: Rel (   -23,  -101)  ->  Abs (   943,  1188)
+	 23: Rel (   -20,   -71)  ->  Abs (   923,  1117)
+	 24: Rel (  -311, -1117)  ->  Abs (   612,     0)
+
+	Glyph  59: off = 0x00004618, len = 780
+	  numberOfContours:	1
+	  xMin:			9
+	  yMin:			0
+	  xMax:			1353
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	693
+	00000: NPUSHB      (41):    38    18     1    25     1    22    11     2    41    18 
+	                            41    19    56     1    55     3    56     8    56     9 
+	                            56    13    58    14    53    18    55    19    10    18 
+	                            19    32    18    33    52    18    32    18    33    52 
+	                            14 
+	00043: PUSHW[1]            -32 
+	00046: PUSHB[4]             18    33    52    13 
+	00051: PUSHW[1]            -32 
+	00054: PUSHB[4]             18    33    52     9 
+	00059: PUSHW[1]            -32 
+	00062: PUSHB[4]             18    33    52     8 
+	00067: PUSHW[1]            -32 
+	00070: NPUSHB     (108):    18    33    52     4    32    18    33    52     3    32 
+	                            18    33    52   119     1   119    11     2    38     4 
+	                            41     7    40    11    42    14    38    18    54     4 
+	                            58     8    58    11    58    14    53    18    72     8 
+	                            84     4    93     8    92    11    90    14    84    18 
+	                           103     1   101     4   106     8   107    11   105    14 
+	                           101    18   117     4   122     8   121    11   122    13 
+	                           119    18   119    19   134     4   138     7   138    10 
+	                           149     4   184     8   183    18   198     4   201     8 
+	                           215     4   216     8   217    14   214    18   231     4 
+	                           232     8   232    14   230    18    44     6 
+	00180: PUSHW[1]            -22 
+	00183: NPUSHB      (17):    12    17     2    85    16    22    12    17     2    85 
+	                            11     8    12    17     2    85     1 
+	00202: PUSHW[1]             -8 
+	00205: PUSHB[4]             12    17     2    85 
+	00210: PUSHB[2]              6     2 
+	00213: RS         
+	00214: EQ         
+	00215: IF         
+	00216: NPUSHB      (11):    12     0    21    20    16    24    10    17     6    85 
+	                             6 
+	00229: PUSHW[1]            -24 
+	00232: NPUSHB      (14):    10    17     6    85    16     6     0     2    13     0 
+	                             8    10     2     2 
+	00248: SVTCA[y-axis] 
+	00249: MIAP[rd+ci] 
+	00250: ALIGNRP    
+	00251: MIAP[rd+ci] 
+	00252: ALIGNRP    
+	00253: SRP1       
+	00254: SRP2       
+	00255: IP         
+	00256: IP         
+	00257: CALL       
+	00258: CALL       
+	00259: SVTCA[x-axis] 
+	00260: SRP1       
+	00261: SRP2       
+	00262: IP         
+	00263: IP         
+	00264: ELSE       
+	00265: NPUSHB      (93):     6     7     8     9     9     1     6     5     4     3 
+	                             3    11    16    16    19    15    14    13    13     1 
+	                            16    16    13    17    18    19    19    11     1     0 
+	                             9     2    13    11     3    12    19    10    11     1 
+	                             6    16     2    19     9    10    19    19    32     0 
+	                             9    20     0     0     9     3     2    13    13    32 
+	                            12     3    20    12    12     3    10     9     9     3 
+	                             3     2     2    19    13    13    12    12     0     8 
+	                            47    21     1    21    23    23    26    32    12    64 
+	                            12     2    12 
+	00360: PUSHW[1]            351 
+	00363: PUSHB[8]             32    10   144    10   192    10     3    10 
+	00372: PUSHW[1]            440 
+	00375: PUSHB[6]             95     2   159     2     2     2 
+	00382: PUSHW[1]            440 
+	00385: NPUSHB      (10):     6   180    64    16    80    16   207    16     3    16 
+	00397: PUSHW[1]            351 
+	00400: NPUSHB      (10):    32     0    25    20    21   194    33    96   168    24 
+	00412: CALL       
+	00413: CALL       
+	00414: FLIPOFF    
+	00415: MIRP[srp0,nmd,rd,0] 
+	00416: SMD        
+	00417: RTHG       
+	00418: FLIPON     
+	00419: MIRP[srp0,md,rd,1] 
+	00420: DELTAP1    
+	00421: RTG        
+	00422: MIRP[nrp0,nmd,rd,1] 
+	00423: RTHG       
+	00424: MIRP[nrp0,md,rd,1] 
+	00425: DELTAP1    
+	00426: MIRP[nrp0,md,rd,1] 
+	00427: DELTAP1    
+	00428: MIRP[srp0,md,rd,1] 
+	00429: DELTAP1    
+	00430: RTG        
+	00431: FLIPOFF    
+	00432: RCVT       
+	00433: NEG        
+	00434: WCVTP      
+	00435: MIRP[nrp0,nmd,rd,2] 
+	00436: DELTAP1    
+	00437: SVTCA[y-axis] 
+	00438: MIAP[rd+ci] 
+	00439: ALIGNRP    
+	00440: SRP0       
+	00441: ALIGNRP    
+	00442: SRP0       
+	00443: ALIGNRP    
+	00444: MIAP[rd+ci] 
+	00445: ALIGNRP    
+	00446: SRP0       
+	00447: ALIGNRP    
+	00448: SRP0       
+	00449: ALIGNRP    
+	00450: SDPVTL[1]  
+	00451: SFVTCA[x-axis] 
+	00452: FLIPON     
+	00453: MDAP[nrd]  
+	00454: CALL       
+	00455: SDPVTL[1]  
+	00456: RDTG       
+	00457: MDRP[nrp0,nmd,rd,0] 
+	00458: SDPVTL[1]  
+	00459: MDAP[nrd]  
+	00460: RTG        
+	00461: CALL       
+	00462: SDPVTL[1]  
+	00463: RDTG       
+	00464: MDRP[nrp0,nmd,rd,0] 
+	00465: SVTCA[y-axis] 
+	00466: SRP1       
+	00467: SRP2       
+	00468: IP         
+	00469: IP         
+	00470: IP         
+	00471: IP         
+	00472: ISECT      
+	00473: ISECT      
+	00474: SDPVTL[1]  
+	00475: SFVTPV     
+	00476: SRP0       
+	00477: ALIGNRP    
+	00478: ALIGNRP    
+	00479: SFVTL[=p1,p2] 
+	00480: MDRP[nrp0,nmd,rd,0] 
+	00481: SDPVTL[1]  
+	00482: SFVTPV     
+	00483: SRP0       
+	00484: ALIGNRP    
+	00485: ALIGNRP    
+	00486: SFVTL[=p1,p2] 
+	00487: MDRP[nrp0,nmd,rd,0] 
+	00488: SDPVTL[1]  
+	00489: SFVTPV     
+	00490: SRP0       
+	00491: ALIGNRP    
+	00492: ALIGNRP    
+	00493: MDRP[nrp0,nmd,rd,0] 
+	00494: SDPVTL[1]  
+	00495: SFVTPV     
+	00496: SRP0       
+	00497: MDRP[nrp0,nmd,rd,0] 
+	00498: MDRP[nrp0,nmd,rd,0] 
+	00499: MDRP[nrp0,nmd,rd,0] 
+	00500: EIF        
+	00501: CALL       
+	00502: CALL       
+	00503: SVTCA[y-axis] 
+	00504: CALL       
+	00505: CALL       
+	00506: IUP[y]     
+	00507: IUP[x]     
+	00508: SVTCA[x-axis] 
+	00509: DELTAP1    
+	00510: SVTCA[y-axis] 
+	00511: DELTAP1    
+	00512: SVTCA[x-axis] 
+	00513: CALL       
+	00514: CALL       
+	00515: CALL       
+	00516: CALL       
+	00517: CALL       
+	00518: CALL       
+	00519: CALL       
+	00520: CALL       
+	00521: RS         
+	00522: NOT        
+	00523: IF         
+	00524: PUSHW[2]             11   -34 
+	00529: NPUSHB      (11):    25    57     1    34    25    57    14    24    27    57 
+	                            18 
+	00542: PUSHW[1]            -34 
+	00545: PUSHB[3]             27    57    19 
+	00549: PUSHW[1]            -34 
+	00552: PUSHB[3]             27    57     4 
+	00556: PUSHW[1]            -24 
+	00559: PUSHB[7]             27    57     8    34    27    57     9 
+	00567: PUSHW[1]            -64 
+	00570: PUSHB[3]             28    57    13 
+	00574: PUSHW[1]            -64 
+	00577: NPUSHB      (31):    28    57    19    64    28    57     3    64    28    57 
+	                            13    14    22    23    60    19    18    22    23    61 
+	                             8     9    22    23    60     3     4    22    23    61 
+	                            11 
+	00610: PUSHW[1]            -34 
+	00613: NPUSHB      (46):    18    57     1    34    18    57    11    12    29    33 
+	                            61     1     0    29    33    60    11    10    29    33 
+	                            61     1     2    29    33    60    11    12    19    23 
+	                            61     1     0    19    23    60    11    10    19    23 
+	                            61     1     2    19    23    60 
+	00661: CALL       
+	00662: CALL       
+	00663: CALL       
+	00664: CALL       
+	00665: CALL       
+	00666: CALL       
+	00667: CALL       
+	00668: CALL       
+	00669: CALL       
+	00670: CALL       
+	00671: CALL       
+	00672: CALL       
+	00673: CALL       
+	00674: CALL       
+	00675: SVTCA[x-axis] 
+	00676: CALL       
+	00677: CALL       
+	00678: CALL       
+	00679: CALL       
+	00680: CALL       
+	00681: CALL       
+	00682: CALL       
+	00683: CALL       
+	00684: CALL       
+	00685: CALL       
+	00686: CALL       
+	00687: EIF        
+	00688: SVTCA[x-axis] 
+	00689: DELTAP2    
+	00690: SVTCA[x-axis] 
+	00691: DELTAP1    
+	00692: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:                                      On
+	  2:                                      On
+	  3:  YDual XDual                 X-Short On
+	  4:                                      On
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:                                      On
+	 10:  YDual XDual                 X-Short On
+	 11:                                      On
+	 12:                                      On
+	 13:  YDual                       X-Short On
+	 14:                                      On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (     9,     0)  ->  Abs (     9,     0)
+	  1: Rel (   567,   764)  ->  Abs (   576,   764)
+	  2: Rel (  -500,   702)  ->  Abs (    76,  1466)
+	  3: Rel (   231,     0)  ->  Abs (   307,  1466)
+	  4: Rel (   266,  -376)  ->  Abs (   573,  1090)
+	  5: Rel (    83,  -117)  ->  Abs (   656,   973)
+	  6: Rel (    35,   -63)  ->  Abs (   691,   910)
+	  7: Rel (    49,    80)  ->  Abs (   740,   990)
+	  8: Rel (    67,    87)  ->  Abs (   807,  1077)
+	  9: Rel (   295,   389)  ->  Abs (  1102,  1466)
+	 10: Rel (   211,     0)  ->  Abs (  1313,  1466)
+	 11: Rel (  -515,  -691)  ->  Abs (   798,   775)
+	 12: Rel (   555,  -775)  ->  Abs (  1353,     0)
+	 13: Rel (  -240,     0)  ->  Abs (  1113,     0)
+	 14: Rel (  -369,   523)  ->  Abs (   744,   523)
+	 15: Rel (   -31,    45)  ->  Abs (   713,   568)
+	 16: Rel (   -33,    53)  ->  Abs (   680,   621)
+	 17: Rel (   -49,   -80)  ->  Abs (   631,   541)
+	 18: Rel (   -21,   -30)  ->  Abs (   610,   511)
+	 19: Rel (  -368,  -511)  ->  Abs (   242,     0)
+
+	Glyph  60: off = 0x00004924, len = 422
+	  numberOfContours:	1
+	  xMin:			6
+	  yMin:			0
+	  xMax:			1350
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  12
+
+	  Length of Instructions:	362
+	00000: PUSHB[7]              8     9    58     3     4    59     9 
+	00008: PUSHW[1]            -25 
+	00011: PUSHB[4]             18    23    52     8 
+	00016: PUSHW[1]            -25 
+	00019: NPUSHB      (14):    18    23    52     4    25    18    23    52     3    25 
+	                            18    23    52     9 
+	00035: PUSHW[1]            -40 
+	00038: PUSHB[4]             24    33    52     8 
+	00043: PUSHW[1]            -40 
+	00046: NPUSHB      (59):    24    33    52     4    40    24    33    52    18    38 
+	                             4    41     8    42    10    47    14     4   104     1 
+	                           104     6   104    11   222     6     4     5     4     3 
+	                             3     6     8     7     9     6     6     9     6     3 
+	                             9    10    12    16     2    85     9    32    10    11 
+	                            20    10    10    11     6     3     6     9     3 
+	00107: PUSHW[1]            -10 
+	00110: NPUSHB      (22):    12    16     2    85     3    32     2     1    20     2 
+	                             2     1     6    12    11     6     1     3     2     0 
+	                             1    11 
+	00134: PUSHW[1]            537 
+	00137: NPUSHB       (9):    10    10     9     3     2     2     0     8    14 
+	00148: PUSHW[1]            536 
+	00151: NPUSHB       (9):    12     9    82    64    10   128    10     2    10 
+	00162: PUSHW[1]            437 
+	00165: NPUSHB      (13):    11    11    12    32     0     3    82    79     2   143 
+	                             2     2     2 
+	00180: PUSHW[1]            437 
+	00183: NPUSHB       (9):     1     1     0    20    16    16     2    85     0 
+	00194: PUSHW[1]            -10 
+	00197: NPUSHB      (11):    15    15     2    85     0    12    13    13     2    85 
+	                             0 
+	00210: PUSHW[1]            -30 
+	00213: PUSHB[5]             12    12     2    85     0 
+	00219: PUSHW[1]            536 
+	00222: PUSHB[7]             13    14   194    33    96   168    24 
+	00230: CALL       
+	00231: CALL       
+	00232: MIRP[srp0,nmd,rd,2] 
+	00233: CALL       
+	00234: CALL       
+	00235: CALL       
+	00236: CALL       
+	00237: ALIGNRP    
+	00238: SRP0       
+	00239: MIRP[srp0,nmd,rd,0] 
+	00240: DELTAP1    
+	00241: MIRP[nrp0,md,rd,1] 
+	00242: SRP0       
+	00243: MIRP[srp0,md,rd,1] 
+	00244: ALIGNRP    
+	00245: SRP0       
+	00246: MIRP[srp0,nmd,rd,0] 
+	00247: DELTAP1    
+	00248: MIRP[nrp0,md,rd,1] 
+	00249: SRP0       
+	00250: MIRP[nrp0,nmd,rd,2] 
+	00251: SVTCA[y-axis] 
+	00252: MIAP[rd+ci] 
+	00253: MIAP[rd+ci] 
+	00254: ALIGNRP    
+	00255: ALIGNRP    
+	00256: ALIGNRP    
+	00257: SRP0       
+	00258: MIRP[srp0,nmd,rd,0] 
+	00259: ALIGNRP    
+	00260: SRP1       
+	00261: SRP2       
+	00262: SLOOP      
+	00263: IP         
+	00264: SVTCA[x-axis] 
+	00265: SRP2       
+	00266: IP         
+	00267: SDPVTL[1]  
+	00268: MDAP[nrd]  
+	00269: CALL       
+	00270: CALL       
+	00271: SFVTL[=p1,p2] 
+	00272: RDTG       
+	00273: SRP0       
+	00274: MDRP[nrp0,nmd,rd,0] 
+	00275: SFVTCA[x-axis] 
+	00276: SDPVTL[1]  
+	00277: MDAP[nrd]  
+	00278: RTG        
+	00279: CALL       
+	00280: CALL       
+	00281: SFVTL[=p1,p2] 
+	00282: RDTG       
+	00283: SRP0       
+	00284: MDRP[nrp0,nmd,rd,0] 
+	00285: SDPVTL[1]  
+	00286: SFVTPV     
+	00287: MDRP[nrp0,nmd,rd,0] 
+	00288: MDRP[nrp0,nmd,rd,0] 
+	00289: SDPVTL[1]  
+	00290: SRP0       
+	00291: SFVTPV     
+	00292: MDRP[nrp0,nmd,rd,0] 
+	00293: MDRP[nrp0,nmd,rd,0] 
+	00294: MPPEM      
+	00295: PUSHB[1]             23 
+	00297: GTEQ       
+	00298: MPPEM      
+	00299: PUSHB[1]             28 
+	00301: LTEQ       
+	00302: AND        
+	00303: IF         
+	00304: PUSHB[5]              8    12     9    12     4 
+	00310: PUSHW[3]            -12     3   -12 
+	00317: SVTCA[x-axis] 
+	00318: SHPIX      
+	00319: SHPIX      
+	00320: SHPIX      
+	00321: SHPIX      
+	00322: EIF        
+	00323: IUP[y]     
+	00324: IUP[x]     
+	00325: SVTCA[y-axis] 
+	00326: DELTAP1    
+	00327: SVTCA[x-axis] 
+	00328: DELTAP1    
+	00329: RS         
+	00330: NOT        
+	00331: IF         
+	00332: NPUSHB       (9):     9    34    25    57     8    34    25    57     4 
+	00343: PUSHW[1]            -34 
+	00346: PUSHB[2]             25    57 
+	00349: CALL       
+	00350: CALL       
+	00351: CALL       
+	00352: EIF        
+	00353: CALL       
+	00354: CALL       
+	00355: CALL       
+	00356: CALL       
+	00357: CALL       
+	00358: CALL       
+	00359: CALL       
+	00360: CALL       
+	00361: CALL       
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:                                      On
+	  3:  YDual XDual                 X-Short On
+	  4:                                      On
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:                                      On
+	 10:  YDual XDual                 X-Short On
+	 11:                                      On
+	 12:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   571,     0)  ->  Abs (   571,     0)
+	  1: Rel (     0,   621)  ->  Abs (   571,   621)
+	  2: Rel (  -565,   845)  ->  Abs (     6,  1466)
+	  3: Rel (   236,     0)  ->  Abs (   242,  1466)
+	  4: Rel (   289,  -442)  ->  Abs (   531,  1024)
+	  5: Rel (    80,  -124)  ->  Abs (   611,   900)
+	  6: Rel (    69,  -124)  ->  Abs (   680,   776)
+	  7: Rel (    66,   115)  ->  Abs (   746,   891)
+	  8: Rel (    94,   144)  ->  Abs (   840,  1035)
+	  9: Rel (   284,   431)  ->  Abs (  1124,  1466)
+	 10: Rel (   226,     0)  ->  Abs (  1350,  1466)
+	 11: Rel (  -585,  -845)  ->  Abs (   765,   621)
+	 12: Rel (     0,  -621)  ->  Abs (   765,     0)
+
+	Glyph  61: off = 0x00004ACA, len = 320
+	  numberOfContours:	1
+	  xMin:			41
+	  yMin:			0
+	  xMax:			1200
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  12
+
+	  Length of Instructions:	268
+	00000: PUSHB[2]             18    14 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (15):    13    17    52    72     1    71     8    72     9     3 
+	                            10     8    11     9     2 
+	00023: PUSHB[2]              6     2 
+	00026: RS         
+	00027: EQ         
+	00028: IF         
+	00029: NPUSHB      (14):    12     0    14    13     1    11    30    12     8     8 
+	                             5    30     6     2 
+	00045: SVTCA[y-axis] 
+	00046: MIAP[rd+ci] 
+	00047: MIRP[srp0,md,rd,1] 
+	00048: ALIGNRP    
+	00049: MIAP[rd+ci] 
+	00050: MIRP[srp0,md,rd,1] 
+	00051: MDRP[nrp0,nmd,rd,0] 
+	00052: SVTCA[x-axis] 
+	00053: SRP1       
+	00054: SRP2       
+	00055: IP         
+	00056: IP         
+	00057: ELSE       
+	00058: NPUSHB      (43):   171     4     1     3     2     1     1     4     9    10 
+	                             4     8    10    10    38    29    33    52    40    10 
+	                             1   249    10     1    10    32     1     4    20     1 
+	                             1     4    10    40    11    28    52     1    40    11 
+	                            28    52     8 
+	00103: PUSHW[1]            -40 
+	00106: PUSHB[4]             11    28    52     4 
+	00111: PUSHW[1]            -40 
+	00114: NPUSHB      (19):    11    28    52     1    10     4     8     5    30     7 
+	                             6     2    11    10    30    12     0     8    10 
+	00135: PUSHW[4]            437     1     4   437 
+	00144: NPUSHB      (27):     0     7    48     8    64     8     2     8    74    12 
+	                            63    11     1    11    26    14     1     0     5     6 
+	                            81     0    25    13   182   153    24 
+	00173: CALL       
+	00174: FLIPOFF    
+	00175: SRP0       
+	00176: MIRP[srp0,nmd,rd,0] 
+	00177: FLIPON     
+	00178: MIRP[srp0,nmd,rd,0] 
+	00179: ALIGNRP    
+	00180: SRP0       
+	00181: ALIGNRP    
+	00182: FLIPOFF    
+	00183: SRP0       
+	00184: MIRP[srp0,nmd,rd,2] 
+	00185: DELTAP1    
+	00186: ALIGNRP    
+	00187: FLIPON     
+	00188: MIRP[srp0,nmd,rd,0] 
+	00189: DELTAP2    
+	00190: ALIGNRP    
+	00191: SRP0       
+	00192: MIRP[nrp0,nmd,rd,0] 
+	00193: SRP0       
+	00194: MIRP[srp0,md,rd,0] 
+	00195: SVTCA[y-axis] 
+	00196: MIAP[rd+ci] 
+	00197: ALIGNRP    
+	00198: MIRP[srp0,md,rd,1] 
+	00199: ALIGNRP    
+	00200: MIAP[rd+ci] 
+	00201: ALIGNRP    
+	00202: MIRP[srp0,md,rd,1] 
+	00203: ALIGNRP    
+	00204: ALIGNRP    
+	00205: SRP1       
+	00206: IP         
+	00207: SVTCA[x-axis] 
+	00208: CALL       
+	00209: CALL       
+	00210: CALL       
+	00211: CALL       
+	00212: SDPVTL[1]  
+	00213: SFVTCA[x-axis] 
+	00214: MDAP[nrd]  
+	00215: CALL       
+	00216: DELTAP1    
+	00217: DELTAP2    
+	00218: CALL       
+	00219: SDPVTL[1]  
+	00220: RDTG       
+	00221: MDRP[nrp0,nmd,rd,0] 
+	00222: SFVTPV     
+	00223: SRP0       
+	00224: MDRP[nrp0,nmd,rd,0] 
+	00225: SDPVTL[1]  
+	00226: SFVTPV     
+	00227: SRP0       
+	00228: MDRP[nrp0,nmd,rd,0] 
+	00229: MDRP[nrp0,nmd,rd,0] 
+	00230: SVTCA[x-axis] 
+	00231: DELTAP3    
+	00232: EIF        
+	00233: IUP[y]     
+	00234: IUP[x]     
+	00235: SVTCA[x-axis] 
+	00236: DELTAP2    
+	00237: DELTAP1    
+	00238: CALL       
+	00239: RS         
+	00240: NOT        
+	00241: IF         
+	00242: NPUSHB       (9):     2    34    33    57     1    24    33    57     9 
+	00253: PUSHW[1]            -34 
+	00256: PUSHB[6]             25    57     2    34    25    57 
+	00263: CALL       
+	00264: CALL       
+	00265: CALL       
+	00266: CALL       
+	00267: EIF        
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:                                      On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual         Y-Short         On
+	  9:                                      On
+	 10:                      Y-Short X-Short On
+	 11:  YDual                               On
+	 12:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (    41,     0)  ->  Abs (    41,     0)
+	  1: Rel (     0,   180)  ->  Abs (    41,   180)
+	  2: Rel (   751,   939)  ->  Abs (   792,  1119)
+	  3: Rel (    80,   100)  ->  Abs (   872,  1219)
+	  4: Rel (    72,    74)  ->  Abs (   944,  1293)
+	  5: Rel (  -818,     0)  ->  Abs (   126,  1293)
+	  6: Rel (     0,   173)  ->  Abs (   126,  1466)
+	  7: Rel (  1050,     0)  ->  Abs (  1176,  1466)
+	  8: Rel (     0,  -173)  ->  Abs (  1176,  1293)
+	  9: Rel (  -823, -1017)  ->  Abs (   353,   276)
+	 10: Rel (   -89,  -103)  ->  Abs (   264,   173)
+	 11: Rel (   936,     0)  ->  Abs (  1200,   173)
+	 12: Rel (     0,  -173)  ->  Abs (  1200,     0)
+
+	Glyph  62: off = 0x00004C0A, len = 106
+	  numberOfContours:	1
+	  xMin:			139
+	  yMin:			-407
+	  xMax:			536
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	70
+	00000: NPUSHB      (43):     4     3    43     1     2    16     5     6    43     0 
+	                             7    18     3     2     2     7     6   174     4     5 
+	                            37     1     0     6    12    12     2    85     0     8 
+	                             9     9     2    85    32     0     1     0   172     8 
+	                           157   104    24 
+	00045: CALL       
+	00046: SRP0       
+	00047: MIRP[srp0,nmd,rd,2] 
+	00048: DELTAP1    
+	00049: CALL       
+	00050: CALL       
+	00051: ALIGNRP    
+	00052: MIRP[srp0,md,rd,1] 
+	00053: ALIGNRP    
+	00054: MIRP[srp0,nmd,rd,0] 
+	00055: ALIGNRP    
+	00056: ALIGNRP    
+	00057: SRP0       
+	00058: ALIGNRP    
+	00059: SVTCA[y-axis] 
+	00060: MIAP[rd+ci] 
+	00061: ALIGNRP    
+	00062: MIRP[srp0,md,rd,1] 
+	00063: ALIGNRP    
+	00064: MIAP[rd+ci] 
+	00065: ALIGNRP    
+	00066: MIRP[srp0,md,rd,1] 
+	00067: ALIGNRP    
+	00068: IUP[y]     
+	00069: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                       X-Short On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   139,  -407)  ->  Abs (   139,  -407)
+	  1: Rel (     0,  1873)  ->  Abs (   139,  1466)
+	  2: Rel (   397,     0)  ->  Abs (   536,  1466)
+	  3: Rel (     0,  -149)  ->  Abs (   536,  1317)
+	  4: Rel (  -217,     0)  ->  Abs (   319,  1317)
+	  5: Rel (     0, -1575)  ->  Abs (   319,  -258)
+	  6: Rel (   217,     0)  ->  Abs (   536,  -258)
+	  7: Rel (     0,  -149)  ->  Abs (   536,  -407)
+
+	Glyph  63: off = 0x00004C74, len = 106
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-25
+	  xMax:			569
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	76
+	00000: NPUSHB      (36):     1     1    34    20    57     0    34    20    57   152 
+	                             0     1     1     0   144     0   160     0     2     0 
+	                           118     3     2    20     3     3     2     2     1     0 
+	                             3     0    10     3   232     0 
+	00038: PUSHW[1]            425 
+	00041: PUSHB[8]              2   232     1     1     4   179   122    24 
+	00050: CALL       
+	00051: SRP0       
+	00052: ALIGNRP    
+	00053: SRP0       
+	00054: MIRP[nrp0,md,rd,1] 
+	00055: MIRP[srp0,nmd,rd,0] 
+	00056: MIRP[nrp0,md,rd,1] 
+	00057: SVTCA[y-axis] 
+	00058: MIAP[rd+ci] 
+	00059: ALIGNRP    
+	00060: MIAP[rd+ci] 
+	00061: ALIGNRP    
+	00062: SDPVTL[1]  
+	00063: SFVTCA[x-axis] 
+	00064: MDAP[nrd]  
+	00065: CALL       
+	00066: DELTAP1    
+	00067: RDTG       
+	00068: SRP0       
+	00069: MDRP[nrp0,nmd,rd,0] 
+	00070: IUP[y]     
+	00071: IUP[x]     
+	00072: SVTCA[x-axis] 
+	00073: DELTAP1    
+	00074: CALL       
+	00075: CALL       
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   425,   -25)  ->  Abs (   425,   -25)
+	  1: Rel (  -425,  1516)  ->  Abs (     0,  1491)
+	  2: Rel (   145,     0)  ->  Abs (   145,  1491)
+	  3: Rel (   424, -1516)  ->  Abs (   569,   -25)
+
+	Glyph  64: off = 0x00004CDE, len = 100
+	  numberOfContours:	1
+	  xMin:			39
+	  yMin:			-407
+	  xMax:			436
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	63
+	00000: NPUSHB      (23):     4     5    43     7     6    16     3     2    43     0 
+	                             1    18     6     5     5     1     2   174     4     3 
+	                            37     7     0 
+	00025: PUSHW[1]            -20 
+	00028: NPUSHB      (10):    12    12     2    85     0   172     9   155    90    24 
+	00040: CALL       
+	00041: SRP0       
+	00042: MIRP[srp0,nmd,rd,0] 
+	00043: CALL       
+	00044: ALIGNRP    
+	00045: MIRP[srp0,md,rd,1] 
+	00046: ALIGNRP    
+	00047: MIRP[srp0,nmd,rd,0] 
+	00048: ALIGNRP    
+	00049: ALIGNRP    
+	00050: SRP0       
+	00051: ALIGNRP    
+	00052: SVTCA[y-axis] 
+	00053: MIAP[rd+ci] 
+	00054: ALIGNRP    
+	00055: MIRP[srp0,md,rd,1] 
+	00056: ALIGNRP    
+	00057: MIAP[rd+ci] 
+	00058: ALIGNRP    
+	00059: MIRP[srp0,md,rd,1] 
+	00060: ALIGNRP    
+	00061: IUP[y]     
+	00062: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual                 X-Short On
+	  4:        XDual                         On
+	  5:  YDual                       X-Short On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   436,  -407)  ->  Abs (   436,  -407)
+	  1: Rel (  -397,     0)  ->  Abs (    39,  -407)
+	  2: Rel (     0,   149)  ->  Abs (    39,  -258)
+	  3: Rel (   217,     0)  ->  Abs (   256,  -258)
+	  4: Rel (     0,  1575)  ->  Abs (   256,  1317)
+	  5: Rel (  -217,     0)  ->  Abs (    39,  1317)
+	  6: Rel (     0,   149)  ->  Abs (    39,  1466)
+	  7: Rel (   397,     0)  ->  Abs (   436,  1466)
+
+	Glyph  65: off = 0x00004D42, len = 136
+	  numberOfContours:	1
+	  xMin:			54
+	  yMin:			690
+	  xMax:			907
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  6
+
+	  Length of Instructions:	97
+	00000: PUSHW[2]              0   -64 
+	00005: NPUSHB      (21):    20    57     0    64    20    57    38     2    41     3 
+	                             2     6     2     9     3     2     5     1     6    60 
+	                             1 
+	00028: PUSHW[1]            357 
+	00031: NPUSHB      (23):     2     5    60     4     0    60     1     6     6     3 
+	                             2     8    56     4   220     3   108     2   220     1 
+	                           105     7     8 
+	00056: PUSHW[5]            306    33   447   385    24 
+	00067: CALL       
+	00068: CALL       
+	00069: MIRP[srp0,nmd,rd,2] 
+	00070: MIRP[srp0,nmd,rd,0] 
+	00071: MIRP[srp0,nmd,rd,2] 
+	00072: MIRP[srp0,nmd,rd,0] 
+	00073: MIRP[nrp0,nmd,rd,0] 
+	00074: SRP1       
+	00075: SRP2       
+	00076: RTDG       
+	00077: IP         
+	00078: MDAP[rd]   
+	00079: RTG        
+	00080: SRP0       
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SRP0       
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: SVTCA[y-axis] 
+	00085: MDAP[rd]   
+	00086: MIRP[nrp0,md,rd,1] 
+	00087: MIRP[nrp0,md,rd,1] 
+	00088: SRP0       
+	00089: ALIGNRP    
+	00090: IUP[y]     
+	00091: IUP[x]     
+	00092: SVTCA[x-axis] 
+	00093: DELTAP2    
+	00094: DELTAP2    
+	00095: CALL       
+	00096: CALL       
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                       X-Short On
+	  2:                                      On
+	  3:  YDual XDual                 X-Short On
+	  4:                                      On
+	  5:  YDual                       X-Short On
+	  6:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   239,   690)  ->  Abs (   239,   690)
+	  1: Rel (  -185,     0)  ->  Abs (    54,   690)
+	  2: Rel (   353,   801)  ->  Abs (   407,  1491)
+	  3: Rel (   145,     0)  ->  Abs (   552,  1491)
+	  4: Rel (   355,  -801)  ->  Abs (   907,   690)
+	  5: Rel (  -181,     0)  ->  Abs (   726,   690)
+	  6: Rel (  -247,   597)  ->  Abs (   479,  1287)
+
+	Glyph  66: off = 0x00004DCA, len = 52
+	  numberOfContours:	1
+	  xMin:			-31
+	  yMin:			-407
+	  xMax:			1162
+	  yMax:			-277
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	26
+	00000: NPUSHB      (12):     1    63     0     2    26     5     0    25     4    67 
+	                            65    24 
+	00014: CALL       
+	00015: FLIPOFF    
+	00016: SRP0       
+	00017: MIRP[nrp0,nmd,rd,0] 
+	00018: SRP0       
+	00019: MIRP[nrp0,nmd,rd,2] 
+	00020: SVTCA[y-axis] 
+	00021: MDAP[rd]   
+	00022: FLIPON     
+	00023: MIRP[nrp0,md,rd,1] 
+	00024: IUP[y]     
+	00025: IUP[x]     
+
+	Flags
+	-----
+	  0:                              X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   -31,  -407)  ->  Abs (   -31,  -407)
+	  1: Rel (     0,   130)  ->  Abs (   -31,  -277)
+	  2: Rel (  1193,     0)  ->  Abs (  1162,  -277)
+	  3: Rel (     0,  -130)  ->  Abs (  1162,  -407)
+
+	Glyph  67: off = 0x00004DFE, len = 124
+	  numberOfContours:	1
+	  xMin:			89
+	  yMin:			1194
+	  xMax:			465
+	  yMax:			1474
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	96
+	00000: NPUSHB      (11):     3    56    23    25    52     2    64    15    17    52 
+	                             0 
+	00013: PUSHW[1]            -64 
+	00016: PUSHB[4]             23    25    52     3 
+	00021: PUSHW[1]            -64 
+	00024: NPUSHB      (26):    22    25    52    80     1    80     3     2    64     3 
+	                            80     0     2     3     2     0     0     1    16     1 
+	                             2     1   135     2     0     0 
+	00052: PUSHW[1]            595 
+	00055: PUSHB[3]              1   134     3 
+	00059: PUSHW[1]            608 
+	00062: PUSHB[4]              2    25     4   113 
+	00067: PUSHW[2]            303    24 
+	00072: CALL       
+	00073: FLIPOFF    
+	00074: SRP0       
+	00075: MIRP[srp0,nmd,rd,0] 
+	00076: FLIPON     
+	00077: MIRP[nrp0,md,rd,1] 
+	00078: MIRP[srp0,nmd,rd,0] 
+	00079: MIRP[nrp0,md,rd,1] 
+	00080: SVTCA[y-axis] 
+	00081: MIAP[rd+ci] 
+	00082: MIRP[srp0,md,rd,1] 
+	00083: DELTAP1    
+	00084: ALIGNRP    
+	00085: SRP0       
+	00086: ALIGNRP    
+	00087: IUP[y]     
+	00088: IUP[x]     
+	00089: SVTCA[x-axis] 
+	00090: DELTAP1    
+	00091: DELTAP1    
+	00092: CALL       
+	00093: CALL       
+	00094: CALL       
+	00095: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:                              X-Short On
+	  3:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   465,  1194)  ->  Abs (   465,  1194)
+	  1: Rel (  -145,     0)  ->  Abs (   320,  1194)
+	  2: Rel (  -231,   280)  ->  Abs (    89,  1474)
+	  3: Rel (   241,     0)  ->  Abs (   330,  1474)
+
+	Glyph  68: off = 0x00004E7A, len = 722
+	  numberOfContours:	2
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  40
+	  1:  55
+
+	  Length of Instructions:	557
+	00000: NPUSHB      (44):     9    13     9    42    25    13    26    42    41    13 
+	                            42    42    57    13    54    21    55    27    58    42 
+	                            73    42    93    13    93    42   106    13   105    42 
+	                            96    48   138    13   134    41   154    22   155    26 
+	                           169    13    21    40 
+	00046: PUSHW[1]            -24 
+	00049: PUSHB[5]             11    11     6    85    39 
+	00055: PUSHW[1]            -24 
+	00058: NPUSHB      (25):    11    11     6    85   166    25   170    40   182    25 
+	                           187    40   196    25   207    40   210    21   221    40 
+	                             8    68    22     1    30 
+	00085: PUSHW[1]            -12 
+	00088: NPUSHB      (17):    12    12     6    85    18    18    12    12     6    85 
+	                             5    12    12    12     6    85    53 
+	00107: PUSHW[1]            -32 
+	00110: NPUSHB      (85):    12    12     6    85    31    23    31    24    43    44 
+	                            42    52    57     4    57    44    73     4    72    44 
+	                            86     8    89    43   102     8   105    43   118    12 
+	                           135    12   201    12   249    13   249    43    17    55 
+	                            52    14     1     4    16    47    36    52    23    50 
+	                            33    20    24    95    41   111    41     2    41    28 
+	                            47    14    63    14   143    14   159    14   255    14 
+	                             5   159    14   175    14   239    14     3    14    12 
+	                            15    15     2    85    14 
+	00197: PUSHW[1]            -22 
+	00200: PUSHB[5]             16    16     2    85    14 
+	00206: PUSHW[1]            -12 
+	00209: NPUSHB      (21):    16    16     6    85    14    12    13    13     6    85 
+	                            14     6    15    15     6    85    14    14    28     3 
+	                            23 
+	00232: PUSHW[1]            682 
+	00235: PUSHB[7]             24   149    20    28    28     7     0 
+	00243: PUSHW[1]            -12 
+	00246: NPUSHB      (26):    12    12     6    85     0    69    39    10    50    28 
+	                             3    11    41    97    16    97     0     6    13    13 
+	                             2    85     0    37    33    36 
+	00274: PUSHW[1]            -20 
+	00277: PUSHB[5]             16    16     2    85    36 
+	00283: PUSHW[1]            -20 
+	00286: NPUSHB      (11):    13    13     2    85    36     4    12    12     2    85 
+	                            36 
+	00299: PUSHW[1]            -28 
+	00302: PUSHB[5]             11    11     2    85    36 
+	00308: PUSHW[1]            -12 
+	00311: PUSHB[5]             11    11     6    85    36 
+	00317: PUSHW[1]            -36 
+	00320: NPUSHB      (11):    16    16     6    85    36     6    15    15     6    85 
+	                            36 
+	00333: PUSHW[1]             -4 
+	00336: PUSHB[5]             12    12     6    85    36 
+	00342: PUSHW[1]            603 
+	00345: NPUSHB      (14):    39    64     0    38    16    38    32    38    48    38 
+	                           175    38     5    57 
+	00361: PUSHW[1]            -64 
+	00364: PUSHB[5]             14    14     2    85    38 
+	00370: PUSHW[1]            -42 
+	00373: PUSHB[7]             14    14     2    85    38    49    57 
+	00381: PUSHW[1]            -64 
+	00384: NPUSHB      (13):    30    35    52    48    57   192    57     2   160    57 
+	                             1    57    23 
+	00399: PUSHW[1]            -12 
+	00402: NPUSHB      (65):    16    16     6    85    23    37    24    34    47    36 
+	                           191     6   207     6     2    31     6    63     6     2 
+	                             6    14    15    15     2    85     6    12    13    13 
+	                             2    85     6    24    12    12     2    85     6    12 
+	                            11    11     2    85     6    12    11    11     6    85 
+	                             6    14    13    13     6    85     6    16    12    12 
+	                             6    85     6    49    56 
+	00469: SRP0       
+	00470: MIRP[srp0,nmd,rd,2] 
+	00471: CALL       
+	00472: CALL       
+	00473: CALL       
+	00474: CALL       
+	00475: CALL       
+	00476: CALL       
+	00477: CALL       
+	00478: DELTAP1    
+	00479: DELTAP2    
+	00480: MIRP[nrp0,md,rd,1] 
+	00481: MIRP[srp0,nmd,rd,0] 
+	00482: MIRP[nrp0,md,rd,1] 
+	00483: CALL       
+	00484: SRP0       
+	00485: DELTAP1    
+	00486: DELTAP2    
+	00487: CALL       
+	00488: MIRP[srp0,nmd,rd,2] 
+	00489: CALL       
+	00490: CALL       
+	00491: DELTAP1    
+	00492: MIRP[nrp0,md,rd,1] 
+	00493: MIRP[srp0,nmd,rd,0] 
+	00494: CALL       
+	00495: CALL       
+	00496: CALL       
+	00497: CALL       
+	00498: CALL       
+	00499: CALL       
+	00500: CALL       
+	00501: CALL       
+	00502: ALIGNRP    
+	00503: MIRP[srp0,md,rd,1] 
+	00504: CALL       
+	00505: MIRP[nrp0,nmd,rd,1] 
+	00506: MIRP[nrp0,nmd,rd,1] 
+	00507: SVTCA[y-axis] 
+	00508: MIAP[rd+ci] 
+	00509: MIRP[nrp0,md,rd,1] 
+	00510: MIAP[rd+ci] 
+	00511: MIRP[nrp0,nmd,rd,0] 
+	00512: CALL       
+	00513: MIAP[rd+ci] 
+	00514: MIRP[nrp0,md,rd,1] 
+	00515: MIRP[srp0,md,rd,1] 
+	00516: MIRP[nrp0,nmd,rd,0] 
+	00517: SRP1       
+	00518: SRP2       
+	00519: IP         
+	00520: MDAP[rd]   
+	00521: CALL       
+	00522: CALL       
+	00523: CALL       
+	00524: CALL       
+	00525: CALL       
+	00526: DELTAP1    
+	00527: DELTAP2    
+	00528: MIRP[nrp0,md,rd,1] 
+	00529: DELTAP2    
+	00530: SRP1       
+	00531: SRP2       
+	00532: IP         
+	00533: SRP1       
+	00534: SRP2       
+	00535: IP         
+	00536: IP         
+	00537: SVTCA[x-axis] 
+	00538: SRP1       
+	00539: SRP2       
+	00540: SLOOP      
+	00541: IP         
+	00542: IUP[y]     
+	00543: IUP[x]     
+	00544: SVTCA[y-axis] 
+	00545: DELTAP1    
+	00546: CALL       
+	00547: CALL       
+	00548: CALL       
+	00549: CALL       
+	00550: SVTCA[x-axis] 
+	00551: DELTAP2    
+	00552: DELTAP1    
+	00553: CALL       
+	00554: CALL       
+	00555: SVTCA[y-axis] 
+	00556: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual               Y-Short X-Short On
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short X-Short On
+	 39:  YDual                       X-Short On
+	 40:  YDual               Y-Short X-Short Off
+	 41:                              X-Short On
+	 42:                      Y-Short X-Short Off
+	 43:                      Y-Short X-Short On
+	 44:              Rep-  2 Y-Short X-Short Off
+	 47:        XDual         Y-Short         On
+	 48:        XDual         Y-Short         Off
+	 49:        XDual         Y-Short X-Short Off
+	 50:  YDual XDual                 X-Short On
+	 51:  YDual XDual                 X-Short Off
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:  YDual XDual         Y-Short X-Short Off
+	 55:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   828,   131)  ->  Abs (   828,   131)
+	  1: Rel (  -100,   -85)  ->  Abs (   728,    46)
+	  2: Rel (  -185,   -70)  ->  Abs (   543,   -24)
+	  3: Rel (  -106,     0)  ->  Abs (   437,   -24)
+	  4: Rel (  -175,     0)  ->  Abs (   262,   -24)
+	  5: Rel (  -188,   171)  ->  Abs (    74,   147)
+	  6: Rel (     0,   133)  ->  Abs (    74,   280)
+	  7: Rel (     0,    78)  ->  Abs (    74,   358)
+	  8: Rel (    71,   129)  ->  Abs (   145,   487)
+	  9: Rel (   115,    78)  ->  Abs (   260,   565)
+	 10: Rel (    72,    20)  ->  Abs (   332,   585)
+	 11: Rel (    53,    14)  ->  Abs (   385,   599)
+	 12: Rel (   107,    13)  ->  Abs (   492,   612)
+	 13: Rel (   218,    26)  ->  Abs (   710,   638)
+	 14: Rel (   103,    36)  ->  Abs (   813,   674)
+	 15: Rel (     1,    37)  ->  Abs (   814,   711)
+	 16: Rel (     0,    10)  ->  Abs (   814,   721)
+	 17: Rel (     0,   110)  ->  Abs (   814,   831)
+	 18: Rel (   -51,    45)  ->  Abs (   763,   876)
+	 19: Rel (   -69,    61)  ->  Abs (   694,   937)
+	 20: Rel (  -136,     0)  ->  Abs (   558,   937)
+	 21: Rel (  -127,     0)  ->  Abs (   431,   937)
+	 22: Rel (  -121,   -89)  ->  Abs (   310,   848)
+	 23: Rel (   -29,  -113)  ->  Abs (   281,   735)
+	 24: Rel (  -176,    24)  ->  Abs (   105,   759)
+	 25: Rel (    24,   113)  ->  Abs (   129,   872)
+	 26: Rel (   110,   139)  ->  Abs (   239,  1011)
+	 27: Rel (   208,    75)  ->  Abs (   447,  1086)
+	 28: Rel (   137,     0)  ->  Abs (   584,  1086)
+	 29: Rel (   136,     0)  ->  Abs (   720,  1086)
+	 30: Rel (   170,   -64)  ->  Abs (   890,  1022)
+	 31: Rel (    80,   -97)  ->  Abs (   970,   925)
+	 32: Rel (    16,   -74)  ->  Abs (   986,   851)
+	 33: Rel (     9,   -46)  ->  Abs (   995,   805)
+	 34: Rel (     0,  -120)  ->  Abs (   995,   685)
+	 35: Rel (     0,  -240)  ->  Abs (   995,   445)
+	 36: Rel (     0,  -251)  ->  Abs (   995,   194)
+	 37: Rel (    23,  -133)  ->  Abs (  1018,    61)
+	 38: Rel (    34,   -61)  ->  Abs (  1052,     0)
+	 39: Rel (  -188,     0)  ->  Abs (   864,     0)
+	 40: Rel (   -28,    56)  ->  Abs (   836,    56)
+	 41: Rel (   -23,   477)  ->  Abs (   813,   533)
+	 42: Rel (   -98,   -40)  ->  Abs (   715,   493)
+	 43: Rel (  -196,   -28)  ->  Abs (   519,   465)
+	 44: Rel (  -111,   -16)  ->  Abs (   408,   449)
+	 45: Rel (   -92,   -40)  ->  Abs (   316,   409)
+	 46: Rel (   -50,   -77)  ->  Abs (   266,   332)
+	 47: Rel (     0,   -47)  ->  Abs (   266,   285)
+	 48: Rel (     0,   -72)  ->  Abs (   266,   213)
+	 49: Rel (   109,   -96)  ->  Abs (   375,   117)
+	 50: Rel (   105,     0)  ->  Abs (   480,   117)
+	 51: Rel (   104,     0)  ->  Abs (   584,   117)
+	 52: Rel (   162,    91)  ->  Abs (   746,   208)
+	 53: Rel (    38,    79)  ->  Abs (   784,   287)
+	 54: Rel (    29,    61)  ->  Abs (   813,   348)
+	 55: Rel (     0,   119)  ->  Abs (   813,   467)
+
+	Glyph  69: off = 0x0000514C, len = 478
+	  numberOfContours:	2
+	  xMin:			134
+	  yMin:			-24
+	  xMax:			1055
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  16
+	  1:  29
+
+	  Length of Instructions:	384
+	00000: NPUSHB     (155):     1     5    12    15    36     5    53     5    69     5 
+	                             5    63    31   176    31     2    31    31    34    28 
+	                            51    28    66    28   112    31   144    31     6    58 
+	                            19    60    22    60    26    76    22    76    26    93 
+	                             8    93    13    88    15    93    22    94    26   106 
+	                             8   108    13   104    15   110    22   110    26   192 
+	                            31   217    12   218    23   218    25   226    19   236 
+	                            23   236    25   227    29   224    31   255    31    25 
+	                            32     5    47    15    47    20    48     5    63    15 
+	                            64     5    76    15    80     5   102     5   218    29 
+	                           245     4   250    16    12    16    21    14     4     6 
+	                             2     0    27    28     6     7     1    10    21    28 
+	                            14    11    24    36   208    11     1    16    11    64 
+	                            11    96    11   128    11     4    31    64    13    13 
+	                             2    85    11    12    15    15     2    85    11    24 
+	                            13    13     2    85    11 
+	00157: PUSHW[1]            -10 
+	00160: PUSHB[5]             12    12     2    85    11 
+	00166: PUSHW[1]            -16 
+	00169: PUSHB[5]             11    11     6    85    11 
+	00175: PUSHW[1]            -12 
+	00178: PUSHB[5]             15    15     6    85    11 
+	00184: PUSHW[1]            -32 
+	00187: PUSHB[5]             12    12     6    85    11 
+	00193: PUSHW[1]            -12 
+	00196: NPUSHB      (47):    13    13     6    85    11   116     1    17    51     0 
+	                             4    12    12     2    85     0     4    13    13     6 
+	                            85     0    51     3    37     2     2   192     1     1 
+	                           144     1   160     1   176     1   240     1     4    31 
+	                             1    63     1    79     1     3     1 
+	00245: PUSHW[1]             -2 
+	00248: PUSHB[5]             16    16     2    85     1 
+	00254: PUSHW[1]             -4 
+	00257: NPUSHB      (29):    14    14     2    85     1    12    13    13     2    85 
+	                             1    16    12    12     2    85     1    18    11    11 
+	                             2    85     1    12    11    11     6    85     1 
+	00288: PUSHW[1]             -8 
+	00291: PUSHB[5]             16    16     6    85     1 
+	00297: PUSHW[1]             -4 
+	00300: NPUSHB      (22):    15    15     6    85     1    24    12    12     6    85 
+	                             1    20    13    13     6    85     1    25    30    71 
+	                            55    24 
+	00324: CALL       
+	00325: FLIPOFF    
+	00326: SRP0       
+	00327: MIRP[srp0,nmd,rd,0] 
+	00328: CALL       
+	00329: CALL       
+	00330: CALL       
+	00331: CALL       
+	00332: CALL       
+	00333: CALL       
+	00334: CALL       
+	00335: CALL       
+	00336: CALL       
+	00337: CALL       
+	00338: DELTAP1    
+	00339: DELTAP2    
+	00340: DELTAP3    
+	00341: ALIGNRP    
+	00342: FLIPON     
+	00343: SRP0       
+	00344: MIRP[srp0,md,rd,1] 
+	00345: MIRP[srp0,nmd,rd,0] 
+	00346: CALL       
+	00347: CALL       
+	00348: MIRP[nrp0,nmd,rd,0] 
+	00349: SRP0       
+	00350: MIRP[srp0,md,rd,1] 
+	00351: CALL       
+	00352: CALL       
+	00353: CALL       
+	00354: CALL       
+	00355: CALL       
+	00356: CALL       
+	00357: CALL       
+	00358: CALL       
+	00359: DELTAP1    
+	00360: DELTAP2    
+	00361: MIRP[nrp0,md,rd,1] 
+	00362: SVTCA[y-axis] 
+	00363: MIAP[rd+ci] 
+	00364: MIRP[nrp0,md,rd,1] 
+	00365: MIAP[rd+ci] 
+	00366: MIAP[rd+ci] 
+	00367: MIRP[nrp0,md,rd,1] 
+	00368: MIAP[rd+ci] 
+	00369: SRP1       
+	00370: IP         
+	00371: SRP1       
+	00372: SRP2       
+	00373: IP         
+	00374: IUP[y]     
+	00375: IUP[x]     
+	00376: SVTCA[y-axis] 
+	00377: DELTAP1    
+	00378: SVTCA[x-axis] 
+	00379: DELTAP1    
+	00380: DELTAP2    
+	00381: DELTAP3    
+	00382: SVTCA[y-axis] 
+	00383: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual XDual                 X-Short On
+	  4:        XDual                         On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual Rep-  2 Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual                         Off
+	 13:                                      Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short X-Short On
+	 17:                              X-Short On
+	 18:        XDual         Y-Short         Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   301,     0)  ->  Abs (   301,     0)
+	  1: Rel (  -167,     0)  ->  Abs (   134,     0)
+	  2: Rel (     0,  1466)  ->  Abs (   134,  1466)
+	  3: Rel (   180,     0)  ->  Abs (   314,  1466)
+	  4: Rel (     0,  -523)  ->  Abs (   314,   943)
+	  5: Rel (   114,   143)  ->  Abs (   428,  1086)
+	  6: Rel (   177,     0)  ->  Abs (   605,  1086)
+	  7: Rel (    98,     0)  ->  Abs (   703,  1086)
+	  8: Rel (   175,   -79)  ->  Abs (   878,  1007)
+	  9: Rel (   113,  -143)  ->  Abs (   991,   864)
+	 10: Rel (    64,  -202)  ->  Abs (  1055,   662)
+	 11: Rel (     0,  -115)  ->  Abs (  1055,   547)
+	 12: Rel (     0,  -273)  ->  Abs (  1055,   274)
+	 13: Rel (  -270,  -298)  ->  Abs (   785,   -24)
+	 14: Rel (  -189,     0)  ->  Abs (   596,   -24)
+	 15: Rel (  -188,     0)  ->  Abs (   408,   -24)
+	 16: Rel (  -107,   157)  ->  Abs (   301,   133)
+	 17: Rel (    -2,   406)  ->  Abs (   299,   539)
+	 18: Rel (     0,  -191)  ->  Abs (   299,   348)
+	 19: Rel (    52,   -85)  ->  Abs (   351,   263)
+	 20: Rel (    85,  -139)  ->  Abs (   436,   124)
+	 21: Rel (   145,     0)  ->  Abs (   581,   124)
+	 22: Rel (   118,     0)  ->  Abs (   699,   124)
+	 23: Rel (   172,   205)  ->  Abs (   871,   329)
+	 24: Rel (     0,   203)  ->  Abs (   871,   532)
+	 25: Rel (     0,   208)  ->  Abs (   871,   740)
+	 26: Rel (  -165,   198)  ->  Abs (   706,   938)
+	 27: Rel (  -117,     0)  ->  Abs (   589,   938)
+	 28: Rel (  -118,     0)  ->  Abs (   471,   938)
+	 29: Rel (  -172,  -205)  ->  Abs (   299,   733)
+
+	Glyph  70: off = 0x0000532A, len = 436
+	  numberOfContours:	1
+	  xMin:			80
+	  yMin:			-24
+	  xMax:			1005
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  26
+
+	  Length of Instructions:	346
+	00000: PUSHB[2]              2     2 
+	00003: RS         
+	00004: EQ         
+	00005: IF         
+	00006: NPUSHB      (52):    14   127    15     1    15    11     1    64     0    80 
+	                             0   112     0     3     0     4    18    28    11     7 
+	                            24    28     4    11     1    14    21     7     8    14 
+	                            14     2    85     7    12    13    13     2    85     7 
+	                            12    12    12     2    85     7    16    11    11     2 
+	                            85     7 
+	00060: MDAP[rd]   
+	00061: CALL       
+	00062: CALL       
+	00063: CALL       
+	00064: CALL       
+	00065: MDRP[nrp0,md,rd,1] 
+	00066: MDRP[srp0,nmd,rd,0] 
+	00067: MDRP[nrp0,nmd,rd,2] 
+	00068: SVTCA[y-axis] 
+	00069: MIAP[rd+ci] 
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: MIAP[rd+ci] 
+	00072: MIRP[nrp0,md,rd,1] 
+	00073: SRP0       
+	00074: MDRP[nrp0,nmd,rd,0] 
+	00075: DELTAP1    
+	00076: SHP[rp2,zp1] 
+	00077: SRP0       
+	00078: MDRP[nrp0,nmd,rd,0] 
+	00079: DELTAP1    
+	00080: SHP[rp2,zp1] 
+	00081: IUP[y]     
+	00082: IUP[x]     
+	00083: ELSE       
+	00084: NPUSHB      (71):     9    12     1    31    28    67    19    67    23    83 
+	                            19    83    23    96    19    96    23   155     2   155 
+	                             3   154    13   164    16   164    26    12     8    13 
+	                            25    10   106     2   105     3   106     5   117    12 
+	                           112    13   128    13   166    12   181     9   182    10 
+	                           181    12    12    22    12   134    12   227     2     3 
+	                            14    34    95    15   111    15   127    15     3    15 
+	                             1 
+	00157: PUSHW[1]            682 
+	00160: NPUSHB     (121):    48     0    64     0    80     0    96     0   112     0 
+	                           144     0   160     0   224     0   240     0     9     0 
+	                            15    15    11     0     0     4    18    28    11     7 
+	                            24    28     4    11    28    15     1    15    36    14 
+	                             8    13    13     6    85    14    34    27     0     1 
+	                             0    36    11    43    31     1     1     0     1     1 
+	                             1    64    11    11     6    85     1    64    16    16 
+	                             6    85     1    72    12    12     6    85     1    26 
+	                            13    13     6    85     1    73    28    21    36   207 
+	                             7     1    31     7    63     7     2     7    14    11 
+	                            11     6    85     7    10    16    16     6    85     7 
+	                            18    12    12     6    85     7    49    27    52   196 
+	                            24 
+	00283: CALL       
+	00284: SRP0       
+	00285: MIRP[srp0,nmd,rd,2] 
+	00286: CALL       
+	00287: CALL       
+	00288: CALL       
+	00289: DELTAP1    
+	00290: DELTAP2    
+	00291: MIRP[nrp0,md,rd,1] 
+	00292: SRP0       
+	00293: MIRP[srp0,nmd,rd,2] 
+	00294: CALL       
+	00295: CALL       
+	00296: CALL       
+	00297: CALL       
+	00298: DELTAP1    
+	00299: DELTAP3    
+	00300: MPPEM      
+	00301: GTEQ       
+	00302: SWAP       
+	00303: MPPEM      
+	00304: LTEQ       
+	00305: AND        
+	00306: IF         
+	00307: PUSHW[2]              1   -64 
+	00312: SHPIX      
+	00313: EIF        
+	00314: MIRP[nrp0,md,rd,1] 
+	00315: DELTAP3    
+	00316: MIRP[srp0,nmd,rd,0] 
+	00317: CALL       
+	00318: MIRP[nrp0,md,rd,1] 
+	00319: DELTAP3    
+	00320: SVTCA[y-axis] 
+	00321: MIAP[rd+ci] 
+	00322: MIRP[nrp0,md,rd,1] 
+	00323: MIAP[rd+ci] 
+	00324: MIRP[nrp0,md,rd,1] 
+	00325: SRP2       
+	00326: IP         
+	00327: MDAP[rd]   
+	00328: SRP1       
+	00329: IP         
+	00330: MDAP[rd]   
+	00331: SRP0       
+	00332: DELTAP1    
+	00333: MIRP[nrp0,nmd,rd,0] 
+	00334: SRP0       
+	00335: DELTAP1    
+	00336: MIRP[nrp0,nmd,rd,0] 
+	00337: IUP[y]     
+	00338: IUP[x]     
+	00339: SVTCA[y-axis] 
+	00340: DELTAP1    
+	00341: DELTAP2    
+	00342: SVTCA[x-axis] 
+	00343: DELTAP1    
+	00344: DELTAP2    
+	00345: EIF        
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                                      Off
+	  7:        XDual                         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:        XDual                 X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:                      Y-Short X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:                      Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   828,   389)  ->  Abs (   828,   389)
+	  1: Rel (   177,   -23)  ->  Abs (  1005,   366)
+	  2: Rel (   -29,  -183)  ->  Abs (   976,   183)
+	  3: Rel (  -239,  -207)  ->  Abs (   737,   -24)
+	  4: Rel (  -174,     0)  ->  Abs (   563,   -24)
+	  5: Rel (  -218,     0)  ->  Abs (   345,   -24)
+	  6: Rel (  -265,   285)  ->  Abs (    80,   261)
+	  7: Rel (     0,   266)  ->  Abs (    80,   527)
+	  8: Rel (     0,   172)  ->  Abs (    80,   699)
+	  9: Rel (   114,   258)  ->  Abs (   194,   957)
+	 10: Rel (   233,   129)  ->  Abs (   427,  1086)
+	 11: Rel (   137,     0)  ->  Abs (   564,  1086)
+	 12: Rel (   173,     0)  ->  Abs (   737,  1086)
+	 13: Rel (   220,  -175)  ->  Abs (   957,   911)
+	 14: Rel (    31,  -161)  ->  Abs (   988,   750)
+	 15: Rel (  -175,   -27)  ->  Abs (   813,   723)
+	 16: Rel (   -25,   107)  ->  Abs (   788,   830)
+	 17: Rel (  -127,   108)  ->  Abs (   661,   938)
+	 18: Rel (   -90,     0)  ->  Abs (   571,   938)
+	 19: Rel (  -136,     0)  ->  Abs (   435,   938)
+	 20: Rel (  -170,  -195)  ->  Abs (   265,   743)
+	 21: Rel (     0,  -211)  ->  Abs (   265,   532)
+	 22: Rel (     0,  -214)  ->  Abs (   265,   318)
+	 23: Rel (   164,  -194)  ->  Abs (   429,   124)
+	 24: Rel (   132,     0)  ->  Abs (   561,   124)
+	 25: Rel (   106,     0)  ->  Abs (   667,   124)
+	 26: Rel (   142,   130)  ->  Abs (   809,   254)
+
+	Glyph  71: off = 0x000054DE, len = 436
+	  numberOfContours:	2
+	  xMin:			70
+	  yMin:			-24
+	  xMax:			991
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  17
+	  1:  29
+
+	  Length of Instructions:	341
+	00000: NPUSHB     (164):    10     2     4    13    37    13    52    13    68    13 
+	                             5    53    20    53    28    87     2    84    10    82 
+	                            20    83    28   103     2   100     5   101     9    99 
+	                            20    96    28   192    31   212     5   213    19   221 
+	                            25   229    19   229    20   239    23   235    25   229 
+	                            29   224    31   255    31    22    31    31    43    26 
+	                            60    22    60    26    75    26   112    31   144    31 
+	                             7    46     2    36    13    46    22    58     2    53 
+	                            13    75     2    69    13    70    20    73    28    87 
+	                            10    86    13   103    13   229     6   231    22   250 
+	                             1   244    14    16     1    21     3    14    11    16 
+	                            15     0    27    28    11     7    17     0    10    21 
+	                            28     3    11    24    51     1     0    37    17    15 
+	                            37    16    16   208    17     1    16    17    64    17 
+	                            96    17   128    17     4    31    64    11    11     2 
+	                            85    31    64    13    13     2    85    17    18    16 
+	                            16     2    85    17 
+	00166: PUSHW[1]            -12 
+	00169: NPUSHB      (17):    15    15     2    85    17     6    14    14     2    85 
+	                            17    24    13    13     2    85    17 
+	00188: PUSHW[1]            -14 
+	00191: NPUSHB      (11):    11    11     6    85    17    14    16    16     6    85 
+	                            17 
+	00204: PUSHW[1]            -18 
+	00207: PUSHB[5]             12    12     6    85    17 
+	00213: PUSHW[1]             -8 
+	00216: NPUSHB      (66):    13    13     6    85    17   116    18    36   191     7 
+	                           207     7   223     7   255     7     4    31     7    63 
+	                             7    79     7     3     7    30    11    11     2    85 
+	                             7    24    12    12     2    85     7    30    13    13 
+	                             2    85     7    12    11    11     6    85     7    12 
+	                            13    13     6    85     7    26    12    12     6    85 
+	                             7    25    30    52    80    24 
+	00284: CALL       
+	00285: FLIPOFF    
+	00286: SRP0       
+	00287: MIRP[srp0,nmd,rd,0] 
+	00288: CALL       
+	00289: CALL       
+	00290: CALL       
+	00291: CALL       
+	00292: CALL       
+	00293: CALL       
+	00294: DELTAP1    
+	00295: DELTAP2    
+	00296: FLIPON     
+	00297: MIRP[nrp0,md,rd,1] 
+	00298: MIRP[srp0,md,rd,1] 
+	00299: CALL       
+	00300: CALL       
+	00301: CALL       
+	00302: CALL       
+	00303: CALL       
+	00304: CALL       
+	00305: CALL       
+	00306: CALL       
+	00307: CALL       
+	00308: CALL       
+	00309: DELTAP1    
+	00310: DELTAP2    
+	00311: ALIGNRP    
+	00312: SRP0       
+	00313: MIRP[nrp0,md,rd,1] 
+	00314: SRP0       
+	00315: MIRP[srp0,md,rd,1] 
+	00316: ALIGNRP    
+	00317: MIRP[nrp0,nmd,rd,0] 
+	00318: SVTCA[y-axis] 
+	00319: MIAP[rd+ci] 
+	00320: MIRP[nrp0,md,rd,1] 
+	00321: MIAP[rd+ci] 
+	00322: ALIGNRP    
+	00323: MIAP[rd+ci] 
+	00324: MIRP[nrp0,md,rd,1] 
+	00325: MIAP[rd+ci] 
+	00326: ALIGNRP    
+	00327: SRP1       
+	00328: IP         
+	00329: SRP1       
+	00330: SRP2       
+	00331: IP         
+	00332: IUP[y]     
+	00333: IUP[x]     
+	00334: SVTCA[y-axis] 
+	00335: DELTAP1    
+	00336: SVTCA[x-axis] 
+	00337: DELTAP2    
+	00338: DELTAP1    
+	00339: SVTCA[y-axis] 
+	00340: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual XDual         Y-Short         On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:        XDual                 X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual                         On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:                                      On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   824,     0)  ->  Abs (   824,     0)
+	  1: Rel (     0,   134)  ->  Abs (   824,   134)
+	  2: Rel (  -101,  -158)  ->  Abs (   723,   -24)
+	  3: Rel (  -196,     0)  ->  Abs (   527,   -24)
+	  4: Rel (  -127,     0)  ->  Abs (   400,   -24)
+	  5: Rel (  -213,   140)  ->  Abs (   187,   116)
+	  6: Rel (  -117,   251)  ->  Abs (    70,   367)
+	  7: Rel (     0,   163)  ->  Abs (    70,   530)
+	  8: Rel (     0,   159)  ->  Abs (    70,   689)
+	  9: Rel (   106,   259)  ->  Abs (   176,   948)
+	 10: Rel (   212,   138)  ->  Abs (   388,  1086)
+	 11: Rel (   131,     0)  ->  Abs (   519,  1086)
+	 12: Rel (    96,     0)  ->  Abs (   615,  1086)
+	 13: Rel (   150,   -81)  ->  Abs (   765,  1005)
+	 14: Rel (    47,   -65)  ->  Abs (   812,   940)
+	 15: Rel (     0,   526)  ->  Abs (   812,  1466)
+	 16: Rel (   179,     0)  ->  Abs (   991,  1466)
+	 17: Rel (     0, -1466)  ->  Abs (   991,     0)
+	 18: Rel (  -736,   530)  ->  Abs (   255,   530)
+	 19: Rel (     0,  -204)  ->  Abs (   255,   326)
+	 20: Rel (   172,  -202)  ->  Abs (   427,   124)
+	 21: Rel (   117,     0)  ->  Abs (   544,   124)
+	 22: Rel (   118,     0)  ->  Abs (   662,   124)
+	 23: Rel (   165,   193)  ->  Abs (   827,   317)
+	 24: Rel (     0,   198)  ->  Abs (   827,   515)
+	 25: Rel (     0,   218)  ->  Abs (   827,   733)
+	 26: Rel (  -168,   204)  ->  Abs (   659,   937)
+	 27: Rel (  -123,     0)  ->  Abs (   536,   937)
+	 28: Rel (  -120,     0)  ->  Abs (   416,   937)
+	 29: Rel (  -161,  -196)  ->  Abs (   255,   741)
+
+	Glyph  72: off = 0x00005692, len = 446
+	  numberOfContours:	2
+	  xMin:			75
+	  yMin:			-24
+	  xMax:			1054
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  21
+	  1:  29
+
+	  Length of Instructions:	339
+	00000: NPUSHB      (23):    31     0    28    21     2    85     3    93     5    93 
+	                             9    85    11   101     3   107     5   111     9   101 
+	                            11     8    21 
+	00025: PUSHW[1]            -28 
+	00028: PUSHB[5]             13    13     6    85    17 
+	00034: PUSHW[1]            -28 
+	00037: NPUSHB      (82):    13    13     6    85    29    28    13    13     6    85 
+	                            39    18   217     5   250    20   246    26     4    49 
+	                            18    58    25    49    28    65    18    77    26    65 
+	                            28    81    18    92    25    82    28    97    18   109 
+	                            26    97    28   120     6   120    21   246     2   246 
+	                            24    16     0    22     1    15    13    23    23    80 
+	                            22    96    22   112    22     3    22    28    15   144 
+	                            16   160    16     2    16    16     4    27    28    10 
+	                             7     0 
+	00121: PUSHW[3]            682     1   -64 
+	00128: PUSHB[5]             16    16     2    85     1 
+	00134: PUSHW[1]            -64 
+	00137: NPUSHB      (16):    16    16     6    85    16     1     1     1   149    19 
+	                            28     4    11    23    64    13 
+	00155: PUSHW[1]            -36 
+	00158: PUSHB[5]             13    13     2    85    13 
+	00164: PUSHW[1]            -18 
+	00167: PUSHB[5]             13    13     6    85    13 
+	00173: PUSHW[1]            -22 
+	00176: PUSHB[5]             12    12     6    85    13 
+	00182: PUSHW[1]            -64 
+	00185: NPUSHB       (9):    39    42    52   176    13     1    13    26    31 
+	00196: PUSHW[1]            -64 
+	00199: PUSHB[4]             37    38    52    31 
+	00204: PUSHW[1]            -64 
+	00207: NPUSHB      (65):    30    35    52    48    31     1    31    22    51    16 
+	                            36     7    64    36    42    52    31     7    63     7 
+	                            79     7     3     7    32    11    11     2    85     7 
+	                            24    12    12     2    85     7    28    13    13     2 
+	                            85     7    14    11    11     6    85     7    28    12 
+	                            12     6    85     7    22    13    13     6    85     7 
+	                            25    30    52    55    24 
+	00274: CALL       
+	00275: FLIPOFF    
+	00276: SRP0       
+	00277: MIRP[srp0,nmd,rd,0] 
+	00278: CALL       
+	00279: CALL       
+	00280: CALL       
+	00281: CALL       
+	00282: CALL       
+	00283: CALL       
+	00284: DELTAP1    
+	00285: CALL       
+	00286: FLIPON     
+	00287: MIRP[srp0,md,rd,1] 
+	00288: MIRP[nrp0,nmd,rd,0] 
+	00289: FLIPOFF    
+	00290: SRP0       
+	00291: DELTAP2    
+	00292: CALL       
+	00293: CALL       
+	00294: MIRP[srp0,nmd,rd,2] 
+	00295: DELTAP2    
+	00296: CALL       
+	00297: CALL       
+	00298: CALL       
+	00299: CALL       
+	00300: FLIPON     
+	00301: MIRP[nrp0,md,rd,1] 
+	00302: SVTCA[y-axis] 
+	00303: MIAP[rd+ci] 
+	00304: MIRP[nrp0,md,rd,1] 
+	00305: MIRP[srp0,md,rd,1] 
+	00306: DELTAP1    
+	00307: CALL       
+	00308: CALL       
+	00309: MIRP[nrp0,nmd,rd,0] 
+	00310: MIAP[rd+ci] 
+	00311: MIRP[nrp0,md,rd,1] 
+	00312: SRP2       
+	00313: IP         
+	00314: MDAP[rd]   
+	00315: DELTAP1    
+	00316: ALIGNRP    
+	00317: MIRP[srp0,md,rd,1] 
+	00318: DELTAP2    
+	00319: ALIGNRP    
+	00320: SVTCA[x-axis] 
+	00321: SRP1       
+	00322: SRP2       
+	00323: IP         
+	00324: IP         
+	00325: SRP2       
+	00326: IP         
+	00327: IUP[y]     
+	00328: IUP[x]     
+	00329: SVTCA[x-axis] 
+	00330: DELTAP1    
+	00331: SVTCA[y-axis] 
+	00332: DELTAP1    
+	00333: CALL       
+	00334: CALL       
+	00335: CALL       
+	00336: SVTCA[x-axis] 
+	00337: DELTAP2    
+	00338: DELTAP3    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                                      Off
+	  7:        XDual                         On
+	  8:        XDual                         Off
+	  9:                                      Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:                                      Off
+	 13:        XDual                         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short On
+	 16:  YDual                               On
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:                                      On
+	 23:  YDual                               On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   862,   342)  ->  Abs (   862,   342)
+	  1: Rel (   186,   -23)  ->  Abs (  1048,   319)
+	  2: Rel (   -44,  -163)  ->  Abs (  1004,   156)
+	  3: Rel (  -238,  -180)  ->  Abs (   766,   -24)
+	  4: Rel (  -185,     0)  ->  Abs (   581,   -24)
+	  5: Rel (  -233,     0)  ->  Abs (   348,   -24)
+	  6: Rel (  -273,   287)  ->  Abs (    75,   263)
+	  7: Rel (     0,   259)  ->  Abs (    75,   522)
+	  8: Rel (     0,   268)  ->  Abs (    75,   790)
+	  9: Rel (   276,   296)  ->  Abs (   351,  1086)
+	 10: Rel (   220,     0)  ->  Abs (   571,  1086)
+	 11: Rel (   213,     0)  ->  Abs (   784,  1086)
+	 12: Rel (   270,  -290)  ->  Abs (  1054,   796)
+	 13: Rel (     0,  -263)  ->  Abs (  1054,   533)
+	 14: Rel (     0,   -16)  ->  Abs (  1054,   517)
+	 15: Rel (    -1,   -32)  ->  Abs (  1053,   485)
+	 16: Rel (  -792,     0)  ->  Abs (   261,   485)
+	 17: Rel (    10,  -175)  ->  Abs (   271,   310)
+	 18: Rel (   178,  -186)  ->  Abs (   449,   124)
+	 19: Rel (   133,     0)  ->  Abs (   582,   124)
+	 20: Rel (    99,     0)  ->  Abs (   681,   124)
+	 21: Rel (   140,   104)  ->  Abs (   821,   228)
+	 22: Rel (  -550,   405)  ->  Abs (   271,   633)
+	 23: Rel (   593,     0)  ->  Abs (   864,   633)
+	 24: Rel (   -12,   134)  ->  Abs (   852,   767)
+	 25: Rel (   -56,    67)  ->  Abs (   796,   834)
+	 26: Rel (   -86,   104)  ->  Abs (   710,   938)
+	 27: Rel (  -137,     0)  ->  Abs (   573,   938)
+	 28: Rel (  -124,     0)  ->  Abs (   449,   938)
+	 29: Rel (  -169,  -166)  ->  Abs (   280,   772)
+
+	Glyph  73: off = 0x00005850, len = 340
+	  numberOfContours:	1
+	  xMin:			19
+	  yMin:			0
+	  xMax:			640
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  23
+
+	  Length of Instructions:	269
+	00000: NPUSHB      (30):    20     9     1    15    25    47    25    48    25    64 
+	                            25   112    25   155    12   156    13   169    13     8 
+	                            26    13    40    13   176    25   192    25     4    25 
+	00032: PUSHW[1]            -64 
+	00035: NPUSHB      (40):    26    31    52    29     8    13     3    12    15    28 
+	                            10     1    21     2    43    20    19     4     3     6 
+	                             0    10   159    20     1    20   255    19    64     4 
+	                            23    37     4     0     3     2   146     1     1     0 
+	00077: PUSHW[1]            -64 
+	00080: PUSHB[4]             49    56    52     0 
+	00085: PUSHW[1]            -64 
+	00088: NPUSHB      (43):    28    31    52   144     0     1    25    64    15    15 
+	                             2    85    25    64    13    14     2    85     0    20 
+	                            16    16     2    85     0    40    15    15     2    85 
+	                             0    34    14    14     2    85     0    44    13    13 
+	                             2    85     0 
+	00133: PUSHW[1]            -14 
+	00136: NPUSHB      (11):    12    12     2    85     0    20    11    11     6    85 
+	                             0 
+	00149: PUSHW[1]            -22 
+	00152: PUSHB[5]             16    16     6    85     0 
+	00158: PUSHW[1]            -26 
+	00161: PUSHB[5]             15    15     6    85     0 
+	00167: PUSHW[1]             -6 
+	00170: PUSHB[8]             12    12     6    85     0   163    24    25 
+	00179: PUSHW[5]            442    33   246   266    24 
+	00190: CALL       
+	00191: CALL       
+	00192: MIRP[srp0,nmd,rd,2] 
+	00193: CALL       
+	00194: CALL       
+	00195: CALL       
+	00196: CALL       
+	00197: CALL       
+	00198: CALL       
+	00199: CALL       
+	00200: CALL       
+	00201: CALL       
+	00202: CALL       
+	00203: CALL       
+	00204: DELTAP1    
+	00205: CALL       
+	00206: CALL       
+	00207: ALIGNRP    
+	00208: SRP0       
+	00209: MIRP[srp0,nmd,rd,0] 
+	00210: ALIGNRP    
+	00211: SRP0       
+	00212: ALIGNRP    
+	00213: MIRP[nrp0,md,rd,1] 
+	00214: SRP0       
+	00215: MIRP[nrp0,md,rd,1] 
+	00216: MIRP[nrp0,md,rd,1] 
+	00217: DELTAP1    
+	00218: SVTCA[y-axis] 
+	00219: MIAP[rd+ci] 
+	00220: MIAP[rd+ci] 
+	00221: ALIGNRP    
+	00222: ALIGNRP    
+	00223: ALIGNRP    
+	00224: MIRP[srp0,md,rd,1] 
+	00225: ALIGNRP    
+	00226: MIAP[rd+ci] 
+	00227: MIRP[nrp0,md,rd,1] 
+	00228: IP         
+	00229: SRP1       
+	00230: IP         
+	00231: IUP[y]     
+	00232: IUP[x]     
+	00233: RS         
+	00234: JROF       
+	00235: NPUSHB      (20):    16    17     6     9     7     6     8     6     2     6 
+	                            16     9    18    27     0    17     6    15    27     1 
+	00257: CALL       
+	00258: SVTCA[x-axis] 
+	00259: CALL       
+	00260: LOOPCALL   
+	00261: FLIPRGON   
+	00262: FLIPRGON   
+	00263: SVTCA[x-axis] 
+	00264: CALL       
+	00265: DELTAP2    
+	00266: DELTAP1    
+	00267: SVTCA[y-axis] 
+	00268: DELTAP3    
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:                      Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         On
+	 20:  YDual XDual                 X-Short On
+	 21:        XDual         Y-Short         On
+	 22:  YDual                       X-Short On
+	 23:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   178,     0)  ->  Abs (   178,     0)
+	  1: Rel (     0,   922)  ->  Abs (   178,   922)
+	  2: Rel (  -159,     0)  ->  Abs (    19,   922)
+	  3: Rel (     0,   140)  ->  Abs (    19,  1062)
+	  4: Rel (   159,     0)  ->  Abs (   178,  1062)
+	  5: Rel (     0,   113)  ->  Abs (   178,  1175)
+	  6: Rel (     0,   107)  ->  Abs (   178,  1282)
+	  7: Rel (    19,    52)  ->  Abs (   197,  1334)
+	  8: Rel (    26,    70)  ->  Abs (   223,  1404)
+	  9: Rel (   131,    87)  ->  Abs (   354,  1491)
+	 10: Rel (   118,     0)  ->  Abs (   472,  1491)
+	 11: Rel (    76,     0)  ->  Abs (   548,  1491)
+	 12: Rel (    92,   -18)  ->  Abs (   640,  1473)
+	 13: Rel (   -27,  -157)  ->  Abs (   613,  1316)
+	 14: Rel (   -56,    10)  ->  Abs (   557,  1326)
+	 15: Rel (   -50,     0)  ->  Abs (   507,  1326)
+	 16: Rel (   -82,     0)  ->  Abs (   425,  1326)
+	 17: Rel (   -68,   -70)  ->  Abs (   357,  1256)
+	 18: Rel (     0,   -96)  ->  Abs (   357,  1160)
+	 19: Rel (     0,   -98)  ->  Abs (   357,  1062)
+	 20: Rel (   207,     0)  ->  Abs (   564,  1062)
+	 21: Rel (     0,  -140)  ->  Abs (   564,   922)
+	 22: Rel (  -207,     0)  ->  Abs (   357,   922)
+	 23: Rel (     0,  -922)  ->  Abs (   357,     0)
+
+	Glyph  74: off = 0x000059A4, len = 496
+	  numberOfContours:	2
+	  xMin:			66
+	  yMin:			-431
+	  xMax:			1002
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  30
+	  1:  42
+
+	  Length of Instructions:	367
+	00000: NPUSHB      (96):    11    11     5    20    44    11    37    20    76    11 
+	                            69    20     6     9    29    25    29    44    11    38 
+	                            20    44    35    57    11    54    20    74    11    70 
+	                            20    86     7    88    11   104    11   250    10   245 
+	                            21    14    46    35    44    39    62    35    62    39 
+	                            76    39   144    44   160    44     7    54    33    54 
+	                            41    63    44    70    11    70    33    69    41    84 
+	                            33    84    41   105     7    99    33    99    41    96 
+	                            44   128    44   218    39   232    33   238    35   239 
+	                            39    17    23    22     6    21 
+	00098: PUSHW[1]            689 
+	00101: PUSHB[5]             40    28    19     7     1 
+	00107: PUSHW[1]            682 
+	00110: NPUSHB      (16):    32     0    48     0    96     0   112     0   128     0 
+	                           192     0   208     0     7     0 
+	00128: PUSHW[1]            637 
+	00131: NPUSHB      (50):     5    28    28    15    10    69    34    28    12    10 
+	                            22    21    51    37    51    10    37    24    24   208 
+	                            23     1    16    23    64    23    96    23   128    23 
+	                             4    44    64    11    12     2    85    44    64    13 
+	                            13     2    85    23    18    16    16     2    85    23 
+	00183: PUSHW[1]            -12 
+	00186: NPUSHB      (17):    15    15     2    85    23     6    14    14     2    85 
+	                            23    22    13    13     2    85    23 
+	00205: PUSHW[1]            -22 
+	00208: NPUSHB      (11):    11    11     6    85    23    18    16    16     6    85 
+	                            23 
+	00221: PUSHW[1]            -18 
+	00224: PUSHB[5]             12    12     6    85    23 
+	00230: PUSHW[1]             -4 
+	00233: NPUSHB      (74):    13    13     6    85    23   116    15     1    37     0 
+	                            34    31    36   191    15   207    15   223    15   255 
+	                            15     4    31    15    63    15    79    15     3    15 
+	                            32    11    11     2    85    15    26    12    12     2 
+	                            85    15    34    13    13     2    85    15    28    11 
+	                            11     6    85    15    12    13    13     6    85    15 
+	                            26    12    12     6    85    15    25    43    44   116 
+	                            33    52    80    24 
+	00309: CALL       
+	00310: CALL       
+	00311: FLIPOFF    
+	00312: MIRP[srp0,nmd,rd,0] 
+	00313: CALL       
+	00314: CALL       
+	00315: CALL       
+	00316: CALL       
+	00317: CALL       
+	00318: CALL       
+	00319: DELTAP1    
+	00320: DELTAP2    
+	00321: FLIPON     
+	00322: MIRP[nrp0,md,rd,1] 
+	00323: MIRP[srp0,nmd,rd,0] 
+	00324: MIRP[nrp0,md,rd,1] 
+	00325: SRP0       
+	00326: MIRP[srp0,md,rd,1] 
+	00327: CALL       
+	00328: CALL       
+	00329: CALL       
+	00330: CALL       
+	00331: CALL       
+	00332: CALL       
+	00333: CALL       
+	00334: CALL       
+	00335: CALL       
+	00336: CALL       
+	00337: DELTAP1    
+	00338: DELTAP2    
+	00339: ALIGNRP    
+	00340: SRP0       
+	00341: MIRP[srp0,md,rd,1] 
+	00342: MIRP[nrp0,nmd,rd,0] 
+	00343: MIRP[srp0,nmd,rd,2] 
+	00344: ALIGNRP    
+	00345: SVTCA[y-axis] 
+	00346: MIAP[rd+ci] 
+	00347: MIRP[nrp0,md,rd,1] 
+	00348: MIRP[nrp0,nmd,rd,0] 
+	00349: MIAP[rd+ci] 
+	00350: MIRP[nrp0,md,rd,1] 
+	00351: MIRP[srp0,md,rd,1] 
+	00352: DELTAP1    
+	00353: MIRP[nrp0,nmd,rd,0] 
+	00354: MIAP[rd+ci] 
+	00355: MIRP[nrp0,md,rd,1] 
+	00356: MIRP[nrp0,nmd,rd,0] 
+	00357: MIAP[rd+ci] 
+	00358: ALIGNRP    
+	00359: IUP[y]     
+	00360: IUP[x]     
+	00361: SVTCA[x-axis] 
+	00362: DELTAP1    
+	00363: DELTAP2    
+	00364: SVTCA[y-axis] 
+	00365: DELTAP1    
+	00366: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual         Y-Short X-Short On
+	  1:        XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                              X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:        XDual                 X-Short Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual                 X-Short On
+	 24:        XDual                         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:        XDual                 X-Short On
+	 32:        XDual         Y-Short         Off
+	 33:        XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   102,   -88)  ->  Abs (   102,   -88)
+	  1: Rel (   175,   -26)  ->  Abs (   277,  -114)
+	  2: Rel (    11,   -81)  ->  Abs (   288,  -195)
+	  3: Rel (    50,   -37)  ->  Abs (   338,  -232)
+	  4: Rel (    67,   -50)  ->  Abs (   405,  -282)
+	  5: Rel (   116,     0)  ->  Abs (   521,  -282)
+	  6: Rel (   125,     0)  ->  Abs (   646,  -282)
+	  7: Rel (   136,   100)  ->  Abs (   782,  -182)
+	  8: Rel (    24,    90)  ->  Abs (   806,   -92)
+	  9: Rel (    14,    55)  ->  Abs (   820,   -37)
+	 10: Rel (    -1,   176)  ->  Abs (   819,   139)
+	 11: Rel (  -118,  -139)  ->  Abs (   701,     0)
+	 12: Rel (  -176,     0)  ->  Abs (   525,     0)
+	 13: Rel (  -219,     0)  ->  Abs (   306,     0)
+	 14: Rel (  -240,   316)  ->  Abs (    66,   316)
+	 15: Rel (     0,   221)  ->  Abs (    66,   537)
+	 16: Rel (     0,   152)  ->  Abs (    66,   689)
+	 17: Rel (   110,   257)  ->  Abs (   176,   946)
+	 18: Rel (   209,   140)  ->  Abs (   385,  1086)
+	 19: Rel (   141,     0)  ->  Abs (   526,  1086)
+	 20: Rel (   188,     0)  ->  Abs (   714,  1086)
+	 21: Rel (   122,  -152)  ->  Abs (   836,   934)
+	 22: Rel (     0,   128)  ->  Abs (   836,  1062)
+	 23: Rel (   166,     0)  ->  Abs (  1002,  1062)
+	 24: Rel (     0,  -918)  ->  Abs (  1002,   144)
+	 25: Rel (     0,  -248)  ->  Abs (  1002,  -104)
+	 26: Rel (  -101,  -207)  ->  Abs (   901,  -311)
+	 27: Rel (  -219,  -120)  ->  Abs (   682,  -431)
+	 28: Rel (  -160,     0)  ->  Abs (   522,  -431)
+	 29: Rel (  -190,     0)  ->  Abs (   332,  -431)
+	 30: Rel (  -234,   171)  ->  Abs (    98,  -260)
+	 31: Rel (   153,   810)  ->  Abs (   251,   550)
+	 32: Rel (     0,  -209)  ->  Abs (   251,   341)
+	 33: Rel (   166,  -192)  ->  Abs (   417,   149)
+	 34: Rel (   125,     0)  ->  Abs (   542,   149)
+	 35: Rel (   124,     0)  ->  Abs (   666,   149)
+	 36: Rel (   168,   191)  ->  Abs (   834,   340)
+	 37: Rel (     0,   204)  ->  Abs (   834,   544)
+	 38: Rel (     0,   195)  ->  Abs (   834,   739)
+	 39: Rel (  -173,   198)  ->  Abs (   661,   937)
+	 40: Rel (  -122,     0)  ->  Abs (   539,   937)
+	 41: Rel (  -120,     0)  ->  Abs (   419,   937)
+	 42: Rel (  -168,  -195)  ->  Abs (   251,   742)
+
+	Glyph  75: off = 0x00005B94, len = 420
+	  numberOfContours:	1
+	  xMin:			135
+	  yMin:			0
+	  xMax:			1000
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  20
+
+	  Length of Instructions:	353
+	00000: PUSHW[2]             22   -64 
+	00005: PUSHB[4]             21    23    52     3 
+	00010: PUSHW[1]            -32 
+	00013: NPUSHB      (14):    13    13     6    85    37     4    53     3    69     3 
+	                           186    13     4     3 
+	00029: PUSHW[1]            -32 
+	00032: NPUSHB      (58):    23    25    52    23     8    17    12    17    20     3 
+	                             5     1     0    15    28     5     7    20    11    10 
+	                            12    37     9    64    51    54    52   255     9     1 
+	                           192     9     1    22    64    11    11     2    85    22 
+	                            64    16    16     2    85     9    40    16    16     2 
+	                            85     9    20    14    14     2    85     9 
+	00092: PUSHW[1]            -20 
+	00095: NPUSHB      (17):    13    13     2    85     9     4    12    12     2    85 
+	                             9    26    11    11     2    85     9 
+	00114: PUSHW[1]            -10 
+	00117: NPUSHB      (11):    11    11     6    85     9    20    16    16     6    85 
+	                             9 
+	00130: PUSHW[1]             -8 
+	00133: NPUSHB      (11):    13    13     6    85     9    10    15    15     6    85 
+	                             9 
+	00146: PUSHW[1]            -10 
+	00149: PUSHB[7]             12    12     6    85     9    78    22 
+	00157: PUSHW[1]            -64 
+	00160: NPUSHB      (23):    52    54    52   176    22   240    22     2   112    22 
+	                           160    22   176    22   255    22     4    22     2    20 
+	                            37     1     0 
+	00185: PUSHW[1]            -64 
+	00188: NPUSHB      (16):    51    54    52   240     0     1     0     0    32     0 
+	                           208     0   224     0     4     0 
+	00206: PUSHW[1]             -6 
+	00209: PUSHB[5]             16    16     2    85     0 
+	00215: PUSHW[1]             -6 
+	00218: NPUSHB      (23):    14    14     2    85     0     4    12    12     2    85 
+	                             0     8    11    11     2    85     0     4    11    11 
+	                             6    85     0 
+	00243: PUSHW[1]             -6 
+	00246: NPUSHB      (22):    15    15     6    85     0     2    12    12     6    85 
+	                             0     2    13    13     6    85     0    78    21    71 
+	                            80    24 
+	00270: CALL       
+	00271: SRP0       
+	00272: MIRP[srp0,nmd,rd,2] 
+	00273: CALL       
+	00274: CALL       
+	00275: CALL       
+	00276: CALL       
+	00277: CALL       
+	00278: CALL       
+	00279: CALL       
+	00280: CALL       
+	00281: DELTAP1    
+	00282: DELTAP2    
+	00283: CALL       
+	00284: ALIGNRP    
+	00285: MIRP[srp0,md,rd,1] 
+	00286: ALIGNRP    
+	00287: SRP0       
+	00288: DELTAP1    
+	00289: DELTAP2    
+	00290: CALL       
+	00291: MIRP[srp0,nmd,rd,0] 
+	00292: CALL       
+	00293: CALL       
+	00294: CALL       
+	00295: CALL       
+	00296: CALL       
+	00297: CALL       
+	00298: CALL       
+	00299: CALL       
+	00300: CALL       
+	00301: CALL       
+	00302: CALL       
+	00303: CALL       
+	00304: DELTAP1    
+	00305: DELTAP2    
+	00306: CALL       
+	00307: MIRP[nrp0,md,rd,1] 
+	00308: SVTCA[y-axis] 
+	00309: MIAP[rd+ci] 
+	00310: ALIGNRP    
+	00311: MIAP[rd+ci] 
+	00312: MIRP[nrp0,md,rd,1] 
+	00313: MIAP[rd+ci] 
+	00314: SRP1       
+	00315: IP         
+	00316: SRP1       
+	00317: IP         
+	00318: SVTCA[x-axis] 
+	00319: SRP2       
+	00320: IP         
+	00321: IUP[y]     
+	00322: IUP[x]     
+	00323: RS         
+	00324: JROF       
+	00325: NPUSHB      (14):     6    14     7    37    14     6    12    27     1    13 
+	                             8    15    27     1 
+	00341: SVTCA[y-axis] 
+	00342: CALL       
+	00343: SVTCA[x-axis] 
+	00344: CALL       
+	00345: CALL       
+	00346: FLIPRGON   
+	00347: SVTCA[y-axis] 
+	00348: CALL       
+	00349: DELTAP1    
+	00350: CALL       
+	00351: SVTCA[x-axis] 
+	00352: CALL       
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+	 12:        XDual                         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   135,     0)  ->  Abs (   135,     0)
+	  1: Rel (     0,  1466)  ->  Abs (   135,  1466)
+	  2: Rel (   180,     0)  ->  Abs (   315,  1466)
+	  3: Rel (     0,  -526)  ->  Abs (   315,   940)
+	  4: Rel (   126,   146)  ->  Abs (   441,  1086)
+	  5: Rel (   192,     0)  ->  Abs (   633,  1086)
+	  6: Rel (   118,     0)  ->  Abs (   751,  1086)
+	  7: Rel (   174,   -93)  ->  Abs (   925,   993)
+	  8: Rel (    75,  -164)  ->  Abs (  1000,   829)
+	  9: Rel (     0,  -156)  ->  Abs (  1000,   673)
+	 10: Rel (     0,  -673)  ->  Abs (  1000,     0)
+	 11: Rel (  -180,     0)  ->  Abs (   820,     0)
+	 12: Rel (     0,   673)  ->  Abs (   820,   673)
+	 13: Rel (     0,   135)  ->  Abs (   820,   808)
+	 14: Rel (  -117,   123)  ->  Abs (   703,   931)
+	 15: Rel (  -107,     0)  ->  Abs (   596,   931)
+	 16: Rel (   -80,     0)  ->  Abs (   516,   931)
+	 17: Rel (  -141,   -83)  ->  Abs (   375,   848)
+	 18: Rel (   -60,  -142)  ->  Abs (   315,   706)
+	 19: Rel (     0,  -125)  ->  Abs (   315,   581)
+	 20: Rel (     0,  -581)  ->  Abs (   315,     0)
+
+	Glyph  76: off = 0x00005D38, len = 244
+	  numberOfContours:	2
+	  xMin:			136
+	  yMin:			0
+	  xMax:			316
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	205
+	00000: NPUSHB      (94):     9    54    11    11     2    85    79     9   144     9 
+	                           160     9   176     9   192     9   223     9   240     9 
+	                             7     0     9    31     9   112     9   128     9   159 
+	                             9   176     9   192     9   223     9   224     9   255 
+	                             9    10    31     9     1     0     1     7     4     2 
+	                             3     9     6     3   126     1     0     6     5     6 
+	                             4    10     6     7    37     5     0     4   159     4 
+	                           160     4   176     4   192     4   224     4     6   192 
+	                             4   240     4     2     0     4    32     4   208     4 
+	                           224     4     4     4 
+	00096: PUSHW[1]             -8 
+	00099: PUSHB[5]             16    16     2    85     4 
+	00105: PUSHW[1]             -6 
+	00108: NPUSHB      (23):    14    14     2    85     4     4    12    12     2    85 
+	                             4    10    11    11     2    85     4    20    11    11 
+	                             6    85     4 
+	00133: PUSHW[1]            -22 
+	00136: PUSHB[5]             16    16     6    85     4 
+	00142: PUSHW[1]             -2 
+	00145: PUSHB[5]             13    13     6    85     4 
+	00151: PUSHW[1]             -4 
+	00154: NPUSHB      (10):    12    12     6    85     4    78     8    71    80    24 
+	00166: CALL       
+	00167: SRP0       
+	00168: MIRP[srp0,nmd,rd,2] 
+	00169: CALL       
+	00170: CALL       
+	00171: CALL       
+	00172: CALL       
+	00173: CALL       
+	00174: CALL       
+	00175: CALL       
+	00176: CALL       
+	00177: DELTAP1    
+	00178: DELTAP2    
+	00179: DELTAP3    
+	00180: ALIGNRP    
+	00181: MIRP[srp0,md,rd,1] 
+	00182: ALIGNRP    
+	00183: SVTCA[y-axis] 
+	00184: MIAP[rd+ci] 
+	00185: MIAP[rd+ci] 
+	00186: ALIGNRP    
+	00187: MIAP[rd+ci] 
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: SVTCA[x-axis] 
+	00190: SRP1       
+	00191: SRP2       
+	00192: IP         
+	00193: IP         
+	00194: SRP1       
+	00195: SRP2       
+	00196: IP         
+	00197: IP         
+	00198: IUP[y]     
+	00199: IUP[x]     
+	00200: SVTCA[x-axis] 
+	00201: DELTAP1    
+	00202: DELTAP3    
+	00203: DELTAP2    
+	00204: CALL       
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:                              X-Short On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   136,  1259)  ->  Abs (   136,  1259)
+	  1: Rel (     0,   207)  ->  Abs (   136,  1466)
+	  2: Rel (   180,     0)  ->  Abs (   316,  1466)
+	  3: Rel (     0,  -207)  ->  Abs (   316,  1259)
+	  4: Rel (  -180, -1259)  ->  Abs (   136,     0)
+	  5: Rel (     0,  1062)  ->  Abs (   136,  1062)
+	  6: Rel (   180,     0)  ->  Abs (   316,  1062)
+	  7: Rel (     0, -1062)  ->  Abs (   316,     0)
+
+	Glyph  77: off = 0x00005E2C, len = 280
+	  numberOfContours:	2
+	  xMin:			-94
+	  yMin:			-431
+	  xMax:			314
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  18
+
+	  Length of Instructions:	213
+	00000: NPUSHB      (69):     4     5    37     5    59     4    51     5   134     5 
+	                             5    23     8     5     5     7     4     4     2     4 
+	                             5    19     0     1    13    11     2     3    20    12 
+	                             4    17     5    11     7     3   126     1     0    11 
+	                             6     7    28    17    15   144    20     1    20    23 
+	                            23    26    12    12    13    37    10    10   144    11 
+	                             1    31    11    63    11    79    11     3    11 
+	00071: PUSHW[1]             -6 
+	00074: NPUSHB      (55):    14    14     2    85    11    16    13    13     2    85 
+	                            11    16    12    12     2    85    11    12    11    11 
+	                             2    85    11    30    11    11     6    85    11    12 
+	                            16    16     6    85    11     8    12    12     6    85 
+	                            11    12    13    13     6    85    11    25    19    20 
+	                           173    33    71    80    24 
+	00131: CALL       
+	00132: CALL       
+	00133: FLIPOFF    
+	00134: MIRP[srp0,nmd,rd,0] 
+	00135: CALL       
+	00136: CALL       
+	00137: CALL       
+	00138: CALL       
+	00139: CALL       
+	00140: CALL       
+	00141: CALL       
+	00142: CALL       
+	00143: DELTAP1    
+	00144: DELTAP2    
+	00145: ALIGNRP    
+	00146: FLIPON     
+	00147: SRP0       
+	00148: MIRP[srp0,md,rd,1] 
+	00149: ALIGNRP    
+	00150: FLIPOFF    
+	00151: SRP0       
+	00152: RCVT       
+	00153: NEG        
+	00154: WCVTP      
+	00155: MIRP[nrp0,nmd,rd,2] 
+	00156: DELTAP2    
+	00157: SVTCA[y-axis] 
+	00158: MIAP[rd+ci] 
+	00159: FLIPON     
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: MIAP[rd+ci] 
+	00162: MIAP[rd+ci] 
+	00163: MIRP[nrp0,md,rd,1] 
+	00164: SRP1       
+	00165: SRP2       
+	00166: IP         
+	00167: SRP2       
+	00168: IP         
+	00169: SVTCA[x-axis] 
+	00170: SRP1       
+	00171: SRP2       
+	00172: IP         
+	00173: IP         
+	00174: SRP1       
+	00175: SRP2       
+	00176: IP         
+	00177: IP         
+	00178: SRP1       
+	00179: SHP[rp1,zp0] 
+	00180: SHP[rp1,zp0] 
+	00181: SDPVTL[1]  
+	00182: SRP0       
+	00183: SFVTL[=p1,p2] 
+	00184: ALIGNRP    
+	00185: IUP[y]     
+	00186: IUP[x]     
+	00187: RS         
+	00188: JROF       
+	00189: NPUSHB      (14):     8    16    15    38     8    16    10    27     1     9 
+	                            14     7    27     0 
+	00205: SVTCA[y-axis] 
+	00206: CALL       
+	00207: SVTCA[x-axis] 
+	00208: CALL       
+	00209: CALL       
+	00210: FLIPRGON   
+	00211: SVTCA[x-axis] 
+	00212: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:                                      On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:        XDual                         On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   134,  1257)  ->  Abs (   134,  1257)
+	  1: Rel (     0,   209)  ->  Abs (   134,  1466)
+	  2: Rel (   180,     0)  ->  Abs (   314,  1466)
+	  3: Rel (     0,  -209)  ->  Abs (   314,  1257)
+	  4: Rel (  -408, -1669)  ->  Abs (   -94,  -412)
+	  5: Rel (    34,   153)  ->  Abs (   -60,  -259)
+	  6: Rel (    54,   -14)  ->  Abs (    -6,  -273)
+	  7: Rel (    31,     0)  ->  Abs (    25,  -273)
+	  8: Rel (    55,     0)  ->  Abs (    80,  -273)
+	  9: Rel (    54,    73)  ->  Abs (   134,  -200)
+	 10: Rel (     0,   146)  ->  Abs (   134,   -54)
+	 11: Rel (     0,  1116)  ->  Abs (   134,  1062)
+	 12: Rel (   180,     0)  ->  Abs (   314,  1062)
+	 13: Rel (     0, -1120)  ->  Abs (   314,   -58)
+	 14: Rel (     0,  -196)  ->  Abs (   314,  -254)
+	 15: Rel (   -51,   -77)  ->  Abs (   263,  -331)
+	 16: Rel (   -65,  -100)  ->  Abs (   198,  -431)
+	 17: Rel (  -151,     0)  ->  Abs (    47,  -431)
+	 18: Rel (   -73,     0)  ->  Abs (   -26,  -431)
+
+	Glyph  78: off = 0x00005F44, len = 664
+	  numberOfContours:	1
+	  xMin:			136
+	  yMin:			0
+	  xMax:			1016
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	609
+	00000: NPUSHB      (27):     6    12    13    13     6    85     7     6    86     6 
+	                            90     9     3    15    13   243     5   246     6     3 
+	                             9    12    16    16     2    85     6 
+	00029: PUSHW[1]            -12 
+	00032: PUSHB[5]             12    12     2    85    10 
+	00038: PUSHW[1]            -12 
+	00041: PUSHB[5]             12    12     2    85     9 
+	00047: PUSHW[1]            -12 
+	00050: PUSHB[5]             12    12     2    85     3 
+	00056: PUSHW[1]            -24 
+	00059: NPUSHB      (16):    13    13     6    85    85     3   119    10     2    18 
+	                             6    32    19    33    52     8 
+	00077: PUSHW[1]            -16 
+	00080: PUSHB[4]             18    39    52     9 
+	00085: PUSHW[1]            -16 
+	00088: PUSHB[5]             18    39    52    18     5 
+	00094: PUSHW[1]            -16 
+	00097: PUSHB[4]             18    33    52     9 
+	00102: PUSHW[1]            -16 
+	00105: NPUSHB     (132):    18    39    52     6     4     4     5     4     6    55 
+	                             9    71     4     5    37     6    45    10    88    10 
+	                           119     3   117    10   218     3   227     6     7   166 
+	                             6     1    35     6    38     7    37     8    57     6 
+	                            56     9    63    13    79    13    89     4    89     6 
+	                            88     7    89     9   125     4   121     5   153     9 
+	                           198     6   210     4   214     6   228     6   233     7 
+	                           247     6   249     8    21    18    10    10     5     3 
+	                             3     4     2     6     6     7     9     9     8    10 
+	                            10     5     9     8     8    37     7     6    20     7 
+	                             7     6     3     4     4    37     5    10    20     5 
+	                             5    10    10     9     6     3     4     8     1     2 
+	                             0     4     5     6     7     8     8    11    11     0 
+	                            10     4 
+	00239: PUSHW[1]            271 
+	00242: NPUSHB       (9):     5     4    12    12     6    85     5    34     8 
+	00253: PUSHW[1]            271 
+	00256: NPUSHB      (33):    32     7    63     7     2     7    16    12    12     6 
+	                            85     7    26   144    13     1    13    11    37     0 
+	                             2    37     1     1   144     0     1    63     0    79 
+	                             0     2     0 
+	00291: PUSHW[1]             -2 
+	00294: NPUSHB      (49):    14    14     2    85     0    16    13    13     2    85 
+	                             0    16    12    12     2    85     0    10    11    11 
+	                             2    85     0    18    11    11     6    85     0    18 
+	                            12    12     6    85     0     8    13    13     6    85 
+	                             0    25    12    13   225    33    71   102    24 
+	00345: CALL       
+	00346: CALL       
+	00347: FLIPOFF    
+	00348: MIRP[srp0,nmd,rd,0] 
+	00349: CALL       
+	00350: CALL       
+	00351: CALL       
+	00352: CALL       
+	00353: CALL       
+	00354: CALL       
+	00355: CALL       
+	00356: DELTAP1    
+	00357: DELTAP2    
+	00358: ALIGNRP    
+	00359: FLIPON     
+	00360: SRP0       
+	00361: MIRP[nrp0,md,rd,1] 
+	00362: SRP0       
+	00363: MIRP[nrp0,md,rd,1] 
+	00364: FLIPOFF    
+	00365: SRP0       
+	00366: DELTAP2    
+	00367: MIRP[srp0,nmd,rd,2] 
+	00368: CALL       
+	00369: DELTAP1    
+	00370: FLIPON     
+	00371: MIRP[nrp0,md,rd,1] 
+	00372: MIRP[srp0,nmd,rd,0] 
+	00373: CALL       
+	00374: MIRP[nrp0,md,rd,1] 
+	00375: SVTCA[y-axis] 
+	00376: MIAP[rd+ci] 
+	00377: ALIGNRP    
+	00378: SRP0       
+	00379: ALIGNRP    
+	00380: SRP0       
+	00381: ALIGNRP    
+	00382: MIAP[rd+ci] 
+	00383: ALIGNRP    
+	00384: MIAP[rd+ci] 
+	00385: ALIGNRP    
+	00386: SRP1       
+	00387: SLOOP      
+	00388: IP         
+	00389: SDPVTL[1]  
+	00390: SFVTCA[x-axis] 
+	00391: MDAP[nrd]  
+	00392: CALL       
+	00393: SFVTCA[y-axis] 
+	00394: RDTG       
+	00395: SRP0       
+	00396: MDRP[nrp0,nmd,rd,0] 
+	00397: SDPVTL[1]  
+	00398: SFVTCA[x-axis] 
+	00399: MDAP[nrd]  
+	00400: RTG        
+	00401: CALL       
+	00402: SFVTPV     
+	00403: RDTG       
+	00404: SRP0       
+	00405: MDRP[nrp0,nmd,rd,0] 
+	00406: SPVTL[p1,p2] 
+	00407: SRP0       
+	00408: SFVTL[=p1,p2] 
+	00409: ALIGNRP    
+	00410: SFVTL[=p1,p2] 
+	00411: ALIGNRP    
+	00412: SPVTCA[x-axis] 
+	00413: SRP0       
+	00414: SFVTL[=p1,p2] 
+	00415: ALIGNRP    
+	00416: SFVTL[=p1,p2] 
+	00417: ALIGNRP    
+	00418: PUSHB[2]              6     2 
+	00421: RS         
+	00422: EQ         
+	00423: IF         
+	00424: NPUSHB      (13):    75     9     1    31     9   132     3     2     9    24 
+	                            13    17    52 
+	00439: SVTCA[y-axis] 
+	00440: CALL       
+	00441: DELTAP1    
+	00442: DELTAP2    
+	00443: EIF        
+	00444: IUP[y]     
+	00445: IUP[x]     
+	00446: SVTCA[x-axis] 
+	00447: RS         
+	00448: NOT        
+	00449: IF         
+	00450: NPUSHB      (10):     9    44    29    57     9     8    29    29    60     6 
+	00462: PUSHW[1]            -34 
+	00465: PUSHB[3]             29    57     6 
+	00469: PUSHW[1]            -44 
+	00472: PUSHB[3]             32    57     6 
+	00476: PUSHW[1]            -44 
+	00479: PUSHB[2]             33    57 
+	00482: CALL       
+	00483: CALL       
+	00484: CALL       
+	00485: CALL       
+	00486: CALL       
+	00487: EIF        
+	00488: DELTAP1    
+	00489: SVTCA[y-axis] 
+	00490: DELTAP2    
+	00491: DELTAP1    
+	00492: SVTCA[x-axis] 
+	00493: DELTAP2    
+	00494: SVTCA[y-axis] 
+	00495: CALL       
+	00496: CALL       
+	00497: RS         
+	00498: NOT        
+	00499: IF         
+	00500: PUSHW[2]              6   -64 
+	00505: PUSHB[3]             33    57     3 
+	00509: PUSHW[1]            -64 
+	00512: PUSHB[3]             22    57     3 
+	00516: PUSHW[1]            -34 
+	00519: PUSHB[3]             16    57     6 
+	00523: PUSHW[1]            -34 
+	00526: PUSHB[3]             16    57     3 
+	00530: PUSHW[1]            -34 
+	00533: PUSHB[3]             12    57     3 
+	00537: PUSHW[1]            -34 
+	00540: PUSHB[2]             11    57 
+	00543: CALL       
+	00544: CALL       
+	00545: CALL       
+	00546: CALL       
+	00547: CALL       
+	00548: CALL       
+	00549: EIF        
+	00550: SVTCA[x-axis] 
+	00551: CALL       
+	00552: CALL       
+	00553: CALL       
+	00554: RS         
+	00555: NOT        
+	00556: IF         
+	00557: NPUSHB      (18):   221     4     1     8    20    22    57     9     8    20 
+	                            20    60     9     8    20    20    60     6 
+	00577: PUSHW[1]            -10 
+	00580: PUSHB[3]             24    57     6 
+	00584: PUSHW[1]            -20 
+	00587: PUSHB[2]             27    57 
+	00590: CALL       
+	00591: CALL       
+	00592: CALL       
+	00593: CALL       
+	00594: CALL       
+	00595: SVTCA[x-axis] 
+	00596: DELTAP1    
+	00597: EIF        
+	00598: SVTCA[y-axis] 
+	00599: DELTAP1    
+	00600: CALL       
+	00601: CALL       
+	00602: CALL       
+	00603: CALL       
+	00604: CALL       
+	00605: SVTCA[x-axis] 
+	00606: DELTAP1    
+	00607: DELTAP2    
+	00608: CALL       
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:                                      On
+	  5:  YDual XDual                 X-Short On
+	  6:                                      On
+	  7:                                      On
+	  8:  YDual                       X-Short On
+	  9:                                      On
+	 10:                      Y-Short X-Short On
+	 11:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   136,     0)  ->  Abs (   136,     0)
+	  1: Rel (     0,  1466)  ->  Abs (   136,  1466)
+	  2: Rel (   180,     0)  ->  Abs (   316,  1466)
+	  3: Rel (     0,  -836)  ->  Abs (   316,   630)
+	  4: Rel (   426,   432)  ->  Abs (   742,  1062)
+	  5: Rel (   233,     0)  ->  Abs (   975,  1062)
+	  6: Rel (  -406,  -394)  ->  Abs (   569,   668)
+	  7: Rel (   447,  -668)  ->  Abs (  1016,     0)
+	  8: Rel (  -222,     0)  ->  Abs (   794,     0)
+	  9: Rel (  -351,   543)  ->  Abs (   443,   543)
+	 10: Rel (  -127,  -122)  ->  Abs (   316,   421)
+	 11: Rel (     0,  -421)  ->  Abs (   316,     0)
+
+	Glyph  79: off = 0x000061DC, len = 252
+	  numberOfContours:	1
+	  xMin:			131
+	  yMin:			0
+	  xMax:			311
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	227
+	00000: PUSHB[7]              5    54    11    11     2    85     5 
+	00008: PUSHW[1]            -64 
+	00011: PUSHB[4]             55    56    52     5 
+	00016: PUSHW[1]            -64 
+	00019: PUSHB[4]             52    53    52     5 
+	00024: PUSHW[1]            -64 
+	00027: PUSHB[4]             48    49    52     5 
+	00032: PUSHW[1]            -64 
+	00035: PUSHB[4]             34    37    52     5 
+	00040: PUSHW[1]            -64 
+	00043: NPUSHB      (37):    21    23    52    15     5    31     5   159     5   223 
+	                             5     4    79     5   223     5   240     5     3    31 
+	                             5   112     5   128     5   255     5     4     1     0 
+	                             0    10     2     3    37     1     0 
+	00082: PUSHW[1]            -64 
+	00085: PUSHB[4]             55    56    52     0 
+	00090: PUSHW[1]            -64 
+	00093: NPUSHB      (21):    51    53    52   159     0     1   192     0   240     0 
+	                             2     0     0    32     0   208     0   224     0     4 
+	                             0 
+	00116: PUSHW[1]             -8 
+	00119: PUSHB[5]             16    16     2    85     0 
+	00125: PUSHW[1]             -6 
+	00128: NPUSHB      (29):    14    14     2    85     0     4    12    12     2    85 
+	                             0    10    11    11     2    85     0    20    11    11 
+	                             6    85     0     8    16    16     6    85     0 
+	00159: PUSHW[1]             -2 
+	00162: PUSHB[5]             13    13     6    85     0 
+	00168: PUSHW[1]             -1 
+	00171: PUSHB[5]             12    12     6    85     0 
+	00177: PUSHW[1]             -4 
+	00180: NPUSHB      (10):    12    12     6    85     0    78     4    71    80    24 
+	00192: CALL       
+	00193: SRP0       
+	00194: MIRP[srp0,nmd,rd,2] 
+	00195: CALL       
+	00196: CALL       
+	00197: CALL       
+	00198: CALL       
+	00199: CALL       
+	00200: CALL       
+	00201: CALL       
+	00202: CALL       
+	00203: CALL       
+	00204: DELTAP1    
+	00205: DELTAP2    
+	00206: DELTAP3    
+	00207: CALL       
+	00208: CALL       
+	00209: ALIGNRP    
+	00210: MIRP[srp0,md,rd,1] 
+	00211: ALIGNRP    
+	00212: SVTCA[y-axis] 
+	00213: MIAP[rd+ci] 
+	00214: MIAP[rd+ci] 
+	00215: IUP[y]     
+	00216: IUP[x]     
+	00217: SVTCA[x-axis] 
+	00218: DELTAP1    
+	00219: DELTAP2    
+	00220: DELTAP3    
+	00221: CALL       
+	00222: CALL       
+	00223: CALL       
+	00224: CALL       
+	00225: CALL       
+	00226: CALL       
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   131,     0)  ->  Abs (   131,     0)
+	  1: Rel (     0,  1466)  ->  Abs (   131,  1466)
+	  2: Rel (   180,     0)  ->  Abs (   311,  1466)
+	  3: Rel (     0, -1466)  ->  Abs (   311,     0)
+
+	Glyph  80: off = 0x000062D8, len = 560
+	  numberOfContours:	1
+	  xMin:			135
+	  yMin:			0
+	  xMax:			1574
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  35
+
+	  Length of Instructions:	455
+	00000: PUSHW[2]             13   -12 
+	00005: PUSHB[5]             13    13     6    85     8 
+	00011: PUSHW[1]            -12 
+	00014: PUSHB[5]             13    13     6    85     9 
+	00020: PUSHW[1]            -40 
+	00023: NPUSHB      (77):    11    13    52    37     4   228     4   228     9   225 
+	                            23   229    32     5   213     5   246    32     2    23 
+	                             8    32    35     9    24    27    32     9     3     3 
+	                            35    30    28     6    21    28    11    11     6     7 
+	                             1     6    35    26    25    16    10   208    37     1 
+	                           144    37   160    37     2    37    23    23    26    14 
+	                            37   144    17     1    17     4    16    16     2    85 
+	                            17    24    15    15     2    85    17 
+	00102: PUSHW[1]            -20 
+	00105: NPUSHB      (11):    14    14     2    85    17    20    12    12     2    85 
+	                            17 
+	00118: PUSHW[1]            -24 
+	00121: NPUSHB      (23):    11    11     2    85    17     2    11    11     6    85 
+	                            17    12    16    16     6    85    17     6    15    15 
+	                             6    85    17 
+	00146: PUSHW[1]             -6 
+	00149: PUSHB[5]             12    12     6    85    17 
+	00155: PUSHW[1]             -8 
+	00158: PUSHB[5]             13    13     6    85    17 
+	00164: PUSHW[1]            349 
+	00167: NPUSHB      (12):    24    37   144    27     1    27    24    15    15     2 
+	                            85    27 
+	00181: PUSHW[1]            -20 
+	00184: NPUSHB      (11):    14    14     2    85    27    20    12    12     2    85 
+	                            27 
+	00197: PUSHW[1]            -18 
+	00200: NPUSHB      (17):    11    11     2    85    27     4    11    11     6    85 
+	                            27    10    16    16     6    85    27 
+	00219: PUSHW[1]             -2 
+	00222: NPUSHB      (11):    13    13     6    85    27    12    15    15     6    85 
+	                            27 
+	00235: PUSHW[1]             -4 
+	00238: PUSHB[5]             12    12     6    85    27 
+	00244: PUSHW[1]            349 
+	00247: NPUSHB      (22):     0     2    51    35    37     1   208     0     1   144 
+	                             0   160     0     2    31     0    63     0    79     0 
+	                             3     0 
+	00271: PUSHW[1]             -2 
+	00274: NPUSHB      (29):    14    14     2    85     0    16    13    13     2    85 
+	                             0    16    12    12     2    85     0    12    11    11 
+	                             2    85     0    22    11    11     6    85     0 
+	00305: PUSHW[1]             -4 
+	00308: PUSHB[5]             16    16     6    85     0 
+	00314: PUSHW[1]            -12 
+	00317: NPUSHB      (20):    15    15     6    85     0    10    12    12     6    85 
+	                             0    14    13    13     6    85     0    25    36    37 
+	00339: PUSHW[1]            376 
+	00342: PUSHB[4]             33    71    80    24 
+	00347: CALL       
+	00348: CALL       
+	00349: FLIPOFF    
+	00350: MIRP[srp0,nmd,rd,0] 
+	00351: CALL       
+	00352: CALL       
+	00353: CALL       
+	00354: CALL       
+	00355: CALL       
+	00356: CALL       
+	00357: CALL       
+	00358: CALL       
+	00359: CALL       
+	00360: DELTAP1    
+	00361: DELTAP2    
+	00362: DELTAP3    
+	00363: ALIGNRP    
+	00364: FLIPON     
+	00365: MIRP[srp0,md,rd,1] 
+	00366: MIRP[nrp0,nmd,rd,0] 
+	00367: SRP0       
+	00368: MIRP[srp0,nmd,rd,0] 
+	00369: CALL       
+	00370: CALL       
+	00371: CALL       
+	00372: CALL       
+	00373: CALL       
+	00374: CALL       
+	00375: CALL       
+	00376: CALL       
+	00377: CALL       
+	00378: DELTAP1    
+	00379: MIRP[nrp0,md,rd,1] 
+	00380: MIRP[srp0,nmd,rd,0] 
+	00381: CALL       
+	00382: CALL       
+	00383: CALL       
+	00384: CALL       
+	00385: CALL       
+	00386: CALL       
+	00387: CALL       
+	00388: CALL       
+	00389: CALL       
+	00390: CALL       
+	00391: DELTAP1    
+	00392: MIRP[srp0,md,rd,1] 
+	00393: FLIPOFF    
+	00394: RCVT       
+	00395: NEG        
+	00396: WCVTP      
+	00397: MIRP[nrp0,nmd,rd,2] 
+	00398: DELTAP2    
+	00399: DELTAP3    
+	00400: SVTCA[y-axis] 
+	00401: MIAP[rd+ci] 
+	00402: ALIGNRP    
+	00403: ALIGNRP    
+	00404: ALIGNRP    
+	00405: MIAP[rd+ci] 
+	00406: MIAP[rd+ci] 
+	00407: ALIGNRP    
+	00408: FLIPON     
+	00409: SRP0       
+	00410: MIRP[nrp0,md,rd,1] 
+	00411: SRP0       
+	00412: MIRP[nrp0,md,rd,1] 
+	00413: SRP1       
+	00414: SLOOP      
+	00415: IP         
+	00416: SVTCA[x-axis] 
+	00417: SRP1       
+	00418: SRP2       
+	00419: IP         
+	00420: SRP2       
+	00421: IP         
+	00422: IUP[y]     
+	00423: IUP[x]     
+	00424: RS         
+	00425: JROF       
+	00426: NPUSHB      (14):    12    20    19    38    20    12    17    27     1    18 
+	                            13    21    27     1 
+	00442: SVTCA[y-axis] 
+	00443: CALL       
+	00444: SVTCA[x-axis] 
+	00445: CALL       
+	00446: CALL       
+	00447: FLIPRGON   
+	00448: SVTCA[x-axis] 
+	00449: DELTAP1    
+	00450: SVTCA[y-axis] 
+	00451: DELTAP1    
+	00452: CALL       
+	00453: CALL       
+	00454: CALL       
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual                         On
+	 16:  YDual                       X-Short On
+	 17:        XDual                         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:                      Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual                         On
+	 26:  YDual                       X-Short On
+	 27:        XDual                         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:                      Y-Short X-Short Off
+	 33:                      Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   135,     0)  ->  Abs (   135,     0)
+	  1: Rel (     0,  1062)  ->  Abs (   135,  1062)
+	  2: Rel (   161,     0)  ->  Abs (   296,  1062)
+	  3: Rel (     0,  -149)  ->  Abs (   296,   913)
+	  4: Rel (    50,    78)  ->  Abs (   346,   991)
+	  5: Rel (   166,    95)  ->  Abs (   512,  1086)
+	  6: Rel (   106,     0)  ->  Abs (   618,  1086)
+	  7: Rel (   118,     0)  ->  Abs (   736,  1086)
+	  8: Rel (   151,   -98)  ->  Abs (   887,   988)
+	  9: Rel (    31,   -88)  ->  Abs (   918,   900)
+	 10: Rel (   126,   186)  ->  Abs (  1044,  1086)
+	 11: Rel (   202,     0)  ->  Abs (  1246,  1086)
+	 12: Rel (   158,     0)  ->  Abs (  1404,  1086)
+	 13: Rel (   170,  -175)  ->  Abs (  1574,   911)
+	 14: Rel (     0,  -182)  ->  Abs (  1574,   729)
+	 15: Rel (     0,  -729)  ->  Abs (  1574,     0)
+	 16: Rel (  -179,     0)  ->  Abs (  1395,     0)
+	 17: Rel (     0,   669)  ->  Abs (  1395,   669)
+	 18: Rel (     0,   108)  ->  Abs (  1395,   777)
+	 19: Rel (   -35,    95)  ->  Abs (  1360,   872)
+	 20: Rel (   -92,    58)  ->  Abs (  1268,   930)
+	 21: Rel (   -62,     0)  ->  Abs (  1206,   930)
+	 22: Rel (  -112,     0)  ->  Abs (  1094,   930)
+	 23: Rel (  -148,  -149)  ->  Abs (   946,   781)
+	 24: Rel (     0,  -164)  ->  Abs (   946,   617)
+	 25: Rel (     0,  -617)  ->  Abs (   946,     0)
+	 26: Rel (  -180,     0)  ->  Abs (   766,     0)
+	 27: Rel (     0,   690)  ->  Abs (   766,   690)
+	 28: Rel (     0,   120)  ->  Abs (   766,   810)
+	 29: Rel (   -88,   120)  ->  Abs (   678,   930)
+	 30: Rel (  -100,     0)  ->  Abs (   578,   930)
+	 31: Rel (   -76,     0)  ->  Abs (   502,   930)
+	 32: Rel (  -129,   -80)  ->  Abs (   373,   850)
+	 33: Rel (   -58,  -154)  ->  Abs (   315,   696)
+	 34: Rel (     0,  -145)  ->  Abs (   315,   551)
+	 35: Rel (     0,  -551)  ->  Abs (   315,     0)
+
+	Glyph  81: off = 0x00006508, len = 454
+	  numberOfContours:	1
+	  xMin:			135
+	  yMin:			0
+	  xMax:			998
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  22
+
+	  Length of Instructions:	381
+	00000: NPUSHB      (19):     5     3     6    19     2   168    16   184    16   227 
+	                             3   231    19   240     3   246    19     6     4 
+	00021: PUSHW[1]            -16 
+	00024: NPUSHB      (60):    11    13    52   121    16     1   152    16   208    24 
+	                           224    24   255    24     4    32     8    20    14    20 
+	                            22    18    28     5     7     1     6    22    13    10 
+	                            13    14    12    14    36    24    64    16    16     2 
+	                            85    24    64    11    11     2    85    11    40    16 
+	                            16     2    85    11    20    14    14     2    85    11 
+	00086: PUSHW[1]            -20 
+	00089: NPUSHB      (17):    13    13     2    85    11     4    12    12     2    85 
+	                            11    34    11    11     2    85    11 
+	00108: PUSHW[1]            -12 
+	00111: NPUSHB      (11):    11    11     6    85    11    20    16    16     6    85 
+	                            11 
+	00124: PUSHW[1]             -7 
+	00127: NPUSHB      (11):    13    13     6    85    11    10    15    15     6    85 
+	                            11 
+	00140: PUSHW[1]            -10 
+	00143: NPUSHB      (18):    12    12     6    85    11    64    51    54    52   255 
+	                            11     1   255    11     1    11    78    24 
+	00163: PUSHW[1]            -64 
+	00166: NPUSHB      (26):    52    54    52   176    24   240    24     2   112    24 
+	                           160    24   176    24   192    24     4    24     3     2 
+	                            51    21    22    37     1     0 
+	00194: PUSHW[1]            -10 
+	00197: PUSHB[5]             17    17     2    85     0 
+	00203: PUSHW[1]             -6 
+	00206: PUSHB[5]             16    16     2    85     0 
+	00212: PUSHW[1]             -6 
+	00215: NPUSHB      (23):    14    14     2    85     0     4    12    12     2    85 
+	                             0    10    11    11     2    85     0     4    11    11 
+	                             6    85     0 
+	00240: PUSHW[1]             -6 
+	00243: NPUSHB      (17):    15    15     6    85     0     2    12    12     6    85 
+	                             0     4    13    13     6    85     0 
+	00262: PUSHW[1]            -64 
+	00265: NPUSHB      (18):    51    54    52   240     0     1     0     0    32     0 
+	                           208     0   224     0     4     0    78    23 
+	00285: SRP0       
+	00286: MIRP[srp0,nmd,rd,2] 
+	00287: DELTAP1    
+	00288: DELTAP2    
+	00289: CALL       
+	00290: CALL       
+	00291: CALL       
+	00292: CALL       
+	00293: CALL       
+	00294: CALL       
+	00295: CALL       
+	00296: CALL       
+	00297: CALL       
+	00298: CALL       
+	00299: ALIGNRP    
+	00300: MIRP[srp0,md,rd,1] 
+	00301: ALIGNRP    
+	00302: MIRP[srp0,nmd,rd,0] 
+	00303: ALIGNRP    
+	00304: SRP0       
+	00305: DELTAP1    
+	00306: DELTAP2    
+	00307: CALL       
+	00308: MIRP[srp0,nmd,rd,2] 
+	00309: DELTAP1    
+	00310: DELTAP2    
+	00311: CALL       
+	00312: CALL       
+	00313: CALL       
+	00314: CALL       
+	00315: CALL       
+	00316: CALL       
+	00317: CALL       
+	00318: CALL       
+	00319: CALL       
+	00320: CALL       
+	00321: CALL       
+	00322: CALL       
+	00323: CALL       
+	00324: MIRP[nrp0,md,rd,1] 
+	00325: ALIGNRP    
+	00326: SRP0       
+	00327: ALIGNRP    
+	00328: SVTCA[y-axis] 
+	00329: MIAP[rd+ci] 
+	00330: ALIGNRP    
+	00331: MIAP[rd+ci] 
+	00332: MIAP[rd+ci] 
+	00333: MIRP[nrp0,md,rd,1] 
+	00334: SRP1       
+	00335: IP         
+	00336: SVTCA[x-axis] 
+	00337: SRP2       
+	00338: IP         
+	00339: IUP[y]     
+	00340: IUP[x]     
+	00341: RS         
+	00342: JROF       
+	00343: NPUSHB      (22):     6    17     9    10     8    10     7    10     3     6 
+	                            16    38    17     6    14    27     1    15    10    18 
+	                            27     1 
+	00367: SVTCA[y-axis] 
+	00368: CALL       
+	00369: SVTCA[x-axis] 
+	00370: CALL       
+	00371: CALL       
+	00372: LOOPCALL   
+	00373: FLIPRGON   
+	00374: SVTCA[x-axis] 
+	00375: DELTAP1    
+	00376: DELTAP2    
+	00377: SVTCA[y-axis] 
+	00378: CALL       
+	00379: DELTAP1    
+	00380: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual                         On
+	 13:  YDual                       X-Short On
+	 14:        XDual                         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:                      Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   135,     0)  ->  Abs (   135,     0)
+	  1: Rel (     0,  1062)  ->  Abs (   135,  1062)
+	  2: Rel (   162,     0)  ->  Abs (   297,  1062)
+	  3: Rel (     0,  -151)  ->  Abs (   297,   911)
+	  4: Rel (   117,   175)  ->  Abs (   414,  1086)
+	  5: Rel (   221,     0)  ->  Abs (   635,  1086)
+	  6: Rel (    96,     0)  ->  Abs (   731,  1086)
+	  7: Rel (   161,   -69)  ->  Abs (   892,  1017)
+	  8: Rel (    80,  -112)  ->  Abs (   972,   905)
+	  9: Rel (    16,   -77)  ->  Abs (   988,   828)
+	 10: Rel (    10,   -50)  ->  Abs (   998,   778)
+	 11: Rel (     0,  -125)  ->  Abs (   998,   653)
+	 12: Rel (     0,  -653)  ->  Abs (   998,     0)
+	 13: Rel (  -180,     0)  ->  Abs (   818,     0)
+	 14: Rel (     0,   646)  ->  Abs (   818,   646)
+	 15: Rel (     0,   110)  ->  Abs (   818,   756)
+	 16: Rel (   -42,   109)  ->  Abs (   776,   865)
+	 17: Rel (  -107,    65)  ->  Abs (   669,   930)
+	 18: Rel (   -72,     0)  ->  Abs (   597,   930)
+	 19: Rel (  -115,     0)  ->  Abs (   482,   930)
+	 20: Rel (  -167,  -146)  ->  Abs (   315,   784)
+	 21: Rel (     0,  -204)  ->  Abs (   315,   580)
+	 22: Rel (     0,  -580)  ->  Abs (   315,     0)
+
+	Glyph  82: off = 0x000066CE, len = 450
+	  numberOfContours:	2
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1063
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  25
+
+	  Length of Instructions:	363
+	00000: PUSHB[7]             21    24    13    13     6    85    19 
+	00008: PUSHW[1]            -24 
+	00011: PUSHB[5]             13    13     6    85    15 
+	00017: PUSHW[1]            -24 
+	00020: NPUSHB     (115):    13    13     6    85    25    24    13    13     6    85 
+	                            18     7    10    25    12    71     6    72     8    86 
+	                             6    89     8   103     6   105     8     8    52    16 
+	                            58    18    58    22    53    24    69    16    75    18 
+	                            75    22    69    24    92     5    92     9    82    16 
+	                            93    18    93    22    82    24   109     5   109     9 
+	                           100    16   109    18   109    22   100    24   119     1 
+	                            21     9     6     5    13    91     3    84     5    84 
+	                            10    91    12   108     3   101     5   101    10   108 
+	                            12    10    23    28     4     7    17    28    11    11 
+	                            20    36    27    64    13    13     2    85    27    64 
+	                            11    11     2    85     7 
+	00137: PUSHW[1]            -22 
+	00140: NPUSHB      (17):    15    15     2    85     7    24    13    13     2    85 
+	                             7    16    11    11     2    85     7 
+	00159: PUSHW[1]            -16 
+	00162: PUSHB[5]             11    11     6    85     7 
+	00168: PUSHW[1]            -16 
+	00171: PUSHB[5]             13    13     6    85     7 
+	00177: PUSHW[1]            -16 
+	00180: PUSHB[5]             15    15     6    85     7 
+	00186: PUSHW[1]            -16 
+	00189: PUSHB[5]             12    12     6    85     7 
+	00195: PUSHW[1]            -64 
+	00198: NPUSHB      (19):    36    37    52    48     7     1     0     7    16     7 
+	                            32     7     3     7    49   223    27     1    27 
+	00219: PUSHW[1]            -64 
+	00222: NPUSHB      (73):    30    35    52    48    27     1    27    14    36     0 
+	                            12    14    15     2    85     0    18    13    13     2 
+	                            85     0    12    12    12     2    85     0    28    11 
+	                            11     2    85     0    14    11    11     6    85     0 
+	                            14    13    13     6    85     0    12    16    16     6 
+	                            85     0    22    12    12     6    85     0    64    36 
+	                            37    52    31     0    63     0     2     0    49    26 
+	                            52    55    24 
+	00297: CALL       
+	00298: SRP0       
+	00299: MIRP[srp0,nmd,rd,2] 
+	00300: DELTAP1    
+	00301: CALL       
+	00302: CALL       
+	00303: CALL       
+	00304: CALL       
+	00305: CALL       
+	00306: CALL       
+	00307: CALL       
+	00308: CALL       
+	00309: CALL       
+	00310: MIRP[nrp0,md,rd,1] 
+	00311: SRP0       
+	00312: DELTAP2    
+	00313: CALL       
+	00314: DELTAP1    
+	00315: MIRP[srp0,nmd,rd,2] 
+	00316: DELTAP1    
+	00317: DELTAP1    
+	00318: CALL       
+	00319: CALL       
+	00320: CALL       
+	00321: CALL       
+	00322: CALL       
+	00323: CALL       
+	00324: CALL       
+	00325: CALL       
+	00326: CALL       
+	00327: CALL       
+	00328: MIRP[nrp0,md,rd,1] 
+	00329: SVTCA[y-axis] 
+	00330: MIAP[rd+ci] 
+	00331: MIRP[nrp0,md,rd,1] 
+	00332: MIAP[rd+ci] 
+	00333: MIRP[nrp0,md,rd,1] 
+	00334: IUP[y]     
+	00335: IUP[x]     
+	00336: SVTCA[x-axis] 
+	00337: DELTAP2    
+	00338: DELTAP1    
+	00339: SVTCA[y-axis] 
+	00340: DELTAP2    
+	00341: RS         
+	00342: NOT        
+	00343: IF         
+	00344: NPUSHB       (9):    83     5    83     9    98     5    98     9     4 
+	00355: SVTCA[x-axis] 
+	00356: DELTAP1    
+	00357: EIF        
+	00358: SVTCA[y-axis] 
+	00359: CALL       
+	00360: CALL       
+	00361: CALL       
+	00362: CALL       
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:                                      Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:                                      Off
+	 14:        XDual                 X-Short On
+	 15:        XDual         Y-Short         Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    68,   531)  ->  Abs (    68,   531)
+	  1: Rel (     0,   295)  ->  Abs (    68,   826)
+	  2: Rel (   164,   142)  ->  Abs (   232,   968)
+	  3: Rel (   137,   118)  ->  Abs (   369,  1086)
+	  4: Rel (   197,     0)  ->  Abs (   566,  1086)
+	  5: Rel (   219,     0)  ->  Abs (   785,  1086)
+	  6: Rel (   278,  -287)  ->  Abs (  1063,   799)
+	  7: Rel (     0,  -253)  ->  Abs (  1063,   546)
+	  8: Rel (     0,  -205)  ->  Abs (  1063,   341)
+	  9: Rel (  -123,  -235)  ->  Abs (   940,   106)
+	 10: Rel (  -235,  -130)  ->  Abs (   705,   -24)
+	 11: Rel (  -139,     0)  ->  Abs (   566,   -24)
+	 12: Rel (  -223,     0)  ->  Abs (   343,   -24)
+	 13: Rel (  -275,   286)  ->  Abs (    68,   262)
+	 14: Rel (   185,   269)  ->  Abs (   253,   531)
+	 15: Rel (     0,  -204)  ->  Abs (   253,   327)
+	 16: Rel (   178,  -203)  ->  Abs (   431,   124)
+	 17: Rel (   135,     0)  ->  Abs (   566,   124)
+	 18: Rel (   134,     0)  ->  Abs (   700,   124)
+	 19: Rel (   178,   204)  ->  Abs (   878,   328)
+	 20: Rel (     0,   209)  ->  Abs (   878,   537)
+	 21: Rel (     0,   197)  ->  Abs (   878,   734)
+	 22: Rel (  -179,   203)  ->  Abs (   699,   937)
+	 23: Rel (  -133,     0)  ->  Abs (   566,   937)
+	 24: Rel (  -135,     0)  ->  Abs (   431,   937)
+	 25: Rel (  -178,  -202)  ->  Abs (   253,   735)
+
+	Glyph  83: off = 0x00006890, len = 452
+	  numberOfContours:	2
+	  xMin:			135
+	  yMin:			-407
+	  xMax:			1057
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  18
+	  1:  30
+
+	  Length of Instructions:	354
+	00000: NPUSHB     (142):    12    16    45    16    61    16    75    16     4    63 
+	                            32   176    32     2    31    32    41    12    35    29 
+	                            50    21    50    29    66    29   112    32   144    32 
+	                             8    58    23    58    27    74    23    74    27    89 
+	                             8    91    12    92    23    92    27   106     8   107 
+	                            12   105    16   109    23   107    27   192    32   211 
+	                            20   221    24   221    26   211    30   228    20   228 
+	                            30   224    32   255    32    22    35     4    43    16 
+	                            43    21    53     4    58    16    70     4    74    16 
+	                            90    16   229    11   235    29   254    16    11    17 
+	                            14     3    22    28    28     6     7     1     6    22 
+	                            28    14    11     0    14    25    36   208    10     1 
+	                            16    10    64    10    96    10   128    10     4    32 
+	                            64    11    11     2    85    32    64    13    13     2 
+	                            85    10 
+	00144: PUSHW[1]            -26 
+	00147: NPUSHB      (11):    15    15     2    85    10    24    13    13     2    85 
+	                            10 
+	00160: PUSHW[1]             -6 
+	00163: PUSHB[5]             12    12     2    85    10 
+	00169: PUSHW[1]            -18 
+	00172: PUSHB[5]             11    11     6    85    10 
+	00178: PUSHW[1]            -12 
+	00181: PUSHB[5]             15    15     6    85    10 
+	00187: PUSHW[1]            -24 
+	00190: NPUSHB      (35):    12    12     6    85    10   116     1    19    51     2 
+	                            51    18    37     0     0   192     1     1   144     1 
+	                           160     1   176     1   240     1     4    31     1    63 
+	                             1    79     1     3     1 
+	00227: PUSHW[1]             -4 
+	00230: NPUSHB      (29):    14    14     2    85     1    16    13    13     2    85 
+	                             1    16    12    12     2    85     1    16    11    11 
+	                             2    85     1    12    11    11     6    85     1 
+	00261: PUSHW[1]            -10 
+	00264: PUSHB[5]             16    16     6    85     1 
+	00270: PUSHW[1]             -4 
+	00273: NPUSHB      (22):    15    15     6    85     1    12    12    12     6    85 
+	                             1    18    13    13     6    85     1    25    31    71 
+	                            55    24 
+	00297: SVTCA[x-axis] 
+	00298: CALL       
+	00299: FLIPOFF    
+	00300: SRP0       
+	00301: MIRP[srp0,nmd,rd,0] 
+	00302: CALL       
+	00303: CALL       
+	00304: CALL       
+	00305: CALL       
+	00306: CALL       
+	00307: CALL       
+	00308: CALL       
+	00309: CALL       
+	00310: CALL       
+	00311: DELTAP1    
+	00312: DELTAP2    
+	00313: DELTAP3    
+	00314: ALIGNRP    
+	00315: FLIPON     
+	00316: SRP0       
+	00317: MIRP[srp0,md,rd,1] 
+	00318: MIRP[srp0,nmd,rd,0] 
+	00319: MIRP[nrp0,nmd,rd,0] 
+	00320: SRP0       
+	00321: MIRP[srp0,md,rd,1] 
+	00322: CALL       
+	00323: CALL       
+	00324: CALL       
+	00325: CALL       
+	00326: CALL       
+	00327: CALL       
+	00328: CALL       
+	00329: CALL       
+	00330: DELTAP1    
+	00331: DELTAP2    
+	00332: MIRP[nrp0,md,rd,1] 
+	00333: SVTCA[y-axis] 
+	00334: MIAP[rd+ci] 
+	00335: MIAP[rd+ci] 
+	00336: MIRP[nrp0,md,rd,1] 
+	00337: MIAP[rd+ci] 
+	00338: MIAP[rd+ci] 
+	00339: MIRP[nrp0,md,rd,1] 
+	00340: SRP1       
+	00341: IP         
+	00342: SRP2       
+	00343: IP         
+	00344: IUP[y]     
+	00345: IUP[x]     
+	00346: SVTCA[y-axis] 
+	00347: DELTAP1    
+	00348: SVTCA[x-axis] 
+	00349: DELTAP1    
+	00350: DELTAP2    
+	00351: DELTAP3    
+	00352: SVTCA[y-axis] 
+	00353: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                              X-Short Off
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:        XDual                         On
+	 19:                              X-Short On
+	 20:        XDual         Y-Short         Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   135,  -407)  ->  Abs (   135,  -407)
+	  1: Rel (     0,  1469)  ->  Abs (   135,  1062)
+	  2: Rel (   164,     0)  ->  Abs (   299,  1062)
+	  3: Rel (     0,  -138)  ->  Abs (   299,   924)
+	  4: Rel (    58,    81)  ->  Abs (   357,  1005)
+	  5: Rel (   146,    81)  ->  Abs (   503,  1086)
+	  6: Rel (   104,     0)  ->  Abs (   607,  1086)
+	  7: Rel (   136,     0)  ->  Abs (   743,  1086)
+	  8: Rel (   208,  -140)  ->  Abs (   951,   946)
+	  9: Rel (   106,  -255)  ->  Abs (  1057,   691)
+	 10: Rel (     0,  -152)  ->  Abs (  1057,   539)
+	 11: Rel (     0,  -163)  ->  Abs (  1057,   376)
+	 12: Rel (  -117,  -261)  ->  Abs (   940,   115)
+	 13: Rel (  -223,  -139)  ->  Abs (   717,   -24)
+	 14: Rel (  -123,     0)  ->  Abs (   594,   -24)
+	 15: Rel (   -90,     0)  ->  Abs (   504,   -24)
+	 16: Rel (  -143,    76)  ->  Abs (   361,    52)
+	 17: Rel (   -46,    58)  ->  Abs (   315,   110)
+	 18: Rel (     0,  -517)  ->  Abs (   315,  -407)
+	 19: Rel (   -17,   932)  ->  Abs (   298,   525)
+	 20: Rel (     0,  -205)  ->  Abs (   298,   320)
+	 21: Rel (   166,  -196)  ->  Abs (   464,   124)
+	 22: Rel (   118,     0)  ->  Abs (   582,   124)
+	 23: Rel (   120,     0)  ->  Abs (   702,   124)
+	 24: Rel (   171,   203)  ->  Abs (   873,   327)
+	 25: Rel (     0,   213)  ->  Abs (   873,   540)
+	 26: Rel (     0,   203)  ->  Abs (   873,   743)
+	 27: Rel (  -167,   202)  ->  Abs (   706,   945)
+	 28: Rel (  -116,     0)  ->  Abs (   590,   945)
+	 29: Rel (  -115,     0)  ->  Abs (   475,   945)
+	 30: Rel (  -177,  -215)  ->  Abs (   298,   730)
+
+	Glyph  84: off = 0x00006A54, len = 406
+	  numberOfContours:	2
+	  xMin:			72
+	  yMin:			-407
+	  xMax:			992
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  16
+	  1:  28
+
+	  Length of Instructions:	310
+	00000: NPUSHB     (142):    11     2    43     2    42    24    59     2    75     2 
+	                           121    12     6    63    21    63    25    75    25   144 
+	                            30   160    30     5    52    19    52    27    63    30 
+	                            68    19    68    27    83    19    83    27    99    19 
+	                            99    27    96    30   128    30   212     6   213    18 
+	                           230     6   233    12   234    24    16    41     2    34 
+	                            12    43    21    57     2    53    12    73     2    70 
+	                            12    90     2   105     2   217    12   219    24   227 
+	                            22   233    25   230    27   252     2    15     1     4 
+	                            13    20    26    28    11     7    14     6    20    28 
+	                             4    11     0    14    23    14    51     0    37    16 
+	                            16   208    15     1    16    15    64    15    96    15 
+	                           128    15     4    30    64    11    12     2    85    30 
+	                            64    13    13     2    85    15    18    16    16     2 
+	                            85    15 
+	00144: PUSHW[1]            -12 
+	00147: NPUSHB      (17):    15    15     2    85    15     6    14    14     2    85 
+	                            15    22    13    13     2    85    15 
+	00166: PUSHW[1]             -2 
+	00169: NPUSHB      (11):    12    12     2    85    15    22    16    16     6    85 
+	                            15 
+	00182: PUSHW[1]            -24 
+	00185: PUSHB[5]             12    12     6    85    15 
+	00191: PUSHW[1]            -12 
+	00194: NPUSHB      (63):    13    13     6    85    15   116    17    36   191     7 
+	                           207     7   223     7   255     7     4    31     7    63 
+	                             7    79     7     3     7    36    11    11     2    85 
+	                             7    26    12    12     2    85     7    34    13    13 
+	                             2    85     7    22    12    12     6    85     7    26 
+	                            13    13     6    85     7    25    29    30   116    33 
+	                            52    80    24 
+	00259: CALL       
+	00260: CALL       
+	00261: FLIPOFF    
+	00262: MIRP[srp0,nmd,rd,0] 
+	00263: CALL       
+	00264: CALL       
+	00265: CALL       
+	00266: CALL       
+	00267: CALL       
+	00268: DELTAP1    
+	00269: DELTAP2    
+	00270: FLIPON     
+	00271: MIRP[nrp0,md,rd,1] 
+	00272: MIRP[srp0,md,rd,1] 
+	00273: CALL       
+	00274: CALL       
+	00275: CALL       
+	00276: CALL       
+	00277: CALL       
+	00278: CALL       
+	00279: CALL       
+	00280: CALL       
+	00281: CALL       
+	00282: CALL       
+	00283: DELTAP1    
+	00284: DELTAP2    
+	00285: ALIGNRP    
+	00286: SRP0       
+	00287: MIRP[srp0,md,rd,1] 
+	00288: MIRP[srp0,nmd,rd,0] 
+	00289: ALIGNRP    
+	00290: SVTCA[y-axis] 
+	00291: MIAP[rd+ci] 
+	00292: MIAP[rd+ci] 
+	00293: MIRP[nrp0,md,rd,1] 
+	00294: MIAP[rd+ci] 
+	00295: MIAP[rd+ci] 
+	00296: MIRP[nrp0,md,rd,1] 
+	00297: SRP1       
+	00298: IP         
+	00299: SRP2       
+	00300: IP         
+	00301: IUP[y]     
+	00302: IUP[x]     
+	00303: SVTCA[y-axis] 
+	00304: DELTAP1    
+	00305: SVTCA[x-axis] 
+	00306: DELTAP1    
+	00307: DELTAP2    
+	00308: SVTCA[y-axis] 
+	00309: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                                      Off
+	  7:        XDual                         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual                 X-Short On
+	 16:        XDual                         On
+	 17:                                      On
+	 18:        XDual         Y-Short         Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   812,  -407)  ->  Abs (   812,  -407)
+	  1: Rel (     0,   520)  ->  Abs (   812,   113)
+	  2: Rel (   -42,   -59)  ->  Abs (   770,    54)
+	  3: Rel (  -151,   -78)  ->  Abs (   619,   -24)
+	  4: Rel (   -85,     0)  ->  Abs (   534,   -24)
+	  5: Rel (  -189,     0)  ->  Abs (   345,   -24)
+	  6: Rel (  -273,   302)  ->  Abs (    72,   278)
+	  7: Rel (     0,   263)  ->  Abs (    72,   541)
+	  8: Rel (     0,   160)  ->  Abs (    72,   701)
+	  9: Rel (   111,   254)  ->  Abs (   183,   955)
+	 10: Rel (   211,   131)  ->  Abs (   394,  1086)
+	 11: Rel (   126,     0)  ->  Abs (   520,  1086)
+	 12: Rel (   197,     0)  ->  Abs (   717,  1086)
+	 13: Rel (   113,  -166)  ->  Abs (   830,   920)
+	 14: Rel (     0,   142)  ->  Abs (   830,  1062)
+	 15: Rel (   162,     0)  ->  Abs (   992,  1062)
+	 16: Rel (     0, -1469)  ->  Abs (   992,  -407)
+	 17: Rel (  -735,   941)  ->  Abs (   257,   534)
+	 18: Rel (     0,  -205)  ->  Abs (   257,   329)
+	 19: Rel (   172,  -205)  ->  Abs (   429,   124)
+	 20: Rel (   120,     0)  ->  Abs (   549,   124)
+	 21: Rel (   115,     0)  ->  Abs (   664,   124)
+	 22: Rel (   166,   195)  ->  Abs (   830,   319)
+	 23: Rel (     0,   199)  ->  Abs (   830,   518)
+	 24: Rel (     0,   212)  ->  Abs (   830,   730)
+	 25: Rel (  -175,   214)  ->  Abs (   655,   944)
+	 26: Rel (  -118,     0)  ->  Abs (   537,   944)
+	 27: Rel (  -117,     0)  ->  Abs (   420,   944)
+	 28: Rel (  -163,  -199)  ->  Abs (   257,   745)
+
+	Glyph  85: off = 0x00006BEA, len = 262
+	  numberOfContours:	1
+	  xMin:			133
+	  yMin:			0
+	  xMax:			710
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	201
+	00000: NPUSHB      (59):    47    19     1    16     4     1    35     4    52     4 
+	                            67     4    83     4   102     4   116     4     6     9 
+	                            17     8     9     8     9    13    19    17     9    13 
+	                             0     3     8     1    11    28     6     7     1     6 
+	                             0    10     9    40   144     8     1     8    34    32 
+	                            19     1    19     2    34    17    37     1     0 
+	00061: PUSHW[1]            -64 
+	00064: NPUSHB      (16):    51    54    52   240     0     1     0     0    32     0 
+	                           208     0   224     0     4     0 
+	00082: PUSHW[1]             -8 
+	00085: PUSHB[5]             16    16     2    85     0 
+	00091: PUSHW[1]             -8 
+	00094: NPUSHB      (17):    14    14     2    85     0     4    12    12     2    85 
+	                             0     6    11    11     2    85     0 
+	00113: PUSHW[1]             -4 
+	00116: PUSHB[5]             16    16     6    85     0 
+	00122: PUSHW[1]            -12 
+	00125: NPUSHB      (22):    15    15     6    85     0     6    12    12     6    85 
+	                             0     8    13    13     6    85     0    78    18    71 
+	                           196    24 
+	00149: CALL       
+	00150: SRP0       
+	00151: MIRP[srp0,nmd,rd,2] 
+	00152: CALL       
+	00153: CALL       
+	00154: CALL       
+	00155: CALL       
+	00156: CALL       
+	00157: CALL       
+	00158: CALL       
+	00159: CALL       
+	00160: DELTAP1    
+	00161: DELTAP2    
+	00162: CALL       
+	00163: ALIGNRP    
+	00164: MIRP[srp0,md,rd,1] 
+	00165: MIRP[nrp0,nmd,rd,0] 
+	00166: SRP0       
+	00167: DELTAP1    
+	00168: MIRP[srp0,nmd,rd,0] 
+	00169: DELTAP3    
+	00170: MIRP[nrp0,nmd,rd,0] 
+	00171: SVTCA[y-axis] 
+	00172: MIAP[rd+ci] 
+	00173: MIAP[rd+ci] 
+	00174: MIAP[rd+ci] 
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: SRP1       
+	00177: IP         
+	00178: IP         
+	00179: SRP1       
+	00180: IP         
+	00181: IP         
+	00182: SVTCA[x-axis] 
+	00183: SRP1       
+	00184: SRP2       
+	00185: IP         
+	00186: IP         
+	00187: SVTCA[y-axis] 
+	00188: SRP0       
+	00189: MDRP[nrp0,md,nrd,1] 
+	00190: SDPVTL[1]  
+	00191: SFVTPV     
+	00192: RDTG       
+	00193: MDRP[nrp0,nmd,rd,0] 
+	00194: IUP[y]     
+	00195: IUP[x]     
+	00196: SVTCA[y-axis] 
+	00197: DELTAP1    
+	00198: DELTAP3    
+	00199: SVTCA[x-axis] 
+	00200: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short On
+	  9:                      Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   133,     0)  ->  Abs (   133,     0)
+	  1: Rel (     0,  1062)  ->  Abs (   133,  1062)
+	  2: Rel (   162,     0)  ->  Abs (   295,  1062)
+	  3: Rel (     0,  -161)  ->  Abs (   295,   901)
+	  4: Rel (    62,   113)  ->  Abs (   357,  1014)
+	  5: Rel (   105,    72)  ->  Abs (   462,  1086)
+	  6: Rel (    63,     0)  ->  Abs (   525,  1086)
+	  7: Rel (    91,     0)  ->  Abs (   616,  1086)
+	  8: Rel (    94,   -58)  ->  Abs (   710,  1028)
+	  9: Rel (   -62,  -167)  ->  Abs (   648,   861)
+	 10: Rel (   -66,    39)  ->  Abs (   582,   900)
+	 11: Rel (   -66,     0)  ->  Abs (   516,   900)
+	 12: Rel (   -59,     0)  ->  Abs (   457,   900)
+	 13: Rel (   -94,   -71)  ->  Abs (   363,   829)
+	 14: Rel (   -20,   -63)  ->  Abs (   343,   766)
+	 15: Rel (   -30,   -96)  ->  Abs (   313,   670)
+	 16: Rel (     0,  -114)  ->  Abs (   313,   556)
+	 17: Rel (     0,  -556)  ->  Abs (   313,     0)
+
+	Glyph  86: off = 0x00006CF0, len = 936
+	  numberOfContours:	1
+	  xMin:			63
+	  yMin:			-24
+	  xMax:			945
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  48
+
+	  Length of Instructions:	791
+	00000: NPUSHB     (123):     4    34    20    34    58     9    74     9    68    36 
+	                            86    34   101    34   124     9   142     9   132    36 
+	                           166    19   171    44   194     3    13     9    23    26 
+	                            24    23    48    75    44   214    23     5    27     2 
+	                            85     2     2    16    50     1    10    24    92     8 
+	                            92     9    92    10    92    11    92    12    92    13 
+	                           106     8   106     9   106    10   106    11   106    12 
+	                           106    13   180    38   180    39    15    39    38    36 
+	                            39    36    41    54    36    90    10    89    11   100 
+	                            38   100    40   116    35   116    36   128    36   147 
+	                            10   156    12   146    40   151    44   149    48   164 
+	                            10   169    12   163    39   164    40   179    38   197 
+	                            38    22    40 
+	00125: PUSHW[1]            -12 
+	00128: PUSHB[5]             13    13     6    85    34 
+	00134: PUSHW[1]            -12 
+	00137: PUSHB[5]             13    13     6    85    35 
+	00143: PUSHW[1]            -12 
+	00146: PUSHB[5]             13    13     6    85    36 
+	00152: PUSHW[1]            -12 
+	00155: PUSHB[5]             13    13     6    85    40 
+	00161: PUSHW[1]            -12 
+	00164: PUSHB[5]             12    12     6    85    34 
+	00170: PUSHW[1]            -12 
+	00173: PUSHB[5]             12    12     6    85    35 
+	00179: PUSHW[1]            -12 
+	00182: PUSHB[5]             12    12     6    85    36 
+	00188: PUSHW[1]            -12 
+	00191: PUSHB[5]             12    12     6    85    29 
+	00197: PUSHW[1]            -34 
+	00200: NPUSHB      (18):    30    57    90     8    39    37    12    10     4    26 
+	                            32    38    21     4    11    46    29    26 
+	00220: PUSHW[1]            682 
+	00223: NPUSHB      (34):    25    44    11    11     2    85    31    25    63    25 
+	                            79    25    95    25   175    25   207    25     6    15 
+	                            25    31    25   111    25   223    25     4    31    25 
+	                           143    25     2    25 
+	00259: PUSHW[6]            597    21     0   682     1   -64 
+	00272: NPUSHB      (20):    11    11     2    85    16     1    64     1     2    16 
+	                             1   208     1     2     0     1    16     1     2     1 
+	00294: PUSHW[1]            -64 
+	00297: PUSHB[4]             20    22    52     1 
+	00302: PUSHW[1]            -64 
+	00305: NPUSHB      (16):    14    17    52     1     1    46    92    29   108    29 
+	                             2    29    28    21     7     4 
+	00323: PUSHW[1]            -12 
+	00326: PUSHB[5]             11    11     2    85     4 
+	00332: PUSHW[1]            -26 
+	00335: PUSHB[5]             16    16     6    85     4 
+	00341: PUSHW[1]            -26 
+	00344: NPUSHB      (19):    15    15     6    85     4    28    46    11    31    26 
+	                             1    26    36    25    64    19    24    52    50 
+	00365: PUSHW[1]            -64 
+	00368: NPUSHB      (47):    15    15     2    85    25    24    15    15     2    85 
+	                            25    24    13    13     2    85    25    22    12    12 
+	                             2    85    25    32    16    16     6    85    25    32 
+	                            15    15     6    85    25    16    12    12     6    85 
+	                            25    22    13    13     6    85    25 
+	00417: PUSHW[1]            603 
+	00420: PUSHB[3]              7    36    42 
+	00424: PUSHW[1]            -64 
+	00427: PUSHB[6]             28    57   208    42     1    42 
+	00434: PUSHW[1]            -26 
+	00437: PUSHB[5]             12    12     2    85    42 
+	00443: PUSHW[1]            -24 
+	00446: PUSHB[5]             15    15     2    85    42 
+	00452: PUSHW[1]            -24 
+	00455: PUSHB[5]             12    12     6    85    42 
+	00461: PUSHW[1]            -22 
+	00464: PUSHB[7]             13    13     6    85    42    26    50 
+	00472: PUSHW[1]            -64 
+	00475: NPUSHB      (33):    39    42    52    96    50   192    50     2    63    50 
+	                           128    50     2    50    16     1     1     1    36     0 
+	                            24    13    13     2    85     0    16    13    13     6 
+	                            85     0    32 
+	00510: PUSHW[1]            -12 
+	00513: PUSHB[5]             13    13     2    85    32 
+	00519: PUSHW[1]            -12 
+	00522: PUSHB[5]             16    16     6    85    32 
+	00528: PUSHW[1]            -12 
+	00531: NPUSHB      (25):    15    15     6    85    32    36    15    16    11    11 
+	                             2    85    15    22    12    12     2    85    15    32 
+	                            13    13     2    85    15 
+	00558: PUSHW[1]             -6 
+	00561: NPUSHB      (32):    15    15     2    85    15    14    12    12     6    85 
+	                            15    12    13    13     6    85    15    34   223     0 
+	                             1    63     0    79     0     2     0    25    49    52 
+	                            55    24 
+	00595: CALL       
+	00596: FLIPOFF    
+	00597: SRP0       
+	00598: MIRP[srp0,nmd,rd,0] 
+	00599: DELTAP1    
+	00600: DELTAP2    
+	00601: FLIPON     
+	00602: MIRP[srp0,nmd,rd,0] 
+	00603: CALL       
+	00604: CALL       
+	00605: CALL       
+	00606: CALL       
+	00607: CALL       
+	00608: CALL       
+	00609: MIRP[nrp0,md,rd,1] 
+	00610: CALL       
+	00611: CALL       
+	00612: CALL       
+	00613: SRP0       
+	00614: CALL       
+	00615: CALL       
+	00616: MIRP[nrp0,md,rd,1] 
+	00617: DELTAP3    
+	00618: FLIPOFF    
+	00619: SRP0       
+	00620: DELTAP1    
+	00621: DELTAP2    
+	00622: CALL       
+	00623: MIRP[srp0,nmd,rd,2] 
+	00624: CALL       
+	00625: CALL       
+	00626: CALL       
+	00627: CALL       
+	00628: DELTAP2    
+	00629: CALL       
+	00630: FLIPON     
+	00631: MIRP[nrp0,md,rd,1] 
+	00632: MIRP[srp0,nmd,rd,0] 
+	00633: CALL       
+	00634: CALL       
+	00635: CALL       
+	00636: CALL       
+	00637: CALL       
+	00638: CALL       
+	00639: CALL       
+	00640: CALL       
+	00641: CALL       
+	00642: MIRP[nrp0,md,rd,1] 
+	00643: DELTAP3    
+	00644: SVTCA[y-axis] 
+	00645: MIAP[rd+ci] 
+	00646: MIRP[nrp0,md,rd,1] 
+	00647: CALL       
+	00648: CALL       
+	00649: CALL       
+	00650: MIAP[rd+ci] 
+	00651: MIRP[nrp0,md,rd,1] 
+	00652: DELTAP2    
+	00653: SRP2       
+	00654: IP         
+	00655: MDAP[rd]   
+	00656: CALL       
+	00657: CALL       
+	00658: DELTAP1    
+	00659: DELTAP2    
+	00660: DELTAP3    
+	00661: CALL       
+	00662: MIRP[nrp0,nmd,rd,0] 
+	00663: SRP0       
+	00664: MIRP[srp0,md,rd,1] 
+	00665: DELTAP1    
+	00666: DELTAP2    
+	00667: DELTAP3    
+	00668: CALL       
+	00669: MIRP[nrp0,nmd,rd,0] 
+	00670: SRP1       
+	00671: SRP2       
+	00672: IP         
+	00673: SRP1       
+	00674: SRP2       
+	00675: IP         
+	00676: SVTCA[x-axis] 
+	00677: SRP1       
+	00678: SRP2       
+	00679: SLOOP      
+	00680: IP         
+	00681: IUP[y]     
+	00682: IUP[x]     
+	00683: RS         
+	00684: JROF       
+	00685: NPUSHB      (64):    39    45    30    35     5    20    44    38    17    16 
+	                            18    16    19    16     3     6    34    13    32    27 
+	                             0     9    40     7    27     1     5    45     7    27 
+	                             1    30    20    32    27     0    33    14    35    27 
+	                             0    34    35    13    12     8    41    10    27     1 
+	                            40    39     9    10     6    43     4    27     0    31 
+	                            16    29    27     1 
+	00751: SVTCA[y-axis] 
+	00752: CALL       
+	00753: CALL       
+	00754: SRP0       
+	00755: ALIGNRP    
+	00756: SRP0       
+	00757: ALIGNRP    
+	00758: CALL       
+	00759: SRP0       
+	00760: ALIGNRP    
+	00761: SRP0       
+	00762: ALIGNRP    
+	00763: CALL       
+	00764: SVTCA[x-axis] 
+	00765: CALL       
+	00766: CALL       
+	00767: CALL       
+	00768: CALL       
+	00769: LOOPCALL   
+	00770: CALL       
+	00771: FLIPRGON   
+	00772: FLIPRGON   
+	00773: FLIPRGON   
+	00774: SVTCA[y-axis] 
+	00775: CALL       
+	00776: CALL       
+	00777: CALL       
+	00778: CALL       
+	00779: CALL       
+	00780: CALL       
+	00781: CALL       
+	00782: CALL       
+	00783: CALL       
+	00784: DELTAP1    
+	00785: DELTAP2    
+	00786: SVTCA[x-axis] 
+	00787: DELTAP1    
+	00788: DELTAP3    
+	00789: DELTAP2    
+	00790: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual       Rep-  2 Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short On
+	 26:                      Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:                      Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:        XDual         Y-Short X-Short On
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short X-Short On
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short X-Short On
+	 39:        XDual Rep-  2 Y-Short X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:                      Y-Short X-Short Off
+	 45:                      Y-Short X-Short Off
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    63,   317)  ->  Abs (    63,   317)
+	  1: Rel (   178,    28)  ->  Abs (   241,   345)
+	  2: Rel (    15,  -107)  ->  Abs (   256,   238)
+	  3: Rel (   137,  -114)  ->  Abs (   393,   124)
+	  4: Rel (   123,     0)  ->  Abs (   516,   124)
+	  5: Rel (   124,     0)  ->  Abs (   640,   124)
+	  6: Rel (   120,   101)  ->  Abs (   760,   225)
+	  7: Rel (     0,    68)  ->  Abs (   760,   293)
+	  8: Rel (     0,    61)  ->  Abs (   760,   354)
+	  9: Rel (   -53,    35)  ->  Abs (   707,   389)
+	 10: Rel (   -37,    24)  ->  Abs (   670,   413)
+	 11: Rel (  -147,    37)  ->  Abs (   523,   450)
+	 12: Rel (  -198,    50)  ->  Abs (   325,   500)
+	 13: Rel (  -153,    73)  ->  Abs (   172,   573)
+	 14: Rel (   -79,   129)  ->  Abs (    93,   702)
+	 15: Rel (     0,    78)  ->  Abs (    93,   780)
+	 16: Rel (     0,    71)  ->  Abs (    93,   851)
+	 17: Rel (    65,   121)  ->  Abs (   158,   972)
+	 18: Rel (    56,    40)  ->  Abs (   214,  1012)
+	 19: Rel (    42,    31)  ->  Abs (   256,  1043)
+	 20: Rel (   145,    43)  ->  Abs (   401,  1086)
+	 21: Rel (    83,     0)  ->  Abs (   484,  1086)
+	 22: Rel (   125,     0)  ->  Abs (   609,  1086)
+	 23: Rel (   189,   -72)  ->  Abs (   798,  1014)
+	 24: Rel (    90,  -123)  ->  Abs (   888,   891)
+	 25: Rel (    17,  -103)  ->  Abs (   905,   788)
+	 26: Rel (  -176,   -24)  ->  Abs (   729,   764)
+	 27: Rel (   -12,    82)  ->  Abs (   717,   846)
+	 28: Rel (  -115,    92)  ->  Abs (   602,   938)
+	 29: Rel (  -105,     0)  ->  Abs (   497,   938)
+	 30: Rel (  -124,     0)  ->  Abs (   373,   938)
+	 31: Rel (  -106,   -82)  ->  Abs (   267,   856)
+	 32: Rel (     0,   -55)  ->  Abs (   267,   801)
+	 33: Rel (     0,   -35)  ->  Abs (   267,   766)
+	 34: Rel (    22,   -28)  ->  Abs (   289,   738)
+	 35: Rel (    22,   -29)  ->  Abs (   311,   709)
+	 36: Rel (    47,   -19)  ->  Abs (   358,   690)
+	 37: Rel (    27,   -10)  ->  Abs (   385,   680)
+	 38: Rel (   132,   -36)  ->  Abs (   517,   644)
+	 39: Rel (   191,   -51)  ->  Abs (   708,   593)
+	 40: Rel (   151,   -65)  ->  Abs (   859,   528)
+	 41: Rel (    86,  -124)  ->  Abs (   945,   404)
+	 42: Rel (     0,   -92)  ->  Abs (   945,   312)
+	 43: Rel (     0,   -90)  ->  Abs (   945,   222)
+	 44: Rel (  -105,  -159)  ->  Abs (   840,    63)
+	 45: Rel (  -198,   -87)  ->  Abs (   642,   -24)
+	 46: Rel (  -125,     0)  ->  Abs (   517,   -24)
+	 47: Rel (  -207,     0)  ->  Abs (   310,   -24)
+	 48: Rel (  -217,   172)  ->  Abs (    93,   148)
+
+	Glyph  87: off = 0x00007098, len = 292
+	  numberOfContours:	1
+	  xMin:			36
+	  yMin:			-14
+	  xMax:			554
+	  yMax:			1433
+
+	EndPoints
+	---------
+	  0:  23
+
+	  Length of Instructions:	216
+	00000: PUSHW[2]             10   -64 
+	00005: PUSHB[4]             35    38    52     9 
+	00010: PUSHW[1]            -64 
+	00013: NPUSHB      (65):    35    38    52   128    25     1     0     1    12    13 
+	                            10     1     3     0    22    16     9    43    15    10 
+	                             6    22    28     3    11    15    16    34     0    34 
+	                             1    13    18    37    12     1   255     7     8    69 
+	                             9    69    96     7   112     7   128     7   144     7 
+	                             4     0     7    32     7   160     7   176     7   192 
+	                             7   208     7     6     7 
+	00080: PUSHW[1]            -18 
+	00083: PUSHB[5]             16    16     2    85     7 
+	00089: PUSHW[1]            -12 
+	00092: PUSHB[5]             15    15     2    85     7 
+	00098: PUSHW[1]            -14 
+	00101: PUSHB[5]             14    14     2    85     7 
+	00107: PUSHW[1]             -8 
+	00110: PUSHB[5]             13    13     2    85     7 
+	00116: PUSHW[1]             -8 
+	00119: PUSHB[5]             12    12     2    85     7 
+	00125: PUSHW[1]             -6 
+	00128: PUSHB[5]             16    16     6    85     7 
+	00134: PUSHW[1]            -16 
+	00137: NPUSHB      (11):    15    15     6    85     7     6    12    12     6    85 
+	                             7 
+	00150: PUSHW[1]            -24 
+	00153: PUSHB[5]             13    13     6    85     7 
+	00159: PUSHW[3]            618    24   310 
+	00166: PUSHB[2]            102    24 
+	00169: CALL       
+	00170: SRP0       
+	00171: MIRP[srp0,nmd,rd,2] 
+	00172: CALL       
+	00173: CALL       
+	00174: CALL       
+	00175: CALL       
+	00176: CALL       
+	00177: CALL       
+	00178: CALL       
+	00179: CALL       
+	00180: CALL       
+	00181: DELTAP1    
+	00182: DELTAP2    
+	00183: MIRP[srp0,nmd,rd,0] 
+	00184: MIRP[nrp0,nmd,rd,0] 
+	00185: SRP0       
+	00186: MIRP[nrp0,md,rd,1] 
+	00187: ALIGNRP    
+	00188: MIRP[srp0,md,rd,1] 
+	00189: ALIGNRP    
+	00190: SRP0       
+	00191: MIRP[nrp0,nmd,rd,0] 
+	00192: MIRP[srp0,nmd,rd,0] 
+	00193: ALIGNRP    
+	00194: SVTCA[y-axis] 
+	00195: MIAP[rd+ci] 
+	00196: MIRP[nrp0,md,rd,1] 
+	00197: MIAP[rd+ci] 
+	00198: ALIGNRP    
+	00199: MIRP[srp0,md,rd,1] 
+	00200: ALIGNRP    
+	00201: SRP1       
+	00202: IP         
+	00203: SRP2       
+	00204: IP         
+	00205: SRP1       
+	00206: SHP[rp1,zp0] 
+	00207: SHP[rp1,zp0] 
+	00208: SRP0       
+	00209: MDRP[nrp0,md,nrd,1] 
+	00210: IUP[y]     
+	00211: IUP[x]     
+	00212: SVTCA[x-axis] 
+	00213: DELTAP1    
+	00214: CALL       
+	00215: CALL       
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                         On
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:        XDual                         On
+	 15:  YDual XDual                 X-Short On
+	 16:        XDual         Y-Short         On
+	 17:  YDual                       X-Short On
+	 18:        XDual                         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   528,   161)  ->  Abs (   528,   161)
+	  1: Rel (    26,  -159)  ->  Abs (   554,     2)
+	  2: Rel (   -76,   -16)  ->  Abs (   478,   -14)
+	  3: Rel (   -60,     0)  ->  Abs (   418,   -14)
+	  4: Rel (   -98,     0)  ->  Abs (   320,   -14)
+	  5: Rel (  -108,    62)  ->  Abs (   212,    48)
+	  6: Rel (   -44,   101)  ->  Abs (   168,   149)
+	  7: Rel (     0,   162)  ->  Abs (   168,   311)
+	  8: Rel (     0,   611)  ->  Abs (   168,   922)
+	  9: Rel (  -132,     0)  ->  Abs (    36,   922)
+	 10: Rel (     0,   140)  ->  Abs (    36,  1062)
+	 11: Rel (   132,     0)  ->  Abs (   168,  1062)
+	 12: Rel (     0,   263)  ->  Abs (   168,  1325)
+	 13: Rel (   179,   108)  ->  Abs (   347,  1433)
+	 14: Rel (     0,  -371)  ->  Abs (   347,  1062)
+	 15: Rel (   181,     0)  ->  Abs (   528,  1062)
+	 16: Rel (     0,  -140)  ->  Abs (   528,   922)
+	 17: Rel (  -181,     0)  ->  Abs (   347,   922)
+	 18: Rel (     0,  -621)  ->  Abs (   347,   301)
+	 19: Rel (     0,   -77)  ->  Abs (   347,   224)
+	 20: Rel (    19,   -44)  ->  Abs (   366,   180)
+	 21: Rel (    43,   -26)  ->  Abs (   409,   154)
+	 22: Rel (    40,     0)  ->  Abs (   449,   154)
+	 23: Rel (    30,     0)  ->  Abs (   479,   154)
+
+	Glyph  88: off = 0x000071BC, len = 414
+	  numberOfContours:	1
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			992
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  24
+
+	  Length of Instructions:	335
+	00000: PUSHW[2]             26   -64 
+	00005: NPUSHB       (9):    21    23    52     2    32    19    22    52    15 
+	00016: PUSHW[1]            -16 
+	00019: NPUSHB      (51):    18    20    52    43    19     1    36     8    19    22 
+	                            12     1    19    22    11     6     0    10    17    28 
+	                             3    11     0    51    22    37    24    23    64    51 
+	                            54    52    26    64    16    16     2    85    23    40 
+	                            16    16     2    85    23    18    14    14     2    85 
+	                            23 
+	00072: PUSHW[1]            -20 
+	00075: NPUSHB      (11):    13    13     2    85    23     4    12    12     2    85 
+	                            23 
+	00088: PUSHW[1]            -12 
+	00091: NPUSHB      (11):    11    11     6    85    23    20    16    16     6    85 
+	                            23 
+	00104: PUSHW[1]             -8 
+	00107: NPUSHB      (11):    13    13     6    85    23    12    15    15     6    85 
+	                            23 
+	00120: PUSHW[1]            -10 
+	00123: NPUSHB      (13):    12    12     6    85   255    23     1   192    23     1 
+	                            23    78    26 
+	00138: PUSHW[1]            -64 
+	00141: NPUSHB      (21):    52    54    52   176    26   240    26     2   112    26 
+	                           160    26   176    26   255    26     4    26    12    37 
+	                             9 
+	00164: PUSHW[1]            -64 
+	00167: NPUSHB      (16):    51    54    52   240     9     1     0     9    32     9 
+	                           208     9   224     9     4     9 
+	00185: PUSHW[1]             -8 
+	00188: PUSHB[5]             16    16     2    85     9 
+	00194: PUSHW[1]             -8 
+	00197: NPUSHB      (17):    14    14     2    85     9     4    12    12     2    85 
+	                             9    10    11    11     6    85     9 
+	00216: PUSHW[1]            -10 
+	00219: NPUSHB      (22):    15    15     6    85     9     2    12    12     6    85 
+	                             9     2    13    13     6    85     9    78    25    71 
+	                            80    24 
+	00243: CALL       
+	00244: SRP0       
+	00245: MIRP[srp0,nmd,rd,2] 
+	00246: CALL       
+	00247: CALL       
+	00248: CALL       
+	00249: CALL       
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+	00253: DELTAP1    
+	00254: DELTAP2    
+	00255: CALL       
+	00256: MIRP[nrp0,md,rd,1] 
+	00257: SRP0       
+	00258: DELTAP1    
+	00259: DELTAP2    
+	00260: CALL       
+	00261: MIRP[srp0,nmd,rd,2] 
+	00262: DELTAP1    
+	00263: DELTAP2    
+	00264: CALL       
+	00265: CALL       
+	00266: CALL       
+	00267: CALL       
+	00268: CALL       
+	00269: CALL       
+	00270: CALL       
+	00271: CALL       
+	00272: CALL       
+	00273: CALL       
+	00274: CALL       
+	00275: ALIGNRP    
+	00276: MIRP[srp0,md,rd,1] 
+	00277: MIRP[nrp0,nmd,rd,0] 
+	00278: SVTCA[y-axis] 
+	00279: MIAP[rd+ci] 
+	00280: MIRP[nrp0,md,rd,1] 
+	00281: MIAP[rd+ci] 
+	00282: MIAP[rd+ci] 
+	00283: ALIGNRP    
+	00284: IP         
+	00285: IP         
+	00286: SVTCA[x-axis] 
+	00287: SRP1       
+	00288: SRP2       
+	00289: IP         
+	00290: IUP[y]     
+	00291: IUP[x]     
+	00292: RS         
+	00293: JROF       
+	00294: NPUSHB      (26):     4    16    14    13    15    13     2     6     7     8 
+	                             6     8     5     8     3     6    16     4    12    27 
+	                             0    13     8    17    27     0 
+	00322: SVTCA[y-axis] 
+	00323: CALL       
+	00324: SVTCA[x-axis] 
+	00325: CALL       
+	00326: LOOPCALL   
+	00327: LOOPCALL   
+	00328: FLIPRGON   
+	00329: SVTCA[y-axis] 
+	00330: DELTAP1    
+	00331: SVTCA[x-axis] 
+	00332: CALL       
+	00333: CALL       
+	00334: CALL       
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual XDual         Y-Short         On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:        XDual                         On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                         On
+	 13:        XDual         Y-Short         Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:        XDual                         On
+	 23:  YDual XDual                 X-Short On
+	 24:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   831,     0)  ->  Abs (   831,     0)
+	  1: Rel (     0,   156)  ->  Abs (   831,   156)
+	  2: Rel (  -124,  -180)  ->  Abs (   707,   -24)
+	  3: Rel (  -213,     0)  ->  Abs (   494,   -24)
+	  4: Rel (   -94,     0)  ->  Abs (   400,   -24)
+	  5: Rel (  -163,    72)  ->  Abs (   237,    48)
+	  6: Rel (   -79,   109)  ->  Abs (   158,   157)
+	  7: Rel (   -16,    79)  ->  Abs (   142,   236)
+	  8: Rel (   -11,    53)  ->  Abs (   131,   289)
+	  9: Rel (     0,   115)  ->  Abs (   131,   404)
+	 10: Rel (     0,   658)  ->  Abs (   131,  1062)
+	 11: Rel (   180,     0)  ->  Abs (   311,  1062)
+	 12: Rel (     0,  -589)  ->  Abs (   311,   473)
+	 13: Rel (     0,  -141)  ->  Abs (   311,   332)
+	 14: Rel (    11,   -49)  ->  Abs (   322,   283)
+	 15: Rel (    17,   -71)  ->  Abs (   339,   212)
+	 16: Rel (   110,   -81)  ->  Abs (   449,   131)
+	 17: Rel (    81,     0)  ->  Abs (   530,   131)
+	 18: Rel (    81,     0)  ->  Abs (   611,   131)
+	 19: Rel (   142,    83)  ->  Abs (   753,   214)
+	 20: Rel (    59,   143)  ->  Abs (   812,   357)
+	 21: Rel (     0,   136)  ->  Abs (   812,   493)
+	 22: Rel (     0,   569)  ->  Abs (   812,  1062)
+	 23: Rel (   180,     0)  ->  Abs (   992,  1062)
+	 24: Rel (     0, -1062)  ->  Abs (   992,     0)
+
+	Glyph  89: off = 0x0000735A, len = 542
+	  numberOfContours:	1
+	  xMin:			26
+	  yMin:			0
+	  xMax:			1000
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  10
+
+	  Length of Instructions:	490
+	00000: PUSHB[2]              2     2 
+	00003: RS         
+	00004: EQ         
+	00005: IF         
+	00006: NPUSHB      (23):     5     8     0    10     8     6     1     6    10     0 
+	                             5     9     8     5     1     2     5    36    15    15 
+	                             2    85     5 
+	00031: MDAP[rd]   
+	00032: CALL       
+	00033: MDRP[srp0,md,rd,1] 
+	00034: MDRP[nrp0,md,rd,1] 
+	00035: SRP0       
+	00036: MDRP[srp0,md,rd,1] 
+	00037: MDRP[nrp0,md,rd,1] 
+	00038: SRP1       
+	00039: SHP[rp1,zp0] 
+	00040: SHP[rp1,zp0] 
+	00041: SVTCA[y-axis] 
+	00042: MIAP[rd+ci] 
+	00043: MIAP[rd+ci] 
+	00044: MIAP[rd+ci] 
+	00045: SRP2       
+	00046: IP         
+	00047: IUP[y]     
+	00048: IUP[x]     
+	00049: ELSE       
+	00050: PUSHB[8]             53     5     1     0    34    17    57    10 
+	00059: PUSHW[1]            -34 
+	00062: NPUSHB      (13):    17    57     9    22    18    28    52     8    22    18 
+	                            28    52     2 
+	00077: PUSHW[1]            -22 
+	00080: PUSHB[4]             18    28    52     1 
+	00085: PUSHW[1]            -22 
+	00088: PUSHB[4]             18    28    52    10 
+	00093: PUSHW[1]            -40 
+	00096: NPUSHB       (9):    30    33    52     0    40    30    33    52    10 
+	00107: PUSHW[1]            -24 
+	00110: NPUSHB       (9):    34    37    52     0    22    34    37    52    10 
+	00121: PUSHW[1]            -38 
+	00124: NPUSHB     (126):    40    46    52     0    32    40    46    52    15    12 
+	                            41     0    40     9    38    10    57     0    53    10 
+	                            72     0    71    10    86     1    86     2    89     8 
+	                            88     9   102     1   102     2   105     8   105     9 
+	                           120     0   119     1   119     2   121     8   120     9 
+	                           119    10   135     1   135     2   134     3   137     7 
+	                           136     8   138     9   157     0   152     9   145    10 
+	                           172     0   162    10   189     0   183     7   177    10 
+	                           201     0   197    10   218     0   213    10   236     0 
+	                           227    10   251     0   244    10    44    10     0     5 
+	                            10    24     0    22    10    40     0    38    10    55 
+	                            10    79     0    64    10     9     5    64    18    22 
+	                            52     5    64    11    13    52 
+	00252: PUSHB[2]              6     2 
+	00255: RS         
+	00256: EQ         
+	00257: IF         
+	00258: NPUSHB       (9):     5     1     0     8     6     1     6     0    10 
+	00269: PUSHW[1]            -12 
+	00272: NPUSHB      (15):    13    13     6    85    10     0    12    13    13     6 
+	                            85     0     5     9     8 
+	00289: PUSHW[1]            -12 
+	00292: NPUSHB      (18):    13    13     6    85     8     5     1     2    12    13 
+	                            13     6    85     2     5     5    12    11 
+	00312: SRP1       
+	00313: SRP2       
+	00314: IP         
+	00315: MDAP[rd]   
+	00316: MDRP[srp0,md,rd,1] 
+	00317: CALL       
+	00318: MDRP[nrp0,md,rd,1] 
+	00319: SRP0       
+	00320: MDRP[srp0,md,rd,1] 
+	00321: CALL       
+	00322: MDRP[nrp0,md,rd,1] 
+	00323: SRP0       
+	00324: MDRP[nrp0,md,rd,1] 
+	00325: CALL       
+	00326: MDRP[nrp0,md,rd,1] 
+	00327: CALL       
+	00328: SVTCA[y-axis] 
+	00329: MDAP[rd]   
+	00330: MIAP[rd+ci] 
+	00331: MIAP[rd+ci] 
+	00332: SRP1       
+	00333: SRP2       
+	00334: IP         
+	00335: IUP[y]     
+	00336: IUP[x]     
+	00337: ELSE       
+	00338: NPUSHB      (55):    10     7     8     8    37     9    10    20     9     9 
+	                            10     0     3     2     2    37     1     0    20     1 
+	                             1     0     5    10    10     0    10     9     8     8 
+	                             2     2     1     6     7    10     9     3     0     1 
+	                             5    47    12     1    12    34     8    64    64    64 
+	                             9   128     9     2     9 
+	00395: PUSHW[1]            283 
+	00398: PUSHB[6]             64     5   128     5     2     5 
+	00405: PUSHW[1]            283 
+	00408: NPUSHB       (9):    32     2    64     1    34    11   234   210    24 
+	00419: CALL       
+	00420: SRP0       
+	00421: MIRP[srp0,nmd,rd,2] 
+	00422: MIRP[nrp0,md,rd,1] 
+	00423: SMD        
+	00424: RTHG       
+	00425: MIRP[srp0,md,rd,1] 
+	00426: DELTAP1    
+	00427: MIRP[srp0,md,rd,1] 
+	00428: DELTAP1    
+	00429: SMD        
+	00430: RTG        
+	00431: MIRP[nrp0,md,rd,1] 
+	00432: MIRP[nrp0,nmd,rd,0] 
+	00433: DELTAP1    
+	00434: SRP1       
+	00435: SRP2       
+	00436: IP         
+	00437: IP         
+	00438: SRP2       
+	00439: IP         
+	00440: IP         
+	00441: SVTCA[y-axis] 
+	00442: MIAP[rd+ci] 
+	00443: ALIGNRP    
+	00444: SRP0       
+	00445: ALIGNRP    
+	00446: SRP0       
+	00447: ALIGNRP    
+	00448: MIAP[rd+ci] 
+	00449: ALIGNRP    
+	00450: SRP1       
+	00451: IP         
+	00452: SDPVTL[1]  
+	00453: SFVTCA[x-axis] 
+	00454: MDAP[nrd]  
+	00455: CALL       
+	00456: SDPVTL[1]  
+	00457: RDTG       
+	00458: MDRP[nrp0,nmd,rd,0] 
+	00459: SDPVTL[1]  
+	00460: MDAP[nrd]  
+	00461: RTG        
+	00462: CALL       
+	00463: SDPVTL[1]  
+	00464: RDTG       
+	00465: MDRP[nrp0,nmd,rd,0] 
+	00466: EIF        
+	00467: IUP[y]     
+	00468: IUP[x]     
+	00469: SVTCA[y-axis] 
+	00470: CALL       
+	00471: CALL       
+	00472: SVTCA[x-axis] 
+	00473: DELTAP2    
+	00474: DELTAP1    
+	00475: CALL       
+	00476: CALL       
+	00477: CALL       
+	00478: CALL       
+	00479: CALL       
+	00480: CALL       
+	00481: CALL       
+	00482: CALL       
+	00483: CALL       
+	00484: CALL       
+	00485: CALL       
+	00486: CALL       
+	00487: SVTCA[y-axis] 
+	00488: DELTAP1    
+	00489: EIF        
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                 X-Short On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual                 X-Short On
+	  9:  YDual XDual                 X-Short On
+	 10:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   430,     0)  ->  Abs (   430,     0)
+	  1: Rel (  -404,  1062)  ->  Abs (    26,  1062)
+	  2: Rel (   190,     0)  ->  Abs (   216,  1062)
+	  3: Rel (   228,  -636)  ->  Abs (   444,   426)
+	  4: Rel (    37,  -103)  ->  Abs (   481,   323)
+	  5: Rel (    31,  -111)  ->  Abs (   512,   212)
+	  6: Rel (    24,    84)  ->  Abs (   536,   296)
+	  7: Rel (    43,   118)  ->  Abs (   579,   414)
+	  8: Rel (   236,   648)  ->  Abs (   815,  1062)
+	  9: Rel (   185,     0)  ->  Abs (  1000,  1062)
+	 10: Rel (  -402, -1062)  ->  Abs (   598,     0)
+
+	Glyph  90: off = 0x00007578, len = 1130
+	  numberOfContours:	1
+	  xMin:			6
+	  yMin:			0
+	  xMax:			1463
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	1053
+	00000: PUSHB[2]              2     2 
+	00003: RS         
+	00004: EQ         
+	00005: IF         
+	00006: PUSHW[2]             18   -12 
+	00011: NPUSHB      (17):    13    13     2    85     7     6    13    13     2    85 
+	                             0     6    13    13     2    85    10 
+	00030: PUSHW[1]            -44 
+	00033: PUSHB[5]             12    13     2    85     4 
+	00039: PUSHW[1]            -24 
+	00042: NPUSHB      (11):    12    13     2    85    17    32    12    13     2    85 
+	                            10 
+	00055: PUSHW[1]            -64 
+	00058: PUSHB[5]             14    16     2    85     4 
+	00064: PUSHW[1]            -64 
+	00067: NPUSHB      (47):    14    16     2    85    17    64    14    16     2    85 
+	                             4    10    17     3     1     0    12     6     7     6 
+	                             1     6    15    10     0    10    13    12     6    12 
+	                            12     2    85    12    17     1     2     4    10     4 
+	                            17    10    12    12     2    85    17 
+	00116: PUSHW[1]             -8 
+	00119: PUSHB[5]             13    13     2    85    17 
+	00125: MDAP[rd]   
+	00126: CALL       
+	00127: CALL       
+	00128: MDRP[nrp0,md,rd,1] 
+	00129: MDRP[nrp0,md,rd,1] 
+	00130: SRP0       
+	00131: MDRP[srp0,nmd,rd,2] 
+	00132: MDRP[nrp0,md,rd,1] 
+	00133: SRP0       
+	00134: MDRP[srp0,nmd,rd,0] 
+	00135: CALL       
+	00136: MDRP[nrp0,md,rd,1] 
+	00137: SVTCA[y-axis] 
+	00138: MIAP[rd+ci] 
+	00139: MIAP[rd+ci] 
+	00140: MIAP[rd+ci] 
+	00141: MIAP[rd+ci] 
+	00142: MIAP[rd+ci] 
+	00143: SRP1       
+	00144: SRP2       
+	00145: SLOOP      
+	00146: IP         
+	00147: IUP[y]     
+	00148: IUP[x]     
+	00149: SVTCA[y-axis] 
+	00150: CALL       
+	00151: CALL       
+	00152: CALL       
+	00153: CALL       
+	00154: CALL       
+	00155: CALL       
+	00156: SVTCA[x-axis] 
+	00157: CALL       
+	00158: CALL       
+	00159: CALL       
+	00160: ELSE       
+	00161: NPUSHB      (22):    15    20     1    42     4    41    10     2    74    17 
+	                            91    17   142    17     3    17    32    13    13     6 
+	                            85    10 
+	00185: PUSHW[1]            -32 
+	00188: PUSHB[5]             13    13     6    85     4 
+	00194: PUSHW[1]            -32 
+	00197: PUSHB[5]             13    13     6    85    17 
+	00203: PUSHW[1]            -16 
+	00206: NPUSHB       (9):    31    33    52    16    28    29    39    52     9 
+	00217: PUSHW[1]            -16 
+	00220: NPUSHB     (183):    31    36    52     4     6    12     9    19     6    27 
+	                             9    25    18     5     4     0     4     6    11     9 
+	                            11    14     8    18    16     0    19     3    20     7 
+	                            28     8    27    11    29    14    36     0    37     7 
+	                            42     8    43    14    52     0    53     7    58     8 
+	                            59    14    68     3    71     6    64     7    77     8 
+	                            75    11    67    15    71    17    74    18    91    15 
+	                            82    18   107     7   100     8   103    18   121     6 
+	                           122     7   116     8   185     6   186    15   182    18 
+	                           245     6   251     9    40    11    17    40     0    40 
+	                            13    39    14    40    15    39    18    47    20    56 
+	                             0    55    18   119     8   134     8   152     3   151 
+	                            12   167     1   168     2   168    11   166    12   181 
+	                             0   182     6   186    14   200     4   214     6   217 
+	                             9   232     4   232    15   231    18   244     6   250 
+	                             9    28    11     6    13    13     6    85    12     6 
+	                            13    13     6    85    16     6    13    13     6    85 
+	                            14     6    13    13     6    85    15     6    13    13 
+	                             6    85    18 
+	00405: PUSHB[2]              6     2 
+	00408: RS         
+	00409: EQ         
+	00410: IF         
+	00411: NPUSHB      (27):    10    14    15     4    18     0    17     8     7     8 
+	                            37     7    15    37    14    18    37     0     0    14 
+	                             7     3    13     1    12    37    13 
+	00440: PUSHW[1]            -42 
+	00443: NPUSHB      (55):    11    11     6    85    13     2    37     1    42    11 
+	                            11     6    85     1    13     1    20    19     6    10 
+	                            11    17    38    10    43    17    84     4    82    10 
+	                            92    17   108    17   124    17   138    17    10    17 
+	                            10     4     3     0     1    15    10     0    10    12 
+	                             6     7     6     1     6 
+	00500: SVTCA[y-axis] 
+	00501: MIAP[rd+ci] 
+	00502: MIAP[rd+ci] 
+	00503: MIAP[rd+ci] 
+	00504: MIAP[rd+ci] 
+	00505: MIAP[rd+ci] 
+	00506: SRP1       
+	00507: SRP2       
+	00508: SLOOP      
+	00509: IP         
+	00510: DELTAP1    
+	00511: SVTCA[x-axis] 
+	00512: SRP1       
+	00513: SRP2       
+	00514: IP         
+	00515: IP         
+	00516: MDAP[rd]   
+	00517: CALL       
+	00518: MIRP[srp0,nmd,rd,0] 
+	00519: MDAP[rd]   
+	00520: CALL       
+	00521: MIRP[srp0,nmd,rd,0] 
+	00522: SRP1       
+	00523: SRP2       
+	00524: SLOOP      
+	00525: IP         
+	00526: SRP0       
+	00527: MIRP[nrp0,nmd,rd,0] 
+	00528: SRP0       
+	00529: MIRP[nrp0,nmd,rd,0] 
+	00530: SRP0       
+	00531: MIRP[nrp0,nmd,rd,0] 
+	00532: SRP1       
+	00533: SRP2       
+	00534: IP         
+	00535: SRP1       
+	00536: SRP2       
+	00537: IP         
+	00538: SRP1       
+	00539: SRP2       
+	00540: IP         
+	00541: ELSE       
+	00542: NPUSHB      (20):     3     5     5     2     6     7     7     5     9    10 
+	                            10     8    11    12    12    10    16    17    17    15 
+	00564: PUSHW[1]           -181 
+	00567: PUSHB[4]              5     0    18    32 
+	00572: PUSHW[1]           -183 
+	00575: NPUSHB     (102):    10    15    14    32   195    17     7     8    32     7 
+	                            17    18    18    43     5     7    20     5     5     7 
+	                            14    10    12    12    37    13    14    20    13    13 
+	                            14     8    17    15    15    43    10     8    20    10 
+	                            10     8     0     5     2     2    37     1     0    20 
+	                             1     1     0     0     2     1     7    18     4     8 
+	                            15    17    12    14    13    10    17    10     4     3 
+	                            18    13    12    12     8     8     7     7     2     2 
+	                             1     6    18    15    15    14    14     0    10    20 
+	                           246    16    13     1    96    13   112    13   128    13 
+	                             3    13 
+	00679: PUSHW[1]            423 
+	00682: NPUSHB      (10):    32    79    10     1   111    10   127    10     2    10 
+	00694: PUSHW[1]            597 
+	00697: NPUSHB       (9):    79    17     1   111    17   127    17     2    17 
+	00708: PUSHW[1]            597 
+	00711: NPUSHB      (11):    16     5     1    96     5   112     5   128     5     3 
+	                             5 
+	00724: PUSHW[1]            423 
+	00727: PUSHB[6]              1   246    19   246   102    24 
+	00734: CALL       
+	00735: FLIPOFF    
+	00736: SRP0       
+	00737: MIRP[srp0,nmd,rd,0] 
+	00738: RTHG       
+	00739: FLIPON     
+	00740: MIRP[srp0,nmd,rd,0] 
+	00741: DELTAP1    
+	00742: DELTAP1    
+	00743: RTG        
+	00744: MIRP[srp0,md,rd,1] 
+	00745: DELTAP1    
+	00746: DELTAP2    
+	00747: MIRP[srp0,md,rd,1] 
+	00748: DELTAP1    
+	00749: DELTAP2    
+	00750: SMD        
+	00751: RTHG       
+	00752: MIRP[srp0,md,rd,1] 
+	00753: DELTAP1    
+	00754: DELTAP1    
+	00755: RTG        
+	00756: MIRP[nrp0,nmd,rd,2] 
+	00757: SVTCA[y-axis] 
+	00758: MIAP[rd+ci] 
+	00759: ALIGNRP    
+	00760: SRP0       
+	00761: ALIGNRP    
+	00762: SRP0       
+	00763: ALIGNRP    
+	00764: MIAP[rd+ci] 
+	00765: ALIGNRP    
+	00766: SRP0       
+	00767: ALIGNRP    
+	00768: SRP0       
+	00769: ALIGNRP    
+	00770: SRP0       
+	00771: ALIGNRP    
+	00772: SRP0       
+	00773: ALIGNRP    
+	00774: SRP2       
+	00775: SLOOP      
+	00776: IP         
+	00777: SVTCA[x-axis] 
+	00778: SRP1       
+	00779: SRP2       
+	00780: IP         
+	00781: IP         
+	00782: SRP2       
+	00783: IP         
+	00784: IP         
+	00785: SRP1       
+	00786: IP         
+	00787: IP         
+	00788: SRP2       
+	00789: IP         
+	00790: IP         
+	00791: SDPVTL[1]  
+	00792: FLIPON     
+	00793: MDAP[nrd]  
+	00794: CALL       
+	00795: SDPVTL[1]  
+	00796: RDTG       
+	00797: MDRP[nrp0,nmd,rd,0] 
+	00798: SDPVTL[1]  
+	00799: MDAP[nrd]  
+	00800: RTG        
+	00801: CALL       
+	00802: SDPVTL[1]  
+	00803: RDTG       
+	00804: MDRP[nrp0,nmd,rd,0] 
+	00805: SDPVTL[1]  
+	00806: MDAP[nrd]  
+	00807: RTG        
+	00808: CALL       
+	00809: SDPVTL[1]  
+	00810: RDTG       
+	00811: MDRP[nrp0,nmd,rd,0] 
+	00812: SDPVTL[1]  
+	00813: MDAP[nrd]  
+	00814: RTG        
+	00815: CALL       
+	00816: SDPVTL[1]  
+	00817: RDTG       
+	00818: MDRP[nrp0,nmd,rd,0] 
+	00819: CALL       
+	00820: CALL       
+	00821: CALL       
+	00822: SDPVTL[1]  
+	00823: SFVTPV     
+	00824: SRP0       
+	00825: MDRP[nrp0,nmd,rd,0] 
+	00826: SPVTL[p1,p2] 
+	00827: SFVTPV     
+	00828: SRP0       
+	00829: ALIGNRP    
+	00830: SPVTL[p1,p2] 
+	00831: SFVTPV     
+	00832: SRP0       
+	00833: ALIGNRP    
+	00834: SDPVTL[1]  
+	00835: SFVTPV     
+	00836: SRP0       
+	00837: MDRP[nrp0,nmd,rd,0] 
+	00838: SDPVTL[1]  
+	00839: SFVTPV     
+	00840: SRP0       
+	00841: MDRP[nrp0,nmd,rd,0] 
+	00842: MPPEM      
+	00843: PUSHB[1]             31 
+	00845: GTEQ       
+	00846: IF         
+	00847: PUSHB[5]             13    32    12    32     2 
+	00853: PUSHW[5]            -32     1   -32    14   -48 
+	00864: PUSHB[5]              0    48    15    32    18 
+	00870: PUSHW[1]            -32 
+	00873: SVTCA[x-axis] 
+	00874: SHPIX      
+	00875: SHPIX      
+	00876: SHPIX      
+	00877: SHPIX      
+	00878: SHPIX      
+	00879: SHPIX      
+	00880: SHPIX      
+	00881: SHPIX      
+	00882: EIF        
+	00883: MPPEM      
+	00884: PUSHB[1]             52 
+	00886: GTEQ       
+	00887: IF         
+	00888: PUSHW[2]              8   -48 
+	00893: PUSHB[2]              7    48 
+	00896: SVTCA[x-axis] 
+	00897: SHPIX      
+	00898: SHPIX      
+	00899: EIF        
+	00900: MPPEM      
+	00901: PUSHB[1]             33 
+	00903: GTEQ       
+	00904: MPPEM      
+	00905: PUSHB[1]             51 
+	00907: LTEQ       
+	00908: AND        
+	00909: IF         
+	00910: PUSHW[2]              8   -32 
+	00915: PUSHB[2]              7    32 
+	00918: SVTCA[x-axis] 
+	00919: SHPIX      
+	00920: SHPIX      
+	00921: EIF        
+	00922: MPPEM      
+	00923: PUSHB[1]             18 
+	00925: GTEQ       
+	00926: MPPEM      
+	00927: PUSHB[1]             30 
+	00929: LTEQ       
+	00930: AND        
+	00931: IF         
+	00932: PUSHW[2]             14   -48 
+	00937: PUSHB[7]             15    32    13    32    12    32     8 
+	00945: PUSHW[1]            -48 
+	00948: PUSHB[3]              7    48    18 
+	00952: PUSHW[1]            -32 
+	00955: PUSHB[3]              0    56     2 
+	00959: PUSHW[3]            -32     1   -32 
+	00966: SVTCA[x-axis] 
+	00967: SHPIX      
+	00968: SHPIX      
+	00969: SHPIX      
+	00970: SHPIX      
+	00971: SHPIX      
+	00972: SHPIX      
+	00973: SHPIX      
+	00974: SHPIX      
+	00975: SHPIX      
+	00976: SHPIX      
+	00977: EIF        
+	00978: MPPEM      
+	00979: PUSHB[1]             18 
+	00981: GTEQ       
+	00982: MPPEM      
+	00983: PUSHB[1]             23 
+	00985: LTEQ       
+	00986: AND        
+	00987: IF         
+	00988: PUSHW[2]             17   -32 
+	00993: PUSHB[4]             10    32     4    32 
+	00998: SVTCA[y-axis] 
+	00999: SHPIX      
+	01000: SHPIX      
+	01001: SHPIX      
+	01002: EIF        
+	01003: EIF        
+	01004: IUP[y]     
+	01005: IUP[x]     
+	01006: SVTCA[x-axis] 
+	01007: RS         
+	01008: NOT        
+	01009: IF         
+	01010: PUSHW[2]             14   -44 
+	01015: PUSHB[7]             18    57     0    44    18    57     0 
+	01023: PUSHW[1]            -44 
+	01026: PUSHB[2]             19    57 
+	01029: CALL       
+	01030: CALL       
+	01031: CALL       
+	01032: EIF        
+	01033: CALL       
+	01034: CALL       
+	01035: CALL       
+	01036: CALL       
+	01037: CALL       
+	01038: DELTAP1    
+	01039: DELTAP2    
+	01040: DELTAP3    
+	01041: CALL       
+	01042: CALL       
+	01043: CALL       
+	01044: SVTCA[y-axis] 
+	01045: CALL       
+	01046: CALL       
+	01047: CALL       
+	01048: DELTAP2    
+	01049: DELTAP1    
+	01050: SVTCA[x-axis] 
+	01051: DELTAP1    
+	01052: EIF        
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                 X-Short On
+	  4:        XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:        XDual                 X-Short On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual                 X-Short On
+	 10:        XDual         Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:        XDual                 X-Short On
+	 13:  YDual XDual                 X-Short On
+	 14:                                      On
+	 15:  YDual                       X-Short On
+	 16:                              X-Short On
+	 17:  YDual               Y-Short X-Short On
+	 18:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   331,     0)  ->  Abs (   331,     0)
+	  1: Rel (  -325,  1062)  ->  Abs (     6,  1062)
+	  2: Rel (   186,     0)  ->  Abs (   192,  1062)
+	  3: Rel (   169,  -613)  ->  Abs (   361,   449)
+	  4: Rel (    63,  -228)  ->  Abs (   424,   221)
+	  5: Rel (     4,    17)  ->  Abs (   428,   238)
+	  6: Rel (    51,   202)  ->  Abs (   479,   440)
+	  7: Rel (   169,   622)  ->  Abs (   648,  1062)
+	  8: Rel (   185,     0)  ->  Abs (   833,  1062)
+	  9: Rel (   159,  -616)  ->  Abs (   992,   446)
+	 10: Rel (    53,  -203)  ->  Abs (  1045,   243)
+	 11: Rel (    61,   205)  ->  Abs (  1106,   448)
+	 12: Rel (   182,   614)  ->  Abs (  1288,  1062)
+	 13: Rel (   175,     0)  ->  Abs (  1463,  1062)
+	 14: Rel (  -332, -1062)  ->  Abs (  1131,     0)
+	 15: Rel (  -187,     0)  ->  Abs (   944,     0)
+	 16: Rel (  -169,   636)  ->  Abs (   775,   636)
+	 17: Rel (   -41,   181)  ->  Abs (   734,   817)
+	 18: Rel (  -215,  -817)  ->  Abs (   519,     0)
+
+	Glyph  91: off = 0x000079E2, len = 548
+	  numberOfContours:	1
+	  xMin:			15
+	  yMin:			0
+	  xMax:			1009
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  16
+
+	  Length of Instructions:	476
+	00000: PUSHB[2]              2     2 
+	00003: RS         
+	00004: EQ         
+	00005: IF         
+	00006: NPUSHB      (21):    15     1    11     6     4     2     9     6     2     6 
+	                            13    10     0    10    15    24    15    15     2    85 
+	                            15 
+	00029: MDAP[rd]   
+	00030: CALL       
+	00031: SVTCA[y-axis] 
+	00032: MIAP[rd+ci] 
+	00033: MIAP[rd+ci] 
+	00034: MIAP[rd+ci] 
+	00035: MIAP[rd+ci] 
+	00036: SRP1       
+	00037: SLOOP      
+	00038: IP         
+	00039: IUP[y]     
+	00040: IUP[x]     
+	00041: ELSE       
+	00042: PUSHB[8]             15    18     1    15    34    25    57     6 
+	00051: PUSHW[1]            -34 
+	00054: NPUSHB      (80):    25    57    90    15   150     4   150     8   153    14 
+	                           154    15   192     5   192     6   192     7   203    15 
+	                             9    15    64    22    57    26     3    19     9    21 
+	                            13    26    16    53     1    58    11   129     1   142 
+	                            11     8    47    18    87     4    89     7    89    11 
+	                            88    14   151     1   152    10   152    11   183     2 
+	                           184    12   200    11   202    14   204    16   218     3 
+	                           213     9   209    13   219    16   229    10    18    18 
+	00136: PUSHB[2]              6     2 
+	00139: RS         
+	00140: EQ         
+	00141: IF         
+	00142: NPUSHB      (11):    12     0    18    17    15    24    13    16     6    85 
+	                             6 
+	00155: PUSHW[1]            -24 
+	00158: NPUSHB      (14):    13    16     6    85    15     6     0     2    13     0 
+	                            10    10     2     6 
+	00174: SVTCA[y-axis] 
+	00175: MIAP[rd+ci] 
+	00176: ALIGNRP    
+	00177: MIAP[rd+ci] 
+	00178: ALIGNRP    
+	00179: SRP1       
+	00180: SRP2       
+	00181: IP         
+	00182: IP         
+	00183: CALL       
+	00184: CALL       
+	00185: SVTCA[x-axis] 
+	00186: SRP1       
+	00187: SRP2       
+	00188: IP         
+	00189: IP         
+	00190: ELSE       
+	00191: NPUSHB     (102):     6     6     3     7     8     9     9     1     6     6 
+	                             9     5     4     3     3    11    15    15    16    14 
+	                            13    13     1    15    15    13    16    11     1     0 
+	                             9     2    13    11     3    12    16    10     6    15 
+	                             2    15    10    16   198     0   198     9     2    16 
+	                            37     0     9    20     0     0     9     3     2    13 
+	                           198    13     1    13    37    12     3    20    12    12 
+	                             3    10     9     9     3     3     2     6    16    13 
+	                            13    12    12     0    10    79    18     1    18    73 
+	                            13   126    12    34    10    15    97     6     9   126 
+	                            64    10 
+	00295: PUSHW[1]            283 
+	00298: PUSHB[8]             64     6    80     6   128     6     3     6 
+	00307: PUSHW[1]            579 
+	00310: NPUSHB      (14):    32     3   126     2    34    79     0     1     0    73 
+	                            17   124   196    24 
+	00326: CALL       
+	00327: SRP0       
+	00328: MIRP[srp0,nmd,rd,2] 
+	00329: DELTAP1    
+	00330: MIRP[srp0,nmd,rd,0] 
+	00331: MIRP[nrp0,md,rd,1] 
+	00332: SMD        
+	00333: RTHG       
+	00334: MIRP[srp0,md,rd,1] 
+	00335: DELTAP1    
+	00336: MIRP[srp0,md,rd,1] 
+	00337: SMD        
+	00338: RTG        
+	00339: MIRP[nrp0,md,rd,1] 
+	00340: SRP0       
+	00341: MIRP[nrp0,nmd,rd,1] 
+	00342: SRP0       
+	00343: MIRP[srp0,nmd,rd,0] 
+	00344: MIRP[nrp0,md,rd,1] 
+	00345: MIRP[nrp0,nmd,rd,2] 
+	00346: DELTAP1    
+	00347: SVTCA[y-axis] 
+	00348: MIAP[rd+ci] 
+	00349: ALIGNRP    
+	00350: SRP0       
+	00351: ALIGNRP    
+	00352: SRP0       
+	00353: ALIGNRP    
+	00354: MIAP[rd+ci] 
+	00355: ALIGNRP    
+	00356: SRP0       
+	00357: ALIGNRP    
+	00358: SRP0       
+	00359: ALIGNRP    
+	00360: SDPVTL[1]  
+	00361: SFVTCA[x-axis] 
+	00362: MDAP[nrd]  
+	00363: CALL       
+	00364: DELTAP1    
+	00365: SDPVTL[1]  
+	00366: RDTG       
+	00367: MDRP[nrp0,nmd,rd,0] 
+	00368: SDPVTL[1]  
+	00369: MDAP[nrd]  
+	00370: RTG        
+	00371: CALL       
+	00372: DELTAP1    
+	00373: RDTG       
+	00374: SRP0       
+	00375: MDRP[nrp0,nmd,rd,0] 
+	00376: SVTCA[y-axis] 
+	00377: SRP1       
+	00378: SRP2       
+	00379: IP         
+	00380: IP         
+	00381: ISECT      
+	00382: ISECT      
+	00383: SDPVTL[1]  
+	00384: SFVTL[=p1,p2] 
+	00385: MDRP[nrp0,nmd,rd,0] 
+	00386: SDPVTL[1]  
+	00387: SFVTPV     
+	00388: SRP0       
+	00389: MDRP[nrp0,nmd,rd,0] 
+	00390: SFVTL[=p1,p2] 
+	00391: MDRP[nrp0,nmd,rd,0] 
+	00392: SDPVTL[1]  
+	00393: SFVTPV     
+	00394: SRP0       
+	00395: MDRP[nrp0,nmd,rd,0] 
+	00396: MDRP[nrp0,nmd,rd,0] 
+	00397: SFVTL[=p1,p2] 
+	00398: MDRP[nrp0,nmd,rd,0] 
+	00399: SPVTL[p1,p2] 
+	00400: SFVTPV     
+	00401: SRP0       
+	00402: ALIGNRP    
+	00403: ALIGNRP    
+	00404: SFVTL[=p1,p2] 
+	00405: ALIGNRP    
+	00406: EIF        
+	00407: IUP[y]     
+	00408: IUP[x]     
+	00409: SVTCA[x-axis] 
+	00410: RS         
+	00411: NOT        
+	00412: IF         
+	00413: PUSHB[5]             14    24    29    57    11 
+	00419: PUSHW[1]            -34 
+	00422: NPUSHB      (11):    29    57    12    34    23    57     3    34    23    57 
+	                            11 
+	00435: PUSHW[1]            -34 
+	00438: PUSHB[3]             33    57    16 
+	00442: PUSHW[1]            -64 
+	00445: NPUSHB      (10):    21    57     1    34    33    57     9    64    28    57 
+	00457: CALL       
+	00458: CALL       
+	00459: CALL       
+	00460: CALL       
+	00461: CALL       
+	00462: CALL       
+	00463: CALL       
+	00464: CALL       
+	00465: EIF        
+	00466: DELTAP1    
+	00467: DELTAP2    
+	00468: SVTCA[y-axis] 
+	00469: CALL       
+	00470: DELTAP1    
+	00471: CALL       
+	00472: CALL       
+	00473: SVTCA[x-axis] 
+	00474: DELTAP1    
+	00475: EIF        
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:                                      On
+	  2:                                      On
+	  3:  YDual XDual                 X-Short On
+	  4:        XDual         Y-Short X-Short On
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual                 X-Short On
+	 11:                                      On
+	 12:                                      On
+	 13:  YDual                       X-Short On
+	 14:                              X-Short On
+	 15:  YDual               Y-Short X-Short On
+	 16:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (    15,     0)  ->  Abs (    15,     0)
+	  1: Rel (   388,   552)  ->  Abs (   403,   552)
+	  2: Rel (  -359,   510)  ->  Abs (    44,  1062)
+	  3: Rel (   225,     0)  ->  Abs (   269,  1062)
+	  4: Rel (   163,  -249)  ->  Abs (   432,   813)
+	  5: Rel (    46,   -71)  ->  Abs (   478,   742)
+	  6: Rel (    28,   -48)  ->  Abs (   506,   694)
+	  7: Rel (    44,    66)  ->  Abs (   550,   760)
+	  8: Rel (    37,    51)  ->  Abs (   587,   811)
+	  9: Rel (   179,   251)  ->  Abs (   766,  1062)
+	 10: Rel (   215,     0)  ->  Abs (   981,  1062)
+	 11: Rel (  -367,  -500)  ->  Abs (   614,   562)
+	 12: Rel (   395,  -562)  ->  Abs (  1009,     0)
+	 13: Rel (  -221,     0)  ->  Abs (   788,     0)
+	 14: Rel (  -218,   330)  ->  Abs (   570,   330)
+	 15: Rel (   -58,    89)  ->  Abs (   512,   419)
+	 16: Rel (  -279,  -419)  ->  Abs (   233,     0)
+
+	Glyph  92: off = 0x00007C06, len = 600
+	  numberOfContours:	1
+	  xMin:			33
+	  yMin:			-431
+	  xMax:			1006
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  26
+
+	  Length of Instructions:	503
+	00000: PUSHB[2]              2     2 
+	00003: RS         
+	00004: EQ         
+	00005: IF         
+	00006: NPUSHB      (29):    10    20    15     3    11     3    28    25    15    18 
+	                             6    11     6    19    64    18    15    32    11    64 
+	                            12    32    15    24    15    15     2    85    15 
+	00037: RTHG       
+	00038: MDAP[rd]   
+	00039: CALL       
+	00040: SMD        
+	00041: MDRP[srp0,md,rd,1] 
+	00042: SMD        
+	00043: RTG        
+	00044: MDRP[nrp0,md,rd,1] 
+	00045: SMD        
+	00046: RTHG       
+	00047: SRP0       
+	00048: MDRP[srp0,md,rd,1] 
+	00049: SMD        
+	00050: RTG        
+	00051: MDRP[nrp0,md,rd,1] 
+	00052: SVTCA[y-axis] 
+	00053: MIAP[rd+ci] 
+	00054: MIAP[rd+ci] 
+	00055: MIAP[rd+ci] 
+	00056: MIRP[nrp0,md,rd,1] 
+	00057: SRP2       
+	00058: SLOOP      
+	00059: IP         
+	00060: IUP[y]     
+	00061: IUP[x]     
+	00062: ELSE       
+	00063: PUSHB[4]             15    28     1    15 
+	00068: PUSHW[1]            -34 
+	00071: NPUSHB     (109):    28    57    40    20    86    15   175    10     3    64 
+	                            13    64    15     2    15    32    40    48    52    16 
+	                            32    40    48    52     7    12     9    18    22    13 
+	                            24    18    39    11    39    12    39    13    54    12 
+	                            54    13    53    14   153    17    11    40    18    40 
+	                            19    72    22    89    18    89    19    89    21   105 
+	                            18   105    19   105    21   121     6   118    13   121 
+	                            17   122    20   122    21   133    13   138    17   140 
+	                            18   140    19   137    20   152    10   168    11   188 
+	                            16   187    17   186    20   234    10   231    20   245 
+	                            13   253    16   249    20   255    28    30    18 
+	00182: PUSHB[2]              6     2 
+	00185: RS         
+	00186: EQ         
+	00187: IF         
+	00188: NPUSHB      (22):    19    11    28    27     4    15    68    15   132    15 
+	                             3    15    25    11     3    28    25    15    18     6 
+	                            11     6 
+	00212: SVTCA[y-axis] 
+	00213: MIAP[rd+ci] 
+	00214: MIAP[rd+ci] 
+	00215: MIAP[rd+ci] 
+	00216: MIRP[nrp0,md,rd,1] 
+	00217: SRP1       
+	00218: SRP2       
+	00219: IP         
+	00220: DELTAP1    
+	00221: SVTCA[x-axis] 
+	00222: SRP1       
+	00223: SRP2       
+	00224: IP         
+	00225: IP         
+	00226: ELSE       
+	00227: NPUSHB      (55):    15    15    12    16    17    18    18    10     0     3 
+	                            25    20    19    19    37    18    10    20    18    18 
+	                            10    15    12    15    17    12    37    11    10    20 
+	                            11    11    10    19    18    18    12    12    11     6 
+	                             3    28    25    15     0    28    16    28     2    47 
+	                            28   191    28     2    28 
+	00284: PUSHW[1]            575 
+	00287: PUSHB[6]             15    19    64    18    64    20 
+	00294: PUSHW[1]            596 
+	00297: NPUSHB      (11):    63    18    64    18     2    95    18   191    18     2 
+	                            18 
+	00310: PUSHW[1]            322 
+	00313: PUSHB[7]             15     1    34     0    69    27    10 
+	00321: PUSHW[1]            596 
+	00324: NPUSHB      (18):    15    32    11    64    64    32    12    48    12    79 
+	                            12     3    80    12   255    12     2    12 
+	00344: PUSHW[1]            322 
+	00347: PUSHB[4]             47    15     1    15 
+	00352: PUSHW[1]            575 
+	00355: PUSHB[5]             27    32   124   102    24 
+	00361: CALL       
+	00362: SMD        
+	00363: RTHG       
+	00364: SRP0       
+	00365: MIRP[srp0,md,rd,1] 
+	00366: DELTAP2    
+	00367: MIRP[srp0,nmd,rd,0] 
+	00368: DELTAP1    
+	00369: DELTAP2    
+	00370: SMD        
+	00371: RTG        
+	00372: MIRP[nrp0,md,rd,1] 
+	00373: SMD        
+	00374: RTHG       
+	00375: SRP0       
+	00376: MIRP[nrp0,md,rd,1] 
+	00377: RTG        
+	00378: SRP0       
+	00379: MIRP[srp0,nmd,rd,0] 
+	00380: MIRP[nrp0,nmd,rd,0] 
+	00381: RTHG       
+	00382: SRP0       
+	00383: MIRP[nrp0,nmd,rd,0] 
+	00384: DELTAP1    
+	00385: DELTAP2    
+	00386: MIRP[nrp0,md,rd,1] 
+	00387: SMD        
+	00388: RTG        
+	00389: SRP0       
+	00390: MIRP[nrp0,md,rd,1] 
+	00391: RTHG       
+	00392: SRP0       
+	00393: MIRP[nrp0,nmd,rd,0] 
+	00394: DELTAP1    
+	00395: DELTAP2    
+	00396: SVTCA[y-axis] 
+	00397: RTG        
+	00398: MIAP[rd+ci] 
+	00399: MIRP[nrp0,md,rd,1] 
+	00400: MIAP[rd+ci] 
+	00401: ALIGNRP    
+	00402: SRP0       
+	00403: ALIGNRP    
+	00404: SRP0       
+	00405: ALIGNRP    
+	00406: SDPVTL[1]  
+	00407: SFVTCA[x-axis] 
+	00408: MDAP[nrd]  
+	00409: CALL       
+	00410: SFVTL[=p1,p2] 
+	00411: RDTG       
+	00412: SRP0       
+	00413: MDRP[nrp0,nmd,rd,0] 
+	00414: SDPVTL[1]  
+	00415: SFVTCA[x-axis] 
+	00416: MDAP[nrd]  
+	00417: RTG        
+	00418: CALL       
+	00419: SFVTPV     
+	00420: RDTG       
+	00421: SRP0       
+	00422: MDRP[nrp0,nmd,rd,0] 
+	00423: SVTCA[y-axis] 
+	00424: SRP1       
+	00425: SRP2       
+	00426: IP         
+	00427: SDPVTL[1]  
+	00428: SFVTPV     
+	00429: SRP0       
+	00430: ALIGNRP    
+	00431: ALIGNRP    
+	00432: SFVTL[=p1,p2] 
+	00433: MDRP[nrp0,nmd,rd,0] 
+	00434: MPPEM      
+	00435: PUSHB[1]             14 
+	00437: GTEQ       
+	00438: MPPEM      
+	00439: PUSHB[1]             24 
+	00441: LTEQ       
+	00442: AND        
+	00443: IF         
+	00444: PUSHW[4]             12   -24    11   -24 
+	00453: SVTCA[x-axis] 
+	00454: SHPIX      
+	00455: SHPIX      
+	00456: EIF        
+	00457: EIF        
+	00458: IUP[y]     
+	00459: IUP[x]     
+	00460: SVTCA[x-axis] 
+	00461: RS         
+	00462: NOT        
+	00463: IF         
+	00464: PUSHW[2]             20   -34 
+	00469: PUSHB[7]             55    57    10    34    55    57    14 
+	00477: PUSHW[1]            -24 
+	00480: PUSHB[6]             21    57    17    34    21    57 
+	00487: CALL       
+	00488: CALL       
+	00489: CALL       
+	00490: CALL       
+	00491: EIF        
+	00492: DELTAP1    
+	00493: DELTAP2    
+	00494: CALL       
+	00495: CALL       
+	00496: SVTCA[y-axis] 
+	00497: DELTAP2    
+	00498: DELTAP1    
+	00499: CALL       
+	00500: SVTCA[x-axis] 
+	00501: DELTAP1    
+	00502: EIF        
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual               Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:                                      On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                 X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:        XDual                 X-Short On
+	 19:  YDual XDual                 X-Short On
+	 20:                                      On
+	 21:                      Y-Short X-Short Off
+	 22:                      Y-Short X-Short On
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   127,  -409)  ->  Abs (   127,  -409)
+	  1: Rel (   -20,   169)  ->  Abs (   107,  -240)
+	  2: Rel (    59,   -16)  ->  Abs (   166,  -256)
+	  3: Rel (    44,     0)  ->  Abs (   210,  -256)
+	  4: Rel (    60,     0)  ->  Abs (   270,  -256)
+	  5: Rel (    72,    40)  ->  Abs (   342,  -216)
+	  6: Rel (    23,    36)  ->  Abs (   365,  -180)
+	  7: Rel (    17,    27)  ->  Abs (   382,  -153)
+	  8: Rel (    38,   107)  ->  Abs (   420,   -46)
+	  9: Rel (     5,    15)  ->  Abs (   425,   -31)
+	 10: Rel (    11,    29)  ->  Abs (   436,    -2)
+	 11: Rel (  -403,  1064)  ->  Abs (    33,  1062)
+	 12: Rel (   194,     0)  ->  Abs (   227,  1062)
+	 13: Rel (   221,  -615)  ->  Abs (   448,   447)
+	 14: Rel (    43,  -117)  ->  Abs (   491,   330)
+	 15: Rel (    34,  -129)  ->  Abs (   525,   201)
+	 16: Rel (    31,   124)  ->  Abs (   556,   325)
+	 17: Rel (    43,   118)  ->  Abs (   599,   443)
+	 18: Rel (   227,   619)  ->  Abs (   826,  1062)
+	 19: Rel (   180,     0)  ->  Abs (  1006,  1062)
+	 20: Rel (  -404, -1080)  ->  Abs (   602,   -18)
+	 21: Rel (   -65,  -175)  ->  Abs (   537,  -193)
+	 22: Rel (   -36,   -66)  ->  Abs (   501,  -259)
+	 23: Rel (   -48,   -89)  ->  Abs (   453,  -348)
+	 24: Rel (  -124,   -83)  ->  Abs (   329,  -431)
+	 25: Rel (   -86,     0)  ->  Abs (   243,  -431)
+	 26: Rel (   -52,     0)  ->  Abs (   191,  -431)
+
+	Glyph  93: off = 0x00007E5E, len = 488
+	  numberOfContours:	1
+	  xMin:			40
+	  yMin:			0
+	  xMax:			980
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  14
+
+	  Length of Instructions:	431
+	00000: NPUSHB      (13):    18   184     2   201     8     2    18     1    50    18 
+	                            23    52     8 
+	00015: PUSHW[1]            -50 
+	00018: NPUSHB       (9):    18    23    52     1    62    30    33    52     8 
+	00029: PUSHW[1]            -62 
+	00032: NPUSHB      (74):    30    33    52    41     2    40     9    47    16    57 
+	                             1    57    10    73     1    70     2    70     8    73 
+	                             9    79    16    92     1    84     2    84     8    90 
+	                             9    80    16   108     1    99     2    99     8   106 
+	                             9   123     1   116     8   123     9   139     1   133 
+	                             8   137     9   249     1   244     2    27    25     8 
+	                            38     1    41     8    43     9    57     8   165     8 
+	                           215     1     7    16 
+	00108: PUSHW[1]            -64 
+	00111: PUSHB[8]             16    21    52     2    44    18    57     9 
+	00120: PUSHW[1]            -44 
+	00123: NPUSHB      (35):    18    57     1     2    58     9    10     2     8    10 
+	                            10    37     1     2    20     1     1     2     1    13 
+	                            14     8     6     2    97     5    43     7     6     6 
+	                            10    97    13     0    13 
+	00160: PUSHW[1]            -12 
+	00163: NPUSHB       (9):    11    11     6    85    13    43    14    10     2 
+	00174: PUSHW[1]            271 
+	00177: PUSHB[5]              8     8     7     5     6 
+	00183: PUSHW[4]            603     0     7   -12 
+	00192: NPUSHB      (22):    11    11     6    85     7    34    13   160    14     1 
+	                             0    14    64    14    96    14   128    14   240    14 
+	                             5    14 
+	00216: PUSHW[1]            -12 
+	00219: NPUSHB      (36):    11    11     6    85    14   116     0    10   126     1 
+	                             1   175     0     1    79     0   111     0   255     0 
+	                             3     0    24    11    11     6    85     0    25    15 
+	                            16   116    33   124   196    24 
+	00257: CALL       
+	00258: CALL       
+	00259: FLIPOFF    
+	00260: MIRP[srp0,nmd,rd,0] 
+	00261: CALL       
+	00262: DELTAP1    
+	00263: DELTAP2    
+	00264: ALIGNRP    
+	00265: FLIPON     
+	00266: SRP0       
+	00267: MIRP[nrp0,md,rd,1] 
+	00268: SRP0       
+	00269: MIRP[srp0,md,rd,1] 
+	00270: CALL       
+	00271: DELTAP1    
+	00272: DELTAP2    
+	00273: ALIGNRP    
+	00274: MIRP[nrp0,nmd,rd,0] 
+	00275: CALL       
+	00276: SRP0       
+	00277: MIRP[srp0,nmd,rd,0] 
+	00278: ALIGNRP    
+	00279: SRP0       
+	00280: ALIGNRP    
+	00281: SRP0       
+	00282: MIRP[srp0,md,rd,1] 
+	00283: SVTCA[y-axis] 
+	00284: MIAP[rd+ci] 
+	00285: MIRP[nrp0,md,rd,1] 
+	00286: CALL       
+	00287: ALIGNRP    
+	00288: SRP0       
+	00289: MIRP[nrp0,nmd,rd,1] 
+	00290: MIAP[rd+ci] 
+	00291: ALIGNRP    
+	00292: MIRP[srp0,md,rd,1] 
+	00293: MIRP[nrp0,nmd,rd,1] 
+	00294: SRP1       
+	00295: IP         
+	00296: SRP1       
+	00297: SRP2       
+	00298: IP         
+	00299: SDPVTL[1]  
+	00300: SFVTCA[x-axis] 
+	00301: MDAP[nrd]  
+	00302: CALL       
+	00303: SDPVTL[1]  
+	00304: RDTG       
+	00305: MDRP[nrp0,nmd,rd,0] 
+	00306: SRP0       
+	00307: SFVTPV     
+	00308: MDRP[nrp0,nmd,rd,0] 
+	00309: CALL       
+	00310: IUP[y]     
+	00311: IUP[x]     
+	00312: SVTCA[x-axis] 
+	00313: CALL       
+	00314: CALL       
+	00315: CALL       
+	00316: DELTAP2    
+	00317: DELTAP1    
+	00318: SVTCA[y-axis] 
+	00319: CALL       
+	00320: CALL       
+	00321: CALL       
+	00322: CALL       
+	00323: RS         
+	00324: NOT        
+	00325: IF         
+	00326: PUSHB[6]             41     1    38     8     2     1 
+	00333: PUSHW[1]            -50 
+	00336: NPUSHB       (9):    18    23    52     8    50    18    23    52     1 
+	00347: PUSHW[1]            -62 
+	00350: PUSHB[8]             30    33    52     8    62    30    33    52 
+	00359: SVTCA[y-axis] 
+	00360: CALL       
+	00361: CALL       
+	00362: CALL       
+	00363: CALL       
+	00364: SVTCA[x-axis] 
+	00365: DELTAP2    
+	00366: EIF        
+	00367: SVTCA[x-axis] 
+	00368: DELTAP1    
+	00369: RS         
+	00370: NOT        
+	00371: IF         
+	00372: PUSHW[2]              8   -34 
+	00377: PUSHB[3]             15    57     9 
+	00381: PUSHW[1]            -34 
+	00384: PUSHB[3]             15    57     9 
+	00388: PUSHW[1]            -24 
+	00391: PUSHB[8]             27    57     9     8    22    27    61     9 
+	00400: PUSHW[1]            -16 
+	00403: PUSHB[3]             23    57     9 
+	00407: PUSHW[1]             -8 
+	00410: NPUSHB      (10):    22    57     2    20    22    57     2    26    22    57 
+	00422: CALL       
+	00423: CALL       
+	00424: CALL       
+	00425: CALL       
+	00426: CALL       
+	00427: CALL       
+	00428: CALL       
+	00429: CALL       
+	00430: EIF        
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:                                      On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual         Y-Short         On
+	  9:                                      On
+	 10:                      Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual                               On
+	 14:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (    40,     0)  ->  Abs (    40,     0)
+	  1: Rel (     0,   146)  ->  Abs (    40,   146)
+	  2: Rel (   676,   776)  ->  Abs (   716,   922)
+	  3: Rel (  -115,    -6)  ->  Abs (   601,   916)
+	  4: Rel (   -88,     0)  ->  Abs (   513,   916)
+	  5: Rel (  -433,     0)  ->  Abs (    80,   916)
+	  6: Rel (     0,   146)  ->  Abs (    80,  1062)
+	  7: Rel (   868,     0)  ->  Abs (   948,  1062)
+	  8: Rel (     0,  -119)  ->  Abs (   948,   943)
+	  9: Rel (  -575,  -674)  ->  Abs (   373,   269)
+	 10: Rel (  -111,  -123)  ->  Abs (   262,   146)
+	 11: Rel (   121,     9)  ->  Abs (   383,   155)
+	 12: Rel (   106,     0)  ->  Abs (   489,   155)
+	 13: Rel (   491,     0)  ->  Abs (   980,   155)
+	 14: Rel (     0,  -155)  ->  Abs (   980,     0)
+
+	Glyph  94: off = 0x00008046, len = 254
+	  numberOfContours:	1
+	  xMin:			57
+	  yMin:			-431
+	  xMax:			636
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  42
+
+	  Length of Instructions:	123
+	00000: NPUSHB      (77):    71    15     1    40    18    15    17    52     2    18 
+	                            15    17    52     7    24    11    14    52    37    18 
+	                            11    14    52    22    39    22     0    41    42    42 
+	                            12    31    37    32    19    13    37    12    17    13 
+	                            12    12    31    32   174    27    18    17    37     5 
+	                            25    58    27    37    38     3    58     5   174    42 
+	                            39    58    38   174    42    42    95     0   143     0 
+	                             2     0   105    43   112   104    24 
+	00079: CALL       
+	00080: SRP0       
+	00081: MIRP[srp0,nmd,rd,2] 
+	00082: DELTAP1    
+	00083: ALIGNRP    
+	00084: SRP0       
+	00085: MIRP[srp0,nmd,rd,0] 
+	00086: MIRP[nrp0,nmd,rd,0] 
+	00087: SRP0       
+	00088: MIRP[srp0,nmd,rd,0] 
+	00089: MIRP[nrp0,nmd,rd,0] 
+	00090: SRP0       
+	00091: MIRP[srp0,md,rd,1] 
+	00092: MIRP[nrp0,nmd,rd,0] 
+	00093: SRP0       
+	00094: MIRP[srp0,md,rd,1] 
+	00095: ALIGNRP    
+	00096: SRP0       
+	00097: MIRP[srp0,nmd,rd,0] 
+	00098: ALIGNRP    
+	00099: ALIGNRP    
+	00100: SRP0       
+	00101: ALIGNRP    
+	00102: SVTCA[y-axis] 
+	00103: MIAP[rd+ci] 
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: MIAP[rd+ci] 
+	00106: MIRP[nrp0,md,rd,1] 
+	00107: SRP2       
+	00108: IP         
+	00109: MDAP[rd]   
+	00110: MIRP[nrp0,md,rd,1] 
+	00111: IP         
+	00112: SVTCA[x-axis] 
+	00113: SRP2       
+	00114: IP         
+	00115: IUP[y]     
+	00116: IUP[x]     
+	00117: CALL       
+	00118: CALL       
+	00119: CALL       
+	00120: CALL       
+	00121: SVTCA[x-axis] 
+	00122: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual Rep-  2 Y-Short X-Short Off
+	  4:        XDual                 X-Short Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual Rep-  2 Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual         Y-Short         On
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:                      Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual                         Off
+	 19:                      Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short Off
+	 22:                      Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:        XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short On
+	 32:        XDual         Y-Short         On
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual               Y-Short X-Short On
+	 36:  YDual       Rep-  2 Y-Short X-Short Off
+	 39:                              X-Short Off
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    57,   612)  ->  Abs (    57,   612)
+	  1: Rel (    77,     2)  ->  Abs (   134,   614)
+	  2: Rel (    97,    79)  ->  Abs (   231,   693)
+	  3: Rel (    32,   138)  ->  Abs (   263,   831)
+	  4: Rel (     2,   334)  ->  Abs (   265,  1165)
+	  5: Rel (     5,    53)  ->  Abs (   270,  1218)
+	  6: Rel (     9,    84)  ->  Abs (   279,  1302)
+	  7: Rel (    49,   102)  ->  Abs (   328,  1404)
+	  8: Rel (    72,    61)  ->  Abs (   400,  1465)
+	  9: Rel (    56,    16)  ->  Abs (   456,  1481)
+	 10: Rel (    38,    10)  ->  Abs (   494,  1491)
+	 11: Rel (    86,     0)  ->  Abs (   580,  1491)
+	 12: Rel (    56,     0)  ->  Abs (   636,  1491)
+	 13: Rel (     0,  -157)  ->  Abs (   636,  1334)
+	 14: Rel (   -31,     0)  ->  Abs (   605,  1334)
+	 15: Rel (  -104,     0)  ->  Abs (   501,  1334)
+	 16: Rel (   -68,   -75)  ->  Abs (   433,  1259)
+	 17: Rel (     0,  -130)  ->  Abs (   433,  1129)
+	 18: Rel (     0,  -262)  ->  Abs (   433,   867)
+	 19: Rel (   -11,   -69)  ->  Abs (   422,   798)
+	 20: Rel (   -18,  -107)  ->  Abs (   404,   691)
+	 21: Rel (   -87,  -116)  ->  Abs (   317,   575)
+	 22: Rel (   -93,   -45)  ->  Abs (   224,   530)
+	 23: Rel (   110,   -46)  ->  Abs (   334,   484)
+	 24: Rel (    99,  -189)  ->  Abs (   433,   295)
+	 25: Rel (     0,  -215)  ->  Abs (   433,    80)
+	 26: Rel (     0,  -195)  ->  Abs (   433,  -115)
+	 27: Rel (     4,   -37)  ->  Abs (   437,  -152)
+	 28: Rel (     8,   -68)  ->  Abs (   445,  -220)
+	 29: Rel (    65,   -54)  ->  Abs (   510,  -274)
+	 30: Rel (    95,     0)  ->  Abs (   605,  -274)
+	 31: Rel (    31,     0)  ->  Abs (   636,  -274)
+	 32: Rel (     0,  -157)  ->  Abs (   636,  -431)
+	 33: Rel (   -56,     0)  ->  Abs (   580,  -431)
+	 34: Rel (   -98,     0)  ->  Abs (   482,  -431)
+	 35: Rel (   -44,    16)  ->  Abs (   438,  -415)
+	 36: Rel (   -64,    23)  ->  Abs (   374,  -392)
+	 37: Rel (   -84,   103)  ->  Abs (   290,  -289)
+	 38: Rel (   -25,   158)  ->  Abs (   265,  -131)
+	 39: Rel (    -2,   360)  ->  Abs (   263,   229)
+	 40: Rel (   -32,   138)  ->  Abs (   231,   367)
+	 41: Rel (   -97,    80)  ->  Abs (   134,   447)
+	 42: Rel (   -77,     2)  ->  Abs (    57,   449)
+
+	Glyph  95: off = 0x00008144, len = 76
+	  numberOfContours:	1
+	  xMin:			188
+	  yMin:			-431
+	  xMax:			345
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	50
+	00000: PUSHW[2]              3   382 
+	00005: NPUSHB      (24):     1     0     5   161     2     2   159     3   175     3 
+	                             2     3   118     0     0    32     1     1     1   161 
+	                             4   161   152    24 
+	00031: CALL       
+	00032: FLIPOFF    
+	00033: SRP0       
+	00034: MIRP[srp0,nmd,rd,0] 
+	00035: DELTAP1    
+	00036: ALIGNRP    
+	00037: FLIPON     
+	00038: SRP0       
+	00039: MIRP[srp0,md,rd,1] 
+	00040: DELTAP1    
+	00041: ALIGNRP    
+	00042: SRP0       
+	00043: MIRP[nrp0,md,rd,2] 
+	00044: SVTCA[y-axis] 
+	00045: MIAP[rd+ci] 
+	00046: FLIPON     
+	00047: MIRP[nrp0,md,rd,1] 
+	00048: IUP[y]     
+	00049: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   188,  -431)  ->  Abs (   188,  -431)
+	  1: Rel (     0,  1922)  ->  Abs (   188,  1491)
+	  2: Rel (   157,     0)  ->  Abs (   345,  1491)
+	  3: Rel (     0, -1922)  ->  Abs (   345,  -431)
+
+	Glyph  96: off = 0x00008190, len = 258
+	  numberOfContours:	1
+	  xMin:			47
+	  yMin:			-431
+	  xMax:			626
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  42
+
+	  Length of Instructions:	129
+	00000: PUSHW[2]              3   -18 
+	00005: PUSHB[4]             15    17    52    41 
+	00010: PUSHW[1]            -18 
+	00013: PUSHB[4]             15    17    52    38 
+	00018: PUSHW[1]            -24 
+	00021: PUSHB[4]             11    14    52     8 
+	00026: PUSHW[1]            -18 
+	00029: NPUSHB      (57):    11    14    52    23    40    23     0    41     1     1 
+	                            13    32    37    33    17    14    37    13    19    33 
+	                            32    32    14    13   174    18    26    58    28    37 
+	                            39    20    58    18    37     6    39    58    40   174 
+	                             1     4    58     6   174     0    80     1   128     1 
+	                             2     1   105    44   155   141    24 
+	00088: CALL       
+	00089: SRP0       
+	00090: MIRP[srp0,nmd,rd,0] 
+	00091: DELTAP1    
+	00092: ALIGNRP    
+	00093: MIRP[srp0,nmd,rd,0] 
+	00094: MIRP[nrp0,nmd,rd,0] 
+	00095: SRP0       
+	00096: MIRP[srp0,nmd,rd,0] 
+	00097: MIRP[nrp0,nmd,rd,0] 
+	00098: SRP0       
+	00099: MIRP[srp0,md,rd,1] 
+	00100: MIRP[nrp0,nmd,rd,0] 
+	00101: SRP0       
+	00102: MIRP[srp0,md,rd,1] 
+	00103: MIRP[nrp0,nmd,rd,0] 
+	00104: SRP0       
+	00105: MIRP[srp0,nmd,rd,0] 
+	00106: ALIGNRP    
+	00107: ALIGNRP    
+	00108: SRP0       
+	00109: ALIGNRP    
+	00110: SVTCA[y-axis] 
+	00111: MIAP[rd+ci] 
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: MIAP[rd+ci] 
+	00114: MIRP[nrp0,md,rd,1] 
+	00115: SRP2       
+	00116: IP         
+	00117: MDAP[rd]   
+	00118: MIRP[nrp0,md,rd,1] 
+	00119: IP         
+	00120: SVTCA[x-axis] 
+	00121: SRP1       
+	00122: IP         
+	00123: IUP[y]     
+	00124: IUP[x]     
+	00125: CALL       
+	00126: CALL       
+	00127: CALL       
+	00128: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:              Rep-  2 Y-Short X-Short Off
+	  5:                              X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:              Rep-  2 Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short On
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual               Y-Short X-Short On
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short On
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short X-Short On
+	 37:        XDual Rep-  2 Y-Short X-Short Off
+	 40:        XDual                 X-Short Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   626,   612)  ->  Abs (   626,   612)
+	  1: Rel (     0,  -163)  ->  Abs (   626,   449)
+	  2: Rel (   -77,    -2)  ->  Abs (   549,   447)
+	  3: Rel (   -97,   -80)  ->  Abs (   452,   367)
+	  4: Rel (   -32,  -137)  ->  Abs (   420,   230)
+	  5: Rel (    -2,  -334)  ->  Abs (   418,  -104)
+	  6: Rel (    -5,   -53)  ->  Abs (   413,  -157)
+	  7: Rel (    -9,   -85)  ->  Abs (   404,  -242)
+	  8: Rel (   -49,  -101)  ->  Abs (   355,  -343)
+	  9: Rel (   -72,   -61)  ->  Abs (   283,  -404)
+	 10: Rel (   -56,   -16)  ->  Abs (   227,  -420)
+	 11: Rel (   -38,   -11)  ->  Abs (   189,  -431)
+	 12: Rel (   -86,     0)  ->  Abs (   103,  -431)
+	 13: Rel (   -56,     0)  ->  Abs (    47,  -431)
+	 14: Rel (     0,   157)  ->  Abs (    47,  -274)
+	 15: Rel (    31,     0)  ->  Abs (    78,  -274)
+	 16: Rel (   104,     0)  ->  Abs (   182,  -274)
+	 17: Rel (    68,    75)  ->  Abs (   250,  -199)
+	 18: Rel (     0,   131)  ->  Abs (   250,   -68)
+	 19: Rel (     0,   250)  ->  Abs (   250,   182)
+	 20: Rel (     9,    67)  ->  Abs (   259,   249)
+	 21: Rel (    16,   111)  ->  Abs (   275,   360)
+	 22: Rel (    96,   133)  ->  Abs (   371,   493)
+	 23: Rel (    88,    37)  ->  Abs (   459,   530)
+	 24: Rel (  -115,    55)  ->  Abs (   344,   585)
+	 25: Rel (   -94,   181)  ->  Abs (   250,   766)
+	 26: Rel (     0,   215)  ->  Abs (   250,   981)
+	 27: Rel (     0,   195)  ->  Abs (   250,  1176)
+	 28: Rel (    -5,    38)  ->  Abs (   245,  1214)
+	 29: Rel (    -7,    67)  ->  Abs (   238,  1281)
+	 30: Rel (   -65,    53)  ->  Abs (   173,  1334)
+	 31: Rel (   -95,     0)  ->  Abs (    78,  1334)
+	 32: Rel (   -31,     0)  ->  Abs (    47,  1334)
+	 33: Rel (     0,   157)  ->  Abs (    47,  1491)
+	 34: Rel (    56,     0)  ->  Abs (   103,  1491)
+	 35: Rel (    98,     0)  ->  Abs (   201,  1491)
+	 36: Rel (    44,   -16)  ->  Abs (   245,  1475)
+	 37: Rel (    64,   -22)  ->  Abs (   309,  1453)
+	 38: Rel (    84,  -104)  ->  Abs (   393,  1349)
+	 39: Rel (    25,  -158)  ->  Abs (   418,  1191)
+	 40: Rel (     2,  -360)  ->  Abs (   420,   831)
+	 41: Rel (    32,  -137)  ->  Abs (   452,   694)
+	 42: Rel (    97,   -80)  ->  Abs (   549,   614)
+
+	Glyph  97: off = 0x00008292, len = 160
+	  numberOfContours:	1
+	  xMin:			87
+	  yMin:			557
+	  xMax:			1110
+	  yMax:			885
+
+	EndPoints
+	---------
+	  0:  22
+
+	  Length of Instructions:	85
+	00000: NPUSHB      (20):    11    11     4    22    27    11    20    22     4    13 
+	                            32    43    12    59    12     2    12     1    32     0 
+	00022: PUSHW[1]            -32 
+	00025: NPUSHB      (14):    11    14    52     0    16    32     9   212    12     0 
+	                           212    20    32     3 
+	00041: PUSHW[1]            600 
+	00044: NPUSHB      (12):    12    13    12    26    24     1     0    25    23   113 
+	                           140    24 
+	00058: CALL       
+	00059: FLIPOFF    
+	00060: SRP0       
+	00061: MIRP[srp0,nmd,rd,0] 
+	00062: ALIGNRP    
+	00063: SRP0       
+	00064: MIRP[srp0,nmd,rd,2] 
+	00065: ALIGNRP    
+	00066: SVTCA[y-axis] 
+	00067: MDAP[rd]   
+	00068: FLIPON     
+	00069: MIRP[srp0,nmd,rd,0] 
+	00070: MIRP[srp0,md,rd,1] 
+	00071: MIRP[nrp0,nmd,rd,0] 
+	00072: SRP0       
+	00073: MIRP[srp0,nmd,rd,0] 
+	00074: MIRP[nrp0,md,rd,1] 
+	00075: SRP0       
+	00076: CALL       
+	00077: MIRP[nrp0,md,rd,1] 
+	00078: SRP0       
+	00079: DELTAP1    
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: IUP[y]     
+	00082: IUP[x]     
+	00083: SVTCA[y-axis] 
+	00084: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:        XDual         Y-Short         On
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    87,   557)  ->  Abs (    87,   557)
+	  1: Rel (     0,   205)  ->  Abs (    87,   762)
+	  2: Rel (   106,   120)  ->  Abs (   193,   882)
+	  3: Rel (   172,     0)  ->  Abs (   365,   882)
+	  4: Rel (    60,     0)  ->  Abs (   425,   882)
+	  5: Rel (   132,   -35)  ->  Abs (   557,   847)
+	  6: Rel (   122,   -52)  ->  Abs (   679,   795)
+	  7: Rel (    69,   -29)  ->  Abs (   748,   766)
+	  8: Rel (    69,   -18)  ->  Abs (   817,   748)
+	  9: Rel (    35,     0)  ->  Abs (   852,   748)
+	 10: Rel (    65,     0)  ->  Abs (   917,   748)
+	 11: Rel (   139,    78)  ->  Abs (  1056,   826)
+	 12: Rel (    54,    59)  ->  Abs (  1110,   885)
+	 13: Rel (     0,  -212)  ->  Abs (  1110,   673)
+	 14: Rel (   -64,   -60)  ->  Abs (  1046,   613)
+	 15: Rel (  -131,   -54)  ->  Abs (   915,   559)
+	 16: Rel (   -82,     0)  ->  Abs (   833,   559)
+	 17: Rel (   -60,     0)  ->  Abs (   773,   559)
+	 18: Rel (  -109,    28)  ->  Abs (   664,   587)
+	 19: Rel (  -237,   106)  ->  Abs (   427,   693)
+	 20: Rel (   -79,     0)  ->  Abs (   348,   693)
+	 21: Rel (   -64,     0)  ->  Abs (   284,   693)
+	 22: Rel (  -113,   -55)  ->  Abs (   171,   638)
+
+	Glyph  98: off = 0x00008332, len = 76
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1761
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	318
+		Y WOffset:	286
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              3     2     2     3     2    22 
+	00007: PUSHW[3]            545    41   356 
+	00014: SCANCTRL   
+	00015: SVTCA[y-axis] 
+	00016: CALL       
+	00017: SVTCA[x-axis] 
+	00018: PUSHB[2]              6     2 
+	00021: RS         
+	00022: EQ         
+	00023: IF         
+	00024: PUSHB[6]              0    15    22     1     2    65 
+	00031: CALL       
+	00032: ELSE       
+	00033: NPUSHB      (10):    20    64    18    20    52    20    12   100    72    43 
+	00045: CALL       
+	00046: CALL       
+	00047: EIF        
+	00048: SHC[rp1,zp0] 
+	00049: SHC[rp1,zp0] 
+
+	Glyph  99: off = 0x0000837E, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1780
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	219
+		X WOffset:	319
+		Y WOffset:	263
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     3     2   255    18     1    18    12     0   104    43 
+	                             2     3     2    30     2    41 
+	00018: SVTCA[y-axis] 
+	00019: CALL       
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: DELTAP2    
+	00023: SHC[rp1,zp0] 
+	00024: SHC[rp1,zp0] 
+
+	Glyph 100: off = 0x000083B2, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			102
+	  yMin:			-421
+	  xMax:			1398
+	  yMax:			1491
+
+	     0: Flags:		0x0226
+		Glyf Index:	38
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	220
+		X WOffset:	404
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (25):     1     0    48    32    48    79    48     3    47    48 
+	                           127    48   143    48     3    48     4     0    72    43 
+	                             1     1    31     8    41 
+	00027: SVTCA[y-axis] 
+	00028: CALL       
+	00029: SVTCA[x-axis] 
+	00030: CALL       
+	00031: DELTAP1    
+	00032: DELTAP2    
+	00033: SHC[rp1,zp0] 
+
+	Glyph 101: off = 0x000083EE, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			162
+	  yMin:			0
+	  xMax:			1256
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	340
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     1     0    15     1   208    15   240    15     2    47 
+	                            15   144    15     2    15     2 
+	00018: PUSHW[1]           -509 
+	00021: PUSHB[5]             72    43     1     1    15 
+	00027: PUSHW[2]            545    41 
+	00032: SVTCA[y-axis] 
+	00033: CALL       
+	00034: SVTCA[x-axis] 
+	00035: CALL       
+	00036: DELTAP1    
+	00037: DELTAP1    
+	00038: DELTAP2    
+	00039: SHC[rp1,zp0] 
+
+	Glyph 102: off = 0x00008430, len = 102
+	  numberOfContours:	-1  (Composite)
+	  xMin:			156
+	  yMin:			0
+	  xMax:			1311
+	  yMax:			1787
+
+	     0: Flags:		0x0226
+		Glyf Index:	49
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	423
+		Y WOffset:	337
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1    27 
+	00003: PUSHW[1]            -64 
+	00006: PUSHB[5]             15    15     6    85    27 
+	00012: PUSHW[1]            -64 
+	00015: NPUSHB      (29):    12    12     6    85   224    27   255    27     2   111 
+	                            27   175    27     2    79    27     1   224    27   255 
+	                            27     2    95    27   144    27     2    27     4 
+	00046: PUSHW[1]           -390 
+	00049: PUSHB[5]             72    43     1     1    25 
+	00055: PUSHW[3]            545    41   356 
+	00062: SCANCTRL   
+	00063: SVTCA[y-axis] 
+	00064: CALL       
+	00065: SVTCA[x-axis] 
+	00066: CALL       
+	00067: DELTAP1    
+	00068: DELTAP1    
+	00069: DELTAP2    
+	00070: DELTAP2    
+	00071: DELTAP2    
+	00072: CALL       
+	00073: CALL       
+	00074: SHC[rp1,zp0] 
+
+	Glyph 103: off = 0x00008496, len = 70
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1501
+	  yMax:			1761
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	455
+		Y WOffset:	286
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              3     2     2     3     2    35 
+	00007: PUSHW[2]            545    41 
+	00012: SVTCA[y-axis] 
+	00013: CALL       
+	00014: SVTCA[x-axis] 
+	00015: PUSHB[2]              6     2 
+	00018: RS         
+	00019: EQ         
+	00020: IF         
+	00021: PUSHB[6]              0    31    32     3     3    65 
+	00028: CALL       
+	00029: ELSE       
+	00030: PUSHB[8]            175    32     1    32     3   100    72    43 
+	00039: CALL       
+	00040: DELTAP1    
+	00041: EIF        
+	00042: SHC[rp1,zp0] 
+	00043: SHC[rp1,zp0] 
+
+	Glyph 104: off = 0x000084DC, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1314
+	  yMax:			1761
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	393
+		Y WOffset:	286
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     2     1     0    21    28    12     0    65     1     2 
+	                             2    28 
+	00014: PUSHW[2]            545    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: SHC[rp1,zp0] 
+	00024: SHC[rp1,zp0] 
+
+	Glyph 105: off = 0x00008510, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	241
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     2    47    59    63    59     2    59    28     0    72 
+	                            43     2     1    59 
+	00016: PUSHW[2]            546    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP2    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 106: off = 0x00008546, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	250
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     2   159    57   239    57     2    57    28    10    72 
+	                            43     2     1    57 
+	00016: PUSHW[2]            546    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 107: off = 0x0000857C, len = 80
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	222
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (38):     2   159    58     1    32    58    48    58   112    58 
+	                           128    58     4   144    58   160    58   176    58   224 
+	                            58   240    58     5    58    64    46    50    52     0 
+	                            58    61    28    28    65     2     1    62 
+	00040: PUSHW[2]            546    41 
+	00045: SVTCA[y-axis] 
+	00046: CALL       
+	00047: SVTCA[x-axis] 
+	00048: CALL       
+	00049: CALL       
+	00050: DELTAP1    
+	00051: DELTAP2    
+	00052: DELTAP3    
+	00053: SHC[rp1,zp0] 
+
+	Glyph 108: off = 0x000085CC, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1475
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	222
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (24):     3     2    60    64    10    10     6    85   112    60 
+	                           128    60   240    60     3    60    28    98    72    43 
+	                             2     3     2    63 
+	00026: PUSHW[2]            546    41 
+	00031: SVTCA[y-axis] 
+	00032: CALL       
+	00033: SVTCA[x-axis] 
+	00034: CALL       
+	00035: DELTAP1    
+	00036: CALL       
+	00037: SHC[rp1,zp0] 
+	00038: SHC[rp1,zp0] 
+
+	Glyph 109: off = 0x0000860E, len = 82
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1450
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	222
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (30):     2    73    64    13    13     6    85    73    64    10 
+	                            10     6    85    73    64    25    26    52    73    64 
+	                            11    13    52   127    73   143    73     2    73    28 
+	00032: PUSHW[1]            -48 
+	00035: PUSHB[5]             72    43     2     1    71 
+	00041: PUSHW[2]            546    41 
+	00046: SVTCA[y-axis] 
+	00047: CALL       
+	00048: SVTCA[x-axis] 
+	00049: CALL       
+	00050: DELTAP1    
+	00051: CALL       
+	00052: CALL       
+	00053: CALL       
+	00054: CALL       
+	00055: SHC[rp1,zp0] 
+
+	Glyph 110: off = 0x00008660, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1517
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	219
+		X WOffset:	221
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     3     2    15    65    31    65     2    65    28     0 
+	                           104    43     2     3     2    65 
+	00018: PUSHW[2]            546    41 
+	00023: SVTCA[y-axis] 
+	00024: CALL       
+	00025: SVTCA[x-axis] 
+	00026: CALL       
+	00027: DELTAP2    
+	00028: SHC[rp1,zp0] 
+	00029: SHC[rp1,zp0] 
+
+	Glyph 111: off = 0x00008698, len = 82
+	  numberOfContours:	-1  (Composite)
+	  xMin:			80
+	  yMin:			-401
+	  xMax:			1005
+	  yMax:			1086
+
+	     0: Flags:		0x0226
+		Glyf Index:	70
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	220
+		X WOffset:	195
+		Y WOffset:	20
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1    28 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (26):    20    20     6    85    31    28    47    28     2    16 
+	                            28     1   239    28   255    28     2    16    28    48 
+	                            28   127    28     3    28    11 
+	00034: PUSHW[1]           -104 
+	00037: PUSHB[7]             72    43     1     1    28     8    41 
+	00045: SVTCA[y-axis] 
+	00046: CALL       
+	00047: SVTCA[x-axis] 
+	00048: CALL       
+	00049: DELTAP1    
+	00050: DELTAP1    
+	00051: DELTAP2    
+	00052: DELTAP3    
+	00053: CALL       
+	00054: SHC[rp1,zp0] 
+
+	Glyph 112: off = 0x000086EA, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			75
+	  yMin:			-24
+	  xMax:			1054
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	243
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     2   224    33   240    33     2    33    10     0    72 
+	                            43     2     1    33 
+	00016: PUSHW[2]            546    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 113: off = 0x00008720, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			75
+	  yMin:			-24
+	  xMax:			1054
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	221
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              2    31 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (17):    11    13    52    15    31     1   112    31     1    31 
+	                            10     0    72    43     2     1    31 
+	00025: PUSHW[2]            546    41 
+	00030: SVTCA[y-axis] 
+	00031: CALL       
+	00032: SVTCA[x-axis] 
+	00033: CALL       
+	00034: DELTAP1    
+	00035: DELTAP2    
+	00036: CALL       
+	00037: SHC[rp1,zp0] 
+
+	Glyph 114: off = 0x00008760, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			75
+	  yMin:			-24
+	  xMax:			1054
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	223
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (24):     2    32    64    59    53    32    64    45    50    52 
+	                            15    32   159    32     2     0    32    35    10    10 
+	                            65     2     1    36 
+	00026: PUSHW[2]            546    41 
+	00031: SVTCA[y-axis] 
+	00032: CALL       
+	00033: SVTCA[x-axis] 
+	00034: CALL       
+	00035: DELTAP3    
+	00036: CALL       
+	00037: CALL       
+	00038: SHC[rp1,zp0] 
+
+	Glyph 115: off = 0x000087A2, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			75
+	  yMin:			-24
+	  xMax:			1054
+	  yMax:			1475
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	223
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (20):     3     2    34    64    11    11     2    85   175    34 
+	                             1    34    10   100    72    43     2     3     2    37 
+	00022: PUSHW[2]            546    41 
+	00027: SVTCA[y-axis] 
+	00028: CALL       
+	00029: SVTCA[x-axis] 
+	00030: CALL       
+	00031: DELTAP1    
+	00032: CALL       
+	00033: SHC[rp1,zp0] 
+	00034: SHC[rp1,zp0] 
+
+	Glyph 116: off = 0x000087E0, len = 74
+	  numberOfContours:	-1  (Composite)
+	  xMin:			189
+	  yMin:			0
+	  xMax:			558
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	213
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	141
+		X BOffset:	-33
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              1     7    64    11    11     6    85     7 
+	00009: PUSHW[1]            -64 
+	00012: PUSHB[4]             23    25    52     7 
+	00017: PUSHW[1]            -64 
+	00020: NPUSHB      (14):    34    37    52    47     7     1     7     1    90    72 
+	                            43     1     1     7 
+	00036: PUSHW[2]            546    41 
+	00041: SVTCA[y-axis] 
+	00042: CALL       
+	00043: SVTCA[x-axis] 
+	00044: CALL       
+	00045: DELTAP1    
+	00046: CALL       
+	00047: CALL       
+	00048: CALL       
+	00049: SHC[rp1,zp0] 
+
+	Glyph 117: off = 0x0000882A, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			35
+	  yMin:			0
+	  xMax:			411
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	213
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	67
+		X BOffset:	-54
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     1     5    64    23    25    52     5    64    34    37 
+	                            52    32     5     1     5     2 
+	00018: PUSHW[1]            -90 
+	00021: PUSHB[5]             72    43     1     1     5 
+	00027: PUSHW[2]            546    41 
+	00032: SVTCA[y-axis] 
+	00033: CALL       
+	00034: SVTCA[x-axis] 
+	00035: CALL       
+	00036: DELTAP1    
+	00037: CALL       
+	00038: CALL       
+	00039: SHC[rp1,zp0] 
+
+	Glyph 118: off = 0x0000886A, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-17
+	  yMin:			0
+	  xMax:			616
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	213
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	214
+		X BOffset:	-42
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0     6     9     1     2    65     1     1    10 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 119: off = 0x00008898, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			9
+	  yMin:			0
+	  xMax:			570
+	  yMax:			1475
+
+	     0: Flags:		0x0226
+		Glyf Index:	213
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	142
+		X BOffset:	-52
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     2     1     8    32    11    11     6    85     8     2 
+	                             0    72    43     1     2     2    11 
+	00019: PUSHW[2]            546    41 
+	00024: SVTCA[y-axis] 
+	00025: CALL       
+	00026: SVTCA[x-axis] 
+	00027: CALL       
+	00028: CALL       
+	00029: SHC[rp1,zp0] 
+	00030: SHC[rp1,zp0] 
+
+	Glyph 120: off = 0x000088D0, len = 80
+	  numberOfContours:	-1  (Composite)
+	  xMin:			135
+	  yMin:			0
+	  xMax:			998
+	  yMax:			1450
+
+	     0: Flags:		0x0226
+		Glyf Index:	81
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	255
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1     1    38 
+	00005: PUSHW[2]            546    41 
+	00010: SVTCA[y-axis] 
+	00011: CALL       
+	00012: SVTCA[x-axis] 
+	00013: PUSHB[2]              6     2 
+	00016: RS         
+	00017: EQ         
+	00018: IF         
+	00019: PUSHB[6]              0    23    35     1    11    65 
+	00026: CALL       
+	00027: ELSE       
+	00028: PUSHW[2]             40   -64 
+	00033: PUSHB[8]             34    36    52    79    40     1    40    18 
+	00042: PUSHW[1]            -30 
+	00045: PUSHB[2]             72    43 
+	00048: CALL       
+	00049: DELTAP1    
+	00050: CALL       
+	00051: EIF        
+	00052: SHC[rp1,zp0] 
+
+	Glyph 121: off = 0x00008920, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1063
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	244
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     2   224    29   240    29     2    29     4     0    72 
+	                            43     2     1    29 
+	00016: PUSHW[2]            546    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 122: off = 0x00008956, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1063
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	222
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              2    27 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (17):    11    13    52    15    27     1   112    27     1    27 
+	                             4     0    72    43     2     1    27 
+	00025: PUSHW[2]            546    41 
+	00030: SVTCA[y-axis] 
+	00031: CALL       
+	00032: SVTCA[x-axis] 
+	00033: CALL       
+	00034: DELTAP1    
+	00035: DELTAP2    
+	00036: CALL       
+	00037: SHC[rp1,zp0] 
+
+	Glyph 123: off = 0x00008996, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1063
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	224
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     2    28    64    46    50    52   159    28     1     0 
+	                            28    31     0     7    65     2     1    32 
+	00020: PUSHW[2]            546    41 
+	00025: SVTCA[y-axis] 
+	00026: CALL       
+	00027: SVTCA[x-axis] 
+	00028: CALL       
+	00029: DELTAP3    
+	00030: CALL       
+	00031: SHC[rp1,zp0] 
+
+	Glyph 124: off = 0x000089D0, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1063
+	  yMax:			1475
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	224
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     3     2    30    64    22    22     6    85    30 
+	00011: PUSHW[1]            -64 
+	00014: NPUSHB      (13):    10    11     6    85    30     4   110    72    43     2 
+	                             3     2    33 
+	00029: PUSHW[2]            546    41 
+	00034: SVTCA[y-axis] 
+	00035: CALL       
+	00036: SVTCA[x-axis] 
+	00037: CALL       
+	00038: CALL       
+	00039: CALL       
+	00040: SHC[rp1,zp0] 
+	00041: SHC[rp1,zp0] 
+
+	Glyph 125: off = 0x00008A14, len = 74
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1063
+	  yMax:			1450
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	224
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (23):     2    47    43    63    43     2   127    43   255    43 
+	                             2    79    43   143    43     2    47    43    63    43 
+	                             2    43     4 
+	00025: PUSHW[1]            -20 
+	00028: PUSHB[5]             72    43     2     1    41 
+	00034: PUSHW[2]            546    41 
+	00039: SVTCA[y-axis] 
+	00040: CALL       
+	00041: SVTCA[x-axis] 
+	00042: CALL       
+	00043: DELTAP1    
+	00044: DELTAP1    
+	00045: DELTAP1    
+	00046: DELTAP2    
+	00047: SHC[rp1,zp0] 
+
+	Glyph 126: off = 0x00008A5E, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			992
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	231
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     1    28    64    14    16    52    31    28    79    28 
+	                             2    28    17    60    72    43     1     1    28 
+	00021: PUSHW[2]            546    41 
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP2    
+	00031: CALL       
+	00032: SHC[rp1,zp0] 
+
+	Glyph 127: off = 0x00008A9A, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			992
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	263
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     1    26    17     0    72    39     1     1    26 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+
+	Glyph 128: off = 0x00008ACA, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			992
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	220
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1     1    31 
+	00005: PUSHW[2]            546    41 
+	00010: SVTCA[y-axis] 
+	00011: CALL       
+	00012: SVTCA[x-axis] 
+	00013: PUSHB[2]              6     2 
+	00016: RS         
+	00017: EQ         
+	00018: IF         
+	00019: PUSHB[6]              0    27    30    11    22    65 
+	00026: CALL       
+	00027: ELSE       
+	00028: PUSHB[8]            143    25     1    25    17    35    72    43 
+	00037: CALL       
+	00038: DELTAP1    
+	00039: EIF        
+	00040: SHC[rp1,zp0] 
+
+	Glyph 129: off = 0x00008B0E, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			992
+	  yMax:			1475
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	220
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     2     1   112    25     1     0    25    31    17    17 
+	                            65     1     2     2    32 
+	00017: PUSHW[2]            546    41 
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+	00026: DELTAP1    
+	00027: SHC[rp1,zp0] 
+	00028: SHC[rp1,zp0] 
+
+	Glyph 130: off = 0x00008B46, len = 144
+	  numberOfContours:	1
+	  xMin:			73
+	  yMin:			-346
+	  xMax:			1054
+	  yMax:			1432
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	94
+	00000: NPUSHB      (51):     2     1     9    10    10     1    32     4    11     0 
+	                             3     4     8     7     7     4   110     6     5     0 
+	                             8     9     6     7     7    10    10     9   110    11 
+	                            32     0     5     4     4     1     1     0   110     3 
+	                            64     2   144     2     2     2    62    12   112   140 
+	                            24 
+	00053: CALL       
+	00054: SRP0       
+	00055: MIRP[srp0,nmd,rd,0] 
+	00056: DELTAP1    
+	00057: ALIGNRP    
+	00058: MIRP[srp0,nmd,rd,0] 
+	00059: ALIGNRP    
+	00060: SRP0       
+	00061: ALIGNRP    
+	00062: SRP0       
+	00063: ALIGNRP    
+	00064: SRP0       
+	00065: MIRP[srp0,md,rd,1] 
+	00066: MIRP[nrp0,nmd,rd,0] 
+	00067: ALIGNRP    
+	00068: SRP0       
+	00069: ALIGNRP    
+	00070: SRP0       
+	00071: ALIGNRP    
+	00072: SRP0       
+	00073: ALIGNRP    
+	00074: SVTCA[y-axis] 
+	00075: MIAP[rd+ci] 
+	00076: ALIGNRP    
+	00077: MIRP[srp0,nmd,rd,0] 
+	00078: ALIGNRP    
+	00079: SRP0       
+	00080: ALIGNRP    
+	00081: SRP0       
+	00082: ALIGNRP    
+	00083: MDAP[rd]   
+	00084: ALIGNRP    
+	00085: SRP0       
+	00086: MIRP[srp0,md,rd,1] 
+	00087: ALIGNRP    
+	00088: SRP0       
+	00089: ALIGNRP    
+	00090: SRP0       
+	00091: ALIGNRP    
+	00092: IUP[y]     
+	00093: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:  YDual                               On
+	  9:        XDual         Y-Short         On
+	 10:  YDual                               On
+	 11:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   472,  -346)  ->  Abs (   472,  -346)
+	  1: Rel (     0,  1212)  ->  Abs (   472,   866)
+	  2: Rel (  -399,     0)  ->  Abs (    73,   866)
+	  3: Rel (     0,   160)  ->  Abs (    73,  1026)
+	  4: Rel (   399,     0)  ->  Abs (   472,  1026)
+	  5: Rel (     0,   406)  ->  Abs (   472,  1432)
+	  6: Rel (   180,     0)  ->  Abs (   652,  1432)
+	  7: Rel (     0,  -406)  ->  Abs (   652,  1026)
+	  8: Rel (   402,     0)  ->  Abs (  1054,  1026)
+	  9: Rel (     0,  -160)  ->  Abs (  1054,   866)
+	 10: Rel (  -402,     0)  ->  Abs (   652,   866)
+	 11: Rel (     0, -1212)  ->  Abs (   652,  -346)
+
+	Glyph 131: off = 0x00008BD6, len = 134
+	  numberOfContours:	2
+	  xMin:			128
+	  yMin:			936
+	  xMax:			683
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	59
+	00000: PUSHW[2]             15   653 
+	00005: PUSHB[6]              0     9     1     9   131    21 
+	00012: PUSHW[1]            653 
+	00015: PUSHB[3]              3     1    18 
+	00019: PUSHW[1]            653 
+	00022: PUSHB[6]             15     6     1     6   131    12 
+	00029: PUSHW[1]            653 
+	00032: NPUSHB       (9):    32     0     1     0   172    24   157   121    24 
+	00043: CALL       
+	00044: SRP0       
+	00045: MIRP[srp0,nmd,rd,2] 
+	00046: DELTAP1    
+	00047: MIRP[nrp0,md,rd,1] 
+	00048: MIRP[srp0,md,rd,1] 
+	00049: DELTAP1    
+	00050: MIRP[nrp0,md,rd,1] 
+	00051: SVTCA[y-axis] 
+	00052: MIAP[rd+ci] 
+	00053: MIRP[nrp0,md,rd,1] 
+	00054: MIRP[srp0,md,rd,1] 
+	00055: DELTAP1    
+	00056: MIRP[nrp0,md,rd,1] 
+	00057: IUP[y]     
+	00058: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:        XDual         Y-Short         Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   128,  1214)  ->  Abs (   128,  1214)
+	  1: Rel (     0,   115)  ->  Abs (   128,  1329)
+	  2: Rel (   163,   162)  ->  Abs (   291,  1491)
+	  3: Rel (   114,     0)  ->  Abs (   405,  1491)
+	  4: Rel (   116,     0)  ->  Abs (   521,  1491)
+	  5: Rel (   162,  -162)  ->  Abs (   683,  1329)
+	  6: Rel (     0,  -115)  ->  Abs (   683,  1214)
+	  7: Rel (     0,  -115)  ->  Abs (   683,  1099)
+	  8: Rel (  -163,  -163)  ->  Abs (   520,   936)
+	  9: Rel (  -115,     0)  ->  Abs (   405,   936)
+	 10: Rel (  -114,     0)  ->  Abs (   291,   936)
+	 11: Rel (  -163,   162)  ->  Abs (   128,  1098)
+	 12: Rel (   109,   116)  ->  Abs (   237,  1214)
+	 13: Rel (     0,   -70)  ->  Abs (   237,  1144)
+	 14: Rel (    99,   -99)  ->  Abs (   336,  1045)
+	 15: Rel (    70,     0)  ->  Abs (   406,  1045)
+	 16: Rel (    69,     0)  ->  Abs (   475,  1045)
+	 17: Rel (    99,    99)  ->  Abs (   574,  1144)
+	 18: Rel (     0,    70)  ->  Abs (   574,  1214)
+	 19: Rel (     0,    70)  ->  Abs (   574,  1284)
+	 20: Rel (   -99,    99)  ->  Abs (   475,  1383)
+	 21: Rel (   -69,     0)  ->  Abs (   406,  1383)
+	 22: Rel (   -70,     0)  ->  Abs (   336,  1383)
+	 23: Rel (   -99,   -99)  ->  Abs (   237,  1284)
+
+	Glyph 132: off = 0x00008C5C, len = 526
+	  numberOfContours:	2
+	  xMin:			107
+	  yMin:			-409
+	  xMax:			1034
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  32
+	  1:  42
+
+	  Length of Instructions:	385
+	00000: NPUSHB     (150):    21    27    20    28     2    54     1    93     4    88 
+	                            16   104    15   104    24   104    33   120    15   115 
+	                            28   117    29   137    41   169    33   230     1   232 
+	                            15   232    27   248    32   249    33   248    35    17 
+	                            72    25    74    29    73    32   104    25   104    29 
+	                           104    42     6    74     9    75    32   105    15   107 
+	                            32   121    15   166     0   165    17   169    41   169 
+	                            42   230    14    10    69    30   102     5   101    30 
+	                             3    29     8    31    20    16    16     2    85    15 
+	                            15    16    24    33    42    42    41    25    25    14 
+	                             0     0    32     1     1     3    12    12    10    27 
+	                            27    28    26    26    13    42    33    31    27    24 
+	                            15    12     1     0     9    39    30     7     6    15 
+	                            12     1    42     7     3    31    30     0     3    33 
+	                             6    27    24    35    25    26    13    25    26    13 
+	00152: PUSHW[1]            606 
+	00155: NPUSHB      (23):    14    25    20    14    14    25    13    14    14    18 
+	                            13    25    39    26     7     6    14    10    13    26 
+	                            25    22     7 
+	00180: PUSHW[1]            682 
+	00183: NPUSHB      (56):     6     6    12    24    25     0    33    51    35    28 
+	                            22     7    24     7    12    11     3    28    10    11 
+	                            14    14     6    36     7    26    44    39    36    18 
+	                             6    13    13     2    85    18    10    12    12     2 
+	                            85    18    20    11    11     2    85    31    18    63 
+	                            18     2    18    25    43   230 
+	00241: PUSHW[3]            304    24   284 
+	00248: SCANCTRL   
+	00249: CALL       
+	00250: FLIPOFF    
+	00251: SRP0       
+	00252: MIRP[srp0,nmd,rd,0] 
+	00253: DELTAP1    
+	00254: CALL       
+	00255: CALL       
+	00256: CALL       
+	00257: FLIPON     
+	00258: MIRP[nrp0,md,rd,1] 
+	00259: FLIPOFF    
+	00260: SRP0       
+	00261: MIRP[srp0,nmd,rd,2] 
+	00262: FLIPON     
+	00263: MIRP[nrp0,md,rd,1] 
+	00264: SVTCA[y-axis] 
+	00265: MIAP[rd+ci] 
+	00266: MIAP[rd+ci] 
+	00267: MIRP[nrp0,md,rd,1] 
+	00268: MIAP[rd+ci] 
+	00269: MIAP[rd+ci] 
+	00270: MIAP[rd+ci] 
+	00271: MIRP[srp0,md,rd,1] 
+	00272: MIRP[nrp0,nmd,rd,0] 
+	00273: MIAP[rd+ci] 
+	00274: SRP1       
+	00275: SRP2       
+	00276: IP         
+	00277: MDAP[rd]   
+	00278: MIRP[nrp0,nmd,rd,0] 
+	00279: SRP1       
+	00280: SRP2       
+	00281: IP         
+	00282: SRP1       
+	00283: SRP2       
+	00284: IP         
+	00285: SVTCA[x-axis] 
+	00286: SRP1       
+	00287: SRP2       
+	00288: IP         
+	00289: SRP2       
+	00290: IP         
+	00291: IP         
+	00292: SRP1       
+	00293: IP         
+	00294: SFVTL[=p1,p2] 
+	00295: SDPVTL[1]  
+	00296: MDAP[nrd]  
+	00297: CALL       
+	00298: SFVTL[=p1,p2] 
+	00299: SDPVTL[1]  
+	00300: RDTG       
+	00301: MDRP[nrp0,nmd,rd,0] 
+	00302: SVTCA[y-axis] 
+	00303: SRP1       
+	00304: SRP2       
+	00305: IP         
+	00306: SRP1       
+	00307: SRP2       
+	00308: SLOOP      
+	00309: IP         
+	00310: SRP1       
+	00311: SRP2       
+	00312: IP         
+	00313: IP         
+	00314: SRP2       
+	00315: IP         
+	00316: SVTCA[x-axis] 
+	00317: SRP1       
+	00318: SRP2       
+	00319: IP         
+	00320: SRP2       
+	00321: SLOOP      
+	00322: IP         
+	00323: SDPVTL[1]  
+	00324: SRP0       
+	00325: SFVTL[=p1,p2] 
+	00326: ALIGNRP    
+	00327: SFVTL[=p1,p2] 
+	00328: MDRP[nrp0,nmd,rd,0] 
+	00329: SFVTL[=p1,p2] 
+	00330: ALIGNRP    
+	00331: SFVTL[=p1,p2] 
+	00332: ALIGNRP    
+	00333: SDPVTL[1]  
+	00334: SRP0       
+	00335: SFVTL[=p1,p2] 
+	00336: ALIGNRP    
+	00337: SFVTCA[x-axis] 
+	00338: ALIGNRP    
+	00339: ALIGNRP    
+	00340: SFVTL[=p1,p2] 
+	00341: ALIGNRP    
+	00342: SVTCA[x-axis] 
+	00343: CALL       
+	00344: IUP[y]     
+	00345: IUP[x]     
+	00346: RTG        
+	00347: RS         
+	00348: JROF       
+	00349: NPUSHB      (18):    36    38    19    21    37    37    20    38    36    21 
+	                            39    29     0    38    19    35    29     1 
+	00369: SVTCA[y-axis] 
+	00370: CALL       
+	00371: SVTCA[x-axis] 
+	00372: CALL       
+	00373: CALL       
+	00374: CALL       
+	00375: FLIPRGON   
+	00376: FLIPRGON   
+	00377: SVTCA[y-axis] 
+	00378: DELTAP2    
+	00379: DELTAP1    
+	00380: SVTCA[x-axis] 
+	00381: DELTAP2    
+	00382: DELTAP1    
+	00383: SVTCA[y-axis] 
+	00384: DELTAP3    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                              X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:                              X-Short On
+	 14:  YDual               Y-Short X-Short On
+	 15:        XDual                 X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:                              X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual                 X-Short On
+	 26:        XDual         Y-Short X-Short On
+	 27:                              X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short X-Short On
+	 31:                      Y-Short X-Short On
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual               Y-Short X-Short On
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:                      Y-Short X-Short Off
+	 38:                      Y-Short X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   744,   894)  ->  Abs (   744,   894)
+	  1: Rel (  -222,  -766)  ->  Abs (   522,   128)
+	  2: Rel (    33,    -9)  ->  Abs (   555,   119)
+	  3: Rel (    28,     0)  ->  Abs (   583,   119)
+	  4: Rel (   104,     0)  ->  Abs (   687,   119)
+	  5: Rel (   151,   142)  ->  Abs (   838,   261)
+	  6: Rel (    17,   128)  ->  Abs (   855,   389)
+	  7: Rel (   179,   -20)  ->  Abs (  1034,   369)
+	  8: Rel (   -33,  -185)  ->  Abs (  1001,   184)
+	  9: Rel (  -247,  -212)  ->  Abs (   754,   -28)
+	 10: Rel (  -168,     0)  ->  Abs (   586,   -28)
+	 11: Rel (   -49,     0)  ->  Abs (   537,   -28)
+	 12: Rel (   -54,    14)  ->  Abs (   483,   -14)
+	 13: Rel (  -118,  -395)  ->  Abs (   365,  -409)
+	 14: Rel (  -112,    32)  ->  Abs (   253,  -377)
+	 15: Rel (   115,   398)  ->  Abs (   368,    21)
+	 16: Rel (  -115,    55)  ->  Abs (   253,    76)
+	 17: Rel (  -146,   257)  ->  Abs (   107,   333)
+	 18: Rel (     0,   193)  ->  Abs (   107,   526)
+	 19: Rel (     0,   178)  ->  Abs (   107,   704)
+	 20: Rel (   117,   255)  ->  Abs (   224,   959)
+	 21: Rel (   233,   128)  ->  Abs (   457,  1087)
+	 22: Rel (   121,     0)  ->  Abs (   578,  1087)
+	 23: Rel (    36,     0)  ->  Abs (   614,  1087)
+	 24: Rel (    64,    -8)  ->  Abs (   678,  1079)
+	 25: Rel (   113,   387)  ->  Abs (   791,  1466)
+	 26: Rel (   110,   -32)  ->  Abs (   901,  1434)
+	 27: Rel (  -112,  -387)  ->  Abs (   789,  1047)
+	 28: Rel (    99,   -43)  ->  Abs (   888,  1004)
+	 29: Rel (   106,  -145)  ->  Abs (   994,   859)
+	 30: Rel (    21,  -109)  ->  Abs (  1015,   750)
+	 31: Rel (  -175,   -27)  ->  Abs (   840,   723)
+	 32: Rel (   -26,   112)  ->  Abs (   814,   835)
+	 33: Rel (  -176,   105)  ->  Abs (   638,   940)
+	 34: Rel (   -32,     3)  ->  Abs (   606,   943)
+	 35: Rel (   -18,     0)  ->  Abs (   588,   943)
+	 36: Rel (   -82,     0)  ->  Abs (   506,   943)
+	 37: Rel (  -143,   -91)  ->  Abs (   363,   852)
+	 38: Rel (   -71,  -191)  ->  Abs (   292,   661)
+	 39: Rel (     0,  -126)  ->  Abs (   292,   535)
+	 40: Rel (     0,  -132)  ->  Abs (   292,   403)
+	 41: Rel (    64,  -182)  ->  Abs (   356,   221)
+	 42: Rel (    59,   -44)  ->  Abs (   415,   177)
+
+	Glyph 133: off = 0x00008E6A, len = 404
+	  numberOfContours:	1
+	  xMin:			27
+	  yMin:			-28
+	  xMax:			1082
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  57
+
+	  Length of Instructions:	238
+	00000: NPUSHB      (74):   109    55   118    43   134    43     3    22    33     1 
+	                            20     7    58    24    73    24     3    41    40    39 
+	                            36     4    34    42    57     0     3     3     5    56 
+	                             2     3     3    36    36    37    30    38     1     0 
+	                             0    39    39    38    38    30    46    50    39    95 
+	                            49   111    49     2    49   254    64    53     1    53 
+	                            41    46     1    10    64    29    34    52    10    64 
+	                            18    20    52    10 
+	00076: PUSHW[1]            405 
+	00079: PUSHB[4]             47    27     1    27 
+	00084: PUSHW[1]            696 
+	00087: NPUSHB      (10):    20    16    30    17   171    14    30    20    11    31 
+	00099: PUSHW[1]            602 
+	00102: PUSHB[7]             30    11    50    94    49    56    16 
+	00110: PUSHW[1]            399 
+	00113: NPUSHB      (44):    32    17    48    17     2    17    26    59     1     2 
+	                           165    34    94    32     5     1     5    77    56    94 
+	                           191    42   207    42   239    42     3    42   114    31 
+	                            38    37    39    30    62   175    31     1    31    25 
+	                            58   169   141    24 
+	00159: CALL       
+	00160: FLIPOFF    
+	00161: SRP0       
+	00162: MIRP[srp0,nmd,rd,0] 
+	00163: DELTAP1    
+	00164: RTHG       
+	00165: FLIPON     
+	00166: MIRP[nrp0,nmd,rd,0] 
+	00167: RTG        
+	00168: MIRP[srp0,nmd,rd,0] 
+	00169: ALIGNRP    
+	00170: SRP0       
+	00171: MIRP[srp0,nmd,rd,0] 
+	00172: DELTAP1    
+	00173: MIRP[srp0,md,rd,1] 
+	00174: MIRP[srp0,nmd,rd,0] 
+	00175: DELTAP1    
+	00176: MIRP[nrp0,md,rd,1] 
+	00177: MIRP[srp0,nmd,rd,0] 
+	00178: ALIGNRP    
+	00179: FLIPOFF    
+	00180: SRP0       
+	00181: MIRP[srp0,nmd,rd,2] 
+	00182: DELTAP1    
+	00183: FLIPON     
+	00184: MIRP[nrp0,nmd,rd,0] 
+	00185: MIRP[srp0,nmd,rd,0] 
+	00186: MIRP[nrp0,md,rd,1] 
+	00187: SVTCA[y-axis] 
+	00188: MIAP[rd+ci] 
+	00189: MIRP[nrp0,md,rd,1] 
+	00190: MIAP[rd+ci] 
+	00191: MIRP[nrp0,md,rd,1] 
+	00192: MIRP[srp0,md,rd,1] 
+	00193: MIRP[nrp0,md,rd,1] 
+	00194: SRP0       
+	00195: MIRP[srp0,nmd,rd,0] 
+	00196: DELTAP1    
+	00197: MIRP[nrp0,md,rd,1] 
+	00198: CALL       
+	00199: CALL       
+	00200: MIAP[rd+ci] 
+	00201: MIRP[nrp0,md,rd,1] 
+	00202: DELTAP2    
+	00203: MIRP[srp0,md,rd,1] 
+	00204: DELTAP1    
+	00205: MIRP[nrp0,nmd,rd,0] 
+	00206: SRP1       
+	00207: SRP2       
+	00208: IP         
+	00209: MDAP[rd]   
+	00210: ALIGNRP    
+	00211: SRP0       
+	00212: ALIGNRP    
+	00213: SRP0       
+	00214: ALIGNRP    
+	00215: SRP0       
+	00216: MIRP[srp0,md,rd,1] 
+	00217: ALIGNRP    
+	00218: SRP0       
+	00219: ALIGNRP    
+	00220: SRP0       
+	00221: ALIGNRP    
+	00222: SVTCA[x-axis] 
+	00223: SRP1       
+	00224: SRP2       
+	00225: SLOOP      
+	00226: IP         
+	00227: SRP1       
+	00228: SRP2       
+	00229: SLOOP      
+	00230: IP         
+	00231: IUP[y]     
+	00232: IUP[x]     
+	00233: SVTCA[x-axis] 
+	00234: DELTAP1    
+	00235: DELTAP2    
+	00236: SVTCA[y-axis] 
+	00237: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:                      Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:        XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:                      Y-Short X-Short Off
+	 30:                      Y-Short X-Short On
+	 31:  YDual               Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual               Y-Short X-Short On
+	 37:  YDual                       X-Short On
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual XDual         Y-Short X-Short On
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:        XDual         Y-Short X-Short Off
+	 49:        XDual         Y-Short X-Short On
+	 50:                      Y-Short X-Short On
+	 51:  YDual               Y-Short X-Short Off
+	 52:  YDual               Y-Short X-Short Off
+	 53:  YDual                       X-Short On
+	 54:  YDual                       X-Short Off
+	 55:                      Y-Short X-Short Off
+	 56:        XDual         Y-Short         On
+	 57:        XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   396,   809)  ->  Abs (   396,   809)
+	  1: Rel (   315,     0)  ->  Abs (   711,   809)
+	  2: Rel (     0,  -148)  ->  Abs (   711,   661)
+	  3: Rel (  -284,     0)  ->  Abs (   427,   661)
+	  4: Rel (    19,   -44)  ->  Abs (   446,   617)
+	  5: Rel (     0,   -44)  ->  Abs (   446,   573)
+	  6: Rel (     0,   -87)  ->  Abs (   446,   486)
+	  7: Rel (   -83,  -194)  ->  Abs (   363,   292)
+	  8: Rel (   -95,  -101)  ->  Abs (   268,   191)
+	  9: Rel (    79,    22)  ->  Abs (   347,   213)
+	 10: Rel (    65,     0)  ->  Abs (   412,   213)
+	 11: Rel (    83,     0)  ->  Abs (   495,   213)
+	 12: Rel (   104,   -25)  ->  Abs (   599,   188)
+	 13: Rel (   172,   -41)  ->  Abs (   771,   147)
+	 14: Rel (    61,     0)  ->  Abs (   832,   147)
+	 15: Rel (    74,     0)  ->  Abs (   906,   147)
+	 16: Rel (   118,    56)  ->  Abs (  1024,   203)
+	 17: Rel (    58,  -165)  ->  Abs (  1082,    38)
+	 18: Rel (   -92,   -39)  ->  Abs (   990,    -1)
+	 19: Rel (  -101,   -24)  ->  Abs (   889,   -25)
+	 20: Rel (   -50,     0)  ->  Abs (   839,   -25)
+	 21: Rel (   -42,     0)  ->  Abs (   797,   -25)
+	 22: Rel (   -43,     8)  ->  Abs (   754,   -17)
+	 23: Rel (   -27,     5)  ->  Abs (   727,   -12)
+	 24: Rel (  -205,    63)  ->  Abs (   522,    51)
+	 25: Rel (   -30,     6)  ->  Abs (   492,    57)
+	 26: Rel (   -47,     8)  ->  Abs (   445,    65)
+	 27: Rel (   -47,     0)  ->  Abs (   398,    65)
+	 28: Rel (   -72,     0)  ->  Abs (   326,    65)
+	 29: Rel (  -163,   -50)  ->  Abs (   163,    15)
+	 30: Rel (   -67,   -43)  ->  Abs (    96,   -28)
+	 31: Rel (   -69,   173)  ->  Abs (    27,   145)
+	 32: Rel (    96,    53)  ->  Abs (   123,   198)
+	 33: Rel (   134,   197)  ->  Abs (   257,   395)
+	 34: Rel (     0,   142)  ->  Abs (   257,   537)
+	 35: Rel (     0,    61)  ->  Abs (   257,   598)
+	 36: Rel (   -17,    63)  ->  Abs (   240,   661)
+	 37: Rel (  -196,     0)  ->  Abs (    44,   661)
+	 38: Rel (     0,   148)  ->  Abs (    44,   809)
+	 39: Rel (   154,     0)  ->  Abs (   198,   809)
+	 40: Rel (   -33,   112)  ->  Abs (   165,   921)
+	 41: Rel (   -18,   103)  ->  Abs (   147,  1024)
+	 42: Rel (     0,    49)  ->  Abs (   147,  1073)
+	 43: Rel (     0,   208)  ->  Abs (   147,  1281)
+	 44: Rel (   154,   117)  ->  Abs (   301,  1398)
+	 45: Rel (   124,    93)  ->  Abs (   425,  1491)
+	 46: Rel (   176,     0)  ->  Abs (   601,  1491)
+	 47: Rel (   181,     0)  ->  Abs (   782,  1491)
+	 48: Rel (   235,  -199)  ->  Abs (  1017,  1292)
+	 49: Rel (    27,  -180)  ->  Abs (  1044,  1112)
+	 50: Rel (  -179,   -27)  ->  Abs (   865,  1085)
+	 51: Rel (   -15,   120)  ->  Abs (   850,  1205)
+	 52: Rel (  -149,   138)  ->  Abs (   701,  1343)
+	 53: Rel (  -104,     0)  ->  Abs (   597,  1343)
+	 54: Rel (  -111,     0)  ->  Abs (   486,  1343)
+	 55: Rel (  -147,  -143)  ->  Abs (   339,  1200)
+	 56: Rel (     0,  -101)  ->  Abs (   339,  1099)
+	 57: Rel (     0,  -111)  ->  Abs (   339,   988)
+
+	Glyph 134: off = 0x00008FFE, len = 432
+	  numberOfContours:	2
+	  xMin:			81
+	  yMin:			-431
+	  xMax:			1045
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  56
+	  1:  74
+
+	  Length of Instructions:	212
+	00000: NPUSHB     (106):     4    48    20    48    36    57   102    47   101    58 
+	                           117     6   116    17   122    29   121    45   121    62 
+	                           123    63   123    64   123    65   115    73   115    74 
+	                           132     6   132    17   139    29   137    45   139    62 
+	                           139    63   139    64   139    65   131    72   131    73 
+	                           131    74   148    41    27    41    13    41    19    36 
+	                            41    34    49     4    72    67    18    12     4    69 
+	                            66    63    57    37    10     5    34    58    47    39 
+	                             3    60     7    72    67    66    63    58    57    47 
+	                            39    37    18    12    10    12    28     1    54    28 
+	                             4   134     1    28    39    27 
+	00108: PUSHW[1]            275 
+	00111: NPUSHB      (45):    31    28    24     1     0    39     1    11    28    60 
+	                            27    62    43     7    94    50    62    60    41    79 
+	                            43     1    43    26    76    34    94    21    62    15 
+	                             1    60     0    56    69    41    79    15     1    15 
+	                            25    75   113   167    24 
+	00158: CALL       
+	00159: FLIPOFF    
+	00160: SRP0       
+	00161: MIRP[srp0,nmd,rd,0] 
+	00162: DELTAP1    
+	00163: FLIPON     
+	00164: MIRP[nrp0,md,rd,1] 
+	00165: MIRP[srp0,nmd,rd,0] 
+	00166: MIRP[nrp0,md,rd,1] 
+	00167: SRP0       
+	00168: MIRP[srp0,nmd,rd,0] 
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: FLIPOFF    
+	00171: SRP0       
+	00172: MIRP[srp0,nmd,rd,2] 
+	00173: DELTAP1    
+	00174: FLIPON     
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: MIRP[srp0,nmd,rd,0] 
+	00177: MIRP[nrp0,md,rd,1] 
+	00178: SRP0       
+	00179: MIRP[srp0,nmd,rd,0] 
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: SVTCA[y-axis] 
+	00182: MIAP[rd+ci] 
+	00183: MIRP[nrp0,nmd,rd,0] 
+	00184: MIAP[rd+ci] 
+	00185: MIRP[nrp0,md,rd,1] 
+	00186: MIRP[srp0,md,rd,1] 
+	00187: MIRP[nrp0,nmd,rd,0] 
+	00188: SRP0       
+	00189: MIRP[srp0,nmd,rd,0] 
+	00190: MIRP[nrp0,md,rd,1] 
+	00191: SRP1       
+	00192: SRP2       
+	00193: SLOOP      
+	00194: IP         
+	00195: SVTCA[x-axis] 
+	00196: SRP1       
+	00197: SRP2       
+	00198: SLOOP      
+	00199: IP         
+	00200: SRP2       
+	00201: SLOOP      
+	00202: IP         
+	00203: SRP1       
+	00204: SLOOP      
+	00205: IP         
+	00206: IUP[y]     
+	00207: IUP[x]     
+	00208: SVTCA[x-axis] 
+	00209: DELTAP1    
+	00210: SVTCA[y-axis] 
+	00211: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual         Y-Short X-Short On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short         On
+	 12:  YDual       Rep-  2 Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:                      Y-Short X-Short On
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:                      Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:        XDual         Y-Short X-Short On
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short X-Short On
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short X-Short On
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:                      Y-Short X-Short On
+	 46:                      Y-Short X-Short Off
+	 47:                      Y-Short X-Short On
+	 48:        XDual         Y-Short X-Short Off
+	 49:        XDual         Y-Short X-Short Off
+	 50:        XDual         Y-Short         On
+	 51:        XDual         Y-Short         Off
+	 52:                      Y-Short X-Short Off
+	 53:                      Y-Short X-Short Off
+	 54:  YDual                       X-Short On
+	 55:  YDual                       X-Short Off
+	 56:  YDual               Y-Short X-Short Off
+	 57:                                      On
+	 58:  YDual XDual         Y-Short X-Short Off
+	 59:  YDual XDual         Y-Short X-Short Off
+	 60:  YDual XDual         Y-Short         On
+	 61:  YDual XDual         Y-Short         Off
+	 62:  YDual               Y-Short X-Short On
+	 63:  YDual               Y-Short X-Short Off
+	 64:  YDual               Y-Short X-Short On
+	 65:  YDual               Y-Short X-Short Off
+	 66:  YDual               Y-Short X-Short On
+	 67:                      Y-Short X-Short Off
+	 68:                      Y-Short X-Short Off
+	 69:        XDual         Y-Short         On
+	 70:        XDual         Y-Short         Off
+	 71:        XDual         Y-Short X-Short On
+	 72:        XDual         Y-Short X-Short Off
+	 73:        XDual         Y-Short X-Short On
+	 74:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   143,   -70)  ->  Abs (   143,   -70)
+	  1: Rel (   181,    26)  ->  Abs (   324,   -44)
+	  2: Rel (    28,  -130)  ->  Abs (   352,  -174)
+	  3: Rel (   122,  -105)  ->  Abs (   474,  -279)
+	  4: Rel (   105,     0)  ->  Abs (   579,  -279)
+	  5: Rel (   102,     0)  ->  Abs (   681,  -279)
+	  6: Rel (   115,   104)  ->  Abs (   796,  -175)
+	  7: Rel (     0,    70)  ->  Abs (   796,  -105)
+	  8: Rel (     0,    51)  ->  Abs (   796,   -54)
+	  9: Rel (   -36,    43)  ->  Abs (   760,   -11)
+	 10: Rel (   -62,    75)  ->  Abs (   698,    64)
+	 11: Rel (  -278,   170)  ->  Abs (   420,   234)
+	 12: Rel (  -148,    91)  ->  Abs (   272,   325)
+	 13: Rel (  -117,   103)  ->  Abs (   155,   428)
+	 14: Rel (   -74,   140)  ->  Abs (    81,   568)
+	 15: Rel (     0,    76)  ->  Abs (    81,   644)
+	 16: Rel (     0,    96)  ->  Abs (    81,   740)
+	 17: Rel (   120,   156)  ->  Abs (   201,   896)
+	 18: Rel (   105,    31)  ->  Abs (   306,   927)
+	 19: Rel (   -71,    68)  ->  Abs (   235,   995)
+	 20: Rel (   -58,   115)  ->  Abs (   177,  1110)
+	 21: Rel (     0,    65)  ->  Abs (   177,  1175)
+	 22: Rel (     0,   128)  ->  Abs (   177,  1303)
+	 23: Rel (   200,   188)  ->  Abs (   377,  1491)
+	 24: Rel (   165,     0)  ->  Abs (   542,  1491)
+	 25: Rel (   187,     0)  ->  Abs (   729,  1491)
+	 26: Rel (   210,  -178)  ->  Abs (   939,  1313)
+	 27: Rel (    21,  -169)  ->  Abs (   960,  1144)
+	 28: Rel (  -187,   -19)  ->  Abs (   773,  1125)
+	 29: Rel (   -21,   122)  ->  Abs (   752,  1247)
+	 30: Rel (  -105,    96)  ->  Abs (   647,  1343)
+	 31: Rel (   -89,     0)  ->  Abs (   558,  1343)
+	 32: Rel (   -92,     0)  ->  Abs (   466,  1343)
+	 33: Rel (  -113,   -99)  ->  Abs (   353,  1244)
+	 34: Rel (     0,   -60)  ->  Abs (   353,  1184)
+	 35: Rel (     0,   -52)  ->  Abs (   353,  1132)
+	 36: Rel (    36,   -44)  ->  Abs (   389,  1088)
+	 37: Rel (    56,   -68)  ->  Abs (   445,  1020)
+	 38: Rel (   250,  -152)  ->  Abs (   695,   868)
+	 39: Rel (   157,   -96)  ->  Abs (   852,   772)
+	 40: Rel (    55,   -45)  ->  Abs (   907,   727)
+	 41: Rel (    71,   -60)  ->  Abs (   978,   667)
+	 42: Rel (    67,  -128)  ->  Abs (  1045,   539)
+	 43: Rel (     0,   -75)  ->  Abs (  1045,   464)
+	 44: Rel (     0,  -113)  ->  Abs (  1045,   351)
+	 45: Rel (   -73,   -80)  ->  Abs (   972,   271)
+	 46: Rel (   -42,   -46)  ->  Abs (   930,   225)
+	 47: Rel (  -112,   -47)  ->  Abs (   818,   178)
+	 48: Rel (    80,   -61)  ->  Abs (   898,   117)
+	 49: Rel (    79,  -140)  ->  Abs (   977,   -23)
+	 50: Rel (     0,   -80)  ->  Abs (   977,  -103)
+	 51: Rel (     0,   -88)  ->  Abs (   977,  -191)
+	 52: Rel (  -100,  -157)  ->  Abs (   877,  -348)
+	 53: Rel (  -188,   -83)  ->  Abs (   689,  -431)
+	 54: Rel (  -109,     0)  ->  Abs (   580,  -431)
+	 55: Rel (  -191,     0)  ->  Abs (   389,  -431)
+	 56: Rel (  -224,   191)  ->  Abs (   165,  -240)
+	 57: Rel (   563,   484)  ->  Abs (   728,   244)
+	 58: Rel (    74,    38)  ->  Abs (   802,   282)
+	 59: Rel (    73,   101)  ->  Abs (   875,   383)
+	 60: Rel (     0,    48)  ->  Abs (   875,   431)
+	 61: Rel (     0,    57)  ->  Abs (   875,   488)
+	 62: Rel (   -52,    63)  ->  Abs (   823,   551)
+	 63: Rel (   -53,    63)  ->  Abs (   770,   614)
+	 64: Rel (  -172,   106)  ->  Abs (   598,   720)
+	 65: Rel (  -137,    84)  ->  Abs (   461,   804)
+	 66: Rel (   -67,    54)  ->  Abs (   394,   858)
+	 67: Rel (   -81,   -46)  ->  Abs (   313,   812)
+	 68: Rel (   -69,   -92)  ->  Abs (   244,   720)
+	 69: Rel (     0,   -56)  ->  Abs (   244,   664)
+	 70: Rel (     0,   -63)  ->  Abs (   244,   601)
+	 71: Rel (    46,   -57)  ->  Abs (   290,   544)
+	 72: Rel (    46,   -57)  ->  Abs (   336,   487)
+	 73: Rel (   161,   -95)  ->  Abs (   497,   392)
+	 74: Rel (   134,   -79)  ->  Abs (   631,   313)
+
+	Glyph 135: off = 0x000091AE, len = 76
+	  numberOfContours:	1
+	  xMin:			109
+	  yMin:			464
+	  xMax:			616
+	  yMax:			971
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	31
+	00000: PUSHW[2]              3   339 
+	00005: NPUSHB      (14):     9     6   204    32     0    48     0     2     0   117 
+	                            12    87   167    24 
+	00021: CALL       
+	00022: SRP0       
+	00023: MIRP[srp0,nmd,rd,2] 
+	00024: DELTAP1    
+	00025: MIRP[nrp0,md,rd,1] 
+	00026: SVTCA[y-axis] 
+	00027: MDAP[rd]   
+	00028: MIRP[nrp0,md,rd,1] 
+	00029: IUP[y]     
+	00030: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   109,   718)  ->  Abs (   109,   718)
+	  1: Rel (     0,   105)  ->  Abs (   109,   823)
+	  2: Rel (   149,   148)  ->  Abs (   258,   971)
+	  3: Rel (   104,     0)  ->  Abs (   362,   971)
+	  4: Rel (   105,     0)  ->  Abs (   467,   971)
+	  5: Rel (   149,  -148)  ->  Abs (   616,   823)
+	  6: Rel (     0,  -105)  ->  Abs (   616,   718)
+	  7: Rel (     0,  -105)  ->  Abs (   616,   613)
+	  8: Rel (  -149,  -149)  ->  Abs (   467,   464)
+	  9: Rel (  -105,     0)  ->  Abs (   362,   464)
+	 10: Rel (  -104,     0)  ->  Abs (   258,   464)
+	 11: Rel (  -149,   149)  ->  Abs (   109,   613)
+
+	Glyph 136: off = 0x000091FA, len = 148
+	  numberOfContours:	1
+	  xMin:			1
+	  yMin:			-407
+	  xMax:			1107
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	90
+	00000: NPUSHB      (13):    79    10    79    11    79    14    79    15     4    11 
+	                            12     1    15 
+	00015: PUSHW[3]            490     1   361 
+	00022: NPUSHB      (33):     7     9    14    35     8     7     0    13    12    35 
+	                            10    11   114    17     1   249     0    15    16    15 
+	                             2    15    15    16     8    26    17     4    25    16 
+	                           179   122    24 
+	00057: CALL       
+	00058: FLIPOFF    
+	00059: SRP0       
+	00060: MIRP[nrp0,nmd,rd,0] 
+	00061: SRP0       
+	00062: MIRP[nrp0,nmd,rd,2] 
+	00063: SRP2       
+	00064: IP         
+	00065: MDAP[rd]   
+	00066: DELTAP1    
+	00067: FLIPON     
+	00068: MIRP[nrp0,md,rd,1] 
+	00069: SRP0       
+	00070: MIRP[srp0,nmd,rd,0] 
+	00071: ALIGNRP    
+	00072: MIRP[srp0,md,rd,1] 
+	00073: ALIGNRP    
+	00074: SVTCA[y-axis] 
+	00075: MIAP[rd+ci] 
+	00076: ALIGNRP    
+	00077: MIRP[srp0,md,rd,1] 
+	00078: ALIGNRP    
+	00079: SRP0       
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SRP1       
+	00083: IP         
+	00084: IP         
+	00085: IUP[y]     
+	00086: IUP[x]     
+	00087: SVTCA[x-axis] 
+	00088: DELTAP2    
+	00089: SVTCA[y-axis] 
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual                               On
+	  9:        XDual         Y-Short         On
+	 10:  YDual                       X-Short On
+	 11:        XDual                         On
+	 12:  YDual                       X-Short On
+	 13:        XDual                         On
+	 14:  YDual                       X-Short On
+	 15:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   405,  -407)  ->  Abs (   405,  -407)
+	  1: Rel (     0,  1045)  ->  Abs (   405,   638)
+	  2: Rel (  -187,    10)  ->  Abs (   218,   648)
+	  3: Rel (  -217,   223)  ->  Abs (     1,   871)
+	  4: Rel (     0,   173)  ->  Abs (     1,  1044)
+	  5: Rel (     0,   193)  ->  Abs (     1,  1237)
+	  6: Rel (   241,   229)  ->  Abs (   242,  1466)
+	  7: Rel (   232,     0)  ->  Abs (   474,  1466)
+	  8: Rel (   633,     0)  ->  Abs (  1107,  1466)
+	  9: Rel (     0,  -173)  ->  Abs (  1107,  1293)
+	 10: Rel (  -144,     0)  ->  Abs (   963,  1293)
+	 11: Rel (     0, -1700)  ->  Abs (   963,  -407)
+	 12: Rel (  -170,     0)  ->  Abs (   793,  -407)
+	 13: Rel (     0,  1700)  ->  Abs (   793,  1293)
+	 14: Rel (  -223,     0)  ->  Abs (   570,  1293)
+	 15: Rel (     0, -1700)  ->  Abs (   570,  -407)
+
+	Glyph 137: off = 0x0000928E, len = 548
+	  numberOfContours:	1
+	  xMin:			153
+	  yMin:			-25
+	  xMax:			1187
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  54
+
+	  Length of Instructions:	394
+	00000: NPUSHB     (133):    11    45    27    45    63    56    70    10    70    17 
+	                            69    19    79    56    92    46   106    36   106    46 
+	                           112    56    11    73     8    38    37    37    40    17 
+	                            16    37    39    39    37    16    18    20    16    37 
+	                            39    39    37    16    18    20    16    16    18    23 
+	                            24    25    26    33    32    31    30    29     9    27 
+	                            34    41    40    39    38    37    36    35    14    15 
+	                            16    17    18    19    20    14    21    43    44    45 
+	                            46    12    11    10     9     8     8    42     2     3 
+	                            51    49     6    48     6    47     0    45    44    39 
+	                            37    38    28    27    29    18    17    16    11    10 
+	                            51    52    15    31    50    28     5     1    31    28 
+	                            24    11    54     0    10    47    28     8   164    21 
+	                            42    36    13 
+	00135: PUSHW[1]            557 
+	00138: NPUSHB      (12):    21    27   201   159    28     1    28    28    53    34 
+	                            36    21 
+	00152: PUSHW[1]            -12 
+	00155: PUSHB[5]             15    15     6    85    21 
+	00161: PUSHW[1]            -12 
+	00164: NPUSHB      (14):    12    12     6    85     0    21    96    21   112    21 
+	                           128    21     4    21 
+	00180: PUSHW[1]            573 
+	00183: PUSHB[7]              0    53    54     1    54    37     0 
+	00191: PUSHW[1]             -5 
+	00194: PUSHB[5]             16    16     6    85     0 
+	00200: PUSHW[1]            -12 
+	00203: PUSHB[5]             15    15     6    85     0 
+	00209: PUSHW[1]            -18 
+	00212: PUSHB[5]             13    13     6    85     0 
+	00218: PUSHW[1]            -11 
+	00221: NPUSHB      (10):    12    12     6    85    32     0     1     0   146    55 
+	00233: PUSHW[1]            310 
+	00236: PUSHB[2]             55    24 
+	00239: CALL       
+	00240: SRP0       
+	00241: MIRP[srp0,nmd,rd,0] 
+	00242: DELTAP1    
+	00243: CALL       
+	00244: CALL       
+	00245: CALL       
+	00246: CALL       
+	00247: MIRP[nrp0,md,rd,1] 
+	00248: ALIGNRP    
+	00249: SRP0       
+	00250: ALIGNRP    
+	00251: SRP0       
+	00252: MIRP[srp0,md,rd,1] 
+	00253: DELTAP1    
+	00254: CALL       
+	00255: CALL       
+	00256: MIRP[nrp0,md,rd,1] 
+	00257: SRP1       
+	00258: IP         
+	00259: MDAP[rd]   
+	00260: DELTAP1    
+	00261: MIRP[nrp0,md,rd,1] 
+	00262: SRP0       
+	00263: MIRP[srp0,nmd,rd,0] 
+	00264: MIRP[nrp0,md,rd,1] 
+	00265: SRP0       
+	00266: MIRP[srp0,nmd,rd,0] 
+	00267: MIRP[nrp0,md,rd,1] 
+	00268: SVTCA[y-axis] 
+	00269: MIAP[rd+ci] 
+	00270: ALIGNRP    
+	00271: MIAP[rd+ci] 
+	00272: MIRP[nrp0,md,rd,1] 
+	00273: MIAP[rd+ci] 
+	00274: MIRP[nrp0,md,rd,1] 
+	00275: SRP1       
+	00276: SLOOP      
+	00277: IP         
+	00278: SVTCA[x-axis] 
+	00279: SRP1       
+	00280: SRP2       
+	00281: SLOOP      
+	00282: IP         
+	00283: SRP1       
+	00284: SRP2       
+	00285: SLOOP      
+	00286: IP         
+	00287: SRP2       
+	00288: SLOOP      
+	00289: IP         
+	00290: SRP1       
+	00291: SRP2       
+	00292: SLOOP      
+	00293: IP         
+	00294: SDPVTL[1]  
+	00295: SFVTPV     
+	00296: MDAP[nrd]  
+	00297: CALL       
+	00298: SFVTPV     
+	00299: RDTG       
+	00300: SRP0       
+	00301: MDRP[nrp0,nmd,rd,0] 
+	00302: MDAP[nrd]  
+	00303: RTG        
+	00304: CALL       
+	00305: SFVTPV     
+	00306: RDTG       
+	00307: SRP0       
+	00308: MDRP[nrp0,nmd,rd,0] 
+	00309: SRP0       
+	00310: ALIGNRP    
+	00311: SDPVTL[1]  
+	00312: SFVTPV     
+	00313: SRP0       
+	00314: MDRP[nrp0,nmd,rd,0] 
+	00315: IUP[y]     
+	00316: IUP[x]     
+	00317: RTG        
+	00318: RS         
+	00319: JROF       
+	00320: NPUSHB      (52):    48    52    22    33     2     7     3    38    32    23 
+	                            34    27     1    30    25    28    27     0    29    28 
+	                            26    27    51     4    53    29     0    49     6    47 
+	                            27     1    33    22    31    27     0    29    26    31 
+	                            27     0    52     2    50    29     1    48     7    50 
+	                            27     1 
+	00374: SVTCA[y-axis] 
+	00375: CALL       
+	00376: CALL       
+	00377: CALL       
+	00378: CALL       
+	00379: SVTCA[x-axis] 
+	00380: CALL       
+	00381: CALL       
+	00382: SRP0       
+	00383: ALIGNRP    
+	00384: SRP0       
+	00385: ALIGNRP    
+	00386: CALL       
+	00387: CALL       
+	00388: CALL       
+	00389: FLIPRGON   
+	00390: FLIPRGON   
+	00391: FLIPRGON   
+	00392: SVTCA[x-axis] 
+	00393: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual         Y-Short         Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:              Rep-  2 Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:        XDual         Y-Short X-Short On
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short X-Short On
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual               Y-Short X-Short On
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual               Y-Short X-Short On
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual               Y-Short X-Short On
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual               Y-Short X-Short Off
+	 50:  YDual                       X-Short On
+	 51:  YDual                       X-Short Off
+	 52:                      Y-Short X-Short Off
+	 53:        XDual         Y-Short         On
+	 54:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   153,     0)  ->  Abs (   153,     0)
+	  1: Rel (     0,   999)  ->  Abs (   153,   999)
+	  2: Rel (     0,   183)  ->  Abs (   153,  1182)
+	  3: Rel (    89,   197)  ->  Abs (   242,  1379)
+	  4: Rel (   208,   112)  ->  Abs (   450,  1491)
+	  5: Rel (   130,     0)  ->  Abs (   580,  1491)
+	  6: Rel (   173,     0)  ->  Abs (   753,  1491)
+	  7: Rel (   198,  -173)  ->  Abs (   951,  1318)
+	  8: Rel (     0,  -114)  ->  Abs (   951,  1204)
+	  9: Rel (     0,   -51)  ->  Abs (   951,  1153)
+	 10: Rel (   -36,  -108)  ->  Abs (   915,  1045)
+	 11: Rel (   -92,  -161)  ->  Abs (   823,   884)
+	 12: Rel (   -24,   -63)  ->  Abs (   799,   821)
+	 13: Rel (     0,   -24)  ->  Abs (   799,   797)
+	 14: Rel (     0,   -32)  ->  Abs (   799,   765)
+	 15: Rel (    22,   -31)  ->  Abs (   821,   734)
+	 16: Rel (    21,   -32)  ->  Abs (   842,   702)
+	 17: Rel (   100,   -65)  ->  Abs (   942,   637)
+	 18: Rel (   136,   -89)  ->  Abs (  1078,   548)
+	 19: Rel (    45,   -54)  ->  Abs (  1123,   494)
+	 20: Rel (    64,   -77)  ->  Abs (  1187,   417)
+	 21: Rel (     0,  -105)  ->  Abs (  1187,   312)
+	 22: Rel (     0,  -139)  ->  Abs (  1187,   173)
+	 23: Rel (  -205,  -198)  ->  Abs (   982,   -25)
+	 24: Rel (  -160,     0)  ->  Abs (   822,   -25)
+	 25: Rel (  -126,     0)  ->  Abs (   696,   -25)
+	 26: Rel (  -190,   135)  ->  Abs (   506,   110)
+	 27: Rel (   -47,   106)  ->  Abs (   459,   216)
+	 28: Rel (   155,    72)  ->  Abs (   614,   288)
+	 29: Rel (    50,   -93)  ->  Abs (   664,   195)
+	 30: Rel (   100,   -72)  ->  Abs (   764,   123)
+	 31: Rel (    55,     0)  ->  Abs (   819,   123)
+	 32: Rel (    76,     0)  ->  Abs (   895,   123)
+	 33: Rel (   108,   104)  ->  Abs (  1003,   227)
+	 34: Rel (     0,    70)  ->  Abs (  1003,   297)
+	 35: Rel (     0,    56)  ->  Abs (  1003,   353)
+	 36: Rel (   -32,    40)  ->  Abs (   971,   393)
+	 37: Rel (   -21,    26)  ->  Abs (   950,   419)
+	 38: Rel (   -91,    62)  ->  Abs (   859,   481)
+	 39: Rel (  -166,   114)  ->  Abs (   693,   595)
+	 40: Rel (   -39,    57)  ->  Abs (   654,   652)
+	 41: Rel (   -40,    57)  ->  Abs (   614,   709)
+	 42: Rel (     0,    60)  ->  Abs (   614,   769)
+	 43: Rel (     0,    39)  ->  Abs (   614,   808)
+	 44: Rel (    27,    80)  ->  Abs (   641,   888)
+	 45: Rel (   103,   176)  ->  Abs (   744,  1064)
+	 46: Rel (    32,    88)  ->  Abs (   776,  1152)
+	 47: Rel (     0,    34)  ->  Abs (   776,  1186)
+	 48: Rel (     0,    62)  ->  Abs (   776,  1248)
+	 49: Rel (  -109,    95)  ->  Abs (   667,  1343)
+	 50: Rel (   -91,     0)  ->  Abs (   576,  1343)
+	 51: Rel (  -107,     0)  ->  Abs (   469,  1343)
+	 52: Rel (  -136,  -132)  ->  Abs (   333,  1211)
+	 53: Rel (     0,  -220)  ->  Abs (   333,   991)
+	 54: Rel (     0,  -991)  ->  Abs (   333,     0)
+
+	Glyph 138: off = 0x000094B2, len = 596
+	  numberOfContours:	4
+	  xMin:			3
+	  yMin:			-18
+	  xMax:			1512
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  15
+	  1:  31
+	  2:  54
+	  3:  64
+
+	  Length of Instructions:	387
+	00000: NPUSHB      (54):   154    18   148    22   148    26   154    30   219    18 
+	                           212    22   212    26   219    30     8   191    44   185 
+	                            45     2    38    39    41    45    41    48    43    49 
+	                           167     3   168    11   169    13   182    43   198    43 
+	                           214    43    10   101     8    48    49    47   100    47 
+	                           116    47     2    47 
+	00056: PUSHW[1]            -48 
+	00059: PUSHB[4]             38    45    52    47 
+	00064: PUSHW[1]            610 
+	00067: NPUSHB      (31):    46    44    20    46    46    44    45    44    43    42 
+	                            41     5    46    48    49    50     3    54    48    49 
+	                            40    51    45    44    43    42     8    47    41    41 
+	                            53 
+	00100: PUSHW[1]            610 
+	00103: PUSHB[6]             55    55    32    33    64    63 
+	00110: PUSHW[1]            610 
+	00113: NPUSHB      (28):    33     0    34   143    34     2    34   148     0    46 
+	                            47    47    54    79    32     1    15    32   111    32 
+	                           127    32   239    32     4    32   148    24 
+	00143: PUSHW[1]            610 
+	00146: PUSHB[3]              8    11    16 
+	00150: PUSHW[1]            610 
+	00153: PUSHB[3]              0     3    59 
+	00157: PUSHW[1]            610 
+	00160: PUSHB[3]             38    84    47 
+	00164: PUSHW[3]            610    46   278 
+	00171: PUSHB[7]              4    64    55    53    54    33    54 
+	00179: PUSHW[6]            610    32   330    12    28   610 
+	00192: PUSHB[4]              4    26    66    20 
+	00197: PUSHW[1]            610 
+	00200: PUSHB[6]             12    25    65   179   122    24 
+	00207: CALL       
+	00208: FLIPOFF    
+	00209: SRP0       
+	00210: MIRP[srp0,nmd,rd,0] 
+	00211: FLIPON     
+	00212: MIRP[nrp0,md,rd,1] 
+	00213: FLIPOFF    
+	00214: SRP0       
+	00215: MIRP[srp0,nmd,rd,2] 
+	00216: FLIPON     
+	00217: MIRP[nrp0,md,rd,1] 
+	00218: SRP0       
+	00219: MIRP[srp0,nmd,rd,0] 
+	00220: MIRP[nrp0,md,rd,1] 
+	00221: ALIGNRP    
+	00222: SRP0       
+	00223: ALIGNRP    
+	00224: ALIGNRP    
+	00225: ALIGNRP    
+	00226: SRP0       
+	00227: MIRP[srp0,nmd,rd,0] 
+	00228: MIRP[nrp0,md,rd,1] 
+	00229: MIRP[srp0,nmd,rd,0] 
+	00230: MIRP[nrp0,md,rd,1] 
+	00231: SVTCA[y-axis] 
+	00232: MIAP[rd+ci] 
+	00233: MIRP[nrp0,md,rd,1] 
+	00234: MIAP[rd+ci] 
+	00235: MIRP[nrp0,md,rd,1] 
+	00236: MIRP[srp0,nmd,rd,0] 
+	00237: DELTAP1    
+	00238: DELTAP2    
+	00239: ALIGNRP    
+	00240: ALIGNRP    
+	00241: SRP0       
+	00242: ALIGNRP    
+	00243: SRP0       
+	00244: MIRP[srp0,nmd,rd,0] 
+	00245: DELTAP1    
+	00246: ALIGNRP    
+	00247: MIRP[srp0,md,rd,1] 
+	00248: ALIGNRP    
+	00249: SRP1       
+	00250: SRP2       
+	00251: IP         
+	00252: MDAP[rd]   
+	00253: MIRP[srp0,md,rd,1] 
+	00254: IP         
+	00255: MDAP[rd]   
+	00256: SRP2       
+	00257: SLOOP      
+	00258: IP         
+	00259: SVTCA[x-axis] 
+	00260: SRP1       
+	00261: SLOOP      
+	00262: IP         
+	00263: SRP2       
+	00264: SLOOP      
+	00265: IP         
+	00266: SDPVTL[1]  
+	00267: MDAP[nrd]  
+	00268: CALL       
+	00269: CALL       
+	00270: DELTAP2    
+	00271: SFVTPV     
+	00272: RDTG       
+	00273: SRP0       
+	00274: MDRP[nrp0,nmd,rd,0] 
+	00275: SVTCA[x-axis] 
+	00276: IP         
+	00277: IUP[y]     
+	00278: IUP[x]     
+	00279: RTG        
+	00280: RS         
+	00281: JROF       
+	00282: NPUSHB      (74):    60    62     1    37    36    37    61    38    18    37 
+	                            14    38     2    37    30    38    22    38    10    37 
+	                             6    38    26    37    62    35    59    44     1    17 
+	                            15    20    33     0    31     1    28    33     1    23 
+	                             9    20    33     0    25     7    28    33     1    60 
+	                            37    63    44     1    19    13    16    33     1    29 
+	                             3    16    33     1    21    11    24    33     0    27 
+	                             5    24    33     0 
+	00358: SVTCA[y-axis] 
+	00359: CALL       
+	00360: CALL       
+	00361: CALL       
+	00362: CALL       
+	00363: CALL       
+	00364: SVTCA[x-axis] 
+	00365: CALL       
+	00366: CALL       
+	00367: CALL       
+	00368: CALL       
+	00369: CALL       
+	00370: CALL       
+	00371: CALL       
+	00372: CALL       
+	00373: CALL       
+	00374: CALL       
+	00375: CALL       
+	00376: CALL       
+	00377: CALL       
+	00378: CALL       
+	00379: CALL       
+	00380: FLIPRGON   
+	00381: FLIPRGON   
+	00382: SVTCA[x-axis] 
+	00383: DELTAP1    
+	00384: DELTAP2    
+	00385: SVTCA[y-axis] 
+	00386: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:                      Y-Short         Off
+	  3:        XDual                 X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                              X-Short Off
+	  7:                      Y-Short         Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short         Off
+	 11:                              X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:        XDual                 X-Short Off
+	 15:  YDual               Y-Short         Off
+	 16:        XDual         Y-Short X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                      Y-Short         Off
+	 19:                              X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:        XDual                 X-Short Off
+	 23:                      Y-Short         Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:  YDual               Y-Short         Off
+	 27:        XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:                              X-Short Off
+	 31:  YDual               Y-Short         Off
+	 32:                                      On
+	 33:        XDual                         On
+	 34:  YDual                               On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:                      Y-Short X-Short Off
+	 41:                      Y-Short X-Short On
+	 42:        XDual         Y-Short X-Short Off
+	 43:        XDual         Y-Short X-Short On
+	 44:        XDual         Y-Short X-Short Off
+	 45:        XDual         Y-Short X-Short On
+	 46:        XDual         Y-Short X-Short On
+	 47:  YDual                       X-Short On
+	 48:  YDual               Y-Short X-Short On
+	 49:  YDual               Y-Short X-Short Off
+	 50:  YDual               Y-Short X-Short On
+	 51:  YDual               Y-Short X-Short Off
+	 52:  YDual                       X-Short On
+	 53:  YDual                       X-Short On
+	 54:        XDual                         On
+	 55:        XDual                         On
+	 56:  YDual XDual                 X-Short On
+	 57:  YDual XDual                 X-Short Off
+	 58:  YDual XDual         Y-Short X-Short Off
+	 59:  YDual XDual         Y-Short         On
+	 60:  YDual XDual         Y-Short         Off
+	 61:  YDual               Y-Short X-Short Off
+	 62:  YDual               Y-Short X-Short Off
+	 63:  YDual                       X-Short On
+	 64:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   758,  1491)  ->  Abs (   758,  1491)
+	  1: Rel (   190,     0)  ->  Abs (   948,  1491)
+	  2: Rel (   362,  -195)  ->  Abs (  1310,  1296)
+	  3: Rel (   202,  -363)  ->  Abs (  1512,   933)
+	  4: Rel (     0,  -197)  ->  Abs (  1512,   736)
+	  5: Rel (     0,  -195)  ->  Abs (  1512,   541)
+	  6: Rel (  -199,  -360)  ->  Abs (  1313,   181)
+	  7: Rel (  -359,  -199)  ->  Abs (   954,   -18)
+	  8: Rel (  -196,     0)  ->  Abs (   758,   -18)
+	  9: Rel (  -196,     0)  ->  Abs (   562,   -18)
+	 10: Rel (  -359,   199)  ->  Abs (   203,   181)
+	 11: Rel (  -200,   360)  ->  Abs (     3,   541)
+	 12: Rel (     0,   195)  ->  Abs (     3,   736)
+	 13: Rel (     0,   197)  ->  Abs (     3,   933)
+	 14: Rel (   203,   363)  ->  Abs (   206,  1296)
+	 15: Rel (   362,   195)  ->  Abs (   568,  1491)
+	 16: Rel (   190,  -125)  ->  Abs (   758,  1366)
+	 17: Rel (  -159,     0)  ->  Abs (   599,  1366)
+	 18: Rel (  -301,  -163)  ->  Abs (   298,  1203)
+	 19: Rel (  -170,  -303)  ->  Abs (   128,   900)
+	 20: Rel (     0,  -164)  ->  Abs (   128,   736)
+	 21: Rel (     0,  -163)  ->  Abs (   128,   573)
+	 22: Rel (   167,  -299)  ->  Abs (   295,   274)
+	 23: Rel (   300,  -167)  ->  Abs (   595,   107)
+	 24: Rel (   163,     0)  ->  Abs (   758,   107)
+	 25: Rel (   163,     0)  ->  Abs (   921,   107)
+	 26: Rel (   300,   167)  ->  Abs (  1221,   274)
+	 27: Rel (   166,   299)  ->  Abs (  1387,   573)
+	 28: Rel (     0,   163)  ->  Abs (  1387,   736)
+	 29: Rel (     0,   164)  ->  Abs (  1387,   900)
+	 30: Rel (  -169,   303)  ->  Abs (  1218,  1203)
+	 31: Rel (  -302,   163)  ->  Abs (   916,  1366)
+	 32: Rel (  -489, -1047)  ->  Abs (   427,   319)
+	 33: Rel (     0,   812)  ->  Abs (   427,  1131)
+	 34: Rel (   279,     0)  ->  Abs (   706,  1131)
+	 35: Rel (   143,     0)  ->  Abs (   849,  1131)
+	 36: Rel (   128,   -45)  ->  Abs (   977,  1086)
+	 37: Rel (    76,  -112)  ->  Abs (  1053,   974)
+	 38: Rel (     0,   -63)  ->  Abs (  1053,   911)
+	 39: Rel (     0,   -89)  ->  Abs (  1053,   822)
+	 40: Rel (  -127,  -132)  ->  Abs (   926,   690)
+	 41: Rel (  -105,    -8)  ->  Abs (   821,   682)
+	 42: Rel (    43,   -18)  ->  Abs (   864,   664)
+	 43: Rel (    26,   -25)  ->  Abs (   890,   639)
+	 44: Rel (    49,   -48)  ->  Abs (   939,   591)
+	 45: Rel (    71,  -113)  ->  Abs (  1010,   478)
+	 46: Rel (    99,  -159)  ->  Abs (  1109,   319)
+	 47: Rel (  -160,     0)  ->  Abs (   949,   319)
+	 48: Rel (   -72,   128)  ->  Abs (   877,   447)
+	 49: Rel (   -85,   151)  ->  Abs (   792,   598)
+	 50: Rel (   -52,    38)  ->  Abs (   740,   636)
+	 51: Rel (   -36,    28)  ->  Abs (   704,   664)
+	 52: Rel (   -69,     0)  ->  Abs (   635,   664)
+	 53: Rel (   -77,     0)  ->  Abs (   558,   664)
+	 54: Rel (     0,  -345)  ->  Abs (   558,   319)
+	 55: Rel (     0,   457)  ->  Abs (   558,   776)
+	 56: Rel (   159,     0)  ->  Abs (   717,   776)
+	 57: Rel (   114,     0)  ->  Abs (   831,   776)
+	 58: Rel (    83,    68)  ->  Abs (   914,   844)
+	 59: Rel (     0,    56)  ->  Abs (   914,   900)
+	 60: Rel (     0,    36)  ->  Abs (   914,   936)
+	 61: Rel (   -40,    57)  ->  Abs (   874,   993)
+	 62: Rel (   -71,    28)  ->  Abs (   803,  1021)
+	 63: Rel (   -96,     0)  ->  Abs (   707,  1021)
+	 64: Rel (  -149,     0)  ->  Abs (   558,  1021)
+
+	Glyph 139: off = 0x00009706, len = 496
+	  numberOfContours:	3
+	  xMin:			3
+	  yMin:			-18
+	  xMax:			1512
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  15
+	  1:  31
+	  2:  58
+
+	  Length of Instructions:	307
+	00000: NPUSHB      (32):   148    18   148    22   155    26   155    30   166     3 
+	                           168    11   168    13   185    48   212    18   212    22 
+	                           219    26   219    30   213    51   214    54    14   112 
+	                             8    32 
+	00034: PUSHW[1]            683 
+	00037: PUSHB[4]             33   135    36    47 
+	00042: PUSHW[1]            683 
+	00045: PUSHB[4]             48    46     1    46 
+	00050: PUSHW[4]            608    43    56   610 
+	00059: NPUSHB      (16):    79    36     1    15    36   111    36   127    36   239 
+	                            36     4    36   148     8    50 
+	00077: PUSHW[1]            610 
+	00080: NPUSHB      (11):     0    43   143    43   255    43     3    43   148     0 
+	                            24 
+	00093: PUSHW[1]            610 
+	00096: PUSHB[3]              8    11    16 
+	00100: PUSHW[1]            610 
+	00103: PUSHB[3]              0     3    47 
+	00107: PUSHW[1]            610 
+	00110: PUSHB[3]             46   211    32 
+	00114: PUSHW[1]            610 
+	00117: PUSHB[4]             33   136     4    53 
+	00122: PUSHW[6]            610    39   612    12    28   610 
+	00135: PUSHB[4]              4    26    60    20 
+	00140: PUSHW[1]            610 
+	00143: PUSHB[6]             12    25    59   179   122    24 
+	00150: CALL       
+	00151: FLIPOFF    
+	00152: SRP0       
+	00153: MIRP[srp0,nmd,rd,0] 
+	00154: FLIPON     
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: FLIPOFF    
+	00157: SRP0       
+	00158: MIRP[srp0,nmd,rd,2] 
+	00159: FLIPON     
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: SRP0       
+	00162: MIRP[srp0,nmd,rd,0] 
+	00163: MIRP[nrp0,md,rd,1] 
+	00164: SRP0       
+	00165: MIRP[srp0,nmd,rd,0] 
+	00166: MIRP[nrp0,md,rd,1] 
+	00167: MIRP[srp0,nmd,rd,0] 
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: SVTCA[y-axis] 
+	00170: MIAP[rd+ci] 
+	00171: MIRP[nrp0,md,rd,1] 
+	00172: MIAP[rd+ci] 
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: SRP0       
+	00175: MIRP[srp0,nmd,rd,0] 
+	00176: DELTAP1    
+	00177: MIRP[nrp0,md,rd,1] 
+	00178: SRP0       
+	00179: MIRP[srp0,nmd,rd,0] 
+	00180: DELTAP1    
+	00181: DELTAP2    
+	00182: MIRP[nrp0,md,rd,1] 
+	00183: SRP0       
+	00184: MIRP[srp0,md,rd,1] 
+	00185: DELTAP1    
+	00186: MIRP[nrp0,nmd,rd,0] 
+	00187: SRP0       
+	00188: MIRP[srp0,md,rd,1] 
+	00189: MIRP[nrp0,nmd,rd,0] 
+	00190: IUP[y]     
+	00191: IUP[x]     
+	00192: RS         
+	00193: JROF       
+	00194: NPUSHB      (84):    51    55    37    42     1    31    41    38    18    37 
+	                            14    38     2    37    30    38    22    38    10    37 
+	                             6    38    26    37    51    42    53    31     0    55 
+	                            37    53    31     0    17    15    20    33     0    31 
+	                             1    28    33     1    23     9    20    33     0    25 
+	                             7    28    33     1    52    40    50    31     1    54 
+	                            38    56    31     0    19    13    16    33     1    29 
+	                             3    16    33     1    21    11    24    33     0    27 
+	                             5    24    33     0 
+	00280: CALL       
+	00281: CALL       
+	00282: CALL       
+	00283: CALL       
+	00284: CALL       
+	00285: CALL       
+	00286: SVTCA[x-axis] 
+	00287: CALL       
+	00288: CALL       
+	00289: CALL       
+	00290: CALL       
+	00291: CALL       
+	00292: CALL       
+	00293: CALL       
+	00294: CALL       
+	00295: CALL       
+	00296: CALL       
+	00297: CALL       
+	00298: CALL       
+	00299: CALL       
+	00300: CALL       
+	00301: CALL       
+	00302: FLIPRGON   
+	00303: FLIPRGON   
+	00304: FLIPRGON   
+	00305: SVTCA[x-axis] 
+	00306: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:                      Y-Short         Off
+	  3:        XDual                 X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                              X-Short Off
+	  7:                      Y-Short         Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short         Off
+	 11:                              X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:        XDual                 X-Short Off
+	 15:  YDual               Y-Short         Off
+	 16:        XDual         Y-Short X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                      Y-Short         Off
+	 19:                              X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:        XDual                 X-Short Off
+	 23:                      Y-Short         Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:  YDual               Y-Short         Off
+	 27:        XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:                              X-Short Off
+	 31:  YDual               Y-Short         Off
+	 32:        XDual                 X-Short On
+	 33:        XDual         Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:        XDual         Y-Short X-Short Off
+	 46:        XDual         Y-Short X-Short On
+	 47:                      Y-Short X-Short On
+	 48:  YDual               Y-Short X-Short Off
+	 49:  YDual               Y-Short X-Short Off
+	 50:  YDual                       X-Short On
+	 51:  YDual                       X-Short Off
+	 52:                      Y-Short X-Short Off
+	 53:        XDual         Y-Short         On
+	 54:        XDual         Y-Short         Off
+	 55:        XDual         Y-Short X-Short Off
+	 56:  YDual XDual                 X-Short On
+	 57:  YDual XDual                 X-Short Off
+	 58:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   758,  1491)  ->  Abs (   758,  1491)
+	  1: Rel (   190,     0)  ->  Abs (   948,  1491)
+	  2: Rel (   362,  -195)  ->  Abs (  1310,  1296)
+	  3: Rel (   202,  -363)  ->  Abs (  1512,   933)
+	  4: Rel (     0,  -197)  ->  Abs (  1512,   736)
+	  5: Rel (     0,  -195)  ->  Abs (  1512,   541)
+	  6: Rel (  -199,  -360)  ->  Abs (  1313,   181)
+	  7: Rel (  -359,  -199)  ->  Abs (   954,   -18)
+	  8: Rel (  -196,     0)  ->  Abs (   758,   -18)
+	  9: Rel (  -196,     0)  ->  Abs (   562,   -18)
+	 10: Rel (  -359,   199)  ->  Abs (   203,   181)
+	 11: Rel (  -200,   360)  ->  Abs (     3,   541)
+	 12: Rel (     0,   195)  ->  Abs (     3,   736)
+	 13: Rel (     0,   197)  ->  Abs (     3,   933)
+	 14: Rel (   203,   363)  ->  Abs (   206,  1296)
+	 15: Rel (   362,   195)  ->  Abs (   568,  1491)
+	 16: Rel (   190,  -125)  ->  Abs (   758,  1366)
+	 17: Rel (  -159,     0)  ->  Abs (   599,  1366)
+	 18: Rel (  -301,  -163)  ->  Abs (   298,  1203)
+	 19: Rel (  -170,  -303)  ->  Abs (   128,   900)
+	 20: Rel (     0,  -164)  ->  Abs (   128,   736)
+	 21: Rel (     0,  -163)  ->  Abs (   128,   573)
+	 22: Rel (   167,  -299)  ->  Abs (   295,   274)
+	 23: Rel (   300,  -167)  ->  Abs (   595,   107)
+	 24: Rel (   163,     0)  ->  Abs (   758,   107)
+	 25: Rel (   163,     0)  ->  Abs (   921,   107)
+	 26: Rel (   300,   167)  ->  Abs (  1221,   274)
+	 27: Rel (   166,   299)  ->  Abs (  1387,   573)
+	 28: Rel (     0,   163)  ->  Abs (  1387,   736)
+	 29: Rel (     0,   164)  ->  Abs (  1387,   900)
+	 30: Rel (  -169,   303)  ->  Abs (  1218,  1203)
+	 31: Rel (  -302,   163)  ->  Abs (   916,  1366)
+	 32: Rel (    84,  -752)  ->  Abs (  1000,   614)
+	 33: Rel (   123,   -36)  ->  Abs (  1123,   578)
+	 34: Rel (   -30,  -125)  ->  Abs (  1093,   453)
+	 35: Rel (  -195,  -149)  ->  Abs (   898,   304)
+	 36: Rel (  -139,     0)  ->  Abs (   759,   304)
+	 37: Rel (  -176,     0)  ->  Abs (   583,   304)
+	 38: Rel (  -220,   228)  ->  Abs (   363,   532)
+	 39: Rel (     0,   202)  ->  Abs (   363,   734)
+	 40: Rel (     0,   132)  ->  Abs (   363,   866)
+	 41: Rel (   100,   195)  ->  Abs (   463,  1061)
+	 42: Rel (   185,    99)  ->  Abs (   648,  1160)
+	 43: Rel (   119,     0)  ->  Abs (   767,  1160)
+	 44: Rel (   133,     0)  ->  Abs (   900,  1160)
+	 45: Rel (   176,  -127)  ->  Abs (  1076,  1033)
+	 46: Rel (    32,  -109)  ->  Abs (  1108,   924)
+	 47: Rel (  -119,   -29)  ->  Abs (   989,   895)
+	 48: Rel (   -30,    74)  ->  Abs (   959,   969)
+	 49: Rel (  -117,    79)  ->  Abs (   842,  1048)
+	 50: Rel (   -79,     0)  ->  Abs (   763,  1048)
+	 51: Rel (  -115,     0)  ->  Abs (   648,  1048)
+	 52: Rel (  -149,  -164)  ->  Abs (   499,   884)
+	 53: Rel (     0,  -153)  ->  Abs (   499,   731)
+	 54: Rel (     0,  -153)  ->  Abs (   499,   578)
+	 55: Rel (   141,  -157)  ->  Abs (   640,   421)
+	 56: Rel (   112,     0)  ->  Abs (   752,   421)
+	 57: Rel (    90,     0)  ->  Abs (   842,   421)
+	 58: Rel (   136,   104)  ->  Abs (   978,   525)
+
+	Glyph 140: off = 0x000098F6, len = 236
+	  numberOfContours:	2
+	  xMin:			225
+	  yMin:			651
+	  xMax:			1783
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  20
+
+	  Length of Instructions:	156
+	00000: NPUSHB      (31):    93    11     1    57    17    53    18    74    17    70 
+	                            18     4    11    17    18    15    14     7     0     4 
+	                            18    17    16    11     4    20    19     4     2    20 
+	                             8 
+	00033: PUSHW[1]            361 
+	00036: PUSHB[3]              9     2     5 
+	00040: PUSHW[1]            610 
+	00043: NPUSHB      (10):    13    12    10     9     4     0    13    14    16    14 
+	00055: PUSHW[3]            610    15   315 
+	00062: PUSHB[3]             17   172    18 
+	00066: PUSHW[3]            315    20   610 
+	00073: PUSHB[3]              8     8     9 
+	00077: PUSHW[1]            517 
+	00080: PUSHB[3]              5   165     7 
+	00084: PUSHW[1]            610 
+	00087: NPUSHB      (14):     0   165     2    32     3    48     3    96     3     3 
+	                             3    25    21   217 
+	00103: PUSHW[2]            302    24 
+	00108: CALL       
+	00109: SRP0       
+	00110: MIRP[srp0,nmd,rd,2] 
+	00111: DELTAP1    
+	00112: ALIGNRP    
+	00113: MIRP[srp0,nmd,rd,0] 
+	00114: MIRP[srp0,md,rd,1] 
+	00115: MIRP[srp0,nmd,rd,0] 
+	00116: MIRP[srp0,nmd,rd,2] 
+	00117: ALIGNRP    
+	00118: SRP0       
+	00119: MIRP[srp0,md,rd,1] 
+	00120: MIRP[srp0,nmd,rd,2] 
+	00121: MIRP[srp0,nmd,rd,2] 
+	00122: MIRP[srp0,nmd,rd,2] 
+	00123: MIRP[nrp0,md,rd,1] 
+	00124: ALIGNRP    
+	00125: SRP0       
+	00126: ALIGNRP    
+	00127: SVTCA[y-axis] 
+	00128: MIAP[rd+ci] 
+	00129: ALIGNRP    
+	00130: ALIGNRP    
+	00131: ALIGNRP    
+	00132: ALIGNRP    
+	00133: MIRP[srp0,md,rd,1] 
+	00134: ALIGNRP    
+	00135: SRP0       
+	00136: MIRP[srp0,md,rd,1] 
+	00137: ALIGNRP    
+	00138: SRP1       
+	00139: SRP2       
+	00140: IP         
+	00141: SRP2       
+	00142: SLOOP      
+	00143: IP         
+	00144: SLOOP      
+	00145: IP         
+	00146: SVTCA[x-axis] 
+	00147: SRP1       
+	00148: SRP2       
+	00149: IP         
+	00150: IUP[y]     
+	00151: IUP[x]     
+	00152: SVTCA[x-axis] 
+	00153: DELTAP1    
+	00154: SVTCA[y-axis] 
+	00155: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual                         On
+	  8:  YDual                               On
+	  9:        XDual                         On
+	 10:  YDual XDual                 X-Short On
+	 11:        XDual                 X-Short On
+	 12:        XDual                 X-Short On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual                         On
+	 15:  YDual                       X-Short On
+	 16:        XDual                         On
+	 17:                              X-Short On
+	 18:  YDual                       X-Short On
+	 19:                              X-Short On
+	 20:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   489,   651)  ->  Abs (   489,   651)
+	  1: Rel (     0,   694)  ->  Abs (   489,  1345)
+	  2: Rel (  -264,     0)  ->  Abs (   225,  1345)
+	  3: Rel (     0,   121)  ->  Abs (   225,  1466)
+	  4: Rel (   666,     0)  ->  Abs (   891,  1466)
+	  5: Rel (     0,  -121)  ->  Abs (   891,  1345)
+	  6: Rel (  -266,     0)  ->  Abs (   625,  1345)
+	  7: Rel (     0,  -694)  ->  Abs (   625,   651)
+	  8: Rel (   357,     0)  ->  Abs (   982,   651)
+	  9: Rel (     0,   815)  ->  Abs (   982,  1466)
+	 10: Rel (   200,     0)  ->  Abs (  1182,  1466)
+	 11: Rel (   206,  -651)  ->  Abs (  1388,   815)
+	 12: Rel (   199,   651)  ->  Abs (  1587,  1466)
+	 13: Rel (   196,     0)  ->  Abs (  1783,  1466)
+	 14: Rel (     0,  -815)  ->  Abs (  1783,   651)
+	 15: Rel (  -124,     0)  ->  Abs (  1659,   651)
+	 16: Rel (     0,   684)  ->  Abs (  1659,  1335)
+	 17: Rel (  -210,  -684)  ->  Abs (  1449,   651)
+	 18: Rel (  -123,     0)  ->  Abs (  1326,   651)
+	 19: Rel (  -219,   694)  ->  Abs (  1107,  1345)
+	 20: Rel (     0,  -694)  ->  Abs (  1107,   651)
+
+	Glyph 141: off = 0x000099E2, len = 130
+	  numberOfContours:	1
+	  xMin:			222
+	  yMin:			1194
+	  xMax:			591
+	  yMax:			1474
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	101
+	00000: PUSHW[2]              1   -56 
+	00005: PUSHB[4]             23    25    52     2 
+	00010: PUSHW[1]            -64 
+	00013: PUSHB[4]             23    25    52     3 
+	00018: PUSHW[1]            -64 
+	00021: NPUSHB      (38):    23    25    52   127     1   128     2   223     1     3 
+	                           111     3   127     0   127     3     3   111     0   111 
+	                             1     2    79     1    80     2     2     0     0     3 
+	                            16     3     2     3   135     1     4     1 
+	00061: PUSHW[1]            608 
+	00064: PUSHB[3]              2   134     3 
+	00068: PUSHW[1]            595 
+	00071: PUSHB[6]              0    25     4   217   167    24 
+	00078: CALL       
+	00079: FLIPOFF    
+	00080: SRP0       
+	00081: MIRP[srp0,nmd,rd,0] 
+	00082: FLIPON     
+	00083: MIRP[srp0,md,rd,1] 
+	00084: MIRP[srp0,nmd,rd,0] 
+	00085: MIRP[srp0,md,rd,1] 
+	00086: SVTCA[y-axis] 
+	00087: MIAP[rd+ci] 
+	00088: MIRP[srp0,md,rd,1] 
+	00089: DELTAP1    
+	00090: ALIGNRP    
+	00091: IUP[y]     
+	00092: IUP[x]     
+	00093: SVTCA[x-axis] 
+	00094: DELTAP1    
+	00095: DELTAP1    
+	00096: DELTAP1    
+	00097: DELTAP1    
+	00098: CALL       
+	00099: CALL       
+	00100: CALL       
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                 X-Short On
+	  2:  YDual XDual                 X-Short On
+	  3:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   222,  1194)  ->  Abs (   222,  1194)
+	  1: Rel (   133,   280)  ->  Abs (   355,  1474)
+	  2: Rel (   236,     0)  ->  Abs (   591,  1474)
+	  3: Rel (  -220,  -280)  ->  Abs (   371,  1194)
+
+	Glyph 142: off = 0x00009A64, len = 106
+	  numberOfContours:	2
+	  xMin:			61
+	  yMin:			1270
+	  xMax:			622
+	  yMax:			1475
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	72
+	00000: NPUSHB      (35):     0     3     2     7    60     5     5     2     0     6 
+	                             7     5     4     2     3     1     0     7    60     4 
+	                           159     3    60    95     0   111     0   143     0   144 
+	                             0   160     0     5     0 
+	00037: PUSHW[1]            548 
+	00040: PUSHB[4]              8   112   141    24 
+	00045: CALL       
+	00046: FLIPOFF    
+	00047: SRP0       
+	00048: MIRP[srp0,nmd,rd,0] 
+	00049: DELTAP1    
+	00050: FLIPON     
+	00051: MIRP[srp0,md,rd,1] 
+	00052: MIRP[srp0,nmd,rd,2] 
+	00053: MIRP[srp0,md,rd,1] 
+	00054: SRP0       
+	00055: ALIGNRP    
+	00056: SRP0       
+	00057: ALIGNRP    
+	00058: SRP0       
+	00059: ALIGNRP    
+	00060: SRP0       
+	00061: ALIGNRP    
+	00062: SVTCA[y-axis] 
+	00063: MIAP[rd+ci] 
+	00064: ALIGNRP    
+	00065: SRP0       
+	00066: MIRP[nrp0,md,rd,1] 
+	00067: SRP1       
+	00068: IP         
+	00069: IP         
+	00070: IUP[y]     
+	00071: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (    61,  1270)  ->  Abs (    61,  1270)
+	  1: Rel (     0,   205)  ->  Abs (    61,  1475)
+	  2: Rel (   188,     0)  ->  Abs (   249,  1475)
+	  3: Rel (     0,  -205)  ->  Abs (   249,  1270)
+	  4: Rel (   185,     0)  ->  Abs (   434,  1270)
+	  5: Rel (     0,   205)  ->  Abs (   434,  1475)
+	  6: Rel (   188,     0)  ->  Abs (   622,  1475)
+	  7: Rel (     0,  -205)  ->  Abs (   622,  1270)
+
+	Glyph 143: off = 0x00009ACE, len = 286
+	  numberOfContours:	1
+	  xMin:			78
+	  yMin:			-28
+	  xMax:			1046
+	  yMax:			1474
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	209
+	00000: NPUSHB     (130):   183    13   183    16     2     0     4    19     1    12 
+	                             3     4    19     2    11     6     5    18     2    11 
+	                             7     8    15     2    11    10     9    14     2    11 
+	                            13     9    14     1    12    16     8    15     1    12 
+	                            17     5    18     1    12    11    12     1     1    63 
+	                             2    11    20     2     2    11    15    16    16     7 
+	                             7     8    37     9    14    13    13    10    10    48 
+	                             9     1   159     9   207     9     2     9   191     4 
+	                            18    17    17     6     6     5    37     4    19     0 
+	                             0     3     3     4    12    11     0     1     2    10 
+	                            11   232    12     1   232     2    12    12     4     2 
+	                             2    14     4    14    15    15    18    19    85    21 
+	                             9     8     8     5     4    62    20   113   140    24 
+	00132: CALL       
+	00133: SRP0       
+	00134: MIRP[srp0,nmd,rd,0] 
+	00135: ALIGNRP    
+	00136: ALIGNRP    
+	00137: SRP0       
+	00138: ALIGNRP    
+	00139: SRP0       
+	00140: MIRP[srp0,nmd,rd,2] 
+	00141: ALIGNRP    
+	00142: ALIGNRP    
+	00143: SRP0       
+	00144: ALIGNRP    
+	00145: SRP1       
+	00146: SRP2       
+	00147: IP         
+	00148: MDAP[rd]   
+	00149: SRP1       
+	00150: IP         
+	00151: MDAP[rd]   
+	00152: SRP0       
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: SRP0       
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: SVTCA[y-axis] 
+	00157: MIAP[rd+ci] 
+	00158: ALIGNRP    
+	00159: MIAP[rd+ci] 
+	00160: ALIGNRP    
+	00161: MDAP[rd]   
+	00162: ALIGNRP    
+	00163: SRP0       
+	00164: ALIGNRP    
+	00165: SRP0       
+	00166: ALIGNRP    
+	00167: SRP0       
+	00168: MIRP[srp0,md,rd,1] 
+	00169: ALIGNRP    
+	00170: SRP0       
+	00171: ALIGNRP    
+	00172: SRP0       
+	00173: ALIGNRP    
+	00174: SRP0       
+	00175: MIRP[srp0,md,rd,1] 
+	00176: DELTAP1    
+	00177: DELTAP2    
+	00178: ALIGNRP    
+	00179: SRP0       
+	00180: ALIGNRP    
+	00181: SRP0       
+	00182: ALIGNRP    
+	00183: SRP0       
+	00184: MIRP[srp0,md,rd,1] 
+	00185: ALIGNRP    
+	00186: SRP0       
+	00187: ALIGNRP    
+	00188: SRP0       
+	00189: ALIGNRP    
+	00190: SDPVTL[1]  
+	00191: SFVTCA[x-axis] 
+	00192: MDAP[nrd]  
+	00193: CALL       
+	00194: SDPVTL[1]  
+	00195: RDTG       
+	00196: MDRP[nrp0,nmd,rd,0] 
+	00197: ISECT      
+	00198: ISECT      
+	00199: ISECT      
+	00200: ISECT      
+	00201: ISECT      
+	00202: ISECT      
+	00203: ISECT      
+	00204: ISECT      
+	00205: IUP[y]     
+	00206: IUP[x]     
+	00207: SVTCA[x-axis] 
+	00208: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                              X-Short On
+	  2:  YDual                       X-Short On
+	  3:        XDual                 X-Short On
+	  4:  YDual                               On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual                 X-Short On
+	  8:  YDual                               On
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual                               On
+	 11:        XDual                 X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:                              X-Short On
+	 14:  YDual                               On
+	 15:        XDual         Y-Short         On
+	 16:  YDual                               On
+	 17:                              X-Short On
+	 18:  YDual                               On
+	 19:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   495,   417)  ->  Abs (   495,   417)
+	  1: Rel (  -194,  -445)  ->  Abs (   301,   -28)
+	  2: Rel (  -136,     0)  ->  Abs (   165,   -28)
+	  3: Rel (   195,   445)  ->  Abs (   360,   417)
+	  4: Rel (  -282,     0)  ->  Abs (    78,   417)
+	  5: Rel (     0,   168)  ->  Abs (    78,   585)
+	  6: Rel (   356,     0)  ->  Abs (   434,   585)
+	  7: Rel (   122,   277)  ->  Abs (   556,   862)
+	  8: Rel (  -478,     0)  ->  Abs (    78,   862)
+	  9: Rel (     0,   168)  ->  Abs (    78,  1030)
+	 10: Rel (   551,     0)  ->  Abs (   629,  1030)
+	 11: Rel (   196,   444)  ->  Abs (   825,  1474)
+	 12: Rel (   134,     0)  ->  Abs (   959,  1474)
+	 13: Rel (  -195,  -444)  ->  Abs (   764,  1030)
+	 14: Rel (   282,     0)  ->  Abs (  1046,  1030)
+	 15: Rel (     0,  -168)  ->  Abs (  1046,   862)
+	 16: Rel (  -356,     0)  ->  Abs (   690,   862)
+	 17: Rel (  -121,  -277)  ->  Abs (   569,   585)
+	 18: Rel (   477,     0)  ->  Abs (  1046,   585)
+	 19: Rel (     0,  -168)  ->  Abs (  1046,   417)
+
+	Glyph 144: off = 0x00009BEC, len = 348
+	  numberOfContours:	2
+	  xMin:			1
+	  yMin:			0
+	  xMax:			1936
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  15
+	  1:  19
+
+	  Length of Instructions:	272
+	00000: NPUSHB      (15):     1    24    13    17     6    85    14    16    19    15 
+	                            14    16    12     0    19 
+	00017: PUSHW[1]            -15 
+	00020: PUSHB[5]             13    17     2    85    19 
+	00026: PUSHW[1]            -10 
+	00029: NPUSHB      (30):    11    11     2    85    19    15    15    32     0     1 
+	                            20     0     0     1    19    15     1     3    12     0 
+	                            13    14    30    16    16    17    17     0     1    16 
+	00061: PUSHW[1]            679 
+	00064: NPUSHB      (40):     8     6     5    30     7   127     8   143     8     2 
+	                             8     8     0     3    19    30     2     1     2    10 
+	                             9    30    12    11    15    12     0     8     4     9 
+	                            32    12    12    18    12    16    16     2    85    18 
+	00106: PUSHW[1]            -10 
+	00109: PUSHB[5]             15    15     2    85    18 
+	00115: PUSHW[1]            -18 
+	00118: NPUSHB      (11):    13    13     2    85    18    10    12    12     2    85 
+	                            18 
+	00131: PUSHW[1]            -24 
+	00134: PUSHB[5]             11    11     2    85    18 
+	00140: PUSHW[1]            -16 
+	00143: PUSHB[5]             16    16     6    85    18 
+	00149: PUSHW[1]            -21 
+	00152: NPUSHB      (11):    13    13     6    85    18    10    12    12     6    85 
+	                            18 
+	00165: PUSHW[1]            -27 
+	00168: NPUSHB      (21):    11    11     6    85    18    18    20    21     7    84 
+	                             3    74    10    26    21     0    25    20    96    91 
+	                            24 
+	00191: CALL       
+	00192: RTHG       
+	00193: FLIPOFF    
+	00194: SRP0       
+	00195: MIRP[nrp0,nmd,rd,0] 
+	00196: RTG        
+	00197: SRP0       
+	00198: MIRP[srp0,nmd,rd,2] 
+	00199: FLIPON     
+	00200: MIRP[srp0,nmd,rd,0] 
+	00201: MIRP[nrp0,nmd,rd,0] 
+	00202: SRP1       
+	00203: SRP2       
+	00204: IP         
+	00205: MDAP[rd]   
+	00206: CALL       
+	00207: CALL       
+	00208: CALL       
+	00209: CALL       
+	00210: CALL       
+	00211: CALL       
+	00212: CALL       
+	00213: CALL       
+	00214: CALL       
+	00215: ALIGNRP    
+	00216: SRP0       
+	00217: MIRP[srp0,md,rd,1] 
+	00218: ALIGNRP    
+	00219: SVTCA[y-axis] 
+	00220: MIAP[rd+ci] 
+	00221: ALIGNRP    
+	00222: ALIGNRP    
+	00223: ALIGNRP    
+	00224: SRP0       
+	00225: MIRP[srp0,md,rd,1] 
+	00226: ALIGNRP    
+	00227: MIAP[rd+ci] 
+	00228: ALIGNRP    
+	00229: MIRP[srp0,md,rd,1] 
+	00230: ALIGNRP    
+	00231: SRP2       
+	00232: IP         
+	00233: MDAP[rd]   
+	00234: DELTAP1    
+	00235: ALIGNRP    
+	00236: MIRP[srp0,md,rd,1] 
+	00237: ALIGNRP    
+	00238: SRP0       
+	00239: MIRP[nrp0,nmd,rd,2] 
+	00240: SRP1       
+	00241: SRP2       
+	00242: IP         
+	00243: MDAP[rd]   
+	00244: ALIGNRP    
+	00245: SRP0       
+	00246: MIRP[srp0,md,rd,1] 
+	00247: ALIGNRP    
+	00248: SVTCA[x-axis] 
+	00249: SRP1       
+	00250: SRP2       
+	00251: SLOOP      
+	00252: IP         
+	00253: SDPVTL[1]  
+	00254: MDAP[nrd]  
+	00255: CALL       
+	00256: RDTG       
+	00257: SRP0       
+	00258: MDRP[nrp0,nmd,rd,0] 
+	00259: CALL       
+	00260: CALL       
+	00261: SVTCA[x-axis] 
+	00262: SRP1       
+	00263: SRP2       
+	00264: IP         
+	00265: IP         
+	00266: SPVTL[p1,p2] 
+	00267: ALIGNRP    
+	00268: ALIGNRP    
+	00269: CALL       
+	00270: IUP[y]     
+	00271: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:                                      On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual                               On
+	  7:        XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:        XDual                         On
+	 10:  YDual                               On
+	 11:        XDual         Y-Short         On
+	 12:  YDual                               On
+	 13:        XDual                         On
+	 14:  YDual                               On
+	 15:                              X-Short On
+	 16:                                      On
+	 17:  YDual                               On
+	 18:        XDual                         On
+	 19:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (     1,     0)  ->  Abs (     1,     0)
+	  1: Rel (   705,  1466)  ->  Abs (   706,  1466)
+	  2: Rel (  1203,     0)  ->  Abs (  1909,  1466)
+	  3: Rel (     0,  -173)  ->  Abs (  1909,  1293)
+	  4: Rel (  -737,     0)  ->  Abs (  1172,  1293)
+	  5: Rel (     0,  -451)  ->  Abs (  1172,   842)
+	  6: Rel (   685,     0)  ->  Abs (  1857,   842)
+	  7: Rel (     0,  -172)  ->  Abs (  1857,   670)
+	  8: Rel (  -685,     0)  ->  Abs (  1172,   670)
+	  9: Rel (     0,  -497)  ->  Abs (  1172,   173)
+	 10: Rel (   764,     0)  ->  Abs (  1936,   173)
+	 11: Rel (     0,  -173)  ->  Abs (  1936,     0)
+	 12: Rel (  -959,     0)  ->  Abs (   977,     0)
+	 13: Rel (     0,   423)  ->  Abs (   977,   423)
+	 14: Rel (  -566,     0)  ->  Abs (   411,   423)
+	 15: Rel (  -200,  -423)  ->  Abs (   211,     0)
+	 16: Rel (   282,   595)  ->  Abs (   493,   595)
+	 17: Rel (   484,     0)  ->  Abs (   977,   595)
+	 18: Rel (     0,   698)  ->  Abs (   977,  1293)
+	 19: Rel (  -145,     0)  ->  Abs (   832,  1293)
+
+	Glyph 145: off = 0x00009D48, len = 584
+	  numberOfContours:	3
+	  xMin:			83
+	  yMin:			-59
+	  xMax:			1517
+	  yMax:			1520
+
+	EndPoints
+	---------
+	  0:  27
+	  1:  38
+	  2:  48
+
+	  Length of Instructions:	419
+	00000: NPUSHB     (128):    41     0    42     1    37    15     3    16     2    34 
+	                             0    34     3    56    15    58    27    69    38    73 
+	                            39    69    40    82     9    92    33    82    38    84 
+	                            46   105    14   131     0   128     1   128     2   131 
+	                             3   132    27   133    28   187    27   252     0   250 
+	                            38    22    11    28     7    38    11    39     3    58 
+	                             4    61    48    74     1    74     4    73    29    69 
+	                            32    72    39    75    45    91     0    91     3    89 
+	                            28    85    32    89    33    91    39    82    41    90 
+	                            45   107     1   105     2   122    48   139     2   133 
+	                            37   139    39   162     9   244     1    24     4     3 
+	                            11    19    20     4    27    19     4     4    32    11 
+	                            45    20    32    27    45     4    18     0 
+	00130: PUSHW[1]            -32 
+	00133: NPUSHB      (59):    10    10     6    85    15    32     8    10     6    85 
+	                             3    39    40    15    16    16     2     0    28    38 
+	                            18    17    17     1    42    40    38    37     4    29 
+	                            28    39    48     4    34    47    42    40    38    37 
+	                             4    29    28    39    48     4    44    31     2    16 
+	                            16    48    17     1    20    17    17     1    31 
+	00194: PUSHW[1]            699 
+	00197: PUSHB[3]             25     3    44 
+	00201: PUSHW[1]            699 
+	00204: PUSHB[3]             11     9     1 
+	00208: PUSHW[1]            267 
+	00211: PUSHB[5]              2    45    47    38     7 
+	00217: PUSHW[1]            -24 
+	00220: PUSHB[5]             16    16     2    85     7 
+	00226: PUSHW[1]            -18 
+	00229: PUSHB[5]             13    13     2    85     7 
+	00235: PUSHW[1]            -16 
+	00238: PUSHB[5]             12    12     2    85     7 
+	00244: PUSHW[1]             -6 
+	00247: PUSHB[5]             11    11     6    85     7 
+	00253: PUSHW[1]            -12 
+	00256: PUSHB[5]             13    13     6    85     7 
+	00262: PUSHW[1]             -6 
+	00265: NPUSHB      (11):    12    12     6    85     7    26    32    50     1    50 
+	                            17 
+	00278: PUSHW[3]            267    16   305 
+	00285: NPUSHB      (23):    34    38    21     6    11    11     6    85    21     6 
+	                            12    12     6    85    32    21     1    21    25    49 
+	                            99    92    24 
+	00310: CALL       
+	00311: FLIPOFF    
+	00312: SRP0       
+	00313: MIRP[srp0,nmd,rd,0] 
+	00314: DELTAP1    
+	00315: CALL       
+	00316: CALL       
+	00317: FLIPON     
+	00318: MIRP[nrp0,md,rd,1] 
+	00319: MIRP[srp0,md,rd,1] 
+	00320: MIRP[nrp0,md,rd,1] 
+	00321: FLIPOFF    
+	00322: SRP0       
+	00323: DELTAP1    
+	00324: MIRP[srp0,nmd,rd,2] 
+	00325: CALL       
+	00326: CALL       
+	00327: CALL       
+	00328: CALL       
+	00329: CALL       
+	00330: CALL       
+	00331: FLIPON     
+	00332: MIRP[nrp0,md,rd,1] 
+	00333: MIRP[srp0,nmd,rd,0] 
+	00334: MIRP[nrp0,md,rd,1] 
+	00335: SVTCA[y-axis] 
+	00336: MIAP[rd+ci] 
+	00337: MIRP[nrp0,md,rd,1] 
+	00338: MIAP[rd+ci] 
+	00339: MIRP[srp0,md,rd,1] 
+	00340: SDPVTL[1]  
+	00341: SFVTPV     
+	00342: MDAP[nrd]  
+	00343: CALL       
+	00344: RDTG       
+	00345: SRP0       
+	00346: MDRP[nrp0,nmd,rd,0] 
+	00347: SVTCA[y-axis] 
+	00348: SRP1       
+	00349: SRP2       
+	00350: SLOOP      
+	00351: IP         
+	00352: SLOOP      
+	00353: IP         
+	00354: SVTCA[x-axis] 
+	00355: SRP1       
+	00356: SRP2       
+	00357: SLOOP      
+	00358: IP         
+	00359: SLOOP      
+	00360: IP         
+	00361: SPVTL[p1,p2] 
+	00362: SRP0       
+	00363: SFVTPV     
+	00364: ALIGNRP    
+	00365: ALIGNRP    
+	00366: ALIGNRP    
+	00367: ALIGNRP    
+	00368: SPVTL[p1,p2] 
+	00369: SRP0       
+	00370: SFVTPV     
+	00371: ALIGNRP    
+	00372: ALIGNRP    
+	00373: ALIGNRP    
+	00374: ALIGNRP    
+	00375: SVTCA[y-axis] 
+	00376: CALL       
+	00377: CALL       
+	00378: IUP[y]     
+	00379: IUP[x]     
+	00380: SVTCA[x-axis] 
+	00381: RS         
+	00382: NOT        
+	00383: IF         
+	00384: PUSHW[2]             40   -34 
+	00389: PUSHB[7]             20    57    28    34    20    57    40 
+	00397: PUSHW[1]            -34 
+	00400: PUSHB[6]             18    57    28    34    18    57 
+	00407: CALL       
+	00408: CALL       
+	00409: CALL       
+	00410: CALL       
+	00411: EIF        
+	00412: DELTAP1    
+	00413: DELTAP1    
+	00414: DELTAP1    
+	00415: DELTAP2    
+	00416: SVTCA[y-axis] 
+	00417: DELTAP1    
+	00418: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short On
+	  3:                      Y-Short X-Short On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                              X-Short Off
+	 10:                      Y-Short         Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:                      Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:        XDual                 X-Short Off
+	 24:  YDual               Y-Short         Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:                      Y-Short X-Short On
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:                                      Off
+	 34:        XDual                         On
+	 35:        XDual         Y-Short         Off
+	 36:        XDual         Y-Short X-Short On
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short X-Short On
+	 39:                                      On
+	 40:                                      On
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short X-Short On
+	 43:        XDual         Y-Short X-Short Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short Off
+	 46:                                      Off
+	 47:        XDual                         On
+	 48:  YDual XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1250,  1332)  ->  Abs (  1250,  1332)
+	  1: Rel (   168,   188)  ->  Abs (  1418,  1520)
+	  2: Rel (    99,   -84)  ->  Abs (  1517,  1436)
+	  3: Rel (  -176,  -198)  ->  Abs (  1341,  1238)
+	  4: Rel (    86,  -128)  ->  Abs (  1427,  1110)
+	  5: Rel (    30,   -96)  ->  Abs (  1457,  1014)
+	  6: Rel (    40,  -126)  ->  Abs (  1497,   888)
+	  7: Rel (     0,  -156)  ->  Abs (  1497,   732)
+	  8: Rel (     0,  -225)  ->  Abs (  1497,   507)
+	  9: Rel (  -182,  -352)  ->  Abs (  1315,   155)
+	 10: Rel (  -329,  -180)  ->  Abs (   986,   -25)
+	 11: Rel (  -185,     0)  ->  Abs (   801,   -25)
+	 12: Rel (  -138,     0)  ->  Abs (   663,   -25)
+	 13: Rel (  -112,    39)  ->  Abs (   551,    14)
+	 14: Rel (   -86,    30)  ->  Abs (   465,    44)
+	 15: Rel (  -115,    85)  ->  Abs (   350,   129)
+	 16: Rel (  -168,  -188)  ->  Abs (   182,   -59)
+	 17: Rel (   -99,    84)  ->  Abs (    83,    25)
+	 18: Rel (   176,   197)  ->  Abs (   259,   222)
+	 19: Rel (   -98,   149)  ->  Abs (   161,   371)
+	 20: Rel (   -66,   211)  ->  Abs (    95,   582)
+	 21: Rel (     0,   148)  ->  Abs (    95,   730)
+	 22: Rel (     0,   226)  ->  Abs (    95,   956)
+	 23: Rel (   180,   353)  ->  Abs (   275,  1309)
+	 24: Rel (   325,   182)  ->  Abs (   600,  1491)
+	 25: Rel (   199,     0)  ->  Abs (   799,  1491)
+	 26: Rel (   134,     0)  ->  Abs (   933,  1491)
+	 27: Rel (   201,   -71)  ->  Abs (  1134,  1420)
+	 28: Rel (    -4,  -223)  ->  Abs (  1130,  1197)
+	 29: Rel (   -94,    74)  ->  Abs (  1036,  1271)
+	 30: Rel (  -141,    54)  ->  Abs (   895,  1325)
+	 31: Rel (   -95,     0)  ->  Abs (   800,  1325)
+	 32: Rel (  -219,     0)  ->  Abs (   581,  1325)
+	 33: Rel (  -286,  -297)  ->  Abs (   295,  1028)
+	 34: Rel (     0,  -295)  ->  Abs (   295,   733)
+	 35: Rel (     0,  -116)  ->  Abs (   295,   617)
+	 36: Rel (    22,   -90)  ->  Abs (   317,   527)
+	 37: Rel (    16,   -67)  ->  Abs (   333,   460)
+	 38: Rel (    51,   -98)  ->  Abs (   384,   362)
+	 39: Rel (   828,   732)  ->  Abs (  1212,  1094)
+	 40: Rel (  -743,  -832)  ->  Abs (   469,   262)
+	 41: Rel (    77,   -63)  ->  Abs (   546,   199)
+	 42: Rel (    65,   -25)  ->  Abs (   611,   174)
+	 43: Rel (    85,   -33)  ->  Abs (   696,   141)
+	 44: Rel (    99,     0)  ->  Abs (   795,   141)
+	 45: Rel (   218,     0)  ->  Abs (  1013,   141)
+	 46: Rel (   284,   308)  ->  Abs (  1297,   449)
+	 47: Rel (     0,   278)  ->  Abs (  1297,   727)
+	 48: Rel (     0,   208)  ->  Abs (  1297,   935)
+
+	Glyph 146: off = 0x00009F90, len = 354
+	  numberOfContours:	3
+	  xMin:			154
+	  yMin:			388
+	  xMax:			1310
+	  yMax:			1044
+
+	EndPoints
+	---------
+	  0:  24
+	  1:  38
+	  2:  49
+
+	  Length of Instructions:	206
+	00000: NPUSHB      (66):    36    25    37    26    37    38    59    40    59    49 
+	                            76    40    76    49    99    26    99    38   117    26 
+	                           117    38   132    26   132    38    13    68     8    25 
+	                             7    45    39    32    20    15    11    35     0    29 
+	                             4    39    25    15     0     4    32    45    39    25 
+	                            15     0     4    48    42    42    23    56     4    48 
+	                            42    17    56    29    42    11 
+	00068: PUSHW[1]            444 
+	00071: NPUSHB      (17):    35    42     4     6    32    42     7    26    51    45 
+	                            42    20    25    50   158   121    24 
+	00090: CALL       
+	00091: FLIPOFF    
+	00092: SRP0       
+	00093: MIRP[srp0,nmd,rd,0] 
+	00094: FLIPON     
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: FLIPOFF    
+	00097: SRP0       
+	00098: MIRP[srp0,nmd,rd,2] 
+	00099: FLIPON     
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: SVTCA[y-axis] 
+	00102: MIAP[rd+ci] 
+	00103: MIRP[nrp0,md,rd,1] 
+	00104: MIRP[srp0,md,rd,1] 
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: MIRP[srp0,nmd,rd,0] 
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: SRP0       
+	00109: MIRP[srp0,nmd,rd,0] 
+	00110: MIRP[nrp0,md,rd,1] 
+	00111: SRP1       
+	00112: SLOOP      
+	00113: IP         
+	00114: SVTCA[x-axis] 
+	00115: SRP1       
+	00116: SRP2       
+	00117: SLOOP      
+	00118: IP         
+	00119: SVTCA[y-axis] 
+	00120: SRP1       
+	00121: SRP2       
+	00122: IP         
+	00123: SRP1       
+	00124: SRP2       
+	00125: IP         
+	00126: SVTCA[x-axis] 
+	00127: SRP1       
+	00128: SRP2       
+	00129: IP         
+	00130: SRP1       
+	00131: SRP2       
+	00132: IP         
+	00133: IUP[y]     
+	00134: IUP[x]     
+	00135: RS         
+	00136: JROF       
+	00137: NPUSHB      (50):    43    47    30    34    18    22     5    10     9    38 
+	                            43    22    45    31     0    34     5    32    31     1 
+	                            47    18    45    31     0    30    10    32    31     1 
+	                            44    21    42    31     1    33     6    35    31     1 
+	                            46    19    48    31     0    31     8    29    31     0 
+	00189: SVTCA[y-axis] 
+	00190: CALL       
+	00191: CALL       
+	00192: CALL       
+	00193: CALL       
+	00194: SVTCA[x-axis] 
+	00195: CALL       
+	00196: CALL       
+	00197: CALL       
+	00198: CALL       
+	00199: CALL       
+	00200: FLIPRGON   
+	00201: FLIPRGON   
+	00202: FLIPRGON   
+	00203: FLIPRGON   
+	00204: SVTCA[x-axis] 
+	00205: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual                 X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:                      Y-Short X-Short On
+	 38:                      Y-Short X-Short Off
+	 39:                      Y-Short X-Short On
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual                       X-Short On
+	 43:  YDual                       X-Short Off
+	 44:                      Y-Short X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         Off
+	 47:        XDual         Y-Short X-Short Off
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   689,   812)  ->  Abs (   689,   812)
+	  1: Rel (   105,   132)  ->  Abs (   794,   944)
+	  2: Rel (    59,    42)  ->  Abs (   853,   986)
+	  3: Rel (    80,    58)  ->  Abs (   933,  1044)
+	  4: Rel (    89,     0)  ->  Abs (  1022,  1044)
+	  5: Rel (   105,     0)  ->  Abs (  1127,  1044)
+	  6: Rel (   183,  -152)  ->  Abs (  1310,   892)
+	  7: Rel (     0,  -169)  ->  Abs (  1310,   723)
+	  8: Rel (     0,  -118)  ->  Abs (  1310,   605)
+	  9: Rel (   -68,  -135)  ->  Abs (  1242,   470)
+	 10: Rel (  -144,   -82)  ->  Abs (  1098,   388)
+	 11: Rel (   -76,     0)  ->  Abs (  1022,   388)
+	 12: Rel (   -89,     0)  ->  Abs (   933,   388)
+	 13: Rel (   -80,    57)  ->  Abs (   853,   445)
+	 14: Rel (   -59,    43)  ->  Abs (   794,   488)
+	 15: Rel (  -105,   132)  ->  Abs (   689,   620)
+	 16: Rel (  -136,  -171)  ->  Abs (   553,   449)
+	 17: Rel (  -153,     0)  ->  Abs (   400,   449)
+	 18: Rel (  -101,     0)  ->  Abs (   299,   449)
+	 19: Rel (  -145,   153)  ->  Abs (   154,   602)
+	 20: Rel (     0,   114)  ->  Abs (   154,   716)
+	 21: Rel (     0,   113)  ->  Abs (   154,   829)
+	 22: Rel (   145,   154)  ->  Abs (   299,   983)
+	 23: Rel (   101,     0)  ->  Abs (   400,   983)
+	 24: Rel (   153,     0)  ->  Abs (   553,   983)
+	 25: Rel (   205,  -266)  ->  Abs (   758,   717)
+	 26: Rel (    87,  -135)  ->  Abs (   845,   582)
+	 27: Rel (    72,   -50)  ->  Abs (   917,   532)
+	 28: Rel (    46,   -33)  ->  Abs (   963,   499)
+	 29: Rel (    57,     0)  ->  Abs (  1020,   499)
+	 30: Rel (    76,     0)  ->  Abs (  1096,   499)
+	 31: Rel (   103,   112)  ->  Abs (  1199,   611)
+	 32: Rel (     0,   102)  ->  Abs (  1199,   713)
+	 33: Rel (     0,   106)  ->  Abs (  1199,   819)
+	 34: Rel (  -105,   112)  ->  Abs (  1094,   931)
+	 35: Rel (   -78,     0)  ->  Abs (  1016,   931)
+	 36: Rel (   -49,     0)  ->  Abs (   967,   931)
+	 37: Rel (   -43,   -28)  ->  Abs (   924,   903)
+	 38: Rel (   -58,   -39)  ->  Abs (   866,   864)
+	 39: Rel (  -246,  -148)  ->  Abs (   620,   716)
+	 40: Rel (   -80,   100)  ->  Abs (   540,   816)
+	 41: Rel (   -96,    57)  ->  Abs (   444,   873)
+	 42: Rel (   -44,     0)  ->  Abs (   400,   873)
+	 43: Rel (   -58,     0)  ->  Abs (   342,   873)
+	 44: Rel (   -77,   -82)  ->  Abs (   265,   791)
+	 45: Rel (     0,   -72)  ->  Abs (   265,   719)
+	 46: Rel (     0,   -71)  ->  Abs (   265,   648)
+	 47: Rel (    80,   -85)  ->  Abs (   345,   563)
+	 48: Rel (    57,     0)  ->  Abs (   402,   563)
+	 49: Rel (   101,     0)  ->  Abs (   503,   563)
+
+	Glyph 147: off = 0x0000A0F2, len = 142
+	  numberOfContours:	2
+	  xMin:			78
+	  yMin:			0
+	  xMax:			1046
+	  yMax:			1229
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  15
+
+	  Length of Instructions:	78
+	00000: NPUSHB      (46):     9     2     8     3     0   110     2   249     3   110 
+	                            15     5     1     5    15    14   249    12    13     5 
+	                            13    10    12     8   110     6    10   249     5     1 
+	                            13     1   110    63     2   144     2   160     2     3 
+	                             2    85    16   113   140    24 
+	00048: CALL       
+	00049: SRP0       
+	00050: MIRP[srp0,nmd,rd,2] 
+	00051: DELTAP1    
+	00052: MIRP[nrp0,nmd,rd,0] 
+	00053: ALIGNRP    
+	00054: SRP0       
+	00055: ALIGNRP    
+	00056: MIRP[srp0,md,rd,1] 
+	00057: ALIGNRP    
+	00058: MIRP[srp0,nmd,rd,0] 
+	00059: ALIGNRP    
+	00060: SVTCA[y-axis] 
+	00061: MIAP[rd+ci] 
+	00062: MDAP[rd]   
+	00063: SRP0       
+	00064: ALIGNRP    
+	00065: MIRP[srp0,md,rd,1] 
+	00066: ALIGNRP    
+	00067: SRP0       
+	00068: DELTAP1    
+	00069: MIRP[srp0,nmd,rd,0] 
+	00070: MIRP[srp0,md,rd,1] 
+	00071: MIRP[nrp0,nmd,rd,0] 
+	00072: SRP0       
+	00073: ALIGNRP    
+	00074: SRP0       
+	00075: ALIGNRP    
+	00076: IUP[y]     
+	00077: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:  YDual                               On
+	  9:        XDual         Y-Short         On
+	 10:  YDual                               On
+	 11:        XDual                         On
+	 12:                                      On
+	 13:  YDual                               On
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   477,   260)  ->  Abs (   477,   260)
+	  1: Rel (     0,   403)  ->  Abs (   477,   663)
+	  2: Rel (  -399,     0)  ->  Abs (    78,   663)
+	  3: Rel (     0,   167)  ->  Abs (    78,   830)
+	  4: Rel (   399,     0)  ->  Abs (   477,   830)
+	  5: Rel (     0,   399)  ->  Abs (   477,  1229)
+	  6: Rel (   170,     0)  ->  Abs (   647,  1229)
+	  7: Rel (     0,  -399)  ->  Abs (   647,   830)
+	  8: Rel (   399,     0)  ->  Abs (  1046,   830)
+	  9: Rel (     0,  -167)  ->  Abs (  1046,   663)
+	 10: Rel (  -399,     0)  ->  Abs (   647,   663)
+	 11: Rel (     0,  -403)  ->  Abs (   647,   260)
+	 12: Rel (   399,  -260)  ->  Abs (  1046,     0)
+	 13: Rel (  -968,     0)  ->  Abs (    78,     0)
+	 14: Rel (     0,   168)  ->  Abs (    78,   168)
+	 15: Rel (   968,     0)  ->  Abs (  1046,   168)
+
+	Glyph 148: off = 0x0000A180, len = 170
+	  numberOfContours:	2
+	  xMin:			77
+	  yMin:			106
+	  xMax:			1048
+	  yMax:			1340
+
+	EndPoints
+	---------
+	  0:  6
+	  1:  10
+
+	  Length of Instructions:	118
+	00000: NPUSHB      (22):   142     3   128     5     2    10     9     8     7     4 
+	                             0     6     5     3     3    12     2     8     7    37 
+	                             9    10 
+	00024: PUSHW[6]            684     5   602     6     3   602 
+	00037: PUSHB[3]              2    64     6 
+	00041: PUSHW[3]            336     2   336 
+	00048: NPUSHB      (26):     0   171     1   171    32     4     2    95     0     8 
+	                             9    58     4    60     1    48     0   160     0     2 
+	                             0    25    11   113   140    24 
+	00076: CALL       
+	00077: FLIPOFF    
+	00078: SRP0       
+	00079: MIRP[srp0,nmd,rd,0] 
+	00080: DELTAP1    
+	00081: ALIGNRP    
+	00082: FLIPON     
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: MIRP[srp0,nmd,rd,0] 
+	00085: ALIGNRP    
+	00086: SRP0       
+	00087: MIRP[nrp0,md,rd,1] 
+	00088: SVTCA[y-axis] 
+	00089: RTHG       
+	00090: MDAP[rd]   
+	00091: SMD        
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: MIRP[nrp0,md,rd,1] 
+	00094: MIRP[nrp0,md,rd,1] 
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: RTG        
+	00097: SMD        
+	00098: SRP0       
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: SRP0       
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: MIRP[srp0,nmd,rd,2] 
+	00103: ALIGNRP    
+	00104: MIRP[srp0,md,rd,1] 
+	00105: ALIGNRP    
+	00106: SVTCA[x-axis] 
+	00107: SRP1       
+	00108: SRP2       
+	00109: SLOOP      
+	00110: IP         
+	00111: SRP2       
+	00112: SLOOP      
+	00113: IP         
+	00114: IUP[y]     
+	00115: IUP[x]     
+	00116: SVTCA[y-axis] 
+	00117: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:                                      On
+	  3:        XDual         Y-Short         On
+	  4:                                      On
+	  5:                                      On
+	  6:        XDual         Y-Short         On
+	  7:                      Y-Short X-Short On
+	  8:  YDual                               On
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (    77,   762)  ->  Abs (    77,   762)
+	  1: Rel (     0,   168)  ->  Abs (    77,   930)
+	  2: Rel (   971,   410)  ->  Abs (  1048,  1340)
+	  3: Rel (     0,  -180)  ->  Abs (  1048,  1160)
+	  4: Rel (  -770,  -315)  ->  Abs (   278,   845)
+	  5: Rel (   770,  -319)  ->  Abs (  1048,   526)
+	  6: Rel (     0,  -179)  ->  Abs (  1048,   347)
+	  7: Rel (    -2,  -241)  ->  Abs (  1046,   106)
+	  8: Rel (  -968,     0)  ->  Abs (    78,   106)
+	  9: Rel (     0,   167)  ->  Abs (    78,   273)
+	 10: Rel (   968,     0)  ->  Abs (  1046,   273)
+
+	Glyph 149: off = 0x0000A22A, len = 196
+	  numberOfContours:	2
+	  xMin:			77
+	  yMin:			106
+	  xMax:			1048
+	  yMax:			1340
+
+	EndPoints
+	---------
+	  0:  6
+	  1:  10
+
+	  Length of Instructions:	138
+	00000: NPUSHB      (24):   128     2   143     4     2    10     9     8     7     4 
+	                             0     4     2     1     3    11     5    10     9     7 
+	                             8    37    64     9 
+	00026: PUSHW[1]            684 
+	00029: PUSHB[8]              1     0   171     6   171     3    32     2 
+	00038: PUSHW[4]            602    64     1   336 
+	00047: PUSHB[3]              3    32     4 
+	00051: PUSHW[4]            602    64     5   336 
+	00060: NPUSHB       (9):    32     3     7    10    58     3    60     6     5 
+	00071: PUSHW[1]            290 
+	00074: NPUSHB      (11):    31     0    48     0     2     0    26    12   113   140 
+	                            24 
+	00087: CALL       
+	00088: FLIPOFF    
+	00089: SRP0       
+	00090: MIRP[srp0,nmd,rd,2] 
+	00091: DELTAP1    
+	00092: FLIPON     
+	00093: MIRP[nrp0,md,rd,1] 
+	00094: ALIGNRP    
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: MIRP[srp0,nmd,rd,0] 
+	00097: ALIGNRP    
+	00098: SVTCA[y-axis] 
+	00099: RTHG       
+	00100: MDAP[rd]   
+	00101: SMD        
+	00102: MIRP[srp0,md,rd,1] 
+	00103: RTG        
+	00104: SMD        
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: RTHG       
+	00107: SMD        
+	00108: SRP0       
+	00109: MIRP[srp0,md,rd,1] 
+	00110: RTG        
+	00111: SMD        
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: RTHG       
+	00114: SMD        
+	00115: SRP0       
+	00116: MIRP[nrp0,md,rd,1] 
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: RTG        
+	00119: SRP0       
+	00120: MIRP[srp0,nmd,rd,2] 
+	00121: SMD        
+	00122: MIRP[srp0,md,rd,1] 
+	00123: ALIGNRP    
+	00124: SRP0       
+	00125: ALIGNRP    
+	00126: SVTCA[x-axis] 
+	00127: SRP1       
+	00128: SRP2       
+	00129: SLOOP      
+	00130: IP         
+	00131: SRP2       
+	00132: SLOOP      
+	00133: IP         
+	00134: IUP[y]     
+	00135: IUP[x]     
+	00136: SVTCA[y-axis] 
+	00137: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:  YDual XDual         Y-Short         On
+	  3:                                      On
+	  4:                                      On
+	  5:  YDual XDual         Y-Short         On
+	  6:                                      On
+	  7:                              X-Short On
+	  8:  YDual                               On
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1048,   762)  ->  Abs (  1048,   762)
+	  1: Rel (  -971,  -415)  ->  Abs (    77,   347)
+	  2: Rel (     0,   179)  ->  Abs (    77,   526)
+	  3: Rel (   769,   319)  ->  Abs (   846,   845)
+	  4: Rel (  -769,   315)  ->  Abs (    77,  1160)
+	  5: Rel (     0,   180)  ->  Abs (    77,  1340)
+	  6: Rel (   971,  -410)  ->  Abs (  1048,   930)
+	  7: Rel (    -2,  -824)  ->  Abs (  1046,   106)
+	  8: Rel (  -968,     0)  ->  Abs (    78,   106)
+	  9: Rel (     0,   167)  ->  Abs (    78,   273)
+	 10: Rel (   968,     0)  ->  Abs (  1046,   273)
+
+	Glyph 150: off = 0x0000A2EE, len = 328
+	  numberOfContours:	1
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1133
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  26
+
+	  Length of Instructions:	233
+	00000: NPUSHB      (55):    36     8    36    11    43    15    43    18   121     8 
+	                           118    18   137     8   133    18     8   116    13   132 
+	                            13     2    18    17    17    21     8     9     9     5 
+	                            12    11    10    10    13    14    15    16    16    13 
+	                            13    26    13     0     9    25   232    22    22     4 
+	                            21     5     1   232     4 
+	00057: PUSHW[1]            687 
+	00060: PUSHB[8]              5   249     8     8    31    18     1    18 
+	00069: PUSHW[1]            352 
+	00072: NPUSHB      (32):    17    17    16    16    10    10     9     0     0    10 
+	                            24    23    23    20    20    19    56    17     2     3 
+	                             3     6     6     7    56     9    16    60    32    17 
+	                             1    17 
+	00106: PUSHW[1]            256 
+	00109: NPUSHB      (11):    21    21    26    35     0    10    60    47     9     1 
+	                             9 
+	00122: PUSHW[1]            256 
+	00125: NPUSHB      (15):     5     5     0    16    15    15     6    85     0    16 
+	                            11    11     6    85     0 
+	00142: PUSHW[1]            281 
+	00145: PUSHB[4]             27   179   122    24 
+	00150: CALL       
+	00151: SRP0       
+	00152: MIRP[srp0,nmd,rd,2] 
+	00153: CALL       
+	00154: CALL       
+	00155: ALIGNRP    
+	00156: SRP0       
+	00157: MIRP[srp0,nmd,rd,0] 
+	00158: DELTAP1    
+	00159: MIRP[nrp0,md,rd,1] 
+	00160: SRP0       
+	00161: MIRP[srp0,md,rd,1] 
+	00162: ALIGNRP    
+	00163: SRP0       
+	00164: MIRP[srp0,nmd,rd,0] 
+	00165: DELTAP1    
+	00166: MIRP[nrp0,md,rd,1] 
+	00167: SRP0       
+	00168: MIRP[srp0,nmd,rd,0] 
+	00169: ALIGNRP    
+	00170: SRP0       
+	00171: ALIGNRP    
+	00172: SRP0       
+	00173: ALIGNRP    
+	00174: SRP0       
+	00175: MIRP[srp0,nmd,rd,0] 
+	00176: ALIGNRP    
+	00177: SRP0       
+	00178: ALIGNRP    
+	00179: SRP0       
+	00180: ALIGNRP    
+	00181: SVTCA[y-axis] 
+	00182: MIAP[rd+ci] 
+	00183: MIAP[rd+ci] 
+	00184: ALIGNRP    
+	00185: SRP0       
+	00186: ALIGNRP    
+	00187: SRP0       
+	00188: ALIGNRP    
+	00189: SRP0       
+	00190: MIRP[srp0,nmd,rd,0] 
+	00191: DELTAP1    
+	00192: ALIGNRP    
+	00193: SRP0       
+	00194: MIRP[srp0,md,rd,1] 
+	00195: MIRP[srp0,md,rd,2] 
+	00196: MIRP[nrp0,md,rd,1] 
+	00197: SRP0       
+	00198: ALIGNRP    
+	00199: SRP0       
+	00200: ALIGNRP    
+	00201: SRP0       
+	00202: MIRP[nrp0,md,rd,1] 
+	00203: SRP1       
+	00204: SRP2       
+	00205: IP         
+	00206: SVTCA[x-axis] 
+	00207: SRP1       
+	00208: IP         
+	00209: SDPVTL[1]  
+	00210: SFVTPV     
+	00211: RDTG       
+	00212: SRP0       
+	00213: MDRP[nrp0,nmd,rd,0] 
+	00214: MDRP[nrp0,nmd,rd,0] 
+	00215: SDPVTL[1]  
+	00216: SFVTPV     
+	00217: SRP0       
+	00218: MDRP[nrp0,nmd,rd,0] 
+	00219: MDRP[nrp0,nmd,rd,0] 
+	00220: SDPVTL[1]  
+	00221: SFVTCA[x-axis] 
+	00222: SRP0       
+	00223: MDRP[nrp0,nmd,rd,0] 
+	00224: SDPVTL[1]  
+	00225: SRP0       
+	00226: MDRP[nrp0,nmd,rd,0] 
+	00227: IUP[y]     
+	00228: IUP[x]     
+	00229: SVTCA[y-axis] 
+	00230: DELTAP1    
+	00231: SVTCA[x-axis] 
+	00232: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:                                      On
+	 10:  YDual XDual                 X-Short On
+	 11:                                      On
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:                                      On
+	 17:  YDual XDual                 X-Short On
+	 18:                                      On
+	 19:  YDual                               On
+	 20:        XDual         Y-Short         On
+	 21:  YDual                               On
+	 22:        XDual         Y-Short         On
+	 23:  YDual                               On
+	 24:        XDual         Y-Short         On
+	 25:  YDual                               On
+	 26:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   477,     0)  ->  Abs (   477,     0)
+	  1: Rel (     0,   325)  ->  Abs (   477,   325)
+	  2: Rel (  -415,     0)  ->  Abs (    62,   325)
+	  3: Rel (     0,   139)  ->  Abs (    62,   464)
+	  4: Rel (   415,     0)  ->  Abs (   477,   464)
+	  5: Rel (     0,   143)  ->  Abs (   477,   607)
+	  6: Rel (  -415,     0)  ->  Abs (    62,   607)
+	  7: Rel (     0,   148)  ->  Abs (    62,   755)
+	  8: Rel (   341,     0)  ->  Abs (   403,   755)
+	  9: Rel (  -406,   711)  ->  Abs (    -3,  1466)
+	 10: Rel (   200,     0)  ->  Abs (   197,  1466)
+	 11: Rel (   290,  -516)  ->  Abs (   487,   950)
+	 12: Rel (    49,   -88)  ->  Abs (   536,   862)
+	 13: Rel (    27,   -66)  ->  Abs (   563,   796)
+	 14: Rel (    23,    53)  ->  Abs (   586,   849)
+	 15: Rel (    59,   110)  ->  Abs (   645,   959)
+	 16: Rel (   274,   507)  ->  Abs (   919,  1466)
+	 17: Rel (   214,     0)  ->  Abs (  1133,  1466)
+	 18: Rel (  -405,  -711)  ->  Abs (   728,   755)
+	 19: Rel (   341,     0)  ->  Abs (  1069,   755)
+	 20: Rel (     0,  -148)  ->  Abs (  1069,   607)
+	 21: Rel (  -412,     0)  ->  Abs (   657,   607)
+	 22: Rel (     0,  -143)  ->  Abs (   657,   464)
+	 23: Rel (   412,     0)  ->  Abs (  1069,   464)
+	 24: Rel (     0,  -139)  ->  Abs (  1069,   325)
+	 25: Rel (  -412,     0)  ->  Abs (   657,   325)
+	 26: Rel (     0,  -325)  ->  Abs (   657,     0)
+
+	Glyph 151: off = 0x0000A436, len = 426
+	  numberOfContours:	1
+	  xMin:			160
+	  yMin:			-407
+	  xMax:			1018
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	342
+	00000: NPUSHB      (61):    40     4    40     5    40    22    56     4    56    10 
+	                            57    11    72     4    72    10    72    11    89     4 
+	                            91     9   106     4   106     9   123     4   123    10 
+	                           138     4   138    10    17    18    22    25    12     3 
+	                            11     2    18    22    25    15     6     2    10    20 
+	                            28     7    11    13    14     2    51    25    37     1 
+	                            27 
+	00063: PUSHW[1]            -10 
+	00066: PUSHB[5]             15    15     2    85    27 
+	00072: PUSHW[1]            -10 
+	00075: PUSHB[5]             13    13     2    85     0 
+	00081: PUSHW[1]            -28 
+	00084: PUSHB[5]             16    16     2    85     0 
+	00090: PUSHW[1]            -26 
+	00093: PUSHB[5]             13    13     2    85     0 
+	00099: PUSHW[1]             -2 
+	00102: PUSHB[5]             12    12     2    85     0 
+	00108: PUSHW[1]            -18 
+	00111: PUSHB[5]             11    11     2    85     0 
+	00117: PUSHW[1]            -25 
+	00120: NPUSHB      (11):    16    16     6    85     0    27    14    15     6    85 
+	                             0 
+	00133: PUSHW[1]             -3 
+	00136: PUSHB[5]             13    13     6    85     0 
+	00142: PUSHW[1]             -6 
+	00145: PUSHB[5]             12    12     6    85     0 
+	00151: PUSHW[1]            -21 
+	00154: NPUSHB      (28):    11    11     6    85     0    26    96    27   128    27 
+	                             2   176    27   192    27     2   208    27   224    27 
+	                             2    27    15    12    37    13    13    14 
+	00184: PUSHW[1]            -12 
+	00187: PUSHB[5]             16    16     2    85    14 
+	00193: PUSHW[1]             -8 
+	00196: PUSHB[5]             15    15     2    85    14 
+	00202: PUSHW[1]             -8 
+	00205: PUSHB[5]             13    13     2    85    14 
+	00211: PUSHW[1]             -4 
+	00214: PUSHB[5]             12    12     2    85    14 
+	00220: PUSHW[1]             -8 
+	00223: PUSHB[5]             11    11     2    85    14 
+	00229: PUSHW[1]            -17 
+	00232: PUSHB[5]             16    16     6    85    14 
+	00238: PUSHW[1]            -14 
+	00241: PUSHB[5]             15    15     6    85    14 
+	00247: PUSHW[1]             -3 
+	00250: NPUSHB      (22):    12    12     6    85   224    14     1   192    14   208 
+	                            14     2     0    14    32    14   176    14     3    14 
+	                            25    26 
+	00274: PUSHW[1]            310 
+	00277: PUSHB[2]             80    24 
+	00280: CALL       
+	00281: FLIPOFF    
+	00282: SRP0       
+	00283: MIRP[srp0,nmd,rd,0] 
+	00284: DELTAP1    
+	00285: DELTAP1    
+	00286: DELTAP1    
+	00287: CALL       
+	00288: CALL       
+	00289: CALL       
+	00290: CALL       
+	00291: CALL       
+	00292: CALL       
+	00293: CALL       
+	00294: CALL       
+	00295: ALIGNRP    
+	00296: FLIPON     
+	00297: SRP0       
+	00298: MIRP[srp0,md,rd,1] 
+	00299: ALIGNRP    
+	00300: FLIPOFF    
+	00301: SRP0       
+	00302: DELTAP1    
+	00303: DELTAP1    
+	00304: DELTAP1    
+	00305: MIRP[srp0,nmd,rd,2] 
+	00306: CALL       
+	00307: CALL       
+	00308: CALL       
+	00309: CALL       
+	00310: CALL       
+	00311: CALL       
+	00312: CALL       
+	00313: CALL       
+	00314: CALL       
+	00315: CALL       
+	00316: CALL       
+	00317: ALIGNRP    
+	00318: FLIPON     
+	00319: MIRP[srp0,md,rd,1] 
+	00320: MIRP[nrp0,nmd,rd,0] 
+	00321: SVTCA[y-axis] 
+	00322: MIAP[rd+ci] 
+	00323: MIAP[rd+ci] 
+	00324: MIRP[nrp0,md,rd,1] 
+	00325: MIAP[rd+ci] 
+	00326: MIAP[rd+ci] 
+	00327: ALIGNRP    
+	00328: IP         
+	00329: IP         
+	00330: SRP1       
+	00331: IP         
+	00332: IP         
+	00333: SVTCA[x-axis] 
+	00334: SRP1       
+	00335: SRP2       
+	00336: IP         
+	00337: IP         
+	00338: IUP[y]     
+	00339: IUP[x]     
+	00340: SVTCA[y-axis] 
+	00341: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short         On
+	  4:                      Y-Short X-Short Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:        XDual                         On
+	 13:  YDual                       X-Short On
+	 14:        XDual                         On
+	 15:  YDual XDual                 X-Short On
+	 16:        XDual                         On
+	 17:        XDual         Y-Short         Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1018,  1062)  ->  Abs (  1018,  1062)
+	  1: Rel (     0, -1062)  ->  Abs (  1018,     0)
+	  2: Rel (  -161,     0)  ->  Abs (   857,     0)
+	  3: Rel (     0,   126)  ->  Abs (   857,   126)
+	  4: Rel (   -52,   -80)  ->  Abs (   805,    46)
+	  5: Rel (   -51,   -30)  ->  Abs (   754,    16)
+	  6: Rel (   -70,   -41)  ->  Abs (   684,   -25)
+	  7: Rel (   -93,     0)  ->  Abs (   591,   -25)
+	  8: Rel (   -83,     0)  ->  Abs (   508,   -25)
+	  9: Rel (   -64,    33)  ->  Abs (   444,     8)
+	 10: Rel (   -48,    25)  ->  Abs (   396,    33)
+	 11: Rel (   -58,    74)  ->  Abs (   338,   107)
+	 12: Rel (     0,  -514)  ->  Abs (   338,  -407)
+	 13: Rel (  -178,     0)  ->  Abs (   160,  -407)
+	 14: Rel (     0,  1469)  ->  Abs (   160,  1062)
+	 15: Rel (   178,     0)  ->  Abs (   338,  1062)
+	 16: Rel (     0,  -450)  ->  Abs (   338,   612)
+	 17: Rel (     0,  -245)  ->  Abs (   338,   367)
+	 18: Rel (    52,  -145)  ->  Abs (   390,   222)
+	 19: Rel (   117,   -84)  ->  Abs (   507,   138)
+	 20: Rel (    76,     0)  ->  Abs (   583,   138)
+	 21: Rel (    80,     0)  ->  Abs (   663,   138)
+	 22: Rel (   126,    88)  ->  Abs (   789,   226)
+	 23: Rel (    52,   139)  ->  Abs (   841,   365)
+	 24: Rel (     0,   244)  ->  Abs (   841,   609)
+	 25: Rel (     0,   453)  ->  Abs (   841,  1062)
+
+	Glyph 152: off = 0x0000A5E0, len = 238
+	  numberOfContours:	2
+	  xMin:			56
+	  yMin:			-25
+	  xMax:			973
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  27
+	  1:  39
+
+	  Length of Instructions:	108
+	00000: NPUSHB      (79):   119     2   118    21   120    30   134    21     4     9 
+	                            12     9    37    11    38    68    12   100    26   115 
+	                            30   121    37   123    38   138     2   132    30   138 
+	                            37   137    38    12    85    26   107    24     2    58 
+	                            37    69    26     2    47    41    54    26     2    28 
+	                            21    14    25   232     4     3    35   232    14     9 
+	                            28   232    21   232    10    61    41     0   232     1 
+	                           134    32    38    17   105    40   155   104    24 
+	00081: CALL       
+	00082: SRP0       
+	00083: MIRP[srp0,nmd,rd,2] 
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: MIRP[srp0,nmd,rd,0] 
+	00086: MIRP[nrp0,md,rd,1] 
+	00087: SRP0       
+	00088: MIRP[srp0,nmd,rd,2] 
+	00089: MIRP[nrp0,md,rd,1] 
+	00090: MIRP[nrp0,md,rd,1] 
+	00091: SVTCA[y-axis] 
+	00092: MIAP[rd+ci] 
+	00093: MIRP[nrp0,md,rd,1] 
+	00094: MIAP[rd+ci] 
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: SRP2       
+	00097: IP         
+	00098: IP         
+	00099: IUP[y]     
+	00100: IUP[x]     
+	00101: SVTCA[x-axis] 
+	00102: DELTAP1    
+	00103: DELTAP1    
+	00104: DELTAP1    
+	00105: DELTAP1    
+	00106: SVTCA[y-axis] 
+	00107: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual                         Off
+	 12:                              X-Short Off
+	 13:                      Y-Short         Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual               Y-Short         On
+	 22:  YDual       Rep-  2 Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:                      Y-Short X-Short Off
+	 28:                                      On
+	 29:              Rep-  2 Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:        XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:  YDual XDual         Y-Short X-Short On
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:        XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   426,  1138)  ->  Abs (   426,  1138)
+	  1: Rel (  -135,    60)  ->  Abs (   291,  1198)
+	  2: Rel (    70,   157)  ->  Abs (   361,  1355)
+	  3: Rel (   196,   136)  ->  Abs (   557,  1491)
+	  4: Rel (    94,     0)  ->  Abs (   651,  1491)
+	  5: Rel (    76,     0)  ->  Abs (   727,  1491)
+	  6: Rel (   123,   -79)  ->  Abs (   850,  1412)
+	  7: Rel (    31,   -51)  ->  Abs (   881,  1361)
+	  8: Rel (    47,   -79)  ->  Abs (   928,  1282)
+	  9: Rel (    45,  -216)  ->  Abs (   973,  1066)
+	 10: Rel (     0,  -140)  ->  Abs (   973,   926)
+	 11: Rel (     0,  -288)  ->  Abs (   973,   638)
+	 12: Rel (  -173,  -449)  ->  Abs (   800,   189)
+	 13: Rel (  -294,  -214)  ->  Abs (   506,   -25)
+	 14: Rel (  -142,     0)  ->  Abs (   364,   -25)
+	 15: Rel (  -137,     0)  ->  Abs (   227,   -25)
+	 16: Rel (  -171,   182)  ->  Abs (    56,   157)
+	 17: Rel (     0,   165)  ->  Abs (    56,   322)
+	 18: Rel (     0,   226)  ->  Abs (    56,   548)
+	 19: Rel (   153,   161)  ->  Abs (   209,   709)
+	 20: Rel (   197,   207)  ->  Abs (   406,   916)
+	 21: Rel (   452,     8)  ->  Abs (   858,   924)
+	 22: Rel (    -4,   168)  ->  Abs (   854,  1092)
+	 23: Rel (   -40,   176)  ->  Abs (   814,  1268)
+	 24: Rel (   -96,    95)  ->  Abs (   718,  1363)
+	 25: Rel (   -65,     0)  ->  Abs (   653,  1363)
+	 26: Rel (   -62,     0)  ->  Abs (   591,  1363)
+	 27: Rel (  -118,   -99)  ->  Abs (   473,  1264)
+	 28: Rel (   381,  -468)  ->  Abs (   854,   796)
+	 29: Rel (  -244,   -14)  ->  Abs (   610,   782)
+	 30: Rel (  -227,  -108)  ->  Abs (   383,   674)
+	 31: Rel (  -147,  -245)  ->  Abs (   236,   429)
+	 32: Rel (     0,  -126)  ->  Abs (   236,   303)
+	 33: Rel (     0,   -83)  ->  Abs (   236,   220)
+	 34: Rel (   102,  -108)  ->  Abs (   338,   112)
+	 35: Rel (    68,     0)  ->  Abs (   406,   112)
+	 36: Rel (    75,     0)  ->  Abs (   481,   112)
+	 37: Rel (    85,    55)  ->  Abs (   566,   167)
+	 38: Rel (   117,    76)  ->  Abs (   683,   243)
+	 39: Rel (   147,   317)  ->  Abs (   830,   560)
+
+	Glyph 153: off = 0x0000A6CE, len = 198
+	  numberOfContours:	1
+	  xMin:			122
+	  yMin:			-431
+	  xMax:			1386
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	141
+	00000: NPUSHB      (32):     4    10     0     8     4     3     4     5     3    32 
+	                            11    10    20    11    11    10     4     5     4     3 
+	                             5    32     9    10    20     9     9    10     2     3 
+	                            30    11 
+	00034: PUSHW[1]            678 
+	00037: PUSHB[7]              1     0     2     6     5    30     9 
+	00045: PUSHW[1]            678 
+	00048: NPUSHB      (14):     7     8    14     1     2    45     6     7    81    32 
+	                            13     1    13     4 
+	00064: PUSHW[3]            570    10   625 
+	00071: NPUSHB      (11):     9     0    11    45     9    32     8     1     8    86 
+	                            12 
+	00084: PUSHW[1]            307 
+	00087: PUSHB[2]             92    24 
+	00090: CALL       
+	00091: SRP0       
+	00092: MIRP[srp0,nmd,rd,2] 
+	00093: DELTAP1    
+	00094: ALIGNRP    
+	00095: MIRP[srp0,nmd,rd,0] 
+	00096: ALIGNRP    
+	00097: SRP0       
+	00098: MIRP[srp0,nmd,rd,0] 
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: SRP0       
+	00101: DELTAP1    
+	00102: MIRP[srp0,nmd,rd,0] 
+	00103: ALIGNRP    
+	00104: MIRP[srp0,nmd,rd,0] 
+	00105: ALIGNRP    
+	00106: SVTCA[y-axis] 
+	00107: MIAP[rd+ci] 
+	00108: ALIGNRP    
+	00109: MIRP[nrp0,nmd,rd,2] 
+	00110: MIRP[srp0,md,rd,1] 
+	00111: ALIGNRP    
+	00112: MIAP[rd+ci] 
+	00113: ALIGNRP    
+	00114: MIRP[nrp0,nmd,rd,2] 
+	00115: MIRP[srp0,md,rd,1] 
+	00116: ALIGNRP    
+	00117: SDPVTL[1]  
+	00118: SFVTCA[x-axis] 
+	00119: MDAP[nrd]  
+	00120: CALL       
+	00121: SFVTL[=p1,p2] 
+	00122: RDTG       
+	00123: SRP0       
+	00124: MDRP[nrp0,nmd,rd,0] 
+	00125: SDPVTL[1]  
+	00126: SFVTCA[x-axis] 
+	00127: MDAP[nrd]  
+	00128: RTG        
+	00129: CALL       
+	00130: SFVTL[=p1,p2] 
+	00131: RDTG       
+	00132: SRP0       
+	00133: MDRP[nrp0,nmd,rd,0] 
+	00134: SVTCA[y-axis] 
+	00135: SRP1       
+	00136: SRP2       
+	00137: IP         
+	00138: IP         
+	00139: IUP[y]     
+	00140: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:                                      On
+	  5:                                      On
+	  6:  YDual                               On
+	  7:        XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:  YDual XDual         Y-Short         On
+	 10:                                      On
+	 11:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   139,  1491)  ->  Abs (   139,  1491)
+	  1: Rel (  1237,     0)  ->  Abs (  1376,  1491)
+	  2: Rel (     0,  -164)  ->  Abs (  1376,  1327)
+	  3: Rel (  -988,     0)  ->  Abs (   388,  1327)
+	  4: Rel (   607,  -775)  ->  Abs (   995,   552)
+	  5: Rel (  -649,  -822)  ->  Abs (   346,  -270)
+	  6: Rel (  1040,     0)  ->  Abs (  1386,  -270)
+	  7: Rel (     0,  -161)  ->  Abs (  1386,  -431)
+	  8: Rel ( -1264,     0)  ->  Abs (   122,  -431)
+	  9: Rel (     0,   187)  ->  Abs (   122,  -244)
+	 10: Rel (   620,   788)  ->  Abs (   742,   544)
+	 11: Rel (  -603,   772)  ->  Abs (   139,  1316)
+
+	Glyph 154: off = 0x0000A794, len = 100
+	  numberOfContours:	1
+	  xMin:			161
+	  yMin:			-431
+	  xMax:			1523
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	62
+	00000: NPUSHB      (34):     2     3     3     6     7    14     4     5     1     5 
+	                            35     0     2     4   186     1     1     3   186     2 
+	                           108     9     5   186     0     0     6   186     7   118 
+	                             8   158   121    24 
+	00036: CALL       
+	00037: SRP0       
+	00038: MIRP[srp0,nmd,rd,0] 
+	00039: MIRP[nrp0,md,rd,1] 
+	00040: ALIGNRP    
+	00041: SRP0       
+	00042: MIRP[nrp0,md,rd,1] 
+	00043: SRP0       
+	00044: MIRP[srp0,nmd,rd,2] 
+	00045: MIRP[nrp0,md,rd,1] 
+	00046: ALIGNRP    
+	00047: SRP0       
+	00048: MIRP[nrp0,md,rd,1] 
+	00049: SVTCA[y-axis] 
+	00050: MIAP[rd+ci] 
+	00051: MIRP[nrp0,md,rd,1] 
+	00052: ALIGNRP    
+	00053: SRP0       
+	00054: ALIGNRP    
+	00055: MIAP[rd+ci] 
+	00056: ALIGNRP    
+	00057: ALIGNRP    
+	00058: SRP0       
+	00059: ALIGNRP    
+	00060: IUP[y]     
+	00061: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:        XDual                         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   161,  1491)  ->  Abs (   161,  1491)
+	  1: Rel (  1362,     0)  ->  Abs (  1523,  1491)
+	  2: Rel (     0, -1922)  ->  Abs (  1523,  -431)
+	  3: Rel (  -191,     0)  ->  Abs (  1332,  -431)
+	  4: Rel (     0,  1748)  ->  Abs (  1332,  1317)
+	  5: Rel (  -978,     0)  ->  Abs (   354,  1317)
+	  6: Rel (     0, -1748)  ->  Abs (   354,  -431)
+	  7: Rel (  -193,     0)  ->  Abs (   161,  -431)
+
+	Glyph 155: off = 0x0000A7F8, len = 110
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1124
+	  yMax:			1063
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	65
+	00000: NPUSHB      (30):     6     7     2    11    43     1     0     6     8     5 
+	                            10     6     5    37     3     4   146     1    26    13 
+	                             7     8    37    10     9   146     0    25    12   246 
+	00032: PUSHW[2]            662    24 
+	00037: CALL       
+	00038: FLIPOFF    
+	00039: SRP0       
+	00040: MIRP[srp0,nmd,rd,0] 
+	00041: FLIPON     
+	00042: MIRP[srp0,nmd,rd,0] 
+	00043: ALIGNRP    
+	00044: MIRP[srp0,md,rd,1] 
+	00045: ALIGNRP    
+	00046: FLIPOFF    
+	00047: SRP0       
+	00048: MIRP[srp0,nmd,rd,2] 
+	00049: FLIPON     
+	00050: MIRP[srp0,nmd,rd,0] 
+	00051: ALIGNRP    
+	00052: MIRP[srp0,md,rd,1] 
+	00053: ALIGNRP    
+	00054: SVTCA[y-axis] 
+	00055: MIAP[rd+ci] 
+	00056: ALIGNRP    
+	00057: MIAP[rd+ci] 
+	00058: ALIGNRP    
+	00059: MIRP[srp0,md,rd,1] 
+	00060: ALIGNRP    
+	00061: IP         
+	00062: IP         
+	00063: IUP[y]     
+	00064: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                         On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                       X-Short On
+	  4:        XDual                         On
+	  5:  YDual                       X-Short On
+	  6:        XDual                         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (     0,  1063)  ->  Abs (     0,  1063)
+	  1: Rel (  1124,     0)  ->  Abs (  1124,  1063)
+	  2: Rel (     0,  -158)  ->  Abs (  1124,   905)
+	  3: Rel (  -162,     0)  ->  Abs (   962,   905)
+	  4: Rel (     0,  -905)  ->  Abs (   962,     0)
+	  5: Rel (  -189,     0)  ->  Abs (   773,     0)
+	  6: Rel (     0,   905)  ->  Abs (   773,   905)
+	  7: Rel (  -426,     0)  ->  Abs (   347,   905)
+	  8: Rel (     0,  -905)  ->  Abs (   347,     0)
+	  9: Rel (  -188,     0)  ->  Abs (   159,     0)
+	 10: Rel (     0,   905)  ->  Abs (   159,   905)
+	 11: Rel (  -159,     0)  ->  Abs (     0,   905)
+
+	Glyph 156: off = 0x0000A866, len = 298
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-220
+	  xMax:			560
+	  yMax:			1863
+
+	EndPoints
+	---------
+	  0:  44
+
+	  Length of Instructions:	165
+	00000: NPUSHB      (20):    51     8    36    37     0    34    13    15     9    23 
+	                            44    42    22    20     4    12    36    16    41     6 
+	00022: PUSHW[3]            408    12   489 
+	00029: PUSHB[3]             29    41    38 
+	00033: PUSHW[1]            674 
+	00036: NPUSHB      (32):    36    36    35    10    46    23    23    26     9   174 
+	                            23    39    25    39    19   171    41    39     1    39 
+	                             0   118    34    25    32    45    46   204    33   155 
+	                           122    24 
+	00070: CALL       
+	00071: CALL       
+	00072: MDAP[rd]   
+	00073: FLIPOFF    
+	00074: MIRP[srp0,nmd,rd,0] 
+	00075: FLIPON     
+	00076: MIRP[srp0,nmd,rd,0] 
+	00077: MIRP[srp0,nmd,rd,0] 
+	00078: MIRP[srp0,nmd,rd,0] 
+	00079: MIRP[srp0,md,rd,1] 
+	00080: MIRP[srp0,nmd,rd,0] 
+	00081: MIRP[srp0,nmd,rd,0] 
+	00082: MIRP[srp0,nmd,rd,0] 
+	00083: FLIPOFF    
+	00084: RCVT       
+	00085: NEG        
+	00086: WCVTP      
+	00087: MIRP[nrp0,nmd,rd,2] 
+	00088: SVTCA[y-axis] 
+	00089: MIAP[rd+ci] 
+	00090: ALIGNRP    
+	00091: FLIPON     
+	00092: SRP0       
+	00093: MIRP[srp0,nmd,rd,0] 
+	00094: MIRP[srp0,md,rd,1] 
+	00095: MIRP[srp0,nmd,rd,0] 
+	00096: MIRP[srp0,md,rd,1] 
+	00097: MIRP[nrp0,md,rd,1] 
+	00098: SRP1       
+	00099: SRP2       
+	00100: SLOOP      
+	00101: IP         
+	00102: SVTCA[x-axis] 
+	00103: SRP1       
+	00104: SRP2       
+	00105: IP         
+	00106: IP         
+	00107: SRP1       
+	00108: SRP2       
+	00109: IP         
+	00110: IP         
+	00111: IUP[y]     
+	00112: IUP[x]     
+	00113: RS         
+	00114: JROF       
+	00115: NPUSHB      (36):    39    40    26    28    17    18     2     5    27    38 
+	                             3     2     4     2     2     6    39    28    41    50 
+	                             1    17     5    19    50     0    40    26    38    50 
+	                             0    18     2    16    50     1 
+	00153: SVTCA[y-axis] 
+	00154: CALL       
+	00155: CALL       
+	00156: SVTCA[x-axis] 
+	00157: CALL       
+	00158: CALL       
+	00159: LOOPCALL   
+	00160: CALL       
+	00161: FLIPRGON   
+	00162: FLIPRGON   
+	00163: FLIPRGON   
+	00164: FLIPRGON   
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                 X-Short On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                      Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual                 X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:                              X-Short On
+	 26:                              X-Short Off
+	 27:                      Y-Short X-Short On
+	 28:                      Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual               Y-Short X-Short On
+	 44:                              X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   201,   948)  ->  Abs (   201,   948)
+	  1: Rel (    17,   531)  ->  Abs (   218,  1479)
+	  2: Rel (     9,   153)  ->  Abs (   227,  1632)
+	  3: Rel (    41,   101)  ->  Abs (   268,  1733)
+	  4: Rel (    27,    65)  ->  Abs (   295,  1798)
+	  5: Rel (    95,    65)  ->  Abs (   390,  1863)
+	  6: Rel (    45,     0)  ->  Abs (   435,  1863)
+	  7: Rel (    50,     0)  ->  Abs (   485,  1863)
+	  8: Rel (    75,   -67)  ->  Abs (   560,  1796)
+	  9: Rel (     0,   -40)  ->  Abs (   560,  1756)
+	 10: Rel (     0,   -47)  ->  Abs (   560,  1709)
+	 11: Rel (   -53,   -57)  ->  Abs (   507,  1652)
+	 12: Rel (   -39,     0)  ->  Abs (   468,  1652)
+	 13: Rel (   -35,     0)  ->  Abs (   433,  1652)
+	 14: Rel (   -41,    36)  ->  Abs (   392,  1688)
+	 15: Rel (   -23,    20)  ->  Abs (   369,  1708)
+	 16: Rel (   -17,     0)  ->  Abs (   352,  1708)
+	 17: Rel (   -17,     0)  ->  Abs (   335,  1708)
+	 18: Rel (   -23,   -29)  ->  Abs (   312,  1679)
+	 19: Rel (     0,   -35)  ->  Abs (   312,  1644)
+	 20: Rel (     0,   -42)  ->  Abs (   312,  1602)
+	 21: Rel (     9,  -103)  ->  Abs (   321,  1499)
+	 22: Rel (    37,  -410)  ->  Abs (   358,  1089)
+	 23: Rel (     0,  -255)  ->  Abs (   358,   834)
+	 24: Rel (     0,   -67)  ->  Abs (   358,   767)
+	 25: Rel (   -16,  -521)  ->  Abs (   342,   246)
+	 26: Rel (    -8,  -295)  ->  Abs (   334,   -49)
+	 27: Rel (   -82,  -104)  ->  Abs (   252,  -153)
+	 28: Rel (   -54,   -67)  ->  Abs (   198,  -220)
+	 29: Rel (   -80,     0)  ->  Abs (   118,  -220)
+	 30: Rel (   -52,     0)  ->  Abs (    66,  -220)
+	 31: Rel (   -66,    68)  ->  Abs (     0,  -152)
+	 32: Rel (     0,    53)  ->  Abs (     0,   -99)
+	 33: Rel (     0,    45)  ->  Abs (     0,   -54)
+	 34: Rel (    51,    54)  ->  Abs (    51,     0)
+	 35: Rel (    39,     0)  ->  Abs (    90,     0)
+	 36: Rel (    40,     0)  ->  Abs (   130,     0)
+	 37: Rel (    58,   -64)  ->  Abs (   188,   -64)
+	 38: Rel (    20,     0)  ->  Abs (   208,   -64)
+	 39: Rel (    17,     0)  ->  Abs (   225,   -64)
+	 40: Rel (    22,    28)  ->  Abs (   247,   -36)
+	 41: Rel (     0,    33)  ->  Abs (   247,    -3)
+	 42: Rel (     0,    42)  ->  Abs (   247,    39)
+	 43: Rel (    -9,    78)  ->  Abs (   238,   117)
+	 44: Rel (   -37,   315)  ->  Abs (   201,   432)
+
+	Glyph 157: off = 0x0000A990, len = 292
+	  numberOfContours:	2
+	  xMin:			47
+	  yMin:			746
+	  xMax:			718
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  35
+	  1:  49
+
+	  Length of Instructions:	139
+	00000: NPUSHB      (14):     0    30    11    38    36    42    11    38    18    45 
+	                            33    33     2    45 
+	00016: PUSHW[3]            636     2   287 
+	00023: PUSHB[7]             25    21    39    63    22     1    22 
+	00031: PUSHW[3]            696    18   636 
+	00038: NPUSHB      (53):    25     1    14   127    36    29    36   232    48   249 
+	                            30    56    34   249    32    33     1    33   105   144 
+	                            51     1   128    51   192    51     2    96    51   112 
+	                            51     2    64    51    80    51     2    51    21   232 
+	                            63    22     1    22    39    42    41     5   105    50 
+	                           155   140    24 
+	00093: CALL       
+	00094: SRP0       
+	00095: MIRP[srp0,nmd,rd,2] 
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: MIRP[srp0,nmd,rd,0] 
+	00098: DELTAP1    
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: SRP0       
+	00101: DELTAP1    
+	00102: DELTAP1    
+	00103: DELTAP1    
+	00104: DELTAP1    
+	00105: MIRP[srp0,nmd,rd,2] 
+	00106: DELTAP1    
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: MIRP[srp0,nmd,rd,0] 
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: MIRP[nrp0,md,rd,1] 
+	00111: ALIGNRP    
+	00112: SRP0       
+	00113: MIRP[nrp0,nmd,rd,2] 
+	00114: SVTCA[y-axis] 
+	00115: MIAP[rd+ci] 
+	00116: MIRP[srp0,md,rd,1] 
+	00117: MIRP[srp0,nmd,rd,0] 
+	00118: DELTAP1    
+	00119: MIRP[nrp0,nmd,rd,0] 
+	00120: SRP0       
+	00121: MIRP[srp0,md,rd,1] 
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: SRP0       
+	00124: ALIGNRP    
+	00125: ALIGNRP    
+	00126: SRP1       
+	00127: SRP2       
+	00128: IP         
+	00129: IP         
+	00130: SVTCA[x-axis] 
+	00131: SRP1       
+	00132: SRP2       
+	00133: IP         
+	00134: IP         
+	00135: SRP1       
+	00136: IP         
+	00137: IUP[y]     
+	00138: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual       Rep-  2 Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:  YDual               Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         On
+	 31:                      Y-Short X-Short On
+	 32:        XDual         Y-Short         Off
+	 33:        XDual         Y-Short X-Short On
+	 34:  YDual                       X-Short On
+	 35:  YDual               Y-Short X-Short Off
+	 36:                              X-Short On
+	 37:                      Y-Short X-Short Off
+	 38:                      Y-Short X-Short On
+	 39:                      Y-Short X-Short Off
+	 40:                      Y-Short X-Short On
+	 41:                      Y-Short X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:        XDual         Y-Short X-Short Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short X-Short On
+	 49:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   548,   853)  ->  Abs (   548,   853)
+	  1: Rel (  -122,  -107)  ->  Abs (   426,   746)
+	  2: Rel (  -134,     0)  ->  Abs (   292,   746)
+	  3: Rel (  -113,     0)  ->  Abs (   179,   746)
+	  4: Rel (  -132,   123)  ->  Abs (    47,   869)
+	  5: Rel (     0,    96)  ->  Abs (    47,   965)
+	  6: Rel (     0,    48)  ->  Abs (    47,  1013)
+	  7: Rel (    32,    72)  ->  Abs (    79,  1085)
+	  8: Rel (    63,    56)  ->  Abs (   142,  1141)
+	  9: Rel (    50,    17)  ->  Abs (   192,  1158)
+	 10: Rel (    35,    11)  ->  Abs (   227,  1169)
+	 11: Rel (    64,    10)  ->  Abs (   291,  1179)
+	 12: Rel (   147,    22)  ->  Abs (   438,  1201)
+	 13: Rel (    72,    14)  ->  Abs (   510,  1215)
+	 14: Rel (    24,     6)  ->  Abs (   534,  1221)
+	 15: Rel (    -1,    70)  ->  Abs (   533,  1291)
+	 16: Rel (   -26,    48)  ->  Abs (   507,  1339)
+	 17: Rel (   -71,    35)  ->  Abs (   436,  1374)
+	 18: Rel (   -59,     0)  ->  Abs (   377,  1374)
+	 19: Rel (   -79,     0)  ->  Abs (   298,  1374)
+	 20: Rel (   -78,   -65)  ->  Abs (   220,  1309)
+	 21: Rel (    -9,   -60)  ->  Abs (   211,  1249)
+	 22: Rel (  -137,    34)  ->  Abs (    74,  1283)
+	 23: Rel (    12,    89)  ->  Abs (    86,  1372)
+	 24: Rel (   152,   119)  ->  Abs (   238,  1491)
+	 25: Rel (   141,     0)  ->  Abs (   379,  1491)
+	 26: Rel (   164,     0)  ->  Abs (   543,  1491)
+	 27: Rel (    68,   -61)  ->  Abs (   611,  1430)
+	 28: Rel (    67,   -62)  ->  Abs (   678,  1368)
+	 29: Rel (     0,  -119)  ->  Abs (   678,  1249)
+	 30: Rel (     0,  -240)  ->  Abs (   678,  1009)
+	 31: Rel (    -1,   -61)  ->  Abs (   677,   948)
+	 32: Rel (     0,  -134)  ->  Abs (   677,   814)
+	 33: Rel (    41,   -50)  ->  Abs (   718,   764)
+	 34: Rel (  -148,     0)  ->  Abs (   570,   764)
+	 35: Rel (   -20,    40)  ->  Abs (   550,   804)
+	 36: Rel (   -17,   300)  ->  Abs (   533,  1104)
+	 37: Rel (   -53,   -14)  ->  Abs (   480,  1090)
+	 38: Rel (  -139,   -22)  ->  Abs (   341,  1068)
+	 39: Rel (   -90,   -14)  ->  Abs (   251,  1054)
+	 40: Rel (   -27,   -25)  ->  Abs (   224,  1029)
+	 41: Rel (   -28,   -26)  ->  Abs (   196,  1003)
+	 42: Rel (     0,   -38)  ->  Abs (   196,   965)
+	 43: Rel (     0,   -41)  ->  Abs (   196,   924)
+	 44: Rel (    68,   -58)  ->  Abs (   264,   866)
+	 45: Rel (    62,     0)  ->  Abs (   326,   866)
+	 46: Rel (    73,     0)  ->  Abs (   399,   866)
+	 47: Rel (   108,    78)  ->  Abs (   507,   944)
+	 48: Rel (    18,    57)  ->  Abs (   525,  1001)
+	 49: Rel (     7,    20)  ->  Abs (   532,  1021)
+
+	Glyph 158: off = 0x0000AAB4, len = 144
+	  numberOfContours:	2
+	  xMin:			45
+	  yMin:			740
+	  xMax:			701
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	67
+	00000: PUSHB[4]             47    25     1    18 
+	00005: PUSHW[6]            636     6     6   287    12   636 
+	00018: NPUSHB      (26):     0     6    20     0     1    21    41     3   105   239 
+	                            25     1   112    25   128    25     2    25    15    41 
+	                             9   105    24   155   104    24 
+	00046: CALL       
+	00047: SRP0       
+	00048: MIRP[srp0,nmd,rd,2] 
+	00049: MIRP[nrp0,md,rd,1] 
+	00050: SRP0       
+	00051: DELTAP1    
+	00052: DELTAP1    
+	00053: MIRP[srp0,nmd,rd,2] 
+	00054: MIRP[nrp0,md,rd,1] 
+	00055: SVTCA[y-axis] 
+	00056: MIAP[rd+ci] 
+	00057: MIAP[rd+ci] 
+	00058: SRP0       
+	00059: MIRP[nrp0,md,rd,1] 
+	00060: MIRP[nrp0,md,rd,1] 
+	00061: SRP0       
+	00062: MIRP[nrp0,md,rd,1] 
+	00063: IUP[y]     
+	00064: IUP[x]     
+	00065: SVTCA[x-axis] 
+	00066: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   373,  1491)  ->  Abs (   373,  1491)
+	  1: Rel (   145,     0)  ->  Abs (   518,  1491)
+	  2: Rel (   183,  -200)  ->  Abs (   701,  1291)
+	  3: Rel (     0,  -176)  ->  Abs (   701,  1115)
+	  4: Rel (     0,  -175)  ->  Abs (   701,   940)
+	  5: Rel (  -184,  -200)  ->  Abs (   517,   740)
+	  6: Rel (  -143,     0)  ->  Abs (   374,   740)
+	  7: Rel (  -145,     0)  ->  Abs (   229,   740)
+	  8: Rel (  -184,   196)  ->  Abs (    45,   936)
+	  9: Rel (     0,   175)  ->  Abs (    45,  1111)
+	 10: Rel (     0,   180)  ->  Abs (    45,  1291)
+	 11: Rel (   183,   200)  ->  Abs (   228,  1491)
+	 12: Rel (   145,  -133)  ->  Abs (   373,  1358)
+	 13: Rel (   -81,     0)  ->  Abs (   292,  1358)
+	 14: Rel (   -99,  -114)  ->  Abs (   193,  1244)
+	 15: Rel (     0,  -129)  ->  Abs (   193,  1115)
+	 16: Rel (     0,  -126)  ->  Abs (   193,   989)
+	 17: Rel (   101,  -117)  ->  Abs (   294,   872)
+	 18: Rel (    79,     0)  ->  Abs (   373,   872)
+	 19: Rel (    80,     0)  ->  Abs (   453,   872)
+	 20: Rel (   100,   117)  ->  Abs (   553,   989)
+	 21: Rel (     0,   131)  ->  Abs (   553,  1120)
+	 22: Rel (     0,   122)  ->  Abs (   553,  1242)
+	 23: Rel (  -101,   116)  ->  Abs (   452,  1358)
+
+	Glyph 159: off = 0x0000AB44, len = 482
+	  numberOfContours:	1
+	  xMin:			127
+	  yMin:			0
+	  xMax:			1475
+	  yMax:			1503
+
+	EndPoints
+	---------
+	  0:  42
+
+	  Length of Instructions:	345
+	00000: NPUSHB      (37):    57    15    57    26    69     3    74    15    74    26 
+	                            70    37    89     1    86    17   105     1   102    17 
+	                           124     1   122    26   116    37   138    25   132    38 
+	                            15    59     2     1    46     8    32 
+	00039: PUSHW[1]            584 
+	00042: NPUSHB      (41):     9     3    43    22    59    22     2   249    22     1 
+	                            22    58    19    58    18    43    39    59    39     2 
+	                           137    39   249    39     2    39    58    42    58     0 
+	                             0    18    30    20    21    41    40    40    21     8 
+	                            18 
+	00085: PUSHW[1]            570 
+	00088: PUSHB[3]             21    22     0 
+	00092: PUSHW[4]            570    39    40   -10 
+	00101: NPUSHB      (17):    11    11     2    85    40    22    10    11    11     2 
+	                            85    47    22    79    22     2    22 
+	00120: PUSHW[1]            632 
+	00123: NPUSHB      (13):    19    28    38    13    74    20    19    40    15    15 
+	                             2    85    19 
+	00138: PUSHW[1]             -6 
+	00141: PUSHB[5]             13    13     2    85    19 
+	00147: PUSHW[1]            -16 
+	00150: PUSHB[5]             12    12     2    85    19 
+	00156: PUSHW[1]            -32 
+	00159: NPUSHB      (16):    11    11     2    85    16    19     1    19   106    44 
+	                            32    40    64    40     2    40 
+	00177: PUSHW[1]            632 
+	00180: PUSHB[6]             41    36    38     5    74    41 
+	00187: PUSHW[1]            -32 
+	00190: PUSHB[5]             16    16     2    85    41 
+	00196: PUSHW[1]            -22 
+	00199: PUSHB[5]             15    15     2    85    41 
+	00205: PUSHW[1]            -18 
+	00208: PUSHB[5]             13    13     2    85    41 
+	00214: PUSHW[1]            -10 
+	00217: NPUSHB      (18):    12    12     2    85    96    41     1     0    41    32 
+	                            41     2    41   172    43   157   167    24 
+	00237: CALL       
+	00238: SRP0       
+	00239: MIRP[srp0,nmd,rd,2] 
+	00240: DELTAP1    
+	00241: DELTAP2    
+	00242: CALL       
+	00243: CALL       
+	00244: CALL       
+	00245: CALL       
+	00246: MIRP[srp0,nmd,rd,0] 
+	00247: MIRP[nrp0,md,rd,1] 
+	00248: SRP0       
+	00249: MIRP[nrp0,md,rd,1] 
+	00250: DELTAP1    
+	00251: SRP0       
+	00252: MIRP[srp0,nmd,rd,2] 
+	00253: DELTAP1    
+	00254: CALL       
+	00255: CALL       
+	00256: CALL       
+	00257: CALL       
+	00258: ALIGNRP    
+	00259: MIRP[srp0,nmd,rd,2] 
+	00260: MIRP[nrp0,md,rd,1] 
+	00261: SRP0       
+	00262: MIRP[nrp0,nmd,rd,0] 
+	00263: DELTAP1    
+	00264: CALL       
+	00265: SRP0       
+	00266: CALL       
+	00267: ALIGNRP    
+	00268: MIRP[nrp0,md,rd,1] 
+	00269: SRP0       
+	00270: ALIGNRP    
+	00271: MIRP[nrp0,md,rd,1] 
+	00272: SVTCA[y-axis] 
+	00273: MIAP[rd+ci] 
+	00274: ALIGNRP    
+	00275: SRP0       
+	00276: ALIGNRP    
+	00277: SRP0       
+	00278: ALIGNRP    
+	00279: MIRP[srp0,md,rd,1] 
+	00280: ALIGNRP    
+	00281: SRP0       
+	00282: MIRP[nrp0,nmd,rd,0] 
+	00283: MIRP[nrp0,nmd,rd,1] 
+	00284: DELTAP1    
+	00285: DELTAP2    
+	00286: SRP0       
+	00287: MIRP[nrp0,nmd,rd,0] 
+	00288: MIRP[nrp0,nmd,rd,1] 
+	00289: DELTAP1    
+	00290: DELTAP2    
+	00291: MIAP[rd+ci] 
+	00292: MIRP[nrp0,md,rd,1] 
+	00293: IUP[y]     
+	00294: IUP[x]     
+	00295: RS         
+	00296: JROF       
+	00297: NPUSHB      (32):    29    35     6    12    34    37     7    38    11    37 
+	                            30    38    33     8    36   150     0    31    10    28 
+	                           150     1    35     6    32   150     1    29    12    32 
+	                           150     1 
+	00331: CALL       
+	00332: CALL       
+	00333: SVTCA[x-axis] 
+	00334: CALL       
+	00335: CALL       
+	00336: CALL       
+	00337: CALL       
+	00338: CALL       
+	00339: CALL       
+	00340: FLIPRGON   
+	00341: FLIPRGON   
+	00342: SVTCA[x-axis] 
+	00343: DELTAP2    
+	00344: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:                              X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:        XDual                 X-Short Off
+	  8:  YDual               Y-Short         Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual                               Off
+	 11:        XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual                         On
+	 14:        XDual         Y-Short         Off
+	 15:                              X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:  YDual               Y-Short         On
+	 20:        XDual         Y-Short         On
+	 21:  YDual                               On
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:                              X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:                      Y-Short X-Short On
+	 35:                      Y-Short X-Short Off
+	 36:        XDual                         On
+	 37:        XDual         Y-Short         Off
+	 38:        XDual                 X-Short Off
+	 39:        XDual         Y-Short X-Short On
+	 40:        XDual         Y-Short         On
+	 41:  YDual                               On
+	 42:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   496,   160)  ->  Abs (   496,   160)
+	  1: Rel (  -108,    67)  ->  Abs (   388,   227)
+	  2: Rel (   -57,    63)  ->  Abs (   331,   290)
+	  3: Rel (   -87,    96)  ->  Abs (   244,   386)
+	  4: Rel (   -94,   259)  ->  Abs (   150,   645)
+	  5: Rel (     0,   157)  ->  Abs (   150,   802)
+	  6: Rel (     0,   196)  ->  Abs (   150,   998)
+	  7: Rel (   159,   329)  ->  Abs (   309,  1327)
+	  8: Rel (   303,   176)  ->  Abs (   612,  1503)
+	  9: Rel (   196,     0)  ->  Abs (   808,  1503)
+	 10: Rel (   336,     0)  ->  Abs (  1144,  1503)
+	 11: Rel (   180,  -254)  ->  Abs (  1324,  1249)
+	 12: Rel (   131,  -186)  ->  Abs (  1455,  1063)
+	 13: Rel (     0,  -262)  ->  Abs (  1455,   801)
+	 14: Rel (     0,  -168)  ->  Abs (  1455,   633)
+	 15: Rel (  -108,  -259)  ->  Abs (  1347,   374)
+	 16: Rel (   -87,   -93)  ->  Abs (  1260,   281)
+	 17: Rel (   -53,   -58)  ->  Abs (  1207,   223)
+	 18: Rel (   -96,   -63)  ->  Abs (  1111,   160)
+	 19: Rel (   364,     6)  ->  Abs (  1475,   166)
+	 20: Rel (     0,  -166)  ->  Abs (  1475,     0)
+	 21: Rel (  -575,     0)  ->  Abs (   900,     0)
+	 22: Rel (     0,   177)  ->  Abs (   900,   177)
+	 23: Rel (    80,    40)  ->  Abs (   980,   217)
+	 24: Rel (    44,    38)  ->  Abs (  1024,   255)
+	 25: Rel (    72,    61)  ->  Abs (  1096,   316)
+	 26: Rel (   100,   168)  ->  Abs (  1196,   484)
+	 27: Rel (    51,   190)  ->  Abs (  1247,   674)
+	 28: Rel (     0,   103)  ->  Abs (  1247,   777)
+	 29: Rel (     0,   138)  ->  Abs (  1247,   915)
+	 30: Rel (   -99,   279)  ->  Abs (  1148,  1194)
+	 31: Rel (  -201,   146)  ->  Abs (   947,  1340)
+	 32: Rel (  -143,     0)  ->  Abs (   804,  1340)
+	 33: Rel (  -191,     0)  ->  Abs (   613,  1340)
+	 34: Rel (  -105,  -120)  ->  Abs (   508,  1220)
+	 35: Rel (  -146,  -169)  ->  Abs (   362,  1051)
+	 36: Rel (     0,  -271)  ->  Abs (   362,   780)
+	 37: Rel (     0,  -217)  ->  Abs (   362,   563)
+	 38: Rel (   182,  -311)  ->  Abs (   544,   252)
+	 39: Rel (   160,   -72)  ->  Abs (   704,   180)
+	 40: Rel (     0,  -180)  ->  Abs (   704,     0)
+	 41: Rel (  -577,     0)  ->  Abs (   127,     0)
+	 42: Rel (     0,   168)  ->  Abs (   127,   168)
+
+	Glyph 160: off = 0x0000AD26, len = 602
+	  numberOfContours:	3
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1738
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  53
+	  1:  60
+	  2:  74
+
+	  Length of Instructions:	379
+	00000: NPUSHB      (53):    61    57    61    72    76    41    79    57    90    41 
+	                            94    57   122     5     7    40    64    48    34    52 
+	                            37    76     5    67    14    66    37    68    72    91 
+	                             4    86    14    86    15    83    37   105     7   103 
+	                            14   101    15   100    35   119    16   116    38   135 
+	                            16    18    36 
+	00055: PUSHW[1]             -1 
+	00058: PUSHB[7]             12    16     2    85    18    28    61 
+	00066: PUSHW[1]            -26 
+	00069: PUSHB[5]             16    16     2    85    61 
+	00075: PUSHW[1]            -64 
+	00078: NPUSHB      (46):    12    13     2    85     0    61    16    61     2    61 
+	                            61    23    70    54    28   144    46   160    46     2 
+	                            46    46    50    58    28   149    23    28    32    58 
+	                            28    39    39    32     7    70    28     9    50    28 
+	                             0     0    16     0     2     0 
+	00126: PUSHW[1]            637 
+	00129: NPUSHB      (20):     3     3     9    11    54    37    18    51    61    37 
+	                            46    55    64    46    10    16    16     2    85    46 
+	00151: PUSHW[1]            -10 
+	00154: NPUSHB      (27):    13    13     2    85    46    21    12    12     6    85 
+	                            46    16    11    11     6    85   223    46     1    31 
+	                            46    63    46   143    46     3    46 
+	00183: PUSHW[1]            452 
+	00186: PUSHB[6]             43    53    36     0    51    43 
+	00193: PUSHW[1]            -30 
+	00196: PUSHB[5]             16    16     2    85    43 
+	00202: PUSHW[1]            -12 
+	00205: PUSHB[5]             13    13     6    85    43 
+	00211: PUSHW[1]            -34 
+	00214: PUSHB[5]             12    12     6    85    43 
+	00220: PUSHW[1]             -8 
+	00223: NPUSHB      (14):    11    11     6    85    16    43    48    43    64    43 
+	                           128    43     4    43 
+	00239: PUSHW[1]            484 
+	00242: NPUSHB      (59):    12    27    37    28    34    67    36    12    24    13 
+	                            13     2    85    12    34    12    12     2    85    12 
+	                            20    11    11     2    85    12    20    13    13     6 
+	                            85    12    28    12    12     6    85    12    16    11 
+	                            11     6    85   223    12     1    31    12    63    12 
+	                            79    12     3    12    25    75    52    55    24 
+	00303: CALL       
+	00304: FLIPOFF    
+	00305: SRP0       
+	00306: MIRP[srp0,nmd,rd,0] 
+	00307: DELTAP1    
+	00308: DELTAP2    
+	00309: CALL       
+	00310: CALL       
+	00311: CALL       
+	00312: CALL       
+	00313: CALL       
+	00314: CALL       
+	00315: FLIPON     
+	00316: MIRP[nrp0,md,rd,1] 
+	00317: MIRP[srp0,nmd,rd,0] 
+	00318: MIRP[nrp0,md,rd,1] 
+	00319: SRP0       
+	00320: MIRP[srp0,md,rd,1] 
+	00321: DELTAP1    
+	00322: CALL       
+	00323: CALL       
+	00324: CALL       
+	00325: CALL       
+	00326: FLIPON     
+	00327: MIRP[srp0,nmd,rd,0] 
+	00328: MIRP[nrp0,md,rd,1] 
+	00329: SRP0       
+	00330: MIRP[nrp0,nmd,rd,0] 
+	00331: DELTAP1    
+	00332: DELTAP2    
+	00333: CALL       
+	00334: CALL       
+	00335: CALL       
+	00336: CALL       
+	00337: MIRP[nrp0,md,rd,1] 
+	00338: SRP0       
+	00339: MIRP[srp0,md,rd,1] 
+	00340: MIRP[nrp0,nmd,rd,0] 
+	00341: MIRP[nrp0,md,rd,1] 
+	00342: SVTCA[y-axis] 
+	00343: MIAP[rd+ci] 
+	00344: ALIGNRP    
+	00345: SRP0       
+	00346: MIRP[nrp0,md,rd,1] 
+	00347: DELTAP1    
+	00348: MIRP[nrp0,md,rd,1] 
+	00349: SRP0       
+	00350: MIRP[nrp0,md,rd,1] 
+	00351: MIAP[rd+ci] 
+	00352: ALIGNRP    
+	00353: SRP0       
+	00354: MIRP[nrp0,md,rd,1] 
+	00355: SRP0       
+	00356: MIRP[nrp0,md,rd,1] 
+	00357: MIRP[nrp0,md,rd,1] 
+	00358: SRP1       
+	00359: SRP2       
+	00360: IP         
+	00361: MDAP[rd]   
+	00362: DELTAP1    
+	00363: MIRP[nrp0,md,rd,1] 
+	00364: SRP1       
+	00365: SRP2       
+	00366: IP         
+	00367: MDAP[rd]   
+	00368: DELTAP1    
+	00369: CALL       
+	00370: CALL       
+	00371: MIRP[nrp0,md,rd,1] 
+	00372: CALL       
+	00373: IUP[y]     
+	00374: IUP[x]     
+	00375: SVTCA[y-axis] 
+	00376: DELTAP1    
+	00377: SVTCA[x-axis] 
+	00378: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short On
+	 29:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:        XDual         Y-Short X-Short On
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual                 X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:                      Y-Short X-Short On
+	 46:  YDual                               On
+	 47:        XDual Rep-  2 Y-Short X-Short Off
+	 50:  YDual XDual                 X-Short On
+	 51:  YDual XDual                 X-Short Off
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:                                      On
+	 55:  YDual                               On
+	 56:  YDual               Y-Short X-Short Off
+	 57:  YDual               Y-Short X-Short Off
+	 58:  YDual                       X-Short On
+	 59:  YDual                       X-Short Off
+	 60:                      Y-Short X-Short Off
+	 61:                      Y-Short X-Short On
+	 62:                      Y-Short X-Short Off
+	 63:                      Y-Short X-Short On
+	 64:                      Y-Short X-Short Off
+	 65:                      Y-Short X-Short On
+	 66:                      Y-Short X-Short Off
+	 67:        XDual         Y-Short         On
+	 68:        XDual         Y-Short         Off
+	 69:        XDual         Y-Short X-Short Off
+	 70:  YDual XDual                 X-Short On
+	 71:  YDual XDual                 X-Short Off
+	 72:  YDual XDual         Y-Short X-Short Off
+	 73:  YDual XDual         Y-Short X-Short On
+	 74:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1734,   325)  ->  Abs (  1734,   325)
+	  1: Rel (   -50,  -167)  ->  Abs (  1684,   158)
+	  2: Rel (  -240,  -182)  ->  Abs (  1444,   -24)
+	  3: Rel (  -178,     0)  ->  Abs (  1266,   -24)
+	  4: Rel (  -127,     0)  ->  Abs (  1139,   -24)
+	  5: Rel (  -191,    96)  ->  Abs (   948,    72)
+	  6: Rel (   -77,   102)  ->  Abs (   871,   174)
+	  7: Rel (  -104,  -102)  ->  Abs (   767,    72)
+	  8: Rel (  -213,   -96)  ->  Abs (   554,   -24)
+	  9: Rel (  -123,     0)  ->  Abs (   431,   -24)
+	 10: Rel (  -172,     0)  ->  Abs (   259,   -24)
+	 11: Rel (  -191,   177)  ->  Abs (    68,   153)
+	 12: Rel (     0,   127)  ->  Abs (    68,   280)
+	 13: Rel (     0,    86)  ->  Abs (    68,   366)
+	 14: Rel (    99,   151)  ->  Abs (   167,   517)
+	 15: Rel (   177,    78)  ->  Abs (   344,   595)
+	 16: Rel (   194,    25)  ->  Abs (   538,   620)
+	 17: Rel (   150,    20)  ->  Abs (   688,   640)
+	 18: Rel (   102,    29)  ->  Abs (   790,   669)
+	 19: Rel (     1,    25)  ->  Abs (   791,   694)
+	 20: Rel (     0,    16)  ->  Abs (   791,   710)
+	 21: Rel (     0,   126)  ->  Abs (   791,   836)
+	 22: Rel (  -105,   101)  ->  Abs (   686,   937)
+	 23: Rel (  -131,     0)  ->  Abs (   555,   937)
+	 24: Rel (   -87,     0)  ->  Abs (   468,   937)
+	 25: Rel (  -120,   -42)  ->  Abs (   348,   895)
+	 26: Rel (   -57,   -77)  ->  Abs (   291,   818)
+	 27: Rel (   -19,   -85)  ->  Abs (   272,   733)
+	 28: Rel (  -175,    21)  ->  Abs (    97,   754)
+	 29: Rel (    28,   117)  ->  Abs (   125,   871)
+	 30: Rel (   105,   137)  ->  Abs (   230,  1008)
+	 31: Rel (   196,    78)  ->  Abs (   426,  1086)
+	 32: Rel (   131,     0)  ->  Abs (   557,  1086)
+	 33: Rel (   167,     0)  ->  Abs (   724,  1086)
+	 34: Rel (   102,   -50)  ->  Abs (   826,  1036)
+	 35: Rel (    59,   -29)  ->  Abs (   885,  1007)
+	 36: Rel (    40,   -64)  ->  Abs (   925,   943)
+	 37: Rel (    64,    70)  ->  Abs (   989,  1013)
+	 38: Rel (   162,    73)  ->  Abs (  1151,  1086)
+	 39: Rel (   115,     0)  ->  Abs (  1266,  1086)
+	 40: Rel (   162,     0)  ->  Abs (  1428,  1086)
+	 41: Rel (   212,  -157)  ->  Abs (  1640,   929)
+	 42: Rel (    98,  -258)  ->  Abs (  1738,   671)
+	 43: Rel (     0,  -125)  ->  Abs (  1738,   546)
+	 44: Rel (     0,   -19)  ->  Abs (  1738,   527)
+	 45: Rel (    -2,   -42)  ->  Abs (  1736,   485)
+	 46: Rel (  -767,     0)  ->  Abs (   969,   485)
+	 47: Rel (     2,  -144)  ->  Abs (   971,   341)
+	 48: Rel (    67,  -130)  ->  Abs (  1038,   211)
+	 49: Rel (   147,   -87)  ->  Abs (  1185,   124)
+	 50: Rel (    88,     0)  ->  Abs (  1273,   124)
+	 51: Rel (   103,     0)  ->  Abs (  1376,   124)
+	 52: Rel (   143,   118)  ->  Abs (  1519,   242)
+	 53: Rel (    27,   107)  ->  Abs (  1546,   349)
+	 54: Rel (  -577,   284)  ->  Abs (   969,   633)
+	 55: Rel (   584,     0)  ->  Abs (  1553,   633)
+	 56: Rel (   -14,   158)  ->  Abs (  1539,   791)
+	 57: Rel (  -152,   146)  ->  Abs (  1387,   937)
+	 58: Rel (  -122,     0)  ->  Abs (  1265,   937)
+	 59: Rel (  -126,     0)  ->  Abs (  1139,   937)
+	 60: Rel (  -161,  -160)  ->  Abs (   978,   777)
+	 61: Rel (  -185,  -244)  ->  Abs (   793,   533)
+	 62: Rel (   -79,   -34)  ->  Abs (   714,   499)
+	 63: Rel (  -243,   -39)  ->  Abs (   471,   460)
+	 64: Rel (  -109,   -17)  ->  Abs (   362,   443)
+	 65: Rel (   -44,   -34)  ->  Abs (   318,   409)
+	 66: Rel (   -59,   -47)  ->  Abs (   259,   362)
+	 67: Rel (     0,   -76)  ->  Abs (   259,   286)
+	 68: Rel (     0,   -71)  ->  Abs (   259,   215)
+	 69: Rel (   106,   -97)  ->  Abs (   365,   118)
+	 70: Rel (   101,     0)  ->  Abs (   466,   118)
+	 71: Rel (   115,     0)  ->  Abs (   581,   118)
+	 72: Rel (   171,   114)  ->  Abs (   752,   232)
+	 73: Rel (    26,    85)  ->  Abs (   778,   317)
+	 74: Rel (    15,    52)  ->  Abs (   793,   369)
+
+	Glyph 161: off = 0x0000AF80, len = 850
+	  numberOfContours:	3
+	  xMin:			129
+	  yMin:			-79
+	  xMax:			1124
+	  yMax:			1127
+
+	EndPoints
+	---------
+	  0:  25
+	  1:  33
+	  2:  43
+
+	  Length of Instructions:	706
+	00000: NPUSHB     (255):    24     3    21     5    34     0    44    13    37    25 
+	                            70     0    84    25   100    25     8    21    25     1 
+	                            27    16    16    16     2    85    40    33     1    16 
+	                             4    20     5    28    16    28    17    28    18    21 
+	                            34    70     3    73    13    76    16    76    17    69 
+	                            29    75    38    90    26   102    21   100    30   102 
+	                            34   138    26   128    34   207    26    19    18    26 
+	                            43    44     3    43    26    47    34    59     0     5 
+	                            12     0    11     2     4    15    26     2     4   186 
+	                            17   236     4   251     1   246    15     4    61    17 
+	                            56    38    84    29   186     2     4   223    45   233 
+	                             0   234     2   235     3     4    88     9    92    17 
+	                            94    38   138    34     4   133     0   138    13   138 
+	                            16   138    27     4   233     1   234    26   250     0 
+	                           250     2     4   202    33   218     0   218     3   235 
+	                            34     4   202     0   202     2   249     4     3   159 
+	                            17   154    33   170     3   171    33     4   124    27 
+	                           121    33   121    34   171    35     4   106    33   105 
+	                            35   122    13   122    16     4   108    17   102    26 
+	                           109    38   117     0     4    23     0    59    34    69 
+	                             2    74    15     4    38    25    45    26    44    34 
+	                            57    26     4   165     0   196    26   217     2   230 
+	                            15     4    77    12    67    25    73    30    70    39 
+	                             4   122    34   118    35   148    16   149    34     4 
+	                           100     9   109    21   109    30   104    34   139    34 
+	                             5    18     3    34    35 
+	00257: NPUSHB      (55):    13    14    14     2     0    26    33    16    15     1 
+	                             1    15    15   125    14     2    20    14    14     2 
+	                            33    35    26    34     4    40    31     2    45     3 
+	                             1     0     3    40     7    15    44    16    13    14 
+	                             3    31    20     0    28    23    13    37    11    15 
+	                            14    20     2     7     1 
+	00314: PUSHW[1]            603 
+	00317: PUSHB[5]             28    28    23     7    14 
+	00323: PUSHW[1]            603 
+	00326: PUSHB[7]             37    28    11    11    40    36     7 
+	00334: PUSHW[1]            -16 
+	00337: PUSHB[5]             16    16     2    85     7 
+	00343: PUSHW[1]            -20 
+	00346: PUSHB[5]             12    12     2    85     7 
+	00352: PUSHW[1]             -8 
+	00355: PUSHB[5]             11    11     6    85     7 
+	00361: PUSHW[1]             -6 
+	00364: PUSHB[5]             12    12     6    85     7 
+	00370: PUSHW[1]             -3 
+	00373: PUSHB[5]             13    13     6    85     7 
+	00379: PUSHW[1]             -4 
+	00382: NPUSHB      (22):    15    15     6    85     7    16    16    16     6    85 
+	                           207     7   223     7   239     7   240     7     4     7 
+	                            26    45 
+	00406: PUSHW[1]            -64 
+	00409: PUSHB[4]             18    21    52    45 
+	00414: PUSHW[1]            -64 
+	00417: NPUSHB      (53):    13    16    52   144    45   160    45   240    45     3 
+	                             0    45    32    45   128    45   224    45     4    45 
+	                            31    36    20     0    16    16     2    85    20    10 
+	                            11    11     2    85    20     5    11    11     6    85 
+	                            20    14    12    12     6    85    20     4    13    13 
+	                             6    85    20 
+	00472: PUSHW[1]            -12 
+	00475: NPUSHB      (17):    15    15     6    85    31    20   223    20   239    20 
+	                             3    31    20     1    20    25    44 
+	00494: PUSHW[3]            307   657    24 
+	00501: CALL       
+	00502: FLIPOFF    
+	00503: SRP0       
+	00504: MIRP[srp0,nmd,rd,0] 
+	00505: DELTAP1    
+	00506: DELTAP2    
+	00507: CALL       
+	00508: CALL       
+	00509: CALL       
+	00510: CALL       
+	00511: CALL       
+	00512: CALL       
+	00513: FLIPON     
+	00514: MIRP[nrp0,md,rd,1] 
+	00515: FLIPOFF    
+	00516: SRP0       
+	00517: DELTAP1    
+	00518: DELTAP2    
+	00519: CALL       
+	00520: CALL       
+	00521: MIRP[srp0,nmd,rd,2] 
+	00522: DELTAP1    
+	00523: CALL       
+	00524: CALL       
+	00525: CALL       
+	00526: CALL       
+	00527: CALL       
+	00528: CALL       
+	00529: CALL       
+	00530: FLIPON     
+	00531: MIRP[nrp0,md,rd,1] 
+	00532: SVTCA[y-axis] 
+	00533: MIAP[rd+ci] 
+	00534: MIRP[nrp0,md,rd,1] 
+	00535: MIRP[nrp0,nmd,rd,0] 
+	00536: MIAP[rd+ci] 
+	00537: MIRP[nrp0,md,rd,1] 
+	00538: MIRP[nrp0,nmd,rd,0] 
+	00539: SRP1       
+	00540: IP         
+	00541: SRP1       
+	00542: SRP2       
+	00543: IP         
+	00544: SRP1       
+	00545: SRP2       
+	00546: IP         
+	00547: SRP1       
+	00548: SRP2       
+	00549: IP         
+	00550: SVTCA[x-axis] 
+	00551: SRP1       
+	00552: SRP2       
+	00553: SLOOP      
+	00554: IP         
+	00555: SRP2       
+	00556: IP         
+	00557: SRP1       
+	00558: SRP2       
+	00559: SLOOP      
+	00560: IP         
+	00561: SRP2       
+	00562: IP         
+	00563: SRP1       
+	00564: SRP2       
+	00565: SLOOP      
+	00566: IP         
+	00567: SDPVTL[1]  
+	00568: SFVTPV     
+	00569: MDAP[nrd]  
+	00570: CALL       
+	00571: RDTG       
+	00572: SRP0       
+	00573: MDRP[nrp0,nmd,rd,0] 
+	00574: SPVTL[p1,p2] 
+	00575: SFVTPV     
+	00576: ALIGNRP    
+	00577: ALIGNRP    
+	00578: ALIGNRP    
+	00579: ALIGNRP    
+	00580: SPVTL[p1,p2] 
+	00581: SRP0       
+	00582: SFVTPV     
+	00583: ALIGNRP    
+	00584: ALIGNRP    
+	00585: ALIGNRP    
+	00586: ALIGNRP    
+	00587: IUP[y]     
+	00588: IUP[x]     
+	00589: SVTCA[x-axis] 
+	00590: RS         
+	00591: NOT        
+	00592: IF         
+	00593: PUSHW[2]              0   -34 
+	00598: PUSHB[3]             12    57    33 
+	00602: PUSHW[1]            -34 
+	00605: PUSHB[7]             28    57    34    34    18    57    35 
+	00613: PUSHW[1]            -34 
+	00616: NPUSHB      (10):    25    57    26    34    37    57    26    64    30    57 
+	00628: CALL       
+	00629: CALL       
+	00630: CALL       
+	00631: SVTCA[y-axis] 
+	00632: CALL       
+	00633: CALL       
+	00634: CALL       
+	00635: EIF        
+	00636: DELTAP1    
+	00637: DELTAP1    
+	00638: DELTAP1    
+	00639: DELTAP1    
+	00640: DELTAP2    
+	00641: DELTAP2    
+	00642: SVTCA[x-axis] 
+	00643: DELTAP1    
+	00644: DELTAP1    
+	00645: DELTAP1    
+	00646: DELTAP1    
+	00647: DELTAP1    
+	00648: DELTAP1    
+	00649: DELTAP1    
+	00650: DELTAP1    
+	00651: DELTAP1    
+	00652: DELTAP1    
+	00653: DELTAP1    
+	00654: DELTAP1    
+	00655: DELTAP2    
+	00656: DELTAP2    
+	00657: RS         
+	00658: NOT        
+	00659: IF         
+	00660: NPUSHB      (30):    41    25    34    26    35    34     3   233    15     1 
+	                            35     3    36    26    32    34     3   230     0   229 
+	                             2   228     3   227     4   228    34   239    45     6 
+	00692: SVTCA[x-axis] 
+	00693: DELTAP1    
+	00694: DELTAP2    
+	00695: SVTCA[y-axis] 
+	00696: DELTAP1    
+	00697: DELTAP2    
+	00698: EIF        
+	00699: SVTCA[x-axis] 
+	00700: DELTAP1    
+	00701: DELTAP2    
+	00702: CALL       
+	00703: SVTCA[y-axis] 
+	00704: DELTAP2    
+	00705: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short On
+	  3:                      Y-Short X-Short On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual                         Off
+	  9:                      Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:                      Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual               Y-Short X-Short On
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:        XDual                         Off
+	 22:                                      Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:                      Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:                      Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:        XDual         Y-Short X-Short On
+	 34:                                      On
+	 35:                                      On
+	 36:        XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual               Y-Short X-Short On
+	 43:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   919,   999)  ->  Abs (   919,   999)
+	  1: Rel (    99,   128)  ->  Abs (  1018,  1127)
+	  2: Rel (    96,   -70)  ->  Abs (  1114,  1057)
+	  3: Rel (  -107,  -138)  ->  Abs (  1007,   919)
+	  4: Rel (    63,   -86)  ->  Abs (  1070,   833)
+	  5: Rel (    23,   -70)  ->  Abs (  1093,   763)
+	  6: Rel (    31,  -100)  ->  Abs (  1124,   663)
+	  7: Rel (     0,  -133)  ->  Abs (  1124,   530)
+	  8: Rel (     0,  -300)  ->  Abs (  1124,   230)
+	  9: Rel (  -169,  -141)  ->  Abs (   955,    89)
+	 10: Rel (  -137,  -113)  ->  Abs (   818,   -24)
+	 11: Rel (  -193,     0)  ->  Abs (   625,   -24)
+	 12: Rel (  -159,     0)  ->  Abs (   466,   -24)
+	 13: Rel (  -122,    80)  ->  Abs (   344,    56)
+	 14: Rel (  -105,  -135)  ->  Abs (   239,   -79)
+	 15: Rel (   -94,    71)  ->  Abs (   145,    -8)
+	 16: Rel (   108,   141)  ->  Abs (   253,   133)
+	 17: Rel (   -59,    68)  ->  Abs (   194,   201)
+	 18: Rel (   -25,    68)  ->  Abs (   169,   269)
+	 19: Rel (   -40,   109)  ->  Abs (   129,   378)
+	 20: Rel (     0,   138)  ->  Abs (   129,   516)
+	 21: Rel (     0,   301)  ->  Abs (   129,   817)
+	 22: Rel (   294,   269)  ->  Abs (   423,  1086)
+	 23: Rel (   198,     0)  ->  Abs (   621,  1086)
+	 24: Rel (    82,     0)  ->  Abs (   703,  1086)
+	 25: Rel (   138,   -42)  ->  Abs (   841,  1044)
+	 26: Rel (   -23,  -177)  ->  Abs (   818,   867)
+	 27: Rel (   -91,    70)  ->  Abs (   727,   937)
+	 28: Rel (  -100,     0)  ->  Abs (   627,   937)
+	 29: Rel (  -133,     0)  ->  Abs (   494,   937)
+	 30: Rel (  -180,  -204)  ->  Abs (   314,   733)
+	 31: Rel (     0,  -202)  ->  Abs (   314,   531)
+	 32: Rel (     0,  -150)  ->  Abs (   314,   381)
+	 33: Rel (    52,  -101)  ->  Abs (   366,   280)
+	 34: Rel (   527,   490)  ->  Abs (   893,   770)
+	 35: Rel (  -449,  -583)  ->  Abs (   444,   187)
+	 36: Rel (    78,   -63)  ->  Abs (   522,   124)
+	 37: Rel (    98,     0)  ->  Abs (   620,   124)
+	 38: Rel (   139,     0)  ->  Abs (   759,   124)
+	 39: Rel (   181,   204)  ->  Abs (   940,   328)
+	 40: Rel (     0,   204)  ->  Abs (   940,   532)
+	 41: Rel (     0,    76)  ->  Abs (   940,   608)
+	 42: Rel (   -12,    57)  ->  Abs (   928,   665)
+	 43: Rel (    -8,    42)  ->  Abs (   920,   707)
+
+	Glyph 162: off = 0x0000B2D2, len = 246
+	  numberOfContours:	2
+	  xMin:			158
+	  yMin:			-429
+	  xMax:			1103
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  34
+
+	  Length of Instructions:	136
+	00000: NPUSHB      (55):   140    31     1   124    31   140    30     2   107    31 
+	                           124    30     2    96    16   107    30     2    93    30 
+	                            93    31     2    75    30    82    16     2    76    18 
+	                            75    29     2    58    18    68    16     2    31    29 
+	                            11    12     4     4    20    39    21    21     4    17 
+	                            41    24    15    34     4 
+	00057: PUSHW[1]            687 
+	00060: NPUSHB      (33):     2     2     1    60     3     6    20    94    21   108 
+	                            32    36     1    36     0    60     2    34     4    94 
+	                            34   136    14    94    32    27     1    27   118    35 
+	                           158   152    24 
+	00095: CALL       
+	00096: SRP0       
+	00097: MIRP[srp0,nmd,rd,0] 
+	00098: DELTAP1    
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: MIRP[srp0,nmd,rd,0] 
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: SRP0       
+	00103: ALIGNRP    
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: SRP0       
+	00106: DELTAP1    
+	00107: MIRP[srp0,nmd,rd,2] 
+	00108: MIRP[nrp0,md,rd,1] 
+	00109: SVTCA[y-axis] 
+	00110: MIAP[rd+ci] 
+	00111: MIRP[srp0,md,rd,1] 
+	00112: ALIGNRP    
+	00113: SRP0       
+	00114: MIRP[srp0,nmd,rd,2] 
+	00115: ALIGNRP    
+	00116: MIAP[rd+ci] 
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: SRP2       
+	00119: IP         
+	00120: MDAP[rd]   
+	00121: MIRP[nrp0,nmd,rd,0] 
+	00122: SRP1       
+	00123: SLOOP      
+	00124: IP         
+	00125: IUP[y]     
+	00126: IUP[x]     
+	00127: SVTCA[x-axis] 
+	00128: DELTAP1    
+	00129: DELTAP1    
+	00130: DELTAP1    
+	00131: DELTAP1    
+	00132: DELTAP1    
+	00133: DELTAP1    
+	00134: DELTAP1    
+	00135: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short         On
+	  4:        XDual                 X-Short On
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:              Rep-  2 Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   733,  1062)  ->  Abs (   733,  1062)
+	  1: Rel (     0,  -205)  ->  Abs (   733,   857)
+	  2: Rel (  -205,     0)  ->  Abs (   528,   857)
+	  3: Rel (     0,   205)  ->  Abs (   528,  1062)
+	  4: Rel (   193,  -361)  ->  Abs (   721,   701)
+	  5: Rel (     1,   -34)  ->  Abs (   722,   667)
+	  6: Rel (     0,   -17)  ->  Abs (   722,   650)
+	  7: Rel (     0,  -110)  ->  Abs (   722,   540)
+	  8: Rel (   -30,   -77)  ->  Abs (   692,   463)
+	  9: Rel (   -22,   -58)  ->  Abs (   670,   405)
+	 10: Rel (   -49,   -59)  ->  Abs (   621,   346)
+	 11: Rel (   -36,   -43)  ->  Abs (   585,   303)
+	 12: Rel (  -187,  -164)  ->  Abs (   398,   139)
+	 13: Rel (   -55,   -98)  ->  Abs (   343,    41)
+	 14: Rel (     0,   -58)  ->  Abs (   343,   -17)
+	 15: Rel (     0,  -106)  ->  Abs (   343,  -123)
+	 16: Rel (   164,  -158)  ->  Abs (   507,  -281)
+	 17: Rel (   119,     0)  ->  Abs (   626,  -281)
+	 18: Rel (   114,     0)  ->  Abs (   740,  -281)
+	 19: Rel (   155,   144)  ->  Abs (   895,  -137)
+	 20: Rel (    24,   152)  ->  Abs (   919,    15)
+	 21: Rel (   184,   -21)  ->  Abs (  1103,    -6)
+	 22: Rel (   -25,  -203)  ->  Abs (  1078,  -209)
+	 23: Rel (  -247,  -220)  ->  Abs (   831,  -429)
+	 24: Rel (  -202,     0)  ->  Abs (   629,  -429)
+	 25: Rel (  -216,     0)  ->  Abs (   413,  -429)
+	 26: Rel (  -255,   234)  ->  Abs (   158,  -195)
+	 27: Rel (     0,   166)  ->  Abs (   158,   -29)
+	 28: Rel (     0,    97)  ->  Abs (   158,    68)
+	 29: Rel (    89,   160)  ->  Abs (   247,   228)
+	 30: Rel (   131,   116)  ->  Abs (   378,   344)
+	 31: Rel (    89,    79)  ->  Abs (   467,   423)
+	 32: Rel (    54,    74)  ->  Abs (   521,   497)
+	 33: Rel (    25,    96)  ->  Abs (   546,   593)
+	 34: Rel (     2,   108)  ->  Abs (   548,   701)
+
+	Glyph 163: off = 0x0000B3C8, len = 166
+	  numberOfContours:	2
+	  xMin:			232
+	  yMin:			-404
+	  xMax:			455
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  9
+
+	  Length of Instructions:	118
+	00000: PUSHB[2]              6     2 
+	00003: RS         
+	00004: EQ         
+	00005: IF         
+	00006: PUSHB[2]              7     4 
+	00009: PUSHW[1]            687 
+	00012: NPUSHB      (11):     1    60     3     6     0    58     6    60     3    58 
+	                             7 
+	00025: SVTCA[x-axis] 
+	00026: MDAP[rd]   
+	00027: MIRP[nrp0,nmd,rd,0] 
+	00028: MIRP[srp0,md,rd,1] 
+	00029: MIRP[nrp0,nmd,rd,0] 
+	00030: SVTCA[y-axis] 
+	00031: MIAP[rd+ci] 
+	00032: MIRP[srp0,md,rd,1] 
+	00033: MIRP[nrp0,nmd,rd,2] 
+	00034: MDAP[rd]   
+	00035: IUP[y]     
+	00036: IUP[x]     
+	00037: ELSE       
+	00038: PUSHB[2]             28     4 
+	00041: PUSHW[1]            687 
+	00044: NPUSHB      (35):     1    60     3     7     3     6    11   203     0    58 
+	                             4    56     5     9    56     3    58     8    60     5 
+	                             5     6    60    32     7     1     7   203    10    11 
+	                           129    33   217   245    24 
+	00081: CALL       
+	00082: CALL       
+	00083: MIRP[srp0,nmd,rd,2] 
+	00084: DELTAP1    
+	00085: MIRP[srp0,md,rd,1] 
+	00086: ALIGNRP    
+	00087: SRP0       
+	00088: MIRP[srp0,md,rd,1] 
+	00089: MIRP[nrp0,nmd,rd,0] 
+	00090: MIRP[nrp0,nmd,rd,0] 
+	00091: SRP0       
+	00092: MIRP[nrp0,nmd,rd,0] 
+	00093: MIRP[nrp0,nmd,rd,0] 
+	00094: MIRP[nrp0,nmd,rd,2] 
+	00095: SVTCA[y-axis] 
+	00096: MIAP[rd+ci] 
+	00097: MDAP[rd]   
+	00098: SRP0       
+	00099: MIRP[srp0,md,rd,1] 
+	00100: MIRP[nrp0,nmd,rd,2] 
+	00101: IUP[y]     
+	00102: IUP[x]     
+	00103: MPPEM      
+	00104: GTEQ       
+	00105: IF         
+	00106: PUSHB[4]              4     5     9     8 
+	00111: SVTCA[x-axis] 
+	00112: SRP0       
+	00113: ALIGNRP    
+	00114: SRP0       
+	00115: ALIGNRP    
+	00116: EIF        
+	00117: EIF        
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short         On
+	  4:        XDual                 X-Short On
+	  5:        XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual                       X-Short On
+	  8:        XDual                         On
+	  9:        XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   447,  1062)  ->  Abs (   447,  1062)
+	  1: Rel (     0,  -205)  ->  Abs (   447,   857)
+	  2: Rel (  -207,     0)  ->  Abs (   240,   857)
+	  3: Rel (     0,   205)  ->  Abs (   240,  1062)
+	  4: Rel (   160,  -365)  ->  Abs (   400,   697)
+	  5: Rel (    55,  -776)  ->  Abs (   455,   -79)
+	  6: Rel (     0,  -325)  ->  Abs (   455,  -404)
+	  7: Rel (  -223,     0)  ->  Abs (   232,  -404)
+	  8: Rel (     0,   325)  ->  Abs (   232,   -79)
+	  9: Rel (    52,   776)  ->  Abs (   284,   697)
+
+	Glyph 164: off = 0x0000B46E, len = 80
+	  numberOfContours:	1
+	  xMin:			114
+	  yMin:			424
+	  xMax:			1082
+	  yMax:			1030
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	47
+	00000: PUSHB[7]              2     3     1     0     3    37     4 
+	00008: PUSHW[1]            285 
+	00011: NPUSHB      (14):     0     2     1    37     5     0    26     7     3    25 
+	                             6    87    90    24 
+	00027: CALL       
+	00028: FLIPOFF    
+	00029: SRP0       
+	00030: MIRP[nrp0,nmd,rd,0] 
+	00031: SRP0       
+	00032: MIRP[srp0,nmd,rd,2] 
+	00033: ALIGNRP    
+	00034: FLIPON     
+	00035: MIRP[srp0,md,rd,1] 
+	00036: ALIGNRP    
+	00037: SVTCA[y-axis] 
+	00038: MDAP[rd]   
+	00039: MIRP[srp0,md,rd,1] 
+	00040: MIRP[nrp0,md,rd,1] 
+	00041: SRP0       
+	00042: ALIGNRP    
+	00043: SRP0       
+	00044: ALIGNRP    
+	00045: IUP[y]     
+	00046: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1082,   424)  ->  Abs (  1082,   424)
+	  1: Rel (  -170,     0)  ->  Abs (   912,   424)
+	  2: Rel (     0,   438)  ->  Abs (   912,   862)
+	  3: Rel (  -798,     0)  ->  Abs (   114,   862)
+	  4: Rel (     0,   168)  ->  Abs (   114,  1030)
+	  5: Rel (   968,     0)  ->  Abs (  1082,  1030)
+
+	Glyph 165: off = 0x0000B4BE, len = 182
+	  numberOfContours:	1
+	  xMin:			84
+	  yMin:			-78
+	  xMax:			1124
+	  yMax:			1869
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	135
+	00000: NPUSHB      (59):     4     6    20     6     2     0     7    16     7     2 
+	                             3     6     7     3     4     7    63     2     3    20 
+	                             2     2     3     7     0     3     4     3     2     4 
+	                            76     5     6    20     5     5     6     4     5     0 
+	                             7     7    76     2     1    20     2     2     1     7 
+	                             6     3     4     5     7     2     0     3     1 
+	00061: PUSHW[1]            358 
+	00064: NPUSHB      (17):     6     6     6     6     8     1    26     9     5    25 
+	                             8     9   120    33   113   122    24 
+	00083: CALL       
+	00084: CALL       
+	00085: FLIPOFF    
+	00086: MIRP[nrp0,nmd,rd,0] 
+	00087: SRP0       
+	00088: MIRP[nrp0,nmd,rd,2] 
+	00089: SRP2       
+	00090: IP         
+	00091: MDAP[rd]   
+	00092: RTG        
+	00093: SVTCA[y-axis] 
+	00094: MIAP[rd+ci] 
+	00095: FLIPON     
+	00096: MIRP[nrp0,nmd,rd,0] 
+	00097: SVTCA[x-axis] 
+	00098: SLOOP      
+	00099: IP         
+	00100: SRP2       
+	00101: IP         
+	00102: IP         
+	00103: SFVTL[=p1,p2] 
+	00104: SDPVTL[1]  
+	00105: MDAP[nrd]  
+	00106: CALL       
+	00107: SFVTCA[x-axis] 
+	00108: RDTG       
+	00109: SRP0       
+	00110: MDRP[nrp0,nmd,rd,0] 
+	00111: SFVTL[=p1,p2] 
+	00112: SDPVTL[1]  
+	00113: MDAP[nrd]  
+	00114: RTG        
+	00115: CALL       
+	00116: SFVTL[=p1,p2] 
+	00117: RDTG       
+	00118: SRP0       
+	00119: MDRP[nrp0,nmd,rd,0] 
+	00120: SFVTL[=p1,p2] 
+	00121: SDPVTL[1]  
+	00122: MDAP[nrd]  
+	00123: RTG        
+	00124: CALL       
+	00125: SFVTL[=p1,p2] 
+	00126: SDPVTL[1]  
+	00127: RDTG       
+	00128: MDRP[nrp0,nmd,rd,0] 
+	00129: IUP[y]     
+	00130: IUP[x]     
+	00131: SVTCA[y-axis] 
+	00132: DELTAP1    
+	00133: SVTCA[x-axis] 
+	00134: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:                                      On
+	  3:                                      On
+	  4:                      Y-Short X-Short On
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short         On
+	  7:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (  1050,  1869)  ->  Abs (  1050,  1869)
+	  1: Rel (    74,     0)  ->  Abs (  1124,  1869)
+	  2: Rel (  -312, -1947)  ->  Abs (   812,   -78)
+	  3: Rel (  -496,  1021)  ->  Abs (   316,   943)
+	  4: Rel (  -198,   -91)  ->  Abs (   118,   852)
+	  5: Rel (   -34,    64)  ->  Abs (    84,   916)
+	  6: Rel (   301,   151)  ->  Abs (   385,  1067)
+	  7: Rel (   405,  -823)  ->  Abs (   790,   244)
+
+	Glyph 166: off = 0x0000B574, len = 288
+	  numberOfContours:	1
+	  xMin:			46
+	  yMin:			-431
+	  xMax:			1085
+	  yMax:			1492
+
+	EndPoints
+	---------
+	  0:  33
+
+	  Length of Instructions:	180
+	00000: NPUSHB      (94):   103     6     1     1     9     9     0     7    10    11 
+	                            11     6    25    28    29    24     0     1    34    28 
+	                            27    25    10     9     7     6     8    18    19    35 
+	                            26     0    32     1     8     3    19     9    18    16 
+	                            21    24    29    29    37     6    11    20     6     6 
+	                            11    29    24    11     6     4    26     6    29     8 
+	                             3    11    24     9    21    28    16     1    27    28 
+	                             7     8    43    26    25    10     9     6     3    28 
+	                            32    15    32    26     1    26    26    35    32     8 
+	                             1     8    25    34 
+	00096: PUSHW[1]            415 
+	00099: PUSHB[2]            210    24 
+	00102: CALL       
+	00103: FLIPOFF    
+	00104: SRP0       
+	00105: MIRP[nrp0,nmd,rd,0] 
+	00106: DELTAP1    
+	00107: SRP0       
+	00108: MIRP[nrp0,nmd,rd,2] 
+	00109: DELTAP1    
+	00110: SVTCA[y-axis] 
+	00111: MIAP[rd+ci] 
+	00112: FLIPON     
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: MIAP[rd+ci] 
+	00115: ALIGNRP    
+	00116: ALIGNRP    
+	00117: ALIGNRP    
+	00118: MIRP[srp0,md,rd,1] 
+	00119: ALIGNRP    
+	00120: ALIGNRP    
+	00121: ALIGNRP    
+	00122: MIAP[rd+ci] 
+	00123: MIRP[nrp0,md,rd,1] 
+	00124: SRP1       
+	00125: IP         
+	00126: IP         
+	00127: SRP1       
+	00128: SRP2       
+	00129: IP         
+	00130: IP         
+	00131: SVTCA[x-axis] 
+	00132: SRP1       
+	00133: SLOOP      
+	00134: IP         
+	00135: SDPVTL[1]  
+	00136: SFVTPV     
+	00137: MDAP[nrd]  
+	00138: CALL       
+	00139: RDTG       
+	00140: SRP0       
+	00141: MDRP[nrp0,nmd,rd,0] 
+	00142: SVTCA[y-axis] 
+	00143: SRP1       
+	00144: SRP2       
+	00145: IP         
+	00146: SRP2       
+	00147: IP         
+	00148: SRP1       
+	00149: SRP2       
+	00150: IP         
+	00151: SRP2       
+	00152: IP         
+	00153: SVTCA[x-axis] 
+	00154: SRP1       
+	00155: SRP2       
+	00156: IP         
+	00157: IP         
+	00158: SRP2       
+	00159: SLOOP      
+	00160: IP         
+	00161: SRP1       
+	00162: IP         
+	00163: IP         
+	00164: SPVTL[p1,p2] 
+	00165: ALIGNRP    
+	00166: ALIGNRP    
+	00167: SPVTL[p1,p2] 
+	00168: SRP0       
+	00169: SFVTPV     
+	00170: ALIGNRP    
+	00171: ALIGNRP    
+	00172: SPVTL[p1,p2] 
+	00173: SRP0       
+	00174: SFVTPV     
+	00175: ALIGNRP    
+	00176: IUP[y]     
+	00177: IUP[x]     
+	00178: SVTCA[x-axis] 
+	00179: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:        XDual                 X-Short On
+	  8:  YDual                       X-Short On
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short On
+	 19:                      Y-Short X-Short On
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short X-Short On
+	 26:  YDual XDual                 X-Short On
+	 27:                      Y-Short X-Short On
+	 28:  YDual                       X-Short On
+	 29:                              X-Short On
+	 30:                      Y-Short X-Short Off
+	 31:                      Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    46,  -405)  ->  Abs (    46,  -405)
+	  1: Rel (    35,   155)  ->  Abs (    81,  -250)
+	  2: Rel (   101,   -22)  ->  Abs (   182,  -272)
+	  3: Rel (    51,     0)  ->  Abs (   233,  -272)
+	  4: Rel (    54,     0)  ->  Abs (   287,  -272)
+	  5: Rel (    58,    56)  ->  Abs (   345,  -216)
+	  6: Rel (    16,    96)  ->  Abs (   361,  -120)
+	  7: Rel (   177,  1042)  ->  Abs (   538,   922)
+	  8: Rel (  -201,     0)  ->  Abs (   337,   922)
+	  9: Rel (    24,   140)  ->  Abs (   361,  1062)
+	 10: Rel (   201,     0)  ->  Abs (   562,  1062)
+	 11: Rel (    24,   133)  ->  Abs (   586,  1195)
+	 12: Rel (    22,   120)  ->  Abs (   608,  1315)
+	 13: Rel (    23,    45)  ->  Abs (   631,  1360)
+	 14: Rel (    31,    62)  ->  Abs (   662,  1422)
+	 15: Rel (   115,    70)  ->  Abs (   777,  1492)
+	 16: Rel (    93,     0)  ->  Abs (   870,  1492)
+	 17: Rel (    80,     0)  ->  Abs (   950,  1492)
+	 18: Rel (   135,   -38)  ->  Abs (  1085,  1454)
+	 19: Rel (   -35,  -153)  ->  Abs (  1050,  1301)
+	 20: Rel (  -103,    24)  ->  Abs (   947,  1325)
+	 21: Rel (   -51,     0)  ->  Abs (   896,  1325)
+	 22: Rel (   -56,     0)  ->  Abs (   840,  1325)
+	 23: Rel (   -56,   -55)  ->  Abs (   784,  1270)
+	 24: Rel (   -19,  -105)  ->  Abs (   765,  1165)
+	 25: Rel (   -19,  -103)  ->  Abs (   746,  1062)
+	 26: Rel (   204,     0)  ->  Abs (   950,  1062)
+	 27: Rel (   -25,  -140)  ->  Abs (   925,   922)
+	 28: Rel (  -204,     0)  ->  Abs (   721,   922)
+	 29: Rel (  -191, -1092)  ->  Abs (   530,  -170)
+	 30: Rel (   -26,  -148)  ->  Abs (   504,  -318)
+	 31: Rel (  -122,  -113)  ->  Abs (   382,  -431)
+	 32: Rel (  -112,     0)  ->  Abs (   270,  -431)
+	 33: Rel (   -94,     0)  ->  Abs (   176,  -431)
+
+	Glyph 167: off = 0x0000B694, len = 414
+	  numberOfContours:	2
+	  xMin:			51
+	  yMin:			376
+	  xMax:			1074
+	  yMax:			1066
+
+	EndPoints
+	---------
+	  0:  22
+	  1:  45
+
+	  Length of Instructions:	277
+	00000: NPUSHB      (99):    36    11    35    14    43    22    36    34    34    37 
+	                            43    45    47    47     7     0     2    15    14     0 
+	                            25    13    34    15    37    17     2    28    14    26 
+	                            15    17    25    26    33    30    34    28    37    26 
+	                            38    33     2    33    25    53     2    54     5    53 
+	                            25    54    28    69     2    70     5    69    25    70 
+	                            28    86     2    86    25   101     2   101    25   118 
+	                             5   118    28   134     5   134    28    31    27    10 
+	                            27    18    27    41    20    45     4    11    10    11 
+	                            18    11    41     4    45     4    36    32    35 
+	00101: PUSHW[1]            672 
+	00104: PUSHB[8]             39    32   112    32   128    32     2    32 
+	00113: PUSHW[1]            691 
+	00116: PUSHB[3]             16    32     9 
+	00120: PUSHW[1]            672 
+	00123: PUSHB[8]             13    32    12    58     3    24    32    23 
+	00132: PUSHW[1]            672 
+	00135: PUSHB[8]             43    32   112    26   128    26     2    26 
+	00144: PUSHW[1]            691 
+	00147: PUSHB[4]             20     1    32     0 
+	00152: PUSHW[1]            672 
+	00155: PUSHB[5]             20    32     3     6    39 
+	00161: PUSHW[4]            318    36    32   318 
+	00170: PUSHB[4]             36    35    35    16 
+	00175: PUSHW[4]            318    13     9   318 
+	00184: PUSHB[5]             13    12   105    47    43 
+	00190: PUSHW[4]            318    23    26   318 
+	00199: PUSHB[4]             23    24    24    20 
+	00204: PUSHW[4]            318     0     3   318 
+	00213: PUSHB[8]              1     1     0   105    46   155   141    24 
+	00222: CALL       
+	00223: SRP0       
+	00224: MIRP[srp0,nmd,rd,2] 
+	00225: ALIGNRP    
+	00226: SRP0       
+	00227: MIRP[nrp0,md,rd,1] 
+	00228: SRP0       
+	00229: MIRP[nrp0,nmd,rd,2] 
+	00230: ALIGNRP    
+	00231: SRP0       
+	00232: ALIGNRP    
+	00233: MIRP[nrp0,md,rd,1] 
+	00234: SRP0       
+	00235: MIRP[nrp0,nmd,rd,2] 
+	00236: SRP0       
+	00237: MIRP[srp0,nmd,rd,2] 
+	00238: ALIGNRP    
+	00239: MIRP[nrp0,nmd,rd,2] 
+	00240: SRP0       
+	00241: MIRP[nrp0,md,rd,1] 
+	00242: ALIGNRP    
+	00243: SRP0       
+	00244: ALIGNRP    
+	00245: MIRP[nrp0,nmd,rd,2] 
+	00246: SRP0       
+	00247: MIRP[nrp0,md,rd,1] 
+	00248: SVTCA[y-axis] 
+	00249: MIAP[rd+ci] 
+	00250: MIRP[srp0,md,rd,1] 
+	00251: MIRP[srp0,nmd,rd,0] 
+	00252: MIRP[nrp0,md,rd,1] 
+	00253: SRP0       
+	00254: MIRP[srp0,nmd,rd,2] 
+	00255: DELTAP1    
+	00256: MIRP[srp0,md,rd,1] 
+	00257: MIRP[srp0,nmd,rd,0] 
+	00258: MIRP[nrp0,md,rd,1] 
+	00259: SRP0       
+	00260: MIRP[srp0,nmd,rd,0] 
+	00261: MIRP[nrp0,md,rd,1] 
+	00262: MIRP[srp0,nmd,rd,0] 
+	00263: MIRP[srp0,md,rd,1] 
+	00264: MIRP[srp0,nmd,rd,2] 
+	00265: DELTAP1    
+	00266: MIRP[nrp0,md,rd,1] 
+	00267: MIRP[srp0,nmd,rd,0] 
+	00268: MIRP[nrp0,md,rd,1] 
+	00269: IUP[y]     
+	00270: IUP[x]     
+	00271: SVTCA[y-axis] 
+	00272: DELTAP1    
+	00273: DELTAP1    
+	00274: DELTAP1    
+	00275: SVTCA[x-axis] 
+	00276: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:        XDual         Y-Short         On
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:                      Y-Short X-Short Off
+	 23:                              X-Short On
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short On
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:        XDual         Y-Short         On
+	 37:                      Y-Short X-Short Off
+	 38:                      Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short Off
+	 45:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    51,   738)  ->  Abs (    51,   738)
+	  1: Rel (     0,   205)  ->  Abs (    51,   943)
+	  2: Rel (   106,   120)  ->  Abs (   157,  1063)
+	  3: Rel (   172,     0)  ->  Abs (   329,  1063)
+	  4: Rel (    60,     0)  ->  Abs (   389,  1063)
+	  5: Rel (   131,   -34)  ->  Abs (   520,  1029)
+	  6: Rel (   123,   -53)  ->  Abs (   643,   976)
+	  7: Rel (    69,   -30)  ->  Abs (   712,   946)
+	  8: Rel (    69,   -17)  ->  Abs (   781,   929)
+	  9: Rel (    35,     0)  ->  Abs (   816,   929)
+	 10: Rel (    65,     0)  ->  Abs (   881,   929)
+	 11: Rel (   139,    78)  ->  Abs (  1020,  1007)
+	 12: Rel (    54,    59)  ->  Abs (  1074,  1066)
+	 13: Rel (     0,  -212)  ->  Abs (  1074,   854)
+	 14: Rel (   -64,   -60)  ->  Abs (  1010,   794)
+	 15: Rel (  -131,   -54)  ->  Abs (   879,   740)
+	 16: Rel (   -82,     0)  ->  Abs (   797,   740)
+	 17: Rel (   -60,     0)  ->  Abs (   737,   740)
+	 18: Rel (  -108,    27)  ->  Abs (   629,   767)
+	 19: Rel (  -238,   107)  ->  Abs (   391,   874)
+	 20: Rel (   -79,     0)  ->  Abs (   312,   874)
+	 21: Rel (   -64,     0)  ->  Abs (   248,   874)
+	 22: Rel (  -113,   -55)  ->  Abs (   135,   819)
+	 23: Rel (   -84,  -443)  ->  Abs (    51,   376)
+	 24: Rel (     0,   205)  ->  Abs (    51,   581)
+	 25: Rel (   106,   120)  ->  Abs (   157,   701)
+	 26: Rel (   172,     0)  ->  Abs (   329,   701)
+	 27: Rel (    60,     0)  ->  Abs (   389,   701)
+	 28: Rel (   131,   -34)  ->  Abs (   520,   667)
+	 29: Rel (   123,   -53)  ->  Abs (   643,   614)
+	 30: Rel (    69,   -29)  ->  Abs (   712,   585)
+	 31: Rel (    69,   -18)  ->  Abs (   781,   567)
+	 32: Rel (    35,     0)  ->  Abs (   816,   567)
+	 33: Rel (    65,     0)  ->  Abs (   881,   567)
+	 34: Rel (   139,    78)  ->  Abs (  1020,   645)
+	 35: Rel (    54,    59)  ->  Abs (  1074,   704)
+	 36: Rel (     0,  -212)  ->  Abs (  1074,   492)
+	 37: Rel (   -64,   -60)  ->  Abs (  1010,   432)
+	 38: Rel (  -131,   -54)  ->  Abs (   879,   378)
+	 39: Rel (   -82,     0)  ->  Abs (   797,   378)
+	 40: Rel (   -60,     0)  ->  Abs (   737,   378)
+	 41: Rel (  -108,    28)  ->  Abs (   629,   406)
+	 42: Rel (  -238,   106)  ->  Abs (   391,   512)
+	 43: Rel (   -79,     0)  ->  Abs (   312,   512)
+	 44: Rel (   -64,     0)  ->  Abs (   248,   512)
+	 45: Rel (  -113,   -55)  ->  Abs (   135,   457)
+
+	Glyph 168: off = 0x0000B832, len = 154
+	  numberOfContours:	2
+	  xMin:			26
+	  yMin:			0
+	  xMax:			1226
+	  yMax:			1387
+
+	EndPoints
+	---------
+	  0:  2
+	  1:  5
+
+	  Length of Instructions:	114
+	00000: NPUSHB      (65):     2     1     2     0     1    76     5     4    20     5 
+	                             5     4     2     0     2     1     0   186     3     4 
+	                            20     3     3     4     5     1     2     3     0     4 
+	                             6     3     5    76     1     1     0    10     4     4 
+	                             5     3    11     0     1     0    26     7   234     1 
+	                           248     1     2   121     1     1     1    25     6     7 
+	                           241    33   169   104    24 
+	00067: CALL       
+	00068: CALL       
+	00069: FLIPOFF    
+	00070: MIRP[nrp0,nmd,rd,0] 
+	00071: DELTAP2    
+	00072: DELTAP1    
+	00073: SRP0       
+	00074: MIRP[nrp0,nmd,rd,2] 
+	00075: DELTAP1    
+	00076: RTHG       
+	00077: SRP1       
+	00078: SRP2       
+	00079: IP         
+	00080: MDAP[rd]   
+	00081: SVTCA[y-axis] 
+	00082: RTG        
+	00083: MIAP[rd+ci] 
+	00084: ALIGNRP    
+	00085: FLIPON     
+	00086: SRP0       
+	00087: MIRP[srp0,md,rd,1] 
+	00088: ALIGNRP    
+	00089: MIAP[rd+ci] 
+	00090: SVTCA[x-axis] 
+	00091: SRP2       
+	00092: IP         
+	00093: IP         
+	00094: SRP2       
+	00095: IP         
+	00096: SDPVTL[1]  
+	00097: MDAP[nrd]  
+	00098: CALL       
+	00099: SFVTL[=p1,p2] 
+	00100: RDTG       
+	00101: SRP0       
+	00102: MDRP[nrp0,nmd,rd,0] 
+	00103: SDPVTL[1]  
+	00104: SFVTCA[x-axis] 
+	00105: MDAP[nrd]  
+	00106: RTG        
+	00107: CALL       
+	00108: SFVTL[=p1,p2] 
+	00109: RDTG       
+	00110: SRP0       
+	00111: MDRP[nrp0,nmd,rd,0] 
+	00112: IUP[y]     
+	00113: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                               On
+	  2:              Rep-  3                 On
+
+	Coordinates
+	-----------
+	  0: Rel (  1226,     0)  ->  Abs (  1226,     0)
+	  1: Rel ( -1200,     0)  ->  Abs (    26,     0)
+	  2: Rel (   628,  1387)  ->  Abs (   654,  1387)
+	  3: Rel (   336, -1305)  ->  Abs (   990,    82)
+	  4: Rel (  -399,   967)  ->  Abs (   591,  1049)
+	  5: Rel (  -440,  -967)  ->  Abs (   151,    82)
+
+	Glyph 169: off = 0x0000B8CC, len = 196
+	  numberOfContours:	2
+	  xMin:			134
+	  yMin:			72
+	  xMax:			991
+	  yMax:			984
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  11
+
+	  Length of Instructions:	132
+	00000: NPUSHB      (11):     9     3    13     9    25     3    29     9     4    10 
+	                             4 
+	00013: PUSHW[1]            459 
+	00016: NPUSHB      (11):     8     2     8   249     7     7    11   249    10   117 
+	                             6 
+	00029: PUSHW[1]            -64 
+	00032: PUSHB[4]             25    28    52     6 
+	00037: PUSHW[1]            -64 
+	00040: NPUSHB      (27):    15    17    52     6   174     9    64    25    28    52 
+	                             9    64    14    17    52     9   159     0     2   232 
+	                             1    58     5   249     4   117     0 
+	00069: PUSHW[1]            -64 
+	00072: PUSHB[4]             25    28    52     0 
+	00077: PUSHW[1]            -64 
+	00080: NPUSHB      (18):    15    17    52     0   174     0     3    16     3    32 
+	                             3     3     3   172    12   175   121    24 
+	00100: CALL       
+	00101: SRP0       
+	00102: MIRP[srp0,nmd,rd,2] 
+	00103: DELTAP1    
+	00104: MIRP[srp0,md,rd,1] 
+	00105: CALL       
+	00106: CALL       
+	00107: MIRP[srp0,nmd,rd,2] 
+	00108: MIRP[srp0,md,rd,1] 
+	00109: MIRP[srp0,nmd,rd,0] 
+	00110: MIRP[nrp0,md,rd,1] 
+	00111: SRP0       
+	00112: MIRP[srp0,nmd,rd,2] 
+	00113: CALL       
+	00114: CALL       
+	00115: MIRP[srp0,md,rd,1] 
+	00116: CALL       
+	00117: CALL       
+	00118: MIRP[srp0,nmd,rd,2] 
+	00119: MIRP[srp0,md,rd,1] 
+	00120: ALIGNRP    
+	00121: SRP0       
+	00122: MIRP[srp0,md,rd,1] 
+	00123: SVTCA[y-axis] 
+	00124: MDAP[rd]   
+	00125: ALIGNRP    
+	00126: MIRP[srp0,md,rd,1] 
+	00127: ALIGNRP    
+	00128: IUP[y]     
+	00129: IUP[x]     
+	00130: SVTCA[x-axis] 
+	00131: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:  YDual                       X-Short On
+	  3:                                      On
+	  4:                                      On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                 X-Short On
+	  7:                                      On
+	  8:  YDual                       X-Short On
+	  9:                                      On
+	 10:                                      On
+	 11:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   340,   528)  ->  Abs (   340,   528)
+	  1: Rel (   259,  -456)  ->  Abs (   599,    72)
+	  2: Rel (  -146,     0)  ->  Abs (   453,    72)
+	  3: Rel (  -319,   456)  ->  Abs (   134,   528)
+	  4: Rel (   319,   456)  ->  Abs (   453,   984)
+	  5: Rel (   148,     0)  ->  Abs (   601,   984)
+	  6: Rel (   126,  -456)  ->  Abs (   727,   528)
+	  7: Rel (   264,  -456)  ->  Abs (   991,    72)
+	  8: Rel (  -152,     0)  ->  Abs (   839,    72)
+	  9: Rel (  -313,   456)  ->  Abs (   526,   528)
+	 10: Rel (   313,   456)  ->  Abs (   839,   984)
+	 11: Rel (   152,     0)  ->  Abs (   991,   984)
+
+	Glyph 170: off = 0x0000B990, len = 192
+	  numberOfContours:	2
+	  xMin:			140
+	  yMin:			72
+	  xMax:			997
+	  yMax:			984
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  11
+
+	  Length of Instructions:	128
+	00000: NPUSHB      (11):     6     3     2     9    22     3    18     9     4     1 
+	                             7 
+	00013: PUSHW[1]            459 
+	00016: NPUSHB      (24):     5    11    10     8   249     7     7    11   249    10 
+	                           117     6    64    25    28    52     6    64    15    17 
+	                            52     6   174     9 
+	00042: PUSHW[1]            -64 
+	00045: PUSHB[4]             25    28    52     9 
+	00050: PUSHW[1]            -64 
+	00053: NPUSHB      (35):    14    17    52     9   159     0     2   249     1    58 
+	                             5   232     4   117     0    64    25    28    52     0 
+	                            64    15    17    52     0   174    15     3    31     3 
+	                             2     3   172    13   157 
+	00090: PUSHW[2]            390    24 
+	00095: CALL       
+	00096: SRP0       
+	00097: MIRP[srp0,nmd,rd,2] 
+	00098: DELTAP1    
+	00099: MIRP[srp0,md,rd,1] 
+	00100: CALL       
+	00101: CALL       
+	00102: MIRP[srp0,nmd,rd,2] 
+	00103: MIRP[srp0,md,rd,1] 
+	00104: MIRP[srp0,nmd,rd,0] 
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: SRP0       
+	00107: MIRP[srp0,nmd,rd,2] 
+	00108: CALL       
+	00109: CALL       
+	00110: MIRP[srp0,md,rd,1] 
+	00111: CALL       
+	00112: CALL       
+	00113: MIRP[srp0,nmd,rd,2] 
+	00114: MIRP[srp0,md,rd,1] 
+	00115: ALIGNRP    
+	00116: SRP0       
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: SRP0       
+	00119: SVTCA[y-axis] 
+	00120: MDAP[rd]   
+	00121: ALIGNRP    
+	00122: MIRP[srp0,nmd,rd,2] 
+	00123: ALIGNRP    
+	00124: IUP[y]     
+	00125: IUP[x]     
+	00126: SVTCA[x-axis] 
+	00127: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+	  4:                                      On
+	  5:  YDual                       X-Short On
+	  6:                              X-Short On
+	  7:                                      On
+	  8:  YDual XDual                 X-Short On
+	  9:                                      On
+	 10:                                      On
+	 11:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   791,   528)  ->  Abs (   791,   528)
+	  1: Rel (  -261,   456)  ->  Abs (   530,   984)
+	  2: Rel (   148,     0)  ->  Abs (   678,   984)
+	  3: Rel (   319,  -456)  ->  Abs (   997,   528)
+	  4: Rel (  -319,  -456)  ->  Abs (   678,    72)
+	  5: Rel (  -147,     0)  ->  Abs (   531,    72)
+	  6: Rel (  -127,   456)  ->  Abs (   404,   528)
+	  7: Rel (  -264,   456)  ->  Abs (   140,   984)
+	  8: Rel (   151,     0)  ->  Abs (   291,   984)
+	  9: Rel (   314,  -456)  ->  Abs (   605,   528)
+	 10: Rel (  -314,  -456)  ->  Abs (   291,    72)
+	 11: Rel (  -151,     0)  ->  Abs (   140,    72)
+
+	Glyph 171: off = 0x0000BA50, len = 104
+	  numberOfContours:	3
+	  xMin:			239
+	  yMin:			0
+	  xMax:			1810
+	  yMax:			205
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  11
+
+	  Length of Instructions:	60
+	00000: NPUSHB      (18):     6     5     2     1     4    10    60     8     8     7 
+	                             7     4     4     3    10    10    60     9 
+	00020: PUSHW[1]            281 
+	00023: PUSHB[3]              7    60     5 
+	00027: PUSHW[1]            281 
+	00030: PUSHB[8]              3    60     0   203    12   217   245    24 
+	00039: CALL       
+	00040: SRP0       
+	00041: MIRP[srp0,nmd,rd,2] 
+	00042: MIRP[srp0,md,rd,1] 
+	00043: MIRP[srp0,nmd,rd,2] 
+	00044: MIRP[srp0,md,rd,1] 
+	00045: MIRP[srp0,nmd,rd,2] 
+	00046: MIRP[srp0,md,rd,1] 
+	00047: SVTCA[y-axis] 
+	00048: MIAP[rd+ci] 
+	00049: ALIGNRP    
+	00050: SRP0       
+	00051: ALIGNRP    
+	00052: SRP0       
+	00053: ALIGNRP    
+	00054: SRP0       
+	00055: MIRP[nrp0,md,rd,1] 
+	00056: SLOOP      
+	00057: SHP[rp2,zp1] 
+	00058: IUP[y]     
+	00059: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual                 X-Short On
+	 11:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   239,     0)  ->  Abs (   239,     0)
+	  1: Rel (     0,   205)  ->  Abs (   239,   205)
+	  2: Rel (   205,     0)  ->  Abs (   444,   205)
+	  3: Rel (     0,  -205)  ->  Abs (   444,     0)
+	  4: Rel (   478,     0)  ->  Abs (   922,     0)
+	  5: Rel (     0,   205)  ->  Abs (   922,   205)
+	  6: Rel (   205,     0)  ->  Abs (  1127,   205)
+	  7: Rel (     0,  -205)  ->  Abs (  1127,     0)
+	  8: Rel (   477,     0)  ->  Abs (  1604,     0)
+	  9: Rel (     0,   205)  ->  Abs (  1604,   205)
+	 10: Rel (   206,     0)  ->  Abs (  1810,   205)
+	 11: Rel (     0,  -205)  ->  Abs (  1810,     0)
+
+	Glyph 172: off = 0x0000BAB8, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	359
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              2    16 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (11):    11    17    52    16    12     0    72    43     2     1 
+	                            16 
+	00019: PUSHW[3]            545    41   356 
+	00026: SCANCTRL   
+	00027: SVTCA[y-axis] 
+	00028: CALL       
+	00029: SVTCA[x-axis] 
+	00030: CALL       
+	00031: CALL       
+	00032: SHC[rp1,zp0] 
+
+	Glyph 173: off = 0x0000BAF4, len = 88
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1787
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	342
+		Y WOffset:	337
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              2     2     1    30 
+	00005: PUSHW[3]            545    41   356 
+	00012: SCANCTRL   
+	00013: SVTCA[y-axis] 
+	00014: CALL       
+	00015: SVTCA[x-axis] 
+	00016: PUSHB[2]              6     2 
+	00019: RS         
+	00020: EQ         
+	00021: IF         
+	00022: PUSHB[6]              0    15    27     0     3    65 
+	00029: CALL       
+	00030: ELSE       
+	00031: NPUSHB      (21):    15    32     1   255    32     1    32    64    24    29 
+	                            52    32    64    11    16    52    32     1    82    72 
+	                            43 
+	00054: CALL       
+	00055: CALL       
+	00056: CALL       
+	00057: DELTAP2    
+	00058: DELTAP3    
+	00059: EIF        
+	00060: SHC[rp1,zp0] 
+
+	Glyph 174: off = 0x0000BB4C, len = 78
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1501
+	  yMax:			1787
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	459
+		Y WOffset:	337
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              2     2     1    43 
+	00005: PUSHW[2]            545    41 
+	00010: SVTCA[y-axis] 
+	00011: CALL       
+	00012: SVTCA[x-axis] 
+	00013: PUSHB[2]              6     2 
+	00016: RS         
+	00017: EQ         
+	00018: IF         
+	00019: PUSHB[6]              0    28    40     3     3    65 
+	00026: CALL       
+	00027: ELSE       
+	00028: NPUSHB      (10):    47    45    63    45     2    95    45     1    45     3 
+	00040: PUSHW[1]            -30 
+	00043: PUSHB[2]             72    43 
+	00046: CALL       
+	00047: DELTAP1    
+	00048: DELTAP1    
+	00049: EIF        
+	00050: SHC[rp1,zp0] 
+
+	Glyph 175: off = 0x0000BB9A, len = 536
+	  numberOfContours:	2
+	  xMin:			129
+	  yMin:			-25
+	  xMax:			1983
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  23
+	  1:  36
+
+	  Length of Instructions:	408
+	00000: NPUSHB      (80):    20    25    20    30    27    32    27    36     4     4 
+	                            25     4    30    11    32    11    36     4   108    32 
+	                           110    36     2   101    26    99    30     2    48    25 
+	                            48    30     2    32    25    32    30     2   121     7 
+	                             1     5    13     1   231    11     1   183     6   198 
+	                            11     2   143     3   128    14     2   107     4     1 
+	                           112    14     1   117    11   115    13     2   126     3 
+	                           124     4     2    35    32     9    17     2    85    33 
+	00082: PUSHW[1]            -32 
+	00085: PUSHB[5]              9    17     2    85    14 
+	00091: PUSHW[1]             -4 
+	00094: NPUSHB      (51):    11    17     2    85     3    22    23    14    18    20 
+	                            19    30    22    22    21    21     2    15    24    30 
+	                            12     3    17    18    30    16    15     2     0    23 
+	                            30     1     2     8    31    30     5     9    34    45 
+	                            15     2    30    18    23    10    16    16     2    85 
+	                            23 
+	00147: PUSHW[1]            -12 
+	00150: PUSHB[5]             15    15     2    85    23 
+	00156: PUSHW[1]            -10 
+	00159: NPUSHB      (11):    13    13     2    85    23    22    12    12     2    85 
+	                            23 
+	00172: PUSHW[1]             -8 
+	00175: PUSHB[5]             11    11     2    85    23 
+	00181: PUSHW[1]            -12 
+	00184: PUSHB[5]             15    15     6    85    23 
+	00190: PUSHW[1]            -12 
+	00193: NPUSHB      (11):    13    13     6    85    23    18    12    12     6    85 
+	                            23 
+	00206: PUSHW[1]             -8 
+	00209: NPUSHB      (46):    11    11     6    85    23    48    23    80    23     2 
+	                            32    23    96    23     2    23    37    38    21    84 
+	                            17    74    48     0    64     0     2    80     0    96 
+	                             0     2    32     0   112     0     2     0    26   127 
+	                            38     1    38    28    38     9 
+	00257: PUSHW[1]            -14 
+	00260: PUSHB[5]             16    16     2    85     9 
+	00266: PUSHW[1]            -12 
+	00269: NPUSHB      (11):    15    15     2    85     9     4    11    11     2    85 
+	                             9 
+	00282: PUSHW[1]            -24 
+	00285: PUSHB[5]             16    16     6    85     9 
+	00291: PUSHW[1]             -9 
+	00294: NPUSHB      (16):    15    15     6    85     9     4    11    11     6    85 
+	                            32     9     1     9    25    37 
+	00312: PUSHW[1]            307 
+	00315: PUSHB[2]            153    24 
+	00318: CALL       
+	00319: FLIPOFF    
+	00320: SRP0       
+	00321: MIRP[srp0,nmd,rd,0] 
+	00322: DELTAP1    
+	00323: CALL       
+	00324: CALL       
+	00325: CALL       
+	00326: CALL       
+	00327: CALL       
+	00328: CALL       
+	00329: FLIPON     
+	00330: MIRP[nrp0,md,rd,1] 
+	00331: FLIPOFF    
+	00332: SRP0       
+	00333: DELTAP1    
+	00334: MIRP[srp0,nmd,rd,2] 
+	00335: DELTAP1    
+	00336: DELTAP1    
+	00337: DELTAP1    
+	00338: FLIPON     
+	00339: MIRP[srp0,nmd,rd,0] 
+	00340: MIRP[nrp0,nmd,rd,0] 
+	00341: SRP1       
+	00342: SRP2       
+	00343: IP         
+	00344: DELTAP1    
+	00345: DELTAP1    
+	00346: MDAP[rd]   
+	00347: CALL       
+	00348: CALL       
+	00349: CALL       
+	00350: CALL       
+	00351: CALL       
+	00352: CALL       
+	00353: CALL       
+	00354: CALL       
+	00355: CALL       
+	00356: ALIGNRP    
+	00357: MIRP[srp0,md,rd,1] 
+	00358: ALIGNRP    
+	00359: MIRP[nrp0,nmd,rd,0] 
+	00360: SVTCA[y-axis] 
+	00361: MIAP[rd+ci] 
+	00362: MIRP[nrp0,md,rd,1] 
+	00363: MIAP[rd+ci] 
+	00364: ALIGNRP    
+	00365: MIRP[srp0,md,rd,1] 
+	00366: ALIGNRP    
+	00367: MIAP[rd+ci] 
+	00368: ALIGNRP    
+	00369: MIRP[srp0,md,rd,1] 
+	00370: ALIGNRP    
+	00371: MIAP[rd+ci] 
+	00372: MIRP[nrp0,md,rd,1] 
+	00373: SRP1       
+	00374: SRP2       
+	00375: IP         
+	00376: MDAP[rd]   
+	00377: ALIGNRP    
+	00378: SRP0       
+	00379: MIRP[srp0,md,rd,1] 
+	00380: ALIGNRP    
+	00381: SRP1       
+	00382: IP         
+	00383: SRP1       
+	00384: SRP2       
+	00385: IP         
+	00386: IUP[y]     
+	00387: IUP[x]     
+	00388: SVTCA[y-axis] 
+	00389: CALL       
+	00390: CALL       
+	00391: CALL       
+	00392: DELTAP1    
+	00393: DELTAP1    
+	00394: DELTAP1    
+	00395: DELTAP1    
+	00396: DELTAP1    
+	00397: DELTAP1    
+	00398: DELTAP1    
+	00399: DELTAP2    
+	00400: SVTCA[x-axis] 
+	00401: DELTAP1    
+	00402: DELTAP1    
+	00403: DELTAP1    
+	00404: DELTAP1    
+	00405: DELTAP1    
+	00406: DELTAP1    
+	00407: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                               On
+	  6:  YDual                               Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:        XDual                         On
+	 10:        XDual                         Off
+	 11:                                      Off
+	 12:  YDual                               On
+	 13:  YDual                               Off
+	 14:        XDual         Y-Short X-Short On
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual                               On
+	 17:        XDual         Y-Short         On
+	 18:  YDual                               On
+	 19:        XDual                         On
+	 20:  YDual                               On
+	 21:        XDual         Y-Short         On
+	 22:  YDual                               On
+	 23:        XDual                         On
+	 24:                                      On
+	 25:  YDual                       X-Short Off
+	 26:                      Y-Short X-Short Off
+	 27:                              X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual                         Off
+	 30:        XDual                 X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual                 X-Short Off
+	 34:        XDual                         On
+	 35:        XDual                         Off
+	 36:                              X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1983,   173)  ->  Abs (  1983,   173)
+	  1: Rel (     0,  -173)  ->  Abs (  1983,     0)
+	  2: Rel (  -862,     0)  ->  Abs (  1121,     0)
+	  3: Rel (     0,   212)  ->  Abs (  1121,   212)
+	  4: Rel (  -135,  -237)  ->  Abs (   986,   -25)
+	  5: Rel (  -265,     0)  ->  Abs (   721,   -25)
+	  6: Rel (  -301,     0)  ->  Abs (   420,   -25)
+	  7: Rel (  -155,   232)  ->  Abs (   265,   207)
+	  8: Rel (  -136,   205)  ->  Abs (   129,   412)
+	  9: Rel (     0,   323)  ->  Abs (   129,   735)
+	 10: Rel (     0,   322)  ->  Abs (   129,  1057)
+	 11: Rel (   284,   434)  ->  Abs (   413,  1491)
+	 12: Rel (   308,     0)  ->  Abs (   721,  1491)
+	 13: Rel (   264,     0)  ->  Abs (   985,  1491)
+	 14: Rel (   136,  -223)  ->  Abs (  1121,  1268)
+	 15: Rel (     0,   198)  ->  Abs (  1121,  1466)
+	 16: Rel (   831,     0)  ->  Abs (  1952,  1466)
+	 17: Rel (     0,  -173)  ->  Abs (  1952,  1293)
+	 18: Rel (  -650,     0)  ->  Abs (  1302,  1293)
+	 19: Rel (     0,  -448)  ->  Abs (  1302,   845)
+	 20: Rel (   599,     0)  ->  Abs (  1901,   845)
+	 21: Rel (     0,  -172)  ->  Abs (  1901,   673)
+	 22: Rel (  -599,     0)  ->  Abs (  1302,   673)
+	 23: Rel (     0,  -500)  ->  Abs (  1302,   173)
+	 24: Rel (  -582,  1161)  ->  Abs (   720,  1334)
+	 25: Rel (  -101,     0)  ->  Abs (   619,  1334)
+	 26: Rel (  -192,  -130)  ->  Abs (   427,  1204)
+	 27: Rel (   -98,  -265)  ->  Abs (   329,   939)
+	 28: Rel (     0,  -219)  ->  Abs (   329,   720)
+	 29: Rel (     0,  -303)  ->  Abs (   329,   417)
+	 30: Rel (   231,  -286)  ->  Abs (   560,   131)
+	 31: Rel (   160,     0)  ->  Abs (   720,   131)
+	 32: Rel (   161,     0)  ->  Abs (   881,   131)
+	 33: Rel (   229,   285)  ->  Abs (  1110,   416)
+	 34: Rel (     0,   329)  ->  Abs (  1110,   745)
+	 35: Rel (     0,   306)  ->  Abs (  1110,  1051)
+	 36: Rel (  -231,   283)  ->  Abs (   879,  1334)
+
+	Glyph 176: off = 0x0000BDB2, len = 582
+	  numberOfContours:	3
+	  xMin:			82
+	  yMin:			-24
+	  xMax:			1859
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  32
+	  1:  46
+	  2:  53
+
+	  Length of Instructions:	412
+	00000: NPUSHB     (109):    38    21    87    11     2    68    22    68    35    75 
+	                            38    75    42    68    45    75    50    68    52    87 
+	                             5    87     8    83    35    95    38    95    42    83 
+	                            45   103     8   104    14    96    36   108    38   108 
+	                            42    99    45    19    92    50    84    52     2    82 
+	                            22    91    25     2    50    22    51    35    59    38 
+	                            58    42    51    45    62    50    50    52     7     0 
+	                            13    40     0    21    20    37    13    53    51    47 
+	                            28   144    20   160    20     2    20    20     3    43 
+	                            28    10    51    28    16    16    10     7    37    28 
+	                             3    23    28     0    27    16    27     2    27 
+	00111: PUSHW[1]            637 
+	00114: NPUSHB      (38):    30    30     3    11    47    64    40    64    20    26 
+	                            64    27    51    20    10    15    15     2    85    20 
+	                            10    11    12     2    85    20    12    12    12     6 
+	                            85   223    20     1    63    20     1    20 
+	00154: PUSHW[1]            452 
+	00157: PUSHB[3]             48    64    19 
+	00161: PUSHW[1]            -20 
+	00164: PUSHB[5]             16    16     2    85    19 
+	00170: PUSHW[1]            -10 
+	00173: PUSHB[5]             15    15     2    85    19 
+	00179: PUSHW[1]            -42 
+	00182: PUSHB[5]             13    13     2    85    19 
+	00188: PUSHW[1]            -48 
+	00191: PUSHB[5]             12    12     2    85    19 
+	00197: PUSHW[1]            -42 
+	00200: PUSHB[5]             11    11     2    85    19 
+	00206: PUSHW[1]            -16 
+	00209: PUSHB[5]             16    16     6    85    19 
+	00215: PUSHW[1]            -13 
+	00218: PUSHB[5]             15    15     6    85    19 
+	00224: PUSHW[1]            -20 
+	00227: PUSHB[5]             13    13     6    85    19 
+	00233: PUSHW[1]            -53 
+	00236: PUSHB[5]             12    12     6    85    19 
+	00242: PUSHW[1]            -15 
+	00245: PUSHB[8]             11    11     6    85   208    19     1    19 
+	00254: PUSHW[1]            -64 
+	00257: PUSHB[4]             11    17    52    19 
+	00262: PUSHW[1]            639 
+	00265: NPUSHB      (64):    33    36     6     6    14    15     2    85     6    28 
+	                            13    13     2    85     6    24    12    12     2    85 
+	                             6    32    11    11     2    85     6    10    16    16 
+	                             6    85     6    25    13    13     6    85     6    40 
+	                            12    12     6    85     6    22    11    11     6    85 
+	                           223     6     1    63     6    79     6     2     6    25 
+	                            54    52    55    24 
+	00331: CALL       
+	00332: FLIPOFF    
+	00333: SRP0       
+	00334: MIRP[srp0,nmd,rd,0] 
+	00335: DELTAP1    
+	00336: DELTAP2    
+	00337: CALL       
+	00338: CALL       
+	00339: CALL       
+	00340: CALL       
+	00341: CALL       
+	00342: CALL       
+	00343: CALL       
+	00344: CALL       
+	00345: FLIPON     
+	00346: MIRP[nrp0,md,rd,1] 
+	00347: MIRP[srp0,md,rd,1] 
+	00348: CALL       
+	00349: DELTAP2    
+	00350: CALL       
+	00351: CALL       
+	00352: CALL       
+	00353: CALL       
+	00354: CALL       
+	00355: CALL       
+	00356: CALL       
+	00357: CALL       
+	00358: CALL       
+	00359: CALL       
+	00360: MIRP[nrp0,md,rd,1] 
+	00361: MIRP[nrp0,nmd,rd,0] 
+	00362: DELTAP1    
+	00363: DELTAP2    
+	00364: CALL       
+	00365: CALL       
+	00366: CALL       
+	00367: MIRP[srp0,nmd,rd,0] 
+	00368: MIRP[nrp0,md,rd,1] 
+	00369: SRP0       
+	00370: MIRP[srp0,md,rd,1] 
+	00371: MIRP[srp0,md,rd,1] 
+	00372: SVTCA[y-axis] 
+	00373: MIAP[rd+ci] 
+	00374: ALIGNRP    
+	00375: SRP0       
+	00376: MIRP[nrp0,md,rd,1] 
+	00377: DELTAP1    
+	00378: MIRP[nrp0,md,rd,1] 
+	00379: SRP0       
+	00380: MIRP[nrp0,md,rd,1] 
+	00381: MIAP[rd+ci] 
+	00382: ALIGNRP    
+	00383: SRP0       
+	00384: MIRP[nrp0,md,rd,1] 
+	00385: SRP0       
+	00386: MIRP[nrp0,md,rd,1] 
+	00387: SRP2       
+	00388: IP         
+	00389: MDAP[rd]   
+	00390: DELTAP1    
+	00391: MIRP[nrp0,md,rd,1] 
+	00392: SRP1       
+	00393: IP         
+	00394: IP         
+	00395: SRP1       
+	00396: SRP2       
+	00397: IP         
+	00398: IP         
+	00399: SVTCA[x-axis] 
+	00400: SRP1       
+	00401: IP         
+	00402: IP         
+	00403: IUP[y]     
+	00404: IUP[x]     
+	00405: SVTCA[x-axis] 
+	00406: DELTAP1    
+	00407: DELTAP1    
+	00408: DELTAP1    
+	00409: DELTAP1    
+	00410: SVTCA[y-axis] 
+	00411: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:                                      Off
+	  6:        XDual                         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:        XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:                                      Off
+	 19:                              X-Short On
+	 20:  YDual                               On
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short On
+	 28:                      Y-Short X-Short Off
+	 29:                      Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:                                      On
+	 34:        XDual         Y-Short         Off
+	 35:        XDual         Y-Short X-Short On
+	 36:        XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short Off
+	 45:                      Y-Short X-Short Off
+	 46:                      Y-Short X-Short Off
+	 47:                      Y-Short         On
+	 48:  YDual                               On
+	 49:  YDual               Y-Short X-Short Off
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual                       X-Short On
+	 52:  YDual                       X-Short Off
+	 53:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   978,   175)  ->  Abs (   978,   175)
+	  1: Rel (   -76,   -99)  ->  Abs (   902,    76)
+	  2: Rel (  -198,  -100)  ->  Abs (   704,   -24)
+	  3: Rel (  -122,     0)  ->  Abs (   582,   -24)
+	  4: Rel (  -225,     0)  ->  Abs (   357,   -24)
+	  5: Rel (  -275,   286)  ->  Abs (    82,   262)
+	  6: Rel (     0,   256)  ->  Abs (    82,   518)
+	  7: Rel (     0,   169)  ->  Abs (    82,   687)
+	  8: Rel (   117,   267)  ->  Abs (   199,   954)
+	  9: Rel (   239,   132)  ->  Abs (   438,  1086)
+	 10: Rel (   146,     0)  ->  Abs (   584,  1086)
+	 11: Rel (   138,     0)  ->  Abs (   722,  1086)
+	 12: Rel (   205,  -115)  ->  Abs (   927,   971)
+	 13: Rel (    51,   -88)  ->  Abs (   978,   883)
+	 14: Rel (    64,    93)  ->  Abs (  1042,   976)
+	 15: Rel (   201,   110)  ->  Abs (  1243,  1086)
+	 16: Rel (   124,     0)  ->  Abs (  1367,  1086)
+	 17: Rel (   220,     0)  ->  Abs (  1587,  1086)
+	 18: Rel (   272,  -302)  ->  Abs (  1859,   784)
+	 19: Rel (    -2,  -301)  ->  Abs (  1857,   483)
+	 20: Rel (  -784,     0)  ->  Abs (  1073,   483)
+	 21: Rel (     3,  -166)  ->  Abs (  1076,   317)
+	 22: Rel (   179,  -193)  ->  Abs (  1255,   124)
+	 23: Rel (   134,     0)  ->  Abs (  1389,   124)
+	 24: Rel (    99,     0)  ->  Abs (  1488,   124)
+	 25: Rel (   143,   111)  ->  Abs (  1631,   235)
+	 26: Rel (    32,   111)  ->  Abs (  1663,   346)
+	 27: Rel (   180,   -26)  ->  Abs (  1843,   320)
+	 28: Rel (   -43,  -165)  ->  Abs (  1800,   155)
+	 29: Rel (  -235,  -179)  ->  Abs (  1565,   -24)
+	 30: Rel (  -179,     0)  ->  Abs (  1386,   -24)
+	 31: Rel (  -134,     0)  ->  Abs (  1252,   -24)
+	 32: Rel (  -212,   105)  ->  Abs (  1040,    81)
+	 33: Rel (  -773,   452)  ->  Abs (   267,   533)
+	 34: Rel (     0,  -186)  ->  Abs (   267,   347)
+	 35: Rel (    71,   -97)  ->  Abs (   338,   250)
+	 36: Rel (    92,  -126)  ->  Abs (   430,   124)
+	 37: Rel (   147,     0)  ->  Abs (   577,   124)
+	 38: Rel (   129,     0)  ->  Abs (   706,   124)
+	 39: Rel (   184,   212)  ->  Abs (   890,   336)
+	 40: Rel (     0,   199)  ->  Abs (   890,   535)
+	 41: Rel (     0,   198)  ->  Abs (   890,   733)
+	 42: Rel (  -181,   205)  ->  Abs (   709,   938)
+	 43: Rel (  -132,     0)  ->  Abs (   577,   938)
+	 44: Rel (   -87,     0)  ->  Abs (   490,   938)
+	 45: Rel (  -146,   -98)  ->  Abs (   344,   840)
+	 46: Rel (   -77,  -192)  ->  Abs (   267,   648)
+	 47: Rel (   813,   -17)  ->  Abs (  1080,   631)
+	 48: Rel (   587,     0)  ->  Abs (  1667,   631)
+	 49: Rel (   -12,   151)  ->  Abs (  1655,   782)
+	 50: Rel (  -159,   156)  ->  Abs (  1496,   938)
+	 51: Rel (  -118,     0)  ->  Abs (  1378,   938)
+	 52: Rel (  -120,     0)  ->  Abs (  1258,   938)
+	 53: Rel (  -167,  -164)  ->  Abs (  1091,   774)
+
+	Glyph 177: off = 0x0000BFF8, len = 56
+	  numberOfContours:	1
+	  xMin:			-4
+	  yMin:			458
+	  xMax:			1135
+	  yMax:			603
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	30
+	00000: NPUSHB      (15):     1    53     0     2    26     5    32     0     1     0 
+	                            25     4   179   122    24 
+	00017: CALL       
+	00018: FLIPOFF    
+	00019: SRP0       
+	00020: MIRP[nrp0,nmd,rd,0] 
+	00021: DELTAP1    
+	00022: SRP0       
+	00023: MIRP[nrp0,nmd,rd,2] 
+	00024: SVTCA[y-axis] 
+	00025: MDAP[rd]   
+	00026: FLIPON     
+	00027: MIRP[nrp0,md,rd,1] 
+	00028: IUP[y]     
+	00029: IUP[x]     
+
+	Flags
+	-----
+	  0:                              X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (    -4,   458)  ->  Abs (    -4,   458)
+	  1: Rel (     0,   145)  ->  Abs (    -4,   603)
+	  2: Rel (  1139,     0)  ->  Abs (  1135,   603)
+	  3: Rel (     0,  -145)  ->  Abs (  1135,   458)
+
+	Glyph 178: off = 0x0000C030, len = 50
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			458
+	  xMax:			2048
+	  yMax:			603
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	26
+	00000: NPUSHB      (13):     1    53     0     2     5    32     0     1     0     4 
+	                           179   122    24 
+	00015: CALL       
+	00016: SRP0       
+	00017: ALIGNRP    
+	00018: DELTAP1    
+	00019: SRP0       
+	00020: ALIGNRP    
+	00021: SVTCA[y-axis] 
+	00022: MDAP[rd]   
+	00023: MIRP[nrp0,md,rd,1] 
+	00024: IUP[y]     
+	00025: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                         On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (     0,   458)  ->  Abs (     0,   458)
+	  1: Rel (     0,   145)  ->  Abs (     0,   603)
+	  2: Rel (  2048,     0)  ->  Abs (  2048,   603)
+	  3: Rel (     0,  -145)  ->  Abs (  2048,   458)
+
+	Glyph 179: off = 0x0000C062, len = 298
+	  numberOfContours:	2
+	  xMin:			83
+	  yMin:			1011
+	  xMax:			602
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	216
+	00000: NPUSHB      (92):   159    25   175    25     2   239     7   239    19     2 
+	                           223     7   223    19     2   207     7   207    19     2 
+	                           191     7   191    19     2   175     7   175    19     2 
+	                           159     7   159    19     2   143     7   143    19     2 
+	                           126     7   126    19     2   251     8   251    20     2 
+	                           108     8   108    20     2    90     8    90    20     2 
+	                            12     8    12    20     2    20    19     8     7    23 
+	                            12    15    11     0     3    15   249    14     3   249 
+	                             2    14    13     2     1    12    60    13     0    60 
+	                            13     1 
+	00094: PUSHW[1]            336 
+	00097: NPUSHB      (47):    19   111     7   127     7   143     7     3     7     1 
+	                            19    56    20    60    14    13    12    60    15    15 
+	                            14    64    23    26    52    14   117     1     7    56 
+	                             8    60     2     1     0    60     3     3   143     2 
+	                             1     2    25    24   113   167    24 
+	00146: CALL       
+	00147: FLIPOFF    
+	00148: SRP0       
+	00149: MIRP[srp0,nmd,rd,0] 
+	00150: DELTAP1    
+	00151: ALIGNRP    
+	00152: FLIPON     
+	00153: SRP0       
+	00154: MIRP[srp0,md,rd,1] 
+	00155: ALIGNRP    
+	00156: SRP0       
+	00157: MIRP[srp0,md,rd,1] 
+	00158: MIRP[nrp0,nmd,rd,0] 
+	00159: SRP0       
+	00160: MIRP[srp0,nmd,rd,2] 
+	00161: CALL       
+	00162: ALIGNRP    
+	00163: SRP0       
+	00164: MIRP[srp0,md,rd,1] 
+	00165: ALIGNRP    
+	00166: SRP0       
+	00167: MIRP[srp0,md,rd,1] 
+	00168: MIRP[nrp0,nmd,rd,0] 
+	00169: SVTCA[y-axis] 
+	00170: MIAP[rd+ci] 
+	00171: DELTAP1    
+	00172: ALIGNRP    
+	00173: MIRP[srp0,md,rd,1] 
+	00174: ALIGNRP    
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: SRP0       
+	00177: MIRP[nrp0,md,rd,1] 
+	00178: SRP0       
+	00179: ALIGNRP    
+	00180: SRP0       
+	00181: ALIGNRP    
+	00182: SRP0       
+	00183: MIRP[nrp0,md,rd,1] 
+	00184: SRP0       
+	00185: MIRP[nrp0,md,rd,1] 
+	00186: SVTCA[x-axis] 
+	00187: SRP1       
+	00188: SRP2       
+	00189: IP         
+	00190: SRP1       
+	00191: SRP2       
+	00192: IP         
+	00193: SVTCA[y-axis] 
+	00194: SRP0       
+	00195: MDRP[nrp0,md,nrd,1] 
+	00196: SRP0       
+	00197: MDRP[nrp0,md,nrd,1] 
+	00198: IUP[y]     
+	00199: IUP[x]     
+	00200: SVTCA[y-axis] 
+	00201: DELTAP3    
+	00202: DELTAP2    
+	00203: DELTAP2    
+	00204: DELTAP2    
+	00205: SVTCA[x-axis] 
+	00206: DELTAP2    
+	00207: DELTAP2    
+	00208: DELTAP2    
+	00209: DELTAP2    
+	00210: DELTAP2    
+	00211: DELTAP2    
+	00212: DELTAP2    
+	00213: DELTAP2    
+	00214: SVTCA[x-axis] 
+	00215: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short On
+	 12:  YDual                               On
+	 13:        XDual         Y-Short         On
+	 14:  YDual                       X-Short On
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   276,  1220)  ->  Abs (   276,  1220)
+	  1: Rel (     0,  -209)  ->  Abs (   276,  1011)
+	  2: Rel (  -193,     0)  ->  Abs (    83,  1011)
+	  3: Rel (     0,   165)  ->  Abs (    83,  1176)
+	  4: Rel (     0,   134)  ->  Abs (    83,  1310)
+	  5: Rel (    32,    60)  ->  Abs (   115,  1370)
+	  6: Rel (    42,    80)  ->  Abs (   157,  1450)
+	  7: Rel (    91,    41)  ->  Abs (   248,  1491)
+	  8: Rel (    44,   -70)  ->  Abs (   292,  1421)
+	  9: Rel (   -55,   -23)  ->  Abs (   237,  1398)
+	 10: Rel (   -52,   -91)  ->  Abs (   185,  1307)
+	 11: Rel (    -3,   -87)  ->  Abs (   182,  1220)
+	 12: Rel (   404,     0)  ->  Abs (   586,  1220)
+	 13: Rel (     0,  -209)  ->  Abs (   586,  1011)
+	 14: Rel (  -193,     0)  ->  Abs (   393,  1011)
+	 15: Rel (     0,   165)  ->  Abs (   393,  1176)
+	 16: Rel (     0,   134)  ->  Abs (   393,  1310)
+	 17: Rel (    32,    60)  ->  Abs (   425,  1370)
+	 18: Rel (    42,    80)  ->  Abs (   467,  1450)
+	 19: Rel (    91,    41)  ->  Abs (   558,  1491)
+	 20: Rel (    44,   -70)  ->  Abs (   602,  1421)
+	 21: Rel (   -55,   -23)  ->  Abs (   547,  1398)
+	 22: Rel (   -52,   -91)  ->  Abs (   495,  1307)
+	 23: Rel (    -3,   -87)  ->  Abs (   492,  1220)
+
+	Glyph 180: off = 0x0000C18C, len = 300
+	  numberOfContours:	2
+	  xMin:			71
+	  yMin:			1001
+	  xMax:			590
+	  yMax:			1481
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	219
+	00000: NPUSHB      (78):   159    25   175    25     2   240     8   240    20     2 
+	                             1     8     1    20     2   224     7   224    19     2 
+	                           208     7   208    19     2   192     7   192    19     2 
+	                           176     7   176    19     2   162     7   162    19     2 
+	                           146     7   146    19     2   130     7   130    19     2 
+	                           112     7   112    19     2   101     8   101    20     2 
+	                            83     8    83    20     2    20    19     8     7    23 
+	                            15    12    11     3     0    20   171    19 
+	00080: PUSHW[1]            336 
+	00083: NPUSHB      (12):    13    15   249    14    14    12    60    13     1     8 
+	                           171     7 
+	00097: PUSHW[1]            336 
+	00100: NPUSHB      (48):     1     3   249     2     2     0    60     1     1    14 
+	                            15    60    12    19    56    20    39    13    23    62 
+	                            12    12    13    64    23    26    52    13   117     2 
+	                             2     3    60     0     7    56     8    39     0    32 
+	                             1     1     1   106    24   113   167    24 
+	00150: CALL       
+	00151: SRP0       
+	00152: MIRP[srp0,nmd,rd,2] 
+	00153: DELTAP1    
+	00154: ALIGNRP    
+	00155: MIRP[srp0,nmd,rd,0] 
+	00156: MIRP[nrp0,nmd,rd,0] 
+	00157: SRP0       
+	00158: MIRP[srp0,md,rd,1] 
+	00159: ALIGNRP    
+	00160: SRP0       
+	00161: MIRP[srp0,nmd,rd,2] 
+	00162: CALL       
+	00163: ALIGNRP    
+	00164: SRP0       
+	00165: MIRP[nrp0,nmd,rd,0] 
+	00166: SRP0       
+	00167: MIRP[srp0,nmd,rd,0] 
+	00168: MIRP[nrp0,nmd,rd,0] 
+	00169: SRP0       
+	00170: MIRP[srp0,md,rd,1] 
+	00171: ALIGNRP    
+	00172: SVTCA[y-axis] 
+	00173: MIAP[rd+ci] 
+	00174: MIRP[nrp0,md,rd,1] 
+	00175: ALIGNRP    
+	00176: SRP0       
+	00177: MIRP[nrp0,md,rd,1] 
+	00178: SRP0       
+	00179: MIRP[srp0,md,rd,1] 
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: MIAP[rd+ci] 
+	00182: MIRP[nrp0,md,rd,1] 
+	00183: ALIGNRP    
+	00184: SRP0       
+	00185: MIRP[nrp0,md,rd,1] 
+	00186: SRP0       
+	00187: MIRP[srp0,md,rd,1] 
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: SVTCA[x-axis] 
+	00190: SRP1       
+	00191: SRP2       
+	00192: IP         
+	00193: SRP1       
+	00194: SRP2       
+	00195: IP         
+	00196: SVTCA[y-axis] 
+	00197: SRP0       
+	00198: MDRP[nrp0,md,nrd,1] 
+	00199: SRP0       
+	00200: MDRP[nrp0,md,nrd,1] 
+	00201: IUP[y]     
+	00202: IUP[x]     
+	00203: SVTCA[x-axis] 
+	00204: DELTAP2    
+	00205: DELTAP2    
+	00206: DELTAP2    
+	00207: DELTAP2    
+	00208: DELTAP2    
+	00209: DELTAP2    
+	00210: DELTAP2    
+	00211: DELTAP2    
+	00212: DELTAP2    
+	00213: DELTAP2    
+	00214: SVTCA[y-axis] 
+	00215: DELTAP3    
+	00216: DELTAP2    
+	00217: SVTCA[x-axis] 
+	00218: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual                 X-Short On
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:  YDual               Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    87,  1272)  ->  Abs (    87,  1272)
+	  1: Rel (     0,   209)  ->  Abs (    87,  1481)
+	  2: Rel (   193,     0)  ->  Abs (   280,  1481)
+	  3: Rel (     0,  -165)  ->  Abs (   280,  1316)
+	  4: Rel (     0,  -134)  ->  Abs (   280,  1182)
+	  5: Rel (   -31,   -59)  ->  Abs (   249,  1123)
+	  6: Rel (   -43,   -81)  ->  Abs (   206,  1042)
+	  7: Rel (   -91,   -41)  ->  Abs (   115,  1001)
+	  8: Rel (   -44,    71)  ->  Abs (    71,  1072)
+	  9: Rel (    54,    22)  ->  Abs (   125,  1094)
+	 10: Rel (    53,    95)  ->  Abs (   178,  1189)
+	 11: Rel (     3,    83)  ->  Abs (   181,  1272)
+	 12: Rel (   216,     0)  ->  Abs (   397,  1272)
+	 13: Rel (     0,   209)  ->  Abs (   397,  1481)
+	 14: Rel (   193,     0)  ->  Abs (   590,  1481)
+	 15: Rel (     0,  -165)  ->  Abs (   590,  1316)
+	 16: Rel (     0,  -134)  ->  Abs (   590,  1182)
+	 17: Rel (   -31,   -59)  ->  Abs (   559,  1123)
+	 18: Rel (   -43,   -81)  ->  Abs (   516,  1042)
+	 19: Rel (   -91,   -41)  ->  Abs (   425,  1001)
+	 20: Rel (   -44,    71)  ->  Abs (   381,  1072)
+	 21: Rel (    54,    22)  ->  Abs (   435,  1094)
+	 22: Rel (    53,    95)  ->  Abs (   488,  1189)
+	 23: Rel (     3,    83)  ->  Abs (   491,  1272)
+
+	Glyph 181: off = 0x0000C2B8, len = 174
+	  numberOfContours:	1
+	  xMin:			128
+	  yMin:			1011
+	  xMax:			337
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	126
+	00000: NPUSHB      (54):   123     8   140     8     2    13     8     1   253     7 
+	                             1   222     7   239     7     2   189     7   207     7 
+	                             2   155     7   174     7     2    90     7   108     7 
+	                             2     8     7    11     0     3   249     2     2     1 
+	                            11     0    60     1     8    56   111     1   127     1 
+	                           143     1     3     1 
+	00056: PUSHW[1]            336 
+	00059: NPUSHB      (21):     7     0     1     0     7    56     8    39     0    60 
+	                             3     3    32     2     1     2    25    12   157   121 
+	                            24 
+	00082: CALL       
+	00083: FLIPOFF    
+	00084: SRP0       
+	00085: MIRP[srp0,nmd,rd,0] 
+	00086: DELTAP1    
+	00087: ALIGNRP    
+	00088: FLIPON     
+	00089: SRP0       
+	00090: MIRP[srp0,md,rd,1] 
+	00091: MIRP[srp0,nmd,rd,0] 
+	00092: MIRP[nrp0,nmd,rd,0] 
+	00093: SRP0       
+	00094: ALIGNRP    
+	00095: SVTCA[y-axis] 
+	00096: MIAP[rd+ci] 
+	00097: MIRP[nrp0,md,rd,1] 
+	00098: DELTAP1    
+	00099: SVTCA[x-axis] 
+	00100: MIRP[nrp0,nmd,rd,0] 
+	00101: SVTCA[y-axis] 
+	00102: SRP0       
+	00103: MIRP[srp0,md,rd,1] 
+	00104: ALIGNRP    
+	00105: SRP0       
+	00106: ALIGNRP    
+	00107: SRP0       
+	00108: MIRP[nrp0,md,rd,1] 
+	00109: SVTCA[x-axis] 
+	00110: SRP1       
+	00111: IP         
+	00112: SVTCA[y-axis] 
+	00113: SRP0       
+	00114: MDRP[nrp0,md,nrd,1] 
+	00115: IUP[y]     
+	00116: IUP[x]     
+	00117: SVTCA[x-axis] 
+	00118: DELTAP2    
+	00119: DELTAP2    
+	00120: DELTAP2    
+	00121: DELTAP2    
+	00122: DELTAP2    
+	00123: SVTCA[y-axis] 
+	00124: DELTAP3    
+	00125: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   321,  1220)  ->  Abs (   321,  1220)
+	  1: Rel (     0,  -209)  ->  Abs (   321,  1011)
+	  2: Rel (  -193,     0)  ->  Abs (   128,  1011)
+	  3: Rel (     0,   165)  ->  Abs (   128,  1176)
+	  4: Rel (     0,   134)  ->  Abs (   128,  1310)
+	  5: Rel (    32,    60)  ->  Abs (   160,  1370)
+	  6: Rel (    42,    80)  ->  Abs (   202,  1450)
+	  7: Rel (    91,    41)  ->  Abs (   293,  1491)
+	  8: Rel (    44,   -70)  ->  Abs (   337,  1421)
+	  9: Rel (   -55,   -23)  ->  Abs (   282,  1398)
+	 10: Rel (   -52,   -91)  ->  Abs (   230,  1307)
+	 11: Rel (    -3,   -87)  ->  Abs (   227,  1220)
+
+	Glyph 182: off = 0x0000C366, len = 164
+	  numberOfContours:	1
+	  xMin:			108
+	  yMin:			1001
+	  xMax:			317
+	  yMax:			1481
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	116
+	00000: NPUSHB      (38):   211     7   227     7     2   177     7   195     7     2 
+	                           242     8     1   147     8   161     8     2   115     8 
+	                           130     8     2    85     8   101     8     2     2     8 
+	                             1     8    11     3     0     8   171     7 
+	00040: PUSHW[1]            336 
+	00043: NPUSHB      (30):     1     3   249     2     2     1    11     0    60     1 
+	                             0     2     3    60     0     7    56     8    39     0 
+	                             0    32     1     1     1    25    12   157   121    24 
+	00075: CALL       
+	00076: FLIPOFF    
+	00077: SRP0       
+	00078: MIRP[srp0,nmd,rd,0] 
+	00079: DELTAP1    
+	00080: ALIGNRP    
+	00081: FLIPON     
+	00082: SRP0       
+	00083: MIRP[srp0,nmd,rd,0] 
+	00084: MIRP[nrp0,nmd,rd,0] 
+	00085: SRP0       
+	00086: MIRP[srp0,md,rd,1] 
+	00087: ALIGNRP    
+	00088: SVTCA[y-axis] 
+	00089: MIAP[rd+ci] 
+	00090: MIRP[srp0,md,rd,1] 
+	00091: ALIGNRP    
+	00092: SRP0       
+	00093: ALIGNRP    
+	00094: SRP0       
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: SRP0       
+	00097: MIRP[srp0,md,rd,1] 
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: SVTCA[x-axis] 
+	00100: SRP1       
+	00101: SRP2       
+	00102: IP         
+	00103: SVTCA[y-axis] 
+	00104: MDRP[nrp0,md,nrd,1] 
+	00105: IUP[y]     
+	00106: IUP[x]     
+	00107: SVTCA[y-axis] 
+	00108: DELTAP3    
+	00109: DELTAP2    
+	00110: DELTAP2    
+	00111: DELTAP2    
+	00112: DELTAP2    
+	00113: SVTCA[x-axis] 
+	00114: DELTAP2    
+	00115: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   124,  1272)  ->  Abs (   124,  1272)
+	  1: Rel (     0,   209)  ->  Abs (   124,  1481)
+	  2: Rel (   193,     0)  ->  Abs (   317,  1481)
+	  3: Rel (     0,  -165)  ->  Abs (   317,  1316)
+	  4: Rel (     0,  -134)  ->  Abs (   317,  1182)
+	  5: Rel (   -31,   -59)  ->  Abs (   286,  1123)
+	  6: Rel (   -43,   -81)  ->  Abs (   243,  1042)
+	  7: Rel (   -91,   -41)  ->  Abs (   152,  1001)
+	  8: Rel (   -44,    71)  ->  Abs (   108,  1072)
+	  9: Rel (    54,    22)  ->  Abs (   162,  1094)
+	 10: Rel (    53,    95)  ->  Abs (   215,  1189)
+	 11: Rel (     3,    83)  ->  Abs (   218,  1272)
+
+	Glyph 183: off = 0x0000C40A, len = 162
+	  numberOfContours:	3
+	  xMin:			78
+	  yMin:			319
+	  xMax:			1046
+	  yMax:			1127
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  11
+
+	  Length of Instructions:	108
+	00000: PUSHB[6]              8    60     0     9     1     9 
+	00007: PUSHW[1]            681 
+	00010: NPUSHB       (9):    64     5     1     5   249     0     6     1     6 
+	00021: PUSHW[1]            681 
+	00024: NPUSHB      (51):     0    60   176     1     1    48     1   144     1     2 
+	                           192     1   224     1     2    80     1   112     1     2 
+	                             1     7   110     2    60     0   110     6     4   110 
+	                            11    60     9     6     9   110    64     5    80     5 
+	                           144     5   160     5     4     5   113    12   113   140 
+	                            24 
+	00077: CALL       
+	00078: FLIPOFF    
+	00079: SRP0       
+	00080: MIRP[srp0,nmd,rd,0] 
+	00081: DELTAP1    
+	00082: FLIPON     
+	00083: MIRP[nrp0,nmd,rd,0] 
+	00084: ALIGNRP    
+	00085: SRP0       
+	00086: MIRP[srp0,md,rd,1] 
+	00087: MIRP[nrp0,nmd,rd,0] 
+	00088: SRP0       
+	00089: MIRP[srp0,nmd,rd,0] 
+	00090: MIRP[srp0,md,rd,1] 
+	00091: MIRP[nrp0,nmd,rd,0] 
+	00092: SVTCA[y-axis] 
+	00093: MDAP[rd]   
+	00094: DELTAP1    
+	00095: DELTAP1    
+	00096: DELTAP2    
+	00097: DELTAP2    
+	00098: MIRP[srp0,md,rd,1] 
+	00099: MIRP[srp0,nmd,rd,2] 
+	00100: DELTAP2    
+	00101: MIRP[srp0,md,rd,1] 
+	00102: DELTAP2    
+	00103: MIRP[srp0,nmd,rd,2] 
+	00104: DELTAP2    
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: IUP[y]     
+	00107: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:                                      On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:                                      On
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual                 X-Short On
+	 11:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   459,   922)  ->  Abs (   459,   922)
+	  1: Rel (     0,   205)  ->  Abs (   459,  1127)
+	  2: Rel (   205,     0)  ->  Abs (   664,  1127)
+	  3: Rel (     0,  -205)  ->  Abs (   664,   922)
+	  4: Rel (   382,  -283)  ->  Abs (  1046,   639)
+	  5: Rel (  -968,     0)  ->  Abs (    78,   639)
+	  6: Rel (     0,   168)  ->  Abs (    78,   807)
+	  7: Rel (   968,     0)  ->  Abs (  1046,   807)
+	  8: Rel (  -587,  -488)  ->  Abs (   459,   319)
+	  9: Rel (     0,   205)  ->  Abs (   459,   524)
+	 10: Rel (   205,     0)  ->  Abs (   664,   524)
+	 11: Rel (     0,  -205)  ->  Abs (   664,   319)
+
+	Glyph 184: off = 0x0000C4AC, len = 210
+	  numberOfContours:	2
+	  xMin:			47
+	  yMin:			0
+	  xMax:			967
+	  yMax:			1422
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  9
+
+	  Length of Instructions:	151
+	00000: NPUSHB      (93):     9     6     9     8     6   133     0     1    20     0 
+	                             6     7     0     1     6     7     6     9     7   133 
+	                             4     5    20     4     7     8     4     5     9     8 
+	                             9     6     8   133     2     1    20     2     8     7 
+	                             2     1     8     7     8     9     7   133     4     3 
+	                            20     4     7     6     4     3     5     0     3     2 
+	                             7     9     6     8     8     1     4     8     6     4 
+	                             7     9     1     6     3     0     5     0     2     3 
+	                             8    15     1     1     1   105    11     4   105    10 
+	                           158   121    24 
+	00095: CALL       
+	00096: SRP0       
+	00097: MIRP[nrp0,nmd,rd,2] 
+	00098: SRP0       
+	00099: MIRP[nrp0,nmd,rd,2] 
+	00100: DELTAP1    
+	00101: SVTCA[y-axis] 
+	00102: MIAP[rd+ci] 
+	00103: ALIGNRP    
+	00104: MIAP[rd+ci] 
+	00105: ALIGNRP    
+	00106: SRP2       
+	00107: SLOOP      
+	00108: IP         
+	00109: SVTCA[x-axis] 
+	00110: SRP1       
+	00111: SRP2       
+	00112: SLOOP      
+	00113: IP         
+	00114: SDPVTL[1]  
+	00115: SFVTL[=p1,p2] 
+	00116: MDAP[nrd]  
+	00117: CALL       
+	00118: SFVTL[=p1,p2] 
+	00119: RDTG       
+	00120: SRP0       
+	00121: MDRP[nrp0,nmd,rd,0] 
+	00122: SDPVTL[1]  
+	00123: SFVTL[=p1,p2] 
+	00124: MDAP[nrd]  
+	00125: RTG        
+	00126: CALL       
+	00127: SFVTL[=p1,p2] 
+	00128: RDTG       
+	00129: SRP0       
+	00130: MDRP[nrp0,nmd,rd,0] 
+	00131: SDPVTL[1]  
+	00132: SFVTL[=p1,p2] 
+	00133: MDAP[nrd]  
+	00134: RTG        
+	00135: CALL       
+	00136: SFVTL[=p1,p2] 
+	00137: RDTG       
+	00138: SRP0       
+	00139: MDRP[nrp0,nmd,rd,0] 
+	00140: SDPVTL[1]  
+	00141: SFVTL[=p1,p2] 
+	00142: MDAP[nrd]  
+	00143: RTG        
+	00144: CALL       
+	00145: SFVTL[=p1,p2] 
+	00146: RDTG       
+	00147: SRP0       
+	00148: MDRP[nrp0,nmd,rd,0] 
+	00149: IUP[y]     
+	00150: IUP[x]     
+
+	Flags
+	-----
+	  0:              Rep-  2                 On
+	  3:  YDual                       X-Short On
+	  4:                                      On
+	  5:                                      On
+	  6:        XDual         Y-Short X-Short On
+	  7:              Rep-  2                 On
+
+	Coordinates
+	-----------
+	  0: Rel (   549,  1422)  ->  Abs (   549,  1422)
+	  1: Rel (   418,  -713)  ->  Abs (   967,   709)
+	  2: Rel (  -418,  -709)  ->  Abs (   549,     0)
+	  3: Rel (  -111,     0)  ->  Abs (   438,     0)
+	  4: Rel (  -391,   709)  ->  Abs (    47,   709)
+	  5: Rel (   391,   713)  ->  Abs (   438,  1422)
+	  6: Rel (    57,   -97)  ->  Abs (   495,  1325)
+	  7: Rel (  -340,  -616)  ->  Abs (   155,   709)
+	  8: Rel (   340,  -615)  ->  Abs (   495,    94)
+	  9: Rel (   359,   615)  ->  Abs (   854,   709)
+
+	Glyph 185: off = 0x0000C57E, len = 84
+	  numberOfContours:	-1  (Composite)
+	  xMin:			33
+	  yMin:			-431
+	  xMax:			1006
+	  yMax:			1475
+
+	     0: Flags:		0x0226
+		Glyf Index:	92
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	182
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              2     1     1     2     2    34 
+	00007: PUSHW[2]            546    41 
+	00012: SVTCA[y-axis] 
+	00013: CALL       
+	00014: SVTCA[x-axis] 
+	00015: PUSHB[2]              6     2 
+	00018: RS         
+	00019: EQ         
+	00020: IF         
+	00021: PUSHB[6]              0    27    34    11    19    65 
+	00028: CALL       
+	00029: ELSE       
+	00030: PUSHW[2]             31   -64 
+	00035: NPUSHB      (15):    43    48    52    15    31    31    31   240    31     3 
+	                            31    15    98    72    43 
+	00052: CALL       
+	00053: DELTAP2    
+	00054: CALL       
+	00055: EIF        
+	00056: SHC[rp1,zp0] 
+	00057: SHC[rp1,zp0] 
+
+	Glyph 186: off = 0x0000C5D2, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			6
+	  yMin:			0
+	  xMax:			1350
+	  yMax:			1761
+
+	     0: Flags:		0x0226
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	336
+		Y WOffset:	286
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (11):     2     1    17    11     0    72    43     1     2     2 
+	                            20 
+	00013: PUSHW[3]            545    41   356 
+	00020: SCANCTRL   
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: SHC[rp1,zp0] 
+	00026: SHC[rp1,zp0] 
+
+	Glyph 187: off = 0x0000C608, len = 88
+	  numberOfContours:	1
+	  xMin:			-455
+	  yMin:			-57
+	  xMax:			803
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	57
+	00000: NPUSHB      (12):     1     0     0    63     3     2    20     3     3     2 
+	                             0     3 
+	00014: PUSHW[1]            381 
+	00017: NPUSHB      (10):     2     1     0     2    26     5     1    25     4   206 
+	00029: PUSHW[2]            428    24 
+	00034: CALL       
+	00035: RTHG       
+	00036: FLIPOFF    
+	00037: SRP0       
+	00038: MIRP[nrp0,nmd,rd,0] 
+	00039: SRP0       
+	00040: MIRP[nrp0,nmd,rd,2] 
+	00041: SVTCA[y-axis] 
+	00042: RTG        
+	00043: MIAP[rd+ci] 
+	00044: ALIGNRP    
+	00045: FLIPON     
+	00046: MIRP[nrp0,md,rd,1] 
+	00047: IP         
+	00048: SDPVTL[1]  
+	00049: SFVTCA[x-axis] 
+	00050: MDAP[nrd]  
+	00051: CALL       
+	00052: RDTG       
+	00053: SRP0       
+	00054: MDRP[nrp0,nmd,rd,0] 
+	00055: IUP[y]     
+	00056: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (  -455,   -57)  ->  Abs (  -455,   -57)
+	  1: Rel (  1101,  1548)  ->  Abs (   646,  1491)
+	  2: Rel (   157,     0)  ->  Abs (   803,  1491)
+	  3: Rel ( -1101, -1548)  ->  Abs (  -298,   -57)
+
+	Glyph 188: off = 0x0000C660, len = 338
+	  numberOfContours:	1
+	  xMin:			-28
+	  yMin:			-25
+	  xMax:			1107
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  47
+
+	  Length of Instructions:	190
+	00000: PUSHB[4]            102     2     1    18 
+	00005: PUSHW[1]            -32 
+	00008: PUSHB[4]             13    17    52     4 
+	00013: PUSHW[1]            -32 
+	00016: PUSHB[4]              9    17    52    17 
+	00021: PUSHW[1]            -32 
+	00024: PUSHB[4]              9    17    52    45 
+	00029: PUSHW[1]            -52 
+	00032: NPUSHB      (22):    14    28    52    45    43    46    46     0    38    23 
+	                            32    14    28    52    23    25    22    22    30    20 
+	                             7    38 
+	00056: PUSHW[1]            595 
+	00059: PUSHB[5]              8   143    37     1    37 
+	00065: PUSHW[1]            595 
+	00068: PUSHB[3]             31    15    30 
+	00072: PUSHW[1]            595 
+	00075: NPUSHB      (46):    14    31    31    20     0    30    43     3    20    30 
+	                            25     9    13    16     9     6     4    14    29    32 
+	                            36    39     4    11    38    31    34    30    15    14 
+	                            14    11     8     7     7    11    45    46    46    23 
+	                            49    37    30    11    38    34 
+	00123: MDAP[rd]   
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: MDRP[srp0,nmd,rd,0] 
+	00126: ALIGNRP    
+	00127: SRP0       
+	00128: MDRP[srp0,nmd,rd,2] 
+	00129: ALIGNRP    
+	00130: SRP1       
+	00131: SHP[rp1,zp0] 
+	00132: SRP1       
+	00133: IP         
+	00134: MDAP[rd]   
+	00135: SHP[rp1,zp0] 
+	00136: SRP2       
+	00137: IP         
+	00138: MDAP[rd]   
+	00139: SHP[rp1,zp0] 
+	00140: SRP1       
+	00141: SRP2       
+	00142: IP         
+	00143: IP         
+	00144: SRP1       
+	00145: SLOOP      
+	00146: IP         
+	00147: SRP2       
+	00148: SLOOP      
+	00149: IP         
+	00150: SVTCA[y-axis] 
+	00151: MIAP[rd+ci] 
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: MIAP[rd+ci] 
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: SRP1       
+	00156: IP         
+	00157: MDAP[rd]   
+	00158: ALIGNRP    
+	00159: MIRP[srp0,md,rd,1] 
+	00160: ALIGNRP    
+	00161: SRP0       
+	00162: MIRP[srp0,nmd,rd,2] 
+	00163: DELTAP1    
+	00164: ALIGNRP    
+	00165: MIRP[srp0,md,rd,1] 
+	00166: ALIGNRP    
+	00167: SRP1       
+	00168: SRP2       
+	00169: IP         
+	00170: MDAP[rd]   
+	00171: SRP2       
+	00172: IP         
+	00173: CALL       
+	00174: SVTCA[y-axis] 
+	00175: SRP1       
+	00176: SRP2       
+	00177: IP         
+	00178: RTG        
+	00179: MDAP[rd]   
+	00180: SRP2       
+	00181: IP         
+	00182: CALL       
+	00183: IUP[y]     
+	00184: IUP[x]     
+	00185: SVTCA[x-axis] 
+	00186: CALL       
+	00187: CALL       
+	00188: CALL       
+	00189: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:  YDual                               On
+	  8:                      Y-Short X-Short On
+	  9:  YDual                               On
+	 10:                      Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:        XDual         Y-Short X-Short On
+	 14:  YDual                               On
+	 15:                      Y-Short X-Short On
+	 16:  YDual                               On
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short         On
+	 24:                      Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                               Off
+	 27:                              X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:  YDual                       X-Short On
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual                       X-Short On
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:  YDual XDual                 X-Short On
+	 40:        XDual                 X-Short Off
+	 41:  YDual               Y-Short         On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:        XDual         Y-Short X-Short On
+	 46:                      Y-Short X-Short On
+	 47:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   790,  1325)  ->  Abs (   790,  1325)
+	  1: Rel (  -168,     0)  ->  Abs (   622,  1325)
+	  2: Rel (  -114,   -81)  ->  Abs (   508,  1244)
+	  3: Rel (   -68,   -48)  ->  Abs (   440,  1196)
+	  4: Rel (   -55,   -88)  ->  Abs (   385,  1108)
+	  5: Rel (   -56,   -91)  ->  Abs (   329,  1017)
+	  6: Rel (   -10,   -82)  ->  Abs (   319,   935)
+	  7: Rel (   682,     0)  ->  Abs (  1001,   935)
+	  8: Rel (   -27,  -134)  ->  Abs (   974,   801)
+	  9: Rel (  -671,     0)  ->  Abs (   303,   801)
+	 10: Rel (    -1,   -21)  ->  Abs (   302,   780)
+	 11: Rel (     0,   -19)  ->  Abs (   302,   761)
+	 12: Rel (     0,   -77)  ->  Abs (   302,   684)
+	 13: Rel (     1,   -15)  ->  Abs (   303,   669)
+	 14: Rel (   644,     0)  ->  Abs (   947,   669)
+	 15: Rel (   -28,  -134)  ->  Abs (   919,   535)
+	 16: Rel (  -595,     0)  ->  Abs (   324,   535)
+	 17: Rel (    42,  -229)  ->  Abs (   366,   306)
+	 18: Rel (   160,   -96)  ->  Abs (   526,   210)
+	 19: Rel (   115,   -69)  ->  Abs (   641,   141)
+	 20: Rel (   134,     0)  ->  Abs (   775,   141)
+	 21: Rel (   187,     0)  ->  Abs (   962,   141)
+	 22: Rel (   105,    98)  ->  Abs (  1067,   239)
+	 23: Rel (     0,  -206)  ->  Abs (  1067,    33)
+	 24: Rel (  -125,   -58)  ->  Abs (   942,   -25)
+	 25: Rel (  -151,     0)  ->  Abs (   791,   -25)
+	 26: Rel (  -452,     0)  ->  Abs (   339,   -25)
+	 27: Rel (  -159,   376)  ->  Abs (   180,   351)
+	 28: Rel (   -32,    76)  ->  Abs (   148,   427)
+	 29: Rel (   -23,   108)  ->  Abs (   125,   535)
+	 30: Rel (  -153,     0)  ->  Abs (   -28,   535)
+	 31: Rel (    28,   134)  ->  Abs (     0,   669)
+	 32: Rel (   105,     0)  ->  Abs (   105,   669)
+	 33: Rel (    -3,    42)  ->  Abs (   102,   711)
+	 34: Rel (     0,    49)  ->  Abs (   102,   760)
+	 35: Rel (     0,    20)  ->  Abs (   102,   780)
+	 36: Rel (     1,    21)  ->  Abs (   103,   801)
+	 37: Rel (  -131,     0)  ->  Abs (   -28,   801)
+	 38: Rel (    28,   134)  ->  Abs (     0,   935)
+	 39: Rel (   116,     0)  ->  Abs (   116,   935)
+	 40: Rel (    62,   326)  ->  Abs (   178,  1261)
+	 41: Rel (   261,   142)  ->  Abs (   439,  1403)
+	 42: Rel (   161,    88)  ->  Abs (   600,  1491)
+	 43: Rel (   194,     0)  ->  Abs (   794,  1491)
+	 44: Rel (   186,     0)  ->  Abs (   980,  1491)
+	 45: Rel (   127,   -81)  ->  Abs (  1107,  1410)
+	 46: Rel (   -40,  -186)  ->  Abs (  1067,  1224)
+	 47: Rel (  -122,   101)  ->  Abs (   945,  1325)
+
+	Glyph 189: off = 0x0000C7B2, len = 114
+	  numberOfContours:	1
+	  xMin:			92
+	  yMin:			72
+	  xMax:			556
+	  yMax:			984
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	76
+	00000: PUSHW[2]              0   -18 
+	00005: PUSHB[3]             22    57     0 
+	00009: PUSHW[1]            -18 
+	00012: NPUSHB      (10):    23    57     7     0    23     0   167     0     3     4 
+	00024: PUSHW[1]            459 
+	00027: NPUSHB      (22):     2     1   249     2   117     0     5   213     4   117 
+	                             0    60    32     3    48     3   144     3     3     3 
+	                           106     6 
+	00051: PUSHW[1]            331 
+	00054: PUSHB[2]             90    24 
+	00057: CALL       
+	00058: SRP0       
+	00059: MIRP[srp0,nmd,rd,2] 
+	00060: DELTAP1    
+	00061: MIRP[srp0,md,rd,1] 
+	00062: MIRP[srp0,nmd,rd,2] 
+	00063: MIRP[nrp0,md,rd,1] 
+	00064: SRP0       
+	00065: MIRP[srp0,nmd,rd,2] 
+	00066: MIRP[nrp0,md,rd,1] 
+	00067: SVTCA[y-axis] 
+	00068: MDAP[rd]   
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: IUP[y]     
+	00071: IUP[x]     
+	00072: SVTCA[x-axis] 
+	00073: DELTAP1    
+	00074: CALL       
+	00075: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:  YDual                       X-Short On
+	  3:                                      On
+	  4:                                      On
+	  5:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   291,   527)  ->  Abs (   291,   527)
+	  1: Rel (   265,  -455)  ->  Abs (   556,    72)
+	  2: Rel (  -149,     0)  ->  Abs (   407,    72)
+	  3: Rel (  -315,   455)  ->  Abs (    92,   527)
+	  4: Rel (   315,   457)  ->  Abs (   407,   984)
+	  5: Rel (   149,     0)  ->  Abs (   556,   984)
+
+	Glyph 190: off = 0x0000C824, len = 90
+	  numberOfContours:	1
+	  xMin:			92
+	  yMin:			72
+	  xMax:			545
+	  yMax:			984
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	52
+	00000: PUSHB[6]              7     3    23     3     2     2 
+	00007: PUSHW[1]            459 
+	00010: NPUSHB      (23):     4     5   249     4     1   249     2   117     4   117 
+	                             0    60    63     3   159     3     2     3   106     7 
+	                           113   178    24 
+	00035: CALL       
+	00036: SRP0       
+	00037: MIRP[srp0,nmd,rd,2] 
+	00038: DELTAP1    
+	00039: MIRP[srp0,md,rd,1] 
+	00040: MIRP[nrp0,nmd,rd,2] 
+	00041: MIRP[srp0,nmd,rd,2] 
+	00042: MIRP[nrp0,md,rd,1] 
+	00043: SRP0       
+	00044: MIRP[nrp0,md,rd,1] 
+	00045: SVTCA[y-axis] 
+	00046: MDAP[rd]   
+	00047: MIRP[nrp0,md,rd,1] 
+	00048: IUP[y]     
+	00049: IUP[x]     
+	00050: SVTCA[x-axis] 
+	00051: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+	  4:                                      On
+	  5:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   357,   530)  ->  Abs (   357,   530)
+	  1: Rel (  -265,   454)  ->  Abs (    92,   984)
+	  2: Rel (   149,     0)  ->  Abs (   241,   984)
+	  3: Rel (   304,  -448)  ->  Abs (   545,   536)
+	  4: Rel (  -304,  -464)  ->  Abs (   241,    72)
+	  5: Rel (  -149,     0)  ->  Abs (    92,    72)
+
+	Glyph 191: off = 0x0000C87E, len = 376
+	  numberOfContours:	3
+	  xMin:			23
+	  yMin:			0
+	  xMax:			885
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  21
+	  1:  25
+	  2:  29
+
+	  Length of Instructions:	284
+	00000: NPUSHB      (45):    22     8    11    13    25    10     8    25   126    24 
+	                             0    13    28     8     1    19     2    43     3    28 
+	                            18    18    17    17     4     4     3     6    26    21 
+	                            10    23    22    22    27    27    26    64    29    24 
+	                            25    25    28    28    29 
+	00047: PUSHW[1]            -16 
+	00050: NPUSHB      (11):    15    16     2    85    29    16    13    13     2    85 
+	                            29 
+	00063: PUSHW[1]            -24 
+	00066: NPUSHB      (11):    12    12     2    85    29    12    16    16     6    85 
+	                            29 
+	00079: PUSHW[1]            -22 
+	00082: NPUSHB      (41):    11    12     6    85   159    29   191    29   255    29 
+	                             3    29    26    31   144    10   176    10     2    10 
+	                            40    18    18    19   187    17    20    20    21    64 
+	                             0     5     4     4     1     1     0   146     2     2 
+	                             3 
+	00125: PUSHW[1]            -28 
+	00128: PUSHB[5]             14    16     2    85     3 
+	00134: PUSHW[1]            -20 
+	00137: PUSHB[5]             13    13     2    85     3 
+	00143: PUSHW[1]            -14 
+	00146: PUSHB[5]             12    12     2    85     3 
+	00152: PUSHW[1]             -6 
+	00155: PUSHB[5]             11    11     2    85     3 
+	00161: PUSHW[1]            -20 
+	00164: PUSHB[5]             13    13     6    85     3 
+	00170: PUSHW[1]            -14 
+	00173: NPUSHB      (10):    11    12     6    85     3    25    30   124    80    24 
+	00185: CALL       
+	00186: FLIPOFF    
+	00187: SRP0       
+	00188: MIRP[srp0,nmd,rd,0] 
+	00189: CALL       
+	00190: CALL       
+	00191: CALL       
+	00192: CALL       
+	00193: CALL       
+	00194: CALL       
+	00195: ALIGNRP    
+	00196: FLIPON     
+	00197: SRP0       
+	00198: MIRP[srp0,nmd,rd,0] 
+	00199: ALIGNRP    
+	00200: SRP0       
+	00201: ALIGNRP    
+	00202: SRP0       
+	00203: ALIGNRP    
+	00204: SRP0       
+	00205: MIRP[srp0,md,rd,1] 
+	00206: ALIGNRP    
+	00207: SRP0       
+	00208: ALIGNRP    
+	00209: MIRP[srp0,nmd,rd,0] 
+	00210: ALIGNRP    
+	00211: SRP0       
+	00212: MIRP[nrp0,nmd,rd,0] 
+	00213: DELTAP1    
+	00214: FLIPOFF    
+	00215: SRP0       
+	00216: MIRP[srp0,nmd,rd,2] 
+	00217: DELTAP2    
+	00218: CALL       
+	00219: CALL       
+	00220: CALL       
+	00221: CALL       
+	00222: CALL       
+	00223: ALIGNRP    
+	00224: SRP0       
+	00225: ALIGNRP    
+	00226: SRP0       
+	00227: ALIGNRP    
+	00228: FLIPON     
+	00229: SRP0       
+	00230: MIRP[srp0,md,rd,1] 
+	00231: ALIGNRP    
+	00232: SRP0       
+	00233: ALIGNRP    
+	00234: SRP0       
+	00235: ALIGNRP    
+	00236: SVTCA[y-axis] 
+	00237: MIAP[rd+ci] 
+	00238: ALIGNRP    
+	00239: MIAP[rd+ci] 
+	00240: ALIGNRP    
+	00241: SRP0       
+	00242: ALIGNRP    
+	00243: SRP0       
+	00244: ALIGNRP    
+	00245: SRP0       
+	00246: ALIGNRP    
+	00247: SRP0       
+	00248: MIRP[srp0,md,rd,1] 
+	00249: ALIGNRP    
+	00250: MIAP[rd+ci] 
+	00251: MIRP[nrp0,md,rd,1] 
+	00252: MIAP[rd+ci] 
+	00253: MIRP[nrp0,md,rd,1] 
+	00254: SRP2       
+	00255: IP         
+	00256: SRP1       
+	00257: SRP2       
+	00258: IP         
+	00259: IUP[y]     
+	00260: IUP[x]     
+	00261: RS         
+	00262: JROF       
+	00263: NPUSHB      (14):    14    15     6     7    14     7    16    27     0    15 
+	                             6    13    27     1 
+	00279: CALL       
+	00280: SVTCA[x-axis] 
+	00281: CALL       
+	00282: FLIPRGON   
+	00283: FLIPRGON   
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short On
+	 11:                      Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:                      Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         On
+	 18:  YDual XDual                 X-Short On
+	 19:        XDual         Y-Short         On
+	 20:  YDual                       X-Short On
+	 21:        XDual                         On
+	 22:                                      On
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual                 X-Short On
+	 25:        XDual         Y-Short         On
+	 26:                              X-Short On
+	 27:        XDual                         On
+	 28:  YDual XDual                 X-Short On
+	 29:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   183,     0)  ->  Abs (   183,     0)
+	  1: Rel (     0,   923)  ->  Abs (   183,   923)
+	  2: Rel (  -160,     0)  ->  Abs (    23,   923)
+	  3: Rel (     0,   139)  ->  Abs (    23,  1062)
+	  4: Rel (   160,     0)  ->  Abs (   183,  1062)
+	  5: Rel (     0,   103)  ->  Abs (   183,  1165)
+	  6: Rel (     0,   158)  ->  Abs (   183,  1323)
+	  7: Rel (   136,   168)  ->  Abs (   319,  1491)
+	  8: Rel (   147,     0)  ->  Abs (   466,  1491)
+	  9: Rel (    99,     0)  ->  Abs (   565,  1491)
+	 10: Rel (    84,   -23)  ->  Abs (   649,  1468)
+	 11: Rel (   -28,  -152)  ->  Abs (   621,  1316)
+	 12: Rel (   -53,     9)  ->  Abs (   568,  1325)
+	 13: Rel (   -44,     0)  ->  Abs (   524,  1325)
+	 14: Rel (   -93,     0)  ->  Abs (   431,  1325)
+	 15: Rel (   -68,   -74)  ->  Abs (   363,  1251)
+	 16: Rel (     0,  -120)  ->  Abs (   363,  1131)
+	 17: Rel (     0,   -69)  ->  Abs (   363,  1062)
+	 18: Rel (   206,     0)  ->  Abs (   569,  1062)
+	 19: Rel (     0,  -139)  ->  Abs (   569,   923)
+	 20: Rel (  -206,     0)  ->  Abs (   363,   923)
+	 21: Rel (     0,  -923)  ->  Abs (   363,     0)
+	 22: Rel (   342,  1259)  ->  Abs (   705,  1259)
+	 23: Rel (     0,   207)  ->  Abs (   705,  1466)
+	 24: Rel (   180,     0)  ->  Abs (   885,  1466)
+	 25: Rel (     0,  -207)  ->  Abs (   885,  1259)
+	 26: Rel (  -180, -1259)  ->  Abs (   705,     0)
+	 27: Rel (     0,  1062)  ->  Abs (   705,  1062)
+	 28: Rel (   180,     0)  ->  Abs (   885,  1062)
+	 29: Rel (     0, -1062)  ->  Abs (   885,     0)
+
+	Glyph 192: off = 0x0000C9F6, len = 364
+	  numberOfContours:	2
+	  xMin:			23
+	  yMin:			0
+	  xMax:			883
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  21
+	  1:  25
+
+	  Length of Instructions:	285
+	00000: NPUSHB      (42):    22     8    11    13     3    10     8    24    24    23 
+	                             0    19    20    20     1     1     2    43     3    18 
+	                            17    17     4     4     3     6    13    28     8     1 
+	                            25    22    22     0    21    10    23    22    64    25 
+	                            25    24 
+	00044: PUSHW[1]            -12 
+	00047: NPUSHB      (11):    15    16     2    85    24    14    13    13     2    85 
+	                            24 
+	00060: PUSHW[1]            -24 
+	00063: NPUSHB      (11):    12    12     2    85    24    12    16    16     6    85 
+	                            24 
+	00076: PUSHW[1]            -22 
+	00079: NPUSHB      (44):    11    12     6    85   159    24   191    24   255    24 
+	                             3    24    26    27   144    10   176    10     2    10 
+	                            40    18    18    19   187    20    16    17    17    20 
+	                            20    21    64     0     5     4     4     1     1     0 
+	                           146     2     2     3 
+	00125: PUSHW[1]            -28 
+	00128: PUSHB[5]             14    16     2    85     3 
+	00134: PUSHW[1]            -20 
+	00137: PUSHB[5]             13    13     2    85     3 
+	00143: PUSHW[1]            -14 
+	00146: PUSHB[5]             12    12     2    85     3 
+	00152: PUSHW[1]             -6 
+	00155: PUSHB[5]             11    11     2    85     3 
+	00161: PUSHW[1]            -20 
+	00164: PUSHB[5]             13    13     6    85     3 
+	00170: PUSHW[1]            -14 
+	00173: NPUSHB      (10):    11    12     6    85     3    25    26   124    80    24 
+	00185: CALL       
+	00186: FLIPOFF    
+	00187: SRP0       
+	00188: MIRP[srp0,nmd,rd,0] 
+	00189: CALL       
+	00190: CALL       
+	00191: CALL       
+	00192: CALL       
+	00193: CALL       
+	00194: CALL       
+	00195: ALIGNRP    
+	00196: FLIPON     
+	00197: SRP0       
+	00198: MIRP[srp0,nmd,rd,0] 
+	00199: ALIGNRP    
+	00200: SRP0       
+	00201: ALIGNRP    
+	00202: SRP0       
+	00203: ALIGNRP    
+	00204: SRP0       
+	00205: MIRP[srp0,md,rd,1] 
+	00206: ALIGNRP    
+	00207: SRP0       
+	00208: ALIGNRP    
+	00209: SRP0       
+	00210: ALIGNRP    
+	00211: SRP0       
+	00212: MIRP[srp0,nmd,rd,0] 
+	00213: ALIGNRP    
+	00214: SRP0       
+	00215: MIRP[nrp0,nmd,rd,0] 
+	00216: DELTAP1    
+	00217: FLIPOFF    
+	00218: SRP0       
+	00219: MIRP[srp0,nmd,rd,2] 
+	00220: DELTAP2    
+	00221: CALL       
+	00222: CALL       
+	00223: CALL       
+	00224: CALL       
+	00225: CALL       
+	00226: ALIGNRP    
+	00227: FLIPON     
+	00228: SRP0       
+	00229: MIRP[srp0,md,rd,1] 
+	00230: ALIGNRP    
+	00231: SVTCA[y-axis] 
+	00232: MIAP[rd+ci] 
+	00233: ALIGNRP    
+	00234: ALIGNRP    
+	00235: SRP0       
+	00236: ALIGNRP    
+	00237: MIAP[rd+ci] 
+	00238: MIRP[nrp0,md,rd,1] 
+	00239: MIAP[rd+ci] 
+	00240: ALIGNRP    
+	00241: SRP0       
+	00242: ALIGNRP    
+	00243: SRP0       
+	00244: ALIGNRP    
+	00245: SRP0       
+	00246: MIRP[srp0,md,rd,1] 
+	00247: ALIGNRP    
+	00248: SRP0       
+	00249: ALIGNRP    
+	00250: SRP0       
+	00251: ALIGNRP    
+	00252: MIAP[rd+ci] 
+	00253: ALIGNRP    
+	00254: SRP1       
+	00255: SRP2       
+	00256: IP         
+	00257: SRP1       
+	00258: SRP2       
+	00259: IP         
+	00260: IUP[y]     
+	00261: IUP[x]     
+	00262: RS         
+	00263: JROF       
+	00264: NPUSHB      (14):    14    15     6     7    14     7    16    27     0    15 
+	                             6    13    27     1 
+	00280: CALL       
+	00281: SVTCA[x-axis] 
+	00282: CALL       
+	00283: FLIPRGON   
+	00284: FLIPRGON   
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short On
+	 11:                      Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:                      Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         On
+	 18:  YDual XDual                 X-Short On
+	 19:        XDual         Y-Short         On
+	 20:  YDual                       X-Short On
+	 21:        XDual                         On
+	 22:  YDual                               On
+	 23:        XDual                         On
+	 24:  YDual XDual                 X-Short On
+	 25:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   183,     0)  ->  Abs (   183,     0)
+	  1: Rel (     0,   923)  ->  Abs (   183,   923)
+	  2: Rel (  -160,     0)  ->  Abs (    23,   923)
+	  3: Rel (     0,   139)  ->  Abs (    23,  1062)
+	  4: Rel (   160,     0)  ->  Abs (   183,  1062)
+	  5: Rel (     0,   103)  ->  Abs (   183,  1165)
+	  6: Rel (     0,   158)  ->  Abs (   183,  1323)
+	  7: Rel (   136,   168)  ->  Abs (   319,  1491)
+	  8: Rel (   147,     0)  ->  Abs (   466,  1491)
+	  9: Rel (    99,     0)  ->  Abs (   565,  1491)
+	 10: Rel (    84,   -23)  ->  Abs (   649,  1468)
+	 11: Rel (   -28,  -152)  ->  Abs (   621,  1316)
+	 12: Rel (   -53,     9)  ->  Abs (   568,  1325)
+	 13: Rel (   -44,     0)  ->  Abs (   524,  1325)
+	 14: Rel (   -93,     0)  ->  Abs (   431,  1325)
+	 15: Rel (   -68,   -74)  ->  Abs (   363,  1251)
+	 16: Rel (     0,  -120)  ->  Abs (   363,  1131)
+	 17: Rel (     0,   -69)  ->  Abs (   363,  1062)
+	 18: Rel (   206,     0)  ->  Abs (   569,  1062)
+	 19: Rel (     0,  -139)  ->  Abs (   569,   923)
+	 20: Rel (  -206,     0)  ->  Abs (   363,   923)
+	 21: Rel (     0,  -923)  ->  Abs (   363,     0)
+	 22: Rel (   340,     0)  ->  Abs (   703,     0)
+	 23: Rel (     0,  1466)  ->  Abs (   703,  1466)
+	 24: Rel (   180,     0)  ->  Abs (   883,  1466)
+	 25: Rel (     0, -1466)  ->  Abs (   883,     0)
+
+	Glyph 193: off = 0x0000CB62, len = 224
+	  numberOfContours:	1
+	  xMin:			73
+	  yMin:			-346
+	  xMax:			1058
+	  yMax:			1446
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	152
+	00000: NPUSHB      (81):    13    14    14     5     5     6    32     7     7    12 
+	                            11    11     8   136    10     9     0    16    15    15 
+	                             4     4     3    32     1     2     2    17    18    18 
+	                             1   136    19     0    12    13    13    16    17   110 
+	                            19    10    11    11    14    14    15    15    18    18 
+	                            19    32     0     9     8     8     5     5     4     4 
+	                             1     1     0   110     2     7     6     6     2     2 
+	                            64     3   144     3     2     3    62    20   112   140 
+	                            24 
+	00083: CALL       
+	00084: SRP0       
+	00085: MIRP[srp0,nmd,rd,0] 
+	00086: DELTAP1    
+	00087: ALIGNRP    
+	00088: SRP0       
+	00089: ALIGNRP    
+	00090: SRP0       
+	00091: ALIGNRP    
+	00092: SRP0       
+	00093: MIRP[srp0,nmd,rd,0] 
+	00094: ALIGNRP    
+	00095: SRP0       
+	00096: ALIGNRP    
+	00097: SRP0       
+	00098: ALIGNRP    
+	00099: SRP0       
+	00100: ALIGNRP    
+	00101: SRP0       
+	00102: ALIGNRP    
+	00103: SRP0       
+	00104: MIRP[srp0,md,rd,1] 
+	00105: ALIGNRP    
+	00106: SRP0       
+	00107: ALIGNRP    
+	00108: SRP0       
+	00109: ALIGNRP    
+	00110: SRP0       
+	00111: ALIGNRP    
+	00112: SRP0       
+	00113: ALIGNRP    
+	00114: SRP0       
+	00115: MIRP[srp0,nmd,rd,0] 
+	00116: ALIGNRP    
+	00117: ALIGNRP    
+	00118: SRP0       
+	00119: ALIGNRP    
+	00120: SVTCA[y-axis] 
+	00121: MDAP[rd]   
+	00122: ALIGNRP    
+	00123: MIRP[srp0,nmd,rd,0] 
+	00124: ALIGNRP    
+	00125: SRP0       
+	00126: ALIGNRP    
+	00127: ALIGNRP    
+	00128: SRP0       
+	00129: ALIGNRP    
+	00130: MIRP[srp0,md,rd,1] 
+	00131: ALIGNRP    
+	00132: SRP0       
+	00133: ALIGNRP    
+	00134: SRP0       
+	00135: ALIGNRP    
+	00136: MIAP[rd+ci] 
+	00137: ALIGNRP    
+	00138: MIRP[srp0,nmd,rd,0] 
+	00139: ALIGNRP    
+	00140: SRP0       
+	00141: ALIGNRP    
+	00142: ALIGNRP    
+	00143: SRP0       
+	00144: MIRP[srp0,md,rd,1] 
+	00145: ALIGNRP    
+	00146: SRP0       
+	00147: ALIGNRP    
+	00148: SRP0       
+	00149: ALIGNRP    
+	00150: IUP[y]     
+	00151: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual                               On
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:        XDual                         On
+	 10:  YDual XDual                 X-Short On
+	 11:        XDual                         On
+	 12:  YDual                               On
+	 13:        XDual         Y-Short         On
+	 14:  YDual                               On
+	 15:        XDual                         On
+	 16:  YDual                               On
+	 17:        XDual         Y-Short         On
+	 18:  YDual                               On
+	 19:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   475,  -346)  ->  Abs (   475,  -346)
+	  1: Rel (     0,   370)  ->  Abs (   475,    24)
+	  2: Rel (  -402,     0)  ->  Abs (    73,    24)
+	  3: Rel (     0,   161)  ->  Abs (    73,   185)
+	  4: Rel (   402,     0)  ->  Abs (   475,   185)
+	  5: Rel (     0,   725)  ->  Abs (   475,   910)
+	  6: Rel (  -402,     0)  ->  Abs (    73,   910)
+	  7: Rel (     0,   161)  ->  Abs (    73,  1071)
+	  8: Rel (   402,     0)  ->  Abs (   475,  1071)
+	  9: Rel (     0,   375)  ->  Abs (   475,  1446)
+	 10: Rel (   180,     0)  ->  Abs (   655,  1446)
+	 11: Rel (     0,  -375)  ->  Abs (   655,  1071)
+	 12: Rel (   403,     0)  ->  Abs (  1058,  1071)
+	 13: Rel (     0,  -161)  ->  Abs (  1058,   910)
+	 14: Rel (  -403,     0)  ->  Abs (   655,   910)
+	 15: Rel (     0,  -725)  ->  Abs (   655,   185)
+	 16: Rel (   403,     0)  ->  Abs (  1058,   185)
+	 17: Rel (     0,  -161)  ->  Abs (  1058,    24)
+	 18: Rel (  -403,     0)  ->  Abs (   655,    24)
+	 19: Rel (     0,  -370)  ->  Abs (   655,  -346)
+
+	Glyph 194: off = 0x0000CC42, len = 50
+	  numberOfContours:	1
+	  xMin:			185
+	  yMin:			619
+	  xMax:			390
+	  yMax:			824
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	26
+	00000: NPUSHB      (14):     1    60     0     2    60    32     0     1     0   160 
+	                             4   161   152    24 
+	00016: CALL       
+	00017: SRP0       
+	00018: MIRP[srp0,nmd,rd,0] 
+	00019: DELTAP1    
+	00020: MIRP[srp0,md,rd,1] 
+	00021: SVTCA[y-axis] 
+	00022: MDAP[rd]   
+	00023: MIRP[nrp0,md,rd,1] 
+	00024: IUP[y]     
+	00025: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   185,   619)  ->  Abs (   185,   619)
+	  1: Rel (     0,   205)  ->  Abs (   185,   824)
+	  2: Rel (   205,     0)  ->  Abs (   390,   824)
+	  3: Rel (     0,  -205)  ->  Abs (   390,   619)
+
+	Glyph 195: off = 0x0000CC74, len = 156
+	  numberOfContours:	1
+	  xMin:			108
+	  yMin:			-271
+	  xMax:			317
+	  yMax:			209
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	110
+	00000: NPUSHB      (40):   243     8     1   145     8   160     8     2   114     8 
+	                           132     8     2     3     8     1   210     7     1   180 
+	                             7   195     7     2    84     7   100     7     2     8 
+	                            11     3     0     8   171     7     3   249     2     7 
+	00042: PUSHW[1]            336 
+	00045: NPUSHB      (24):     2     1    11     1    60     0     8     3   129     0 
+	                             7    56     8    39     1    32     0     1     0    25 
+	                            12   157   121    24 
+	00071: CALL       
+	00072: FLIPOFF    
+	00073: SRP0       
+	00074: MIRP[srp0,nmd,rd,0] 
+	00075: DELTAP1    
+	00076: ALIGNRP    
+	00077: FLIPON     
+	00078: MIRP[srp0,nmd,rd,0] 
+	00079: MIRP[nrp0,nmd,rd,0] 
+	00080: SRP0       
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SVTCA[y-axis] 
+	00083: MIAP[rd+ci] 
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: ALIGNRP    
+	00086: SRP0       
+	00087: ALIGNRP    
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: SRP0       
+	00090: MIRP[nrp0,md,rd,1] 
+	00091: SRP0       
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: SVTCA[x-axis] 
+	00094: SRP1       
+	00095: SRP2       
+	00096: IP         
+	00097: SVTCA[y-axis] 
+	00098: MDRP[nrp0,md,nrd,1] 
+	00099: IUP[y]     
+	00100: IUP[x]     
+	00101: SVTCA[x-axis] 
+	00102: DELTAP2    
+	00103: DELTAP2    
+	00104: DELTAP2    
+	00105: SVTCA[y-axis] 
+	00106: DELTAP3    
+	00107: DELTAP2    
+	00108: DELTAP2    
+	00109: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   124,     0)  ->  Abs (   124,     0)
+	  1: Rel (     0,   209)  ->  Abs (   124,   209)
+	  2: Rel (   193,     0)  ->  Abs (   317,   209)
+	  3: Rel (     0,  -165)  ->  Abs (   317,    44)
+	  4: Rel (     0,  -134)  ->  Abs (   317,   -90)
+	  5: Rel (   -31,   -59)  ->  Abs (   286,  -149)
+	  6: Rel (   -43,   -81)  ->  Abs (   243,  -230)
+	  7: Rel (   -91,   -41)  ->  Abs (   152,  -271)
+	  8: Rel (   -44,    71)  ->  Abs (   108,  -200)
+	  9: Rel (    54,    22)  ->  Abs (   162,  -178)
+	 10: Rel (    53,    95)  ->  Abs (   215,   -83)
+	 11: Rel (     3,    83)  ->  Abs (   218,     0)
+
+	Glyph 196: off = 0x0000CD10, len = 292
+	  numberOfContours:	2
+	  xMin:			71
+	  yMin:			-271
+	  xMax:			590
+	  yMax:			209
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	214
+	00000: NPUSHB      (78):   159    25   175    25     2     0     8     0    20     2 
+	                           226     7   226    19     2   208     7   208    19     2 
+	                           192     7   192    19     2   176     7   176    19     2 
+	                           160     7   160    19     2   145     7   145    19     2 
+	                           130     7   130    19     2   115     7   115    19     2 
+	                           240     8   240    20     2   100     8   100    20     2 
+	                            84     8    84    20     2    20    19     8     7    23 
+	                            15    12    11     3     0    20   171    19 
+	00080: PUSHW[1]            336 
+	00083: NPUSHB      (11):    13    15   249    14    14    13    60    12     8     7 
+	                             7 
+	00096: PUSHW[1]            336 
+	00099: NPUSHB      (44):     1     3   249     2     2     1    60     0     8    14 
+	                            15    60    12    19    56    20    39    13    12    64 
+	                            23    26    52    12   117     2     2     3    60     0 
+	                             7    56     8    39     1   143     0     1     0    25 
+	                            24   113   167    24 
+	00145: CALL       
+	00146: FLIPOFF    
+	00147: SRP0       
+	00148: MIRP[srp0,nmd,rd,0] 
+	00149: DELTAP1    
+	00150: ALIGNRP    
+	00151: FLIPON     
+	00152: MIRP[srp0,nmd,rd,0] 
+	00153: MIRP[nrp0,nmd,rd,0] 
+	00154: SRP0       
+	00155: MIRP[srp0,md,rd,1] 
+	00156: ALIGNRP    
+	00157: SRP0       
+	00158: MIRP[srp0,nmd,rd,2] 
+	00159: CALL       
+	00160: ALIGNRP    
+	00161: MIRP[srp0,nmd,rd,0] 
+	00162: MIRP[nrp0,nmd,rd,0] 
+	00163: SRP0       
+	00164: MIRP[srp0,md,rd,1] 
+	00165: ALIGNRP    
+	00166: SVTCA[y-axis] 
+	00167: MIAP[rd+ci] 
+	00168: MIRP[srp0,md,rd,1] 
+	00169: ALIGNRP    
+	00170: SRP0       
+	00171: MIRP[nrp0,md,rd,1] 
+	00172: SRP0       
+	00173: MIRP[srp0,md,rd,1] 
+	00174: ALIGNRP    
+	00175: MIAP[rd+ci] 
+	00176: MIRP[srp0,md,rd,1] 
+	00177: ALIGNRP    
+	00178: SRP0       
+	00179: MIRP[nrp0,md,rd,1] 
+	00180: SRP0       
+	00181: MIRP[srp0,md,rd,1] 
+	00182: MIRP[nrp0,md,rd,1] 
+	00183: SVTCA[x-axis] 
+	00184: SRP1       
+	00185: SRP2       
+	00186: IP         
+	00187: SRP1       
+	00188: SRP2       
+	00189: IP         
+	00190: SVTCA[y-axis] 
+	00191: SRP0       
+	00192: MDRP[nrp0,md,nrd,1] 
+	00193: SRP0       
+	00194: MDRP[nrp0,md,nrd,1] 
+	00195: IUP[y]     
+	00196: IUP[x]     
+	00197: SVTCA[y-axis] 
+	00198: DELTAP2    
+	00199: DELTAP2    
+	00200: DELTAP2    
+	00201: SVTCA[x-axis] 
+	00202: DELTAP2    
+	00203: DELTAP2    
+	00204: DELTAP2    
+	00205: DELTAP2    
+	00206: DELTAP2    
+	00207: DELTAP2    
+	00208: DELTAP2    
+	00209: DELTAP2    
+	00210: SVTCA[y-axis] 
+	00211: DELTAP3    
+	00212: SVTCA[x-axis] 
+	00213: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual                 X-Short On
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:  YDual               Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    87,     0)  ->  Abs (    87,     0)
+	  1: Rel (     0,   209)  ->  Abs (    87,   209)
+	  2: Rel (   193,     0)  ->  Abs (   280,   209)
+	  3: Rel (     0,  -165)  ->  Abs (   280,    44)
+	  4: Rel (     0,  -134)  ->  Abs (   280,   -90)
+	  5: Rel (   -31,   -59)  ->  Abs (   249,  -149)
+	  6: Rel (   -43,   -81)  ->  Abs (   206,  -230)
+	  7: Rel (   -91,   -41)  ->  Abs (   115,  -271)
+	  8: Rel (   -44,    71)  ->  Abs (    71,  -200)
+	  9: Rel (    54,    22)  ->  Abs (   125,  -178)
+	 10: Rel (    53,    95)  ->  Abs (   178,   -83)
+	 11: Rel (     3,    83)  ->  Abs (   181,     0)
+	 12: Rel (   216,     0)  ->  Abs (   397,     0)
+	 13: Rel (     0,   209)  ->  Abs (   397,   209)
+	 14: Rel (   193,     0)  ->  Abs (   590,   209)
+	 15: Rel (     0,  -165)  ->  Abs (   590,    44)
+	 16: Rel (     0,  -134)  ->  Abs (   590,   -90)
+	 17: Rel (   -31,   -59)  ->  Abs (   559,  -149)
+	 18: Rel (   -43,   -81)  ->  Abs (   516,  -230)
+	 19: Rel (   -91,   -41)  ->  Abs (   425,  -271)
+	 20: Rel (   -44,    71)  ->  Abs (   381,  -200)
+	 21: Rel (    54,    22)  ->  Abs (   435,  -178)
+	 22: Rel (    53,    95)  ->  Abs (   488,   -83)
+	 23: Rel (     3,    83)  ->  Abs (   491,     0)
+
+	Glyph 197: off = 0x0000CE34, len = 630
+	  numberOfContours:	7
+	  xMin:			37
+	  yMin:			-54
+	  xMax:			2011
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  15
+	  2:  30
+	  3:  42
+	  4:  57
+	  5:  69
+	  6:  84
+
+	  Length of Instructions:	382
+	00000: NPUSHB      (11):   152     1   151     3     2   179     8     1     2     3 
+	                             3 
+	00013: PUSHW[1]            666 
+	00016: NPUSHB      (15):     0     1    20     0     0     1     2     1    50    43 
+	                             3     0    23    16    19 
+	00033: PUSHW[5]            671    13   287    27   671 
+	00044: NPUSHB      (11):     7     2     1    58     7     1     3     0     0    40 
+	                            81 
+	00057: PUSHW[1]            671 
+	00060: PUSHB[3]             61    61    54 
+	00064: PUSHW[6]            671    34   287    40    73   671 
+	00077: PUSHB[3]             67    67    46 
+	00081: PUSHW[1]            671 
+	00084: PUSHB[5]             40    11    86   105    77 
+	00090: PUSHW[5]            666    64   438    70   666 
+	00101: PUSHB[3]             58   106    50 
+	00105: PUSHW[5]            666    37   438    43   666 
+	00116: PUSHB[3]             31   108    23 
+	00120: PUSHW[5]            666    10   438    16   666 
+	00131: PUSHB[4]              4   105    85    86 
+	00136: PUSHW[1]            493 
+	00139: PUSHB[4]             33   155   104    24 
+	00144: CALL       
+	00145: CALL       
+	00146: MIRP[srp0,nmd,rd,2] 
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: MIRP[srp0,md,rd,1] 
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: MIRP[srp0,nmd,rd,2] 
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: MIRP[srp0,md,rd,1] 
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: MIRP[srp0,nmd,rd,2] 
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: MIRP[srp0,md,rd,1] 
+	00157: MIRP[nrp0,md,rd,1] 
+	00158: MIRP[nrp0,nmd,rd,2] 
+	00159: SVTCA[y-axis] 
+	00160: MIAP[rd+ci] 
+	00161: MIRP[nrp0,md,rd,1] 
+	00162: ALIGNRP    
+	00163: SRP0       
+	00164: MIRP[nrp0,md,rd,1] 
+	00165: SRP0       
+	00166: MIRP[srp0,md,rd,1] 
+	00167: MIRP[nrp0,md,rd,1] 
+	00168: ALIGNRP    
+	00169: SRP0       
+	00170: MIRP[nrp0,md,rd,1] 
+	00171: SRP0       
+	00172: ALIGNRP    
+	00173: SRP0       
+	00174: ALIGNRP    
+	00175: MIAP[rd+ci] 
+	00176: MIRP[srp0,nmd,rd,0] 
+	00177: ALIGNRP    
+	00178: SRP0       
+	00179: MIRP[nrp0,md,rd,1] 
+	00180: MIRP[srp0,md,rd,1] 
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: SVTCA[x-axis] 
+	00183: SRP1       
+	00184: SRP2       
+	00185: IP         
+	00186: IP         
+	00187: SRP1       
+	00188: SRP2       
+	00189: IP         
+	00190: IP         
+	00191: SDPVTL[1]  
+	00192: MDAP[nrd]  
+	00193: CALL       
+	00194: SDPVTL[1]  
+	00195: RDTG       
+	00196: MDRP[nrp0,nmd,rd,0] 
+	00197: IUP[y]     
+	00198: IUP[x]     
+	00199: RTG        
+	00200: RS         
+	00201: JROF       
+	00202: NPUSHB     (140):     5    84    83    37    79    38    75    37    56    37 
+	                            52    38    48    37    29    37    25    38    21    37 
+	                            82    60    70    31     0    80    62    77    31     1 
+	                            72    68    70    31     0    74    66    77    31     1 
+	                            55    33    43    31     0    53    35    50    31     1 
+	                            45    41    43    31     0    47    39    50    31     1 
+	                            28     6    16    31     0    26     8    23    31     1 
+	                            18    14    16    31     0    20    12    23    31     1 
+	                            84    59    81    31     1    78    63    81    31     1 
+	                            71    69    73    31     0    76    65    73    31     0 
+	                            57    32    54    31     1    51    36    54    31     1 
+	                            44    42    46    31     0    49    38    46    31     0 
+	                            30     5    27    31     1    24     9    27    31     1 
+	                            17    15    19    31     0    22    11    19    31     0 
+	00344: SVTCA[y-axis] 
+	00345: CALL       
+	00346: CALL       
+	00347: CALL       
+	00348: CALL       
+	00349: CALL       
+	00350: CALL       
+	00351: CALL       
+	00352: CALL       
+	00353: CALL       
+	00354: CALL       
+	00355: CALL       
+	00356: CALL       
+	00357: SVTCA[x-axis] 
+	00358: CALL       
+	00359: CALL       
+	00360: CALL       
+	00361: CALL       
+	00362: CALL       
+	00363: CALL       
+	00364: CALL       
+	00365: CALL       
+	00366: CALL       
+	00367: CALL       
+	00368: CALL       
+	00369: CALL       
+	00370: CALL       
+	00371: CALL       
+	00372: CALL       
+	00373: CALL       
+	00374: CALL       
+	00375: CALL       
+	00376: CALL       
+	00377: CALL       
+	00378: CALL       
+	00379: FLIPRGON   
+	00380: SVTCA[x-axis] 
+	00381: DELTAP1    
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+	  4:                                      On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short         Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:                      Y-Short X-Short On
+	 30:                      Y-Short X-Short Off
+	 31:                                      On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:                      Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:        XDual         Y-Short         Off
+	 45:        XDual         Y-Short X-Short Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:  YDual XDual         Y-Short X-Short On
+	 49:  YDual XDual         Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual               Y-Short X-Short On
+	 53:  YDual               Y-Short X-Short Off
+	 54:  YDual                       X-Short On
+	 55:  YDual                       X-Short Off
+	 56:                      Y-Short X-Short On
+	 57:                      Y-Short X-Short Off
+	 58:                      Y-Short         On
+	 59:  YDual XDual         Y-Short         Off
+	 60:  YDual XDual         Y-Short X-Short Off
+	 61:  YDual XDual                 X-Short On
+	 62:  YDual XDual                 X-Short Off
+	 63:        XDual         Y-Short X-Short Off
+	 64:        XDual         Y-Short         On
+	 65:        XDual         Y-Short         Off
+	 66:                      Y-Short X-Short Off
+	 67:  YDual                       X-Short On
+	 68:  YDual                       X-Short Off
+	 69:  YDual               Y-Short X-Short Off
+	 70:  YDual XDual         Y-Short X-Short On
+	 71:        XDual         Y-Short         Off
+	 72:        XDual         Y-Short X-Short Off
+	 73:  YDual XDual                 X-Short On
+	 74:  YDual XDual                 X-Short Off
+	 75:  YDual XDual         Y-Short X-Short On
+	 76:  YDual XDual         Y-Short X-Short Off
+	 77:  YDual XDual         Y-Short         On
+	 78:  YDual XDual         Y-Short         Off
+	 79:  YDual               Y-Short X-Short On
+	 80:  YDual               Y-Short X-Short Off
+	 81:  YDual                       X-Short On
+	 82:  YDual                       X-Short Off
+	 83:                      Y-Short X-Short On
+	 84:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   320,   -54)  ->  Abs (   320,   -54)
+	  1: Rel (   601,  1545)  ->  Abs (   921,  1491)
+	  2: Rel (   131,     0)  ->  Abs (  1052,  1491)
+	  3: Rel (  -600, -1545)  ->  Abs (   452,   -54)
+	  4: Rel (  -415,  1153)  ->  Abs (    37,  1099)
+	  5: Rel (     0,   199)  ->  Abs (    37,  1298)
+	  6: Rel (   157,   181)  ->  Abs (   194,  1479)
+	  7: Rel (   129,     0)  ->  Abs (   323,  1479)
+	  8: Rel (   128,     0)  ->  Abs (   451,  1479)
+	  9: Rel (   160,  -182)  ->  Abs (   611,  1297)
+	 10: Rel (     0,  -194)  ->  Abs (   611,  1103)
+	 11: Rel (     0,  -196)  ->  Abs (   611,   907)
+	 12: Rel (  -140,  -199)  ->  Abs (   471,   708)
+	 13: Rel (  -146,     0)  ->  Abs (   325,   708)
+	 14: Rel (  -128,     0)  ->  Abs (   197,   708)
+	 15: Rel (  -160,   186)  ->  Abs (    37,   894)
+	 16: Rel (   148,   197)  ->  Abs (   185,  1091)
+	 17: Rel (     0,  -152)  ->  Abs (   185,   939)
+	 18: Rel (    79,  -106)  ->  Abs (   264,   833)
+	 19: Rel (    65,     0)  ->  Abs (   329,   833)
+	 20: Rel (    59,     0)  ->  Abs (   388,   833)
+	 21: Rel (    32,    45)  ->  Abs (   420,   878)
+	 22: Rel (    43,    60)  ->  Abs (   463,   938)
+	 23: Rel (     0,   155)  ->  Abs (   463,  1093)
+	 24: Rel (     0,   152)  ->  Abs (   463,  1245)
+	 25: Rel (   -44,    63)  ->  Abs (   419,  1308)
+	 26: Rel (   -34,    47)  ->  Abs (   385,  1355)
+	 27: Rel (   -60,     0)  ->  Abs (   325,  1355)
+	 28: Rel (   -62,     0)  ->  Abs (   263,  1355)
+	 29: Rel (   -33,   -46)  ->  Abs (   230,  1309)
+	 30: Rel (   -45,   -63)  ->  Abs (   185,  1246)
+	 31: Rel (   578,  -910)  ->  Abs (   763,   336)
+	 32: Rel (     0,   199)  ->  Abs (   763,   535)
+	 33: Rel (   157,   181)  ->  Abs (   920,   716)
+	 34: Rel (   128,     0)  ->  Abs (  1048,   716)
+	 35: Rel (   128,     0)  ->  Abs (  1176,   716)
+	 36: Rel (   161,  -182)  ->  Abs (  1337,   534)
+	 37: Rel (     0,  -194)  ->  Abs (  1337,   340)
+	 38: Rel (     0,  -196)  ->  Abs (  1337,   144)
+	 39: Rel (  -140,  -198)  ->  Abs (  1197,   -54)
+	 40: Rel (  -146,     0)  ->  Abs (  1051,   -54)
+	 41: Rel (  -128,     0)  ->  Abs (   923,   -54)
+	 42: Rel (  -160,   185)  ->  Abs (   763,   131)
+	 43: Rel (   148,   197)  ->  Abs (   911,   328)
+	 44: Rel (     0,  -151)  ->  Abs (   911,   177)
+	 45: Rel (    79,  -107)  ->  Abs (   990,    70)
+	 46: Rel (    65,     0)  ->  Abs (  1055,    70)
+	 47: Rel (    59,     0)  ->  Abs (  1114,    70)
+	 48: Rel (    32,    45)  ->  Abs (  1146,   115)
+	 49: Rel (    43,    61)  ->  Abs (  1189,   176)
+	 50: Rel (     0,   154)  ->  Abs (  1189,   330)
+	 51: Rel (     0,   153)  ->  Abs (  1189,   483)
+	 52: Rel (   -45,    62)  ->  Abs (  1144,   545)
+	 53: Rel (   -34,    47)  ->  Abs (  1110,   592)
+	 54: Rel (   -59,     0)  ->  Abs (  1051,   592)
+	 55: Rel (   -62,     0)  ->  Abs (   989,   592)
+	 56: Rel (   -33,   -46)  ->  Abs (   956,   546)
+	 57: Rel (   -45,   -62)  ->  Abs (   911,   484)
+	 58: Rel (   526,  -148)  ->  Abs (  1437,   336)
+	 59: Rel (     0,   199)  ->  Abs (  1437,   535)
+	 60: Rel (   157,   181)  ->  Abs (  1594,   716)
+	 61: Rel (   129,     0)  ->  Abs (  1723,   716)
+	 62: Rel (   128,     0)  ->  Abs (  1851,   716)
+	 63: Rel (   160,  -182)  ->  Abs (  2011,   534)
+	 64: Rel (     0,  -194)  ->  Abs (  2011,   340)
+	 65: Rel (     0,  -196)  ->  Abs (  2011,   144)
+	 66: Rel (  -139,  -198)  ->  Abs (  1872,   -54)
+	 67: Rel (  -147,     0)  ->  Abs (  1725,   -54)
+	 68: Rel (  -128,     0)  ->  Abs (  1597,   -54)
+	 69: Rel (  -160,   185)  ->  Abs (  1437,   131)
+	 70: Rel (   148,   197)  ->  Abs (  1585,   328)
+	 71: Rel (     0,  -151)  ->  Abs (  1585,   177)
+	 72: Rel (    79,  -107)  ->  Abs (  1664,    70)
+	 73: Rel (    65,     0)  ->  Abs (  1729,    70)
+	 74: Rel (    59,     0)  ->  Abs (  1788,    70)
+	 75: Rel (    32,    45)  ->  Abs (  1820,   115)
+	 76: Rel (    43,    61)  ->  Abs (  1863,   176)
+	 77: Rel (     0,   154)  ->  Abs (  1863,   330)
+	 78: Rel (     0,   153)  ->  Abs (  1863,   483)
+	 79: Rel (   -44,    62)  ->  Abs (  1819,   545)
+	 80: Rel (   -34,    47)  ->  Abs (  1785,   592)
+	 81: Rel (   -60,     0)  ->  Abs (  1725,   592)
+	 82: Rel (   -62,     0)  ->  Abs (  1663,   592)
+	 83: Rel (   -33,   -46)  ->  Abs (  1630,   546)
+	 84: Rel (   -45,   -62)  ->  Abs (  1585,   484)
+
+	Glyph 198: off = 0x0000D0AA, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	320
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     2   111    17   159    17     2     0    17    20     1 
+	                             2    65     2     1    21 
+	00017: PUSHW[3]            545    41   356 
+	00024: SCANCTRL   
+	00025: SVTCA[y-axis] 
+	00026: CALL       
+	00027: SVTCA[x-axis] 
+	00028: CALL       
+	00029: DELTAP3    
+	00030: SHC[rp1,zp0] 
+
+	Glyph 199: off = 0x0000D0E4, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			162
+	  yMin:			0
+	  xMax:			1256
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	363
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     1    12    64    30    32    52     0    12   175    12 
+	                             2    47    12    95    12     2    12     2 
+	00020: PUSHW[1]           -513 
+	00023: PUSHB[5]             72    43     1     1    18 
+	00029: PUSHW[2]            545    41 
+	00034: SVTCA[y-axis] 
+	00035: CALL       
+	00036: SVTCA[x-axis] 
+	00037: CALL       
+	00038: DELTAP1    
+	00039: DELTAP2    
+	00040: CALL       
+	00041: SHC[rp1,zp0] 
+
+	Glyph 200: off = 0x0000D128, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	319
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              2    18 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (11):    18    25    52    18    12     0    72    43     2     1 
+	                            15 
+	00019: PUSHW[3]            545    41   356 
+	00026: SCANCTRL   
+	00027: SVTCA[y-axis] 
+	00028: CALL       
+	00029: SVTCA[x-axis] 
+	00030: CALL       
+	00031: CALL       
+	00032: SHC[rp1,zp0] 
+
+	Glyph 201: off = 0x0000D164, len = 98
+	  numberOfContours:	-1  (Composite)
+	  xMin:			162
+	  yMin:			0
+	  xMax:			1256
+	  yMax:			1761
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	364
+		Y WOffset:	286
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              2     1    14 
+	00004: PUSHW[1]            -64 
+	00007: NPUSHB      (10):    11    12     6    85    14    64    24    28    52    14 
+	00019: PUSHW[1]            -64 
+	00022: NPUSHB      (20):    29    32    52    14    64    15    17    52   160    14 
+	                           239    14     2   160    14   176    14     2    14     4 
+	00044: PUSHW[1]            270 
+	00047: PUSHB[6]             72    43     1     2     2    19 
+	00054: PUSHW[2]            545    41 
+	00059: SVTCA[y-axis] 
+	00060: CALL       
+	00061: SVTCA[x-axis] 
+	00062: CALL       
+	00063: DELTAP1    
+	00064: DELTAP2    
+	00065: CALL       
+	00066: CALL       
+	00067: CALL       
+	00068: CALL       
+	00069: SHC[rp1,zp0] 
+	00070: SHC[rp1,zp0] 
+
+	Glyph 202: off = 0x0000D1C6, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			162
+	  yMin:			0
+	  xMax:			1256
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	385
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     1   159    13   175    13     2   111    13   127    13 
+	                             2    64    13     1    13     2 
+	00018: PUSHW[1]           -517 
+	00021: PUSHB[5]             72    43     1     1    13 
+	00027: PUSHW[2]            545    41 
+	00032: SVTCA[y-axis] 
+	00033: CALL       
+	00034: SVTCA[x-axis] 
+	00035: CALL       
+	00036: DELTAP1    
+	00037: DELTAP2    
+	00038: DELTAP2    
+	00039: SHC[rp1,zp0] 
+
+	Glyph 203: off = 0x0000D208, len = 70
+	  numberOfContours:	-1  (Composite)
+	  xMin:			141
+	  yMin:			0
+	  xMax:			510
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	-81
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1     7 
+	00003: PUSHW[1]            -64 
+	00006: PUSHB[4]             23    25    52     7 
+	00011: PUSHW[1]            -64 
+	00014: NPUSHB      (14):    34    37    52    47     7     1     7     1    90    72 
+	                            43     1     1     7 
+	00030: PUSHW[2]            545    41 
+	00035: SVTCA[y-axis] 
+	00036: CALL       
+	00037: SVTCA[x-axis] 
+	00038: CALL       
+	00039: DELTAP1    
+	00040: CALL       
+	00041: CALL       
+	00042: SHC[rp1,zp0] 
+
+	Glyph 204: off = 0x0000D24E, len = 76
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-32
+	  yMin:			0
+	  xMax:			601
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	-57
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1     1    10 
+	00005: PUSHW[2]            545    41 
+	00010: SVTCA[y-axis] 
+	00011: CALL       
+	00012: SVTCA[x-axis] 
+	00013: PUSHB[2]              6     2 
+	00016: RS         
+	00017: EQ         
+	00018: IF         
+	00019: PUSHB[6]              0     6     9     1     2    65 
+	00026: CALL       
+	00027: ELSE       
+	00028: NPUSHB      (15):     4    64    51    52    52     4    64    29    31    52 
+	                             4     1    97    72    43 
+	00045: CALL       
+	00046: CALL       
+	00047: CALL       
+	00048: EIF        
+	00049: SHC[rp1,zp0] 
+
+	Glyph 205: off = 0x0000D29A, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			4
+	  yMin:			0
+	  xMax:			565
+	  yMax:			1761
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	-57
+		Y WOffset:	286
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (11):     2     1     8     2     0    72    43     1     2     2 
+	                            11 
+	00013: PUSHW[2]            545    41 
+	00018: SVTCA[y-axis] 
+	00019: CALL       
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: SHC[rp1,zp0] 
+	00023: SHC[rp1,zp0] 
+
+	Glyph 206: off = 0x0000D2CC, len = 84
+	  numberOfContours:	-1  (Composite)
+	  xMin:			54
+	  yMin:			0
+	  xMax:			430
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	-35
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1     1     5 
+	00005: PUSHW[2]            545    41 
+	00010: SVTCA[y-axis] 
+	00011: CALL       
+	00012: SVTCA[x-axis] 
+	00013: PUSHB[2]              6     2 
+	00016: RS         
+	00017: EQ         
+	00018: IF         
+	00019: PUSHB[6]             45     4     4     2     2    65 
+	00026: CALL       
+	00027: ELSE       
+	00028: NPUSHB      (15):     5    64    23    25    52     5    64    34    37    52 
+	                            32     5     1     5     2 
+	00045: PUSHW[1]            -90 
+	00048: PUSHB[2]             72    43 
+	00051: CALL       
+	00052: DELTAP1    
+	00053: CALL       
+	00054: CALL       
+	00055: EIF        
+	00056: SHC[rp1,zp0] 
+
+	Glyph 207: off = 0x0000D320, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1501
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	455
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              2    31 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (16):    22    25    52   112    31   223    31     2    31     3 
+	                             0    72    43     2     1    31 
+	00024: PUSHW[2]            545    41 
+	00029: SVTCA[y-axis] 
+	00030: CALL       
+	00031: SVTCA[x-axis] 
+	00032: CALL       
+	00033: DELTAP2    
+	00034: CALL       
+	00035: SHC[rp1,zp0] 
+
+	Glyph 208: off = 0x0000D35E, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1501
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	454
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    30    33     3     3    65     2     1    34 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 209: off = 0x0000D38E, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1501
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	451
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              2    29 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (16):    11    12    52    80    29   239    29     2    29     3 
+	                             0    72    43     2     1    29 
+	00024: PUSHW[2]            545    41 
+	00029: SVTCA[y-axis] 
+	00030: CALL       
+	00031: SVTCA[x-axis] 
+	00032: CALL       
+	00033: DELTAP1    
+	00034: CALL       
+	00035: SHC[rp1,zp0] 
+
+	Glyph 210: off = 0x0000D3CC, len = 70
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1314
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	392
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (27):     1    24    64    12    14    52    79    24     1    31 
+	                            24    47    24     2   127    24   143    24     2    24 
+	                            17     0    72    43     1     1    24 
+	00029: PUSHW[2]            545    41 
+	00034: SVTCA[y-axis] 
+	00035: CALL       
+	00036: SVTCA[x-axis] 
+	00037: CALL       
+	00038: DELTAP1    
+	00039: DELTAP2    
+	00040: DELTAP2    
+	00041: CALL       
+	00042: SHC[rp1,zp0] 
+
+	Glyph 211: off = 0x0000D412, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1314
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	392
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1     1    27 
+	00004: PUSHW[2]            545    41 
+	00009: SVTCA[y-axis] 
+	00010: CALL       
+	00011: SVTCA[x-axis] 
+	00012: PUSHB[2]              6     2 
+	00015: RS         
+	00016: EQ         
+	00017: IF         
+	00018: PUSHB[7]              1     0    23    26    11     1    65 
+	00026: CALL       
+	00027: SHC[rp1,zp0] 
+	00028: ELSE       
+	00029: PUSHB[7]              1     1    21    17    20    72    39 
+	00037: CALL       
+	00038: EIF        
+
+	Glyph 212: off = 0x0000D454, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1314
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	389
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (20):     1    22    64    23    25    52   127    22     1   159 
+	                            22     1    22    17     0    72    43     1     1    22 
+	00022: PUSHW[2]            545    41 
+	00027: SVTCA[y-axis] 
+	00028: CALL       
+	00029: SVTCA[x-axis] 
+	00030: CALL       
+	00031: DELTAP1    
+	00032: DELTAP2    
+	00033: CALL       
+	00034: SHC[rp1,zp0] 
+
+	Glyph 213: off = 0x0000D492, len = 130
+	  numberOfContours:	1
+	  xMin:			198
+	  yMin:			0
+	  xMax:			378
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	106
+	00000: PUSHB[6]              2     1     6     0    10     5 
+	00007: PUSHW[1]            -28 
+	00010: NPUSHB      (16):    15    15     2    85     5   163     2     3    37     1 
+	                             0     0    32     0     2     0 
+	00028: PUSHW[1]            -28 
+	00031: PUSHB[5]             16    16     2    85     0 
+	00037: PUSHW[1]            -20 
+	00040: PUSHB[5]             13    15     2    85     0 
+	00046: PUSHW[1]            -16 
+	00049: PUSHB[5]             12    12     2    85     0 
+	00055: PUSHW[1]             -6 
+	00058: PUSHB[5]             11    11     2    85     0 
+	00064: PUSHW[1]             -4 
+	00067: NPUSHB      (16):    12    12     6    85     0    29    11    11     6    85 
+	                             0   163     4   234   210    24 
+	00085: CALL       
+	00086: SRP0       
+	00087: MIRP[srp0,nmd,rd,2] 
+	00088: CALL       
+	00089: CALL       
+	00090: CALL       
+	00091: CALL       
+	00092: CALL       
+	00093: CALL       
+	00094: DELTAP1    
+	00095: ALIGNRP    
+	00096: MIRP[srp0,md,rd,1] 
+	00097: ALIGNRP    
+	00098: MIRP[nrp0,nmd,rd,2] 
+	00099: CALL       
+	00100: SVTCA[y-axis] 
+	00101: MIAP[rd+ci] 
+	00102: MIAP[rd+ci] 
+	00103: ALIGNRP    
+	00104: IUP[y]     
+	00105: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   198,     0)  ->  Abs (   198,     0)
+	  1: Rel (     0,  1062)  ->  Abs (   198,  1062)
+	  2: Rel (   180,     0)  ->  Abs (   378,  1062)
+	  3: Rel (     0, -1062)  ->  Abs (   378,     0)
+
+	Glyph 214: off = 0x0000D514, len = 110
+	  numberOfContours:	1
+	  xMin:			25
+	  yMin:			1194
+	  xMax:			658
+	  yMax:			1474
+
+	EndPoints
+	---------
+	  0:  6
+
+	  Length of Instructions:	73
+	00000: NPUSHB      (20):     5     6     1     0     2    16     2     2     2   135 
+	                             0   100     4     3     0     5    60     6    61     4 
+	00022: PUSHW[1]            -64 
+	00025: NPUSHB      (17):     9    12    52     4   100     0   100     3   127     1 
+	                            60     2    25     7   169   104    24 
+	00044: CALL       
+	00045: RTHG       
+	00046: FLIPOFF    
+	00047: SRP0       
+	00048: MIRP[srp0,nmd,rd,0] 
+	00049: RTG        
+	00050: FLIPON     
+	00051: MIRP[srp0,md,rd,1] 
+	00052: RTHG       
+	00053: MIRP[srp0,nmd,rd,2] 
+	00054: RTG        
+	00055: MIRP[srp0,md,rd,1] 
+	00056: MIRP[srp0,md,rd,1] 
+	00057: CALL       
+	00058: RTHG       
+	00059: MIRP[srp0,nmd,rd,2] 
+	00060: RTG        
+	00061: MIRP[nrp0,md,rd,1] 
+	00062: SVTCA[y-axis] 
+	00063: MIAP[rd+ci] 
+	00064: ALIGNRP    
+	00065: MIRP[nrp0,md,rd,1] 
+	00066: MIRP[srp0,md,rd,1] 
+	00067: DELTAP1    
+	00068: ALIGNRP    
+	00069: ALIGNRP    
+	00070: ALIGNRP    
+	00071: IUP[y]     
+	00072: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual                       X-Short On
+	  3:        XDual                 X-Short On
+	  4:  YDual XDual                 X-Short On
+	  5:        XDual                 X-Short On
+	  6:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   344,  1364)  ->  Abs (   344,  1364)
+	  1: Rel (  -113,  -170)  ->  Abs (   231,  1194)
+	  2: Rel (  -206,     0)  ->  Abs (    25,  1194)
+	  3: Rel (   216,   280)  ->  Abs (   241,  1474)
+	  4: Rel (   192,     0)  ->  Abs (   433,  1474)
+	  5: Rel (   225,  -280)  ->  Abs (   658,  1194)
+	  6: Rel (  -204,     0)  ->  Abs (   454,  1194)
+
+	Glyph 215: off = 0x0000D582, len = 230
+	  numberOfContours:	1
+	  xMin:			6
+	  yMin:			1219
+	  xMax:			676
+	  yMax:			1450
+
+	EndPoints
+	---------
+	  0:  23
+
+	  Length of Instructions:	151
+	00000: NPUSHB      (17):   135    14     1    64     8    18    16     7     5     4 
+	                            11    23     0    58    15    63     8 
+	00019: PUSHW[1]            696 
+	00022: PUSHB[3]             19    63     4 
+	00026: PUSHW[1]            692 
+	00029: NPUSHB      (25):    12     0    25    23    23    26    12   118    11   129 
+	                            16    77    17   157    23   118     0   127    24    25 
+	                           224    33   179   122    24 
+	00056: CALL       
+	00057: CALL       
+	00058: MIRP[srp0,nmd,rd,2] 
+	00059: MIRP[srp0,md,rd,1] 
+	00060: MIRP[srp0,nmd,rd,2] 
+	00061: MIRP[nrp0,nmd,rd,0] 
+	00062: MIRP[srp0,nmd,rd,0] 
+	00063: MIRP[srp0,md,rd,1] 
+	00064: FLIPOFF    
+	00065: RCVT       
+	00066: NEG        
+	00067: WCVTP      
+	00068: MIRP[nrp0,nmd,rd,2] 
+	00069: SVTCA[y-axis] 
+	00070: MIAP[rd+ci] 
+	00071: FLIPON     
+	00072: MIRP[nrp0,nmd,rd,2] 
+	00073: MIRP[nrp0,md,rd,0] 
+	00074: MIRP[srp0,md,rd,0] 
+	00075: MIRP[srp0,md,rd,1] 
+	00076: MIRP[nrp0,nmd,rd,0] 
+	00077: SVTCA[x-axis] 
+	00078: SRP1       
+	00079: SRP2       
+	00080: SLOOP      
+	00081: IP         
+	00082: IUP[y]     
+	00083: IUP[x]     
+	00084: RS         
+	00085: JROF       
+	00086: NPUSHB      (44):    20    22     9    14     1     3    21    37     2    38 
+	                            20     3    22    50     0    21    22     2     1    20 
+	                             3    23    50     0     9    14    11    50     1    21 
+	                             2    19    50     1    22     1    19    50     1    10 
+	                            13     8    50     0 
+	00132: SVTCA[y-axis] 
+	00133: CALL       
+	00134: CALL       
+	00135: CALL       
+	00136: SVTCA[x-axis] 
+	00137: CALL       
+	00138: CALL       
+	00139: SRP0       
+	00140: ALIGNRP    
+	00141: SRP0       
+	00142: ALIGNRP    
+	00143: CALL       
+	00144: CALL       
+	00145: CALL       
+	00146: FLIPRGON   
+	00147: FLIPRGON   
+	00148: FLIPRGON   
+	00149: SVTCA[x-axis] 
+	00150: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (     7,  1219)  ->  Abs (     7,  1219)
+	  1: Rel (    -1,   104)  ->  Abs (     6,  1323)
+	  2: Rel (    58,    62)  ->  Abs (    64,  1385)
+	  3: Rel (    57,    62)  ->  Abs (   121,  1447)
+	  4: Rel (    89,     0)  ->  Abs (   210,  1447)
+	  5: Rel (    62,     0)  ->  Abs (   272,  1447)
+	  6: Rel (   107,   -54)  ->  Abs (   379,  1393)
+	  7: Rel (    59,   -30)  ->  Abs (   438,  1363)
+	  8: Rel (    35,     0)  ->  Abs (   473,  1363)
+	  9: Rel (    32,     0)  ->  Abs (   505,  1363)
+	 10: Rel (    34,    35)  ->  Abs (   539,  1398)
+	 11: Rel (     7,    52)  ->  Abs (   546,  1450)
+	 12: Rel (   130,     0)  ->  Abs (   676,  1450)
+	 13: Rel (    -3,  -114)  ->  Abs (   673,  1336)
+	 14: Rel (  -109,  -114)  ->  Abs (   564,  1222)
+	 15: Rel (   -84,     0)  ->  Abs (   480,  1222)
+	 16: Rel (   -63,     0)  ->  Abs (   417,  1222)
+	 17: Rel (  -103,    56)  ->  Abs (   314,  1278)
+	 18: Rel (   -67,    36)  ->  Abs (   247,  1314)
+	 19: Rel (   -31,     0)  ->  Abs (   216,  1314)
+	 20: Rel (   -34,     0)  ->  Abs (   182,  1314)
+	 21: Rel (   -21,   -24)  ->  Abs (   161,  1290)
+	 22: Rel (   -22,   -24)  ->  Abs (   139,  1266)
+	 23: Rel (     1,   -47)  ->  Abs (   140,  1219)
+
+	Glyph 216: off = 0x0000D668, len = 60
+	  numberOfContours:	1
+	  xMin:			29
+	  yMin:			1227
+	  xMax:			653
+	  yMax:			1375
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	35
+	00000: PUSHW[2]              1   -64 
+	00005: NPUSHB      (15):    18    20    52     1    53     0     2    26     5     0 
+	                            25     4   169   104    24 
+	00022: CALL       
+	00023: FLIPOFF    
+	00024: SRP0       
+	00025: MIRP[nrp0,nmd,rd,0] 
+	00026: SRP0       
+	00027: MIRP[nrp0,nmd,rd,2] 
+	00028: SVTCA[y-axis] 
+	00029: MDAP[rd]   
+	00030: FLIPON     
+	00031: MIRP[nrp0,md,rd,1] 
+	00032: CALL       
+	00033: IUP[y]     
+	00034: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (    29,  1227)  ->  Abs (    29,  1227)
+	  1: Rel (     0,   148)  ->  Abs (    29,  1375)
+	  2: Rel (   624,     0)  ->  Abs (   653,  1375)
+	  3: Rel (     0,  -148)  ->  Abs (   653,  1227)
+
+	Glyph 217: off = 0x0000D6A4, len = 128
+	  numberOfContours:	1
+	  xMin:			46
+	  yMin:			1205
+	  xMax:			637
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	75
+	00000: PUSHB[4]             85     2     1    11 
+	00005: PUSHW[1]            671 
+	00008: NPUSHB      (12):    16     4   127     4     2     4     7     8     8     0 
+	                             0     8 
+	00022: PUSHW[4]            671     7     0   671 
+	00031: NPUSHB      (15):    64     1   189     4   236    32     7    25    14    16 
+	                             4     1   155    65    24 
+	00048: CALL       
+	00049: DELTAP1    
+	00050: FLIPOFF    
+	00051: SRP0       
+	00052: MIRP[srp0,nmd,rd,0] 
+	00053: SMD        
+	00054: RTHG       
+	00055: FLIPON     
+	00056: MIRP[srp0,md,rd,1] 
+	00057: MIRP[srp0,md,rd,1] 
+	00058: SMD        
+	00059: RTG        
+	00060: MIRP[nrp0,md,rd,1] 
+	00061: SRP0       
+	00062: MIRP[nrp0,md,rd,1] 
+	00063: SVTCA[y-axis] 
+	00064: MIAP[rd+ci] 
+	00065: ALIGNRP    
+	00066: SRP0       
+	00067: ALIGNRP    
+	00068: MDAP[rd]   
+	00069: DELTAP1    
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: IUP[y]     
+	00072: IUP[x]     
+	00073: SVTCA[x-axis] 
+	00074: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   514,  1464)  ->  Abs (   514,  1464)
+	  1: Rel (   123,     0)  ->  Abs (   637,  1464)
+	  2: Rel (   -15,  -125)  ->  Abs (   622,  1339)
+	  3: Rel (  -153,  -134)  ->  Abs (   469,  1205)
+	  4: Rel (  -127,     0)  ->  Abs (   342,  1205)
+	  5: Rel (  -128,     0)  ->  Abs (   214,  1205)
+	  6: Rel (  -153,   133)  ->  Abs (    61,  1338)
+	  7: Rel (   -15,   126)  ->  Abs (    46,  1464)
+	  8: Rel (   123,     0)  ->  Abs (   169,  1464)
+	  9: Rel (    14,   -68)  ->  Abs (   183,  1396)
+	 10: Rel (    83,   -67)  ->  Abs (   266,  1329)
+	 11: Rel (    70,     0)  ->  Abs (   336,  1329)
+	 12: Rel (    81,     0)  ->  Abs (   417,  1329)
+	 13: Rel (    83,    65)  ->  Abs (   500,  1394)
+
+	Glyph 218: off = 0x0000D724, len = 52
+	  numberOfContours:	1
+	  xMin:			229
+	  yMin:			1194
+	  xMax:			452
+	  yMax:			1418
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	28
+	00000: NPUSHB      (14):     2     1     3     0    60     1     3    60     0   203 
+	                             4   217   245    24 
+	00016: CALL       
+	00017: SRP0       
+	00018: MIRP[srp0,nmd,rd,2] 
+	00019: MIRP[nrp0,md,rd,1] 
+	00020: SVTCA[y-axis] 
+	00021: MDAP[rd]   
+	00022: MIRP[srp0,md,rd,1] 
+	00023: ALIGNRP    
+	00024: SRP0       
+	00025: ALIGNRP    
+	00026: IUP[y]     
+	00027: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   229,  1194)  ->  Abs (   229,  1194)
+	  1: Rel (     0,   224)  ->  Abs (   229,  1418)
+	  2: Rel (   223,     0)  ->  Abs (   452,  1418)
+	  3: Rel (     0,  -224)  ->  Abs (   452,  1194)
+
+	Glyph 219: off = 0x0000D758, len = 162
+	  numberOfContours:	2
+	  xMin:			162
+	  yMin:			1151
+	  xMax:			522
+	  yMax:			1517
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	86
+	00000: NPUSHB      (14):     6   132    18    77     3    77    12   132     0   108 
+	                            24   158   121    24 
+	00016: CALL       
+	00017: SRP0       
+	00018: MIRP[srp0,nmd,rd,2] 
+	00019: MIRP[srp0,md,rd,1] 
+	00020: RTHG       
+	00021: MIRP[srp0,nmd,rd,0] 
+	00022: MIRP[srp0,nmd,rd,0] 
+	00023: RTG        
+	00024: MIRP[nrp0,md,rd,1] 
+	00025: SVTCA[y-axis] 
+	00026: PUSHB[2]              6     2 
+	00029: RS         
+	00030: EQ         
+	00031: IF         
+	00032: PUSHB[3]             15   132     9 
+	00036: PUSHW[1]            -64 
+	00039: NPUSHB       (9):    11    14    52     9     9    21   132     3     1 
+	00050: MIAP[rd+ci] 
+	00051: MIRP[nrp0,md,rd,1] 
+	00052: SHP[rp1,zp0] 
+	00053: MDAP[rd]   
+	00054: CALL       
+	00055: MIRP[srp0,md,rd,1] 
+	00056: ELSE       
+	00057: PUSHB[5]              9   132    15    77     6 
+	00063: PUSHW[1]            692 
+	00066: PUSHB[6]              0    77    21   132     3     1 
+	00073: MIAP[rd+ci] 
+	00074: MIRP[srp0,md,rd,1] 
+	00075: RTHG       
+	00076: MIRP[srp0,nmd,rd,0] 
+	00077: RTG        
+	00078: MIRP[srp0,nmd,rd,2] 
+	00079: RTHG       
+	00080: MIRP[srp0,nmd,rd,0] 
+	00081: RTG        
+	00082: MIRP[nrp0,md,rd,1] 
+	00083: EIF        
+	00084: IUP[y]     
+	00085: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:        XDual         Y-Short         Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   162,  1338)  ->  Abs (   162,  1338)
+	  1: Rel (     0,    73)  ->  Abs (   162,  1411)
+	  2: Rel (   107,   106)  ->  Abs (   269,  1517)
+	  3: Rel (    73,     0)  ->  Abs (   342,  1517)
+	  4: Rel (    74,     0)  ->  Abs (   416,  1517)
+	  5: Rel (   106,  -107)  ->  Abs (   522,  1410)
+	  6: Rel (     0,   -76)  ->  Abs (   522,  1334)
+	  7: Rel (     0,   -77)  ->  Abs (   522,  1257)
+	  8: Rel (  -106,  -106)  ->  Abs (   416,  1151)
+	  9: Rel (   -73,     0)  ->  Abs (   343,  1151)
+	 10: Rel (   -75,     0)  ->  Abs (   268,  1151)
+	 11: Rel (  -106,   107)  ->  Abs (   162,  1258)
+	 12: Rel (    76,    79)  ->  Abs (   238,  1337)
+	 13: Rel (     0,   -47)  ->  Abs (   238,  1290)
+	 14: Rel (    63,   -64)  ->  Abs (   301,  1226)
+	 15: Rel (    43,     0)  ->  Abs (   344,  1226)
+	 16: Rel (    43,     0)  ->  Abs (   387,  1226)
+	 17: Rel (    63,    64)  ->  Abs (   450,  1290)
+	 18: Rel (     0,    45)  ->  Abs (   450,  1335)
+	 19: Rel (     0,    45)  ->  Abs (   450,  1380)
+	 20: Rel (   -62,    64)  ->  Abs (   388,  1444)
+	 21: Rel (   -44,     0)  ->  Abs (   344,  1444)
+	 22: Rel (   -43,     0)  ->  Abs (   301,  1444)
+	 23: Rel (   -63,   -63)  ->  Abs (   238,  1381)
+
+	Glyph 220: off = 0x0000D7FA, len = 136
+	  numberOfContours:	1
+	  xMin:			107
+	  yMin:			-421
+	  xMax:			540
+	  yMax:			23
+
+	EndPoints
+	---------
+	  0:  21
+
+	  Length of Instructions:	65
+	00000: PUSHB[5]             11     9    12    58     9 
+	00006: PUSHW[1]            693 
+	00009: PUSHB[6]             14   156    79     0     1     0 
+	00016: PUSHW[1]            602 
+	00019: NPUSHB      (15):     2     1    10    12    58    11   165     6   118    18 
+	                            77     1     2   156     1 
+	00036: PUSHW[1]            318 
+	00039: PUSHB[4]             22    87   121    24 
+	00044: CALL       
+	00045: SRP0       
+	00046: MIRP[srp0,nmd,rd,2] 
+	00047: MIRP[srp0,md,rd,1] 
+	00048: SRP0       
+	00049: MIRP[srp0,nmd,rd,0] 
+	00050: MIRP[nrp0,md,rd,1] 
+	00051: MIRP[srp0,nmd,rd,0] 
+	00052: MIRP[nrp0,nmd,rd,0] 
+	00053: SVTCA[y-axis] 
+	00054: MIAP[rd+ci] 
+	00055: ALIGNRP    
+	00056: MIRP[srp0,md,rd,1] 
+	00057: DELTAP2    
+	00058: MIRP[srp0,nmd,rd,2] 
+	00059: MIRP[nrp0,md,rd,1] 
+	00060: MIRP[srp0,nmd,rd,0] 
+	00061: SRP0       
+	00062: ALIGNRP    
+	00063: IUP[y]     
+	00064: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual         Y-Short X-Short On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:  YDual XDual                 X-Short On
+	  3:                      Y-Short X-Short On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:        XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   216,  -154)  ->  Abs (   216,  -154)
+	  1: Rel (    52,   177)  ->  Abs (   268,    23)
+	  2: Rel (   134,     0)  ->  Abs (   402,    23)
+	  3: Rel (   -33,  -107)  ->  Abs (   369,   -84)
+	  4: Rel (    85,   -10)  ->  Abs (   454,   -94)
+	  5: Rel (    86,   -85)  ->  Abs (   540,  -179)
+	  6: Rel (     0,   -52)  ->  Abs (   540,  -231)
+	  7: Rel (     0,   -75)  ->  Abs (   540,  -306)
+	  8: Rel (  -144,  -115)  ->  Abs (   396,  -421)
+	  9: Rel (  -145,     0)  ->  Abs (   251,  -421)
+	 10: Rel (   -82,     0)  ->  Abs (   169,  -421)
+	 11: Rel (   -62,    12)  ->  Abs (   107,  -409)
+	 12: Rel (    11,   117)  ->  Abs (   118,  -292)
+	 13: Rel (    64,    -4)  ->  Abs (   182,  -296)
+	 14: Rel (    30,     0)  ->  Abs (   212,  -296)
+	 15: Rel (    94,     0)  ->  Abs (   306,  -296)
+	 16: Rel (    38,    26)  ->  Abs (   344,  -270)
+	 17: Rel (    29,    20)  ->  Abs (   373,  -250)
+	 18: Rel (     0,    29)  ->  Abs (   373,  -221)
+	 19: Rel (     0,    18)  ->  Abs (   373,  -203)
+	 20: Rel (   -23,    28)  ->  Abs (   350,  -175)
+	 21: Rel (   -62,    20)  ->  Abs (   288,  -155)
+
+	Glyph 221: off = 0x0000D882, len = 108
+	  numberOfContours:	2
+	  xMin:			58
+	  yMin:			1194
+	  xMax:			763
+	  yMax:			1474
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	65
+	00000: NPUSHB      (33):     7     4     0     0     3    16     3     2     3   135 
+	                             6     1     5     2     0     6    60     5   114    15 
+	                             4     1     4   220     0     2    60     1   114     0 
+	                            25     8   112 
+	00035: PUSHW[2]            400    24 
+	00040: CALL       
+	00041: FLIPOFF    
+	00042: SRP0       
+	00043: MIRP[srp0,nmd,rd,0] 
+	00044: FLIPON     
+	00045: MIRP[srp0,nmd,rd,0] 
+	00046: MIRP[nrp0,md,rd,1] 
+	00047: SRP0       
+	00048: MIRP[srp0,nmd,rd,0] 
+	00049: DELTAP1    
+	00050: MIRP[srp0,nmd,rd,0] 
+	00051: MIRP[srp0,md,rd,1] 
+	00052: SVTCA[y-axis] 
+	00053: MIAP[rd+ci] 
+	00054: ALIGNRP    
+	00055: ALIGNRP    
+	00056: ALIGNRP    
+	00057: FLIPON     
+	00058: MIRP[srp0,md,rd,1] 
+	00059: DELTAP1    
+	00060: ALIGNRP    
+	00061: ALIGNRP    
+	00062: ALIGNRP    
+	00063: IUP[y]     
+	00064: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                 X-Short On
+	  2:  YDual XDual                 X-Short On
+	  3:                              X-Short On
+	  4:  YDual XDual                 X-Short On
+	  5:        XDual                 X-Short On
+	  6:  YDual XDual                 X-Short On
+	  7:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    58,  1194)  ->  Abs (    58,  1194)
+	  1: Rel (   121,   280)  ->  Abs (   179,  1474)
+	  2: Rel (   234,     0)  ->  Abs (   413,  1474)
+	  3: Rel (  -211,  -280)  ->  Abs (   202,  1194)
+	  4: Rel (   203,     0)  ->  Abs (   405,  1194)
+	  5: Rel (   127,   280)  ->  Abs (   532,  1474)
+	  6: Rel (   231,     0)  ->  Abs (   763,  1474)
+	  7: Rel (  -207,  -280)  ->  Abs (   556,  1194)
+
+	Glyph 222: off = 0x0000D8EE, len = 140
+	  numberOfContours:	1
+	  xMin:			183
+	  yMin:			-426
+	  xMax:			621
+	  yMax:			24
+
+	EndPoints
+	---------
+	  0:  16
+
+	  Length of Instructions:	85
+	00000: NPUSHB       (9):   217     2     1    14    32    13    19    52     6 
+	00011: PUSHW[1]            -64 
+	00014: PUSHB[4]             25    28    52     6 
+	00019: PUSHW[1]            671 
+	00022: NPUSHB      (14):    12    15     0    10     8    32     9    48     9     2 
+	                             9    85    18     3 
+	00038: PUSHW[1]            -64 
+	00041: NPUSHB      (14):    25    28    52     3   172    15     1   172     0    56 
+	                            15   159    17   161 
+	00057: PUSHW[2]            390    24 
+	00062: CALL       
+	00063: SRP0       
+	00064: MIRP[srp0,nmd,rd,2] 
+	00065: MIRP[srp0,nmd,rd,0] 
+	00066: MIRP[nrp0,md,rd,1] 
+	00067: SRP0       
+	00068: MIRP[nrp0,md,rd,1] 
+	00069: CALL       
+	00070: SRP0       
+	00071: MIRP[srp0,nmd,rd,2] 
+	00072: DELTAP1    
+	00073: ALIGNRP    
+	00074: SVTCA[y-axis] 
+	00075: MIAP[rd+ci] 
+	00076: MIAP[rd+ci] 
+	00077: MIRP[nrp0,md,rd,1] 
+	00078: CALL       
+	00079: IUP[y]     
+	00080: IUP[x]     
+	00081: SVTCA[y-axis] 
+	00082: CALL       
+	00083: SVTCA[x-axis] 
+	00084: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short         On
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   224,    24)  ->  Abs (   224,    24)
+	  1: Rel (   124,     0)  ->  Abs (   348,    24)
+	  2: Rel (   -39,   -89)  ->  Abs (   309,   -65)
+	  3: Rel (     0,   -75)  ->  Abs (   309,  -140)
+	  4: Rel (     0,   -68)  ->  Abs (   309,  -208)
+	  5: Rel (    82,   -84)  ->  Abs (   391,  -292)
+	  6: Rel (    62,     0)  ->  Abs (   453,  -292)
+	  7: Rel (    77,     0)  ->  Abs (   530,  -292)
+	  8: Rel (    91,    46)  ->  Abs (   621,  -246)
+	  9: Rel (     0,  -119)  ->  Abs (   621,  -365)
+	 10: Rel (   -52,   -27)  ->  Abs (   569,  -392)
+	 11: Rel (  -122,   -34)  ->  Abs (   447,  -426)
+	 12: Rel (   -45,     0)  ->  Abs (   402,  -426)
+	 13: Rel (   -99,     0)  ->  Abs (   303,  -426)
+	 14: Rel (  -120,   120)  ->  Abs (   183,  -306)
+	 15: Rel (     0,   101)  ->  Abs (   183,  -205)
+	 16: Rel (     0,    86)  ->  Abs (   183,  -119)
+
+	Glyph 223: off = 0x0000D97A, len = 108
+	  numberOfContours:	1
+	  xMin:			40
+	  yMin:			1194
+	  xMax:			673
+	  yMax:			1474
+
+	EndPoints
+	---------
+	  0:  6
+
+	  Length of Instructions:	72
+	00000: NPUSHB      (19):     5     6     1    15     2    31     2     2     2   135 
+	                             0   100     4     3     2    60     1    61     3 
+	00021: PUSHW[1]            -64 
+	00024: NPUSHB      (17):     9    12    52     3   100     0   100     4   127     6 
+	                            60     5    25     7   155   122    24 
+	00043: CALL       
+	00044: RTHG       
+	00045: FLIPOFF    
+	00046: SRP0       
+	00047: MIRP[srp0,nmd,rd,0] 
+	00048: RTG        
+	00049: FLIPON     
+	00050: MIRP[srp0,md,rd,1] 
+	00051: RTHG       
+	00052: MIRP[srp0,nmd,rd,2] 
+	00053: RTG        
+	00054: MIRP[srp0,md,rd,1] 
+	00055: MIRP[srp0,md,rd,1] 
+	00056: CALL       
+	00057: RTHG       
+	00058: MIRP[srp0,nmd,rd,2] 
+	00059: RTG        
+	00060: MIRP[nrp0,md,rd,1] 
+	00061: SVTCA[y-axis] 
+	00062: MDAP[rd]   
+	00063: ALIGNRP    
+	00064: MIRP[nrp0,md,rd,1] 
+	00065: MIRP[srp0,md,rd,1] 
+	00066: DELTAP1    
+	00067: ALIGNRP    
+	00068: ALIGNRP    
+	00069: ALIGNRP    
+	00070: IUP[y]     
+	00071: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:  YDual XDual                 X-Short On
+	  3:                              X-Short On
+	  4:  YDual                       X-Short On
+	  5:                              X-Short On
+	  6:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   359,  1304)  ->  Abs (   359,  1304)
+	  1: Rel (   110,   170)  ->  Abs (   469,  1474)
+	  2: Rel (   204,     0)  ->  Abs (   673,  1474)
+	  3: Rel (  -225,  -280)  ->  Abs (   448,  1194)
+	  4: Rel (  -192,     0)  ->  Abs (   256,  1194)
+	  5: Rel (  -216,   280)  ->  Abs (    40,  1474)
+	  6: Rel (   206,     0)  ->  Abs (   246,  1474)
+
+	Glyph 224: off = 0x0000D9E6, len = 236
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1067
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	179
+	00000: NPUSHB      (21):     0     1     8     4    13     3     4    13     2     7 
+	                             6     2     7     5    10     9     1     8     5    10 
+	                             7 
+	00023: PUSHW[4]            270     8     2   270 
+	00032: PUSHB[3]              1    11    10 
+	00036: PUSHW[1]            270 
+	00039: NPUSHB      (36):    12    13     8     1     1     4     8     8    10     4 
+	                             2    32    11     1    11    84    15     7     8   221 
+	                             5    10     2     1    10   101     4     1    93    13 
+	                            28    16    16     2    85    13 
+	00077: PUSHW[1]            -14 
+	00080: PUSHB[5]             15    15     2    85    13 
+	00086: PUSHW[1]            -14 
+	00089: PUSHB[5]             13    13     2    85    13 
+	00095: PUSHW[1]             -6 
+	00098: PUSHB[5]             10    12     2    85    13 
+	00104: PUSHW[1]            -10 
+	00107: PUSHB[5]             12    12     6    85    13 
+	00113: PUSHW[1]            -12 
+	00116: PUSHB[8]             13    13     6    85    32    13     1    13 
+	00125: PUSHW[1]            690 
+	00128: PUSHB[4]             14    59    92    24 
+	00133: CALL       
+	00134: SRP0       
+	00135: MIRP[srp0,md,rd,1] 
+	00136: DELTAP1    
+	00137: CALL       
+	00138: CALL       
+	00139: CALL       
+	00140: CALL       
+	00141: CALL       
+	00142: CALL       
+	00143: MIRP[nrp0,nmd,rd,2] 
+	00144: ALIGNRP    
+	00145: MIRP[nrp0,md,rd,1] 
+	00146: SRP0       
+	00147: ALIGNRP    
+	00148: SRP0       
+	00149: ALIGNRP    
+	00150: MIRP[srp0,nmd,rd,0] 
+	00151: ALIGNRP    
+	00152: SRP0       
+	00153: MIRP[nrp0,nmd,rd,0] 
+	00154: DELTAP1    
+	00155: SVTCA[y-axis] 
+	00156: MIAP[rd+ci] 
+	00157: RTHG       
+	00158: SRP2       
+	00159: IP         
+	00160: MDAP[rd]   
+	00161: SRP1       
+	00162: IP         
+	00163: MDAP[rd]   
+	00164: RTG        
+	00165: MIAP[rd+ci] 
+	00166: ALIGNRP    
+	00167: MIRP[srp0,md,rd,1] 
+	00168: ALIGNRP    
+	00169: SRP0       
+	00170: MIRP[nrp0,md,rd,1] 
+	00171: SRP0       
+	00172: MIRP[nrp0,md,rd,1] 
+	00173: ISECT      
+	00174: ISECT      
+	00175: ISECT      
+	00176: ISECT      
+	00177: IUP[y]     
+	00178: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:                      Y-Short X-Short On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:                                      On
+	  8:        XDual         Y-Short         On
+	  9:                                      On
+	 10:        XDual                         On
+	 11:  YDual                               On
+	 12:        XDual         Y-Short         On
+	 13:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   145,   565)  ->  Abs (   145,   565)
+	  1: Rel (  -145,  -123)  ->  Abs (     0,   442)
+	  2: Rel (     0,   167)  ->  Abs (     0,   609)
+	  3: Rel (   145,   124)  ->  Abs (   145,   733)
+	  4: Rel (     0,   733)  ->  Abs (   145,  1466)
+	  5: Rel (   194,     0)  ->  Abs (   339,  1466)
+	  6: Rel (     0,  -568)  ->  Abs (   339,   898)
+	  7: Rel (   332,   281)  ->  Abs (   671,  1179)
+	  8: Rel (     0,  -167)  ->  Abs (   671,  1012)
+	  9: Rel (  -332,  -281)  ->  Abs (   339,   731)
+	 10: Rel (     0,  -558)  ->  Abs (   339,   173)
+	 11: Rel (   728,     0)  ->  Abs (  1067,   173)
+	 12: Rel (     0,  -173)  ->  Abs (  1067,     0)
+	 13: Rel (  -922,     0)  ->  Abs (   145,     0)
+
+	Glyph 225: off = 0x0000DAD2, len = 242
+	  numberOfContours:	1
+	  xMin:			3
+	  yMin:			0
+	  xMax:			447
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	195
+	00000: NPUSHB      (72):    31    13   112    13   128    13   192    13   208    13 
+	                           255    13     6     0     1     8     4    11     3     4 
+	                            11     2     7     6     2     7     5    10     9     1 
+	                             8     5    10     7   201     8     2   201     1    10 
+	                            11    10     1     1     4     8     8    10     4     0 
+	                             7     8    69     5    10     2     1    10    64     4 
+	                           223     1     1     1    78    13    54    11    11     2 
+	                            85    11 
+	00074: PUSHW[1]             -8 
+	00077: PUSHB[5]             16    16     2    85    11 
+	00083: PUSHW[1]             -6 
+	00086: NPUSHB      (29):    14    14     2    85    11     4    12    12     2    85 
+	                            11    10    11    11     2    85    11    20    11    11 
+	                             6    85    11     8    16    16     6    85    11 
+	00117: PUSHW[1]             -2 
+	00120: PUSHB[5]             13    13     6    85    11 
+	00126: PUSHW[1]             -5 
+	00129: NPUSHB      (17):    12    12     6    85     0    11    32    11   208    11 
+	                             3    11    78    12    71    80    24 
+	00148: CALL       
+	00149: SRP0       
+	00150: MIRP[srp0,md,rd,1] 
+	00151: DELTAP1    
+	00152: CALL       
+	00153: CALL       
+	00154: CALL       
+	00155: CALL       
+	00156: CALL       
+	00157: CALL       
+	00158: CALL       
+	00159: CALL       
+	00160: CALL       
+	00161: MIRP[nrp0,nmd,rd,2] 
+	00162: DELTAP1    
+	00163: ALIGNRP    
+	00164: MIRP[nrp0,md,rd,1] 
+	00165: SRP0       
+	00166: ALIGNRP    
+	00167: SRP0       
+	00168: ALIGNRP    
+	00169: MIRP[srp0,nmd,rd,0] 
+	00170: ALIGNRP    
+	00171: SVTCA[y-axis] 
+	00172: MIAP[rd+ci] 
+	00173: RTHG       
+	00174: SRP2       
+	00175: IP         
+	00176: MDAP[rd]   
+	00177: SRP1       
+	00178: IP         
+	00179: MDAP[rd]   
+	00180: RTG        
+	00181: MIAP[rd+ci] 
+	00182: ALIGNRP    
+	00183: SRP0       
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: SRP0       
+	00186: MIRP[nrp0,md,rd,1] 
+	00187: ISECT      
+	00188: ISECT      
+	00189: ISECT      
+	00190: ISECT      
+	00191: IUP[y]     
+	00192: IUP[x]     
+	00193: SVTCA[x-axis] 
+	00194: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:                      Y-Short X-Short On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short         On
+	  9:                      Y-Short X-Short On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   133,   574)  ->  Abs (   133,   574)
+	  1: Rel (  -130,  -110)  ->  Abs (     3,   464)
+	  2: Rel (     0,   158)  ->  Abs (     3,   622)
+	  3: Rel (   130,   110)  ->  Abs (   133,   732)
+	  4: Rel (     0,   734)  ->  Abs (   133,  1466)
+	  5: Rel (   179,     0)  ->  Abs (   312,  1466)
+	  6: Rel (     0,  -582)  ->  Abs (   312,   884)
+	  7: Rel (   135,   115)  ->  Abs (   447,   999)
+	  8: Rel (     0,  -157)  ->  Abs (   447,   842)
+	  9: Rel (  -135,  -115)  ->  Abs (   312,   727)
+	 10: Rel (     0,  -727)  ->  Abs (   312,     0)
+	 11: Rel (  -179,     0)  ->  Abs (   133,     0)
+
+	Glyph 226: off = 0x0000DBC4, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			92
+	  yMin:			-25
+	  xMax:			1259
+	  yMax:			1830
+
+	     0: Flags:		0x0226
+		Glyf Index:	54
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	296
+		Y WOffset:	356
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1   240    49     1    49    22    18    72    43     1 
+	                             1    52 
+	00014: PUSHW[2]            545    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: DELTAP1    
+	00024: SHC[rp1,zp0] 
+
+	Glyph 227: off = 0x0000DBF8, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			63
+	  yMin:			-24
+	  xMax:			945
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	86
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	148
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1   112    49     1    49    21    18    72    43     1 
+	                             1    53 
+	00014: PUSHW[2]            546    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: DELTAP2    
+	00024: SHC[rp1,zp0] 
+
+	Glyph 228: off = 0x0000DC2C, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			41
+	  yMin:			0
+	  xMax:			1200
+	  yMax:			1830
+
+	     0: Flags:		0x0226
+		Glyf Index:	61
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	276
+		Y WOffset:	356
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    18    15     6     7    65     1     1    16 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 229: off = 0x0000DC5C, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			40
+	  yMin:			0
+	  xMax:			980
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	93
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	184
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1     1    19 
+	00005: PUSHW[3]            546    41   356 
+	00012: SCANCTRL   
+	00013: SVTCA[y-axis] 
+	00014: CALL       
+	00015: SVTCA[x-axis] 
+	00016: PUSHB[2]              6     2 
+	00019: RS         
+	00020: EQ         
+	00021: IF         
+	00022: PUSHB[6]              0    20    17     6     7    65 
+	00029: CALL       
+	00030: ELSE       
+	00031: PUSHB[6]              0    20    17     6    14    65 
+	00038: CALL       
+	00039: EIF        
+	00040: SHC[rp1,zp0] 
+
+	Glyph 230: off = 0x0000DCA0, len = 120
+	  numberOfContours:	2
+	  xMin:			188
+	  yMin:			-431
+	  xMax:			345
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	79
+	00000: PUSHW[6]              2   686     7   357     6   382 
+	00013: NPUSHB      (35):     3     0     9   161     0     3     2     0     1     1 
+	                             5     5   159     4   175     4     2     4   118     6 
+	                             7     7    32     2     1     2   161     8     8     9 
+	                           213    33   161   152    24 
+	00050: CALL       
+	00051: CALL       
+	00052: FLIPOFF    
+	00053: SRP0       
+	00054: MIRP[srp0,nmd,rd,0] 
+	00055: DELTAP1    
+	00056: ALIGNRP    
+	00057: SRP0       
+	00058: ALIGNRP    
+	00059: FLIPON     
+	00060: MIRP[srp0,md,rd,1] 
+	00061: DELTAP1    
+	00062: ALIGNRP    
+	00063: SRP0       
+	00064: ALIGNRP    
+	00065: SRP0       
+	00066: ALIGNRP    
+	00067: SRP0       
+	00068: ALIGNRP    
+	00069: SRP0       
+	00070: MIRP[nrp0,md,rd,2] 
+	00071: SVTCA[y-axis] 
+	00072: MIAP[rd+ci] 
+	00073: FLIPON     
+	00074: MIRP[srp0,md,rd,1] 
+	00075: MIRP[srp0,md,rd,1] 
+	00076: MIRP[nrp0,nmd,rd,2] 
+	00077: IUP[y]     
+	00078: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+	  4:        XDual                 X-Short On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   345,  1491)  ->  Abs (   345,  1491)
+	  1: Rel (     0,  -790)  ->  Abs (   345,   701)
+	  2: Rel (  -157,     0)  ->  Abs (   188,   701)
+	  3: Rel (     0,   790)  ->  Abs (   188,  1491)
+	  4: Rel (   157, -1131)  ->  Abs (   345,   360)
+	  5: Rel (     0,  -791)  ->  Abs (   345,  -431)
+	  6: Rel (  -157,     0)  ->  Abs (   188,  -431)
+	  7: Rel (     0,   791)  ->  Abs (   188,   360)
+
+	Glyph 231: off = 0x0000DD18, len = 378
+	  numberOfContours:	2
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1370
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  37
+
+	  Length of Instructions:	259
+	00000: NPUSHB      (46):    67     8    35     3    48    36     2     2     0    32 
+	                            33    30     6     5     2    21    20    30    19     0 
+	                             8    36    36    38    39    27    38    13    40    16 
+	                            16     2    85    13    14    15    15     2    85    13 
+	                            20    13    13     2    85    13 
+	00048: PUSHW[1]             -8 
+	00051: PUSHB[5]             12    12     2    85    13 
+	00057: PUSHW[1]             -8 
+	00060: PUSHB[5]             11    11     2    85    13 
+	00066: PUSHW[1]            -21 
+	00069: NPUSHB      (23):    12    12     6    85     0    13     1    13    26    39 
+	                            33    20    32     5     2    57     0    32    16    16 
+	                             2    85     0 
+	00094: PUSHW[1]            -10 
+	00097: PUSHB[5]             15    15     2    85     0 
+	00103: PUSHW[1]            -10 
+	00106: PUSHB[5]             13    13     2    85     0 
+	00112: PUSHW[1]             -6 
+	00115: PUSHB[5]             12    12     2    85     0 
+	00121: PUSHW[1]             -9 
+	00124: PUSHB[5]             12    12     6    85     0 
+	00130: PUSHW[1]             -8 
+	00133: NPUSHB      (10):    13    13     6    85     0    93    38    96    91    24 
+	00145: CALL       
+	00146: SRP0       
+	00147: MIRP[srp0,nmd,rd,2] 
+	00148: CALL       
+	00149: CALL       
+	00150: CALL       
+	00151: CALL       
+	00152: CALL       
+	00153: CALL       
+	00154: MIRP[nrp0,nmd,rd,0] 
+	00155: ALIGNRP    
+	00156: MIRP[srp0,md,rd,1] 
+	00157: ALIGNRP    
+	00158: FLIPOFF    
+	00159: SRP0       
+	00160: MIRP[srp0,nmd,rd,2] 
+	00161: DELTAP1    
+	00162: CALL       
+	00163: CALL       
+	00164: CALL       
+	00165: CALL       
+	00166: CALL       
+	00167: CALL       
+	00168: FLIPON     
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: SRP1       
+	00171: SRP2       
+	00172: IP         
+	00173: MDAP[rd]   
+	00174: SVTCA[y-axis] 
+	00175: MIAP[rd+ci] 
+	00176: ALIGNRP    
+	00177: MIRP[srp0,md,rd,1] 
+	00178: ALIGNRP    
+	00179: MIAP[rd+ci] 
+	00180: ALIGNRP    
+	00181: MIRP[srp0,md,rd,1] 
+	00182: ALIGNRP    
+	00183: SRP2       
+	00184: IP         
+	00185: MDAP[rd]   
+	00186: ALIGNRP    
+	00187: MIRP[srp0,md,rd,1] 
+	00188: ALIGNRP    
+	00189: IUP[y]     
+	00190: IUP[x]     
+	00191: RS         
+	00192: JROF       
+	00193: NPUSHB      (54):     7    31    11    12    10    12     9    12     8    12 
+	                             4     6    29    28    30    28     2     6    15    14 
+	                            16    14    17    14     3     6    25    26    24    26 
+	                            23    26     3     6    31     7    27    33     1    22 
+	                            18    27    33     1    28    12    32    33     1    26 
+	                            14    21    33     0 
+	00249: CALL       
+	00250: CALL       
+	00251: SVTCA[x-axis] 
+	00252: CALL       
+	00253: CALL       
+	00254: LOOPCALL   
+	00255: LOOPCALL   
+	00256: LOOPCALL   
+	00257: LOOPCALL   
+	00258: FLIPRGON   
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual                 X-Short On
+	  5:        XDual                         On
+	  6:  YDual                               On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual                 X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                              X-Short Off
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual               Y-Short         On
+	 21:  YDual                               On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual       Rep-  2 Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                               On
+	 34:        XDual                         On
+	 35:  YDual                               On
+	 36:        XDual         Y-Short         On
+	 37:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   158,     0)  ->  Abs (   158,     0)
+	  1: Rel (     0,   667)  ->  Abs (   158,   667)
+	  2: Rel (  -161,     0)  ->  Abs (    -3,   667)
+	  3: Rel (     0,   132)  ->  Abs (    -3,   799)
+	  4: Rel (   161,     0)  ->  Abs (   158,   799)
+	  5: Rel (     0,   667)  ->  Abs (   158,  1466)
+	  6: Rel (   506,     0)  ->  Abs (   664,  1466)
+	  7: Rel (   170,     0)  ->  Abs (   834,  1466)
+	  8: Rel (    90,   -21)  ->  Abs (   924,  1445)
+	  9: Rel (   126,   -29)  ->  Abs (  1050,  1416)
+	 10: Rel (    89,   -76)  ->  Abs (  1139,  1340)
+	 11: Rel (   116,   -98)  ->  Abs (  1255,  1242)
+	 12: Rel (   115,  -305)  ->  Abs (  1370,   937)
+	 13: Rel (     0,  -196)  ->  Abs (  1370,   741)
+	 14: Rel (     0,  -224)  ->  Abs (  1370,   517)
+	 15: Rel (  -142,  -323)  ->  Abs (  1228,   194)
+	 16: Rel (  -198,  -146)  ->  Abs (  1030,    48)
+	 17: Rel (  -129,   -31)  ->  Abs (   901,    17)
+	 18: Rel (   -71,   -17)  ->  Abs (   830,     0)
+	 19: Rel (  -143,     0)  ->  Abs (   687,     0)
+	 20: Rel (  -335,   173)  ->  Abs (   352,   173)
+	 21: Rel (   313,     0)  ->  Abs (   665,   173)
+	 22: Rel (   146,     0)  ->  Abs (   811,   173)
+	 23: Rel (   164,    54)  ->  Abs (   975,   227)
+	 24: Rel (    48,    48)  ->  Abs (  1023,   275)
+	 25: Rel (    69,    69)  ->  Abs (  1092,   344)
+	 26: Rel (    78,   232)  ->  Abs (  1170,   576)
+	 27: Rel (     0,   167)  ->  Abs (  1170,   743)
+	 28: Rel (     0,   172)  ->  Abs (  1170,   915)
+	 29: Rel (   -77,   206)  ->  Abs (  1093,  1121)
+	 30: Rel (  -124,   124)  ->  Abs (   969,  1245)
+	 31: Rel (  -152,    48)  ->  Abs (   817,  1293)
+	 32: Rel (  -157,     0)  ->  Abs (   660,  1293)
+	 33: Rel (  -308,     0)  ->  Abs (   352,  1293)
+	 34: Rel (     0,  -494)  ->  Abs (   352,   799)
+	 35: Rel (   404,     0)  ->  Abs (   756,   799)
+	 36: Rel (     0,  -132)  ->  Abs (   756,   667)
+	 37: Rel (  -404,     0)  ->  Abs (   352,   667)
+
+	Glyph 232: off = 0x0000DE92, len = 538
+	  numberOfContours:	2
+	  xMin:			73
+	  yMin:			-25
+	  xMax:			1057
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  28
+	  1:  40
+
+	  Length of Instructions:	402
+	00000: NPUSHB     (109):    15    25    31    25    55     3    58    30    86     3 
+	                            93    28     6     4     0    20     0    42     5    36 
+	                            24    93     0     5    50     8     2     3     3     1 
+	                            24    24    22     6     6     7    25    25     5    27 
+	                            27     0    26     3     3     3     1    27    27     0 
+	                            26    26     4    28    27    27     0    24    23    21 
+	                             6     2     5    29    35    21    18    32    24    23 
+	                             6     2     4     0    25    27    26    25     4     3 
+	                             1     0     7    35     5     8    29    27    26     5 
+	                             3     4     0    25    32    28    32    18    48    18 
+	                             2    18   143    25     4     1     0     0    25 
+	00111: PUSHW[1]            -64 
+	00114: NPUSHB      (13):    14    14     2    85    25     7    38    28    11    11 
+	                            29    36     8 
+	00129: PUSHW[1]            -20 
+	00132: PUSHB[5]             15    15     2    85     8 
+	00138: PUSHW[1]            -10 
+	00141: PUSHB[5]             13    13     2    85     8 
+	00147: PUSHW[1]            -30 
+	00150: PUSHB[5]             11    11     2    85     8 
+	00156: PUSHW[1]            -16 
+	00159: PUSHB[5]             11    11     6    85     8 
+	00165: PUSHW[1]            -23 
+	00168: PUSHB[5]             13    13     6    85     8 
+	00174: PUSHW[1]            -16 
+	00177: PUSHB[5]             15    15     6    85     8 
+	00183: PUSHW[1]            -26 
+	00186: NPUSHB      (54):    12    12     6    85     8    26    42    35    36    15 
+	                            10    15    15     2    85    15    30    12    12     2 
+	                            85    15    20    11    11     6    85    15    27    13 
+	                            13     6    85    15     8    16    16     6    85    15 
+	                            32    12    12     6    85    31    15     1    15    25 
+	                            41    52    55    24 
+	00242: CALL       
+	00243: FLIPOFF    
+	00244: SRP0       
+	00245: MIRP[srp0,nmd,rd,0] 
+	00246: DELTAP1    
+	00247: CALL       
+	00248: CALL       
+	00249: CALL       
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+	00253: FLIPON     
+	00254: MIRP[nrp0,md,rd,1] 
+	00255: FLIPOFF    
+	00256: SRP0       
+	00257: MIRP[srp0,nmd,rd,2] 
+	00258: CALL       
+	00259: CALL       
+	00260: CALL       
+	00261: CALL       
+	00262: CALL       
+	00263: CALL       
+	00264: CALL       
+	00265: FLIPON     
+	00266: MIRP[nrp0,md,rd,1] 
+	00267: SVTCA[y-axis] 
+	00268: MIAP[rd+ci] 
+	00269: MIRP[nrp0,md,rd,1] 
+	00270: MIAP[rd+ci] 
+	00271: CALL       
+	00272: MIAP[rd+ci] 
+	00273: ALIGNRP    
+	00274: ALIGNRP    
+	00275: SRP0       
+	00276: MIRP[srp0,nmd,rd,2] 
+	00277: DELTAP1    
+	00278: MIRP[nrp0,md,rd,1] 
+	00279: SRP1       
+	00280: SRP2       
+	00281: SLOOP      
+	00282: IP         
+	00283: SVTCA[x-axis] 
+	00284: SRP1       
+	00285: SRP2       
+	00286: IP         
+	00287: SRP2       
+	00288: SLOOP      
+	00289: IP         
+	00290: SVTCA[y-axis] 
+	00291: SRP1       
+	00292: SRP2       
+	00293: SLOOP      
+	00294: IP         
+	00295: SRP1       
+	00296: SRP2       
+	00297: IP         
+	00298: SVTCA[x-axis] 
+	00299: SRP1       
+	00300: SRP2       
+	00301: SLOOP      
+	00302: IP         
+	00303: SPVTL[p1,p2] 
+	00304: SRP0       
+	00305: SFVTPV     
+	00306: ALIGNRP    
+	00307: SPVTL[p1,p2] 
+	00308: SRP0       
+	00309: SFVTL[=p1,p2] 
+	00310: ALIGNRP    
+	00311: SFVTL[=p1,p2] 
+	00312: ALIGNRP    
+	00313: SDPVTL[1]  
+	00314: SFVTL[=p1,p2] 
+	00315: ALIGNRP    
+	00316: SDPVTL[1]  
+	00317: SRP0       
+	00318: SFVTL[=p1,p2] 
+	00319: RDTG       
+	00320: MDRP[nrp0,nmd,rd,0] 
+	00321: SFVTL[=p1,p2] 
+	00322: ALIGNRP    
+	00323: SPVTL[p1,p2] 
+	00324: SRP0       
+	00325: SFVTPV     
+	00326: ALIGNRP    
+	00327: PUSHB[2]              6     2 
+	00330: RS         
+	00331: EQ         
+	00332: IF         
+	00333: PUSHB[7]              9    24    26    24    89    24     3 
+	00341: SVTCA[y-axis] 
+	00342: DELTAP1    
+	00343: EIF        
+	00344: IUP[y]     
+	00345: IUP[x]     
+	00346: RTG        
+	00347: RS         
+	00348: JROF       
+	00349: NPUSHB      (36):    33    40     9    17    13    37    33    17    35    29 
+	                             0    37    12    35    29     0    39    10    29    29 
+	                             1    34    16    32    29     1    36    14    38    29 
+	                             0    40     9    38    29     0 
+	00387: SVTCA[y-axis] 
+	00388: CALL       
+	00389: CALL       
+	00390: CALL       
+	00391: SVTCA[x-axis] 
+	00392: CALL       
+	00393: CALL       
+	00394: CALL       
+	00395: CALL       
+	00396: FLIPRGON   
+	00397: FLIPRGON   
+	00398: SVTCA[x-axis] 
+	00399: DELTAP1    
+	00400: SVTCA[y-axis] 
+	00401: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:        XDual         Y-Short X-Short On
+	  6:                      Y-Short X-Short On
+	  7:                                      Off
+	  8:        XDual                         On
+	  9:        XDual         Y-Short         Off
+	 10:                                      Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:        XDual                         Off
+	 17:                                      Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:                      Y-Short         On
+	 26:  YDual               Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:                                      On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:                      Y-Short X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   308,  1466)  ->  Abs (   308,  1466)
+	  1: Rel (   217,     0)  ->  Abs (   525,  1466)
+	  2: Rel (    72,   -54)  ->  Abs (   597,  1412)
+	  3: Rel (    53,   -48)  ->  Abs (   650,  1364)
+	  4: Rel (   214,   102)  ->  Abs (   864,  1466)
+	  5: Rel (    45,  -102)  ->  Abs (   909,  1364)
+	  6: Rel (  -172,   -83)  ->  Abs (   737,  1281)
+	  7: Rel (   320,  -368)  ->  Abs (  1057,   913)
+	  8: Rel (     0,  -392)  ->  Abs (  1057,   521)
+	  9: Rel (     0,  -253)  ->  Abs (  1057,   268)
+	 10: Rel (  -278,  -293)  ->  Abs (   779,   -25)
+	 11: Rel (  -215,     0)  ->  Abs (   564,   -25)
+	 12: Rel (  -255,     0)  ->  Abs (   309,   -25)
+	 13: Rel (  -143,   194)  ->  Abs (   166,   169)
+	 14: Rel (   -93,   127)  ->  Abs (    73,   296)
+	 15: Rel (     0,   221)  ->  Abs (    73,   517)
+	 16: Rel (     0,   261)  ->  Abs (    73,   778)
+	 17: Rel (   258,   284)  ->  Abs (   331,  1062)
+	 18: Rel (   194,     0)  ->  Abs (   525,  1062)
+	 19: Rel (    58,     0)  ->  Abs (   583,  1062)
+	 20: Rel (    88,   -24)  ->  Abs (   671,  1038)
+	 21: Rel (    66,   -35)  ->  Abs (   737,  1003)
+	 22: Rel (   -36,    73)  ->  Abs (   701,  1076)
+	 23: Rel (   -54,    81)  ->  Abs (   647,  1157)
+	 24: Rel (   -52,    59)  ->  Abs (   595,  1216)
+	 25: Rel (  -275,  -127)  ->  Abs (   320,  1089)
+	 26: Rel (   -44,   103)  ->  Abs (   276,  1192)
+	 27: Rel (   239,   109)  ->  Abs (   515,  1301)
+	 28: Rel (   -97,    90)  ->  Abs (   418,  1391)
+	 29: Rel (   452,  -862)  ->  Abs (   870,   529)
+	 30: Rel (     0,   192)  ->  Abs (   870,   721)
+	 31: Rel (  -181,   203)  ->  Abs (   689,   924)
+	 32: Rel (  -132,     0)  ->  Abs (   557,   924)
+	 33: Rel (  -130,     0)  ->  Abs (   427,   924)
+	 34: Rel (  -170,  -203)  ->  Abs (   257,   721)
+	 35: Rel (     0,  -209)  ->  Abs (   257,   512)
+	 36: Rel (     0,  -194)  ->  Abs (   257,   318)
+	 37: Rel (   175,  -196)  ->  Abs (   432,   122)
+	 38: Rel (   131,     0)  ->  Abs (   563,   122)
+	 39: Rel (   128,     0)  ->  Abs (   691,   122)
+	 40: Rel (   179,   207)  ->  Abs (   870,   329)
+
+	Glyph 233: off = 0x0000E0AC, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			6
+	  yMin:			0
+	  xMax:			1350
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	333
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     1    16     6    26    72    39     1     1    16 
+	00012: PUSHW[3]            545    41   356 
+	00019: SCANCTRL   
+	00020: SVTCA[y-axis] 
+	00021: CALL       
+	00022: SVTCA[x-axis] 
+	00023: CALL       
+
+	Glyph 234: off = 0x0000E0DE, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			33
+	  yMin:			-431
+	  xMax:			1006
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	92
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	198
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     1     0    30     1   144    30   224    30     2    30 
+	                            15    34    72    43     1     1    30 
+	00019: PUSHW[2]            546    41 
+	00024: SVTCA[y-axis] 
+	00025: CALL       
+	00026: SVTCA[x-axis] 
+	00027: CALL       
+	00028: DELTAP1    
+	00029: DELTAP2    
+	00030: SHC[rp1,zp0] 
+
+	Glyph 235: off = 0x0000E118, len = 250
+	  numberOfContours:	2
+	  xMin:			158
+	  yMin:			0
+	  xMax:			1277
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  15
+	  1:  26
+
+	  Length of Instructions:	161
+	00000: NPUSHB      (22):    16    26    20    15    16    30    14   218     0    25 
+	                            26    30     4     3   218     1     2     0     8    20 
+	                            38    10 
+	00024: PUSHW[1]            -16 
+	00027: PUSHB[5]             13    13     6    85    10 
+	00033: PUSHW[1]            -16 
+	00036: PUSHB[5]             12    12     6    85    10 
+	00042: PUSHW[1]            -22 
+	00045: NPUSHB      (23):    11    11     6    85    16    10    32    10     2    10 
+	                            46    28     2    15    32     1     0    32    16    16 
+	                             2    85     0 
+	00070: PUSHW[1]            -10 
+	00073: PUSHB[5]             15    15     2    85     0 
+	00079: PUSHW[1]            -10 
+	00082: PUSHB[5]             13    13     2    85     0 
+	00088: PUSHW[1]             -6 
+	00091: PUSHB[5]             12    12     2    85     0 
+	00097: PUSHW[1]            -16 
+	00100: PUSHB[5]             13    13     6    85     0 
+	00106: PUSHW[1]             -6 
+	00109: NPUSHB      (13):    12    12     6    85    32     0     1     0    93    27 
+	                            59    92    24 
+	00124: CALL       
+	00125: SRP0       
+	00126: MIRP[srp0,nmd,rd,2] 
+	00127: DELTAP1    
+	00128: CALL       
+	00129: CALL       
+	00130: CALL       
+	00131: CALL       
+	00132: CALL       
+	00133: CALL       
+	00134: ALIGNRP    
+	00135: MIRP[srp0,md,rd,1] 
+	00136: ALIGNRP    
+	00137: SRP0       
+	00138: MIRP[srp0,nmd,rd,2] 
+	00139: DELTAP1    
+	00140: CALL       
+	00141: CALL       
+	00142: CALL       
+	00143: MIRP[nrp0,md,rd,1] 
+	00144: SVTCA[y-axis] 
+	00145: MIAP[rd+ci] 
+	00146: MIAP[rd+ci] 
+	00147: MIRP[srp0,nmd,rd,0] 
+	00148: ALIGNRP    
+	00149: MIRP[srp0,md,rd,1] 
+	00150: ALIGNRP    
+	00151: SRP0       
+	00152: MIRP[srp0,nmd,rd,0] 
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: SVTCA[x-axis] 
+	00155: SRP1       
+	00156: SRP2       
+	00157: IP         
+	00158: IP         
+	00159: IUP[y]     
+	00160: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:        XDual Rep-  2 Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                              X-Short Off
+	 13:  YDual                               On
+	 14:  YDual                               On
+	 15:        XDual                         On
+	 16:        XDual                         On
+	 17:  YDual                               On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   158,     0)  ->  Abs (   158,     0)
+	  1: Rel (     0,  1466)  ->  Abs (   158,  1466)
+	  2: Rel (   194,     0)  ->  Abs (   352,  1466)
+	  3: Rel (     0,  -298)  ->  Abs (   352,  1168)
+	  4: Rel (   359,     0)  ->  Abs (   711,  1168)
+	  5: Rel (   146,     0)  ->  Abs (   857,  1168)
+	  6: Rel (    78,   -14)  ->  Abs (   935,  1154)
+	  7: Rel (   108,   -19)  ->  Abs (  1043,  1135)
+	  8: Rel (   146,  -101)  ->  Abs (  1189,  1034)
+	  9: Rel (    88,  -182)  ->  Abs (  1277,   852)
+	 10: Rel (     0,  -109)  ->  Abs (  1277,   743)
+	 11: Rel (     0,  -186)  ->  Abs (  1277,   557)
+	 12: Rel (  -238,  -259)  ->  Abs (  1039,   298)
+	 13: Rel (  -311,     0)  ->  Abs (   728,   298)
+	 14: Rel (  -376,     0)  ->  Abs (   352,   298)
+	 15: Rel (     0,  -298)  ->  Abs (   352,     0)
+	 16: Rel (     0,   471)  ->  Abs (   352,   471)
+	 17: Rel (   379,     0)  ->  Abs (   731,   471)
+	 18: Rel (   188,     0)  ->  Abs (   919,   471)
+	 19: Rel (   158,   140)  ->  Abs (  1077,   611)
+	 20: Rel (     0,   126)  ->  Abs (  1077,   737)
+	 21: Rel (     0,    91)  ->  Abs (  1077,   828)
+	 22: Rel (   -92,   132)  ->  Abs (   985,   960)
+	 23: Rel (   -76,    21)  ->  Abs (   909,   981)
+	 24: Rel (   -49,    14)  ->  Abs (   860,   995)
+	 25: Rel (  -133,     0)  ->  Abs (   727,   995)
+	 26: Rel (  -375,     0)  ->  Abs (   352,   995)
+
+	Glyph 236: off = 0x0000E212, len = 398
+	  numberOfContours:	2
+	  xMin:			135
+	  yMin:			-407
+	  xMax:			1057
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  20
+	  1:  32
+
+	  Length of Instructions:	293
+	00000: NPUSHB      (41):    72    32    87     4    88    18   102     4   104    18 
+	                           235    32     6    55    31     1    41     8    21    20 
+	                             0    19    24    15     3     7     1     0    30    28 
+	                             7     7    24    28    15    11     0    14    27    36 
+	                            11 
+	00043: PUSHW[1]            -14 
+	00046: NPUSHB      (11):    15    15     2    85    11    18    13    13     2    85 
+	                            11 
+	00059: PUSHW[1]             -6 
+	00062: NPUSHB      (11):    12    12     2    85    11     6    11    11     2    85 
+	                            11 
+	00075: PUSHW[1]            -14 
+	00078: PUSHB[5]             11    11     6    85    11 
+	00084: PUSHW[1]            -28 
+	00087: PUSHB[5]             12    12     6    85    11 
+	00093: PUSHW[1]             -6 
+	00096: PUSHB[5]             13    13     6    85    11 
+	00102: PUSHW[1]             -5 
+	00105: NPUSHB      (14):    16    16     6    85    11    26    34     2     3    19 
+	                            20    37     1     0 
+	00121: PUSHW[1]             -4 
+	00124: NPUSHB      (23):    14    14     2    85     0    16    13    13     2    85 
+	                             0    16    12    12     2    85     0    16    11    11 
+	                             2    85     0 
+	00149: PUSHW[1]            -10 
+	00152: PUSHB[5]             16    16     6    85     0 
+	00158: PUSHW[1]             -4 
+	00161: NPUSHB      (35):    15    15     6    85     0    18    13    13     6    85 
+	                             0    12    12    12     6    85     0    12    11    11 
+	                             6    85    31     0    63     0    79     0     3     0 
+	                            25    33    71    55    24 
+	00198: CALL       
+	00199: SRP0       
+	00200: MIRP[srp0,nmd,rd,2] 
+	00201: DELTAP1    
+	00202: CALL       
+	00203: CALL       
+	00204: CALL       
+	00205: CALL       
+	00206: CALL       
+	00207: CALL       
+	00208: CALL       
+	00209: CALL       
+	00210: CALL       
+	00211: ALIGNRP    
+	00212: MIRP[srp0,md,rd,1] 
+	00213: ALIGNRP    
+	00214: ALIGNRP    
+	00215: ALIGNRP    
+	00216: FLIPOFF    
+	00217: SRP0       
+	00218: MIRP[srp0,nmd,rd,2] 
+	00219: CALL       
+	00220: CALL       
+	00221: CALL       
+	00222: CALL       
+	00223: CALL       
+	00224: CALL       
+	00225: CALL       
+	00226: CALL       
+	00227: FLIPON     
+	00228: MIRP[nrp0,md,rd,1] 
+	00229: SVTCA[y-axis] 
+	00230: MIAP[rd+ci] 
+	00231: MIAP[rd+ci] 
+	00232: MIRP[nrp0,md,rd,1] 
+	00233: MIAP[rd+ci] 
+	00234: MIRP[nrp0,md,rd,1] 
+	00235: MIAP[rd+ci] 
+	00236: SRP1       
+	00237: IP         
+	00238: SRP1       
+	00239: SRP2       
+	00240: IP         
+	00241: SVTCA[x-axis] 
+	00242: SRP1       
+	00243: SRP2       
+	00244: IP         
+	00245: IUP[y]     
+	00246: IUP[x]     
+	00247: RS         
+	00248: JROF       
+	00249: NPUSHB      (28):    25    29     8    14     9    37    13    38    29     8 
+	                            27    29     1    25    14    27    29     1    28    10 
+	                            30    29     1    26    12    24    29     0 
+	00279: SVTCA[y-axis] 
+	00280: CALL       
+	00281: CALL       
+	00282: SVTCA[x-axis] 
+	00283: CALL       
+	00284: CALL       
+	00285: CALL       
+	00286: CALL       
+	00287: FLIPRGON   
+	00288: FLIPRGON   
+	00289: SVTCA[x-axis] 
+	00290: DELTAP1    
+	00291: SVTCA[y-axis] 
+	00292: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                              X-Short Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual               Y-Short X-Short On
+	 20:        XDual                         On
+	 21:                              X-Short On
+	 22:        XDual         Y-Short         Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   135,  -407)  ->  Abs (   135,  -407)
+	  1: Rel (     0,  1873)  ->  Abs (   135,  1466)
+	  2: Rel (   180,     0)  ->  Abs (   315,  1466)
+	  3: Rel (     0,  -516)  ->  Abs (   315,   950)
+	  4: Rel (    73,    77)  ->  Abs (   388,  1027)
+	  5: Rel (    55,    25)  ->  Abs (   443,  1052)
+	  6: Rel (    72,    34)  ->  Abs (   515,  1086)
+	  7: Rel (    92,     0)  ->  Abs (   607,  1086)
+	  8: Rel (   136,     0)  ->  Abs (   743,  1086)
+	  9: Rel (   208,  -140)  ->  Abs (   951,   946)
+	 10: Rel (   106,  -255)  ->  Abs (  1057,   691)
+	 11: Rel (     0,  -152)  ->  Abs (  1057,   539)
+	 12: Rel (     0,  -164)  ->  Abs (  1057,   375)
+	 13: Rel (  -117,  -260)  ->  Abs (   940,   115)
+	 14: Rel (  -223,  -139)  ->  Abs (   717,   -24)
+	 15: Rel (  -122,     0)  ->  Abs (   595,   -24)
+	 16: Rel (   -83,     0)  ->  Abs (   512,   -24)
+	 17: Rel (   -71,    33)  ->  Abs (   441,     9)
+	 18: Rel (   -54,    26)  ->  Abs (   387,    35)
+	 19: Rel (   -72,    75)  ->  Abs (   315,   110)
+	 20: Rel (     0,  -517)  ->  Abs (   315,  -407)
+	 21: Rel (   -17,   932)  ->  Abs (   298,   525)
+	 22: Rel (     0,  -205)  ->  Abs (   298,   320)
+	 23: Rel (   166,  -196)  ->  Abs (   464,   124)
+	 24: Rel (   118,     0)  ->  Abs (   582,   124)
+	 25: Rel (   120,     0)  ->  Abs (   702,   124)
+	 26: Rel (   171,   203)  ->  Abs (   873,   327)
+	 27: Rel (     0,   213)  ->  Abs (   873,   540)
+	 28: Rel (     0,   203)  ->  Abs (   873,   743)
+	 29: Rel (  -167,   202)  ->  Abs (   706,   945)
+	 30: Rel (  -116,     0)  ->  Abs (   590,   945)
+	 31: Rel (  -115,     0)  ->  Abs (   475,   945)
+	 32: Rel (  -177,  -215)  ->  Abs (   298,   730)
+
+	Glyph 237: off = 0x0000E3A0, len = 54
+	  numberOfContours:	1
+	  xMin:			114
+	  yMin:			639
+	  xMax:			1082
+	  yMax:			807
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	26
+	00000: NPUSHB      (12):     2    37     0     0    26     5     1    25     4    87 
+	                            90    24 
+	00014: CALL       
+	00015: FLIPOFF    
+	00016: SRP0       
+	00017: MIRP[nrp0,nmd,rd,0] 
+	00018: SRP0       
+	00019: MIRP[srp0,nmd,rd,2] 
+	00020: SVTCA[y-axis] 
+	00021: MDAP[rd]   
+	00022: FLIPON     
+	00023: MIRP[nrp0,md,rd,1] 
+	00024: IUP[y]     
+	00025: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1082,   639)  ->  Abs (  1082,   639)
+	  1: Rel (  -968,     0)  ->  Abs (   114,   639)
+	  2: Rel (     0,   168)  ->  Abs (   114,   807)
+	  3: Rel (   968,     0)  ->  Abs (  1082,   807)
+
+	Glyph 238: off = 0x0000E3D6, len = 356
+	  numberOfContours:	1
+	  xMin:			161
+	  yMin:			288
+	  xMax:			1033
+	  yMax:			1160
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	288
+	00000: PUSHB[6]             39     4     1    36     4     1 
+	00007: PUSHB[2]              6     2 
+	00010: RS         
+	00011: EQ         
+	00012: IF         
+	00013: NPUSHB      (17):    11    10     3    17     3    35     3    73     3    85 
+	                             3   102     3   133     3     7     3 
+	00032: SVTCA[y-axis] 
+	00033: MDAP[rd]   
+	00034: DELTAP1    
+	00035: SHP[rp1,zp0] 
+	00036: IUP[x]     
+	00037: ELSE       
+	00038: PUSHB[1]            124 
+	00040: MPPEM      
+	00041: GTEQ       
+	00042: IF         
+	00043: NPUSHB      (23):    30    17    10     6    11     2     9     7     6    11 
+	                             3     8     4     3     8     0     5     1     0     5 
+	                             2     9     5 
+	00068: PUSHW[4]            631     6     3   631 
+	00077: PUSHB[4]              2     7     1     9 
+	00082: PUSHW[4]            631     8    11   631 
+	00091: NPUSHB      (24):     0     6     2   148    42     1     1     1   148     8 
+	                            48     0   144     0     2    63     0    80     0     2 
+	                             0    10     4     8 
+	00117: NPUSHW      (10):   658     9     6   658     5     2   658     3     0   658 
+	00139: NPUSHB      (22):    11     9     5   148     4   148     3   176    11   192 
+	                            11     2   159    11     1    32    11     1    11   252 
+	                            12   158 
+	00163: PUSHW[2]            385    24 
+	00168: CALL       
+	00169: SRP0       
+	00170: MIRP[srp0,nmd,rd,2] 
+	00171: DELTAP1    
+	00172: DELTAP1    
+	00173: DELTAP1    
+	00174: ALIGNRP    
+	00175: RTHG       
+	00176: MIRP[srp0,md,rd,0] 
+	00177: MIRP[srp0,md,rd,0] 
+	00178: ALIGNRP    
+	00179: RTG        
+	00180: SRP0       
+	00181: MIRP[nrp0,md,rd,0] 
+	00182: SRP0       
+	00183: MIRP[nrp0,md,rd,0] 
+	00184: SRP0       
+	00185: MIRP[nrp0,md,rd,0] 
+	00186: SRP0       
+	00187: MIRP[nrp0,md,rd,0] 
+	00188: SRP0       
+	00189: ALIGNRP    
+	00190: SVTCA[y-axis] 
+	00191: MDAP[rd]   
+	00192: DELTAP1    
+	00193: DELTAP2    
+	00194: ALIGNRP    
+	00195: RTHG       
+	00196: MIRP[srp0,md,rd,0] 
+	00197: DELTAP1    
+	00198: MIRP[srp0,md,rd,0] 
+	00199: ALIGNRP    
+	00200: RTG        
+	00201: SRP0       
+	00202: MIRP[nrp0,md,rd,0] 
+	00203: SRP0       
+	00204: MIRP[nrp0,md,rd,0] 
+	00205: SRP0       
+	00206: ALIGNRP    
+	00207: SRP0       
+	00208: MIRP[nrp0,md,rd,0] 
+	00209: SRP0       
+	00210: MIRP[nrp0,md,rd,0] 
+	00211: ISECT      
+	00212: ISECT      
+	00213: ISECT      
+	00214: ISECT      
+	00215: MPPEM      
+	00216: GTEQ       
+	00217: IF         
+	00218: PUSHB[3]              6    42     8 
+	00222: PUSHW[7]            -42     7   -32     3   -32    11   -32 
+	00237: NPUSHB      (13):     1     0     2     3     4     5     6     7     8     9 
+	                            10    11    11 
+	00252: SVTCA[x-axis] 
+	00253: SLOOP      
+	00254: SHPIX      
+	00255: SHPIX      
+	00256: SHPIX      
+	00257: SHPIX      
+	00258: SVTCA[y-axis] 
+	00259: SHPIX      
+	00260: SHPIX      
+	00261: EIF        
+	00262: MPPEM      
+	00263: LTEQ       
+	00264: IF         
+	00265: NPUSHB       (9):     2     1    10     9     0     4     5     4     7 
+	00276: SVTCA[x-axis] 
+	00277: SLOOP      
+	00278: SHPIX      
+	00279: EIF        
+	00280: EIF        
+	00281: EIF        
+	00282: IUP[y]     
+	00283: IUP[x]     
+	00284: SVTCA[y-axis] 
+	00285: DELTAP1    
+	00286: SVTCA[x-axis] 
+	00287: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:                                      On
+	  2:                                      On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:                                      On
+	  6:        XDual         Y-Short X-Short On
+	  7:                                      On
+	  8:                                      On
+	  9:                      Y-Short X-Short On
+	 10:                                      On
+	 11:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   161,   409)  ->  Abs (   161,   409)
+	  1: Rel (   315,   315)  ->  Abs (   476,   724)
+	  2: Rel (  -314,   314)  ->  Abs (   162,  1038)
+	  3: Rel (   122,   122)  ->  Abs (   284,  1160)
+	  4: Rel (   314,  -314)  ->  Abs (   598,   846)
+	  5: Rel (   313,   313)  ->  Abs (   911,  1159)
+	  6: Rel (   120,  -121)  ->  Abs (  1031,  1038)
+	  7: Rel (  -312,  -313)  ->  Abs (   719,   725)
+	  8: Rel (   314,  -314)  ->  Abs (  1033,   411)
+	  9: Rel (  -122,  -122)  ->  Abs (   911,   289)
+	 10: Rel (  -314,   314)  ->  Abs (   597,   603)
+	 11: Rel (  -315,  -315)  ->  Abs (   282,   288)
+
+	Glyph 239: off = 0x0000E53A, len = 124
+	  numberOfContours:	1
+	  xMin:			107
+	  yMin:			733
+	  xMax:			476
+	  yMax:			1484
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	80
+	00000: NPUSHB      (16):     1    34    18    57     3    34    18    57     7     8 
+	                             0     1     4     3     9     0 
+	00018: PUSHW[1]            287 
+	00021: PUSHB[4]              8     3   232     4 
+	00026: PUSHW[1]            675 
+	00029: NPUSHB      (15):     7     7     8     1     8     9    53     1     0   203 
+	                             4     3   117    10    87 
+	00046: PUSHW[2]            303    24 
+	00051: CALL       
+	00052: SRP0       
+	00053: MIRP[srp0,nmd,rd,2] 
+	00054: ALIGNRP    
+	00055: MIRP[srp0,nmd,rd,2] 
+	00056: ALIGNRP    
+	00057: MIRP[srp0,md,rd,1] 
+	00058: ALIGNRP    
+	00059: SVTCA[y-axis] 
+	00060: MIAP[rd+ci] 
+	00061: ALIGNRP    
+	00062: SRP0       
+	00063: MIRP[srp0,nmd,rd,0] 
+	00064: MIRP[nrp0,md,rd,1] 
+	00065: SRP0       
+	00066: MIRP[srp0,md,rd,1] 
+	00067: ALIGNRP    
+	00068: SRP1       
+	00069: SRP2       
+	00070: IP         
+	00071: SVTCA[x-axis] 
+	00072: SRP1       
+	00073: SRP2       
+	00074: IP         
+	00075: IUP[y]     
+	00076: IUP[x]     
+	00077: SVTCA[y-axis] 
+	00078: CALL       
+	00079: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   331,   733)  ->  Abs (   331,   733)
+	  1: Rel (     0,   554)  ->  Abs (   331,  1287)
+	  2: Rel (  -102,   -81)  ->  Abs (   229,  1206)
+	  3: Rel (  -122,   -32)  ->  Abs (   107,  1174)
+	  4: Rel (     0,   123)  ->  Abs (   107,  1297)
+	  5: Rel (    62,    20)  ->  Abs (   169,  1317)
+	  6: Rel (   152,   106)  ->  Abs (   321,  1423)
+	  7: Rel (    47,    61)  ->  Abs (   368,  1484)
+	  8: Rel (   108,     0)  ->  Abs (   476,  1484)
+	  9: Rel (     0,  -751)  ->  Abs (   476,   733)
+
+	Glyph 240: off = 0x0000E5B6, len = 224
+	  numberOfContours:	1
+	  xMin:			25
+	  yMin:			733
+	  xMax:			648
+	  yMax:			1484
+
+	EndPoints
+	---------
+	  0:  28
+
+	  Length of Instructions:	130
+	00000: NPUSHB      (27):     3     4    12    24     2   117    24   229    23   229 
+	                            24   252     3     4    10     5     1    26    25    24 
+	                             3     7    13    24    25    18    26 
+	00029: PUSHW[3]            609    28   287 
+	00036: PUSHB[7]             17    13    39    63    14     1    14 
+	00044: PUSHW[3]            696    10   609 
+	00051: NPUSHB      (20):    17     1    27    28    58     7    41    20   191     0 
+	                            13    41    14    39     0    25    29   169   104    24 
+	00073: CALL       
+	00074: FLIPOFF    
+	00075: SRP0       
+	00076: MIRP[srp0,nmd,rd,0] 
+	00077: FLIPON     
+	00078: MIRP[srp0,nmd,rd,0] 
+	00079: MIRP[nrp0,md,rd,1] 
+	00080: SRP0       
+	00081: MIRP[srp0,md,rd,1] 
+	00082: MIRP[nrp0,md,rd,1] 
+	00083: MIRP[srp0,nmd,rd,0] 
+	00084: ALIGNRP    
+	00085: SVTCA[y-axis] 
+	00086: MIAP[rd+ci] 
+	00087: MIRP[srp0,md,rd,1] 
+	00088: MIRP[srp0,nmd,rd,0] 
+	00089: DELTAP1    
+	00090: MIRP[nrp0,nmd,rd,0] 
+	00091: SRP0       
+	00092: MIRP[srp0,md,rd,1] 
+	00093: MIRP[srp0,md,rd,1] 
+	00094: SRP1       
+	00095: IP         
+	00096: IP         
+	00097: SVTCA[x-axis] 
+	00098: SRP1       
+	00099: SRP2       
+	00100: SLOOP      
+	00101: IP         
+	00102: PUSHB[2]              6     2 
+	00105: RS         
+	00106: EQ         
+	00107: IF         
+	00108: PUSHB[6]             24    17    28     3    17    26 
+	00115: SVTCA[y-axis] 
+	00116: SRP1       
+	00117: SRP2       
+	00118: IP         
+	00119: SRP1       
+	00120: SRP2       
+	00121: IP         
+	00122: EIF        
+	00123: IUP[y]     
+	00124: IUP[x]     
+	00125: SVTCA[x-axis] 
+	00126: DELTAP2    
+	00127: DELTAP1    
+	00128: SVTCA[y-axis] 
+	00129: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual               Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:                      Y-Short X-Short Off
+	 13:                      Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:                      Y-Short X-Short On
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short X-Short On
+	 27:  YDual                               On
+	 28:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (    25,   733)  ->  Abs (    25,   733)
+	  1: Rel (     6,    57)  ->  Abs (    31,   790)
+	  2: Rel (    41,    57)  ->  Abs (    72,   847)
+	  3: Rel (    63,    86)  ->  Abs (   135,   933)
+	  4: Rel (   288,   209)  ->  Abs (   423,  1142)
+	  5: Rel (    27,    30)  ->  Abs (   450,  1172)
+	  6: Rel (    37,    41)  ->  Abs (   487,  1213)
+	  7: Rel (     0,    43)  ->  Abs (   487,  1256)
+	  8: Rel (     0,    48)  ->  Abs (   487,  1304)
+	  9: Rel (   -70,    62)  ->  Abs (   417,  1366)
+	 10: Rel (   -68,     0)  ->  Abs (   349,  1366)
+	 11: Rel (   -66,     0)  ->  Abs (   283,  1366)
+	 12: Rel (   -65,   -47)  ->  Abs (   218,  1319)
+	 13: Rel (   -21,   -67)  ->  Abs (   197,  1252)
+	 14: Rel (  -151,    16)  ->  Abs (    46,  1268)
+	 15: Rel (    29,   111)  ->  Abs (    75,  1379)
+	 16: Rel (   143,   105)  ->  Abs (   218,  1484)
+	 17: Rel (   134,     0)  ->  Abs (   352,  1484)
+	 18: Rel (   151,     0)  ->  Abs (   503,  1484)
+	 19: Rel (   141,  -118)  ->  Abs (   644,  1366)
+	 20: Rel (     0,   -85)  ->  Abs (   644,  1281)
+	 21: Rel (     0,   -84)  ->  Abs (   644,  1197)
+	 22: Rel (   -59,   -75)  ->  Abs (   585,  1122)
+	 23: Rel (   -45,   -56)  ->  Abs (   540,  1066)
+	 24: Rel (  -160,  -115)  ->  Abs (   380,   951)
+	 25: Rel (   -83,   -61)  ->  Abs (   297,   890)
+	 26: Rel (   -35,   -36)  ->  Abs (   262,   854)
+	 27: Rel (   386,     0)  ->  Abs (   648,   854)
+	 28: Rel (     0,  -121)  ->  Abs (   648,   733)
+
+	Glyph 241: off = 0x0000E696, len = 246
+	  numberOfContours:	1
+	  xMin:			33
+	  yMin:			715
+	  xMax:			646
+	  yMax:			1484
+
+	EndPoints
+	---------
+	  0:  43
+
+	  Length of Instructions:	118
+	00000: NPUSHB      (17):    35     8    16    19    35    16    77    15    15    22 
+	                             5     1    39    48     0     1     0 
+	00019: PUSHW[5]            696     5   609    41   287 
+	00030: NPUSHB      (12):    29    25    39    95    26   111    26     2    63    26 
+	                             1    26 
+	00044: PUSHW[3]            696    22   609 
+	00051: NPUSHB      (25):    29     1    15   160    19    41    32    39     8    41 
+	                            38   223     0    25    41    26    39     1    41     0 
+	                            25    44   169   104    24 
+	00078: CALL       
+	00079: FLIPOFF    
+	00080: SRP0       
+	00081: MIRP[srp0,nmd,rd,0] 
+	00082: FLIPON     
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: MIRP[srp0,nmd,rd,0] 
+	00085: MIRP[nrp0,md,rd,1] 
+	00086: SRP0       
+	00087: MIRP[srp0,md,rd,1] 
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: MIRP[srp0,nmd,rd,0] 
+	00090: MIRP[srp0,md,rd,1] 
+	00091: MIRP[srp0,nmd,rd,0] 
+	00092: SVTCA[y-axis] 
+	00093: MIAP[rd+ci] 
+	00094: MIRP[srp0,md,rd,1] 
+	00095: MIRP[srp0,nmd,rd,0] 
+	00096: DELTAP1    
+	00097: DELTAP3    
+	00098: MIRP[nrp0,nmd,rd,0] 
+	00099: SRP0       
+	00100: MIRP[srp0,md,rd,1] 
+	00101: MIRP[srp0,md,rd,1] 
+	00102: MIRP[srp0,nmd,rd,0] 
+	00103: DELTAP1    
+	00104: MIRP[nrp0,nmd,rd,0] 
+	00105: SRP1       
+	00106: SRP2       
+	00107: IP         
+	00108: MDAP[rd]   
+	00109: MIRP[srp0,md,rd,0] 
+	00110: IP         
+	00111: SVTCA[x-axis] 
+	00112: SRP2       
+	00113: IP         
+	00114: SRP1       
+	00115: IP         
+	00116: IUP[y]     
+	00117: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:                      Y-Short X-Short On
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:                      Y-Short X-Short Off
+	 25:                      Y-Short X-Short On
+	 26:  YDual               Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short On
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:                      Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    33,   929)  ->  Abs (    33,   929)
+	  1: Rel (   146,    15)  ->  Abs (   179,   944)
+	  2: Rel (    20,   -60)  ->  Abs (   199,   884)
+	  3: Rel (    32,   -22)  ->  Abs (   231,   862)
+	  4: Rel (    43,   -30)  ->  Abs (   274,   832)
+	  5: Rel (    59,     0)  ->  Abs (   333,   832)
+	  6: Rel (    71,     0)  ->  Abs (   404,   832)
+	  7: Rel (    86,    78)  ->  Abs (   490,   910)
+	  8: Rel (     0,    55)  ->  Abs (   490,   965)
+	  9: Rel (     0,    50)  ->  Abs (   490,  1015)
+	 10: Rel (   -72,    60)  ->  Abs (   418,  1075)
+	 11: Rel (   -87,     0)  ->  Abs (   331,  1075)
+	 12: Rel (   -12,     0)  ->  Abs (   319,  1075)
+	 13: Rel (   -21,    -2)  ->  Abs (   298,  1073)
+	 14: Rel (   -14,    -1)  ->  Abs (   284,  1072)
+	 15: Rel (    -8,     0)  ->  Abs (   276,  1072)
+	 16: Rel (    22,   110)  ->  Abs (   298,  1182)
+	 17: Rel (    81,    -1)  ->  Abs (   379,  1181)
+	 18: Rel (    75,    60)  ->  Abs (   454,  1241)
+	 19: Rel (     0,    43)  ->  Abs (   454,  1284)
+	 20: Rel (     0,    37)  ->  Abs (   454,  1321)
+	 21: Rel (   -60,    52)  ->  Abs (   394,  1373)
+	 22: Rel (   -59,     0)  ->  Abs (   335,  1373)
+	 23: Rel (   -56,     0)  ->  Abs (   279,  1373)
+	 24: Rel (   -63,   -44)  ->  Abs (   216,  1329)
+	 25: Rel (   -23,   -58)  ->  Abs (   193,  1271)
+	 26: Rel (  -143,    23)  ->  Abs (    50,  1294)
+	 27: Rel (    41,   106)  ->  Abs (    91,  1400)
+	 28: Rel (   125,    84)  ->  Abs (   216,  1484)
+	 29: Rel (   120,     0)  ->  Abs (   336,  1484)
+	 30: Rel (   144,     0)  ->  Abs (   480,  1484)
+	 31: Rel (   131,  -107)  ->  Abs (   611,  1377)
+	 32: Rel (     0,   -80)  ->  Abs (   611,  1297)
+	 33: Rel (     0,   -55)  ->  Abs (   611,  1242)
+	 34: Rel (   -71,   -86)  ->  Abs (   540,  1156)
+	 35: Rel (   -67,   -19)  ->  Abs (   473,  1137)
+	 36: Rel (    89,   -22)  ->  Abs (   562,  1115)
+	 37: Rel (    84,  -101)  ->  Abs (   646,  1014)
+	 38: Rel (     0,   -68)  ->  Abs (   646,   946)
+	 39: Rel (     0,   -93)  ->  Abs (   646,   853)
+	 40: Rel (  -158,  -138)  ->  Abs (   488,   715)
+	 41: Rel (  -146,     0)  ->  Abs (   342,   715)
+	 42: Rel (  -140,     0)  ->  Abs (   202,   715)
+	 43: Rel (  -148,   111)  ->  Abs (    54,   826)
+
+	Glyph 242: off = 0x0000E78C, len = 400
+	  numberOfContours:	3
+	  xMin:			107
+	  yMin:			-57
+	  xMax:			1672
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  13
+	  2:  42
+
+	  Length of Instructions:	256
+	00000: NPUSHB      (26):     6    17     1   246    17     1    47    44    51    33 
+	                            63    38    68    33    84    33   172    40   188    40 
+	                           236    40     8     2     3     3 
+	00028: PUSHW[1]            666 
+	00031: NPUSHB      (33):     0     1    20     0     0     1    40    41    15    16 
+	                            17     3    27    14     0     3     1     2     4    44 
+	                            43    11    12     4     5     8     7    28    24    27 
+	                             7   232     8 
+	00066: PUSHW[1]            675 
+	00069: PUSHB[3]             11     4    13 
+	00073: PUSHW[1]            287 
+	00076: NPUSHB      (16):    11    12    58     2     1     1    31    27    47    27 
+	                            63    27     3    27    77    24 
+	00094: PUSHW[8]            609    31   287    40   609    14    41   609 
+	00111: NPUSHB      (11):    42    42    14    39     0     0     3     9    14    39 
+	                            27 
+	00124: PUSHW[3]            611    28   285 
+	00131: NPUSHB      (19):    21    41    34    58    42    42    41   105    44     5 
+	                             4    12    13    41     4     8     7   203     4 
+	00152: PUSHW[1]            324 
+	00155: PUSHB[4]             43    87   104    24 
+	00160: CALL       
+	00161: SRP0       
+	00162: MIRP[srp0,nmd,rd,2] 
+	00163: MIRP[srp0,nmd,rd,2] 
+	00164: ALIGNRP    
+	00165: SRP0       
+	00166: MIRP[srp0,md,rd,1] 
+	00167: ALIGNRP    
+	00168: SRP0       
+	00169: ALIGNRP    
+	00170: SRP0       
+	00171: MIRP[srp0,nmd,rd,2] 
+	00172: ALIGNRP    
+	00173: SRP0       
+	00174: MIRP[srp0,nmd,rd,0] 
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: MIRP[srp0,md,rd,1] 
+	00177: MIRP[nrp0,md,rd,1] 
+	00178: MIRP[nrp0,nmd,rd,0] 
+	00179: SVTCA[y-axis] 
+	00180: MIAP[rd+ci] 
+	00181: ALIGNRP    
+	00182: SRP0       
+	00183: MIRP[srp0,nmd,rd,0] 
+	00184: ALIGNRP    
+	00185: SRP0       
+	00186: MIRP[nrp0,md,rd,1] 
+	00187: SRP0       
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: MIRP[srp0,md,rd,1] 
+	00190: MIRP[srp0,md,rd,1] 
+	00191: MIRP[srp0,nmd,rd,0] 
+	00192: DELTAP1    
+	00193: MIAP[rd+ci] 
+	00194: ALIGNRP    
+	00195: MIRP[srp0,nmd,rd,0] 
+	00196: ALIGNRP    
+	00197: MIRP[srp0,md,rd,1] 
+	00198: ALIGNRP    
+	00199: SRP0       
+	00200: MIRP[srp0,nmd,rd,0] 
+	00201: MIRP[srp0,md,rd,1] 
+	00202: SRP1       
+	00203: SRP2       
+	00204: IP         
+	00205: SRP1       
+	00206: SRP2       
+	00207: IP         
+	00208: SVTCA[x-axis] 
+	00209: SRP1       
+	00210: SRP2       
+	00211: IP         
+	00212: SRP1       
+	00213: SRP2       
+	00214: SLOOP      
+	00215: IP         
+	00216: SRP1       
+	00217: SRP2       
+	00218: SLOOP      
+	00219: IP         
+	00220: SRP1       
+	00221: IP         
+	00222: SDPVTL[1]  
+	00223: MDAP[nrd]  
+	00224: CALL       
+	00225: RDTG       
+	00226: SRP0       
+	00227: MDRP[nrp0,nmd,rd,0] 
+	00228: PUSHB[2]              6     2 
+	00231: RS         
+	00232: EQ         
+	00233: IF         
+	00234: PUSHB[6]             38    31    42    17    31    41 
+	00241: SVTCA[y-axis] 
+	00242: SRP1       
+	00243: SRP2       
+	00244: IP         
+	00245: SRP1       
+	00246: SRP2       
+	00247: IP         
+	00248: EIF        
+	00249: IUP[y]     
+	00250: IUP[x]     
+	00251: SVTCA[x-axis] 
+	00252: DELTAP1    
+	00253: SVTCA[y-axis] 
+	00254: DELTAP1    
+	00255: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual         Y-Short X-Short On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+	  4:                              X-Short On
+	  5:        XDual                         On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:                                      On
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual               Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:                      Y-Short X-Short On
+	 37:                      Y-Short X-Short Off
+	 38:                      Y-Short X-Short On
+	 39:                      Y-Short X-Short Off
+	 40:                      Y-Short X-Short On
+	 41:  YDual                               On
+	 42:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   228,   -57)  ->  Abs (   228,   -57)
+	  1: Rel (  1101,  1548)  ->  Abs (  1329,  1491)
+	  2: Rel (   157,     0)  ->  Abs (  1486,  1491)
+	  3: Rel ( -1101, -1548)  ->  Abs (   385,   -57)
+	  4: Rel (   -54,   790)  ->  Abs (   331,   733)
+	  5: Rel (     0,   554)  ->  Abs (   331,  1287)
+	  6: Rel (  -102,   -81)  ->  Abs (   229,  1206)
+	  7: Rel (  -122,   -32)  ->  Abs (   107,  1174)
+	  8: Rel (     0,   123)  ->  Abs (   107,  1297)
+	  9: Rel (    62,    20)  ->  Abs (   169,  1317)
+	 10: Rel (   152,   106)  ->  Abs (   321,  1423)
+	 11: Rel (    47,    61)  ->  Abs (   368,  1484)
+	 12: Rel (   108,     0)  ->  Abs (   476,  1484)
+	 13: Rel (     0,  -751)  ->  Abs (   476,   733)
+	 14: Rel (   573,  -764)  ->  Abs (  1049,   -31)
+	 15: Rel (     6,    56)  ->  Abs (  1055,    25)
+	 16: Rel (    42,    57)  ->  Abs (  1097,    82)
+	 17: Rel (    62,    87)  ->  Abs (  1159,   169)
+	 18: Rel (   288,   208)  ->  Abs (  1447,   377)
+	 19: Rel (    27,    31)  ->  Abs (  1474,   408)
+	 20: Rel (    37,    41)  ->  Abs (  1511,   449)
+	 21: Rel (     0,    43)  ->  Abs (  1511,   492)
+	 22: Rel (     0,    48)  ->  Abs (  1511,   540)
+	 23: Rel (   -69,    61)  ->  Abs (  1442,   601)
+	 24: Rel (   -69,     0)  ->  Abs (  1373,   601)
+	 25: Rel (   -66,     0)  ->  Abs (  1307,   601)
+	 26: Rel (   -65,   -47)  ->  Abs (  1242,   554)
+	 27: Rel (   -21,   -66)  ->  Abs (  1221,   488)
+	 28: Rel (  -151,    15)  ->  Abs (  1070,   503)
+	 29: Rel (    29,   112)  ->  Abs (  1099,   615)
+	 30: Rel (   144,   105)  ->  Abs (  1243,   720)
+	 31: Rel (   133,     0)  ->  Abs (  1376,   720)
+	 32: Rel (   151,     0)  ->  Abs (  1527,   720)
+	 33: Rel (   141,  -118)  ->  Abs (  1668,   602)
+	 34: Rel (     0,   -85)  ->  Abs (  1668,   517)
+	 35: Rel (     0,   -84)  ->  Abs (  1668,   433)
+	 36: Rel (   -59,   -75)  ->  Abs (  1609,   358)
+	 37: Rel (   -45,   -56)  ->  Abs (  1564,   302)
+	 38: Rel (  -159,  -116)  ->  Abs (  1405,   186)
+	 39: Rel (   -84,   -61)  ->  Abs (  1321,   125)
+	 40: Rel (   -35,   -35)  ->  Abs (  1286,    90)
+	 41: Rel (   386,     0)  ->  Abs (  1672,    90)
+	 42: Rel (     0,  -121)  ->  Abs (  1672,   -31)
+
+	Glyph 243: off = 0x0000E91C, len = 362
+	  numberOfContours:	4
+	  xMin:			107
+	  yMin:			-57
+	  xMax:			1678
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  13
+	  2:  24
+	  3:  27
+
+	  Length of Instructions:	257
+	00000: NPUSHB      (32):    22    17     1    32     1    32     2    41    17    43 
+	                            27    58    17    58    27    86     0   102     0   134 
+	                            27     9    27    27   102    27   118    27     3     1 
+	                             0     0 
+	00034: PUSHW[1]            666 
+	00037: NPUSHB      (29):     3     2    20     3     3     2    11    12     4     0 
+	                             3     1     2     4    29    28    27    17    18    24 
+	                            14    26    17    18    27     5     7   232     8 
+	00068: PUSHW[1]            675 
+	00071: PUSHB[3]             11     4    13 
+	00075: PUSHW[1]            287 
+	00078: NPUSHB      (21):    12    12    11     2    11    58     1     1    22    23 
+	                            23    16    15    27    25    21    20    20    25   100 
+	                            15 
+	00101: PUSHW[1]            688 
+	00104: PUSHB[3]             14    19    18 
+	00108: PUSHW[1]            287 
+	00111: NPUSHB      (45):    24    24    14     0     3    39    14    11    26    53 
+	                            19    27   249    17    17    95    16     1    16   238 
+	                            14    53    19    22    77    32    24     1    24   172 
+	                            29    12    13    53     5     4     8     7   203    32 
+	                             4     1     4    25    28 
+	00158: PUSHW[4]            417   104    24   270 
+	00167: SCANCTRL   
+	00168: CALL       
+	00169: FLIPOFF    
+	00170: SRP0       
+	00171: MIRP[srp0,nmd,rd,0] 
+	00172: DELTAP1    
+	00173: FLIPON     
+	00174: MIRP[srp0,nmd,rd,2] 
+	00175: ALIGNRP    
+	00176: SRP0       
+	00177: ALIGNRP    
+	00178: MIRP[srp0,md,rd,1] 
+	00179: ALIGNRP    
+	00180: SRP0       
+	00181: MIRP[srp0,nmd,rd,2] 
+	00182: DELTAP1    
+	00183: MIRP[nrp0,nmd,rd,0] 
+	00184: ALIGNRP    
+	00185: MIRP[nrp0,md,rd,1] 
+	00186: MIRP[srp0,md,rd,1] 
+	00187: DELTAP1    
+	00188: ALIGNRP    
+	00189: SRP0       
+	00190: MIRP[nrp0,md,rd,1] 
+	00191: SRP0       
+	00192: MIRP[nrp0,md,rd,1] 
+	00193: SVTCA[y-axis] 
+	00194: MIAP[rd+ci] 
+	00195: MIRP[srp0,nmd,rd,0] 
+	00196: ALIGNRP    
+	00197: SRP0       
+	00198: ALIGNRP    
+	00199: SRP0       
+	00200: MIRP[srp0,md,rd,1] 
+	00201: ALIGNRP    
+	00202: SRP0       
+	00203: MIRP[srp0,nmd,rd,0] 
+	00204: MIRP[srp0,md,rd,1] 
+	00205: ALIGNRP    
+	00206: SRP0       
+	00207: ALIGNRP    
+	00208: SRP0       
+	00209: ALIGNRP    
+	00210: SRP0       
+	00211: ALIGNRP    
+	00212: ALIGNRP    
+	00213: SRP0       
+	00214: ALIGNRP    
+	00215: MIAP[rd+ci] 
+	00216: MIRP[nrp0,nmd,rd,0] 
+	00217: ALIGNRP    
+	00218: SRP0       
+	00219: ALIGNRP    
+	00220: SRP0       
+	00221: MIRP[srp0,md,rd,1] 
+	00222: ALIGNRP    
+	00223: SRP0       
+	00224: MIRP[srp0,nmd,rd,0] 
+	00225: MIRP[srp0,md,rd,1] 
+	00226: IP         
+	00227: SRP1       
+	00228: SRP2       
+	00229: IP         
+	00230: IP         
+	00231: SVTCA[x-axis] 
+	00232: SRP1       
+	00233: SRP2       
+	00234: IP         
+	00235: SRP2       
+	00236: IP         
+	00237: SRP1       
+	00238: SRP2       
+	00239: SLOOP      
+	00240: IP         
+	00241: SRP1       
+	00242: SRP2       
+	00243: IP         
+	00244: SDPVTL[1]  
+	00245: MDAP[nrd]  
+	00246: CALL       
+	00247: RDTG       
+	00248: SRP0       
+	00249: MDRP[nrp0,nmd,rd,0] 
+	00250: IUP[y]     
+	00251: IUP[x]     
+	00252: SVTCA[x-axis] 
+	00253: DELTAP1    
+	00254: DELTAP1    
+	00255: SVTCA[y-axis] 
+	00256: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual         Y-Short X-Short On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+	  4:                              X-Short On
+	  5:        XDual                         On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:                                      On
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual                               On
+	 17:  YDual XDual         Y-Short         On
+	 18:                                      On
+	 19:  YDual XDual                 X-Short On
+	 20:        XDual                         On
+	 21:  YDual XDual                 X-Short On
+	 22:        XDual         Y-Short         On
+	 23:  YDual                       X-Short On
+	 24:        XDual         Y-Short         On
+	 25:                              X-Short On
+	 26:        XDual                         On
+	 27:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   252,   -57)  ->  Abs (   252,   -57)
+	  1: Rel (  1102,  1548)  ->  Abs (  1354,  1491)
+	  2: Rel (   156,     0)  ->  Abs (  1510,  1491)
+	  3: Rel ( -1101, -1548)  ->  Abs (   409,   -57)
+	  4: Rel (   -78,   790)  ->  Abs (   331,   733)
+	  5: Rel (     0,   554)  ->  Abs (   331,  1287)
+	  6: Rel (  -102,   -81)  ->  Abs (   229,  1206)
+	  7: Rel (  -122,   -32)  ->  Abs (   107,  1174)
+	  8: Rel (     0,   123)  ->  Abs (   107,  1297)
+	  9: Rel (    62,    20)  ->  Abs (   169,  1317)
+	 10: Rel (   152,   106)  ->  Abs (   321,  1423)
+	 11: Rel (    47,    61)  ->  Abs (   368,  1484)
+	 12: Rel (   108,     0)  ->  Abs (   476,  1484)
+	 13: Rel (     0,  -751)  ->  Abs (   476,   733)
+	 14: Rel (   954,  -764)  ->  Abs (  1430,   -31)
+	 15: Rel (     0,   154)  ->  Abs (  1430,   123)
+	 16: Rel (  -383,     0)  ->  Abs (  1047,   123)
+	 17: Rel (     0,   123)  ->  Abs (  1047,   246)
+	 18: Rel (   405,   474)  ->  Abs (  1452,   720)
+	 19: Rel (   122,     0)  ->  Abs (  1574,   720)
+	 20: Rel (     0,  -489)  ->  Abs (  1574,   231)
+	 21: Rel (   104,     0)  ->  Abs (  1678,   231)
+	 22: Rel (     0,  -108)  ->  Abs (  1678,   123)
+	 23: Rel (  -104,     0)  ->  Abs (  1574,   123)
+	 24: Rel (     0,  -154)  ->  Abs (  1574,   -31)
+	 25: Rel (  -144,   262)  ->  Abs (  1430,   231)
+	 26: Rel (     0,   263)  ->  Abs (  1430,   494)
+	 27: Rel (  -230,  -263)  ->  Abs (  1200,   231)
+
+	Glyph 244: off = 0x0000EA86, len = 494
+	  numberOfContours:	4
+	  xMin:			33
+	  yMin:			-57
+	  xMax:			1678
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  45
+	  2:  56
+	  3:  59
+
+	  Length of Instructions:	307
+	00000: PUSHB[6]             47    61     1     2     3     3 
+	00007: PUSHW[1]            666 
+	00010: NPUSHB      (39):     0     1    20     0     0     1    18    21    17     0 
+	                             3     1     2     4    61    60    37    12    21    50 
+	                            51    58    37    17    18     5     4     9    49    58 
+	                            50    48    18    77    17    17    24     9     5 
+	00051: PUSHW[1]            682 
+	00054: NPUSHB      (11):    16     4    32     4    48     4     3     4   145     9 
+	                            27 
+	00067: PUSHW[1]            682 
+	00070: NPUSHB      (23):    31    28    47    28    63    28     3   127    28     1 
+	                            95    28   111    28     2    95    28   111    28     2 
+	                            28   145    24 
+	00095: PUSHW[6]            609    31     9   609    43   287 
+	00108: NPUSHB      (18):    31    51     2     1     1    53    52    52    57    54 
+	                            55    55    47    59    57   100    48    47 
+	00128: PUSHW[1]            689 
+	00131: PUSHB[3]             46    51    50 
+	00135: PUSHW[1]            287 
+	00138: NPUSHB       (9):    56    56    46     3     0   143    46    11    17 
+	00149: PUSHW[1]            560 
+	00152: NPUSHB      (29):    21    59   249    49    49    48   238    56    58    53 
+	                            51    54   145    51    46    41    56    78    61    21 
+	                            41    34    34    12    41    48    40     1    40 
+	00183: PUSHW[1]            552 
+	00186: NPUSHB      (13):     4    27    41    28    34     5    41     4    25    60 
+	                           124   102    24 
+	00201: CALL       
+	00202: FLIPOFF    
+	00203: SRP0       
+	00204: MIRP[srp0,nmd,rd,0] 
+	00205: FLIPON     
+	00206: MIRP[nrp0,md,rd,1] 
+	00207: MIRP[srp0,nmd,rd,0] 
+	00208: MIRP[nrp0,md,rd,1] 
+	00209: SRP0       
+	00210: MIRP[srp0,md,rd,1] 
+	00211: DELTAP1    
+	00212: MIRP[nrp0,md,rd,1] 
+	00213: MIRP[srp0,nmd,rd,0] 
+	00214: MIRP[nrp0,md,rd,1] 
+	00215: SRP0       
+	00216: MIRP[srp0,nmd,rd,2] 
+	00217: MIRP[nrp0,md,rd,1] 
+	00218: ALIGNRP    
+	00219: MIRP[nrp0,nmd,rd,0] 
+	00220: SRP0       
+	00221: MIRP[nrp0,md,rd,1] 
+	00222: SRP0       
+	00223: MIRP[srp0,md,rd,1] 
+	00224: ALIGNRP    
+	00225: SRP0       
+	00226: MIRP[nrp0,md,rd,1] 
+	00227: SRP0       
+	00228: MIRP[srp0,nmd,rd,0] 
+	00229: SVTCA[y-axis] 
+	00230: MIAP[rd+ci] 
+	00231: MIRP[srp0,nmd,rd,2] 
+	00232: ALIGNRP    
+	00233: SRP0       
+	00234: ALIGNRP    
+	00235: SRP0       
+	00236: MIRP[srp0,md,rd,1] 
+	00237: ALIGNRP    
+	00238: SRP0       
+	00239: MIRP[srp0,nmd,rd,0] 
+	00240: ALIGNRP    
+	00241: MIRP[srp0,md,rd,1] 
+	00242: ALIGNRP    
+	00243: SRP0       
+	00244: ALIGNRP    
+	00245: SRP0       
+	00246: ALIGNRP    
+	00247: SRP0       
+	00248: ALIGNRP    
+	00249: SRP0       
+	00250: ALIGNRP    
+	00251: MIAP[rd+ci] 
+	00252: ALIGNRP    
+	00253: MIRP[srp0,nmd,rd,0] 
+	00254: MIRP[srp0,md,rd,1] 
+	00255: MIRP[nrp0,md,rd,1] 
+	00256: SRP0       
+	00257: MIRP[srp0,md,rd,1] 
+	00258: MIRP[srp0,nmd,rd,0] 
+	00259: DELTAP3    
+	00260: DELTAP2    
+	00261: DELTAP2    
+	00262: DELTAP1    
+	00263: MIRP[nrp0,nmd,rd,0] 
+	00264: SRP0       
+	00265: MIRP[srp0,nmd,rd,0] 
+	00266: DELTAP1    
+	00267: MIRP[nrp0,nmd,rd,0] 
+	00268: SRP1       
+	00269: SRP2       
+	00270: IP         
+	00271: MDAP[rd]   
+	00272: MIRP[srp0,md,rd,0] 
+	00273: SRP1       
+	00274: SRP2       
+	00275: IP         
+	00276: IP         
+	00277: SRP1       
+	00278: SRP2       
+	00279: IP         
+	00280: SRP1       
+	00281: SRP2       
+	00282: IP         
+	00283: SVTCA[x-axis] 
+	00284: SRP1       
+	00285: SRP2       
+	00286: IP         
+	00287: SRP1       
+	00288: SRP2       
+	00289: IP         
+	00290: SRP1       
+	00291: SRP2       
+	00292: SLOOP      
+	00293: IP         
+	00294: SRP1       
+	00295: SRP2       
+	00296: IP         
+	00297: SDPVTL[1]  
+	00298: MDAP[nrd]  
+	00299: CALL       
+	00300: RDTG       
+	00301: SRP0       
+	00302: MDRP[nrp0,nmd,rd,0] 
+	00303: IUP[y]     
+	00304: IUP[x]     
+	00305: SVTCA[x-axis] 
+	00306: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual         Y-Short X-Short On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+	  4:                                      On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:                      Y-Short X-Short Off
+	 37:                      Y-Short X-Short On
+	 38:        XDual         Y-Short X-Short Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:                      Y-Short X-Short Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short Off
+	 45:  YDual               Y-Short X-Short Off
+	 46:                                      On
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual                               On
+	 49:  YDual XDual         Y-Short         On
+	 50:                                      On
+	 51:  YDual XDual                 X-Short On
+	 52:        XDual                         On
+	 53:  YDual XDual                 X-Short On
+	 54:        XDual         Y-Short         On
+	 55:  YDual                       X-Short On
+	 56:        XDual         Y-Short         On
+	 57:                              X-Short On
+	 58:        XDual                         On
+	 59:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   252,   -57)  ->  Abs (   252,   -57)
+	  1: Rel (  1101,  1548)  ->  Abs (  1353,  1491)
+	  2: Rel (   157,     0)  ->  Abs (  1510,  1491)
+	  3: Rel ( -1101, -1548)  ->  Abs (   409,   -57)
+	  4: Rel (  -376,   986)  ->  Abs (    33,   929)
+	  5: Rel (   146,    15)  ->  Abs (   179,   944)
+	  6: Rel (    20,   -60)  ->  Abs (   199,   884)
+	  7: Rel (    32,   -22)  ->  Abs (   231,   862)
+	  8: Rel (    43,   -30)  ->  Abs (   274,   832)
+	  9: Rel (    59,     0)  ->  Abs (   333,   832)
+	 10: Rel (    71,     0)  ->  Abs (   404,   832)
+	 11: Rel (    86,    78)  ->  Abs (   490,   910)
+	 12: Rel (     0,    55)  ->  Abs (   490,   965)
+	 13: Rel (     0,    50)  ->  Abs (   490,  1015)
+	 14: Rel (   -72,    60)  ->  Abs (   418,  1075)
+	 15: Rel (   -84,     0)  ->  Abs (   334,  1075)
+	 16: Rel (   -50,    -3)  ->  Abs (   284,  1072)
+	 17: Rel (    -8,     0)  ->  Abs (   276,  1072)
+	 18: Rel (    22,   110)  ->  Abs (   298,  1182)
+	 19: Rel (    81,    -1)  ->  Abs (   379,  1181)
+	 20: Rel (    75,    60)  ->  Abs (   454,  1241)
+	 21: Rel (     0,    43)  ->  Abs (   454,  1284)
+	 22: Rel (     0,    37)  ->  Abs (   454,  1321)
+	 23: Rel (   -60,    52)  ->  Abs (   394,  1373)
+	 24: Rel (   -59,     0)  ->  Abs (   335,  1373)
+	 25: Rel (   -56,     0)  ->  Abs (   279,  1373)
+	 26: Rel (   -63,   -44)  ->  Abs (   216,  1329)
+	 27: Rel (   -23,   -58)  ->  Abs (   193,  1271)
+	 28: Rel (  -143,    23)  ->  Abs (    50,  1294)
+	 29: Rel (    41,   106)  ->  Abs (    91,  1400)
+	 30: Rel (   125,    84)  ->  Abs (   216,  1484)
+	 31: Rel (   120,     0)  ->  Abs (   336,  1484)
+	 32: Rel (   144,     0)  ->  Abs (   480,  1484)
+	 33: Rel (   131,  -107)  ->  Abs (   611,  1377)
+	 34: Rel (     0,   -80)  ->  Abs (   611,  1297)
+	 35: Rel (     0,   -55)  ->  Abs (   611,  1242)
+	 36: Rel (   -71,   -86)  ->  Abs (   540,  1156)
+	 37: Rel (   -67,   -19)  ->  Abs (   473,  1137)
+	 38: Rel (    89,   -22)  ->  Abs (   562,  1115)
+	 39: Rel (    84,  -101)  ->  Abs (   646,  1014)
+	 40: Rel (     0,   -68)  ->  Abs (   646,   946)
+	 41: Rel (     0,   -93)  ->  Abs (   646,   853)
+	 42: Rel (  -158,  -138)  ->  Abs (   488,   715)
+	 43: Rel (  -146,     0)  ->  Abs (   342,   715)
+	 44: Rel (  -140,     0)  ->  Abs (   202,   715)
+	 45: Rel (  -148,   111)  ->  Abs (    54,   826)
+	 46: Rel (  1375,  -857)  ->  Abs (  1429,   -31)
+	 47: Rel (     0,   154)  ->  Abs (  1429,   123)
+	 48: Rel (  -382,     0)  ->  Abs (  1047,   123)
+	 49: Rel (     0,   123)  ->  Abs (  1047,   246)
+	 50: Rel (   404,   474)  ->  Abs (  1451,   720)
+	 51: Rel (   123,     0)  ->  Abs (  1574,   720)
+	 52: Rel (     0,  -489)  ->  Abs (  1574,   231)
+	 53: Rel (   104,     0)  ->  Abs (  1678,   231)
+	 54: Rel (     0,  -108)  ->  Abs (  1678,   123)
+	 55: Rel (  -104,     0)  ->  Abs (  1574,   123)
+	 56: Rel (     0,  -154)  ->  Abs (  1574,   -31)
+	 57: Rel (  -145,   262)  ->  Abs (  1429,   231)
+	 58: Rel (     0,   263)  ->  Abs (  1429,   494)
+	 59: Rel (  -229,  -263)  ->  Abs (  1200,   231)
+
+	Glyph 245: off = 0x0000EC74, len = 252
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1037
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	191
+	00000: NPUSHB      (20):     7    30     5     5     4     9    30    11    64    11 
+	                            11     2    85    11    64    17    17     2    85    11 
+	00022: PUSHW[1]            561 
+	00025: NPUSHB      (53):    14    30    12    30     2    30     0    64    13    13 
+	                             2    85     0   134    16    17     4     2    17     0 
+	                            14    13   165    10    10     9    77     6     6     5 
+	                           106    19     7     8    11    12    15    16    32     4 
+	                             3     0    17     2     1   118    17    28    16    16 
+	                             2    85    17 
+	00080: PUSHW[1]            -18 
+	00083: PUSHB[5]             15    15     2    85    17 
+	00089: PUSHW[1]            -14 
+	00092: PUSHB[5]             13    13     2    85    17 
+	00098: PUSHW[1]            -10 
+	00101: PUSHB[5]             12    12     2    85    17 
+	00107: PUSHW[1]             -4 
+	00110: PUSHB[5]             11    11     2    85    17 
+	00116: PUSHW[1]            -14 
+	00119: PUSHB[5]             12    12     6    85    17 
+	00125: PUSHW[1]            -16 
+	00128: NPUSHB      (10):    13    13     6    85    17   159    18   161   167    24 
+	00140: CALL       
+	00141: SRP0       
+	00142: MIRP[srp0,nmd,rd,2] 
+	00143: CALL       
+	00144: CALL       
+	00145: CALL       
+	00146: CALL       
+	00147: CALL       
+	00148: CALL       
+	00149: CALL       
+	00150: MIRP[srp0,nmd,rd,0] 
+	00151: ALIGNRP    
+	00152: SRP0       
+	00153: ALIGNRP    
+	00154: ALIGNRP    
+	00155: ALIGNRP    
+	00156: MIRP[srp0,md,rd,1] 
+	00157: ALIGNRP    
+	00158: ALIGNRP    
+	00159: ALIGNRP    
+	00160: ALIGNRP    
+	00161: ALIGNRP    
+	00162: SRP0       
+	00163: MIRP[srp0,nmd,rd,2] 
+	00164: ALIGNRP    
+	00165: SRP0       
+	00166: MIRP[srp0,nmd,rd,0] 
+	00167: ALIGNRP    
+	00168: SRP0       
+	00169: MIRP[srp0,nmd,rd,0] 
+	00170: ALIGNRP    
+	00171: SVTCA[y-axis] 
+	00172: MIAP[rd+ci] 
+	00173: MIAP[rd+ci] 
+	00174: SRP0       
+	00175: ALIGNRP    
+	00176: MIRP[srp0,nmd,rd,0] 
+	00177: CALL       
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: MIRP[srp0,md,rd,1] 
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: MIRP[srp0,md,rd,2] 
+	00182: CALL       
+	00183: CALL       
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: SRP0       
+	00186: ALIGNRP    
+	00187: SRP0       
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: IUP[y]     
+	00190: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:  YDual                       X-Short On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual                 X-Short On
+	  4:        XDual                         On
+	  5:  YDual                               On
+	  6:        XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual                               On
+	 10:        XDual         Y-Short         On
+	 11:  YDual                               On
+	 12:        XDual                         On
+	 13:  YDual                               On
+	 14:        XDual         Y-Short         On
+	 15:  YDual                               On
+	 16:        XDual         Y-Short         On
+	 17:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   168,   246)  ->  Abs (   168,   246)
+	  1: Rel (  -168,     0)  ->  Abs (     0,   246)
+	  2: Rel (     0,   149)  ->  Abs (     0,   395)
+	  3: Rel (   168,     0)  ->  Abs (   168,   395)
+	  4: Rel (     0,  1071)  ->  Abs (   168,  1466)
+	  5: Rel (   869,     0)  ->  Abs (  1037,  1466)
+	  6: Rel (     0,  -173)  ->  Abs (  1037,  1293)
+	  7: Rel (  -675,     0)  ->  Abs (   362,  1293)
+	  8: Rel (     0,  -454)  ->  Abs (   362,   839)
+	  9: Rel (   568,     0)  ->  Abs (   930,   839)
+	 10: Rel (     0,  -173)  ->  Abs (   930,   666)
+	 11: Rel (  -568,     0)  ->  Abs (   362,   666)
+	 12: Rel (     0,  -271)  ->  Abs (   362,   395)
+	 13: Rel (   315,     0)  ->  Abs (   677,   395)
+	 14: Rel (     0,  -149)  ->  Abs (   677,   246)
+	 15: Rel (  -315,     0)  ->  Abs (   362,   246)
+	 16: Rel (     0,  -246)  ->  Abs (   362,     0)
+	 17: Rel (  -194,     0)  ->  Abs (   168,     0)
+
+	Glyph 246: off = 0x0000ED70, len = 70
+	  numberOfContours:	-1  (Composite)
+	  xMin:			109
+	  yMin:			-25
+	  xMax:			1465
+	  yMax:			1815
+
+	     0: Flags:		0x0226
+		Glyf Index:	42
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	217
+		X WOffset:	526
+		Y WOffset:	351
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1     1    42 
+	00005: PUSHW[2]            545    41 
+	00010: SVTCA[y-axis] 
+	00011: CALL       
+	00012: SVTCA[x-axis] 
+	00013: PUSHB[2]              6     2 
+	00016: RS         
+	00017: EQ         
+	00018: IF         
+	00019: PUSHB[6]              0    45    39    14    14    65 
+	00026: CALL       
+	00027: ELSE       
+	00028: NPUSHB      (10):   112    42   160    42     2    42    14     0   104    43 
+	00040: CALL       
+	00041: DELTAP1    
+	00042: EIF        
+	00043: SHC[rp1,zp0] 
+
+	Glyph 247: off = 0x0000EDB6, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			66
+	  yMin:			-431
+	  xMax:			1002
+	  yMax:			1464
+
+	     0: Flags:		0x0226
+		Glyf Index:	74
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	217
+		X WOffset:	228
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     2   192    47     1    47    19    44   104    43     2 
+	                             1    47 
+	00014: PUSHW[2]            546    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: DELTAP2    
+	00024: SHC[rp1,zp0] 
+
+	Glyph 248: off = 0x0000EDEA, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			177
+	  yMin:			0
+	  xMax:			400
+	  yMax:			1780
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	218
+		X WOffset:	-52
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1     1     7 
+	00004: PUSHW[2]            545    41 
+	00009: SVTCA[y-axis] 
+	00010: CALL       
+	00011: SVTCA[x-axis] 
+	00012: PUSHB[2]              6     2 
+	00015: RS         
+	00016: EQ         
+	00017: IF         
+	00018: PUSHB[7]              1     0     5     6     1     2    65 
+	00026: CALL       
+	00027: SHC[rp1,zp0] 
+	00028: ELSE       
+	00029: PUSHB[7]              1     1     7     2     9    72    39 
+	00037: CALL       
+	00038: EIF        
+
+	Glyph 249: off = 0x0000EE2C, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			92
+	  yMin:			-411
+	  xMax:			1259
+	  yMax:			1491
+
+	     0: Flags:		0x0226
+		Glyf Index:	54
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	220
+		X WOffset:	339
+		Y WOffset:	10
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (22):     1    31    51     1   192    51   240    51     2   144 
+	                            51     1    51    45    25    72    43     1     1    50 
+	                             8    41 
+	00024: SVTCA[y-axis] 
+	00025: CALL       
+	00026: SVTCA[x-axis] 
+	00027: CALL       
+	00028: DELTAP1    
+	00029: DELTAP1    
+	00030: DELTAP2    
+	00031: SHC[rp1,zp0] 
+
+	Glyph 250: off = 0x0000EE66, len = 84
+	  numberOfContours:	-1  (Composite)
+	  xMin:			63
+	  yMin:			-401
+	  xMax:			945
+	  yMax:			1086
+
+	     0: Flags:		0x0226
+		Glyf Index:	86
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	220
+		X WOffset:	159
+		Y WOffset:	20
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              1     1     1    50    10    41 
+	00007: SVTCA[y-axis] 
+	00008: CALL       
+	00009: SVTCA[x-axis] 
+	00010: PUSHB[2]              6     2 
+	00013: RS         
+	00014: EQ         
+	00015: IF         
+	00016: PUSHB[6]              0    50    51    46    46    65 
+	00023: CALL       
+	00024: ELSE       
+	00025: NPUSHB      (12):    16    51     1   224    51   240    51     2   176    51 
+	                             1    51 
+	00039: PUSHW[1]            -64 
+	00042: PUSHB[8]             15    17    52    51    46    60    72    43 
+	00051: CALL       
+	00052: CALL       
+	00053: DELTAP1    
+	00054: DELTAP1    
+	00055: DELTAP3    
+	00056: EIF        
+	00057: SHC[rp1,zp0] 
+
+	Glyph 251: off = 0x0000EEBA, len = 72
+	  numberOfContours:	-1  (Composite)
+	  xMin:			102
+	  yMin:			-25
+	  xMax:			1398
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	38
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	441
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1    33    64    16    17    52    33 
+	00008: PUSHW[1]            -64 
+	00011: NPUSHB      (19):    19    25    52   112    33   223    33     2    47    33 
+	                             1    33    12     0    72    43     1     1    33 
+	00032: PUSHW[2]            545    41 
+	00037: SVTCA[y-axis] 
+	00038: CALL       
+	00039: SVTCA[x-axis] 
+	00040: CALL       
+	00041: DELTAP1    
+	00042: DELTAP2    
+	00043: CALL       
+	00044: CALL       
+	00045: SHC[rp1,zp0] 
+
+	Glyph 252: off = 0x0000EF02, len = 74
+	  numberOfContours:	-1  (Composite)
+	  xMin:			80
+	  yMin:			-24
+	  xMax:			1005
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	70
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	202
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1     1    30 
+	00005: PUSHW[2]            546    41 
+	00010: SVTCA[y-axis] 
+	00011: CALL       
+	00012: SVTCA[x-axis] 
+	00013: PUSHB[2]              6     2 
+	00016: RS         
+	00017: EQ         
+	00018: IF         
+	00019: PUSHB[6]              0    30    30    11    11    65 
+	00026: CALL       
+	00027: ELSE       
+	00028: NPUSHB      (13):     0    30   160    30     2   127    30     1    30    11 
+	                             0    72    43 
+	00043: CALL       
+	00044: DELTAP1    
+	00045: DELTAP2    
+	00046: EIF        
+	00047: SHC[rp1,zp0] 
+
+	Glyph 253: off = 0x0000EF4C, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			102
+	  yMin:			-25
+	  xMax:			1398
+	  yMax:			1830
+
+	     0: Flags:		0x0226
+		Glyf Index:	38
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	432
+		Y WOffset:	356
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    35    32     8    15    65     1     1    34 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 254: off = 0x0000EF7C, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			80
+	  yMin:			-24
+	  xMax:			1005
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	70
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	202
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    32    29     7    14    65     1     1    31 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 255: off = 0x0000EFAC, len = 488
+	  numberOfContours:	2
+	  xMin:			70
+	  yMin:			-24
+	  xMax:			1136
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  25
+	  1:  37
+
+	  Length of Instructions:	374
+	00000: NPUSHB     (118):    83    28    80    36   143    39     3    63    39     1 
+	                            41    13    38    24    42    30    57    13    54    24 
+	                            54    28    58    37    74    13    69    23    70    27 
+	                            73    37    90    13    90    20    87    21    86    24 
+	                            15    12    29    25    22    35     1     0    64    30 
+	                            43    52     0   212     3     8     9    64    30    43 
+	                            52     9   212     7    95     6   111     6     2    31 
+	                             6    47     6    63     6    95     6   159     6     5 
+	                             6   145     5     2    95     3   111     3     2    31 
+	                             3    47     3    63     3    95     3   159     3     5 
+	                             3   145     5     4     0    10    11    10    29    28 
+	                            14    11    35    28    22     7     2     1 
+	00120: PUSHW[1]            619 
+	00123: NPUSHB      (49):     8     3     4    37     5    32    51     0    25    12 
+	                            11    37    10     7    96     8     1   160     8     1 
+	                           176     8   208     8     2     8   146     5     6     9 
+	                            39    64    11    11     2    85    39    64    13    13 
+	                             2    85    10    18    16    16     2    85    10 
+	00174: PUSHW[1]            -12 
+	00177: NPUSHB      (17):    15    15     2    85    10     6    14    14     2    85 
+	                            10    24    13    13     2    85    10 
+	00196: PUSHW[1]            -14 
+	00199: NPUSHB      (11):    11    11     6    85    10    14    16    16     6    85 
+	                            10 
+	00212: PUSHW[1]            -18 
+	00215: PUSHB[5]             12    12     6    85    10 
+	00221: PUSHW[1]             -8 
+	00224: NPUSHB      (66):    13    13     6    85    16    10    64    10   128    10 
+	                             3    10   116    26    36    18    30    11    11     2 
+	                            85    18    24    12    12     2    85    18    30    13 
+	                            13     2    85    18    12    11    11     6    85    18 
+	                            12    13    13     6    85    18    26    12    12     6 
+	                            85    31    18    63    18    79    18    96    18     4 
+	                            18    25    38    52    80    24 
+	00292: CALL       
+	00293: FLIPOFF    
+	00294: SRP0       
+	00295: MIRP[srp0,nmd,rd,0] 
+	00296: DELTAP1    
+	00297: CALL       
+	00298: CALL       
+	00299: CALL       
+	00300: CALL       
+	00301: CALL       
+	00302: CALL       
+	00303: FLIPON     
+	00304: MIRP[nrp0,md,rd,1] 
+	00305: MIRP[srp0,md,rd,1] 
+	00306: DELTAP1    
+	00307: CALL       
+	00308: CALL       
+	00309: CALL       
+	00310: CALL       
+	00311: CALL       
+	00312: CALL       
+	00313: CALL       
+	00314: CALL       
+	00315: CALL       
+	00316: CALL       
+	00317: ALIGNRP    
+	00318: ALIGNRP    
+	00319: ALIGNRP    
+	00320: MIRP[srp0,nmd,rd,0] 
+	00321: DELTAP1    
+	00322: DELTAP2    
+	00323: DELTAP3    
+	00324: ALIGNRP    
+	00325: SRP0       
+	00326: MIRP[srp0,md,rd,1] 
+	00327: ALIGNRP    
+	00328: ALIGNRP    
+	00329: ALIGNRP    
+	00330: MIRP[nrp0,nmd,rd,0] 
+	00331: SRP0       
+	00332: MIRP[srp0,md,rd,1] 
+	00333: ALIGNRP    
+	00334: SRP0       
+	00335: MIRP[srp0,md,rd,1] 
+	00336: ALIGNRP    
+	00337: SVTCA[y-axis] 
+	00338: MIAP[rd+ci] 
+	00339: MIRP[nrp0,md,rd,1] 
+	00340: MIAP[rd+ci] 
+	00341: MIRP[nrp0,md,rd,1] 
+	00342: MIAP[rd+ci] 
+	00343: ALIGNRP    
+	00344: MIAP[rd+ci] 
+	00345: ALIGNRP    
+	00346: MIRP[srp0,nmd,rd,0] 
+	00347: DELTAP1    
+	00348: DELTAP2    
+	00349: ALIGNRP    
+	00350: SRP0       
+	00351: MIRP[srp0,nmd,rd,0] 
+	00352: DELTAP1    
+	00353: DELTAP2    
+	00354: ALIGNRP    
+	00355: MIRP[srp0,md,rd,1] 
+	00356: CALL       
+	00357: ALIGNRP    
+	00358: SRP0       
+	00359: MIRP[srp0,md,rd,1] 
+	00360: CALL       
+	00361: ALIGNRP    
+	00362: SRP1       
+	00363: SRP2       
+	00364: IP         
+	00365: SRP2       
+	00366: IP         
+	00367: IUP[y]     
+	00368: IUP[x]     
+	00369: SVTCA[y-axis] 
+	00370: DELTAP1    
+	00371: SVTCA[x-axis] 
+	00372: DELTAP3    
+	00373: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual         Y-Short         On
+	  7:  YDual XDual                 X-Short On
+	  8:        XDual         Y-Short         On
+	  9:  YDual                       X-Short On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+	 12:  YDual XDual         Y-Short         On
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:        XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short On
+	 26:                                      On
+	 27:        XDual         Y-Short         Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   812,  1219)  ->  Abs (   812,  1219)
+	  1: Rel (  -346,     0)  ->  Abs (   466,  1219)
+	  2: Rel (     0,   132)  ->  Abs (   466,  1351)
+	  3: Rel (   346,     0)  ->  Abs (   812,  1351)
+	  4: Rel (     0,   115)  ->  Abs (   812,  1466)
+	  5: Rel (   179,     0)  ->  Abs (   991,  1466)
+	  6: Rel (     0,  -115)  ->  Abs (   991,  1351)
+	  7: Rel (   145,     0)  ->  Abs (  1136,  1351)
+	  8: Rel (     0,  -132)  ->  Abs (  1136,  1219)
+	  9: Rel (  -145,     0)  ->  Abs (   991,  1219)
+	 10: Rel (     0, -1219)  ->  Abs (   991,     0)
+	 11: Rel (  -167,     0)  ->  Abs (   824,     0)
+	 12: Rel (     0,   134)  ->  Abs (   824,   134)
+	 13: Rel (  -101,  -158)  ->  Abs (   723,   -24)
+	 14: Rel (  -196,     0)  ->  Abs (   527,   -24)
+	 15: Rel (  -127,     0)  ->  Abs (   400,   -24)
+	 16: Rel (  -213,   140)  ->  Abs (   187,   116)
+	 17: Rel (  -117,   251)  ->  Abs (    70,   367)
+	 18: Rel (     0,   163)  ->  Abs (    70,   530)
+	 19: Rel (     0,   159)  ->  Abs (    70,   689)
+	 20: Rel (   106,   259)  ->  Abs (   176,   948)
+	 21: Rel (   212,   138)  ->  Abs (   388,  1086)
+	 22: Rel (   131,     0)  ->  Abs (   519,  1086)
+	 23: Rel (    96,     0)  ->  Abs (   615,  1086)
+	 24: Rel (   150,   -81)  ->  Abs (   765,  1005)
+	 25: Rel (    47,   -65)  ->  Abs (   812,   940)
+	 26: Rel (  -557,  -410)  ->  Abs (   255,   530)
+	 27: Rel (     0,  -204)  ->  Abs (   255,   326)
+	 28: Rel (   172,  -202)  ->  Abs (   427,   124)
+	 29: Rel (   117,     0)  ->  Abs (   544,   124)
+	 30: Rel (   118,     0)  ->  Abs (   662,   124)
+	 31: Rel (   165,   193)  ->  Abs (   827,   317)
+	 32: Rel (     0,   198)  ->  Abs (   827,   515)
+	 33: Rel (     0,   218)  ->  Abs (   827,   733)
+	 34: Rel (  -168,   204)  ->  Abs (   659,   937)
+	 35: Rel (  -123,     0)  ->  Abs (   536,   937)
+	 36: Rel (  -120,     0)  ->  Abs (   416,   937)
+	 37: Rel (  -161,  -196)  ->  Abs (   255,   741)
+
+	Glyph 256: off = 0x0000F194, len = 62
+	  numberOfContours:	1
+	  xMin:			-31
+	  yMin:			1566
+	  xMax:			1162
+	  yMax:			1695
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	37
+	00000: NPUSHB      (13):     2    48     3     3     1    48     0     3    26     5 
+	                             0    25     4 
+	00015: PUSHW[3]            393   398    24 
+	00022: CALL       
+	00023: FLIPOFF    
+	00024: SRP0       
+	00025: MIRP[nrp0,nmd,rd,0] 
+	00026: SRP0       
+	00027: MIRP[nrp0,nmd,rd,2] 
+	00028: SVTCA[y-axis] 
+	00029: MDAP[rd]   
+	00030: FLIPON     
+	00031: MIRP[nrp0,md,rd,1] 
+	00032: ALIGNRP    
+	00033: SRP0       
+	00034: MIRP[nrp0,md,rd,1] 
+	00035: IUP[y]     
+	00036: IUP[x]     
+
+	Flags
+	-----
+	  0:                              X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   -31,  1566)  ->  Abs (   -31,  1566)
+	  1: Rel (     0,   129)  ->  Abs (   -31,  1695)
+	  2: Rel (  1193,     0)  ->  Abs (  1162,  1695)
+	  3: Rel (     0,  -129)  ->  Abs (  1162,  1566)
+
+	Glyph 257: off = 0x0000F1D2, len = 58
+	  numberOfContours:	1
+	  xMin:			497
+	  yMin:			637
+	  xMax:			702
+	  yMax:			842
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	33
+	00000: NPUSHB      (11):     2     1     3     0    60     1     3    60     0    25 
+	                             4 
+	00013: PUSHW[1]            335 
+	00016: PUSHB[2]             65    24 
+	00019: CALL       
+	00020: FLIPOFF    
+	00021: SRP0       
+	00022: MIRP[srp0,nmd,rd,0] 
+	00023: FLIPON     
+	00024: MIRP[srp0,md,rd,1] 
+	00025: SVTCA[y-axis] 
+	00026: MDAP[rd]   
+	00027: MIRP[srp0,md,rd,1] 
+	00028: ALIGNRP    
+	00029: SRP0       
+	00030: ALIGNRP    
+	00031: IUP[y]     
+	00032: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   497,   637)  ->  Abs (   497,   637)
+	  1: Rel (     0,   205)  ->  Abs (   497,   842)
+	  2: Rel (   205,     0)  ->  Abs (   702,   842)
+	  3: Rel (     0,  -205)  ->  Abs (   702,   637)
+
+	Glyph 258: off = 0x0000F20C, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1815
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	217
+		X WOffset:	338
+		Y WOffset:	351
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     1    19    12     9   104    39     2     1    19 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+
+	Glyph 259: off = 0x0000F23C, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1464
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	217
+		X WOffset:	245
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     2   207    60     1    60    28     3   104    43     2 
+	                             1    60 
+	00014: PUSHW[2]            546    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: DELTAP1    
+	00024: SHC[rp1,zp0] 
+
+	Glyph 260: off = 0x0000F270, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			-416
+	  xMax:			1548
+	  yMax:			1466
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	222
+		X WOffset:	927
+		Y WOffset:	10
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     2     1    15     4     0    72    39     2     1    15 
+	                             8    41 
+	00014: PUSHW[1]            356 
+	00017: SCANCTRL   
+	00018: SVTCA[y-axis] 
+	00019: CALL       
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+
+	Glyph 261: off = 0x0000F2A0, len = 44
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-401
+	  xMax:			1268
+	  yMax:			1086
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	222
+		X WOffset:	647
+		Y WOffset:	25
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     2     1    56    39     0    72    39     2     1    56 
+	                            10    41 
+	00014: SVTCA[y-axis] 
+	00015: CALL       
+	00016: SVTCA[x-axis] 
+	00017: CALL       
+
+	Glyph 262: off = 0x0000F2CC, len = 72
+	  numberOfContours:	-1  (Composite)
+	  xMin:			158
+	  yMin:			0
+	  xMax:			1370
+	  yMax:			1830
+
+	     0: Flags:		0x0226
+		Glyf Index:	39
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	241
+		Y WOffset:	356
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (21):     2    30    64    19    19     6    85    30    64    15 
+	                            15     6    85    30    64    12    12     6    85    30 
+	                             2 
+	00023: PUSHW[1]            -10 
+	00026: PUSHB[5]             72    43     2     1    33 
+	00032: PUSHW[2]            545    41 
+	00037: SVTCA[y-axis] 
+	00038: CALL       
+	00039: SVTCA[x-axis] 
+	00040: CALL       
+	00041: CALL       
+	00042: CALL       
+	00043: CALL       
+	00044: SHC[rp1,zp0] 
+
+	Glyph 263: off = 0x0000F314, len = 438
+	  numberOfContours:	3
+	  xMin:			71
+	  yMin:			-24
+	  xMax:			1262
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  10
+	  1:  28
+	  2:  40
+
+	  Length of Instructions:	308
+	00000: NPUSHB      (48):    54    39    83    31    83    39    98    31    98    39 
+	                             5    53    24    54    31     2    45    33    58    13 
+	                            73    13    67    23    69    30    73    40    90    13 
+	                           106    13     8    45    13    35    24     2     6    10 
+	                             0    12    38    32    25    28    22     6 
+	00050: PUSHW[1]            579 
+	00053: NPUSHB      (52):     0    64     1     3    64     2     2     1     0    27 
+	                            26     0    38    72    22     7    28    11    10    32 
+	                            72    14    11    10   145     0     0     1     3     2 
+	                            64     1    49    27    27    28    35    51    11    25 
+	                            26    12    26    11    37    28    18    16    16     2 
+	                            85    28 
+	00107: PUSHW[1]            -12 
+	00110: NPUSHB      (23):    15    15     2    85    28     6    14    14     2    85 
+	                            28    24    13    13     2    85    28    11    16    16 
+	                             6    85    28 
+	00135: PUSHW[1]             -8 
+	00138: PUSHB[5]             15    15     6    85    28 
+	00144: PUSHW[1]            -18 
+	00147: NPUSHB      (11):    13    13     6    85    28     9    12    12     6    85 
+	                            28 
+	00160: PUSHW[1]            -25 
+	00163: NPUSHB      (62):    11    11     6    85    16    28    64    28    96    28 
+	                           128    28     4    28   116    29    36    18    30    11 
+	                            11     2    85    18    24    12    12     2    85    18 
+	                            30    13    13     2    85    18    10    13    13     6 
+	                            85    18    34    12    12     6    85    18     7    11 
+	                            11     6    85    63    18    79    18     2    18    25 
+	                            41    52 
+	00227: PUSHW[2]            662    24 
+	00232: CALL       
+	00233: FLIPOFF    
+	00234: SRP0       
+	00235: MIRP[srp0,nmd,rd,0] 
+	00236: DELTAP1    
+	00237: CALL       
+	00238: CALL       
+	00239: CALL       
+	00240: CALL       
+	00241: CALL       
+	00242: CALL       
+	00243: FLIPON     
+	00244: MIRP[nrp0,md,rd,1] 
+	00245: MIRP[srp0,md,rd,1] 
+	00246: DELTAP1    
+	00247: CALL       
+	00248: CALL       
+	00249: CALL       
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+	00253: CALL       
+	00254: CALL       
+	00255: CALL       
+	00256: MIRP[srp0,md,rd,1] 
+	00257: ALIGNRP    
+	00258: ALIGNRP    
+	00259: SRP0       
+	00260: ALIGNRP    
+	00261: SRP0       
+	00262: MIRP[nrp0,nmd,rd,0] 
+	00263: SRP0       
+	00264: ALIGNRP    
+	00265: SRP0       
+	00266: MIRP[srp0,md,rd,2] 
+	00267: MIRP[srp0,md,rd,1] 
+	00268: ALIGNRP    
+	00269: SRP0       
+	00270: ALIGNRP    
+	00271: FLIPON     
+	00272: SRP0       
+	00273: MIRP[nrp0,nmd,rd,0] 
+	00274: SVTCA[y-axis] 
+	00275: MIAP[rd+ci] 
+	00276: MIRP[nrp0,md,rd,1] 
+	00277: MIAP[rd+ci] 
+	00278: ALIGNRP    
+	00279: MIAP[rd+ci] 
+	00280: MIRP[nrp0,md,rd,1] 
+	00281: MIAP[rd+ci] 
+	00282: ALIGNRP    
+	00283: MIAP[rd+ci] 
+	00284: ALIGNRP    
+	00285: SRP0       
+	00286: MIRP[nrp0,md,rd,1] 
+	00287: SRP0       
+	00288: MIRP[nrp0,md,rd,1] 
+	00289: MIRP[nrp0,md,rd,1] 
+	00290: SRP1       
+	00291: SRP2       
+	00292: IP         
+	00293: SRP1       
+	00294: SRP2       
+	00295: IP         
+	00296: SVTCA[x-axis] 
+	00297: SRP1       
+	00298: SRP2       
+	00299: IP         
+	00300: IUP[y]     
+	00301: IUP[x]     
+	00302: SVTCA[y-axis] 
+	00303: DELTAP1    
+	00304: DELTAP1    
+	00305: SVTCA[x-axis] 
+	00306: DELTAP1    
+	00307: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:                                      On
+	 12:  YDual XDual         Y-Short         On
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:        XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short On
+	 26:        XDual                         On
+	 27:  YDual XDual                 X-Short On
+	 28:        XDual                         On
+	 29:                                      On
+	 30:        XDual         Y-Short         Off
+	 31:        XDual         Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short Off
+	 40:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1078,  1281)  ->  Abs (  1078,  1281)
+	  1: Rel (     0,   185)  ->  Abs (  1078,  1466)
+	  2: Rel (   184,     0)  ->  Abs (  1262,  1466)
+	  3: Rel (     0,  -185)  ->  Abs (  1262,  1281)
+	  4: Rel (     0,  -101)  ->  Abs (  1262,  1180)
+	  5: Rel (   -72,  -125)  ->  Abs (  1190,  1055)
+	  6: Rel (   -78,   -34)  ->  Abs (  1112,  1021)
+	  7: Rel (   -45,    68)  ->  Abs (  1067,  1089)
+	  8: Rel (    51,    23)  ->  Abs (  1118,  1112)
+	  9: Rel (    49,    87)  ->  Abs (  1167,  1199)
+	 10: Rel (     2,    82)  ->  Abs (  1169,  1281)
+	 11: Rel (  -344, -1281)  ->  Abs (   825,     0)
+	 12: Rel (     0,   134)  ->  Abs (   825,   134)
+	 13: Rel (  -101,  -158)  ->  Abs (   724,   -24)
+	 14: Rel (  -196,     0)  ->  Abs (   528,   -24)
+	 15: Rel (  -127,     0)  ->  Abs (   401,   -24)
+	 16: Rel (  -213,   140)  ->  Abs (   188,   116)
+	 17: Rel (  -117,   251)  ->  Abs (    71,   367)
+	 18: Rel (     0,   163)  ->  Abs (    71,   530)
+	 19: Rel (     0,   159)  ->  Abs (    71,   689)
+	 20: Rel (   106,   259)  ->  Abs (   177,   948)
+	 21: Rel (   212,   138)  ->  Abs (   389,  1086)
+	 22: Rel (   131,     0)  ->  Abs (   520,  1086)
+	 23: Rel (    96,     0)  ->  Abs (   616,  1086)
+	 24: Rel (   150,   -81)  ->  Abs (   766,  1005)
+	 25: Rel (    47,   -65)  ->  Abs (   813,   940)
+	 26: Rel (     0,   526)  ->  Abs (   813,  1466)
+	 27: Rel (   179,     0)  ->  Abs (   992,  1466)
+	 28: Rel (     0, -1466)  ->  Abs (   992,     0)
+	 29: Rel (  -736,   530)  ->  Abs (   256,   530)
+	 30: Rel (     0,  -204)  ->  Abs (   256,   326)
+	 31: Rel (   172,  -202)  ->  Abs (   428,   124)
+	 32: Rel (   117,     0)  ->  Abs (   545,   124)
+	 33: Rel (   118,     0)  ->  Abs (   663,   124)
+	 34: Rel (   165,   193)  ->  Abs (   828,   317)
+	 35: Rel (     0,   198)  ->  Abs (   828,   515)
+	 36: Rel (     0,   218)  ->  Abs (   828,   733)
+	 37: Rel (  -168,   204)  ->  Abs (   660,   937)
+	 38: Rel (  -123,     0)  ->  Abs (   537,   937)
+	 39: Rel (  -120,     0)  ->  Abs (   417,   937)
+	 40: Rel (  -161,  -196)  ->  Abs (   256,   741)
+
+	Glyph 264: off = 0x0000F4CA, len = 378
+	  numberOfContours:	2
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1370
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  37
+
+	  Length of Instructions:	259
+	00000: NPUSHB      (46):    67     8    35     3    48    36     2     2     0    32 
+	                            33    30     6     5     2    21    20    30    19     0 
+	                             8    36    36    38    39    27    38    13    40    16 
+	                            16     2    85    13    14    15    15     2    85    13 
+	                            20    13    13     2    85    13 
+	00048: PUSHW[1]             -8 
+	00051: PUSHB[5]             12    12     2    85    13 
+	00057: PUSHW[1]             -8 
+	00060: PUSHB[5]             11    11     2    85    13 
+	00066: PUSHW[1]            -21 
+	00069: NPUSHB      (23):    12    12     6    85     0    13     1    13    26    39 
+	                            33    20    32     5     2    57     0    32    16    16 
+	                             2    85     0 
+	00094: PUSHW[1]            -10 
+	00097: PUSHB[5]             15    15     2    85     0 
+	00103: PUSHW[1]            -10 
+	00106: PUSHB[5]             13    13     2    85     0 
+	00112: PUSHW[1]             -6 
+	00115: PUSHB[5]             12    12     2    85     0 
+	00121: PUSHW[1]             -9 
+	00124: PUSHB[5]             12    12     6    85     0 
+	00130: PUSHW[1]             -8 
+	00133: NPUSHB      (10):    13    13     6    85     0    93    38    96    91    24 
+	00145: CALL       
+	00146: SRP0       
+	00147: MIRP[srp0,nmd,rd,2] 
+	00148: CALL       
+	00149: CALL       
+	00150: CALL       
+	00151: CALL       
+	00152: CALL       
+	00153: CALL       
+	00154: MIRP[nrp0,nmd,rd,0] 
+	00155: ALIGNRP    
+	00156: MIRP[srp0,md,rd,1] 
+	00157: ALIGNRP    
+	00158: FLIPOFF    
+	00159: SRP0       
+	00160: MIRP[srp0,nmd,rd,2] 
+	00161: DELTAP1    
+	00162: CALL       
+	00163: CALL       
+	00164: CALL       
+	00165: CALL       
+	00166: CALL       
+	00167: CALL       
+	00168: FLIPON     
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: SRP1       
+	00171: SRP2       
+	00172: IP         
+	00173: MDAP[rd]   
+	00174: SVTCA[y-axis] 
+	00175: MIAP[rd+ci] 
+	00176: ALIGNRP    
+	00177: MIRP[srp0,md,rd,1] 
+	00178: ALIGNRP    
+	00179: MIAP[rd+ci] 
+	00180: ALIGNRP    
+	00181: MIRP[srp0,md,rd,1] 
+	00182: ALIGNRP    
+	00183: SRP2       
+	00184: IP         
+	00185: MDAP[rd]   
+	00186: ALIGNRP    
+	00187: MIRP[srp0,md,rd,1] 
+	00188: ALIGNRP    
+	00189: IUP[y]     
+	00190: IUP[x]     
+	00191: RS         
+	00192: JROF       
+	00193: NPUSHB      (54):     7    31    11    12    10    12     9    12     8    12 
+	                             4     6    29    28    30    28     2     6    15    14 
+	                            16    14    17    14     3     6    25    26    24    26 
+	                            23    26     3     6    31     7    27    33     1    22 
+	                            18    27    33     1    28    12    32    33     1    26 
+	                            14    21    33     0 
+	00249: CALL       
+	00250: CALL       
+	00251: SVTCA[x-axis] 
+	00252: CALL       
+	00253: CALL       
+	00254: LOOPCALL   
+	00255: LOOPCALL   
+	00256: LOOPCALL   
+	00257: LOOPCALL   
+	00258: FLIPRGON   
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual                 X-Short On
+	  5:        XDual                         On
+	  6:  YDual                               On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual                 X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                              X-Short Off
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual               Y-Short         On
+	 21:  YDual                               On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual       Rep-  2 Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                               On
+	 34:        XDual                         On
+	 35:  YDual                               On
+	 36:        XDual         Y-Short         On
+	 37:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   158,     0)  ->  Abs (   158,     0)
+	  1: Rel (     0,   667)  ->  Abs (   158,   667)
+	  2: Rel (  -161,     0)  ->  Abs (    -3,   667)
+	  3: Rel (     0,   132)  ->  Abs (    -3,   799)
+	  4: Rel (   161,     0)  ->  Abs (   158,   799)
+	  5: Rel (     0,   667)  ->  Abs (   158,  1466)
+	  6: Rel (   506,     0)  ->  Abs (   664,  1466)
+	  7: Rel (   170,     0)  ->  Abs (   834,  1466)
+	  8: Rel (    90,   -21)  ->  Abs (   924,  1445)
+	  9: Rel (   126,   -29)  ->  Abs (  1050,  1416)
+	 10: Rel (    89,   -76)  ->  Abs (  1139,  1340)
+	 11: Rel (   116,   -98)  ->  Abs (  1255,  1242)
+	 12: Rel (   115,  -305)  ->  Abs (  1370,   937)
+	 13: Rel (     0,  -196)  ->  Abs (  1370,   741)
+	 14: Rel (     0,  -224)  ->  Abs (  1370,   517)
+	 15: Rel (  -142,  -323)  ->  Abs (  1228,   194)
+	 16: Rel (  -198,  -146)  ->  Abs (  1030,    48)
+	 17: Rel (  -129,   -31)  ->  Abs (   901,    17)
+	 18: Rel (   -71,   -17)  ->  Abs (   830,     0)
+	 19: Rel (  -143,     0)  ->  Abs (   687,     0)
+	 20: Rel (  -335,   173)  ->  Abs (   352,   173)
+	 21: Rel (   313,     0)  ->  Abs (   665,   173)
+	 22: Rel (   146,     0)  ->  Abs (   811,   173)
+	 23: Rel (   164,    54)  ->  Abs (   975,   227)
+	 24: Rel (    48,    48)  ->  Abs (  1023,   275)
+	 25: Rel (    69,    69)  ->  Abs (  1092,   344)
+	 26: Rel (    78,   232)  ->  Abs (  1170,   576)
+	 27: Rel (     0,   167)  ->  Abs (  1170,   743)
+	 28: Rel (     0,   172)  ->  Abs (  1170,   915)
+	 29: Rel (   -77,   206)  ->  Abs (  1093,  1121)
+	 30: Rel (  -124,   124)  ->  Abs (   969,  1245)
+	 31: Rel (  -152,    48)  ->  Abs (   817,  1293)
+	 32: Rel (  -157,     0)  ->  Abs (   660,  1293)
+	 33: Rel (  -308,     0)  ->  Abs (   352,  1293)
+	 34: Rel (     0,  -494)  ->  Abs (   352,   799)
+	 35: Rel (   404,     0)  ->  Abs (   756,   799)
+	 36: Rel (     0,  -132)  ->  Abs (   756,   667)
+	 37: Rel (  -404,     0)  ->  Abs (   352,   667)
+
+	Glyph 265: off = 0x0000F644, len = 44
+	  numberOfContours:	-1  (Composite)
+	  xMin:			162
+	  yMin:			-426
+	  xMax:			1256
+	  yMax:			1466
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	222
+		X WOffset:	632
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1     1    20    11     0    72    39     1     1    12 
+	                             8    41 
+	00014: SVTCA[y-axis] 
+	00015: CALL       
+	00016: SVTCA[x-axis] 
+	00017: CALL       
+
+	Glyph 266: off = 0x0000F670, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			75
+	  yMin:			-426
+	  xMax:			1054
+	  yMax:			1086
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	222
+		X WOffset:	317
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     2   144    30   207    30   223    30     3    96    30 
+	                           128    30     2    80    30     1    30    19 
+	00020: PUSHW[1]            -70 
+	00023: PUSHB[7]             72    43     2     1    30    10    41 
+	00031: SVTCA[y-axis] 
+	00032: CALL       
+	00033: SVTCA[x-axis] 
+	00034: CALL       
+	00035: DELTAP1    
+	00036: DELTAP1    
+	00037: DELTAP1    
+	00038: SHC[rp1,zp0] 
+
+	Glyph 267: off = 0x0000F6B2, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			162
+	  yMin:			0
+	  xMax:			1256
+	  yMax:			1830
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	307
+		Y WOffset:	356
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     1    12    64    30    32    52     0    12   175    12 
+	                             2    47    12    95    12     2    12     2 
+	00020: PUSHW[1]           -513 
+	00023: PUSHB[5]             72    43     1     1    16 
+	00029: PUSHW[2]            545    41 
+	00034: SVTCA[y-axis] 
+	00035: CALL       
+	00036: SVTCA[x-axis] 
+	00037: CALL       
+	00038: DELTAP1    
+	00039: DELTAP2    
+	00040: CALL       
+	00041: SHC[rp1,zp0] 
+
+	Glyph 268: off = 0x0000F6F6, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			75
+	  yMin:			-24
+	  xMax:			1054
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	224
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     1    30    10     0    72    39     2     1    33 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+
+	Glyph 269: off = 0x0000F726, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			150
+	  yMin:			0
+	  xMax:			1066
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	47
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	82
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     1     9     2   112    72    39     1     1     9 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+
+	Glyph 270: off = 0x0000F756, len = 86
+	  numberOfContours:	-1  (Composite)
+	  xMin:			66
+	  yMin:			0
+	  xMax:			435
+	  yMax:			1821
+
+	     0: Flags:		0x0226
+		Glyf Index:	79
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	-156
+		Y WOffset:	347
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1     1     7 
+	00005: PUSHW[2]            545    41 
+	00010: SVTCA[y-axis] 
+	00011: CALL       
+	00012: SVTCA[x-axis] 
+	00013: PUSHB[2]              6     2 
+	00016: RS         
+	00017: EQ         
+	00018: IF         
+	00019: PUSHB[6]              0     7     7     1     2    65 
+	00026: CALL       
+	00027: ELSE       
+	00028: PUSHW[2]              7   -64 
+	00033: PUSHB[4]             23    25    52     7 
+	00038: PUSHW[1]            -64 
+	00041: NPUSHB      (11):    34    37    52    47     7     1     7     1    90    72 
+	                            43 
+	00054: CALL       
+	00055: DELTAP1    
+	00056: CALL       
+	00057: CALL       
+	00058: EIF        
+	00059: SHC[rp1,zp0] 
+
+	Glyph 271: off = 0x0000F7AC, len = 222
+	  numberOfContours:	2
+	  xMin:			150
+	  yMin:			0
+	  xMax:			1066
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  10
+	  1:  16
+
+	  Length of Instructions:	157
+	00000: PUSHB[4]              6    10     0     6 
+	00005: PUSHW[1]            337 
+	00008: NPUSHB      (51):     1     3   101     2     0   101     2     1     1    13 
+	                            10    81     0     0     1     3     2    10    11    16 
+	                             2    85     2   101     1     1    18    13    13    12 
+	                             2    15    14    30    16    11     8    15    26    18 
+	                            13    14    32    12    11    36    16    16     2    85 
+	                            11 
+	00061: PUSHW[1]            -14 
+	00064: PUSHB[5]             15    15     2    85    11 
+	00070: PUSHW[1]             -2 
+	00073: NPUSHB      (11):    13    13     2    85    11     4    16    16     6    85 
+	                            11 
+	00086: PUSHW[1]             -2 
+	00089: NPUSHB      (13):    12    12     6    85    32    11     1    11    25    17 
+	                            59    92    24 
+	00104: CALL       
+	00105: FLIPOFF    
+	00106: SRP0       
+	00107: MIRP[srp0,nmd,rd,0] 
+	00108: DELTAP1    
+	00109: CALL       
+	00110: CALL       
+	00111: CALL       
+	00112: CALL       
+	00113: CALL       
+	00114: ALIGNRP    
+	00115: FLIPON     
+	00116: MIRP[srp0,md,rd,1] 
+	00117: ALIGNRP    
+	00118: FLIPOFF    
+	00119: SRP0       
+	00120: MIRP[nrp0,nmd,rd,2] 
+	00121: SVTCA[y-axis] 
+	00122: MIAP[rd+ci] 
+	00123: ALIGNRP    
+	00124: FLIPON     
+	00125: MIRP[srp0,md,rd,1] 
+	00126: ALIGNRP    
+	00127: MIAP[rd+ci] 
+	00128: ALIGNRP    
+	00129: SVTCA[x-axis] 
+	00130: SRP1       
+	00131: SRP2       
+	00132: IP         
+	00133: MDAP[rd]   
+	00134: MIRP[srp0,md,rd,1] 
+	00135: CALL       
+	00136: ALIGNRP    
+	00137: SRP0       
+	00138: ALIGNRP    
+	00139: SRP0       
+	00140: MIRP[nrp0,nmd,rd,0] 
+	00141: SVTCA[y-axis] 
+	00142: SRP0       
+	00143: ALIGNRP    
+	00144: SRP0       
+	00145: ALIGNRP    
+	00146: MIRP[nrp0,md,rd,1] 
+	00147: SRP0       
+	00148: MIRP[nrp0,md,rd,1] 
+	00149: SRP0       
+	00150: MIRP[nrp0,md,rd,1] 
+	00151: SVTCA[x-axis] 
+	00152: SRP1       
+	00153: SRP2       
+	00154: IP         
+	00155: IUP[y]     
+	00156: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:                                      On
+	 12:        XDual                         On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual                         On
+	 15:  YDual                               On
+	 16:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   712,  1261)  ->  Abs (   712,  1261)
+	  1: Rel (     0,   205)  ->  Abs (   712,  1466)
+	  2: Rel (   205,     0)  ->  Abs (   917,  1466)
+	  3: Rel (     0,  -205)  ->  Abs (   917,  1261)
+	  4: Rel (     0,  -113)  ->  Abs (   917,  1148)
+	  5: Rel (   -80,  -139)  ->  Abs (   837,  1009)
+	  6: Rel (   -87,   -38)  ->  Abs (   750,   971)
+	  7: Rel (   -50,    77)  ->  Abs (   700,  1048)
+	  8: Rel (    57,    25)  ->  Abs (   757,  1073)
+	  9: Rel (    55,    97)  ->  Abs (   812,  1170)
+	 10: Rel (     2,    91)  ->  Abs (   814,  1261)
+	 11: Rel (  -664, -1261)  ->  Abs (   150,     0)
+	 12: Rel (     0,  1466)  ->  Abs (   150,  1466)
+	 13: Rel (   194,     0)  ->  Abs (   344,  1466)
+	 14: Rel (     0, -1293)  ->  Abs (   344,   173)
+	 15: Rel (   722,     0)  ->  Abs (  1066,   173)
+	 16: Rel (     0,  -173)  ->  Abs (  1066,     0)
+
+	Glyph 272: off = 0x0000F88A, len = 274
+	  numberOfContours:	2
+	  xMin:			136
+	  yMin:			0
+	  xMax:			596
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  10
+	  1:  14
+
+	  Length of Instructions:	213
+	00000: NPUSHB       (9):    47    16     1    10     3     0     7   183     6 
+	00011: PUSHW[1]            579 
+	00014: NPUSHB      (14):     1     3    64     2     0    64     2     1     0     2 
+	                             3     1     0     6 
+	00030: PUSHW[1]            603 
+	00033: NPUSHB      (40):     7    51     0    64     3    20    11    16     2    85 
+	                            31     3     1     3    73   112    16   128    16     2 
+	                           159    16   223    16     2    79    16     1    16    13 
+	                            12     0    14    11    10    13    14    37    12    11 
+	00075: PUSHW[1]             -8 
+	00078: PUSHB[5]             16    16     2    85    11 
+	00084: PUSHW[1]             -6 
+	00087: NPUSHB      (17):    14    14     2    85    11     4    12    12     2    85 
+	                            11    10    11    11     2    85    11 
+	00106: PUSHW[1]            -14 
+	00109: PUSHB[5]             11    11     6    85    11 
+	00115: PUSHW[1]             -2 
+	00118: NPUSHB      (11):    15    15     6    85    11     8    16    16     6    85 
+	                            11 
+	00131: PUSHW[1]             -4 
+	00134: PUSHB[5]             13    13     6    85    11 
+	00140: PUSHW[1]             -7 
+	00143: NPUSHB      (15):    12    12     6    85     0    11    32    11     2    11 
+	                            78    15    71   102    24 
+	00160: CALL       
+	00161: SRP0       
+	00162: MIRP[srp0,nmd,rd,2] 
+	00163: DELTAP1    
+	00164: CALL       
+	00165: CALL       
+	00166: CALL       
+	00167: CALL       
+	00168: CALL       
+	00169: CALL       
+	00170: CALL       
+	00171: CALL       
+	00172: CALL       
+	00173: ALIGNRP    
+	00174: MIRP[srp0,md,rd,1] 
+	00175: ALIGNRP    
+	00176: SVTCA[y-axis] 
+	00177: MIAP[rd+ci] 
+	00178: ALIGNRP    
+	00179: MIAP[rd+ci] 
+	00180: ALIGNRP    
+	00181: SVTCA[x-axis] 
+	00182: SRP0       
+	00183: DELTAP2    
+	00184: DELTAP1    
+	00185: DELTAP1    
+	00186: MIRP[srp0,nmd,rd,2] 
+	00187: DELTAP1    
+	00188: CALL       
+	00189: MIRP[srp0,md,rd,1] 
+	00190: MIRP[srp0,nmd,rd,0] 
+	00191: MIRP[nrp0,nmd,rd,0] 
+	00192: SRP0       
+	00193: ALIGNRP    
+	00194: SRP0       
+	00195: ALIGNRP    
+	00196: SVTCA[y-axis] 
+	00197: MIAP[rd+ci] 
+	00198: ALIGNRP    
+	00199: MIRP[nrp0,md,rd,1] 
+	00200: SRP0       
+	00201: MIRP[nrp0,md,rd,1] 
+	00202: SRP0       
+	00203: MIRP[srp0,md,rd,1] 
+	00204: MIRP[nrp0,md,rd,1] 
+	00205: SVTCA[x-axis] 
+	00206: SRP1       
+	00207: SRP2       
+	00208: IP         
+	00209: IUP[y]     
+	00210: IUP[x]     
+	00211: SVTCA[x-axis] 
+	00212: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:                                      On
+	 12:        XDual                         On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   412,  1281)  ->  Abs (   412,  1281)
+	  1: Rel (     0,   185)  ->  Abs (   412,  1466)
+	  2: Rel (   184,     0)  ->  Abs (   596,  1466)
+	  3: Rel (     0,  -185)  ->  Abs (   596,  1281)
+	  4: Rel (     0,  -101)  ->  Abs (   596,  1180)
+	  5: Rel (   -72,  -125)  ->  Abs (   524,  1055)
+	  6: Rel (   -78,   -34)  ->  Abs (   446,  1021)
+	  7: Rel (   -45,    68)  ->  Abs (   401,  1089)
+	  8: Rel (    51,    23)  ->  Abs (   452,  1112)
+	  9: Rel (    49,    87)  ->  Abs (   501,  1199)
+	 10: Rel (     2,    82)  ->  Abs (   503,  1281)
+	 11: Rel (  -367, -1281)  ->  Abs (   136,     0)
+	 12: Rel (     0,  1466)  ->  Abs (   136,  1466)
+	 13: Rel (   180,     0)  ->  Abs (   316,  1466)
+	 14: Rel (     0, -1466)  ->  Abs (   316,     0)
+
+	Glyph 273: off = 0x0000F99C, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			150
+	  yMin:			0
+	  xMax:			1066
+	  yMax:			1466
+
+	     0: Flags:		0x0226
+		Glyf Index:	47
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	257
+		X WOffset:	228
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1     6 
+	00003: PUSHW[1]            -64 
+	00006: PUSHB[5]             12    14    52     6     4 
+	00012: PUSHW[1]           -345 
+	00015: NPUSHB      (10):    72    43     1     6    64    13    17    52     6     4 
+	00027: PUSHW[1]            464 
+	00030: PUSHB[2]             72    43 
+	00033: SVTCA[y-axis] 
+	00034: CALL       
+	00035: CALL       
+	00036: SHC[rp1,zp0] 
+	00037: SVTCA[x-axis] 
+	00038: CALL       
+	00039: CALL       
+	00040: SHC[rp1,zp0] 
+
+	Glyph 274: off = 0x0000F9E0, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			0
+	  xMax:			676
+	  yMax:			1466
+
+	     0: Flags:		0x0026
+		Glyf Index:	79
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	257
+		X BOffset:	-26
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     1   143     4   191     4     2     4     3   149    72 
+	                            43     1     4     3 
+	00016: PUSHW[1]            637 
+	00019: PUSHB[2]             72    43 
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SHC[rp1,zp0] 
+	00025: SVTCA[x-axis] 
+	00026: CALL       
+	00027: DELTAP1    
+	00028: SHC[rp1,zp0] 
+
+	Glyph 275: off = 0x0000FA16, len = 90
+	  numberOfContours:	-1  (Composite)
+	  xMin:			156
+	  yMin:			0
+	  xMax:			1311
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	49
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	348
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1     1    13 
+	00005: PUSHW[3]            545    41   356 
+	00012: SCANCTRL   
+	00013: SVTCA[y-axis] 
+	00014: CALL       
+	00015: SVTCA[x-axis] 
+	00016: PUSHB[2]              6     2 
+	00019: RS         
+	00020: EQ         
+	00021: IF         
+	00022: PUSHW[1]            -20 
+	00025: PUSHB[5]             13    13     2     4    65 
+	00031: CALL       
+	00032: ELSE       
+	00033: NPUSHB      (17):   111    13   127    13     2     0    13     1   191    13 
+	                           224    13   240    13     3    13     4 
+	00052: PUSHW[1]           -363 
+	00055: PUSHB[2]             72    43 
+	00058: CALL       
+	00059: DELTAP1    
+	00060: DELTAP2    
+	00061: DELTAP2    
+	00062: EIF        
+	00063: SHC[rp1,zp0] 
+
+	Glyph 276: off = 0x0000FA70, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			135
+	  yMin:			0
+	  xMax:			998
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	81
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	226
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              1    63    26     1    26 
+	00006: PUSHW[1]            -64 
+	00009: PUSHB[5]             18    20    52    26     5 
+	00015: PUSHW[1]            -38 
+	00018: PUSHB[5]             72    43     1     1    26 
+	00024: PUSHW[2]            546    41 
+	00029: SVTCA[y-axis] 
+	00030: CALL       
+	00031: SVTCA[x-axis] 
+	00032: CALL       
+	00033: CALL       
+	00034: DELTAP2    
+	00035: SHC[rp1,zp0] 
+
+	Glyph 277: off = 0x0000FAAE, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			156
+	  yMin:			0
+	  xMax:			1311
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	49
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	375
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    15    12     1     5    65     1     1    13 
+	00012: PUSHW[3]            545    41   356 
+	00019: SCANCTRL   
+	00020: SVTCA[y-axis] 
+	00021: CALL       
+	00022: SVTCA[x-axis] 
+	00023: CALL       
+	00024: SHC[rp1,zp0] 
+
+	Glyph 278: off = 0x0000FAE2, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			135
+	  yMin:			0
+	  xMax:			998
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	81
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	226
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    28    25     1    11    65     1     1    26 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 279: off = 0x0000FB12, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1501
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	221
+		X WOffset:	415
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     3     2     0    32    32    32     2   240    32     1 
+	                            32     3    86    72    43     2     3     2    35 
+	00021: PUSHW[2]            545    41 
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: DELTAP2    
+	00032: SHC[rp1,zp0] 
+	00033: SHC[rp1,zp0] 
+
+	Glyph 280: off = 0x0000FB4E, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1063
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	221
+		X WOffset:	225
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              3     2    30 
+	00004: PUSHW[1]            -64 
+	00007: NPUSHB      (16):    15    15     6    85   143    30     1    30     4    43 
+	                            72    43     2     3     2    33 
+	00025: PUSHW[2]            546    41 
+	00030: SVTCA[y-axis] 
+	00031: CALL       
+	00032: SVTCA[x-axis] 
+	00033: CALL       
+	00034: DELTAP1    
+	00035: CALL       
+	00036: SHC[rp1,zp0] 
+	00037: SHC[rp1,zp0] 
+
+	Glyph 281: off = 0x0000FB8E, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			0
+	  xMax:			1453
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	53
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	281
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     2    38    64    12    17    52    38    64    19    20 
+	                            52    38     2 
+	00015: PUSHW[1]           -136 
+	00018: PUSHB[5]             72    43     2     1    38 
+	00024: PUSHW[2]            545    41 
+	00029: SVTCA[y-axis] 
+	00030: CALL       
+	00031: SVTCA[x-axis] 
+	00032: CALL       
+	00033: CALL       
+	00034: CALL       
+	00035: SHC[rp1,zp0] 
+
+	Glyph 282: off = 0x0000FBCC, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			133
+	  yMin:			0
+	  xMax:			710
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	85
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	141
+		X BOffset:	20
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     1   175    21   223    21     2    21    64    11    13 
+	                            52    21     6 
+	00015: PUSHW[1]           -133 
+	00018: PUSHB[5]             72    43     1     1    21 
+	00024: PUSHW[2]            546    41 
+	00029: SVTCA[y-axis] 
+	00030: CALL       
+	00031: SVTCA[x-axis] 
+	00032: CALL       
+	00033: CALL       
+	00034: DELTAP1    
+	00035: SHC[rp1,zp0] 
+
+	Glyph 283: off = 0x0000FC08, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			0
+	  xMax:			1453
+	  yMax:			1830
+
+	     0: Flags:		0x0226
+		Glyf Index:	53
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	290
+		Y WOffset:	356
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     2    63    35     1   239    35   255    35     2    95 
+	                            35   143    35     2    35     2 
+	00018: PUSHW[1]           -149 
+	00021: PUSHB[5]             72    43     2     1    38 
+	00027: PUSHW[2]            545    41 
+	00032: SVTCA[y-axis] 
+	00033: CALL       
+	00034: SVTCA[x-axis] 
+	00035: CALL       
+	00036: DELTAP1    
+	00037: DELTAP1    
+	00038: DELTAP2    
+	00039: SHC[rp1,zp0] 
+
+	Glyph 284: off = 0x0000FC4A, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			60
+	  yMin:			0
+	  xMax:			710
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	85
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	223
+		X BOffset:	20
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              1    63    18    79    18     2    18     6 
+	00009: PUSHW[1]           -106 
+	00012: PUSHB[5]             72    43     1     1    21 
+	00018: PUSHW[2]            546    41 
+	00023: SVTCA[y-axis] 
+	00024: CALL       
+	00025: SVTCA[x-axis] 
+	00026: CALL       
+	00027: DELTAP1    
+	00028: SHC[rp1,zp0] 
+
+	Glyph 285: off = 0x0000FC80, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			92
+	  yMin:			-25
+	  xMax:			1259
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	54
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	270
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     1   127    52   143    52     2    79    52    95    52 
+	                             2    52    22     0    72    43     1     1    52 
+	00021: PUSHW[2]            545    41 
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: DELTAP1    
+	00032: SHC[rp1,zp0] 
+
+	Glyph 286: off = 0x0000FCBC, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			63
+	  yMin:			-24
+	  xMax:			945
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	86
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	172
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (22):     1   207    52   223    52     2    47    52    95    52 
+	                             2    79    52     1    52    21     0    72    43     1 
+	                             1    52 
+	00024: PUSHW[2]            546    41 
+	00029: SVTCA[y-axis] 
+	00030: CALL       
+	00031: SVTCA[x-axis] 
+	00032: CALL       
+	00033: DELTAP1    
+	00034: DELTAP1    
+	00035: DELTAP1    
+	00036: SHC[rp1,zp0] 
+
+	Glyph 287: off = 0x0000FCFC, len = 270
+	  numberOfContours:	2
+	  xMin:			48
+	  yMin:			-579
+	  xMax:			1210
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  18
+
+	  Length of Instructions:	202
+	00000: PUSHB[4]             13    18     8    14 
+	00005: PUSHW[3]            305    13   329 
+	00012: NPUSHB      (13):     9    11   101    10    18     8   101     9     9     0 
+	                            10     1    10 
+	00027: PUSHW[1]            697 
+	00030: NPUSHB      (20):     7    18    81     8     8     9   101    10    45     7 
+	                             5     2    30     4     3     2     7     0     8    20 
+	00052: PUSHW[1]            627 
+	00055: PUSHB[6]              6     5    32     4     1     4 
+	00062: PUSHW[1]            257 
+	00065: PUSHB[8]              6    32     1     2    47     3     1     3 
+	00074: PUSHW[1]            257 
+	00077: PUSHB[5]              1     7    32     1     0 
+	00083: PUSHW[1]            -24 
+	00086: NPUSHB      (11):    16    16     2    85     0     8    15    15     2    85 
+	                             0 
+	00099: PUSHW[1]            -14 
+	00102: PUSHB[5]             12    12     2    85     0 
+	00108: PUSHW[1]            -30 
+	00111: PUSHB[5]             13    13     2    85     0 
+	00117: PUSHW[1]             -4 
+	00120: PUSHB[5]             12    12     6    85     0 
+	00126: PUSHW[1]             -2 
+	00129: PUSHB[8]             13    13     6    85    32     0     1     0 
+	00138: PUSHW[1]            627 
+	00141: PUSHB[4]             19   182   153    24 
+	00146: CALL       
+	00147: SRP0       
+	00148: MIRP[srp0,nmd,rd,2] 
+	00149: DELTAP1    
+	00150: CALL       
+	00151: CALL       
+	00152: CALL       
+	00153: CALL       
+	00154: CALL       
+	00155: CALL       
+	00156: ALIGNRP    
+	00157: MIRP[nrp0,md,rd,1] 
+	00158: SRP0       
+	00159: MIRP[srp0,nmd,rd,0] 
+	00160: DELTAP1    
+	00161: ALIGNRP    
+	00162: SRP0       
+	00163: MIRP[srp0,md,rd,1] 
+	00164: MIRP[srp0,nmd,rd,0] 
+	00165: DELTAP1    
+	00166: ALIGNRP    
+	00167: SRP0       
+	00168: MIRP[nrp0,nmd,rd,2] 
+	00169: SVTCA[y-axis] 
+	00170: MIAP[rd+ci] 
+	00171: ALIGNRP    
+	00172: MIAP[rd+ci] 
+	00173: ALIGNRP    
+	00174: MIRP[srp0,md,rd,1] 
+	00175: ALIGNRP    
+	00176: SVTCA[x-axis] 
+	00177: SRP0       
+	00178: MIRP[srp0,nmd,rd,0] 
+	00179: MIRP[srp0,md,rd,1] 
+	00180: ALIGNRP    
+	00181: SRP0       
+	00182: MIRP[nrp0,nmd,rd,0] 
+	00183: SVTCA[y-axis] 
+	00184: SRP0       
+	00185: MIRP[srp0,nmd,rd,2] 
+	00186: DELTAP1    
+	00187: ALIGNRP    
+	00188: SRP0       
+	00189: MIRP[srp0,md,rd,1] 
+	00190: ALIGNRP    
+	00191: SRP0       
+	00192: MIRP[nrp0,md,rd,1] 
+	00193: SRP0       
+	00194: MIRP[srp0,md,rd,1] 
+	00195: MIRP[nrp0,md,rd,1] 
+	00196: SVTCA[x-axis] 
+	00197: SRP1       
+	00198: SRP2       
+	00199: IP         
+	00200: IUP[y]     
+	00201: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual                         On
+	  8:                              X-Short On
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual                 X-Short On
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   531,     0)  ->  Abs (   531,     0)
+	  1: Rel (     0,  1293)  ->  Abs (   531,  1293)
+	  2: Rel (  -483,     0)  ->  Abs (    48,  1293)
+	  3: Rel (     0,   173)  ->  Abs (    48,  1466)
+	  4: Rel (  1162,     0)  ->  Abs (  1210,  1466)
+	  5: Rel (     0,  -173)  ->  Abs (  1210,  1293)
+	  6: Rel (  -485,     0)  ->  Abs (   725,  1293)
+	  7: Rel (     0, -1293)  ->  Abs (   725,     0)
+	  8: Rel (  -202,  -326)  ->  Abs (   523,  -326)
+	  9: Rel (     0,   205)  ->  Abs (   523,  -121)
+	 10: Rel (   205,     0)  ->  Abs (   728,  -121)
+	 11: Rel (     0,  -205)  ->  Abs (   728,  -326)
+	 12: Rel (     0,  -180)  ->  Abs (   728,  -506)
+	 13: Rel (  -167,   -73)  ->  Abs (   561,  -579)
+	 14: Rel (   -50,    76)  ->  Abs (   511,  -503)
+	 15: Rel (    60,    27)  ->  Abs (   571,  -476)
+	 16: Rel (    30,    51)  ->  Abs (   601,  -425)
+	 17: Rel (    20,    33)  ->  Abs (   621,  -392)
+	 18: Rel (     4,    66)  ->  Abs (   625,  -326)
+
+	Glyph 288: off = 0x0000FE0A, len = 364
+	  numberOfContours:	2
+	  xMin:			36
+	  yMin:			-532
+	  xMax:			554
+	  yMax:			1433
+
+	EndPoints
+	---------
+	  0:  23
+	  1:  33
+
+	  Length of Instructions:	260
+	00000: NPUSHB      (21):    33    33    47    35    49    33     3     0     1    13 
+	                            12    10    30    33    24     1     3     0     9    22 
+	                            30 
+	00023: PUSHW[1]            329 
+	00026: NPUSHB      (12):    25    27    64    26    24    64    25    25     0    26 
+	                             1    26 
+	00040: PUSHW[1]            694 
+	00043: NPUSHB      (47):     3    33   145    24    27    26    24    25    64    26 
+	                            26     1     7    16     9    43    15    10     6    22 
+	                            28     3    11    15    16    35    73    16    34     0 
+	                            34   159     1     1     1    13    18    37    12     1 
+	                           255     7     8    69     9    69     7 
+	00092: PUSHW[1]            -22 
+	00095: PUSHB[5]             16    16     2    85     7 
+	00101: PUSHW[1]            -16 
+	00104: PUSHB[5]             15    15     2    85     7 
+	00110: PUSHW[1]            -22 
+	00113: PUSHB[5]             14    14     2    85     7 
+	00119: PUSHW[1]            -12 
+	00122: PUSHB[5]             12    13     2    85     7 
+	00128: PUSHW[1]             -4 
+	00131: PUSHB[5]             11    11     2    85     7 
+	00137: PUSHW[1]             -8 
+	00140: PUSHB[5]             16    16     6    85     7 
+	00146: PUSHW[1]            -20 
+	00149: NPUSHB      (24):    15    15     6    85     7     2    12    12     6    85 
+	                             7    13    13    13     6    85     0     7    32     7 
+	                           144     7     3     7 
+	00175: PUSHW[3]            560    34   310 
+	00182: PUSHB[2]            196    24 
+	00185: CALL       
+	00186: SRP0       
+	00187: MIRP[srp0,nmd,rd,0] 
+	00188: DELTAP1    
+	00189: CALL       
+	00190: CALL       
+	00191: CALL       
+	00192: CALL       
+	00193: CALL       
+	00194: CALL       
+	00195: CALL       
+	00196: CALL       
+	00197: CALL       
+	00198: MIRP[srp0,nmd,rd,0] 
+	00199: MIRP[nrp0,nmd,rd,0] 
+	00200: SRP0       
+	00201: MIRP[nrp0,md,rd,1] 
+	00202: ALIGNRP    
+	00203: MIRP[srp0,md,rd,1] 
+	00204: ALIGNRP    
+	00205: SRP0       
+	00206: DELTAP1    
+	00207: MIRP[nrp0,nmd,rd,0] 
+	00208: MIRP[nrp0,nmd,rd,0] 
+	00209: MIRP[nrp0,nmd,rd,2] 
+	00210: SRP0       
+	00211: ALIGNRP    
+	00212: SVTCA[y-axis] 
+	00213: MIAP[rd+ci] 
+	00214: MIRP[nrp0,md,rd,1] 
+	00215: MIAP[rd+ci] 
+	00216: ALIGNRP    
+	00217: MIRP[srp0,md,rd,1] 
+	00218: ALIGNRP    
+	00219: SVTCA[x-axis] 
+	00220: SRP1       
+	00221: SRP2       
+	00222: IP         
+	00223: MDAP[rd]   
+	00224: MIRP[srp0,md,rd,1] 
+	00225: ALIGNRP    
+	00226: SRP0       
+	00227: ALIGNRP    
+	00228: SRP0       
+	00229: MIRP[nrp0,nmd,rd,0] 
+	00230: SVTCA[y-axis] 
+	00231: SRP0       
+	00232: MIRP[srp0,nmd,rd,2] 
+	00233: DELTAP1    
+	00234: ALIGNRP    
+	00235: SRP0       
+	00236: MIRP[nrp0,md,rd,1] 
+	00237: SRP0       
+	00238: MIRP[nrp0,md,rd,1] 
+	00239: SRP0       
+	00240: MIRP[nrp0,md,rd,1] 
+	00241: SRP1       
+	00242: SRP2       
+	00243: IP         
+	00244: SRP2       
+	00245: IP         
+	00246: SVTCA[x-axis] 
+	00247: SRP1       
+	00248: SRP2       
+	00249: IP         
+	00250: SVTCA[y-axis] 
+	00251: SRP1       
+	00252: SHP[rp1,zp0] 
+	00253: SHP[rp1,zp0] 
+	00254: SRP0       
+	00255: MDRP[nrp0,md,nrd,1] 
+	00256: IUP[y]     
+	00257: IUP[x]     
+	00258: SVTCA[x-axis] 
+	00259: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                         On
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:        XDual                         On
+	 15:  YDual XDual                 X-Short On
+	 16:        XDual         Y-Short         On
+	 17:  YDual                       X-Short On
+	 18:        XDual                         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:                              X-Short On
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual                 X-Short On
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:                      Y-Short X-Short Off
+	 30:                      Y-Short X-Short On
+	 31:  YDual               Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   528,   161)  ->  Abs (   528,   161)
+	  1: Rel (    26,  -159)  ->  Abs (   554,     2)
+	  2: Rel (   -76,   -16)  ->  Abs (   478,   -14)
+	  3: Rel (   -60,     0)  ->  Abs (   418,   -14)
+	  4: Rel (   -98,     0)  ->  Abs (   320,   -14)
+	  5: Rel (  -108,    62)  ->  Abs (   212,    48)
+	  6: Rel (   -44,   101)  ->  Abs (   168,   149)
+	  7: Rel (     0,   162)  ->  Abs (   168,   311)
+	  8: Rel (     0,   611)  ->  Abs (   168,   922)
+	  9: Rel (  -132,     0)  ->  Abs (    36,   922)
+	 10: Rel (     0,   140)  ->  Abs (    36,  1062)
+	 11: Rel (   132,     0)  ->  Abs (   168,  1062)
+	 12: Rel (     0,   263)  ->  Abs (   168,  1325)
+	 13: Rel (   179,   108)  ->  Abs (   347,  1433)
+	 14: Rel (     0,  -371)  ->  Abs (   347,  1062)
+	 15: Rel (   181,     0)  ->  Abs (   528,  1062)
+	 16: Rel (     0,  -140)  ->  Abs (   528,   922)
+	 17: Rel (  -181,     0)  ->  Abs (   347,   922)
+	 18: Rel (     0,  -621)  ->  Abs (   347,   301)
+	 19: Rel (     0,   -77)  ->  Abs (   347,   224)
+	 20: Rel (    19,   -44)  ->  Abs (   366,   180)
+	 21: Rel (    43,   -26)  ->  Abs (   409,   154)
+	 22: Rel (    40,     0)  ->  Abs (   449,   154)
+	 23: Rel (    30,     0)  ->  Abs (   479,   154)
+	 24: Rel (  -204,  -459)  ->  Abs (   275,  -305)
+	 25: Rel (     0,   184)  ->  Abs (   275,  -121)
+	 26: Rel (   185,     0)  ->  Abs (   460,  -121)
+	 27: Rel (     0,  -184)  ->  Abs (   460,  -305)
+	 28: Rel (     0,   -70)  ->  Abs (   460,  -375)
+	 29: Rel (   -73,  -123)  ->  Abs (   387,  -498)
+	 30: Rel (   -78,   -34)  ->  Abs (   309,  -532)
+	 31: Rel (   -44,    69)  ->  Abs (   265,  -463)
+	 32: Rel (    95,    42)  ->  Abs (   360,  -421)
+	 33: Rel (     7,   116)  ->  Abs (   367,  -305)
+
+	Glyph 289: off = 0x0000FF76, len = 80
+	  numberOfContours:	-1  (Composite)
+	  xMin:			48
+	  yMin:			0
+	  xMax:			1210
+	  yMax:			1830
+
+	     0: Flags:		0x0226
+		Glyf Index:	55
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	271
+		Y WOffset:	356
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1     1    11 
+	00005: PUSHW[2]            545    41 
+	00010: SVTCA[y-axis] 
+	00011: CALL       
+	00012: SVTCA[x-axis] 
+	00013: PUSHB[2]              6     2 
+	00016: RS         
+	00017: EQ         
+	00018: IF         
+	00019: PUSHB[6]              0    12    11     1     6    65 
+	00026: CALL       
+	00027: ELSE       
+	00028: NPUSHB      (12):     8    64    37    39    52     8    64    13    17    52 
+	                             8     6 
+	00042: PUSHW[1]            -83 
+	00045: PUSHB[2]             72    43 
+	00048: CALL       
+	00049: CALL       
+	00050: CALL       
+	00051: EIF        
+	00052: SHC[rp1,zp0] 
+
+	Glyph 290: off = 0x0000FFC6, len = 348
+	  numberOfContours:	2
+	  xMin:			35
+	  yMin:			-14
+	  xMax:			765
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  10
+	  1:  34
+
+	  Length of Instructions:	240
+	00000: NPUSHB      (42):   111     5   108     7   127     7   142     7     4    96 
+	                             1    96     6    96     7   112     1   112     4   114 
+	                             7   128     1   128     4     8     0    23    24    21 
+	                             6    10     0    11    13    27    12    14    11    20 
+	                            33     7 
+	00044: PUSHW[1]            557 
+	00047: NPUSHB      (36):     1     7   183     6     0    64     2     2     1     0 
+	                             7    51     1    10   145     0    64     1    64     2 
+	                            26    36    27    20    43    26    21     6    33    28 
+	                            14    11    26    12    34    27 
+	00085: PUSHW[1]            560 
+	00088: PUSHB[7]             24    29    37    23    20    69    18 
+	00096: PUSHW[1]            -14 
+	00099: PUSHB[5]             16    16     2    85    18 
+	00105: PUSHW[1]            -10 
+	00108: PUSHB[5]             14    15     2    85    18 
+	00114: PUSHW[1]             -4 
+	00117: PUSHB[5]             12    12     2    85    18 
+	00123: PUSHW[1]            -20 
+	00126: PUSHB[5]             16    16     6    85    18 
+	00132: PUSHW[1]            -24 
+	00135: PUSHB[5]             15    15     6    85    18 
+	00141: PUSHW[1]            -10 
+	00144: PUSHB[5]             13    13     6    85    18 
+	00150: PUSHW[1]            -12 
+	00153: NPUSHB      (10):    12    12     6    85     0    18     1    18    25    35 
+	00165: PUSHW[1]            310 
+	00168: PUSHB[2]            102    24 
+	00171: CALL       
+	00172: FLIPOFF    
+	00173: SRP0       
+	00174: MIRP[srp0,nmd,rd,0] 
+	00175: DELTAP1    
+	00176: CALL       
+	00177: CALL       
+	00178: CALL       
+	00179: CALL       
+	00180: CALL       
+	00181: CALL       
+	00182: CALL       
+	00183: FLIPON     
+	00184: MIRP[nrp0,nmd,rd,0] 
+	00185: ALIGNRP    
+	00186: MIRP[srp0,md,rd,1] 
+	00187: ALIGNRP    
+	00188: MIRP[srp0,nmd,rd,0] 
+	00189: MIRP[nrp0,nmd,rd,0] 
+	00190: ALIGNRP    
+	00191: SVTCA[y-axis] 
+	00192: MIAP[rd+ci] 
+	00193: MIRP[nrp0,md,rd,1] 
+	00194: MIAP[rd+ci] 
+	00195: ALIGNRP    
+	00196: MIRP[srp0,md,rd,1] 
+	00197: ALIGNRP    
+	00198: SVTCA[x-axis] 
+	00199: FLIPOFF    
+	00200: SRP0       
+	00201: MIRP[srp0,nmd,rd,2] 
+	00202: FLIPON     
+	00203: MIRP[nrp0,md,rd,1] 
+	00204: MIRP[srp0,md,rd,1] 
+	00205: MIRP[nrp0,nmd,rd,0] 
+	00206: SRP0       
+	00207: MIRP[nrp0,nmd,rd,0] 
+	00208: SVTCA[y-axis] 
+	00209: MIAP[rd+ci] 
+	00210: ALIGNRP    
+	00211: SRP0       
+	00212: MIRP[nrp0,md,rd,1] 
+	00213: SRP0       
+	00214: MIRP[nrp0,md,rd,1] 
+	00215: SRP0       
+	00216: MIRP[nrp0,nmd,rd,0] 
+	00217: SRP1       
+	00218: SRP2       
+	00219: IP         
+	00220: SRP2       
+	00221: IP         
+	00222: SVTCA[x-axis] 
+	00223: SRP1       
+	00224: SRP2       
+	00225: IP         
+	00226: SRP1       
+	00227: SRP2       
+	00228: IP         
+	00229: SVTCA[y-axis] 
+	00230: SRP1       
+	00231: SHP[rp1,zp0] 
+	00232: SHP[rp1,zp0] 
+	00233: MDRP[nrp0,md,nrd,1] 
+	00234: IUP[y]     
+	00235: IUP[x]     
+	00236: SVTCA[x-axis] 
+	00237: DELTAP1    
+	00238: SVTCA[y-axis] 
+	00239: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:                              X-Short On
+	 12:        XDual         Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:        XDual                         On
+	 20:  YDual                       X-Short On
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual                 X-Short On
+	 23:        XDual                         On
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:        XDual                         On
+	 26:  YDual XDual                 X-Short On
+	 27:        XDual         Y-Short         On
+	 28:  YDual                       X-Short On
+	 29:        XDual                         On
+	 30:        XDual         Y-Short         Off
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   581,  1281)  ->  Abs (   581,  1281)
+	  1: Rel (     0,   185)  ->  Abs (   581,  1466)
+	  2: Rel (   184,     0)  ->  Abs (   765,  1466)
+	  3: Rel (     0,  -185)  ->  Abs (   765,  1281)
+	  4: Rel (     0,  -101)  ->  Abs (   765,  1180)
+	  5: Rel (   -72,  -125)  ->  Abs (   693,  1055)
+	  6: Rel (   -78,   -34)  ->  Abs (   615,  1021)
+	  7: Rel (   -45,    68)  ->  Abs (   570,  1089)
+	  8: Rel (    51,    23)  ->  Abs (   621,  1112)
+	  9: Rel (    49,    87)  ->  Abs (   670,  1199)
+	 10: Rel (     2,    82)  ->  Abs (   672,  1281)
+	 11: Rel (  -145, -1120)  ->  Abs (   527,   161)
+	 12: Rel (    26,  -159)  ->  Abs (   553,     2)
+	 13: Rel (   -76,   -16)  ->  Abs (   477,   -14)
+	 14: Rel (   -60,     0)  ->  Abs (   417,   -14)
+	 15: Rel (   -98,     0)  ->  Abs (   319,   -14)
+	 16: Rel (  -108,    62)  ->  Abs (   211,    48)
+	 17: Rel (   -44,   101)  ->  Abs (   167,   149)
+	 18: Rel (     0,   162)  ->  Abs (   167,   311)
+	 19: Rel (     0,   611)  ->  Abs (   167,   922)
+	 20: Rel (  -132,     0)  ->  Abs (    35,   922)
+	 21: Rel (     0,   140)  ->  Abs (    35,  1062)
+	 22: Rel (   132,     0)  ->  Abs (   167,  1062)
+	 23: Rel (     0,   263)  ->  Abs (   167,  1325)
+	 24: Rel (   179,   108)  ->  Abs (   346,  1433)
+	 25: Rel (     0,  -371)  ->  Abs (   346,  1062)
+	 26: Rel (   181,     0)  ->  Abs (   527,  1062)
+	 27: Rel (     0,  -140)  ->  Abs (   527,   922)
+	 28: Rel (  -181,     0)  ->  Abs (   346,   922)
+	 29: Rel (     0,  -621)  ->  Abs (   346,   301)
+	 30: Rel (     0,   -77)  ->  Abs (   346,   224)
+	 31: Rel (    19,   -44)  ->  Abs (   365,   180)
+	 32: Rel (    43,   -26)  ->  Abs (   408,   154)
+	 33: Rel (    40,     0)  ->  Abs (   448,   154)
+	 34: Rel (    30,     0)  ->  Abs (   478,   154)
+
+	Glyph 291: off = 0x00010122, len = 86
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1314
+	  yMax:			1835
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	219
+		X WOffset:	394
+		Y WOffset:	318
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     2     1    24   128    58    60    52   175    24   191 
+	                            24   255    24     3    24 
+	00017: PUSHW[1]            791 
+	00020: SVTCA[y-axis] 
+	00021: RDTG       
+	00022: MIAP[rd+ci] 
+	00023: DELTAP3    
+	00024: CALL       
+	00025: RTG        
+	00026: SHC[rp1,zp0] 
+	00027: SHC[rp1,zp0] 
+	00028: SVTCA[x-axis] 
+	00029: PUSHB[2]              6     2 
+	00032: RS         
+	00033: EQ         
+	00034: IF         
+	00035: PUSHB[8]              2     1     0    21    27    12     0    65 
+	00044: CALL       
+	00045: SHC[rp1,zp0] 
+	00046: SHC[rp1,zp0] 
+	00047: ELSE       
+	00048: PUSHB[8]              1     2     2    30     6     0   104    39 
+	00057: CALL       
+	00058: EIF        
+
+	Glyph 292: off = 0x00010178, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			992
+	  yMax:			1517
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	219
+		X WOffset:	220
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     2     1     0    25    31    17    17    65     1     2 
+	                             2    34 
+	00014: PUSHW[2]            546    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: SHC[rp1,zp0] 
+	00024: SHC[rp1,zp0] 
+
+	Glyph 293: off = 0x000101AC, len = 78
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1314
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	221
+		X WOffset:	407
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              2     1     1     2     2    28 
+	00007: PUSHW[2]            545    41 
+	00012: SVTCA[y-axis] 
+	00013: CALL       
+	00014: SVTCA[x-axis] 
+	00015: PUSHB[2]              6     2 
+	00018: RS         
+	00019: EQ         
+	00020: IF         
+	00021: PUSHW[1]            -23 
+	00024: PUSHB[5]             21    28    12     0    65 
+	00030: CALL       
+	00031: ELSE       
+	00032: NPUSHB      (11):   192    25     1    96    25     1    25    17    85    72 
+	                            43 
+	00045: CALL       
+	00046: DELTAP1    
+	00047: DELTAP1    
+	00048: EIF        
+	00049: SHC[rp1,zp0] 
+	00050: SHC[rp1,zp0] 
+
+	Glyph 294: off = 0x000101FA, len = 76
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			992
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	221
+		X WOffset:	180
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              2     1     1     2     2    32 
+	00007: PUSHW[2]            546    41 
+	00012: SVTCA[y-axis] 
+	00013: CALL       
+	00014: SVTCA[x-axis] 
+	00015: PUSHB[2]              6     2 
+	00018: RS         
+	00019: EQ         
+	00020: IF         
+	00021: PUSHB[6]              0    28    32    11    22    65 
+	00028: CALL       
+	00029: ELSE       
+	00030: PUSHW[2]             29   -64 
+	00035: PUSHB[8]             18    20    52    29    17   100    72    43 
+	00044: CALL       
+	00045: CALL       
+	00046: EIF        
+	00047: SHC[rp1,zp0] 
+	00048: SHC[rp2,zp1] 
+
+	Glyph 295: off = 0x00010246, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			41
+	  yMin:			0
+	  xMax:			1200
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	61
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	251
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     1   207    16   223    16     2   175    16     1    16 
+	                            64    11    15    52    16     2 
+	00018: PUSHW[1]           -167 
+	00021: PUSHB[5]             72    43     1     1    16 
+	00027: PUSHW[2]            545    41 
+	00032: SVTCA[y-axis] 
+	00033: CALL       
+	00034: SVTCA[x-axis] 
+	00035: CALL       
+	00036: CALL       
+	00037: DELTAP1    
+	00038: DELTAP1    
+	00039: SHC[rp1,zp0] 
+
+	Glyph 296: off = 0x00010288, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			40
+	  yMin:			0
+	  xMax:			980
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	93
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	169
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              1    79    18     1    18     7 
+	00007: PUSHW[1]           -407 
+	00010: PUSHB[5]             72    43     1     1    18 
+	00016: PUSHW[3]            546    41   356 
+	00023: SCANCTRL   
+	00024: SVTCA[y-axis] 
+	00025: CALL       
+	00026: SVTCA[x-axis] 
+	00027: CALL       
+	00028: DELTAP1    
+	00029: SHC[rp1,zp0] 
+
+	Glyph 297: off = 0x000102C0, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			41
+	  yMin:			0
+	  xMax:			1200
+	  yMax:			1780
+
+	     0: Flags:		0x0226
+		Glyf Index:	61
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	218
+		X WOffset:	304
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              1   207    13     1    13     2 
+	00007: PUSHW[1]           -239 
+	00010: PUSHB[5]             72    43     1     1    13 
+	00016: PUSHW[2]            545    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 298: off = 0x000102F6, len = 72
+	  numberOfContours:	-1  (Composite)
+	  xMin:			40
+	  yMin:			0
+	  xMax:			980
+	  yMax:			1418
+
+	     0: Flags:		0x0226
+		Glyf Index:	93
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	218
+		X WOffset:	169
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     1    15    64    11    11     6    85    31    15    47 
+	                            15     2   239    15   255    15     2    15     4 
+	00021: PUSHW[1]            -95 
+	00024: PUSHB[5]             72    43     1     1    15 
+	00030: PUSHW[3]            546    41   356 
+	00037: SCANCTRL   
+	00038: SVTCA[y-axis] 
+	00039: CALL       
+	00040: SVTCA[x-axis] 
+	00041: CALL       
+	00042: DELTAP1    
+	00043: DELTAP2    
+	00044: CALL       
+	00045: SHC[rp1,zp0] 
+
+	Glyph 299: off = 0x0001033E, len = 162
+	  numberOfContours:	1
+	  xMin:			164
+	  yMin:			0
+	  xMax:			1080
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	131
+	00000: NPUSHB      (28):     2     3    30     1     0     2     5     8    16     1 
+	                            32     1     2     1    26     7     3     4    32     5 
+	                             5     0    36    16    16     2    85     0 
+	00030: PUSHW[1]            -14 
+	00033: PUSHB[5]             15    15     2    85     0 
+	00039: PUSHW[1]            -22 
+	00042: PUSHB[5]             13    13     2    85     0 
+	00048: PUSHW[1]             -6 
+	00051: PUSHB[5]             12    12     2    85     0 
+	00057: PUSHW[1]             -3 
+	00060: PUSHB[5]             16    16     6    85     0 
+	00066: PUSHW[1]            -13 
+	00069: PUSHB[5]             15    15     6    85     0 
+	00075: PUSHW[1]            -22 
+	00078: PUSHB[5]             13    13     6    85     0 
+	00084: PUSHW[1]            -12 
+	00087: PUSHB[8]             12    12     6    85     0    25     6    59 
+	00096: PUSHW[2]            398    24 
+	00101: CALL       
+	00102: FLIPOFF    
+	00103: SRP0       
+	00104: MIRP[srp0,nmd,rd,0] 
+	00105: CALL       
+	00106: CALL       
+	00107: CALL       
+	00108: CALL       
+	00109: CALL       
+	00110: CALL       
+	00111: CALL       
+	00112: CALL       
+	00113: ALIGNRP    
+	00114: FLIPON     
+	00115: SRP0       
+	00116: MIRP[srp0,md,rd,1] 
+	00117: ALIGNRP    
+	00118: FLIPOFF    
+	00119: SRP0       
+	00120: MIRP[nrp0,nmd,rd,2] 
+	00121: DELTAP1    
+	00122: SVTCA[y-axis] 
+	00123: MIAP[rd+ci] 
+	00124: MIAP[rd+ci] 
+	00125: ALIGNRP    
+	00126: FLIPON     
+	00127: MIRP[srp0,md,rd,1] 
+	00128: ALIGNRP    
+	00129: IUP[y]     
+	00130: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   164,  1466)  ->  Abs (   164,  1466)
+	  1: Rel (   916,     0)  ->  Abs (  1080,  1466)
+	  2: Rel (     0,  -173)  ->  Abs (  1080,  1293)
+	  3: Rel (  -722,     0)  ->  Abs (   358,  1293)
+	  4: Rel (     0, -1293)  ->  Abs (   358,     0)
+	  5: Rel (  -194,     0)  ->  Abs (   164,     0)
+
+	Glyph 300: off = 0x000103E0, len = 412
+	  numberOfContours:	3
+	  xMin:			96
+	  yMin:			-25
+	  xMax:			1498
+	  yMax:			1492
+
+	EndPoints
+	---------
+	  0:  12
+	  1:  24
+	  2:  28
+
+	  Length of Instructions:	296
+	00000: NPUSHB     (105):   108     8   109    10   108    15   106    17    99    21 
+	                            99    23     6    16    14    16    18    31    20    31 
+	                            24    99     2    99     4     6   106    14    99    18 
+	                           100    20   107    24   152     2   150     4     6    31 
+	                            21    16    23   109     1    98     5    99     7   106 
+	                            11   111    12     7    16     2    31     4    31     8 
+	                            18    10    16    15    31    17    32    30     7    58 
+	                             8    27    30    79    25    95    25   127    25   143 
+	                            25     4   239    25     1    25    25     9    22    30 
+	                             3     3    16    30     9     9    28   101    19    25 
+	                           101    13    19    38     6 
+	00107: PUSHW[1]            -24 
+	00110: PUSHB[5]             16    16     2    85     6 
+	00116: PUSHW[1]            -18 
+	00119: PUSHB[5]             13    13     2    85     6 
+	00125: PUSHW[1]            -16 
+	00128: PUSHB[5]             12    12     2    85     6 
+	00134: PUSHW[1]             -7 
+	00137: PUSHB[5]             11    11     6    85     6 
+	00143: PUSHW[1]            -12 
+	00146: PUSHB[5]             13    13     6    85     6 
+	00152: PUSHW[1]             -6 
+	00155: NPUSHB      (38):    12    12     6    85    32     6   128     6     2   128 
+	                            30     1     6    26    30    13    38     0     6    11 
+	                            11     6    85     0     6    12    12     6    85    32 
+	                             0     1     0    25    29    99    92    24 
+	00195: CALL       
+	00196: SRP0       
+	00197: MIRP[srp0,nmd,rd,2] 
+	00198: DELTAP1    
+	00199: CALL       
+	00200: CALL       
+	00201: MIRP[nrp0,md,rd,1] 
+	00202: SRP0       
+	00203: MIRP[srp0,nmd,rd,2] 
+	00204: DELTAP1    
+	00205: DELTAP1    
+	00206: CALL       
+	00207: CALL       
+	00208: CALL       
+	00209: CALL       
+	00210: CALL       
+	00211: CALL       
+	00212: MIRP[nrp0,md,rd,1] 
+	00213: SRP0       
+	00214: MIRP[nrp0,nmd,rd,2] 
+	00215: SRP0       
+	00216: MIRP[nrp0,nmd,rd,2] 
+	00217: SVTCA[y-axis] 
+	00218: MIAP[rd+ci] 
+	00219: MIRP[nrp0,md,rd,1] 
+	00220: MIAP[rd+ci] 
+	00221: MIRP[nrp0,md,rd,1] 
+	00222: SRP2       
+	00223: IP         
+	00224: MDAP[rd]   
+	00225: DELTAP2    
+	00226: DELTAP1    
+	00227: MIRP[nrp0,md,rd,1] 
+	00228: IUP[y]     
+	00229: IUP[x]     
+	00230: RS         
+	00231: JROF       
+	00232: NPUSHB      (44):     1    24    11    37    17     8    19    33     1    15 
+	                            10    13    33     0    21     4    19    33     1    23 
+	                             2    13    33     0    18     7    16    33     0    14 
+	                            12    16    33     0    20     5    22    33     1    24 
+	                             1    22    33     1 
+	00278: CALL       
+	00279: CALL       
+	00280: CALL       
+	00281: CALL       
+	00282: SVTCA[x-axis] 
+	00283: CALL       
+	00284: CALL       
+	00285: CALL       
+	00286: CALL       
+	00287: CALL       
+	00288: FLIPRGON   
+	00289: SVTCA[x-axis] 
+	00290: DELTAP1    
+	00291: DELTAP1    
+	00292: DELTAP1    
+	00293: SVTCA[y-axis] 
+	00294: DELTAP1    
+	00295: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         Off
+	  2:                                      Off
+	  3:  YDual                               On
+	  4:  YDual                               Off
+	  5:                                      Off
+	  6:        XDual                         On
+	  7:        XDual                         Off
+	  8:                                      Off
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short         Off
+	 12:                              X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short         Off
+	 15:                                      Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:                                      Off
+	 19:        XDual                         On
+	 20:        XDual                         Off
+	 21:                                      Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:                                      Off
+	 25:        XDual                 X-Short On
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual                               On
+	 28:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (    96,   714)  ->  Abs (    96,   714)
+	  1: Rel (     0,   366)  ->  Abs (    96,  1080)
+	  2: Rel (   394,   412)  ->  Abs (   490,  1492)
+	  3: Rel (   308,     0)  ->  Abs (   798,  1492)
+	  4: Rel (   309,     0)  ->  Abs (  1107,  1492)
+	  5: Rel (   391,  -419)  ->  Abs (  1498,  1073)
+	  6: Rel (     0,  -342)  ->  Abs (  1498,   731)
+	  7: Rel (     0,  -340)  ->  Abs (  1498,   391)
+	  8: Rel (  -394,  -416)  ->  Abs (  1104,   -25)
+	  9: Rel (  -307,     0)  ->  Abs (   797,   -25)
+	 10: Rel (  -221,     0)  ->  Abs (   576,   -25)
+	 11: Rel (  -333,   221)  ->  Abs (   243,   196)
+	 12: Rel (  -147,   347)  ->  Abs (    96,   543)
+	 13: Rel (   200,   168)  ->  Abs (   296,   711)
+	 14: Rel (     0,  -251)  ->  Abs (   296,   460)
+	 15: Rel (   272,  -319)  ->  Abs (   568,   141)
+	 16: Rel (   228,     0)  ->  Abs (   796,   141)
+	 17: Rel (   224,     0)  ->  Abs (  1020,   141)
+	 18: Rel (   278,   315)  ->  Abs (  1298,   456)
+	 19: Rel (     0,   276)  ->  Abs (  1298,   732)
+	 20: Rel (     0,   280)  ->  Abs (  1298,  1012)
+	 21: Rel (  -280,   313)  ->  Abs (  1018,  1325)
+	 22: Rel (  -219,     0)  ->  Abs (   799,  1325)
+	 23: Rel (  -215,     0)  ->  Abs (   584,  1325)
+	 24: Rel (  -288,  -294)  ->  Abs (   296,  1031)
+	 25: Rel (   211,  -384)  ->  Abs (   507,   647)
+	 26: Rel (     0,   172)  ->  Abs (   507,   819)
+	 27: Rel (   580,     0)  ->  Abs (  1087,   819)
+	 28: Rel (     0,  -172)  ->  Abs (  1087,   647)
+
+	Glyph 301: off = 0x0001057C, len = 456
+	  numberOfContours:	3
+	  xMin:			85
+	  yMin:			-53
+	  xMax:			1549
+	  yMax:			1510
+
+	EndPoints
+	---------
+	  0:  18
+	  1:  25
+	  2:  32
+
+	  Length of Instructions:	340
+	00000: NPUSHB      (96):    32    34    58     3    58     7    53    12    53    16 
+	                            53    20    52    24    60    27    58    31    68     3 
+	                            68     7    73    17    96    34   112    34   132    21 
+	                           138    30   159    34   160    34   191    34   240    34 
+	                            20     0    34    56     3     2    41    21    38    23 
+	                            38    28    40    30    56     6   104     4   105    21 
+	                           101    23   101    28   105    30   118     4   121     6 
+	                           121    13   118    16   136     4   136    20   133    23 
+	                           133    28   136    30    19    57     3     1    32    19 
+	                             8    11    26    25    30    11 
+	00098: PUSHW[1]            314 
+	00101: NPUSHB      (38):    10    19    30    18   112     2   128     2     2     2 
+	                           162     0     3    10     9    26     9    19    10     1 
+	                           144     9     1    64     9    80     9    96     9   112 
+	                             9   128     9     5     9    32     0    10 
+	00141: PUSHW[1]             -4 
+	00144: NPUSHB      (13):    12    12     6    85   127    10     1    10    10    14 
+	                            29    38     5 
+	00159: PUSHW[1]            -12 
+	00162: NPUSHB      (58):    15    16     6    85     5    42    13    13     6    85 
+	                             5    26    11    12     6    85     0     5    96     5 
+	                             2    32     5    96     5   112     5   159     5   160 
+	                             5   191     5   240     5     7     5    26    34     0 
+	                            34    16    34    64    34     3    16    34    48    34 
+	                            64    34   176    34   192    34     5    34 
+	00222: PUSHW[1]            -64 
+	00225: NPUSHB      (12):    16    18    52    22    38    14    18    16    16     2 
+	                            85    14 
+	00239: PUSHW[1]            -22 
+	00242: NPUSHB      (11):    13    13     2    85    14     8    15    16     6    85 
+	                            14 
+	00255: PUSHW[1]            -42 
+	00258: PUSHB[5]             13    13     6    85    14 
+	00264: PUSHW[1]            -24 
+	00267: NPUSHB      (13):    11    12     6    85    32    14     1    14    25    33 
+	                            99    92    24 
+	00282: CALL       
+	00283: SRP0       
+	00284: MIRP[srp0,nmd,rd,2] 
+	00285: DELTAP1    
+	00286: CALL       
+	00287: CALL       
+	00288: CALL       
+	00289: CALL       
+	00290: CALL       
+	00291: MIRP[nrp0,md,rd,1] 
+	00292: CALL       
+	00293: DELTAP1    
+	00294: DELTAP2    
+	00295: SRP0       
+	00296: MIRP[srp0,nmd,rd,2] 
+	00297: DELTAP1    
+	00298: DELTAP2    
+	00299: CALL       
+	00300: CALL       
+	00301: CALL       
+	00302: MIRP[nrp0,md,rd,1] 
+	00303: SRP2       
+	00304: IP         
+	00305: MDAP[rd]   
+	00306: DELTAP2    
+	00307: CALL       
+	00308: ALIGNRP    
+	00309: MIRP[srp0,md,rd,1] 
+	00310: DELTAP2    
+	00311: DELTAP3    
+	00312: ALIGNRP    
+	00313: SRP0       
+	00314: ALIGNRP    
+	00315: SRP0       
+	00316: ALIGNRP    
+	00317: SVTCA[y-axis] 
+	00318: MIAP[rd+ci] 
+	00319: MIAP[rd+ci] 
+	00320: MIRP[srp0,nmd,rd,0] 
+	00321: DELTAP1    
+	00322: ALIGNRP    
+	00323: MIRP[nrp0,md,rd,1] 
+	00324: SRP0       
+	00325: MIRP[srp0,nmd,rd,0] 
+	00326: MIRP[srp0,md,rd,1] 
+	00327: ALIGNRP    
+	00328: SRP0       
+	00329: ALIGNRP    
+	00330: SRP0       
+	00331: ALIGNRP    
+	00332: IUP[y]     
+	00333: IUP[x]     
+	00334: SVTCA[y-axis] 
+	00335: DELTAP2    
+	00336: DELTAP1    
+	00337: SVTCA[x-axis] 
+	00338: DELTAP2    
+	00339: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual         Y-Short         On
+	  3:                      Y-Short         Off
+	  4:                                      Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual                         Off
+	  7:                                      Off
+	  8:                      Y-Short         On
+	  9:        XDual         Y-Short         On
+	 10:  YDual                       X-Short On
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual               Y-Short         Off
+	 13:                                      Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:        XDual                 X-Short Off
+	 17:  YDual               Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:        XDual         Y-Short         On
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short On
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   720,  1510)  ->  Abs (   720,  1510)
+	  1: Rel (   194,     0)  ->  Abs (   914,  1510)
+	  2: Rel (     0,  -181)  ->  Abs (   914,  1329)
+	  3: Rel (   308,   -19)  ->  Abs (  1222,  1310)
+	  4: Rel (   327,  -322)  ->  Abs (  1549,   988)
+	  5: Rel (     0,  -239)  ->  Abs (  1549,   749)
+	  6: Rel (     0,  -268)  ->  Abs (  1549,   481)
+	  7: Rel (  -354,  -310)  ->  Abs (  1195,   171)
+	  8: Rel (  -281,   -10)  ->  Abs (   914,   161)
+	  9: Rel (     0,  -214)  ->  Abs (   914,   -53)
+	 10: Rel (  -194,     0)  ->  Abs (   720,   -53)
+	 11: Rel (     0,   214)  ->  Abs (   720,   161)
+	 12: Rel (  -289,    11)  ->  Abs (   431,   172)
+	 13: Rel (  -346,   319)  ->  Abs (    85,   491)
+	 14: Rel (     0,   249)  ->  Abs (    85,   740)
+	 15: Rel (     0,   163)  ->  Abs (    85,   903)
+	 16: Rel (   150,   264)  ->  Abs (   235,  1167)
+	 17: Rel (   274,   152)  ->  Abs (   509,  1319)
+	 18: Rel (   211,    10)  ->  Abs (   720,  1329)
+	 19: Rel (     0,  -168)  ->  Abs (   720,  1161)
+	 20: Rel (  -206,    -6)  ->  Abs (   514,  1155)
+	 21: Rel (  -227,  -214)  ->  Abs (   287,   941)
+	 22: Rel (     0,  -200)  ->  Abs (   287,   741)
+	 23: Rel (     0,  -202)  ->  Abs (   287,   539)
+	 24: Rel (   248,  -210)  ->  Abs (   535,   329)
+	 25: Rel (   185,    -3)  ->  Abs (   720,   326)
+	 26: Rel (   194,     0)  ->  Abs (   914,   326)
+	 27: Rel (   205,     6)  ->  Abs (  1119,   332)
+	 28: Rel (   232,   218)  ->  Abs (  1351,   550)
+	 29: Rel (     0,   194)  ->  Abs (  1351,   744)
+	 30: Rel (     0,   184)  ->  Abs (  1351,   928)
+	 31: Rel (  -222,   233)  ->  Abs (  1129,  1161)
+	 32: Rel (  -215,     0)  ->  Abs (   914,  1161)
+
+	Glyph 302: off = 0x00010744, len = 386
+	  numberOfContours:	2
+	  xMin:			72
+	  yMin:			-24
+	  xMax:			1107
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  20
+	  1:  32
+
+	  Length of Instructions:	276
+	00000: NPUSHB      (80):     6     9     6    18    16    34    55     2    71     2 
+	                            86     2    86     4   118     9   117    18   134     9 
+	                            10     8     7     1    73    23    70    25    70    29 
+	                            73    31    91    23    84    25    84    29    91    31 
+	                           104     9   104    11   103    15   121     9   247    28 
+	                            13    24    19     1    37    29    42    31    53    29 
+	                            58    31     4   111     8    96    19     2    19     8 
+	                             3    30     4    16     6     0     6     6    10    27 
+	00082: PUSHW[1]            666 
+	00085: PUSHB[3]             10    11    21 
+	00089: PUSHW[1]            666 
+	00092: PUSHB[6]             16     7     8    19     0     3 
+	00099: PUSHW[1]            -10 
+	00102: PUSHB[5]             16    17     2    85     3 
+	00108: PUSHW[1]            -16 
+	00111: PUSHB[5]             16    17     6    85     3 
+	00117: PUSHW[1]            -16 
+	00120: PUSHB[8]             13    13     6    85     3   107    64    30 
+	00129: PUSHW[1]            -24 
+	00132: PUSHB[5]             13    17     2    85    30 
+	00138: PUSHW[1]            -20 
+	00141: PUSHB[5]             11    11     2    85    30 
+	00147: PUSHW[1]            -18 
+	00150: NPUSHB      (71):    13    13     6    85   144    30     1    31    30   240 
+	                            30     2    30    66     5   128     0   173     1     1 
+	                             6   173     5    55    34    24    64    13     8    14 
+	                            15     2    85    13    28    12    13     2    85    13 
+	                            12    16    16     6    85    13    18    13    13     6 
+	                            85    13    37    12    12     6    85    13    23    11 
+	                            11     6    85    63    13    79    13     2    13    52 
+	                            33 
+	00223: SRP0       
+	00224: MIRP[srp0,nmd,rd,2] 
+	00225: DELTAP1    
+	00226: CALL       
+	00227: CALL       
+	00228: CALL       
+	00229: CALL       
+	00230: CALL       
+	00231: CALL       
+	00232: MIRP[nrp0,md,rd,1] 
+	00233: SRP0       
+	00234: MIRP[srp0,nmd,rd,2] 
+	00235: MIRP[nrp0,md,rd,1] 
+	00236: ALIGNRP    
+	00237: SRP0       
+	00238: MIRP[nrp0,md,rd,1] 
+	00239: SMD        
+	00240: SRP0       
+	00241: MIRP[srp0,md,rd,1] 
+	00242: DELTAP2    
+	00243: DELTAP1    
+	00244: CALL       
+	00245: CALL       
+	00246: CALL       
+	00247: SMD        
+	00248: MIRP[nrp0,md,rd,1] 
+	00249: CALL       
+	00250: CALL       
+	00251: CALL       
+	00252: SRP1       
+	00253: SHP[rp1,zp0] 
+	00254: SHP[rp1,zp0] 
+	00255: SVTCA[y-axis] 
+	00256: MIAP[rd+ci] 
+	00257: MIRP[nrp0,md,rd,1] 
+	00258: MIAP[rd+ci] 
+	00259: MIRP[nrp0,md,rd,1] 
+	00260: MIAP[rd+ci] 
+	00261: MIAP[rd+ci] 
+	00262: SRP1       
+	00263: SRP2       
+	00264: SLOOP      
+	00265: IP         
+	00266: DELTAP1    
+	00267: IUP[y]     
+	00268: IUP[x]     
+	00269: SVTCA[y-axis] 
+	00270: DELTAP2    
+	00271: DELTAP3    
+	00272: DELTAP1    
+	00273: SVTCA[x-axis] 
+	00274: DELTAP2    
+	00275: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:                              X-Short On
+	  4:        XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:  YDual                       X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                               On
+	 11:  YDual                       X-Short Off
+	 12:                              X-Short Off
+	 13:        XDual                         On
+	 14:        XDual                         Off
+	 15:        XDual                 X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual               Y-Short         On
+	 22:  YDual                       X-Short Off
+	 23:                      Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   923,  1062)  ->  Abs (   923,  1062)
+	  1: Rel (   184,     0)  ->  Abs (  1107,  1062)
+	  2: Rel (   -70,  -220)  ->  Abs (  1037,   842)
+	  3: Rel (   -59,  -311)  ->  Abs (   978,   531)
+	  4: Rel (    70,  -386)  ->  Abs (  1048,   145)
+	  5: Rel (    59,  -145)  ->  Abs (  1107,     0)
+	  6: Rel (  -179,     0)  ->  Abs (   928,     0)
+	  7: Rel (   -43,   100)  ->  Abs (   885,   100)
+	  8: Rel (   -22,    94)  ->  Abs (   863,   194)
+	  9: Rel (   -83,  -218)  ->  Abs (   780,   -24)
+	 10: Rel (  -264,     0)  ->  Abs (   516,   -24)
+	 11: Rel (  -200,     0)  ->  Abs (   316,   -24)
+	 12: Rel (  -244,   300)  ->  Abs (    72,   276)
+	 13: Rel (     0,   257)  ->  Abs (    72,   533)
+	 14: Rel (     0,   264)  ->  Abs (    72,   797)
+	 15: Rel (   245,   289)  ->  Abs (   317,  1086)
+	 16: Rel (   202,     0)  ->  Abs (   519,  1086)
+	 17: Rel (   125,     0)  ->  Abs (   644,  1086)
+	 18: Rel (   158,  -101)  ->  Abs (   802,   985)
+	 19: Rel (    68,  -103)  ->  Abs (   870,   882)
+	 20: Rel (     7,    35)  ->  Abs (   877,   917)
+	 21: Rel (  -328,    20)  ->  Abs (   549,   937)
+	 22: Rel (  -129,     0)  ->  Abs (   420,   937)
+	 23: Rel (  -150,  -208)  ->  Abs (   270,   729)
+	 24: Rel (     0,  -196)  ->  Abs (   270,   533)
+	 25: Rel (     0,  -191)  ->  Abs (   270,   342)
+	 26: Rel (   142,  -218)  ->  Abs (   412,   124)
+	 27: Rel (   127,     0)  ->  Abs (   539,   124)
+	 28: Rel (   124,     0)  ->  Abs (   663,   124)
+	 29: Rel (   166,   215)  ->  Abs (   829,   339)
+	 30: Rel (     0,   202)  ->  Abs (   829,   541)
+	 31: Rel (     0,   196)  ->  Abs (   829,   737)
+	 32: Rel (  -155,   200)  ->  Abs (   674,   937)
+
+	Glyph 303: off = 0x000108C6, len = 498
+	  numberOfContours:	2
+	  xMin:			72
+	  yMin:			-24
+	  xMax:			1068
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  31
+
+	  Length of Instructions:	390
+	00000: NPUSHB     (129):    59    18     1    88    10    90    12    85    15   104 
+	                            10   104    12   120    31     6    69    25    74    27 
+	                            74    31    85     6    90     9     5    39    21    40 
+	                            31    55    21    56    31    69    21     5   198     3 
+	                             1    51    22    57    24    57    28    51    30    91 
+	                            28   142    19   135    31   153     3   168    18   184 
+	                            18   214    21   218    25   220    28   214    31   231 
+	                            12   231    22   247    12   247    22    18   107     6 
+	                           111    10    99    12    96    16    99    22   111    24 
+	                           111    28    96    30   126    19     9    95     6    95 
+	                            10    80    12    80    16    80    22    95    24    90 
+	                            28    80    30     8     6     3    21     3    43    17 
+	                           107    12   106    16     5    19     2     0    29 
+	00131: PUSHW[1]            666 
+	00134: PUSHB[6]              5    17     7    17     2    23 
+	00141: PUSHW[1]            666 
+	00144: PUSHB[3]             11    11     2 
+	00148: PUSHW[1]            666 
+	00151: NPUSHB      (51):     0     0   123     3   139     3     2     3     1     0 
+	                            48    17    64    17     2    91    17   107    17   127 
+	                            17   143    17     4     5    17     8    14    64     0 
+	                             1     0     0    14     1     1    26    64    33    64 
+	                            13    13     2    85    33    64    11    11     2    85 
+	                             8 
+	00204: PUSHW[1]            -22 
+	00207: NPUSHB      (17):    15    15     2    85     8    24    13    13     2    85 
+	                             8    16    11    11     2    85     8 
+	00226: PUSHW[1]            -16 
+	00229: PUSHB[5]             15    15     6    85     8 
+	00235: PUSHW[1]            -15 
+	00238: PUSHB[5]             11    13     6    85     8 
+	00244: PUSHW[1]            -64 
+	00247: NPUSHB      (74):    36    37    52    48     8     1     0     8    16     8 
+	                            32     8     3     8    49    33    20    64    14    12 
+	                            14    15     2    85    14    18    13    13     2    85 
+	                            14    12    12    12     2    85    14    28    11    11 
+	                             2    85    14    12    16    16     6    85    14    13 
+	                            13    13     6    85    14    22    12    12     6    85 
+	                            14    13    11    11     6    85    31    14    63    14 
+	                             2    14    49    32 
+	00323: SRP0       
+	00324: MIRP[srp0,nmd,rd,2] 
+	00325: DELTAP1    
+	00326: CALL       
+	00327: CALL       
+	00328: CALL       
+	00329: CALL       
+	00330: CALL       
+	00331: CALL       
+	00332: CALL       
+	00333: CALL       
+	00334: MIRP[nrp0,md,rd,1] 
+	00335: SRP0       
+	00336: MIRP[srp0,nmd,rd,2] 
+	00337: DELTAP1    
+	00338: DELTAP1    
+	00339: CALL       
+	00340: CALL       
+	00341: CALL       
+	00342: CALL       
+	00343: CALL       
+	00344: CALL       
+	00345: CALL       
+	00346: CALL       
+	00347: MIRP[nrp0,md,rd,1] 
+	00348: SHP[rp1,zp0] 
+	00349: MDAP[rd]   
+	00350: SRP1       
+	00351: SHP[rp1,zp0] 
+	00352: MDAP[rd]   
+	00353: DELTAP1    
+	00354: SRP1       
+	00355: SRP2       
+	00356: IP         
+	00357: IP         
+	00358: DELTAP1    
+	00359: DELTAP3    
+	00360: SRP1       
+	00361: SRP2       
+	00362: IP         
+	00363: DELTAP1    
+	00364: SVTCA[y-axis] 
+	00365: MIAP[rd+ci] 
+	00366: MIRP[nrp0,md,rd,1] 
+	00367: MIAP[rd+ci] 
+	00368: MIRP[nrp0,md,rd,1] 
+	00369: SRP1       
+	00370: SHP[rp1,zp0] 
+	00371: MIAP[rd+ci] 
+	00372: SHP[rp1,zp0] 
+	00373: MIRP[nrp0,md,rd,1] 
+	00374: SRP1       
+	00375: SRP2       
+	00376: IP         
+	00377: IUP[y]     
+	00378: IUP[x]     
+	00379: SVTCA[x-axis] 
+	00380: DELTAP2    
+	00381: DELTAP1    
+	00382: DELTAP1    
+	00383: DELTAP1    
+	00384: DELTAP3    
+	00385: SVTCA[y-axis] 
+	00386: DELTAP1    
+	00387: DELTAP1    
+	00388: DELTAP1    
+	00389: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual                         Off
+	 10:                                      Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:                              X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:        XDual                         Off
+	 16:                                      Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual               Y-Short X-Short On
+	 20:        XDual                 X-Short On
+	 21:        XDual         Y-Short         Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   174,  1466)  ->  Abs (   174,  1466)
+	  1: Rel (   801,     0)  ->  Abs (   975,  1466)
+	  2: Rel (     0,  -146)  ->  Abs (   975,  1320)
+	  3: Rel (  -560,     0)  ->  Abs (   415,  1320)
+	  4: Rel (   100,  -102)  ->  Abs (   515,  1218)
+	  5: Rel (   213,  -147)  ->  Abs (   728,  1071)
+	  6: Rel (   190,  -132)  ->  Abs (   918,   939)
+	  7: Rel (   150,  -226)  ->  Abs (  1068,   713)
+	  8: Rel (     0,  -193)  ->  Abs (  1068,   520)
+	  9: Rel (     0,  -259)  ->  Abs (  1068,   261)
+	 10: Rel (  -279,  -285)  ->  Abs (   789,   -24)
+	 11: Rel (  -224,     0)  ->  Abs (   565,   -24)
+	 12: Rel (  -245,     0)  ->  Abs (   320,   -24)
+	 13: Rel (  -248,   320)  ->  Abs (    72,   296)
+	 14: Rel (     0,   220)  ->  Abs (    72,   516)
+	 15: Rel (     0,   256)  ->  Abs (    72,   772)
+	 16: Rel (   262,   269)  ->  Abs (   334,  1041)
+	 17: Rel (   182,     7)  ->  Abs (   516,  1048)
+	 18: Rel (   -93,    65)  ->  Abs (   423,  1113)
+	 19: Rel (  -249,   223)  ->  Abs (   174,  1336)
+	 20: Rel (    82,  -822)  ->  Abs (   256,   514)
+	 21: Rel (     0,  -170)  ->  Abs (   256,   344)
+	 22: Rel (   179,  -220)  ->  Abs (   435,   124)
+	 23: Rel (   139,     0)  ->  Abs (   574,   124)
+	 24: Rel (   122,     0)  ->  Abs (   696,   124)
+	 25: Rel (   187,   188)  ->  Abs (   883,   312)
+	 26: Rel (     0,   203)  ->  Abs (   883,   515)
+	 27: Rel (     0,   188)  ->  Abs (   883,   703)
+	 28: Rel (  -178,   206)  ->  Abs (   705,   909)
+	 29: Rel (  -135,     0)  ->  Abs (   570,   909)
+	 30: Rel (  -149,     0)  ->  Abs (   421,   909)
+	 31: Rel (  -165,  -232)  ->  Abs (   256,   677)
+
+	Glyph 304: off = 0x00010AB8, len = 338
+	  numberOfContours:	1
+	  xMin:			98
+	  yMin:			-24
+	  xMax:			867
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  36
+
+	  Length of Instructions:	232
+	00000: NPUSHB      (55):    31    38    95    38   125     2   125    21   137     1 
+	                           139     2   131     8   132    15   139    21   137    22 
+	                           178     4   178    15   195     4   194    15    14   128 
+	                            38     1    38    33    57    26    54    34   117     7 
+	                           121    16   180     5   182    33   196     5   198    33 
+	                             9    30    12    23    22 
+	00057: PUSHW[1]            -64 
+	00060: NPUSHB      (14):     9    12    52    22    22    20     0    63     1     1 
+	                             1     1     3    11 
+	00076: PUSHW[1]            666 
+	00079: NPUSHB       (9):   112    12   191    12     2    12    12    25     3 
+	00090: PUSHW[1]            666 
+	00093: PUSHB[3]             35     7    20 
+	00097: PUSHW[1]            666 
+	00100: NPUSHB      (43):    25    11    30     6    28    12    12    23    28     1 
+	                             0    22    23     6    64    32    64    26    34    52 
+	                            32    32    28    16     0     1     0     0     0    23 
+	                            32    23    96    23   128    23     4    23   170    38 
+	                            17    64    28 
+	00145: PUSHW[1]             -8 
+	00148: NPUSHB      (24):    15    15     6    85    28    16    12    12     6    85 
+	                            28    22    11    11     6    85    31    28    79    28 
+	                             2    28    52    37 
+	00174: SRP0       
+	00175: MIRP[srp0,nmd,rd,2] 
+	00176: DELTAP1    
+	00177: CALL       
+	00178: CALL       
+	00179: CALL       
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: SRP0       
+	00182: MIRP[srp0,nmd,rd,2] 
+	00183: DELTAP1    
+	00184: SHP[rp2,zp1] 
+	00185: MDAP[rd]   
+	00186: DELTAP2    
+	00187: SRP1       
+	00188: SHP[rp1,zp0] 
+	00189: MDAP[rd]   
+	00190: CALL       
+	00191: MIRP[nrp0,md,rd,1] 
+	00192: SRP1       
+	00193: SHP[rp1,zp0] 
+	00194: SRP1       
+	00195: SHP[rp1,zp0] 
+	00196: SRP1       
+	00197: SRP2       
+	00198: IP         
+	00199: MDAP[rd]   
+	00200: SRP1       
+	00201: SRP2       
+	00202: IP         
+	00203: SVTCA[y-axis] 
+	00204: MIAP[rd+ci] 
+	00205: MIRP[nrp0,md,rd,1] 
+	00206: MIAP[rd+ci] 
+	00207: MIRP[nrp0,md,rd,1] 
+	00208: SRP2       
+	00209: IP         
+	00210: MDAP[rd]   
+	00211: DELTAP2    
+	00212: MIRP[nrp0,md,rd,1] 
+	00213: SRP1       
+	00214: SHP[rp1,zp0] 
+	00215: MDAP[rd]   
+	00216: DELTAP1    
+	00217: SHP[rp1,zp0] 
+	00218: SRP1       
+	00219: SHP[rp1,zp0] 
+	00220: MDAP[rd]   
+	00221: CALL       
+	00222: SHP[rp1,zp0] 
+	00223: SRP1       
+	00224: IP         
+	00225: IUP[y]     
+	00226: IUP[x]     
+	00227: SVTCA[y-axis] 
+	00228: DELTAP1    
+	00229: SVTCA[x-axis] 
+	00230: DELTAP2    
+	00231: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:                      Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short         On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:                      Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short On
+	 24:                      Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   829,   942)  ->  Abs (   829,   942)
+	  1: Rel (  -129,  -104)  ->  Abs (   700,   838)
+	  2: Rel (  -123,    93)  ->  Abs (   577,   931)
+	  3: Rel (  -107,     0)  ->  Abs (   470,   931)
+	  4: Rel (   -88,     0)  ->  Abs (   382,   931)
+	  5: Rel (   -81,   -94)  ->  Abs (   301,   837)
+	  6: Rel (     0,   -54)  ->  Abs (   301,   783)
+	  7: Rel (     0,   -70)  ->  Abs (   301,   713)
+	  8: Rel (   120,   -93)  ->  Abs (   421,   620)
+	  9: Rel (   116,     0)  ->  Abs (   537,   620)
+	 10: Rel (    15,     0)  ->  Abs (   552,   620)
+	 11: Rel (    35,     1)  ->  Abs (   587,   621)
+	 12: Rel (     0,  -151)  ->  Abs (   587,   470)
+	 13: Rel (   -32,     1)  ->  Abs (   555,   471)
+	 14: Rel (   -16,     0)  ->  Abs (   539,   471)
+	 15: Rel (  -143,     0)  ->  Abs (   396,   471)
+	 16: Rel (  -111,  -110)  ->  Abs (   285,   361)
+	 17: Rel (     0,   -69)  ->  Abs (   285,   292)
+	 18: Rel (     0,   -71)  ->  Abs (   285,   221)
+	 19: Rel (   112,   -97)  ->  Abs (   397,   124)
+	 20: Rel (    77,     0)  ->  Abs (   474,   124)
+	 21: Rel (   141,     0)  ->  Abs (   615,   124)
+	 22: Rel (   123,   131)  ->  Abs (   738,   255)
+	 23: Rel (   129,  -109)  ->  Abs (   867,   146)
+	 24: Rel (  -160,  -170)  ->  Abs (   707,   -24)
+	 25: Rel (  -238,     0)  ->  Abs (   469,   -24)
+	 26: Rel (  -187,     0)  ->  Abs (   282,   -24)
+	 27: Rel (  -184,   190)  ->  Abs (    98,   166)
+	 28: Rel (     0,   126)  ->  Abs (    98,   292)
+	 29: Rel (     0,   181)  ->  Abs (    98,   473)
+	 30: Rel (   176,    76)  ->  Abs (   274,   549)
+	 31: Rel (  -147,    83)  ->  Abs (   127,   632)
+	 32: Rel (     0,   146)  ->  Abs (   127,   778)
+	 33: Rel (     0,   119)  ->  Abs (   127,   897)
+	 34: Rel (   174,   189)  ->  Abs (   301,  1086)
+	 35: Rel (   180,     0)  ->  Abs (   481,  1086)
+	 36: Rel (   206,     0)  ->  Abs (   687,  1086)
+
+	Glyph 305: off = 0x00010C0A, len = 388
+	  numberOfContours:	2
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1219
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  15
+	  1:  27
+
+	  Length of Instructions:	292
+	00000: NPUSHB      (61):    54    17    54    21    57    23    57    27    69    17 
+	                            69    21    73    23    73    27    83     2    88     5 
+	                            84     8    82    17    84    21    94    23   101     2 
+	                           106     5   100     8   100    17   100    21   109    23 
+	                            20    15     2     2    10     4    22    28     7    11 
+	                             1    28    15     6    16    28    13     7    25    36 
+	                             4 
+	00063: PUSHW[1]            -22 
+	00066: PUSHB[5]             14    14     2    85     4 
+	00072: PUSHW[1]            -22 
+	00075: PUSHB[5]             10    12     2    85     4 
+	00081: PUSHW[1]            -17 
+	00084: PUSHB[5]             16    16     6    85     4 
+	00090: PUSHW[1]            -32 
+	00093: PUSHB[5]             15    15     6    85     4 
+	00099: PUSHW[1]            -43 
+	00102: PUSHB[5]             13    13     6    85     4 
+	00108: PUSHW[1]            -15 
+	00111: PUSHB[5]             12    12     6    85     4 
+	00117: PUSHW[1]            -28 
+	00120: NPUSHB      (33):    11    11     6    85    80     4    96     4   112     4 
+	                           128     4     4    16     4    48     4    64     4    80 
+	                             4    96     4   112     4   128     4   144     4   176 
+	                             4     9     4 
+	00155: PUSHW[1]            463 
+	00158: NPUSHB      (50):    10    63     0     1    15     0   143     0     2     0 
+	                           170    29    19    36    10    64    36    37    52    10 
+	                            12    14    15     2    85    10    18    13    13     2 
+	                            85    10    12    12    12     2    85    10    28    11 
+	                            11     2    85    10    12    16    16     6    85    10 
+	00210: PUSHW[1]             -1 
+	00213: NPUSHB      (30):    15    15     6    85    10    12    13    13     6    85 
+	                            10    30    12    12     6    85    10    10    11    11 
+	                             6    85    31    10    63    10     2    10    49    28 
+	00245: SRP0       
+	00246: MIRP[srp0,nmd,rd,2] 
+	00247: DELTAP1    
+	00248: CALL       
+	00249: CALL       
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+	00253: CALL       
+	00254: CALL       
+	00255: CALL       
+	00256: CALL       
+	00257: CALL       
+	00258: MIRP[nrp0,md,rd,1] 
+	00259: SRP0       
+	00260: MIRP[nrp0,nmd,rd,2] 
+	00261: DELTAP2    
+	00262: DELTAP1    
+	00263: SRP0       
+	00264: MIRP[srp0,md,rd,1] 
+	00265: DELTAP1    
+	00266: DELTAP2    
+	00267: CALL       
+	00268: CALL       
+	00269: CALL       
+	00270: CALL       
+	00271: CALL       
+	00272: CALL       
+	00273: CALL       
+	00274: MIRP[nrp0,md,rd,1] 
+	00275: SVTCA[y-axis] 
+	00276: MIAP[rd+ci] 
+	00277: MIRP[nrp0,md,rd,1] 
+	00278: MIAP[rd+ci] 
+	00279: MIRP[nrp0,md,rd,1] 
+	00280: MIAP[rd+ci] 
+	00281: MIRP[nrp0,md,rd,1] 
+	00282: SVTCA[x-axis] 
+	00283: SRP1       
+	00284: SRP2       
+	00285: IP         
+	00286: SRP1       
+	00287: SHP[rp1,zp0] 
+	00288: IUP[y]     
+	00289: IUP[x]     
+	00290: SVTCA[x-axis] 
+	00291: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual                         On
+	  5:        XDual                         Off
+	  6:                                      Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                                      Off
+	 10:        XDual                         On
+	 11:        XDual                         Off
+	 12:                                      Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short X-Short On
+	 16:                      Y-Short X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                      Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1219,  1062)  ->  Abs (  1219,  1062)
+	  1: Rel (     0,  -146)  ->  Abs (  1219,   916)
+	  2: Rel (  -289,     0)  ->  Abs (   930,   916)
+	  3: Rel (   133,  -124)  ->  Abs (  1063,   792)
+	  4: Rel (     0,  -262)  ->  Abs (  1063,   530)
+	  5: Rel (     0,  -285)  ->  Abs (  1063,   245)
+	  6: Rel (  -291,  -269)  ->  Abs (   772,   -24)
+	  7: Rel (  -208,     0)  ->  Abs (   564,   -24)
+	  8: Rel (  -216,     0)  ->  Abs (   348,   -24)
+	  9: Rel (  -280,   280)  ->  Abs (    68,   256)
+	 10: Rel (     0,   275)  ->  Abs (    68,   531)
+	 11: Rel (     0,   283)  ->  Abs (    68,   814)
+	 12: Rel (   291,   272)  ->  Abs (   359,  1086)
+	 13: Rel (   205,     0)  ->  Abs (   564,  1086)
+	 14: Rel (    75,     0)  ->  Abs (   639,  1086)
+	 15: Rel (    95,   -24)  ->  Abs (   734,  1062)
+	 16: Rel (  -173,  -125)  ->  Abs (   561,   937)
+	 17: Rel (  -131,     0)  ->  Abs (   430,   937)
+	 18: Rel (  -177,  -204)  ->  Abs (   253,   733)
+	 19: Rel (     0,  -203)  ->  Abs (   253,   530)
+	 20: Rel (     0,  -202)  ->  Abs (   253,   328)
+	 21: Rel (   173,  -204)  ->  Abs (   426,   124)
+	 22: Rel (   138,     0)  ->  Abs (   564,   124)
+	 23: Rel (   145,     0)  ->  Abs (   709,   124)
+	 24: Rel (   171,   213)  ->  Abs (   880,   337)
+	 25: Rel (     0,   194)  ->  Abs (   880,   531)
+	 26: Rel (     0,   177)  ->  Abs (   880,   708)
+	 27: Rel (  -157,   229)  ->  Abs (   723,   937)
+
+	Glyph 306: off = 0x00010D8E, len = 226
+	  numberOfContours:	1
+	  xMin:			46
+	  yMin:			0
+	  xMax:			762
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	189
+	00000: NPUSHB      (29):    16     9    80     9    96     9   112     9   128     9 
+	                           159     9   208     9     7    79     9     1     2    10 
+	                             7     4    28     5     6   127     7     1     7 
+	00031: PUSHW[1]            271 
+	00034: PUSHB[5]              1   112     4     1     4 
+	00040: PUSHW[1]            271 
+	00043: PUSHB[3]              1    37     2 
+	00047: PUSHW[1]            -32 
+	00050: PUSHB[5]             16    16     2    85     2 
+	00056: PUSHW[1]            -12 
+	00059: PUSHB[5]             13    13     2    85     2 
+	00065: PUSHW[1]             -2 
+	00068: PUSHB[5]             12    12     2    85     2 
+	00074: PUSHW[1]            -28 
+	00077: PUSHB[5]             11    11     2    85     2 
+	00083: PUSHW[1]            -20 
+	00086: NPUSHB      (11):    10    10     2    85     2     8    16    16     6    85 
+	                             2 
+	00099: PUSHW[1]             -8 
+	00102: PUSHB[5]             13    13     6    85     2 
+	00108: PUSHW[1]            -10 
+	00111: NPUSHB      (45):    12    12     6    85    16     2    32     2   112     2 
+	                           128     2   208     2   224     2   240     2     7    64 
+	                             2   160     2   176     2     3     0     2   112     2 
+	                           128     2   208     2   224     2   240     2     6     9 
+	                             0     2     1    74     2 
+	00158: MDAP[rd]   
+	00159: SDB        
+	00160: DELTAP1    
+	00161: SDB        
+	00162: DELTAP3    
+	00163: DELTAP2    
+	00164: DELTAP1    
+	00165: CALL       
+	00166: CALL       
+	00167: CALL       
+	00168: CALL       
+	00169: CALL       
+	00170: CALL       
+	00171: CALL       
+	00172: CALL       
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: MIRP[nrp0,nmd,rd,0] 
+	00175: DELTAP1    
+	00176: SRP0       
+	00177: MIRP[nrp0,nmd,rd,0] 
+	00178: DELTAP1    
+	00179: SVTCA[y-axis] 
+	00180: MIAP[rd+ci] 
+	00181: MIRP[srp0,md,rd,1] 
+	00182: ALIGNRP    
+	00183: MIAP[rd+ci] 
+	00184: IUP[y]     
+	00185: IUP[x]     
+	00186: SVTCA[x-axis] 
+	00187: DELTAP2    
+	00188: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   506,   916)  ->  Abs (   506,   916)
+	  1: Rel (     0,  -916)  ->  Abs (   506,     0)
+	  2: Rel (  -180,     0)  ->  Abs (   326,     0)
+	  3: Rel (     0,   916)  ->  Abs (   326,   916)
+	  4: Rel (  -280,     0)  ->  Abs (    46,   916)
+	  5: Rel (     0,   146)  ->  Abs (    46,  1062)
+	  6: Rel (   716,     0)  ->  Abs (   762,  1062)
+	  7: Rel (     0,  -146)  ->  Abs (   762,   916)
+
+	Glyph 307: off = 0x00010E70, len = 410
+	  numberOfContours:	2
+	  xMin:			72
+	  yMin:			-407
+	  xMax:			1257
+	  yMax:			1087
+
+	EndPoints
+	---------
+	  0:  27
+	  1:  37
+
+	  Length of Instructions:	286
+	00000: NPUSHB      (68):    64    39     1    35     5    35    23    40    24    56 
+	                            29    72    29   115    12   122    23   138     9   140 
+	                            23   180     5   247     2    11    82    13   102     4 
+	                           103     5    98    13   103    27   152    23   168    23 
+	                           199    13   202    18   202    23   202    24    11    28 
+	                            51     6    28    19    22    11    21     1    28     0 
+	                            34    28    11     7     0     7     1     0 
+	00070: PUSHW[1]            -64 
+	00073: NPUSHB      (21):     9    14    52     0     0    25    28    20     6    79 
+	                            21     1    21    37    20     6    16    16     2    85 
+	                            20 
+	00096: PUSHW[1]            -12 
+	00099: PUSHB[5]             15    15     2    85    20 
+	00105: PUSHW[1]             -4 
+	00108: NPUSHB      (24):    15    15     6    85    20     6    12    12     6    85 
+	                            20    64    11    13    52   191    20     1    20    20 
+	                            25    31    36    15 
+	00134: PUSHW[1]            -10 
+	00137: PUSHB[5]             15    15     6    85    15 
+	00143: PUSHW[1]            -15 
+	00146: PUSHB[5]             13    13     6    85    15 
+	00152: PUSHW[1]            -18 
+	00155: PUSHB[5]             12    12     6    85    15 
+	00161: PUSHW[1]            -14 
+	00164: NPUSHB      (28):    11    11     6    85    64    15     1     0    15    16 
+	                            15    32    15    48    15     4    15    49    39     3 
+	                            36    25    16    16    16     6    85    25 
+	00194: PUSHW[1]             -4 
+	00197: NPUSHB      (31):    15    15     6    85    25    18    13    13     6    85 
+	                            25    23    12    12     6    85    25    14    11    11 
+	                             6    85    63    25     1    25    49    38    52    55 
+	                            24 
+	00230: CALL       
+	00231: SRP0       
+	00232: MIRP[srp0,nmd,rd,2] 
+	00233: DELTAP1    
+	00234: CALL       
+	00235: CALL       
+	00236: CALL       
+	00237: CALL       
+	00238: CALL       
+	00239: MIRP[nrp0,md,rd,1] 
+	00240: SRP0       
+	00241: MIRP[srp0,nmd,rd,2] 
+	00242: DELTAP1    
+	00243: DELTAP2    
+	00244: CALL       
+	00245: CALL       
+	00246: CALL       
+	00247: CALL       
+	00248: MIRP[nrp0,md,rd,1] 
+	00249: SRP2       
+	00250: IP         
+	00251: MDAP[rd]   
+	00252: DELTAP1    
+	00253: CALL       
+	00254: CALL       
+	00255: CALL       
+	00256: CALL       
+	00257: CALL       
+	00258: MIRP[srp0,md,rd,1] 
+	00259: DELTAP2    
+	00260: ALIGNRP    
+	00261: SRP0       
+	00262: ALIGNRP    
+	00263: SRP1       
+	00264: IP         
+	00265: MDAP[rd]   
+	00266: CALL       
+	00267: SHP[rp1,zp0] 
+	00268: SVTCA[y-axis] 
+	00269: MIAP[rd+ci] 
+	00270: MIAP[rd+ci] 
+	00271: MIRP[nrp0,md,rd,1] 
+	00272: SRP0       
+	00273: MIRP[nrp0,md,rd,1] 
+	00274: MDAP[rd]   
+	00275: MIAP[rd+ci] 
+	00276: ALIGNRP    
+	00277: MIRP[srp0,md,rd,1] 
+	00278: MIRP[nrp0,nmd,rd,0] 
+	00279: IUP[y]     
+	00280: IUP[x]     
+	00281: SVTCA[y-axis] 
+	00282: DELTAP1    
+	00283: SVTCA[x-axis] 
+	00284: DELTAP1    
+	00285: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:        XDual                         On
+	  4:        XDual         Y-Short         Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:        XDual                         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:        XDual                         On
+	 21:  YDual                       X-Short On
+	 22:        XDual                         On
+	 23:  YDual                       X-Short Off
+	 24:                                      Off
+	 25:        XDual                         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:                                      Off
+	 28:                                      On
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:                      Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   499,  1083)  ->  Abs (   499,  1083)
+	  1: Rel (   -35,  -156)  ->  Abs (   464,   927)
+	  2: Rel (  -207,   -69)  ->  Abs (   257,   858)
+	  3: Rel (     0,  -293)  ->  Abs (   257,   565)
+	  4: Rel (     0,  -155)  ->  Abs (   257,   410)
+	  5: Rel (   163,  -243)  ->  Abs (   420,   167)
+	  6: Rel (   162,   -35)  ->  Abs (   582,   132)
+	  7: Rel (     0,   660)  ->  Abs (   582,   792)
+	  8: Rel (     0,   106)  ->  Abs (   582,   898)
+	  9: Rel (    30,   115)  ->  Abs (   612,  1013)
+	 10: Rel (   107,    73)  ->  Abs (   719,  1086)
+	 11: Rel (    92,     0)  ->  Abs (   811,  1086)
+	 12: Rel (   143,     0)  ->  Abs (   954,  1086)
+	 13: Rel (   179,  -116)  ->  Abs (  1133,   970)
+	 14: Rel (   124,  -250)  ->  Abs (  1257,   720)
+	 15: Rel (     0,  -144)  ->  Abs (  1257,   576)
+	 16: Rel (     0,  -120)  ->  Abs (  1257,   456)
+	 17: Rel (   -98,  -241)  ->  Abs (  1159,   215)
+	 18: Rel (  -220,  -202)  ->  Abs (   939,    13)
+	 19: Rel (  -179,   -38)  ->  Abs (   760,   -25)
+	 20: Rel (     0,  -382)  ->  Abs (   760,  -407)
+	 21: Rel (  -178,     0)  ->  Abs (   582,  -407)
+	 22: Rel (     0,   382)  ->  Abs (   582,   -25)
+	 23: Rel (  -186,     0)  ->  Abs (   396,   -25)
+	 24: Rel (  -324,   326)  ->  Abs (    72,   301)
+	 25: Rel (     0,   256)  ->  Abs (    72,   557)
+	 26: Rel (     0,   237)  ->  Abs (    72,   794)
+	 27: Rel (   259,   293)  ->  Abs (   331,  1087)
+	 28: Rel (   429,  -947)  ->  Abs (   760,   140)
+	 29: Rel (   127,    23)  ->  Abs (   887,   163)
+	 30: Rel (   181,   238)  ->  Abs (  1068,   401)
+	 31: Rel (     0,   193)  ->  Abs (  1068,   594)
+	 32: Rel (     0,   179)  ->  Abs (  1068,   773)
+	 33: Rel (  -132,   164)  ->  Abs (   936,   937)
+	 34: Rel (   -74,     0)  ->  Abs (   862,   937)
+	 35: Rel (   -53,     0)  ->  Abs (   809,   937)
+	 36: Rel (   -49,   -73)  ->  Abs (   760,   864)
+	 37: Rel (     0,  -124)  ->  Abs (   760,   740)
+
+	Glyph 308: off = 0x0001100A, len = 106
+	  numberOfContours:	2
+	  xMin:			-31
+	  yMin:			-665
+	  xMax:			1162
+	  yMax:			-277
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	67
+	00000: PUSHB[7]              2     1    63     3     0     6     0 
+	00008: PUSHW[1]            671 
+	00011: NPUSHB      (24):     5     7     5    63     4     7     6     6     3     3 
+	                             2    26     9     4     5     5     0     0     1   197 
+	                             8    67    65    24 
+	00037: CALL       
+	00038: SRP0       
+	00039: MIRP[srp0,nmd,rd,1] 
+	00040: ALIGNRP    
+	00041: SRP0       
+	00042: ALIGNRP    
+	00043: SRP0       
+	00044: ALIGNRP    
+	00045: FLIPOFF    
+	00046: SRP0       
+	00047: MIRP[srp0,nmd,rd,2] 
+	00048: ALIGNRP    
+	00049: SRP0       
+	00050: ALIGNRP    
+	00051: SRP0       
+	00052: ALIGNRP    
+	00053: SVTCA[y-axis] 
+	00054: MDAP[rd]   
+	00055: FLIPON     
+	00056: MIRP[nrp0,md,rd,1] 
+	00057: ALIGNRP    
+	00058: SRP0       
+	00059: MIRP[nrp0,nmd,rd,2] 
+	00060: ALIGNRP    
+	00061: SRP0       
+	00062: ALIGNRP    
+	00063: MIRP[srp0,md,rd,1] 
+	00064: ALIGNRP    
+	00065: IUP[y]     
+	00066: IUP[x]     
+
+	Flags
+	-----
+	  0:                              X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+	  4:                                      On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   -31,  -407)  ->  Abs (   -31,  -407)
+	  1: Rel (     0,   130)  ->  Abs (   -31,  -277)
+	  2: Rel (  1193,     0)  ->  Abs (  1162,  -277)
+	  3: Rel (     0,  -130)  ->  Abs (  1162,  -407)
+	  4: Rel ( -1193,  -258)  ->  Abs (   -31,  -665)
+	  5: Rel (     0,   129)  ->  Abs (   -31,  -536)
+	  6: Rel (  1193,     0)  ->  Abs (  1162,  -536)
+	  7: Rel (     0,  -129)  ->  Abs (  1162,  -665)
+
+	Glyph 309: off = 0x00011074, len = 40
+	  numberOfContours:	-1  (Composite)
+	  xMin:			176
+	  yMin:			0
+	  xMax:			847
+	  yMax:			1466
+
+	     0: Flags:		0x0026
+		Glyf Index:	4
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	4
+		X WOffset:	448
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              2     1    14     4 
+	00005: PUSHW[1]            448 
+	00008: PUSHB[2]             72    39 
+	00011: SVTCA[x-axis] 
+	00012: CALL       
+
+	Glyph 310: off = 0x0001109C, len = 158
+	  numberOfContours:	1
+	  xMin:			82
+	  yMin:			519
+	  xMax:			667
+	  yMax:			1198
+
+	EndPoints
+	---------
+	  0:  20
+
+	  Length of Instructions:	90
+	00000: NPUSHB      (26):    53     4    68     4   101     4    98    17   119     4 
+	                           112    17     6    18    13    20     3     3    16    20 
+	                             1     2    39     6    12    20 
+	00028: PUSHW[1]            345 
+	00031: NPUSHB      (24):     6    28    16     7    13    37    10   130    20     2 
+	                            63     1    20    37     1    48     0     1     0    25 
+	                            21   113   140    24 
+	00057: CALL       
+	00058: FLIPOFF    
+	00059: SRP0       
+	00060: MIRP[srp0,nmd,rd,0] 
+	00061: DELTAP1    
+	00062: ALIGNRP    
+	00063: FLIPON     
+	00064: MIRP[nrp0,md,rd,1] 
+	00065: SRP0       
+	00066: MIRP[nrp0,md,rd,1] 
+	00067: SRP0       
+	00068: MIRP[srp0,nmd,rd,0] 
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: SVTCA[y-axis] 
+	00071: MIAP[rd+ci] 
+	00072: MIRP[nrp0,md,rd,1] 
+	00073: MIRP[srp0,nmd,rd,0] 
+	00074: ALIGNRP    
+	00075: SRP0       
+	00076: MIRP[srp0,nmd,rd,0] 
+	00077: ALIGNRP    
+	00078: SRP1       
+	00079: SRP2       
+	00080: IP         
+	00081: MDAP[rd]   
+	00082: SVTCA[x-axis] 
+	00083: SRP1       
+	00084: SRP2       
+	00085: IP         
+	00086: IUP[y]     
+	00087: IUP[x]     
+	00088: SVTCA[y-axis] 
+	00089: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual                         On
+	 12:  YDual                       X-Short On
+	 13:        XDual                         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                      Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (    82,   519)  ->  Abs (    82,   519)
+	  1: Rel (     0,   665)  ->  Abs (    82,  1184)
+	  2: Rel (   130,     0)  ->  Abs (   212,  1184)
+	  3: Rel (     0,   -69)  ->  Abs (   212,  1115)
+	  4: Rel (    41,    41)  ->  Abs (   253,  1156)
+	  5: Rel (   103,    42)  ->  Abs (   356,  1198)
+	  6: Rel (    64,     0)  ->  Abs (   420,  1198)
+	  7: Rel (    83,     0)  ->  Abs (   503,  1198)
+	  8: Rel (   114,   -63)  ->  Abs (   617,  1135)
+	  9: Rel (    50,  -101)  ->  Abs (   667,  1034)
+	 10: Rel (     0,  -109)  ->  Abs (   667,   925)
+	 11: Rel (     0,  -406)  ->  Abs (   667,   519)
+	 12: Rel (  -141,     0)  ->  Abs (   526,   519)
+	 13: Rel (     0,   401)  ->  Abs (   526,   920)
+	 14: Rel (     0,    88)  ->  Abs (   526,  1008)
+	 15: Rel (   -65,    69)  ->  Abs (   461,  1077)
+	 16: Rel (   -68,     0)  ->  Abs (   393,  1077)
+	 17: Rel (   -81,     0)  ->  Abs (   312,  1077)
+	 18: Rel (   -89,   -92)  ->  Abs (   223,   985)
+	 19: Rel (     0,  -104)  ->  Abs (   223,   881)
+	 20: Rel (     0,  -362)  ->  Abs (   223,   519)
+
+	Glyph 311: off = 0x0001113A, len = 642
+	  numberOfContours:	3
+	  xMin:			51
+	  yMin:			-26
+	  xMax:			2195
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  54
+	  1:  65
+	  2:  95
+
+	  Length of Instructions:	362
+	00000: NPUSHB     (107):    83     4    82    28   102    27   101    28   133    14 
+	                           138    87   137    89   136    91   154    90   156    91 
+	                            10     6    28    10    35     5    47    22    28    25 
+	                            35    21    47    35    27    44    35    52    26    69 
+	                            25    66    26    74    59    74    63    81     3    85 
+	                             4   100     3   108    19   100    47   101    48    98 
+	                            80   118     4   123    19   121    83   123    87   122 
+	                            91   133     4   143    14   143    19   141    22   133 
+	                            31   137    59   128    80   140    94   141    95   169 
+	                            13   184    13   196    13   202    35   196    37    39 
+	                            26    12    81    88    33    20    36 
+	00109: PUSHW[1]            695 
+	00112: PUSHB[6]             71    28    40    78    58    77 
+	00119: PUSHW[1]            275 
+	00122: NPUSHB      (19):    40    20    28    12     8    58     7    56    30    52 
+	                            52    53    55    30     0     0    17    58    16 
+	00143: PUSHW[1]            275 
+	00146: PUSHB[3]             12     7    95 
+	00150: PUSHW[1]            692 
+	00153: NPUSHB      (57):    46    43    10     5     6    53    10    71    28    40 
+	                            11    81    28    33    11    61    60     5    46   106 
+	                             5   106     7    37   229    93    78    39    23    94 
+	                            93    61    77    36   197    74    56    77   106    68 
+	                            58     8    37    44     7    32    16    16     2    85 
+	                             7     8    13    13     2    85     7 
+	00212: PUSHW[1]             -8 
+	00215: NPUSHB      (51):    12    12     2    85     7     7    96    97    16    56 
+	                            30    17    56    85    94    30    26    97    55    53 
+	                           186    54    54     0    28    16    16     2    85     0 
+	                            42    15    15     2    85     0    38    13    13     2 
+	                            85     0    42    11    12     2    85     0    25    96 
+	                            97 
+	00268: PUSHW[1]            495 
+	00271: PUSHB[4]             33   155   104    24 
+	00276: CALL       
+	00277: CALL       
+	00278: FLIPOFF    
+	00279: MIRP[srp0,nmd,rd,0] 
+	00280: CALL       
+	00281: CALL       
+	00282: CALL       
+	00283: CALL       
+	00284: ALIGNRP    
+	00285: FLIPON     
+	00286: SRP0       
+	00287: MIRP[srp0,md,rd,1] 
+	00288: ALIGNRP    
+	00289: FLIPOFF    
+	00290: SRP0       
+	00291: MIRP[srp0,nmd,rd,2] 
+	00292: FLIPON     
+	00293: MIRP[srp0,md,rd,1] 
+	00294: MIRP[nrp0,nmd,rd,0] 
+	00295: SRP0       
+	00296: MIRP[nrp0,nmd,rd,0] 
+	00297: SRP1       
+	00298: SRP2       
+	00299: IP         
+	00300: MDAP[rd]   
+	00301: CALL       
+	00302: CALL       
+	00303: CALL       
+	00304: ALIGNRP    
+	00305: MIRP[srp0,md,rd,1] 
+	00306: MIRP[nrp0,nmd,rd,0] 
+	00307: MIRP[srp0,nmd,rd,2] 
+	00308: MIRP[srp0,nmd,rd,0] 
+	00309: MIRP[nrp0,nmd,rd,1] 
+	00310: SRP0       
+	00311: MIRP[srp0,nmd,rd,2] 
+	00312: MIRP[srp0,md,rd,1] 
+	00313: MIRP[nrp0,nmd,rd,0] 
+	00314: SRP0       
+	00315: MIRP[nrp0,nmd,rd,1] 
+	00316: SRP0       
+	00317: MIRP[nrp0,nmd,rd,2] 
+	00318: MIRP[nrp0,nmd,rd,2] 
+	00319: SRP0       
+	00320: MIRP[nrp0,md,rd,1] 
+	00321: SVTCA[y-axis] 
+	00322: MIAP[rd+ci] 
+	00323: MIRP[nrp0,md,rd,1] 
+	00324: MIAP[rd+ci] 
+	00325: MIRP[nrp0,md,rd,1] 
+	00326: MIAP[rd+ci] 
+	00327: MIAP[rd+ci] 
+	00328: ALIGNRP    
+	00329: MIRP[srp0,md,rd,1] 
+	00330: MIRP[nrp0,nmd,rd,2] 
+	00331: MIAP[rd+ci] 
+	00332: MIRP[srp0,md,rd,1] 
+	00333: MIRP[nrp0,nmd,rd,0] 
+	00334: MIAP[rd+ci] 
+	00335: MIRP[nrp0,md,rd,1] 
+	00336: SRP1       
+	00337: IP         
+	00338: MDAP[rd]   
+	00339: MIRP[nrp0,md,rd,1] 
+	00340: MDAP[rd]   
+	00341: MIRP[nrp0,nmd,rd,0] 
+	00342: SRP0       
+	00343: MIRP[nrp0,md,rd,1] 
+	00344: SRP0       
+	00345: MIRP[srp0,md,rd,1] 
+	00346: MIRP[nrp0,nmd,rd,0] 
+	00347: SRP0       
+	00348: MIRP[srp0,md,rd,1] 
+	00349: MIRP[nrp0,nmd,rd,1] 
+	00350: SRP1       
+	00351: SRP2       
+	00352: IP         
+	00353: SRP1       
+	00354: SRP2       
+	00355: IP         
+	00356: IUP[y]     
+	00357: IUP[x]     
+	00358: SVTCA[x-axis] 
+	00359: DELTAP1    
+	00360: SVTCA[y-axis] 
+	00361: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual                         On
+	 10:  YDual                               On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:                      Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:        XDual         Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:                      Y-Short         Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual               Y-Short X-Short On
+	 37:                      Y-Short X-Short On
+	 38:                      Y-Short X-Short Off
+	 39:                      Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:  YDual               Y-Short X-Short On
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:        XDual                         On
+	 46:  YDual                       X-Short On
+	 47:                      Y-Short X-Short Off
+	 48:                      Y-Short X-Short Off
+	 49:                      Y-Short X-Short On
+	 50:                      Y-Short X-Short Off
+	 51:  YDual                       X-Short On
+	 52:  YDual                       X-Short On
+	 53:        XDual                         On
+	 54:  YDual                       X-Short On
+	 55:        XDual                 X-Short On
+	 56:        XDual                         On
+	 57:  YDual XDual                 X-Short On
+	 58:  YDual XDual                 X-Short Off
+	 59:  YDual XDual         Y-Short X-Short Off
+	 60:  YDual XDual         Y-Short X-Short Off
+	 61:  YDual XDual         Y-Short         On
+	 62:  YDual XDual         Y-Short         Off
+	 63:  YDual               Y-Short X-Short Off
+	 64:  YDual               Y-Short X-Short Off
+	 65:  YDual                       X-Short On
+	 66:                                      On
+	 67:        XDual                         On
+	 68:                      Y-Short X-Short On
+	 69:        XDual         Y-Short         Off
+	 70:        XDual         Y-Short X-Short Off
+	 71:  YDual XDual                 X-Short On
+	 72:  YDual XDual                 X-Short Off
+	 73:  YDual XDual         Y-Short X-Short Off
+	 74:  YDual XDual         Y-Short X-Short On
+	 75:  YDual               Y-Short X-Short Off
+	 76:  YDual               Y-Short X-Short Off
+	 77:  YDual               Y-Short X-Short On
+	 78:        XDual         Y-Short X-Short On
+	 79:        XDual         Y-Short X-Short Off
+	 80:        XDual         Y-Short X-Short Off
+	 81:  YDual XDual                 X-Short On
+	 82:  YDual XDual                 X-Short Off
+	 83:  YDual XDual         Y-Short X-Short On
+	 84:  YDual XDual         Y-Short X-Short Off
+	 85:  YDual XDual         Y-Short         On
+	 86:  YDual XDual         Y-Short         Off
+	 87:  YDual               Y-Short X-Short On
+	 88:  YDual               Y-Short X-Short Off
+	 89:  YDual               Y-Short         Off
+	 90:  YDual               Y-Short X-Short On
+	 91:  YDual               Y-Short X-Short Off
+	 92:  YDual               Y-Short X-Short Off
+	 93:  YDual XDual         Y-Short         On
+	 94:  YDual XDual         Y-Short         Off
+	 95:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    51,  1466)  ->  Abs (    51,  1466)
+	  1: Rel (   462,     0)  ->  Abs (   513,  1466)
+	  2: Rel (   234,     0)  ->  Abs (   747,  1466)
+	  3: Rel (   123,  -129)  ->  Abs (   870,  1337)
+	  4: Rel (    94,   -99)  ->  Abs (   964,  1238)
+	  5: Rel (    13,  -174)  ->  Abs (   977,  1064)
+	  6: Rel (    92,     0)  ->  Abs (  1069,  1064)
+	  7: Rel (     0,   310)  ->  Abs (  1069,  1374)
+	  8: Rel (   182,    -1)  ->  Abs (  1251,  1373)
+	  9: Rel (     0,  -309)  ->  Abs (  1251,  1064)
+	 10: Rel (   320,     0)  ->  Abs (  1571,  1064)
+	 11: Rel (    85,    28)  ->  Abs (  1656,  1092)
+	 12: Rel (    92,     0)  ->  Abs (  1748,  1092)
+	 13: Rel (   189,     0)  ->  Abs (  1937,  1092)
+	 14: Rel (   118,  -102)  ->  Abs (  2055,   990)
+	 15: Rel (    95,   -82)  ->  Abs (  2150,   908)
+	 16: Rel (     4,  -145)  ->  Abs (  2154,   763)
+	 17: Rel (  -187,     1)  ->  Abs (  1967,   764)
+	 18: Rel (    -6,    83)  ->  Abs (  1961,   847)
+	 19: Rel (  -104,    87)  ->  Abs (  1857,   934)
+	 20: Rel (  -102,     0)  ->  Abs (  1755,   934)
+	 21: Rel (  -102,     0)  ->  Abs (  1653,   934)
+	 22: Rel (  -101,   -80)  ->  Abs (  1552,   854)
+	 23: Rel (     0,   -46)  ->  Abs (  1552,   808)
+	 24: Rel (     0,   -55)  ->  Abs (  1552,   753)
+	 25: Rel (    57,   -36)  ->  Abs (  1609,   717)
+	 26: Rel (    56,   -36)  ->  Abs (  1665,   681)
+	 27: Rel (   317,   -76)  ->  Abs (  1982,   605)
+	 28: Rel (   139,   -81)  ->  Abs (  2121,   524)
+	 29: Rel (    74,  -136)  ->  Abs (  2195,   388)
+	 30: Rel (     0,   -75)  ->  Abs (  2195,   313)
+	 31: Rel (     0,  -133)  ->  Abs (  2195,   180)
+	 32: Rel (  -235,  -206)  ->  Abs (  1960,   -26)
+	 33: Rel (  -196,     0)  ->  Abs (  1764,   -26)
+	 34: Rel (  -125,     0)  ->  Abs (  1639,   -26)
+	 35: Rel (  -158,    74)  ->  Abs (  1481,    48)
+	 36: Rel (   -69,    83)  ->  Abs (  1412,   131)
+	 37: Rel (    -1,  -131)  ->  Abs (  1411,     0)
+	 38: Rel (   -28,    -8)  ->  Abs (  1383,    -8)
+	 39: Rel (   -47,    -8)  ->  Abs (  1336,   -16)
+	 40: Rel (   -18,     0)  ->  Abs (  1318,   -16)
+	 41: Rel (  -147,     0)  ->  Abs (  1171,   -16)
+	 42: Rel (   -65,    78)  ->  Abs (  1106,    62)
+	 43: Rel (   -37,    44)  ->  Abs (  1069,   106)
+	 44: Rel (     0,   102)  ->  Abs (  1069,   208)
+	 45: Rel (     0,   711)  ->  Abs (  1069,   919)
+	 46: Rel (  -102,     0)  ->  Abs (   967,   919)
+	 47: Rel (   -31,  -116)  ->  Abs (   936,   803)
+	 48: Rel (  -144,  -150)  ->  Abs (   792,   653)
+	 49: Rel (  -114,   -33)  ->  Abs (   678,   620)
+	 50: Rel (   -79,   -22)  ->  Abs (   599,   598)
+	 51: Rel (  -195,     0)  ->  Abs (   404,   598)
+	 52: Rel (  -159,     0)  ->  Abs (   245,   598)
+	 53: Rel (     0,  -598)  ->  Abs (   245,     0)
+	 54: Rel (  -194,     0)  ->  Abs (    51,     0)
+	 55: Rel (   194,  1295)  ->  Abs (   245,  1295)
+	 56: Rel (     0,  -528)  ->  Abs (   245,   767)
+	 57: Rel (   132,     0)  ->  Abs (   377,   767)
+	 58: Rel (   160,     0)  ->  Abs (   537,   767)
+	 59: Rel (   154,    50)  ->  Abs (   691,   817)
+	 60: Rel (    88,   122)  ->  Abs (   779,   939)
+	 61: Rel (     0,    92)  ->  Abs (   779,  1031)
+	 62: Rel (     0,    83)  ->  Abs (   779,  1114)
+	 63: Rel (   -72,   121)  ->  Abs (   707,  1235)
+	 64: Rel (  -125,    60)  ->  Abs (   582,  1295)
+	 65: Rel (  -132,     0)  ->  Abs (   450,  1295)
+	 66: Rel (   801,  -376)  ->  Abs (  1251,   919)
+	 67: Rel (     0,  -655)  ->  Abs (  1251,   264)
+	 68: Rel (    -1,   -31)  ->  Abs (  1250,   233)
+	 69: Rel (     0,   -38)  ->  Abs (  1250,   195)
+	 70: Rel (    46,   -44)  ->  Abs (  1296,   151)
+	 71: Rel (    44,     0)  ->  Abs (  1340,   151)
+	 72: Rel (    12,     0)  ->  Abs (  1352,   151)
+	 73: Rel (    26,     5)  ->  Abs (  1378,   156)
+	 74: Rel (    14,     5)  ->  Abs (  1392,   161)
+	 75: Rel (   -23,    47)  ->  Abs (  1369,   208)
+	 76: Rel (   -18,    76)  ->  Abs (  1351,   284)
+	 77: Rel (    -1,    54)  ->  Abs (  1350,   338)
+	 78: Rel (   182,    -1)  ->  Abs (  1532,   337)
+	 79: Rel (     8,   -99)  ->  Abs (  1540,   238)
+	 80: Rel (   129,  -111)  ->  Abs (  1669,   127)
+	 81: Rel (   108,     0)  ->  Abs (  1777,   127)
+	 82: Rel (   105,     0)  ->  Abs (  1882,   127)
+	 83: Rel (    76,    61)  ->  Abs (  1958,   188)
+	 84: Rel (    57,    46)  ->  Abs (  2015,   234)
+	 85: Rel (     0,    60)  ->  Abs (  2015,   294)
+	 86: Rel (     0,    46)  ->  Abs (  2015,   340)
+	 87: Rel (   -35,    32)  ->  Abs (  1980,   372)
+	 88: Rel (   -46,    42)  ->  Abs (  1934,   414)
+	 89: Rel (  -337,    91)  ->  Abs (  1597,   505)
+	 90: Rel (   -56,    29)  ->  Abs (  1541,   534)
+	 91: Rel (   -86,    46)  ->  Abs (  1455,   580)
+	 92: Rel (   -81,   120)  ->  Abs (  1374,   700)
+	 93: Rel (     0,    78)  ->  Abs (  1374,   778)
+	 94: Rel (     0,    77)  ->  Abs (  1374,   855)
+	 95: Rel (    32,    63)  ->  Abs (  1406,   918)
+
+	Glyph 312: off = 0x000113BC, len = 64
+	  numberOfContours:	1
+	  xMin:			79
+	  yMin:			157
+	  xMax:			1968
+	  yMax:			876
+
+	EndPoints
+	---------
+	  0:  16
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:  YDual                               On
+	  6:        XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short On
+	 10:  YDual                       X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   492,   876)  ->  Abs (   492,   876)
+	  1: Rel (    76,     0)  ->  Abs (   568,   876)
+	  2: Rel (   -59,  -118)  ->  Abs (   509,   758)
+	  3: Rel (   -59,   -95)  ->  Abs (   450,   663)
+	  4: Rel (   -77,   -96)  ->  Abs (   373,   567)
+	  5: Rel (  1595,     0)  ->  Abs (  1968,   567)
+	  6: Rel (     0,  -101)  ->  Abs (  1968,   466)
+	  7: Rel ( -1595,     0)  ->  Abs (   373,   466)
+	  8: Rel (   104,  -108)  ->  Abs (   477,   358)
+	  9: Rel (    94,  -201)  ->  Abs (   571,   157)
+	 10: Rel (   -78,     0)  ->  Abs (   493,   157)
+	 11: Rel (  -129,   144)  ->  Abs (   364,   301)
+	 12: Rel (  -186,   149)  ->  Abs (   178,   450)
+	 13: Rel (   -99,    48)  ->  Abs (    79,   498)
+	 14: Rel (     0,    45)  ->  Abs (    79,   543)
+	 15: Rel (    87,    37)  ->  Abs (   166,   580)
+	 16: Rel (   194,   152)  ->  Abs (   360,   732)
+
+	Glyph 313: off = 0x000113FC, len = 64
+	  numberOfContours:	1
+	  xMin:			153
+	  yMin:			-429
+	  xMax:			872
+	  yMax:			1339
+
+	EndPoints
+	---------
+	  0:  16
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual                 X-Short On
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short         On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:        XDual                         On
+	 12:  YDual                       X-Short On
+	 13:        XDual                         On
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   153,   926)  ->  Abs (   153,   926)
+	  1: Rel (   145,   133)  ->  Abs (   298,  1059)
+	  2: Rel (   151,   194)  ->  Abs (   449,  1253)
+	  3: Rel (    37,    86)  ->  Abs (   486,  1339)
+	  4: Rel (    46,     0)  ->  Abs (   532,  1339)
+	  5: Rel (    47,   -99)  ->  Abs (   579,  1240)
+	  6: Rel (   149,  -186)  ->  Abs (   728,  1054)
+	  7: Rel (   144,  -129)  ->  Abs (   872,   925)
+	  8: Rel (     0,   -77)  ->  Abs (   872,   848)
+	  9: Rel (  -201,    94)  ->  Abs (   671,   942)
+	 10: Rel (  -108,   103)  ->  Abs (   563,  1045)
+	 11: Rel (     0, -1474)  ->  Abs (   563,  -429)
+	 12: Rel (  -101,     0)  ->  Abs (   462,  -429)
+	 13: Rel (     0,  1474)  ->  Abs (   462,  1045)
+	 14: Rel (   -96,   -76)  ->  Abs (   366,   969)
+	 15: Rel (   -95,   -60)  ->  Abs (   271,   909)
+	 16: Rel (  -118,   -59)  ->  Abs (   153,   850)
+
+	Glyph 314: off = 0x0001143C, len = 64
+	  numberOfContours:	1
+	  xMin:			79
+	  yMin:			157
+	  xMax:			1968
+	  yMax:			876
+
+	EndPoints
+	---------
+	  0:  16
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short         On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:  YDual                       X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual                               On
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual                               On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1555,   876)  ->  Abs (  1555,   876)
+	  1: Rel (   133,  -145)  ->  Abs (  1688,   731)
+	  2: Rel (   194,  -151)  ->  Abs (  1882,   580)
+	  3: Rel (    86,   -37)  ->  Abs (  1968,   543)
+	  4: Rel (     0,   -45)  ->  Abs (  1968,   498)
+	  5: Rel (   -99,   -48)  ->  Abs (  1869,   450)
+	  6: Rel (  -186,  -149)  ->  Abs (  1683,   301)
+	  7: Rel (  -129,  -144)  ->  Abs (  1554,   157)
+	  8: Rel (   -77,     0)  ->  Abs (  1477,   157)
+	  9: Rel (    94,   201)  ->  Abs (  1571,   358)
+	 10: Rel (   103,   108)  ->  Abs (  1674,   466)
+	 11: Rel ( -1595,     0)  ->  Abs (    79,   466)
+	 12: Rel (     0,   101)  ->  Abs (    79,   567)
+	 13: Rel (  1595,     0)  ->  Abs (  1674,   567)
+	 14: Rel (   -76,    97)  ->  Abs (  1598,   664)
+	 15: Rel (   -60,    94)  ->  Abs (  1538,   758)
+	 16: Rel (   -59,   118)  ->  Abs (  1479,   876)
+
+	Glyph 315: off = 0x0001147C, len = 62
+	  numberOfContours:	1
+	  xMin:			153
+	  yMin:			-429
+	  xMax:			872
+	  yMax:			1339
+
+	EndPoints
+	---------
+	  0:  16
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:        XDual         Y-Short X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short X-Short On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short         On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short Off
+	 13:                      Y-Short X-Short On
+	 14:  YDual                       X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   153,   -16)  ->  Abs (   153,   -16)
+	  1: Rel (     0,    76)  ->  Abs (   153,    60)
+	  2: Rel (   119,   -59)  ->  Abs (   272,     1)
+	  3: Rel (    94,   -60)  ->  Abs (   366,   -59)
+	  4: Rel (    96,   -76)  ->  Abs (   462,  -135)
+	  5: Rel (     0,  1474)  ->  Abs (   462,  1339)
+	  6: Rel (   101,     0)  ->  Abs (   563,  1339)
+	  7: Rel (     0, -1474)  ->  Abs (   563,  -135)
+	  8: Rel (   108,   103)  ->  Abs (   671,   -32)
+	  9: Rel (   201,    94)  ->  Abs (   872,    62)
+	 10: Rel (     0,   -77)  ->  Abs (   872,   -15)
+	 11: Rel (  -144,  -129)  ->  Abs (   728,  -144)
+	 12: Rel (  -149,  -186)  ->  Abs (   579,  -330)
+	 13: Rel (   -47,   -99)  ->  Abs (   532,  -429)
+	 14: Rel (   -46,     0)  ->  Abs (   486,  -429)
+	 15: Rel (   -37,    86)  ->  Abs (   449,  -343)
+	 16: Rel (  -151,   194)  ->  Abs (   298,  -149)
+
+	Glyph 316: off = 0x000114BA, len = 94
+	  numberOfContours:	1
+	  xMin:			79
+	  yMin:			158
+	  xMax:			1968
+	  yMax:			878
+
+	EndPoints
+	---------
+	  0:  27
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:  YDual                       X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual                               On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short On
+	 11:  YDual                       X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual                 X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:  YDual                               On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual XDual                 X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1968,   540)  ->  Abs (  1968,   540)
+	  1: Rel (     0,   -45)  ->  Abs (  1968,   495)
+	  2: Rel (   -94,   -43)  ->  Abs (  1874,   452)
+	  3: Rel (  -182,  -146)  ->  Abs (  1692,   306)
+	  4: Rel (  -130,  -148)  ->  Abs (  1562,   158)
+	  5: Rel (   -80,     0)  ->  Abs (  1482,   158)
+	  6: Rel (    69,   172)  ->  Abs (  1551,   330)
+	  7: Rel (   125,   139)  ->  Abs (  1676,   469)
+	  8: Rel ( -1305,     0)  ->  Abs (   371,   469)
+	  9: Rel (   125,  -139)  ->  Abs (   496,   330)
+	 10: Rel (    69,  -172)  ->  Abs (   565,   158)
+	 11: Rel (   -80,     0)  ->  Abs (   485,   158)
+	 12: Rel (  -130,   148)  ->  Abs (   355,   306)
+	 13: Rel (  -182,   146)  ->  Abs (   173,   452)
+	 14: Rel (   -94,    43)  ->  Abs (    79,   495)
+	 15: Rel (     0,    45)  ->  Abs (    79,   540)
+	 16: Rel (    94,    44)  ->  Abs (   173,   584)
+	 17: Rel (   182,   145)  ->  Abs (   355,   729)
+	 18: Rel (   130,   149)  ->  Abs (   485,   878)
+	 19: Rel (    80,     0)  ->  Abs (   565,   878)
+	 20: Rel (   -69,  -172)  ->  Abs (   496,   706)
+	 21: Rel (  -125,  -139)  ->  Abs (   371,   567)
+	 22: Rel (  1305,     0)  ->  Abs (  1676,   567)
+	 23: Rel (  -125,   139)  ->  Abs (  1551,   706)
+	 24: Rel (   -69,   172)  ->  Abs (  1482,   878)
+	 25: Rel (    80,     0)  ->  Abs (  1562,   878)
+	 26: Rel (   130,  -149)  ->  Abs (  1692,   729)
+	 27: Rel (   182,  -145)  ->  Abs (  1874,   584)
+
+	Glyph 317: off = 0x00011518, len = 94
+	  numberOfContours:	1
+	  xMin:			152
+	  yMin:			-427
+	  xMax:			871
+	  yMax:			1463
+
+	EndPoints
+	---------
+	  0:  27
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short X-Short On
+	  5:        XDual         Y-Short         On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:        XDual                         On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:        XDual         Y-Short         On
+	 12:                      Y-Short X-Short Off
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:  YDual                       X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual               Y-Short X-Short On
+	 19:  YDual XDual         Y-Short         On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual                         On
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short On
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   489,  1463)  ->  Abs (   489,  1463)
+	  1: Rel (    45,     0)  ->  Abs (   534,  1463)
+	  2: Rel (    44,   -94)  ->  Abs (   578,  1369)
+	  3: Rel (   145,  -183)  ->  Abs (   723,  1186)
+	  4: Rel (   148,  -130)  ->  Abs (   871,  1056)
+	  5: Rel (     0,   -80)  ->  Abs (   871,   976)
+	  6: Rel (  -171,    69)  ->  Abs (   700,  1045)
+	  7: Rel (  -140,   126)  ->  Abs (   560,  1171)
+	  8: Rel (     0, -1306)  ->  Abs (   560,  -135)
+	  9: Rel (   140,   126)  ->  Abs (   700,    -9)
+	 10: Rel (   171,    68)  ->  Abs (   871,    59)
+	 11: Rel (     0,   -79)  ->  Abs (   871,   -20)
+	 12: Rel (  -148,  -130)  ->  Abs (   723,  -150)
+	 13: Rel (  -145,  -183)  ->  Abs (   578,  -333)
+	 14: Rel (   -44,   -94)  ->  Abs (   534,  -427)
+	 15: Rel (   -45,     0)  ->  Abs (   489,  -427)
+	 16: Rel (   -43,    94)  ->  Abs (   446,  -333)
+	 17: Rel (  -146,   183)  ->  Abs (   300,  -150)
+	 18: Rel (  -148,   130)  ->  Abs (   152,   -20)
+	 19: Rel (     0,    79)  ->  Abs (   152,    59)
+	 20: Rel (   171,   -68)  ->  Abs (   323,    -9)
+	 21: Rel (   140,  -126)  ->  Abs (   463,  -135)
+	 22: Rel (     0,  1306)  ->  Abs (   463,  1171)
+	 23: Rel (  -140,  -126)  ->  Abs (   323,  1045)
+	 24: Rel (  -171,   -69)  ->  Abs (   152,   976)
+	 25: Rel (     0,    80)  ->  Abs (   152,  1056)
+	 26: Rel (   148,   130)  ->  Abs (   300,  1186)
+	 27: Rel (   146,   183)  ->  Abs (   446,  1369)
+
+	Glyph 318: off = 0x00011576, len = 110
+	  numberOfContours:	2
+	  xMin:			152
+	  yMin:			-620
+	  xMax:			871
+	  yMax:			1463
+
+	EndPoints
+	---------
+	  0:  27
+	  1:  31
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short X-Short On
+	  5:        XDual         Y-Short         On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:        XDual                         On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:        XDual         Y-Short         On
+	 12:                      Y-Short X-Short Off
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:  YDual                       X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual               Y-Short X-Short On
+	 19:  YDual XDual         Y-Short         On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual                         On
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short On
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:                                      On
+	 29:  YDual                               On
+	 30:        XDual         Y-Short         On
+	 31:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   489,  1463)  ->  Abs (   489,  1463)
+	  1: Rel (    45,     0)  ->  Abs (   534,  1463)
+	  2: Rel (    44,   -94)  ->  Abs (   578,  1369)
+	  3: Rel (   145,  -183)  ->  Abs (   723,  1186)
+	  4: Rel (   148,  -130)  ->  Abs (   871,  1056)
+	  5: Rel (     0,   -80)  ->  Abs (   871,   976)
+	  6: Rel (  -171,    69)  ->  Abs (   700,  1045)
+	  7: Rel (  -140,   126)  ->  Abs (   560,  1171)
+	  8: Rel (     0, -1306)  ->  Abs (   560,  -135)
+	  9: Rel (   140,   126)  ->  Abs (   700,    -9)
+	 10: Rel (   171,    68)  ->  Abs (   871,    59)
+	 11: Rel (     0,   -79)  ->  Abs (   871,   -20)
+	 12: Rel (  -148,  -130)  ->  Abs (   723,  -150)
+	 13: Rel (  -145,  -183)  ->  Abs (   578,  -333)
+	 14: Rel (   -44,   -94)  ->  Abs (   534,  -427)
+	 15: Rel (   -45,     0)  ->  Abs (   489,  -427)
+	 16: Rel (   -43,    94)  ->  Abs (   446,  -333)
+	 17: Rel (  -146,   183)  ->  Abs (   300,  -150)
+	 18: Rel (  -148,   130)  ->  Abs (   152,   -20)
+	 19: Rel (     0,    79)  ->  Abs (   152,    59)
+	 20: Rel (   171,   -68)  ->  Abs (   323,    -9)
+	 21: Rel (   140,  -126)  ->  Abs (   463,  -135)
+	 22: Rel (     0,  1306)  ->  Abs (   463,  1171)
+	 23: Rel (  -140,  -126)  ->  Abs (   323,  1045)
+	 24: Rel (  -171,   -69)  ->  Abs (   152,   976)
+	 25: Rel (     0,    80)  ->  Abs (   152,  1056)
+	 26: Rel (   148,   130)  ->  Abs (   300,  1186)
+	 27: Rel (   146,   183)  ->  Abs (   446,  1369)
+	 28: Rel (  -292, -1891)  ->  Abs (   154,  -522)
+	 29: Rel (   717,     0)  ->  Abs (   871,  -522)
+	 30: Rel (     0,   -98)  ->  Abs (   871,  -620)
+	 31: Rel (  -717,     0)  ->  Abs (   154,  -620)
+
+	Glyph 319: off = 0x000115E4, len = 32
+	  numberOfContours:	1
+	  xMin:			362
+	  yMin:			0
+	  xMax:			1643
+	  yMax:			1279
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:        XDual         Y-Short         On
+	  5:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   362,  1279)  ->  Abs (   362,  1279)
+	  1: Rel (   100,     0)  ->  Abs (   462,  1279)
+	  2: Rel (     0, -1179)  ->  Abs (   462,   100)
+	  3: Rel (  1181,     0)  ->  Abs (  1643,   100)
+	  4: Rel (     0,  -100)  ->  Abs (  1643,     0)
+	  5: Rel ( -1281,     0)  ->  Abs (   362,     0)
+
+	Glyph 320: off = 0x00011604, len = 234
+	  numberOfContours:	1
+	  xMin:			158
+	  yMin:			0
+	  xMax:			1315
+	  yMax:			1492
+
+	EndPoints
+	---------
+	  0:  33
+
+	  Length of Instructions:	132
+	00000: PUSHB[3]             70     8    26 
+	00004: PUSHW[1]            699 
+	00007: NPUSHB      (26):     9     3    17    18     1     0     8    19    18    32 
+	                            17    17    16    26    35     0    33     1    33    32 
+	                             2    25    34   158   121    24 
+	00035: CALL       
+	00036: FLIPOFF    
+	00037: SRP0       
+	00038: MIRP[srp0,nmd,rd,0] 
+	00039: FLIPON     
+	00040: MIRP[nrp0,md,rd,1] 
+	00041: ALIGNRP    
+	00042: SRP0       
+	00043: ALIGNRP    
+	00044: FLIPOFF    
+	00045: SRP0       
+	00046: MIRP[srp0,nmd,rd,2] 
+	00047: ALIGNRP    
+	00048: FLIPON     
+	00049: SRP0       
+	00050: MIRP[srp0,md,rd,1] 
+	00051: ALIGNRP    
+	00052: SVTCA[y-axis] 
+	00053: MIAP[rd+ci] 
+	00054: ALIGNRP    
+	00055: ALIGNRP    
+	00056: ALIGNRP    
+	00057: MIAP[rd+ci] 
+	00058: MIRP[nrp0,md,rd,1] 
+	00059: IUP[y]     
+	00060: IUP[x]     
+	00061: RS         
+	00062: JROF       
+	00063: NPUSHB      (56):    22    30     3    15    29    30    28    30     2     6 
+	                             4     3     5     3     6     3     7     3     4     6 
+	                            14    15    13    15    12    15    11    15     4     6 
+	                            23    22    24    22     2     6    27     8    31    88 
+	                             0    25    10    21    88     1    30     3    26    88 
+	                             1    22    15    26    88     1 
+	00121: CALL       
+	00122: CALL       
+	00123: SVTCA[x-axis] 
+	00124: CALL       
+	00125: CALL       
+	00126: LOOPCALL   
+	00127: LOOPCALL   
+	00128: LOOPCALL   
+	00129: LOOPCALL   
+	00130: FLIPRGON   
+	00131: FLIPRGON   
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:        XDual                         Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual Rep-  3 Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual Rep-  2 Y-Short X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:        XDual                         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual               Y-Short X-Short On
+	 22:  YDual       Rep-  3 Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:              Rep-  2 Y-Short X-Short Off
+	 31:                      Y-Short X-Short On
+	 32:                      Y-Short X-Short Off
+	 33:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   293,     0)  ->  Abs (   293,     0)
+	  1: Rel (  -135,     0)  ->  Abs (   158,     0)
+	  2: Rel (     0,   621)  ->  Abs (   158,   621)
+	  3: Rel (     0,   261)  ->  Abs (   158,   882)
+	  4: Rel (     7,    69)  ->  Abs (   165,   951)
+	  5: Rel (    12,   125)  ->  Abs (   177,  1076)
+	  6: Rel (    68,   162)  ->  Abs (   245,  1238)
+	  7: Rel (   149,   156)  ->  Abs (   394,  1394)
+	  8: Rel (   219,    98)  ->  Abs (   613,  1492)
+	  9: Rel (   124,     0)  ->  Abs (   737,  1492)
+	 10: Rel (   119,     0)  ->  Abs (   856,  1492)
+	 11: Rel (   215,   -93)  ->  Abs (  1071,  1399)
+	 12: Rel (   160,  -160)  ->  Abs (  1231,  1239)
+	 13: Rel (    69,  -180)  ->  Abs (  1300,  1059)
+	 14: Rel (    11,  -135)  ->  Abs (  1311,   924)
+	 15: Rel (     4,   -52)  ->  Abs (  1315,   872)
+	 16: Rel (     0,  -251)  ->  Abs (  1315,   621)
+	 17: Rel (     0,  -621)  ->  Abs (  1315,     0)
+	 18: Rel (  -134,     0)  ->  Abs (  1181,     0)
+	 19: Rel (     0,   628)  ->  Abs (  1181,   628)
+	 20: Rel (     0,   227)  ->  Abs (  1181,   855)
+	 21: Rel (    -6,    63)  ->  Abs (  1175,   918)
+	 22: Rel (   -10,   114)  ->  Abs (  1165,  1032)
+	 23: Rel (   -53,   135)  ->  Abs (  1112,  1167)
+	 24: Rel (  -111,   118)  ->  Abs (  1001,  1285)
+	 25: Rel (  -173,    76)  ->  Abs (   828,  1361)
+	 26: Rel (   -92,     0)  ->  Abs (   736,  1361)
+	 27: Rel (   -92,     0)  ->  Abs (   644,  1361)
+	 28: Rel (  -180,   -80)  ->  Abs (   464,  1281)
+	 29: Rel (  -115,  -131)  ->  Abs (   349,  1150)
+	 30: Rel (   -46,  -156)  ->  Abs (   303,   994)
+	 31: Rel (    -7,  -104)  ->  Abs (   296,   890)
+	 32: Rel (    -3,   -54)  ->  Abs (   293,   836)
+	 33: Rel (     0,  -208)  ->  Abs (   293,   628)
+
+	Glyph 321: off = 0x000116EE, len = 160
+	  numberOfContours:	3
+	  xMin:			114
+	  yMin:			194
+	  xMax:			1082
+	  yMax:			1252
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  11
+
+	  Length of Instructions:	106
+	00000: NPUSHB      (60):    11    10    37     8    63     9     1   144     9   192 
+	                             9     2     9   191     6     3     2     0     1    37 
+	                            48     2     1   159     2   207     2     2     2   191 
+	                             5     7     6    37     4     5     8    11    11     4 
+	                             7     7     3     0    26    13     9    10    10     5 
+	                             5     6     6     2     1    25    12    87    90    24 
+	00062: CALL       
+	00063: FLIPOFF    
+	00064: SRP0       
+	00065: MIRP[srp0,nmd,rd,0] 
+	00066: ALIGNRP    
+	00067: ALIGNRP    
+	00068: SRP0       
+	00069: ALIGNRP    
+	00070: SRP0       
+	00071: ALIGNRP    
+	00072: SRP0       
+	00073: ALIGNRP    
+	00074: SRP0       
+	00075: MIRP[srp0,nmd,rd,2] 
+	00076: ALIGNRP    
+	00077: ALIGNRP    
+	00078: SRP0       
+	00079: ALIGNRP    
+	00080: ALIGNRP    
+	00081: SRP0       
+	00082: ALIGNRP    
+	00083: SVTCA[y-axis] 
+	00084: MDAP[rd]   
+	00085: ALIGNRP    
+	00086: FLIPON     
+	00087: MIRP[srp0,md,rd,1] 
+	00088: ALIGNRP    
+	00089: SRP0       
+	00090: MIRP[srp0,md,rd,1] 
+	00091: DELTAP1    
+	00092: DELTAP2    
+	00093: MIRP[srp0,md,rd,1] 
+	00094: ALIGNRP    
+	00095: SRP0       
+	00096: ALIGNRP    
+	00097: SRP0       
+	00098: MIRP[srp0,md,rd,1] 
+	00099: DELTAP1    
+	00100: DELTAP2    
+	00101: ALIGNRP    
+	00102: MIRP[srp0,md,rd,1] 
+	00103: ALIGNRP    
+	00104: IUP[y]     
+	00105: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual                               On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1082,  1085)  ->  Abs (  1082,  1085)
+	  1: Rel (  -968,     0)  ->  Abs (   114,  1085)
+	  2: Rel (     0,   167)  ->  Abs (   114,  1252)
+	  3: Rel (   968,     0)  ->  Abs (  1082,  1252)
+	  4: Rel (     0,  -613)  ->  Abs (  1082,   639)
+	  5: Rel (  -968,     0)  ->  Abs (   114,   639)
+	  6: Rel (     0,   168)  ->  Abs (   114,   807)
+	  7: Rel (   968,     0)  ->  Abs (  1082,   807)
+	  8: Rel (     0,  -613)  ->  Abs (  1082,   194)
+	  9: Rel (  -968,     0)  ->  Abs (   114,   194)
+	 10: Rel (     0,   168)  ->  Abs (   114,   362)
+	 11: Rel (   968,     0)  ->  Abs (  1082,   362)
+
+	Glyph 322: off = 0x0001178E, len = 54
+	  numberOfContours:	2
+	  xMin:			157
+	  yMin:			0
+	  xMax:			1080
+	  yMax:			1153
+
+	EndPoints
+	---------
+	  0:  4
+	  1:  9
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:                                      On
+	  3:                                      On
+	  4:        XDual                         On
+	  5:  YDual               Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual                         On
+	  8:                                      On
+	  9:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   157,     0)  ->  Abs (   157,     0)
+	  1: Rel (     0,   634)  ->  Abs (   157,   634)
+	  2: Rel (   461,   519)  ->  Abs (   618,  1153)
+	  3: Rel (   462,  -519)  ->  Abs (  1080,   634)
+	  4: Rel (     0,  -634)  ->  Abs (  1080,     0)
+	  5: Rel (  -842,    81)  ->  Abs (   238,    81)
+	  6: Rel (   761,     0)  ->  Abs (   999,    81)
+	  7: Rel (     0,   519)  ->  Abs (   999,   600)
+	  8: Rel (  -381,   427)  ->  Abs (   618,  1027)
+	  9: Rel (  -380,  -427)  ->  Abs (   238,   600)
+
+	Glyph 323: off = 0x000117C4, len = 78
+	  numberOfContours:	1
+	  xMin:			113
+	  yMin:			424
+	  xMax:			1081
+	  yMax:			1030
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	45
+	00000: PUSHB[5]              3    37     2     2     1 
+	00006: PUSHW[1]            441 
+	00009: NPUSHB      (14):     0     2    26     7     4     5    37     1     0    25 
+	                             6    87    90    24 
+	00025: CALL       
+	00026: FLIPOFF    
+	00027: SRP0       
+	00028: MIRP[srp0,nmd,rd,0] 
+	00029: ALIGNRP    
+	00030: FLIPON     
+	00031: MIRP[srp0,md,rd,1] 
+	00032: ALIGNRP    
+	00033: FLIPOFF    
+	00034: SRP0       
+	00035: MIRP[nrp0,nmd,rd,2] 
+	00036: SVTCA[y-axis] 
+	00037: MDAP[rd]   
+	00038: FLIPON     
+	00039: MIRP[srp0,md,rd,2] 
+	00040: ALIGNRP    
+	00041: SRP0       
+	00042: MIRP[nrp0,md,rd,1] 
+	00043: IUP[y]     
+	00044: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   113,   424)  ->  Abs (   113,   424)
+	  1: Rel (     0,   606)  ->  Abs (   113,  1030)
+	  2: Rel (   968,     0)  ->  Abs (  1081,  1030)
+	  3: Rel (     0,  -168)  ->  Abs (  1081,   862)
+	  4: Rel (  -798,     0)  ->  Abs (   283,   862)
+	  5: Rel (     0,  -438)  ->  Abs (   283,   424)
+
+	Glyph 324: off = 0x00011812, len = 74
+	  numberOfContours:	1
+	  xMin:			546
+	  yMin:			-515
+	  xMax:			976
+	  yMax:			1737
+
+	EndPoints
+	---------
+	  0:  22
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   691,  -515)  ->  Abs (   691,  -515)
+	  1: Rel (  -145,     0)  ->  Abs (   546,  -515)
+	  2: Rel (     0,  1811)  ->  Abs (   546,  1296)
+	  3: Rel (     0,   219)  ->  Abs (   546,  1515)
+	  4: Rel (   179,   222)  ->  Abs (   725,  1737)
+	  5: Rel (   113,     0)  ->  Abs (   838,  1737)
+	  6: Rel (    67,     0)  ->  Abs (   905,  1737)
+	  7: Rel (    71,   -65)  ->  Abs (   976,  1672)
+	  8: Rel (     0,   -44)  ->  Abs (   976,  1628)
+	  9: Rel (     0,   -40)  ->  Abs (   976,  1588)
+	 10: Rel (   -51,   -52)  ->  Abs (   925,  1536)
+	 11: Rel (   -37,     0)  ->  Abs (   888,  1536)
+	 12: Rel (   -30,     0)  ->  Abs (   858,  1536)
+	 13: Rel (   -27,    15)  ->  Abs (   831,  1551)
+	 14: Rel (   -18,    10)  ->  Abs (   813,  1561)
+	 15: Rel (   -47,    73)  ->  Abs (   766,  1634)
+	 16: Rel (   -23,     0)  ->  Abs (   743,  1634)
+	 17: Rel (   -17,     0)  ->  Abs (   726,  1634)
+	 18: Rel (   -14,   -12)  ->  Abs (   712,  1622)
+	 19: Rel (   -10,    -8)  ->  Abs (   702,  1614)
+	 20: Rel (    -4,   -19)  ->  Abs (   698,  1595)
+	 21: Rel (    -7,   -33)  ->  Abs (   691,  1562)
+	 22: Rel (     0,  -106)  ->  Abs (   691,  1456)
+
+	Glyph 325: off = 0x0001185C, len = 74
+	  numberOfContours:	1
+	  xMin:			261
+	  yMin:			-515
+	  xMax:			691
+	  yMax:			1737
+
+	EndPoints
+	---------
+	  0:  22
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   546,  1737)  ->  Abs (   546,  1737)
+	  1: Rel (   145,     0)  ->  Abs (   691,  1737)
+	  2: Rel (     0, -1811)  ->  Abs (   691,   -74)
+	  3: Rel (     0,  -219)  ->  Abs (   691,  -293)
+	  4: Rel (  -179,  -222)  ->  Abs (   512,  -515)
+	  5: Rel (  -113,     0)  ->  Abs (   399,  -515)
+	  6: Rel (   -67,     0)  ->  Abs (   332,  -515)
+	  7: Rel (   -71,    65)  ->  Abs (   261,  -450)
+	  8: Rel (     0,    44)  ->  Abs (   261,  -406)
+	  9: Rel (     0,    40)  ->  Abs (   261,  -366)
+	 10: Rel (    51,    52)  ->  Abs (   312,  -314)
+	 11: Rel (    36,     0)  ->  Abs (   348,  -314)
+	 12: Rel (    31,     0)  ->  Abs (   379,  -314)
+	 13: Rel (    28,   -16)  ->  Abs (   407,  -330)
+	 14: Rel (    18,   -10)  ->  Abs (   425,  -340)
+	 15: Rel (    46,   -72)  ->  Abs (   471,  -412)
+	 16: Rel (    23,     0)  ->  Abs (   494,  -412)
+	 17: Rel (    17,     0)  ->  Abs (   511,  -412)
+	 18: Rel (    14,    12)  ->  Abs (   525,  -400)
+	 19: Rel (    10,     7)  ->  Abs (   535,  -393)
+	 20: Rel (     4,    21)  ->  Abs (   539,  -372)
+	 21: Rel (     7,    32)  ->  Abs (   546,  -340)
+	 22: Rel (     0,   106)  ->  Abs (   546,  -234)
+
+	Glyph 326: off = 0x000118A6, len = 28
+	  numberOfContours:	1
+	  xMin:			-23
+	  yMin:			534
+	  xMax:			1473
+	  yMax:			709
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1473,   534)  ->  Abs (  1473,   534)
+	  1: Rel ( -1496,     0)  ->  Abs (   -23,   534)
+	  2: Rel (     0,   175)  ->  Abs (   -23,   709)
+	  3: Rel (  1496,     0)  ->  Abs (  1473,   709)
+
+	Glyph 327: off = 0x000118C2, len = 28
+	  numberOfContours:	1
+	  xMin:			457
+	  yMin:			-621
+	  xMax:			632
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   457,  -621)  ->  Abs (   457,  -621)
+	  1: Rel (     0,  2485)  ->  Abs (   457,  1864)
+	  2: Rel (   175,     0)  ->  Abs (   632,  1864)
+	  3: Rel (     0, -2485)  ->  Abs (   632,  -621)
+
+	Glyph 328: off = 0x000118DE, len = 32
+	  numberOfContours:	1
+	  xMin:			638
+	  yMin:			-621
+	  xMax:			1474
+	  yMax:			709
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual                       X-Short On
+	  5:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1474,   709)  ->  Abs (  1474,   709)
+	  1: Rel (     0,  -175)  ->  Abs (  1474,   534)
+	  2: Rel (  -661,     0)  ->  Abs (   813,   534)
+	  3: Rel (     0, -1155)  ->  Abs (   813,  -621)
+	  4: Rel (  -175,     0)  ->  Abs (   638,  -621)
+	  5: Rel (     0,  1330)  ->  Abs (   638,   709)
+
+	Glyph 329: off = 0x000118FE, len = 32
+	  numberOfContours:	1
+	  xMin:			-23
+	  yMin:			-621
+	  xMax:			812
+	  yMax:			709
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   637,   534)  ->  Abs (   637,   534)
+	  1: Rel (  -660,     0)  ->  Abs (   -23,   534)
+	  2: Rel (     0,   175)  ->  Abs (   -23,   709)
+	  3: Rel (   835,     0)  ->  Abs (   812,   709)
+	  4: Rel (     0, -1330)  ->  Abs (   812,  -621)
+	  5: Rel (  -175,     0)  ->  Abs (   637,  -621)
+
+	Glyph 330: off = 0x0001191E, len = 32
+	  numberOfContours:	1
+	  xMin:			638
+	  yMin:			534
+	  xMax:			1474
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   638,   534)  ->  Abs (   638,   534)
+	  1: Rel (     0,  1330)  ->  Abs (   638,  1864)
+	  2: Rel (   175,     0)  ->  Abs (   813,  1864)
+	  3: Rel (     0, -1155)  ->  Abs (   813,   709)
+	  4: Rel (   661,     0)  ->  Abs (  1474,   709)
+	  5: Rel (     0,  -175)  ->  Abs (  1474,   534)
+
+	Glyph 331: off = 0x0001193E, len = 32
+	  numberOfContours:	1
+	  xMin:			-23
+	  yMin:			534
+	  xMax:			812
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   812,   534)  ->  Abs (   812,   534)
+	  1: Rel (  -835,     0)  ->  Abs (   -23,   534)
+	  2: Rel (     0,   175)  ->  Abs (   -23,   709)
+	  3: Rel (   660,     0)  ->  Abs (   637,   709)
+	  4: Rel (     0,  1155)  ->  Abs (   637,  1864)
+	  5: Rel (   175,     0)  ->  Abs (   812,  1864)
+
+	Glyph 332: off = 0x0001195E, len = 38
+	  numberOfContours:	1
+	  xMin:			638
+	  yMin:			-621
+	  xMax:			1474
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   638,  -621)  ->  Abs (   638,  -621)
+	  1: Rel (     0,  2485)  ->  Abs (   638,  1864)
+	  2: Rel (   175,     0)  ->  Abs (   813,  1864)
+	  3: Rel (     0, -1155)  ->  Abs (   813,   709)
+	  4: Rel (   661,     0)  ->  Abs (  1474,   709)
+	  5: Rel (     0,  -175)  ->  Abs (  1474,   534)
+	  6: Rel (  -661,     0)  ->  Abs (   813,   534)
+	  7: Rel (     0, -1155)  ->  Abs (   813,  -621)
+
+	Glyph 333: off = 0x00011984, len = 38
+	  numberOfContours:	1
+	  xMin:			-23
+	  yMin:			-621
+	  xMax:			812
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   637,  -621)  ->  Abs (   637,  -621)
+	  1: Rel (     0,  1155)  ->  Abs (   637,   534)
+	  2: Rel (  -660,     0)  ->  Abs (   -23,   534)
+	  3: Rel (     0,   175)  ->  Abs (   -23,   709)
+	  4: Rel (   660,     0)  ->  Abs (   637,   709)
+	  5: Rel (     0,  1155)  ->  Abs (   637,  1864)
+	  6: Rel (   175,     0)  ->  Abs (   812,  1864)
+	  7: Rel (     0, -2485)  ->  Abs (   812,  -621)
+
+	Glyph 334: off = 0x000119AA, len = 38
+	  numberOfContours:	1
+	  xMin:			-23
+	  yMin:			-621
+	  xMax:			1473
+	  yMax:			709
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual         Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   637,   534)  ->  Abs (   637,   534)
+	  1: Rel (  -660,     0)  ->  Abs (   -23,   534)
+	  2: Rel (     0,   175)  ->  Abs (   -23,   709)
+	  3: Rel (  1496,     0)  ->  Abs (  1473,   709)
+	  4: Rel (     0,  -175)  ->  Abs (  1473,   534)
+	  5: Rel (  -661,     0)  ->  Abs (   812,   534)
+	  6: Rel (     0, -1155)  ->  Abs (   812,  -621)
+	  7: Rel (  -175,     0)  ->  Abs (   637,  -621)
+
+	Glyph 335: off = 0x000119D0, len = 38
+	  numberOfContours:	1
+	  xMin:			-23
+	  yMin:			534
+	  xMax:			1473
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1473,   534)  ->  Abs (  1473,   534)
+	  1: Rel ( -1496,     0)  ->  Abs (   -23,   534)
+	  2: Rel (     0,   175)  ->  Abs (   -23,   709)
+	  3: Rel (   660,     0)  ->  Abs (   637,   709)
+	  4: Rel (     0,  1155)  ->  Abs (   637,  1864)
+	  5: Rel (   175,     0)  ->  Abs (   812,  1864)
+	  6: Rel (     0, -1155)  ->  Abs (   812,   709)
+	  7: Rel (   661,     0)  ->  Abs (  1473,   709)
+
+	Glyph 336: off = 0x000119F6, len = 48
+	  numberOfContours:	1
+	  xMin:			-23
+	  yMin:			-621
+	  xMax:			1473
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual                               On
+	  8:        XDual         Y-Short         On
+	  9:  YDual                               On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   637,   534)  ->  Abs (   637,   534)
+	  1: Rel (  -660,     0)  ->  Abs (   -23,   534)
+	  2: Rel (     0,   175)  ->  Abs (   -23,   709)
+	  3: Rel (   660,     0)  ->  Abs (   637,   709)
+	  4: Rel (     0,  1155)  ->  Abs (   637,  1864)
+	  5: Rel (   175,     0)  ->  Abs (   812,  1864)
+	  6: Rel (     0, -1155)  ->  Abs (   812,   709)
+	  7: Rel (   661,     0)  ->  Abs (  1473,   709)
+	  8: Rel (     0,  -175)  ->  Abs (  1473,   534)
+	  9: Rel (  -661,     0)  ->  Abs (   812,   534)
+	 10: Rel (     0, -1155)  ->  Abs (   812,  -621)
+	 11: Rel (  -175,     0)  ->  Abs (   637,  -621)
+
+	Glyph 337: off = 0x00011A26, len = 40
+	  numberOfContours:	2
+	  xMin:			-23
+	  yMin:			344
+	  xMax:			1473
+	  yMax:			899
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1473,   724)  ->  Abs (  1473,   724)
+	  1: Rel ( -1496,     0)  ->  Abs (   -23,   724)
+	  2: Rel (     0,   175)  ->  Abs (   -23,   899)
+	  3: Rel (  1496,     0)  ->  Abs (  1473,   899)
+	  4: Rel (     0,  -555)  ->  Abs (  1473,   344)
+	  5: Rel ( -1496,     0)  ->  Abs (   -23,   344)
+	  6: Rel (     0,   175)  ->  Abs (   -23,   519)
+	  7: Rel (  1496,     0)  ->  Abs (  1473,   519)
+
+	Glyph 338: off = 0x00011A4E, len = 40
+	  numberOfContours:	2
+	  xMin:			448
+	  yMin:			-621
+	  xMax:			1003
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   828,  -621)  ->  Abs (   828,  -621)
+	  1: Rel (     0,  2485)  ->  Abs (   828,  1864)
+	  2: Rel (   175,     0)  ->  Abs (  1003,  1864)
+	  3: Rel (     0, -2485)  ->  Abs (  1003,  -621)
+	  4: Rel (  -555,     0)  ->  Abs (   448,  -621)
+	  5: Rel (     0,  2485)  ->  Abs (   448,  1864)
+	  6: Rel (   175,     0)  ->  Abs (   623,  1864)
+	  7: Rel (     0, -2485)  ->  Abs (   623,  -621)
+
+	Glyph 339: off = 0x00011A76, len = 44
+	  numberOfContours:	1
+	  xMin:			638
+	  yMin:			-621
+	  xMax:			1474
+	  yMax:			899
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   638,  -621)  ->  Abs (   638,  -621)
+	  1: Rel (     0,  1520)  ->  Abs (   638,   899)
+	  2: Rel (   836,     0)  ->  Abs (  1474,   899)
+	  3: Rel (     0,  -175)  ->  Abs (  1474,   724)
+	  4: Rel (  -661,     0)  ->  Abs (   813,   724)
+	  5: Rel (     0,  -205)  ->  Abs (   813,   519)
+	  6: Rel (   661,     0)  ->  Abs (  1474,   519)
+	  7: Rel (     0,  -175)  ->  Abs (  1474,   344)
+	  8: Rel (  -661,     0)  ->  Abs (   813,   344)
+	  9: Rel (     0,  -965)  ->  Abs (   813,  -621)
+
+	Glyph 340: off = 0x00011AA2, len = 44
+	  numberOfContours:	1
+	  xMin:			448
+	  yMin:			-621
+	  xMax:			1474
+	  yMax:			709
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+	  8:  YDual                       X-Short On
+	  9:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   448,  -621)  ->  Abs (   448,  -621)
+	  1: Rel (     0,  1330)  ->  Abs (   448,   709)
+	  2: Rel (  1026,     0)  ->  Abs (  1474,   709)
+	  3: Rel (     0,  -175)  ->  Abs (  1474,   534)
+	  4: Rel (  -471,     0)  ->  Abs (  1003,   534)
+	  5: Rel (     0, -1155)  ->  Abs (  1003,  -621)
+	  6: Rel (  -175,     0)  ->  Abs (   828,  -621)
+	  7: Rel (     0,  1140)  ->  Abs (   828,   519)
+	  8: Rel (  -205,     0)  ->  Abs (   623,   519)
+	  9: Rel (     0, -1140)  ->  Abs (   623,  -621)
+
+	Glyph 341: off = 0x00011ACE, len = 52
+	  numberOfContours:	2
+	  xMin:			448
+	  yMin:			-621
+	  xMax:			1473
+	  yMax:			899
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  11
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:        XDual         Y-Short         On
+	  5:  YDual                               On
+	  6:                                      On
+	  7:        XDual                         On
+	  8:  YDual                       X-Short On
+	  9:        XDual                         On
+	 10:  YDual                               On
+	 11:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   623,  -621)  ->  Abs (   623,  -621)
+	  1: Rel (  -175,     0)  ->  Abs (   448,  -621)
+	  2: Rel (     0,  1520)  ->  Abs (   448,   899)
+	  3: Rel (  1025,     0)  ->  Abs (  1473,   899)
+	  4: Rel (     0,  -175)  ->  Abs (  1473,   724)
+	  5: Rel (  -850,     0)  ->  Abs (   623,   724)
+	  6: Rel (   380,  -380)  ->  Abs (  1003,   344)
+	  7: Rel (     0,  -965)  ->  Abs (  1003,  -621)
+	  8: Rel (  -175,     0)  ->  Abs (   828,  -621)
+	  9: Rel (     0,  1140)  ->  Abs (   828,   519)
+	 10: Rel (   645,     0)  ->  Abs (  1473,   519)
+	 11: Rel (     0,  -175)  ->  Abs (  1473,   344)
+
+	Glyph 342: off = 0x00011B02, len = 42
+	  numberOfContours:	1
+	  xMin:			-23
+	  yMin:			-621
+	  xMax:			812
+	  yMax:			899
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   637,   344)  ->  Abs (   637,   344)
+	  1: Rel (  -660,     0)  ->  Abs (   -23,   344)
+	  2: Rel (     0,   175)  ->  Abs (   -23,   519)
+	  3: Rel (   660,     0)  ->  Abs (   637,   519)
+	  4: Rel (     0,   205)  ->  Abs (   637,   724)
+	  5: Rel (  -660,     0)  ->  Abs (   -23,   724)
+	  6: Rel (     0,   175)  ->  Abs (   -23,   899)
+	  7: Rel (   835,     0)  ->  Abs (   812,   899)
+	  8: Rel (     0, -1520)  ->  Abs (   812,  -621)
+	  9: Rel (  -175,     0)  ->  Abs (   637,  -621)
+
+	Glyph 343: off = 0x00011B2C, len = 44
+	  numberOfContours:	1
+	  xMin:			-23
+	  yMin:			-621
+	  xMax:			1002
+	  yMax:			709
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                 X-Short On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+	  8:  YDual                       X-Short On
+	  9:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   447,  -621)  ->  Abs (   447,  -621)
+	  1: Rel (     1,  1155)  ->  Abs (   448,   534)
+	  2: Rel (  -471,     0)  ->  Abs (   -23,   534)
+	  3: Rel (     0,   175)  ->  Abs (   -23,   709)
+	  4: Rel (  1025,     0)  ->  Abs (  1002,   709)
+	  5: Rel (     0, -1330)  ->  Abs (  1002,  -621)
+	  6: Rel (  -175,     0)  ->  Abs (   827,  -621)
+	  7: Rel (     0,  1155)  ->  Abs (   827,   534)
+	  8: Rel (  -205,     0)  ->  Abs (   622,   534)
+	  9: Rel (     0, -1155)  ->  Abs (   622,  -621)
+
+	Glyph 344: off = 0x00011B58, len = 54
+	  numberOfContours:	2
+	  xMin:			-23
+	  yMin:			-621
+	  xMax:			1002
+	  yMax:			899
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  11
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:                                      On
+	  7:  YDual                               On
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual                               On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   827,  -621)  ->  Abs (   827,  -621)
+	  1: Rel (     0,  1345)  ->  Abs (   827,   724)
+	  2: Rel (  -850,     0)  ->  Abs (   -23,   724)
+	  3: Rel (     0,   175)  ->  Abs (   -23,   899)
+	  4: Rel (  1025,     0)  ->  Abs (  1002,   899)
+	  5: Rel (     0, -1520)  ->  Abs (  1002,  -621)
+	  6: Rel (  -555,   965)  ->  Abs (   447,   344)
+	  7: Rel (  -470,     0)  ->  Abs (   -23,   344)
+	  8: Rel (     0,   175)  ->  Abs (   -23,   519)
+	  9: Rel (   645,     0)  ->  Abs (   622,   519)
+	 10: Rel (     0, -1140)  ->  Abs (   622,  -621)
+	 11: Rel (  -175,     0)  ->  Abs (   447,  -621)
+
+	Glyph 345: off = 0x00011B8E, len = 42
+	  numberOfContours:	1
+	  xMin:			638
+	  yMin:			344
+	  xMax:			1474
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   638,   344)  ->  Abs (   638,   344)
+	  1: Rel (     0,  1520)  ->  Abs (   638,  1864)
+	  2: Rel (   175,     0)  ->  Abs (   813,  1864)
+	  3: Rel (     0,  -965)  ->  Abs (   813,   899)
+	  4: Rel (   661,     0)  ->  Abs (  1474,   899)
+	  5: Rel (     0,  -175)  ->  Abs (  1474,   724)
+	  6: Rel (  -661,     0)  ->  Abs (   813,   724)
+	  7: Rel (     0,  -205)  ->  Abs (   813,   519)
+	  8: Rel (   661,     0)  ->  Abs (  1474,   519)
+	  9: Rel (     0,  -175)  ->  Abs (  1474,   344)
+
+	Glyph 346: off = 0x00011BB8, len = 44
+	  numberOfContours:	1
+	  xMin:			448
+	  yMin:			534
+	  xMax:			1474
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual XDual                 X-Short On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual XDual                 X-Short On
+	  8:        XDual                         On
+	  9:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1474,   534)  ->  Abs (  1474,   534)
+	  1: Rel ( -1026,     0)  ->  Abs (   448,   534)
+	  2: Rel (     0,  1330)  ->  Abs (   448,  1864)
+	  3: Rel (   175,     0)  ->  Abs (   623,  1864)
+	  4: Rel (     0, -1155)  ->  Abs (   623,   709)
+	  5: Rel (   205,     0)  ->  Abs (   828,   709)
+	  6: Rel (     0,  1155)  ->  Abs (   828,  1864)
+	  7: Rel (   175,     0)  ->  Abs (  1003,  1864)
+	  8: Rel (     0, -1155)  ->  Abs (  1003,   709)
+	  9: Rel (   471,     0)  ->  Abs (  1474,   709)
+
+	Glyph 347: off = 0x00011BE4, len = 54
+	  numberOfContours:	2
+	  xMin:			448
+	  yMin:			344
+	  xMax:			1473
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  11
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:                                      On
+	  7:  YDual                               On
+	  8:        XDual         Y-Short         On
+	  9:  YDual                               On
+	 10:        XDual                         On
+	 11:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   623,  1864)  ->  Abs (   623,  1864)
+	  1: Rel (     0, -1345)  ->  Abs (   623,   519)
+	  2: Rel (   850,     0)  ->  Abs (  1473,   519)
+	  3: Rel (     0,  -175)  ->  Abs (  1473,   344)
+	  4: Rel ( -1025,     0)  ->  Abs (   448,   344)
+	  5: Rel (     0,  1520)  ->  Abs (   448,  1864)
+	  6: Rel (   555,  -965)  ->  Abs (  1003,   899)
+	  7: Rel (   470,     0)  ->  Abs (  1473,   899)
+	  8: Rel (     0,  -175)  ->  Abs (  1473,   724)
+	  9: Rel (  -645,     0)  ->  Abs (   828,   724)
+	 10: Rel (     0,  1140)  ->  Abs (   828,  1864)
+	 11: Rel (   175,     0)  ->  Abs (  1003,  1864)
+
+	Glyph 348: off = 0x00011C1A, len = 42
+	  numberOfContours:	1
+	  xMin:			-23
+	  yMin:			344
+	  xMax:			812
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   812,   344)  ->  Abs (   812,   344)
+	  1: Rel (  -835,     0)  ->  Abs (   -23,   344)
+	  2: Rel (     0,   175)  ->  Abs (   -23,   519)
+	  3: Rel (   660,     0)  ->  Abs (   637,   519)
+	  4: Rel (     0,   205)  ->  Abs (   637,   724)
+	  5: Rel (  -660,     0)  ->  Abs (   -23,   724)
+	  6: Rel (     0,   175)  ->  Abs (   -23,   899)
+	  7: Rel (   660,     0)  ->  Abs (   637,   899)
+	  8: Rel (     0,   965)  ->  Abs (   637,  1864)
+	  9: Rel (   175,     0)  ->  Abs (   812,  1864)
+
+	Glyph 349: off = 0x00011C44, len = 42
+	  numberOfContours:	1
+	  xMin:			-23
+	  yMin:			534
+	  xMax:			1002
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual XDual                 X-Short On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1002,   534)  ->  Abs (  1002,   534)
+	  1: Rel ( -1025,     0)  ->  Abs (   -23,   534)
+	  2: Rel (     0,   175)  ->  Abs (   -23,   709)
+	  3: Rel (   470,     0)  ->  Abs (   447,   709)
+	  4: Rel (     0,  1155)  ->  Abs (   447,  1864)
+	  5: Rel (   175,     0)  ->  Abs (   622,  1864)
+	  6: Rel (     0, -1155)  ->  Abs (   622,   709)
+	  7: Rel (   205,     0)  ->  Abs (   827,   709)
+	  8: Rel (     0,  1155)  ->  Abs (   827,  1864)
+	  9: Rel (   175,     0)  ->  Abs (  1002,  1864)
+
+	Glyph 350: off = 0x00011C6E, len = 52
+	  numberOfContours:	2
+	  xMin:			-23
+	  yMin:			344
+	  xMax:			1002
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  11
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual                               On
+	  6:                                      On
+	  7:        XDual                         On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual                         On
+	 10:  YDual                               On
+	 11:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   827,  1864)  ->  Abs (   827,  1864)
+	  1: Rel (   175,     0)  ->  Abs (  1002,  1864)
+	  2: Rel (     0, -1520)  ->  Abs (  1002,   344)
+	  3: Rel ( -1025,     0)  ->  Abs (   -23,   344)
+	  4: Rel (     0,   175)  ->  Abs (   -23,   519)
+	  5: Rel (   850,     0)  ->  Abs (   827,   519)
+	  6: Rel (  -380,   380)  ->  Abs (   447,   899)
+	  7: Rel (     0,   965)  ->  Abs (   447,  1864)
+	  8: Rel (   175,     0)  ->  Abs (   622,  1864)
+	  9: Rel (     0, -1140)  ->  Abs (   622,   724)
+	 10: Rel (  -645,     0)  ->  Abs (   -23,   724)
+	 11: Rel (     0,   175)  ->  Abs (   -23,   899)
+
+	Glyph 351: off = 0x00011CA2, len = 48
+	  numberOfContours:	1
+	  xMin:			638
+	  yMin:			-621
+	  xMax:			1474
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:        XDual         Y-Short         On
+	 10:  YDual                               On
+	 11:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   638,  -621)  ->  Abs (   638,  -621)
+	  1: Rel (     0,  2485)  ->  Abs (   638,  1864)
+	  2: Rel (   175,     0)  ->  Abs (   813,  1864)
+	  3: Rel (     0,  -965)  ->  Abs (   813,   899)
+	  4: Rel (   661,     0)  ->  Abs (  1474,   899)
+	  5: Rel (     0,  -175)  ->  Abs (  1474,   724)
+	  6: Rel (  -661,     0)  ->  Abs (   813,   724)
+	  7: Rel (     0,  -205)  ->  Abs (   813,   519)
+	  8: Rel (   661,     0)  ->  Abs (  1474,   519)
+	  9: Rel (     0,  -175)  ->  Abs (  1474,   344)
+	 10: Rel (  -661,     0)  ->  Abs (   813,   344)
+	 11: Rel (     0,  -965)  ->  Abs (   813,  -621)
+
+	Glyph 352: off = 0x00011CD2, len = 52
+	  numberOfContours:	2
+	  xMin:			448
+	  yMin:			-621
+	  xMax:			1474
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  11
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual                         On
+	  8:  YDual                               On
+	  9:        XDual                         On
+	 10:  YDual XDual                 X-Short On
+	 11:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   828,  -621)  ->  Abs (   828,  -621)
+	  1: Rel (     0,  2485)  ->  Abs (   828,  1864)
+	  2: Rel (   175,     0)  ->  Abs (  1003,  1864)
+	  3: Rel (     0, -1155)  ->  Abs (  1003,   709)
+	  4: Rel (   471,     0)  ->  Abs (  1474,   709)
+	  5: Rel (     0,  -175)  ->  Abs (  1474,   534)
+	  6: Rel (  -471,     0)  ->  Abs (  1003,   534)
+	  7: Rel (     0, -1155)  ->  Abs (  1003,  -621)
+	  8: Rel (  -555,     0)  ->  Abs (   448,  -621)
+	  9: Rel (     0,  2485)  ->  Abs (   448,  1864)
+	 10: Rel (   175,     0)  ->  Abs (   623,  1864)
+	 11: Rel (     0, -2485)  ->  Abs (   623,  -621)
+
+	Glyph 353: off = 0x00011D06, len = 68
+	  numberOfContours:	3
+	  xMin:			448
+	  yMin:			-621
+	  xMax:			1474
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  9
+	  2:  15
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:        XDual                 X-Short On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:  YDual                               On
+	  9:        XDual         Y-Short         On
+	 10:                                      On
+	 11:        XDual                         On
+	 12:  YDual                               On
+	 13:        XDual         Y-Short         On
+	 14:  YDual                               On
+	 15:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   448,  -621)  ->  Abs (   448,  -621)
+	  1: Rel (     0,  2485)  ->  Abs (   448,  1864)
+	  2: Rel (   175,     0)  ->  Abs (   623,  1864)
+	  3: Rel (     0, -2485)  ->  Abs (   623,  -621)
+	  4: Rel (   205,  1345)  ->  Abs (   828,   724)
+	  5: Rel (     0,  1140)  ->  Abs (   828,  1864)
+	  6: Rel (   175,     0)  ->  Abs (  1003,  1864)
+	  7: Rel (     0,  -965)  ->  Abs (  1003,   899)
+	  8: Rel (   471,     0)  ->  Abs (  1474,   899)
+	  9: Rel (     0,  -175)  ->  Abs (  1474,   724)
+	 10: Rel (  -646, -1345)  ->  Abs (   828,  -621)
+	 11: Rel (     0,  1140)  ->  Abs (   828,   519)
+	 12: Rel (   646,     0)  ->  Abs (  1474,   519)
+	 13: Rel (     0,  -175)  ->  Abs (  1474,   344)
+	 14: Rel (  -471,     0)  ->  Abs (  1003,   344)
+	 15: Rel (     0,  -965)  ->  Abs (  1003,  -621)
+
+	Glyph 354: off = 0x00011D4A, len = 48
+	  numberOfContours:	1
+	  xMin:			-23
+	  yMin:			-621
+	  xMax:			812
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:  YDual               Y-Short X-Short On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   637,   344)  ->  Abs (   637,   344)
+	  1: Rel (  -660,     0)  ->  Abs (   -23,   344)
+	  2: Rel (     0,   175)  ->  Abs (   -23,   519)
+	  3: Rel (   661,     0)  ->  Abs (   638,   519)
+	  4: Rel (    -1,   205)  ->  Abs (   637,   724)
+	  5: Rel (  -660,     0)  ->  Abs (   -23,   724)
+	  6: Rel (     0,   175)  ->  Abs (   -23,   899)
+	  7: Rel (   660,     0)  ->  Abs (   637,   899)
+	  8: Rel (     0,   965)  ->  Abs (   637,  1864)
+	  9: Rel (   175,     0)  ->  Abs (   812,  1864)
+	 10: Rel (     0, -2485)  ->  Abs (   812,  -621)
+	 11: Rel (  -175,     0)  ->  Abs (   637,  -621)
+
+	Glyph 355: off = 0x00011D7A, len = 52
+	  numberOfContours:	2
+	  xMin:			-23
+	  yMin:			-621
+	  xMax:			1002
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  11
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                 X-Short On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual                         On
+	 10:  YDual XDual                 X-Short On
+	 11:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   447,  -621)  ->  Abs (   447,  -621)
+	  1: Rel (     1,  1155)  ->  Abs (   448,   534)
+	  2: Rel (  -471,     0)  ->  Abs (   -23,   534)
+	  3: Rel (     0,   175)  ->  Abs (   -23,   709)
+	  4: Rel (   470,     0)  ->  Abs (   447,   709)
+	  5: Rel (     0,  1155)  ->  Abs (   447,  1864)
+	  6: Rel (   175,     0)  ->  Abs (   622,  1864)
+	  7: Rel (     0, -2485)  ->  Abs (   622,  -621)
+	  8: Rel (   205,     0)  ->  Abs (   827,  -621)
+	  9: Rel (     0,  2485)  ->  Abs (   827,  1864)
+	 10: Rel (   175,     0)  ->  Abs (  1002,  1864)
+	 11: Rel (     0, -2485)  ->  Abs (  1002,  -621)
+
+	Glyph 356: off = 0x00011DAE, len = 66
+	  numberOfContours:	3
+	  xMin:			-23
+	  yMin:			-621
+	  xMax:			1002
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  9
+	  2:  15
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:                                      On
+	  5:        XDual                         On
+	  6:  YDual                               On
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:        XDual                         On
+	 10:        XDual                         On
+	 11:  YDual                               On
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual                               On
+	 14:        XDual                         On
+	 15:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   827,  -621)  ->  Abs (   827,  -621)
+	  1: Rel (     0,  2485)  ->  Abs (   827,  1864)
+	  2: Rel (   175,     0)  ->  Abs (  1002,  1864)
+	  3: Rel (     0, -2485)  ->  Abs (  1002,  -621)
+	  4: Rel (  -380,  2485)  ->  Abs (   622,  1864)
+	  5: Rel (     0, -1140)  ->  Abs (   622,   724)
+	  6: Rel (  -645,     0)  ->  Abs (   -23,   724)
+	  7: Rel (     0,   175)  ->  Abs (   -23,   899)
+	  8: Rel (   470,     0)  ->  Abs (   447,   899)
+	  9: Rel (     0,   965)  ->  Abs (   447,  1864)
+	 10: Rel (     0, -1520)  ->  Abs (   447,   344)
+	 11: Rel (  -470,     0)  ->  Abs (   -23,   344)
+	 12: Rel (     0,   175)  ->  Abs (   -23,   519)
+	 13: Rel (   645,     0)  ->  Abs (   622,   519)
+	 14: Rel (     0, -1140)  ->  Abs (   622,  -621)
+	 15: Rel (  -175,     0)  ->  Abs (   447,  -621)
+
+	Glyph 357: off = 0x00011DF0, len = 52
+	  numberOfContours:	2
+	  xMin:			-23
+	  yMin:			-621
+	  xMax:			1473
+	  yMax:			899
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  11
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:                                      On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual         Y-Short         On
+	  9:  YDual                               On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1473,   724)  ->  Abs (  1473,   724)
+	  1: Rel ( -1496,     0)  ->  Abs (   -23,   724)
+	  2: Rel (     0,   175)  ->  Abs (   -23,   899)
+	  3: Rel (  1496,     0)  ->  Abs (  1473,   899)
+	  4: Rel (  -836,  -555)  ->  Abs (   637,   344)
+	  5: Rel (  -660,     0)  ->  Abs (   -23,   344)
+	  6: Rel (     0,   175)  ->  Abs (   -23,   519)
+	  7: Rel (  1496,     0)  ->  Abs (  1473,   519)
+	  8: Rel (     0,  -175)  ->  Abs (  1473,   344)
+	  9: Rel (  -661,     0)  ->  Abs (   812,   344)
+	 10: Rel (     0,  -965)  ->  Abs (   812,  -621)
+	 11: Rel (  -175,     0)  ->  Abs (   637,  -621)
+
+	Glyph 358: off = 0x00011E24, len = 50
+	  numberOfContours:	1
+	  xMin:			-23
+	  yMin:			-621
+	  xMax:			1473
+	  yMax:			709
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                 X-Short On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual                         On
+	  8:  YDual                       X-Short On
+	  9:        XDual                         On
+	 10:  YDual                       X-Short On
+	 11:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   447,  -621)  ->  Abs (   447,  -621)
+	  1: Rel (     1,  1155)  ->  Abs (   448,   534)
+	  2: Rel (  -471,     0)  ->  Abs (   -23,   534)
+	  3: Rel (     0,   175)  ->  Abs (   -23,   709)
+	  4: Rel (  1496,     0)  ->  Abs (  1473,   709)
+	  5: Rel (     0,  -175)  ->  Abs (  1473,   534)
+	  6: Rel (  -471,     0)  ->  Abs (  1002,   534)
+	  7: Rel (     0, -1155)  ->  Abs (  1002,  -621)
+	  8: Rel (  -175,     0)  ->  Abs (   827,  -621)
+	  9: Rel (     0,  1140)  ->  Abs (   827,   519)
+	 10: Rel (  -205,     0)  ->  Abs (   622,   519)
+	 11: Rel (     0, -1140)  ->  Abs (   622,  -621)
+
+	Glyph 359: off = 0x00011E56, len = 66
+	  numberOfContours:	3
+	  xMin:			-23
+	  yMin:			-621
+	  xMax:			1473
+	  yMax:			899
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  9
+	  2:  15
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:                                      On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+	 10:  YDual                               On
+	 11:        XDual                         On
+	 12:  YDual                               On
+	 13:        XDual         Y-Short         On
+	 14:  YDual                               On
+	 15:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1473,   724)  ->  Abs (  1473,   724)
+	  1: Rel ( -1496,     0)  ->  Abs (   -23,   724)
+	  2: Rel (     0,   175)  ->  Abs (   -23,   899)
+	  3: Rel (  1496,     0)  ->  Abs (  1473,   899)
+	  4: Rel ( -1026,  -555)  ->  Abs (   447,   344)
+	  5: Rel (  -470,     0)  ->  Abs (   -23,   344)
+	  6: Rel (     0,   175)  ->  Abs (   -23,   519)
+	  7: Rel (   645,     0)  ->  Abs (   622,   519)
+	  8: Rel (     0, -1140)  ->  Abs (   622,  -621)
+	  9: Rel (  -175,     0)  ->  Abs (   447,  -621)
+	 10: Rel (   380,     0)  ->  Abs (   827,  -621)
+	 11: Rel (     0,  1140)  ->  Abs (   827,   519)
+	 12: Rel (   646,     0)  ->  Abs (  1473,   519)
+	 13: Rel (     0,  -175)  ->  Abs (  1473,   344)
+	 14: Rel (  -471,     0)  ->  Abs (  1002,   344)
+	 15: Rel (     0,  -965)  ->  Abs (  1002,  -621)
+
+	Glyph 360: off = 0x00011E98, len = 52
+	  numberOfContours:	2
+	  xMin:			-23
+	  yMin:			344
+	  xMax:			1473
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  11
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual                               On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1473,   724)  ->  Abs (  1473,   724)
+	  1: Rel ( -1496,     0)  ->  Abs (   -23,   724)
+	  2: Rel (     0,   175)  ->  Abs (   -23,   899)
+	  3: Rel (   660,     0)  ->  Abs (   637,   899)
+	  4: Rel (     0,   965)  ->  Abs (   637,  1864)
+	  5: Rel (   175,     0)  ->  Abs (   812,  1864)
+	  6: Rel (     0,  -965)  ->  Abs (   812,   899)
+	  7: Rel (   661,     0)  ->  Abs (  1473,   899)
+	  8: Rel (     0,  -555)  ->  Abs (  1473,   344)
+	  9: Rel ( -1496,     0)  ->  Abs (   -23,   344)
+	 10: Rel (     0,   175)  ->  Abs (   -23,   519)
+	 11: Rel (  1496,     0)  ->  Abs (  1473,   519)
+
+	Glyph 361: off = 0x00011ECC, len = 48
+	  numberOfContours:	1
+	  xMin:			-23
+	  yMin:			534
+	  xMax:			1473
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual XDual                 X-Short On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual                         On
+	 11:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1473,   534)  ->  Abs (  1473,   534)
+	  1: Rel ( -1496,     0)  ->  Abs (   -23,   534)
+	  2: Rel (     0,   175)  ->  Abs (   -23,   709)
+	  3: Rel (   470,     0)  ->  Abs (   447,   709)
+	  4: Rel (     0,  1155)  ->  Abs (   447,  1864)
+	  5: Rel (   175,     0)  ->  Abs (   622,  1864)
+	  6: Rel (     0, -1155)  ->  Abs (   622,   709)
+	  7: Rel (   205,     0)  ->  Abs (   827,   709)
+	  8: Rel (     0,  1155)  ->  Abs (   827,  1864)
+	  9: Rel (   175,     0)  ->  Abs (  1002,  1864)
+	 10: Rel (     0, -1155)  ->  Abs (  1002,   709)
+	 11: Rel (   471,     0)  ->  Abs (  1473,   709)
+
+	Glyph 362: off = 0x00011EFC, len = 66
+	  numberOfContours:	3
+	  xMin:			-23
+	  yMin:			344
+	  xMax:			1473
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  11
+	  2:  15
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:                                      On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual                         On
+	 11:  YDual                               On
+	 12:        XDual                         On
+	 13:  YDual                               On
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   622,   724)  ->  Abs (   622,   724)
+	  1: Rel (  -645,     0)  ->  Abs (   -23,   724)
+	  2: Rel (     0,   175)  ->  Abs (   -23,   899)
+	  3: Rel (   470,     0)  ->  Abs (   447,   899)
+	  4: Rel (     0,   965)  ->  Abs (   447,  1864)
+	  5: Rel (   175,     0)  ->  Abs (   622,  1864)
+	  6: Rel (   851, -1140)  ->  Abs (  1473,   724)
+	  7: Rel (  -646,     0)  ->  Abs (   827,   724)
+	  8: Rel (     0,  1140)  ->  Abs (   827,  1864)
+	  9: Rel (   175,     0)  ->  Abs (  1002,  1864)
+	 10: Rel (     0,  -965)  ->  Abs (  1002,   899)
+	 11: Rel (   471,     0)  ->  Abs (  1473,   899)
+	 12: Rel (     0,  -555)  ->  Abs (  1473,   344)
+	 13: Rel ( -1496,     0)  ->  Abs (   -23,   344)
+	 14: Rel (     0,   175)  ->  Abs (   -23,   519)
+	 15: Rel (  1496,     0)  ->  Abs (  1473,   519)
+
+	Glyph 363: off = 0x00011F3E, len = 68
+	  numberOfContours:	1
+	  xMin:			-23
+	  yMin:			-621
+	  xMax:			1473
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual                         On
+	 11:  YDual                               On
+	 12:        XDual         Y-Short         On
+	 13:  YDual                               On
+	 14:        XDual         Y-Short         On
+	 15:  YDual                               On
+	 16:        XDual         Y-Short         On
+	 17:  YDual                               On
+	 18:        XDual                         On
+	 19:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   637,   344)  ->  Abs (   637,   344)
+	  1: Rel (  -660,     0)  ->  Abs (   -23,   344)
+	  2: Rel (     0,   175)  ->  Abs (   -23,   519)
+	  3: Rel (   660,     0)  ->  Abs (   637,   519)
+	  4: Rel (     0,   205)  ->  Abs (   637,   724)
+	  5: Rel (  -660,     0)  ->  Abs (   -23,   724)
+	  6: Rel (     0,   175)  ->  Abs (   -23,   899)
+	  7: Rel (   660,     0)  ->  Abs (   637,   899)
+	  8: Rel (     0,   965)  ->  Abs (   637,  1864)
+	  9: Rel (   175,     0)  ->  Abs (   812,  1864)
+	 10: Rel (     0,  -965)  ->  Abs (   812,   899)
+	 11: Rel (   661,     0)  ->  Abs (  1473,   899)
+	 12: Rel (     0,  -175)  ->  Abs (  1473,   724)
+	 13: Rel (  -661,     0)  ->  Abs (   812,   724)
+	 14: Rel (     0,  -205)  ->  Abs (   812,   519)
+	 15: Rel (   661,     0)  ->  Abs (  1473,   519)
+	 16: Rel (     0,  -175)  ->  Abs (  1473,   344)
+	 17: Rel (  -661,     0)  ->  Abs (   812,   344)
+	 18: Rel (     0,  -965)  ->  Abs (   812,  -621)
+	 19: Rel (  -175,     0)  ->  Abs (   637,  -621)
+
+	Glyph 364: off = 0x00011F82, len = 70
+	  numberOfContours:	1
+	  xMin:			-23
+	  yMin:			-621
+	  xMax:			1473
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                 X-Short On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual                         On
+	 10:  YDual XDual                 X-Short On
+	 11:        XDual                         On
+	 12:  YDual                               On
+	 13:        XDual         Y-Short         On
+	 14:  YDual                               On
+	 15:        XDual                         On
+	 16:  YDual                       X-Short On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   447,  -621)  ->  Abs (   447,  -621)
+	  1: Rel (     1,  1155)  ->  Abs (   448,   534)
+	  2: Rel (  -471,     0)  ->  Abs (   -23,   534)
+	  3: Rel (     0,   175)  ->  Abs (   -23,   709)
+	  4: Rel (   470,     0)  ->  Abs (   447,   709)
+	  5: Rel (     0,  1155)  ->  Abs (   447,  1864)
+	  6: Rel (   175,     0)  ->  Abs (   622,  1864)
+	  7: Rel (     0, -1155)  ->  Abs (   622,   709)
+	  8: Rel (   205,     0)  ->  Abs (   827,   709)
+	  9: Rel (     0,  1155)  ->  Abs (   827,  1864)
+	 10: Rel (   175,     0)  ->  Abs (  1002,  1864)
+	 11: Rel (     0, -1155)  ->  Abs (  1002,   709)
+	 12: Rel (   471,     0)  ->  Abs (  1473,   709)
+	 13: Rel (     0,  -175)  ->  Abs (  1473,   534)
+	 14: Rel (  -471,     0)  ->  Abs (  1002,   534)
+	 15: Rel (     0, -1155)  ->  Abs (  1002,  -621)
+	 16: Rel (  -175,     0)  ->  Abs (   827,  -621)
+	 17: Rel (     0,  1155)  ->  Abs (   827,   534)
+	 18: Rel (  -205,     0)  ->  Abs (   622,   534)
+	 19: Rel (     0, -1155)  ->  Abs (   622,  -621)
+
+	Glyph 365: off = 0x00011FC8, len = 92
+	  numberOfContours:	4
+	  xMin:			-23
+	  yMin:			-621
+	  xMax:			1473
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  11
+	  2:  17
+	  3:  23
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:                                      On
+	  7:        XDual                         On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual                         On
+	 10:  YDual                               On
+	 11:  YDual XDual         Y-Short         On
+	 12:                                      On
+	 13:  YDual                               On
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual                               On
+	 16:        XDual                         On
+	 17:  YDual                       X-Short On
+	 18:                                      On
+	 19:        XDual                         On
+	 20:  YDual                       X-Short On
+	 21:        XDual                         On
+	 22:  YDual                               On
+	 23:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1003,   899)  ->  Abs (  1003,   899)
+	  1: Rel (   470,     0)  ->  Abs (  1473,   899)
+	  2: Rel (     0,  -175)  ->  Abs (  1473,   724)
+	  3: Rel (  -645,     0)  ->  Abs (   828,   724)
+	  4: Rel (     0,  1140)  ->  Abs (   828,  1864)
+	  5: Rel (   175,     0)  ->  Abs (  1003,  1864)
+	  6: Rel (  -556,  -965)  ->  Abs (   447,   899)
+	  7: Rel (     0,   965)  ->  Abs (   447,  1864)
+	  8: Rel (   175,     0)  ->  Abs (   622,  1864)
+	  9: Rel (     0, -1140)  ->  Abs (   622,   724)
+	 10: Rel (  -645,     0)  ->  Abs (   -23,   724)
+	 11: Rel (     0,   175)  ->  Abs (   -23,   899)
+	 12: Rel (   470,  -555)  ->  Abs (   447,   344)
+	 13: Rel (  -470,     0)  ->  Abs (   -23,   344)
+	 14: Rel (     0,   175)  ->  Abs (   -23,   519)
+	 15: Rel (   645,     0)  ->  Abs (   622,   519)
+	 16: Rel (     0, -1140)  ->  Abs (   622,  -621)
+	 17: Rel (  -175,     0)  ->  Abs (   447,  -621)
+	 18: Rel (   556,   965)  ->  Abs (  1003,   344)
+	 19: Rel (     0,  -965)  ->  Abs (  1003,  -621)
+	 20: Rel (  -175,     0)  ->  Abs (   828,  -621)
+	 21: Rel (     0,  1140)  ->  Abs (   828,   519)
+	 22: Rel (   645,     0)  ->  Abs (  1473,   519)
+	 23: Rel (     0,  -175)  ->  Abs (  1473,   344)
+
+	Glyph 366: off = 0x00012024, len = 28
+	  numberOfContours:	1
+	  xMin:			-23
+	  yMin:			621
+	  xMax:			1473
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1473,   621)  ->  Abs (  1473,   621)
+	  1: Rel ( -1496,     0)  ->  Abs (   -23,   621)
+	  2: Rel (     0,  1243)  ->  Abs (   -23,  1864)
+	  3: Rel (  1496,     0)  ->  Abs (  1473,  1864)
+
+	Glyph 367: off = 0x00012040, len = 28
+	  numberOfContours:	1
+	  xMin:			-23
+	  yMin:			-621
+	  xMax:			1473
+	  yMax:			621
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1473,  -621)  ->  Abs (  1473,  -621)
+	  1: Rel ( -1496,     0)  ->  Abs (   -23,  -621)
+	  2: Rel (     0,  1242)  ->  Abs (   -23,   621)
+	  3: Rel (  1496,     0)  ->  Abs (  1473,   621)
+
+	Glyph 368: off = 0x0001205C, len = 28
+	  numberOfContours:	1
+	  xMin:			-23
+	  yMin:			-621
+	  xMax:			1473
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                              X-Short On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   -23,  -621)  ->  Abs (   -23,  -621)
+	  1: Rel (     0,  2485)  ->  Abs (   -23,  1864)
+	  2: Rel (  1496,     0)  ->  Abs (  1473,  1864)
+	  3: Rel (     0, -2485)  ->  Abs (  1473,  -621)
+
+	Glyph 369: off = 0x00012078, len = 28
+	  numberOfContours:	1
+	  xMin:			-23
+	  yMin:			-621
+	  xMax:			725
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                              X-Short On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   -23,  -621)  ->  Abs (   -23,  -621)
+	  1: Rel (     0,  2485)  ->  Abs (   -23,  1864)
+	  2: Rel (   748,     0)  ->  Abs (   725,  1864)
+	  3: Rel (     0, -2485)  ->  Abs (   725,  -621)
+
+	Glyph 370: off = 0x00012094, len = 28
+	  numberOfContours:	1
+	  xMin:			726
+	  yMin:			-621
+	  xMax:			1474
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   726,  -621)  ->  Abs (   726,  -621)
+	  1: Rel (     0,  2485)  ->  Abs (   726,  1864)
+	  2: Rel (   748,     0)  ->  Abs (  1474,  1864)
+	  3: Rel (     0, -2485)  ->  Abs (  1474,  -621)
+
+	Glyph 371: off = 0x000120B0, len = 366
+	  numberOfContours:	30
+	  xMin:			102
+	  yMin:			-504
+	  xMax:			1473
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  11
+	  3:  15
+	  4:  19
+	  5:  23
+	  6:  27
+	  7:  31
+	  8:  35
+	  9:  39
+	 10:  43
+	 11:  47
+	 12:  51
+	 13:  55
+	 14:  59
+	 15:  63
+	 16:  67
+	 17:  71
+	 18:  75
+	 19:  79
+	 20:  83
+	 21:  87
+	 22:  91
+	 23:  95
+	 24:  99
+	 25:  103
+	 26:  107
+	 27:  111
+	 28:  115
+	 29:  119
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                       X-Short On
+	  4:  YDual               Y-Short         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual         Y-Short         On
+	  7:  YDual                       X-Short On
+	  8:  YDual               Y-Short         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual         Y-Short         On
+	 11:  YDual                       X-Short On
+	 12:                      Y-Short         On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual         Y-Short         On
+	 15:  YDual                       X-Short On
+	 16:  YDual               Y-Short         On
+	 17:  YDual XDual                 X-Short On
+	 18:        XDual         Y-Short         On
+	 19:  YDual                       X-Short On
+	 20:  YDual               Y-Short         On
+	 21:  YDual XDual                 X-Short On
+	 22:        XDual         Y-Short         On
+	 23:  YDual                       X-Short On
+	 24:                      Y-Short X-Short On
+	 25:  YDual XDual                 X-Short On
+	 26:        XDual         Y-Short         On
+	 27:  YDual                       X-Short On
+	 28:  YDual               Y-Short         On
+	 29:  YDual XDual                 X-Short On
+	 30:        XDual         Y-Short         On
+	 31:  YDual                       X-Short On
+	 32:  YDual               Y-Short         On
+	 33:  YDual XDual                 X-Short On
+	 34:        XDual         Y-Short         On
+	 35:  YDual                       X-Short On
+	 36:                      Y-Short         On
+	 37:  YDual XDual                 X-Short On
+	 38:        XDual         Y-Short         On
+	 39:  YDual                       X-Short On
+	 40:  YDual               Y-Short         On
+	 41:  YDual XDual                 X-Short On
+	 42:        XDual         Y-Short         On
+	 43:  YDual                       X-Short On
+	 44:  YDual               Y-Short         On
+	 45:  YDual XDual                 X-Short On
+	 46:        XDual         Y-Short         On
+	 47:  YDual                       X-Short On
+	 48:                      Y-Short X-Short On
+	 49:  YDual XDual                 X-Short On
+	 50:        XDual         Y-Short         On
+	 51:  YDual                       X-Short On
+	 52:  YDual               Y-Short         On
+	 53:  YDual XDual                 X-Short On
+	 54:        XDual         Y-Short         On
+	 55:  YDual                       X-Short On
+	 56:  YDual               Y-Short         On
+	 57:  YDual XDual                 X-Short On
+	 58:        XDual         Y-Short         On
+	 59:  YDual                       X-Short On
+	 60:        XDual         Y-Short X-Short On
+	 61:  YDual XDual                 X-Short On
+	 62:        XDual         Y-Short         On
+	 63:  YDual                       X-Short On
+	 64:  YDual               Y-Short         On
+	 65:  YDual XDual                 X-Short On
+	 66:        XDual         Y-Short         On
+	 67:  YDual                       X-Short On
+	 68:  YDual               Y-Short         On
+	 69:  YDual XDual                 X-Short On
+	 70:        XDual         Y-Short         On
+	 71:  YDual                       X-Short On
+	 72:                      Y-Short X-Short On
+	 73:  YDual XDual                 X-Short On
+	 74:        XDual         Y-Short         On
+	 75:  YDual                       X-Short On
+	 76:  YDual               Y-Short         On
+	 77:  YDual XDual                 X-Short On
+	 78:        XDual         Y-Short         On
+	 79:  YDual                       X-Short On
+	 80:  YDual               Y-Short         On
+	 81:  YDual XDual                 X-Short On
+	 82:        XDual         Y-Short         On
+	 83:  YDual                       X-Short On
+	 84:                      Y-Short         On
+	 85:  YDual XDual                 X-Short On
+	 86:        XDual         Y-Short         On
+	 87:  YDual                       X-Short On
+	 88:  YDual               Y-Short         On
+	 89:  YDual XDual                 X-Short On
+	 90:        XDual         Y-Short         On
+	 91:  YDual                       X-Short On
+	 92:  YDual               Y-Short         On
+	 93:  YDual XDual                 X-Short On
+	 94:        XDual         Y-Short         On
+	 95:  YDual                       X-Short On
+	 96:                      Y-Short X-Short On
+	 97:  YDual XDual                 X-Short On
+	 98:        XDual         Y-Short         On
+	 99:  YDual                       X-Short On
+	100:  YDual               Y-Short         On
+	101:  YDual XDual                 X-Short On
+	102:        XDual         Y-Short         On
+	103:  YDual                       X-Short On
+	104:  YDual               Y-Short         On
+	105:  YDual XDual                 X-Short On
+	106:        XDual         Y-Short         On
+	107:  YDual                       X-Short On
+	108:        XDual         Y-Short X-Short On
+	109:  YDual XDual                 X-Short On
+	110:        XDual         Y-Short         On
+	111:  YDual                       X-Short On
+	112:  YDual               Y-Short         On
+	113:  YDual XDual                 X-Short On
+	114:        XDual         Y-Short         On
+	115:  YDual                       X-Short On
+	116:  YDual               Y-Short         On
+	117:  YDual XDual                 X-Short On
+	118:        XDual         Y-Short         On
+	119:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   102,  1864)  ->  Abs (   102,  1864)
+	  1: Rel (   125,     0)  ->  Abs (   227,  1864)
+	  2: Rel (     0,  -125)  ->  Abs (   227,  1739)
+	  3: Rel (  -125,     0)  ->  Abs (   102,  1739)
+	  4: Rel (   498,   125)  ->  Abs (   600,  1864)
+	  5: Rel (   125,     0)  ->  Abs (   725,  1864)
+	  6: Rel (     0,  -125)  ->  Abs (   725,  1739)
+	  7: Rel (  -125,     0)  ->  Abs (   600,  1739)
+	  8: Rel (   499,   125)  ->  Abs (  1099,  1864)
+	  9: Rel (   125,     0)  ->  Abs (  1224,  1864)
+	 10: Rel (     0,  -125)  ->  Abs (  1224,  1739)
+	 11: Rel (  -125,     0)  ->  Abs (  1099,  1739)
+	 12: Rel (  -748,  -124)  ->  Abs (   351,  1615)
+	 13: Rel (   125,     0)  ->  Abs (   476,  1615)
+	 14: Rel (     0,  -125)  ->  Abs (   476,  1490)
+	 15: Rel (  -125,     0)  ->  Abs (   351,  1490)
+	 16: Rel (   499,   125)  ->  Abs (   850,  1615)
+	 17: Rel (   124,     0)  ->  Abs (   974,  1615)
+	 18: Rel (     0,  -125)  ->  Abs (   974,  1490)
+	 19: Rel (  -124,     0)  ->  Abs (   850,  1490)
+	 20: Rel (   498,   125)  ->  Abs (  1348,  1615)
+	 21: Rel (   125,     0)  ->  Abs (  1473,  1615)
+	 22: Rel (     0,  -125)  ->  Abs (  1473,  1490)
+	 23: Rel (  -125,     0)  ->  Abs (  1348,  1490)
+	 24: Rel (  -249,  -124)  ->  Abs (  1099,  1366)
+	 25: Rel (   125,     0)  ->  Abs (  1224,  1366)
+	 26: Rel (     0,  -125)  ->  Abs (  1224,  1241)
+	 27: Rel (  -125,     0)  ->  Abs (  1099,  1241)
+	 28: Rel (  -499,   125)  ->  Abs (   600,  1366)
+	 29: Rel (   125,     0)  ->  Abs (   725,  1366)
+	 30: Rel (     0,  -125)  ->  Abs (   725,  1241)
+	 31: Rel (  -125,     0)  ->  Abs (   600,  1241)
+	 32: Rel (  -498,   125)  ->  Abs (   102,  1366)
+	 33: Rel (   125,     0)  ->  Abs (   227,  1366)
+	 34: Rel (     0,  -125)  ->  Abs (   227,  1241)
+	 35: Rel (  -125,     0)  ->  Abs (   102,  1241)
+	 36: Rel (  1246,  -125)  ->  Abs (  1348,  1116)
+	 37: Rel (   125,     0)  ->  Abs (  1473,  1116)
+	 38: Rel (     0,  -124)  ->  Abs (  1473,   992)
+	 39: Rel (  -125,     0)  ->  Abs (  1348,   992)
+	 40: Rel (  -498,   124)  ->  Abs (   850,  1116)
+	 41: Rel (   124,     0)  ->  Abs (   974,  1116)
+	 42: Rel (     0,  -124)  ->  Abs (   974,   992)
+	 43: Rel (  -124,     0)  ->  Abs (   850,   992)
+	 44: Rel (  -499,   124)  ->  Abs (   351,  1116)
+	 45: Rel (   125,     0)  ->  Abs (   476,  1116)
+	 46: Rel (     0,  -124)  ->  Abs (   476,   992)
+	 47: Rel (  -125,     0)  ->  Abs (   351,   992)
+	 48: Rel (  -249,  -125)  ->  Abs (   102,   867)
+	 49: Rel (   125,     0)  ->  Abs (   227,   867)
+	 50: Rel (     0,  -125)  ->  Abs (   227,   742)
+	 51: Rel (  -125,     0)  ->  Abs (   102,   742)
+	 52: Rel (   498,   125)  ->  Abs (   600,   867)
+	 53: Rel (   125,     0)  ->  Abs (   725,   867)
+	 54: Rel (     0,  -125)  ->  Abs (   725,   742)
+	 55: Rel (  -125,     0)  ->  Abs (   600,   742)
+	 56: Rel (   499,   125)  ->  Abs (  1099,   867)
+	 57: Rel (   125,     0)  ->  Abs (  1224,   867)
+	 58: Rel (     0,  -125)  ->  Abs (  1224,   742)
+	 59: Rel (  -125,     0)  ->  Abs (  1099,   742)
+	 60: Rel (   249,  -124)  ->  Abs (  1348,   618)
+	 61: Rel (   125,     0)  ->  Abs (  1473,   618)
+	 62: Rel (     0,  -125)  ->  Abs (  1473,   493)
+	 63: Rel (  -125,     0)  ->  Abs (  1348,   493)
+	 64: Rel (  -498,   125)  ->  Abs (   850,   618)
+	 65: Rel (   124,     0)  ->  Abs (   974,   618)
+	 66: Rel (     0,  -125)  ->  Abs (   974,   493)
+	 67: Rel (  -124,     0)  ->  Abs (   850,   493)
+	 68: Rel (  -499,   125)  ->  Abs (   351,   618)
+	 69: Rel (   125,     0)  ->  Abs (   476,   618)
+	 70: Rel (     0,  -125)  ->  Abs (   476,   493)
+	 71: Rel (  -125,     0)  ->  Abs (   351,   493)
+	 72: Rel (  -249,  -124)  ->  Abs (   102,   369)
+	 73: Rel (   125,     0)  ->  Abs (   227,   369)
+	 74: Rel (     0,  -125)  ->  Abs (   227,   244)
+	 75: Rel (  -125,     0)  ->  Abs (   102,   244)
+	 76: Rel (   498,   125)  ->  Abs (   600,   369)
+	 77: Rel (   125,     0)  ->  Abs (   725,   369)
+	 78: Rel (     0,  -125)  ->  Abs (   725,   244)
+	 79: Rel (  -125,     0)  ->  Abs (   600,   244)
+	 80: Rel (   499,   125)  ->  Abs (  1099,   369)
+	 81: Rel (   125,     0)  ->  Abs (  1224,   369)
+	 82: Rel (     0,  -125)  ->  Abs (  1224,   244)
+	 83: Rel (  -125,     0)  ->  Abs (  1099,   244)
+	 84: Rel (  -748,  -125)  ->  Abs (   351,   119)
+	 85: Rel (   125,     0)  ->  Abs (   476,   119)
+	 86: Rel (     0,  -124)  ->  Abs (   476,    -5)
+	 87: Rel (  -125,     0)  ->  Abs (   351,    -5)
+	 88: Rel (   499,   124)  ->  Abs (   850,   119)
+	 89: Rel (   124,     0)  ->  Abs (   974,   119)
+	 90: Rel (     0,  -124)  ->  Abs (   974,    -5)
+	 91: Rel (  -124,     0)  ->  Abs (   850,    -5)
+	 92: Rel (   498,   124)  ->  Abs (  1348,   119)
+	 93: Rel (   125,     0)  ->  Abs (  1473,   119)
+	 94: Rel (     0,  -124)  ->  Abs (  1473,    -5)
+	 95: Rel (  -125,     0)  ->  Abs (  1348,    -5)
+	 96: Rel (  -249,  -125)  ->  Abs (  1099,  -130)
+	 97: Rel (   125,     0)  ->  Abs (  1224,  -130)
+	 98: Rel (     0,  -125)  ->  Abs (  1224,  -255)
+	 99: Rel (  -125,     0)  ->  Abs (  1099,  -255)
+	100: Rel (  -499,   125)  ->  Abs (   600,  -130)
+	101: Rel (   125,     0)  ->  Abs (   725,  -130)
+	102: Rel (     0,  -125)  ->  Abs (   725,  -255)
+	103: Rel (  -125,     0)  ->  Abs (   600,  -255)
+	104: Rel (  -498,   125)  ->  Abs (   102,  -130)
+	105: Rel (   125,     0)  ->  Abs (   227,  -130)
+	106: Rel (     0,  -125)  ->  Abs (   227,  -255)
+	107: Rel (  -125,     0)  ->  Abs (   102,  -255)
+	108: Rel (   249,  -124)  ->  Abs (   351,  -379)
+	109: Rel (   125,     0)  ->  Abs (   476,  -379)
+	110: Rel (     0,  -125)  ->  Abs (   476,  -504)
+	111: Rel (  -125,     0)  ->  Abs (   351,  -504)
+	112: Rel (   499,   125)  ->  Abs (   850,  -379)
+	113: Rel (   124,     0)  ->  Abs (   974,  -379)
+	114: Rel (     0,  -125)  ->  Abs (   974,  -504)
+	115: Rel (  -124,     0)  ->  Abs (   850,  -504)
+	116: Rel (   498,   125)  ->  Abs (  1348,  -379)
+	117: Rel (   125,     0)  ->  Abs (  1473,  -379)
+	118: Rel (     0,  -125)  ->  Abs (  1473,  -504)
+	119: Rel (  -125,     0)  ->  Abs (  1348,  -504)
+
+	Glyph 372: off = 0x0001221E, len = 720
+	  numberOfContours:	63
+	  xMin:			-22
+	  yMin:			-504
+	  xMax:			1473
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  11
+	  3:  15
+	  4:  19
+	  5:  23
+	  6:  27
+	  7:  31
+	  8:  35
+	  9:  39
+	 10:  43
+	 11:  47
+	 12:  51
+	 13:  55
+	 14:  59
+	 15:  63
+	 16:  67
+	 17:  71
+	 18:  75
+	 19:  79
+	 20:  83
+	 21:  87
+	 22:  91
+	 23:  95
+	 24:  99
+	 25:  107
+	 26:  111
+	 27:  115
+	 28:  119
+	 29:  123
+	 30:  127
+	 31:  131
+	 32:  135
+	 33:  139
+	 34:  143
+	 35:  147
+	 36:  151
+	 37:  155
+	 38:  159
+	 39:  163
+	 40:  167
+	 41:  171
+	 42:  175
+	 43:  179
+	 44:  183
+	 45:  187
+	 46:  191
+	 47:  195
+	 48:  199
+	 49:  203
+	 50:  207
+	 51:  211
+	 52:  215
+	 53:  219
+	 54:  223
+	 55:  227
+	 56:  231
+	 57:  235
+	 58:  239
+	 59:  243
+	 60:  247
+	 61:  251
+	 62:  255
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                       X-Short On
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual         Y-Short         On
+	  7:  YDual                       X-Short On
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual         Y-Short         On
+	 11:  YDual                       X-Short On
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual         Y-Short         On
+	 15:  YDual                       X-Short On
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual                 X-Short On
+	 18:        XDual         Y-Short         On
+	 19:  YDual                       X-Short On
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual                 X-Short On
+	 22:        XDual         Y-Short         On
+	 23:  YDual                       X-Short On
+	 24:                      Y-Short         On
+	 25:  YDual XDual                 X-Short On
+	 26:        XDual         Y-Short         On
+	 27:  YDual                       X-Short On
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual                 X-Short On
+	 30:        XDual         Y-Short         On
+	 31:  YDual                       X-Short On
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual XDual                 X-Short On
+	 34:        XDual         Y-Short         On
+	 35:  YDual                       X-Short On
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual XDual                 X-Short On
+	 38:        XDual         Y-Short         On
+	 39:  YDual                       X-Short On
+	 40:  YDual XDual         Y-Short X-Short On
+	 41:  YDual XDual                 X-Short On
+	 42:        XDual         Y-Short         On
+	 43:  YDual                       X-Short On
+	 44:  YDual XDual         Y-Short X-Short On
+	 45:  YDual XDual                 X-Short On
+	 46:        XDual         Y-Short         On
+	 47:  YDual                       X-Short On
+	 48:  YDual XDual         Y-Short         On
+	 49:  YDual XDual                 X-Short On
+	 50:        XDual         Y-Short         On
+	 51:  YDual                       X-Short On
+	 52:  YDual XDual         Y-Short         On
+	 53:  YDual XDual                 X-Short On
+	 54:        XDual         Y-Short         On
+	 55:  YDual                       X-Short On
+	 56:                      Y-Short         On
+	 57:  YDual XDual                 X-Short On
+	 58:        XDual         Y-Short         On
+	 59:  YDual                       X-Short On
+	 60:  YDual XDual         Y-Short X-Short On
+	 61:  YDual XDual                 X-Short On
+	 62:        XDual         Y-Short         On
+	 63:  YDual                       X-Short On
+	 64:  YDual XDual         Y-Short X-Short On
+	 65:  YDual XDual                 X-Short On
+	 66:        XDual         Y-Short         On
+	 67:  YDual                       X-Short On
+	 68:  YDual XDual         Y-Short X-Short On
+	 69:  YDual XDual                 X-Short On
+	 70:        XDual         Y-Short         On
+	 71:  YDual                       X-Short On
+	 72:  YDual XDual         Y-Short X-Short On
+	 73:  YDual XDual                 X-Short On
+	 74:        XDual         Y-Short         On
+	 75:  YDual                       X-Short On
+	 76:  YDual XDual         Y-Short X-Short On
+	 77:  YDual XDual                 X-Short On
+	 78:        XDual         Y-Short         On
+	 79:  YDual                       X-Short On
+	 80:                      Y-Short         On
+	 81:  YDual XDual                 X-Short On
+	 82:        XDual         Y-Short         On
+	 83:  YDual                       X-Short On
+	 84:  YDual XDual         Y-Short X-Short On
+	 85:  YDual XDual                 X-Short On
+	 86:        XDual         Y-Short         On
+	 87:  YDual                       X-Short On
+	 88:  YDual XDual         Y-Short X-Short On
+	 89:  YDual XDual                 X-Short On
+	 90:        XDual         Y-Short         On
+	 91:  YDual                       X-Short On
+	 92:  YDual XDual         Y-Short X-Short On
+	 93:  YDual XDual                 X-Short On
+	 94:        XDual         Y-Short         On
+	 95:  YDual                       X-Short On
+	 96:  YDual XDual         Y-Short X-Short On
+	 97:  YDual XDual                 X-Short On
+	 98:        XDual         Y-Short         On
+	 99:  YDual                       X-Short On
+	100:  YDual XDual         Y-Short X-Short On
+	101:  YDual XDual                 X-Short On
+	102:        XDual         Y-Short         On
+	103:  YDual                       X-Short On
+	104:  YDual XDual         Y-Short         On
+	105:  YDual XDual                 X-Short On
+	106:        XDual         Y-Short         On
+	107:  YDual                       X-Short On
+	108:  YDual XDual         Y-Short         On
+	109:  YDual XDual                 X-Short On
+	110:        XDual         Y-Short         On
+	111:  YDual                       X-Short On
+	112:                      Y-Short         On
+	113:  YDual XDual                 X-Short On
+	114:        XDual         Y-Short         On
+	115:  YDual                       X-Short On
+	116:  YDual XDual         Y-Short X-Short On
+	117:  YDual XDual                 X-Short On
+	118:        XDual         Y-Short         On
+	119:  YDual                       X-Short On
+	120:  YDual XDual         Y-Short X-Short On
+	121:  YDual XDual                 X-Short On
+	122:        XDual         Y-Short         On
+	123:  YDual                       X-Short On
+	124:  YDual XDual         Y-Short X-Short On
+	125:  YDual XDual                 X-Short On
+	126:        XDual         Y-Short         On
+	127:  YDual                       X-Short On
+	128:  YDual XDual         Y-Short X-Short On
+	129:  YDual XDual                 X-Short On
+	130:        XDual         Y-Short         On
+	131:  YDual                       X-Short On
+	132:  YDual XDual         Y-Short X-Short On
+	133:  YDual XDual                 X-Short On
+	134:        XDual         Y-Short         On
+	135:  YDual                       X-Short On
+	136:                      Y-Short         On
+	137:  YDual XDual                 X-Short On
+	138:        XDual         Y-Short         On
+	139:  YDual                       X-Short On
+	140:  YDual               Y-Short         On
+	141:  YDual XDual                 X-Short On
+	142:        XDual         Y-Short         On
+	143:  YDual                       X-Short On
+	144:  YDual XDual         Y-Short X-Short On
+	145:  YDual XDual                 X-Short On
+	146:        XDual         Y-Short         On
+	147:  YDual                       X-Short On
+	148:  YDual XDual         Y-Short X-Short On
+	149:  YDual XDual                 X-Short On
+	150:        XDual         Y-Short         On
+	151:  YDual                       X-Short On
+	152:  YDual XDual         Y-Short X-Short On
+	153:  YDual XDual                 X-Short On
+	154:        XDual         Y-Short         On
+	155:  YDual                       X-Short On
+	156:  YDual               Y-Short         On
+	157:  YDual XDual                 X-Short On
+	158:        XDual         Y-Short         On
+	159:  YDual                       X-Short On
+	160:                      Y-Short         On
+	161:  YDual XDual                 X-Short On
+	162:        XDual         Y-Short         On
+	163:  YDual                       X-Short On
+	164:  YDual               Y-Short X-Short On
+	165:  YDual XDual                 X-Short On
+	166:        XDual         Y-Short         On
+	167:  YDual                       X-Short On
+	168:  YDual               Y-Short X-Short On
+	169:  YDual XDual                 X-Short On
+	170:        XDual         Y-Short         On
+	171:  YDual                       X-Short On
+	172:  YDual               Y-Short X-Short On
+	173:  YDual XDual                 X-Short On
+	174:        XDual         Y-Short         On
+	175:  YDual                       X-Short On
+	176:  YDual               Y-Short X-Short On
+	177:  YDual XDual                 X-Short On
+	178:        XDual         Y-Short         On
+	179:  YDual                       X-Short On
+	180:  YDual               Y-Short X-Short On
+	181:  YDual XDual                 X-Short On
+	182:        XDual         Y-Short         On
+	183:  YDual                       X-Short On
+	184:                      Y-Short X-Short On
+	185:  YDual XDual                 X-Short On
+	186:        XDual         Y-Short         On
+	187:  YDual                       X-Short On
+	188:  YDual XDual         Y-Short X-Short On
+	189:  YDual XDual                 X-Short On
+	190:        XDual         Y-Short         On
+	191:  YDual                       X-Short On
+	192:  YDual XDual         Y-Short X-Short On
+	193:  YDual XDual                 X-Short On
+	194:        XDual         Y-Short         On
+	195:  YDual                       X-Short On
+	196:  YDual XDual         Y-Short X-Short On
+	197:  YDual XDual                 X-Short On
+	198:        XDual         Y-Short         On
+	199:  YDual                       X-Short On
+	200:  YDual XDual         Y-Short X-Short On
+	201:  YDual XDual                 X-Short On
+	202:        XDual         Y-Short         On
+	203:  YDual                       X-Short On
+	204:  YDual XDual         Y-Short X-Short On
+	205:  YDual XDual                 X-Short On
+	206:        XDual         Y-Short         On
+	207:  YDual                       X-Short On
+	208:        XDual         Y-Short X-Short On
+	209:  YDual XDual                 X-Short On
+	210:        XDual         Y-Short         On
+	211:  YDual                       X-Short On
+	212:  YDual               Y-Short X-Short On
+	213:  YDual XDual                 X-Short On
+	214:        XDual         Y-Short         On
+	215:  YDual                       X-Short On
+	216:  YDual               Y-Short X-Short On
+	217:  YDual XDual                 X-Short On
+	218:        XDual         Y-Short         On
+	219:  YDual                       X-Short On
+	220:  YDual               Y-Short X-Short On
+	221:  YDual XDual                 X-Short On
+	222:        XDual         Y-Short         On
+	223:  YDual                       X-Short On
+	224:  YDual               Y-Short X-Short On
+	225:  YDual XDual                 X-Short On
+	226:        XDual         Y-Short         On
+	227:  YDual                       X-Short On
+	228:  YDual               Y-Short X-Short On
+	229:  YDual XDual                 X-Short On
+	230:        XDual         Y-Short         On
+	231:  YDual                       X-Short On
+	232:                      Y-Short X-Short On
+	233:  YDual XDual                 X-Short On
+	234:        XDual         Y-Short         On
+	235:  YDual                       X-Short On
+	236:  YDual XDual         Y-Short X-Short On
+	237:  YDual XDual                 X-Short On
+	238:        XDual         Y-Short         On
+	239:  YDual                       X-Short On
+	240:  YDual XDual         Y-Short X-Short On
+	241:  YDual XDual                 X-Short On
+	242:        XDual         Y-Short         On
+	243:  YDual                       X-Short On
+	244:  YDual XDual         Y-Short X-Short On
+	245:  YDual XDual                 X-Short On
+	246:        XDual         Y-Short         On
+	247:  YDual                       X-Short On
+	248:  YDual XDual         Y-Short X-Short On
+	249:  YDual XDual                 X-Short On
+	250:        XDual         Y-Short         On
+	251:  YDual                       X-Short On
+	252:  YDual XDual         Y-Short X-Short On
+	253:  YDual XDual                 X-Short On
+	254:        XDual         Y-Short         On
+	255:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   103,  1864)  ->  Abs (   103,  1864)
+	  1: Rel (   124,     0)  ->  Abs (   227,  1864)
+	  2: Rel (     0,  -125)  ->  Abs (   227,  1739)
+	  3: Rel (  -124,     0)  ->  Abs (   103,  1739)
+	  4: Rel (   249,   125)  ->  Abs (   352,  1864)
+	  5: Rel (   124,     0)  ->  Abs (   476,  1864)
+	  6: Rel (     0,  -125)  ->  Abs (   476,  1739)
+	  7: Rel (  -124,     0)  ->  Abs (   352,  1739)
+	  8: Rel (   249,   125)  ->  Abs (   601,  1864)
+	  9: Rel (   125,     0)  ->  Abs (   726,  1864)
+	 10: Rel (     0,  -125)  ->  Abs (   726,  1739)
+	 11: Rel (  -125,     0)  ->  Abs (   601,  1739)
+	 12: Rel (   249,   125)  ->  Abs (   850,  1864)
+	 13: Rel (   125,     0)  ->  Abs (   975,  1864)
+	 14: Rel (     0,  -125)  ->  Abs (   975,  1739)
+	 15: Rel (  -125,     0)  ->  Abs (   850,  1739)
+	 16: Rel (   250,   125)  ->  Abs (  1100,  1864)
+	 17: Rel (   124,     0)  ->  Abs (  1224,  1864)
+	 18: Rel (     0,  -125)  ->  Abs (  1224,  1739)
+	 19: Rel (  -124,     0)  ->  Abs (  1100,  1739)
+	 20: Rel (   249,   125)  ->  Abs (  1349,  1864)
+	 21: Rel (   124,     0)  ->  Abs (  1473,  1864)
+	 22: Rel (     0,  -125)  ->  Abs (  1473,  1739)
+	 23: Rel (  -124,     0)  ->  Abs (  1349,  1739)
+	 24: Rel ( -1371,  -124)  ->  Abs (   -22,  1615)
+	 25: Rel (   125,     0)  ->  Abs (   103,  1615)
+	 26: Rel (     0,  -125)  ->  Abs (   103,  1490)
+	 27: Rel (  -125,     0)  ->  Abs (   -22,  1490)
+	 28: Rel (   249,   125)  ->  Abs (   227,  1615)
+	 29: Rel (   125,     0)  ->  Abs (   352,  1615)
+	 30: Rel (     0,  -125)  ->  Abs (   352,  1490)
+	 31: Rel (  -125,     0)  ->  Abs (   227,  1490)
+	 32: Rel (   249,   125)  ->  Abs (   476,  1615)
+	 33: Rel (   125,     0)  ->  Abs (   601,  1615)
+	 34: Rel (     0,  -125)  ->  Abs (   601,  1490)
+	 35: Rel (  -125,     0)  ->  Abs (   476,  1490)
+	 36: Rel (   250,   125)  ->  Abs (   726,  1615)
+	 37: Rel (   124,     0)  ->  Abs (   850,  1615)
+	 38: Rel (     0,  -125)  ->  Abs (   850,  1490)
+	 39: Rel (  -124,     0)  ->  Abs (   726,  1490)
+	 40: Rel (   249,   125)  ->  Abs (   975,  1615)
+	 41: Rel (   125,     0)  ->  Abs (  1100,  1615)
+	 42: Rel (     0,  -125)  ->  Abs (  1100,  1490)
+	 43: Rel (  -125,     0)  ->  Abs (   975,  1490)
+	 44: Rel (   249,   125)  ->  Abs (  1224,  1615)
+	 45: Rel (   125,     0)  ->  Abs (  1349,  1615)
+	 46: Rel (     0,  -125)  ->  Abs (  1349,  1490)
+	 47: Rel (  -125,     0)  ->  Abs (  1224,  1490)
+	 48: Rel (     0,   125)  ->  Abs (  1224,  1615)
+	 49: Rel (   125,     0)  ->  Abs (  1349,  1615)
+	 50: Rel (     0,  -125)  ->  Abs (  1349,  1490)
+	 51: Rel (  -125,     0)  ->  Abs (  1224,  1490)
+	 52: Rel (     0,   125)  ->  Abs (  1224,  1615)
+	 53: Rel (   125,     0)  ->  Abs (  1349,  1615)
+	 54: Rel (     0,  -125)  ->  Abs (  1349,  1490)
+	 55: Rel (  -125,     0)  ->  Abs (  1224,  1490)
+	 56: Rel ( -1121,  -124)  ->  Abs (   103,  1366)
+	 57: Rel (   124,     0)  ->  Abs (   227,  1366)
+	 58: Rel (     0,  -125)  ->  Abs (   227,  1241)
+	 59: Rel (  -124,     0)  ->  Abs (   103,  1241)
+	 60: Rel (   249,   125)  ->  Abs (   352,  1366)
+	 61: Rel (   124,     0)  ->  Abs (   476,  1366)
+	 62: Rel (     0,  -125)  ->  Abs (   476,  1241)
+	 63: Rel (  -124,     0)  ->  Abs (   352,  1241)
+	 64: Rel (   249,   125)  ->  Abs (   601,  1366)
+	 65: Rel (   125,     0)  ->  Abs (   726,  1366)
+	 66: Rel (     0,  -125)  ->  Abs (   726,  1241)
+	 67: Rel (  -125,     0)  ->  Abs (   601,  1241)
+	 68: Rel (   249,   125)  ->  Abs (   850,  1366)
+	 69: Rel (   125,     0)  ->  Abs (   975,  1366)
+	 70: Rel (     0,  -125)  ->  Abs (   975,  1241)
+	 71: Rel (  -125,     0)  ->  Abs (   850,  1241)
+	 72: Rel (   250,   125)  ->  Abs (  1100,  1366)
+	 73: Rel (   124,     0)  ->  Abs (  1224,  1366)
+	 74: Rel (     0,  -125)  ->  Abs (  1224,  1241)
+	 75: Rel (  -124,     0)  ->  Abs (  1100,  1241)
+	 76: Rel (   249,   125)  ->  Abs (  1349,  1366)
+	 77: Rel (   124,     0)  ->  Abs (  1473,  1366)
+	 78: Rel (     0,  -125)  ->  Abs (  1473,  1241)
+	 79: Rel (  -124,     0)  ->  Abs (  1349,  1241)
+	 80: Rel ( -1371,  -125)  ->  Abs (   -22,  1116)
+	 81: Rel (   125,     0)  ->  Abs (   103,  1116)
+	 82: Rel (     0,  -124)  ->  Abs (   103,   992)
+	 83: Rel (  -125,     0)  ->  Abs (   -22,   992)
+	 84: Rel (   249,   124)  ->  Abs (   227,  1116)
+	 85: Rel (   125,     0)  ->  Abs (   352,  1116)
+	 86: Rel (     0,  -124)  ->  Abs (   352,   992)
+	 87: Rel (  -125,     0)  ->  Abs (   227,   992)
+	 88: Rel (   249,   124)  ->  Abs (   476,  1116)
+	 89: Rel (   125,     0)  ->  Abs (   601,  1116)
+	 90: Rel (     0,  -124)  ->  Abs (   601,   992)
+	 91: Rel (  -125,     0)  ->  Abs (   476,   992)
+	 92: Rel (   250,   124)  ->  Abs (   726,  1116)
+	 93: Rel (   124,     0)  ->  Abs (   850,  1116)
+	 94: Rel (     0,  -124)  ->  Abs (   850,   992)
+	 95: Rel (  -124,     0)  ->  Abs (   726,   992)
+	 96: Rel (   249,   124)  ->  Abs (   975,  1116)
+	 97: Rel (   125,     0)  ->  Abs (  1100,  1116)
+	 98: Rel (     0,  -124)  ->  Abs (  1100,   992)
+	 99: Rel (  -125,     0)  ->  Abs (   975,   992)
+	100: Rel (   249,   124)  ->  Abs (  1224,  1116)
+	101: Rel (   125,     0)  ->  Abs (  1349,  1116)
+	102: Rel (     0,  -124)  ->  Abs (  1349,   992)
+	103: Rel (  -125,     0)  ->  Abs (  1224,   992)
+	104: Rel (     0,   124)  ->  Abs (  1224,  1116)
+	105: Rel (   125,     0)  ->  Abs (  1349,  1116)
+	106: Rel (     0,  -124)  ->  Abs (  1349,   992)
+	107: Rel (  -125,     0)  ->  Abs (  1224,   992)
+	108: Rel (     0,   124)  ->  Abs (  1224,  1116)
+	109: Rel (   125,     0)  ->  Abs (  1349,  1116)
+	110: Rel (     0,  -124)  ->  Abs (  1349,   992)
+	111: Rel (  -125,     0)  ->  Abs (  1224,   992)
+	112: Rel ( -1121,  -125)  ->  Abs (   103,   867)
+	113: Rel (   124,     0)  ->  Abs (   227,   867)
+	114: Rel (     0,  -125)  ->  Abs (   227,   742)
+	115: Rel (  -124,     0)  ->  Abs (   103,   742)
+	116: Rel (   249,   125)  ->  Abs (   352,   867)
+	117: Rel (   124,     0)  ->  Abs (   476,   867)
+	118: Rel (     0,  -125)  ->  Abs (   476,   742)
+	119: Rel (  -124,     0)  ->  Abs (   352,   742)
+	120: Rel (   249,   125)  ->  Abs (   601,   867)
+	121: Rel (   125,     0)  ->  Abs (   726,   867)
+	122: Rel (     0,  -125)  ->  Abs (   726,   742)
+	123: Rel (  -125,     0)  ->  Abs (   601,   742)
+	124: Rel (   249,   125)  ->  Abs (   850,   867)
+	125: Rel (   125,     0)  ->  Abs (   975,   867)
+	126: Rel (     0,  -125)  ->  Abs (   975,   742)
+	127: Rel (  -125,     0)  ->  Abs (   850,   742)
+	128: Rel (   250,   125)  ->  Abs (  1100,   867)
+	129: Rel (   124,     0)  ->  Abs (  1224,   867)
+	130: Rel (     0,  -125)  ->  Abs (  1224,   742)
+	131: Rel (  -124,     0)  ->  Abs (  1100,   742)
+	132: Rel (   249,   125)  ->  Abs (  1349,   867)
+	133: Rel (   124,     0)  ->  Abs (  1473,   867)
+	134: Rel (     0,  -125)  ->  Abs (  1473,   742)
+	135: Rel (  -124,     0)  ->  Abs (  1349,   742)
+	136: Rel ( -1371,  -124)  ->  Abs (   -22,   618)
+	137: Rel (   125,     0)  ->  Abs (   103,   618)
+	138: Rel (     0,  -125)  ->  Abs (   103,   493)
+	139: Rel (  -125,     0)  ->  Abs (   -22,   493)
+	140: Rel (   498,   125)  ->  Abs (   476,   618)
+	141: Rel (   125,     0)  ->  Abs (   601,   618)
+	142: Rel (     0,  -125)  ->  Abs (   601,   493)
+	143: Rel (  -125,     0)  ->  Abs (   476,   493)
+	144: Rel (   250,   125)  ->  Abs (   726,   618)
+	145: Rel (   124,     0)  ->  Abs (   850,   618)
+	146: Rel (     0,  -125)  ->  Abs (   850,   493)
+	147: Rel (  -124,     0)  ->  Abs (   726,   493)
+	148: Rel (   249,   125)  ->  Abs (   975,   618)
+	149: Rel (   125,     0)  ->  Abs (  1100,   618)
+	150: Rel (     0,  -125)  ->  Abs (  1100,   493)
+	151: Rel (  -125,     0)  ->  Abs (   975,   493)
+	152: Rel (   249,   125)  ->  Abs (  1224,   618)
+	153: Rel (   125,     0)  ->  Abs (  1349,   618)
+	154: Rel (     0,  -125)  ->  Abs (  1349,   493)
+	155: Rel (  -125,     0)  ->  Abs (  1224,   493)
+	156: Rel (  -997,   125)  ->  Abs (   227,   618)
+	157: Rel (   125,     0)  ->  Abs (   352,   618)
+	158: Rel (     0,  -125)  ->  Abs (   352,   493)
+	159: Rel (  -125,     0)  ->  Abs (   227,   493)
+	160: Rel (  1122,  -124)  ->  Abs (  1349,   369)
+	161: Rel (   124,     0)  ->  Abs (  1473,   369)
+	162: Rel (     0,  -125)  ->  Abs (  1473,   244)
+	163: Rel (  -124,     0)  ->  Abs (  1349,   244)
+	164: Rel (  -249,   125)  ->  Abs (  1100,   369)
+	165: Rel (   124,     0)  ->  Abs (  1224,   369)
+	166: Rel (     0,  -125)  ->  Abs (  1224,   244)
+	167: Rel (  -124,     0)  ->  Abs (  1100,   244)
+	168: Rel (  -250,   125)  ->  Abs (   850,   369)
+	169: Rel (   125,     0)  ->  Abs (   975,   369)
+	170: Rel (     0,  -125)  ->  Abs (   975,   244)
+	171: Rel (  -125,     0)  ->  Abs (   850,   244)
+	172: Rel (  -249,   125)  ->  Abs (   601,   369)
+	173: Rel (   125,     0)  ->  Abs (   726,   369)
+	174: Rel (     0,  -125)  ->  Abs (   726,   244)
+	175: Rel (  -125,     0)  ->  Abs (   601,   244)
+	176: Rel (  -249,   125)  ->  Abs (   352,   369)
+	177: Rel (   124,     0)  ->  Abs (   476,   369)
+	178: Rel (     0,  -125)  ->  Abs (   476,   244)
+	179: Rel (  -124,     0)  ->  Abs (   352,   244)
+	180: Rel (  -249,   125)  ->  Abs (   103,   369)
+	181: Rel (   124,     0)  ->  Abs (   227,   369)
+	182: Rel (     0,  -125)  ->  Abs (   227,   244)
+	183: Rel (  -124,     0)  ->  Abs (   103,   244)
+	184: Rel (  -125,  -125)  ->  Abs (   -22,   119)
+	185: Rel (   125,     0)  ->  Abs (   103,   119)
+	186: Rel (     0,  -124)  ->  Abs (   103,    -5)
+	187: Rel (  -125,     0)  ->  Abs (   -22,    -5)
+	188: Rel (   249,   124)  ->  Abs (   227,   119)
+	189: Rel (   125,     0)  ->  Abs (   352,   119)
+	190: Rel (     0,  -124)  ->  Abs (   352,    -5)
+	191: Rel (  -125,     0)  ->  Abs (   227,    -5)
+	192: Rel (   249,   124)  ->  Abs (   476,   119)
+	193: Rel (   125,     0)  ->  Abs (   601,   119)
+	194: Rel (     0,  -124)  ->  Abs (   601,    -5)
+	195: Rel (  -125,     0)  ->  Abs (   476,    -5)
+	196: Rel (   250,   124)  ->  Abs (   726,   119)
+	197: Rel (   124,     0)  ->  Abs (   850,   119)
+	198: Rel (     0,  -124)  ->  Abs (   850,    -5)
+	199: Rel (  -124,     0)  ->  Abs (   726,    -5)
+	200: Rel (   249,   124)  ->  Abs (   975,   119)
+	201: Rel (   125,     0)  ->  Abs (  1100,   119)
+	202: Rel (     0,  -124)  ->  Abs (  1100,    -5)
+	203: Rel (  -125,     0)  ->  Abs (   975,    -5)
+	204: Rel (   249,   124)  ->  Abs (  1224,   119)
+	205: Rel (   125,     0)  ->  Abs (  1349,   119)
+	206: Rel (     0,  -124)  ->  Abs (  1349,    -5)
+	207: Rel (  -125,     0)  ->  Abs (  1224,    -5)
+	208: Rel (   125,  -125)  ->  Abs (  1349,  -130)
+	209: Rel (   124,     0)  ->  Abs (  1473,  -130)
+	210: Rel (     0,  -125)  ->  Abs (  1473,  -255)
+	211: Rel (  -124,     0)  ->  Abs (  1349,  -255)
+	212: Rel (  -249,   125)  ->  Abs (  1100,  -130)
+	213: Rel (   124,     0)  ->  Abs (  1224,  -130)
+	214: Rel (     0,  -125)  ->  Abs (  1224,  -255)
+	215: Rel (  -124,     0)  ->  Abs (  1100,  -255)
+	216: Rel (  -250,   125)  ->  Abs (   850,  -130)
+	217: Rel (   125,     0)  ->  Abs (   975,  -130)
+	218: Rel (     0,  -125)  ->  Abs (   975,  -255)
+	219: Rel (  -125,     0)  ->  Abs (   850,  -255)
+	220: Rel (  -249,   125)  ->  Abs (   601,  -130)
+	221: Rel (   125,     0)  ->  Abs (   726,  -130)
+	222: Rel (     0,  -125)  ->  Abs (   726,  -255)
+	223: Rel (  -125,     0)  ->  Abs (   601,  -255)
+	224: Rel (  -249,   125)  ->  Abs (   352,  -130)
+	225: Rel (   124,     0)  ->  Abs (   476,  -130)
+	226: Rel (     0,  -125)  ->  Abs (   476,  -255)
+	227: Rel (  -124,     0)  ->  Abs (   352,  -255)
+	228: Rel (  -249,   125)  ->  Abs (   103,  -130)
+	229: Rel (   124,     0)  ->  Abs (   227,  -130)
+	230: Rel (     0,  -125)  ->  Abs (   227,  -255)
+	231: Rel (  -124,     0)  ->  Abs (   103,  -255)
+	232: Rel (  -125,  -124)  ->  Abs (   -22,  -379)
+	233: Rel (   125,     0)  ->  Abs (   103,  -379)
+	234: Rel (     0,  -125)  ->  Abs (   103,  -504)
+	235: Rel (  -125,     0)  ->  Abs (   -22,  -504)
+	236: Rel (   249,   125)  ->  Abs (   227,  -379)
+	237: Rel (   125,     0)  ->  Abs (   352,  -379)
+	238: Rel (     0,  -125)  ->  Abs (   352,  -504)
+	239: Rel (  -125,     0)  ->  Abs (   227,  -504)
+	240: Rel (   249,   125)  ->  Abs (   476,  -379)
+	241: Rel (   125,     0)  ->  Abs (   601,  -379)
+	242: Rel (     0,  -125)  ->  Abs (   601,  -504)
+	243: Rel (  -125,     0)  ->  Abs (   476,  -504)
+	244: Rel (   250,   125)  ->  Abs (   726,  -379)
+	245: Rel (   124,     0)  ->  Abs (   850,  -379)
+	246: Rel (     0,  -125)  ->  Abs (   850,  -504)
+	247: Rel (  -124,     0)  ->  Abs (   726,  -504)
+	248: Rel (   249,   125)  ->  Abs (   975,  -379)
+	249: Rel (   125,     0)  ->  Abs (  1100,  -379)
+	250: Rel (     0,  -125)  ->  Abs (  1100,  -504)
+	251: Rel (  -125,     0)  ->  Abs (   975,  -504)
+	252: Rel (   249,   125)  ->  Abs (  1224,  -379)
+	253: Rel (   125,     0)  ->  Abs (  1349,  -379)
+	254: Rel (     0,  -125)  ->  Abs (  1349,  -504)
+	255: Rel (  -125,     0)  ->  Abs (  1224,  -504)
+
+	Glyph 373: off = 0x000124EE, len = 624
+	  numberOfContours:	46
+	  xMin:			-1
+	  yMin:			-628
+	  xMax:			1494
+	  yMax:			1864
+
+	EndPoints
+	---------
+	  0:  61
+	  1:  65
+	  2:  69
+	  3:  73
+	  4:  77
+	  5:  81
+	  6:  85
+	  7:  89
+	  8:  93
+	  9:  97
+	 10:  101
+	 11:  105
+	 12:  109
+	 13:  113
+	 14:  117
+	 15:  121
+	 16:  125
+	 17:  129
+	 18:  133
+	 19:  137
+	 20:  141
+	 21:  145
+	 22:  149
+	 23:  153
+	 24:  157
+	 25:  161
+	 26:  165
+	 27:  169
+	 28:  173
+	 29:  177
+	 30:  181
+	 31:  185
+	 32:  189
+	 33:  193
+	 34:  197
+	 35:  201
+	 36:  205
+	 37:  209
+	 38:  213
+	 39:  217
+	 40:  221
+	 41:  225
+	 42:  229
+	 43:  233
+	 44:  237
+	 45:  241
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual         Y-Short         On
+	  4:  YDual XDual                 X-Short On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual         Y-Short         On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual                         On
+	 10:  YDual                       X-Short On
+	 11:        XDual         Y-Short         On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:  YDual                       X-Short On
+	 15:        XDual         Y-Short         On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual         Y-Short         On
+	 18:  YDual                               On
+	 19:        XDual                         On
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual                       X-Short On
+	 23:        XDual                         On
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual                       X-Short On
+	 27:        XDual                         On
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual                       X-Short On
+	 31:        XDual                         On
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual                       X-Short On
+	 35:        XDual                         On
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual                 X-Short On
+	 39:        XDual         Y-Short         On
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual                 X-Short On
+	 43:        XDual         Y-Short         On
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual                 X-Short On
+	 47:        XDual         Y-Short         On
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual         Y-Short         On
+	 50:  YDual XDual                 X-Short On
+	 51:        XDual         Y-Short         On
+	 52:  YDual XDual                 X-Short On
+	 53:  YDual XDual         Y-Short         On
+	 54:  YDual XDual                 X-Short On
+	 55:        XDual         Y-Short         On
+	 56:  YDual XDual                 X-Short On
+	 57:  YDual XDual         Y-Short         On
+	 58:  YDual XDual                 X-Short On
+	 59:        XDual         Y-Short         On
+	 60:  YDual                       X-Short On
+	 61:        XDual         Y-Short         On
+	 62:  YDual               Y-Short         On
+	 63:        XDual         Y-Short         On
+	 64:  YDual XDual                 X-Short On
+	 65:  YDual XDual         Y-Short         On
+	 66:  YDual XDual                 X-Short On
+	 67:        XDual         Y-Short         On
+	 68:  YDual XDual                 X-Short On
+	 69:  YDual XDual         Y-Short         On
+	 70:  YDual XDual                 X-Short On
+	 71:        XDual         Y-Short         On
+	 72:  YDual XDual                 X-Short On
+	 73:  YDual XDual         Y-Short         On
+	 74:  YDual XDual                 X-Short On
+	 75:        XDual         Y-Short         On
+	 76:  YDual XDual                 X-Short On
+	 77:  YDual XDual         Y-Short         On
+	 78:  YDual XDual                 X-Short On
+	 79:        XDual         Y-Short         On
+	 80:  YDual XDual                 X-Short On
+	 81:  YDual XDual         Y-Short         On
+	 82:        XDual         Y-Short X-Short On
+	 83:  YDual                       X-Short On
+	 84:        XDual         Y-Short         On
+	 85:  YDual XDual                 X-Short On
+	 86:  YDual               Y-Short X-Short On
+	 87:  YDual                       X-Short On
+	 88:        XDual         Y-Short         On
+	 89:  YDual XDual                 X-Short On
+	 90:  YDual               Y-Short X-Short On
+	 91:  YDual                       X-Short On
+	 92:        XDual         Y-Short         On
+	 93:  YDual XDual                 X-Short On
+	 94:  YDual               Y-Short X-Short On
+	 95:  YDual                       X-Short On
+	 96:        XDual         Y-Short         On
+	 97:  YDual XDual                 X-Short On
+	 98:  YDual               Y-Short X-Short On
+	 99:  YDual                       X-Short On
+	100:        XDual         Y-Short         On
+	101:  YDual XDual                 X-Short On
+	102:                      Y-Short X-Short On
+	103:        XDual         Y-Short         On
+	104:  YDual XDual                 X-Short On
+	105:  YDual XDual         Y-Short         On
+	106:  YDual XDual                 X-Short On
+	107:        XDual         Y-Short         On
+	108:  YDual XDual                 X-Short On
+	109:  YDual XDual         Y-Short         On
+	110:  YDual XDual                 X-Short On
+	111:        XDual         Y-Short         On
+	112:  YDual XDual                 X-Short On
+	113:  YDual XDual         Y-Short         On
+	114:  YDual XDual                 X-Short On
+	115:        XDual         Y-Short         On
+	116:  YDual XDual                 X-Short On
+	117:  YDual XDual         Y-Short         On
+	118:  YDual XDual                 X-Short On
+	119:        XDual         Y-Short         On
+	120:  YDual XDual                 X-Short On
+	121:  YDual XDual         Y-Short         On
+	122:                      Y-Short         On
+	123:  YDual                       X-Short On
+	124:        XDual         Y-Short         On
+	125:  YDual XDual                 X-Short On
+	126:  YDual XDual         Y-Short X-Short On
+	127:        XDual         Y-Short         On
+	128:  YDual XDual                 X-Short On
+	129:  YDual XDual         Y-Short         On
+	130:  YDual XDual                 X-Short On
+	131:        XDual         Y-Short         On
+	132:  YDual XDual                 X-Short On
+	133:  YDual XDual         Y-Short         On
+	134:  YDual XDual                 X-Short On
+	135:        XDual         Y-Short         On
+	136:  YDual XDual                 X-Short On
+	137:  YDual XDual         Y-Short         On
+	138:  YDual XDual                 X-Short On
+	139:        XDual         Y-Short         On
+	140:  YDual XDual                 X-Short On
+	141:  YDual XDual         Y-Short         On
+	142:                      Y-Short         On
+	143:        XDual         Y-Short         On
+	144:  YDual XDual                 X-Short On
+	145:  YDual XDual         Y-Short         On
+	146:  YDual                               On
+	147:        XDual         Y-Short         On
+	148:  YDual XDual                 X-Short On
+	149:  YDual XDual         Y-Short         On
+	150:                      Y-Short X-Short On
+	151:  YDual XDual         Y-Short         On
+	152:  YDual                       X-Short On
+	153:        XDual         Y-Short         On
+	154:  YDual               Y-Short         On
+	155:        XDual         Y-Short         On
+	156:  YDual XDual                 X-Short On
+	157:  YDual XDual         Y-Short         On
+	158:  YDual XDual                 X-Short On
+	159:        XDual         Y-Short         On
+	160:  YDual XDual                 X-Short On
+	161:  YDual XDual         Y-Short         On
+	162:        XDual                 X-Short On
+	163:  YDual XDual         Y-Short         On
+	164:  YDual                       X-Short On
+	165:        XDual         Y-Short         On
+	166:  YDual                       X-Short On
+	167:  YDual XDual         Y-Short         On
+	168:  YDual                       X-Short On
+	169:        XDual         Y-Short         On
+	170:  YDual                       X-Short On
+	171:  YDual XDual         Y-Short         On
+	172:  YDual                       X-Short On
+	173:        XDual         Y-Short         On
+	174:  YDual                       X-Short On
+	175:  YDual XDual         Y-Short         On
+	176:  YDual                       X-Short On
+	177:        XDual         Y-Short         On
+	178:  YDual                       X-Short On
+	179:  YDual XDual         Y-Short         On
+	180:  YDual                       X-Short On
+	181:        XDual         Y-Short         On
+	182:                      Y-Short X-Short On
+	183:        XDual         Y-Short         On
+	184:  YDual XDual                 X-Short On
+	185:  YDual XDual         Y-Short         On
+	186:  YDual XDual                 X-Short On
+	187:        XDual         Y-Short         On
+	188:  YDual XDual                 X-Short On
+	189:  YDual XDual         Y-Short         On
+	190:  YDual XDual                 X-Short On
+	191:        XDual         Y-Short         On
+	192:  YDual XDual                 X-Short On
+	193:  YDual XDual         Y-Short         On
+	194:  YDual XDual                 X-Short On
+	195:        XDual         Y-Short         On
+	196:  YDual XDual                 X-Short On
+	197:  YDual XDual         Y-Short         On
+	198:  YDual XDual                 X-Short On
+	199:        XDual         Y-Short         On
+	200:  YDual XDual                 X-Short On
+	201:  YDual XDual         Y-Short         On
+	202:        XDual                 X-Short On
+	203:  YDual XDual         Y-Short         On
+	204:  YDual                       X-Short On
+	205:        XDual         Y-Short         On
+	206:  YDual                       X-Short On
+	207:  YDual XDual         Y-Short         On
+	208:  YDual                       X-Short On
+	209:        XDual         Y-Short         On
+	210:  YDual                       X-Short On
+	211:  YDual XDual         Y-Short         On
+	212:  YDual                       X-Short On
+	213:        XDual         Y-Short         On
+	214:  YDual                       X-Short On
+	215:  YDual XDual         Y-Short         On
+	216:  YDual                       X-Short On
+	217:        XDual         Y-Short         On
+	218:  YDual                       X-Short On
+	219:  YDual XDual         Y-Short         On
+	220:  YDual                       X-Short On
+	221:        XDual         Y-Short         On
+	222:                      Y-Short X-Short On
+	223:        XDual         Y-Short         On
+	224:  YDual XDual                 X-Short On
+	225:  YDual XDual         Y-Short         On
+	226:  YDual XDual                 X-Short On
+	227:        XDual         Y-Short         On
+	228:  YDual XDual                 X-Short On
+	229:  YDual XDual         Y-Short         On
+	230:  YDual XDual                 X-Short On
+	231:        XDual         Y-Short         On
+	232:  YDual XDual                 X-Short On
+	233:  YDual XDual         Y-Short         On
+	234:  YDual XDual                 X-Short On
+	235:        XDual         Y-Short         On
+	236:  YDual XDual                 X-Short On
+	237:  YDual XDual         Y-Short         On
+	238:  YDual XDual                 X-Short On
+	239:        XDual         Y-Short         On
+	240:  YDual XDual                 X-Short On
+	241:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1494,  1490)  ->  Abs (  1494,  1490)
+	  1: Rel (     0,  -374)  ->  Abs (  1494,  1116)
+	  2: Rel (  -124,     0)  ->  Abs (  1370,  1116)
+	  3: Rel (     0,  -124)  ->  Abs (  1370,   992)
+	  4: Rel (   124,     0)  ->  Abs (  1494,   992)
+	  5: Rel (     0,  -374)  ->  Abs (  1494,   618)
+	  6: Rel (  -124,     0)  ->  Abs (  1370,   618)
+	  7: Rel (     0,  -125)  ->  Abs (  1370,   493)
+	  8: Rel (   124,     0)  ->  Abs (  1494,   493)
+	  9: Rel (     0,  -374)  ->  Abs (  1494,   119)
+	 10: Rel (  -124,     0)  ->  Abs (  1370,   119)
+	 11: Rel (     0,  -124)  ->  Abs (  1370,    -5)
+	 12: Rel (   124,     0)  ->  Abs (  1494,    -5)
+	 13: Rel (     0,  -374)  ->  Abs (  1494,  -379)
+	 14: Rel (  -124,     0)  ->  Abs (  1370,  -379)
+	 15: Rel (     0,  -125)  ->  Abs (  1370,  -504)
+	 16: Rel (   124,     0)  ->  Abs (  1494,  -504)
+	 17: Rel (     0,  -124)  ->  Abs (  1494,  -628)
+	 18: Rel ( -1495,     0)  ->  Abs (    -1,  -628)
+	 19: Rel (     0,   373)  ->  Abs (    -1,  -255)
+	 20: Rel (   125,     0)  ->  Abs (   124,  -255)
+	 21: Rel (     0,   125)  ->  Abs (   124,  -130)
+	 22: Rel (  -125,     0)  ->  Abs (    -1,  -130)
+	 23: Rel (     0,   374)  ->  Abs (    -1,   244)
+	 24: Rel (   125,     0)  ->  Abs (   124,   244)
+	 25: Rel (     0,   125)  ->  Abs (   124,   369)
+	 26: Rel (  -125,     0)  ->  Abs (    -1,   369)
+	 27: Rel (     0,   373)  ->  Abs (    -1,   742)
+	 28: Rel (   125,     0)  ->  Abs (   124,   742)
+	 29: Rel (     0,   125)  ->  Abs (   124,   867)
+	 30: Rel (  -125,     0)  ->  Abs (    -1,   867)
+	 31: Rel (     0,   374)  ->  Abs (    -1,  1241)
+	 32: Rel (   125,     0)  ->  Abs (   124,  1241)
+	 33: Rel (     0,   125)  ->  Abs (   124,  1366)
+	 34: Rel (  -125,     0)  ->  Abs (    -1,  1366)
+	 35: Rel (     0,   373)  ->  Abs (    -1,  1739)
+	 36: Rel (   125,     0)  ->  Abs (   124,  1739)
+	 37: Rel (     0,   125)  ->  Abs (   124,  1864)
+	 38: Rel (   124,     0)  ->  Abs (   248,  1864)
+	 39: Rel (     0,  -125)  ->  Abs (   248,  1739)
+	 40: Rel (   125,     0)  ->  Abs (   373,  1739)
+	 41: Rel (     0,   125)  ->  Abs (   373,  1864)
+	 42: Rel (   124,     0)  ->  Abs (   497,  1864)
+	 43: Rel (     0,  -125)  ->  Abs (   497,  1739)
+	 44: Rel (   125,     0)  ->  Abs (   622,  1739)
+	 45: Rel (     0,   125)  ->  Abs (   622,  1864)
+	 46: Rel (   125,     0)  ->  Abs (   747,  1864)
+	 47: Rel (     0,  -125)  ->  Abs (   747,  1739)
+	 48: Rel (   124,     0)  ->  Abs (   871,  1739)
+	 49: Rel (     0,   125)  ->  Abs (   871,  1864)
+	 50: Rel (   125,     0)  ->  Abs (   996,  1864)
+	 51: Rel (     0,  -125)  ->  Abs (   996,  1739)
+	 52: Rel (   125,     0)  ->  Abs (  1121,  1739)
+	 53: Rel (     0,   125)  ->  Abs (  1121,  1864)
+	 54: Rel (   124,     0)  ->  Abs (  1245,  1864)
+	 55: Rel (     0,  -125)  ->  Abs (  1245,  1739)
+	 56: Rel (   125,     0)  ->  Abs (  1370,  1739)
+	 57: Rel (     0,   125)  ->  Abs (  1370,  1864)
+	 58: Rel (   124,     0)  ->  Abs (  1494,  1864)
+	 59: Rel (     0,  -249)  ->  Abs (  1494,  1615)
+	 60: Rel (  -124,     0)  ->  Abs (  1370,  1615)
+	 61: Rel (     0,  -125)  ->  Abs (  1370,  1490)
+	 62: Rel ( -1246,   125)  ->  Abs (   124,  1615)
+	 63: Rel (     0,  -125)  ->  Abs (   124,  1490)
+	 64: Rel (   124,     0)  ->  Abs (   248,  1490)
+	 65: Rel (     0,   125)  ->  Abs (   248,  1615)
+	 66: Rel (   125,     0)  ->  Abs (   373,  1615)
+	 67: Rel (     0,  -125)  ->  Abs (   373,  1490)
+	 68: Rel (   124,     0)  ->  Abs (   497,  1490)
+	 69: Rel (     0,   125)  ->  Abs (   497,  1615)
+	 70: Rel (   125,     0)  ->  Abs (   622,  1615)
+	 71: Rel (     0,  -125)  ->  Abs (   622,  1490)
+	 72: Rel (   125,     0)  ->  Abs (   747,  1490)
+	 73: Rel (     0,   125)  ->  Abs (   747,  1615)
+	 74: Rel (   124,     0)  ->  Abs (   871,  1615)
+	 75: Rel (     0,  -125)  ->  Abs (   871,  1490)
+	 76: Rel (   125,     0)  ->  Abs (   996,  1490)
+	 77: Rel (     0,   125)  ->  Abs (   996,  1615)
+	 78: Rel (   125,     0)  ->  Abs (  1121,  1615)
+	 79: Rel (     0,  -125)  ->  Abs (  1121,  1490)
+	 80: Rel (   124,     0)  ->  Abs (  1245,  1490)
+	 81: Rel (     0,   125)  ->  Abs (  1245,  1615)
+	 82: Rel (   125,  -249)  ->  Abs (  1370,  1366)
+	 83: Rel (  -125,     0)  ->  Abs (  1245,  1366)
+	 84: Rel (     0,  -125)  ->  Abs (  1245,  1241)
+	 85: Rel (   125,     0)  ->  Abs (  1370,  1241)
+	 86: Rel (  -249,   125)  ->  Abs (  1121,  1366)
+	 87: Rel (  -125,     0)  ->  Abs (   996,  1366)
+	 88: Rel (     0,  -125)  ->  Abs (   996,  1241)
+	 89: Rel (   125,     0)  ->  Abs (  1121,  1241)
+	 90: Rel (  -250,   125)  ->  Abs (   871,  1366)
+	 91: Rel (  -124,     0)  ->  Abs (   747,  1366)
+	 92: Rel (     0,  -125)  ->  Abs (   747,  1241)
+	 93: Rel (   124,     0)  ->  Abs (   871,  1241)
+	 94: Rel (  -249,   125)  ->  Abs (   622,  1366)
+	 95: Rel (  -125,     0)  ->  Abs (   497,  1366)
+	 96: Rel (     0,  -125)  ->  Abs (   497,  1241)
+	 97: Rel (   125,     0)  ->  Abs (   622,  1241)
+	 98: Rel (  -249,   125)  ->  Abs (   373,  1366)
+	 99: Rel (  -125,     0)  ->  Abs (   248,  1366)
+	100: Rel (     0,  -125)  ->  Abs (   248,  1241)
+	101: Rel (   125,     0)  ->  Abs (   373,  1241)
+	102: Rel (  -249,  -125)  ->  Abs (   124,  1116)
+	103: Rel (     0,  -124)  ->  Abs (   124,   992)
+	104: Rel (   124,     0)  ->  Abs (   248,   992)
+	105: Rel (     0,   124)  ->  Abs (   248,  1116)
+	106: Rel (   125,     0)  ->  Abs (   373,  1116)
+	107: Rel (     0,  -124)  ->  Abs (   373,   992)
+	108: Rel (   124,     0)  ->  Abs (   497,   992)
+	109: Rel (     0,   124)  ->  Abs (   497,  1116)
+	110: Rel (   125,     0)  ->  Abs (   622,  1116)
+	111: Rel (     0,  -124)  ->  Abs (   622,   992)
+	112: Rel (   125,     0)  ->  Abs (   747,   992)
+	113: Rel (     0,   124)  ->  Abs (   747,  1116)
+	114: Rel (   124,     0)  ->  Abs (   871,  1116)
+	115: Rel (     0,  -124)  ->  Abs (   871,   992)
+	116: Rel (   125,     0)  ->  Abs (   996,   992)
+	117: Rel (     0,   124)  ->  Abs (   996,  1116)
+	118: Rel (   125,     0)  ->  Abs (  1121,  1116)
+	119: Rel (     0,  -124)  ->  Abs (  1121,   992)
+	120: Rel (   124,     0)  ->  Abs (  1245,   992)
+	121: Rel (     0,   124)  ->  Abs (  1245,  1116)
+	122: Rel (  -872,  -249)  ->  Abs (   373,   867)
+	123: Rel (  -125,     0)  ->  Abs (   248,   867)
+	124: Rel (     0,  -125)  ->  Abs (   248,   742)
+	125: Rel (   125,     0)  ->  Abs (   373,   742)
+	126: Rel (   124,   125)  ->  Abs (   497,   867)
+	127: Rel (     0,  -125)  ->  Abs (   497,   742)
+	128: Rel (   125,     0)  ->  Abs (   622,   742)
+	129: Rel (     0,   125)  ->  Abs (   622,   867)
+	130: Rel (   125,     0)  ->  Abs (   747,   867)
+	131: Rel (     0,  -125)  ->  Abs (   747,   742)
+	132: Rel (   124,     0)  ->  Abs (   871,   742)
+	133: Rel (     0,   125)  ->  Abs (   871,   867)
+	134: Rel (   125,     0)  ->  Abs (   996,   867)
+	135: Rel (     0,  -125)  ->  Abs (   996,   742)
+	136: Rel (   125,     0)  ->  Abs (  1121,   742)
+	137: Rel (     0,   125)  ->  Abs (  1121,   867)
+	138: Rel (   124,     0)  ->  Abs (  1245,   867)
+	139: Rel (     0,  -125)  ->  Abs (  1245,   742)
+	140: Rel (   125,     0)  ->  Abs (  1370,   742)
+	141: Rel (     0,   125)  ->  Abs (  1370,   867)
+	142: Rel ( -1246,  -249)  ->  Abs (   124,   618)
+	143: Rel (     0,  -125)  ->  Abs (   124,   493)
+	144: Rel (   124,     0)  ->  Abs (   248,   493)
+	145: Rel (     0,   125)  ->  Abs (   248,   618)
+	146: Rel (   374,     0)  ->  Abs (   622,   618)
+	147: Rel (     0,  -125)  ->  Abs (   622,   493)
+	148: Rel (   125,     0)  ->  Abs (   747,   493)
+	149: Rel (     0,   125)  ->  Abs (   747,   618)
+	150: Rel (  -250,  -125)  ->  Abs (   497,   493)
+	151: Rel (     0,   125)  ->  Abs (   497,   618)
+	152: Rel (  -124,     0)  ->  Abs (   373,   618)
+	153: Rel (     0,  -125)  ->  Abs (   373,   493)
+	154: Rel (   498,   125)  ->  Abs (   871,   618)
+	155: Rel (     0,  -125)  ->  Abs (   871,   493)
+	156: Rel (   125,     0)  ->  Abs (   996,   493)
+	157: Rel (     0,   125)  ->  Abs (   996,   618)
+	158: Rel (   125,     0)  ->  Abs (  1121,   618)
+	159: Rel (     0,  -125)  ->  Abs (  1121,   493)
+	160: Rel (   124,     0)  ->  Abs (  1245,   493)
+	161: Rel (     0,   125)  ->  Abs (  1245,   618)
+	162: Rel (   125,  -374)  ->  Abs (  1370,   244)
+	163: Rel (     0,   125)  ->  Abs (  1370,   369)
+	164: Rel (  -125,     0)  ->  Abs (  1245,   369)
+	165: Rel (     0,  -125)  ->  Abs (  1245,   244)
+	166: Rel (  -124,     0)  ->  Abs (  1121,   244)
+	167: Rel (     0,   125)  ->  Abs (  1121,   369)
+	168: Rel (  -125,     0)  ->  Abs (   996,   369)
+	169: Rel (     0,  -125)  ->  Abs (   996,   244)
+	170: Rel (  -125,     0)  ->  Abs (   871,   244)
+	171: Rel (     0,   125)  ->  Abs (   871,   369)
+	172: Rel (  -124,     0)  ->  Abs (   747,   369)
+	173: Rel (     0,  -125)  ->  Abs (   747,   244)
+	174: Rel (  -125,     0)  ->  Abs (   622,   244)
+	175: Rel (     0,   125)  ->  Abs (   622,   369)
+	176: Rel (  -125,     0)  ->  Abs (   497,   369)
+	177: Rel (     0,  -125)  ->  Abs (   497,   244)
+	178: Rel (  -124,     0)  ->  Abs (   373,   244)
+	179: Rel (     0,   125)  ->  Abs (   373,   369)
+	180: Rel (  -125,     0)  ->  Abs (   248,   369)
+	181: Rel (     0,  -125)  ->  Abs (   248,   244)
+	182: Rel (  -124,  -125)  ->  Abs (   124,   119)
+	183: Rel (     0,  -124)  ->  Abs (   124,    -5)
+	184: Rel (   124,     0)  ->  Abs (   248,    -5)
+	185: Rel (     0,   124)  ->  Abs (   248,   119)
+	186: Rel (   125,     0)  ->  Abs (   373,   119)
+	187: Rel (     0,  -124)  ->  Abs (   373,    -5)
+	188: Rel (   124,     0)  ->  Abs (   497,    -5)
+	189: Rel (     0,   124)  ->  Abs (   497,   119)
+	190: Rel (   125,     0)  ->  Abs (   622,   119)
+	191: Rel (     0,  -124)  ->  Abs (   622,    -5)
+	192: Rel (   125,     0)  ->  Abs (   747,    -5)
+	193: Rel (     0,   124)  ->  Abs (   747,   119)
+	194: Rel (   124,     0)  ->  Abs (   871,   119)
+	195: Rel (     0,  -124)  ->  Abs (   871,    -5)
+	196: Rel (   125,     0)  ->  Abs (   996,    -5)
+	197: Rel (     0,   124)  ->  Abs (   996,   119)
+	198: Rel (   125,     0)  ->  Abs (  1121,   119)
+	199: Rel (     0,  -124)  ->  Abs (  1121,    -5)
+	200: Rel (   124,     0)  ->  Abs (  1245,    -5)
+	201: Rel (     0,   124)  ->  Abs (  1245,   119)
+	202: Rel (   125,  -374)  ->  Abs (  1370,  -255)
+	203: Rel (     0,   125)  ->  Abs (  1370,  -130)
+	204: Rel (  -125,     0)  ->  Abs (  1245,  -130)
+	205: Rel (     0,  -125)  ->  Abs (  1245,  -255)
+	206: Rel (  -124,     0)  ->  Abs (  1121,  -255)
+	207: Rel (     0,   125)  ->  Abs (  1121,  -130)
+	208: Rel (  -125,     0)  ->  Abs (   996,  -130)
+	209: Rel (     0,  -125)  ->  Abs (   996,  -255)
+	210: Rel (  -125,     0)  ->  Abs (   871,  -255)
+	211: Rel (     0,   125)  ->  Abs (   871,  -130)
+	212: Rel (  -124,     0)  ->  Abs (   747,  -130)
+	213: Rel (     0,  -125)  ->  Abs (   747,  -255)
+	214: Rel (  -125,     0)  ->  Abs (   622,  -255)
+	215: Rel (     0,   125)  ->  Abs (   622,  -130)
+	216: Rel (  -125,     0)  ->  Abs (   497,  -130)
+	217: Rel (     0,  -125)  ->  Abs (   497,  -255)
+	218: Rel (  -124,     0)  ->  Abs (   373,  -255)
+	219: Rel (     0,   125)  ->  Abs (   373,  -130)
+	220: Rel (  -125,     0)  ->  Abs (   248,  -130)
+	221: Rel (     0,  -125)  ->  Abs (   248,  -255)
+	222: Rel (  -124,  -124)  ->  Abs (   124,  -379)
+	223: Rel (     0,  -125)  ->  Abs (   124,  -504)
+	224: Rel (   124,     0)  ->  Abs (   248,  -504)
+	225: Rel (     0,   125)  ->  Abs (   248,  -379)
+	226: Rel (   125,     0)  ->  Abs (   373,  -379)
+	227: Rel (     0,  -125)  ->  Abs (   373,  -504)
+	228: Rel (   124,     0)  ->  Abs (   497,  -504)
+	229: Rel (     0,   125)  ->  Abs (   497,  -379)
+	230: Rel (   125,     0)  ->  Abs (   622,  -379)
+	231: Rel (     0,  -125)  ->  Abs (   622,  -504)
+	232: Rel (   125,     0)  ->  Abs (   747,  -504)
+	233: Rel (     0,   125)  ->  Abs (   747,  -379)
+	234: Rel (   124,     0)  ->  Abs (   871,  -379)
+	235: Rel (     0,  -125)  ->  Abs (   871,  -504)
+	236: Rel (   125,     0)  ->  Abs (   996,  -504)
+	237: Rel (     0,   125)  ->  Abs (   996,  -379)
+	238: Rel (   125,     0)  ->  Abs (  1121,  -379)
+	239: Rel (     0,  -125)  ->  Abs (  1121,  -504)
+	240: Rel (   124,     0)  ->  Abs (  1245,  -504)
+	241: Rel (     0,   125)  ->  Abs (  1245,  -379)
+
+	Glyph 374: off = 0x0001275E, len = 28
+	  numberOfContours:	1
+	  xMin:			146
+	  yMin:			0
+	  xMax:			1090
+	  yMax:			944
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   146,   944)  ->  Abs (   146,   944)
+	  1: Rel (   944,     0)  ->  Abs (  1090,   944)
+	  2: Rel (     0,  -944)  ->  Abs (  1090,     0)
+	  3: Rel (  -944,     0)  ->  Abs (   146,     0)
+
+	Glyph 375: off = 0x0001277A, len = 26
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			317
+	  xMax:			2047
+	  yMax:			703
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:        XDual                         On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (     0,   703)  ->  Abs (     0,   703)
+	  1: Rel (  2047,     0)  ->  Abs (  2047,   703)
+	  2: Rel (     0,  -386)  ->  Abs (  2047,   317)
+	  3: Rel ( -2047,     0)  ->  Abs (     0,   317)
+
+	Glyph 376: off = 0x00012794, len = 28
+	  numberOfContours:	1
+	  xMin:			304
+	  yMin:			0
+	  xMax:			1724
+	  yMax:			1419
+
+	EndPoints
+	---------
+	  0:  2
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:                                      On
+	  2:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   304,     0)  ->  Abs (   304,     0)
+	  1: Rel (   710,  1419)  ->  Abs (  1014,  1419)
+	  2: Rel (   710, -1419)  ->  Abs (  1724,     0)
+
+	Glyph 377: off = 0x000127B0, len = 28
+	  numberOfContours:	1
+	  xMin:			288
+	  yMin:			-31
+	  xMax:			1739
+	  yMax:			1417
+
+	EndPoints
+	---------
+	  0:  2
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:              Rep-  2                 On
+
+	Coordinates
+	-----------
+	  0: Rel (   288,  1417)  ->  Abs (   288,  1417)
+	  1: Rel (  1451,  -724)  ->  Abs (  1739,   693)
+	  2: Rel ( -1451,  -724)  ->  Abs (   288,   -31)
+
+	Glyph 378: off = 0x000127CC, len = 28
+	  numberOfContours:	1
+	  xMin:			304
+	  yMin:			-31
+	  xMax:			1724
+	  yMax:			1388
+
+	EndPoints
+	---------
+	  0:  2
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:              Rep-  2                 On
+
+	Coordinates
+	-----------
+	  0: Rel (  1724,  1388)  ->  Abs (  1724,  1388)
+	  1: Rel (  -710, -1419)  ->  Abs (  1014,   -31)
+	  2: Rel (  -710,  1419)  ->  Abs (   304,  1388)
+
+	Glyph 379: off = 0x000127E8, len = 28
+	  numberOfContours:	1
+	  xMin:			288
+	  yMin:			-31
+	  xMax:			1739
+	  yMax:			1417
+
+	EndPoints
+	---------
+	  0:  2
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (  1739,  1417)  ->  Abs (  1739,  1417)
+	  1: Rel (     0, -1448)  ->  Abs (  1739,   -31)
+	  2: Rel ( -1451,   724)  ->  Abs (   288,   693)
+
+	Glyph 380: off = 0x00012804, len = 92
+	  numberOfContours:	2
+	  xMin:			178
+	  yMin:			137
+	  xMax:			1059
+	  yMax:			1018
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  27
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                                      Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                                      Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:  YDual                       X-Short Off
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   618,  1018)  ->  Abs (   618,  1018)
+	  1: Rel (   111,     0)  ->  Abs (   729,  1018)
+	  2: Rel (   212,  -114)  ->  Abs (   941,   904)
+	  3: Rel (   118,  -212)  ->  Abs (  1059,   692)
+	  4: Rel (     0,  -114)  ->  Abs (  1059,   578)
+	  5: Rel (     0,  -183)  ->  Abs (  1059,   395)
+	  6: Rel (  -258,  -258)  ->  Abs (   801,   137)
+	  7: Rel (  -182,     0)  ->  Abs (   619,   137)
+	  8: Rel (  -183,     0)  ->  Abs (   436,   137)
+	  9: Rel (  -258,   258)  ->  Abs (   178,   395)
+	 10: Rel (     0,   183)  ->  Abs (   178,   578)
+	 11: Rel (     0,   115)  ->  Abs (   178,   693)
+	 12: Rel (   118,   211)  ->  Abs (   296,   904)
+	 13: Rel (   212,   114)  ->  Abs (   508,  1018)
+	 14: Rel (   111,   -76)  ->  Abs (   619,   942)
+	 15: Rel (   -93,     0)  ->  Abs (   526,   942)
+	 16: Rel (  -174,   -94)  ->  Abs (   352,   848)
+	 17: Rel (   -98,  -176)  ->  Abs (   254,   672)
+	 18: Rel (     0,   -94)  ->  Abs (   254,   578)
+	 19: Rel (     0,  -151)  ->  Abs (   254,   427)
+	 20: Rel (   214,  -214)  ->  Abs (   468,   213)
+	 21: Rel (   151,     0)  ->  Abs (   619,   213)
+	 22: Rel (   151,     0)  ->  Abs (   770,   213)
+	 23: Rel (   213,   214)  ->  Abs (   983,   427)
+	 24: Rel (     0,   151)  ->  Abs (   983,   578)
+	 25: Rel (     0,    94)  ->  Abs (   983,   672)
+	 26: Rel (   -98,   176)  ->  Abs (   885,   848)
+	 27: Rel (  -174,    94)  ->  Abs (   711,   942)
+
+	Glyph 381: off = 0x00012860, len = 58
+	  numberOfContours:	2
+	  xMin:			128
+	  yMin:			0
+	  xMax:			1108
+	  yMax:			980
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  15
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:                                      On
+	  5:  YDual                       X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   128,     0)  ->  Abs (   128,     0)
+	  1: Rel (     0,   980)  ->  Abs (   128,   980)
+	  2: Rel (   980,     0)  ->  Abs (  1108,   980)
+	  3: Rel (     0,  -980)  ->  Abs (  1108,     0)
+	  4: Rel (  -490,   692)  ->  Abs (   618,   692)
+	  5: Rel (   -84,     0)  ->  Abs (   534,   692)
+	  6: Rel (  -118,  -118)  ->  Abs (   416,   574)
+	  7: Rel (     0,   -84)  ->  Abs (   416,   490)
+	  8: Rel (     0,   -83)  ->  Abs (   416,   407)
+	  9: Rel (   119,  -119)  ->  Abs (   535,   288)
+	 10: Rel (    83,     0)  ->  Abs (   618,   288)
+	 11: Rel (    84,     0)  ->  Abs (   702,   288)
+	 12: Rel (   118,   119)  ->  Abs (   820,   407)
+	 13: Rel (     0,    83)  ->  Abs (   820,   490)
+	 14: Rel (     0,    84)  ->  Abs (   820,   574)
+	 15: Rel (  -118,   118)  ->  Abs (   702,   692)
+
+	Glyph 382: off = 0x0001289A, len = 106
+	  numberOfContours:	3
+	  xMin:			42
+	  yMin:			0
+	  xMax:			1197
+	  yMax:			1155
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  17
+	  2:  31
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:                                      On
+	  5:  YDual                       X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                                      Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:                                      Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    42,     0)  ->  Abs (    42,     0)
+	  1: Rel (     0,  1155)  ->  Abs (    42,  1155)
+	  2: Rel (  1155,     0)  ->  Abs (  1197,  1155)
+	  3: Rel (     0, -1155)  ->  Abs (  1197,     0)
+	  4: Rel (  -577,  1018)  ->  Abs (   620,  1018)
+	  5: Rel (  -112,     0)  ->  Abs (   508,  1018)
+	  6: Rel (  -211,  -114)  ->  Abs (   297,   904)
+	  7: Rel (  -118,  -212)  ->  Abs (   179,   692)
+	  8: Rel (     0,  -115)  ->  Abs (   179,   577)
+	  9: Rel (     0,  -182)  ->  Abs (   179,   395)
+	 10: Rel (   258,  -258)  ->  Abs (   437,   137)
+	 11: Rel (   183,     0)  ->  Abs (   620,   137)
+	 12: Rel (   182,     0)  ->  Abs (   802,   137)
+	 13: Rel (   258,   258)  ->  Abs (  1060,   395)
+	 14: Rel (     0,   182)  ->  Abs (  1060,   577)
+	 15: Rel (     0,   115)  ->  Abs (  1060,   692)
+	 16: Rel (  -118,   212)  ->  Abs (   942,   904)
+	 17: Rel (  -211,   114)  ->  Abs (   731,  1018)
+	 18: Rel (  -111,   -76)  ->  Abs (   620,   942)
+	 19: Rel (    91,     0)  ->  Abs (   711,   942)
+	 20: Rel (   175,   -94)  ->  Abs (   886,   848)
+	 21: Rel (    98,  -175)  ->  Abs (   984,   673)
+	 22: Rel (     0,   -96)  ->  Abs (   984,   577)
+	 23: Rel (     0,  -151)  ->  Abs (   984,   426)
+	 24: Rel (  -213,  -213)  ->  Abs (   771,   213)
+	 25: Rel (  -151,     0)  ->  Abs (   620,   213)
+	 26: Rel (  -152,     0)  ->  Abs (   468,   213)
+	 27: Rel (  -213,   213)  ->  Abs (   255,   426)
+	 28: Rel (     0,   151)  ->  Abs (   255,   577)
+	 29: Rel (     0,    96)  ->  Abs (   255,   673)
+	 30: Rel (    98,   175)  ->  Abs (   353,   848)
+	 31: Rel (   175,    94)  ->  Abs (   528,   942)
+
+	Glyph 383: off = 0x00012904, len = 202
+	  numberOfContours:	5
+	  xMin:			408
+	  yMin:			-119
+	  xMax:			1683
+	  yMax:			1156
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+	  2:  35
+	  3:  47
+	  4:  59
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         Off
+	  2:                                      Off
+	  3:  YDual                               On
+	  4:  YDual                               Off
+	  5:                                      Off
+	  6:        XDual                         On
+	  7:        XDual                         Off
+	  8:                                      Off
+	  9:  YDual                               On
+	 10:  YDual                               Off
+	 11:                                      Off
+	 12:                              X-Short On
+	 13:  YDual XDual         Y-Short         Off
+	 14:                                      Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                                      Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                                      Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:                                      Off
+	 24:                                      On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:                      Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:        XDual         Y-Short X-Short Off
+	 48:                                      On
+	 49:  YDual XDual         Y-Short X-Short On
+	 50:        XDual         Y-Short X-Short Off
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:        XDual         Y-Short X-Short On
+	 55:                      Y-Short X-Short Off
+	 56:                      Y-Short X-Short Off
+	 57:  YDual                       X-Short On
+	 58:  YDual                       X-Short Off
+	 59:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1683,   518)  ->  Abs (  1683,   518)
+	  1: Rel (     0,  -264)  ->  Abs (  1683,   254)
+	  2: Rel (  -373,  -373)  ->  Abs (  1310,  -119)
+	  3: Rel (  -264,     0)  ->  Abs (  1046,  -119)
+	  4: Rel (  -264,     0)  ->  Abs (   782,  -119)
+	  5: Rel (  -374,   373)  ->  Abs (   408,   254)
+	  6: Rel (     0,   264)  ->  Abs (   408,   518)
+	  7: Rel (     0,   265)  ->  Abs (   408,   783)
+	  8: Rel (   374,   373)  ->  Abs (   782,  1156)
+	  9: Rel (   264,     0)  ->  Abs (  1046,  1156)
+	 10: Rel (   264,     0)  ->  Abs (  1310,  1156)
+	 11: Rel (   373,  -373)  ->  Abs (  1683,   783)
+	 12: Rel (   -92,  -265)  ->  Abs (  1591,   518)
+	 13: Rel (     0,   226)  ->  Abs (  1591,   744)
+	 14: Rel (  -319,   319)  ->  Abs (  1272,  1063)
+	 15: Rel (  -226,     0)  ->  Abs (  1046,  1063)
+	 16: Rel (  -226,     0)  ->  Abs (   820,  1063)
+	 17: Rel (  -319,  -319)  ->  Abs (   501,   744)
+	 18: Rel (     0,  -226)  ->  Abs (   501,   518)
+	 19: Rel (     0,  -225)  ->  Abs (   501,   293)
+	 20: Rel (   319,  -319)  ->  Abs (   820,   -26)
+	 21: Rel (   226,     0)  ->  Abs (  1046,   -26)
+	 22: Rel (   226,     0)  ->  Abs (  1272,   -26)
+	 23: Rel (   319,   319)  ->  Abs (  1591,   293)
+	 24: Rel (  -709,   357)  ->  Abs (   882,   650)
+	 25: Rel (     0,   -33)  ->  Abs (   882,   617)
+	 26: Rel (   -47,   -48)  ->  Abs (   835,   569)
+	 27: Rel (   -34,     0)  ->  Abs (   801,   569)
+	 28: Rel (   -33,     0)  ->  Abs (   768,   569)
+	 29: Rel (   -48,    48)  ->  Abs (   720,   617)
+	 30: Rel (     0,    33)  ->  Abs (   720,   650)
+	 31: Rel (     0,    34)  ->  Abs (   720,   684)
+	 32: Rel (    48,    47)  ->  Abs (   768,   731)
+	 33: Rel (    33,     0)  ->  Abs (   801,   731)
+	 34: Rel (    34,     0)  ->  Abs (   835,   731)
+	 35: Rel (    47,   -47)  ->  Abs (   882,   684)
+	 36: Rel (   489,   -34)  ->  Abs (  1371,   650)
+	 37: Rel (     0,   -33)  ->  Abs (  1371,   617)
+	 38: Rel (   -47,   -48)  ->  Abs (  1324,   569)
+	 39: Rel (   -34,     0)  ->  Abs (  1290,   569)
+	 40: Rel (   -33,     0)  ->  Abs (  1257,   569)
+	 41: Rel (   -48,    48)  ->  Abs (  1209,   617)
+	 42: Rel (     0,    33)  ->  Abs (  1209,   650)
+	 43: Rel (     0,    34)  ->  Abs (  1209,   684)
+	 44: Rel (    48,    47)  ->  Abs (  1257,   731)
+	 45: Rel (    33,     0)  ->  Abs (  1290,   731)
+	 46: Rel (    34,     0)  ->  Abs (  1324,   731)
+	 47: Rel (    47,   -47)  ->  Abs (  1371,   684)
+	 48: Rel (  -619,  -371)  ->  Abs (   752,   313)
+	 49: Rel (    62,    36)  ->  Abs (   814,   349)
+	 50: Rel (    79,  -144)  ->  Abs (   893,   205)
+	 51: Rel (   153,     0)  ->  Abs (  1046,   205)
+	 52: Rel (   153,     0)  ->  Abs (  1199,   205)
+	 53: Rel (    78,   144)  ->  Abs (  1277,   349)
+	 54: Rel (    63,   -36)  ->  Abs (  1340,   313)
+	 55: Rel (   -50,   -95)  ->  Abs (  1290,   218)
+	 56: Rel (  -147,  -100)  ->  Abs (  1143,   118)
+	 57: Rel (   -97,     0)  ->  Abs (  1046,   118)
+	 58: Rel (   -98,     0)  ->  Abs (   948,   118)
+	 59: Rel (  -146,   100)  ->  Abs (   802,   218)
+
+	Glyph 384: off = 0x000129CE, len = 160
+	  numberOfContours:	4
+	  xMin:			440
+	  yMin:			-119
+	  xMax:			1715
+	  yMax:			1156
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+	  2:  35
+	  3:  47
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         Off
+	  2:                                      Off
+	  3:  YDual                               On
+	  4:  YDual                               Off
+	  5:                                      Off
+	  6:        XDual                         On
+	  7:        XDual                         Off
+	  8:                                      Off
+	  9:  YDual                               On
+	 10:  YDual                               Off
+	 11:                                      Off
+	 12:                      Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual               Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:                      Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:        XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:                                      On
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short X-Short Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:  YDual               Y-Short X-Short On
+	 44:                      Y-Short X-Short Off
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short Off
+	 47:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1715,   518)  ->  Abs (  1715,   518)
+	  1: Rel (     0,  -264)  ->  Abs (  1715,   254)
+	  2: Rel (  -373,  -373)  ->  Abs (  1342,  -119)
+	  3: Rel (  -264,     0)  ->  Abs (  1078,  -119)
+	  4: Rel (  -264,     0)  ->  Abs (   814,  -119)
+	  5: Rel (  -374,   373)  ->  Abs (   440,   254)
+	  6: Rel (     0,   264)  ->  Abs (   440,   518)
+	  7: Rel (     0,   265)  ->  Abs (   440,   783)
+	  8: Rel (   374,   373)  ->  Abs (   814,  1156)
+	  9: Rel (   264,     0)  ->  Abs (  1078,  1156)
+	 10: Rel (   264,     0)  ->  Abs (  1342,  1156)
+	 11: Rel (   373,  -373)  ->  Abs (  1715,   783)
+	 12: Rel (  -801,  -133)  ->  Abs (   914,   650)
+	 13: Rel (     0,    34)  ->  Abs (   914,   684)
+	 14: Rel (   -47,    47)  ->  Abs (   867,   731)
+	 15: Rel (   -34,     0)  ->  Abs (   833,   731)
+	 16: Rel (   -33,     0)  ->  Abs (   800,   731)
+	 17: Rel (   -48,   -47)  ->  Abs (   752,   684)
+	 18: Rel (     0,   -34)  ->  Abs (   752,   650)
+	 19: Rel (     0,   -33)  ->  Abs (   752,   617)
+	 20: Rel (    48,   -48)  ->  Abs (   800,   569)
+	 21: Rel (    33,     0)  ->  Abs (   833,   569)
+	 22: Rel (    34,     0)  ->  Abs (   867,   569)
+	 23: Rel (    47,    48)  ->  Abs (   914,   617)
+	 24: Rel (   489,    33)  ->  Abs (  1403,   650)
+	 25: Rel (     0,    34)  ->  Abs (  1403,   684)
+	 26: Rel (   -47,    47)  ->  Abs (  1356,   731)
+	 27: Rel (   -34,     0)  ->  Abs (  1322,   731)
+	 28: Rel (   -33,     0)  ->  Abs (  1289,   731)
+	 29: Rel (   -48,   -47)  ->  Abs (  1241,   684)
+	 30: Rel (     0,   -34)  ->  Abs (  1241,   650)
+	 31: Rel (     0,   -33)  ->  Abs (  1241,   617)
+	 32: Rel (    48,   -48)  ->  Abs (  1289,   569)
+	 33: Rel (    33,     0)  ->  Abs (  1322,   569)
+	 34: Rel (    34,     0)  ->  Abs (  1356,   569)
+	 35: Rel (    47,    48)  ->  Abs (  1403,   617)
+	 36: Rel (  -619,  -304)  ->  Abs (   784,   313)
+	 37: Rel (    50,   -95)  ->  Abs (   834,   218)
+	 38: Rel (   146,  -100)  ->  Abs (   980,   118)
+	 39: Rel (    98,     0)  ->  Abs (  1078,   118)
+	 40: Rel (    97,     0)  ->  Abs (  1175,   118)
+	 41: Rel (   147,   100)  ->  Abs (  1322,   218)
+	 42: Rel (    50,    95)  ->  Abs (  1372,   313)
+	 43: Rel (   -63,    36)  ->  Abs (  1309,   349)
+	 44: Rel (   -78,  -144)  ->  Abs (  1231,   205)
+	 45: Rel (  -153,     0)  ->  Abs (  1078,   205)
+	 46: Rel (  -153,     0)  ->  Abs (   925,   205)
+	 47: Rel (   -79,   144)  ->  Abs (   846,   349)
+
+	Glyph 385: off = 0x00012A6E, len = 214
+	  numberOfContours:	2
+	  xMin:			16
+	  yMin:			-223
+	  xMax:			1862
+	  yMax:			1621
+
+	EndPoints
+	---------
+	  0:  47
+	  1:  59
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:                                      On
+	  7:        XDual         Y-Short X-Short On
+	  8:                                      On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:  YDual                               On
+	 14:        XDual         Y-Short         On
+	 15:  YDual                               On
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:                                      On
+	 19:                      Y-Short X-Short On
+	 20:                                      On
+	 21:                      Y-Short X-Short Off
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short X-Short On
+	 24:        XDual                         On
+	 25:  YDual                       X-Short On
+	 26:        XDual                         On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:                                      On
+	 31:  YDual               Y-Short X-Short On
+	 32:                                      On
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual               Y-Short X-Short On
+	 36:  YDual                               On
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual                               On
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:                                      On
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:                                      On
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short X-Short On
+	 48:                                      On
+	 49:  YDual XDual         Y-Short         Off
+	 50:                                      Off
+	 51:  YDual                       X-Short On
+	 52:  YDual                       X-Short Off
+	 53:                                      Off
+	 54:        XDual         Y-Short         On
+	 55:        XDual         Y-Short         Off
+	 56:                                      Off
+	 57:  YDual XDual                 X-Short On
+	 58:  YDual XDual                 X-Short Off
+	 59:                                      Off
+
+	Coordinates
+	-----------
+	  0: Rel (   902,  1621)  ->  Abs (   902,  1621)
+	  1: Rel (    76,     0)  ->  Abs (   978,  1621)
+	  2: Rel (     0,  -337)  ->  Abs (   978,  1284)
+	  3: Rel (   102,    -7)  ->  Abs (  1080,  1277)
+	  4: Rel (   159,   -63)  ->  Abs (  1239,  1214)
+	  5: Rel (    88,   -71)  ->  Abs (  1327,  1143)
+	  6: Rel (   290,   284)  ->  Abs (  1617,  1427)
+	  7: Rel (    52,   -53)  ->  Abs (  1669,  1374)
+	  8: Rel (  -286,  -286)  ->  Abs (  1383,  1088)
+	  9: Rel (    73,   -95)  ->  Abs (  1456,   993)
+	 10: Rel (    30,   -74)  ->  Abs (  1486,   919)
+	 11: Rel (    38,   -96)  ->  Abs (  1524,   823)
+	 12: Rel (     2,   -93)  ->  Abs (  1526,   730)
+	 13: Rel (   336,     0)  ->  Abs (  1862,   730)
+	 14: Rel (     0,   -69)  ->  Abs (  1862,   661)
+	 15: Rel (  -335,     0)  ->  Abs (  1527,   661)
+	 16: Rel (   -19,  -189)  ->  Abs (  1508,   472)
+	 17: Rel (  -124,  -158)  ->  Abs (  1384,   314)
+	 18: Rel (   285,  -291)  ->  Abs (  1669,    23)
+	 19: Rel (   -57,   -50)  ->  Abs (  1612,   -27)
+	 20: Rel (  -283,   282)  ->  Abs (  1329,   255)
+	 21: Rel (   -98,   -72)  ->  Abs (  1231,   183)
+	 22: Rel (  -146,   -57)  ->  Abs (  1085,   126)
+	 23: Rel (  -107,   -12)  ->  Abs (   978,   114)
+	 24: Rel (     0,  -337)  ->  Abs (   978,  -223)
+	 25: Rel (   -76,     0)  ->  Abs (   902,  -223)
+	 26: Rel (     0,   337)  ->  Abs (   902,   114)
+	 27: Rel (  -112,    15)  ->  Abs (   790,   129)
+	 28: Rel (  -153,    62)  ->  Abs (   637,   191)
+	 29: Rel (   -80,    61)  ->  Abs (   557,   252)
+	 30: Rel (  -294,  -278)  ->  Abs (   263,   -26)
+	 31: Rel (   -51,    51)  ->  Abs (   212,    25)
+	 32: Rel (   285,   286)  ->  Abs (   497,   311)
+	 33: Rel (   -66,    84)  ->  Abs (   431,   395)
+	 34: Rel (   -68,   164)  ->  Abs (   363,   559)
+	 35: Rel (   -11,   106)  ->  Abs (   352,   665)
+	 36: Rel (  -336,     0)  ->  Abs (    16,   665)
+	 37: Rel (     0,    69)  ->  Abs (    16,   734)
+	 38: Rel (   336,     0)  ->  Abs (   352,   734)
+	 39: Rel (     9,   106)  ->  Abs (   361,   840)
+	 40: Rel (    66,   159)  ->  Abs (   427,   999)
+	 41: Rel (    69,    84)  ->  Abs (   496,  1083)
+	 42: Rel (  -284,   287)  ->  Abs (   212,  1370)
+	 43: Rel (    48,    57)  ->  Abs (   260,  1427)
+	 44: Rel (   292,  -282)  ->  Abs (   552,  1145)
+	 45: Rel (   101,    70)  ->  Abs (   653,  1215)
+	 46: Rel (   157,    61)  ->  Abs (   810,  1276)
+	 47: Rel (    92,     8)  ->  Abs (   902,  1284)
+	 48: Rel (   548,  -585)  ->  Abs (  1450,   699)
+	 49: Rel (     0,   212)  ->  Abs (  1450,   911)
+	 50: Rel (  -301,   300)  ->  Abs (  1149,  1211)
+	 51: Rel (  -212,     0)  ->  Abs (   937,  1211)
+	 52: Rel (  -212,     0)  ->  Abs (   725,  1211)
+	 53: Rel (  -300,  -300)  ->  Abs (   425,   911)
+	 54: Rel (     0,  -212)  ->  Abs (   425,   699)
+	 55: Rel (     0,  -212)  ->  Abs (   425,   487)
+	 56: Rel (   300,  -301)  ->  Abs (   725,   186)
+	 57: Rel (   212,     0)  ->  Abs (   937,   186)
+	 58: Rel (   212,     0)  ->  Abs (  1149,   186)
+	 59: Rel (   301,   301)  ->  Abs (  1450,   487)
+
+	Glyph 386: off = 0x00012B44, len = 128
+	  numberOfContours:	2
+	  xMin:			244
+	  yMin:			-439
+	  xMax:			1291
+	  yMax:			1507
+
+	EndPoints
+	---------
+	  0:  25
+	  1:  39
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+	  8:  YDual                               On
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual                               On
+	 11:        XDual                         On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:                                      Off
+	 26:                              X-Short On
+	 27:  YDual                       X-Short Off
+	 28:                      Y-Short X-Short Off
+	 29:                      Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                                      Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:                                      Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   796,   461)  ->  Abs (   796,   461)
+	  1: Rel (     0,  -402)  ->  Abs (   796,    59)
+	  2: Rel (   459,     0)  ->  Abs (  1255,    59)
+	  3: Rel (     0,   -59)  ->  Abs (  1255,     0)
+	  4: Rel (  -459,     0)  ->  Abs (   796,     0)
+	  5: Rel (     0,  -439)  ->  Abs (   796,  -439)
+	  6: Rel (   -59,     0)  ->  Abs (   737,  -439)
+	  7: Rel (     0,   439)  ->  Abs (   737,     0)
+	  8: Rel (  -460,     0)  ->  Abs (   277,     0)
+	  9: Rel (     0,    59)  ->  Abs (   277,    59)
+	 10: Rel (   460,     0)  ->  Abs (   737,    59)
+	 11: Rel (     0,   402)  ->  Abs (   737,   461)
+	 12: Rel (  -103,     0)  ->  Abs (   634,   461)
+	 13: Rel (  -245,   131)  ->  Abs (   389,   592)
+	 14: Rel (  -145,   251)  ->  Abs (   244,   843)
+	 15: Rel (     0,   140)  ->  Abs (   244,   983)
+	 16: Rel (     0,   136)  ->  Abs (   244,  1119)
+	 17: Rel (   139,   250)  ->  Abs (   383,  1369)
+	 18: Rel (   248,   138)  ->  Abs (   631,  1507)
+	 19: Rel (   137,     0)  ->  Abs (   768,  1507)
+	 20: Rel (   136,     0)  ->  Abs (   904,  1507)
+	 21: Rel (   249,  -139)  ->  Abs (  1153,  1368)
+	 22: Rel (   138,  -249)  ->  Abs (  1291,  1119)
+	 23: Rel (     0,  -136)  ->  Abs (  1291,   983)
+	 24: Rel (     0,  -209)  ->  Abs (  1291,   774)
+	 25: Rel (  -287,  -303)  ->  Abs (  1004,   471)
+	 26: Rel (  -237,   980)  ->  Abs (   767,  1451)
+	 27: Rel (  -118,     0)  ->  Abs (   649,  1451)
+	 28: Rel (  -225,  -121)  ->  Abs (   424,  1330)
+	 29: Rel (  -126,  -226)  ->  Abs (   298,  1104)
+	 30: Rel (     0,  -122)  ->  Abs (   298,   982)
+	 31: Rel (     0,  -195)  ->  Abs (   298,   787)
+	 32: Rel (   275,  -275)  ->  Abs (   573,   512)
+	 33: Rel (   194,     0)  ->  Abs (   767,   512)
+	 34: Rel (   195,     0)  ->  Abs (   962,   512)
+	 35: Rel (   275,   275)  ->  Abs (  1237,   787)
+	 36: Rel (     0,   195)  ->  Abs (  1237,   982)
+	 37: Rel (     0,   122)  ->  Abs (  1237,  1104)
+	 38: Rel (  -126,   226)  ->  Abs (  1111,  1330)
+	 39: Rel (  -225,   121)  ->  Abs (   886,  1451)
+
+	Glyph 387: off = 0x00012BC4, len = 136
+	  numberOfContours:	2
+	  xMin:			111
+	  yMin:			-262
+	  xMax:			1415
+	  yMax:			1620
+
+	EndPoints
+	---------
+	  0:  24
+	  1:  38
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short On
+	  2:        XDual                 X-Short On
+	  3:                      Y-Short X-Short On
+	  4:                              X-Short On
+	  5:                                      On
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:                                      Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:                                      On
+	 23:                                      On
+	 24:  YDual               Y-Short X-Short On
+	 25:        XDual                 X-Short On
+	 26:  YDual                       X-Short Off
+	 27:                      Y-Short X-Short Off
+	 28:                      Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:                                      Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:                                      Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1216,  1620)  ->  Abs (  1216,  1620)
+	  1: Rel (    36,   -16)  ->  Abs (  1252,  1604)
+	  2: Rel (   163,  -666)  ->  Abs (  1415,   938)
+	  3: Rel (   -57,   -15)  ->  Abs (  1358,   923)
+	  4: Rel (  -142,   581)  ->  Abs (  1216,  1504)
+	  5: Rel (  -358,  -768)  ->  Abs (   858,   736)
+	  6: Rel (   148,   -75)  ->  Abs (  1006,   661)
+	  7: Rel (   152,  -254)  ->  Abs (  1158,   407)
+	  8: Rel (     0,  -145)  ->  Abs (  1158,   262)
+	  9: Rel (     0,  -136)  ->  Abs (  1158,   126)
+	 10: Rel (  -138,  -249)  ->  Abs (  1020,  -123)
+	 11: Rel (  -249,  -139)  ->  Abs (   771,  -262)
+	 12: Rel (  -137,     0)  ->  Abs (   634,  -262)
+	 13: Rel (  -136,     0)  ->  Abs (   498,  -262)
+	 14: Rel (  -249,   139)  ->  Abs (   249,  -123)
+	 15: Rel (  -138,   249)  ->  Abs (   111,   126)
+	 16: Rel (     0,   136)  ->  Abs (   111,   262)
+	 17: Rel (     0,   217)  ->  Abs (   111,   479)
+	 18: Rel (   307,   306)  ->  Abs (   418,   785)
+	 19: Rel (   219,     0)  ->  Abs (   637,   785)
+	 20: Rel (    78,     0)  ->  Abs (   715,   785)
+	 21: Rel (    88,   -27)  ->  Abs (   803,   758)
+	 22: Rel (   360,   771)  ->  Abs (  1163,  1529)
+	 23: Rel (  -537,  -265)  ->  Abs (   626,  1264)
+	 24: Rel (   -24,    53)  ->  Abs (   602,  1317)
+	 25: Rel (    32,  -586)  ->  Abs (   634,   731)
+	 26: Rel (  -118,     0)  ->  Abs (   516,   731)
+	 27: Rel (  -225,  -121)  ->  Abs (   291,   610)
+	 28: Rel (  -126,  -226)  ->  Abs (   165,   384)
+	 29: Rel (     0,  -122)  ->  Abs (   165,   262)
+	 30: Rel (     0,  -195)  ->  Abs (   165,    67)
+	 31: Rel (   275,  -275)  ->  Abs (   440,  -208)
+	 32: Rel (   194,     0)  ->  Abs (   634,  -208)
+	 33: Rel (   195,     0)  ->  Abs (   829,  -208)
+	 34: Rel (   275,   275)  ->  Abs (  1104,    67)
+	 35: Rel (     0,   195)  ->  Abs (  1104,   262)
+	 36: Rel (     0,   122)  ->  Abs (  1104,   384)
+	 37: Rel (  -126,   226)  ->  Abs (   978,   610)
+	 38: Rel (  -225,   121)  ->  Abs (   753,   731)
+
+	Glyph 388: off = 0x00012C4C, len = 112
+	  numberOfContours:	1
+	  xMin:			58
+	  yMin:			0
+	  xMax:			1030
+	  yMax:			1231
+
+	EndPoints
+	---------
+	  0:  34
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:                      Y-Short         Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:        XDual Rep-  2 Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short On
+	 16:        XDual         Y-Short X-Short On
+	 17:  YDual                               On
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual               Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   545,  1231)  ->  Abs (   545,  1231)
+	  1: Rel (    26,  -108)  ->  Abs (   571,  1123)
+	  2: Rel (   108,  -170)  ->  Abs (   679,   953)
+	  3: Rel (   277,  -251)  ->  Abs (   956,   702)
+	  4: Rel (    74,  -134)  ->  Abs (  1030,   568)
+	  5: Rel (     0,   -69)  ->  Abs (  1030,   499)
+	  6: Rel (     0,   -96)  ->  Abs (  1030,   403)
+	  7: Rel (  -128,  -128)  ->  Abs (   902,   275)
+	  8: Rel (   -92,     0)  ->  Abs (   810,   275)
+	  9: Rel (   -78,     0)  ->  Abs (   732,   275)
+	 10: Rel (  -127,    97)  ->  Abs (   605,   372)
+	 11: Rel (   -49,    93)  ->  Abs (   556,   465)
+	 12: Rel (     1,  -147)  ->  Abs (   557,   318)
+	 13: Rel (    75,  -173)  ->  Abs (   632,   145)
+	 14: Rel (   165,   -99)  ->  Abs (   797,    46)
+	 15: Rel (   137,    -9)  ->  Abs (   934,    37)
+	 16: Rel (     7,   -37)  ->  Abs (   941,     0)
+	 17: Rel (  -793,     0)  ->  Abs (   148,     0)
+	 18: Rel (     8,    37)  ->  Abs (   156,    37)
+	 19: Rel (   184,     0)  ->  Abs (   340,    37)
+	 20: Rel (   203,   215)  ->  Abs (   543,   252)
+	 21: Rel (    -4,   213)  ->  Abs (   539,   465)
+	 22: Rel (   -45,   -95)  ->  Abs (   494,   370)
+	 23: Rel (  -133,   -95)  ->  Abs (   361,   275)
+	 24: Rel (   -84,     0)  ->  Abs (   277,   275)
+	 25: Rel (   -90,     0)  ->  Abs (   187,   275)
+	 26: Rel (  -129,   130)  ->  Abs (    58,   405)
+	 27: Rel (     0,    91)  ->  Abs (    58,   496)
+	 28: Rel (     0,    73)  ->  Abs (    58,   569)
+	 29: Rel (    33,    59)  ->  Abs (    91,   628)
+	 30: Rel (    45,    82)  ->  Abs (   136,   710)
+	 31: Rel (   202,   166)  ->  Abs (   338,   876)
+	 32: Rel (    48,    54)  ->  Abs (   386,   930)
+	 33: Rel (    73,    83)  ->  Abs (   459,  1013)
+	 34: Rel (    67,   130)  ->  Abs (   526,  1143)
+
+	Glyph 389: off = 0x00012CBC, len = 150
+	  numberOfContours:	1
+	  xMin:			55
+	  yMin:			0
+	  xMax:			1288
+	  yMax:			1231
+
+	EndPoints
+	---------
+	  0:  51
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual               Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short On
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:                      Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:                      Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual               Y-Short X-Short On
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual               Y-Short X-Short On
+	 47:        XDual         Y-Short X-Short Off
+	 48:        XDual         Y-Short X-Short Off
+	 49:        XDual         Y-Short X-Short On
+	 50:        XDual         Y-Short X-Short Off
+	 51:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1098,     0)  ->  Abs (  1098,     0)
+	  1: Rel (  -848,     0)  ->  Abs (   250,     0)
+	  2: Rel (     8,    34)  ->  Abs (   258,    34)
+	  3: Rel (   165,    35)  ->  Abs (   423,    69)
+	  4: Rel (    54,    34)  ->  Abs (   477,   103)
+	  5: Rel (    81,    51)  ->  Abs (   558,   154)
+	  6: Rel (   103,   200)  ->  Abs (   661,   354)
+	  7: Rel (     0,   111)  ->  Abs (   661,   465)
+	  8: Rel (     0,    16)  ->  Abs (   661,   481)
+	  9: Rel (    -1,    30)  ->  Abs (   660,   511)
+	 10: Rel (   -61,  -124)  ->  Abs (   599,   387)
+	 11: Rel (  -175,  -114)  ->  Abs (   424,   273)
+	 12: Rel (   -91,     0)  ->  Abs (   333,   273)
+	 13: Rel (  -116,     0)  ->  Abs (   217,   273)
+	 14: Rel (  -162,   162)  ->  Abs (    55,   435)
+	 15: Rel (     0,   118)  ->  Abs (    55,   553)
+	 16: Rel (     0,   116)  ->  Abs (    55,   669)
+	 17: Rel (   148,   159)  ->  Abs (   203,   828)
+	 18: Rel (    94,     0)  ->  Abs (   297,   828)
+	 19: Rel (    60,     0)  ->  Abs (   357,   828)
+	 20: Rel (   103,   -51)  ->  Abs (   460,   777)
+	 21: Rel (   -42,    70)  ->  Abs (   418,   847)
+	 22: Rel (   -25,    71)  ->  Abs (   393,   918)
+	 23: Rel (     0,    41)  ->  Abs (   393,   959)
+	 24: Rel (     0,   114)  ->  Abs (   393,  1073)
+	 25: Rel (   158,   158)  ->  Abs (   551,  1231)
+	 26: Rel (   118,     0)  ->  Abs (   669,  1231)
+	 27: Rel (   118,     0)  ->  Abs (   787,  1231)
+	 28: Rel (   161,  -158)  ->  Abs (   948,  1073)
+	 29: Rel (     0,  -109)  ->  Abs (   948,   964)
+	 30: Rel (     0,   -89)  ->  Abs (   948,   875)
+	 31: Rel (   -69,   -98)  ->  Abs (   879,   777)
+	 32: Rel (    84,    40)  ->  Abs (   963,   817)
+	 33: Rel (    17,     5)  ->  Abs (   980,   822)
+	 34: Rel (    27,     8)  ->  Abs (  1007,   830)
+	 35: Rel (    34,     0)  ->  Abs (  1041,   830)
+	 36: Rel (   100,     0)  ->  Abs (  1141,   830)
+	 37: Rel (   147,  -157)  ->  Abs (  1288,   673)
+	 38: Rel (     0,  -116)  ->  Abs (  1288,   557)
+	 39: Rel (     0,  -120)  ->  Abs (  1288,   437)
+	 40: Rel (  -161,  -163)  ->  Abs (  1127,   274)
+	 41: Rel (  -113,     0)  ->  Abs (  1014,   274)
+	 42: Rel (   -63,     0)  ->  Abs (   951,   274)
+	 43: Rel (  -133,    61)  ->  Abs (   818,   335)
+	 44: Rel (   -49,    51)  ->  Abs (   769,   386)
+	 45: Rel (   -35,    37)  ->  Abs (   734,   423)
+	 46: Rel (   -52,    88)  ->  Abs (   682,   511)
+	 47: Rel (     4,  -159)  ->  Abs (   686,   352)
+	 48: Rel (    89,  -185)  ->  Abs (   775,   167)
+	 49: Rel (    92,   -61)  ->  Abs (   867,   106)
+	 50: Rel (    62,   -41)  ->  Abs (   929,    65)
+	 51: Rel (   161,   -31)  ->  Abs (  1090,    34)
+
+	Glyph 390: off = 0x00012D52, len = 94
+	  numberOfContours:	1
+	  xMin:			63
+	  yMin:			-24
+	  xMax:			1153
+	  yMax:			1231
+
+	EndPoints
+	---------
+	  0:  28
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short Off
+	 25:                      Y-Short X-Short On
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short On
+	 28:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   610,   -24)  ->  Abs (   610,   -24)
+	  1: Rel (   -31,   118)  ->  Abs (   579,    94)
+	  2: Rel (  -115,   207)  ->  Abs (   464,   301)
+	  3: Rel (  -165,   218)  ->  Abs (   299,   519)
+	  4: Rel (  -121,   160)  ->  Abs (   178,   679)
+	  5: Rel (   -28,    43)  ->  Abs (   150,   722)
+	  6: Rel (   -46,    70)  ->  Abs (   104,   792)
+	  7: Rel (   -41,   117)  ->  Abs (    63,   909)
+	  8: Rel (     0,    60)  ->  Abs (    63,   969)
+	  9: Rel (     0,   111)  ->  Abs (    63,  1080)
+	 10: Rel (   148,   150)  ->  Abs (   211,  1230)
+	 11: Rel (   109,     0)  ->  Abs (   320,  1230)
+	 12: Rel (   110,     0)  ->  Abs (   430,  1230)
+	 13: Rel (    81,   -78)  ->  Abs (   511,  1152)
+	 14: Rel (    61,   -58)  ->  Abs (   572,  1094)
+	 15: Rel (    38,  -115)  ->  Abs (   610,   979)
+	 16: Rel (    33,   113)  ->  Abs (   643,  1092)
+	 17: Rel (    60,    59)  ->  Abs (   703,  1151)
+	 18: Rel (    83,    80)  ->  Abs (   786,  1231)
+	 19: Rel (   109,     0)  ->  Abs (   895,  1231)
+	 20: Rel (   108,     0)  ->  Abs (  1003,  1231)
+	 21: Rel (   150,  -149)  ->  Abs (  1153,  1082)
+	 22: Rel (     0,  -103)  ->  Abs (  1153,   979)
+	 23: Rel (     0,   -90)  ->  Abs (  1153,   889)
+	 24: Rel (   -88,  -195)  ->  Abs (  1065,   694)
+	 25: Rel (  -126,  -158)  ->  Abs (   939,   536)
+	 26: Rel (  -164,  -207)  ->  Abs (   775,   329)
+	 27: Rel (   -75,  -133)  ->  Abs (   700,   196)
+	 28: Rel (   -59,  -105)  ->  Abs (   641,    91)
+
+	Glyph 391: off = 0x00012DB0, len = 70
+	  numberOfContours:	1
+	  xMin:			64
+	  yMin:			-24
+	  xMax:			982
+	  yMax:			1231
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:                      Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   521,  1231)  ->  Abs (   521,  1231)
+	  1: Rel (    89,  -151)  ->  Abs (   610,  1080)
+	  2: Rel (   130,  -173)  ->  Abs (   740,   907)
+	  3: Rel (   150,  -200)  ->  Abs (   890,   707)
+	  4: Rel (    92,  -103)  ->  Abs (   982,   604)
+	  5: Rel (   -74,   -78)  ->  Abs (   908,   526)
+	  6: Rel (  -168,  -224)  ->  Abs (   740,   302)
+	  7: Rel (  -136,  -182)  ->  Abs (   604,   120)
+	  8: Rel (   -82,  -144)  ->  Abs (   522,   -24)
+	  9: Rel (   -27,    52)  ->  Abs (   495,    28)
+	 10: Rel (   -47,    69)  ->  Abs (   448,    97)
+	 11: Rel (   -81,   120)  ->  Abs (   367,   217)
+	 12: Rel (  -120,   159)  ->  Abs (   247,   376)
+	 13: Rel (   -26,    35)  ->  Abs (   221,   411)
+	 14: Rel (  -157,   193)  ->  Abs (    64,   604)
+	 15: Rel (   101,   115)  ->  Abs (   165,   719)
+	 16: Rel (   159,   213)  ->  Abs (   324,   932)
+	 17: Rel (   118,   158)  ->  Abs (   442,  1090)
+
+	Glyph 392: off = 0x00012DF6, len = 94
+	  numberOfContours:	1
+	  xMin:			37
+	  yMin:			-37
+	  xMax:			987
+	  yMax:			1363
+
+	EndPoints
+	---------
+	  0:  30
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         On
+	 10:  YDual                       X-Short On
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short On
+	 18:        XDual                         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   486,  1363)  ->  Abs (   486,  1363)
+	  1: Rel (    38,     0)  ->  Abs (   524,  1363)
+	  2: Rel (   172,     0)  ->  Abs (   696,  1363)
+	  3: Rel (    55,   -14)  ->  Abs (   751,  1349)
+	  4: Rel (    79,   -20)  ->  Abs (   830,  1329)
+	  5: Rel (    60,   -57)  ->  Abs (   890,  1272)
+	  6: Rel (    45,   -42)  ->  Abs (   935,  1230)
+	  7: Rel (    52,  -153)  ->  Abs (   987,  1077)
+	  8: Rel (     0,  -102)  ->  Abs (   987,   975)
+	  9: Rel (     0,  -103)  ->  Abs (   987,   872)
+	 10: Rel (   -99,     0)  ->  Abs (   888,   872)
+	 11: Rel (     0,    43)  ->  Abs (   888,   915)
+	 12: Rel (     0,    68)  ->  Abs (   888,   983)
+	 13: Rel (   -57,    95)  ->  Abs (   831,  1078)
+	 14: Rel (   -56,    25)  ->  Abs (   775,  1103)
+	 15: Rel (   -73,    32)  ->  Abs (   702,  1135)
+	 16: Rel (   -89,     0)  ->  Abs (   613,  1135)
+	 17: Rel (   -28,     0)  ->  Abs (   585,  1135)
+	 18: Rel (     0,  -835)  ->  Abs (   585,   300)
+	 19: Rel (     0,  -121)  ->  Abs (   585,   179)
+	 20: Rel (   -64,  -135)  ->  Abs (   521,    44)
+	 21: Rel (  -156,   -81)  ->  Abs (   365,   -37)
+	 22: Rel (   -92,     0)  ->  Abs (   273,   -37)
+	 23: Rel (  -109,     0)  ->  Abs (   164,   -37)
+	 24: Rel (  -127,   123)  ->  Abs (    37,    86)
+	 25: Rel (     0,   100)  ->  Abs (    37,   186)
+	 26: Rel (     0,   105)  ->  Abs (    37,   291)
+	 27: Rel (   152,   143)  ->  Abs (   189,   434)
+	 28: Rel (   123,     0)  ->  Abs (   312,   434)
+	 29: Rel (    78,     0)  ->  Abs (   390,   434)
+	 30: Rel (    96,   -46)  ->  Abs (   486,   388)
+
+	Glyph 393: off = 0x00012E54, len = 98
+	  numberOfContours:	1
+	  xMin:			85
+	  yMin:			-128
+	  xMax:			1330
+	  yMax:			1519
+
+	EndPoints
+	---------
+	  0:  30
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short         On
+	  2:        XDual                         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short On
+	 16:        XDual                         On
+	 17:                      Y-Short         On
+	 18:        XDual                         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   534,  1271)  ->  Abs (   534,  1271)
+	  1: Rel (   796,   248)  ->  Abs (  1330,  1519)
+	  2: Rel (     0, -1108)  ->  Abs (  1330,   411)
+	  3: Rel (     0,  -124)  ->  Abs (  1330,   287)
+	  4: Rel (   -63,  -126)  ->  Abs (  1267,   161)
+	  5: Rel (  -151,   -82)  ->  Abs (  1116,    79)
+	  6: Rel (   -95,     0)  ->  Abs (  1021,    79)
+	  7: Rel (  -109,     0)  ->  Abs (   912,    79)
+	  8: Rel (  -130,   125)  ->  Abs (   782,   204)
+	  9: Rel (     0,    99)  ->  Abs (   782,   303)
+	 10: Rel (     0,   100)  ->  Abs (   782,   403)
+	 11: Rel (   154,   145)  ->  Abs (   936,   548)
+	 12: Rel (   122,     0)  ->  Abs (  1058,   548)
+	 13: Rel (    40,     0)  ->  Abs (  1098,   548)
+	 14: Rel (    61,   -14)  ->  Abs (  1159,   534)
+	 15: Rel (    69,   -29)  ->  Abs (  1228,   505)
+	 16: Rel (     0,   724)  ->  Abs (  1228,  1229)
+	 17: Rel (  -595,  -185)  ->  Abs (   633,  1044)
+	 18: Rel (     0,  -836)  ->  Abs (   633,   208)
+	 19: Rel (     0,  -121)  ->  Abs (   633,    87)
+	 20: Rel (   -64,  -135)  ->  Abs (   569,   -48)
+	 21: Rel (  -156,   -80)  ->  Abs (   413,  -128)
+	 22: Rel (   -92,     0)  ->  Abs (   321,  -128)
+	 23: Rel (  -109,     0)  ->  Abs (   212,  -128)
+	 24: Rel (  -127,   123)  ->  Abs (    85,    -5)
+	 25: Rel (     0,    99)  ->  Abs (    85,    94)
+	 26: Rel (     0,   105)  ->  Abs (    85,   199)
+	 27: Rel (   152,   143)  ->  Abs (   237,   342)
+	 28: Rel (   123,     0)  ->  Abs (   360,   342)
+	 29: Rel (    78,     0)  ->  Abs (   438,   342)
+	 30: Rel (    96,   -46)  ->  Abs (   534,   296)
+
+	Glyph 394: off = 0x00012EB6, len = 184
+	  numberOfContours:	-1  (Composite)
+	  xMin:			191
+	  yMin:			-25
+	  xMax:			1400
+	  yMax:			1466
+
+	     0: Flags:		0x0026
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	45
+		X WOffset:	535
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     1     4    30    15    16     2    85     4    28    13 
+	                            13     2    85     4 
+	00016: PUSHW[1]            -16 
+	00019: PUSHB[5]             11    11     2    85     4 
+	00025: PUSHW[1]            -32 
+	00028: PUSHB[5]              9    10     6    85     4 
+	00034: PUSHW[1]             -4 
+	00037: NPUSHB      (17):    12    12     6    85     4    18    13    13     6    85 
+	                             4     9    15    15     6    85     4 
+	00056: PUSHW[1]            -38 
+	00059: NPUSHB      (22):    16    16     6    85    79     4    95     4   159     4 
+	                           191     4   192     4     5     4     3   150    72    43 
+	                             0     0 
+	00083: PUSHW[1]            -10 
+	00086: PUSHB[5]             16    16     2    85     0 
+	00092: PUSHW[1]             -6 
+	00095: PUSHB[5]             12    13     2    85     0 
+	00101: PUSHW[1]            -17 
+	00104: PUSHB[5]             16    16     6    85     0 
+	00110: PUSHW[1]            -13 
+	00113: PUSHB[5]             15    15     6    85     0 
+	00119: PUSHW[1]             -7 
+	00122: NPUSHB      (14):    11    13     6    85   111     0   144     0     2     0 
+	                            22   191    72    43 
+	00138: SVTCA[x-axis] 
+	00139: CALL       
+	00140: DELTAP1    
+	00141: CALL       
+	00142: CALL       
+	00143: CALL       
+	00144: CALL       
+	00145: CALL       
+	00146: SHC[rp1,zp0] 
+	00147: CALL       
+	00148: DELTAP1    
+	00149: CALL       
+	00150: CALL       
+	00151: CALL       
+	00152: CALL       
+	00153: CALL       
+	00154: CALL       
+	00155: CALL       
+	00156: CALL       
+	00157: SHC[rp2,zp1] 
+
+	Glyph 395: off = 0x00012F6E, len = 190
+	  numberOfContours:	-1  (Composite)
+	  xMin:			136
+	  yMin:			-431
+	  xMax:			792
+	  yMax:			1466
+
+	     0: Flags:		0x0026
+		Glyf Index:	76
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	77
+		X WOffset:	478
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     3     2    28    64    12    12     2    85    28    64 
+	                             9    10     2    85    19 
+	00017: PUSHW[1]             -8 
+	00020: PUSHB[5]             12    13     2    85    19 
+	00026: PUSHW[1]            -64 
+	00029: PUSHB[5]             11    11     2    85    19 
+	00035: PUSHW[1]             -4 
+	00038: PUSHB[5]             16    16     6    85    19 
+	00044: PUSHW[1]             -6 
+	00047: PUSHB[5]             13    13     6    85    19 
+	00053: PUSHW[1]            -50 
+	00056: NPUSHB      (24):    11    12     6    85    96    19   112    19     2    31 
+	                            19    48    19   111    19   144    19   160    19   224 
+	                            19     6    19     7 
+	00082: PUSHW[1]            300 
+	00085: PUSHB[5]             72    43     1     0     4 
+	00091: PUSHW[1]             -8 
+	00094: PUSHB[5]             12    13     2    85     4 
+	00100: PUSHW[1]             -4 
+	00103: PUSHB[5]             16    16     6    85     4 
+	00109: PUSHW[1]             -8 
+	00112: PUSHB[5]             15    15     6    85     4 
+	00118: PUSHW[1]             -6 
+	00121: NPUSHB      (20):    11    13     6    85     0     4    16     4    32     4 
+	                           127     4   143     4     5     4    27   136    72    43 
+	00143: SVTCA[x-axis] 
+	00144: CALL       
+	00145: DELTAP1    
+	00146: CALL       
+	00147: CALL       
+	00148: CALL       
+	00149: CALL       
+	00150: SHC[rp1,zp0] 
+	00151: SHC[rp1,zp0] 
+	00152: CALL       
+	00153: DELTAP1    
+	00154: DELTAP2    
+	00155: CALL       
+	00156: CALL       
+	00157: CALL       
+	00158: CALL       
+	00159: CALL       
+	00160: CALL       
+	00161: CALL       
+	00162: SHC[rp1,zp0] 
+	00163: SHC[rp1,zp0] 
+
+	Glyph 396: off = 0x0001302C, len = 44
+	  numberOfContours:	-1  (Composite)
+	  xMin:			108
+	  yMin:			0
+	  xMax:			1238
+	  yMax:			1481
+
+	     0: Flags:		0x0027
+		Glyf Index:	81
+		X WOffset:	240
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	182
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     0     1     0    35   240    72    39     1     1    24 
+	                            35     0    72    39 
+	00016: CALL       
+	00017: CALL       
+
+	Glyph 397: off = 0x00013058, len = 92
+	  numberOfContours:	1
+	  xMin:			128
+	  yMin:			947
+	  xMax:			398
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	58
+	00000: NPUSHB      (35):     3    34    26    33    52     2    34    26    33    52 
+	                             2     3     0     5     4     4     1     5   238     3 
+	                             2     0     2   249     4   129    47     1     1     1 
+	                            25     6   157   104    24 
+	00037: CALL       
+	00038: FLIPOFF    
+	00039: SRP0       
+	00040: MIRP[srp0,nmd,rd,0] 
+	00041: DELTAP1    
+	00042: FLIPON     
+	00043: MIRP[srp0,md,rd,1] 
+	00044: MIRP[nrp0,md,rd,1] 
+	00045: SVTCA[y-axis] 
+	00046: MIAP[rd+ci] 
+	00047: ALIGNRP    
+	00048: MIRP[nrp0,md,rd,1] 
+	00049: SVTCA[x-axis] 
+	00050: SRP1       
+	00051: SRP2       
+	00052: SLOOP      
+	00053: IP         
+	00054: IUP[y]     
+	00055: IUP[x]     
+	00056: CALL       
+	00057: CALL       
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                 X-Short On
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual                 X-Short On
+	  4:                      Y-Short X-Short On
+	  5:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   128,   947)  ->  Abs (   128,   947)
+	  1: Rel (    12,   274)  ->  Abs (   140,  1221)
+	  2: Rel (    52,   245)  ->  Abs (   192,  1466)
+	  3: Rel (   206,     0)  ->  Abs (   398,  1466)
+	  4: Rel (   -53,  -245)  ->  Abs (   345,  1221)
+	  5: Rel (  -105,  -274)  ->  Abs (   240,   947)
+
+	Glyph 398: off = 0x000130B4, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			947
+	  xMax:			681
+	  yMax:			1466
+
+	     0: Flags:		0x0026
+		Glyf Index:	397
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	397
+		X WOffset:	283
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: SVTCA[x-axis] 
+	00001: PUSHB[2]              6     2 
+	00004: RS         
+	00005: EQ         
+	00006: IF         
+	00007: ELSE       
+	00008: PUSHB[6]              1    79     7     1     7    12 
+	00015: PUSHW[1]            383 
+	00018: NPUSHB      (15):    72    43     0    79     1    95     1   144     1     3 
+	                             1    12    70    72    43 
+	00035: CALL       
+	00036: DELTAP1    
+	00037: SHC[rp1,zp0] 
+	00038: CALL       
+	00039: DELTAP1    
+	00040: SHC[rp2,zp1] 
+	00041: EIF        
+
+	Glyph 399: off = 0x000130F8, len = 364
+	  numberOfContours:	4
+	  xMin:			97
+	  yMin:			-54
+	  xMax:			1717
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  25
+	  1:  29
+	  2:  41
+	  3:  53
+
+	  Length of Instructions:	199
+	00000: NPUSHB      (41):    33     0    32     1    47    13   128     0     4    32 
+	                             1    32     2   134    19   134    22   130    44   142 
+	                            47   142    50   130    53     8    28    29    29    63 
+	                            26    27    20    26    26    27    29    26    56    39 
+	                            51 
+	00043: PUSHW[5]            702    33   357    45   702 
+	00054: NPUSHB      (22):    39     9    28    27    27    10    15    14    31    14 
+	                             2    14   118    17     0     0    16     0     2     0 
+	                           160    23 
+	00078: PUSHW[5]            702     4   357    17   702 
+	00089: NPUSHB      (10):    10     3    28   232    27   160    30    48    42    36 
+	00101: PUSHW[1]            701 
+	00104: NPUSHB      (17):    42    42    30   110     0    29   249    26   174     0 
+	                            14    42    13    58     0    42     1 
+	00123: PUSHW[1]            340 
+	00126: NPUSHB      (11):    20    42    63     7     1     7    25    54   113   167 
+	                            24 
+	00139: CALL       
+	00140: FLIPOFF    
+	00141: SRP0       
+	00142: MIRP[srp0,nmd,rd,0] 
+	00143: DELTAP1    
+	00144: FLIPON     
+	00145: MIRP[srp0,md,rd,1] 
+	00146: MIRP[srp0,nmd,rd,0] 
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: MIRP[srp0,nmd,rd,0] 
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: RTHG       
+	00151: SRP0       
+	00152: MIRP[srp0,nmd,rd,0] 
+	00153: RTG        
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: SRP0       
+	00156: MIRP[srp0,nmd,rd,0] 
+	00157: MIRP[nrp0,md,rd,1] 
+	00158: MIRP[srp0,md,rd,1] 
+	00159: MIRP[nrp0,md,rd,1] 
+	00160: RTHG       
+	00161: SRP0       
+	00162: MIRP[srp0,nmd,rd,0] 
+	00163: RTG        
+	00164: MIRP[nrp0,md,rd,1] 
+	00165: SVTCA[y-axis] 
+	00166: MIAP[rd+ci] 
+	00167: MIRP[nrp0,md,rd,1] 
+	00168: MIRP[srp0,md,rd,1] 
+	00169: MIRP[srp0,md,rd,1] 
+	00170: MIRP[nrp0,nmd,rd,0] 
+	00171: DELTAP1    
+	00172: SRP0       
+	00173: MIRP[nrp0,nmd,rd,0] 
+	00174: DELTAP1    
+	00175: SRP0       
+	00176: ALIGNRP    
+	00177: SRP0       
+	00178: ALIGNRP    
+	00179: MIAP[rd+ci] 
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: MIRP[srp0,md,rd,1] 
+	00182: MIRP[nrp0,md,rd,1] 
+	00183: SRP0       
+	00184: MIRP[srp0,nmd,rd,0] 
+	00185: ALIGNRP    
+	00186: SDPVTL[1]  
+	00187: SFVTCA[x-axis] 
+	00188: MDAP[nrd]  
+	00189: CALL       
+	00190: RDTG       
+	00191: SRP0       
+	00192: MDRP[nrp0,nmd,rd,0] 
+	00193: IUP[y]     
+	00194: IUP[x]     
+	00195: SVTCA[x-axis] 
+	00196: DELTAP1    
+	00197: SVTCA[y-axis] 
+	00198: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:                      Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:                      Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:                              X-Short On
+	 27:                                      On
+	 28:  YDual XDual                 X-Short On
+	 29:                                      On
+	 30:                                      On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:        XDual         Y-Short         Off
+	 44:        XDual         Y-Short X-Short Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short         On
+	 49:  YDual XDual         Y-Short         Off
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual                       X-Short On
+	 52:  YDual                       X-Short Off
+	 53:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   620,  1004)  ->  Abs (   620,  1004)
+	  1: Rel (   123,   -16)  ->  Abs (   743,   988)
+	  2: Rel (   -20,  -128)  ->  Abs (   723,   860)
+	  3: Rel (  -167,  -144)  ->  Abs (   556,   716)
+	  4: Rel (  -122,     0)  ->  Abs (   434,   716)
+	  5: Rel (  -152,     0)  ->  Abs (   282,   716)
+	  6: Rel (  -185,   199)  ->  Abs (    97,   915)
+	  7: Rel (     0,   186)  ->  Abs (    97,  1101)
+	  8: Rel (     0,   192)  ->  Abs (    97,  1293)
+	  9: Rel (   186,   198)  ->  Abs (   283,  1491)
+	 10: Rel (   152,     0)  ->  Abs (   435,  1491)
+	 11: Rel (   122,     0)  ->  Abs (   557,  1491)
+	 12: Rel (   153,  -122)  ->  Abs (   710,  1369)
+	 13: Rel (    21,  -112)  ->  Abs (   731,  1257)
+	 14: Rel (  -122,   -20)  ->  Abs (   609,  1237)
+	 15: Rel (   -17,    75)  ->  Abs (   592,  1312)
+	 16: Rel (   -89,    76)  ->  Abs (   503,  1388)
+	 17: Rel (   -63,     0)  ->  Abs (   440,  1388)
+	 18: Rel (   -95,     0)  ->  Abs (   345,  1388)
+	 19: Rel (  -119,  -136)  ->  Abs (   226,  1252)
+	 20: Rel (     0,  -148)  ->  Abs (   226,  1104)
+	 21: Rel (     0,  -149)  ->  Abs (   226,   955)
+	 22: Rel (   115,  -136)  ->  Abs (   341,   819)
+	 23: Rel (    92,     0)  ->  Abs (   433,   819)
+	 24: Rel (    74,     0)  ->  Abs (   507,   819)
+	 25: Rel (    99,    90)  ->  Abs (   606,   909)
+	 26: Rel (  -198,  -963)  ->  Abs (   408,   -54)
+	 27: Rel (   802,  1545)  ->  Abs (  1210,  1491)
+	 28: Rel (   146,     0)  ->  Abs (  1356,  1491)
+	 29: Rel (  -799, -1545)  ->  Abs (   557,   -54)
+	 30: Rel (   464,   425)  ->  Abs (  1021,   371)
+	 31: Rel (     0,   187)  ->  Abs (  1021,   558)
+	 32: Rel (   192,   201)  ->  Abs (  1213,   759)
+	 33: Rel (   156,     0)  ->  Abs (  1369,   759)
+	 34: Rel (   154,     0)  ->  Abs (  1523,   759)
+	 35: Rel (   194,  -201)  ->  Abs (  1717,   558)
+	 36: Rel (     0,  -176)  ->  Abs (  1717,   382)
+	 37: Rel (     0,  -198)  ->  Abs (  1717,   184)
+	 38: Rel (  -191,  -201)  ->  Abs (  1526,   -17)
+	 39: Rel (  -157,     0)  ->  Abs (  1369,   -17)
+	 40: Rel (  -155,     0)  ->  Abs (  1214,   -17)
+	 41: Rel (  -193,   200)  ->  Abs (  1021,   183)
+	 42: Rel (   129,   188)  ->  Abs (  1150,   371)
+	 43: Rel (     0,  -142)  ->  Abs (  1150,   229)
+	 44: Rel (   125,  -142)  ->  Abs (  1275,    87)
+	 45: Rel (    94,     0)  ->  Abs (  1369,    87)
+	 46: Rel (    94,     0)  ->  Abs (  1463,    87)
+	 47: Rel (   125,   142)  ->  Abs (  1588,   229)
+	 48: Rel (     0,   146)  ->  Abs (  1588,   375)
+	 49: Rel (     0,   138)  ->  Abs (  1588,   513)
+	 50: Rel (  -125,   142)  ->  Abs (  1463,   655)
+	 51: Rel (   -94,     0)  ->  Abs (  1369,   655)
+	 52: Rel (   -94,     0)  ->  Abs (  1275,   655)
+	 53: Rel (  -125,  -142)  ->  Abs (  1150,   513)
+
+	Glyph 400: off = 0x00013264, len = 244
+	  numberOfContours:	2
+	  xMin:			15
+	  yMin:			-24
+	  xMax:			646
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  26
+	  1:  38
+
+	  Length of Instructions:	125
+	00000: NPUSHB      (31):    79    40     1    25    26    26    11    11    12    11 
+	                            10    25    24    27    11    26     0    25     1     4 
+	                            12    24     1    60    25    25    21     5    19   249 
+	                            18 
+	00033: PUSHW[1]            634 
+	00036: NPUSHB      (40):    15    41    21    13    34    42     5     5    19    18 
+	                            39     8    41    30   108    38    38    12     2    12 
+	                            41     0    24    32    24   144    24   160    24   176 
+	                            24   192    24     6    24   159    39   169   122    24 
+	00078: CALL       
+	00079: SRP0       
+	00080: MIRP[srp0,nmd,rd,2] 
+	00081: DELTAP1    
+	00082: MIRP[nrp0,md,rd,1] 
+	00083: ALIGNRP    
+	00084: SRP0       
+	00085: ALIGNRP    
+	00086: SRP0       
+	00087: MIRP[srp0,nmd,rd,2] 
+	00088: MIRP[srp0,md,rd,1] 
+	00089: MIRP[srp0,nmd,rd,0] 
+	00090: ALIGNRP    
+	00091: SVTCA[y-axis] 
+	00092: MIAP[rd+ci] 
+	00093: MIRP[nrp0,md,rd,1] 
+	00094: MIAP[rd+ci] 
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: MIRP[srp0,md,rd,1] 
+	00097: MIRP[nrp0,md,rd,1] 
+	00098: SRP1       
+	00099: SRP2       
+	00100: IP         
+	00101: MDAP[rd]   
+	00102: MIRP[nrp0,md,rd,1] 
+	00103: SVTCA[x-axis] 
+	00104: SRP1       
+	00105: SRP2       
+	00106: SLOOP      
+	00107: IP         
+	00108: IP         
+	00109: IP         
+	00110: SFVTPV     
+	00111: SRP0       
+	00112: ALIGNRP    
+	00113: SFVTL[=p1,p2] 
+	00114: SRP0       
+	00115: ALIGNRP    
+	00116: SDPVTL[1]  
+	00117: SFVTCA[y-axis] 
+	00118: RDTG       
+	00119: SRP0       
+	00120: MDRP[nrp0,nmd,rd,0] 
+	00121: IUP[y]     
+	00122: IUP[x]     
+	00123: SVTCA[x-axis] 
+	00124: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual                         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                              X-Short Off
+	 11:                      Y-Short X-Short On
+	 12:        XDual                         On
+	 13:        XDual         Y-Short         Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:        XDual         Y-Short         On
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         On
+	 26:                      Y-Short X-Short On
+	 27:        XDual                 X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual               Y-Short X-Short On
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:                      Y-Short X-Short On
+	 37:                      Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (    15,   422)  ->  Abs (    15,   422)
+	  1: Rel (   177,   235)  ->  Abs (   192,   657)
+	  2: Rel (     0,   455)  ->  Abs (   192,  1112)
+	  3: Rel (     0,   226)  ->  Abs (   192,  1338)
+	  4: Rel (   123,   153)  ->  Abs (   315,  1491)
+	  5: Rel (   111,     0)  ->  Abs (   426,  1491)
+	  6: Rel (    96,     0)  ->  Abs (   522,  1491)
+	  7: Rel (   124,  -130)  ->  Abs (   646,  1361)
+	  8: Rel (     0,  -109)  ->  Abs (   646,  1252)
+	  9: Rel (     0,   -92)  ->  Abs (   646,  1160)
+	 10: Rel (  -120,  -265)  ->  Abs (   526,   895)
+	 11: Rel (  -165,  -230)  ->  Abs (   361,   665)
+	 12: Rel (     0,  -415)  ->  Abs (   361,   250)
+	 13: Rel (     0,   -89)  ->  Abs (   361,   161)
+	 14: Rel (    29,   -43)  ->  Abs (   390,   118)
+	 15: Rel (    27,     0)  ->  Abs (   417,   118)
+	 16: Rel (    26,     0)  ->  Abs (   443,   118)
+	 17: Rel (    68,    33)  ->  Abs (   511,   151)
+	 18: Rel (   105,    74)  ->  Abs (   616,   225)
+	 19: Rel (     0,  -162)  ->  Abs (   616,    63)
+	 20: Rel (  -111,   -87)  ->  Abs (   505,   -24)
+	 21: Rel (  -114,     0)  ->  Abs (   391,   -24)
+	 22: Rel (   -92,     0)  ->  Abs (   299,   -24)
+	 23: Rel (  -107,   114)  ->  Abs (   192,    90)
+	 24: Rel (     0,   127)  ->  Abs (   192,   217)
+	 25: Rel (     0,   225)  ->  Abs (   192,   442)
+	 26: Rel (   -79,   -98)  ->  Abs (   113,   344)
+	 27: Rel (   248,   555)  ->  Abs (   361,   899)
+	 28: Rel (    98,   169)  ->  Abs (   459,  1068)
+	 29: Rel (    47,   128)  ->  Abs (   506,  1196)
+	 30: Rel (     0,    55)  ->  Abs (   506,  1251)
+	 31: Rel (     0,    61)  ->  Abs (   506,  1312)
+	 32: Rel (   -26,    34)  ->  Abs (   480,  1346)
+	 33: Rel (   -20,    25)  ->  Abs (   460,  1371)
+	 34: Rel (   -30,     0)  ->  Abs (   430,  1371)
+	 35: Rel (   -31,     0)  ->  Abs (   399,  1371)
+	 36: Rel (   -15,   -26)  ->  Abs (   384,  1345)
+	 37: Rel (   -23,   -42)  ->  Abs (   361,  1303)
+	 38: Rel (     0,  -177)  ->  Abs (   361,  1126)
+
+	Glyph 401: off = 0x00013358, len = 42
+	  numberOfContours:	2
+	  xMin:			146
+	  yMin:			0
+	  xMax:			1090
+	  yMax:			944
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:        XDual                 X-Short On
+	  5:        XDual                         On
+	  6:  YDual                               On
+	  7:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   146,   944)  ->  Abs (   146,   944)
+	  1: Rel (   944,     0)  ->  Abs (  1090,   944)
+	  2: Rel (     0,  -944)  ->  Abs (  1090,     0)
+	  3: Rel (  -944,     0)  ->  Abs (   146,     0)
+	  4: Rel (    76,   868)  ->  Abs (   222,   868)
+	  5: Rel (     0,  -792)  ->  Abs (   222,    76)
+	  6: Rel (   792,     0)  ->  Abs (  1014,    76)
+	  7: Rel (     0,   792)  ->  Abs (  1014,   868)
+
+	Glyph 402: off = 0x00013382, len = 28
+	  numberOfContours:	1
+	  xMin:			131
+	  yMin:			445
+	  xMax:			594
+	  yMax:			908
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   594,   908)  ->  Abs (   594,   908)
+	  1: Rel (     0,  -463)  ->  Abs (   594,   445)
+	  2: Rel (  -463,     0)  ->  Abs (   131,   445)
+	  3: Rel (     0,   463)  ->  Abs (   131,   908)
+
+	Glyph 403: off = 0x0001339E, len = 44
+	  numberOfContours:	2
+	  xMin:			131
+	  yMin:			445
+	  xMax:			594
+	  yMax:			908
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:                      Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   594,   908)  ->  Abs (   594,   908)
+	  1: Rel (     0,  -463)  ->  Abs (   594,   445)
+	  2: Rel (  -463,     0)  ->  Abs (   131,   445)
+	  3: Rel (     0,   463)  ->  Abs (   131,   908)
+	  4: Rel (   387,   -76)  ->  Abs (   518,   832)
+	  5: Rel (  -311,     0)  ->  Abs (   207,   832)
+	  6: Rel (     0,  -311)  ->  Abs (   207,   521)
+	  7: Rel (   311,     0)  ->  Abs (   518,   521)
+
+	Glyph 404: off = 0x000133CA, len = 56
+	  numberOfContours:	1
+	  xMin:			178
+	  yMin:			137
+	  xMax:			1059
+	  yMax:			1018
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                                      Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                                      Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   619,  1018)  ->  Abs (   619,  1018)
+	  1: Rel (   110,     0)  ->  Abs (   729,  1018)
+	  2: Rel (   212,  -114)  ->  Abs (   941,   904)
+	  3: Rel (   118,  -212)  ->  Abs (  1059,   692)
+	  4: Rel (     0,  -114)  ->  Abs (  1059,   578)
+	  5: Rel (     0,  -183)  ->  Abs (  1059,   395)
+	  6: Rel (  -258,  -258)  ->  Abs (   801,   137)
+	  7: Rel (  -182,     0)  ->  Abs (   619,   137)
+	  8: Rel (  -183,     0)  ->  Abs (   436,   137)
+	  9: Rel (  -258,   258)  ->  Abs (   178,   395)
+	 10: Rel (     0,   183)  ->  Abs (   178,   578)
+	 11: Rel (     0,   115)  ->  Abs (   178,   693)
+	 12: Rel (   118,   211)  ->  Abs (   296,   904)
+	 13: Rel (   212,   114)  ->  Abs (   508,  1018)
+
+	Glyph 405: off = 0x00013402, len = 76
+	  numberOfContours:	2
+	  xMin:			112
+	  yMin:			426
+	  xMax:			614
+	  yMax:			928
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   363,   928)  ->  Abs (   363,   928)
+	  1: Rel (   104,     0)  ->  Abs (   467,   928)
+	  2: Rel (   147,  -147)  ->  Abs (   614,   781)
+	  3: Rel (     0,  -104)  ->  Abs (   614,   677)
+	  4: Rel (     0,  -104)  ->  Abs (   614,   573)
+	  5: Rel (  -147,  -147)  ->  Abs (   467,   426)
+	  6: Rel (  -104,     0)  ->  Abs (   363,   426)
+	  7: Rel (  -104,     0)  ->  Abs (   259,   426)
+	  8: Rel (  -147,   147)  ->  Abs (   112,   573)
+	  9: Rel (     0,   104)  ->  Abs (   112,   677)
+	 10: Rel (     0,   104)  ->  Abs (   112,   781)
+	 11: Rel (   146,   147)  ->  Abs (   258,   928)
+	 12: Rel (   105,   -76)  ->  Abs (   363,   852)
+	 13: Rel (   -73,     0)  ->  Abs (   290,   852)
+	 14: Rel (  -102,  -103)  ->  Abs (   188,   749)
+	 15: Rel (     0,   -72)  ->  Abs (   188,   677)
+	 16: Rel (     0,   -73)  ->  Abs (   188,   604)
+	 17: Rel (   103,  -102)  ->  Abs (   291,   502)
+	 18: Rel (    72,     0)  ->  Abs (   363,   502)
+	 19: Rel (    72,     0)  ->  Abs (   435,   502)
+	 20: Rel (   103,   102)  ->  Abs (   538,   604)
+	 21: Rel (     0,    73)  ->  Abs (   538,   677)
+	 22: Rel (     0,    72)  ->  Abs (   538,   749)
+	 23: Rel (  -102,   103)  ->  Abs (   436,   852)
+
+	Glyph 406: off = 0x0001344E, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1726
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	216
+		X WOffset:	330
+		Y WOffset:	351
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (23):     2     0    15     1    16    15   208    15     2    32 
+	                            15    48    15     2     0    15    18    12    12    65 
+	                             2     1    15 
+	00025: PUSHW[2]            545    41 
+	00030: SVTCA[y-axis] 
+	00031: CALL       
+	00032: SVTCA[x-axis] 
+	00033: CALL       
+	00034: DELTAP1    
+	00035: DELTAP2    
+	00036: DELTAP3    
+	00037: SHC[rp1,zp0] 
+
+	Glyph 407: off = 0x0001348E, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1375
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	216
+		X WOffset:	245
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     2   112    56     1     0    56    59     2     2    65 
+	                             2     1    56 
+	00015: PUSHW[2]            707    41 
+	00020: SVTCA[y-axis] 
+	00021: CALL       
+	00022: SVTCA[x-axis] 
+	00023: CALL       
+	00024: DELTAP1    
+	00025: SHC[rp1,zp0] 
+
+	Glyph 408: off = 0x000134C2, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			102
+	  yMin:			-25
+	  xMax:			1398
+	  yMax:			1830
+
+	     0: Flags:		0x0226
+		Glyf Index:	38
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	432
+		Y WOffset:	356
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    32    35     8    15    65     1     1    32 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 409: off = 0x000134F2, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			80
+	  yMin:			-24
+	  xMax:			1005
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	70
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	250
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    29    32     7    14    65     1     1    29 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 410: off = 0x00013522, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			102
+	  yMin:			-25
+	  xMax:			1398
+	  yMax:			1818
+
+	     0: Flags:		0x0226
+		Glyf Index:	38
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	218
+		X WOffset:	432
+		Y WOffset:	400
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     1    30    11   100    72    43     1     1    30 
+	00011: PUSHW[2]            545    41 
+	00016: SVTCA[y-axis] 
+	00017: CALL       
+	00018: SVTCA[x-axis] 
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+
+	Glyph 411: off = 0x00013552, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			80
+	  yMin:			-24
+	  xMax:			1005
+	  yMax:			1418
+
+	     0: Flags:		0x0226
+		Glyf Index:	70
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	218
+		X WOffset:	240
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1     1    27 
+	00005: PUSHW[2]            546    41 
+	00010: SVTCA[y-axis] 
+	00011: CALL       
+	00012: SVTCA[x-axis] 
+	00013: PUSHB[2]              6     2 
+	00016: RS         
+	00017: EQ         
+	00018: IF         
+	00019: PUSHB[6]              0    27    30    11    11    65 
+	00026: CALL       
+	00027: ELSE       
+	00028: PUSHB[8]            111    27     1    27    19    40    72    43 
+	00037: CALL       
+	00038: DELTAP1    
+	00039: EIF        
+	00040: SHC[rp1,zp0] 
+
+	Glyph 412: off = 0x00013596, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			162
+	  yMin:			0
+	  xMax:			1256
+	  yMax:			1737
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	216
+		X WOffset:	385
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    12    15     1     2    65     1     1    12 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 413: off = 0x000135C6, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			75
+	  yMin:			-24
+	  xMax:			1054
+	  yMax:			1375
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	216
+		X WOffset:	224
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    30    33     7    15    65     2     1    30 
+	00012: PUSHW[2]            707    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 414: off = 0x000135F6, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			162
+	  yMin:			0
+	  xMax:			1256
+	  yMax:			1826
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	217
+		X WOffset:	363
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1     1    16 
+	00005: PUSHW[2]            545    41 
+	00010: SVTCA[y-axis] 
+	00011: CALL       
+	00012: SVTCA[x-axis] 
+	00013: PUSHB[2]              6     2 
+	00016: RS         
+	00017: EQ         
+	00018: IF         
+	00019: PUSHB[6]              0    19    13     1     2    65 
+	00026: CALL       
+	00027: ELSE       
+	00028: PUSHB[5]             19     5    70    72    43 
+	00034: CALL       
+	00035: EIF        
+	00036: SHC[rp1,zp0] 
+
+	Glyph 415: off = 0x00013636, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			75
+	  yMin:			-24
+	  xMax:			1054
+	  yMax:			1464
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	217
+		X WOffset:	244
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     1    37    22     0    72    39     2     1    34 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+
+	Glyph 416: off = 0x00013666, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			162
+	  yMin:			0
+	  xMax:			1256
+	  yMax:			1780
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	218
+		X WOffset:	385
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    12    15     1     2    65     1     1    12 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 417: off = 0x00013696, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			75
+	  yMin:			-24
+	  xMax:			1054
+	  yMax:			1418
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	218
+		X WOffset:	250
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    30    33     7    15    65     2     1    30 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 418: off = 0x000136C6, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			109
+	  yMin:			-25
+	  xMax:			1465
+	  yMax:			1825
+
+	     0: Flags:		0x0226
+		Glyf Index:	42
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	526
+		Y WOffset:	351
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1     1    40 
+	00005: PUSHW[2]            545    41 
+	00010: SVTCA[y-axis] 
+	00011: CALL       
+	00012: SVTCA[x-axis] 
+	00013: PUSHB[2]              6     2 
+	00016: RS         
+	00017: EQ         
+	00018: IF         
+	00019: PUSHB[6]              0    40    43    14    14    65 
+	00026: CALL       
+	00027: ELSE       
+	00028: PUSHB[5]             38    14     0    72    43 
+	00034: CALL       
+	00035: EIF        
+	00036: SHC[rp1,zp0] 
+
+	Glyph 419: off = 0x00013706, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			66
+	  yMin:			-431
+	  xMax:			1002
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	74
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	200
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    45    48    15    23    65     2     1    45 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 420: off = 0x00013736, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			109
+	  yMin:			-25
+	  xMax:			1465
+	  yMax:			1769
+
+	     0: Flags:		0x0226
+		Glyf Index:	42
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	218
+		X WOffset:	526
+		Y WOffset:	351
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    38    41    10     2    65     1     1    38 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 421: off = 0x00013766, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			66
+	  yMin:			-431
+	  xMax:			1002
+	  yMax:			1418
+
+	     0: Flags:		0x0226
+		Glyf Index:	74
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	218
+		X WOffset:	228
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     2    43    41    44    72    43     2     1    43 
+	00011: PUSHW[2]            546    41 
+	00016: SVTCA[y-axis] 
+	00017: CALL       
+	00018: SVTCA[x-axis] 
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+
+	Glyph 422: off = 0x00013796, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			109
+	  yMin:			-421
+	  xMax:			1465
+	  yMax:			1491
+
+	     0: Flags:		0x0226
+		Glyf Index:	42
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	220
+		X WOffset:	532
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1     0    49    44    10     2    65     1     1    39 
+	                             8    41 
+	00014: SVTCA[y-axis] 
+	00015: CALL       
+	00016: SVTCA[x-axis] 
+	00017: CALL       
+	00018: SHC[rp1,zp0] 
+
+	Glyph 423: off = 0x000137C4, len = 516
+	  numberOfContours:	3
+	  xMin:			66
+	  yMin:			-431
+	  xMax:			1002
+	  yMax:			1576
+
+	EndPoints
+	---------
+	  0:  9
+	  1:  36
+	  2:  48
+
+	  Length of Instructions:	368
+	00000: NPUSHB      (48):    42    18    38    26    41    41    38    45    59    18 
+	                            52    26    75    18    68    26    86    15    91    18 
+	                           101    15   106    18    12    53    39    53    47    68 
+	                            39    68    47    83    39    83    47    97    39    98 
+	                            47     8     6    49     7   146     9     0 
+	00050: PUSHW[1]            560 
+	00053: PUSHB[3]              1     1     2 
+	00057: PUSHW[1]            596 
+	00060: PUSHB[5]             25    29    28     6    27 
+	00066: PUSHW[1]            639 
+	00069: PUSHB[5]             46    28    25     7    11 
+	00075: PUSHW[1]            682 
+	00078: NPUSHB      (16):    32    10    48    10    96    10   112    10   128    10 
+	                           192    10   208    10     7    10 
+	00096: PUSHW[1]            637 
+	00099: NPUSHB      (11):    13    28    34    15    17    69    40    28    19    10 
+	                             6 
+	00112: PUSHW[3]            603     7   268 
+	00119: NPUSHB      (36):     9     9     1   126     2     2    29    22    28    27 
+	                            51    43    51    17    37    30    30    50    64    11 
+	                            11     2    85    50    64    13    13     2    85    29 
+	                            18    16    16     2    85    29 
+	00157: PUSHW[1]            -12 
+	00160: NPUSHB      (17):    15    15     2    85    29     6    14    14     2    85 
+	                            29    22    13    13     2    85    29 
+	00179: PUSHW[1]            -22 
+	00182: NPUSHB      (11):    11    11     6    85    29    18    16    16     6    85 
+	                            29 
+	00195: PUSHW[1]            -18 
+	00198: PUSHB[5]             12    12     6    85    29 
+	00204: PUSHW[1]             -4 
+	00207: NPUSHB      (81):    13    13     6    85   208    29     1    16    29    64 
+	                            29    96    29   128    29     4    29   116    22    11 
+	                            37    10    34    37    36    22    32    11    11     2 
+	                            85    22    26    12    12     2    85    22    34    13 
+	                            13     2    85    22    28    11    11     6    85    22 
+	                            12    13    13     6    85    22    26    12    12     6 
+	                            85   191    22   207    22   223    22   255    22     4 
+	                            31    22    63    22    79    22     3    22    25    49 
+	                            52 
+	00290: PUSHW[2]            266    24 
+	00295: CALL       
+	00296: FLIPOFF    
+	00297: SRP0       
+	00298: MIRP[srp0,nmd,rd,0] 
+	00299: DELTAP1    
+	00300: DELTAP2    
+	00301: CALL       
+	00302: CALL       
+	00303: CALL       
+	00304: CALL       
+	00305: CALL       
+	00306: CALL       
+	00307: FLIPON     
+	00308: MIRP[nrp0,md,rd,1] 
+	00309: MIRP[srp0,nmd,rd,0] 
+	00310: MIRP[nrp0,md,rd,1] 
+	00311: SRP0       
+	00312: MIRP[srp0,md,rd,1] 
+	00313: DELTAP1    
+	00314: DELTAP2    
+	00315: CALL       
+	00316: CALL       
+	00317: CALL       
+	00318: CALL       
+	00319: CALL       
+	00320: CALL       
+	00321: CALL       
+	00322: CALL       
+	00323: CALL       
+	00324: CALL       
+	00325: ALIGNRP    
+	00326: SRP0       
+	00327: MIRP[srp0,md,rd,1] 
+	00328: MIRP[srp0,nmd,rd,0] 
+	00329: MIRP[srp0,nmd,rd,1] 
+	00330: ALIGNRP    
+	00331: SRP1       
+	00332: SRP2       
+	00333: IP         
+	00334: MDAP[rd]   
+	00335: MIRP[nrp0,md,rd,1] 
+	00336: IP         
+	00337: MDAP[rd]   
+	00338: MIRP[srp0,nmd,rd,0] 
+	00339: MIRP[nrp0,nmd,rd,0] 
+	00340: SVTCA[y-axis] 
+	00341: MIAP[rd+ci] 
+	00342: MIRP[nrp0,md,rd,1] 
+	00343: MIRP[nrp0,nmd,rd,0] 
+	00344: MIAP[rd+ci] 
+	00345: MIRP[nrp0,md,rd,1] 
+	00346: MIRP[srp0,md,rd,1] 
+	00347: DELTAP1    
+	00348: MIRP[nrp0,nmd,rd,0] 
+	00349: MIAP[rd+ci] 
+	00350: MIRP[nrp0,md,rd,1] 
+	00351: MIRP[nrp0,nmd,rd,0] 
+	00352: MIAP[rd+ci] 
+	00353: ALIGNRP    
+	00354: SRP0       
+	00355: MIRP[srp0,md,rd,2] 
+	00356: ALIGNRP    
+	00357: SRP0       
+	00358: MIRP[srp0,md,rd,1] 
+	00359: ALIGNRP    
+	00360: MIRP[srp0,nmd,rd,2] 
+	00361: MIRP[nrp0,md,rd,1] 
+	00362: IUP[y]     
+	00363: IUP[x]     
+	00364: SVTCA[x-axis] 
+	00365: DELTAP1    
+	00366: SVTCA[y-axis] 
+	00367: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:                                      On
+	 11:        XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:                              X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:        XDual                 X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual                 X-Short On
+	 30:        XDual                         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:                      Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:        XDual                 X-Short On
+	 38:        XDual         Y-Short         Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   632,  1345)  ->  Abs (   632,  1345)
+	  1: Rel (     0,  -175)  ->  Abs (   632,  1170)
+	  2: Rel (  -209,     0)  ->  Abs (   423,  1170)
+	  3: Rel (     0,   117)  ->  Abs (   423,  1287)
+	  4: Rel (     0,   112)  ->  Abs (   423,  1399)
+	  5: Rel (    74,   140)  ->  Abs (   497,  1539)
+	  6: Rel (    94,    37)  ->  Abs (   591,  1576)
+	  7: Rel (    54,   -83)  ->  Abs (   645,  1493)
+	  8: Rel (   -93,   -39)  ->  Abs (   552,  1454)
+	  9: Rel (   -16,  -109)  ->  Abs (   536,  1345)
+	 10: Rel (  -434, -1433)  ->  Abs (   102,   -88)
+	 11: Rel (   175,   -26)  ->  Abs (   277,  -114)
+	 12: Rel (    17,  -168)  ->  Abs (   294,  -282)
+	 13: Rel (   227,     0)  ->  Abs (   521,  -282)
+	 14: Rel (   121,     0)  ->  Abs (   642,  -282)
+	 15: Rel (   139,    96)  ->  Abs (   781,  -186)
+	 16: Rel (    38,   144)  ->  Abs (   819,   -42)
+	 17: Rel (     0,   181)  ->  Abs (   819,   139)
+	 18: Rel (  -117,  -139)  ->  Abs (   702,     0)
+	 19: Rel (  -174,     0)  ->  Abs (   528,     0)
+	 20: Rel (  -220,     0)  ->  Abs (   308,     0)
+	 21: Rel (  -242,   315)  ->  Abs (    66,   315)
+	 22: Rel (     0,   220)  ->  Abs (    66,   535)
+	 23: Rel (     0,   241)  ->  Abs (    66,   776)
+	 24: Rel (   242,   310)  ->  Abs (   308,  1086)
+	 25: Rel (   220,     0)  ->  Abs (   528,  1086)
+	 26: Rel (   186,     0)  ->  Abs (   714,  1086)
+	 27: Rel (   122,  -152)  ->  Abs (   836,   934)
+	 28: Rel (     0,   128)  ->  Abs (   836,  1062)
+	 29: Rel (   166,     0)  ->  Abs (  1002,  1062)
+	 30: Rel (     0,  -918)  ->  Abs (  1002,   144)
+	 31: Rel (     0,  -231)  ->  Abs (  1002,   -87)
+	 32: Rel (   -92,  -218)  ->  Abs (   910,  -305)
+	 33: Rel (  -229,  -126)  ->  Abs (   681,  -431)
+	 34: Rel (  -155,     0)  ->  Abs (   526,  -431)
+	 35: Rel (  -214,     0)  ->  Abs (   312,  -431)
+	 36: Rel (  -214,   187)  ->  Abs (    98,  -244)
+	 37: Rel (   153,   794)  ->  Abs (   251,   550)
+	 38: Rel (     0,  -213)  ->  Abs (   251,   337)
+	 39: Rel (   170,  -188)  ->  Abs (   421,   149)
+	 40: Rel (   121,     0)  ->  Abs (   542,   149)
+	 41: Rel (   129,     0)  ->  Abs (   671,   149)
+	 42: Rel (   163,   197)  ->  Abs (   834,   346)
+	 43: Rel (     0,   202)  ->  Abs (   834,   548)
+	 44: Rel (     0,   170)  ->  Abs (   834,   718)
+	 45: Rel (  -155,   219)  ->  Abs (   679,   937)
+	 46: Rel (  -140,     0)  ->  Abs (   539,   937)
+	 47: Rel (  -130,     0)  ->  Abs (   409,   937)
+	 48: Rel (  -158,  -207)  ->  Abs (   251,   730)
+
+	Glyph 424: off = 0x000139C8, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			164
+	  yMin:			0
+	  xMax:			1314
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	43
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	430
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    14    17     1     6    65     1     1    14 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 425: off = 0x000139F8, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			135
+	  yMin:			0
+	  xMax:			1000
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	75
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	300
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     1    21     5     0    72    43     1     1    23 
+	00011: PUSHW[2]            545    41 
+	00016: SVTCA[y-axis] 
+	00017: CALL       
+	00018: SVTCA[x-axis] 
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+
+	Glyph 426: off = 0x00013A28, len = 336
+	  numberOfContours:	2
+	  xMin:			31
+	  yMin:			0
+	  xMax:			1447
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  23
+
+	  Length of Instructions:	262
+	00000: PUSHW[2]             25   -64 
+	00005: NPUSHB      (44):    19    21    52    47    25     1    17    21    20     6 
+	                             4    18     0     3     4     3    19    23     8     6 
+	                             2    20     1    11     2    30    12     1     1     4 
+	                            22    21    30    16    17    17    19     8     4     2 
+	                            15    19     8    12 
+	00051: PUSHW[1]            605 
+	00054: NPUSHB       (9):    15    32    14    14     9    15     8    32     9 
+	00065: PUSHW[1]            -18 
+	00068: PUSHB[5]             15    15     2    85     9 
+	00074: PUSHW[1]            -14 
+	00077: NPUSHB      (11):    13    13     2    85     9    16    12    12     2    85 
+	                             9 
+	00090: PUSHW[1]            -64 
+	00093: NPUSHB      (19):    11    11     6    85     9     1    12    12     6    85 
+	                             9    93    47    25   128    25     2    25     1 
+	00114: PUSHW[1]            605 
+	00117: NPUSHB      (11):    19     5    18    32    19    32    16    16     2    85 
+	                            19 
+	00130: PUSHW[1]            -10 
+	00133: PUSHB[5]             15    15     2    85    19 
+	00139: PUSHW[1]            -10 
+	00142: PUSHB[5]             13    13     2    85    19 
+	00148: PUSHW[1]             -6 
+	00151: NPUSHB      (11):    12    12     2    85    19    48    11    11     6    85 
+	                            19 
+	00164: PUSHW[1]             -9 
+	00167: PUSHB[5]             12    12     6    85    19 
+	00173: PUSHW[1]             -8 
+	00176: NPUSHB      (19):    13    13     6    85    19    93    24    32    25     1 
+	                            32    25    80    25    96    25   112    25     4 
+	00197: DELTAP1    
+	00198: DELTAP2    
+	00199: SRP0       
+	00200: MIRP[srp0,nmd,rd,2] 
+	00201: CALL       
+	00202: CALL       
+	00203: CALL       
+	00204: CALL       
+	00205: CALL       
+	00206: CALL       
+	00207: CALL       
+	00208: MIRP[srp0,md,rd,1] 
+	00209: ALIGNRP    
+	00210: SRP0       
+	00211: MIRP[nrp0,nmd,rd,0] 
+	00212: SRP0       
+	00213: DELTAP1    
+	00214: MIRP[srp0,nmd,rd,2] 
+	00215: CALL       
+	00216: CALL       
+	00217: CALL       
+	00218: CALL       
+	00219: CALL       
+	00220: MIRP[srp0,md,rd,1] 
+	00221: ALIGNRP    
+	00222: SRP0       
+	00223: ALIGNRP    
+	00224: SRP0       
+	00225: MIRP[nrp0,md,rd,1] 
+	00226: MIRP[nrp0,nmd,rd,0] 
+	00227: SVTCA[y-axis] 
+	00228: MIAP[rd+ci] 
+	00229: ALIGNRP    
+	00230: MIAP[rd+ci] 
+	00231: ALIGNRP    
+	00232: SRP2       
+	00233: IP         
+	00234: MDAP[rd]   
+	00235: ALIGNRP    
+	00236: MIRP[srp0,md,rd,1] 
+	00237: ALIGNRP    
+	00238: SRP1       
+	00239: IP         
+	00240: MDAP[rd]   
+	00241: ALIGNRP    
+	00242: MIRP[srp0,md,rd,1] 
+	00243: ALIGNRP    
+	00244: SRP1       
+	00245: SHP[rp1,zp0] 
+	00246: SRP1       
+	00247: SHP[rp1,zp0] 
+	00248: SVTCA[x-axis] 
+	00249: SRP1       
+	00250: SHP[rp1,zp0] 
+	00251: SRP1       
+	00252: SLOOP      
+	00253: SHP[rp1,zp0] 
+	00254: SRP1       
+	00255: SLOOP      
+	00256: SHP[rp1,zp0] 
+	00257: IUP[y]     
+	00258: IUP[x]     
+	00259: SVTCA[x-axis] 
+	00260: DELTAP1    
+	00261: CALL       
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                       X-Short On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual         Y-Short         On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual         Y-Short         On
+	 13:  YDual                       X-Short On
+	 14:        XDual                         On
+	 15:  YDual                       X-Short On
+	 16:        XDual                         On
+	 17:  YDual                               On
+	 18:        XDual                         On
+	 19:  YDual                       X-Short On
+	 20:        XDual                 X-Short On
+	 21:        XDual         Y-Short         On
+	 22:  YDual                               On
+	 23:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   164,  1099)  ->  Abs (   164,  1099)
+	  1: Rel (  -133,     0)  ->  Abs (    31,  1099)
+	  2: Rel (     0,   148)  ->  Abs (    31,  1247)
+	  3: Rel (   133,     0)  ->  Abs (   164,  1247)
+	  4: Rel (     0,   219)  ->  Abs (   164,  1466)
+	  5: Rel (   194,     0)  ->  Abs (   358,  1466)
+	  6: Rel (     0,  -219)  ->  Abs (   358,  1247)
+	  7: Rel (   762,     0)  ->  Abs (  1120,  1247)
+	  8: Rel (     0,   219)  ->  Abs (  1120,  1466)
+	  9: Rel (   194,     0)  ->  Abs (  1314,  1466)
+	 10: Rel (     0,  -219)  ->  Abs (  1314,  1247)
+	 11: Rel (   133,     0)  ->  Abs (  1447,  1247)
+	 12: Rel (     0,  -148)  ->  Abs (  1447,  1099)
+	 13: Rel (  -133,     0)  ->  Abs (  1314,  1099)
+	 14: Rel (     0, -1099)  ->  Abs (  1314,     0)
+	 15: Rel (  -194,     0)  ->  Abs (  1120,     0)
+	 16: Rel (     0,   691)  ->  Abs (  1120,   691)
+	 17: Rel (  -762,     0)  ->  Abs (   358,   691)
+	 18: Rel (     0,  -691)  ->  Abs (   358,     0)
+	 19: Rel (  -194,     0)  ->  Abs (   164,     0)
+	 20: Rel (   194,  1099)  ->  Abs (   358,  1099)
+	 21: Rel (     0,  -235)  ->  Abs (   358,   864)
+	 22: Rel (   762,     0)  ->  Abs (  1120,   864)
+	 23: Rel (     0,   235)  ->  Abs (  1120,  1099)
+
+	Glyph 427: off = 0x00013B78, len = 438
+	  numberOfContours:	1
+	  xMin:			6
+	  yMin:			0
+	  xMax:			1000
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	358
+	00000: PUSHB[6]             19    34    16    23    52    27 
+	00007: PUSHW[1]            -64 
+	00010: PUSHB[4]             21    23    52    14 
+	00015: PUSHW[1]            -64 
+	00018: PUSHB[4]              9    10    52    21 
+	00023: PUSHW[1]            -34 
+	00026: NPUSHB      (11):    23    25    52    37    11    53    10    69    10     3 
+	                            10 
+	00039: PUSHW[1]            -32 
+	00042: PUSHB[7]             23    25    52    10    24     7     2 
+	00050: PUSHW[1]            -64 
+	00053: NPUSHB      (50):    30    43    52     2   212     8     1     1    12     4 
+	                             0    20    28    12     7    17    25    10     7    32 
+	                             1     1     1    18    37    27    64    11    11     2 
+	                            85    27    64    16    16     2    85    15    40    16 
+	                            16     2    85    15    20    14    14     2    85    15 
+	00105: PUSHW[1]            -20 
+	00108: NPUSHB      (17):    13    13     2    85    15     4    12    12     2    85 
+	                            15    26    11    11     2    85    15 
+	00127: PUSHW[1]            -10 
+	00130: NPUSHB      (11):    11    11     6    85    15    20    16    16     6    85 
+	                            15 
+	00143: PUSHW[1]             -8 
+	00146: NPUSHB      (11):    13    13     6    85    15    10    15    15     6    85 
+	                            15 
+	00159: PUSHW[1]            -10 
+	00162: NPUSHB      (18):    12    12     6    85    15    64    51    54    52   255 
+	                            15     1   192    15     1    15    78    27 
+	00182: PUSHW[1]            -64 
+	00185: NPUSHB      (23):    52    54    52   176    27   240    27     2   112    27 
+	                           160    27   176    27   255    27     4    27     5    24 
+	                            37     4    25 
+	00210: PUSHW[1]             -6 
+	00213: PUSHB[5]             16    16     2    85    25 
+	00219: PUSHW[1]             -6 
+	00222: NPUSHB      (23):    14    14     2    85    25     4    12    12     2    85 
+	                            25     8    11    11     2    85    25     4    11    11 
+	                             6    85    25 
+	00247: PUSHW[1]             -6 
+	00250: NPUSHB      (17):    15    15     6    85    25     2    12    12     6    85 
+	                            25     2    13    13     6    85    25 
+	00269: PUSHW[1]            -64 
+	00272: NPUSHB      (18):    51    54    52   240    25     1     0    25    32    25 
+	                           208    25   224    25     4    25    78    26 
+	00292: SRP0       
+	00293: MIRP[srp0,nmd,rd,2] 
+	00294: DELTAP1    
+	00295: DELTAP2    
+	00296: CALL       
+	00297: CALL       
+	00298: CALL       
+	00299: CALL       
+	00300: CALL       
+	00301: CALL       
+	00302: CALL       
+	00303: CALL       
+	00304: CALL       
+	00305: ALIGNRP    
+	00306: MIRP[srp0,md,rd,1] 
+	00307: ALIGNRP    
+	00308: SRP0       
+	00309: DELTAP1    
+	00310: DELTAP2    
+	00311: CALL       
+	00312: MIRP[srp0,nmd,rd,2] 
+	00313: DELTAP1    
+	00314: DELTAP2    
+	00315: CALL       
+	00316: CALL       
+	00317: CALL       
+	00318: CALL       
+	00319: CALL       
+	00320: CALL       
+	00321: CALL       
+	00322: CALL       
+	00323: CALL       
+	00324: CALL       
+	00325: CALL       
+	00326: CALL       
+	00327: CALL       
+	00328: MIRP[nrp0,md,rd,1] 
+	00329: MDAP[rd]   
+	00330: DELTAP1    
+	00331: MDAP[rd]   
+	00332: SVTCA[y-axis] 
+	00333: MIAP[rd+ci] 
+	00334: ALIGNRP    
+	00335: MIAP[rd+ci] 
+	00336: MIRP[nrp0,md,rd,1] 
+	00337: MIAP[rd+ci] 
+	00338: SRP2       
+	00339: IP         
+	00340: MDAP[rd]   
+	00341: ALIGNRP    
+	00342: MIRP[srp0,md,rd,1] 
+	00343: CALL       
+	00344: ALIGNRP    
+	00345: SVTCA[x-axis] 
+	00346: SRP1       
+	00347: SHP[rp1,zp0] 
+	00348: IUP[y]     
+	00349: IUP[x]     
+	00350: SVTCA[y-axis] 
+	00351: CALL       
+	00352: DELTAP1    
+	00353: CALL       
+	00354: CALL       
+	00355: SVTCA[x-axis] 
+	00356: CALL       
+	00357: CALL       
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                       X-Short On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual         Y-Short         On
+	  9:  YDual                               On
+	 10:        XDual                         On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual                         On
+	 16:        XDual                         On
+	 17:  YDual                       X-Short On
+	 18:        XDual                         On
+	 19:        XDual                         Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:                      Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual                         On
+	 25:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   135,  1199)  ->  Abs (   135,  1199)
+	  1: Rel (  -129,     0)  ->  Abs (     6,  1199)
+	  2: Rel (     0,   134)  ->  Abs (     6,  1333)
+	  3: Rel (   129,     0)  ->  Abs (   135,  1333)
+	  4: Rel (     0,   133)  ->  Abs (   135,  1466)
+	  5: Rel (   180,     0)  ->  Abs (   315,  1466)
+	  6: Rel (     0,  -133)  ->  Abs (   315,  1333)
+	  7: Rel (   367,     0)  ->  Abs (   682,  1333)
+	  8: Rel (     0,  -134)  ->  Abs (   682,  1199)
+	  9: Rel (  -367,     0)  ->  Abs (   315,  1199)
+	 10: Rel (     0,  -259)  ->  Abs (   315,   940)
+	 11: Rel (   122,   146)  ->  Abs (   437,  1086)
+	 12: Rel (   198,     0)  ->  Abs (   635,  1086)
+	 13: Rel (   137,     0)  ->  Abs (   772,  1086)
+	 14: Rel (   228,  -152)  ->  Abs (  1000,   934)
+	 15: Rel (     0,  -261)  ->  Abs (  1000,   673)
+	 16: Rel (     0,  -673)  ->  Abs (  1000,     0)
+	 17: Rel (  -180,     0)  ->  Abs (   820,     0)
+	 18: Rel (     0,   673)  ->  Abs (   820,   673)
+	 19: Rel (     0,   258)  ->  Abs (   820,   931)
+	 20: Rel (  -225,     0)  ->  Abs (   595,   931)
+	 21: Rel (  -123,     0)  ->  Abs (   472,   931)
+	 22: Rel (  -157,  -161)  ->  Abs (   315,   770)
+	 23: Rel (     0,  -189)  ->  Abs (   315,   581)
+	 24: Rel (     0,  -581)  ->  Abs (   315,     0)
+	 25: Rel (  -180,     0)  ->  Abs (   135,     0)
+
+	Glyph 428: off = 0x00013D2E, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-64
+	  yMin:			0
+	  xMax:			606
+	  yMax:			1812
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	-70
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0     4    16     1     2    65     1     1    19 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 429: off = 0x00013D5E, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-46
+	  yMin:			0
+	  xMax:			624
+	  yMax:			1450
+
+	     0: Flags:		0x0226
+		Glyf Index:	213
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	215
+		X BOffset:	-52
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0     4    16     1     2    65     1     1    19 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 430: off = 0x00013D8C, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-28
+	  yMin:			0
+	  xMax:			596
+	  yMax:			1711
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	216
+		X WOffset:	-57
+		Y WOffset:	336
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0     4     7     1     2    65     1     1     7 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 431: off = 0x00013DBC, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-23
+	  yMin:			0
+	  xMax:			601
+	  yMax:			1375
+
+	     0: Flags:		0x0226
+		Glyf Index:	213
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	216
+		X BOffset:	-52
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0     4     7     1     2    65     1     1     7 
+	00012: PUSHW[2]            707    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 432: off = 0x00013DEA, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-1
+	  yMin:			0
+	  xMax:			590
+	  yMax:			1800
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	217
+		X WOffset:	-47
+		Y WOffset:	336
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    11     5     1     2    65     1     1     8 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 433: off = 0x00013E1A, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-6
+	  yMin:			0
+	  xMax:			585
+	  yMax:			1464
+
+	     0: Flags:		0x0226
+		Glyf Index:	213
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	217
+		X BOffset:	-52
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    11     5     1     2    65     1     1     8 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 434: off = 0x00013E48, len = 302
+	  numberOfContours:	1
+	  xMin:			163
+	  yMin:			-426
+	  xMax:			601
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	240
+	00000: PUSHW[2]              5   605 
+	00005: NPUSHB      (13):    10    15    18     8    16     2     7     8     0     0 
+	                            18    15     2 
+	00020: PUSHW[1]            -64 
+	00023: PUSHB[4]             24    26    52     2 
+	00028: PUSHW[1]            605 
+	00031: PUSHB[6]             32    13     1    13    17    20 
+	00038: PUSHW[1]            -64 
+	00041: PUSHB[5]             13    13     2    85    20 
+	00047: PUSHW[1]            -64 
+	00050: PUSHB[4]             56    61    52    20 
+	00055: PUSHW[1]            -64 
+	00058: PUSHB[4]             51    52    52    20 
+	00063: PUSHW[1]            -64 
+	00066: PUSHB[4]             45    48    52    20 
+	00071: PUSHW[1]            -64 
+	00074: PUSHB[4]             40    41    52    20 
+	00079: PUSHW[1]            -64 
+	00082: PUSHB[4]             35    37    52    20 
+	00087: PUSHW[1]            -64 
+	00090: PUSHB[4]             29    30    52    20 
+	00095: PUSHW[1]            -64 
+	00098: PUSHB[4]             24    26    52    20 
+	00103: PUSHW[1]            -64 
+	00106: NPUSHB      (40):    13    16    52    32    20   144    20   175    20     3 
+	                            18    32     0    15   143    15   160    15   176    15 
+	                             4    47    15    64    15    80    15   223    15   240 
+	                            15     5    18    15    24    16    16     2    85    15 
+	00148: PUSHW[1]            -20 
+	00151: PUSHB[5]             15    15     2    85    15 
+	00157: PUSHW[1]            -18 
+	00160: PUSHB[5]             13    13     2    85    15 
+	00166: PUSHW[1]            -10 
+	00169: NPUSHB      (20):    12    12     2    85    15    32    11    11     6    85 
+	                            32    15   143    15   144    15     3    15   162    19 
+	00191: SRP0       
+	00192: MIRP[srp0,nmd,rd,2] 
+	00193: DELTAP1    
+	00194: CALL       
+	00195: CALL       
+	00196: CALL       
+	00197: CALL       
+	00198: CALL       
+	00199: RS         
+	00200: NOT        
+	00201: IF         
+	00202: PUSHB[3]            128    15     1 
+	00206: SVTCA[x-axis] 
+	00207: DELTAP1    
+	00208: EIF        
+	00209: DELTAP2    
+	00210: DELTAP3    
+	00211: MIRP[srp0,md,rd,1] 
+	00212: DELTAP1    
+	00213: CALL       
+	00214: CALL       
+	00215: CALL       
+	00216: CALL       
+	00217: CALL       
+	00218: CALL       
+	00219: CALL       
+	00220: CALL       
+	00221: CALL       
+	00222: ALIGNRP    
+	00223: MDAP[rd]   
+	00224: DELTAP1    
+	00225: MIRP[nrp0,md,rd,1] 
+	00226: CALL       
+	00227: SRP1       
+	00228: SRP2       
+	00229: IP         
+	00230: MDAP[rd]   
+	00231: MDAP[rd]   
+	00232: ALIGNRP    
+	00233: SVTCA[y-axis] 
+	00234: MIAP[rd+ci] 
+	00235: MIAP[rd+ci] 
+	00236: MIAP[rd+ci] 
+	00237: MIRP[nrp0,md,rd,1] 
+	00238: IUP[y]     
+	00239: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:                      Y-Short X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short         On
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:        XDual                         On
+	 17:  YDual XDual                 X-Short On
+	 18:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   318,     0)  ->  Abs (   318,     0)
+	  1: Rel (   -29,   -78)  ->  Abs (   289,   -78)
+	  2: Rel (     0,   -62)  ->  Abs (   289,  -140)
+	  3: Rel (     0,   -67)  ->  Abs (   289,  -207)
+	  4: Rel (    82,   -85)  ->  Abs (   371,  -292)
+	  5: Rel (    62,     0)  ->  Abs (   433,  -292)
+	  6: Rel (    77,     0)  ->  Abs (   510,  -292)
+	  7: Rel (    91,    46)  ->  Abs (   601,  -246)
+	  8: Rel (     0,  -119)  ->  Abs (   601,  -365)
+	  9: Rel (  -119,   -61)  ->  Abs (   482,  -426)
+	 10: Rel (  -104,     0)  ->  Abs (   378,  -426)
+	 11: Rel (   -91,     0)  ->  Abs (   287,  -426)
+	 12: Rel (  -124,   118)  ->  Abs (   163,  -308)
+	 13: Rel (     0,   103)  ->  Abs (   163,  -205)
+	 14: Rel (     0,    80)  ->  Abs (   163,  -125)
+	 15: Rel (    35,   126)  ->  Abs (   198,     1)
+	 16: Rel (     0,  1465)  ->  Abs (   198,  1466)
+	 17: Rel (   194,     0)  ->  Abs (   392,  1466)
+	 18: Rel (     0, -1466)  ->  Abs (   392,     0)
+
+	Glyph 435: off = 0x00013F76, len = 302
+	  numberOfContours:	2
+	  xMin:			102
+	  yMin:			-425
+	  xMax:			540
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  22
+
+	  Length of Instructions:	227
+	00000: NPUSHB      (85):    24    54    11    11     2    85    79    24   144    24 
+	                           160    24   176    24   192    24   223    24   240    24 
+	                             7     0    24    31    24   112    24   128    24   159 
+	                            24   176    24   192    24   223    24   235     4   224 
+	                            24   255    24    11    31    24     1     0   126     1 
+	                             0    20     6    22    19    10     9    69    14    15 
+	                            12    32    11     1    11     4     4    22    19     6 
+	                            69    32    17     1    17     2     3     3    22     1 
+	                             0     0    22    37    19 
+	00087: PUSHW[1]             -8 
+	00090: PUSHB[5]             16    16     2    85    19 
+	00096: PUSHW[1]             -6 
+	00099: NPUSHB      (23):    14    14     2    85    19     4    12    12     2    85 
+	                            19    10    11    11     2    85    19    20    11    11 
+	                             6    85    19 
+	00124: PUSHW[1]            -22 
+	00127: PUSHB[5]             16    16     6    85    19 
+	00133: PUSHW[1]             -2 
+	00136: PUSHB[5]             13    13     6    85    19 
+	00142: PUSHW[1]             -4 
+	00145: NPUSHB      (34):    12    12     6    85     0    19   159    19   160    19 
+	                           176    19   192    19   224    19     6   192    19   240 
+	                            19     2     0    19    32    19   208    19   224    19 
+	                             4    19    78    23 
+	00181: SRP0       
+	00182: MIRP[srp0,nmd,rd,2] 
+	00183: DELTAP1    
+	00184: DELTAP2    
+	00185: DELTAP3    
+	00186: CALL       
+	00187: CALL       
+	00188: CALL       
+	00189: CALL       
+	00190: CALL       
+	00191: CALL       
+	00192: CALL       
+	00193: CALL       
+	00194: MIRP[nrp0,md,rd,1] 
+	00195: ALIGNRP    
+	00196: SRP0       
+	00197: ALIGNRP    
+	00198: SRP0       
+	00199: ALIGNRP    
+	00200: SRP0       
+	00201: ALIGNRP    
+	00202: MDAP[rd]   
+	00203: DELTAP1    
+	00204: MIRP[nrp0,md,rd,1] 
+	00205: SRP1       
+	00206: SRP2       
+	00207: IP         
+	00208: MDAP[rd]   
+	00209: MDAP[rd]   
+	00210: DELTAP1    
+	00211: ALIGNRP    
+	00212: SVTCA[y-axis] 
+	00213: MIAP[rd+ci] 
+	00214: MIRP[nrp0,md,rd,1] 
+	00215: MIAP[rd+ci] 
+	00216: ALIGNRP    
+	00217: MIAP[rd+ci] 
+	00218: MIAP[rd+ci] 
+	00219: MIRP[srp0,md,rd,1] 
+	00220: IUP[y]     
+	00221: IUP[x]     
+	00222: SVTCA[x-axis] 
+	00223: DELTAP1    
+	00224: DELTAP3    
+	00225: DELTAP2    
+	00226: CALL       
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:                              X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short         On
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:        XDual                         On
+	 21:  YDual XDual                 X-Short On
+	 22:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   136,  1259)  ->  Abs (   136,  1259)
+	  1: Rel (     0,   207)  ->  Abs (   136,  1466)
+	  2: Rel (   180,     0)  ->  Abs (   316,  1466)
+	  3: Rel (     0,  -207)  ->  Abs (   316,  1259)
+	  4: Rel (   -59, -1259)  ->  Abs (   257,     0)
+	  5: Rel (   -29,   -78)  ->  Abs (   228,   -78)
+	  6: Rel (     0,   -62)  ->  Abs (   228,  -140)
+	  7: Rel (     0,   -67)  ->  Abs (   228,  -207)
+	  8: Rel (    82,   -85)  ->  Abs (   310,  -292)
+	  9: Rel (    62,     0)  ->  Abs (   372,  -292)
+	 10: Rel (    77,     0)  ->  Abs (   449,  -292)
+	 11: Rel (    91,    46)  ->  Abs (   540,  -246)
+	 12: Rel (     0,  -119)  ->  Abs (   540,  -365)
+	 13: Rel (  -117,   -60)  ->  Abs (   423,  -425)
+	 14: Rel (  -104,     0)  ->  Abs (   319,  -425)
+	 15: Rel (  -101,     0)  ->  Abs (   218,  -425)
+	 16: Rel (  -116,   122)  ->  Abs (   102,  -303)
+	 17: Rel (     0,    98)  ->  Abs (   102,  -205)
+	 18: Rel (     0,    65)  ->  Abs (   102,  -140)
+	 19: Rel (    34,   140)  ->  Abs (   136,     0)
+	 20: Rel (     0,  1062)  ->  Abs (   136,  1062)
+	 21: Rel (   180,     0)  ->  Abs (   316,  1062)
+	 22: Rel (     0, -1062)  ->  Abs (   316,     0)
+
+	Glyph 436: off = 0x000140A4, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			55
+	  yMin:			-25
+	  xMax:			1108
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	45
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	450
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    20    23     8    11    65     1     1    20 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 437: off = 0x000140D4, len = 368
+	  numberOfContours:	2
+	  xMin:			-94
+	  yMin:			-431
+	  xMax:			544
+	  yMax:			1474
+
+	EndPoints
+	---------
+	  0:  6
+	  1:  20
+
+	  Length of Instructions:	293
+	00000: NPUSHB      (43):     4     8     3    18    32     8    32    17    32    18 
+	                            59     7    51     8    50    17    72    11   134     8 
+	                            10     7    19     8    14    10     0   100     4     4 
+	                            15     3    31     3     2     3   135     2     5     6 
+	                             6     1     2 
+	00045: PUSHW[1]            546 
+	00048: NPUSHB      (11):    14     6    10    28    19    15     5    60     6    61 
+	                             4 
+	00061: PUSHW[1]            -64 
+	00064: NPUSHB      (33):     9    12    52     4   100     0   100     3   127     1 
+	                            60     2    32    16    16     6    85     2    32    11 
+	                            11     6    85    15     2    31     2    47     2    63 
+	                             2     4     2 
+	00099: PUSHW[1]            -64 
+	00102: NPUSHB      (25):    11    23    52     0     2    63     2   127     2   255 
+	                             2     4     2   144    22     1    22    23    23    26 
+	                            16    15    37    13    14 
+	00129: PUSHW[1]             -6 
+	00132: NPUSHB      (67):    14    14     2    85    14    16    13    13     2    85 
+	                            14    16    12    12     2    85    14    12    11    11 
+	                             2    85    14    30    11    11     6    85    14    12 
+	                            16    16     6    85    14     8    12    12     6    85 
+	                            14    12    13    13     6    85   144    14     1    31 
+	                            14    63    14    79    14     3    14    25    21     8 
+	                             7    21    20     8    71    80    24 
+	00201: CALL       
+	00202: RS         
+	00203: JROF       
+	00204: NPUSHB      (12):    11    18    11    18    13    27     1    12    17    10 
+	                            27     0 
+	00218: SVTCA[y-axis] 
+	00219: CALL       
+	00220: SVTCA[x-axis] 
+	00221: CALL       
+	00222: FLIPRGON   
+	00223: SRP1       
+	00224: SHP[rp1,zp0] 
+	00225: SHP[rp1,zp0] 
+	00226: FLIPOFF    
+	00227: SRP0       
+	00228: MIRP[srp0,nmd,rd,0] 
+	00229: DELTAP1    
+	00230: DELTAP2    
+	00231: CALL       
+	00232: CALL       
+	00233: CALL       
+	00234: CALL       
+	00235: CALL       
+	00236: CALL       
+	00237: CALL       
+	00238: CALL       
+	00239: ALIGNRP    
+	00240: FLIPON     
+	00241: MIRP[srp0,md,rd,1] 
+	00242: ALIGNRP    
+	00243: FLIPOFF    
+	00244: RCVT       
+	00245: NEG        
+	00246: WCVTP      
+	00247: MIRP[nrp0,nmd,rd,2] 
+	00248: DELTAP2    
+	00249: RTHG       
+	00250: MDAP[rd]   
+	00251: DELTAP1    
+	00252: CALL       
+	00253: DELTAP2    
+	00254: CALL       
+	00255: CALL       
+	00256: RTG        
+	00257: FLIPON     
+	00258: MIRP[srp0,md,rd,1] 
+	00259: RTHG       
+	00260: MIRP[srp0,nmd,rd,2] 
+	00261: RTG        
+	00262: MIRP[srp0,md,rd,1] 
+	00263: MIRP[srp0,md,rd,1] 
+	00264: CALL       
+	00265: RTHG       
+	00266: MIRP[srp0,nmd,rd,2] 
+	00267: RTG        
+	00268: MIRP[nrp0,md,rd,1] 
+	00269: SVTCA[y-axis] 
+	00270: MIAP[rd+ci] 
+	00271: MIRP[nrp0,md,rd,1] 
+	00272: MIAP[rd+ci] 
+	00273: MIAP[rd+ci] 
+	00274: ALIGNRP    
+	00275: ALIGNRP    
+	00276: SRP0       
+	00277: ALIGNRP    
+	00278: SRP0       
+	00279: MIRP[srp0,md,rd,1] 
+	00280: DELTAP1    
+	00281: ALIGNRP    
+	00282: SRP0       
+	00283: MIRP[nrp0,md,rd,1] 
+	00284: SRP1       
+	00285: SRP2       
+	00286: IP         
+	00287: SRP2       
+	00288: IP         
+	00289: IUP[y]     
+	00290: IUP[x]     
+	00291: SVTCA[x-axis] 
+	00292: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:                      Y-Short X-Short On
+	  2:  YDual                       X-Short On
+	  3:        XDual                 X-Short On
+	  4:  YDual XDual                 X-Short On
+	  5:        XDual                 X-Short On
+	  6:  YDual                       X-Short On
+	  7:                                      On
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:        XDual                         On
+	 15:  YDual XDual                 X-Short On
+	 16:        XDual                         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   230,  1364)  ->  Abs (   230,  1364)
+	  1: Rel (  -113,  -170)  ->  Abs (   117,  1194)
+	  2: Rel (  -205,     0)  ->  Abs (   -88,  1194)
+	  3: Rel (   216,   280)  ->  Abs (   128,  1474)
+	  4: Rel (   192,     0)  ->  Abs (   320,  1474)
+	  5: Rel (   224,  -280)  ->  Abs (   544,  1194)
+	  6: Rel (  -203,     0)  ->  Abs (   341,  1194)
+	  7: Rel (  -435, -1606)  ->  Abs (   -94,  -412)
+	  8: Rel (    34,   153)  ->  Abs (   -60,  -259)
+	  9: Rel (    52,   -14)  ->  Abs (    -8,  -273)
+	 10: Rel (    33,     0)  ->  Abs (    25,  -273)
+	 11: Rel (    63,     0)  ->  Abs (    88,  -273)
+	 12: Rel (    46,    83)  ->  Abs (   134,  -190)
+	 13: Rel (     0,   136)  ->  Abs (   134,   -54)
+	 14: Rel (     0,  1116)  ->  Abs (   134,  1062)
+	 15: Rel (   180,     0)  ->  Abs (   314,  1062)
+	 16: Rel (     0, -1120)  ->  Abs (   314,   -58)
+	 17: Rel (     0,  -197)  ->  Abs (   314,  -255)
+	 18: Rel (  -117,  -176)  ->  Abs (   197,  -431)
+	 19: Rel (  -150,     0)  ->  Abs (    47,  -431)
+	 20: Rel (   -73,     0)  ->  Abs (   -26,  -431)
+
+	Glyph 438: off = 0x00014244, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			150
+	  yMin:			-421
+	  xMax:			1362
+	  yMax:			1466
+
+	     0: Flags:		0x0226
+		Glyf Index:	46
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	494
+		X WOffset:	460
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1    22 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (14):     9   100     6    85    32    22     1     0    22    17 
+	                             0     5    65    14 
+	00022: SVTCA[y-axis] 
+	00023: MDAP[rd]   
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+	00026: DELTAP1    
+	00027: CALL       
+	00028: SHC[rp1,zp0] 
+
+	Glyph 439: off = 0x0001427C, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			136
+	  yMin:			-421
+	  xMax:			1016
+	  yMax:			1466
+
+	     0: Flags:		0x0226
+		Glyf Index:	78
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	494
+		X WOffset:	289
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     1    32    22   144    22     2     0    22    17     0 
+	                             5    65    14 
+	00015: SVTCA[y-axis] 
+	00016: MDAP[rd]   
+	00017: SVTCA[x-axis] 
+	00018: CALL       
+	00019: DELTAP1    
+	00020: SHC[rp1,zp0] 
+
+	Glyph 440: off = 0x000142AC, len = 402
+	  numberOfContours:	1
+	  xMin:			134
+	  yMin:			0
+	  xMax:			1014
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	347
+	00000: PUSHW[2]              6   -24 
+	00005: PUSHB[5]             12    12     2    85    10 
+	00011: PUSHW[1]            -24 
+	00014: PUSHB[5]             12    12     2    85     9 
+	00020: PUSHW[1]            -24 
+	00023: NPUSHB      (76):    12    12     2    85    23     3     1    68     3     1 
+	                             6     6     4     9     2     7     6    37     6    47 
+	                             7    47     8   128    13   183     5   198     5   192 
+	                            13   229     6   229     9   224    13   250     4   245 
+	                             6    13    63    13    90     4    89     5   105     4 
+	                           105     5   152     6   168     6     7     5     6    27 
+	                             4    24     9    40     9    56     9    88     4    89 
+	                             5     7    74     6     1     3 
+	00101: PUSHW[1]            -12 
+	00104: NPUSHB      (16):    10     9    16     2     6     6     7     9    10     9 
+	                             8    10     5     9     8     8 
+	00122: PUSHW[1]             -8 
+	00125: NPUSHB      (64):    11    12     6    85     8    37     7     6    20     7 
+	                             7     6     3     4     4    37     5    10    20     5 
+	                             5    10   101    10     1    10     9     6     3     4 
+	                             4     1     6     5     4     6    11     8     8     7 
+	                            10   171     6     1    10     9     8     6     5     4 
+	                             3     7    32     7   128     7   191     7     3     7 
+	                             2    11    37     0 
+	00191: PUSHW[1]             -8 
+	00194: PUSHB[5]             16    16     2    85     0 
+	00200: PUSHW[1]             -6 
+	00203: NPUSHB      (17):    14    14     2    85     0     6    12    12     2    85 
+	                             0     6    11    11     2    85     0 
+	00222: PUSHW[1]             -8 
+	00225: PUSHB[5]             16    16     6    85     0 
+	00231: PUSHW[1]            -18 
+	00234: PUSHB[5]             15    15     6    85     0 
+	00240: PUSHW[1]             -8 
+	00243: PUSHB[5]             12    13     6    85     0 
+	00249: PUSHW[1]            -64 
+	00252: NPUSHB      (18):    51    54    52   240     0     1     0     0    32     0 
+	                           208     0   224     0     4     0    78    12 
+	00272: SRP0       
+	00273: MIRP[srp0,nmd,rd,2] 
+	00274: DELTAP1    
+	00275: DELTAP2    
+	00276: CALL       
+	00277: CALL       
+	00278: CALL       
+	00279: CALL       
+	00280: CALL       
+	00281: CALL       
+	00282: CALL       
+	00283: CALL       
+	00284: MIRP[srp0,md,rd,1] 
+	00285: ALIGNRP    
+	00286: RTHG       
+	00287: MDAP[rd]   
+	00288: DELTAP1    
+	00289: SLOOP      
+	00290: IP         
+	00291: DELTAP2    
+	00292: SVTCA[y-axis] 
+	00293: RTG        
+	00294: MIAP[rd+ci] 
+	00295: ALIGNRP    
+	00296: SRP0       
+	00297: ALIGNRP    
+	00298: MIAP[rd+ci] 
+	00299: ALIGNRP    
+	00300: MIAP[rd+ci] 
+	00301: SRP1       
+	00302: SLOOP      
+	00303: IP         
+	00304: DELTAP3    
+	00305: SDPVTL[1]  
+	00306: SFVTCA[x-axis] 
+	00307: MDAP[nrd]  
+	00308: CALL       
+	00309: SFVTCA[y-axis] 
+	00310: RDTG       
+	00311: SRP0       
+	00312: MDRP[nrp0,nmd,rd,0] 
+	00313: SDPVTL[1]  
+	00314: SFVTCA[x-axis] 
+	00315: MDAP[nrd]  
+	00316: RTG        
+	00317: CALL       
+	00318: CALL       
+	00319: SFVTPV     
+	00320: RDTG       
+	00321: SRP0       
+	00322: MDRP[nrp0,nmd,rd,0] 
+	00323: SPVTL[p1,p2] 
+	00324: SFVTL[=p1,p2] 
+	00325: SRP0       
+	00326: ALIGNRP    
+	00327: SFVTL[=p1,p2] 
+	00328: ALIGNRP    
+	00329: SVTCA[y-axis] 
+	00330: SLOOP      
+	00331: SHPIX      
+	00332: IUP[y]     
+	00333: IUP[x]     
+	00334: SHPIX      
+	00335: SVTCA[x-axis] 
+	00336: DELTAP3    
+	00337: DELTAP2    
+	00338: DELTAP1    
+	00339: DELTAP1    
+	00340: SVTCA[y-axis] 
+	00341: DELTAP1    
+	00342: DELTAP3    
+	00343: DELTAP2    
+	00344: CALL       
+	00345: CALL       
+	00346: CALL       
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:                                      On
+	  5:  YDual XDual                 X-Short On
+	  6:                                      On
+	  7:                                      On
+	  8:  YDual                       X-Short On
+	  9:                                      On
+	 10:                      Y-Short X-Short On
+	 11:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   134,     0)  ->  Abs (   134,     0)
+	  1: Rel (     0,  1062)  ->  Abs (   134,  1062)
+	  2: Rel (   180,     0)  ->  Abs (   314,  1062)
+	  3: Rel (     0,  -432)  ->  Abs (   314,   630)
+	  4: Rel (   426,   432)  ->  Abs (   740,  1062)
+	  5: Rel (   233,     0)  ->  Abs (   973,  1062)
+	  6: Rel (  -406,  -394)  ->  Abs (   567,   668)
+	  7: Rel (   447,  -668)  ->  Abs (  1014,     0)
+	  8: Rel (  -222,     0)  ->  Abs (   792,     0)
+	  9: Rel (  -351,   543)  ->  Abs (   441,   543)
+	 10: Rel (  -127,  -122)  ->  Abs (   314,   421)
+	 11: Rel (     0,  -421)  ->  Abs (   314,     0)
+
+	Glyph 441: off = 0x0001443E, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			150
+	  yMin:			-421
+	  xMax:			1066
+	  yMax:			1466
+
+	     0: Flags:		0x0226
+		Glyf Index:	47
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	494
+		X WOffset:	340
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (11):     1    32    22     1     0    16    11     0     5    65 
+	                             8 
+	00013: SVTCA[y-axis] 
+	00014: MDAP[rd]   
+	00015: SVTCA[x-axis] 
+	00016: CALL       
+	00017: DELTAP1    
+	00018: SHC[rp1,zp0] 
+
+	Glyph 442: off = 0x0001446C, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			-421
+	  xMax:			430
+	  yMax:			1466
+
+	     0: Flags:		0x0226
+		Glyf Index:	79
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	494
+		X BOffset:	-110
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1    79     4     1    31     4     1 
+	00008: PUSHW[1]            -28 
+	00011: PUSHB[5]              4     4     0     0    65 
+	00017: SVTCA[x-axis] 
+	00018: CALL       
+	00019: DELTAP1    
+	00020: DELTAP2    
+	00021: SHC[rp1,zp0] 
+
+	Glyph 443: off = 0x0001449A, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			156
+	  yMin:			-421
+	  xMax:			1311
+	  yMax:			1466
+
+	     0: Flags:		0x0226
+		Glyf Index:	49
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	494
+		X WOffset:	486
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (11):     1    32    20     1     0    20    15     0     5    65 
+	                            12 
+	00013: SVTCA[y-axis] 
+	00014: MDAP[rd]   
+	00015: SVTCA[x-axis] 
+	00016: CALL       
+	00017: DELTAP1    
+	00018: SHC[rp1,zp0] 
+
+	Glyph 444: off = 0x000144C8, len = 40
+	  numberOfContours:	-1  (Composite)
+	  xMin:			135
+	  yMin:			-421
+	  xMax:			998
+	  yMax:			1086
+
+	     0: Flags:		0x0226
+		Glyf Index:	81
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	494
+		X WOffset:	250
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              1     0    33    28     1    12    65    25 
+	00009: SVTCA[y-axis] 
+	00010: MDAP[rd]   
+	00011: SVTCA[x-axis] 
+	00012: CALL       
+	00013: SHC[rp1,zp0] 
+
+	Glyph 445: off = 0x000144F0, len = 350
+	  numberOfContours:	1
+	  xMin:			165
+	  yMin:			-25
+	  xMax:			1373
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	252
+	00000: NPUSHB      (94):    59     7    52    11    63    22    65    11   105    19 
+	                           108    22   123     3   117     6   114     7   117    22 
+	                           139     3   155     3    12     5     3     5    25    20 
+	                             3    20    25    36     3    36    19    47    22   113 
+	                             2   130     2   149     2   164     2   164     3   179 
+	                             2   182     3   192     2   208     2    16    15    14 
+	                            14    12    15    14    23    30     5     3     1     0 
+	                             2    15    14    17    30    12     9    28    29     8 
+	                            15    47    14     1    14    21    38     9    36    16 
+	                            16     2    85     9 
+	00096: PUSHW[1]            -44 
+	00099: PUSHB[5]             13    13     2    85     9 
+	00105: PUSHW[1]            -16 
+	00108: PUSHB[5]             11    11     2    85     9 
+	00114: PUSHW[1]            -20 
+	00117: PUSHB[5]             13    13     6    85     9 
+	00123: PUSHW[1]            -12 
+	00126: NPUSHB      (20):    11    12     6    85     0     9     1     9    86    31 
+	                             1    28    32    29    32    16    16     2    85    29 
+	00148: PUSHW[1]            -10 
+	00151: PUSHB[5]             15    15     2    85    29 
+	00157: PUSHW[1]            -10 
+	00160: PUSHB[5]             13    13     2    85    29 
+	00166: PUSHW[1]             -6 
+	00169: PUSHB[5]             12    12     2    85    29 
+	00175: PUSHW[1]            -12 
+	00178: PUSHB[5]             15    15     6    85    29 
+	00184: PUSHW[1]             -8 
+	00187: PUSHB[5]             13    13     6    85    29 
+	00193: PUSHW[1]            -10 
+	00196: PUSHB[7]             12    12     6    85    29    93    30 
+	00204: SRP0       
+	00205: MIRP[srp0,md,rd,1] 
+	00206: CALL       
+	00207: CALL       
+	00208: CALL       
+	00209: CALL       
+	00210: CALL       
+	00211: CALL       
+	00212: CALL       
+	00213: MIRP[srp0,md,rd,1] 
+	00214: ALIGNRP    
+	00215: SRP0       
+	00216: MIRP[srp0,nmd,rd,2] 
+	00217: DELTAP1    
+	00218: CALL       
+	00219: CALL       
+	00220: CALL       
+	00221: CALL       
+	00222: CALL       
+	00223: MIRP[nrp0,md,rd,1] 
+	00224: MDAP[rd]   
+	00225: DELTAP1    
+	00226: MDAP[rd]   
+	00227: SVTCA[y-axis] 
+	00228: MIAP[rd+ci] 
+	00229: ALIGNRP    
+	00230: MIAP[rd+ci] 
+	00231: MIRP[nrp0,md,rd,1] 
+	00232: MDAP[rd]   
+	00233: MDAP[rd]   
+	00234: MIAP[rd+ci] 
+	00235: ALIGNRP    
+	00236: MIAP[rd+ci] 
+	00237: MIRP[nrp0,md,rd,1] 
+	00238: SVTCA[x-axis] 
+	00239: SRP1       
+	00240: SHP[rp1,zp0] 
+	00241: SVTCA[y-axis] 
+	00242: SRP1       
+	00243: SHP[rp1,zp0] 
+	00244: SRP1       
+	00245: SHP[rp1,zp0] 
+	00246: IUP[y]     
+	00247: IUP[x]     
+	00248: SVTCA[y-axis] 
+	00249: DELTAP1    
+	00250: SVTCA[x-axis] 
+	00251: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual                 X-Short Off
+	  9:        XDual                         On
+	 10:        XDual                         Off
+	 11:                                      Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:        XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:        XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:        XDual                         Off
+	 23:  YDual                               On
+	 24:  YDual                       X-Short Off
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual                         On
+	 29:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   165,  1466)  ->  Abs (   165,  1466)
+	  1: Rel (   196,     0)  ->  Abs (   361,  1466)
+	  2: Rel (     0,  -182)  ->  Abs (   361,  1284)
+	  3: Rel (   115,   132)  ->  Abs (   476,  1416)
+	  4: Rel (   226,    75)  ->  Abs (   702,  1491)
+	  5: Rel (   125,     0)  ->  Abs (   827,  1491)
+	  6: Rel (   181,     0)  ->  Abs (  1008,  1491)
+	  7: Rel (   229,  -162)  ->  Abs (  1237,  1329)
+	  8: Rel (   136,  -305)  ->  Abs (  1373,  1024)
+	  9: Rel (     0,  -270)  ->  Abs (  1373,   754)
+	 10: Rel (     0,  -394)  ->  Abs (  1373,   360)
+	 11: Rel (  -260,  -385)  ->  Abs (  1113,   -25)
+	 12: Rel (  -220,     0)  ->  Abs (   893,   -25)
+	 13: Rel (  -127,     0)  ->  Abs (   766,   -25)
+	 14: Rel (  -121,    72)  ->  Abs (   645,    47)
+	 15: Rel (    87,   153)  ->  Abs (   732,   200)
+	 16: Rel (    96,   -52)  ->  Abs (   828,   148)
+	 17: Rel (    65,     0)  ->  Abs (   893,   148)
+	 18: Rel (    77,     0)  ->  Abs (   970,   148)
+	 19: Rel (   130,   129)  ->  Abs (  1100,   277)
+	 20: Rel (    76,   263)  ->  Abs (  1176,   540)
+	 21: Rel (     0,   209)  ->  Abs (  1176,   749)
+	 22: Rel (     0,   579)  ->  Abs (  1176,  1328)
+	 23: Rel (  -405,     0)  ->  Abs (   771,  1328)
+	 24: Rel (  -133,     0)  ->  Abs (   638,  1328)
+	 25: Rel (  -201,  -125)  ->  Abs (   437,  1203)
+	 26: Rel (   -76,  -193)  ->  Abs (   361,  1010)
+	 27: Rel (     0,  -209)  ->  Abs (   361,   801)
+	 28: Rel (     0,  -801)  ->  Abs (   361,     0)
+	 29: Rel (  -196,     0)  ->  Abs (   165,     0)
+
+	Glyph 446: off = 0x0001464E, len = 408
+	  numberOfContours:	1
+	  xMin:			139
+	  yMin:			-431
+	  xMax:			1002
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	316
+	00000: NPUSHB      (74):    36    24    52    25    68    25   224    24   229    25 
+	                             5    21    28   212    17   210    18   226    18     4 
+	                           133    18   157    15   172    15   170    18   188    15 
+	                             5     6    18     5    28   114    18   137    15   128 
+	                            17     5     7     7     6     6     9    28     4    15 
+	                            21    10    16    28    26     7    23    22     6    18 
+	                            16    20    12    13     1    13    37     0    18    16 
+	                            16     2    85     0 
+	00076: PUSHW[1]            -22 
+	00079: NPUSHB      (11):    13    13     2    85     0     6    12    12     2    85 
+	                             0 
+	00092: PUSHW[1]            -10 
+	00095: PUSHB[5]             11    11     2    85     0 
+	00101: PUSHW[1]            -12 
+	00104: NPUSHB      (11):    11    11     6    85     0    26    16    16     6    85 
+	                             0 
+	00117: PUSHW[1]             -7 
+	00120: PUSHB[5]             13    13     6    85     0 
+	00126: PUSHW[1]            -10 
+	00129: NPUSHB      (11):    12    12     6    85   255     0     1   255     0     1 
+	                             0 
+	00142: PUSHW[1]            -64 
+	00145: NPUSHB      (28):    51    54    52   176     0   240     0     2   112     0 
+	                           160     0   176     0   192     0     4     0    69    31 
+	                            24    23   154    19    20    37    22    21 
+	00175: PUSHW[1]             -8 
+	00178: NPUSHB      (17):    16    16     2    85    21     6    12    12     2    85 
+	                            21     4    11    11     6    85    21 
+	00197: PUSHW[1]             -6 
+	00200: PUSHB[5]             16    16     6    85    21 
+	00206: PUSHW[1]             -6 
+	00209: NPUSHB      (17):    15    15     6    85    21     2    12    12     6    85 
+	                            21     4    13    13     6    85    21 
+	00228: PUSHW[1]            -64 
+	00231: NPUSHB      (21):    51    54    52   240    21     1     0    21    32    21 
+	                           208    21   224    21     4    21    78    30    18    13 
+	                            20 
+	00254: SRP1       
+	00255: SRP2       
+	00256: IP         
+	00257: SRP0       
+	00258: MIRP[srp0,nmd,rd,2] 
+	00259: DELTAP1    
+	00260: DELTAP2    
+	00261: CALL       
+	00262: CALL       
+	00263: CALL       
+	00264: CALL       
+	00265: CALL       
+	00266: CALL       
+	00267: CALL       
+	00268: CALL       
+	00269: ALIGNRP    
+	00270: MIRP[srp0,md,rd,1] 
+	00271: ALIGNRP    
+	00272: MIRP[srp0,nmd,rd,0] 
+	00273: ALIGNRP    
+	00274: SRP0       
+	00275: MIRP[srp0,nmd,rd,2] 
+	00276: DELTAP1    
+	00277: DELTAP2    
+	00278: CALL       
+	00279: DELTAP1    
+	00280: DELTAP2    
+	00281: CALL       
+	00282: CALL       
+	00283: CALL       
+	00284: CALL       
+	00285: CALL       
+	00286: CALL       
+	00287: CALL       
+	00288: CALL       
+	00289: MIRP[nrp0,md,rd,1] 
+	00290: ALIGNRP    
+	00291: SRP0       
+	00292: ALIGNRP    
+	00293: SVTCA[y-axis] 
+	00294: SRP1       
+	00295: SRP2       
+	00296: IP         
+	00297: MIAP[rd+ci] 
+	00298: ALIGNRP    
+	00299: MIAP[rd+ci] 
+	00300: MIRP[nrp0,md,rd,1] 
+	00301: MIAP[rd+ci] 
+	00302: MIAP[rd+ci] 
+	00303: MIRP[nrp0,md,rd,1] 
+	00304: SHP[rp1,zp0] 
+	00305: MDAP[rd]   
+	00306: SHP[rp1,zp0] 
+	00307: MDAP[rd]   
+	00308: IUP[y]     
+	00309: IUP[x]     
+	00310: SVTCA[x-axis] 
+	00311: DELTAP1    
+	00312: DELTAP1    
+	00313: DELTAP1    
+	00314: SVTCA[y-axis] 
+	00315: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:        XDual                         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                      Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual                         On
+	 21:  YDual                       X-Short On
+	 22:        XDual                         On
+	 23:  YDual XDual                 X-Short On
+	 24:        XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1002,   653)  ->  Abs (  1002,   653)
+	  1: Rel (     0,  -711)  ->  Abs (  1002,   -58)
+	  2: Rel (     0,  -197)  ->  Abs (  1002,  -255)
+	  3: Rel (  -117,  -176)  ->  Abs (   885,  -431)
+	  4: Rel (  -150,     0)  ->  Abs (   735,  -431)
+	  5: Rel (   -73,     0)  ->  Abs (   662,  -431)
+	  6: Rel (   -68,    19)  ->  Abs (   594,  -412)
+	  7: Rel (    34,   153)  ->  Abs (   628,  -259)
+	  8: Rel (    53,   -14)  ->  Abs (   681,  -273)
+	  9: Rel (    32,     0)  ->  Abs (   713,  -273)
+	 10: Rel (    65,     0)  ->  Abs (   778,  -273)
+	 11: Rel (    44,    88)  ->  Abs (   822,  -185)
+	 12: Rel (     0,   131)  ->  Abs (   822,   -54)
+	 13: Rel (     0,   700)  ->  Abs (   822,   646)
+	 14: Rel (     0,   148)  ->  Abs (   822,   794)
+	 15: Rel (  -104,   136)  ->  Abs (   718,   930)
+	 16: Rel (  -119,     0)  ->  Abs (   599,   930)
+	 17: Rel (  -117,     0)  ->  Abs (   482,   930)
+	 18: Rel (  -163,  -150)  ->  Abs (   319,   780)
+	 19: Rel (     0,  -200)  ->  Abs (   319,   580)
+	 20: Rel (     0,  -580)  ->  Abs (   319,     0)
+	 21: Rel (  -180,     0)  ->  Abs (   139,     0)
+	 22: Rel (     0,  1062)  ->  Abs (   139,  1062)
+	 23: Rel (   162,     0)  ->  Abs (   301,  1062)
+	 24: Rel (     0,  -151)  ->  Abs (   301,   911)
+	 25: Rel (   117,   175)  ->  Abs (   418,  1086)
+	 26: Rel (   221,     0)  ->  Abs (   639,  1086)
+	 27: Rel (   130,     0)  ->  Abs (   769,  1086)
+	 28: Rel (   176,  -112)  ->  Abs (   945,   974)
+	 29: Rel (    57,  -165)  ->  Abs (  1002,   809)
+
+	Glyph 447: off = 0x000147E6, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1501
+	  yMax:			1747
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	216
+		X WOffset:	475
+		Y WOffset:	372
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              2    32    28   112    28     2 
+	00007: PUSHW[1]            -20 
+	00010: PUSHB[8]             28    31     0     7    65     2     1    28 
+	00019: PUSHW[2]            545    41 
+	00024: SVTCA[y-axis] 
+	00025: CALL       
+	00026: SVTCA[x-axis] 
+	00027: CALL       
+	00028: DELTAP1    
+	00029: SHC[rp1,zp0] 
+
+	Glyph 448: off = 0x0001481E, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1063
+	  yMax:			1375
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	216
+		X WOffset:	235
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              2     2     1    26 
+	00005: PUSHW[2]            707    41 
+	00010: SVTCA[y-axis] 
+	00011: CALL       
+	00012: SVTCA[x-axis] 
+	00013: PUSHB[2]              6     2 
+	00016: RS         
+	00017: EQ         
+	00018: IF         
+	00019: PUSHB[6]              0    27    28     0     7    65 
+	00026: CALL       
+	00027: ELSE       
+	00028: PUSHB[5]             26     2    10    72    43 
+	00034: CALL       
+	00035: EIF        
+	00036: SHC[rp1,zp0] 
+
+	Glyph 449: off = 0x0001485E, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1501
+	  yMax:			1826
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	217
+		X WOffset:	475
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (20):     2    80    35    96    35   112    35   128    35   144 
+	                            35     5    35     2     0    72    43     2     1    32 
+	00022: PUSHW[2]            545    41 
+	00027: SVTCA[y-axis] 
+	00028: CALL       
+	00029: SVTCA[x-axis] 
+	00030: CALL       
+	00031: DELTAP1    
+	00032: SHC[rp1,zp0] 
+
+	Glyph 450: off = 0x0001489A, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1063
+	  yMax:			1464
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	217
+		X WOffset:	235
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    33    27     0     7    65     2     1    30 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 451: off = 0x000148CA, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-421
+	  xMax:			1453
+	  yMax:			1466
+
+	     0: Flags:		0x0226
+		Glyf Index:	53
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	494
+		X WOffset:	486
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (11):     2    32    46     1     0    46    40     1     6    65 
+	                            37 
+	00013: SVTCA[y-axis] 
+	00014: MDAP[rd]   
+	00015: SVTCA[x-axis] 
+	00016: CALL       
+	00017: DELTAP1    
+	00018: SHC[rp1,zp0] 
+
+	Glyph 452: off = 0x000148F8, len = 28
+	  numberOfContours:	-1  (Composite)
+	  xMin:			133
+	  yMin:			-421
+	  xMax:			710
+	  yMax:			1086
+
+	     0: Flags:		0x0226
+		Glyf Index:	85
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	494
+		X BOffset:	37
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[1]             20 
+	00002: SVTCA[y-axis] 
+	00003: MDAP[rd]   
+
+	Glyph 453: off = 0x00014914, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			92
+	  yMin:			-25
+	  xMax:			1259
+	  yMax:			1830
+
+	     0: Flags:		0x0226
+		Glyf Index:	54
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	332
+		Y WOffset:	356
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    51    54    22    22    65     1     1    50 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 454: off = 0x00014944, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			63
+	  yMin:			-24
+	  xMax:			945
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	86
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	190
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    51    54    21    21    65     1     1    50 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 455: off = 0x00014974, len = 240
+	  numberOfContours:	1
+	  xMin:			48
+	  yMin:			0
+	  xMax:			1210
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	180
+	00000: NPUSHB      (38):     0    17    16    17    32    17     3    12     1    48 
+	                            11     2     2    15     6     8     5    30     7     6 
+	                             2    15     8    11    12    57     7     1     2    57 
+	                             6    14     9     8    32     7     1     7 
+	00040: PUSHW[1]            257 
+	00043: PUSHB[8]              9    32     4     5    47     6     1     6 
+	00052: PUSHW[1]            257 
+	00055: PUSHB[3]              4     4    15 
+	00059: PUSHW[1]            -24 
+	00062: NPUSHB      (11):    16    16     2    85    15     8    15    15     2    85 
+	                            15 
+	00075: PUSHW[1]            -14 
+	00078: PUSHB[5]             12    12     2    85    15 
+	00084: PUSHW[1]            -30 
+	00087: PUSHB[5]             13    13     2    85    15 
+	00093: PUSHW[1]             -4 
+	00096: PUSHB[5]             12    12     6    85    15 
+	00102: PUSHW[1]            -24 
+	00105: PUSHB[5]             13    13     6    85    15 
+	00111: PUSHW[1]            -32 
+	00114: NPUSHB      (10):    16    16     6    85    16    15    32    15     2    15 
+	00126: PUSHW[1]            627 
+	00129: PUSHB[4]             16   182   153    24 
+	00134: CALL       
+	00135: SRP0       
+	00136: MIRP[srp0,md,rd,1] 
+	00137: DELTAP1    
+	00138: CALL       
+	00139: CALL       
+	00140: CALL       
+	00141: CALL       
+	00142: CALL       
+	00143: CALL       
+	00144: CALL       
+	00145: ALIGNRP    
+	00146: SRP0       
+	00147: MIRP[srp0,nmd,rd,0] 
+	00148: DELTAP1    
+	00149: ALIGNRP    
+	00150: SRP0       
+	00151: MIRP[srp0,md,rd,1] 
+	00152: MIRP[srp0,nmd,rd,0] 
+	00153: DELTAP1    
+	00154: ALIGNRP    
+	00155: SRP0       
+	00156: ALIGNRP    
+	00157: SRP0       
+	00158: MIRP[srp0,nmd,rd,0] 
+	00159: ALIGNRP    
+	00160: SRP0       
+	00161: MIRP[srp0,nmd,rd,0] 
+	00162: ALIGNRP    
+	00163: SVTCA[y-axis] 
+	00164: MIAP[rd+ci] 
+	00165: MIAP[rd+ci] 
+	00166: ALIGNRP    
+	00167: MIRP[srp0,md,rd,1] 
+	00168: ALIGNRP    
+	00169: SRP1       
+	00170: SRP2       
+	00171: IP         
+	00172: MDAP[rd]   
+	00173: ALIGNRP    
+	00174: MIRP[srp0,md,rd,1] 
+	00175: ALIGNRP    
+	00176: IUP[y]     
+	00177: IUP[x]     
+	00178: SVTCA[x-axis] 
+	00179: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual         Y-Short         On
+	  9:  YDual                               On
+	 10:        XDual                         On
+	 11:  YDual                               On
+	 12:        XDual         Y-Short         On
+	 13:  YDual                               On
+	 14:        XDual                         On
+	 15:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   531,   629)  ->  Abs (   531,   629)
+	  1: Rel (  -330,     0)  ->  Abs (   201,   629)
+	  2: Rel (     0,   132)  ->  Abs (   201,   761)
+	  3: Rel (   330,     0)  ->  Abs (   531,   761)
+	  4: Rel (     0,   532)  ->  Abs (   531,  1293)
+	  5: Rel (  -483,     0)  ->  Abs (    48,  1293)
+	  6: Rel (     0,   173)  ->  Abs (    48,  1466)
+	  7: Rel (  1162,     0)  ->  Abs (  1210,  1466)
+	  8: Rel (     0,  -173)  ->  Abs (  1210,  1293)
+	  9: Rel (  -485,     0)  ->  Abs (   725,  1293)
+	 10: Rel (     0,  -532)  ->  Abs (   725,   761)
+	 11: Rel (   328,     0)  ->  Abs (  1053,   761)
+	 12: Rel (     0,  -132)  ->  Abs (  1053,   629)
+	 13: Rel (  -328,     0)  ->  Abs (   725,   629)
+	 14: Rel (     0,  -629)  ->  Abs (   725,     0)
+	 15: Rel (  -194,     0)  ->  Abs (   531,     0)
+
+	Glyph 456: off = 0x00014A64, len = 360
+	  numberOfContours:	1
+	  xMin:			12
+	  yMin:			-14
+	  xMax:			531
+	  yMax:			1433
+
+	EndPoints
+	---------
+	  0:  30
+
+	  Length of Instructions:	270
+	00000: PUSHW[2]              5   -64 
+	00005: PUSHB[4]             35    38    52     6 
+	00010: PUSHW[1]            -64 
+	00013: NPUSHB      (91):    35    38    52    47    32   128    32     2    16     1 
+	                            43    15     2     2    26    12     5    43    11     6 
+	                             6    22   201    26     3    24    26    23     5    21 
+	                             8    52    11    12     6    85     9    52    11    12 
+	                             6    85     8     9     6    17    14    13    10     4 
+	                             9    18     0     3     4     7     4     8    30    15 
+	                            51    11   160     2   176     2   192     2   208     2 
+	                             4     2     2     6    11    12    34    23    34    24 
+	                             9    18    37     8    24   255    30     6     5    69 
+	                            30 
+	00106: PUSHW[1]             -6 
+	00109: PUSHB[5]             16    16     2    85    30 
+	00115: PUSHW[1]             -6 
+	00118: NPUSHB      (23):    14    14     2    85    30     4    12    13     2    85 
+	                            30     8    11    11     2    85    30     6    16    16 
+	                             6    85    30 
+	00143: PUSHW[1]             -6 
+	00146: PUSHB[5]             15    15     6    85    30 
+	00152: PUSHW[1]             -4 
+	00155: NPUSHB      (11):    11    11     6    85    30    18    12    12     6    85 
+	                            30 
+	00168: PUSHW[1]            -12 
+	00171: NPUSHB      (20):    13    13     6    85   175    30   191    30     2     0 
+	                            30   208    30     2    30    78    31    23    24    71 
+	00193: PUSHW[2]            266    24 
+	00198: CALL       
+	00199: SVTCA[y-axis] 
+	00200: SRP0       
+	00201: MDRP[nrp0,md,nrd,1] 
+	00202: SVTCA[x-axis] 
+	00203: SRP0       
+	00204: MIRP[srp0,nmd,rd,0] 
+	00205: DELTAP1    
+	00206: DELTAP2    
+	00207: CALL       
+	00208: CALL       
+	00209: CALL       
+	00210: CALL       
+	00211: CALL       
+	00212: CALL       
+	00213: CALL       
+	00214: CALL       
+	00215: CALL       
+	00216: MIRP[srp0,nmd,rd,0] 
+	00217: ALIGNRP    
+	00218: SRP0       
+	00219: MIRP[nrp0,md,rd,1] 
+	00220: ALIGNRP    
+	00221: MIRP[srp0,md,rd,1] 
+	00222: ALIGNRP    
+	00223: SRP0       
+	00224: MIRP[nrp0,nmd,rd,0] 
+	00225: MIRP[srp0,nmd,rd,0] 
+	00226: ALIGNRP    
+	00227: SRP1       
+	00228: SHP[rp1,zp0] 
+	00229: MDAP[rd]   
+	00230: DELTAP2    
+	00231: SRP0       
+	00232: MIRP[nrp0,nmd,rd,0] 
+	00233: SRP1       
+	00234: SRP2       
+	00235: SLOOP      
+	00236: SHP[rp1,zp0] 
+	00237: SRP1       
+	00238: SRP2       
+	00239: SLOOP      
+	00240: SHP[rp1,zp0] 
+	00241: SVTCA[y-axis] 
+	00242: SRP1       
+	00243: SHP[rp1,zp0] 
+	00244: SHP[rp1,zp0] 
+	00245: CALL       
+	00246: CALL       
+	00247: SRP1       
+	00248: SRP2       
+	00249: IP         
+	00250: SRP2       
+	00251: IP         
+	00252: MIAP[rd+ci] 
+	00253: MIRP[nrp0,md,rd,1] 
+	00254: MIAP[rd+ci] 
+	00255: ALIGNRP    
+	00256: MIRP[srp0,md,rd,1] 
+	00257: ALIGNRP    
+	00258: SRP2       
+	00259: IP         
+	00260: MDAP[rd]   
+	00261: ALIGNRP    
+	00262: MIRP[srp0,md,rd,1] 
+	00263: ALIGNRP    
+	00264: IUP[y]     
+	00265: IUP[x]     
+	00266: SVTCA[x-axis] 
+	00267: DELTAP1    
+	00268: CALL       
+	00269: CALL       
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                       X-Short On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual                 X-Short On
+	  4:        XDual                         On
+	  5:  YDual                       X-Short On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual                 X-Short On
+	  8:        XDual                         On
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:        XDual                         On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual         Y-Short         On
+	 13:  YDual                       X-Short On
+	 14:        XDual                         On
+	 15:  YDual XDual                 X-Short On
+	 16:        XDual         Y-Short         On
+	 17:  YDual                       X-Short On
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:        XDual         Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   145,   514)  ->  Abs (   145,   514)
+	  1: Rel (  -133,     0)  ->  Abs (    12,   514)
+	  2: Rel (     0,   132)  ->  Abs (    12,   646)
+	  3: Rel (   133,     0)  ->  Abs (   145,   646)
+	  4: Rel (     0,   276)  ->  Abs (   145,   922)
+	  5: Rel (  -132,     0)  ->  Abs (    13,   922)
+	  6: Rel (     0,   140)  ->  Abs (    13,  1062)
+	  7: Rel (   132,     0)  ->  Abs (   145,  1062)
+	  8: Rel (     0,   263)  ->  Abs (   145,  1325)
+	  9: Rel (   180,   108)  ->  Abs (   325,  1433)
+	 10: Rel (     0,  -371)  ->  Abs (   325,  1062)
+	 11: Rel (   180,     0)  ->  Abs (   505,  1062)
+	 12: Rel (     0,  -140)  ->  Abs (   505,   922)
+	 13: Rel (  -180,     0)  ->  Abs (   325,   922)
+	 14: Rel (     0,  -276)  ->  Abs (   325,   646)
+	 15: Rel (   172,     0)  ->  Abs (   497,   646)
+	 16: Rel (     0,  -132)  ->  Abs (   497,   514)
+	 17: Rel (  -172,     0)  ->  Abs (   325,   514)
+	 18: Rel (     0,  -213)  ->  Abs (   325,   301)
+	 19: Rel (     0,   -85)  ->  Abs (   325,   216)
+	 20: Rel (    37,   -62)  ->  Abs (   362,   154)
+	 21: Rel (    64,     0)  ->  Abs (   426,   154)
+	 22: Rel (    32,     0)  ->  Abs (   458,   154)
+	 23: Rel (    47,     7)  ->  Abs (   505,   161)
+	 24: Rel (    26,  -159)  ->  Abs (   531,     2)
+	 25: Rel (   -73,   -16)  ->  Abs (   458,   -14)
+	 26: Rel (   -61,     0)  ->  Abs (   397,   -14)
+	 27: Rel (  -106,     0)  ->  Abs (   291,   -14)
+	 28: Rel (  -115,    72)  ->  Abs (   176,    58)
+	 29: Rel (   -31,   117)  ->  Abs (   145,   175)
+	 30: Rel (     0,   136)  ->  Abs (   145,   311)
+
+	Glyph 457: off = 0x00014BCC, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1314
+	  yMax:			1806
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	420
+		Y WOffset:	356
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    21    33    17    17    65     1     1    21 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 458: off = 0x00014BFC, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			992
+	  yMax:			1450
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	236
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     1   239    25     1    25    64    83    84    52     0 
+	                            25    37    17    17    65     1     1    25 
+	00020: PUSHW[2]            546    41 
+	00025: SVTCA[y-axis] 
+	00026: CALL       
+	00027: SVTCA[x-axis] 
+	00028: CALL       
+	00029: CALL       
+	00030: DELTAP2    
+	00031: SHC[rp1,zp0] 
+
+	Glyph 459: off = 0x00014C36, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1314
+	  yMax:			1731
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	216
+		X WOffset:	420
+		Y WOffset:	356
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1     1    21 
+	00005: PUSHW[2]            545    41 
+	00010: SVTCA[y-axis] 
+	00011: CALL       
+	00012: SVTCA[x-axis] 
+	00013: PUSHB[2]              6     2 
+	00016: RS         
+	00017: EQ         
+	00018: IF         
+	00019: PUSHB[6]              0    21    23    11     1    65 
+	00026: CALL       
+	00027: ELSE       
+	00028: PUSHB[5]             21    15     0    72    43 
+	00034: CALL       
+	00035: EIF        
+	00036: SHC[rp1,zp0] 
+
+	Glyph 460: off = 0x00014C76, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			992
+	  yMax:			1375
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	216
+		X WOffset:	236
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    25    28    10    23    65     1     1    25 
+	00012: PUSHW[2]            707    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 461: off = 0x00014CA6, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1314
+	  yMax:			1820
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	217
+		X WOffset:	400
+		Y WOffset:	356
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    28    22    11     1    65     1     1    25 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 462: off = 0x00014CD6, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			992
+	  yMax:			1464
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	217
+		X WOffset:	236
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1     1    29 
+	00005: PUSHW[2]            546    41 
+	00010: SVTCA[y-axis] 
+	00011: CALL       
+	00012: SVTCA[x-axis] 
+	00013: PUSHB[2]              6     2 
+	00016: RS         
+	00017: EQ         
+	00018: IF         
+	00019: PUSHB[6]              0    32    26    10    23    65 
+	00026: CALL       
+	00027: ELSE       
+	00028: PUSHB[2]             32    11 
+	00031: PUSHW[1]            -40 
+	00034: PUSHB[2]             72    43 
+	00037: CALL       
+	00038: EIF        
+	00039: SHC[rp1,zp0] 
+
+	Glyph 463: off = 0x00014D18, len = 416
+	  numberOfContours:	1
+	  xMin:			161
+	  yMin:			-426
+	  xMax:			1314
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  34
+
+	  Length of Instructions:	307
+	00000: PUSHB[8]             88    16    88    34   201    16     3    36 
+	00009: PUSHW[1]            -64 
+	00012: NPUSHB      (42):    19    21    52    58    16    59    17    52    33    54 
+	                            34    74    16    74    17    70    33    70    34    88 
+	                            17    86    33   102    34   118    23   170    34   232 
+	                            23    14    12    34    13    21    52     7   156     8 
+	                             8     5 
+	00056: PUSHW[1]            605 
+	00059: PUSHB[6]             10    15    15     9    15    25 
+	00066: PUSHW[1]            699 
+	00069: NPUSHB      (10):     0     9    29    19     2    32     8     1     8     2 
+	00081: PUSHW[1]            605 
+	00084: NPUSHB      (16):    13    13    15     0     1   255     0     1     0   156 
+	                            15    15    18    28    38    31 
+	00102: PUSHW[1]            -20 
+	00105: PUSHB[5]             15    15     2    85    31 
+	00111: PUSHW[1]            -14 
+	00114: NPUSHB      (17):    13    13     2    85    31    16    12    12     2    85 
+	                            31    12    15    15     6    85    31 
+	00133: PUSHW[1]            -16 
+	00136: NPUSHB      (31):    11    11     6    85    32    31     1    32    31    80 
+	                            31     2    96    31   112    31   128    31     3    31 
+	                            93    36    21    38    18    32    16    16     2    85 
+	                            18 
+	00169: PUSHW[1]            -10 
+	00172: PUSHB[5]             15    15     2    85    18 
+	00178: PUSHW[1]            -10 
+	00181: PUSHB[5]             13    13     2    85    18 
+	00187: PUSHW[1]             -6 
+	00190: PUSHB[5]             12    12     2    85    18 
+	00196: PUSHW[1]             -4 
+	00199: PUSHB[5]             11    11     6    85    18 
+	00205: PUSHW[1]             -9 
+	00208: PUSHB[5]             12    12     6    85    18 
+	00214: PUSHW[1]             -8 
+	00217: PUSHB[5]             13    13     6    85    18 
+	00223: PUSHW[1]            -10 
+	00226: PUSHB[8]             15    15     6    85    32    10     1    18 
+	00235: PUSHW[1]            -64 
+	00238: PUSHB[7]             19    21    52    18    93    35    59 
+	00246: PUSHW[2]            398    24 
+	00251: CALL       
+	00252: SRP0       
+	00253: MIRP[srp0,nmd,rd,0] 
+	00254: CALL       
+	00255: DELTAP1    
+	00256: CALL       
+	00257: CALL       
+	00258: CALL       
+	00259: CALL       
+	00260: CALL       
+	00261: CALL       
+	00262: CALL       
+	00263: CALL       
+	00264: MIRP[nrp0,md,rd,1] 
+	00265: SRP0       
+	00266: MIRP[srp0,nmd,rd,2] 
+	00267: DELTAP1    
+	00268: DELTAP1    
+	00269: DELTAP2    
+	00270: CALL       
+	00271: CALL       
+	00272: CALL       
+	00273: CALL       
+	00274: CALL       
+	00275: MIRP[nrp0,md,rd,1] 
+	00276: SRP2       
+	00277: IP         
+	00278: MDAP[rd]   
+	00279: MIRP[nrp0,md,rd,1] 
+	00280: DELTAP1    
+	00281: DELTAP2    
+	00282: SHP[rp1,zp0] 
+	00283: MDAP[rd]   
+	00284: MIRP[nrp0,md,rd,1] 
+	00285: MDAP[rd]   
+	00286: DELTAP1    
+	00287: SVTCA[y-axis] 
+	00288: MIAP[rd+ci] 
+	00289: ALIGNRP    
+	00290: MIAP[rd+ci] 
+	00291: MIRP[nrp0,md,rd,1] 
+	00292: SHP[rp1,zp0] 
+	00293: MIAP[rd+ci] 
+	00294: MIAP[rd+ci] 
+	00295: MIRP[nrp0,md,rd,1] 
+	00296: SHP[rp1,zp0] 
+	00297: MDAP[rd]   
+	00298: MIRP[nrp0,md,rd,1] 
+	00299: IUP[y]     
+	00300: IUP[x]     
+	00301: SVTCA[x-axis] 
+	00302: CALL       
+	00303: DELTAP1    
+	00304: CALL       
+	00305: SVTCA[y-axis] 
+	00306: DELTAP1    
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:                      Y-Short X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short         On
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual               Y-Short         Off
+	 17:                              X-Short Off
+	 18:        XDual                         On
+	 19:        XDual                         On
+	 20:  YDual XDual                 X-Short On
+	 21:        XDual                         On
+	 22:        XDual         Y-Short         Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:        XDual                         On
+	 29:        XDual                         On
+	 30:  YDual XDual                 X-Short On
+	 31:        XDual                         On
+	 32:        XDual         Y-Short         Off
+	 33:                              X-Short Off
+	 34:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   786,   -24)  ->  Abs (   786,   -24)
+	  1: Rel (   -20,   -71)  ->  Abs (   766,   -95)
+	  2: Rel (     0,   -42)  ->  Abs (   766,  -137)
+	  3: Rel (     0,   -71)  ->  Abs (   766,  -208)
+	  4: Rel (    82,   -84)  ->  Abs (   848,  -292)
+	  5: Rel (    62,     0)  ->  Abs (   910,  -292)
+	  6: Rel (    77,     0)  ->  Abs (   987,  -292)
+	  7: Rel (    91,    46)  ->  Abs (  1078,  -246)
+	  8: Rel (     0,  -119)  ->  Abs (  1078,  -365)
+	  9: Rel (  -118,   -61)  ->  Abs (   960,  -426)
+	 10: Rel (  -101,     0)  ->  Abs (   859,  -426)
+	 11: Rel (   -98,     0)  ->  Abs (   761,  -426)
+	 12: Rel (  -121,   120)  ->  Abs (   640,  -306)
+	 13: Rel (     0,   101)  ->  Abs (   640,  -205)
+	 14: Rel (     0,    70)  ->  Abs (   640,  -135)
+	 15: Rel (    28,   113)  ->  Abs (   668,   -22)
+	 16: Rel (  -269,    23)  ->  Abs (   399,     1)
+	 17: Rel (  -238,   282)  ->  Abs (   161,   283)
+	 18: Rel (     0,   336)  ->  Abs (   161,   619)
+	 19: Rel (     0,   847)  ->  Abs (   161,  1466)
+	 20: Rel (   194,     0)  ->  Abs (   355,  1466)
+	 21: Rel (     0,  -846)  ->  Abs (   355,   620)
+	 22: Rel (     0,  -191)  ->  Abs (   355,   429)
+	 23: Rel (    73,  -185)  ->  Abs (   428,   244)
+	 24: Rel (   177,   -94)  ->  Abs (   605,   150)
+	 25: Rel (   116,     0)  ->  Abs (   721,   150)
+	 26: Rel (   219,     0)  ->  Abs (   940,   150)
+	 27: Rel (   180,   196)  ->  Abs (  1120,   346)
+	 28: Rel (     0,   274)  ->  Abs (  1120,   620)
+	 29: Rel (     0,   846)  ->  Abs (  1120,  1466)
+	 30: Rel (   194,     0)  ->  Abs (  1314,  1466)
+	 31: Rel (     0,  -847)  ->  Abs (  1314,   619)
+	 32: Rel (     0,  -193)  ->  Abs (  1314,   426)
+	 33: Rel (   -78,  -258)  ->  Abs (  1236,   168)
+	 34: Rel (  -240,  -180)  ->  Abs (   996,   -12)
+
+	Glyph 464: off = 0x00014EB8, len = 480
+	  numberOfContours:	1
+	  xMin:			131
+	  yMin:			-425
+	  xMax:			1235
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  37
+
+	  Length of Instructions:	370
+	00000: PUSHB[6]             12    34    15    17    52    39 
+	00007: PUSHW[1]            -64 
+	00010: NPUSHB       (9):    21    23    52    18    32    19    22    52    28 
+	00021: PUSHW[1]            -16 
+	00024: NPUSHB      (64):    18    20    52    10    21    25    21    38    18    53 
+	                            18    68    18   119    28   132    28     7    42    18 
+	                            43    32     2     7     7     8     8     5    69    10 
+	                            15    35    24     6    37    16    11    30    28    19 
+	                            11     7    32     8    64     8   112     8     3     8 
+	                             2    69    13    13     0     0    37    34    33    17 
+	                             3    16   154    35 
+	00090: PUSHW[1]            560 
+	00093: NPUSHB      (25):    37    36    64    51    54    52    39    64    16    16 
+	                             2    85    36    40    16    16     2    85    36    18 
+	                            14    14     2    85    36 
+	00120: PUSHW[1]            -22 
+	00123: NPUSHB      (11):    13    13     2    85    36     4    12    12     2    85 
+	                            36 
+	00136: PUSHW[1]             -4 
+	00139: PUSHB[5]             11    11     2    85    36 
+	00145: PUSHW[1]            -12 
+	00148: NPUSHB      (11):    11    11     6    85    36    20    16    16     6    85 
+	                            36 
+	00161: PUSHW[1]            -10 
+	00164: NPUSHB      (11):    13    13     6    85    36    12    15    15     6    85 
+	                            36 
+	00177: PUSHW[1]            -10 
+	00180: NPUSHB      (13):    12    12     6    85   255    36     1   192    36     1 
+	                            36    78    39 
+	00195: PUSHW[1]            -64 
+	00198: NPUSHB      (21):    52    54    52   176    39   240    39     2   112    39 
+	                           160    39   176    39   255    39     4    39    26    37 
+	                            23 
+	00221: PUSHW[1]             -8 
+	00224: PUSHB[5]             16    16     2    85    23 
+	00230: PUSHW[1]             -8 
+	00233: NPUSHB      (17):    14    14     2    85    23     4    12    12     2    85 
+	                            23    10    11    11     6    85    23 
+	00252: PUSHW[1]            -10 
+	00255: NPUSHB      (17):    15    15     6    85    23     2    12    12     6    85 
+	                            23     2    13    13     6    85    23 
+	00274: PUSHW[1]            -64 
+	00277: NPUSHB      (21):    51    54    52   240    23     1     0    23    32    23 
+	                           208    23   224    23     4    23    78    38    71    80 
+	                            24 
+	00300: CALL       
+	00301: SRP0       
+	00302: MIRP[srp0,nmd,rd,0] 
+	00303: DELTAP1    
+	00304: DELTAP2    
+	00305: CALL       
+	00306: CALL       
+	00307: CALL       
+	00308: CALL       
+	00309: CALL       
+	00310: CALL       
+	00311: CALL       
+	00312: CALL       
+	00313: MIRP[nrp0,md,rd,1] 
+	00314: SRP0       
+	00315: DELTAP1    
+	00316: DELTAP2    
+	00317: CALL       
+	00318: MIRP[srp0,nmd,rd,2] 
+	00319: DELTAP1    
+	00320: DELTAP2    
+	00321: CALL       
+	00322: CALL       
+	00323: CALL       
+	00324: CALL       
+	00325: CALL       
+	00326: CALL       
+	00327: CALL       
+	00328: CALL       
+	00329: CALL       
+	00330: CALL       
+	00331: CALL       
+	00332: CALL       
+	00333: ALIGNRP    
+	00334: MIRP[srp0,md,rd,1] 
+	00335: MIRP[nrp0,nmd,rd,0] 
+	00336: SLOOP      
+	00337: IP         
+	00338: SRP1       
+	00339: IP         
+	00340: MDAP[rd]   
+	00341: SHP[rp2,zp1] 
+	00342: MDAP[rd]   
+	00343: MIRP[nrp0,md,rd,1] 
+	00344: MDAP[rd]   
+	00345: DELTAP1    
+	00346: ALIGNRP    
+	00347: SVTCA[y-axis] 
+	00348: MIAP[rd+ci] 
+	00349: MIRP[nrp0,md,rd,1] 
+	00350: MIAP[rd+ci] 
+	00351: ALIGNRP    
+	00352: MIAP[rd+ci] 
+	00353: ALIGNRP    
+	00354: MIAP[rd+ci] 
+	00355: MIRP[nrp0,md,rd,1] 
+	00356: SHP[rp1,zp0] 
+	00357: MDAP[rd]   
+	00358: SHP[rp1,zp0] 
+	00359: MDAP[rd]   
+	00360: IUP[y]     
+	00361: IUP[x]     
+	00362: SVTCA[y-axis] 
+	00363: DELTAP1    
+	00364: SVTCA[x-axis] 
+	00365: DELTAP1    
+	00366: CALL       
+	00367: CALL       
+	00368: CALL       
+	00369: CALL       
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:                      Y-Short X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short         On
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short         On
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:        XDual                         On
+	 25:  YDual XDual                 X-Short On
+	 26:        XDual                         On
+	 27:        XDual         Y-Short         Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:        XDual                         On
+	 36:  YDual XDual                 X-Short On
+	 37:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   952,     0)  ->  Abs (   952,     0)
+	  1: Rel (   -29,   -78)  ->  Abs (   923,   -78)
+	  2: Rel (     0,   -62)  ->  Abs (   923,  -140)
+	  3: Rel (     0,   -67)  ->  Abs (   923,  -207)
+	  4: Rel (    82,   -85)  ->  Abs (  1005,  -292)
+	  5: Rel (    62,     0)  ->  Abs (  1067,  -292)
+	  6: Rel (    76,     0)  ->  Abs (  1143,  -292)
+	  7: Rel (    92,    46)  ->  Abs (  1235,  -246)
+	  8: Rel (     0,  -119)  ->  Abs (  1235,  -365)
+	  9: Rel (  -117,   -60)  ->  Abs (  1118,  -425)
+	 10: Rel (  -104,     0)  ->  Abs (  1014,  -425)
+	 11: Rel (   -98,     0)  ->  Abs (   916,  -425)
+	 12: Rel (  -119,   120)  ->  Abs (   797,  -305)
+	 13: Rel (     0,   100)  ->  Abs (   797,  -205)
+	 14: Rel (     0,    67)  ->  Abs (   797,  -138)
+	 15: Rel (    26,   105)  ->  Abs (   823,   -33)
+	 16: Rel (     8,    33)  ->  Abs (   831,     0)
+	 17: Rel (     0,   156)  ->  Abs (   831,   156)
+	 18: Rel (  -124,  -180)  ->  Abs (   707,   -24)
+	 19: Rel (  -214,     0)  ->  Abs (   493,   -24)
+	 20: Rel (  -126,     0)  ->  Abs (   367,   -24)
+	 21: Rel (  -177,   112)  ->  Abs (   190,    88)
+	 22: Rel (   -59,   167)  ->  Abs (   131,   255)
+	 23: Rel (     0,   149)  ->  Abs (   131,   404)
+	 24: Rel (     0,   658)  ->  Abs (   131,  1062)
+	 25: Rel (   180,     0)  ->  Abs (   311,  1062)
+	 26: Rel (     0,  -589)  ->  Abs (   311,   473)
+	 27: Rel (     0,  -139)  ->  Abs (   311,   334)
+	 28: Rel (    26,  -119)  ->  Abs (   337,   215)
+	 29: Rel (   110,   -84)  ->  Abs (   447,   131)
+	 30: Rel (    83,     0)  ->  Abs (   530,   131)
+	 31: Rel (    91,     0)  ->  Abs (   621,   131)
+	 32: Rel (   143,    96)  ->  Abs (   764,   227)
+	 33: Rel (    48,   144)  ->  Abs (   812,   371)
+	 34: Rel (     0,   122)  ->  Abs (   812,   493)
+	 35: Rel (     0,   569)  ->  Abs (   812,  1062)
+	 36: Rel (   180,     0)  ->  Abs (   992,  1062)
+	 37: Rel (     0, -1062)  ->  Abs (   992,     0)
+
+	Glyph 465: off = 0x00015098, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			25
+	  yMin:			0
+	  xMax:			1910
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	58
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	620
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1     1    27 
+	00005: PUSHW[2]            545    41 
+	00010: SVTCA[y-axis] 
+	00011: CALL       
+	00012: SVTCA[x-axis] 
+	00013: PUSHB[2]              6     2 
+	00016: RS         
+	00017: EQ         
+	00018: IF         
+	00019: PUSHB[6]              0    27    30     8     9    65 
+	00026: CALL       
+	00027: ELSE       
+	00028: PUSHB[5]             25    21     0    72    43 
+	00034: CALL       
+	00035: EIF        
+	00036: SHC[rp1,zp0] 
+
+	Glyph 466: off = 0x000150D8, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			6
+	  yMin:			0
+	  xMax:			1463
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	90
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	410
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1     1    21 
+	00005: PUSHW[2]            546    41 
+	00010: SVTCA[y-axis] 
+	00011: CALL       
+	00012: SVTCA[x-axis] 
+	00013: PUSHB[2]              6     2 
+	00016: RS         
+	00017: EQ         
+	00018: IF         
+	00019: PUSHB[6]              0    21    24     7     8    65 
+	00026: CALL       
+	00027: ELSE       
+	00028: PUSHB[5]             19    17     0    72    43 
+	00034: CALL       
+	00035: EIF        
+	00036: SHC[rp1,zp0] 
+
+	Glyph 467: off = 0x00015118, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			6
+	  yMin:			0
+	  xMax:			1350
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	365
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    15    18     2    10    65     1     1    15 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 468: off = 0x00015148, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			33
+	  yMin:			-431
+	  xMax:			1006
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	92
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	215
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1     1    29 
+	00005: PUSHW[2]            546    41 
+	00010: SVTCA[y-axis] 
+	00011: CALL       
+	00012: SVTCA[x-axis] 
+	00013: PUSHB[2]              6     2 
+	00016: RS         
+	00017: EQ         
+	00018: IF         
+	00019: PUSHB[6]              0    29    32    12    18    65 
+	00026: CALL       
+	00027: ELSE       
+	00028: PUSHB[5]             27    15     0    72    43 
+	00034: CALL       
+	00035: EIF        
+	00036: SHC[rp1,zp0] 
+
+	Glyph 469: off = 0x00015188, len = 234
+	  numberOfContours:	1
+	  xMin:			137
+	  yMin:			0
+	  xMax:			598
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  14
+
+	  Length of Instructions:	181
+	00000: NPUSHB      (77):    79    16   144    16   160    16   176    16   192    16 
+	                           223    16   240    16     7   176    16   192    16   223 
+	                            16   224    16   255    16     5     0    16    31    16 
+	                           112    16   128    16   159    16     5    31    16    75 
+	                             3    89     3   104     3   112    16     5    10    28 
+	                             5     0     0    10     7     7     0     8    32     8 
+	                           112     8   128     8     4     8    13    14    37     1 
+	                            16    64    11    11     2    85     0 
+	00079: PUSHW[1]            -10 
+	00082: NPUSHB      (23):    16    16     2    85     0     6    12    12     2    85 
+	                             0    16    11    11     2    85     0     8    16    16 
+	                             6    85     0 
+	00107: PUSHW[1]             -4 
+	00110: NPUSHB      (38):    12    13     6    85   159     0   192     0   224     0 
+	                             3     0     0   160     0   176     0     3   192     0 
+	                           240     0     2     0     0    32     0   208     0   224 
+	                             0     4     0    78    15    71    80    24 
+	00150: CALL       
+	00151: SRP0       
+	00152: MIRP[srp0,nmd,rd,0] 
+	00153: DELTAP1    
+	00154: DELTAP2    
+	00155: DELTAP3    
+	00156: DELTAP3    
+	00157: CALL       
+	00158: CALL       
+	00159: CALL       
+	00160: CALL       
+	00161: CALL       
+	00162: CALL       
+	00163: ALIGNRP    
+	00164: MIRP[srp0,md,rd,1] 
+	00165: ALIGNRP    
+	00166: MDAP[rd]   
+	00167: DELTAP1    
+	00168: SHP[rp1,zp0] 
+	00169: MDAP[rd]   
+	00170: SVTCA[y-axis] 
+	00171: MIAP[rd+ci] 
+	00172: MIAP[rd+ci] 
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: IUP[y]     
+	00175: IUP[x]     
+	00176: SVTCA[x-axis] 
+	00177: DELTAP1    
+	00178: DELTAP3    
+	00179: DELTAP3    
+	00180: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual         Y-Short         Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short On
+	  8:                      Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:                      Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   137,     0)  ->  Abs (   137,     0)
+	  1: Rel (     0,  1175)  ->  Abs (   137,  1175)
+	  2: Rel (     0,   115)  ->  Abs (   137,  1290)
+	  3: Rel (    54,   127)  ->  Abs (   191,  1417)
+	  4: Rel (   134,    74)  ->  Abs (   325,  1491)
+	  5: Rel (   106,     0)  ->  Abs (   431,  1491)
+	  6: Rel (    79,     0)  ->  Abs (   510,  1491)
+	  7: Rel (    88,   -18)  ->  Abs (   598,  1473)
+	  8: Rel (   -26,  -157)  ->  Abs (   572,  1316)
+	  9: Rel (   -54,    10)  ->  Abs (   518,  1326)
+	 10: Rel (   -52,     0)  ->  Abs (   466,  1326)
+	 11: Rel (   -90,     0)  ->  Abs (   376,  1326)
+	 12: Rel (   -59,   -79)  ->  Abs (   317,  1247)
+	 13: Rel (     0,   -87)  ->  Abs (   317,  1160)
+	 14: Rel (     0, -1160)  ->  Abs (   317,     0)
+
+	Glyph 470: off = 0x00015272, len = 128
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			2060
+
+	     0: Flags:		0x0236
+		Glyf Index:	99
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	141
+		X WOffset:	339
+		Y WOffset:	586
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              4    39    17     0    72    43     4    39 
+	00009: PUSHW[1]            -64 
+	00012: PUSHB[4]             51    54    52    39 
+	00017: PUSHW[1]            -64 
+	00020: PUSHB[4]             34    36    52    39 
+	00025: PUSHW[1]            -64 
+	00028: PUSHB[4]             30    32    52    39 
+	00033: PUSHW[1]            -64 
+	00036: PUSHB[7]             16    18    52   175    39     1    39 
+	00044: SVTCA[y-axis] 
+	00045: MDAP[rd]   
+	00046: DELTAP1    
+	00047: CALL       
+	00048: CALL       
+	00049: CALL       
+	00050: CALL       
+	00051: PUSHB[2]              6     2 
+	00054: RS         
+	00055: EQ         
+	00056: IF         
+	00057: NPUSHB       (9):     0    39    16    39     2   160    39     1    39 
+	00068: PUSHW[1]            -64 
+	00071: PUSHB[4]             69    69    52    39 
+	00076: PUSHW[1]            -64 
+	00079: PUSHB[4]             44    47    52    39 
+	00084: PUSHW[1]            -64 
+	00087: PUSHB[3]             23    25    52 
+	00091: CALL       
+	00092: CALL       
+	00093: CALL       
+	00094: DELTAP1    
+	00095: DELTAP3    
+	00096: EIF        
+	00097: SHC[rp1,zp0] 
+	00098: SVTCA[x-axis] 
+	00099: CALL       
+	00100: SHC[rp1,zp0] 
+
+	Glyph 471: off = 0x000152F2, len = 228
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1924
+
+	     0: Flags:		0x0226
+		Glyf Index:	110
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	271
+		Y WOffset:	450
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              6     2 
+	00003: RS         
+	00004: EQ         
+	00005: IF         
+	00006: NPUSHB      (42):     4     0    80    83    59    59    65     3     2     0 
+	                            56    62    28    28    65     4     0    83    80    83 
+	                           240    83     3    47    83   112    83   128    83     3 
+	                            83     3     2    32    65   128    65     2   128    65 
+	                             1    65 
+	00050: SVTCA[y-axis] 
+	00051: MDAP[rd]   
+	00052: DELTAP2    
+	00053: DELTAP3    
+	00054: SHC[rp1,zp0] 
+	00055: SHC[rp1,zp0] 
+	00056: MDAP[rd]   
+	00057: DELTAP1    
+	00058: DELTAP2    
+	00059: SHC[rp1,zp0] 
+	00060: SVTCA[x-axis] 
+	00061: CALL       
+	00062: SHC[rp1,zp0] 
+	00063: SHC[rp1,zp0] 
+	00064: CALL       
+	00065: SHC[rp1,zp0] 
+	00066: ELSE       
+	00067: NPUSHB      (44):     4    80    68     0    72    43    81    82    80    83 
+	                           128    75    79    52    83    64    96    96    52    83 
+	                            64    56    56    52     0    83    96    83   143    83 
+	                           208    83     4   143    83   240    83     2    83   128 
+	                            56    63    52    83 
+	00113: PUSHW[1]            -64 
+	00116: NPUSHB       (9):    44    46    52    83   128    41    47    52    83 
+	00127: PUSHW[1]            -64 
+	00130: PUSHB[4]             39    40    52    83 
+	00135: PUSHW[1]           -128 
+	00138: PUSHB[4]             35    36    52    83 
+	00143: PUSHW[1]            -64 
+	00146: PUSHB[4]             31    34    52    83 
+	00151: PUSHW[1]           -128 
+	00154: NPUSHB      (15):    30    30    52    83    64    21    24    52    83   128 
+	                            19    20    52    83    28 
+	00171: PUSHW[1]            320 
+	00174: SVTCA[y-axis] 
+	00175: SMD        
+	00176: RTG        
+	00177: SRP0       
+	00178: MDRP[srp0,md,rd,0] 
+	00179: CALL       
+	00180: CALL       
+	00181: CALL       
+	00182: CALL       
+	00183: CALL       
+	00184: CALL       
+	00185: CALL       
+	00186: CALL       
+	00187: CALL       
+	00188: DELTAP2    
+	00189: DELTAP3    
+	00190: CALL       
+	00191: CALL       
+	00192: CALL       
+	00193: MDRP[nrp0,nmd,rd,0] 
+	00194: MDRP[srp0,nmd,rd,0] 
+	00195: MDRP[nrp0,nmd,rd,0] 
+	00196: IUP[y]     
+	00197: IUP[x]     
+	00198: SVTCA[x-axis] 
+	00199: CALL       
+	00200: SHC[rp1,zp0] 
+	00201: EIF        
+
+	Glyph 472: off = 0x000153D6, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			1
+	  yMin:			0
+	  xMax:			1936
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	144
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	659
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    20    22     1     4    65     2     1    23 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 473: off = 0x00015406, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1738
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	160
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	600
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     3     1    78    37     0    72    39     3     1    78 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+
+	Glyph 474: off = 0x00015436, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-59
+	  xMax:			1517
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	145
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	459
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     3    52    25    50    72    43     3     1    52 
+	00011: PUSHW[2]            545    41 
+	00016: SVTCA[y-axis] 
+	00017: CALL       
+	00018: SVTCA[x-axis] 
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+
+	Glyph 475: off = 0x00015466, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			129
+	  yMin:			-79
+	  xMax:			1124
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	161
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	310
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     3     1    44    29    30    72    39     3     1    47 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+
+	Glyph 476: off = 0x00015496, len = 60
+	  numberOfContours:	1
+	  xMin:			185
+	  yMin:			857
+	  xMax:			390
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	36
+	00000: NPUSHB      (14):     2     1     3     0    60     1     5   159     3    60 
+	                             0    25     4   161 
+	00016: PUSHW[2]            400    24 
+	00021: CALL       
+	00022: FLIPOFF    
+	00023: SRP0       
+	00024: MIRP[srp0,nmd,rd,0] 
+	00025: FLIPON     
+	00026: MIRP[srp0,md,rd,1] 
+	00027: MIRP[nrp0,nmd,rd,2] 
+	00028: SVTCA[y-axis] 
+	00029: MDAP[rd]   
+	00030: MIRP[srp0,md,rd,1] 
+	00031: ALIGNRP    
+	00032: SRP0       
+	00033: ALIGNRP    
+	00034: IUP[y]     
+	00035: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   185,   857)  ->  Abs (   185,   857)
+	  1: Rel (     0,   205)  ->  Abs (   185,  1062)
+	  2: Rel (   205,     0)  ->  Abs (   390,  1062)
+	  3: Rel (     0,  -205)  ->  Abs (   390,   857)
+
+	Glyph 477: off = 0x000154D2, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			25
+	  yMin:			0
+	  xMax:			1910
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	58
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	650
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHW[2]              1   -90 
+	00005: PUSHB[8]             27    25     8     9    65     1     1    26 
+	00014: PUSHW[2]            545    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: SHC[rp1,zp0] 
+
+	Glyph 478: off = 0x00015504, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			6
+	  yMin:			0
+	  xMax:			1463
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	90
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	360
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHW[2]              1   -90 
+	00005: PUSHB[8]             21    19     7     8    65     1     1    20 
+	00014: PUSHW[2]            546    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: SHC[rp1,zp0] 
+
+	Glyph 479: off = 0x00015536, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			25
+	  yMin:			0
+	  xMax:			1910
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	58
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	650
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     1    25     8     0    72    43     1     1    25 
+	00011: PUSHW[2]            545    41 
+	00016: SVTCA[y-axis] 
+	00017: CALL       
+	00018: SVTCA[x-axis] 
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+
+	Glyph 480: off = 0x00015566, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			6
+	  yMin:			0
+	  xMax:			1463
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	90
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	360
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     1    19     7     0    72    43     1     1    19 
+	00011: PUSHW[2]            546    41 
+	00016: SVTCA[y-axis] 
+	00017: CALL       
+	00018: SVTCA[x-axis] 
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+
+	Glyph 481: off = 0x00015596, len = 70
+	  numberOfContours:	-1  (Composite)
+	  xMin:			25
+	  yMin:			0
+	  xMax:			1910
+	  yMax:			1761
+
+	     0: Flags:		0x0226
+		Glyf Index:	58
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	620
+		Y WOffset:	286
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              2     1     1     2     2    25 
+	00007: PUSHW[2]            545    41 
+	00012: SVTCA[y-axis] 
+	00013: CALL       
+	00014: SVTCA[x-axis] 
+	00015: PUSHB[2]              6     2 
+	00018: RS         
+	00019: EQ         
+	00020: IF         
+	00021: PUSHB[6]              0    28    29     8     9    65 
+	00028: CALL       
+	00029: ELSE       
+	00030: PUSHB[2]             28    23 
+	00033: PUSHW[1]            -30 
+	00036: PUSHB[2]             72    43 
+	00039: CALL       
+	00040: EIF        
+	00041: SHC[rp1,zp0] 
+	00042: SHC[rp1,zp0] 
+
+	Glyph 482: off = 0x000155DC, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			6
+	  yMin:			0
+	  xMax:			1463
+	  yMax:			1475
+
+	     0: Flags:		0x0226
+		Glyf Index:	90
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	410
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (11):     2     1    22     7     0    72    43     1     2     2 
+	                            22 
+	00013: PUSHW[2]            546    41 
+	00018: SVTCA[y-axis] 
+	00019: CALL       
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: SHC[rp1,zp0] 
+	00023: SHC[rp1,zp0] 
+
+	Glyph 483: off = 0x0001560E, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			6
+	  yMin:			0
+	  xMax:			1350
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	333
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     1    14     6    26    72    39     1     1    14 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+
+	Glyph 484: off = 0x0001563E, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			33
+	  yMin:			-431
+	  xMax:			1006
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	92
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	183
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     1    28    32    13    14     6    85    28    15    26 
+	                            72    43     1     1    28 
+	00017: PUSHW[2]            546    41 
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+	00026: CALL       
+	00027: SHC[rp1,zp0] 
+
+	Glyph 485: off = 0x00015674, len = 114
+	  numberOfContours:	1
+	  xMin:			138
+	  yMin:			1001
+	  xMax:			347
+	  yMax:			1481
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	71
+	00000: PUSHB[7]              3     1     8     0     3   171     4 
+	00008: PUSHW[1]            336 
+	00011: NPUSHB      (24):     9     1     0    60     9     9     8     0     4   105 
+	                             3   197     0     0     9   129     7    63     8     1 
+	                             8    25    10   157 
+	00037: PUSHW[2]            400    24 
+	00042: CALL       
+	00043: FLIPOFF    
+	00044: SRP0       
+	00045: MIRP[srp0,nmd,rd,0] 
+	00046: DELTAP1    
+	00047: ALIGNRP    
+	00048: FLIPON     
+	00049: MIRP[srp0,md,rd,1] 
+	00050: ALIGNRP    
+	00051: SRP0       
+	00052: MIRP[srp0,nmd,rd,0] 
+	00053: MIRP[nrp0,nmd,rd,0] 
+	00054: SVTCA[y-axis] 
+	00055: MIAP[rd+ci] 
+	00056: ALIGNRP    
+	00057: SRP0       
+	00058: MIRP[srp0,md,rd,1] 
+	00059: ALIGNRP    
+	00060: SRP0       
+	00061: MIRP[srp0,md,rd,1] 
+	00062: MIRP[nrp0,md,rd,1] 
+	00063: SVTCA[x-axis] 
+	00064: SRP1       
+	00065: SRP2       
+	00066: IP         
+	00067: SVTCA[y-axis] 
+	00068: MDRP[nrp0,md,nrd,1] 
+	00069: IUP[y]     
+	00070: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short On
+	  4:                      Y-Short X-Short On
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   331,  1272)  ->  Abs (   331,  1272)
+	  1: Rel (   -94,     0)  ->  Abs (   237,  1272)
+	  2: Rel (     2,  -156)  ->  Abs (   239,  1116)
+	  3: Rel (   108,   -44)  ->  Abs (   347,  1072)
+	  4: Rel (   -44,   -71)  ->  Abs (   303,  1001)
+	  5: Rel (   -93,    42)  ->  Abs (   210,  1043)
+	  6: Rel (   -72,   142)  ->  Abs (   138,  1185)
+	  7: Rel (     0,   131)  ->  Abs (   138,  1316)
+	  8: Rel (     0,   165)  ->  Abs (   138,  1481)
+	  9: Rel (   193,     0)  ->  Abs (   331,  1481)
+
+	Glyph 486: off = 0x000156E6, len = 52
+	  numberOfContours:	1
+	  xMin:			-31
+	  yMin:			1227
+	  xMax:			714
+	  yMax:			1375
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	26
+	00000: NPUSHB      (12):     1    53     0     2    26     5     0    25     4    67 
+	                           104    24 
+	00014: CALL       
+	00015: FLIPOFF    
+	00016: SRP0       
+	00017: MIRP[nrp0,nmd,rd,0] 
+	00018: SRP0       
+	00019: MIRP[nrp0,nmd,rd,2] 
+	00020: SVTCA[y-axis] 
+	00021: MDAP[rd]   
+	00022: FLIPON     
+	00023: MIRP[nrp0,md,rd,1] 
+	00024: IUP[y]     
+	00025: IUP[x]     
+
+	Flags
+	-----
+	  0:                              X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   -31,  1227)  ->  Abs (   -31,  1227)
+	  1: Rel (     0,   148)  ->  Abs (   -31,  1375)
+	  2: Rel (   745,     0)  ->  Abs (   714,  1375)
+	  3: Rel (     0,  -148)  ->  Abs (   714,  1227)
+
+	Glyph 487: off = 0x0001571A, len = 462
+	  numberOfContours:	1
+	  xMin:			27
+	  yMin:			-28
+	  xMax:			1082
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  54
+
+	  Length of Instructions:	303
+	00000: NPUSHB     (197):    11    36    19     4    41    24    58    18    83    46 
+	                           109    44    98    46   134    40     8   219    30   223 
+	                            33   218    50   233    33   250    33     5    25    33 
+	                             1   117     9   134     9     2    52    53    53    30 
+	                            30    31    43    32    51    50    50    33    33    95 
+	                            32   223    32     2   143    32     1    15    32    31 
+	                            32    47    32   159    32   175    32     5    32    32 
+	                            38     2     3     3    25    25    26    43    27     1 
+	                             0     0    28    28     0    27     1    47    27     1 
+	                            27    27    22    38    42    39    95    41   111    41 
+	                             2    41   136    64    45     1    45    41    38     1 
+	                             7    30    20   106    16    13    30    14   171    11 
+	                            30    16    11    23   159    22    11    33    30    28 
+	                             3    25    35    50    53     0     3     3    48    42 
+	                            94    41   105    13   229    32    14    48    14     2 
+	                            14    26    56    51    52    52     1     1     2   135 
+	                            25    94    32     3     1     3    77    48    94   191 
+	                            35   207    35   239    35     3    35   114    23    32 
+	                            31    31    27    27    26   197    22   171   175    31 
+	                             1    23    25    55   169   141    24 
+	00199: CALL       
+	00200: FLIPOFF    
+	00201: SRP0       
+	00202: MIRP[srp0,nmd,rd,0] 
+	00203: DELTAP1    
+	00204: RTHG       
+	00205: FLIPON     
+	00206: MIRP[nrp0,nmd,rd,0] 
+	00207: RTG        
+	00208: MIRP[srp0,nmd,rd,0] 
+	00209: ALIGNRP    
+	00210: SRP0       
+	00211: ALIGNRP    
+	00212: SRP0       
+	00213: ALIGNRP    
+	00214: SRP0       
+	00215: MIRP[srp0,nmd,rd,0] 
+	00216: DELTAP1    
+	00217: MIRP[srp0,md,rd,1] 
+	00218: MIRP[srp0,nmd,rd,0] 
+	00219: DELTAP1    
+	00220: MIRP[nrp0,md,rd,1] 
+	00221: MIRP[srp0,nmd,rd,0] 
+	00222: ALIGNRP    
+	00223: SRP0       
+	00224: ALIGNRP    
+	00225: SRP0       
+	00226: ALIGNRP    
+	00227: FLIPOFF    
+	00228: SRP0       
+	00229: MIRP[srp0,nmd,rd,2] 
+	00230: DELTAP1    
+	00231: FLIPON     
+	00232: MIRP[nrp0,nmd,rd,0] 
+	00233: MIRP[srp0,nmd,rd,0] 
+	00234: MIRP[nrp0,md,rd,1] 
+	00235: SRP1       
+	00236: SRP2       
+	00237: SLOOP      
+	00238: IP         
+	00239: SRP1       
+	00240: SRP2       
+	00241: SLOOP      
+	00242: IP         
+	00243: SVTCA[y-axis] 
+	00244: MIAP[rd+ci] 
+	00245: MIRP[nrp0,md,rd,1] 
+	00246: MIAP[rd+ci] 
+	00247: MIRP[nrp0,md,rd,1] 
+	00248: MIRP[srp0,md,rd,1] 
+	00249: MIRP[nrp0,md,rd,1] 
+	00250: SRP0       
+	00251: MIRP[srp0,nmd,rd,0] 
+	00252: MIRP[nrp0,md,rd,1] 
+	00253: MIAP[rd+ci] 
+	00254: MIRP[nrp0,md,rd,1] 
+	00255: DELTAP2    
+	00256: MIRP[srp0,md,rd,1] 
+	00257: DELTAP1    
+	00258: MIRP[nrp0,nmd,rd,0] 
+	00259: SRP1       
+	00260: SRP2       
+	00261: IP         
+	00262: MDAP[rd]   
+	00263: DELTAP1    
+	00264: DELTAP2    
+	00265: ALIGNRP    
+	00266: SRP0       
+	00267: ALIGNRP    
+	00268: SRP0       
+	00269: ALIGNRP    
+	00270: SRP0       
+	00271: MIRP[srp0,md,rd,1] 
+	00272: ALIGNRP    
+	00273: SRP0       
+	00274: ALIGNRP    
+	00275: SRP0       
+	00276: ALIGNRP    
+	00277: SRP1       
+	00278: IP         
+	00279: MDAP[rd]   
+	00280: DELTAP1    
+	00281: DELTAP2    
+	00282: DELTAP3    
+	00283: ALIGNRP    
+	00284: SRP0       
+	00285: ALIGNRP    
+	00286: SRP0       
+	00287: ALIGNRP    
+	00288: SRP0       
+	00289: MIRP[srp0,md,rd,1] 
+	00290: ALIGNRP    
+	00291: SRP0       
+	00292: ALIGNRP    
+	00293: SRP0       
+	00294: ALIGNRP    
+	00295: IUP[y]     
+	00296: IUP[x]     
+	00297: SVTCA[y-axis] 
+	00298: DELTAP1    
+	00299: SVTCA[x-axis] 
+	00300: DELTAP3    
+	00301: DELTAP2    
+	00302: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:                      Y-Short X-Short Off
+	  5:                      Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short On
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:                      Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual                       X-Short On
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual               Y-Short X-Short On
+	 31:  YDual                       X-Short On
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual               Y-Short         Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short X-Short On
+	 42:                      Y-Short X-Short On
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual               Y-Short X-Short Off
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short Off
+	 47:                      Y-Short X-Short Off
+	 48:        XDual         Y-Short         On
+	 49:        XDual         Y-Short         Off
+	 50:        XDual         Y-Short X-Short On
+	 51:  YDual                               On
+	 52:        XDual         Y-Short         On
+	 53:  YDual                               On
+	 54:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   433,   614)  ->  Abs (   433,   614)
+	  1: Rel (   278,     0)  ->  Abs (   711,   614)
+	  2: Rel (     0,  -148)  ->  Abs (   711,   466)
+	  3: Rel (  -282,     0)  ->  Abs (   429,   466)
+	  4: Rel (   -33,  -144)  ->  Abs (   396,   322)
+	  5: Rel (  -128,  -131)  ->  Abs (   268,   191)
+	  6: Rel (    77,    22)  ->  Abs (   345,   213)
+	  7: Rel (    64,     0)  ->  Abs (   409,   213)
+	  8: Rel (    87,     0)  ->  Abs (   496,   213)
+	  9: Rel (   103,   -25)  ->  Abs (   599,   188)
+	 10: Rel (   170,   -41)  ->  Abs (   769,   147)
+	 11: Rel (    68,     0)  ->  Abs (   837,   147)
+	 12: Rel (    69,     0)  ->  Abs (   906,   147)
+	 13: Rel (   118,    56)  ->  Abs (  1024,   203)
+	 14: Rel (    58,  -165)  ->  Abs (  1082,    38)
+	 15: Rel (  -146,   -63)  ->  Abs (   936,   -25)
+	 16: Rel (   -92,     0)  ->  Abs (   844,   -25)
+	 17: Rel (   -74,     0)  ->  Abs (   770,   -25)
+	 18: Rel (  -144,    44)  ->  Abs (   626,    19)
+	 19: Rel (  -151,    46)  ->  Abs (   475,    65)
+	 20: Rel (   -70,     0)  ->  Abs (   405,    65)
+	 21: Rel (  -165,     0)  ->  Abs (   240,    65)
+	 22: Rel (  -144,   -93)  ->  Abs (    96,   -28)
+	 23: Rel (   -69,   173)  ->  Abs (    27,   145)
+	 24: Rel (   194,   112)  ->  Abs (   221,   257)
+	 25: Rel (    32,   209)  ->  Abs (   253,   466)
+	 26: Rel (  -209,     0)  ->  Abs (    44,   466)
+	 27: Rel (     0,   148)  ->  Abs (    44,   614)
+	 28: Rel (   209,     0)  ->  Abs (   253,   614)
+	 29: Rel (    -4,    31)  ->  Abs (   249,   645)
+	 30: Rel (   -37,   117)  ->  Abs (   212,   762)
+	 31: Rel (  -168,     0)  ->  Abs (    44,   762)
+	 32: Rel (     0,   148)  ->  Abs (    44,   910)
+	 33: Rel (   126,     0)  ->  Abs (   170,   910)
+	 34: Rel (   -23,    90)  ->  Abs (   147,  1000)
+	 35: Rel (     0,    77)  ->  Abs (   147,  1077)
+	 36: Rel (     0,   194)  ->  Abs (   147,  1271)
+	 37: Rel (   265,   220)  ->  Abs (   412,  1491)
+	 38: Rel (   193,     0)  ->  Abs (   605,  1491)
+	 39: Rel (   166,     0)  ->  Abs (   771,  1491)
+	 40: Rel (   247,  -191)  ->  Abs (  1018,  1300)
+	 41: Rel (    26,  -188)  ->  Abs (  1044,  1112)
+	 42: Rel (  -179,   -27)  ->  Abs (   865,  1085)
+	 43: Rel (   -13,   113)  ->  Abs (   852,  1198)
+	 44: Rel (  -148,   145)  ->  Abs (   704,  1343)
+	 45: Rel (  -107,     0)  ->  Abs (   597,  1343)
+	 46: Rel (  -117,     0)  ->  Abs (   480,  1343)
+	 47: Rel (  -141,  -150)  ->  Abs (   339,  1193)
+	 48: Rel (     0,   -92)  ->  Abs (   339,  1101)
+	 49: Rel (     0,   -58)  ->  Abs (   339,  1043)
+	 50: Rel (    28,  -133)  ->  Abs (   367,   910)
+	 51: Rel (   344,     0)  ->  Abs (   711,   910)
+	 52: Rel (     0,  -148)  ->  Abs (   711,   762)
+	 53: Rel (  -310,     0)  ->  Abs (   401,   762)
+	 54: Rel (    26,  -105)  ->  Abs (   427,   657)
+
+	Glyph 488: off = 0x000158E8, len = 258
+	  numberOfContours:	2
+	  xMin:			90
+	  yMin:			-34
+	  xMax:			1148
+	  yMax:			1096
+
+	EndPoints
+	---------
+	  0:  18
+	  1:  25
+
+	  Length of Instructions:	164
+	00000: NPUSHB      (80):   182     4     1    69    23    90     4    82    14    91 
+	                            16    90    21    82    23   107     4   104     7     8 
+	                            32    27    58     4    75     4    73    17    74    21 
+	                             5    18     0    76    19    47    25   207    25     2 
+	                            25    25     9    15     6   105     5     1   172     3 
+	                           171     9    11    20    58    24   172    22   171    15 
+	                             7     5   171   143     6   159     6   175     6   191 
+	                             6   207     6   223     6     6     6     6    20    19 
+	00082: PUSHW[1]            705 
+	00085: NPUSHB      (21):     0    18    32    18     2    16    18    32    18    48 
+	                            18     3    18    49    27     1     0    24    25    25 
+	                             0 
+	00108: PUSHW[1]            705 
+	00111: PUSHB[8]             31    12    63    12     2    12    49    26 
+	00120: SRP0       
+	00121: MIRP[srp0,nmd,rd,2] 
+	00122: DELTAP1    
+	00123: MIRP[srp0,md,rd,1] 
+	00124: ALIGNRP    
+	00125: SRP0       
+	00126: ALIGNRP    
+	00127: SRP0       
+	00128: ALIGNRP    
+	00129: SRP0       
+	00130: MIRP[srp0,nmd,rd,2] 
+	00131: DELTAP1    
+	00132: DELTAP1    
+	00133: MIRP[srp0,md,rd,1] 
+	00134: ALIGNRP    
+	00135: IP         
+	00136: MDAP[rd]   
+	00137: DELTAP1    
+	00138: MIRP[nrp0,md,rd,1] 
+	00139: SVTCA[y-axis] 
+	00140: MIAP[rd+ci] 
+	00141: MIRP[srp0,md,rd,1] 
+	00142: MIRP[srp0,nmd,rd,0] 
+	00143: MIRP[nrp0,nmd,rd,0] 
+	00144: MIAP[rd+ci] 
+	00145: MIRP[srp0,md,rd,1] 
+	00146: MIRP[nrp0,nmd,rd,0] 
+	00147: MDAP[rd]   
+	00148: MIRP[nrp0,nmd,rd,0] 
+	00149: SRP1       
+	00150: SRP2       
+	00151: IP         
+	00152: MDAP[rd]   
+	00153: DELTAP1    
+	00154: ALIGNRP    
+	00155: MIRP[srp0,md,rd,1] 
+	00156: ALIGNRP    
+	00157: IUP[y]     
+	00158: IUP[x]     
+	00159: SVTCA[x-axis] 
+	00160: DELTAP1    
+	00161: DELTAP1    
+	00162: SVTCA[y-axis] 
+	00163: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:                                      Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:                                      Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:                                      Off
+	 18:        XDual                 X-Short On
+	 19:  YDual               Y-Short X-Short On
+	 20:        XDual                         On
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:                      Y-Short X-Short On
+	 25:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   321,   531)  ->  Abs (   321,   531)
+	  1: Rel (     0,  -371)  ->  Abs (   321,   160)
+	  2: Rel (   120,  -121)  ->  Abs (   441,    39)
+	  3: Rel (   178,     0)  ->  Abs (   619,    39)
+	  4: Rel (   254,     0)  ->  Abs (   873,    39)
+	  5: Rel (   141,   246)  ->  Abs (  1014,   285)
+	  6: Rel (    72,   -43)  ->  Abs (  1086,   242)
+	  7: Rel (  -120,  -173)  ->  Abs (   966,    69)
+	  8: Rel (  -224,  -103)  ->  Abs (   742,   -34)
+	  9: Rel (  -123,     0)  ->  Abs (   619,   -34)
+	 10: Rel (  -237,     0)  ->  Abs (   382,   -34)
+	 11: Rel (  -292,   320)  ->  Abs (    90,   286)
+	 12: Rel (     0,   245)  ->  Abs (    90,   531)
+	 13: Rel (     0,   247)  ->  Abs (    90,   778)
+	 14: Rel (   294,   318)  ->  Abs (   384,  1096)
+	 15: Rel (   235,     0)  ->  Abs (   619,  1096)
+	 16: Rel (   214,     0)  ->  Abs (   833,  1096)
+	 17: Rel (   304,  -284)  ->  Abs (  1137,   812)
+	 18: Rel (    11,  -281)  ->  Abs (  1148,   531)
+	 19: Rel (  -231,    74)  ->  Abs (   917,   605)
+	 20: Rel (     0,   297)  ->  Abs (   917,   902)
+	 21: Rel (  -128,   121)  ->  Abs (   789,  1023)
+	 22: Rel (  -172,     0)  ->  Abs (   617,  1023)
+	 23: Rel (  -175,     0)  ->  Abs (   442,  1023)
+	 24: Rel (  -121,  -122)  ->  Abs (   321,   901)
+	 25: Rel (     0,  -296)  ->  Abs (   321,   605)
+
+	Glyph 489: off = 0x000159EA, len = 400
+	  numberOfContours:	5
+	  xMin:			107
+	  yMin:			-57
+	  xMax:			1664
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  13
+	  2:  33
+	  3:  45
+	  4:  56
+
+	  Length of Instructions:	228
+	00000: NPUSHB      (14):    47    58   123    17   119    21   138    17   134    21 
+	                             5     2     3     3 
+	00016: PUSHW[1]            -64 
+	00019: PUSHB[4]             66    92    52     3 
+	00024: PUSHW[1]            -64 
+	00027: NPUSHB      (17):    39    59    52     3    63     0     1    20     0     0 
+	                             1    24    24    37    14    14    54 
+	00046: PUSHW[1]            609 
+	00049: NPUSHB      (11):    31    37    47    37    63    37     3    37    37    29 
+	                            43 
+	00062: PUSHW[3]            609    19   448 
+	00069: NPUSHB       (9):    29     5     7   172     8   160    11     4    13 
+	00080: PUSHW[1]            287 
+	00083: PUSHB[5]             11    12   226     2     1 
+	00089: PUSHW[4]            381     3    48   609 
+	00098: NPUSHB      (13):    29   226     0     0     3     9    34    41    16    39 
+	                            46    41    32 
+	00113: PUSHW[1]            285 
+	00116: NPUSHB      (29):    26    40    41    22    39    51    41    26    26    58 
+	                             0     3     1     2     4    58    57    11    12     5 
+	                             4    12    13    41     4     8     7   203     4 
+	00147: PUSHW[1]            326 
+	00150: PUSHB[4]             57    87   104    24 
+	00155: CALL       
+	00156: SRP0       
+	00157: MIRP[srp0,nmd,rd,2] 
+	00158: MIRP[srp0,nmd,rd,2] 
+	00159: ALIGNRP    
+	00160: SRP0       
+	00161: MIRP[srp0,md,rd,1] 
+	00162: ALIGNRP    
+	00163: SRP0       
+	00164: ALIGNRP    
+	00165: SRP2       
+	00166: IP         
+	00167: SRP1       
+	00168: SRP2       
+	00169: SLOOP      
+	00170: IP         
+	00171: FLIPOFF    
+	00172: SRP0       
+	00173: MIRP[srp0,nmd,rd,2] 
+	00174: FLIPON     
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: MIRP[srp0,nmd,rd,0] 
+	00177: MIRP[nrp0,md,rd,1] 
+	00178: SRP0       
+	00179: MIRP[srp0,md,rd,1] 
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: MIRP[srp0,nmd,rd,0] 
+	00182: MIRP[nrp0,md,rd,1] 
+	00183: SVTCA[y-axis] 
+	00184: MIAP[rd+ci] 
+	00185: ALIGNRP    
+	00186: SRP0       
+	00187: MIRP[srp0,nmd,rd,2] 
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: SRP0       
+	00190: MIRP[srp0,md,rd,1] 
+	00191: ALIGNRP    
+	00192: MIRP[srp0,nmd,rd,0] 
+	00193: ALIGNRP    
+	00194: MIRP[srp0,md,rd,1] 
+	00195: ALIGNRP    
+	00196: SRP0       
+	00197: MIRP[srp0,nmd,rd,0] 
+	00198: MIRP[srp0,md,rd,1] 
+	00199: IP         
+	00200: SRP0       
+	00201: MIRP[srp0,md,rd,1] 
+	00202: MIRP[nrp0,md,rd,1] 
+	00203: SRP2       
+	00204: IP         
+	00205: MDAP[rd]   
+	00206: DELTAP1    
+	00207: MIRP[nrp0,md,rd,1] 
+	00208: RTHG       
+	00209: IP         
+	00210: MDAP[rd]   
+	00211: SRP1       
+	00212: IP         
+	00213: MDAP[rd]   
+	00214: SDPVTL[1]  
+	00215: SFVTCA[x-axis] 
+	00216: MDAP[nrd]  
+	00217: RTG        
+	00218: CALL       
+	00219: CALL       
+	00220: CALL       
+	00221: RDTG       
+	00222: SRP0       
+	00223: MDRP[nrp0,nmd,rd,0] 
+	00224: IUP[y]     
+	00225: IUP[x]     
+	00226: SVTCA[x-axis] 
+	00227: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual         Y-Short X-Short On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+	  4:                              X-Short On
+	  5:        XDual                         On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:                                      On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:                      Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:        XDual         Y-Short         Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short Off
+	 45:                      Y-Short X-Short Off
+	 46:                              X-Short On
+	 47:        XDual         Y-Short         Off
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual                 X-Short Off
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         Off
+	 53:  YDual               Y-Short X-Short Off
+	 54:  YDual                       X-Short On
+	 55:  YDual                       X-Short Off
+	 56:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   228,   -57)  ->  Abs (   228,   -57)
+	  1: Rel (  1101,  1548)  ->  Abs (  1329,  1491)
+	  2: Rel (   157,     0)  ->  Abs (  1486,  1491)
+	  3: Rel ( -1101, -1548)  ->  Abs (   385,   -57)
+	  4: Rel (   -54,   790)  ->  Abs (   331,   733)
+	  5: Rel (     0,   554)  ->  Abs (   331,  1287)
+	  6: Rel (  -102,   -81)  ->  Abs (   229,  1206)
+	  7: Rel (  -122,   -32)  ->  Abs (   107,  1174)
+	  8: Rel (     0,   123)  ->  Abs (   107,  1297)
+	  9: Rel (    55,    17)  ->  Abs (   162,  1314)
+	 10: Rel (   160,   109)  ->  Abs (   322,  1423)
+	 11: Rel (    46,    61)  ->  Abs (   368,  1484)
+	 12: Rel (   108,     0)  ->  Abs (   476,  1484)
+	 13: Rel (     0,  -751)  ->  Abs (   476,   733)
+	 14: Rel (   749,  -366)  ->  Abs (  1225,   367)
+	 15: Rel (  -130,    47)  ->  Abs (  1095,   414)
+	 16: Rel (     0,   115)  ->  Abs (  1095,   529)
+	 17: Rel (     0,    80)  ->  Abs (  1095,   609)
+	 18: Rel (   125,   111)  ->  Abs (  1220,   720)
+	 19: Rel (   139,     0)  ->  Abs (  1359,   720)
+	 20: Rel (   139,     0)  ->  Abs (  1498,   720)
+	 21: Rel (   139,  -107)  ->  Abs (  1637,   613)
+	 22: Rel (     0,   -86)  ->  Abs (  1637,   527)
+	 23: Rel (     0,  -115)  ->  Abs (  1637,   412)
+	 24: Rel (  -140,   -45)  ->  Abs (  1497,   367)
+	 25: Rel (   167,   -41)  ->  Abs (  1664,   326)
+	 26: Rel (     0,  -143)  ->  Abs (  1664,   183)
+	 27: Rel (     0,  -106)  ->  Abs (  1664,    77)
+	 28: Rel (  -168,  -126)  ->  Abs (  1496,   -49)
+	 29: Rel (  -130,     0)  ->  Abs (  1366,   -49)
+	 30: Rel (  -138,     0)  ->  Abs (  1228,   -49)
+	 31: Rel (  -161,   127)  ->  Abs (  1067,    78)
+	 32: Rel (     0,   100)  ->  Abs (  1067,   178)
+	 33: Rel (     0,   148)  ->  Abs (  1067,   326)
+	 34: Rel (   177,   193)  ->  Abs (  1244,   519)
+	 35: Rel (     0,   -50)  ->  Abs (  1244,   469)
+	 36: Rel (    70,   -52)  ->  Abs (  1314,   417)
+	 37: Rel (    51,     0)  ->  Abs (  1365,   417)
+	 38: Rel (    51,     0)  ->  Abs (  1416,   417)
+	 39: Rel (    73,    52)  ->  Abs (  1489,   469)
+	 40: Rel (     0,    45)  ->  Abs (  1489,   514)
+	 41: Rel (     0,    46)  ->  Abs (  1489,   560)
+	 42: Rel (   -72,    55)  ->  Abs (  1417,   615)
+	 43: Rel (   -54,     0)  ->  Abs (  1363,   615)
+	 44: Rel (   -55,     0)  ->  Abs (  1308,   615)
+	 45: Rel (   -64,   -58)  ->  Abs (  1244,   557)
+	 46: Rel (   -28,  -367)  ->  Abs (  1216,   190)
+	 47: Rel (     0,  -127)  ->  Abs (  1216,    63)
+	 48: Rel (   149,     0)  ->  Abs (  1365,    63)
+	 49: Rel (    71,     0)  ->  Abs (  1436,    63)
+	 50: Rel (    80,    69)  ->  Abs (  1516,   132)
+	 51: Rel (     0,    53)  ->  Abs (  1516,   185)
+	 52: Rel (     0,    58)  ->  Abs (  1516,   243)
+	 53: Rel (   -86,    68)  ->  Abs (  1430,   311)
+	 54: Rel (   -68,     0)  ->  Abs (  1362,   311)
+	 55: Rel (   -70,     0)  ->  Abs (  1292,   311)
+	 56: Rel (   -76,   -69)  ->  Abs (  1216,   242)
+
+	Glyph 490: off = 0x00015B7A, len = 560
+	  numberOfContours:	5
+	  xMin:			34
+	  yMin:			-57
+	  xMax:			1665
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  34
+	  2:  54
+	  3:  66
+	  4:  77
+
+	  Length of Instructions:	337
+	00000: NPUSHB      (23):    31    20   223    20     2    47    79   105    38   102 
+	                            42   123    38   119    42   138    38   133    42     7 
+	                             2     3     3 
+	00025: PUSHW[1]            -64 
+	00028: PUSHB[4]             66    92    52     3 
+	00033: PUSHW[1]            -64 
+	00036: NPUSHB      (21):    39    59    52     3    63     0     1    20     0     0 
+	                             1    28    28    33    24    45    45    58    35    35 
+	                            75 
+	00059: PUSHW[1]            609 
+	00062: NPUSHB      (11):    31    58    47    58    63    58     3    58    58    50 
+	                            64 
+	00075: PUSHW[6]            609    40   448    50    14   609 
+	00088: NPUSHB      (14):    13    13    33    24     5   197    32     4    48     4 
+	                             2     4   100     7 
+	00104: PUSHW[6]            609    33   287    24    20   682 
+	00117: NPUSHB      (23):    31    21    47    21    63    21     3   127    21     1 
+	                            95    21   111    21     2    95    21   111    21     2 
+	                            21   145    18 
+	00142: PUSHW[1]            609 
+	00145: PUSHB[4]             24   226     2     1 
+	00150: PUSHW[4]            381     3    69   609 
+	00159: NPUSHB      (17):    50   226     0     0     3     9    14    13   159    16 
+	                            55    41    37    39    67    41    53 
+	00178: PUSHW[1]            285 
+	00181: NPUSHB      (27):    47    61    41    43    39    72    41    47    26    79 
+	                             0     3     1     2     4    79    78    16    41    26 
+	                            34    10    41    48    30     1    30 
+	00210: PUSHW[1]            552 
+	00213: NPUSHB      (23):     4    14    39    13   100     5    20    41    16    21 
+	                           208    21     2    21    34     5    41     4    25    78 
+	                           124   104    24 
+	00238: CALL       
+	00239: FLIPOFF    
+	00240: SRP0       
+	00241: MIRP[srp0,nmd,rd,0] 
+	00242: FLIPON     
+	00243: MIRP[nrp0,md,rd,1] 
+	00244: MIRP[srp0,nmd,rd,0] 
+	00245: DELTAP3    
+	00246: MIRP[nrp0,md,rd,1] 
+	00247: SRP0       
+	00248: MIRP[srp0,nmd,rd,2] 
+	00249: MIRP[nrp0,nmd,rd,0] 
+	00250: SRP0       
+	00251: MIRP[srp0,md,rd,1] 
+	00252: DELTAP1    
+	00253: MIRP[nrp0,md,rd,1] 
+	00254: MIRP[srp0,nmd,rd,0] 
+	00255: MIRP[nrp0,md,rd,1] 
+	00256: SRP1       
+	00257: SRP2       
+	00258: SLOOP      
+	00259: IP         
+	00260: FLIPOFF    
+	00261: SRP0       
+	00262: MIRP[srp0,nmd,rd,2] 
+	00263: FLIPON     
+	00264: MIRP[nrp0,md,rd,1] 
+	00265: MIRP[srp0,nmd,rd,0] 
+	00266: MIRP[nrp0,md,rd,1] 
+	00267: SRP0       
+	00268: MIRP[srp0,md,rd,1] 
+	00269: MIRP[nrp0,md,rd,1] 
+	00270: MIRP[srp0,nmd,rd,0] 
+	00271: MIRP[nrp0,md,rd,1] 
+	00272: SRP0       
+	00273: MIRP[nrp0,nmd,rd,0] 
+	00274: IP         
+	00275: SVTCA[y-axis] 
+	00276: MIAP[rd+ci] 
+	00277: ALIGNRP    
+	00278: SRP0       
+	00279: MIRP[srp0,nmd,rd,2] 
+	00280: MIRP[nrp0,md,rd,1] 
+	00281: SRP0       
+	00282: MIRP[srp0,md,rd,1] 
+	00283: ALIGNRP    
+	00284: MIRP[srp0,nmd,rd,0] 
+	00285: MIRP[srp0,md,rd,1] 
+	00286: MIRP[srp0,nmd,rd,0] 
+	00287: DELTAP3    
+	00288: DELTAP2    
+	00289: DELTAP2    
+	00290: DELTAP1    
+	00291: MIRP[nrp0,nmd,rd,0] 
+	00292: SRP0       
+	00293: MIRP[srp0,md,rd,1] 
+	00294: MIRP[srp0,md,rd,1] 
+	00295: MIRP[srp0,nmd,rd,0] 
+	00296: DELTAP1    
+	00297: MIRP[nrp0,nmd,rd,0] 
+	00298: SRP1       
+	00299: SRP2       
+	00300: IP         
+	00301: MDAP[rd]   
+	00302: MIRP[nrp0,md,rd,1] 
+	00303: SRP0       
+	00304: MIRP[srp0,md,rd,1] 
+	00305: MIRP[nrp0,md,rd,1] 
+	00306: SRP2       
+	00307: IP         
+	00308: MDAP[rd]   
+	00309: DELTAP1    
+	00310: MIRP[nrp0,md,rd,1] 
+	00311: RTHG       
+	00312: IP         
+	00313: MDAP[rd]   
+	00314: SRP1       
+	00315: IP         
+	00316: MDAP[rd]   
+	00317: SRP1       
+	00318: SRP2       
+	00319: IP         
+	00320: MDAP[rd]   
+	00321: SDPVTL[1]  
+	00322: SFVTCA[x-axis] 
+	00323: MDAP[nrd]  
+	00324: RTG        
+	00325: CALL       
+	00326: CALL       
+	00327: CALL       
+	00328: RDTG       
+	00329: SRP0       
+	00330: MDRP[nrp0,nmd,rd,0] 
+	00331: IUP[y]     
+	00332: IUP[x]     
+	00333: SVTCA[x-axis] 
+	00334: DELTAP1    
+	00335: SVTCA[y-axis] 
+	00336: DELTAP3    
+
+	Flags
+	-----
+	  0:        XDual         Y-Short X-Short On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+	  4:                                      On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual                       X-Short On
+	 13:                      Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:  YDual               Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual                               Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:                      Y-Short X-Short On
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                               Off
+	 35:                                      On
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:        XDual         Y-Short X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:                      Y-Short X-Short On
+	 46:        XDual         Y-Short X-Short Off
+	 47:        XDual         Y-Short         On
+	 48:        XDual         Y-Short         Off
+	 49:                      Y-Short X-Short Off
+	 50:  YDual                       X-Short On
+	 51:  YDual                       X-Short Off
+	 52:  YDual               Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short         On
+	 54:  YDual XDual         Y-Short         Off
+	 55:  YDual XDual         Y-Short X-Short On
+	 56:        XDual         Y-Short         Off
+	 57:        XDual         Y-Short X-Short Off
+	 58:  YDual XDual                 X-Short On
+	 59:  YDual XDual                 X-Short Off
+	 60:  YDual XDual         Y-Short X-Short Off
+	 61:  YDual XDual         Y-Short         On
+	 62:  YDual XDual         Y-Short         Off
+	 63:  YDual               Y-Short X-Short Off
+	 64:  YDual                       X-Short On
+	 65:  YDual                       X-Short Off
+	 66:                      Y-Short X-Short Off
+	 67:                              X-Short On
+	 68:        XDual         Y-Short         Off
+	 69:  YDual XDual                 X-Short On
+	 70:  YDual XDual                 X-Short Off
+	 71:  YDual XDual         Y-Short X-Short Off
+	 72:  YDual XDual         Y-Short         On
+	 73:  YDual XDual         Y-Short         Off
+	 74:  YDual               Y-Short X-Short Off
+	 75:  YDual                       X-Short On
+	 76:  YDual                       X-Short Off
+	 77:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   229,   -57)  ->  Abs (   229,   -57)
+	  1: Rel (  1101,  1548)  ->  Abs (  1330,  1491)
+	  2: Rel (   156,     0)  ->  Abs (  1486,  1491)
+	  3: Rel ( -1100, -1548)  ->  Abs (   386,   -57)
+	  4: Rel (  -352,   986)  ->  Abs (    34,   929)
+	  5: Rel (   146,    15)  ->  Abs (   180,   944)
+	  6: Rel (    31,  -112)  ->  Abs (   211,   832)
+	  7: Rel (   123,     0)  ->  Abs (   334,   832)
+	  8: Rel (    67,     0)  ->  Abs (   401,   832)
+	  9: Rel (    90,    75)  ->  Abs (   491,   907)
+	 10: Rel (     0,    57)  ->  Abs (   491,   964)
+	 11: Rel (     0,   111)  ->  Abs (   491,  1075)
+	 12: Rel (  -156,     0)  ->  Abs (   335,  1075)
+	 13: Rel (   -58,    -3)  ->  Abs (   277,  1072)
+	 14: Rel (    22,   110)  ->  Abs (   299,  1182)
+	 15: Rel (   156,     0)  ->  Abs (   455,  1182)
+	 16: Rel (     0,   102)  ->  Abs (   455,  1284)
+	 17: Rel (     0,    89)  ->  Abs (   455,  1373)
+	 18: Rel (  -121,     0)  ->  Abs (   334,  1373)
+	 19: Rel (  -104,     0)  ->  Abs (   230,  1373)
+	 20: Rel (   -36,  -102)  ->  Abs (   194,  1271)
+	 21: Rel (  -143,    23)  ->  Abs (    51,  1294)
+	 22: Rel (    41,   111)  ->  Abs (    92,  1405)
+	 23: Rel (   134,    79)  ->  Abs (   226,  1484)
+	 24: Rel (   100,     0)  ->  Abs (   326,  1484)
+	 25: Rel (   286,     0)  ->  Abs (   612,  1484)
+	 26: Rel (     0,  -188)  ->  Abs (   612,  1296)
+	 27: Rel (     0,  -120)  ->  Abs (   612,  1176)
+	 28: Rel (  -138,   -39)  ->  Abs (   474,  1137)
+	 29: Rel (   173,   -43)  ->  Abs (   647,  1094)
+	 30: Rel (     0,  -146)  ->  Abs (   647,   948)
+	 31: Rel (     0,  -101)  ->  Abs (   647,   847)
+	 32: Rel (  -165,  -132)  ->  Abs (   482,   715)
+	 33: Rel (  -138,     0)  ->  Abs (   344,   715)
+	 34: Rel (  -267,     0)  ->  Abs (    77,   715)
+	 35: Rel (  1149,  -348)  ->  Abs (  1226,   367)
+	 36: Rel (  -130,    47)  ->  Abs (  1096,   414)
+	 37: Rel (     0,   115)  ->  Abs (  1096,   529)
+	 38: Rel (     0,    90)  ->  Abs (  1096,   619)
+	 39: Rel (   137,   101)  ->  Abs (  1233,   720)
+	 40: Rel (   126,     0)  ->  Abs (  1359,   720)
+	 41: Rel (   140,     0)  ->  Abs (  1499,   720)
+	 42: Rel (   139,  -107)  ->  Abs (  1638,   613)
+	 43: Rel (     0,   -86)  ->  Abs (  1638,   527)
+	 44: Rel (     0,  -112)  ->  Abs (  1638,   415)
+	 45: Rel (  -141,   -48)  ->  Abs (  1497,   367)
+	 46: Rel (   168,   -41)  ->  Abs (  1665,   326)
+	 47: Rel (     0,  -143)  ->  Abs (  1665,   183)
+	 48: Rel (     0,  -109)  ->  Abs (  1665,    74)
+	 49: Rel (  -170,  -123)  ->  Abs (  1495,   -49)
+	 50: Rel (  -128,     0)  ->  Abs (  1367,   -49)
+	 51: Rel (  -135,     0)  ->  Abs (  1232,   -49)
+	 52: Rel (  -164,   123)  ->  Abs (  1068,    74)
+	 53: Rel (     0,   104)  ->  Abs (  1068,   178)
+	 54: Rel (     0,   148)  ->  Abs (  1068,   326)
+	 55: Rel (   177,   193)  ->  Abs (  1245,   519)
+	 56: Rel (     0,   -50)  ->  Abs (  1245,   469)
+	 57: Rel (    70,   -52)  ->  Abs (  1315,   417)
+	 58: Rel (    51,     0)  ->  Abs (  1366,   417)
+	 59: Rel (    49,     0)  ->  Abs (  1415,   417)
+	 60: Rel (    74,    51)  ->  Abs (  1489,   468)
+	 61: Rel (     0,    46)  ->  Abs (  1489,   514)
+	 62: Rel (     0,    46)  ->  Abs (  1489,   560)
+	 63: Rel (   -72,    55)  ->  Abs (  1417,   615)
+	 64: Rel (   -54,     0)  ->  Abs (  1363,   615)
+	 65: Rel (   -54,     0)  ->  Abs (  1309,   615)
+	 66: Rel (   -64,   -58)  ->  Abs (  1245,   557)
+	 67: Rel (   -28,  -367)  ->  Abs (  1217,   190)
+	 68: Rel (     0,  -127)  ->  Abs (  1217,    63)
+	 69: Rel (   149,     0)  ->  Abs (  1366,    63)
+	 70: Rel (    72,     0)  ->  Abs (  1438,    63)
+	 71: Rel (    78,    70)  ->  Abs (  1516,   133)
+	 72: Rel (     0,    52)  ->  Abs (  1516,   185)
+	 73: Rel (     0,    58)  ->  Abs (  1516,   243)
+	 74: Rel (   -85,    68)  ->  Abs (  1431,   311)
+	 75: Rel (   -68,     0)  ->  Abs (  1363,   311)
+	 76: Rel (   -70,     0)  ->  Abs (  1293,   311)
+	 77: Rel (   -76,   -69)  ->  Abs (  1217,   242)
+
+	Glyph 491: off = 0x00015DAA, len = 592
+	  numberOfContours:	5
+	  xMin:			34
+	  yMin:			-57
+	  xMax:			1665
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  31
+	  2:  51
+	  3:  63
+	  4:  74
+
+	  Length of Instructions:	375
+	00000: NPUSHB      (44):   123    35   119    39   138    35   134    39   193    27 
+	                           215    27   229    27   245    21     8    18    25    32 
+	                            25    47    76    49    25     4     5    21     5    27 
+	                             2    20    21    21   108    16    17    20    16    16 
+	                            17     2     3     3 
+	00046: PUSHW[1]            -64 
+	00049: PUSHB[4]             66    92    52     3 
+	00054: PUSHW[1]            -64 
+	00057: NPUSHB      (17):    39    59    52     3    63     0     1    20     0     0 
+	                             1    42    42    55    32    32    72 
+	00076: PUSHW[1]            609 
+	00079: NPUSHB      (11):    31    55    47    55    63    55     3    55    55    47 
+	                            61 
+	00092: PUSHW[3]            609    37   448 
+	00099: NPUSHB      (19):    47    21    21    13    17    16    39    95    15   111 
+	                            15   127    15   143    15     4    15   171    13 
+	00120: PUSHW[1]            609 
+	00123: NPUSHB      (28):    15    23    64    23    80    23     3    23    23    29 
+	                            17     5   197   128     4     1    32     4    48     4 
+	                            64     4    80     4     4     4   100     7 
+	00153: PUSHW[3]            609    29   287 
+	00160: PUSHB[5]             17    19    20    18    20 
+	00166: PUSHW[1]            609 
+	00169: PUSHB[4]             17    39     2     1 
+	00174: PUSHW[4]            381     3    66   609 
+	00183: NPUSHB      (13):    47   226     0     0     3     9    52    41    34    39 
+	                            64    41    50 
+	00198: PUSHW[1]            285 
+	00201: NPUSHB      (34):    44    58    41    40    39    69    41    44    26    76 
+	                             0     3     1     2     4    76    75    21    15    16 
+	                            19    15    18     1    18    34    10    41     0    26 
+	                            48    26     2    26 
+	00237: PUSHW[1]            552 
+	00240: NPUSHB      (20):     4    20    20    17    17    15    15    15    16     1 
+	                            16    39     5    41     4    25    75    87   104    24 
+	00262: CALL       
+	00263: FLIPOFF    
+	00264: SRP0       
+	00265: MIRP[srp0,nmd,rd,0] 
+	00266: FLIPON     
+	00267: MIRP[nrp0,md,rd,1] 
+	00268: MIRP[srp0,nmd,rd,0] 
+	00269: DELTAP1    
+	00270: SHP[rp2,zp1] 
+	00271: MDAP[rd]   
+	00272: SHP[rp2,zp1] 
+	00273: MDAP[rd]   
+	00274: SHP[rp1,zp0] 
+	00275: MDAP[rd]   
+	00276: SRP0       
+	00277: MIRP[srp0,md,rd,1] 
+	00278: DELTAP1    
+	00279: MIRP[nrp0,md,rd,1] 
+	00280: MIRP[srp0,nmd,rd,0] 
+	00281: DELTAP1    
+	00282: ALIGNRP    
+	00283: SRP1       
+	00284: SRP2       
+	00285: IP         
+	00286: SRP1       
+	00287: SRP2       
+	00288: SLOOP      
+	00289: IP         
+	00290: FLIPOFF    
+	00291: SRP0       
+	00292: MIRP[srp0,nmd,rd,2] 
+	00293: FLIPON     
+	00294: MIRP[nrp0,md,rd,1] 
+	00295: MIRP[srp0,nmd,rd,0] 
+	00296: MIRP[nrp0,md,rd,1] 
+	00297: SRP0       
+	00298: MIRP[srp0,md,rd,1] 
+	00299: MIRP[nrp0,md,rd,1] 
+	00300: MIRP[srp0,nmd,rd,0] 
+	00301: MIRP[nrp0,md,rd,1] 
+	00302: SVTCA[y-axis] 
+	00303: MIAP[rd+ci] 
+	00304: ALIGNRP    
+	00305: SRP0       
+	00306: MIRP[srp0,nmd,rd,2] 
+	00307: MIRP[nrp0,md,rd,1] 
+	00308: SRP0       
+	00309: MIRP[srp0,md,rd,1] 
+	00310: ALIGNRP    
+	00311: MIRP[srp0,nmd,rd,0] 
+	00312: MIRP[nrp0,md,rd,1] 
+	00313: ALIGNRP    
+	00314: SRP0       
+	00315: ALIGNRP    
+	00316: SRP0       
+	00317: MIRP[srp0,md,rd,1] 
+	00318: MIRP[srp0,md,rd,1] 
+	00319: MIRP[srp0,nmd,rd,0] 
+	00320: DELTAP1    
+	00321: DELTAP2    
+	00322: MIRP[nrp0,nmd,rd,0] 
+	00323: SRP1       
+	00324: SRP2       
+	00325: IP         
+	00326: MDAP[rd]   
+	00327: DELTAP1    
+	00328: MIRP[srp0,md,rd,1] 
+	00329: MIRP[srp0,nmd,rd,0] 
+	00330: DELTAP1    
+	00331: MIRP[nrp0,nmd,rd,0] 
+	00332: SRP1       
+	00333: SRP2       
+	00334: IP         
+	00335: MDAP[rd]   
+	00336: SRP0       
+	00337: MIRP[srp0,md,rd,1] 
+	00338: MIRP[nrp0,md,rd,1] 
+	00339: SRP2       
+	00340: IP         
+	00341: MDAP[rd]   
+	00342: DELTAP1    
+	00343: MIRP[nrp0,md,rd,1] 
+	00344: RTHG       
+	00345: IP         
+	00346: MDAP[rd]   
+	00347: SRP1       
+	00348: IP         
+	00349: MDAP[rd]   
+	00350: SDPVTL[1]  
+	00351: SFVTCA[x-axis] 
+	00352: MDAP[nrd]  
+	00353: RTG        
+	00354: CALL       
+	00355: CALL       
+	00356: CALL       
+	00357: RDTG       
+	00358: SRP0       
+	00359: MDRP[nrp0,nmd,rd,0] 
+	00360: SDPVTL[1]  
+	00361: SFVTPV     
+	00362: MDAP[nrd]  
+	00363: RTG        
+	00364: CALL       
+	00365: SFVTCA[x-axis] 
+	00366: RDTG       
+	00367: SRP0       
+	00368: MDRP[nrp0,nmd,rd,0] 
+	00369: IUP[y]     
+	00370: IUP[x]     
+	00371: SVTCA[x-axis] 
+	00372: DELTAP2    
+	00373: DELTAP1    
+	00374: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual         Y-Short X-Short On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+	  4:                                      On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:  YDual               Y-Short X-Short On
+	 17:        XDual                 X-Short On
+	 18:  YDual                               On
+	 19:        XDual         Y-Short         On
+	 20:  YDual                               On
+	 21:                      Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:                      Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:                                      On
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:                      Y-Short X-Short On
+	 43:        XDual         Y-Short X-Short Off
+	 44:        XDual         Y-Short         On
+	 45:        XDual         Y-Short         Off
+	 46:                      Y-Short X-Short Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short Off
+	 49:  YDual               Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual XDual         Y-Short X-Short On
+	 53:        XDual         Y-Short         Off
+	 54:        XDual         Y-Short X-Short Off
+	 55:  YDual XDual                 X-Short On
+	 56:  YDual XDual                 X-Short Off
+	 57:  YDual XDual         Y-Short X-Short Off
+	 58:  YDual XDual         Y-Short         On
+	 59:  YDual XDual         Y-Short         Off
+	 60:  YDual               Y-Short X-Short Off
+	 61:  YDual                       X-Short On
+	 62:  YDual                       X-Short Off
+	 63:                      Y-Short X-Short Off
+	 64:                              X-Short On
+	 65:        XDual         Y-Short         Off
+	 66:  YDual XDual                 X-Short On
+	 67:  YDual XDual                 X-Short Off
+	 68:  YDual XDual         Y-Short X-Short Off
+	 69:  YDual XDual         Y-Short         On
+	 70:  YDual XDual         Y-Short         Off
+	 71:  YDual               Y-Short X-Short Off
+	 72:  YDual                       X-Short On
+	 73:  YDual                       X-Short Off
+	 74:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   229,   -57)  ->  Abs (   229,   -57)
+	  1: Rel (  1101,  1548)  ->  Abs (  1330,  1491)
+	  2: Rel (   156,     0)  ->  Abs (  1486,  1491)
+	  3: Rel ( -1100, -1548)  ->  Abs (   386,   -57)
+	  4: Rel (  -352,   983)  ->  Abs (    34,   926)
+	  5: Rel (   144,    18)  ->  Abs (   178,   944)
+	  6: Rel (    26,  -105)  ->  Abs (   204,   839)
+	  7: Rel (   121,     0)  ->  Abs (   325,   839)
+	  8: Rel (    76,     0)  ->  Abs (   401,   839)
+	  9: Rel (    92,    83)  ->  Abs (   493,   922)
+	 10: Rel (     0,    63)  ->  Abs (   493,   985)
+	 11: Rel (     0,    58)  ->  Abs (   493,  1043)
+	 12: Rel (   -83,    85)  ->  Abs (   410,  1128)
+	 13: Rel (   -66,     0)  ->  Abs (   344,  1128)
+	 14: Rel (   -70,     0)  ->  Abs (   274,  1128)
+	 15: Rel (   -70,   -64)  ->  Abs (   204,  1064)
+	 16: Rel (  -141,    25)  ->  Abs (    63,  1089)
+	 17: Rel (    79,   377)  ->  Abs (   142,  1466)
+	 18: Rel (   470,     0)  ->  Abs (   612,  1466)
+	 19: Rel (     0,  -121)  ->  Abs (   612,  1345)
+	 20: Rel (  -374,     0)  ->  Abs (   238,  1345)
+	 21: Rel (   -34,  -158)  ->  Abs (   204,  1187)
+	 22: Rel (    79,    53)  ->  Abs (   283,  1240)
+	 23: Rel (    89,     0)  ->  Abs (   372,  1240)
+	 24: Rel (   113,     0)  ->  Abs (   485,  1240)
+	 25: Rel (   158,  -147)  ->  Abs (   643,  1093)
+	 26: Rel (     0,  -108)  ->  Abs (   643,   985)
+	 27: Rel (     0,  -120)  ->  Abs (   643,   865)
+	 28: Rel (  -185,  -150)  ->  Abs (   458,   715)
+	 29: Rel (  -130,     0)  ->  Abs (   328,   715)
+	 30: Rel (  -118,     0)  ->  Abs (   210,   715)
+	 31: Rel (  -155,   113)  ->  Abs (    55,   828)
+	 32: Rel (  1171,  -461)  ->  Abs (  1226,   367)
+	 33: Rel (  -130,    47)  ->  Abs (  1096,   414)
+	 34: Rel (     0,   115)  ->  Abs (  1096,   529)
+	 35: Rel (     0,    90)  ->  Abs (  1096,   619)
+	 36: Rel (   137,   101)  ->  Abs (  1233,   720)
+	 37: Rel (   126,     0)  ->  Abs (  1359,   720)
+	 38: Rel (   140,     0)  ->  Abs (  1499,   720)
+	 39: Rel (   139,  -107)  ->  Abs (  1638,   613)
+	 40: Rel (     0,   -86)  ->  Abs (  1638,   527)
+	 41: Rel (     0,  -112)  ->  Abs (  1638,   415)
+	 42: Rel (  -141,   -48)  ->  Abs (  1497,   367)
+	 43: Rel (   168,   -41)  ->  Abs (  1665,   326)
+	 44: Rel (     0,  -143)  ->  Abs (  1665,   183)
+	 45: Rel (     0,  -109)  ->  Abs (  1665,    74)
+	 46: Rel (  -170,  -123)  ->  Abs (  1495,   -49)
+	 47: Rel (  -128,     0)  ->  Abs (  1367,   -49)
+	 48: Rel (  -135,     0)  ->  Abs (  1232,   -49)
+	 49: Rel (  -164,   123)  ->  Abs (  1068,    74)
+	 50: Rel (     0,   104)  ->  Abs (  1068,   178)
+	 51: Rel (     0,   148)  ->  Abs (  1068,   326)
+	 52: Rel (   177,   193)  ->  Abs (  1245,   519)
+	 53: Rel (     0,   -50)  ->  Abs (  1245,   469)
+	 54: Rel (    70,   -52)  ->  Abs (  1315,   417)
+	 55: Rel (    51,     0)  ->  Abs (  1366,   417)
+	 56: Rel (    49,     0)  ->  Abs (  1415,   417)
+	 57: Rel (    74,    51)  ->  Abs (  1489,   468)
+	 58: Rel (     0,    46)  ->  Abs (  1489,   514)
+	 59: Rel (     0,    46)  ->  Abs (  1489,   560)
+	 60: Rel (   -72,    55)  ->  Abs (  1417,   615)
+	 61: Rel (   -54,     0)  ->  Abs (  1363,   615)
+	 62: Rel (   -54,     0)  ->  Abs (  1309,   615)
+	 63: Rel (   -64,   -58)  ->  Abs (  1245,   557)
+	 64: Rel (   -28,  -367)  ->  Abs (  1217,   190)
+	 65: Rel (     0,  -127)  ->  Abs (  1217,    63)
+	 66: Rel (   149,     0)  ->  Abs (  1366,    63)
+	 67: Rel (    72,     0)  ->  Abs (  1438,    63)
+	 68: Rel (    78,    70)  ->  Abs (  1516,   133)
+	 69: Rel (     0,    52)  ->  Abs (  1516,   185)
+	 70: Rel (     0,    58)  ->  Abs (  1516,   243)
+	 71: Rel (   -85,    68)  ->  Abs (  1431,   311)
+	 72: Rel (   -68,     0)  ->  Abs (  1363,   311)
+	 73: Rel (   -70,     0)  ->  Abs (  1293,   311)
+	 74: Rel (   -76,   -69)  ->  Abs (  1217,   242)
+
+	Glyph 492: off = 0x00015FFA, len = 402
+	  numberOfContours:	5
+	  xMin:			74
+	  yMin:			-57
+	  xMax:			1664
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  12
+	  2:  32
+	  3:  44
+	  4:  55
+
+	  Length of Instructions:	228
+	00000: NPUSHB      (14):    47    57   125    16   119    20   139    16   134    20 
+	                             5     2     3     3 
+	00016: PUSHW[1]            -64 
+	00019: PUSHB[4]             66    92    52     3 
+	00024: PUSHW[1]            -64 
+	00027: NPUSHB      (17):    39    59    52     3    63     0     1    20     0     0 
+	                             1    23    23    36    13    13    53 
+	00046: PUSHW[1]            609 
+	00049: NPUSHB      (11):    31    36    47    36    63    36     3    36    36    28 
+	                            42 
+	00062: PUSHW[3]            609    18   448 
+	00069: PUSHB[3]             28    12     4 
+	00073: PUSHW[1]            441 
+	00076: PUSHB[8]              6     7   172     9     8    39     2     1 
+	00085: PUSHW[4]            381     3    47   609 
+	00094: NPUSHB      (13):    28   226     0     0     3     9    33    41    15    39 
+	                            45    41    31 
+	00109: PUSHW[1]            285 
+	00112: NPUSHB      (41):    25    39    41    21    39    50    41    25    26    57 
+	                             0     3     1     2     4    57    56     6     9     4 
+	                             9    32    10     1    10   135    12    41     4     8 
+	                             7   172    47     4     1     4    60    56   124   104 
+	                            24 
+	00155: CALL       
+	00156: SRP0       
+	00157: MIRP[srp0,nmd,rd,2] 
+	00158: DELTAP1    
+	00159: MIRP[srp0,nmd,rd,0] 
+	00160: ALIGNRP    
+	00161: SRP0       
+	00162: MIRP[srp0,md,rd,1] 
+	00163: MIRP[srp0,nmd,rd,0] 
+	00164: DELTAP1    
+	00165: ALIGNRP    
+	00166: SRP1       
+	00167: SRP2       
+	00168: IP         
+	00169: SRP1       
+	00170: SRP2       
+	00171: SLOOP      
+	00172: IP         
+	00173: FLIPOFF    
+	00174: SRP0       
+	00175: MIRP[srp0,nmd,rd,2] 
+	00176: FLIPON     
+	00177: MIRP[nrp0,md,rd,1] 
+	00178: MIRP[srp0,nmd,rd,0] 
+	00179: MIRP[nrp0,md,rd,1] 
+	00180: SRP0       
+	00181: MIRP[srp0,md,rd,1] 
+	00182: MIRP[nrp0,md,rd,1] 
+	00183: MIRP[srp0,nmd,rd,0] 
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: SVTCA[y-axis] 
+	00186: MIAP[rd+ci] 
+	00187: ALIGNRP    
+	00188: SRP0       
+	00189: MIRP[srp0,nmd,rd,2] 
+	00190: MIRP[nrp0,md,rd,1] 
+	00191: SRP0       
+	00192: MIRP[srp0,md,rd,1] 
+	00193: ALIGNRP    
+	00194: MIRP[srp0,nmd,rd,0] 
+	00195: ALIGNRP    
+	00196: MIRP[srp0,md,rd,1] 
+	00197: ALIGNRP    
+	00198: MIRP[srp0,nmd,rd,2] 
+	00199: ALIGNRP    
+	00200: SRP0       
+	00201: MIRP[srp0,md,rd,1] 
+	00202: MIRP[nrp0,md,rd,1] 
+	00203: SRP2       
+	00204: IP         
+	00205: MDAP[rd]   
+	00206: DELTAP1    
+	00207: MIRP[nrp0,md,rd,1] 
+	00208: RTHG       
+	00209: IP         
+	00210: MDAP[rd]   
+	00211: SRP1       
+	00212: IP         
+	00213: MDAP[rd]   
+	00214: SDPVTL[1]  
+	00215: SFVTCA[x-axis] 
+	00216: MDAP[nrd]  
+	00217: RTG        
+	00218: CALL       
+	00219: CALL       
+	00220: CALL       
+	00221: RDTG       
+	00222: SRP0       
+	00223: MDRP[nrp0,nmd,rd,0] 
+	00224: IUP[y]     
+	00225: IUP[x]     
+	00226: SVTCA[x-axis] 
+	00227: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual         Y-Short X-Short On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+	  4:                              X-Short On
+	  5:        XDual                 X-Short Off
+	  6:        XDual                 X-Short On
+	  7:  YDual                               On
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual                               On
+	 10:        XDual         Y-Short         On
+	 11:                              X-Short Off
+	 12:                              X-Short On
+	 13:                                      On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short X-Short On
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:                      Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:        XDual         Y-Short         Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual                       X-Short On
+	 43:  YDual                       X-Short Off
+	 44:                      Y-Short X-Short Off
+	 45:                              X-Short On
+	 46:        XDual         Y-Short         Off
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short Off
+	 49:  YDual XDual         Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual               Y-Short X-Short Off
+	 53:  YDual                       X-Short On
+	 54:  YDual                       X-Short Off
+	 55:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   204,   -57)  ->  Abs (   204,   -57)
+	  1: Rel (  1101,  1548)  ->  Abs (  1305,  1491)
+	  2: Rel (   157,     0)  ->  Abs (  1462,  1491)
+	  3: Rel ( -1101, -1548)  ->  Abs (   361,   -57)
+	  4: Rel (  -164,   790)  ->  Abs (   197,   733)
+	  5: Rel (    24,   321)  ->  Abs (   221,  1054)
+	  6: Rel (   237,   291)  ->  Abs (   458,  1345)
+	  7: Rel (  -384,     0)  ->  Abs (    74,  1345)
+	  8: Rel (     0,   121)  ->  Abs (    74,  1466)
+	  9: Rel (   549,     0)  ->  Abs (   623,  1466)
+	 10: Rel (     0,   -80)  ->  Abs (   623,  1386)
+	 11: Rel (  -244,  -284)  ->  Abs (   379,  1102)
+	 12: Rel (   -34,  -369)  ->  Abs (   345,   733)
+	 13: Rel (   880,  -366)  ->  Abs (  1225,   367)
+	 14: Rel (  -130,    47)  ->  Abs (  1095,   414)
+	 15: Rel (     0,   115)  ->  Abs (  1095,   529)
+	 16: Rel (     0,    80)  ->  Abs (  1095,   609)
+	 17: Rel (   125,   111)  ->  Abs (  1220,   720)
+	 18: Rel (   139,     0)  ->  Abs (  1359,   720)
+	 19: Rel (   139,     0)  ->  Abs (  1498,   720)
+	 20: Rel (   139,  -107)  ->  Abs (  1637,   613)
+	 21: Rel (     0,   -86)  ->  Abs (  1637,   527)
+	 22: Rel (     0,  -115)  ->  Abs (  1637,   412)
+	 23: Rel (  -140,   -45)  ->  Abs (  1497,   367)
+	 24: Rel (   167,   -41)  ->  Abs (  1664,   326)
+	 25: Rel (     0,  -143)  ->  Abs (  1664,   183)
+	 26: Rel (     0,  -109)  ->  Abs (  1664,    74)
+	 27: Rel (  -169,  -123)  ->  Abs (  1495,   -49)
+	 28: Rel (  -129,     0)  ->  Abs (  1366,   -49)
+	 29: Rel (  -134,     0)  ->  Abs (  1232,   -49)
+	 30: Rel (  -165,   123)  ->  Abs (  1067,    74)
+	 31: Rel (     0,   104)  ->  Abs (  1067,   178)
+	 32: Rel (     0,   148)  ->  Abs (  1067,   326)
+	 33: Rel (   177,   193)  ->  Abs (  1244,   519)
+	 34: Rel (     0,   -49)  ->  Abs (  1244,   470)
+	 35: Rel (    70,   -53)  ->  Abs (  1314,   417)
+	 36: Rel (    51,     0)  ->  Abs (  1365,   417)
+	 37: Rel (    49,     0)  ->  Abs (  1414,   417)
+	 38: Rel (    75,    51)  ->  Abs (  1489,   468)
+	 39: Rel (     0,    46)  ->  Abs (  1489,   514)
+	 40: Rel (     0,    46)  ->  Abs (  1489,   560)
+	 41: Rel (   -72,    55)  ->  Abs (  1417,   615)
+	 42: Rel (   -54,     0)  ->  Abs (  1363,   615)
+	 43: Rel (   -55,     0)  ->  Abs (  1308,   615)
+	 44: Rel (   -64,   -58)  ->  Abs (  1244,   557)
+	 45: Rel (   -28,  -367)  ->  Abs (  1216,   190)
+	 46: Rel (     0,  -127)  ->  Abs (  1216,    63)
+	 47: Rel (   149,     0)  ->  Abs (  1365,    63)
+	 48: Rel (    71,     0)  ->  Abs (  1436,    63)
+	 49: Rel (    80,    69)  ->  Abs (  1516,   132)
+	 50: Rel (     0,    53)  ->  Abs (  1516,   185)
+	 51: Rel (     0,    58)  ->  Abs (  1516,   243)
+	 52: Rel (   -86,    68)  ->  Abs (  1430,   311)
+	 53: Rel (   -68,     0)  ->  Abs (  1362,   311)
+	 54: Rel (   -70,     0)  ->  Abs (  1292,   311)
+	 55: Rel (   -76,   -69)  ->  Abs (  1216,   242)
+
+	Glyph 493: off = 0x0001618C, len = 100
+	  numberOfContours:	1
+	  xMin:			226
+	  yMin:			-551
+	  xMax:			448
+	  yMax:			-145
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	58
+	00000: NPUSHB      (21):     6    62     7   108     9     9     0   159     2     1 
+	                             3     2   129     1     1     0     6   229     7   226 
+	                             0 
+	00023: PUSHW[1]            608 
+	00026: PUSHB[4]             10     9     3   217 
+	00031: PUSHW[2]            400    24 
+	00036: CALL       
+	00037: SRP1       
+	00038: IP         
+	00039: SRP0       
+	00040: MIRP[srp0,nmd,rd,0] 
+	00041: MIRP[srp0,nmd,rd,0] 
+	00042: MIRP[nrp0,nmd,rd,0] 
+	00043: SRP0       
+	00044: ALIGNRP    
+	00045: SRP0       
+	00046: MIRP[srp0,md,rd,1] 
+	00047: ALIGNRP    
+	00048: SVTCA[y-axis] 
+	00049: MDAP[rd]   
+	00050: ALIGNRP    
+	00051: MIRP[srp0,md,rd,1] 
+	00052: ALIGNRP    
+	00053: SRP0       
+	00054: MIRP[srp0,nmd,rd,2] 
+	00055: MIRP[nrp0,md,rd,1] 
+	00056: IUP[y]     
+	00057: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   239,  -320)  ->  Abs (   239,  -320)
+	  1: Rel (     0,   175)  ->  Abs (   239,  -145)
+	  2: Rel (   209,     0)  ->  Abs (   448,  -145)
+	  3: Rel (     0,  -117)  ->  Abs (   448,  -262)
+	  4: Rel (     0,  -110)  ->  Abs (   448,  -372)
+	  5: Rel (   -74,  -141)  ->  Abs (   374,  -513)
+	  6: Rel (   -94,   -38)  ->  Abs (   280,  -551)
+	  7: Rel (   -54,    84)  ->  Abs (   226,  -467)
+	  8: Rel (    93,    40)  ->  Abs (   319,  -427)
+	  9: Rel (    16,   107)  ->  Abs (   335,  -320)
+
+	Glyph 494: off = 0x000161F0, len = 138
+	  numberOfContours:	1
+	  xMin:			107
+	  yMin:			-421
+	  xMax:			540
+	  yMax:			-46
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	75
+	00000: NPUSHB      (10):     8    77     0    13    16    13    32    13     3    13 
+	00012: PUSHW[1]            561 
+	00015: NPUSHB      (30):     2    17    58    19    77     0   127    15     2    31 
+	                             2    47     2     3     2    56    20     5    41    15 
+	                           249    19     0   106    10   226    11    25    20    87 
+	00047: PUSHW[2]            400    24 
+	00052: CALL       
+	00053: FLIPOFF    
+	00054: SRP0       
+	00055: MIRP[srp0,nmd,rd,0] 
+	00056: FLIPON     
+	00057: MIRP[nrp0,nmd,rd,0] 
+	00058: MIRP[srp0,nmd,rd,2] 
+	00059: ALIGNRP    
+	00060: MIRP[srp0,nmd,rd,0] 
+	00061: MIRP[nrp0,md,rd,1] 
+	00062: SVTCA[y-axis] 
+	00063: SRP0       
+	00064: MIRP[srp0,md,rd,2] 
+	00065: DELTAP1    
+	00066: MIRP[srp0,nmd,rd,0] 
+	00067: MIRP[srp0,md,rd,1] 
+	00068: MIRP[nrp0,nmd,rd,0] 
+	00069: SRP0       
+	00070: MIRP[srp0,nmd,rd,0] 
+	00071: DELTAP1    
+	00072: MIRP[nrp0,md,rd,1] 
+	00073: IUP[y]     
+	00074: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual         Y-Short X-Short On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   213,   -50)  ->  Abs (   213,   -50)
+	  1: Rel (    35,     4)  ->  Abs (   248,   -46)
+	  2: Rel (    31,     0)  ->  Abs (   279,   -46)
+	  3: Rel (   137,     0)  ->  Abs (   416,   -46)
+	  4: Rel (   124,  -110)  ->  Abs (   540,  -156)
+	  5: Rel (     0,   -72)  ->  Abs (   540,  -228)
+	  6: Rel (     0,   -77)  ->  Abs (   540,  -305)
+	  7: Rel (  -141,  -116)  ->  Abs (   399,  -421)
+	  8: Rel (  -152,     0)  ->  Abs (   247,  -421)
+	  9: Rel (   -63,     0)  ->  Abs (   184,  -421)
+	 10: Rel (   -77,    12)  ->  Abs (   107,  -409)
+	 11: Rel (    11,   117)  ->  Abs (   118,  -292)
+	 12: Rel (    44,    -4)  ->  Abs (   162,  -296)
+	 13: Rel (    43,     0)  ->  Abs (   205,  -296)
+	 14: Rel (   167,     0)  ->  Abs (   372,  -296)
+	 15: Rel (     0,    76)  ->  Abs (   372,  -220)
+	 16: Rel (     0,    67)  ->  Abs (   372,  -153)
+	 17: Rel (  -127,     0)  ->  Abs (   245,  -153)
+	 18: Rel (   -14,     0)  ->  Abs (   231,  -153)
+	 19: Rel (   -18,    -2)  ->  Abs (   213,  -155)
+
+	Glyph 495: off = 0x0001627A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			222
+	  yMin:			1194
+	  xMax:			591
+	  yMax:			1474
+
+	     0: Flags:		0x0216
+		Glyf Index:	141
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 496: off = 0x0001628A, len = 142
+	  numberOfContours:	3
+	  xMin:			-22
+	  yMin:			1230
+	  xMax:			705
+	  yMax:			1507
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  11
+
+	  Length of Instructions:	90
+	00000: NPUSHB      (56):     4   160     6     9   160    11    64     6    11     0 
+	                             3     1   144     3     1     3   135   128     0     3 
+	                             5   159     7     7     0     8   159    80    10    96 
+	                            10     2    10    10     0     3   117   240     2     1 
+	                             2    64    44    47    52     2   197     1   160    95 
+	                             0     1    80     0     1     0 
+	00058: MDAP[rd]   
+	00059: DELTAP3    
+	00060: DELTAP1    
+	00061: MIRP[nrp0,md,rd,1] 
+	00062: MIRP[srp0,nmd,rd,2] 
+	00063: CALL       
+	00064: DELTAP2    
+	00065: MIRP[nrp0,md,rd,1] 
+	00066: SRP1       
+	00067: SHP[rp1,zp0] 
+	00068: MDAP[rd]   
+	00069: DELTAP1    
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: SRP1       
+	00072: SHP[rp1,zp0] 
+	00073: MDAP[rd]   
+	00074: MIRP[nrp0,md,rd,1] 
+	00075: SVTCA[y-axis] 
+	00076: MIAP[rd+ci] 
+	00077: SMD        
+	00078: MIRP[srp0,md,rd,1] 
+	00079: DELTAP1    
+	00080: DELTAP2    
+	00081: ALIGNRP    
+	00082: ALIGNRP    
+	00083: SMD        
+	00084: SRP0       
+	00085: MIRP[nrp0,md,rd,1] 
+	00086: SRP0       
+	00087: MIRP[nrp0,md,rd,1] 
+	00088: IUP[y]     
+	00089: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:                              X-Short On
+	  3:  YDual                       X-Short On
+	  4:  YDual               Y-Short         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual         Y-Short         On
+	  7:  YDual                       X-Short On
+	  8:  YDual               Y-Short         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual         Y-Short         On
+	 11:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   347,  1507)  ->  Abs (   347,  1507)
+	  1: Rel (   186,     0)  ->  Abs (   533,  1507)
+	  2: Rel (  -200,  -277)  ->  Abs (   333,  1230)
+	  3: Rel (  -117,     0)  ->  Abs (   216,  1230)
+	  4: Rel (   316,   192)  ->  Abs (   532,  1422)
+	  5: Rel (   173,     0)  ->  Abs (   705,  1422)
+	  6: Rel (     0,  -192)  ->  Abs (   705,  1230)
+	  7: Rel (  -173,     0)  ->  Abs (   532,  1230)
+	  8: Rel (  -554,   192)  ->  Abs (   -22,  1422)
+	  9: Rel (   173,     0)  ->  Abs (   151,  1422)
+	 10: Rel (     0,  -192)  ->  Abs (   151,  1230)
+	 11: Rel (  -173,     0)  ->  Abs (   -22,  1230)
+
+	Glyph 497: off = 0x00016318, len = 510
+	  numberOfContours:	3
+	  xMin:			-1
+	  yMin:			0
+	  xMax:			1371
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  14
+	  2:  18
+
+	  Length of Instructions:	427
+	00000: PUSHB[7]              1    14    15    16     2    85     2 
+	00008: PUSHW[1]            -14 
+	00011: PUSHB[5]             15    16     2    85     2 
+	00017: PUSHW[1]             -4 
+	00020: PUSHB[5]             16    16     6    85     2 
+	00026: PUSHW[1]            -10 
+	00029: PUSHB[5]             13    13     6    85     2 
+	00035: PUSHW[1]             -8 
+	00038: NPUSHB     (101):    12    12     6    85     9    12    12    12     6    85 
+	                             5    12    12    12     6    85    47    20    48    20 
+	                           103     8   104     9    96    20   136     3   159    15 
+	                           144    20   201     5   198     6   192    20   240    20 
+	                            12     8     5    89     1    86     2    80    20   104 
+	                            11   176    20   243    12   243    13   243    14     9 
+	                             4    12     4    13     4    14     3    15     0    18 
+	                            16    18     2    18   218    16     2    11    10     9 
+	                             5     4     4    12    13    14     8     6     7     7 
+	                            12     9     5     4     8     6    12     7     2     3 
+	                             3 
+	00141: PUSHW[1]             -8 
+	00144: NPUSHB      (15):    12    12     2    85     3    32     4    12    20     4 
+	                             4    12     1     0     0 
+	00161: PUSHW[1]             -8 
+	00164: NPUSHB      (21):    12    12     2    85     0    32     7    12    20     7 
+	                             7    12     9    30     5     5     8    30     6     3 
+	                             6 
+	00187: PUSHW[1]            624 
+	00190: NPUSHB      (14):     0    12   233     2     1     2    16    82    17    82 
+	                            18   233    64    15 
+	00206: PUSHW[1]            -64 
+	00209: PUSHB[4]             18    21    52    15 
+	00214: PUSHW[1]            -64 
+	00217: NPUSHB      (10):    11    12    52   223    15     1    15    84     0     2 
+	00229: PUSHW[3]            267     1   267 
+	00236: NPUSHB      (18):    12    32     0   101     7     3    82    80     4   207 
+	                             4   223     4     3   144     4     1     4 
+	00256: PUSHW[1]            257 
+	00259: NPUSHB      (11):    80    12   192     7   223    12     3   144    12     1 
+	                            12 
+	00272: PUSHW[1]            257 
+	00275: NPUSHB      (13):    15     7   207     7     2   127     7   128     7     2 
+	                             7   147    19 
+	00290: PUSHW[3]            411   398    24 
+	00297: CALL       
+	00298: SRP0       
+	00299: MIRP[srp0,nmd,rd,0] 
+	00300: DELTAP1    
+	00301: DELTAP2    
+	00302: RTHG       
+	00303: MIRP[srp0,nmd,rd,0] 
+	00304: DELTAP1    
+	00305: DELTAP2    
+	00306: MIRP[srp0,nmd,rd,0] 
+	00307: DELTAP1    
+	00308: DELTAP2    
+	00309: RTG        
+	00310: MIRP[nrp0,md,rd,1] 
+	00311: SRP0       
+	00312: MIRP[nrp0,md,rd,1] 
+	00313: SMD        
+	00314: RTHG       
+	00315: SRP0       
+	00316: MIRP[nrp0,md,rd,1] 
+	00317: MIRP[nrp0,md,rd,1] 
+	00318: RTG        
+	00319: SRP0       
+	00320: MIRP[srp0,nmd,rd,0] 
+	00321: DELTAP3    
+	00322: CALL       
+	00323: CALL       
+	00324: SMD        
+	00325: MIRP[srp0,md,rd,1] 
+	00326: MIRP[srp0,nmd,rd,0] 
+	00327: MIRP[nrp0,md,rd,1] 
+	00328: SVTCA[y-axis] 
+	00329: MIAP[rd+ci] 
+	00330: ALIGNRP    
+	00331: MIRP[nrp0,md,rd,1] 
+	00332: MDAP[rd]   
+	00333: MIRP[nrp0,nmd,rd,0] 
+	00334: ALIGNRP    
+	00335: SRP0       
+	00336: MIRP[nrp0,md,rd,1] 
+	00337: ALIGNRP    
+	00338: SRP0       
+	00339: MIRP[nrp0,md,rd,1] 
+	00340: SDPVTL[1]  
+	00341: SFVTCA[x-axis] 
+	00342: MDAP[nrd]  
+	00343: CALL       
+	00344: CALL       
+	00345: RDTG       
+	00346: SRP0       
+	00347: MDRP[nrp0,nmd,rd,0] 
+	00348: SDPVTL[1]  
+	00349: MDAP[nrd]  
+	00350: RTG        
+	00351: CALL       
+	00352: CALL       
+	00353: RDTG       
+	00354: SRP0       
+	00355: MDRP[nrp0,nmd,rd,0] 
+	00356: SVTCA[x-axis] 
+	00357: SRP1       
+	00358: SRP2       
+	00359: IP         
+	00360: IP         
+	00361: SRP1       
+	00362: IP         
+	00363: IP         
+	00364: SDPVTL[1]  
+	00365: SRP0       
+	00366: MDRP[nrp0,nmd,rd,0] 
+	00367: MDRP[nrp0,nmd,rd,0] 
+	00368: SFVTPV     
+	00369: MDRP[nrp0,nmd,rd,0] 
+	00370: MDRP[nrp0,nmd,rd,0] 
+	00371: SDPVTL[1]  
+	00372: SFVTCA[x-axis] 
+	00373: SRP0       
+	00374: MDRP[nrp0,nmd,rd,0] 
+	00375: MDRP[nrp0,nmd,rd,0] 
+	00376: SFVTPV     
+	00377: MDRP[nrp0,nmd,rd,0] 
+	00378: MDRP[nrp0,nmd,rd,0] 
+	00379: SVTCA[y-axis] 
+	00380: RTG        
+	00381: MIAP[rd+ci] 
+	00382: MIRP[srp0,md,rd,1] 
+	00383: DELTAP1    
+	00384: ALIGNRP    
+	00385: IUP[y]     
+	00386: IUP[x]     
+	00387: SVTCA[x-axis] 
+	00388: MPPEM      
+	00389: PUSHB[1]             11 
+	00391: GTEQ       
+	00392: MPPEM      
+	00393: PUSHB[1]             30 
+	00395: LTEQ       
+	00396: AND        
+	00397: IF         
+	00398: PUSHB[5]              4    15     3     8     7 
+	00404: PUSHW[3]            -16     0    -8 
+	00411: SHPIX      
+	00412: SHPIX      
+	00413: SHPIX      
+	00414: SHPIX      
+	00415: EIF        
+	00416: SVTCA[x-axis] 
+	00417: DELTAP3    
+	00418: DELTAP2    
+	00419: DELTAP1    
+	00420: CALL       
+	00421: CALL       
+	00422: CALL       
+	00423: CALL       
+	00424: CALL       
+	00425: CALL       
+	00426: CALL       
+
+	Flags
+	-----
+	  0:  YDual                       X-Short On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+	  4:  YDual                       X-Short On
+	  5:                              X-Short On
+	  6:  YDual                               On
+	  7:                              X-Short On
+	  8:        XDual                 X-Short On
+	  9:  YDual                               On
+	 10:                              X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:  YDual               Y-Short         On
+	 16:        XDual                 X-Short On
+	 17:  YDual XDual                 X-Short On
+	 18:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    -1,     0)  ->  Abs (    -1,     0)
+	  1: Rel (   563,  1466)  ->  Abs (   562,  1466)
+	  2: Rel (   209,     0)  ->  Abs (   771,  1466)
+	  3: Rel (   600, -1466)  ->  Abs (  1371,     0)
+	  4: Rel (  -221,     0)  ->  Abs (  1150,     0)
+	  5: Rel (  -171,   444)  ->  Abs (   979,   444)
+	  6: Rel (  -613,     0)  ->  Abs (   366,   444)
+	  7: Rel (  -161,  -444)  ->  Abs (   205,     0)
+	  8: Rel (   217,   602)  ->  Abs (   422,   602)
+	  9: Rel (   497,     0)  ->  Abs (   919,   602)
+	 10: Rel (  -153,   406)  ->  Abs (   766,  1008)
+	 11: Rel (   -73,   194)  ->  Abs (   693,  1202)
+	 12: Rel (   -31,   110)  ->  Abs (   662,  1312)
+	 13: Rel (   -28,  -141)  ->  Abs (   634,  1171)
+	 14: Rel (   -51,  -139)  ->  Abs (   583,  1032)
+	 15: Rel (  -529,   154)  ->  Abs (    54,  1186)
+	 16: Rel (   133,   280)  ->  Abs (   187,  1466)
+	 17: Rel (   236,     0)  ->  Abs (   423,  1466)
+	 18: Rel (  -220,  -280)  ->  Abs (   203,  1186)
+
+	Glyph 498: off = 0x00016516, len = 300
+	  numberOfContours:	2
+	  xMin:			-89
+	  yMin:			0
+	  xMax:			1495
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  15
+
+	  Length of Instructions:	235
+	00000: NPUSHB      (56):    12     0    15    16    15     2    15   218    13     2 
+	                             6     5    30     8     8     7     7     0     3     4 
+	                            30     2     1     2    10     9    30    11     0     8 
+	                            13    82    14    82   144    15     1    15   233    15 
+	                            12    31    12    79    12   207    12   223    12     5 
+	                            12    64    14    17    52    12 
+	00058: PUSHW[1]            -64 
+	00061: NPUSHB      (13):     9    11    52   159    12     1    12    64    46   100 
+	                            52    12     7 
+	00076: PUSHW[1]            -64 
+	00079: NPUSHB      (44):    16    18    52     7    84     3    74    32    10    32 
+	                            13     2    10    26    17     4     9    32     1     0 
+	                            50    16    16     2    85     0    10    15    15     2 
+	                            85     0    26    13    13     2    85     0    38    12 
+	                            12     2    85     0 
+	00125: PUSHW[1]            -15 
+	00128: NPUSHB      (23):    11    11     2    85     0     8    16    16     6    85 
+	                             0    15    15    15     6    85     0    28    13    13 
+	                             6    85     0 
+	00153: PUSHW[1]            -20 
+	00156: NPUSHB      (11):    12    12     6    85     0    32    11    11     6    85 
+	                             0 
+	00169: PUSHW[3]            278    16   393 
+	00176: PUSHB[2]             91    24 
+	00179: CALL       
+	00180: SRP0       
+	00181: MIRP[srp0,nmd,rd,2] 
+	00182: CALL       
+	00183: CALL       
+	00184: CALL       
+	00185: CALL       
+	00186: CALL       
+	00187: CALL       
+	00188: CALL       
+	00189: CALL       
+	00190: CALL       
+	00191: CALL       
+	00192: ALIGNRP    
+	00193: MIRP[srp0,md,rd,1] 
+	00194: ALIGNRP    
+	00195: FLIPOFF    
+	00196: SRP0       
+	00197: MIRP[srp0,nmd,rd,2] 
+	00198: DELTAP1    
+	00199: FLIPON     
+	00200: MIRP[srp0,nmd,rd,0] 
+	00201: MIRP[nrp0,nmd,rd,0] 
+	00202: CALL       
+	00203: MDAP[rd]   
+	00204: CALL       
+	00205: DELTAP3    
+	00206: CALL       
+	00207: CALL       
+	00208: DELTAP2    
+	00209: MIRP[srp0,md,rd,1] 
+	00210: DELTAP1    
+	00211: MIRP[srp0,nmd,rd,0] 
+	00212: MIRP[nrp0,md,rd,1] 
+	00213: SVTCA[y-axis] 
+	00214: MIAP[rd+ci] 
+	00215: ALIGNRP    
+	00216: MIRP[srp0,md,rd,1] 
+	00217: ALIGNRP    
+	00218: MIAP[rd+ci] 
+	00219: ALIGNRP    
+	00220: MIRP[srp0,md,rd,1] 
+	00221: ALIGNRP    
+	00222: SRP2       
+	00223: IP         
+	00224: MDAP[rd]   
+	00225: ALIGNRP    
+	00226: SRP0       
+	00227: MIRP[srp0,md,rd,1] 
+	00228: ALIGNRP    
+	00229: MIAP[rd+ci] 
+	00230: MIRP[srp0,md,rd,1] 
+	00231: DELTAP1    
+	00232: ALIGNRP    
+	00233: IUP[y]     
+	00234: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual                               On
+	  7:        XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:        XDual                         On
+	 10:  YDual                               On
+	 11:        XDual         Y-Short         On
+	 12:                                      On
+	 13:        XDual                 X-Short On
+	 14:  YDual XDual                 X-Short On
+	 15:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   401,     0)  ->  Abs (   401,     0)
+	  1: Rel (     0,  1466)  ->  Abs (   401,  1466)
+	  2: Rel (  1060,     0)  ->  Abs (  1461,  1466)
+	  3: Rel (     0,  -173)  ->  Abs (  1461,  1293)
+	  4: Rel (  -866,     0)  ->  Abs (   595,  1293)
+	  5: Rel (     0,  -449)  ->  Abs (   595,   844)
+	  6: Rel (   811,     0)  ->  Abs (  1406,   844)
+	  7: Rel (     0,  -172)  ->  Abs (  1406,   672)
+	  8: Rel (  -811,     0)  ->  Abs (   595,   672)
+	  9: Rel (     0,  -499)  ->  Abs (   595,   173)
+	 10: Rel (   900,     0)  ->  Abs (  1495,   173)
+	 11: Rel (     0,  -173)  ->  Abs (  1495,     0)
+	 12: Rel ( -1584,  1186)  ->  Abs (   -89,  1186)
+	 13: Rel (   133,   280)  ->  Abs (    44,  1466)
+	 14: Rel (   236,     0)  ->  Abs (   280,  1466)
+	 15: Rel (  -220,  -280)  ->  Abs (    60,  1186)
+
+	Glyph 499: off = 0x00016642, len = 364
+	  numberOfContours:	2
+	  xMin:			-88
+	  yMin:			0
+	  xMax:			1510
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  15
+
+	  Length of Instructions:	300
+	00000: PUSHW[2]             17   -64 
+	00005: NPUSHB      (46):    19    21    52    12     0    15    16    15     2    15 
+	                           218    13     2     4     3    30     9   160    10   208 
+	                            10     2    10    10     8     5     2     2    11     8 
+	                             8    13    82    14    82   144    15     1    15   233 
+	                            12    64    15    17    52    12 
+	00053: PUSHW[1]            -64 
+	00056: NPUSHB      (29):     9    11    52    12    32    11    11     6    85    79 
+	                            12    95    12   160    12     3    80    12     1    16 
+	                            12     1    12     5     8    32     7     7     6 
+	00087: PUSHW[1]            -35 
+	00090: NPUSHB      (29):    16    16     2    85     6    12    15    15     2    85 
+	                             6    30    13    13     2    85     6    10    12    12 
+	                             2    85     6    18    16    16     6    85     6 
+	00121: PUSHW[1]             -2 
+	00124: NPUSHB      (52):    15    15     6    85     6    17    13    13     6    85 
+	                             6    10    12    12     6    85    96     6   143     6 
+	                             2     6    26    80    17   128    17     2    17     2 
+	                            11    32     1     0     8    16    16     2    85     0 
+	                            28    15    15     2    85     0    46    13    13     2 
+	                            85     0 
+	00178: PUSHW[1]             -6 
+	00181: NPUSHB      (23):    12    12     2    85     0    48    16    16     6    85 
+	                             0    25    15    15     6    85     0    38    13    13 
+	                             6    85     0 
+	00206: PUSHW[1]             -6 
+	00209: NPUSHB      (20):    12    12     6    85     0    64    11    11     6    85 
+	                            79     0    95     0   191     0     3     0   221    16 
+	00231: PUSHW[1]            393 
+	00234: PUSHB[2]             89    24 
+	00237: CALL       
+	00238: SRP0       
+	00239: MIRP[srp0,nmd,rd,2] 
+	00240: DELTAP1    
+	00241: CALL       
+	00242: CALL       
+	00243: CALL       
+	00244: CALL       
+	00245: CALL       
+	00246: CALL       
+	00247: CALL       
+	00248: CALL       
+	00249: CALL       
+	00250: ALIGNRP    
+	00251: MIRP[srp0,md,rd,1] 
+	00252: ALIGNRP    
+	00253: SRP0       
+	00254: DELTAP1    
+	00255: MIRP[srp0,nmd,rd,2] 
+	00256: DELTAP1    
+	00257: CALL       
+	00258: CALL       
+	00259: CALL       
+	00260: CALL       
+	00261: CALL       
+	00262: CALL       
+	00263: CALL       
+	00264: CALL       
+	00265: ALIGNRP    
+	00266: SRP0       
+	00267: MIRP[srp0,md,rd,1] 
+	00268: ALIGNRP    
+	00269: MDAP[rd]   
+	00270: DELTAP3    
+	00271: DELTAP2    
+	00272: DELTAP1    
+	00273: CALL       
+	00274: CALL       
+	00275: CALL       
+	00276: MIRP[srp0,md,rd,1] 
+	00277: DELTAP1    
+	00278: MIRP[srp0,nmd,rd,0] 
+	00279: MIRP[nrp0,md,rd,1] 
+	00280: SVTCA[y-axis] 
+	00281: MIAP[rd+ci] 
+	00282: ALIGNRP    
+	00283: MIAP[rd+ci] 
+	00284: ALIGNRP    
+	00285: SRP2       
+	00286: IP         
+	00287: MDAP[rd]   
+	00288: DELTAP1    
+	00289: ALIGNRP    
+	00290: MIRP[srp0,md,rd,1] 
+	00291: ALIGNRP    
+	00292: MIAP[rd+ci] 
+	00293: MIRP[srp0,md,rd,1] 
+	00294: DELTAP1    
+	00295: ALIGNRP    
+	00296: IUP[y]     
+	00297: IUP[x]     
+	00298: SVTCA[x-axis] 
+	00299: CALL       
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:  YDual                       X-Short On
+	  9:        XDual                         On
+	 10:  YDual                               On
+	 11:        XDual                         On
+	 12:                                      On
+	 13:        XDual                 X-Short On
+	 14:  YDual XDual                 X-Short On
+	 15:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   360,     0)  ->  Abs (   360,     0)
+	  1: Rel (     0,  1466)  ->  Abs (   360,  1466)
+	  2: Rel (   194,     0)  ->  Abs (   554,  1466)
+	  3: Rel (     0,  -602)  ->  Abs (   554,   864)
+	  4: Rel (   762,     0)  ->  Abs (  1316,   864)
+	  5: Rel (     0,   602)  ->  Abs (  1316,  1466)
+	  6: Rel (   194,     0)  ->  Abs (  1510,  1466)
+	  7: Rel (     0, -1466)  ->  Abs (  1510,     0)
+	  8: Rel (  -194,     0)  ->  Abs (  1316,     0)
+	  9: Rel (     0,   691)  ->  Abs (  1316,   691)
+	 10: Rel (  -762,     0)  ->  Abs (   554,   691)
+	 11: Rel (     0,  -691)  ->  Abs (   554,     0)
+	 12: Rel (  -642,  1186)  ->  Abs (   -88,  1186)
+	 13: Rel (   133,   280)  ->  Abs (    45,  1466)
+	 14: Rel (   236,     0)  ->  Abs (   281,  1466)
+	 15: Rel (  -220,  -280)  ->  Abs (    61,  1186)
+
+	Glyph 500: off = 0x000167AE, len = 240
+	  numberOfContours:	2
+	  xMin:			-88
+	  yMin:			0
+	  xMax:			554
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	198
+	00000: NPUSHB      (50):    15     9    47     9    48     9   128     9     4     0 
+	                             7    16     7     2     7   218     6     5     2     1 
+	                             2     0     8     5    82     6    82   144     7     1 
+	                             7   233     4    22    12    13     2    85     4    24 
+	                            11    11     6    85     4    64    15    17    52     4 
+	00052: PUSHW[1]            -64 
+	00055: NPUSHB      (95):     9    11    52    79     4    95     4   160     4   176 
+	                             4     4    16     4     1     4     2     3    32     1 
+	                             0    10    16    16     2    85     0    28    15    15 
+	                             2    85     0    46    13    13     2    85     0    56 
+	                            12    12     2    85     0    10    11    11     2    85 
+	                             0     4    16    16     6    85     0    12    15    15 
+	                             6    85     0    42    13    13     6    85     0    18 
+	                            12    12     6    85     0    24    11    11     6    85 
+	                            95     0   111     0   127     0     3    79     0    95 
+	                             0     2     0   221     8 
+	00152: PUSHW[1]            393 
+	00155: PUSHB[2]             89    24 
+	00158: CALL       
+	00159: SRP0       
+	00160: MIRP[srp0,nmd,rd,2] 
+	00161: DELTAP1    
+	00162: DELTAP2    
+	00163: CALL       
+	00164: CALL       
+	00165: CALL       
+	00166: CALL       
+	00167: CALL       
+	00168: CALL       
+	00169: CALL       
+	00170: CALL       
+	00171: CALL       
+	00172: CALL       
+	00173: ALIGNRP    
+	00174: MIRP[srp0,md,rd,1] 
+	00175: ALIGNRP    
+	00176: MDAP[rd]   
+	00177: DELTAP3    
+	00178: DELTAP1    
+	00179: CALL       
+	00180: CALL       
+	00181: CALL       
+	00182: CALL       
+	00183: MIRP[srp0,md,rd,1] 
+	00184: DELTAP1    
+	00185: MIRP[srp0,nmd,rd,0] 
+	00186: MIRP[nrp0,md,rd,1] 
+	00187: SVTCA[y-axis] 
+	00188: MIAP[rd+ci] 
+	00189: MIAP[rd+ci] 
+	00190: MIAP[rd+ci] 
+	00191: ALIGNRP    
+	00192: MIRP[nrp0,md,rd,1] 
+	00193: DELTAP1    
+	00194: IUP[y]     
+	00195: IUP[x]     
+	00196: SVTCA[x-axis] 
+	00197: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:                                      On
+	  5:        XDual                 X-Short On
+	  6:  YDual XDual                 X-Short On
+	  7:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   360,     0)  ->  Abs (   360,     0)
+	  1: Rel (     0,  1466)  ->  Abs (   360,  1466)
+	  2: Rel (   194,     0)  ->  Abs (   554,  1466)
+	  3: Rel (     0, -1466)  ->  Abs (   554,     0)
+	  4: Rel (  -642,  1186)  ->  Abs (   -88,  1186)
+	  5: Rel (   133,   280)  ->  Abs (    45,  1466)
+	  6: Rel (   236,     0)  ->  Abs (   281,  1466)
+	  7: Rel (  -220,  -280)  ->  Abs (    61,  1186)
+
+	Glyph 501: off = 0x0001689E, len = 388
+	  numberOfContours:	3
+	  xMin:			-89
+	  yMin:			-25
+	  xMax:			1490
+	  yMax:			1492
+
+	EndPoints
+	---------
+	  0:  12
+	  1:  24
+	  2:  28
+
+	  Length of Instructions:	270
+	00000: NPUSHB      (86):     5    15    10    17    10    21     5    23    19    15 
+	                            29    17    29    21    19    23    71    14    73    18 
+	                            73    20    71    24    88     5    88     7    86    11 
+	                            84    15    90    17    91    18    93    21    83    23 
+	                           137    18   154     2   149     4    23     0    28    16 
+	                            28     2    28   218    27    26     2    22    30     3 
+	                             3    16    30     9     9    26    82    27    82   144 
+	                            28     1    28   233    25    32    11    11     6    85 
+	                            25    64    15    17    52    25 
+	00088: PUSHW[1]            -64 
+	00091: NPUSHB      (15):     9    11    52   160    25   176    25     2   128    25 
+	                             1    25    19    38     6 
+	00108: PUSHW[1]            -22 
+	00111: NPUSHB      (11):    16    16     2    85     6     8    15    15     2    85 
+	                             6 
+	00124: PUSHW[1]            -18 
+	00127: PUSHB[5]             13    13     2    85     6 
+	00133: PUSHW[1]            -16 
+	00136: NPUSHB      (11):    12    12     2    85     6    16    11    11     2    85 
+	                             6 
+	00149: PUSHW[1]            -11 
+	00152: PUSHB[5]             13    13     6    85     6 
+	00158: PUSHW[1]             -8 
+	00161: NPUSHB      (55):    12    12     6    85     6    26    30    13    38     0 
+	                            10    15    16     2    85     0    16    11    14     2 
+	                            85     0    10     9    10     2    85     0    11    13 
+	                            13     6    85     0    18    12    12     6    85     0 
+	                            73    11    11     6    85    15     0    31     0    47 
+	                             0     3     0    46    29 
+	00218: PUSHW[1]            393 
+	00221: PUSHB[2]             92    24 
+	00224: CALL       
+	00225: SRP0       
+	00226: MIRP[srp0,nmd,rd,2] 
+	00227: DELTAP1    
+	00228: CALL       
+	00229: CALL       
+	00230: CALL       
+	00231: CALL       
+	00232: CALL       
+	00233: CALL       
+	00234: MIRP[nrp0,md,rd,1] 
+	00235: FLIPOFF    
+	00236: SRP0       
+	00237: MIRP[srp0,nmd,rd,2] 
+	00238: CALL       
+	00239: CALL       
+	00240: CALL       
+	00241: CALL       
+	00242: CALL       
+	00243: CALL       
+	00244: CALL       
+	00245: FLIPON     
+	00246: MIRP[nrp0,md,rd,1] 
+	00247: MDAP[rd]   
+	00248: DELTAP2    
+	00249: DELTAP1    
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+	00253: MIRP[srp0,md,rd,1] 
+	00254: DELTAP1    
+	00255: MIRP[srp0,nmd,rd,0] 
+	00256: MIRP[nrp0,md,rd,1] 
+	00257: SVTCA[y-axis] 
+	00258: MIAP[rd+ci] 
+	00259: MIRP[nrp0,md,rd,1] 
+	00260: MIAP[rd+ci] 
+	00261: MIRP[nrp0,md,rd,1] 
+	00262: MIAP[rd+ci] 
+	00263: ALIGNRP    
+	00264: MIRP[nrp0,md,rd,1] 
+	00265: DELTAP1    
+	00266: IUP[y]     
+	00267: IUP[x]     
+	00268: SVTCA[x-axis] 
+	00269: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         Off
+	  2:                                      Off
+	  3:  YDual                               On
+	  4:  YDual                               Off
+	  5:                                      Off
+	  6:        XDual                         On
+	  7:        XDual                         Off
+	  8:                                      Off
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short         Off
+	 12:                              X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short         Off
+	 15:                                      Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:                                      Off
+	 19:        XDual                         On
+	 20:        XDual                         Off
+	 21:                                      Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:                                      Off
+	 25:  YDual               Y-Short         On
+	 26:        XDual                 X-Short On
+	 27:  YDual XDual                 X-Short On
+	 28:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    88,   714)  ->  Abs (    88,   714)
+	  1: Rel (     0,   366)  ->  Abs (    88,  1080)
+	  2: Rel (   394,   412)  ->  Abs (   482,  1492)
+	  3: Rel (   308,     0)  ->  Abs (   790,  1492)
+	  4: Rel (   309,     0)  ->  Abs (  1099,  1492)
+	  5: Rel (   391,  -419)  ->  Abs (  1490,  1073)
+	  6: Rel (     0,  -342)  ->  Abs (  1490,   731)
+	  7: Rel (     0,  -340)  ->  Abs (  1490,   391)
+	  8: Rel (  -394,  -416)  ->  Abs (  1096,   -25)
+	  9: Rel (  -307,     0)  ->  Abs (   789,   -25)
+	 10: Rel (  -221,     0)  ->  Abs (   568,   -25)
+	 11: Rel (  -333,   221)  ->  Abs (   235,   196)
+	 12: Rel (  -147,   347)  ->  Abs (    88,   543)
+	 13: Rel (   200,   168)  ->  Abs (   288,   711)
+	 14: Rel (     0,  -251)  ->  Abs (   288,   460)
+	 15: Rel (   272,  -319)  ->  Abs (   560,   141)
+	 16: Rel (   228,     0)  ->  Abs (   788,   141)
+	 17: Rel (   224,     0)  ->  Abs (  1012,   141)
+	 18: Rel (   278,   315)  ->  Abs (  1290,   456)
+	 19: Rel (     0,   276)  ->  Abs (  1290,   732)
+	 20: Rel (     0,   280)  ->  Abs (  1290,  1012)
+	 21: Rel (  -280,   313)  ->  Abs (  1010,  1325)
+	 22: Rel (  -219,     0)  ->  Abs (   791,  1325)
+	 23: Rel (  -215,     0)  ->  Abs (   576,  1325)
+	 24: Rel (  -288,  -294)  ->  Abs (   288,  1031)
+	 25: Rel (  -377,   155)  ->  Abs (   -89,  1186)
+	 26: Rel (   133,   280)  ->  Abs (    44,  1466)
+	 27: Rel (   236,     0)  ->  Abs (   280,  1466)
+	 28: Rel (  -220,  -280)  ->  Abs (    60,  1186)
+
+	Glyph 502: off = 0x00016A22, len = 538
+	  numberOfContours:	2
+	  xMin:			-89
+	  yMin:			0
+	  xMax:			1724
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  12
+	  1:  16
+
+	  Length of Instructions:	461
+	00000: PUSHB[7]              8     9    58     3     4    59     9 
+	00008: PUSHW[1]            -25 
+	00011: PUSHB[4]             18    23    52     8 
+	00016: PUSHW[1]            -25 
+	00019: NPUSHB      (14):    18    23    52     4    25    18    23    52     3    25 
+	                            18    23    52     9 
+	00035: PUSHW[1]            -40 
+	00038: PUSHB[4]             24    33    52     8 
+	00043: PUSHW[1]            -40 
+	00046: NPUSHB      (42):    24    33    52     4    40    24    33    52    18    38 
+	                             4    41     8    42    10    47    18     4   104     1 
+	                           104     6   104    11   222     6     4     5     4     3 
+	                             3     6     8     7     9     9     6     6     3     6 
+	                             9     3 
+	00090: PUSHW[1]            -10 
+	00093: NPUSHB      (42):    12    16     2    85     3    32     2     1    20     2 
+	                             2     1     6     9     6     3     9    10    12    16 
+	                             2    85     9    32    10    11    20    10    10    11 
+	                             0    16    16    16     2    16   218    15    14     2 
+	                             1    11 
+	00137: PUSHW[1]            -32 
+	00140: NPUSHB      (11):    13    13     6    85    11    32    11    11     6    85 
+	                            11 
+	00153: PUSHW[1]            537 
+	00156: NPUSHB      (42):    10    10     9     9     3     3     2     2     0     8 
+	                            11     6     1     3     2     0    14    82    15    82 
+	                           144    16     1    16   233    13    25    12    12     2 
+	                            85    96    13   112    13     2    13    64    15    17 
+	                            52    13 
+	00200: PUSHW[1]            -64 
+	00203: NPUSHB      (14):     9    11    52    79    13    95    13   176    13   192 
+	                            13     4    13    18 
+	00219: PUSHW[1]            536 
+	00222: NPUSHB       (9):    12     9    82    64    10   128    10     2    10 
+	00233: PUSHW[1]            437 
+	00236: NPUSHB      (13):    11    11    12    32     0     3    82    79     2   143 
+	                             2     2     2 
+	00251: PUSHW[1]            437 
+	00254: NPUSHB      (39):     1     1     0    36    16    16     2    85     0    12 
+	                            15    15     2    85     0    28    12    12     2    85 
+	                             0    34    16    16     6    85     0    32    15    15 
+	                             6    85     0    12    12    12     6    85     0 
+	00295: PUSHW[1]            583 
+	00298: PUSHB[3]             17     6    12 
+	00302: PUSHW[1]            393 
+	00305: PUSHB[2]            168    24 
+	00308: CALL       
+	00309: SRP1       
+	00310: IP         
+	00311: SRP0       
+	00312: MIRP[srp0,nmd,rd,2] 
+	00313: CALL       
+	00314: CALL       
+	00315: CALL       
+	00316: CALL       
+	00317: CALL       
+	00318: CALL       
+	00319: ALIGNRP    
+	00320: SRP0       
+	00321: MIRP[srp0,nmd,rd,0] 
+	00322: DELTAP1    
+	00323: MIRP[nrp0,md,rd,1] 
+	00324: SRP0       
+	00325: MIRP[srp0,md,rd,1] 
+	00326: ALIGNRP    
+	00327: SRP0       
+	00328: MIRP[srp0,nmd,rd,0] 
+	00329: DELTAP1    
+	00330: MIRP[nrp0,md,rd,1] 
+	00331: SRP0       
+	00332: MIRP[nrp0,nmd,rd,2] 
+	00333: MDAP[rd]   
+	00334: DELTAP1    
+	00335: CALL       
+	00336: CALL       
+	00337: DELTAP2    
+	00338: CALL       
+	00339: MIRP[srp0,md,rd,1] 
+	00340: DELTAP1    
+	00341: MIRP[srp0,nmd,rd,0] 
+	00342: MIRP[nrp0,md,rd,1] 
+	00343: SVTCA[y-axis] 
+	00344: SRP1       
+	00345: SRP2       
+	00346: SLOOP      
+	00347: IP         
+	00348: MIAP[rd+ci] 
+	00349: MIAP[rd+ci] 
+	00350: ALIGNRP    
+	00351: SRP0       
+	00352: ALIGNRP    
+	00353: SRP0       
+	00354: ALIGNRP    
+	00355: SRP0       
+	00356: MIRP[srp0,nmd,rd,0] 
+	00357: CALL       
+	00358: CALL       
+	00359: ALIGNRP    
+	00360: MIAP[rd+ci] 
+	00361: ALIGNRP    
+	00362: MIRP[nrp0,md,rd,1] 
+	00363: DELTAP1    
+	00364: SDPVTL[1]  
+	00365: SFVTCA[x-axis] 
+	00366: MDAP[nrd]  
+	00367: CALL       
+	00368: CALL       
+	00369: SFVTL[=p1,p2] 
+	00370: RDTG       
+	00371: SRP0       
+	00372: MDRP[nrp0,nmd,rd,0] 
+	00373: SDPVTL[1]  
+	00374: SFVTCA[x-axis] 
+	00375: MDAP[nrd]  
+	00376: RTG        
+	00377: CALL       
+	00378: CALL       
+	00379: SFVTL[=p1,p2] 
+	00380: RDTG       
+	00381: SRP0       
+	00382: MDRP[nrp0,nmd,rd,0] 
+	00383: SDPVTL[1]  
+	00384: SFVTPV     
+	00385: SRP0       
+	00386: MDRP[nrp0,nmd,rd,0] 
+	00387: MDRP[nrp0,nmd,rd,0] 
+	00388: SDPVTL[1]  
+	00389: SFVTPV     
+	00390: SRP0       
+	00391: MDRP[nrp0,nmd,rd,0] 
+	00392: MDRP[nrp0,nmd,rd,0] 
+	00393: MPPEM      
+	00394: PUSHB[1]             23 
+	00396: GTEQ       
+	00397: MPPEM      
+	00398: PUSHB[1]             28 
+	00400: LTEQ       
+	00401: AND        
+	00402: IF         
+	00403: PUSHB[5]              8    12     9    12     4 
+	00409: PUSHW[3]            -12     3   -12 
+	00416: SVTCA[x-axis] 
+	00417: SHPIX      
+	00418: SHPIX      
+	00419: SHPIX      
+	00420: SHPIX      
+	00421: EIF        
+	00422: IUP[y]     
+	00423: IUP[x]     
+	00424: SVTCA[y-axis] 
+	00425: DELTAP1    
+	00426: SVTCA[x-axis] 
+	00427: DELTAP1    
+	00428: RS         
+	00429: NOT        
+	00430: IF         
+	00431: NPUSHB       (9):     9    34    25    57     8    34    25    57     4 
+	00442: PUSHW[1]            -34 
+	00445: PUSHB[2]             25    57 
+	00448: CALL       
+	00449: CALL       
+	00450: CALL       
+	00451: EIF        
+	00452: CALL       
+	00453: CALL       
+	00454: CALL       
+	00455: CALL       
+	00456: CALL       
+	00457: CALL       
+	00458: CALL       
+	00459: CALL       
+	00460: CALL       
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:                                      On
+	  3:  YDual XDual                 X-Short On
+	  4:                                      On
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:                                      On
+	 10:  YDual XDual                 X-Short On
+	 11:                                      On
+	 12:        XDual                         On
+	 13:                                      On
+	 14:        XDual                 X-Short On
+	 15:  YDual XDual                 X-Short On
+	 16:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   945,     0)  ->  Abs (   945,     0)
+	  1: Rel (     0,   621)  ->  Abs (   945,   621)
+	  2: Rel (  -565,   845)  ->  Abs (   380,  1466)
+	  3: Rel (   236,     0)  ->  Abs (   616,  1466)
+	  4: Rel (   289,  -442)  ->  Abs (   905,  1024)
+	  5: Rel (    85,  -131)  ->  Abs (   990,   893)
+	  6: Rel (    64,  -117)  ->  Abs (  1054,   776)
+	  7: Rel (    66,   115)  ->  Abs (  1120,   891)
+	  8: Rel (    94,   144)  ->  Abs (  1214,  1035)
+	  9: Rel (   284,   431)  ->  Abs (  1498,  1466)
+	 10: Rel (   226,     0)  ->  Abs (  1724,  1466)
+	 11: Rel (  -585,  -845)  ->  Abs (  1139,   621)
+	 12: Rel (     0,  -621)  ->  Abs (  1139,     0)
+	 13: Rel ( -1228,  1186)  ->  Abs (   -89,  1186)
+	 14: Rel (   133,   280)  ->  Abs (    44,  1466)
+	 15: Rel (   236,     0)  ->  Abs (   280,  1466)
+	 16: Rel (  -220,  -280)  ->  Abs (    60,  1186)
+
+	Glyph 503: off = 0x00016C3C, len = 556
+	  numberOfContours:	2
+	  xMin:			-89
+	  yMin:			0
+	  xMax:			1445
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  29
+	  1:  33
+
+	  Length of Instructions:	436
+	00000: NPUSHB      (69):   159    17   159    27     2    88     1    87    13   122 
+	                            18   117    26   134    24   175    35     6    92     5 
+	                            80     9   111     5   100     9   118     9     5    37 
+	                             9    75    18    75    20    70    24    69    26     5 
+	                            11     5     4     9    29     5    20     9    42     5 
+	                             5    12    21     2    23    59    26     3     0    33 
+	                            16    33     2    33   218    32    31     2    22 
+	00071: PUSHW[1]            584 
+	00074: NPUSHB      (35):     7     3    14    13     0     1    45    27    27    17 
+	                            45    13    30    15    16    29    28    28    16     8 
+	                            31    82    32    82   144    33     1    33   233    30 
+	                            64    15    17    52    30 
+	00111: PUSHW[1]            -64 
+	00114: NPUSHB      (16):     9    11    52    79    30    95    30   160    30   176 
+	                            30   192    30     5    30    13 
+	00132: PUSHW[1]            570 
+	00135: PUSHB[4]             16    16    17     1 
+	00140: PUSHW[4]            570    27    28   -10 
+	00149: NPUSHB      (17):    11    11     2    85    28    17    10    11    11     2 
+	                            85    47    17    79    17     2    17 
+	00168: PUSHW[1]            632 
+	00171: NPUSHB      (13):    14    19    38    11    74    15    14    12    16    16 
+	                             2    85    14 
+	00186: PUSHW[1]            -10 
+	00189: NPUSHB      (11):    15    15     2    85    14     6    13    13     2    85 
+	                            14 
+	00202: PUSHW[1]             -4 
+	00205: PUSHB[5]             12    12     2    85    14 
+	00211: PUSHW[1]            -24 
+	00214: NPUSHB      (11):    11    11     2    85    14    16    16    16     6    85 
+	                            14 
+	00227: PUSHW[1]             -6 
+	00230: PUSHB[5]             12    13     6    85    14 
+	00236: PUSHW[1]             -9 
+	00239: NPUSHB      (18):    11    11     6    85    16    19   175    14     2    14 
+	                           106    35    32    28    64    28     2    28 
+	00259: PUSHW[1]            632 
+	00262: PUSHB[6]             29    25    38     3    74    29 
+	00269: PUSHW[1]            -32 
+	00272: PUSHB[5]             16    16     2    85    29 
+	00278: PUSHW[1]            -22 
+	00281: PUSHB[5]             15    15     2    85    29 
+	00287: PUSHW[1]            -18 
+	00290: PUSHB[5]             13    13     2    85    29 
+	00296: PUSHW[1]            -10 
+	00299: PUSHB[5]             12    12     2    85    29 
+	00305: PUSHW[1]            -32 
+	00308: PUSHB[5]             16    16     6    85    29 
+	00314: PUSHW[1]            -20 
+	00317: PUSHB[5]             15    15     6    85    29 
+	00323: PUSHW[1]            -14 
+	00326: PUSHB[5]             13    13     6    85    29 
+	00332: PUSHW[1]             -8 
+	00335: NPUSHB      (10):    12    12     6    85    32    29     1    29   172    34 
+	00347: PUSHW[3]            393   398    24 
+	00354: CALL       
+	00355: SRP0       
+	00356: MIRP[srp0,nmd,rd,2] 
+	00357: DELTAP1    
+	00358: CALL       
+	00359: CALL       
+	00360: CALL       
+	00361: CALL       
+	00362: CALL       
+	00363: CALL       
+	00364: CALL       
+	00365: CALL       
+	00366: MIRP[srp0,nmd,rd,0] 
+	00367: MIRP[nrp0,md,rd,1] 
+	00368: SRP0       
+	00369: MIRP[nrp0,md,rd,1] 
+	00370: DELTAP1    
+	00371: SRP0       
+	00372: MIRP[srp0,nmd,rd,2] 
+	00373: DELTAP1    
+	00374: CALL       
+	00375: CALL       
+	00376: CALL       
+	00377: CALL       
+	00378: CALL       
+	00379: CALL       
+	00380: CALL       
+	00381: CALL       
+	00382: ALIGNRP    
+	00383: MIRP[srp0,nmd,rd,0] 
+	00384: MIRP[nrp0,md,rd,1] 
+	00385: SRP0       
+	00386: MIRP[nrp0,md,rd,1] 
+	00387: DELTAP1    
+	00388: CALL       
+	00389: SRP0       
+	00390: CALL       
+	00391: ALIGNRP    
+	00392: MIRP[nrp0,md,rd,1] 
+	00393: SRP0       
+	00394: ALIGNRP    
+	00395: SRP0       
+	00396: MIRP[nrp0,md,rd,1] 
+	00397: MDAP[rd]   
+	00398: DELTAP1    
+	00399: CALL       
+	00400: CALL       
+	00401: MIRP[srp0,md,rd,1] 
+	00402: DELTAP1    
+	00403: MIRP[srp0,nmd,rd,0] 
+	00404: MIRP[nrp0,md,rd,1] 
+	00405: SVTCA[y-axis] 
+	00406: MIAP[rd+ci] 
+	00407: ALIGNRP    
+	00408: SRP0       
+	00409: ALIGNRP    
+	00410: SRP0       
+	00411: ALIGNRP    
+	00412: MIRP[srp0,md,rd,1] 
+	00413: MIRP[srp0,nmd,rd,0] 
+	00414: ALIGNRP    
+	00415: SRP0       
+	00416: MIRP[srp0,nmd,rd,0] 
+	00417: ALIGNRP    
+	00418: SRP0       
+	00419: ALIGNRP    
+	00420: MIAP[rd+ci] 
+	00421: MIRP[nrp0,md,rd,1] 
+	00422: MIAP[rd+ci] 
+	00423: ALIGNRP    
+	00424: MIRP[nrp0,md,rd,1] 
+	00425: DELTAP1    
+	00426: IUP[y]     
+	00427: IUP[x]     
+	00428: SVTCA[x-axis] 
+	00429: DELTAP2    
+	00430: DELTAP1    
+	00431: DELTAP1    
+	00432: DELTAP1    
+	00433: DELTAP1    
+	00434: SVTCA[y-axis] 
+	00435: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:  YDual                               On
+	  2:  YDual               Y-Short         Off
+	  3:        XDual                         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:        XDual                 X-Short Off
+	  6:  YDual               Y-Short         Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:                      Y-Short         Off
+	 10:        XDual                 X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual                         Off
+	 13:                      Y-Short         On
+	 14:  YDual                               On
+	 15:        XDual         Y-Short         On
+	 16:  YDual                               On
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual               Y-Short         Off
+	 19:        XDual                         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:                              X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:                              X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual                         Off
+	 27:                      Y-Short         On
+	 28:        XDual         Y-Short         On
+	 29:  YDual                               On
+	 30:                              X-Short On
+	 31:        XDual                 X-Short On
+	 32:  YDual XDual                 X-Short On
+	 33:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   107,   173)  ->  Abs (   107,   173)
+	  1: Rel (   320,     0)  ->  Abs (   427,   173)
+	  2: Rel (  -304,   254)  ->  Abs (   123,   427)
+	  3: Rel (     0,   366)  ->  Abs (   123,   793)
+	  4: Rel (     0,   199)  ->  Abs (   123,   992)
+	  5: Rel (   160,   316)  ->  Abs (   283,  1308)
+	  6: Rel (   292,   183)  ->  Abs (   575,  1491)
+	  7: Rel (   205,     0)  ->  Abs (   780,  1491)
+	  8: Rel (   203,     0)  ->  Abs (   983,  1491)
+	  9: Rel (   271,  -168)  ->  Abs (  1254,  1323)
+	 10: Rel (   175,  -314)  ->  Abs (  1429,  1009)
+	 11: Rel (     0,  -216)  ->  Abs (  1429,   793)
+	 12: Rel (     0,  -366)  ->  Abs (  1429,   427)
+	 13: Rel (  -304,  -254)  ->  Abs (  1125,   173)
+	 14: Rel (   320,     0)  ->  Abs (  1445,   173)
+	 15: Rel (     0,  -173)  ->  Abs (  1445,     0)
+	 16: Rel (  -570,     0)  ->  Abs (   875,     0)
+	 17: Rel (     0,   162)  ->  Abs (   875,   162)
+	 18: Rel (   356,   166)  ->  Abs (  1231,   328)
+	 19: Rel (     0,   435)  ->  Abs (  1231,   763)
+	 20: Rel (     0,   245)  ->  Abs (  1231,  1008)
+	 21: Rel (  -251,   317)  ->  Abs (   980,  1325)
+	 22: Rel (  -201,     0)  ->  Abs (   779,  1325)
+	 23: Rel (  -207,     0)  ->  Abs (   572,  1325)
+	 24: Rel (  -248,  -319)  ->  Abs (   324,  1006)
+	 25: Rel (     0,  -233)  ->  Abs (   324,   773)
+	 26: Rel (     0,  -441)  ->  Abs (   324,   332)
+	 27: Rel (   354,  -170)  ->  Abs (   678,   162)
+	 28: Rel (     0,  -162)  ->  Abs (   678,     0)
+	 29: Rel (  -571,     0)  ->  Abs (   107,     0)
+	 30: Rel (  -196,  1186)  ->  Abs (   -89,  1186)
+	 31: Rel (   133,   280)  ->  Abs (    44,  1466)
+	 32: Rel (   236,     0)  ->  Abs (   280,  1466)
+	 33: Rel (  -220,  -280)  ->  Abs (    60,  1186)
+
+	Glyph 504: off = 0x00016E68, len = 242
+	  numberOfContours:	4
+	  xMin:			-136
+	  yMin:			0
+	  xMax:			591
+	  yMax:			1507
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  11
+	  3:  15
+
+	  Length of Instructions:	179
+	00000: NPUSHB      (26):     9   163    10    13   163    15    64    10    15    15 
+	                             4     1   159     4     1     4    66   128     7   201 
+	                             2     1     6     0    10     9 
+	00028: PUSHW[1]            560 
+	00031: PUSHB[4]             11    11     4    12 
+	00036: PUSHW[1]            560 
+	00039: NPUSHB      (12):    80    14    96    14     2    14    14     4    31     7 
+	                             1     7 
+	00053: PUSHW[1]            268 
+	00056: NPUSHB      (20):   240     6     1     6    64    44    47    52     6    73 
+	                             5    64     4    17    78     2     3    37     1     0 
+	00078: PUSHW[1]             -4 
+	00081: NPUSHB      (17):    14    14     2    85     0     4    11    12     2    85 
+	                             0    12    16    16     6    85     0 
+	00100: PUSHW[1]             -2 
+	00103: PUSHB[5]             13    13     6    85     0 
+	00109: PUSHW[1]             -4 
+	00112: NPUSHB      (13):    12    12     6    85    16     0    32     0     2     0 
+	                            69    16    71 
+	00127: PUSHW[2]            266    24 
+	00132: CALL       
+	00133: SRP0       
+	00134: MIRP[srp0,nmd,rd,2] 
+	00135: DELTAP1    
+	00136: CALL       
+	00137: CALL       
+	00138: CALL       
+	00139: CALL       
+	00140: CALL       
+	00141: ALIGNRP    
+	00142: MIRP[srp0,md,rd,1] 
+	00143: ALIGNRP    
+	00144: MIRP[nrp0,nmd,rd,0] 
+	00145: MDAP[rd]   
+	00146: MIRP[nrp0,md,rd,1] 
+	00147: MIRP[srp0,nmd,rd,2] 
+	00148: CALL       
+	00149: DELTAP2    
+	00150: MIRP[nrp0,md,rd,1] 
+	00151: DELTAP2    
+	00152: SRP1       
+	00153: SHP[rp1,zp0] 
+	00154: MDAP[rd]   
+	00155: DELTAP1    
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: SRP1       
+	00158: SHP[rp1,zp0] 
+	00159: MDAP[rd]   
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: SVTCA[y-axis] 
+	00162: MIAP[rd+ci] 
+	00163: MIAP[rd+ci] 
+	00164: ALIGNRP    
+	00165: MIRP[srp0,md,rd,2] 
+	00166: SMD        
+	00167: MIRP[nrp0,md,rd,1] 
+	00168: DELTAP1    
+	00169: DELTAP2    
+	00170: ALIGNRP    
+	00171: ALIGNRP    
+	00172: SMD        
+	00173: SRP0       
+	00174: MIRP[nrp0,md,rd,1] 
+	00175: SRP0       
+	00176: MIRP[nrp0,md,rd,1] 
+	00177: IUP[y]     
+	00178: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:                              X-Short On
+	  5:  YDual XDual                 X-Short On
+	  6:                              X-Short On
+	  7:  YDual                       X-Short On
+	  8:  YDual               Y-Short         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual         Y-Short         On
+	 11:  YDual                       X-Short On
+	 12:  YDual               Y-Short         On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual         Y-Short         On
+	 15:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   137,     0)  ->  Abs (   137,     0)
+	  1: Rel (     0,  1062)  ->  Abs (   137,  1062)
+	  2: Rel (   180,     0)  ->  Abs (   317,  1062)
+	  3: Rel (     0, -1062)  ->  Abs (   317,     0)
+	  4: Rel (   -84,  1507)  ->  Abs (   233,  1507)
+	  5: Rel (   186,     0)  ->  Abs (   419,  1507)
+	  6: Rel (  -200,  -277)  ->  Abs (   219,  1230)
+	  7: Rel (  -117,     0)  ->  Abs (   102,  1230)
+	  8: Rel (   316,   192)  ->  Abs (   418,  1422)
+	  9: Rel (   173,     0)  ->  Abs (   591,  1422)
+	 10: Rel (     0,  -192)  ->  Abs (   591,  1230)
+	 11: Rel (  -173,     0)  ->  Abs (   418,  1230)
+	 12: Rel (  -554,   192)  ->  Abs (  -136,  1422)
+	 13: Rel (   173,     0)  ->  Abs (    37,  1422)
+	 14: Rel (     0,  -192)  ->  Abs (    37,  1230)
+	 15: Rel (  -173,     0)  ->  Abs (  -136,  1230)
+
+	Glyph 505: off = 0x00016F5A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 506: off = 0x00016F6A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			150
+	  yMin:			0
+	  xMax:			1257
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	37
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 507: off = 0x00016F7A, len = 280
+	  numberOfContours:	2
+	  xMin:			-2
+	  yMin:			0
+	  xMax:			1370
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  10
+
+	  Length of Instructions:	225
+	00000: NPUSHB      (60):   132     8     1   159     8     1     7     2    23     2 
+	                            47    12    48    12   120     6   137     1   134     2 
+	                           151     4   152     5   183     4   184     5   199     4 
+	                           200     5   231     3   247     3    15     6     4     8 
+	                             5    39     4    40     5    55     4    56     5     6 
+	                           148     8     1     1    14    15    16     2    85     2 
+	00062: PUSHW[1]            -14 
+	00065: PUSHB[5]             15    16     2    85     2 
+	00071: PUSHW[1]            -10 
+	00074: NPUSHB      (60):    12    12     2    85     6     8     8     5    10     4 
+	                             4     8     2     3     1     0     8     5     8     4 
+	                             5    32     3     2    20     3     3     2     8     4 
+	                             8     5     4    32     0     1    20     0     0     1 
+	                             5     4    30     0     8     1     2     2     1     2 
+	                             3     8     0     8     4     1     0     5     2     3 
+	00136: PUSHW[3]            532     0   532 
+	00143: NPUSHB      (13):     8     6    12    12     6    85   207     8     1     8 
+	                             8    12    11 
+	00158: RTHG       
+	00159: SRP1       
+	00160: SRP2       
+	00161: IP         
+	00162: MDAP[rd]   
+	00163: DELTAP1    
+	00164: CALL       
+	00165: RTG        
+	00166: MIRP[nrp0,md,rd,1] 
+	00167: MIRP[nrp0,md,rd,1] 
+	00168: IP         
+	00169: IP         
+	00170: SRP2       
+	00171: IP         
+	00172: IP         
+	00173: SVTCA[y-axis] 
+	00174: MIAP[rd+ci] 
+	00175: MIAP[rd+ci] 
+	00176: MIAP[rd+ci] 
+	00177: MIAP[rd+ci] 
+	00178: SRP1       
+	00179: IP         
+	00180: SRP0       
+	00181: MIRP[srp0,md,rd,1] 
+	00182: ALIGNRP    
+	00183: SDPVTL[1]  
+	00184: SFVTCA[x-axis] 
+	00185: MDAP[nrd]  
+	00186: CALL       
+	00187: SFVTL[=p1,p2] 
+	00188: RDTG       
+	00189: SRP0       
+	00190: MDRP[nrp0,nmd,rd,0] 
+	00191: SDPVTL[1]  
+	00192: SFVTCA[x-axis] 
+	00193: MDAP[nrd]  
+	00194: RTG        
+	00195: CALL       
+	00196: SFVTL[=p1,p2] 
+	00197: RDTG       
+	00198: SRP0       
+	00199: MDRP[nrp0,nmd,rd,0] 
+	00200: SVTCA[x-axis] 
+	00201: SRP1       
+	00202: IP         
+	00203: SRP1       
+	00204: IP         
+	00205: SDPVTL[1]  
+	00206: SFVTPV     
+	00207: SRP0       
+	00208: MDRP[nrp0,nmd,rd,0] 
+	00209: SDPVTL[1]  
+	00210: SFVTPV     
+	00211: SRP0       
+	00212: MDRP[nrp0,nmd,rd,0] 
+	00213: IUP[y]     
+	00214: IUP[x]     
+	00215: SVTCA[x-axis] 
+	00216: CALL       
+	00217: CALL       
+	00218: CALL       
+	00219: DELTAP3    
+	00220: DELTAP2    
+	00221: DELTAP1    
+	00222: SVTCA[y-axis] 
+	00223: DELTAP3    
+	00224: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                       X-Short On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:                                      On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    -2,     0)  ->  Abs (    -2,     0)
+	  1: Rel (   563,  1466)  ->  Abs (   561,  1466)
+	  2: Rel (   209,     0)  ->  Abs (   770,  1466)
+	  3: Rel (   600, -1466)  ->  Abs (  1370,     0)
+	  4: Rel ( -1103,   173)  ->  Abs (   267,   173)
+	  5: Rel (   815,     0)  ->  Abs (  1082,   173)
+	  6: Rel (  -317,   835)  ->  Abs (   765,  1008)
+	  7: Rel (   -71,   188)  ->  Abs (   694,  1196)
+	  8: Rel (   -33,   116)  ->  Abs (   661,  1312)
+	  9: Rel (   -27,  -136)  ->  Abs (   634,  1176)
+	 10: Rel (   -52,  -144)  ->  Abs (   582,  1032)
+
+	Glyph 508: off = 0x00017092, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			162
+	  yMin:			0
+	  xMax:			1256
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 509: off = 0x000170A2, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			41
+	  yMin:			0
+	  xMax:			1200
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	61
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 510: off = 0x000170B2, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			164
+	  yMin:			0
+	  xMax:			1314
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	43
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 511: off = 0x000170C2, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			191
+	  yMin:			0
+	  xMax:			385
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 512: off = 0x000170D2, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			150
+	  yMin:			0
+	  xMax:			1362
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	46
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 513: off = 0x000170E2, len = 286
+	  numberOfContours:	1
+	  xMin:			11
+	  yMin:			0
+	  xMax:			1352
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  10
+
+	  Length of Instructions:	231
+	00000: NPUSHB      (26):    95     5     1     0    12    47    12    48    12   111 
+	                            12     4    87     3    92     4    86     5     3    10 
+	                             8    15    16     2    85     0 
+	00028: PUSHW[1]             -8 
+	00031: NPUSHB      (17):    15    16     2    85     3     5     5     2     7     8 
+	                             8     5     0     1    10     9     5 
+	00050: PUSHW[1]            -18 
+	00053: NPUSHB       (9):    12    12     2    85     5     2     5     8     2 
+	00064: PUSHW[1]            -20 
+	00067: NPUSHB      (13):    12    12     6    85     2    32     1     0    20     1 
+	                             1     0     5 
+	00082: PUSHW[1]            -18 
+	00085: NPUSHB      (40):    12    12     2    85     5     8     5     2     8    12 
+	                            12    13     6    85     8    32     9    10    20     9 
+	                             9    10     5     0     1     9     8     8     2     1 
+	                             8    10     0     2     8    10     9     0     2     1 
+	00127: PUSHW[3]            351     9    -8 
+	00134: PUSHB[5]             13    13     2    85     9 
+	00140: PUSHW[3]            351     5   -12 
+	00147: NPUSHB      (13):    11    11     6    85     0     5    48     5     2     5 
+	                             5    12    11 
+	00162: RTHG       
+	00163: SRP1       
+	00164: SRP2       
+	00165: IP         
+	00166: MDAP[rd]   
+	00167: DELTAP1    
+	00168: CALL       
+	00169: RTG        
+	00170: MIRP[nrp0,md,rd,1] 
+	00171: CALL       
+	00172: MIRP[nrp0,md,rd,1] 
+	00173: IP         
+	00174: IP         
+	00175: SRP2       
+	00176: IP         
+	00177: IP         
+	00178: SVTCA[y-axis] 
+	00179: MIAP[rd+ci] 
+	00180: ALIGNRP    
+	00181: MIAP[rd+ci] 
+	00182: ALIGNRP    
+	00183: MIAP[rd+ci] 
+	00184: ALIGNRP    
+	00185: SRP1       
+	00186: SRP2       
+	00187: IP         
+	00188: SDPVTL[1]  
+	00189: SFVTCA[x-axis] 
+	00190: MDAP[nrd]  
+	00191: CALL       
+	00192: CALL       
+	00193: SFVTL[=p1,p2] 
+	00194: RDTG       
+	00195: SRP0       
+	00196: MDRP[nrp0,nmd,rd,0] 
+	00197: CALL       
+	00198: SDPVTL[1]  
+	00199: SFVTCA[x-axis] 
+	00200: MDAP[nrd]  
+	00201: RTG        
+	00202: CALL       
+	00203: CALL       
+	00204: SFVTL[=p1,p2] 
+	00205: RDTG       
+	00206: SRP0       
+	00207: MDRP[nrp0,nmd,rd,0] 
+	00208: CALL       
+	00209: SVTCA[x-axis] 
+	00210: SRP1       
+	00211: IP         
+	00212: SRP1       
+	00213: IP         
+	00214: SDPVTL[1]  
+	00215: SFVTPV     
+	00216: SRP0       
+	00217: MDRP[nrp0,nmd,rd,0] 
+	00218: SDPVTL[1]  
+	00219: SFVTPV     
+	00220: SRP0       
+	00221: MDRP[nrp0,nmd,rd,0] 
+	00222: IUP[y]     
+	00223: IUP[x]     
+	00224: SVTCA[x-axis] 
+	00225: CALL       
+	00226: CALL       
+	00227: DELTAP3    
+	00228: DELTAP1    
+	00229: SVTCA[y-axis] 
+	00230: DELTAP3    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:  YDual                       X-Short On
+	  3:                                      On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:                                      On
+	  9:  YDual                       X-Short On
+	 10:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   784,  1466)  ->  Abs (   784,  1466)
+	  1: Rel (   568, -1466)  ->  Abs (  1352,     0)
+	  2: Rel (  -211,     0)  ->  Abs (  1141,     0)
+	  3: Rel (  -381,  1064)  ->  Abs (   760,  1064)
+	  4: Rel (   -50,   140)  ->  Abs (   710,  1204)
+	  5: Rel (   -27,   101)  ->  Abs (   683,  1305)
+	  6: Rel (   -33,  -121)  ->  Abs (   650,  1184)
+	  7: Rel (   -45,  -120)  ->  Abs (   605,  1064)
+	  8: Rel (  -396, -1064)  ->  Abs (   209,     0)
+	  9: Rel (  -198,     0)  ->  Abs (    11,     0)
+	 10: Rel (   573,  1466)  ->  Abs (   584,  1466)
+
+	Glyph 514: off = 0x00017200, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			152
+	  yMin:			0
+	  xMax:			1551
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	48
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 515: off = 0x00017210, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			156
+	  yMin:			0
+	  xMax:			1311
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	49
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 516: off = 0x00017220, len = 116
+	  numberOfContours:	3
+	  xMin:			109
+	  yMin:			0
+	  xMax:			1222
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  11
+
+	  Length of Instructions:	62
+	00000: NPUSHB      (39):     5    30    31     7     1    79     7    95     7   127 
+	                             7   143     7     4     7     7     0     9    30    11 
+	                             8     2    30     0     2     6   156     1    98    10 
+	                            86    13     7   156     0    98    11    86    12 
+	00041: SRP0       
+	00042: MIRP[srp0,nmd,rd,2] 
+	00043: MIRP[nrp0,nmd,rd,0] 
+	00044: MIRP[nrp0,nmd,rd,0] 
+	00045: SRP0       
+	00046: MIRP[srp0,nmd,rd,2] 
+	00047: MIRP[nrp0,nmd,rd,0] 
+	00048: MIRP[nrp0,nmd,rd,0] 
+	00049: SVTCA[y-axis] 
+	00050: MIAP[rd+ci] 
+	00051: MIRP[nrp0,md,rd,1] 
+	00052: MIAP[rd+ci] 
+	00053: MIRP[nrp0,md,rd,1] 
+	00054: SRP2       
+	00055: IP         
+	00056: MDAP[rd]   
+	00057: DELTAP1    
+	00058: DELTAP2    
+	00059: MIRP[nrp0,md,rd,1] 
+	00060: IUP[y]     
+	00061: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                 X-Short On
+	  5:  YDual                               On
+	  6:        XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:                              X-Short On
+	  9:  YDual                               On
+	 10:        XDual         Y-Short         On
+	 11:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   136,  1466)  ->  Abs (   136,  1466)
+	  1: Rel (  1059,     0)  ->  Abs (  1195,  1466)
+	  2: Rel (     0,  -173)  ->  Abs (  1195,  1293)
+	  3: Rel ( -1059,     0)  ->  Abs (   136,  1293)
+	  4: Rel (    94,  -474)  ->  Abs (   230,   819)
+	  5: Rel (   871,     0)  ->  Abs (  1101,   819)
+	  6: Rel (     0,  -172)  ->  Abs (  1101,   647)
+	  7: Rel (  -871,     0)  ->  Abs (   230,   647)
+	  8: Rel (  -121,  -474)  ->  Abs (   109,   173)
+	  9: Rel (  1113,     0)  ->  Abs (  1222,   173)
+	 10: Rel (     0,  -173)  ->  Abs (  1222,     0)
+	 11: Rel ( -1113,     0)  ->  Abs (   109,     0)
+
+	Glyph 517: off = 0x00017294, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1501
+	  yMax:			1492
+
+	     0: Flags:		0x0206
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 518: off = 0x000172A4, len = 208
+	  numberOfContours:	1
+	  xMin:			164
+	  yMin:			0
+	  xMax:			1314
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	172
+	00000: PUSHW[2]              9   -64 
+	00005: NPUSHB      (14):    19    21    52     3     8     0     8     5    30     1 
+	                             2     5    32     3 
+	00021: PUSHW[1]            -18 
+	00024: PUSHB[5]             15    15     2    85     3 
+	00030: PUSHW[1]            -14 
+	00033: NPUSHB      (25):    13    13     2    85     3    16    12    12     2    85 
+	                             3    93   128     9     1     9     6    32     0    32 
+	                            16    16     2    85     0 
+	00060: PUSHW[1]            -10 
+	00063: PUSHB[5]             15    15     2    85     0 
+	00069: PUSHW[1]            -10 
+	00072: PUSHB[5]             13    13     2    85     0 
+	00078: PUSHW[1]             -6 
+	00081: PUSHB[5]             12    12     2    85     0 
+	00087: PUSHW[1]            -11 
+	00090: NPUSHB      (14):    12    13     6    85     0     8    11    11     6    85 
+	                            32     0     1     0 
+	00106: PUSHW[1]            -64 
+	00109: PUSHB[7]             19    21    52     0    93     8     9 
+	00117: PUSHW[1]            -32 
+	00120: NPUSHB      (19):    11    11     6    85    32     9     1    32     9    80 
+	                             9    96     9   112     9     4    59    89    24 
+	00141: CALL       
+	00142: DELTAP1    
+	00143: DELTAP2    
+	00144: CALL       
+	00145: SRP0       
+	00146: MIRP[srp0,nmd,rd,2] 
+	00147: CALL       
+	00148: DELTAP1    
+	00149: CALL       
+	00150: CALL       
+	00151: CALL       
+	00152: CALL       
+	00153: CALL       
+	00154: CALL       
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: SRP0       
+	00157: DELTAP1    
+	00158: MIRP[srp0,nmd,rd,2] 
+	00159: CALL       
+	00160: CALL       
+	00161: CALL       
+	00162: MIRP[nrp0,md,rd,1] 
+	00163: SVTCA[y-axis] 
+	00164: MIAP[rd+ci] 
+	00165: MIRP[nrp0,md,rd,1] 
+	00166: MIAP[rd+ci] 
+	00167: MIAP[rd+ci] 
+	00168: IUP[y]     
+	00169: IUP[x]     
+	00170: SVTCA[x-axis] 
+	00171: CALL       
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual                       X-Short On
+	  5:        XDual                         On
+	  6:  YDual                               On
+	  7:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   164,     0)  ->  Abs (   164,     0)
+	  1: Rel (     0,  1466)  ->  Abs (   164,  1466)
+	  2: Rel (  1150,     0)  ->  Abs (  1314,  1466)
+	  3: Rel (     0, -1466)  ->  Abs (  1314,     0)
+	  4: Rel (  -194,     0)  ->  Abs (  1120,     0)
+	  5: Rel (     0,  1293)  ->  Abs (  1120,  1293)
+	  6: Rel (  -762,     0)  ->  Abs (   358,  1293)
+	  7: Rel (     0, -1293)  ->  Abs (   358,     0)
+
+	Glyph 519: off = 0x00017374, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			158
+	  yMin:			0
+	  xMax:			1277
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	51
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 520: off = 0x00017384, len = 274
+	  numberOfContours:	1
+	  xMin:			148
+	  yMin:			0
+	  xMax:			1186
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	217
+	00000: NPUSHB      (60):   245     9     1    54     3    54     9     2    21     4 
+	                           149     4   165     4   214     2     4     7     2    11 
+	                             9    22     2    26     9    38     2    45     9    55 
+	                             2    58     3    63     9    73     3    10   105     3 
+	                           106     9   120     3   120     9   184     3   185     9 
+	                           246     2   249     9     8     3     4     3     2     4 
+	00062: PUSHW[1]            -16 
+	00065: PUSHB[5]             15    16     2    85     4 
+	00071: PUSHW[1]            -16 
+	00074: NPUSHB      (17):    12    12     2    85     4    30     8     9    20     8 
+	                             8     9     3     2     3     4     2 
+	00093: PUSHW[1]            -10 
+	00096: NPUSHB      (54):    15    16     2    85     2    18    12    12     6    85 
+	                             2    30    10     9    20    10    10     9    10     8 
+	                             9     3     4     4     2     4     5     2     1    30 
+	                            11     2     5    30     7     8     4     2     9     3 
+	                             4     8     8     7    10    11    11     7     0   227 
+	                            32     6     1     6 
+	00152: PUSHW[1]            305 
+	00155: PUSHB[4]             13     7   233    12 
+	00160: SRP0       
+	00161: MIRP[nrp0,nmd,rd,2] 
+	00162: SRP0       
+	00163: MIRP[srp0,nmd,rd,2] 
+	00164: DELTAP1    
+	00165: MIRP[nrp0,nmd,rd,0] 
+	00166: SRP0       
+	00167: ALIGNRP    
+	00168: SRP0       
+	00169: ALIGNRP    
+	00170: SRP0       
+	00171: ALIGNRP    
+	00172: SRP2       
+	00173: SLOOP      
+	00174: IP         
+	00175: SVTCA[y-axis] 
+	00176: MIAP[rd+ci] 
+	00177: MIRP[nrp0,md,rd,1] 
+	00178: MIAP[rd+ci] 
+	00179: MIRP[srp0,md,rd,1] 
+	00180: ALIGNRP    
+	00181: SRP0       
+	00182: ALIGNRP    
+	00183: SRP1       
+	00184: SRP2       
+	00185: SLOOP      
+	00186: IP         
+	00187: SDPVTL[1]  
+	00188: SFVTCA[x-axis] 
+	00189: MDAP[nrd]  
+	00190: CALL       
+	00191: CALL       
+	00192: CALL       
+	00193: SFVTL[=p1,p2] 
+	00194: RDTG       
+	00195: SRP0       
+	00196: MDRP[nrp0,nmd,rd,0] 
+	00197: SDPVTL[1]  
+	00198: SFVTCA[x-axis] 
+	00199: MDAP[nrd]  
+	00200: RTG        
+	00201: CALL       
+	00202: CALL       
+	00203: CALL       
+	00204: SFVTL[=p1,p2] 
+	00205: RDTG       
+	00206: SRP0       
+	00207: MDRP[nrp0,nmd,rd,0] 
+	00208: IUP[y]     
+	00209: IUP[x]     
+	00210: SVTCA[x-axis] 
+	00211: DELTAP1    
+	00212: DELTAP2    
+	00213: DELTAP3    
+	00214: SVTCA[y-axis] 
+	00215: DELTAP2    
+	00216: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:                                      On
+	  4:                                      On
+	  5:  YDual                               On
+	  6:        XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:  YDual XDual         Y-Short         On
+	  9:                                      On
+	 10:                                      On
+	 11:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1145,  1466)  ->  Abs (  1145,  1466)
+	  1: Rel (     0,  -173)  ->  Abs (  1145,  1293)
+	  2: Rel (  -787,     0)  ->  Abs (   358,  1293)
+	  3: Rel (   500,  -532)  ->  Abs (   858,   761)
+	  4: Rel (  -500,  -588)  ->  Abs (   358,   173)
+	  5: Rel (   828,     0)  ->  Abs (  1186,   173)
+	  6: Rel (     0,  -173)  ->  Abs (  1186,     0)
+	  7: Rel ( -1038,     0)  ->  Abs (   148,     0)
+	  8: Rel (     0,   202)  ->  Abs (   148,   202)
+	  9: Rel (   479,   559)  ->  Abs (   627,   761)
+	 10: Rel (  -479,   510)  ->  Abs (   148,  1271)
+	 11: Rel (     0,   195)  ->  Abs (   148,  1466)
+
+	Glyph 521: off = 0x00017496, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			48
+	  yMin:			0
+	  xMax:			1210
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	55
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 522: off = 0x000174A6, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			6
+	  yMin:			0
+	  xMax:			1350
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 523: off = 0x000174B6, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			9
+	  yMin:			0
+	  xMax:			1353
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	59
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 524: off = 0x000174C6, len = 350
+	  numberOfContours:	1
+	  xMin:			127
+	  yMin:			0
+	  xMax:			1584
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  22
+
+	  Length of Instructions:	266
+	00000: NPUSHB      (74):    64     4    79     9    73    15    64    20    64    24 
+	                            96    24   112    24   144    24   160    24     9     0 
+	                            24    32    24    48    24    64    24     4    21    32 
+	                            15    17    52    15    32    15    17    52    35     3 
+	                            35    10    52     3    52    10   162    10   228    10 
+	                           246    10     7     8     5    93    16    19    19     0 
+	                            18    12     2     6     2     0     2    18     8     7 
+	                            17    32     6    18 
+	00076: PUSHW[1]             -5 
+	00079: NPUSHB      (14):    12    13     6    85    18    18    22    11    32    13 
+	                             1    32    22    13 
+	00095: PUSHW[1]            -16 
+	00098: PUSHB[5]             15    15     2    85    13 
+	00104: PUSHW[1]            -22 
+	00107: PUSHB[5]             12    12     2    85    13 
+	00113: PUSHW[1]            -32 
+	00116: NPUSHB      (27):    12    13     6    85     0    13    32    13    48    13 
+	                            64    13     4    64    13    96    13   112    13   144 
+	                            13   160    13   255    13     6    13 
+	00145: PUSHW[1]            605 
+	00148: NPUSHB      (16):    24   128    24   192    24   208    24     3   160    24 
+	                           224    24   240    24     3    24 
+	00166: PUSHW[1]            -64 
+	00169: PUSHB[4]              9    17    52    22 
+	00174: PUSHW[1]            -12 
+	00177: NPUSHB      (32):    16    16     2    85    22     8    12    12     2    85 
+	                            22    16    15    15     6    85    22    16    13    13 
+	                             6    85    22    20    12    12     6    85    32    22 
+	                             1    22 
+	00211: PUSHW[2]            605    23 
+	00216: SRP0       
+	00217: MIRP[nrp0,nmd,rd,0] 
+	00218: DELTAP1    
+	00219: CALL       
+	00220: CALL       
+	00221: CALL       
+	00222: CALL       
+	00223: CALL       
+	00224: CALL       
+	00225: DELTAP1    
+	00226: DELTAP2    
+	00227: SRP0       
+	00228: MIRP[nrp0,nmd,rd,2] 
+	00229: DELTAP1    
+	00230: DELTAP2    
+	00231: CALL       
+	00232: CALL       
+	00233: CALL       
+	00234: SRP0       
+	00235: MIRP[nrp0,md,rd,1] 
+	00236: SRP0       
+	00237: MIRP[nrp0,md,rd,1] 
+	00238: SRP2       
+	00239: IP         
+	00240: MDAP[rd]   
+	00241: CALL       
+	00242: ALIGNRP    
+	00243: MIRP[srp0,md,rd,1] 
+	00244: ALIGNRP    
+	00245: SVTCA[y-axis] 
+	00246: MIAP[rd+ci] 
+	00247: MIAP[rd+ci] 
+	00248: MIAP[rd+ci] 
+	00249: MIAP[rd+ci] 
+	00250: SRP1       
+	00251: SRP2       
+	00252: IP         
+	00253: MDAP[rd]   
+	00254: ALIGNRP    
+	00255: MIRP[srp0,md,rd,1] 
+	00256: ALIGNRP    
+	00257: IUP[y]     
+	00258: IUP[x]     
+	00259: SVTCA[y-axis] 
+	00260: DELTAP1    
+	00261: CALL       
+	00262: CALL       
+	00263: SVTCA[x-axis] 
+	00264: DELTAP2    
+	00265: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:        XDual         Y-Short         Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual                         On
+	  7:  YDual XDual                 X-Short On
+	  8:        XDual                         On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:        XDual                         On
+	 12:        XDual                         On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual                         On
+	 15:        XDual                         Off
+	 16:                      Y-Short         On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:        XDual                         On
+	 20:  YDual               Y-Short         Off
+	 21:                                      Off
+	 22:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   127,  1466)  ->  Abs (   127,  1466)
+	  1: Rel (   194,     0)  ->  Abs (   321,  1466)
+	  2: Rel (     0,  -395)  ->  Abs (   321,  1071)
+	  3: Rel (     0,  -241)  ->  Abs (   321,   830)
+	  4: Rel (   214,  -193)  ->  Abs (   535,   637)
+	  5: Rel (   223,   -18)  ->  Abs (   758,   619)
+	  6: Rel (     0,   847)  ->  Abs (   758,  1466)
+	  7: Rel (   194,     0)  ->  Abs (   952,  1466)
+	  8: Rel (     0,  -847)  ->  Abs (   952,   619)
+	  9: Rel (   210,    13)  ->  Abs (  1162,   632)
+	 10: Rel (   227,   206)  ->  Abs (  1389,   838)
+	 11: Rel (     0,   257)  ->  Abs (  1389,  1095)
+	 12: Rel (     0,   371)  ->  Abs (  1389,  1466)
+	 13: Rel (   195,     0)  ->  Abs (  1584,  1466)
+	 14: Rel (     0,  -414)  ->  Abs (  1584,  1052)
+	 15: Rel (     0,  -589)  ->  Abs (  1584,   463)
+	 16: Rel (  -632,   -10)  ->  Abs (   952,   453)
+	 17: Rel (     0,  -453)  ->  Abs (   952,     0)
+	 18: Rel (  -194,     0)  ->  Abs (   758,     0)
+	 19: Rel (     0,   453)  ->  Abs (   758,   453)
+	 20: Rel (  -330,     6)  ->  Abs (   428,   459)
+	 21: Rel (  -301,   309)  ->  Abs (   127,   768)
+	 22: Rel (     0,   267)  ->  Abs (   127,  1035)
+
+	Glyph 525: off = 0x00017624, len = 478
+	  numberOfContours:	1
+	  xMin:			97
+	  yMin:			0
+	  xMax:			1435
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	375
+	00000: NPUSHB      (91):   159    17   159    27     2    88     1    89     4    88 
+	                             5    87    13    91    20    84    21    88    23    88 
+	                            24   122    18   117    26   134    24    11    92     5 
+	                            80     9   111     5   100     9   118     9     5    37 
+	                             9    75    18    75    20    70    24    69    26     5 
+	                            11     5     4     9    29     5    20     9    42     5 
+	                             5    12    21     2    23    59    26     3    22    30 
+	                             7     3    14    13     0     1    45    27    27    17 
+	                            45    13    30    15    16    29    28    28    16     8 
+	                            13 
+	00093: PUSHW[1]            570 
+	00096: PUSHB[4]             16    16    17     1 
+	00101: PUSHW[4]            570    27    28   -10 
+	00110: NPUSHB      (17):    11    11     2    85    28    17    10    11    11     2 
+	                            85    47    17    79    17     2    17 
+	00129: PUSHW[1]            632 
+	00132: NPUSHB      (13):    14    19    38    11    74    15    14    16    16    16 
+	                             2    85    14 
+	00147: PUSHW[1]            -10 
+	00150: NPUSHB      (11):    15    15     2    85    14    10    13    13     2    85 
+	                            14 
+	00163: PUSHW[1]            -20 
+	00166: NPUSHB      (11):    11    11     2    85    14    16    16    16     6    85 
+	                            14 
+	00179: PUSHW[1]             -6 
+	00182: PUSHB[5]             12    13     6    85    14 
+	00188: PUSHW[1]             -9 
+	00191: NPUSHB      (19):    11    11     6    85    16    19     1    14   106    95 
+	                            31     1    31    32    28    64    28     2    28 
+	00212: PUSHW[1]            632 
+	00215: PUSHB[6]             29    25    38     3    74    29 
+	00222: PUSHW[1]            -32 
+	00225: PUSHB[5]             16    16     2    85    29 
+	00231: PUSHW[1]            -22 
+	00234: PUSHB[5]             15    15     2    85    29 
+	00240: PUSHW[1]            -18 
+	00243: PUSHB[5]             13    13     2    85    29 
+	00249: PUSHW[1]            -10 
+	00252: PUSHB[5]             12    12     2    85    29 
+	00258: PUSHW[1]            -32 
+	00261: PUSHB[5]             16    16     6    85    29 
+	00267: PUSHW[1]            -20 
+	00270: PUSHB[5]             15    15     6    85    29 
+	00276: PUSHW[1]            -14 
+	00279: PUSHB[5]             13    13     6    85    29 
+	00285: PUSHW[1]             -8 
+	00288: NPUSHB      (15):    12    12     6    85    96    29     1     0    29    32 
+	                            29     2    29   172    30 
+	00305: SRP0       
+	00306: MIRP[srp0,nmd,rd,2] 
+	00307: DELTAP1    
+	00308: DELTAP2    
+	00309: CALL       
+	00310: CALL       
+	00311: CALL       
+	00312: CALL       
+	00313: CALL       
+	00314: CALL       
+	00315: CALL       
+	00316: CALL       
+	00317: MIRP[srp0,nmd,rd,0] 
+	00318: MIRP[nrp0,md,rd,1] 
+	00319: SRP0       
+	00320: MIRP[nrp0,md,rd,1] 
+	00321: DELTAP1    
+	00322: SRP0       
+	00323: DELTAP1    
+	00324: MIRP[srp0,nmd,rd,2] 
+	00325: DELTAP1    
+	00326: CALL       
+	00327: CALL       
+	00328: CALL       
+	00329: CALL       
+	00330: CALL       
+	00331: CALL       
+	00332: CALL       
+	00333: ALIGNRP    
+	00334: MIRP[srp0,nmd,rd,0] 
+	00335: MIRP[nrp0,md,rd,1] 
+	00336: SRP0       
+	00337: MIRP[nrp0,md,rd,1] 
+	00338: DELTAP1    
+	00339: CALL       
+	00340: SRP0       
+	00341: CALL       
+	00342: ALIGNRP    
+	00343: MIRP[nrp0,md,rd,1] 
+	00344: SRP0       
+	00345: ALIGNRP    
+	00346: SRP0       
+	00347: MIRP[nrp0,md,rd,1] 
+	00348: SVTCA[y-axis] 
+	00349: MIAP[rd+ci] 
+	00350: ALIGNRP    
+	00351: SRP0       
+	00352: ALIGNRP    
+	00353: SRP0       
+	00354: ALIGNRP    
+	00355: MIRP[srp0,md,rd,1] 
+	00356: MIRP[srp0,nmd,rd,0] 
+	00357: ALIGNRP    
+	00358: SRP0       
+	00359: MIRP[srp0,nmd,rd,0] 
+	00360: ALIGNRP    
+	00361: SRP0       
+	00362: ALIGNRP    
+	00363: MIAP[rd+ci] 
+	00364: MIRP[nrp0,md,rd,1] 
+	00365: IUP[y]     
+	00366: IUP[x]     
+	00367: SVTCA[x-axis] 
+	00368: DELTAP2    
+	00369: DELTAP1    
+	00370: DELTAP1    
+	00371: DELTAP1    
+	00372: DELTAP1    
+	00373: SVTCA[y-axis] 
+	00374: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:  YDual                               On
+	  2:  YDual               Y-Short         Off
+	  3:        XDual                         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:        XDual                 X-Short Off
+	  6:  YDual               Y-Short         Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:                      Y-Short         Off
+	 10:        XDual                 X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual                         Off
+	 13:                      Y-Short         On
+	 14:  YDual                               On
+	 15:        XDual         Y-Short         On
+	 16:  YDual                               On
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual               Y-Short         Off
+	 19:        XDual                         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:                              X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:                              X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual                         Off
+	 27:                      Y-Short         On
+	 28:        XDual         Y-Short         On
+	 29:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (    97,   173)  ->  Abs (    97,   173)
+	  1: Rel (   320,     0)  ->  Abs (   417,   173)
+	  2: Rel (  -304,   254)  ->  Abs (   113,   427)
+	  3: Rel (     0,   366)  ->  Abs (   113,   793)
+	  4: Rel (     0,   199)  ->  Abs (   113,   992)
+	  5: Rel (   160,   316)  ->  Abs (   273,  1308)
+	  6: Rel (   292,   183)  ->  Abs (   565,  1491)
+	  7: Rel (   205,     0)  ->  Abs (   770,  1491)
+	  8: Rel (   203,     0)  ->  Abs (   973,  1491)
+	  9: Rel (   271,  -168)  ->  Abs (  1244,  1323)
+	 10: Rel (   175,  -314)  ->  Abs (  1419,  1009)
+	 11: Rel (     0,  -216)  ->  Abs (  1419,   793)
+	 12: Rel (     0,  -366)  ->  Abs (  1419,   427)
+	 13: Rel (  -304,  -254)  ->  Abs (  1115,   173)
+	 14: Rel (   320,     0)  ->  Abs (  1435,   173)
+	 15: Rel (     0,  -173)  ->  Abs (  1435,     0)
+	 16: Rel (  -570,     0)  ->  Abs (   865,     0)
+	 17: Rel (     0,   162)  ->  Abs (   865,   162)
+	 18: Rel (   356,   166)  ->  Abs (  1221,   328)
+	 19: Rel (     0,   435)  ->  Abs (  1221,   763)
+	 20: Rel (     0,   245)  ->  Abs (  1221,  1008)
+	 21: Rel (  -251,   317)  ->  Abs (   970,  1325)
+	 22: Rel (  -201,     0)  ->  Abs (   769,  1325)
+	 23: Rel (  -207,     0)  ->  Abs (   562,  1325)
+	 24: Rel (  -248,  -319)  ->  Abs (   314,  1006)
+	 25: Rel (     0,  -233)  ->  Abs (   314,   773)
+	 26: Rel (     0,  -441)  ->  Abs (   314,   332)
+	 27: Rel (   354,  -170)  ->  Abs (   668,   162)
+	 28: Rel (     0,  -162)  ->  Abs (   668,     0)
+	 29: Rel (  -571,     0)  ->  Abs (    97,     0)
+
+	Glyph 526: off = 0x00017802, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			4
+	  yMin:			0
+	  xMax:			565
+	  yMax:			1761
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	-57
+		Y WOffset:	286
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              2     1     1     2     2    11 
+	00007: PUSHW[2]            545    41 
+	00012: SVTCA[y-axis] 
+	00013: CALL       
+	00014: SVTCA[x-axis] 
+	00015: PUSHB[2]              6     2 
+	00018: RS         
+	00019: EQ         
+	00020: IF         
+	00021: PUSHB[6]              0     5    10     1     2    65 
+	00028: CALL       
+	00029: ELSE       
+	00030: PUSHB[5]              8     2     0    72    43 
+	00036: CALL       
+	00037: EIF        
+	00038: SHC[rp1,zp0] 
+	00039: SHC[rp1,zp0] 
+
+	Glyph 527: off = 0x00017844, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			6
+	  yMin:			0
+	  xMax:			1350
+	  yMax:			1761
+
+	     0: Flags:		0x0226
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	336
+		Y WOffset:	286
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (11):     2     1    17    11     0    72    43     1     2     2 
+	                            20 
+	00013: PUSHW[3]            545    41   356 
+	00020: SCANCTRL   
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: SHC[rp1,zp0] 
+	00026: SHC[rp1,zp0] 
+
+	Glyph 528: off = 0x0001787A, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			72
+	  yMin:			-24
+	  xMax:			1107
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	302
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	244
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     2   224    33   240    33     2    33    21     0    72 
+	                            43     2     1    33 
+	00016: PUSHW[2]            546    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 529: off = 0x000178B0, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			98
+	  yMin:			-24
+	  xMax:			867
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	304
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	144
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    37    39    28     0    65     1     1    37 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 530: off = 0x000178E0, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			139
+	  yMin:			-407
+	  xMax:			1002
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	536
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	244
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     1    20    16     0    72    43     1     1    20 
+	00011: PUSHW[2]            546    41 
+	00016: SVTCA[y-axis] 
+	00017: CALL       
+	00018: SVTCA[x-axis] 
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+
+	Glyph 531: off = 0x00017910, len = 84
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			0
+	  xMax:			468
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	538
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	141
+		X BOffset:	-123
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1     1     7 
+	00005: PUSHW[2]            546    41 
+	00010: SVTCA[y-axis] 
+	00011: CALL       
+	00012: SVTCA[x-axis] 
+	00013: PUSHB[2]              6     2 
+	00016: RS         
+	00017: EQ         
+	00018: IF         
+	00019: PUSHB[6]             21     7     7     1     2    65 
+	00026: CALL       
+	00027: ELSE       
+	00028: PUSHW[2]              7   -64 
+	00033: PUSHB[4]             23    25    52     7 
+	00038: PUSHW[1]            -64 
+	00041: NPUSHB      (11):    34    37    52    47     7     1     7     1    90    72 
+	                            43 
+	00054: CALL       
+	00055: DELTAP1    
+	00056: CALL       
+	00057: CALL       
+	00058: EIF        
+	00059: SHC[rp1,zp0] 
+
+	Glyph 532: off = 0x00017964, len = 40
+	  numberOfContours:	-1  (Composite)
+	  xMin:			136
+	  yMin:			-24
+	  xMax:			986
+	  yMax:			1507
+
+	     0: Flags:		0x0226
+		Glyf Index:	547
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	496
+		X WOffset:	220
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              1     2     3     3    23 
+	00006: PUSHW[2]            546    41 
+	00011: SVTCA[y-axis] 
+	00012: CALL       
+
+	Glyph 533: off = 0x0001798C, len = 394
+	  numberOfContours:	2
+	  xMin:			140
+	  yMin:			-407
+	  xMax:			1085
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  20
+	  1:  44
+
+	  Length of Instructions:	262
+	00000: NPUSHB      (89):    56    20    72    20    87    15   103    15   106    25 
+	                           106    29   101    38   121    11   122    25   122    29 
+	                           137    11   139    25   151    13    13    40    12     1 
+	                            72    41    89    37   169     8   172    13     4    13 
+	                            16    10    14    52   187    13   203    13     2     0 
+	                             7    36   104    13     1    13    13    21    28    16 
+	                            44   192    44     2    44    27    28     7    36    28 
+	                            19     7     1    19    11     2    14    13    21    21 
+	                             1    24    36    63    10    79    10     2    10 
+	00091: PUSHW[1]            596 
+	00094: NPUSHB       (9):    39    36    46    20    11    11     2    85    16 
+	00105: PUSHW[1]            -16 
+	00108: PUSHB[5]             11    13     6    85    16 
+	00114: PUSHW[1]            -64 
+	00117: NPUSHB      (20):    36    37    52    48    16     1     0    16    16    16 
+	                            32    16     3    16    49    46    31     1    37     2 
+	00139: PUSHW[1]            -10 
+	00142: NPUSHB      (17):    16    16     2    85     2     6    12    12     2    85 
+	                             2     6    11    11     2    85     2 
+	00161: PUSHW[1]            -14 
+	00164: NPUSHB      (17):    15    15     6    85     2     4    12    12     6    85 
+	                             2     6    11    11     6    85     2 
+	00183: PUSHW[1]            -64 
+	00186: NPUSHB      (18):    51    54    52   240     2     1     0     2    32     2 
+	                           208     2   224     2     4     2    78    45 
+	00206: SRP0       
+	00207: MIRP[srp0,nmd,rd,2] 
+	00208: DELTAP1    
+	00209: DELTAP2    
+	00210: CALL       
+	00211: CALL       
+	00212: CALL       
+	00213: CALL       
+	00214: CALL       
+	00215: CALL       
+	00216: CALL       
+	00217: MIRP[srp0,md,rd,1] 
+	00218: ALIGNRP    
+	00219: SRP0       
+	00220: MIRP[srp0,nmd,rd,2] 
+	00221: DELTAP1    
+	00222: DELTAP1    
+	00223: CALL       
+	00224: CALL       
+	00225: CALL       
+	00226: MIRP[nrp0,md,rd,1] 
+	00227: MIRP[srp0,nmd,rd,0] 
+	00228: DELTAP1    
+	00229: MIRP[nrp0,md,rd,1] 
+	00230: SRP1       
+	00231: IP         
+	00232: MDAP[rd]   
+	00233: IP         
+	00234: SVTCA[y-axis] 
+	00235: MIAP[rd+ci] 
+	00236: MIAP[rd+ci] 
+	00237: MIAP[rd+ci] 
+	00238: SRP0       
+	00239: MIRP[nrp0,md,rd,1] 
+	00240: SRP0       
+	00241: MIRP[nrp0,md,rd,1] 
+	00242: MDAP[rd]   
+	00243: DELTAP1    
+	00244: MIRP[nrp0,md,rd,1] 
+	00245: RTHG       
+	00246: IP         
+	00247: MDAP[rd]   
+	00248: DELTAP1    
+	00249: SRP1       
+	00250: SRP2       
+	00251: IP         
+	00252: SVTCA[x-axis] 
+	00253: DELTAP1    
+	00254: CALL       
+	00255: IUP[y]     
+	00256: IUP[x]     
+	00257: SVTCA[x-axis] 
+	00258: DELTAP1    
+	00259: SVTCA[y-axis] 
+	00260: DELTAP2    
+	00261: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short Off
+	 13:                      Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                              X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:        XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:                      Y-Short X-Short Off
+	 30:                      Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual                         On
+	 33:        XDual         Y-Short         Off
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   319,   135)  ->  Abs (   319,   135)
+	  1: Rel (     0,  -542)  ->  Abs (   319,  -407)
+	  2: Rel (  -179,     0)  ->  Abs (   140,  -407)
+	  3: Rel (     0,  1413)  ->  Abs (   140,  1006)
+	  4: Rel (     0,   169)  ->  Abs (   140,  1175)
+	  5: Rel (    91,   191)  ->  Abs (   231,  1366)
+	  6: Rel (   222,   125)  ->  Abs (   453,  1491)
+	  7: Rel (   136,     0)  ->  Abs (   589,  1491)
+	  8: Rel (   201,     0)  ->  Abs (   790,  1491)
+	  9: Rel (   207,  -231)  ->  Abs (   997,  1260)
+	 10: Rel (     0,  -137)  ->  Abs (   997,  1123)
+	 11: Rel (     0,  -134)  ->  Abs (   997,   989)
+	 12: Rel (  -167,  -164)  ->  Abs (   830,   825)
+	 13: Rel (  -108,   -19)  ->  Abs (   722,   806)
+	 14: Rel (   174,   -17)  ->  Abs (   896,   789)
+	 15: Rel (   189,  -216)  ->  Abs (  1085,   573)
+	 16: Rel (     0,  -158)  ->  Abs (  1085,   415)
+	 17: Rel (     0,  -170)  ->  Abs (  1085,   245)
+	 18: Rel (  -223,  -269)  ->  Abs (   862,   -24)
+	 19: Rel (  -211,     0)  ->  Abs (   651,   -24)
+	 20: Rel (  -216,     0)  ->  Abs (   435,   -24)
+	 21: Rel (    43,   888)  ->  Abs (   478,   864)
+	 22: Rel (   184,     0)  ->  Abs (   662,   864)
+	 23: Rel (   168,   128)  ->  Abs (   830,   992)
+	 24: Rel (     0,   121)  ->  Abs (   830,  1113)
+	 25: Rel (     0,    98)  ->  Abs (   830,  1211)
+	 26: Rel (  -143,   132)  ->  Abs (   687,  1343)
+	 27: Rel (  -107,     0)  ->  Abs (   580,  1343)
+	 28: Rel (   -93,     0)  ->  Abs (   487,  1343)
+	 29: Rel (  -137,   -98)  ->  Abs (   350,  1245)
+	 30: Rel (   -31,  -120)  ->  Abs (   319,  1125)
+	 31: Rel (     0,  -150)  ->  Abs (   319,   975)
+	 32: Rel (     0,  -403)  ->  Abs (   319,   572)
+	 33: Rel (     0,  -172)  ->  Abs (   319,   400)
+	 34: Rel (    48,  -162)  ->  Abs (   367,   238)
+	 35: Rel (   158,  -130)  ->  Abs (   525,   108)
+	 36: Rel (   103,     0)  ->  Abs (   628,   108)
+	 37: Rel (   125,     0)  ->  Abs (   753,   108)
+	 38: Rel (   145,   171)  ->  Abs (   898,   279)
+	 39: Rel (     0,   126)  ->  Abs (   898,   405)
+	 40: Rel (     0,   104)  ->  Abs (   898,   509)
+	 41: Rel (  -107,   165)  ->  Abs (   791,   674)
+	 42: Rel (  -157,    59)  ->  Abs (   634,   733)
+	 43: Rel (  -130,     0)  ->  Abs (   504,   733)
+	 44: Rel (   -26,     0)  ->  Abs (   478,   733)
+
+	Glyph 534: off = 0x00017B16, len = 328
+	  numberOfContours:	1
+	  xMin:			25
+	  yMin:			-407
+	  xMax:			999
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  8
+
+	  Length of Instructions:	282
+	00000: PUSHB[4]            143    10     1     2 
+	00005: PUSHW[1]            -18 
+	00008: NPUSHB      (11):    15    17     2    85     2    10    13    13     2    85 
+	                             2 
+	00021: PUSHW[1]            -20 
+	00024: NPUSHB      (15):     9    11     2    85   240     2     1     0     2     1 
+	                             2     1     2     3     1 
+	00041: PUSHW[1]             -4 
+	00044: NPUSHB      (68):    14    17     6    85     1    37     0     8    20     0 
+	                             0     8     2     3     2     1     3     4    15    17 
+	                             6    85     3    37     4     5    20     4     4     5 
+	                             2     1     5     7    14     4     3     3     1     1 
+	                             0     6     5     8    10     3     4     6     1     0 
+	                             7     4   255     6     0   255     7     5     6    37 
+	                             8     7    18    17    17     2    85     7 
+	00114: PUSHW[1]            -16 
+	00117: NPUSHB      (17):    16    16     2    85     7    10    13    13     2    85 
+	                             7    10     9     9     2    85     7 
+	00136: PUSHW[1]             -2 
+	00139: PUSHB[5]             16    16     6    85     7 
+	00145: PUSHW[1]             -8 
+	00148: NPUSHB      (38):    12    12     6    85     0     7   143     7   224     7 
+	                           240     7     4    64     7     1   176     7     1     7 
+	                             7    10     9     0    10    48    10    96    10   128 
+	                            10   144    10     5    64    10     1    10 
+	00188: PUSHW[1]            -64 
+	00191: PUSHB[3]             21    26    52 
+	00195: CALL       
+	00196: DELTAP2    
+	00197: DELTAP1    
+	00198: SRP1       
+	00199: SRP2       
+	00200: IP         
+	00201: MDAP[rd]   
+	00202: DELTAP3    
+	00203: DELTAP2    
+	00204: DELTAP1    
+	00205: CALL       
+	00206: CALL       
+	00207: CALL       
+	00208: CALL       
+	00209: CALL       
+	00210: CALL       
+	00211: ALIGNRP    
+	00212: MIRP[srp0,md,rd,1] 
+	00213: ALIGNRP    
+	00214: RTHG       
+	00215: SRP0       
+	00216: MIRP[nrp0,nmd,rd,0] 
+	00217: SRP0       
+	00218: MIRP[nrp0,nmd,rd,0] 
+	00219: SRP1       
+	00220: SRP2       
+	00221: IP         
+	00222: SRP1       
+	00223: SRP2       
+	00224: IP         
+	00225: PUSHB[2]              6     2 
+	00228: RS         
+	00229: EQ         
+	00230: IF         
+	00231: PUSHB[3]              2     6     7 
+	00235: SRP1       
+	00236: SRP2       
+	00237: IP         
+	00238: EIF        
+	00239: SVTCA[y-axis] 
+	00240: RTG        
+	00241: MIAP[rd+ci] 
+	00242: ALIGNRP    
+	00243: MIAP[rd+ci] 
+	00244: ALIGNRP    
+	00245: SRP0       
+	00246: ALIGNRP    
+	00247: SRP0       
+	00248: ALIGNRP    
+	00249: MIAP[rd+ci] 
+	00250: SRP1       
+	00251: SRP2       
+	00252: IP         
+	00253: SDPVTL[1]  
+	00254: SFVTCA[x-axis] 
+	00255: MDAP[nrd]  
+	00256: CALL       
+	00257: CALL       
+	00258: SFVTL[=p1,p2] 
+	00259: RDTG       
+	00260: SRP0       
+	00261: MDRP[nrp0,nmd,rd,0] 
+	00262: SDPVTL[1]  
+	00263: SFVTCA[x-axis] 
+	00264: MDAP[nrd]  
+	00265: RTG        
+	00266: CALL       
+	00267: CALL       
+	00268: SFVTL[=p1,p2] 
+	00269: RDTG       
+	00270: SRP0       
+	00271: MDRP[nrp0,nmd,rd,0] 
+	00272: IUP[y]     
+	00273: IUP[x]     
+	00274: SVTCA[y-axis] 
+	00275: DELTAP3    
+	00276: DELTAP2    
+	00277: CALL       
+	00278: CALL       
+	00279: CALL       
+	00280: SVTCA[x-axis] 
+	00281: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:                                      On
+	  3:                                      On
+	  4:  YDual XDual                 X-Short On
+	  5:                                      On
+	  6:        XDual                         On
+	  7:  YDual                       X-Short On
+	  8:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (    25,  1062)  ->  Abs (    25,  1062)
+	  1: Rel (   189,     0)  ->  Abs (   214,  1062)
+	  2: Rel (   297,  -837)  ->  Abs (   511,   225)
+	  3: Rel (   304,   837)  ->  Abs (   815,  1062)
+	  4: Rel (   184,     0)  ->  Abs (   999,  1062)
+	  5: Rel (  -397, -1062)  ->  Abs (   602,     0)
+	  6: Rel (     0,  -407)  ->  Abs (   602,  -407)
+	  7: Rel (  -183,     0)  ->  Abs (   419,  -407)
+	  8: Rel (     0,   407)  ->  Abs (   419,     0)
+
+	Glyph 535: off = 0x00017C5E, len = 340
+	  numberOfContours:	1
+	  xMin:			72
+	  yMin:			-431
+	  xMax:			886
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  31
+
+	  Length of Instructions:	236
+	00000: NPUSHB      (32):     8    25    24    25   108     4   119     6   134     6 
+	                           166     4   169    24     7    26     3    67     3    84 
+	                             3     3    55     3   122    29   139    29     3     2 
+	                            30    17 
+	00034: PUSHW[1]            618 
+	00037: NPUSHB      (19):    16    15     8    28    23    10    30    72     0     0 
+	                            30     1    16    16    12   160     0     1     0 
+	00058: PUSHW[1]            -64 
+	00061: PUSHB[7]              9    10    52     0     0    27    19 
+	00069: PUSHW[1]            560 
+	00072: NPUSHB      (19):    12    24    16    16     2    85    12    24    13    14 
+	                             2    85    12    25    16    16     6    85    12 
+	00093: PUSHW[1]            -12 
+	00096: PUSHB[5]             15    15     6    85    12 
+	00102: PUSHW[1]            -22 
+	00105: NPUSHB      (18):    13    13     6    85    12    10    12    12     6    85 
+	                            12    12    31     1   111     1     2     1 
+	00125: PUSHW[1]            -64 
+	00128: NPUSHB      (58):     9    11    52     1     5    36    27    18    11    17 
+	                             2    85    27    18    16    16     6    85    27     2 
+	                            15    15     6    85    27    12    13    13     6    85 
+	                            27    32    12    12     6    85    27    12    11    11 
+	                             6    85    31    27    63    27    79    27    95    27 
+	                           127    27   143    27     6    27    40    32 
+	00188: SRP0       
+	00189: MIRP[srp0,nmd,rd,2] 
+	00190: DELTAP1    
+	00191: CALL       
+	00192: CALL       
+	00193: CALL       
+	00194: CALL       
+	00195: CALL       
+	00196: CALL       
+	00197: MIRP[nrp0,md,rd,1] 
+	00198: MDAP[rd]   
+	00199: CALL       
+	00200: DELTAP1    
+	00201: SHP[rp1,zp0] 
+	00202: MDAP[rd]   
+	00203: CALL       
+	00204: CALL       
+	00205: CALL       
+	00206: CALL       
+	00207: CALL       
+	00208: CALL       
+	00209: MIRP[nrp0,md,rd,1] 
+	00210: SRP1       
+	00211: SHP[rp1,zp0] 
+	00212: MDAP[rd]   
+	00213: CALL       
+	00214: DELTAP1    
+	00215: SRP1       
+	00216: SHP[rp1,zp0] 
+	00217: MDAP[rd]   
+	00218: SRP1       
+	00219: SHP[rp1,zp0] 
+	00220: SVTCA[y-axis] 
+	00221: MIAP[rd+ci] 
+	00222: MIRP[nrp0,md,rd,1] 
+	00223: MIAP[rd+ci] 
+	00224: MIRP[nrp0,md,rd,1] 
+	00225: MIAP[rd+ci] 
+	00226: MIRP[nrp0,md,rd,1] 
+	00227: SRP1       
+	00228: SHP[rp1,zp0] 
+	00229: IUP[y]     
+	00230: IUP[x]     
+	00231: SVTCA[x-axis] 
+	00232: DELTAP1    
+	00233: SVTCA[y-axis] 
+	00234: DELTAP2    
+	00235: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short         On
+	  3:                      Y-Short         Off
+	  4:                                      Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual Rep-  2 Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual       Rep-  2 Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:                                      Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   234,  1466)  ->  Abs (   234,  1466)
+	  1: Rel (   652,     0)  ->  Abs (   886,  1466)
+	  2: Rel (     0,  -122)  ->  Abs (   886,  1344)
+	  3: Rel (  -269,  -166)  ->  Abs (   617,  1178)
+	  4: Rel (  -365,  -537)  ->  Abs (   252,   641)
+	  5: Rel (     0,  -228)  ->  Abs (   252,   413)
+	  6: Rel (     0,  -120)  ->  Abs (   252,   293)
+	  7: Rel (   108,  -116)  ->  Abs (   360,   177)
+	  8: Rel (   121,   -10)  ->  Abs (   481,   167)
+	  9: Rel (   156,   -14)  ->  Abs (   637,   153)
+	 10: Rel (   131,   -41)  ->  Abs (   768,   112)
+	 11: Rel (    98,  -127)  ->  Abs (   866,   -15)
+	 12: Rel (     0,   -89)  ->  Abs (   866,  -104)
+	 13: Rel (     0,   -97)  ->  Abs (   866,  -201)
+	 14: Rel (  -120,  -164)  ->  Abs (   746,  -365)
+	 15: Rel (  -157,   -66)  ->  Abs (   589,  -431)
+	 16: Rel (  -113,     0)  ->  Abs (   476,  -431)
+	 17: Rel (    49,   166)  ->  Abs (   525,  -265)
+	 18: Rel (   168,    19)  ->  Abs (   693,  -246)
+	 19: Rel (     0,   122)  ->  Abs (   693,  -124)
+	 20: Rel (     0,    41)  ->  Abs (   693,   -83)
+	 21: Rel (   -54,    62)  ->  Abs (   639,   -21)
+	 22: Rel (   -78,    18)  ->  Abs (   561,    -3)
+	 23: Rel (  -109,     4)  ->  Abs (   452,     1)
+	 24: Rel (  -151,     4)  ->  Abs (   301,     5)
+	 25: Rel (  -153,   113)  ->  Abs (   148,   118)
+	 26: Rel (   -76,   186)  ->  Abs (    72,   304)
+	 27: Rel (     0,   117)  ->  Abs (    72,   421)
+	 28: Rel (     0,   237)  ->  Abs (    72,   658)
+	 29: Rel (   342,   503)  ->  Abs (   414,  1161)
+	 30: Rel (   236,   159)  ->  Abs (   650,  1320)
+	 31: Rel (  -416,     0)  ->  Abs (   234,  1320)
+
+	Glyph 536: off = 0x00017DB2, len = 360
+	  numberOfContours:	1
+	  xMin:			139
+	  yMin:			-407
+	  xMax:			1002
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	297
+	00000: NPUSHB      (87):   114    17   112    21   139    14   130    16   130    17 
+	                           155    14   172    14   169    17   160    21   187    14 
+	                           176    21   192    21   212    17   208    21   224    21 
+	                           255    21    16   240    21     1     6     7     9    17 
+	                            22     7    37     4    53     4    70     4   217    16 
+	                           224     3   239    17     9    11    15     0    10    15 
+	                            28     5     7     2     1     6    17    15    19    11 
+	                            12    10    12    37    21    64    11    11     2    85 
+	                             9    24    16    16     2    85     9 
+	00089: PUSHW[1]            -22 
+	00092: NPUSHB      (17):    13    13     2    85     9     6    12    12     2    85 
+	                             9    28    11    11     2    85     9 
+	00111: PUSHW[1]            -12 
+	00114: NPUSHB      (11):    11    11     6    85     9    20    16    16     6    85 
+	                             9 
+	00127: PUSHW[1]             -7 
+	00130: NPUSHB      (11):    13    13     6    85     9    10    15    15     6    85 
+	                             9 
+	00143: PUSHW[1]            -10 
+	00146: NPUSHB      (26):    12    12     6    85   112     9   160     9   176     9 
+	                           192     9   255     9     5     9    78    21     3     2 
+	                           154    18    19    37     1     0 
+	00174: PUSHW[1]             -8 
+	00177: NPUSHB      (17):    16    16     2    85     0     6    11    12     2    85 
+	                             0     4    11    11     6    85     0 
+	00196: PUSHW[1]             -6 
+	00199: NPUSHB      (17):    15    15     6    85     0     2    12    12     6    85 
+	                             0     4    13    13     6    85     0 
+	00218: PUSHW[1]            -64 
+	00221: NPUSHB      (21):    51    54    52   240     0     1     0     0    32     0 
+	                           208     0   224     0     4     0    78    20    17    12 
+	                            19 
+	00244: SRP1       
+	00245: SRP2       
+	00246: IP         
+	00247: SRP0       
+	00248: MIRP[srp0,nmd,rd,2] 
+	00249: DELTAP1    
+	00250: DELTAP2    
+	00251: CALL       
+	00252: CALL       
+	00253: CALL       
+	00254: CALL       
+	00255: CALL       
+	00256: CALL       
+	00257: CALL       
+	00258: ALIGNRP    
+	00259: MIRP[srp0,md,rd,1] 
+	00260: ALIGNRP    
+	00261: MIRP[srp0,nmd,rd,0] 
+	00262: ALIGNRP    
+	00263: SRP0       
+	00264: MIRP[srp0,nmd,rd,2] 
+	00265: DELTAP1    
+	00266: CALL       
+	00267: CALL       
+	00268: CALL       
+	00269: CALL       
+	00270: CALL       
+	00271: CALL       
+	00272: CALL       
+	00273: CALL       
+	00274: CALL       
+	00275: CALL       
+	00276: MIRP[nrp0,md,rd,1] 
+	00277: ALIGNRP    
+	00278: SRP0       
+	00279: ALIGNRP    
+	00280: SVTCA[y-axis] 
+	00281: SRP1       
+	00282: SRP2       
+	00283: IP         
+	00284: MIAP[rd+ci] 
+	00285: ALIGNRP    
+	00286: MIAP[rd+ci] 
+	00287: MIRP[nrp0,md,rd,1] 
+	00288: MIAP[rd+ci] 
+	00289: MIAP[rd+ci] 
+	00290: IUP[y]     
+	00291: IUP[x]     
+	00292: SVTCA[y-axis] 
+	00293: DELTAP1    
+	00294: SVTCA[x-axis] 
+	00295: DELTAP2    
+	00296: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+	 12:        XDual                         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   139,     0)  ->  Abs (   139,     0)
+	  1: Rel (     0,  1062)  ->  Abs (   139,  1062)
+	  2: Rel (   162,     0)  ->  Abs (   301,  1062)
+	  3: Rel (     0,  -151)  ->  Abs (   301,   911)
+	  4: Rel (   117,   175)  ->  Abs (   418,  1086)
+	  5: Rel (   221,     0)  ->  Abs (   639,  1086)
+	  6: Rel (   130,     0)  ->  Abs (   769,  1086)
+	  7: Rel (   176,  -112)  ->  Abs (   945,   974)
+	  8: Rel (    57,  -165)  ->  Abs (  1002,   809)
+	  9: Rel (     0,  -156)  ->  Abs (  1002,   653)
+	 10: Rel (     0, -1060)  ->  Abs (  1002,  -407)
+	 11: Rel (  -180,     0)  ->  Abs (   822,  -407)
+	 12: Rel (     0,  1053)  ->  Abs (   822,   646)
+	 13: Rel (     0,   148)  ->  Abs (   822,   794)
+	 14: Rel (  -104,   136)  ->  Abs (   718,   930)
+	 15: Rel (  -119,     0)  ->  Abs (   599,   930)
+	 16: Rel (  -117,     0)  ->  Abs (   482,   930)
+	 17: Rel (  -163,  -150)  ->  Abs (   319,   780)
+	 18: Rel (     0,  -200)  ->  Abs (   319,   580)
+	 19: Rel (     0,  -580)  ->  Abs (   319,     0)
+
+	Glyph 537: off = 0x00017F1A, len = 388
+	  numberOfContours:	3
+	  xMin:			92
+	  yMin:			-24
+	  xMax:			1048
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  13
+	  2:  18
+
+	  Length of Instructions:	308
+	00000: NPUSHB      (97):    87     1    87     3    88     5    88     7   103     1 
+	                           103     3     6    36    16    41    18    58    11    53 
+	                            13    53    16    58    18    70     1    73     3    73 
+	                             5    70     7    73    11    70    13    67    16    74 
+	                            18   102     5   105     7   118    16   121    18   134 
+	                            16   137    18   181    16   186    18    22     9    28 
+	                           127    15   143    15     2    15    15     2    17    28 
+	                             6    11    12    28     2     3     9    14    36     4 
+	                             8    15    36     0    20    64    13    13     2    85 
+	                            20    64    11    11     2    85     4 
+	00099: PUSHW[1]            -22 
+	00102: NPUSHB      (17):    15    15     2    85     4    24    13    13     2    85 
+	                             4    16    11    11     2    85     4 
+	00121: PUSHW[1]            -16 
+	00124: PUSHB[5]             11    11     6    85     4 
+	00130: PUSHW[1]            -16 
+	00133: PUSHB[5]             13    13     6    85     4 
+	00139: PUSHW[1]            -16 
+	00142: PUSHB[5]             15    15     6    85     4 
+	00148: PUSHW[1]            -16 
+	00151: PUSHB[5]             12    12     6    85     4 
+	00157: PUSHW[1]            -64 
+	00160: NPUSHB      (21):    36    37    52    48     4     1     0     4    16     4 
+	                            32     4     3     4    49     4    49   223    20     1 
+	                            20 
+	00183: PUSHW[1]            -64 
+	00186: NPUSHB      (68):    30    35    52    48    20     1    20     0    12    14 
+	                            15     2    85     0    18    13    13     2    85     0 
+	                            12    12    12     2    85     0    28    11    11     2 
+	                            85     0    14    11    11     6    85     0    14    13 
+	                            13     6    85     0    12    16    16     6    85     0 
+	                            22    12    12     6    85     0    64    36    37    52 
+	                            31     0    63     0     2     0    49    19 
+	00256: SRP0       
+	00257: MIRP[nrp0,nmd,rd,0] 
+	00258: DELTAP1    
+	00259: CALL       
+	00260: CALL       
+	00261: CALL       
+	00262: CALL       
+	00263: CALL       
+	00264: CALL       
+	00265: CALL       
+	00266: CALL       
+	00267: CALL       
+	00268: SRP0       
+	00269: DELTAP2    
+	00270: CALL       
+	00271: DELTAP1    
+	00272: MIRP[nrp0,nmd,rd,2] 
+	00273: MIRP[srp0,nmd,rd,2] 
+	00274: DELTAP1    
+	00275: DELTAP1    
+	00276: CALL       
+	00277: CALL       
+	00278: CALL       
+	00279: CALL       
+	00280: CALL       
+	00281: CALL       
+	00282: CALL       
+	00283: CALL       
+	00284: CALL       
+	00285: CALL       
+	00286: SRP0       
+	00287: MIRP[srp0,md,rd,1] 
+	00288: ALIGNRP    
+	00289: SRP0       
+	00290: MIRP[srp0,md,rd,1] 
+	00291: ALIGNRP    
+	00292: SVTCA[y-axis] 
+	00293: MIAP[rd+ci] 
+	00294: MIRP[nrp0,md,rd,1] 
+	00295: MIAP[rd+ci] 
+	00296: MIRP[nrp0,md,rd,1] 
+	00297: SRP2       
+	00298: IP         
+	00299: MDAP[rd]   
+	00300: DELTAP1    
+	00301: MIRP[nrp0,md,rd,1] 
+	00302: IUP[y]     
+	00303: IUP[x]     
+	00304: SVTCA[x-axis] 
+	00305: DELTAP1    
+	00306: SVTCA[y-axis] 
+	00307: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         Off
+	  2:  YDual                               On
+	  3:  YDual                               Off
+	  4:        XDual                         On
+	  5:        XDual                         Off
+	  6:  YDual                               On
+	  7:  YDual                               Off
+	  8:        XDual                 X-Short On
+	  9:  YDual                               On
+	 10:                              X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                               Off
+	 14:                                      On
+	 15:  YDual                               On
+	 16:        XDual                 X-Short Off
+	 17:  YDual                               On
+	 18:  YDual                               Off
+
+	Coordinates
+	-----------
+	  0: Rel (    92,   733)  ->  Abs (    92,   733)
+	  1: Rel (     0,   758)  ->  Abs (    92,  1491)
+	  2: Rel (   478,     0)  ->  Abs (   570,  1491)
+	  3: Rel (   478,     0)  ->  Abs (  1048,  1491)
+	  4: Rel (     0,  -758)  ->  Abs (  1048,   733)
+	  5: Rel (     0,  -757)  ->  Abs (  1048,   -24)
+	  6: Rel (  -478,     0)  ->  Abs (   570,   -24)
+	  7: Rel (  -478,     0)  ->  Abs (    92,   -24)
+	  8: Rel (   186,   830)  ->  Abs (   278,   806)
+	  9: Rel (   584,     0)  ->  Abs (   862,   806)
+	 10: Rel (   -10,   313)  ->  Abs (   852,  1119)
+	 11: Rel (  -160,   224)  ->  Abs (   692,  1343)
+	 12: Rel (  -124,     0)  ->  Abs (   568,  1343)
+	 13: Rel (  -279,     0)  ->  Abs (   289,  1343)
+	 14: Rel (   573,  -682)  ->  Abs (   862,   661)
+	 15: Rel (  -584,     0)  ->  Abs (   278,   661)
+	 16: Rel (    11,  -537)  ->  Abs (   289,   124)
+	 17: Rel (   281,     0)  ->  Abs (   570,   124)
+	 18: Rel (   282,     0)  ->  Abs (   852,   124)
+
+	Glyph 538: off = 0x0001809E, len = 100
+	  numberOfContours:	1
+	  xMin:			137
+	  yMin:			0
+	  xMax:			317
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	76
+	00000: NPUSHB      (18):     2     1     6     0    10     5    78     2     3    37 
+	                             1     0     6    11    12     2    85     0 
+	00020: PUSHW[1]             -4 
+	00023: PUSHB[5]             12    12     6    85     0 
+	00029: PUSHW[1]             -2 
+	00032: NPUSHB      (19):    13    13     6    85     0    12    16    16     6    85 
+	                             0     0    32     0     2     0    69     4    71 
+	00053: PUSHW[2]            266    24 
+	00058: CALL       
+	00059: SRP0       
+	00060: MIRP[srp0,nmd,rd,2] 
+	00061: DELTAP1    
+	00062: CALL       
+	00063: CALL       
+	00064: CALL       
+	00065: CALL       
+	00066: ALIGNRP    
+	00067: MIRP[srp0,md,rd,1] 
+	00068: ALIGNRP    
+	00069: MIRP[nrp0,nmd,rd,2] 
+	00070: SVTCA[y-axis] 
+	00071: MIAP[rd+ci] 
+	00072: MIAP[rd+ci] 
+	00073: ALIGNRP    
+	00074: IUP[y]     
+	00075: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   137,     0)  ->  Abs (   137,     0)
+	  1: Rel (     0,  1062)  ->  Abs (   137,  1062)
+	  2: Rel (   180,     0)  ->  Abs (   317,  1062)
+	  3: Rel (     0, -1062)  ->  Abs (   317,     0)
+
+	Glyph 539: off = 0x00018102, len = 402
+	  numberOfContours:	1
+	  xMin:			134
+	  yMin:			0
+	  xMax:			1023
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	346
+	00000: PUSHW[2]              5   -24 
+	00005: PUSHB[5]             12    12     2    85     8 
+	00011: PUSHW[1]            -24 
+	00014: PUSHB[5]             12    12     2    85     9 
+	00020: PUSHW[1]            -24 
+	00023: NPUSHB      (62):    12    12     2    85    23     2     1    68     2     1 
+	                            63    13    90     3    89     4   105     3   105     4 
+	                           128    13   152     5   168     5   183     4   198     4 
+	                           192    13   229     5   229     8   224    13   250     3 
+	                           245     5    16     5     5    27     3    24     8    40 
+	                             8    56     8    88     3    89     4     7    74     5 
+	                             1     2 
+	00087: PUSHW[1]            -12 
+	00090: NPUSHB      (12):     9     8    16     2     5     8     9     9     4     8 
+	                             7     7 
+	00104: PUSHW[1]             -7 
+	00107: NPUSHB      (82):    11    11     6    85     7    37     6     5    20     6 
+	                             6     5     2     3     3    16    16    16     6    85 
+	                             3     7    12    13     6    85     3    37     4     9 
+	                            20     4     4     9   101     9     1     9     8     5 
+	                             2     4     3     0     6     4     3     6    10     7 
+	                             7     6    10   171     5     1     9     8     7     5 
+	                             4     3     2     7    16     6    80     6   112     6 
+	                           128     6   159     6   191     6     6     6     1    10 
+	                            37    11 
+	00191: PUSHW[1]             -8 
+	00194: PUSHB[5]             16    16     2    85    11 
+	00200: PUSHW[1]             -6 
+	00203: NPUSHB      (17):    14    14     2    85    11     6    12    12     2    85 
+	                            11     6    11    11     2    85    11 
+	00222: PUSHW[1]             -4 
+	00225: PUSHB[5]             16    16     6    85    11 
+	00231: PUSHW[1]            -16 
+	00234: PUSHB[5]             15    15     6    85    11 
+	00240: PUSHW[1]             -7 
+	00243: PUSHB[5]             12    13     6    85    11 
+	00249: PUSHW[1]            -64 
+	00252: NPUSHB      (18):    51    54    52   240    11     1     0    11    32    11 
+	                           208    11   224    11     4    11    78    12 
+	00272: SRP0       
+	00273: MIRP[srp0,nmd,rd,2] 
+	00274: DELTAP1    
+	00275: DELTAP2    
+	00276: CALL       
+	00277: CALL       
+	00278: CALL       
+	00279: CALL       
+	00280: CALL       
+	00281: CALL       
+	00282: CALL       
+	00283: CALL       
+	00284: MIRP[srp0,md,rd,1] 
+	00285: ALIGNRP    
+	00286: RTHG       
+	00287: MDAP[rd]   
+	00288: DELTAP1    
+	00289: SLOOP      
+	00290: IP         
+	00291: DELTAP2    
+	00292: SVTCA[y-axis] 
+	00293: RTG        
+	00294: MIAP[rd+ci] 
+	00295: ALIGNRP    
+	00296: SRP0       
+	00297: ALIGNRP    
+	00298: MIAP[rd+ci] 
+	00299: ALIGNRP    
+	00300: MIAP[rd+ci] 
+	00301: SRP1       
+	00302: SLOOP      
+	00303: IP         
+	00304: DELTAP3    
+	00305: SDPVTL[1]  
+	00306: SFVTCA[x-axis] 
+	00307: MDAP[nrd]  
+	00308: CALL       
+	00309: CALL       
+	00310: CALL       
+	00311: SFVTCA[y-axis] 
+	00312: RDTG       
+	00313: SRP0       
+	00314: MDRP[nrp0,nmd,rd,0] 
+	00315: SDPVTL[1]  
+	00316: SFVTCA[x-axis] 
+	00317: MDAP[nrd]  
+	00318: RTG        
+	00319: CALL       
+	00320: CALL       
+	00321: SFVTPV     
+	00322: RDTG       
+	00323: SRP0       
+	00324: MDRP[nrp0,nmd,rd,0] 
+	00325: SPVTL[p1,p2] 
+	00326: SFVTPV     
+	00327: SRP0       
+	00328: ALIGNRP    
+	00329: ALIGNRP    
+	00330: SVTCA[y-axis] 
+	00331: SLOOP      
+	00332: SHPIX      
+	00333: IUP[y]     
+	00334: IUP[x]     
+	00335: SHPIX      
+	00336: SVTCA[x-axis] 
+	00337: DELTAP3    
+	00338: DELTAP2    
+	00339: DELTAP1    
+	00340: SVTCA[y-axis] 
+	00341: DELTAP3    
+	00342: DELTAP2    
+	00343: CALL       
+	00344: CALL       
+	00345: CALL       
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:                                      On
+	  4:  YDual XDual                 X-Short On
+	  5:                                      On
+	  6:                                      On
+	  7:  YDual                       X-Short On
+	  8:                                      On
+	  9:                      Y-Short X-Short On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   134,  1062)  ->  Abs (   134,  1062)
+	  1: Rel (   179,     0)  ->  Abs (   313,  1062)
+	  2: Rel (     0,  -417)  ->  Abs (   313,   645)
+	  3: Rel (   431,   417)  ->  Abs (   744,  1062)
+	  4: Rel (   238,     0)  ->  Abs (   982,  1062)
+	  5: Rel (  -475,  -441)  ->  Abs (   507,   621)
+	  6: Rel (   516,  -621)  ->  Abs (  1023,     0)
+	  7: Rel (  -230,     0)  ->  Abs (   793,     0)
+	  8: Rel (  -414,   500)  ->  Abs (   379,   500)
+	  9: Rel (   -66,   -61)  ->  Abs (   313,   439)
+	 10: Rel (     0,  -439)  ->  Abs (   313,     0)
+	 11: Rel (  -179,     0)  ->  Abs (   134,     0)
+
+	Glyph 540: off = 0x00018294, len = 284
+	  numberOfContours:	1
+	  xMin:			24
+	  yMin:			0
+	  xMax:			998
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	239
+	00000: PUSHW[2]              3   -20 
+	00005: NPUSHB      (64):     9     9     2    85     0    24    14    17     2    85 
+	                             3     0    19     0   121     0   137     0     4     3 
+	                            16    20    25    52    55     6    70     5    86     5 
+	                           104     3   167     4   167     5     6     8     3     0 
+	                             9    24     3    48     9    96     9   152     0   160 
+	                             9   176     9     8     0    12    11    15     6    85 
+	                             5     4     7     7 
+	00071: PUSHW[1]             -6 
+	00074: NPUSHB      (22):    11    13     6    85     7    12    16    17     6    85 
+	                             7    37     6     5    20     6     6     5     1     2 
+	                             3     3 
+	00098: PUSHW[1]            -12 
+	00101: NPUSHB      (56):    12    13     6    85     3    12    16    17     6    85 
+	                             3    37     0     1    20     0     3     4     0     1 
+	                             0     3     1     5     4     0     6     7     7     2 
+	                             1    10     4     4    20     4   150     0   150     4 
+	                             4     3     5     4     1     4     2     7     6     2 
+	                            24    17    17     2    85     2 
+	00159: PUSHW[3]            283     6   283 
+	00166: NPUSHB      (13):     0     0    32     0    48     0    96     0     4     0 
+	                             0     9     8 
+	00181: RTHG       
+	00182: SRP1       
+	00183: SRP2       
+	00184: IP         
+	00185: MDAP[rd]   
+	00186: DELTAP1    
+	00187: RTG        
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: MIRP[nrp0,md,rd,1] 
+	00190: CALL       
+	00191: SRP2       
+	00192: IP         
+	00193: SRP2       
+	00194: SLOOP      
+	00195: IP         
+	00196: DELTAP1    
+	00197: SVTCA[y-axis] 
+	00198: MIAP[rd+ci] 
+	00199: ALIGNRP    
+	00200: ALIGNRP    
+	00201: SRP0       
+	00202: ALIGNRP    
+	00203: MIAP[rd+ci] 
+	00204: ALIGNRP    
+	00205: SRP2       
+	00206: IP         
+	00207: IP         
+	00208: SDPVTL[1]  
+	00209: SFVTL[=p1,p2] 
+	00210: MDAP[nrd]  
+	00211: CALL       
+	00212: CALL       
+	00213: CALL       
+	00214: SDPVTL[1]  
+	00215: SFVTCA[x-axis] 
+	00216: RDTG       
+	00217: MDRP[nrp0,nmd,rd,0] 
+	00218: SDPVTL[1]  
+	00219: MDAP[nrd]  
+	00220: RTG        
+	00221: CALL       
+	00222: CALL       
+	00223: CALL       
+	00224: SDPVTL[1]  
+	00225: RDTG       
+	00226: MDRP[nrp0,nmd,rd,0] 
+	00227: SVTCA[y-axis] 
+	00228: CALL       
+	00229: IUP[y]     
+	00230: IUP[x]     
+	00231: SVTCA[x-axis] 
+	00232: DELTAP1    
+	00233: DELTAP1    
+	00234: CALL       
+	00235: SVTCA[y-axis] 
+	00236: DELTAP1    
+	00237: CALL       
+	00238: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:  YDual                       X-Short On
+	  3:                                      On
+	  4:                              X-Short On
+	  5:  YDual XDual                 X-Short On
+	  6:                                      On
+	  7:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   511,   794)  ->  Abs (   511,   794)
+	  1: Rel (  -297,  -794)  ->  Abs (   214,     0)
+	  2: Rel (  -190,     0)  ->  Abs (    24,     0)
+	  3: Rel (   394,  1042)  ->  Abs (   418,  1042)
+	  4: Rel (  -158,   424)  ->  Abs (   260,  1466)
+	  5: Rel (   190,     0)  ->  Abs (   450,  1466)
+	  6: Rel (   548, -1466)  ->  Abs (   998,     0)
+	  7: Rel (  -190,     0)  ->  Abs (   808,     0)
+
+	Glyph 541: off = 0x000183B0, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			160
+	  yMin:			-407
+	  xMax:			1018
+	  yMax:			1062
+
+	     0: Flags:		0x0206
+		Glyf Index:	151
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 542: off = 0x000183C0, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			26
+	  yMin:			0
+	  xMax:			1000
+	  yMax:			1062
+
+	     0: Flags:		0x0206
+		Glyf Index:	89
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 543: off = 0x000183D0, len = 390
+	  numberOfContours:	1
+	  xMin:			92
+	  yMin:			-431
+	  xMax:			880
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  40
+
+	  Length of Instructions:	268
+	00000: NPUSHB      (49):     9    33     9    38    70    15    86    15   131    15 
+	                             5     5    10    54    11   230    11     3   137     4 
+	                           135     6   138    11   139    12   135    35   155    38 
+	                           198    11   214    12     8   105     4   103     6   107 
+	                            11   106    30   121    12   121    30     6    33 
+	00051: PUSHW[1]            -24 
+	00054: PUSHB[4]              9    11    52    12 
+	00059: PUSHW[1]            -48 
+	00062: NPUSHB      (33):    29    32    52    34     8    28   160     9     1     9 
+	                             9    29    40    24    28    23    15    16    28    29 
+	                            10     2    28    40     1    24    23    23    20    31 
+	                             5    36    37 
+	00097: PUSHW[1]            -19 
+	00100: PUSHB[5]             15    16     6    85    37 
+	00106: PUSHW[1]             -8 
+	00109: PUSHB[5]             13    13     6    85    37 
+	00115: PUSHW[1]            -12 
+	00118: NPUSHB      (27):    12    12     6    85   111    37   127    37     2    37 
+	                            37    31    27    28    20    10    16    16     2    85 
+	                            20    20    13    13     2    85    20 
+	00147: PUSHW[1]            -27 
+	00150: PUSHB[5]             15    16     6    85    20 
+	00156: PUSHW[1]            -27 
+	00159: PUSHB[8]             13    13     6    85    31    20     1    20 
+	00168: PUSHW[1]            -64 
+	00171: NPUSHB      (33):     9    11    52    20    20   128     8     1     8     8 
+	                             0    78    42    13    36    31    32    12    12     6 
+	                            85    31     8    11    11     6    85    31    31   143 
+	                            31     2    31 
+	00206: PUSHW[2]            596    41 
+	00211: SRP0       
+	00212: MIRP[srp0,nmd,rd,2] 
+	00213: DELTAP1    
+	00214: CALL       
+	00215: CALL       
+	00216: MIRP[nrp0,md,rd,1] 
+	00217: SRP0       
+	00218: MIRP[srp0,nmd,rd,2] 
+	00219: SHP[rp2,zp1] 
+	00220: MDAP[rd]   
+	00221: DELTAP1    
+	00222: SHP[rp1,zp0] 
+	00223: MDAP[rd]   
+	00224: CALL       
+	00225: DELTAP1    
+	00226: CALL       
+	00227: CALL       
+	00228: CALL       
+	00229: CALL       
+	00230: MIRP[nrp0,md,rd,1] 
+	00231: SRP1       
+	00232: SHP[rp1,zp0] 
+	00233: MDAP[rd]   
+	00234: DELTAP1    
+	00235: CALL       
+	00236: CALL       
+	00237: CALL       
+	00238: MIRP[nrp0,md,rd,1] 
+	00239: SRP1       
+	00240: SRP2       
+	00241: IP         
+	00242: MDAP[rd]   
+	00243: SHP[rp1,zp0] 
+	00244: SVTCA[y-axis] 
+	00245: MIAP[rd+ci] 
+	00246: MIRP[nrp0,md,rd,1] 
+	00247: MIAP[rd+ci] 
+	00248: MIRP[nrp0,md,rd,1] 
+	00249: MIAP[rd+ci] 
+	00250: MIRP[nrp0,md,rd,1] 
+	00251: SRP1       
+	00252: SRP2       
+	00253: IP         
+	00254: MDAP[rd]   
+	00255: DELTAP1    
+	00256: MIRP[srp0,md,rd,1] 
+	00257: IP         
+	00258: IUP[y]     
+	00259: IUP[x]     
+	00260: SVTCA[y-axis] 
+	00261: CALL       
+	00262: CALL       
+	00263: DELTAP1    
+	00264: DELTAP1    
+	00265: DELTAP2    
+	00266: SVTCA[x-axis] 
+	00267: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:                      Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:  YDual                               On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual         Y-Short         On
+	 10:  YDual                       X-Short Off
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual Rep-  2 Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual               Y-Short X-Short On
+	 30:  YDual               Y-Short         Off
+	 31:        XDual                         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   772,  1491)  ->  Abs (   772,  1491)
+	  1: Rel (     0,  -149)  ->  Abs (   772,  1342)
+	  2: Rel (  -147,     0)  ->  Abs (   625,  1342)
+	  3: Rel (  -164,     0)  ->  Abs (   461,  1342)
+	  4: Rel (  -147,   -97)  ->  Abs (   314,  1245)
+	  5: Rel (     0,   -90)  ->  Abs (   314,  1155)
+	  6: Rel (     0,  -172)  ->  Abs (   314,   983)
+	  7: Rel (   299,     0)  ->  Abs (   613,   983)
+	  8: Rel (   147,     0)  ->  Abs (   760,   983)
+	  9: Rel (     0,  -149)  ->  Abs (   760,   834)
+	 10: Rel (  -132,     0)  ->  Abs (   628,   834)
+	 11: Rel (  -196,   -78)  ->  Abs (   432,   756)
+	 12: Rel (  -157,  -202)  ->  Abs (   275,   554)
+	 13: Rel (     0,  -128)  ->  Abs (   275,   426)
+	 14: Rel (     0,   -96)  ->  Abs (   275,   330)
+	 15: Rel (   113,  -150)  ->  Abs (   388,   180)
+	 16: Rel (   186,   -21)  ->  Abs (   574,   159)
+	 17: Rel (   120,   -14)  ->  Abs (   694,   145)
+	 18: Rel (   112,   -61)  ->  Abs (   806,    84)
+	 19: Rel (    74,  -124)  ->  Abs (   880,   -40)
+	 20: Rel (     0,   -72)  ->  Abs (   880,  -112)
+	 21: Rel (     0,  -132)  ->  Abs (   880,  -244)
+	 22: Rel (  -218,  -185)  ->  Abs (   662,  -429)
+	 23: Rel (  -185,    -2)  ->  Abs (   477,  -431)
+	 24: Rel (    46,   167)  ->  Abs (   523,  -264)
+	 25: Rel (    99,     7)  ->  Abs (   622,  -257)
+	 26: Rel (    83,    88)  ->  Abs (   705,  -169)
+	 27: Rel (     0,    46)  ->  Abs (   705,  -123)
+	 28: Rel (     0,   102)  ->  Abs (   705,   -21)
+	 29: Rel (  -171,    19)  ->  Abs (   534,    -2)
+	 30: Rel (  -442,    48)  ->  Abs (    92,    46)
+	 31: Rel (     0,   374)  ->  Abs (    92,   420)
+	 32: Rel (     0,   153)  ->  Abs (    92,   573)
+	 33: Rel (   183,   244)  ->  Abs (   275,   817)
+	 34: Rel (   142,    61)  ->  Abs (   417,   878)
+	 35: Rel (  -142,    18)  ->  Abs (   275,   896)
+	 36: Rel (  -129,   179)  ->  Abs (   146,  1075)
+	 37: Rel (     0,    93)  ->  Abs (   146,  1168)
+	 38: Rel (     0,   130)  ->  Abs (   146,  1298)
+	 39: Rel (   229,   193)  ->  Abs (   375,  1491)
+	 40: Rel (   219,     0)  ->  Abs (   594,  1491)
+
+	Glyph 544: off = 0x00018556, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1063
+	  yMax:			1086
+
+	     0: Flags:		0x0206
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 545: off = 0x00018566, len = 358
+	  numberOfContours:	2
+	  xMin:			131
+	  yMin:			-407
+	  xMax:			1093
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  25
+
+	  Length of Instructions:	268
+	00000: NPUSHB     (100):     7     2     1   107    11   202     3   217     3   247 
+	                             2   248     8     5   106    24   106    25    96    27 
+	                           128    27   168     6   185     5     6    95    25    98 
+	                             3   106     6   108     9    98    15   108    21     6 
+	                            80     3    95     5    95     9    80    15    95    21 
+	                             5    57    16    53    18    55    22    57    24    73 
+	                            16    70    18    70    22    73    24    86     3    87 
+	                             5    88     9    89    12   104    12   120    12   138 
+	                            12    15    12    10     0    14    20    28    10    11 
+	                            14    28     4     7    17    17    13    23    36     7 
+	00102: PUSHW[1]            -64 
+	00105: NPUSHB      (10):    36    37    52     7    14    15    15     2    85     7 
+	00117: PUSHW[1]            -18 
+	00120: PUSHB[5]             15    15     6    85     7 
+	00126: PUSHW[1]            -18 
+	00129: NPUSHB      (24):    11    13     6    85    48     7    96     7   128     7 
+	                             3     0     7    16     7    32     7     3     7    49 
+	                           223    27     1    27 
+	00155: PUSHW[1]            -64 
+	00158: NPUSHB      (10):    30    35    52    48    27     1    27    13    37     0 
+	00170: PUSHW[1]             -4 
+	00173: NPUSHB      (11):    14    16     2    85     0     4    11    12     2    85 
+	                             0 
+	00186: PUSHW[1]             -4 
+	00189: NPUSHB      (11):    15    16     6    85     0     4    11    11     6    85 
+	                             0 
+	00202: PUSHW[1]            -64 
+	00205: NPUSHB      (18):    51    54    52   240     0     1     0     0    32     0 
+	                           208     0   224     0     4     0    78    26 
+	00225: SRP0       
+	00226: MIRP[srp0,nmd,rd,2] 
+	00227: DELTAP1    
+	00228: DELTAP2    
+	00229: CALL       
+	00230: CALL       
+	00231: CALL       
+	00232: CALL       
+	00233: CALL       
+	00234: MIRP[nrp0,md,rd,1] 
+	00235: SRP0       
+	00236: DELTAP2    
+	00237: CALL       
+	00238: DELTAP1    
+	00239: MIRP[srp0,nmd,rd,2] 
+	00240: DELTAP1    
+	00241: DELTAP1    
+	00242: CALL       
+	00243: CALL       
+	00244: CALL       
+	00245: CALL       
+	00246: MIRP[nrp0,md,rd,1] 
+	00247: SRP1       
+	00248: SHP[rp1,zp0] 
+	00249: MDAP[rd]   
+	00250: SVTCA[y-axis] 
+	00251: MIAP[rd+ci] 
+	00252: MIRP[nrp0,md,rd,1] 
+	00253: MIAP[rd+ci] 
+	00254: MIRP[nrp0,md,rd,1] 
+	00255: MIAP[rd+ci] 
+	00256: SRP1       
+	00257: IP         
+	00258: IUP[y]     
+	00259: IUP[x]     
+	00260: SVTCA[y-axis] 
+	00261: DELTAP1    
+	00262: SVTCA[x-axis] 
+	00263: DELTAP1    
+	00264: DELTAP1    
+	00265: DELTAP1    
+	00266: DELTAP1    
+	00267: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         On
+	  2:        XDual                         Off
+	  3:        XDual                 X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:                                      Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                                      Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:        XDual                         On
+	 14:                                      On
+	 15:  YDual                       X-Short Off
+	 16:                      Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   131,  -407)  ->  Abs (   131,  -407)
+	  1: Rel (     0,   901)  ->  Abs (   131,   494)
+	  2: Rel (     0,   302)  ->  Abs (   131,   796)
+	  3: Rel (   238,   290)  ->  Abs (   369,  1086)
+	  4: Rel (   227,     0)  ->  Abs (   596,  1086)
+	  5: Rel (   226,     0)  ->  Abs (   822,  1086)
+	  6: Rel (   271,  -308)  ->  Abs (  1093,   778)
+	  7: Rel (     0,  -246)  ->  Abs (  1093,   532)
+	  8: Rel (     0,  -247)  ->  Abs (  1093,   285)
+	  9: Rel (  -259,  -309)  ->  Abs (   834,   -24)
+	 10: Rel (  -211,     0)  ->  Abs (   623,   -24)
+	 11: Rel (  -197,     0)  ->  Abs (   426,   -24)
+	 12: Rel (  -115,   125)  ->  Abs (   311,   101)
+	 13: Rel (     0,  -508)  ->  Abs (   311,  -407)
+	 14: Rel (   291,  1344)  ->  Abs (   602,   937)
+	 15: Rel (  -131,     0)  ->  Abs (   471,   937)
+	 16: Rel (  -158,  -201)  ->  Abs (   313,   736)
+	 17: Rel (     0,  -219)  ->  Abs (   313,   517)
+	 18: Rel (     0,  -197)  ->  Abs (   313,   320)
+	 19: Rel (   156,  -196)  ->  Abs (   469,   124)
+	 20: Rel (   134,     0)  ->  Abs (   603,   124)
+	 21: Rel (   135,     0)  ->  Abs (   738,   124)
+	 22: Rel (   170,   203)  ->  Abs (   908,   327)
+	 23: Rel (     0,   195)  ->  Abs (   908,   522)
+	 24: Rel (     0,   222)  ->  Abs (   908,   744)
+	 25: Rel (  -182,   193)  ->  Abs (   726,   937)
+
+	Glyph 546: off = 0x000186CC, len = 346
+	  numberOfContours:	1
+	  xMin:			86
+	  yMin:			-431
+	  xMax:			966
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  34
+
+	  Length of Instructions:	238
+	00000: NPUSHB      (75):    39     8    41    31    54     8    57    32    70     8 
+	                            74    32     6   134    32   152    31   168     5   168 
+	                            31   183    32   199    32   216     4   217    31     8 
+	                            38    32    55    32    71    32   118    32   134     4 
+	                             5     9    28    27    21    28    16    15     3    28 
+	                            33     7    19    18    18    13    30     1     0     0 
+	                            24    36    13     8    16    16     2    85    13     4 
+	                            16    16     6    85    13 
+	00077: PUSHW[1]             -4 
+	00080: PUSHB[5]             15    15     6    85    13 
+	00086: PUSHW[1]             -8 
+	00089: PUSHB[5]             13    13     6    85    13 
+	00095: PUSHW[1]            -16 
+	00098: PUSHB[5]             12    12     6    85    13 
+	00104: PUSHW[1]            -64 
+	00107: NPUSHB      (19):    36    37    52    48    13     1     0    13    16    13 
+	                            32    13     3    13    49   223    36     1    36 
+	00128: PUSHW[1]            -64 
+	00131: NPUSHB      (58):    30    35    52    48    36     1    36     6    36    30 
+	                             8    14    14     2    85    30    12    13    13     2 
+	                            85    30    12    12    12     2    85    30    16    11 
+	                            11     2    85    30     4    15    16     6    85    30 
+	                            19    11    13     6    85    30    64    36    37    52 
+	                            31    30    63    30     2    30    49    35 
+	00191: SRP0       
+	00192: MIRP[srp0,nmd,rd,2] 
+	00193: DELTAP1    
+	00194: CALL       
+	00195: CALL       
+	00196: CALL       
+	00197: CALL       
+	00198: CALL       
+	00199: CALL       
+	00200: CALL       
+	00201: MIRP[nrp0,md,rd,1] 
+	00202: SRP0       
+	00203: DELTAP2    
+	00204: CALL       
+	00205: DELTAP1    
+	00206: MIRP[srp0,nmd,rd,2] 
+	00207: DELTAP1    
+	00208: DELTAP1    
+	00209: CALL       
+	00210: CALL       
+	00211: CALL       
+	00212: CALL       
+	00213: CALL       
+	00214: CALL       
+	00215: MIRP[nrp0,md,rd,1] 
+	00216: SHP[rp1,zp0] 
+	00217: MDAP[rd]   
+	00218: SHP[rp1,zp0] 
+	00219: SRP1       
+	00220: SRP2       
+	00221: IP         
+	00222: MDAP[rd]   
+	00223: SHP[rp1,zp0] 
+	00224: SVTCA[y-axis] 
+	00225: MIAP[rd+ci] 
+	00226: MIRP[nrp0,md,rd,1] 
+	00227: MIAP[rd+ci] 
+	00228: MIRP[nrp0,md,rd,1] 
+	00229: MDAP[rd]   
+	00230: MIRP[nrp0,md,rd,1] 
+	00231: IUP[y]     
+	00232: IUP[x]     
+	00233: SVTCA[y-axis] 
+	00234: DELTAP1    
+	00235: DELTAP1    
+	00236: SVTCA[x-axis] 
+	00237: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:                      Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short On
+	 10:        XDual Rep-  2 Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:                                      Off
+	 33:  YDual                               On
+	 34:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   966,  1052)  ->  Abs (   966,  1052)
+	  1: Rel (   -42,  -150)  ->  Abs (   924,   902)
+	  2: Rel (  -112,    35)  ->  Abs (   812,   937)
+	  3: Rel (  -112,     0)  ->  Abs (   700,   937)
+	  4: Rel (  -201,     0)  ->  Abs (   499,   937)
+	  5: Rel (  -238,  -249)  ->  Abs (   261,   688)
+	  6: Rel (     0,  -168)  ->  Abs (   261,   520)
+	  7: Rel (     0,  -116)  ->  Abs (   261,   404)
+	  8: Rel (   131,  -179)  ->  Abs (   392,   225)
+	  9: Rel (   194,   -51)  ->  Abs (   586,   174)
+	 10: Rel (   139,   -37)  ->  Abs (   725,   137)
+	 11: Rel (   124,   -65)  ->  Abs (   849,    72)
+	 12: Rel (    70,  -115)  ->  Abs (   919,   -43)
+	 13: Rel (     0,   -75)  ->  Abs (   919,  -118)
+	 14: Rel (     0,  -137)  ->  Abs (   919,  -255)
+	 15: Rel (  -222,  -176)  ->  Abs (   697,  -431)
+	 16: Rel (  -166,     0)  ->  Abs (   531,  -431)
+	 17: Rel (   -67,     0)  ->  Abs (   464,  -431)
+	 18: Rel (   -85,    14)  ->  Abs (   379,  -417)
+	 19: Rel (    44,   165)  ->  Abs (   423,  -252)
+	 20: Rel (    58,   -12)  ->  Abs (   481,  -264)
+	 21: Rel (    43,     0)  ->  Abs (   524,  -264)
+	 22: Rel (    96,     0)  ->  Abs (   620,  -264)
+	 23: Rel (   110,    83)  ->  Abs (   730,  -181)
+	 24: Rel (     0,    59)  ->  Abs (   730,  -122)
+	 25: Rel (     0,    54)  ->  Abs (   730,   -68)
+	 26: Rel (   -79,    57)  ->  Abs (   651,   -11)
+	 27: Rel (  -126,    27)  ->  Abs (   525,    16)
+	 28: Rel (  -222,    47)  ->  Abs (   303,    63)
+	 29: Rel (  -217,   252)  ->  Abs (    86,   315)
+	 30: Rel (     0,   174)  ->  Abs (    86,   489)
+	 31: Rel (     0,   241)  ->  Abs (    86,   730)
+	 32: Rel (   345,   356)  ->  Abs (   431,  1086)
+	 33: Rel (   292,     0)  ->  Abs (   723,  1086)
+	 34: Rel (   123,     0)  ->  Abs (   846,  1086)
+
+	Glyph 547: off = 0x00018826, len = 308
+	  numberOfContours:	1
+	  xMin:			136
+	  yMin:			-24
+	  xMax:			986
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	242
+	00000: NPUSHB      (57):    68     3    68     7    84     3    83     7   154    17 
+	                           150    18     6    31    21    80     4    91     7    99 
+	                             4   106     7   115     4   123     7   192    21   208 
+	                            21   224    21   255    21    11   112    21   176    21 
+	                             2   240    21     1     5    28    15    11    10     0 
+	                             6     9    10    12    10    37    11 
+	00059: PUSHW[1]            -12 
+	00062: NPUSHB      (17):    16    16     2    85    11    10    15    15     2    85 
+	                            11    26    14    14     2    85    11 
+	00081: PUSHW[1]            -12 
+	00084: NPUSHB      (23):    13    13     2    85    11    12    12    12     2    85 
+	                            11    24    16    16     6    85    11     8    15    15 
+	                             6    85    11 
+	00109: PUSHW[1]             -8 
+	00112: NPUSHB      (23):    12    13     6    85    31    11   112    11   176    11 
+	                           192    11   255    11     5    11    78    21     1     2 
+	                            37     0    19 
+	00137: PUSHW[1]             -8 
+	00140: PUSHB[5]             16    16     2    85    19 
+	00146: PUSHW[1]             -8 
+	00149: NPUSHB      (11):    14    14     2    85    19     4    12    12     2    85 
+	                            19 
+	00162: PUSHW[1]             -8 
+	00165: NPUSHB      (11):    15    15     6    85    19     4    11    11     6    85 
+	                            19 
+	00178: PUSHW[1]            -64 
+	00181: NPUSHB      (18):    51    54    52   240    19     1     0    19    32    19 
+	                           208    19   224    19     4    19    78    20 
+	00201: SRP0       
+	00202: MIRP[srp0,nmd,rd,2] 
+	00203: DELTAP1    
+	00204: DELTAP2    
+	00205: CALL       
+	00206: CALL       
+	00207: CALL       
+	00208: CALL       
+	00209: CALL       
+	00210: CALL       
+	00211: ALIGNRP    
+	00212: MIRP[srp0,md,rd,1] 
+	00213: ALIGNRP    
+	00214: SRP0       
+	00215: MIRP[srp0,nmd,rd,0] 
+	00216: DELTAP1    
+	00217: CALL       
+	00218: CALL       
+	00219: CALL       
+	00220: CALL       
+	00221: CALL       
+	00222: CALL       
+	00223: CALL       
+	00224: CALL       
+	00225: MIRP[nrp0,md,rd,1] 
+	00226: ALIGNRP    
+	00227: SRP0       
+	00228: ALIGNRP    
+	00229: SVTCA[y-axis] 
+	00230: MIAP[rd+ci] 
+	00231: ALIGNRP    
+	00232: MIAP[rd+ci] 
+	00233: MIRP[nrp0,md,rd,1] 
+	00234: IUP[y]     
+	00235: IUP[x]     
+	00236: SVTCA[x-axis] 
+	00237: DELTAP2    
+	00238: DELTAP1    
+	00239: DELTAP1    
+	00240: SVTCA[y-axis] 
+	00241: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:        XDual         Y-Short         Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:        XDual                         On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   136,  1062)  ->  Abs (   136,  1062)
+	  1: Rel (   180,     0)  ->  Abs (   316,  1062)
+	  2: Rel (     0,  -629)  ->  Abs (   316,   433)
+	  3: Rel (     0,  -163)  ->  Abs (   316,   270)
+	  4: Rel (   146,  -146)  ->  Abs (   462,   124)
+	  5: Rel (    98,     0)  ->  Abs (   560,   124)
+	  6: Rel (    81,     0)  ->  Abs (   641,   124)
+	  7: Rel (   120,    92)  ->  Abs (   761,   216)
+	  8: Rel (    46,   120)  ->  Abs (   807,   336)
+	  9: Rel (     0,   111)  ->  Abs (   807,   447)
+	 10: Rel (     0,   615)  ->  Abs (   807,  1062)
+	 11: Rel (   179,     0)  ->  Abs (   986,  1062)
+	 12: Rel (     0,  -622)  ->  Abs (   986,   440)
+	 13: Rel (     0,  -237)  ->  Abs (   986,   203)
+	 14: Rel (  -236,  -227)  ->  Abs (   750,   -24)
+	 15: Rel (  -193,     0)  ->  Abs (   557,   -24)
+	 16: Rel (  -149,     0)  ->  Abs (   408,   -24)
+	 17: Rel (  -195,   133)  ->  Abs (   213,   109)
+	 18: Rel (   -77,   174)  ->  Abs (   136,   283)
+	 19: Rel (     0,   150)  ->  Abs (   136,   433)
+
+	Glyph 548: off = 0x0001895A, len = 350
+	  numberOfContours:	1
+	  xMin:			17
+	  yMin:			-407
+	  xMax:			1056
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	289
+	00000: NPUSHB     (117):    53     2     1   161     2   205     8   240     2   255 
+	                             8     4    48     2    63     8     2     5     5    10 
+	                            11    21     5    26    11    56    11   119     8     6 
+	                           168     3   166     8   182     5   185    11   201     2 
+	                           199     5   199     8   200    11   215     8   248     3 
+	                           247     9    11     7    11    15    13    23    11    32 
+	                            13    57     5    55    11     6     5     1     6     4 
+	                             9     8     9     4     0     7    11     0     7    10 
+	                             3     2     1     6    10     3     2     8     0     9 
+	                             1     0     7     7     8     9    17     2    85     7 
+	                            11    13    17     6    85     7    37     6     1    20 
+	                             6     6     1     3     4     9     9 
+	00119: PUSHW[1]             -8 
+	00122: PUSHB[5]              9    17     2    85     9 
+	00128: PUSHW[1]            -11 
+	00131: NPUSHB      (40):    13    17     6    85     9    37    10     3    20    10 
+	                            10     3     4     3     3     1     1     0     6     9 
+	                             7     7     6     6    10    14     7     9     6    10 
+	                             3     1     0     4   154     6     0   143    10     6 
+	00173: PUSHW[1]            -11 
+	00176: PUSHB[5]             16    16     2    85     6 
+	00182: PUSHW[1]            -11 
+	00185: NPUSHB      (30):    10    10     2    85    15     6    31     6    32     6 
+	                             3     6   154    13    10    11    17    17     2    85 
+	                             0    10    16    10    32    10     3    10    73    12 
+	00217: RTHG       
+	00218: SRP0       
+	00219: MIRP[nrp0,nmd,rd,2] 
+	00220: DELTAP1    
+	00221: CALL       
+	00222: SRP0       
+	00223: MIRP[nrp0,nmd,rd,2] 
+	00224: DELTAP1    
+	00225: CALL       
+	00226: CALL       
+	00227: RTG        
+	00228: SRP0       
+	00229: MIRP[nrp0,nmd,rd,0] 
+	00230: SRP0       
+	00231: MIRP[nrp0,nmd,rd,0] 
+	00232: SRP1       
+	00233: IP         
+	00234: IP         
+	00235: SRP1       
+	00236: SRP2       
+	00237: IP         
+	00238: IP         
+	00239: SVTCA[y-axis] 
+	00240: MIAP[rd+ci] 
+	00241: ALIGNRP    
+	00242: SRP0       
+	00243: ALIGNRP    
+	00244: SRP0       
+	00245: ALIGNRP    
+	00246: MIAP[rd+ci] 
+	00247: ALIGNRP    
+	00248: SRP0       
+	00249: ALIGNRP    
+	00250: SRP0       
+	00251: ALIGNRP    
+	00252: SDPVTL[1]  
+	00253: SFVTCA[x-axis] 
+	00254: MDAP[nrd]  
+	00255: CALL       
+	00256: CALL       
+	00257: CALL       
+	00258: SDPVTL[1]  
+	00259: RDTG       
+	00260: MDRP[nrp0,nmd,rd,0] 
+	00261: SDPVTL[1]  
+	00262: MDAP[nrd]  
+	00263: RTG        
+	00264: CALL       
+	00265: CALL       
+	00266: CALL       
+	00267: SDPVTL[1]  
+	00268: RDTG       
+	00269: MDRP[nrp0,nmd,rd,0] 
+	00270: SVTCA[y-axis] 
+	00271: SRP1       
+	00272: SRP2       
+	00273: IP         
+	00274: IP         
+	00275: ISECT      
+	00276: ISECT      
+	00277: ISECT      
+	00278: ISECT      
+	00279: IUP[y]     
+	00280: IUP[x]     
+	00281: SVTCA[x-axis] 
+	00282: DELTAP1    
+	00283: DELTAP2    
+	00284: DELTAP3    
+	00285: SVTCA[y-axis] 
+	00286: DELTAP1    
+	00287: DELTAP2    
+	00288: DELTAP3    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:                                      On
+	  3:                                      On
+	  4:  YDual XDual                 X-Short On
+	  5:                                      On
+	  6:                                      On
+	  7:  YDual                       X-Short On
+	  8:                                      On
+	  9:                                      On
+	 10:  YDual                       X-Short On
+	 11:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (    48,  1062)  ->  Abs (    48,  1062)
+	  1: Rel (   196,     0)  ->  Abs (   244,  1062)
+	  2: Rel (   292,  -588)  ->  Abs (   536,   474)
+	  3: Rel (   302,   588)  ->  Abs (   838,  1062)
+	  4: Rel (   198,     0)  ->  Abs (  1036,  1062)
+	  5: Rel (  -390,  -724)  ->  Abs (   646,   338)
+	  6: Rel (   410,  -745)  ->  Abs (  1056,  -407)
+	  7: Rel (  -205,     0)  ->  Abs (   851,  -407)
+	  8: Rel (  -315,   613)  ->  Abs (   536,   206)
+	  9: Rel (  -318,  -613)  ->  Abs (   218,  -407)
+	 10: Rel (  -201,     0)  ->  Abs (    17,  -407)
+	 11: Rel (   409,   739)  ->  Abs (   426,   332)
+
+	Glyph 549: off = 0x00018AB8, len = 366
+	  numberOfContours:	1
+	  xMin:			122
+	  yMin:			-407
+	  xMax:			1337
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  28
+
+	  Length of Instructions:	274
+	00000: PUSHB[8]            180    19   224    30   255    30     3    11 
+	00009: PUSHW[1]            -32 
+	00012: PUSHB[4]             11    14    52     4 
+	00017: PUSHW[1]            -32 
+	00020: NPUSHB      (35):    11    14    52    18    32    36    38    52   188    26 
+	                           202    26     2   121    18   121    25     2     9     6 
+	                            20     6   146    23    11    22    14    14     6     7 
+	                             6     0     6     8    21 
+	00057: PUSHW[4]            560     7    22    -2 
+	00066: PUSHB[8]             13    13     2    85    22    22    28    14 
+	00075: PUSHW[1]            560 
+	00078: PUSHB[7]             15    40    15    15     2    85    15 
+	00086: PUSHW[1]            -22 
+	00089: NPUSHB      (11):    13    13     2    85    15    12    12    12     2    85 
+	                            15 
+	00102: PUSHW[1]            -10 
+	00105: NPUSHB      (33):    12    13     6    85    15    20    15    15     6    85 
+	                            15    31    16    16     6    85    15    64    50    54 
+	                            52   255    15     1   223    15   255    15     2    15 
+	                            78    30     2 
+	00140: PUSHW[3]            560    28    -6 
+	00147: NPUSHB      (11):    16    16     2    85    28     4    11    12     2    85 
+	                            28 
+	00160: PUSHW[1]             -3 
+	00163: PUSHB[5]             11    11     6    85    28 
+	00169: PUSHW[1]            -13 
+	00172: PUSHB[5]             15    15     6    85    28 
+	00178: PUSHW[1]            -64 
+	00181: NPUSHB      (40):    51    54    52   240    28     1     0    28    32    28 
+	                           208    28   224    28     4    28    78    29    32    30 
+	                           111    30   128    30   176    30   224    30     5    80 
+	                            30   128    30   144    30   192    30   239    30     5 
+	00223: DELTAP1    
+	00224: DELTAP2    
+	00225: SRP0       
+	00226: MIRP[srp0,nmd,rd,0] 
+	00227: DELTAP1    
+	00228: DELTAP2    
+	00229: CALL       
+	00230: CALL       
+	00231: CALL       
+	00232: CALL       
+	00233: CALL       
+	00234: MIRP[nrp0,md,rd,1] 
+	00235: SRP0       
+	00236: MIRP[srp0,nmd,rd,2] 
+	00237: DELTAP1    
+	00238: DELTAP2    
+	00239: CALL       
+	00240: CALL       
+	00241: CALL       
+	00242: CALL       
+	00243: CALL       
+	00244: CALL       
+	00245: CALL       
+	00246: MIRP[nrp0,md,rd,1] 
+	00247: SRP2       
+	00248: IP         
+	00249: MDAP[rd]   
+	00250: CALL       
+	00251: ALIGNRP    
+	00252: MIRP[srp0,md,rd,1] 
+	00253: ALIGNRP    
+	00254: SVTCA[y-axis] 
+	00255: MIAP[rd+ci] 
+	00256: MIAP[rd+ci] 
+	00257: MIAP[rd+ci] 
+	00258: MIAP[rd+ci] 
+	00259: MIAP[rd+ci] 
+	00260: MIRP[nrp0,md,rd,1] 
+	00261: ALIGNRP    
+	00262: SRP0       
+	00263: ALIGNRP    
+	00264: IUP[y]     
+	00265: IUP[x]     
+	00266: SVTCA[y-axis] 
+	00267: DELTAP1    
+	00268: DELTAP2    
+	00269: CALL       
+	00270: CALL       
+	00271: CALL       
+	00272: SVTCA[x-axis] 
+	00273: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:        XDual         Y-Short         Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:        XDual                         On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual                         On
+	 10:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:        XDual                         On
+	 15:  YDual XDual                 X-Short On
+	 16:        XDual                         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:        XDual                         On
+	 22:  YDual                       X-Short On
+	 23:        XDual                         On
+	 24:  YDual       Rep-  3 Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   122,  1062)  ->  Abs (   122,  1062)
+	  1: Rel (   179,     0)  ->  Abs (   301,  1062)
+	  2: Rel (     0,  -524)  ->  Abs (   301,   538)
+	  3: Rel (     0,  -147)  ->  Abs (   301,   391)
+	  4: Rel (    48,  -154)  ->  Abs (   349,   237)
+	  5: Rel (   155,  -103)  ->  Abs (   504,   134)
+	  6: Rel (   136,    -7)  ->  Abs (   640,   127)
+	  7: Rel (     0,   935)  ->  Abs (   640,  1062)
+	  8: Rel (   180,     0)  ->  Abs (   820,  1062)
+	  9: Rel (     0,  -935)  ->  Abs (   820,   127)
+	 10: Rel (   131,     7)  ->  Abs (   951,   134)
+	 11: Rel (   154,    98)  ->  Abs (  1105,   232)
+	 12: Rel (    53,   153)  ->  Abs (  1158,   385)
+	 13: Rel (     0,   153)  ->  Abs (  1158,   538)
+	 14: Rel (     0,   524)  ->  Abs (  1158,  1062)
+	 15: Rel (   179,     0)  ->  Abs (  1337,  1062)
+	 16: Rel (     0,  -518)  ->  Abs (  1337,   544)
+	 17: Rel (     0,  -208)  ->  Abs (  1337,   336)
+	 18: Rel (   -77,  -202)  ->  Abs (  1260,   134)
+	 19: Rel (  -234,  -151)  ->  Abs (  1026,   -17)
+	 20: Rel (  -206,    -7)  ->  Abs (   820,   -24)
+	 21: Rel (     0,  -383)  ->  Abs (   820,  -407)
+	 22: Rel (  -180,     0)  ->  Abs (   640,  -407)
+	 23: Rel (     0,   383)  ->  Abs (   640,   -24)
+	 24: Rel (  -133,     4)  ->  Abs (   507,   -20)
+	 25: Rel (  -200,    68)  ->  Abs (   307,    48)
+	 26: Rel (  -139,   149)  ->  Abs (   168,   197)
+	 27: Rel (   -46,   164)  ->  Abs (   122,   361)
+	 28: Rel (     0,   183)  ->  Abs (   122,   544)
+
+	Glyph 550: off = 0x00018C26, len = 454
+	  numberOfContours:	1
+	  xMin:			87
+	  yMin:			-24
+	  xMax:			1512
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  36
+
+	  Length of Instructions:	341
+	00000: NPUSHB      (73):     0    38    40    30    32    38    57    30    72    30 
+	                            64    38    83     5    92    18    93    29    83    31 
+	                           100     5   107    18   110    29    97    31   118    24 
+	                           122    29   117    31   122    36   133    24   137    36 
+	                           175    38   240    38    22     0    38     1    30    11 
+	                             6    17    72    28     6    72    32     0    11     1 
+	                            11    11    32     0    22     6     0     6    28    11 
+	                            32    11    22 
+	00075: PUSHW[4]            560    23     1   560 
+	00084: NPUSHB      (19):     0    23    23    25    20     0     0     3    35    30 
+	                             0    13    16    13     2    80    13     1    13 
+	00105: PUSHW[1]            560 
+	00108: NPUSHB      (18):    10     8    15    15     6    85    10    10    35    20 
+	                            64    25    10    16    16     2    85    25 
+	00128: PUSHW[1]            -10 
+	00131: NPUSHB      (11):    12    12     2    85    25    10    11    11     2    85 
+	                            25 
+	00144: PUSHW[1]            -13 
+	00147: PUSHB[5]             15    15     6    85    25 
+	00153: PUSHW[1]            -23 
+	00156: PUSHB[5]             12    13     6    85    25 
+	00162: PUSHW[1]            -64 
+	00165: NPUSHB      (41):    36    37    52    32    25    48    25     2     0    25 
+	                             1     0    25    16    25    32    25    48    25   175 
+	                            25   240    25     6     0    25    16    25    32    25 
+	                            64    25    96    25     5    25    49   223    38     1 
+	                            38 
+	00208: PUSHW[1]            -64 
+	00211: NPUSHB      (10):    30    35    52    48    38     1    38     3    64    35 
+	00223: PUSHW[1]            -10 
+	00226: NPUSHB      (11):    11    11     2    85    35     5    16    16     6    85 
+	                            35 
+	00239: PUSHW[1]             -5 
+	00242: NPUSHB      (29):    15    15     6    85    35    24    13    13     6    85 
+	                            35    27    12    12     6    85    35    64    36    37 
+	                            52    31    35    63    35     2    35    49    37 
+	00273: SRP0       
+	00274: MIRP[srp0,nmd,rd,2] 
+	00275: DELTAP1    
+	00276: CALL       
+	00277: CALL       
+	00278: CALL       
+	00279: CALL       
+	00280: CALL       
+	00281: CALL       
+	00282: MIRP[nrp0,md,rd,1] 
+	00283: SRP0       
+	00284: DELTAP2    
+	00285: CALL       
+	00286: DELTAP1    
+	00287: MIRP[srp0,nmd,rd,2] 
+	00288: DELTAP1    
+	00289: DELTAP1    
+	00290: DELTAP3    
+	00291: DELTAP2    
+	00292: CALL       
+	00293: CALL       
+	00294: CALL       
+	00295: CALL       
+	00296: CALL       
+	00297: CALL       
+	00298: MIRP[nrp0,md,rd,1] 
+	00299: SRP2       
+	00300: IP         
+	00301: MDAP[rd]   
+	00302: CALL       
+	00303: MIRP[nrp0,md,rd,1] 
+	00304: DELTAP2    
+	00305: DELTAP3    
+	00306: IP         
+	00307: SRP1       
+	00308: SRP2       
+	00309: IP         
+	00310: MDAP[rd]   
+	00311: SRP1       
+	00312: SRP2       
+	00313: IP         
+	00314: MDAP[rd]   
+	00315: SRP0       
+	00316: MIRP[nrp0,md,rd,1] 
+	00317: SRP0       
+	00318: MIRP[nrp0,md,rd,1] 
+	00319: SVTCA[y-axis] 
+	00320: MIAP[rd+ci] 
+	00321: MIAP[rd+ci] 
+	00322: MIAP[rd+ci] 
+	00323: MIAP[rd+ci] 
+	00324: SRP1       
+	00325: SRP2       
+	00326: IP         
+	00327: MDAP[rd]   
+	00328: DELTAP1    
+	00329: SRP0       
+	00330: MIRP[nrp0,md,rd,1] 
+	00331: SRP0       
+	00332: MIRP[nrp0,md,rd,1] 
+	00333: SRP1       
+	00334: SRP2       
+	00335: IP         
+	00336: IUP[y]     
+	00337: IUP[x]     
+	00338: SVTCA[x-axis] 
+	00339: DELTAP3    
+	00340: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:                              X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:        XDual                         On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:        XDual         Y-Short         Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:                              X-Short On
+	 23:  YDual XDual                 X-Short On
+	 24:        XDual                 X-Short Off
+	 25:        XDual                         On
+	 26:        XDual                         Off
+	 27:                              X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short On
+	 31:                      Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:                              X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:        XDual                         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   245,  1062)  ->  Abs (   245,  1062)
+	  1: Rel (   174,     0)  ->  Abs (   419,  1062)
+	  2: Rel (  -149,  -329)  ->  Abs (   270,   733)
+	  3: Rel (     0,  -227)  ->  Abs (   270,   506)
+	  4: Rel (     0,  -175)  ->  Abs (   270,   331)
+	  5: Rel (   128,  -214)  ->  Abs (   398,   117)
+	  6: Rel (    99,     0)  ->  Abs (   497,   117)
+	  7: Rel (    64,     0)  ->  Abs (   561,   117)
+	  8: Rel (   112,   100)  ->  Abs (   673,   217)
+	  9: Rel (    37,   140)  ->  Abs (   710,   357)
+	 10: Rel (     0,   126)  ->  Abs (   710,   483)
+	 11: Rel (     0,   311)  ->  Abs (   710,   794)
+	 12: Rel (   179,     0)  ->  Abs (   889,   794)
+	 13: Rel (     0,  -311)  ->  Abs (   889,   483)
+	 14: Rel (     0,  -123)  ->  Abs (   889,   360)
+	 15: Rel (    37,  -144)  ->  Abs (   926,   216)
+	 16: Rel (   113,   -99)  ->  Abs (  1039,   117)
+	 17: Rel (    64,     0)  ->  Abs (  1103,   117)
+	 18: Rel (    98,     0)  ->  Abs (  1201,   117)
+	 19: Rel (   128,   213)  ->  Abs (  1329,   330)
+	 20: Rel (     0,   176)  ->  Abs (  1329,   506)
+	 21: Rel (     0,   227)  ->  Abs (  1329,   733)
+	 22: Rel (  -148,   329)  ->  Abs (  1181,  1062)
+	 23: Rel (   173,     0)  ->  Abs (  1354,  1062)
+	 24: Rel (   158,  -281)  ->  Abs (  1512,   781)
+	 25: Rel (     0,  -264)  ->  Abs (  1512,   517)
+	 26: Rel (     0,  -265)  ->  Abs (  1512,   252)
+	 27: Rel (  -219,  -276)  ->  Abs (  1293,   -24)
+	 28: Rel (  -170,     0)  ->  Abs (  1123,   -24)
+	 29: Rel (  -226,     0)  ->  Abs (   897,   -24)
+	 30: Rel (   -97,   239)  ->  Abs (   800,   215)
+	 31: Rel (   -98,  -239)  ->  Abs (   702,   -24)
+	 32: Rel (  -226,     0)  ->  Abs (   476,   -24)
+	 33: Rel (  -179,     0)  ->  Abs (   297,   -24)
+	 34: Rel (  -210,   290)  ->  Abs (    87,   266)
+	 35: Rel (     0,   251)  ->  Abs (    87,   517)
+	 36: Rel (     0,   264)  ->  Abs (    87,   781)
+
+	Glyph 551: off = 0x00018DEC, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-47
+	  yMin:			0
+	  xMax:			514
+	  yMax:			1475
+
+	     0: Flags:		0x0226
+		Glyf Index:	538
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	142
+		X BOffset:	-108
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              2     1     1     2     2    11 
+	00007: PUSHW[2]            546    41 
+	00012: SVTCA[y-axis] 
+	00013: CALL       
+	00014: SVTCA[x-axis] 
+	00015: PUSHB[2]              6     2 
+	00018: RS         
+	00019: EQ         
+	00020: IF         
+	00021: PUSHB[6]              0     5    10     1     2    65 
+	00028: CALL       
+	00029: ELSE       
+	00030: PUSHB[5]              8     2     0    72    43 
+	00036: CALL       
+	00037: EIF        
+	00038: SHC[rp1,zp0] 
+	00039: SHC[rp1,zp0] 
+
+	Glyph 552: off = 0x00018E2C, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			136
+	  yMin:			-24
+	  xMax:			986
+	  yMax:			1475
+
+	     0: Flags:		0x0226
+		Glyf Index:	547
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	240
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     2     1   112    20     1     0    20    27     0    11 
+	                            65     1     2     2    20 
+	00017: PUSHW[2]            546    41 
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+	00026: DELTAP1    
+	00027: SHC[rp1,zp0] 
+	00028: SHC[rp2,zp1] 
+
+	Glyph 553: off = 0x00018E64, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1063
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	244
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     2   224    29   240    29     2    29     4     0    72 
+	                            43     2     1    29 
+	00016: PUSHW[2]            546    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 554: off = 0x00018E9A, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			136
+	  yMin:			-24
+	  xMax:			986
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	547
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	220
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1     1    20 
+	00004: PUSHW[2]            546    41 
+	00009: SVTCA[y-axis] 
+	00010: CALL       
+
+	Glyph 555: off = 0x00018EC0, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			87
+	  yMin:			-24
+	  xMax:			1512
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	550
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	480
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    37    39    11    12    65     1     1    37 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 556: off = 0x00018EF0, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			162
+	  yMin:			0
+	  xMax:			1256
+	  yMax:			1761
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	350
+		Y WOffset:	286
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     2     2    12 
+	00005: PUSHW[2]            545    41 
+	00010: SVTCA[y-axis] 
+	00011: CALL       
+
+	Glyph 557: off = 0x00018F16, len = 374
+	  numberOfContours:	1
+	  xMin:			50
+	  yMin:			-25
+	  xMax:			1689
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	280
+	00000: NPUSHB      (42):   102     4   118     4   135     4     3    34     8    25 
+	                            12     4     6    23    15    93    14    74    12     6 
+	                            30    23    23    27     2    29    30     0     2    27 
+	                             8    17    30    12     9    15    74    14    14    20 
+	                             3     2 
+	00044: PUSHW[1]            648 
+	00047: PUSHB[4]             27    20    38     9 
+	00052: PUSHW[1]            -48 
+	00055: PUSHB[5]             13    13     2    85     9 
+	00061: PUSHW[1]            -14 
+	00064: PUSHB[5]             11    11     2    85     9 
+	00070: PUSHW[1]            -10 
+	00073: PUSHB[5]             11    11     6    85     9 
+	00079: PUSHW[1]            -30 
+	00082: PUSHB[5]             12    12     6    85     9 
+	00088: PUSHW[1]            -20 
+	00091: NPUSHB      (12):    13    13     6    85     9    55    31    27    32    26 
+	                            26     3 
+	00105: PUSHW[3]            648     0   -32 
+	00112: PUSHB[5]             16    16     2    85     0 
+	00118: PUSHW[1]            -12 
+	00121: PUSHB[5]             15    15     2    85     0 
+	00127: PUSHW[1]            -42 
+	00130: PUSHB[5]             13    13     2    85     0 
+	00136: PUSHW[1]            -22 
+	00139: PUSHB[5]             12    12     2    85     0 
+	00145: PUSHW[1]             -6 
+	00148: PUSHB[5]             11    11     2    85     0 
+	00154: PUSHW[1]            -22 
+	00157: PUSHB[5]             11    11     6    85     0 
+	00163: PUSHW[1]            -10 
+	00166: PUSHB[5]             12    12     6    85     0 
+	00172: PUSHW[1]            -42 
+	00175: PUSHB[5]             13    13     6    85     0 
+	00181: PUSHW[1]            -15 
+	00184: PUSHB[7]             15    16     6    85     0    84    30 
+	00192: SRP0       
+	00193: MIRP[srp0,nmd,rd,2] 
+	00194: CALL       
+	00195: CALL       
+	00196: CALL       
+	00197: CALL       
+	00198: CALL       
+	00199: CALL       
+	00200: CALL       
+	00201: CALL       
+	00202: CALL       
+	00203: MIRP[srp0,md,rd,1] 
+	00204: ALIGNRP    
+	00205: SRP0       
+	00206: MIRP[nrp0,md,rd,1] 
+	00207: SRP0       
+	00208: MIRP[srp0,nmd,rd,2] 
+	00209: CALL       
+	00210: CALL       
+	00211: CALL       
+	00212: CALL       
+	00213: CALL       
+	00214: MIRP[nrp0,md,rd,1] 
+	00215: SRP0       
+	00216: MIRP[nrp0,md,rd,1] 
+	00217: SRP1       
+	00218: SRP2       
+	00219: IP         
+	00220: MDAP[rd]   
+	00221: MIRP[nrp0,nmd,rd,0] 
+	00222: SVTCA[y-axis] 
+	00223: MIAP[rd+ci] 
+	00224: MIRP[nrp0,md,rd,1] 
+	00225: MIAP[rd+ci] 
+	00226: MIAP[rd+ci] 
+	00227: MIRP[srp0,md,rd,1] 
+	00228: ALIGNRP    
+	00229: SRP2       
+	00230: IP         
+	00231: MDAP[rd]   
+	00232: MIRP[nrp0,md,rd,1] 
+	00233: SRP0       
+	00234: MIRP[srp0,md,rd,1] 
+	00235: MIRP[nrp0,md,rd,1] 
+	00236: SRP1       
+	00237: SRP2       
+	00238: IP         
+	00239: SRP2       
+	00240: IP         
+	00241: IUP[y]     
+	00242: IUP[x]     
+	00243: RS         
+	00244: JROF       
+	00245: NPUSHB      (24):    18    22     7    11    18    11    20    54     1    22 
+	                             7    20    54     1    19    10    17    54     0    21 
+	                             8    23    54     1 
+	00271: CALL       
+	00272: CALL       
+	00273: SVTCA[x-axis] 
+	00274: CALL       
+	00275: CALL       
+	00276: FLIPRGON   
+	00277: FLIPRGON   
+	00278: SVTCA[y-axis] 
+	00279: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:                                      Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                              X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:        XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:                      Y-Short X-Short On
+	 26:        XDual                         On
+	 27:  YDual                       X-Short On
+	 28:        XDual                         On
+	 29:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (    50,  1466)  ->  Abs (    50,  1466)
+	  1: Rel (  1170,     0)  ->  Abs (  1220,  1466)
+	  2: Rel (     0,  -173)  ->  Abs (  1220,  1293)
+	  3: Rel (  -488,     0)  ->  Abs (   732,  1293)
+	  4: Rel (     0,  -456)  ->  Abs (   732,   837)
+	  5: Rel (   253,    99)  ->  Abs (   985,   936)
+	  6: Rel (   187,     0)  ->  Abs (  1172,   936)
+	  7: Rel (   233,     0)  ->  Abs (  1405,   936)
+	  8: Rel (   284,  -282)  ->  Abs (  1689,   654)
+	  9: Rel (     0,  -203)  ->  Abs (  1689,   451)
+	 10: Rel (     0,  -178)  ->  Abs (  1689,   273)
+	 11: Rel (  -233,  -298)  ->  Abs (  1456,   -25)
+	 12: Rel (  -225,     0)  ->  Abs (  1231,   -25)
+	 13: Rel (  -104,     0)  ->  Abs (  1127,   -25)
+	 14: Rel (  -131,    33)  ->  Abs (   996,     8)
+	 15: Rel (    31,   164)  ->  Abs (  1027,   172)
+	 16: Rel (    76,   -37)  ->  Abs (  1103,   135)
+	 17: Rel (    82,     0)  ->  Abs (  1185,   135)
+	 18: Rel (   151,     0)  ->  Abs (  1336,   135)
+	 19: Rel (   155,   176)  ->  Abs (  1491,   311)
+	 20: Rel (     0,   134)  ->  Abs (  1491,   445)
+	 21: Rel (     0,   142)  ->  Abs (  1491,   587)
+	 22: Rel (  -179,   187)  ->  Abs (  1312,   774)
+	 23: Rel (  -188,     0)  ->  Abs (  1124,   774)
+	 24: Rel (  -162,     0)  ->  Abs (   962,   774)
+	 25: Rel (  -230,   -94)  ->  Abs (   732,   680)
+	 26: Rel (     0,  -680)  ->  Abs (   732,     0)
+	 27: Rel (  -194,     0)  ->  Abs (   538,     0)
+	 28: Rel (     0,  1293)  ->  Abs (   538,  1293)
+	 29: Rel (  -488,     0)  ->  Abs (    50,  1293)
+
+	Glyph 558: off = 0x0001908C, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			0
+	  xMax:			1109
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	573
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	251
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     1     6     3   167    72    43     1     1     6 
+	00011: PUSHW[2]            545    41 
+	00016: SVTCA[y-axis] 
+	00017: CALL       
+	00018: SVTCA[x-axis] 
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+
+	Glyph 559: off = 0x000190BC, len = 310
+	  numberOfContours:	1
+	  xMin:			100
+	  yMin:			-25
+	  xMax:			1398
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  26
+
+	  Length of Instructions:	207
+	00000: NPUSHB     (133):   169    22   180     6   185    22     3    27     6    43 
+	                             6    59     6    93    25   111    25   127    25   177 
+	                             9     7    41     3    41     9    41    11    53     3 
+	                            59     6    53     9    59    22    71     3    75     6 
+	                            69     9    75    22    86     3    84     9    86    11 
+	                            84    19   106    11   119     3   121     6   120    11 
+	                           135     3   137    12   168    22   181     6   200     8 
+	                            24     7   227    32     8    96     8   112     8   128 
+	                             8     4     8     8    10    17    21    84    20    20 
+	                            10    17    26    30     2     2    10    23    30    17 
+	                             3     5    30    10     9     1     1     8     2    21 
+	                            38    20     7    38    20    98    47     8     1   159 
+	                             8     1     8    26    32    28     1    28    26    45 
+	                             2    38    13 
+	00135: PUSHW[1]             -7 
+	00138: NPUSHB      (19):    16    16     6    85    13    10    11    11     6    85 
+	                            32    13     1    13    25    27    99    92    24 
+	00159: CALL       
+	00160: SRP0       
+	00161: MIRP[srp0,nmd,rd,2] 
+	00162: DELTAP1    
+	00163: CALL       
+	00164: CALL       
+	00165: MIRP[srp0,md,rd,1] 
+	00166: MIRP[nrp0,nmd,rd,0] 
+	00167: SRP0       
+	00168: DELTAP1    
+	00169: MIRP[srp0,nmd,rd,0] 
+	00170: DELTAP1    
+	00171: DELTAP2    
+	00172: MIRP[nrp0,nmd,rd,0] 
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: SRP0       
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: SRP1       
+	00177: SRP2       
+	00178: IP         
+	00179: MDAP[rd]   
+	00180: SVTCA[y-axis] 
+	00181: MIAP[rd+ci] 
+	00182: MIRP[nrp0,md,rd,1] 
+	00183: MIAP[rd+ci] 
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: SRP2       
+	00186: IP         
+	00187: MDAP[rd]   
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: SRP1       
+	00190: SRP2       
+	00191: IP         
+	00192: MDAP[rd]   
+	00193: MIRP[nrp0,nmd,rd,0] 
+	00194: SRP1       
+	00195: SRP2       
+	00196: IP         
+	00197: MDAP[rd]   
+	00198: DELTAP1    
+	00199: MIRP[nrp0,nmd,rd,0] 
+	00200: IUP[y]     
+	00201: IUP[x]     
+	00202: SVTCA[x-axis] 
+	00203: DELTAP1    
+	00204: DELTAP2    
+	00205: SVTCA[y-axis] 
+	00206: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual                 X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               Off
+	  7:        XDual                 X-Short On
+	  8:        XDual         Y-Short X-Short On
+	  9:                              X-Short Off
+	 10:  YDual                               On
+	 11:  YDual                               Off
+	 12:                                      Off
+	 13:        XDual                 X-Short On
+	 14:  YDual XDual         Y-Short         Off
+	 15:        XDual                 X-Short Off
+	 16:  YDual               Y-Short         Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:                      Y-Short         Off
+	 20:        XDual         Y-Short X-Short On
+	 21:                      Y-Short X-Short On
+	 22:                              X-Short Off
+	 23:  YDual                               On
+	 24:  YDual                       X-Short Off
+	 25:                              X-Short Off
+	 26:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   857,   843)  ->  Abs (   857,   843)
+	  1: Rel (     0,  -173)  ->  Abs (   857,   670)
+	  2: Rel (  -545,     0)  ->  Abs (   312,   670)
+	  3: Rel (    11,  -247)  ->  Abs (   323,   423)
+	  4: Rel (   252,  -285)  ->  Abs (   575,   138)
+	  5: Rel (   197,     0)  ->  Abs (   772,   138)
+	  6: Rel (   350,     0)  ->  Abs (  1122,   138)
+	  7: Rel (    89,   372)  ->  Abs (  1211,   510)
+	  8: Rel (   187,   -49)  ->  Abs (  1398,   461)
+	  9: Rel (  -127,  -486)  ->  Abs (  1271,   -25)
+	 10: Rel (  -485,     0)  ->  Abs (   786,   -25)
+	 11: Rel (  -347,     0)  ->  Abs (   439,   -25)
+	 12: Rel (  -339,   447)  ->  Abs (   100,   422)
+	 13: Rel (    11,   327)  ->  Abs (   111,   749)
+	 14: Rel (     0,   200)  ->  Abs (   111,   949)
+	 15: Rel (   151,   330)  ->  Abs (   262,  1279)
+	 16: Rel (   312,   212)  ->  Abs (   574,  1491)
+	 17: Rel (   216,     0)  ->  Abs (   790,  1491)
+	 18: Rel (   228,     0)  ->  Abs (  1018,  1491)
+	 19: Rel (   307,  -226)  ->  Abs (  1325,  1265)
+	 20: Rel (    54,  -201)  ->  Abs (  1379,  1064)
+	 21: Rel (  -190,   -50)  ->  Abs (  1189,  1014)
+	 22: Rel (   -83,   307)  ->  Abs (  1106,  1321)
+	 23: Rel (  -317,     0)  ->  Abs (   789,  1321)
+	 24: Rel (  -214,     0)  ->  Abs (   575,  1321)
+	 25: Rel (  -243,  -258)  ->  Abs (   332,  1063)
+	 26: Rel (   -12,  -220)  ->  Abs (   320,   843)
+
+	Glyph 560: off = 0x000191F2, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			92
+	  yMin:			-25
+	  xMax:			1259
+	  yMax:			1491
+
+	     0: Flags:		0x0206
+		Glyf Index:	54
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 561: off = 0x00019202, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			191
+	  yMin:			0
+	  xMax:			385
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 562: off = 0x00019212, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			4
+	  yMin:			0
+	  xMax:			565
+	  yMax:			1761
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	-57
+		Y WOffset:	286
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              2     1     1     2     2    11 
+	00007: PUSHW[2]            545    41 
+	00012: SVTCA[y-axis] 
+	00013: CALL       
+	00014: SVTCA[x-axis] 
+	00015: PUSHB[2]              6     2 
+	00018: RS         
+	00019: EQ         
+	00020: IF         
+	00021: PUSHB[6]              0     5    10     1     2    65 
+	00028: CALL       
+	00029: ELSE       
+	00030: PUSHB[5]              8     2     0    72    43 
+	00036: CALL       
+	00037: EIF        
+	00038: SHC[rp1,zp0] 
+	00039: SHC[rp1,zp0] 
+
+	Glyph 563: off = 0x00019254, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			55
+	  yMin:			-25
+	  xMax:			865
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	45
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 564: off = 0x00019264, len = 404
+	  numberOfContours:	2
+	  xMin:			13
+	  yMin:			-25
+	  xMax:			2089
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  27
+	  1:  38
+
+	  Length of Instructions:	280
+	00000: PUSHB[3]             61     8    21 
+	00004: PUSHW[1]            270 
+	00007: NPUSHB      (17):    20    98    18     1    30    38    38    11    13    30 
+	                            27     2    28    30    11     8    23 
+	00026: PUSHW[1]            584 
+	00029: NPUSHB      (30):    18     9    11    32     0    28    10    16    16     2 
+	                            85    28    36    15    15     2    85    28    30    13 
+	                            13     2    85    28    10    11    11     6    85    28 
+	00061: PUSHW[1]            -10 
+	00064: NPUSHB      (11):    12    12     6    85    28    32    13    13     6    85 
+	                            28 
+	00077: PUSHW[1]            -24 
+	00080: NPUSHB      (19):    14    15     6    85    28    25    16    16     6    85 
+	                           128    28     1    28    28    26    33    38     6 
+	00101: PUSHW[1]            -11 
+	00104: PUSHB[5]             12    13     6    85     6 
+	00110: PUSHW[1]            -64 
+	00113: NPUSHB      (19):    36    37    52    48     6     1     0     6    16     6 
+	                            32     6     3     6    49    40    14    32    26 
+	00134: PUSHW[1]            -16 
+	00137: NPUSHB      (11):    16    16     2    85    26    10    13    13     2    85 
+	                            26 
+	00150: PUSHW[1]            570 
+	00153: NPUSHB      (17):    21    74    20    12    11    12     6    85    20     2 
+	                            16    16     6    85    20    45    39 
+	00172: SRP0       
+	00173: MIRP[srp0,nmd,rd,2] 
+	00174: CALL       
+	00175: CALL       
+	00176: MIRP[nrp0,nmd,rd,0] 
+	00177: MIRP[srp0,nmd,rd,0] 
+	00178: CALL       
+	00179: CALL       
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: SRP0       
+	00182: MIRP[srp0,nmd,rd,2] 
+	00183: DELTAP1    
+	00184: DELTAP1    
+	00185: CALL       
+	00186: CALL       
+	00187: MIRP[nrp0,md,rd,1] 
+	00188: SRP2       
+	00189: IP         
+	00190: MDAP[rd]   
+	00191: DELTAP1    
+	00192: CALL       
+	00193: CALL       
+	00194: CALL       
+	00195: CALL       
+	00196: CALL       
+	00197: CALL       
+	00198: CALL       
+	00199: CALL       
+	00200: ALIGNRP    
+	00201: MIRP[nrp0,md,rd,1] 
+	00202: SVTCA[y-axis] 
+	00203: MIAP[rd+ci] 
+	00204: MIRP[nrp0,md,rd,1] 
+	00205: MIAP[rd+ci] 
+	00206: MIRP[nrp0,md,rd,1] 
+	00207: MIAP[rd+ci] 
+	00208: MIRP[nrp0,md,rd,1] 
+	00209: SRP2       
+	00210: IP         
+	00211: MDAP[rd]   
+	00212: MIRP[nrp0,md,rd,1] 
+	00213: SRP0       
+	00214: MIRP[srp0,md,rd,1] 
+	00215: MIRP[nrp0,md,rd,1] 
+	00216: IUP[y]     
+	00217: IUP[x]     
+	00218: RS         
+	00219: JROF       
+	00220: NPUSHB      (44):    24    36     3    17    16    38     8    38    31    37 
+	                             4    37    35    38    24    17    26    44     1    30 
+	                             9    33    54     1    36     3    33    54     1    25 
+	                            15    23    44     0    32     7    29    54     0    34 
+	                             5    37    54     1 
+	00266: CALL       
+	00267: CALL       
+	00268: CALL       
+	00269: SVTCA[x-axis] 
+	00270: CALL       
+	00271: CALL       
+	00272: CALL       
+	00273: CALL       
+	00274: CALL       
+	00275: CALL       
+	00276: CALL       
+	00277: CALL       
+	00278: FLIPRGON   
+	00279: FLIPRGON   
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                               On
+	 12:        XDual                         On
+	 13:  YDual                               On
+	 14:        XDual                         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:        XDual                         On
+	 28:                                      On
+	 29:  YDual                               On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1178,  1466)  ->  Abs (  1178,  1466)
+	  1: Rel (     0,  -626)  ->  Abs (  1178,   840)
+	  2: Rel (   350,     0)  ->  Abs (  1528,   840)
+	  3: Rel (   243,     0)  ->  Abs (  1771,   840)
+	  4: Rel (   220,  -111)  ->  Abs (  1991,   729)
+	  5: Rel (    98,  -198)  ->  Abs (  2089,   531)
+	  6: Rel (     0,  -104)  ->  Abs (  2089,   427)
+	  7: Rel (     0,  -137)  ->  Abs (  2089,   290)
+	  8: Rel (  -141,  -213)  ->  Abs (  1948,    77)
+	  9: Rel (  -201,   -77)  ->  Abs (  1747,     0)
+	 10: Rel (  -190,     0)  ->  Abs (  1557,     0)
+	 11: Rel (  -573,     0)  ->  Abs (   984,     0)
+	 12: Rel (     0,  1293)  ->  Abs (   984,  1293)
+	 13: Rel (  -530,     0)  ->  Abs (   454,  1293)
+	 14: Rel (     0,  -755)  ->  Abs (   454,   538)
+	 15: Rel (     0,  -230)  ->  Abs (   454,   308)
+	 16: Rel (   -43,  -214)  ->  Abs (   411,    94)
+	 17: Rel (  -138,  -119)  ->  Abs (   273,   -25)
+	 18: Rel (  -106,     0)  ->  Abs (   167,   -25)
+	 19: Rel (   -64,     0)  ->  Abs (   103,   -25)
+	 20: Rel (   -90,    24)  ->  Abs (    13,    -1)
+	 21: Rel (    33,   172)  ->  Abs (    46,   171)
+	 22: Rel (    48,   -20)  ->  Abs (    94,   151)
+	 23: Rel (    34,     0)  ->  Abs (   128,   151)
+	 24: Rel (    66,     0)  ->  Abs (   194,   151)
+	 25: Rel (    66,    99)  ->  Abs (   260,   250)
+	 26: Rel (     0,   184)  ->  Abs (   260,   434)
+	 27: Rel (     0,  1032)  ->  Abs (   260,  1466)
+	 28: Rel (   918, -1301)  ->  Abs (  1178,   165)
+	 29: Rel (   388,     0)  ->  Abs (  1566,   165)
+	 30: Rel (   106,     0)  ->  Abs (  1672,   165)
+	 31: Rel (   122,    41)  ->  Abs (  1794,   206)
+	 32: Rel (    87,   119)  ->  Abs (  1881,   325)
+	 33: Rel (     0,    96)  ->  Abs (  1881,   421)
+	 34: Rel (     0,    91)  ->  Abs (  1881,   512)
+	 35: Rel (   -93,   123)  ->  Abs (  1788,   635)
+	 36: Rel (  -157,    38)  ->  Abs (  1631,   673)
+	 37: Rel (  -193,     0)  ->  Abs (  1438,   673)
+	 38: Rel (  -260,     0)  ->  Abs (  1178,   673)
+
+	Glyph 565: off = 0x000193F8, len = 428
+	  numberOfContours:	2
+	  xMin:			164
+	  yMin:			0
+	  xMax:			1993
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  20
+	  1:  31
+
+	  Length of Instructions:	324
+	00000: NPUSHB      (47):    43     8    12    31    19     1    30    31    31    11 
+	                            20    17     2    21    30    14    11     8    20    11 
+	                            32     0    21    32    15    16     2    85    21     6 
+	                            13    13     2    85    21    32    12    12     2    85 
+	                            21    12    11    11     6    85    21 
+	00049: PUSHW[1]            -12 
+	00052: NPUSHB      (11):    12    12     6    85    21    24    13    13     6    85 
+	                            21 
+	00065: PUSHW[1]            -30 
+	00068: NPUSHB      (34):    15    15     6    85    21    16    16    16     6    85 
+	                            21    21    15    26    38     6    30    13    13     2 
+	                            85     6    22    12    12     2    85     6    12    11 
+	                            11     2    85     6 
+	00104: PUSHW[1]            -11 
+	00107: PUSHB[5]             11    11     6    85     6 
+	00113: PUSHW[1]            -14 
+	00116: PUSHB[5]             12    12     6    85     6 
+	00122: PUSHW[1]            -12 
+	00125: PUSHB[5]             13    13     6    85     6 
+	00131: PUSHW[1]            -64 
+	00134: NPUSHB      (26):    36    37    52    48     6     1     0     6    16     6 
+	                            32     6     3     6    49    33    17    14    32    15 
+	                            32    16    16     2    85    15 
+	00162: PUSHW[1]            -10 
+	00165: PUSHB[5]             15    15     2    85    15 
+	00171: PUSHW[1]            -10 
+	00174: PUSHB[5]             13    13     2    85    15 
+	00180: PUSHW[1]             -6 
+	00183: PUSHB[5]             12    12     2    85    15 
+	00189: PUSHW[1]             -6 
+	00192: PUSHB[5]             12    12     6    85    15 
+	00198: PUSHW[1]            -12 
+	00201: PUSHB[5]             13    13     6    85    15 
+	00207: PUSHW[1]             -8 
+	00210: PUSHB[5]             15    15     6    85    15 
+	00216: PUSHW[1]             -4 
+	00219: PUSHB[7]             16    16     6    85    15    93    32 
+	00227: SRP0       
+	00228: MIRP[srp0,nmd,rd,2] 
+	00229: CALL       
+	00230: CALL       
+	00231: CALL       
+	00232: CALL       
+	00233: CALL       
+	00234: CALL       
+	00235: CALL       
+	00236: CALL       
+	00237: MIRP[srp0,md,rd,1] 
+	00238: ALIGNRP    
+	00239: SRP0       
+	00240: MIRP[srp0,nmd,rd,0] 
+	00241: DELTAP1    
+	00242: DELTAP1    
+	00243: CALL       
+	00244: CALL       
+	00245: CALL       
+	00246: CALL       
+	00247: CALL       
+	00248: CALL       
+	00249: CALL       
+	00250: MIRP[nrp0,md,rd,1] 
+	00251: SRP2       
+	00252: IP         
+	00253: MDAP[rd]   
+	00254: CALL       
+	00255: CALL       
+	00256: CALL       
+	00257: CALL       
+	00258: CALL       
+	00259: CALL       
+	00260: CALL       
+	00261: CALL       
+	00262: ALIGNRP    
+	00263: MIRP[srp0,md,rd,1] 
+	00264: ALIGNRP    
+	00265: SVTCA[y-axis] 
+	00266: MIAP[rd+ci] 
+	00267: ALIGNRP    
+	00268: MIRP[nrp0,md,rd,1] 
+	00269: MIAP[rd+ci] 
+	00270: ALIGNRP    
+	00271: SRP2       
+	00272: IP         
+	00273: MDAP[rd]   
+	00274: MIRP[srp0,md,rd,1] 
+	00275: ALIGNRP    
+	00276: SRP0       
+	00277: ALIGNRP    
+	00278: IUP[y]     
+	00279: IUP[x]     
+	00280: RS         
+	00281: JROF       
+	00282: NPUSHB      (30):     3    29     8    38    24    37     4    37    28    38 
+	                            23     9    26    54     1    29     3    26    54     1 
+	                            25     7    22    54     0    27     5    30    54     1 
+	00314: CALL       
+	00315: CALL       
+	00316: SVTCA[x-axis] 
+	00317: CALL       
+	00318: CALL       
+	00319: CALL       
+	00320: CALL       
+	00321: CALL       
+	00322: CALL       
+	00323: FLIPRGON   
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                               On
+	 12:        XDual                         On
+	 13:  YDual                               On
+	 14:        XDual                         On
+	 15:  YDual                       X-Short On
+	 16:        XDual                         On
+	 17:  YDual XDual                 X-Short On
+	 18:        XDual                         On
+	 19:  YDual                               On
+	 20:        XDual                         On
+	 21:        XDual                 X-Short On
+	 22:  YDual                               On
+	 23:  YDual XDual                 X-Short Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1082,  1466)  ->  Abs (  1082,  1466)
+	  1: Rel (     0,  -626)  ->  Abs (  1082,   840)
+	  2: Rel (   326,     0)  ->  Abs (  1408,   840)
+	  3: Rel (   209,     0)  ->  Abs (  1617,   840)
+	  4: Rel (   233,   -70)  ->  Abs (  1850,   770)
+	  5: Rel (   143,  -206)  ->  Abs (  1993,   564)
+	  6: Rel (     0,  -137)  ->  Abs (  1993,   427)
+	  7: Rel (     0,  -143)  ->  Abs (  1993,   284)
+	  8: Rel (  -151,  -216)  ->  Abs (  1842,    68)
+	  9: Rel (  -201,   -68)  ->  Abs (  1641,     0)
+	 10: Rel (  -192,     0)  ->  Abs (  1449,     0)
+	 11: Rel (  -561,     0)  ->  Abs (   888,     0)
+	 12: Rel (     0,   673)  ->  Abs (   888,   673)
+	 13: Rel (  -530,     0)  ->  Abs (   358,   673)
+	 14: Rel (     0,  -673)  ->  Abs (   358,     0)
+	 15: Rel (  -194,     0)  ->  Abs (   164,     0)
+	 16: Rel (     0,  1466)  ->  Abs (   164,  1466)
+	 17: Rel (   194,     0)  ->  Abs (   358,  1466)
+	 18: Rel (     0,  -626)  ->  Abs (   358,   840)
+	 19: Rel (   530,     0)  ->  Abs (   888,   840)
+	 20: Rel (     0,   626)  ->  Abs (   888,  1466)
+	 21: Rel (   194, -1301)  ->  Abs (  1082,   165)
+	 22: Rel (   363,     0)  ->  Abs (  1445,   165)
+	 23: Rel (   124,     0)  ->  Abs (  1569,   165)
+	 24: Rel (   123,    36)  ->  Abs (  1692,   201)
+	 25: Rel (    93,   121)  ->  Abs (  1785,   322)
+	 26: Rel (     0,    99)  ->  Abs (  1785,   421)
+	 27: Rel (     0,    85)  ->  Abs (  1785,   506)
+	 28: Rel (   -82,   122)  ->  Abs (  1703,   628)
+	 29: Rel (  -167,    45)  ->  Abs (  1536,   673)
+	 30: Rel (  -218,     0)  ->  Abs (  1318,   673)
+	 31: Rel (  -236,     0)  ->  Abs (  1082,   673)
+
+	Glyph 566: off = 0x000195A4, len = 394
+	  numberOfContours:	1
+	  xMin:			49
+	  yMin:			0
+	  xMax:			1656
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  23
+
+	  Length of Instructions:	313
+	00000: NPUSHB      (13):   102     4   119     4   135     4     3    25     8    19 
+	                            12     4     6 
+	00015: PUSHW[1]            584 
+	00018: NPUSHB      (12):    17    17    12     2    23    30     0     2    20    12 
+	                             8     2 
+	00032: PUSHW[1]            648 
+	00035: PUSHB[4]             21    12    32    10 
+	00040: PUSHW[1]            -44 
+	00043: NPUSHB      (17):    16    16     2    85    10    10    15    15     2    85 
+	                            10    20    13    13     2    85    10 
+	00062: PUSHW[1]            -46 
+	00065: NPUSHB      (11):    12    13     2    85    10    19    16    16     6    85 
+	                            10 
+	00078: PUSHW[1]            -21 
+	00081: PUSHB[5]             13    13     6    85    10 
+	00087: PUSHW[1]            -32 
+	00090: PUSHB[5]             12    12     6    85    10 
+	00096: PUSHW[1]            -42 
+	00099: NPUSHB      (18):    11    11     6    85    10    64    51    54    52   255 
+	                            10     1   192    10     1    10    78    25 
+	00119: PUSHW[1]            -64 
+	00122: NPUSHB      (25):    52    54    52   176    25   240    25     2    16    25 
+	                           112    25   160    25   176    25   255    25     5    25 
+	                            21    32    20    20     3 
+	00149: PUSHW[3]            648     0   -32 
+	00156: PUSHB[5]             16    16     2    85     0 
+	00162: PUSHW[1]            -38 
+	00165: PUSHB[5]             13    13     2    85     0 
+	00171: PUSHW[1]            -18 
+	00174: PUSHB[5]             12    12     2    85     0 
+	00180: PUSHW[1]             -2 
+	00183: NPUSHB      (11):    11    11     2    85     0     9    16    16     6    85 
+	                             0 
+	00196: PUSHW[1]             -9 
+	00199: PUSHB[5]             15    15     6    85     0 
+	00205: PUSHW[1]            -39 
+	00208: PUSHB[5]             13    13     6    85     0 
+	00214: PUSHW[1]            -12 
+	00217: NPUSHB      (16):    12    12     6    85     0     4    11    11     6    85 
+	                             0     0     1     0   227    24 
+	00235: SRP0       
+	00236: MIRP[srp0,nmd,rd,2] 
+	00237: DELTAP2    
+	00238: CALL       
+	00239: CALL       
+	00240: CALL       
+	00241: CALL       
+	00242: CALL       
+	00243: CALL       
+	00244: CALL       
+	00245: CALL       
+	00246: CALL       
+	00247: MIRP[srp0,md,rd,1] 
+	00248: ALIGNRP    
+	00249: SRP0       
+	00250: MIRP[nrp0,md,rd,1] 
+	00251: SRP0       
+	00252: DELTAP1    
+	00253: DELTAP2    
+	00254: CALL       
+	00255: MIRP[srp0,nmd,rd,2] 
+	00256: DELTAP1    
+	00257: DELTAP2    
+	00258: CALL       
+	00259: CALL       
+	00260: CALL       
+	00261: CALL       
+	00262: CALL       
+	00263: CALL       
+	00264: CALL       
+	00265: CALL       
+	00266: CALL       
+	00267: MIRP[nrp0,md,rd,1] 
+	00268: SRP0       
+	00269: MIRP[nrp0,md,rd,1] 
+	00270: SVTCA[y-axis] 
+	00271: MIAP[rd+ci] 
+	00272: ALIGNRP    
+	00273: MIAP[rd+ci] 
+	00274: MIRP[srp0,md,rd,1] 
+	00275: ALIGNRP    
+	00276: SRP2       
+	00277: IP         
+	00278: MDAP[rd]   
+	00279: MIRP[nrp0,md,rd,1] 
+	00280: IP         
+	00281: SRP2       
+	00282: IP         
+	00283: IUP[y]     
+	00284: IUP[x]     
+	00285: RS         
+	00286: JROF       
+	00287: NPUSHB      (16):     7    16     8    37    15    38    16     7    13    54 
+	                             1    14     9    17    54     1 
+	00305: CALL       
+	00306: SVTCA[x-axis] 
+	00307: CALL       
+	00308: CALL       
+	00309: CALL       
+	00310: FLIPRGON   
+	00311: SVTCA[y-axis] 
+	00312: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual               Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual                         On
+	 12:  YDual                       X-Short On
+	 13:        XDual                         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:                      Y-Short         On
+	 20:        XDual                         On
+	 21:  YDual                       X-Short On
+	 22:        XDual                         On
+	 23:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (    49,  1466)  ->  Abs (    49,  1466)
+	  1: Rel (  1173,     0)  ->  Abs (  1222,  1466)
+	  2: Rel (     0,  -173)  ->  Abs (  1222,  1293)
+	  3: Rel (  -489,     0)  ->  Abs (   733,  1293)
+	  4: Rel (     0,  -451)  ->  Abs (   733,   842)
+	  5: Rel (   273,    94)  ->  Abs (  1006,   936)
+	  6: Rel (   164,     0)  ->  Abs (  1170,   936)
+	  7: Rel (   159,     0)  ->  Abs (  1329,   936)
+	  8: Rel (   236,  -129)  ->  Abs (  1565,   807)
+	  9: Rel (    91,  -224)  ->  Abs (  1656,   583)
+	 10: Rel (     0,  -197)  ->  Abs (  1656,   386)
+	 11: Rel (     0,  -386)  ->  Abs (  1656,     0)
+	 12: Rel (  -194,     0)  ->  Abs (  1462,     0)
+	 13: Rel (     0,   379)  ->  Abs (  1462,   379)
+	 14: Rel (     0,   144)  ->  Abs (  1462,   523)
+	 15: Rel (   -54,   159)  ->  Abs (  1408,   682)
+	 16: Rel (  -143,    90)  ->  Abs (  1265,   772)
+	 17: Rel (  -106,     0)  ->  Abs (  1159,   772)
+	 18: Rel (  -161,     0)  ->  Abs (   998,   772)
+	 19: Rel (  -265,   -92)  ->  Abs (   733,   680)
+	 20: Rel (     0,  -680)  ->  Abs (   733,     0)
+	 21: Rel (  -194,     0)  ->  Abs (   539,     0)
+	 22: Rel (     0,  1293)  ->  Abs (   539,  1293)
+	 23: Rel (  -490,     0)  ->  Abs (    49,  1293)
+
+	Glyph 567: off = 0x0001972E, len = 40
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			0
+	  xMax:			1186
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	580
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	303
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1     1    34 
+	00004: PUSHW[3]            545    41   356 
+	00011: SCANCTRL   
+	00012: SVTCA[y-axis] 
+	00013: CALL       
+
+	Glyph 568: off = 0x00019756, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			10
+	  yMin:			-20
+	  xMax:			1295
+	  yMax:			1815
+
+	     0: Flags:		0x0226
+		Glyf Index:	589
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	217
+		X WOffset:	356
+		Y WOffset:	351
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    24    18     0     4    65     1     1    21 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 569: off = 0x00019786, len = 348
+	  numberOfContours:	1
+	  xMin:			160
+	  yMin:			-407
+	  xMax:			1313
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	301
+	00000: NPUSHB      (25):    16    13     1    15    13    32    13   128    13   224 
+	                            13     4     9     6     2     2     7    30     4     4 
+	                            11     8     8    32    11 
+	00027: PUSHW[1]            -28 
+	00030: NPUSHB      (11):    15    15     2    85    11    16    12    12     2    85 
+	                            11 
+	00043: PUSHW[1]            -19 
+	00046: NPUSHB      (50):    11    11     6    85    11     2    12    12     6    85 
+	                            11    10    13    13     6    85    11    25    15    15 
+	                             6    85    64    11    96    11     2    32    11    79 
+	                            11    96    11   144    11   160    11   192    11     6 
+	                            32    11    96    11   192    11   240    11     4    11 
+	00098: PUSHW[1]            532 
+	00101: NPUSHB      (10):     2     7    32     4    36    16    16     2    85     4 
+	00113: PUSHW[1]            -25 
+	00116: PUSHB[5]             15    15     2    85     4 
+	00122: PUSHW[1]             -2 
+	00125: PUSHB[5]             13    13     2    85     4 
+	00131: PUSHW[1]             -4 
+	00134: NPUSHB      (25):    12    12     2    85     4    16    11    11     2    85 
+	                             4    14    11    11     6    85    64     4   143     4 
+	                             2    95     4     1     4 
+	00161: PUSHW[1]            532 
+	00164: NPUSHB      (15):     1     6    13    13     2    85     1    30     2    12 
+	                            15    15     2    85     2 
+	00181: PUSHW[1]            -14 
+	00184: PUSHB[5]             13    13     2    85     2 
+	00190: PUSHW[1]            -16 
+	00193: PUSHB[5]             11    11     2    85     2 
+	00199: PUSHW[1]            -10 
+	00202: PUSHB[5]             11    11     6    85     2 
+	00208: PUSHW[1]             -6 
+	00211: PUSHB[5]             12    12     6    85     2 
+	00217: PUSHW[1]             -8 
+	00220: PUSHB[5]             13    13     6    85     2 
+	00226: PUSHW[1]            -10 
+	00229: NPUSHB      (22):    15    15     6    85     0     2    80     2   160     2 
+	                           176     2   240     2     5    80     2     1   144     2 
+	                             1     2 
+	00253: MDAP[rd]   
+	00254: DELTAP1    
+	00255: DELTAP2    
+	00256: DELTAP3    
+	00257: CALL       
+	00258: CALL       
+	00259: CALL       
+	00260: CALL       
+	00261: CALL       
+	00262: CALL       
+	00263: CALL       
+	00264: MIRP[srp0,md,rd,1] 
+	00265: CALL       
+	00266: MIRP[srp0,md,rd,1] 
+	00267: DELTAP1    
+	00268: DELTAP2    
+	00269: CALL       
+	00270: CALL       
+	00271: CALL       
+	00272: CALL       
+	00273: CALL       
+	00274: CALL       
+	00275: MIRP[nrp0,md,rd,1] 
+	00276: SRP0       
+	00277: MIRP[srp0,md,rd,1] 
+	00278: DELTAP1    
+	00279: DELTAP2    
+	00280: DELTAP3    
+	00281: CALL       
+	00282: CALL       
+	00283: CALL       
+	00284: CALL       
+	00285: CALL       
+	00286: CALL       
+	00287: MIRP[nrp0,md,rd,1] 
+	00288: SVTCA[y-axis] 
+	00289: MIAP[rd+ci] 
+	00290: ALIGNRP    
+	00291: SRP0       
+	00292: MIRP[nrp0,md,rd,1] 
+	00293: MDAP[rd]   
+	00294: MIAP[rd+ci] 
+	00295: ALIGNRP    
+	00296: IUP[y]     
+	00297: IUP[x]     
+	00298: SVTCA[x-axis] 
+	00299: DELTAP1    
+	00300: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:  YDual                               On
+	  9:        XDual                         On
+	 10:  YDual XDual                 X-Short On
+	 11:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   823,     0)  ->  Abs (   823,     0)
+	  1: Rel (     0,  -407)  ->  Abs (   823,  -407)
+	  2: Rel (  -173,     0)  ->  Abs (   650,  -407)
+	  3: Rel (     0,   407)  ->  Abs (   650,     0)
+	  4: Rel (  -490,     0)  ->  Abs (   160,     0)
+	  5: Rel (     0,  1466)  ->  Abs (   160,  1466)
+	  6: Rel (   194,     0)  ->  Abs (   354,  1466)
+	  7: Rel (     0, -1293)  ->  Abs (   354,   173)
+	  8: Rel (   764,     0)  ->  Abs (  1118,   173)
+	  9: Rel (     0,  1293)  ->  Abs (  1118,  1466)
+	 10: Rel (   195,     0)  ->  Abs (  1313,  1466)
+	 11: Rel (     0, -1466)  ->  Abs (  1313,     0)
+
+	Glyph 570: off = 0x000198E2, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 571: off = 0x000198F2, len = 312
+	  numberOfContours:	2
+	  xMin:			167
+	  yMin:			0
+	  xMax:			1272
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  14
+	  1:  24
+
+	  Length of Instructions:	228
+	00000: NPUSHB      (21):    40     8     4    30    24    24    14     3    30     0 
+	                             2    15    30    14     8     2     2     0    19    38 
+	                             9 
+	00023: PUSHW[1]            -15 
+	00026: PUSHB[5]             11    12     6    85     9 
+	00032: PUSHW[1]             -8 
+	00035: NPUSHB      (11):    13    13     6    85     9     4    16    16     6    85 
+	                             9 
+	00048: PUSHW[1]            -64 
+	00051: NPUSHB      (19):    36    37    52    48     9     1     0     9    16     9 
+	                            32     9     3     9    49   223    26     1    26 
+	00072: PUSHW[1]            -64 
+	00075: NPUSHB      (17):    30    35    52    48    26     1    26     3    15    32 
+	                             0    32    16    16     2    85     0 
+	00094: PUSHW[1]            -10 
+	00097: PUSHB[5]             15    15     2    85     0 
+	00103: PUSHW[1]            -10 
+	00106: PUSHB[5]             13    13     2    85     0 
+	00112: PUSHW[1]             -6 
+	00115: PUSHB[5]             12    12     2    85     0 
+	00121: PUSHW[1]            -10 
+	00124: PUSHB[5]             12    12     6    85     0 
+	00130: PUSHW[1]            -18 
+	00133: PUSHB[5]             13    13     6    85     0 
+	00139: PUSHW[1]            -10 
+	00142: PUSHB[7]             15    16     6    85     0    93    25 
+	00150: SRP0       
+	00151: MIRP[srp0,nmd,rd,2] 
+	00152: CALL       
+	00153: CALL       
+	00154: CALL       
+	00155: CALL       
+	00156: CALL       
+	00157: CALL       
+	00158: CALL       
+	00159: MIRP[srp0,md,rd,1] 
+	00160: ALIGNRP    
+	00161: SRP0       
+	00162: DELTAP2    
+	00163: CALL       
+	00164: DELTAP1    
+	00165: MIRP[srp0,nmd,rd,2] 
+	00166: DELTAP1    
+	00167: DELTAP1    
+	00168: CALL       
+	00169: CALL       
+	00170: CALL       
+	00171: CALL       
+	00172: MIRP[nrp0,md,rd,1] 
+	00173: SRP2       
+	00174: IP         
+	00175: MDAP[rd]   
+	00176: SVTCA[y-axis] 
+	00177: MIAP[rd+ci] 
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: MIAP[rd+ci] 
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: SRP2       
+	00182: IP         
+	00183: MDAP[rd]   
+	00184: MIRP[srp0,md,rd,1] 
+	00185: IUP[y]     
+	00186: IUP[x]     
+	00187: RS         
+	00188: JROF       
+	00189: NPUSHB      (28):     6    22    11    38     7    37    21    38    17    12 
+	                            19    54     1    22     6    19    54     1    18    10 
+	                            16    54     0    20     8    23    54     1 
+	00219: CALL       
+	00220: CALL       
+	00221: SVTCA[x-axis] 
+	00222: CALL       
+	00223: CALL       
+	00224: CALL       
+	00225: CALL       
+	00226: CALL       
+	00227: FLIPRGON   
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual                               On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                               On
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual                               On
+	 17:  YDual XDual                 X-Short Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   167,  1466)  ->  Abs (   167,  1466)
+	  1: Rel (   951,     0)  ->  Abs (  1118,  1466)
+	  2: Rel (     0,  -173)  ->  Abs (  1118,  1293)
+	  3: Rel (  -757,     0)  ->  Abs (   361,  1293)
+	  4: Rel (     0,  -452)  ->  Abs (   361,   841)
+	  5: Rel (   350,     0)  ->  Abs (   711,   841)
+	  6: Rel (   194,     0)  ->  Abs (   905,   841)
+	  7: Rel (   229,   -74)  ->  Abs (  1134,   767)
+	  8: Rel (   138,  -205)  ->  Abs (  1272,   562)
+	  9: Rel (     0,  -136)  ->  Abs (  1272,   426)
+	 10: Rel (     0,  -111)  ->  Abs (  1272,   315)
+	 11: Rel (   -99,  -193)  ->  Abs (  1173,   122)
+	 12: Rel (  -196,  -122)  ->  Abs (   977,     0)
+	 13: Rel (  -236,     0)  ->  Abs (   741,     0)
+	 14: Rel (  -574,     0)  ->  Abs (   167,     0)
+	 15: Rel (   194,   165)  ->  Abs (   361,   165)
+	 16: Rel (   388,     0)  ->  Abs (   749,   165)
+	 17: Rel (   157,     0)  ->  Abs (   906,   165)
+	 18: Rel (   157,   128)  ->  Abs (  1063,   293)
+	 19: Rel (     0,   128)  ->  Abs (  1063,   421)
+	 20: Rel (     0,    91)  ->  Abs (  1063,   512)
+	 21: Rel (   -90,   122)  ->  Abs (   973,   634)
+	 22: Rel (  -160,    40)  ->  Abs (   813,   674)
+	 23: Rel (  -193,     0)  ->  Abs (   620,   674)
+	 24: Rel (  -259,     0)  ->  Abs (   361,   674)
+
+	Glyph 572: off = 0x00019A2A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			150
+	  yMin:			0
+	  xMax:			1257
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	37
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 573: off = 0x00019A3A, len = 154
+	  numberOfContours:	1
+	  xMin:			161
+	  yMin:			0
+	  xMax:			1109
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	123
+	00000: NPUSHB      (23):     2     3    30     1     0     2     5     8     1    26 
+	                             7     3     4    32     5     5     0    36    16    16 
+	                             2    85     0 
+	00025: PUSHW[1]            -14 
+	00028: PUSHB[5]             15    15     2    85     0 
+	00034: PUSHW[1]            -22 
+	00037: PUSHB[5]             13    13     2    85     0 
+	00043: PUSHW[1]             -2 
+	00046: PUSHB[5]             12    12     2    85     0 
+	00052: PUSHW[1]            -10 
+	00055: PUSHB[5]             16    16     6    85     0 
+	00061: PUSHW[1]            -12 
+	00064: PUSHB[5]             15    15     6    85     0 
+	00070: PUSHW[1]            -23 
+	00073: PUSHB[5]             13    13     6    85     0 
+	00079: PUSHW[1]            -10 
+	00082: NPUSHB      (10):    12    12     6    85     0    25     6    59   142    24 
+	00094: CALL       
+	00095: FLIPOFF    
+	00096: SRP0       
+	00097: MIRP[srp0,nmd,rd,0] 
+	00098: CALL       
+	00099: CALL       
+	00100: CALL       
+	00101: CALL       
+	00102: CALL       
+	00103: CALL       
+	00104: CALL       
+	00105: CALL       
+	00106: ALIGNRP    
+	00107: FLIPON     
+	00108: SRP0       
+	00109: MIRP[srp0,md,rd,1] 
+	00110: ALIGNRP    
+	00111: FLIPOFF    
+	00112: SRP0       
+	00113: MIRP[nrp0,nmd,rd,2] 
+	00114: SVTCA[y-axis] 
+	00115: MIAP[rd+ci] 
+	00116: MIAP[rd+ci] 
+	00117: ALIGNRP    
+	00118: FLIPON     
+	00119: MIRP[srp0,md,rd,1] 
+	00120: ALIGNRP    
+	00121: IUP[y]     
+	00122: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   161,  1466)  ->  Abs (   161,  1466)
+	  1: Rel (   948,     0)  ->  Abs (  1109,  1466)
+	  2: Rel (     0,  -173)  ->  Abs (  1109,  1293)
+	  3: Rel (  -754,     0)  ->  Abs (   355,  1293)
+	  4: Rel (     0, -1293)  ->  Abs (   355,     0)
+	  5: Rel (  -194,     0)  ->  Abs (   161,     0)
+
+	Glyph 574: off = 0x00019AD4, len = 352
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			-342
+	  xMax:			1315
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  20
+
+	  Length of Instructions:	274
+	00000: NPUSHB      (21):    15    22    47    22     2    15    30     0     2     5 
+	                             9     2    19     3    10    30     7     8    13    30 
+	                            16 
+	00023: PUSHW[1]            -32 
+	00026: PUSHB[5]             16    16     2    85    16 
+	00032: PUSHW[1]            -14 
+	00035: PUSHB[5]             13    13     2    85    16 
+	00041: PUSHW[1]            -24 
+	00044: NPUSHB      (11):    11    11     2    85    16    10    13    13     6    85 
+	                            16 
+	00057: PUSHW[1]             -8 
+	00060: PUSHB[5]             15    15     6    85    16 
+	00066: PUSHW[1]            -14 
+	00069: NPUSHB      (11):    16    16     6    85    16    16     3     9    20    32 
+	                             2 
+	00082: PUSHW[1]             -2 
+	00085: PUSHB[5]             12    12     2    85     2 
+	00091: PUSHW[1]            -24 
+	00094: PUSHB[5]             11    11     2    85     2 
+	00100: PUSHW[1]            -10 
+	00103: PUSHB[5]             11    12     6    85     2 
+	00109: PUSHW[1]            605 
+	00112: PUSHB[3]              5    30     3 
+	00116: PUSHW[1]            -32 
+	00119: NPUSHB      (17):    15    15     2    85     3    34    13    13     2    85 
+	                             3    10    11    12     6    85     3 
+	00138: PUSHW[1]            -40 
+	00141: PUSHB[5]             13    13     6    85     3 
+	00147: PUSHW[1]            -16 
+	00150: NPUSHB      (46):    15    15     6    85     3    10    16    16     6    85 
+	                             9    15     3     1    58    31     3   223     3     2 
+	                            15     3   143     3     2    15     3   159     3   175 
+	                             3   191     3   255     3     5     3    75    22    19 
+	                           101    11    11     8    30     9 
+	00198: PUSHW[1]            -10 
+	00201: NPUSHB      (16):    11    13     6    85     9    10    16    16     6    85 
+	                             9    31     9     1     9    21 
+	00219: SRP0       
+	00220: ALIGNRP    
+	00221: DELTAP3    
+	00222: SRP0       
+	00223: CALL       
+	00224: CALL       
+	00225: MIRP[nrp0,md,rd,1] 
+	00226: IP         
+	00227: MDAP[rd]   
+	00228: MIRP[nrp0,md,rd,1] 
+	00229: SRP0       
+	00230: MIRP[srp0,nmd,rd,2] 
+	00231: DELTAP1    
+	00232: DELTAP2    
+	00233: DELTAP3    
+	00234: SDB        
+	00235: DELTAP1    
+	00236: SDB        
+	00237: CALL       
+	00238: CALL       
+	00239: CALL       
+	00240: CALL       
+	00241: CALL       
+	00242: CALL       
+	00243: MIRP[nrp0,md,rd,1] 
+	00244: MIRP[srp0,nmd,rd,0] 
+	00245: CALL       
+	00246: CALL       
+	00247: CALL       
+	00248: MIRP[nrp0,md,rd,1] 
+	00249: SRP1       
+	00250: SRP2       
+	00251: IP         
+	00252: MDAP[rd]   
+	00253: CALL       
+	00254: CALL       
+	00255: CALL       
+	00256: CALL       
+	00257: CALL       
+	00258: CALL       
+	00259: MIRP[nrp0,md,rd,1] 
+	00260: SVTCA[y-axis] 
+	00261: MIAP[rd+ci] 
+	00262: MIRP[srp0,md,rd,1] 
+	00263: ALIGNRP    
+	00264: ALIGNRP    
+	00265: ALIGNRP    
+	00266: MDAP[rd]   
+	00267: ALIGNRP    
+	00268: MIAP[rd+ci] 
+	00269: MIRP[nrp0,md,rd,1] 
+	00270: IUP[y]     
+	00271: IUP[x]     
+	00272: SVTCA[x-axis] 
+	00273: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual XDual                 X-Short On
+	  4:        XDual                         On
+	  5:  YDual                       X-Short On
+	  6:        XDual                         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+	 10:        XDual                         On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                 X-Short Off
+	 13:        XDual                         On
+	 14:  YDual               Y-Short         On
+	 15:  YDual                               On
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                              X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   291,  1466)  ->  Abs (   291,  1466)
+	  1: Rel (   892,     0)  ->  Abs (  1183,  1466)
+	  2: Rel (     0, -1293)  ->  Abs (  1183,   173)
+	  3: Rel (   132,     0)  ->  Abs (  1315,   173)
+	  4: Rel (     0,  -515)  ->  Abs (  1315,  -342)
+	  5: Rel (  -173,     0)  ->  Abs (  1142,  -342)
+	  6: Rel (     0,   342)  ->  Abs (  1142,     0)
+	  7: Rel (  -969,     0)  ->  Abs (   173,     0)
+	  8: Rel (     0,  -342)  ->  Abs (   173,  -342)
+	  9: Rel (  -173,     0)  ->  Abs (     0,  -342)
+	 10: Rel (     0,   515)  ->  Abs (     0,   173)
+	 11: Rel (   114,     0)  ->  Abs (   114,   173)
+	 12: Rel (   177,   267)  ->  Abs (   291,   440)
+	 13: Rel (     0,   812)  ->  Abs (   291,  1252)
+	 14: Rel (   698,    41)  ->  Abs (   989,  1293)
+	 15: Rel (  -511,     0)  ->  Abs (   478,  1293)
+	 16: Rel (     0,   -75)  ->  Abs (   478,  1218)
+	 17: Rel (     0,  -187)  ->  Abs (   478,  1031)
+	 18: Rel (   -67,  -649)  ->  Abs (   411,   382)
+	 19: Rel (   -98,  -209)  ->  Abs (   313,   173)
+	 20: Rel (   676,     0)  ->  Abs (   989,   173)
+
+	Glyph 575: off = 0x00019C34, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			162
+	  yMin:			0
+	  xMax:			1256
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 576: off = 0x00019C44, len = 614
+	  numberOfContours:	1
+	  xMin:			7
+	  yMin:			0
+	  xMax:			1883
+	  yMax:			1467
+
+	EndPoints
+	---------
+	  0:  61
+
+	  Length of Instructions:	422
+	00000: NPUSHB     (165):   141    24   132    26   139    38   130    40     4    47 
+	                            63     1    15    63    47    63    64    63   119    20 
+	                           112    63   135    20   128    63   150    20   150    23 
+	                           153    41   153    44   224    63    12    40    28    40 
+	                            35    57    18    56    28    56    35    56    46    73 
+	                            46   104    27   104    36   136    44    10    73    18 
+	                            73    28    73    35   118    23   118    41   120    44 
+	                             6    39    25    56    58    58    32    44    46    20 
+	                            44    44    46    37    38    38    32    39    40    20 
+	                            39    39    40     5     3     3    32    20    18    20 
+	                            20    20    18    27    26    26    32    25    24    20 
+	                            25    25    24    58    56     3     5     4     8    60 
+	                            44    46    20    18     4    49    42    22    42    60 
+	                            37    40    27    24     4    33    37    40    32    39 
+	                            27    26    24     3    25     3     5    18    20    22 
+	                             3    31    11    46    44    42     3    58    56    32 
+	                            50     1    60    30    60 
+	00167: PUSHW[1]            605 
+	00170: PUSHB[8]             33    33    61    38    26    32     8    49 
+	00179: PUSHW[4]            584    53    11   270 
+	00188: NPUSHB      (22):    53     8   123    61     2   159    50     1    50    45 
+	                            39    26    11    11     6    85    79    39   143    39 
+	                             2    39 
+	00212: PUSHW[1]            370 
+	00215: PUSHB[7]             31   144    11     1    11    45    25 
+	00223: PUSHW[1]            -16 
+	00226: NPUSHB      (10):    11    11     6    85    64    25   128    25     2    25 
+	00238: PUSHW[1]            370 
+	00241: NPUSHB      (12):    32     0    31   101    61    32    12    16    16     2 
+	                            85    32 
+	00255: PUSHW[1]             -8 
+	00258: PUSHB[5]             15    15     2    85    32 
+	00264: PUSHW[1]             -2 
+	00267: PUSHB[5]             12    12     2    85    32 
+	00273: PUSHW[1]             -6 
+	00276: PUSHB[5]             11    11     6    85    32 
+	00282: PUSHW[1]             -2 
+	00285: NPUSHB      (13):    15    15     6    85   240    32     1   112    32   224 
+	                            32     2    32 
+	00300: MDAP[rd]   
+	00301: DELTAP1    
+	00302: DELTAP2    
+	00303: CALL       
+	00304: CALL       
+	00305: CALL       
+	00306: CALL       
+	00307: CALL       
+	00308: ALIGNRP    
+	00309: MIRP[srp0,md,rd,1] 
+	00310: ALIGNRP    
+	00311: SRP0       
+	00312: MIRP[srp0,md,rd,1] 
+	00313: DELTAP1    
+	00314: CALL       
+	00315: MIRP[nrp0,nmd,rd,0] 
+	00316: DELTAP2    
+	00317: SRP0       
+	00318: MIRP[srp0,md,rd,1] 
+	00319: DELTAP1    
+	00320: CALL       
+	00321: MIRP[nrp0,nmd,rd,0] 
+	00322: DELTAP2    
+	00323: SVTCA[y-axis] 
+	00324: MIAP[rd+ci] 
+	00325: MIRP[srp0,nmd,rd,0] 
+	00326: ALIGNRP    
+	00327: MIRP[nrp0,md,rd,1] 
+	00328: SRP0       
+	00329: MIRP[nrp0,md,rd,1] 
+	00330: MIAP[rd+ci] 
+	00331: ALIGNRP    
+	00332: ALIGNRP    
+	00333: SRP2       
+	00334: IP         
+	00335: MDAP[rd]   
+	00336: MIRP[nrp0,md,rd,1] 
+	00337: ALIGNRP    
+	00338: SRP0       
+	00339: ALIGNRP    
+	00340: SVTCA[x-axis] 
+	00341: SRP1       
+	00342: SRP2       
+	00343: IP         
+	00344: IP         
+	00345: SLOOP      
+	00346: IP         
+	00347: SRP1       
+	00348: SRP2       
+	00349: SLOOP      
+	00350: IP         
+	00351: IP         
+	00352: IP         
+	00353: SRP1       
+	00354: SLOOP      
+	00355: IP         
+	00356: SRP1       
+	00357: SRP2       
+	00358: IP         
+	00359: IP         
+	00360: SVTCA[y-axis] 
+	00361: SRP1       
+	00362: SLOOP      
+	00363: IP         
+	00364: SRP2       
+	00365: IP         
+	00366: IP         
+	00367: SRP1       
+	00368: SRP2       
+	00369: SLOOP      
+	00370: IP         
+	00371: SRP1       
+	00372: SRP2       
+	00373: SLOOP      
+	00374: IP         
+	00375: SDPVTL[1]  
+	00376: SFVTCA[x-axis] 
+	00377: MDAP[nrd]  
+	00378: CALL       
+	00379: SFVTPV     
+	00380: RDTG       
+	00381: SRP0       
+	00382: MDRP[nrp0,nmd,rd,0] 
+	00383: SDPVTL[1]  
+	00384: SFVTPV     
+	00385: MDAP[nrd]  
+	00386: RTG        
+	00387: CALL       
+	00388: SFVTPV     
+	00389: RDTG       
+	00390: SRP0       
+	00391: MDRP[nrp0,nmd,rd,0] 
+	00392: SDPVTL[1]  
+	00393: SFVTCA[x-axis] 
+	00394: MDAP[nrd]  
+	00395: RTG        
+	00396: CALL       
+	00397: SFVTPV     
+	00398: RDTG       
+	00399: SRP0       
+	00400: MDRP[nrp0,nmd,rd,0] 
+	00401: SDPVTL[1]  
+	00402: SFVTPV     
+	00403: MDAP[nrd]  
+	00404: RTG        
+	00405: CALL       
+	00406: SFVTPV     
+	00407: RDTG       
+	00408: SRP0       
+	00409: MDRP[nrp0,nmd,rd,0] 
+	00410: SVTCA[y-axis] 
+	00411: MDAP[nrd]  
+	00412: MDAP[nrd]  
+	00413: IUP[y]     
+	00414: IUP[x]     
+	00415: SVTCA[y-axis] 
+	00416: DELTAP1    
+	00417: DELTAP1    
+	00418: SVTCA[x-axis] 
+	00419: DELTAP1    
+	00420: DELTAP1    
+	00421: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual Rep-  2 Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short On
+	 11:        XDual         Y-Short         On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short Off
+	 22:                      Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:                                      On
+	 26:  YDual                       X-Short On
+	 27:                              X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:        XDual                         On
+	 32:  YDual                       X-Short On
+	 33:        XDual                         On
+	 34:  YDual                       X-Short Off
+	 35:                      Y-Short X-Short Off
+	 36:                      Y-Short X-Short On
+	 37:                      Y-Short X-Short On
+	 38:                              X-Short On
+	 39:  YDual                       X-Short On
+	 40:                                      On
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual               Y-Short X-Short Off
+	 45:  YDual               Y-Short X-Short On
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual               Y-Short X-Short On
+	 48:  YDual               Y-Short X-Short Off
+	 49:  YDual                       X-Short On
+	 50:                      Y-Short X-Short On
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual                 X-Short On
+	 54:  YDual XDual                 X-Short Off
+	 55:        XDual         Y-Short X-Short Off
+	 56:        XDual         Y-Short X-Short Off
+	 57:        XDual         Y-Short X-Short On
+	 58:        XDual         Y-Short X-Short Off
+	 59:        XDual         Y-Short X-Short Off
+	 60:        XDual         Y-Short X-Short On
+	 61:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1045,  1466)  ->  Abs (  1045,  1466)
+	  1: Rel (     0,  -642)  ->  Abs (  1045,   824)
+	  2: Rel (   143,     0)  ->  Abs (  1188,   824)
+	  3: Rel (   107,   105)  ->  Abs (  1295,   929)
+	  4: Rel (    83,   194)  ->  Abs (  1378,  1123)
+	  5: Rel (    61,   144)  ->  Abs (  1439,  1267)
+	  6: Rel (    79,   119)  ->  Abs (  1518,  1386)
+	  7: Rel (   146,    81)  ->  Abs (  1664,  1467)
+	  8: Rel (    87,     0)  ->  Abs (  1751,  1467)
+	  9: Rel (    95,     0)  ->  Abs (  1846,  1467)
+	 10: Rel (    23,    -2)  ->  Abs (  1869,  1465)
+	 11: Rel (     0,  -168)  ->  Abs (  1869,  1297)
+	 12: Rel (    -9,     0)  ->  Abs (  1860,  1297)
+	 13: Rel (   -29,     1)  ->  Abs (  1831,  1298)
+	 14: Rel (   -32,     1)  ->  Abs (  1799,  1299)
+	 15: Rel (    -7,     0)  ->  Abs (  1792,  1299)
+	 16: Rel (   -93,     0)  ->  Abs (  1699,  1299)
+	 17: Rel (   -45,   -45)  ->  Abs (  1654,  1254)
+	 18: Rel (   -46,   -45)  ->  Abs (  1608,  1209)
+	 19: Rel (   -59,  -147)  ->  Abs (  1549,  1062)
+	 20: Rel (   -64,  -159)  ->  Abs (  1485,   903)
+	 21: Rel (   -94,  -115)  ->  Abs (  1391,   788)
+	 22: Rel (   -89,   -38)  ->  Abs (  1302,   750)
+	 23: Rel (   144,   -40)  ->  Abs (  1446,   710)
+	 24: Rel (   135,  -222)  ->  Abs (  1581,   488)
+	 25: Rel (   302,  -488)  ->  Abs (  1883,     0)
+	 26: Rel (  -240,     0)  ->  Abs (  1643,     0)
+	 27: Rel (  -245,   398)  ->  Abs (  1398,   398)
+	 28: Rel (   -98,   158)  ->  Abs (  1300,   556)
+	 29: Rel (  -134,   130)  ->  Abs (  1166,   686)
+	 30: Rel (  -121,     0)  ->  Abs (  1045,   686)
+	 31: Rel (     0,  -686)  ->  Abs (  1045,     0)
+	 32: Rel (  -199,     0)  ->  Abs (   846,     0)
+	 33: Rel (     0,   686)  ->  Abs (   846,   686)
+	 34: Rel (   -96,     0)  ->  Abs (   750,   686)
+	 35: Rel (  -147,  -101)  ->  Abs (   603,   585)
+	 36: Rel (   -98,  -167)  ->  Abs (   505,   418)
+	 37: Rel (   -12,   -20)  ->  Abs (   493,   398)
+	 38: Rel (  -245,  -398)  ->  Abs (   248,     0)
+	 39: Rel (  -241,     0)  ->  Abs (     7,     0)
+	 40: Rel (   302,   488)  ->  Abs (   309,   488)
+	 41: Rel (   138,   223)  ->  Abs (   447,   711)
+	 42: Rel (   142,    39)  ->  Abs (   589,   750)
+	 43: Rel (   -79,    32)  ->  Abs (   510,   782)
+	 44: Rel (  -100,   107)  ->  Abs (   410,   889)
+	 45: Rel (   -69,   173)  ->  Abs (   341,  1062)
+	 46: Rel (   -63,   157)  ->  Abs (   278,  1219)
+	 47: Rel (   -45,    40)  ->  Abs (   233,  1259)
+	 48: Rel (   -45,    40)  ->  Abs (   188,  1299)
+	 49: Rel (   -89,     0)  ->  Abs (    99,  1299)
+	 50: Rel (   -78,    -2)  ->  Abs (    21,  1297)
+	 51: Rel (     0,   168)  ->  Abs (    21,  1465)
+	 52: Rel (    11,     2)  ->  Abs (    32,  1467)
+	 53: Rel (   101,     0)  ->  Abs (   133,  1467)
+	 54: Rel (    96,     0)  ->  Abs (   229,  1467)
+	 55: Rel (   141,   -79)  ->  Abs (   370,  1388)
+	 56: Rel (    80,  -119)  ->  Abs (   450,  1269)
+	 57: Rel (    63,  -146)  ->  Abs (   513,  1123)
+	 58: Rel (    84,  -197)  ->  Abs (   597,   926)
+	 59: Rel (   105,  -100)  ->  Abs (   702,   826)
+	 60: Rel (   144,    -2)  ->  Abs (   846,   824)
+	 61: Rel (     0,   642)  ->  Abs (   846,  1466)
+
+	Glyph 577: off = 0x00019EAA, len = 394
+	  numberOfContours:	1
+	  xMin:			78
+	  yMin:			-25
+	  xMax:			1154
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  38
+
+	  Length of Instructions:	278
+	00000: NPUSHB      (83):    78    25   196     3     2     6    31    57    14    70 
+	                            30   101    33   117    30   165    31     6     7    25 
+	                            75    30    90    30   116     3     4   192     1   193 
+	                            22   203    23   200    24     4    40     8    31    11 
+	                            64    31    80    31    96    31   112    31   128    31 
+	                             5    31    29    12    23   227    63    24    79    24 
+	                            95    24   127    24     4    24    24    37    26     1 
+	                           227    48     0    64     0    80     0     3     0     0 
+	                            26    37    12 
+	00085: PUSHW[1]            584 
+	00088: PUSHB[4]             10    10    37    19 
+	00093: PUSHW[1]            584 
+	00096: PUSHB[3]             26     3     4 
+	00100: PUSHW[1]            584 
+	00103: NPUSHB      (20):    37     9    11    11    23    16    38    29    16    11 
+	                            11     6    85    29    16    13    13     6    85    29 
+	00125: PUSHW[1]            -25 
+	00128: NPUSHB      (14):    15    16     6    85   159    29   175    29     2    29 
+	                            75     7    38    34 
+	00144: PUSHW[1]            -18 
+	00147: PUSHB[5]             12    12     2    85    34 
+	00153: PUSHW[1]            -19 
+	00156: NPUSHB      (17):    11    12     6    85    32    34     1    34    92    40 
+	                            23    38    24    98     1    38     0 
+	00175: PUSHW[2]            305    39 
+	00180: SRP0       
+	00181: MIRP[srp0,nmd,rd,0] 
+	00182: MIRP[nrp0,md,rd,1] 
+	00183: MIRP[srp0,nmd,rd,0] 
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: SRP0       
+	00186: MIRP[srp0,nmd,rd,2] 
+	00187: DELTAP1    
+	00188: CALL       
+	00189: CALL       
+	00190: MIRP[nrp0,md,rd,1] 
+	00191: MIRP[srp0,nmd,rd,0] 
+	00192: DELTAP1    
+	00193: CALL       
+	00194: CALL       
+	00195: CALL       
+	00196: MIRP[nrp0,md,rd,1] 
+	00197: SRP1       
+	00198: IP         
+	00199: MDAP[rd]   
+	00200: SVTCA[y-axis] 
+	00201: MIAP[rd+ci] 
+	00202: MIRP[nrp0,md,rd,1] 
+	00203: MIAP[rd+ci] 
+	00204: MIRP[nrp0,md,rd,1] 
+	00205: SRP2       
+	00206: IP         
+	00207: MDAP[rd]   
+	00208: MIRP[nrp0,md,rd,1] 
+	00209: SRP1       
+	00210: SRP2       
+	00211: IP         
+	00212: MDAP[rd]   
+	00213: DELTAP1    
+	00214: MIRP[nrp0,nmd,rd,0] 
+	00215: SRP1       
+	00216: SRP2       
+	00217: IP         
+	00218: MDAP[rd]   
+	00219: DELTAP1    
+	00220: MIRP[nrp0,nmd,rd,0] 
+	00221: SVTCA[x-axis] 
+	00222: SRP1       
+	00223: SRP2       
+	00224: IP         
+	00225: DELTAP1    
+	00226: SVTCA[y-axis] 
+	00227: SRP2       
+	00228: IP         
+	00229: IUP[y]     
+	00230: IUP[x]     
+	00231: RS         
+	00232: JROF       
+	00233: NPUSHB      (28):    35    36    27    28    17    18     5     6    18    27 
+	                            16    54     1     5    36     7    54     1    17    28 
+	                            19    54     1     6    35     4    54     0 
+	00263: CALL       
+	00264: CALL       
+	00265: SVTCA[x-axis] 
+	00266: CALL       
+	00267: CALL       
+	00268: FLIPRGON   
+	00269: FLIPRGON   
+	00270: FLIPRGON   
+	00271: FLIPRGON   
+	00272: SVTCA[y-axis] 
+	00273: DELTAP2    
+	00274: DELTAP1    
+	00275: SVTCA[x-axis] 
+	00276: DELTAP1    
+	00277: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short On
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual                 X-Short Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:                      Y-Short X-Short Off
+	 22:                      Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:  YDual               Y-Short X-Short On
+	 25:        XDual                 X-Short Off
+	 26:  YDual                               On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:                      Y-Short X-Short On
+	 32:        XDual         Y-Short X-Short Off
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:                      Y-Short         Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                               Off
+
+	Coordinates
+	-----------
+	  0: Rel (    78,   414)  ->  Abs (    78,   414)
+	  1: Rel (   185,    48)  ->  Abs (   263,   462)
+	  2: Rel (    21,  -107)  ->  Abs (   284,   355)
+	  3: Rel (   183,  -214)  ->  Abs (   467,   141)
+	  4: Rel (   151,     0)  ->  Abs (   618,   141)
+	  5: Rel (   154,     0)  ->  Abs (   772,   141)
+	  6: Rel (   178,   158)  ->  Abs (   950,   299)
+	  7: Rel (     0,   112)  ->  Abs (   950,   411)
+	  8: Rel (     0,   121)  ->  Abs (   950,   532)
+	  9: Rel (  -188,   143)  ->  Abs (   762,   675)
+	 10: Rel (  -162,     0)  ->  Abs (   600,   675)
+	 11: Rel (   -93,     0)  ->  Abs (   507,   675)
+	 12: Rel (     0,   169)  ->  Abs (   507,   844)
+	 13: Rel (   134,     0)  ->  Abs (   641,   844)
+	 14: Rel (   142,    31)  ->  Abs (   783,   875)
+	 15: Rel (   109,   127)  ->  Abs (   892,  1002)
+	 16: Rel (     0,    81)  ->  Abs (   892,  1083)
+	 17: Rel (     0,    96)  ->  Abs (   892,  1179)
+	 18: Rel (  -149,   142)  ->  Abs (   743,  1321)
+	 19: Rel (  -127,     0)  ->  Abs (   616,  1321)
+	 20: Rel (  -111,     0)  ->  Abs (   505,  1321)
+	 21: Rel (  -157,  -111)  ->  Abs (   348,  1210)
+	 22: Rel (   -60,  -183)  ->  Abs (   288,  1027)
+	 23: Rel (     0,   -45)  ->  Abs (   288,   982)
+	 24: Rel (  -186,    42)  ->  Abs (   102,  1024)
+	 25: Rel (    69,   467)  ->  Abs (   171,  1491)
+	 26: Rel (   447,     0)  ->  Abs (   618,  1491)
+	 27: Rel (   215,     0)  ->  Abs (   833,  1491)
+	 28: Rel (   252,  -239)  ->  Abs (  1085,  1252)
+	 29: Rel (     0,  -160)  ->  Abs (  1085,  1092)
+	 30: Rel (     0,  -205)  ->  Abs (  1085,   887)
+	 31: Rel (  -194,  -113)  ->  Abs (   891,   774)
+	 32: Rel (   112,   -31)  ->  Abs (  1003,   743)
+	 33: Rel (   151,  -191)  ->  Abs (  1154,   552)
+	 34: Rel (     0,  -133)  ->  Abs (  1154,   419)
+	 35: Rel (     0,  -189)  ->  Abs (  1154,   230)
+	 36: Rel (  -293,  -255)  ->  Abs (   861,   -25)
+	 37: Rel (  -242,     0)  ->  Abs (   619,   -25)
+	 38: Rel (  -416,     0)  ->  Abs (   203,   -25)
+
+	Glyph 578: off = 0x0001A034, len = 360
+	  numberOfContours:	1
+	  xMin:			161
+	  yMin:			0
+	  xMax:			1312
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	314
+	00000: NPUSHB      (10):    47    11     1     7    24    12    28     2    85     2 
+	00012: PUSHW[1]            -24 
+	00015: NPUSHB      (20):    12    28     2    85    55     2    56     7    86     2 
+	                            89     7   105     7   118     2   121     7     7     2 
+	00037: PUSHW[1]            -12 
+	00040: NPUSHB      (34):    16    16     6    85     7    76    15    16     6    85 
+	                             7    60    12    12     6    85     7    78    11    11 
+	                             6    85     3     7     8     8    32     2     3    20 
+	                             2     2     3     2 
+	00076: PUSHW[1]            -32 
+	00079: PUSHB[5]             11    11     6    85     7 
+	00085: PUSHW[1]            -52 
+	00088: NPUSHB      (20):    11    11     6    85     2     7     8     3     1     2 
+	                             8     6     8     3     8     6     2     7    32     4 
+	00110: PUSHW[1]            -20 
+	00113: PUSHB[5]             15    15     2    85     4 
+	00119: PUSHW[1]            -18 
+	00122: NPUSHB      (11):    13    13     2    85     4    18    12    12     2    85 
+	                             4 
+	00135: PUSHW[1]             -4 
+	00138: PUSHB[5]             11    11     6    85     4 
+	00144: PUSHW[1]             -2 
+	00147: NPUSHB      (25):    12    13     6    85     4     8    15    15     6    85 
+	                             4    57    15    11     1    11     2    32     0    36 
+	                            16    16     2    85     0 
+	00174: PUSHW[1]            -10 
+	00177: PUSHB[5]             15    15     2    85     0 
+	00183: PUSHW[1]             -6 
+	00186: PUSHB[5]             13    13     2    85     0 
+	00192: PUSHW[1]             -4 
+	00195: PUSHB[5]             12    12     2    85     0 
+	00201: PUSHW[1]            -10 
+	00204: PUSHB[5]             11    11     6    85     0 
+	00210: PUSHW[1]             -6 
+	00213: PUSHB[5]             12    13     6    85     0 
+	00219: PUSHW[1]             -9 
+	00222: PUSHB[7]             15    15     6    85     0    57    10 
+	00230: SRP0       
+	00231: MIRP[srp0,nmd,rd,2] 
+	00232: CALL       
+	00233: CALL       
+	00234: CALL       
+	00235: CALL       
+	00236: CALL       
+	00237: CALL       
+	00238: CALL       
+	00239: MIRP[nrp0,md,rd,1] 
+	00240: SRP0       
+	00241: DELTAP1    
+	00242: MIRP[srp0,nmd,rd,2] 
+	00243: CALL       
+	00244: CALL       
+	00245: CALL       
+	00246: CALL       
+	00247: CALL       
+	00248: CALL       
+	00249: MIRP[nrp0,md,rd,1] 
+	00250: SRP1       
+	00251: SRP2       
+	00252: IP         
+	00253: IP         
+	00254: SVTCA[y-axis] 
+	00255: MIAP[rd+ci] 
+	00256: ALIGNRP    
+	00257: MIAP[rd+ci] 
+	00258: ALIGNRP    
+	00259: SRP2       
+	00260: IP         
+	00261: IP         
+	00262: CALL       
+	00263: CALL       
+	00264: SDPVTL[1]  
+	00265: SFVTCA[x-axis] 
+	00266: MDAP[nrd]  
+	00267: CALL       
+	00268: SDPVTL[1]  
+	00269: RDTG       
+	00270: MDRP[nrp0,nmd,rd,0] 
+	00271: PUSHB[2]              6     2 
+	00274: RS         
+	00275: EQ         
+	00276: IF         
+	00277: NPUSHB      (12):     6     2    15     7    21     2    91     7   138     7 
+	                             5     2 
+	00291: PUSHW[1]            -32 
+	00294: PUSHB[3]             12    17    52 
+	00298: SVTCA[y-axis] 
+	00299: CALL       
+	00300: DELTAP1    
+	00301: EIF        
+	00302: CALL       
+	00303: CALL       
+	00304: CALL       
+	00305: CALL       
+	00306: IUP[y]     
+	00307: IUP[x]     
+	00308: SVTCA[y-axis] 
+	00309: DELTAP1    
+	00310: CALL       
+	00311: CALL       
+	00312: SVTCA[x-axis] 
+	00313: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:                                      On
+	  4:  YDual XDual                 X-Short On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+	  8:                                      On
+	  9:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   161,  1466)  ->  Abs (   161,  1466)
+	  1: Rel (   176,     0)  ->  Abs (   337,  1466)
+	  2: Rel (     0, -1161)  ->  Abs (   337,   305)
+	  3: Rel (   780,  1161)  ->  Abs (  1117,  1466)
+	  4: Rel (   195,     0)  ->  Abs (  1312,  1466)
+	  5: Rel (     0, -1466)  ->  Abs (  1312,     0)
+	  6: Rel (  -176,     0)  ->  Abs (  1136,     0)
+	  7: Rel (     0,  1158)  ->  Abs (  1136,  1158)
+	  8: Rel (  -781, -1158)  ->  Abs (   355,     0)
+	  9: Rel (  -194,     0)  ->  Abs (   161,     0)
+
+	Glyph 579: off = 0x0001A19C, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			0
+	  xMax:			1312
+	  yMax:			1815
+
+	     0: Flags:		0x0226
+		Glyf Index:	578
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	217
+		X WOffset:	376
+		Y WOffset:	351
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    17    11     0     4    65     1     1    14 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 580: off = 0x0001A1CC, len = 374
+	  numberOfContours:	1
+	  xMin:			161
+	  yMin:			0
+	  xMax:			1186
+	  yMax:			1467
+
+	EndPoints
+	---------
+	  0:  33
+
+	  Length of Instructions:	265
+	00000: NPUSHB      (67):   139    25   132    27     2    10     7    29     7    44 
+	                             7    47    35   118    24   137     7   141    30     7 
+	                            58    19    58    21    56    29     3     6     4     4 
+	                            37    21    19    20    21    21    19    28    27    27 
+	                             8    11    16     6    85    27    32    26    25    20 
+	                            26    26    25    25    28    31    27     6     4     9 
+	                             2    19    21    16    23    23     2 
+	00069: PUSHW[1]            605 
+	00072: PUSHB[4]             31    31    33    16 
+	00077: PUSHW[1]            584 
+	00080: NPUSHB      (33):     9   123     0     2    26    27    27    33     8    27 
+	                            28    25     3    26     6     4    23    21    19     3 
+	                            32   144    11     1    11    45    26    45    35     1 
+	                            32    32    33 
+	00115: PUSHW[1]            -22 
+	00118: PUSHB[5]             16    16     2    85    33 
+	00124: PUSHW[1]            -10 
+	00127: PUSHB[5]             15    15     2    85    33 
+	00133: PUSHW[1]             -6 
+	00136: PUSHB[5]             13    13     2    85    33 
+	00142: PUSHW[1]             -2 
+	00145: PUSHB[5]             12    12     2    85    33 
+	00151: PUSHW[1]             -8 
+	00154: PUSHB[5]             11    11     6    85    33 
+	00160: PUSHW[1]             -4 
+	00163: PUSHB[5]             12    12     6    85    33 
+	00169: PUSHW[1]            -12 
+	00172: PUSHB[5]             13    13     6    85    33 
+	00178: PUSHW[1]            -12 
+	00181: PUSHB[7]             15    15     6    85    33    57    34 
+	00189: SRP0       
+	00190: MIRP[srp0,nmd,rd,2] 
+	00191: CALL       
+	00192: CALL       
+	00193: CALL       
+	00194: CALL       
+	00195: CALL       
+	00196: CALL       
+	00197: CALL       
+	00198: CALL       
+	00199: MIRP[srp0,md,rd,1] 
+	00200: ALIGNRP    
+	00201: SRP0       
+	00202: MIRP[srp0,nmd,rd,2] 
+	00203: MIRP[nrp0,nmd,rd,0] 
+	00204: DELTAP2    
+	00205: SRP1       
+	00206: SLOOP      
+	00207: IP         
+	00208: IP         
+	00209: IP         
+	00210: SRP2       
+	00211: SLOOP      
+	00212: IP         
+	00213: SVTCA[y-axis] 
+	00214: MIAP[rd+ci] 
+	00215: ALIGNRP    
+	00216: SRP0       
+	00217: ALIGNRP    
+	00218: MIAP[rd+ci] 
+	00219: MIRP[srp0,nmd,rd,0] 
+	00220: MIRP[nrp0,md,rd,1] 
+	00221: SRP2       
+	00222: IP         
+	00223: MDAP[rd]   
+	00224: MIRP[nrp0,md,rd,1] 
+	00225: RTHG       
+	00226: IP         
+	00227: MDAP[rd]   
+	00228: SRP2       
+	00229: IP         
+	00230: IP         
+	00231: SRP1       
+	00232: SRP2       
+	00233: IP         
+	00234: IP         
+	00235: SRP1       
+	00236: SRP2       
+	00237: IP         
+	00238: IP         
+	00239: SDPVTL[1]  
+	00240: SFVTCA[x-axis] 
+	00241: MDAP[nrd]  
+	00242: RTG        
+	00243: CALL       
+	00244: CALL       
+	00245: SFVTPV     
+	00246: RDTG       
+	00247: SRP0       
+	00248: MDRP[nrp0,nmd,rd,0] 
+	00249: SDPVTL[1]  
+	00250: SFVTPV     
+	00251: MDAP[nrd]  
+	00252: RTG        
+	00253: CALL       
+	00254: SFVTPV     
+	00255: RDTG       
+	00256: SRP0       
+	00257: MDRP[nrp0,nmd,rd,0] 
+	00258: IUP[y]     
+	00259: IUP[x]     
+	00260: SVTCA[y-axis] 
+	00261: DELTAP1    
+	00262: SVTCA[x-axis] 
+	00263: DELTAP1    
+	00264: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual XDual                 X-Short Off
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual Rep-  2 Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short         On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short X-Short On
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short On
+	 26:                                      On
+	 27:  YDual                       X-Short On
+	 28:                              X-Short On
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:        XDual                         On
+	 33:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   161,  1466)  ->  Abs (   161,  1466)
+	  1: Rel (   194,     0)  ->  Abs (   355,  1466)
+	  2: Rel (     0,  -642)  ->  Abs (   355,   824)
+	  3: Rel (   133,     0)  ->  Abs (   488,   824)
+	  4: Rel (   108,   103)  ->  Abs (   596,   927)
+	  5: Rel (    84,   196)  ->  Abs (   680,  1123)
+	  6: Rel (    61,   144)  ->  Abs (   741,  1267)
+	  7: Rel (    79,   119)  ->  Abs (   820,  1386)
+	  8: Rel (   146,    81)  ->  Abs (   966,  1467)
+	  9: Rel (    88,     0)  ->  Abs (  1054,  1467)
+	 10: Rel (   112,     0)  ->  Abs (  1166,  1467)
+	 11: Rel (     6,    -2)  ->  Abs (  1172,  1465)
+	 12: Rel (     0,  -168)  ->  Abs (  1172,  1297)
+	 13: Rel (   -10,     0)  ->  Abs (  1162,  1297)
+	 14: Rel (   -29,     1)  ->  Abs (  1133,  1298)
+	 15: Rel (   -32,     1)  ->  Abs (  1101,  1299)
+	 16: Rel (    -7,     0)  ->  Abs (  1094,  1299)
+	 17: Rel (   -93,     0)  ->  Abs (  1001,  1299)
+	 18: Rel (   -45,   -45)  ->  Abs (   956,  1254)
+	 19: Rel (   -46,   -45)  ->  Abs (   910,  1209)
+	 20: Rel (   -59,  -147)  ->  Abs (   851,  1062)
+	 21: Rel (   -74,  -186)  ->  Abs (   777,   876)
+	 22: Rel (  -102,   -97)  ->  Abs (   675,   779)
+	 23: Rel (   -71,   -29)  ->  Abs (   604,   750)
+	 24: Rel (   142,   -39)  ->  Abs (   746,   711)
+	 25: Rel (   138,  -223)  ->  Abs (   884,   488)
+	 26: Rel (   302,  -488)  ->  Abs (  1186,     0)
+	 27: Rel (  -241,     0)  ->  Abs (   945,     0)
+	 28: Rel (  -245,   398)  ->  Abs (   700,   398)
+	 29: Rel (  -101,   165)  ->  Abs (   599,   563)
+	 30: Rel (  -136,   123)  ->  Abs (   463,   686)
+	 31: Rel (  -108,     0)  ->  Abs (   355,   686)
+	 32: Rel (     0,  -686)  ->  Abs (   355,     0)
+	 33: Rel (  -194,     0)  ->  Abs (   161,     0)
+
+	Glyph 581: off = 0x0001A342, len = 306
+	  numberOfContours:	1
+	  xMin:			18
+	  yMin:			-25
+	  xMax:			1183
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	239
+	00000: PUSHB[3]             25     8    13 
+	00004: PUSHW[1]            270 
+	00007: PUSHB[8]             12    98    10     5    30     0     2    15 
+	00016: PUSHW[1]            584 
+	00019: NPUSHB      (13):    10     9     3     8     3    32     2     6    16    16 
+	                             2    85     2 
+	00034: PUSHW[1]            -20 
+	00037: NPUSHB      (17):    15    15     2    85     2    38    13    13     2    85 
+	                             2     6    12    12     2    85     2 
+	00056: PUSHW[1]            -24 
+	00059: PUSHB[5]             11    11     2    85     2 
+	00065: PUSHW[1]            -22 
+	00068: NPUSHB      (25):    11    11     6    85     2     8    13    13     6    85 
+	                             2     8    15    15     6    85     2    93   128    20 
+	                             1    20     6    32    18 
+	00095: PUSHW[1]            -28 
+	00098: PUSHB[5]             16    16     2    85    18 
+	00104: PUSHW[1]             -8 
+	00107: NPUSHB      (17):    15    15     2    85    18     2    13    13     2    85 
+	                            18     8    12    12     2    85    18 
+	00126: PUSHW[1]            -28 
+	00129: NPUSHB      (11):    11    11     2    85    18    26    11    11     6    85 
+	                            18 
+	00142: PUSHW[1]            570 
+	00145: NPUSHB       (9):    13    74    12     6    12    12     6    85    12 
+	00156: PUSHW[1]             -8 
+	00159: PUSHB[5]             13    13     6    85    12 
+	00165: PUSHW[1]             -8 
+	00168: PUSHB[7]             15    15     6    85    12    98    19 
+	00176: SRP0       
+	00177: MIRP[srp0,nmd,rd,2] 
+	00178: CALL       
+	00179: CALL       
+	00180: CALL       
+	00181: MIRP[nrp0,nmd,rd,0] 
+	00182: MIRP[srp0,nmd,rd,0] 
+	00183: CALL       
+	00184: CALL       
+	00185: CALL       
+	00186: CALL       
+	00187: CALL       
+	00188: CALL       
+	00189: MIRP[nrp0,md,rd,1] 
+	00190: SRP0       
+	00191: DELTAP1    
+	00192: MIRP[srp0,nmd,rd,2] 
+	00193: CALL       
+	00194: CALL       
+	00195: CALL       
+	00196: CALL       
+	00197: CALL       
+	00198: CALL       
+	00199: CALL       
+	00200: CALL       
+	00201: MIRP[srp0,md,rd,1] 
+	00202: SVTCA[y-axis] 
+	00203: MIAP[rd+ci] 
+	00204: MIAP[rd+ci] 
+	00205: MIRP[nrp0,md,rd,1] 
+	00206: MIAP[rd+ci] 
+	00207: MIRP[nrp0,md,rd,1] 
+	00208: SRP0       
+	00209: MIRP[srp0,md,rd,1] 
+	00210: MIRP[nrp0,md,rd,1] 
+	00211: IUP[y]     
+	00212: IUP[x]     
+	00213: RS         
+	00214: JROF       
+	00215: NPUSHB      (16):    16    17     7     9     8    38    16     9    18    44 
+	                             1    17     7    15    44     0 
+	00233: CALL       
+	00234: SVTCA[x-axis] 
+	00235: CALL       
+	00236: CALL       
+	00237: FLIPRGON   
+	00238: FLIPRGON   
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:        XDual                         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   265,  1466)  ->  Abs (   265,  1466)
+	  1: Rel (   918,     0)  ->  Abs (  1183,  1466)
+	  2: Rel (     0, -1466)  ->  Abs (  1183,     0)
+	  3: Rel (  -194,     0)  ->  Abs (   989,     0)
+	  4: Rel (     0,  1293)  ->  Abs (   989,  1293)
+	  5: Rel (  -530,     0)  ->  Abs (   459,  1293)
+	  6: Rel (     0,  -755)  ->  Abs (   459,   538)
+	  7: Rel (     0,  -230)  ->  Abs (   459,   308)
+	  8: Rel (   -43,  -214)  ->  Abs (   416,    94)
+	  9: Rel (  -138,  -119)  ->  Abs (   278,   -25)
+	 10: Rel (  -106,     0)  ->  Abs (   172,   -25)
+	 11: Rel (   -64,     0)  ->  Abs (   108,   -25)
+	 12: Rel (   -90,    24)  ->  Abs (    18,    -1)
+	 13: Rel (    33,   172)  ->  Abs (    51,   171)
+	 14: Rel (    48,   -20)  ->  Abs (    99,   151)
+	 15: Rel (    34,     0)  ->  Abs (   133,   151)
+	 16: Rel (    66,     0)  ->  Abs (   199,   151)
+	 17: Rel (    66,    99)  ->  Abs (   265,   250)
+	 18: Rel (     0,   184)  ->  Abs (   265,   434)
+
+	Glyph 582: off = 0x0001A474, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			152
+	  yMin:			0
+	  xMax:			1551
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	48
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 583: off = 0x0001A484, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			164
+	  yMin:			0
+	  xMax:			1314
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	43
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 584: off = 0x0001A494, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1501
+	  yMax:			1492
+
+	     0: Flags:		0x0206
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 585: off = 0x0001A4A4, len = 218
+	  numberOfContours:	1
+	  xMin:			160
+	  yMin:			0
+	  xMax:			1313
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	180
+	00000: PUSHW[2]              9   -64 
+	00005: NPUSHB      (13):    19    21    52     3     7     8     5    30     0     2 
+	                             3    32     2 
+	00020: PUSHW[1]            -18 
+	00023: PUSHB[5]             15    15     2    85     2 
+	00029: PUSHW[1]            -18 
+	00032: NPUSHB      (11):    13    13     2    85     2    16    12    12     2    85 
+	                             2 
+	00045: PUSHW[1]            -32 
+	00048: PUSHB[5]             11    11     6    85     2 
+	00054: PUSHW[1]             -2 
+	00057: NPUSHB      (21):    12    13     6    85     2    57    15     9   128     9 
+	                             2     9     6    32     7    32    16    16     2    85 
+	                             7 
+	00080: PUSHW[1]            -10 
+	00083: PUSHB[5]             15    15     2    85     7 
+	00089: PUSHW[1]            -10 
+	00092: PUSHB[5]             13    13     2    85     7 
+	00098: PUSHW[1]             -6 
+	00101: NPUSHB      (11):    12    12     2    85     7    10    11    11     6    85 
+	                             7 
+	00114: PUSHW[1]            -10 
+	00117: PUSHB[8]             12    13     6    85    32     7     1     7 
+	00126: PUSHW[1]            -64 
+	00129: NPUSHB      (18):    19    21    52     7    93     8    32     9     1    32 
+	                             9    80     9    96     9   112     9     4 
+	00149: DELTAP1    
+	00150: DELTAP2    
+	00151: SRP0       
+	00152: MIRP[srp0,nmd,rd,2] 
+	00153: CALL       
+	00154: DELTAP1    
+	00155: CALL       
+	00156: CALL       
+	00157: CALL       
+	00158: CALL       
+	00159: CALL       
+	00160: CALL       
+	00161: MIRP[nrp0,md,rd,1] 
+	00162: SRP0       
+	00163: DELTAP1    
+	00164: MIRP[srp0,nmd,rd,2] 
+	00165: CALL       
+	00166: CALL       
+	00167: CALL       
+	00168: CALL       
+	00169: CALL       
+	00170: MIRP[nrp0,md,rd,1] 
+	00171: SVTCA[y-axis] 
+	00172: MIAP[rd+ci] 
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: MIAP[rd+ci] 
+	00175: ALIGNRP    
+	00176: IUP[y]     
+	00177: IUP[x]     
+	00178: SVTCA[x-axis] 
+	00179: CALL       
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:        XDual                         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   160,  1466)  ->  Abs (   160,  1466)
+	  1: Rel (  1153,     0)  ->  Abs (  1313,  1466)
+	  2: Rel (     0, -1466)  ->  Abs (  1313,     0)
+	  3: Rel (  -195,     0)  ->  Abs (  1118,     0)
+	  4: Rel (     0,  1293)  ->  Abs (  1118,  1293)
+	  5: Rel (  -764,     0)  ->  Abs (   354,  1293)
+	  6: Rel (     0, -1293)  ->  Abs (   354,     0)
+	  7: Rel (  -194,     0)  ->  Abs (   160,     0)
+
+	Glyph 586: off = 0x0001A57E, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			158
+	  yMin:			0
+	  xMax:			1277
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	51
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 587: off = 0x0001A58E, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			102
+	  yMin:			-25
+	  xMax:			1398
+	  yMax:			1491
+
+	     0: Flags:		0x0206
+		Glyf Index:	38
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 588: off = 0x0001A59E, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			48
+	  yMin:			0
+	  xMax:			1210
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	55
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 589: off = 0x0001A5AE, len = 248
+	  numberOfContours:	1
+	  xMin:			10
+	  yMin:			-20
+	  xMax:			1295
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  16
+
+	  Length of Instructions:	183
+	00000: NPUSHB      (23):   102     2     1   155     2     1   104     2     1   156 
+	                             1   147     3     2     2    16     2     1    16     3 
+	                             1     2     2 
+	00025: PUSHW[1]            -12 
+	00028: NPUSHB      (17):    13    13     6    85     2    30    16     0    20    16 
+	                             2     3    16     0     3     2     2 
+	00047: PUSHW[1]            -12 
+	00050: NPUSHB      (32):    13    13     6    85     2    30     5     4    20     5 
+	                             2     1     5     4     2    16     5     3     8     0 
+	                            11    93    10    74     8     4     3     3     1     0 
+	                             2    13 
+	00084: PUSHW[1]            584 
+	00087: NPUSHB      (16):     8     9    16     1     0     5     3     4     2    32 
+	                            10     1    10   147     0     4 
+	00105: PUSHW[3]            348     0   348 
+	00112: PUSHB[4]              2     2    18    17 
+	00117: RTHG       
+	00118: SRP1       
+	00119: SRP2       
+	00120: IP         
+	00121: MDAP[rd]   
+	00122: RTG        
+	00123: MIRP[nrp0,md,rd,1] 
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: RTHG       
+	00126: SRP0       
+	00127: MIRP[nrp0,nmd,rd,0] 
+	00128: DELTAP1    
+	00129: SRP1       
+	00130: SRP2       
+	00131: IP         
+	00132: IP         
+	00133: SRP2       
+	00134: IP         
+	00135: IP         
+	00136: SVTCA[y-axis] 
+	00137: RTG        
+	00138: MIAP[rd+ci] 
+	00139: MIRP[nrp0,md,rd,1] 
+	00140: MIAP[rd+ci] 
+	00141: ALIGNRP    
+	00142: ALIGNRP    
+	00143: SRP0       
+	00144: ALIGNRP    
+	00145: SRP0       
+	00146: MIRP[srp0,nmd,rd,0] 
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: SRP1       
+	00149: SRP2       
+	00150: SLOOP      
+	00151: IP         
+	00152: SDPVTL[1]  
+	00153: SFVTL[=p1,p2] 
+	00154: MDAP[nrd]  
+	00155: CALL       
+	00156: CALL       
+	00157: SFVTCA[x-axis] 
+	00158: RDTG       
+	00159: SRP0       
+	00160: MDRP[nrp0,nmd,rd,0] 
+	00161: SDPVTL[1]  
+	00162: SFVTL[=p1,p2] 
+	00163: MDAP[nrd]  
+	00164: RTG        
+	00165: CALL       
+	00166: CALL       
+	00167: SFVTCA[x-axis] 
+	00168: RDTG       
+	00169: SRP0       
+	00170: MDRP[nrp0,nmd,rd,0] 
+	00171: SDPVTL[1]  
+	00172: SFVTL[=p1,p2] 
+	00173: SRP0       
+	00174: MDRP[nrp0,nmd,rd,0] 
+	00175: IUP[y]     
+	00176: IUP[x]     
+	00177: SVTCA[x-axis] 
+	00178: DELTAP3    
+	00179: DELTAP1    
+	00180: SVTCA[y-axis] 
+	00181: DELTAP3    
+	00182: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:                                      On
+	  3:                                      On
+	  4:  YDual XDual                 X-Short On
+	  5:                                      On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual XDual         Y-Short         On
+	 12:        XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    10,  1466)  ->  Abs (    10,  1466)
+	  1: Rel (   196,     0)  ->  Abs (   206,  1466)
+	  2: Rel (   478,  -898)  ->  Abs (   684,   568)
+	  3: Rel (   418,   898)  ->  Abs (  1102,  1466)
+	  4: Rel (   193,     0)  ->  Abs (  1295,  1466)
+	  5: Rel (  -550, -1140)  ->  Abs (   745,   326)
+	  6: Rel (  -103,  -214)  ->  Abs (   642,   112)
+	  7: Rel (  -132,  -132)  ->  Abs (   510,   -20)
+	  8: Rel (  -123,     0)  ->  Abs (   387,   -20)
+	  9: Rel (   -75,     0)  ->  Abs (   312,   -20)
+	 10: Rel (  -109,    35)  ->  Abs (   203,    15)
+	 11: Rel (     0,   166)  ->  Abs (   203,   181)
+	 12: Rel (    78,   -45)  ->  Abs (   281,   136)
+	 13: Rel (    87,     0)  ->  Abs (   368,   136)
+	 14: Rel (    71,     0)  ->  Abs (   439,   136)
+	 15: Rel (   103,    91)  ->  Abs (   542,   227)
+	 16: Rel (    62,   162)  ->  Abs (   604,   389)
+
+	Glyph 590: off = 0x0001A6A6, len = 378
+	  numberOfContours:	3
+	  xMin:			82
+	  yMin:			0
+	  xMax:			1474
+	  yMax:			1478
+
+	EndPoints
+	---------
+	  0:  17
+	  1:  24
+	  2:  31
+
+	  Length of Instructions:	263
+	00000: NPUSHB      (73):    32    33     1    16    33    79    33   112    33   208 
+	                            33   224    33     5    37    21    43    23    43    27 
+	                            37    29     4    18   123    25     9    12    19   123 
+	                            31    30    48    12     1   111    12   127    12     2 
+	                            12   147    11    25    30     0    63     3     1   112 
+	                             3     1     3   147     1     2    11     8    28    38 
+	                            15    18    15    15     6    85    15    20    13    13 
+	                             6    85    15 
+	00075: PUSHW[1]            -10 
+	00078: NPUSHB      (21):    11    12     6    85    15    15    63    15     2    31 
+	                            15   111    15   127    15   143    15   239    15     5 
+	                            15 
+	00101: PUSHW[1]            451 
+	00104: PUSHB[4]             10    22    38     6 
+	00109: PUSHW[1]            -12 
+	00112: PUSHB[5]             15    15     6    85     6 
+	00118: PUSHW[1]            -10 
+	00121: NPUSHB      (27):    13    13     6    85     6    10    11    12     6    85 
+	                             0     6    48     6     2    16     6    96     6   112 
+	                             6   128     6   224     6     5     6 
+	00150: PUSHW[1]            451 
+	00153: NPUSHB      (13):    11    19    10    25    11     2    64    10     1    10 
+	                            30     1    11 
+	00168: PUSHW[1]             -4 
+	00171: NPUSHB      (11):    15    15     2    85    11    10    15    15     6    85 
+	                            11 
+	00184: PUSHW[1]             -6 
+	00187: NPUSHB      (19):    13    13     6    85     0    11   144    11   192    11 
+	                             3    32    11    79    11   176    11     3    11 
+	00208: MDAP[rd]   
+	00209: DELTAP1    
+	00210: DELTAP3    
+	00211: CALL       
+	00212: CALL       
+	00213: CALL       
+	00214: ALIGNRP    
+	00215: MIRP[srp0,md,rd,1] 
+	00216: DELTAP2    
+	00217: ALIGNRP    
+	00218: SRP0       
+	00219: ALIGNRP    
+	00220: SRP0       
+	00221: ALIGNRP    
+	00222: SRP0       
+	00223: MIRP[srp0,md,rd,1] 
+	00224: DELTAP1    
+	00225: DELTAP2    
+	00226: CALL       
+	00227: CALL       
+	00228: CALL       
+	00229: MIRP[nrp0,md,rd,1] 
+	00230: SRP0       
+	00231: MIRP[srp0,md,rd,1] 
+	00232: DELTAP1    
+	00233: DELTAP2    
+	00234: CALL       
+	00235: CALL       
+	00236: CALL       
+	00237: MIRP[nrp0,md,rd,1] 
+	00238: SVTCA[y-axis] 
+	00239: MIAP[rd+ci] 
+	00240: MIAP[rd+ci] 
+	00241: MIRP[srp0,nmd,rd,0] 
+	00242: DELTAP1    
+	00243: DELTAP2    
+	00244: ALIGNRP    
+	00245: MIRP[nrp0,md,rd,1] 
+	00246: SRP0       
+	00247: MIRP[srp0,nmd,rd,0] 
+	00248: DELTAP1    
+	00249: DELTAP2    
+	00250: MIRP[srp0,md,rd,1] 
+	00251: MIRP[nrp0,nmd,rd,0] 
+	00252: SRP0       
+	00253: ALIGNRP    
+	00254: SRP0       
+	00255: MIRP[nrp0,nmd,rd,0] 
+	00256: IUP[y]     
+	00257: IUP[x]     
+	00258: SVTCA[y-axis] 
+	00259: DELTAP1    
+	00260: SVTCA[x-axis] 
+	00261: DELTAP1    
+	00262: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:                      Y-Short         Off
+	  5:                                      Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                                      Off
+	  9:                      Y-Short         On
+	 10:        XDual         Y-Short         On
+	 11:  YDual                       X-Short On
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual               Y-Short         Off
+	 14:                                      Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:                                      Off
+	 18:                      Y-Short         On
+	 19:        XDual                         On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short         On
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   688,  1290)  ->  Abs (   688,  1290)
+	  1: Rel (     0,   188)  ->  Abs (   688,  1478)
+	  2: Rel (   182,     0)  ->  Abs (   870,  1478)
+	  3: Rel (     0,  -188)  ->  Abs (   870,  1290)
+	  4: Rel (   280,   -15)  ->  Abs (  1150,  1275)
+	  5: Rel (   324,  -307)  ->  Abs (  1474,   968)
+	  6: Rel (     0,  -228)  ->  Abs (  1474,   740)
+	  7: Rel (     0,  -223)  ->  Abs (  1474,   517)
+	  8: Rel (  -314,  -312)  ->  Abs (  1160,   205)
+	  9: Rel (  -290,   -16)  ->  Abs (   870,   189)
+	 10: Rel (     0,  -189)  ->  Abs (   870,     0)
+	 11: Rel (  -182,     0)  ->  Abs (   688,     0)
+	 12: Rel (     0,   189)  ->  Abs (   688,   189)
+	 13: Rel (  -260,    10)  ->  Abs (   428,   199)
+	 14: Rel (  -346,   297)  ->  Abs (    82,   496)
+	 15: Rel (     0,   244)  ->  Abs (    82,   740)
+	 16: Rel (     0,   245)  ->  Abs (    82,   985)
+	 17: Rel (   345,   294)  ->  Abs (   427,  1279)
+	 18: Rel (   443,  -155)  ->  Abs (   870,  1124)
+	 19: Rel (     0,  -768)  ->  Abs (   870,   356)
+	 20: Rel (   188,     9)  ->  Abs (  1058,   365)
+	 21: Rel (   216,   200)  ->  Abs (  1274,   565)
+	 22: Rel (     0,   175)  ->  Abs (  1274,   740)
+	 23: Rel (     0,   172)  ->  Abs (  1274,   912)
+	 24: Rel (  -212,   201)  ->  Abs (  1062,  1113)
+	 25: Rel (  -374,    10)  ->  Abs (   688,  1123)
+	 26: Rel (  -181,    -8)  ->  Abs (   507,  1115)
+	 27: Rel (  -224,  -198)  ->  Abs (   283,   917)
+	 28: Rel (     0,  -177)  ->  Abs (   283,   740)
+	 29: Rel (     0,  -175)  ->  Abs (   283,   565)
+	 30: Rel (   221,  -200)  ->  Abs (   504,   365)
+	 31: Rel (   184,    -8)  ->  Abs (   688,   357)
+
+	Glyph 591: off = 0x0001A820, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			9
+	  yMin:			0
+	  xMax:			1353
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	59
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 592: off = 0x0001A830, len = 296
+	  numberOfContours:	1
+	  xMin:			159
+	  yMin:			-407
+	  xMax:			1446
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	249
+	00000: NPUSHB      (23):    32    13   224    13     2     4     1     2     9     7 
+	                             2    30    11     8     3    32     6     0    15    15 
+	                             2    85     6 
+	00025: PUSHW[1]            -14 
+	00028: PUSHB[5]             13    13     2    85     6 
+	00034: PUSHW[1]            -10 
+	00037: PUSHB[5]             12    12     2    85     6 
+	00043: PUSHW[1]            -44 
+	00046: PUSHB[5]             16    16     6    85     6 
+	00052: PUSHW[1]            -10 
+	00055: NPUSHB      (14):    11    11     6    85    96     6   128     6     2     6 
+	                             6     9    30     7 
+	00071: PUSHW[1]            -22 
+	00074: NPUSHB      (11):    15    15     2    85     7    24    12    12     2    85 
+	                             7 
+	00087: PUSHW[1]            -35 
+	00090: PUSHB[5]             15    15     6    85     7 
+	00096: PUSHW[1]            -35 
+	00099: NPUSHB      (31):    13    13     6    85     7     6    12    12     6    85 
+	                            32     7   159     7   175     7   191     7     4     7 
+	                            75    13     2    32    11    36    16    16     2    85 
+	                            11 
+	00132: PUSHW[1]            -10 
+	00135: PUSHB[5]             15    15     2    85    11 
+	00141: PUSHW[1]             -6 
+	00144: PUSHB[5]             13    13     2    85    11 
+	00150: PUSHW[1]             -2 
+	00153: PUSHB[5]             12    12     2    85    11 
+	00159: PUSHW[1]             -2 
+	00162: PUSHB[5]             16    16     6    85    11 
+	00168: PUSHW[1]            -12 
+	00171: PUSHB[5]             15    15     6    85    11 
+	00177: PUSHW[1]            -12 
+	00180: PUSHB[5]             13    13     6    85    11 
+	00186: PUSHW[1]             -6 
+	00189: NPUSHB      (16):    12    12     6    85    11     6    11    11     6    85 
+	                            32    11     1    11    57    12 
+	00207: SRP0       
+	00208: MIRP[srp0,nmd,rd,2] 
+	00209: DELTAP1    
+	00210: CALL       
+	00211: CALL       
+	00212: CALL       
+	00213: CALL       
+	00214: CALL       
+	00215: CALL       
+	00216: CALL       
+	00217: CALL       
+	00218: CALL       
+	00219: MIRP[nrp0,md,rd,1] 
+	00220: SRP0       
+	00221: MIRP[srp0,nmd,rd,2] 
+	00222: DELTAP1    
+	00223: CALL       
+	00224: CALL       
+	00225: CALL       
+	00226: CALL       
+	00227: CALL       
+	00228: MIRP[srp0,md,rd,1] 
+	00229: IP         
+	00230: MDAP[rd]   
+	00231: DELTAP1    
+	00232: CALL       
+	00233: CALL       
+	00234: CALL       
+	00235: CALL       
+	00236: CALL       
+	00237: MIRP[nrp0,md,rd,1] 
+	00238: SVTCA[y-axis] 
+	00239: MIAP[rd+ci] 
+	00240: MIRP[srp0,md,rd,1] 
+	00241: ALIGNRP    
+	00242: MDAP[rd]   
+	00243: MIAP[rd+ci] 
+	00244: ALIGNRP    
+	00245: IUP[y]     
+	00246: IUP[x]     
+	00247: SVTCA[x-axis] 
+	00248: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual XDual                 X-Short On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+	 10:        XDual                         On
+	 11:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   159,  1466)  ->  Abs (   159,  1466)
+	  1: Rel (   194,     0)  ->  Abs (   353,  1466)
+	  2: Rel (     0, -1293)  ->  Abs (   353,   173)
+	  3: Rel (   764,     0)  ->  Abs (  1117,   173)
+	  4: Rel (     0,  1293)  ->  Abs (  1117,  1466)
+	  5: Rel (   195,     0)  ->  Abs (  1312,  1466)
+	  6: Rel (     0, -1293)  ->  Abs (  1312,   173)
+	  7: Rel (   134,     0)  ->  Abs (  1446,   173)
+	  8: Rel (     0,  -580)  ->  Abs (  1446,  -407)
+	  9: Rel (  -172,     0)  ->  Abs (  1274,  -407)
+	 10: Rel (     0,   407)  ->  Abs (  1274,     0)
+	 11: Rel ( -1115,     0)  ->  Abs (   159,     0)
+
+	Glyph 593: off = 0x0001A958, len = 308
+	  numberOfContours:	1
+	  xMin:			87
+	  yMin:			0
+	  xMax:			1204
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	244
+	00000: NPUSHB      (11):   105     2   121     2   137     2     3    22     8     2 
+	                             4 
+	00013: PUSHW[1]            584 
+	00016: NPUSHB      (11):    14    14    17    10     2     1     8    17     1    32 
+	                             0 
+	00029: PUSHW[1]             -8 
+	00032: PUSHB[5]             16    16     2    85     0 
+	00038: PUSHW[1]            -28 
+	00041: NPUSHB      (11):    15    15     2    85     0    30    13    13     2    85 
+	                             0 
+	00054: PUSHW[1]             -2 
+	00057: PUSHB[5]             12    12     2    85     0 
+	00063: PUSHW[1]            -24 
+	00066: NPUSHB      (11):    11    11     2    85     0     6    13    13     6    85 
+	                             0 
+	00079: PUSHW[1]             -4 
+	00082: NPUSHB      (43):    12    12     6    85     0    93   128    20     1    20 
+	                            11    32     8    10    16    16     2    85     8    20 
+	                            15    15     2    85     8    22    13    13     2    85 
+	                             8    26    12    12     2    85     8    18    11    11 
+	                             2    85     8 
+	00127: PUSHW[1]            -14 
+	00130: NPUSHB      (26):    16    16     6    85     8    14    15    15     6    85 
+	                             8    12    13    13     6    85     8    24    12    12 
+	                             6    85    32     8     1     8 
+	00158: PUSHW[1]            -64 
+	00161: NPUSHB      (18):    19    21    52     8    93    19    32    20     1    32 
+	                            20    80    20    96    20   112    20     4 
+	00181: DELTAP1    
+	00182: DELTAP2    
+	00183: SRP0       
+	00184: MIRP[srp0,nmd,rd,2] 
+	00185: CALL       
+	00186: DELTAP1    
+	00187: CALL       
+	00188: CALL       
+	00189: CALL       
+	00190: CALL       
+	00191: CALL       
+	00192: CALL       
+	00193: CALL       
+	00194: CALL       
+	00195: CALL       
+	00196: MIRP[nrp0,md,rd,1] 
+	00197: SRP0       
+	00198: DELTAP1    
+	00199: MIRP[srp0,nmd,rd,2] 
+	00200: CALL       
+	00201: CALL       
+	00202: CALL       
+	00203: CALL       
+	00204: CALL       
+	00205: CALL       
+	00206: CALL       
+	00207: MIRP[srp0,md,rd,1] 
+	00208: ALIGNRP    
+	00209: SVTCA[y-axis] 
+	00210: MIAP[rd+ci] 
+	00211: MIAP[rd+ci] 
+	00212: ALIGNRP    
+	00213: IP         
+	00214: MDAP[rd]   
+	00215: MIRP[nrp0,md,rd,1] 
+	00216: IP         
+	00217: IUP[y]     
+	00218: IUP[x]     
+	00219: RS         
+	00220: JROF       
+	00221: NPUSHB      (14):     5    13     6    37    13     5    11    54     0    12 
+	                             7    14    54     0 
+	00237: CALL       
+	00238: SVTCA[x-axis] 
+	00239: CALL       
+	00240: CALL       
+	00241: FLIPRGON   
+	00242: SVTCA[y-axis] 
+	00243: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:                      Y-Short         Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:        XDual                         On
+	 10:  YDual XDual                 X-Short On
+	 11:        XDual                         On
+	 12:        XDual         Y-Short         Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:        XDual                         On
+	 18:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1204,     0)  ->  Abs (  1204,     0)
+	  1: Rel (  -194,     0)  ->  Abs (  1010,     0)
+	  2: Rel (     0,   591)  ->  Abs (  1010,   591)
+	  3: Rel (  -261,   -97)  ->  Abs (   749,   494)
+	  4: Rel (  -196,     0)  ->  Abs (   553,   494)
+	  5: Rel (  -153,     0)  ->  Abs (   400,   494)
+	  6: Rel (  -234,   143)  ->  Abs (   166,   637)
+	  7: Rel (   -79,   220)  ->  Abs (    87,   857)
+	  8: Rel (     0,   178)  ->  Abs (    87,  1035)
+	  9: Rel (     0,   431)  ->  Abs (    87,  1466)
+	 10: Rel (   194,     0)  ->  Abs (   281,  1466)
+	 11: Rel (     0,  -413)  ->  Abs (   281,  1053)
+	 12: Rel (     0,  -240)  ->  Abs (   281,   813)
+	 13: Rel (   175,  -151)  ->  Abs (   456,   662)
+	 14: Rel (   123,     0)  ->  Abs (   579,   662)
+	 15: Rel (   205,     0)  ->  Abs (   784,   662)
+	 16: Rel (   226,    91)  ->  Abs (  1010,   753)
+	 17: Rel (     0,   713)  ->  Abs (  1010,  1466)
+	 18: Rel (   194,     0)  ->  Abs (  1204,  1466)
+
+	Glyph 594: off = 0x0001AA8C, len = 338
+	  numberOfContours:	1
+	  xMin:			161
+	  yMin:			0
+	  xMax:			1717
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	290
+	00000: NPUSHB      (79):    15    13    64    13   112    13   128    13   191    13 
+	                           192    13   239    13     7     7     2    30    11     8 
+	                             4     4     1    16     2    32    11    42    16    16 
+	                             2    85    11    14    15    15     2    85    11     6 
+	                            13    13     2    85    11    16    12    12     2    85 
+	                            11    10    11    11     2    85    11    26    15    15 
+	                             6    85    11    15    12    13     6    85    15    11 
+	                             1    79    11   127    11   143    11     3    11 
+	00081: PUSHW[1]            365 
+	00084: PUSHB[4]              6     7    32    10 
+	00089: PUSHW[1]            -40 
+	00092: PUSHB[5]             16    16     2    85    10 
+	00098: PUSHW[1]            -18 
+	00101: PUSHB[5]             15    15     2    85    10 
+	00107: PUSHW[1]             -2 
+	00110: PUSHB[5]             13    13     2    85    10 
+	00116: PUSHW[1]            -16 
+	00119: PUSHB[5]             12    12     2    85    10 
+	00125: PUSHW[1]            -32 
+	00128: PUSHB[5]             11    11     2    85    10 
+	00134: PUSHW[1]            -26 
+	00137: PUSHB[5]             15    15     6    85    10 
+	00143: PUSHW[1]            -18 
+	00146: NPUSHB      (18):    12    13     6    85    80    10     1     0    10     1 
+	                            64    10   112    10   128    10     3    10 
+	00166: PUSHW[1]            365 
+	00169: NPUSHB       (9):     6    32     3    16    16    16     2    85     3 
+	00180: PUSHW[1]            -10 
+	00183: PUSHB[5]             15    15     2    85     3 
+	00189: PUSHW[1]             -2 
+	00192: NPUSHB      (11):    12    12     2    85     3     7    16    16     6    85 
+	                             3 
+	00205: PUSHW[1]             -4 
+	00208: PUSHB[5]             15    15     6    85     3 
+	00214: PUSHW[1]             -2 
+	00217: NPUSHB      (24):    11    13     6    85    64     3   144     3     2    32 
+	                             3   112     3   160     3   192     3   239     3     5 
+	                             3   112    13     1 
+	00243: DELTAP1    
+	00244: MDAP[rd]   
+	00245: DELTAP1    
+	00246: DELTAP3    
+	00247: CALL       
+	00248: CALL       
+	00249: CALL       
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+	00253: MIRP[nrp0,md,rd,1] 
+	00254: MIRP[srp0,md,rd,1] 
+	00255: DELTAP1    
+	00256: DELTAP2    
+	00257: DELTAP3    
+	00258: CALL       
+	00259: CALL       
+	00260: CALL       
+	00261: CALL       
+	00262: CALL       
+	00263: CALL       
+	00264: CALL       
+	00265: MIRP[nrp0,md,rd,1] 
+	00266: SRP0       
+	00267: MIRP[srp0,md,rd,1] 
+	00268: DELTAP1    
+	00269: DELTAP2    
+	00270: CALL       
+	00271: CALL       
+	00272: CALL       
+	00273: CALL       
+	00274: CALL       
+	00275: CALL       
+	00276: CALL       
+	00277: MIRP[nrp0,md,rd,1] 
+	00278: SVTCA[y-axis] 
+	00279: MIAP[rd+ci] 
+	00280: ALIGNRP    
+	00281: SRP0       
+	00282: ALIGNRP    
+	00283: MDAP[rd]   
+	00284: MIRP[srp0,md,rd,1] 
+	00285: ALIGNRP    
+	00286: IUP[y]     
+	00287: IUP[x]     
+	00288: SVTCA[x-axis] 
+	00289: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual                         On
+	 11:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   161,  1466)  ->  Abs (   161,  1466)
+	  1: Rel (   194,     0)  ->  Abs (   355,  1466)
+	  2: Rel (     0, -1293)  ->  Abs (   355,   173)
+	  3: Rel (   487,     0)  ->  Abs (   842,   173)
+	  4: Rel (     0,  1293)  ->  Abs (   842,  1466)
+	  5: Rel (   194,     0)  ->  Abs (  1036,  1466)
+	  6: Rel (     0, -1293)  ->  Abs (  1036,   173)
+	  7: Rel (   487,     0)  ->  Abs (  1523,   173)
+	  8: Rel (     0,  1293)  ->  Abs (  1523,  1466)
+	  9: Rel (   194,     0)  ->  Abs (  1717,  1466)
+	 10: Rel (     0, -1466)  ->  Abs (  1717,     0)
+	 11: Rel ( -1556,     0)  ->  Abs (   161,     0)
+
+	Glyph 595: off = 0x0001ABDE, len = 404
+	  numberOfContours:	1
+	  xMin:			161
+	  yMin:			-407
+	  xMax:			1850
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	345
+	00000: NPUSHB      (37):    64    17   111    17   112    17   128    17   160    17 
+	                             5     8     4     4     1     2    13     6    11     2 
+	                            30    15     8    12    30   144    14   160    14   176 
+	                            14     3    14    14     7    32    10 
+	00039: PUSHW[1]            -40 
+	00042: PUSHB[5]             16    16     2    85    10 
+	00048: PUSHW[1]            -18 
+	00051: PUSHB[5]             15    15     2    85    10 
+	00057: PUSHW[1]             -2 
+	00060: PUSHB[5]             13    13     2    85    10 
+	00066: PUSHW[1]            -16 
+	00069: PUSHB[5]             12    12     2    85    10 
+	00075: PUSHW[1]            -32 
+	00078: PUSHB[5]             11    11     2    85    10 
+	00084: PUSHW[1]            -18 
+	00087: PUSHB[5]             16    16     6    85    10 
+	00093: PUSHW[1]            -45 
+	00096: PUSHB[5]             15    15     6    85    10 
+	00102: PUSHW[1]            -10 
+	00105: NPUSHB      (28):    12    13     6    85    10    10    11    11     6    85 
+	                             0    10    80    10     2     0    10    16    10     2 
+	                            64    10   112    10   128    10     3    10 
+	00135: PUSHW[1]            365 
+	00138: NPUSHB      (52):     3     2    32    15    42    16    16     2    85    15 
+	                            14    15    15     2    85    15     6    13    13     2 
+	                            85    15    16    12    12     2    85    15    10    11 
+	                            11     2    85    15    14    16    16     6    85    15 
+	                            40    15    15     6    85    15    10    12    12     6 
+	                            85    15 
+	00192: PUSHW[1]            -10 
+	00195: NPUSHB      (15):    11    11     6    85    15    15     1    79    15   127 
+	                            15   143    15     3    15 
+	00212: PUSHW[1]            365 
+	00215: NPUSHB       (9):     6    32     3    16    16    16     2    85     3 
+	00226: PUSHW[1]            -10 
+	00229: PUSHB[5]             15    15     2    85     3 
+	00235: PUSHW[1]             -2 
+	00238: PUSHB[5]             12    12     2    85     3 
+	00244: PUSHW[1]            -14 
+	00247: PUSHB[5]             16    16     6    85     3 
+	00253: PUSHW[1]            -24 
+	00256: NPUSHB      (30):    15    15     6    85     3     6    11    13     6    85 
+	                            64     3     1   239     3     1     0     3    32     3 
+	                           111     3   112     3   160     3   239     3     6     3 
+	00288: MDAP[rd]   
+	00289: DELTAP1    
+	00290: DELTAP2    
+	00291: DELTAP3    
+	00292: CALL       
+	00293: CALL       
+	00294: CALL       
+	00295: CALL       
+	00296: CALL       
+	00297: CALL       
+	00298: MIRP[srp0,md,rd,1] 
+	00299: MIRP[srp0,md,rd,1] 
+	00300: DELTAP1    
+	00301: DELTAP2    
+	00302: CALL       
+	00303: CALL       
+	00304: CALL       
+	00305: CALL       
+	00306: CALL       
+	00307: CALL       
+	00308: CALL       
+	00309: CALL       
+	00310: CALL       
+	00311: MIRP[nrp0,md,rd,1] 
+	00312: SRP0       
+	00313: MIRP[srp0,md,rd,1] 
+	00314: DELTAP1    
+	00315: DELTAP2    
+	00316: DELTAP3    
+	00317: CALL       
+	00318: CALL       
+	00319: CALL       
+	00320: CALL       
+	00321: CALL       
+	00322: CALL       
+	00323: CALL       
+	00324: CALL       
+	00325: CALL       
+	00326: MIRP[srp0,md,rd,1] 
+	00327: IP         
+	00328: MDAP[rd]   
+	00329: DELTAP1    
+	00330: MIRP[nrp0,md,rd,1] 
+	00331: SVTCA[y-axis] 
+	00332: MIAP[rd+ci] 
+	00333: MIRP[srp0,md,rd,1] 
+	00334: ALIGNRP    
+	00335: ALIGNRP    
+	00336: MDAP[rd]   
+	00337: MIAP[rd+ci] 
+	00338: ALIGNRP    
+	00339: SRP0       
+	00340: ALIGNRP    
+	00341: IUP[y]     
+	00342: IUP[x]     
+	00343: SVTCA[x-axis] 
+	00344: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual                         On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                         On
+	 13:  YDual                       X-Short On
+	 14:        XDual                         On
+	 15:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   161,  1466)  ->  Abs (   161,  1466)
+	  1: Rel (   194,     0)  ->  Abs (   355,  1466)
+	  2: Rel (     0, -1293)  ->  Abs (   355,   173)
+	  3: Rel (   487,     0)  ->  Abs (   842,   173)
+	  4: Rel (     0,  1293)  ->  Abs (   842,  1466)
+	  5: Rel (   194,     0)  ->  Abs (  1036,  1466)
+	  6: Rel (     0, -1293)  ->  Abs (  1036,   173)
+	  7: Rel (   487,     0)  ->  Abs (  1523,   173)
+	  8: Rel (     0,  1293)  ->  Abs (  1523,  1466)
+	  9: Rel (   194,     0)  ->  Abs (  1717,  1466)
+	 10: Rel (     0, -1293)  ->  Abs (  1717,   173)
+	 11: Rel (   133,     0)  ->  Abs (  1850,   173)
+	 12: Rel (     0,  -580)  ->  Abs (  1850,  -407)
+	 13: Rel (  -173,     0)  ->  Abs (  1677,  -407)
+	 14: Rel (     0,   407)  ->  Abs (  1677,     0)
+	 15: Rel ( -1516,     0)  ->  Abs (   161,     0)
+
+	Glyph 596: off = 0x0001AD72, len = 286
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1551
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  12
+	  1:  22
+
+	  Length of Instructions:	203
+	00000: NPUSHB      (30):    34     8     2    30    22    22    10    12    30     0 
+	                             2    13    30    10     8    17    38     6    20    16 
+	                            16     2    85     6    12    13    13     2    85     6 
+	00032: PUSHW[1]            -10 
+	00035: PUSHB[5]             11    13     6    85     6 
+	00041: PUSHW[1]            -64 
+	00044: NPUSHB      (29):    36    37    52    48     6     1     0     6    16     6 
+	                            32     6     3     6    49    32    24     1    24     1 
+	                            13    32    10    24    16    16     2    85    10 
+	00075: PUSHW[1]            -10 
+	00078: NPUSHB      (23):    15    15     2    85    10     6    13    13     2    85 
+	                            10    20    12    12     2    85    10    26    11    11 
+	                             2    85    10 
+	00103: PUSHW[1]            -18 
+	00106: NPUSHB      (11):    11    11     6    85    10    10    12    13     6    85 
+	                            10 
+	00119: PUSHW[1]            -18 
+	00122: NPUSHB       (9):    15    16     6    85    10   237     0     0    23 
+	00133: SRP0       
+	00134: ALIGNRP    
+	00135: SRP0       
+	00136: MIRP[srp0,nmd,rd,0] 
+	00137: CALL       
+	00138: CALL       
+	00139: CALL       
+	00140: CALL       
+	00141: CALL       
+	00142: CALL       
+	00143: CALL       
+	00144: CALL       
+	00145: MIRP[srp0,md,rd,1] 
+	00146: ALIGNRP    
+	00147: SRP0       
+	00148: DELTAP1    
+	00149: MIRP[srp0,nmd,rd,2] 
+	00150: DELTAP1    
+	00151: DELTAP1    
+	00152: CALL       
+	00153: CALL       
+	00154: CALL       
+	00155: CALL       
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: SVTCA[y-axis] 
+	00158: MIAP[rd+ci] 
+	00159: MIRP[nrp0,md,rd,1] 
+	00160: MIAP[rd+ci] 
+	00161: MIRP[nrp0,md,rd,1] 
+	00162: SRP2       
+	00163: IP         
+	00164: MDAP[rd]   
+	00165: MIRP[srp0,md,rd,1] 
+	00166: IUP[y]     
+	00167: IUP[x]     
+	00168: RS         
+	00169: JROF       
+	00170: NPUSHB      (24):     4    20    19    38    15     8    17    54     1    20 
+	                             4    17    54     1    16     7    14    54     0    18 
+	                             5    21    54     1 
+	00196: CALL       
+	00197: CALL       
+	00198: SVTCA[x-axis] 
+	00199: CALL       
+	00200: CALL       
+	00201: CALL       
+	00202: FLIPRGON   
+
+	Flags
+	-----
+	  0:        XDual                         On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:  YDual                               Off
+	  5:        XDual                 X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                               On
+	 10:  YDual                               On
+	 11:        XDual                         On
+	 12:  YDual                               On
+	 13:                                      On
+	 14:  YDual                               On
+	 15:  YDual XDual                 X-Short Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (     0,  1466)  ->  Abs (     0,  1466)
+	  1: Rel (   640,     0)  ->  Abs (   640,  1466)
+	  2: Rel (     0,  -626)  ->  Abs (   640,   840)
+	  3: Rel (   351,     0)  ->  Abs (   991,   840)
+	  4: Rel (   345,     0)  ->  Abs (  1336,   840)
+	  5: Rel (   215,  -256)  ->  Abs (  1551,   584)
+	  6: Rel (     0,  -160)  ->  Abs (  1551,   424)
+	  7: Rel (     0,  -184)  ->  Abs (  1551,   240)
+	  8: Rel (  -249,  -240)  ->  Abs (  1302,     0)
+	  9: Rel (  -299,     0)  ->  Abs (  1003,     0)
+	 10: Rel (  -557,     0)  ->  Abs (   446,     0)
+	 11: Rel (     0,  1293)  ->  Abs (   446,  1293)
+	 12: Rel (  -446,     0)  ->  Abs (     0,  1293)
+	 13: Rel (   640, -1128)  ->  Abs (   640,   165)
+	 14: Rel (   355,     0)  ->  Abs (   995,   165)
+	 15: Rel (   183,     0)  ->  Abs (  1178,   165)
+	 16: Rel (   164,   123)  ->  Abs (  1342,   288)
+	 17: Rel (     0,   134)  ->  Abs (  1342,   422)
+	 18: Rel (     0,    91)  ->  Abs (  1342,   513)
+	 19: Rel (   -97,   125)  ->  Abs (  1245,   638)
+	 20: Rel (  -160,    35)  ->  Abs (  1085,   673)
+	 21: Rel (  -186,     0)  ->  Abs (   899,   673)
+	 22: Rel (  -259,     0)  ->  Abs (   640,   673)
+
+	Glyph 597: off = 0x0001AE90, len = 396
+	  numberOfContours:	3
+	  xMin:			168
+	  yMin:			0
+	  xMax:			1643
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  10
+	  1:  20
+	  2:  24
+
+	  Length of Instructions:	308
+	00000: NPUSHB      (18):    34     8     2    30    20    20    10    21     1     2 
+	                            11    30    24    10     8    15    38     6 
+	00020: PUSHW[1]            -22 
+	00023: PUSHB[5]             15    15     2    85     6 
+	00029: PUSHW[1]            -36 
+	00032: PUSHB[5]             13    13     2    85     6 
+	00038: PUSHW[1]            -50 
+	00041: PUSHB[5]             12    12     2    85     6 
+	00047: PUSHW[1]            -30 
+	00050: NPUSHB      (39):    13    13     6    85     6     3    15    15     6    85 
+	                            80     6     1    16     6    32     6   192     6   208 
+	                             6   224     6     5    64     6    96     6   128     6 
+	                           175     6     4     6     6    10    24    32    22 
+	00091: PUSHW[1]            -36 
+	00094: PUSHB[5]             16    16     2    85    22 
+	00100: PUSHW[1]            -52 
+	00103: NPUSHB      (17):    15    15     2    85    22    46    13    13     2    85 
+	                            22    22    12    12     2    85    22 
+	00122: PUSHW[1]            -23 
+	00125: PUSHB[5]             11    11     6    85    22 
+	00131: PUSHW[1]             -8 
+	00134: NPUSHB      (17):    12    12     6    85    22     8    13    13     6    85 
+	                            22    10    15    15     6    85    22 
+	00153: PUSHW[1]            270 
+	00156: NPUSHB      (22):    32    26    48    26    64    26    80    26   128    26 
+	                             5    26     1    11    32    10    32    16    16     2 
+	                            85    10 
+	00180: PUSHW[1]            -10 
+	00183: PUSHB[5]             15    15     2    85    10 
+	00189: PUSHW[1]            -10 
+	00192: PUSHB[5]             13    13     2    85    10 
+	00198: PUSHW[1]             -6 
+	00201: PUSHB[5]             12    12     2    85    10 
+	00207: PUSHW[1]             -8 
+	00210: PUSHB[5]             13    13     6    85    10 
+	00216: PUSHW[1]             -8 
+	00219: PUSHB[7]             15    16     6    85    10    93    25 
+	00227: SRP0       
+	00228: MIRP[srp0,nmd,rd,2] 
+	00229: CALL       
+	00230: CALL       
+	00231: CALL       
+	00232: CALL       
+	00233: CALL       
+	00234: CALL       
+	00235: MIRP[srp0,md,rd,1] 
+	00236: ALIGNRP    
+	00237: SRP0       
+	00238: DELTAP1    
+	00239: MIRP[srp0,nmd,rd,2] 
+	00240: CALL       
+	00241: CALL       
+	00242: CALL       
+	00243: CALL       
+	00244: CALL       
+	00245: CALL       
+	00246: CALL       
+	00247: CALL       
+	00248: MIRP[srp0,md,rd,1] 
+	00249: SRP1       
+	00250: IP         
+	00251: MDAP[rd]   
+	00252: DELTAP1    
+	00253: DELTAP2    
+	00254: DELTAP3    
+	00255: CALL       
+	00256: CALL       
+	00257: CALL       
+	00258: CALL       
+	00259: CALL       
+	00260: MIRP[nrp0,md,rd,1] 
+	00261: SVTCA[y-axis] 
+	00262: MIAP[rd+ci] 
+	00263: ALIGNRP    
+	00264: MIRP[nrp0,md,rd,1] 
+	00265: MIAP[rd+ci] 
+	00266: ALIGNRP    
+	00267: SRP2       
+	00268: IP         
+	00269: MDAP[rd]   
+	00270: MIRP[nrp0,md,rd,1] 
+	00271: IUP[y]     
+	00272: IUP[x]     
+	00273: RS         
+	00274: JROF       
+	00275: NPUSHB      (24):     4    18    17    38    13     8    15    54     1    18 
+	                             4    15    54     1    14     7    12    54     0    16 
+	                             5    19    54     1 
+	00301: CALL       
+	00302: CALL       
+	00303: SVTCA[x-axis] 
+	00304: CALL       
+	00305: CALL       
+	00306: CALL       
+	00307: FLIPRGON   
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:  YDual                               Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                               On
+	 10:  YDual                               On
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual                               On
+	 13:  YDual XDual                 X-Short Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                               On
+	 21:                                      On
+	 22:  YDual XDual                 X-Short On
+	 23:        XDual                         On
+	 24:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   168,  1466)  ->  Abs (   168,  1466)
+	  1: Rel (   194,     0)  ->  Abs (   362,  1466)
+	  2: Rel (     0,  -626)  ->  Abs (   362,   840)
+	  3: Rel (   350,     0)  ->  Abs (   712,   840)
+	  4: Rel (   344,     0)  ->  Abs (  1056,   840)
+	  5: Rel (   217,  -254)  ->  Abs (  1273,   586)
+	  6: Rel (     0,  -161)  ->  Abs (  1273,   425)
+	  7: Rel (     0,  -170)  ->  Abs (  1273,   255)
+	  8: Rel (  -232,  -255)  ->  Abs (  1041,     0)
+	  9: Rel (  -315,     0)  ->  Abs (   726,     0)
+	 10: Rel (  -558,     0)  ->  Abs (   168,     0)
+	 11: Rel (   194,   165)  ->  Abs (   362,   165)
+	 12: Rel (   355,     0)  ->  Abs (   717,   165)
+	 13: Rel (   183,     0)  ->  Abs (   900,   165)
+	 14: Rel (   165,   123)  ->  Abs (  1065,   288)
+	 15: Rel (     0,   135)  ->  Abs (  1065,   423)
+	 16: Rel (     0,    92)  ->  Abs (  1065,   515)
+	 17: Rel (  -100,   124)  ->  Abs (   965,   639)
+	 18: Rel (  -158,    34)  ->  Abs (   807,   673)
+	 19: Rel (  -185,     0)  ->  Abs (   622,   673)
+	 20: Rel (  -260,     0)  ->  Abs (   362,   673)
+	 21: Rel (  1087,   793)  ->  Abs (  1449,  1466)
+	 22: Rel (   194,     0)  ->  Abs (  1643,  1466)
+	 23: Rel (     0, -1466)  ->  Abs (  1643,     0)
+	 24: Rel (  -194,     0)  ->  Abs (  1449,     0)
+
+	Glyph 598: off = 0x0001B01C, len = 274
+	  numberOfContours:	2
+	  xMin:			165
+	  yMin:			0
+	  xMax:			1270
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  21
+
+	  Length of Instructions:	197
+	00000: NPUSHB      (22):    37     8     2    30    21    21    11     0     2    12 
+	                            30    11     8    16    38     7    22    16    16     2 
+	                            85     7 
+	00024: PUSHW[1]            -16 
+	00027: PUSHB[5]             12    12     2    85     7 
+	00033: PUSHW[1]            -13 
+	00036: PUSHB[5]             11    13     6    85     7 
+	00042: PUSHW[1]            -64 
+	00045: NPUSHB      (35):    36    37    52    48     7     1     0     7    16     7 
+	                            32     7     3     7    49    64    23   128    23   144 
+	                            23   175    23     4    23     1    12    32    11    32 
+	                            16    16     2    85    11 
+	00082: PUSHW[1]            -10 
+	00085: PUSHB[5]             15    15     2    85    11 
+	00091: PUSHW[1]            -10 
+	00094: PUSHB[5]             13    13     2    85    11 
+	00100: PUSHW[1]             -6 
+	00103: PUSHB[5]             12    12     2    85    11 
+	00109: PUSHW[1]            -10 
+	00112: PUSHB[5]             12    13     6    85    11 
+	00118: PUSHW[1]            -14 
+	00121: PUSHB[7]             15    16     6    85    11    93    22 
+	00129: SRP0       
+	00130: MIRP[srp0,nmd,rd,2] 
+	00131: CALL       
+	00132: CALL       
+	00133: CALL       
+	00134: CALL       
+	00135: CALL       
+	00136: CALL       
+	00137: MIRP[srp0,md,rd,1] 
+	00138: ALIGNRP    
+	00139: SRP0       
+	00140: DELTAP1    
+	00141: MIRP[srp0,nmd,rd,2] 
+	00142: DELTAP1    
+	00143: DELTAP1    
+	00144: CALL       
+	00145: CALL       
+	00146: CALL       
+	00147: CALL       
+	00148: MIRP[nrp0,md,rd,1] 
+	00149: SVTCA[y-axis] 
+	00150: MIAP[rd+ci] 
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: MIAP[rd+ci] 
+	00153: SRP2       
+	00154: IP         
+	00155: MDAP[rd]   
+	00156: MIRP[srp0,md,rd,1] 
+	00157: IUP[y]     
+	00158: IUP[x]     
+	00159: RS         
+	00160: JROF       
+	00161: NPUSHB      (26):     4    19     5    37    18    38    14     9    16    54 
+	                             1    19     4    16    54     1    15     8    13    54 
+	                             0    17     6    20    54     1 
+	00189: CALL       
+	00190: CALL       
+	00191: SVTCA[x-axis] 
+	00192: CALL       
+	00193: CALL       
+	00194: CALL       
+	00195: CALL       
+	00196: FLIPRGON   
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                              X-Short Off
+	 10:  YDual                               On
+	 11:  YDual                               On
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual                               On
+	 14:  YDual XDual                 X-Short Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   165,  1466)  ->  Abs (   165,  1466)
+	  1: Rel (   194,     0)  ->  Abs (   359,  1466)
+	  2: Rel (     0,  -626)  ->  Abs (   359,   840)
+	  3: Rel (   350,     0)  ->  Abs (   709,   840)
+	  4: Rel (   245,     0)  ->  Abs (   954,   840)
+	  5: Rel (   220,  -114)  ->  Abs (  1174,   726)
+	  6: Rel (    96,  -196)  ->  Abs (  1270,   530)
+	  7: Rel (     0,  -104)  ->  Abs (  1270,   426)
+	  8: Rel (     0,  -170)  ->  Abs (  1270,   256)
+	  9: Rel (  -232,  -256)  ->  Abs (  1038,     0)
+	 10: Rel (  -316,     0)  ->  Abs (   722,     0)
+	 11: Rel (  -557,     0)  ->  Abs (   165,     0)
+	 12: Rel (   194,   165)  ->  Abs (   359,   165)
+	 13: Rel (   355,     0)  ->  Abs (   714,   165)
+	 14: Rel (   216,     0)  ->  Abs (   930,   165)
+	 15: Rel (   131,   153)  ->  Abs (  1061,   318)
+	 16: Rel (     0,   108)  ->  Abs (  1061,   426)
+	 17: Rel (     0,    88)  ->  Abs (  1061,   514)
+	 18: Rel (   -95,   123)  ->  Abs (   966,   637)
+	 19: Rel (  -158,    36)  ->  Abs (   808,   673)
+	 20: Rel (  -189,     0)  ->  Abs (   619,   673)
+	 21: Rel (  -260,     0)  ->  Abs (   359,   673)
+
+	Glyph 599: off = 0x0001B12E, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-25
+	  xMax:			1372
+	  yMax:			1491
+
+	     0: Flags:		0x0153
+		Glyf Index:	559
+		X WOffset:	1472
+		Y WOffset:	0
+		X Scale:	-1.000000
+		Y Scale:	 1.000000
+		Other:		                   No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     0    13    13    39    16    16     2    85    13 
+	00011: PUSHW[1]            -35 
+	00014: PUSHB[7]             13    13     2    85    13    92    28 
+	00022: FLIPOFF    
+	00023: SRP0       
+	00024: MIRP[srp0,nmd,rd,2] 
+	00025: CALL       
+	00026: CALL       
+	00027: SRP1       
+	00028: SHC[rp1,zp0] 
+
+	Glyph 600: off = 0x0001B164, len = 566
+	  numberOfContours:	2
+	  xMin:			164
+	  yMin:			-25
+	  xMax:			1965
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  18
+	  1:  30
+
+	  Length of Instructions:	444
+	00000: NPUSHB      (54):     6    21     9    23     9    27     6    29    21    21 
+	                            27    23    27    27    21    29    37     7    38    11 
+	                            43    13    38    21    42    23    42    27    37    29 
+	                            70    20    72    24    73    26    71    30    80    21 
+	                            91    23    92    27    83    29   123    14   139    14 
+	                           156     4    26    14 
+	00056: PUSHW[1]            -24 
+	00059: PUSHB[5]             16    17     2    85    14 
+	00065: PUSHW[1]            -24 
+	00068: PUSHB[5]             13    14     2    85    14 
+	00074: PUSHW[1]            -24 
+	00077: PUSHB[5]             11    11     2    85     4 
+	00083: PUSHW[1]            -24 
+	00086: PUSHB[5]             16    17     2    85     4 
+	00092: PUSHW[1]            -24 
+	00095: PUSHB[5]             13    14     2    85     4 
+	00101: PUSHW[1]            -24 
+	00104: NPUSHB      (49):    11    11     2    85     2    30    16    64    16    17 
+	                             2    85    16    64    13    14     2    85    16    64 
+	                            11    11     2    85    16    64    11    11     6    85 
+	                            16    16    18     0    28    30     6     3     0     2 
+	                            18     8    22    30    12     9    25    38     9 
+	00155: PUSHW[1]            -10 
+	00158: PUSHB[5]             16    16     2    85     9 
+	00164: PUSHW[1]            -14 
+	00167: PUSHB[5]             15    15     2    85     9 
+	00173: PUSHW[1]            -18 
+	00176: PUSHB[5]             13    13     2    85     9 
+	00182: PUSHW[1]            -16 
+	00185: PUSHB[5]             12    12     2    85     9 
+	00191: PUSHW[1]            -18 
+	00194: PUSHB[5]             11    11     2    85     9 
+	00200: PUSHW[1]             -2 
+	00203: PUSHB[5]             11    11     6    85     9 
+	00209: PUSHW[1]            -10 
+	00212: PUSHB[5]             13    13     6    85     9 
+	00218: PUSHW[1]             -8 
+	00221: NPUSHB      (15):    15    15     6    85     9    92   128    32     1    32 
+	                            19    38    15   123     3 
+	00238: PUSHW[1]            -42 
+	00241: NPUSHB      (11):    16    16     2    85     3    20    15    15     2    85 
+	                             3 
+	00254: PUSHW[1]             -4 
+	00257: NPUSHB      (11):    13    13     2    85     3     4    12    12     2    85 
+	                             3 
+	00270: PUSHW[1]            -24 
+	00273: NPUSHB      (17):    11    11     2    85     3    26    11    11     6    85 
+	                             3    10    12    12     6    85     3 
+	00292: PUSHW[1]             -8 
+	00295: NPUSHB      (29):    13    13     6    85     3    26    15    15     6    85 
+	                            32     3   127     3   143     3     3     3   218     1 
+	                            17    32    18    32    16    16     2    85    18 
+	00326: PUSHW[1]            -10 
+	00329: PUSHB[5]             15    15     2    85    18 
+	00335: PUSHW[1]            -10 
+	00338: PUSHB[5]             13    13     2    85    18 
+	00344: PUSHW[1]             -6 
+	00347: PUSHB[5]             12    12     2    85    18 
+	00353: PUSHW[1]             -8 
+	00356: PUSHB[5]             15    16     6    85    18 
+	00362: PUSHW[1]            -10 
+	00365: PUSHB[5]             13    13     6    85    18 
+	00371: PUSHW[1]             -6 
+	00374: PUSHB[7]             12    12     6    85    18    93    31 
+	00382: SRP0       
+	00383: MIRP[srp0,nmd,rd,2] 
+	00384: CALL       
+	00385: CALL       
+	00386: CALL       
+	00387: CALL       
+	00388: CALL       
+	00389: CALL       
+	00390: CALL       
+	00391: MIRP[srp0,md,rd,1] 
+	00392: ALIGNRP    
+	00393: MIRP[srp0,nmd,rd,2] 
+	00394: DELTAP1    
+	00395: CALL       
+	00396: CALL       
+	00397: CALL       
+	00398: CALL       
+	00399: CALL       
+	00400: CALL       
+	00401: CALL       
+	00402: CALL       
+	00403: CALL       
+	00404: MIRP[srp0,nmd,rd,0] 
+	00405: MIRP[nrp0,md,rd,1] 
+	00406: SRP0       
+	00407: DELTAP1    
+	00408: MIRP[srp0,nmd,rd,0] 
+	00409: CALL       
+	00410: CALL       
+	00411: CALL       
+	00412: CALL       
+	00413: CALL       
+	00414: CALL       
+	00415: CALL       
+	00416: CALL       
+	00417: MIRP[nrp0,md,rd,1] 
+	00418: SVTCA[y-axis] 
+	00419: MIAP[rd+ci] 
+	00420: MIRP[nrp0,md,rd,1] 
+	00421: MIAP[rd+ci] 
+	00422: MIAP[rd+ci] 
+	00423: MIAP[rd+ci] 
+	00424: MIRP[nrp0,md,rd,1] 
+	00425: SRP1       
+	00426: SRP2       
+	00427: IP         
+	00428: MDAP[rd]   
+	00429: CALL       
+	00430: CALL       
+	00431: CALL       
+	00432: CALL       
+	00433: MIRP[nrp0,md,rd,1] 
+	00434: IUP[y]     
+	00435: IUP[x]     
+	00436: CALL       
+	00437: CALL       
+	00438: CALL       
+	00439: CALL       
+	00440: CALL       
+	00441: CALL       
+	00442: SVTCA[x-axis] 
+	00443: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:        XDual                 X-Short Off
+	  5:                                      Off
+	  6:  YDual                               On
+	  7:  YDual                               Off
+	  8:                                      Off
+	  9:        XDual                         On
+	 10:        XDual                         Off
+	 11:                                      Off
+	 12:  YDual                               On
+	 13:  YDual                               Off
+	 14:                                      Off
+	 15:                              X-Short On
+	 16:  YDual                               On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:                                      On
+	 20:        XDual                         Off
+	 21:                                      Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual                 X-Short Off
+	 25:        XDual                         On
+	 26:        XDual                         Off
+	 27:                              X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:                              X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   164,  1466)  ->  Abs (   164,  1466)
+	  1: Rel (   194,     0)  ->  Abs (   358,  1466)
+	  2: Rel (     0,  -658)  ->  Abs (   358,   808)
+	  3: Rel (   282,     0)  ->  Abs (   640,   808)
+	  4: Rel (    21,   312)  ->  Abs (   661,  1120)
+	  5: Rel (   368,   371)  ->  Abs (  1029,  1491)
+	  6: Rel (   272,     0)  ->  Abs (  1301,  1491)
+	  7: Rel (   287,     0)  ->  Abs (  1588,  1491)
+	  8: Rel (   377,  -404)  ->  Abs (  1965,  1087)
+	  9: Rel (     0,  -346)  ->  Abs (  1965,   741)
+	 10: Rel (     0,  -360)  ->  Abs (  1965,   381)
+	 11: Rel (  -376,  -406)  ->  Abs (  1589,   -25)
+	 12: Rel (  -293,     0)  ->  Abs (  1296,   -25)
+	 13: Rel (  -266,     0)  ->  Abs (  1030,   -25)
+	 14: Rel (  -355,   351)  ->  Abs (   675,   326)
+	 15: Rel (   -31,   310)  ->  Abs (   644,   636)
+	 16: Rel (  -286,     0)  ->  Abs (   358,   636)
+	 17: Rel (     0,  -636)  ->  Abs (   358,     0)
+	 18: Rel (  -194,     0)  ->  Abs (   164,     0)
+	 19: Rel (   671,   726)  ->  Abs (   835,   726)
+	 20: Rel (     0,  -278)  ->  Abs (   835,   448)
+	 21: Rel (   256,  -307)  ->  Abs (  1091,   141)
+	 22: Rel (   208,     0)  ->  Abs (  1299,   141)
+	 23: Rel (   213,     0)  ->  Abs (  1512,   141)
+	 24: Rel (   254,   308)  ->  Abs (  1766,   449)
+	 25: Rel (     0,   289)  ->  Abs (  1766,   738)
+	 26: Rel (     0,   274)  ->  Abs (  1766,  1012)
+	 27: Rel (  -250,   315)  ->  Abs (  1516,  1327)
+	 28: Rel (  -213,     0)  ->  Abs (  1303,  1327)
+	 29: Rel (  -217,     0)  ->  Abs (  1086,  1327)
+	 30: Rel (  -251,  -319)  ->  Abs (   835,  1008)
+
+	Glyph 601: off = 0x0001B39A, len = 160
+	  numberOfContours:	-1  (Composite)
+	  xMin:			26
+	  yMin:			0
+	  xMax:			1318
+	  yMax:			1466
+
+	     0: Flags:		0x0153
+		Glyf Index:	53
+		X WOffset:	1479
+		Y WOffset:	0
+		X Scale:	-1.000000
+		Y Scale:	 1.000000
+		Other:		                   No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHW[2]             15   -12 
+	00005: PUSHB[5]             11    16     6    85    16 
+	00011: PUSHW[1]            -12 
+	00014: NPUSHB      (14):    11    16     6    85     1     0     0     0    34    16 
+	                            16     2    85     0 
+	00030: PUSHW[1]            -18 
+	00033: PUSHB[5]             15    15     2    85     0 
+	00039: PUSHW[1]            -14 
+	00042: NPUSHB      (11):    13    13     2    85     0    16    12    12     2    85 
+	                             0 
+	00055: PUSHW[1]            -10 
+	00058: PUSHB[5]             11    11     2    85     0 
+	00064: PUSHW[1]             -4 
+	00067: PUSHB[5]             16    16     6    85     0 
+	00073: PUSHW[1]            -16 
+	00076: NPUSHB      (11):    15    15     6    85     0     2    13    13     6    85 
+	                             0 
+	00089: PUSHW[1]             -4 
+	00092: PUSHB[5]             12    12     6    85     0 
+	00098: PUSHW[1]            -14 
+	00101: NPUSHB      (13):    11    11     6    85    32     0     1    32     0     1 
+	                             0    93    36 
+	00116: SVTCA[x-axis] 
+	00117: SRP0       
+	00118: MIRP[srp0,nmd,rd,2] 
+	00119: DELTAP1    
+	00120: DELTAP1    
+	00121: CALL       
+	00122: CALL       
+	00123: CALL       
+	00124: CALL       
+	00125: CALL       
+	00126: CALL       
+	00127: CALL       
+	00128: CALL       
+	00129: CALL       
+	00130: CALL       
+	00131: SRP1       
+	00132: SHC[rp1,zp0] 
+	00133: SHC[rp1,zp0] 
+	00134: CALL       
+	00135: CALL       
+
+	Glyph 602: off = 0x0001B43A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1086
+
+	     0: Flags:		0x0206
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 603: off = 0x0001B44A, len = 406
+	  numberOfContours:	2
+	  xMin:			91
+	  yMin:			-24
+	  xMax:			1092
+	  yMax:			1501
+
+	EndPoints
+	---------
+	  0:  28
+	  1:  40
+
+	  Length of Instructions:	275
+	00000: NPUSHB      (69):    57    10    53    37    57    39    73    10    70    37 
+	                            72    39    89    14    89    17    85    21    91    31 
+	                            81    37    92    39    12    61    24     1     9    32 
+	                            38     9    35    23     0    51     1   143     5    28 
+	                            26     0    32    28    12     7    38    28    19    11 
+	                             0   146     1   154    29    36    42    64    13    13 
+	                             2    85    42    64    11    11     2    85    15 
+	00071: PUSHW[1]            -16 
+	00074: NPUSHB      (17):    16    16     2    85    15    10    15    15     2    85 
+	                            15    10    13    13     2    85    15 
+	00093: PUSHW[1]            -10 
+	00096: NPUSHB      (11):    12    12     2    85    15     4    11    11     2    85 
+	                            15 
+	00109: PUSHW[1]            -16 
+	00112: PUSHB[5]             11    13     6    85    15 
+	00118: PUSHW[1]             -8 
+	00121: PUSHB[5]             15    15     6    85    15 
+	00127: PUSHW[1]            -64 
+	00130: NPUSHB      (16):    36    37    52    48    15     1     0    15    16    15 
+	                            32    15     3    15    49    42 
+	00148: PUSHW[1]            -64 
+	00151: NPUSHB      (67):    30    35    52    48    42     1    42   128    42     1 
+	                            35    36    23    12    14    15     2    85    23    18 
+	                            13    13     2    85    23    12    12    12     2    85 
+	                            23    28    11    11     2    85    23    18    11    11 
+	                             6    85    23    22    12    13     6    85    23    14 
+	                            16    16     6    85    23    64    36    37    52    31 
+	                            23    63    23     2    23    49    41 
+	00220: SRP0       
+	00221: MIRP[srp0,nmd,rd,2] 
+	00222: DELTAP1    
+	00223: CALL       
+	00224: CALL       
+	00225: CALL       
+	00226: CALL       
+	00227: CALL       
+	00228: CALL       
+	00229: CALL       
+	00230: CALL       
+	00231: MIRP[nrp0,md,rd,1] 
+	00232: DELTAP1    
+	00233: SRP0       
+	00234: DELTAP2    
+	00235: CALL       
+	00236: MIRP[srp0,nmd,rd,2] 
+	00237: DELTAP1    
+	00238: DELTAP1    
+	00239: CALL       
+	00240: CALL       
+	00241: CALL       
+	00242: CALL       
+	00243: CALL       
+	00244: CALL       
+	00245: CALL       
+	00246: CALL       
+	00247: CALL       
+	00248: CALL       
+	00249: MIRP[nrp0,md,rd,1] 
+	00250: MIRP[srp0,nmd,rd,0] 
+	00251: MIRP[nrp0,md,rd,1] 
+	00252: SVTCA[y-axis] 
+	00253: MIAP[rd+ci] 
+	00254: MIRP[nrp0,md,rd,1] 
+	00255: MIAP[rd+ci] 
+	00256: MIRP[nrp0,md,rd,1] 
+	00257: MIAP[rd+ci] 
+	00258: MIRP[nrp0,md,rd,1] 
+	00259: MIRP[srp0,nmd,rd,0] 
+	00260: MIRP[nrp0,nmd,rd,0] 
+	00261: SVTCA[x-axis] 
+	00262: SRP1       
+	00263: SRP2       
+	00264: IP         
+	00265: SVTCA[y-axis] 
+	00266: SRP1       
+	00267: SRP2       
+	00268: IP         
+	00269: IUP[y]     
+	00270: IUP[x]     
+	00271: SVTCA[y-axis] 
+	00272: DELTAP2    
+	00273: SVTCA[x-axis] 
+	00274: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short On
+	  2:              Rep-  2 Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:                      Y-Short X-Short Off
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:                                      Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:                              X-Short Off
+	 23:        XDual                         On
+	 24:        XDual                         Off
+	 25:                                      Off
+	 26:  YDual                               On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:                              X-Short On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:                      Y-Short X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   913,  1501)  ->  Abs (   913,  1501)
+	  1: Rel (   159,    -2)  ->  Abs (  1072,  1499)
+	  2: Rel (   -11,  -107)  ->  Abs (  1061,  1392)
+	  3: Rel (   -73,   -84)  ->  Abs (   988,  1308)
+	  4: Rel (  -115,   -24)  ->  Abs (   873,  1284)
+	  5: Rel (  -168,     0)  ->  Abs (   705,  1284)
+	  6: Rel (  -223,     0)  ->  Abs (   482,  1284)
+	  7: Rel (  -162,   -86)  ->  Abs (   320,  1198)
+	  8: Rel (   -71,  -189)  ->  Abs (   249,  1009)
+	  9: Rel (    -4,  -149)  ->  Abs (   245,   860)
+	 10: Rel (    68,   101)  ->  Abs (   313,   961)
+	 11: Rel (   182,   101)  ->  Abs (   495,  1062)
+	 12: Rel (   114,     0)  ->  Abs (   609,  1062)
+	 13: Rel (   209,     0)  ->  Abs (   818,  1062)
+	 14: Rel (   274,  -287)  ->  Abs (  1092,   775)
+	 15: Rel (     0,  -245)  ->  Abs (  1092,   530)
+	 16: Rel (     0,  -186)  ->  Abs (  1092,   344)
+	 17: Rel (  -138,  -238)  ->  Abs (   954,   106)
+	 18: Rel (  -189,  -130)  ->  Abs (   765,   -24)
+	 19: Rel (  -163,     0)  ->  Abs (   602,   -24)
+	 20: Rel (  -189,     0)  ->  Abs (   413,   -24)
+	 21: Rel (  -210,   173)  ->  Abs (   203,   149)
+	 22: Rel (  -112,   270)  ->  Abs (    91,   419)
+	 23: Rel (     0,   335)  ->  Abs (    91,   754)
+	 24: Rel (     0,   421)  ->  Abs (    91,  1175)
+	 25: Rel (   285,   292)  ->  Abs (   376,  1467)
+	 26: Rel (   296,     0)  ->  Abs (   672,  1467)
+	 27: Rel (   184,     0)  ->  Abs (   856,  1467)
+	 28: Rel (    50,    12)  ->  Abs (   906,  1479)
+	 29: Rel (    -2,  -944)  ->  Abs (   904,   535)
+	 30: Rel (     0,   166)  ->  Abs (   904,   701)
+	 31: Rel (  -157,   212)  ->  Abs (   747,   913)
+	 32: Rel (  -143,     0)  ->  Abs (   604,   913)
+	 33: Rel (  -149,     0)  ->  Abs (   455,   913)
+	 34: Rel (  -162,  -224)  ->  Abs (   293,   689)
+	 35: Rel (     0,  -187)  ->  Abs (   293,   502)
+	 36: Rel (     0,  -185)  ->  Abs (   293,   317)
+	 37: Rel (   179,  -196)  ->  Abs (   472,   121)
+	 38: Rel (   131,     0)  ->  Abs (   603,   121)
+	 39: Rel (   134,     0)  ->  Abs (   737,   121)
+	 40: Rel (   167,   227)  ->  Abs (   904,   348)
+
+	Glyph 604: off = 0x0001B5E0, len = 418
+	  numberOfContours:	3
+	  xMin:			136
+	  yMin:			0
+	  xMax:			1008
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  15
+	  1:  25
+	  2:  35
+
+	  Length of Instructions:	306
+	00000: NPUSHB      (54):    15    37    47    37     2    70     8     8    16    35 
+	                             8     5    30    16    43    35    35    15    25    43 
+	                             0     6    26    43    15    10    21    36     5    12 
+	                            12    13     6    85     5     8    15    15     6    85 
+	                             5    22    16    16     6    85   208     5     1     5 
+	                           170    30    36    11 
+	00056: PUSHW[1]             -4 
+	00059: PUSHB[5]             13    13     2    85    11 
+	00065: PUSHW[1]            -18 
+	00068: PUSHB[5]             12    12     6    85    11 
+	00074: PUSHW[1]             -8 
+	00077: PUSHB[5]             13    13     6    85    11 
+	00083: PUSHW[1]            -12 
+	00086: NPUSHB      (11):    15    15     6    85    11     6    16    16     6    85 
+	                            11 
+	00099: PUSHW[1]            -64 
+	00102: NPUSHB      (19):    36    37    52    48    11     1     0    11    16    11 
+	                            32    11     3    11    49   223    37     1    37 
+	00123: PUSHW[1]            -64 
+	00126: NPUSHB      (29):    30    35    52    48    37     1    37    25    26    37 
+	                            15     4    12    12     2    85    15    10    11    11 
+	                             2    85    15     4     9     9     2    85    15 
+	00157: PUSHW[1]            -10 
+	00160: NPUSHB      (11):    11    11     6    85    15    10    12    12     6    85 
+	                            15 
+	00173: PUSHW[1]            -14 
+	00176: PUSHB[7]             15    16     6    85    15    69    36 
+	00184: SRP0       
+	00185: MIRP[srp0,nmd,rd,2] 
+	00186: CALL       
+	00187: CALL       
+	00188: CALL       
+	00189: CALL       
+	00190: CALL       
+	00191: CALL       
+	00192: MIRP[srp0,md,rd,1] 
+	00193: ALIGNRP    
+	00194: SRP0       
+	00195: DELTAP2    
+	00196: CALL       
+	00197: DELTAP1    
+	00198: MIRP[srp0,nmd,rd,2] 
+	00199: DELTAP1    
+	00200: DELTAP1    
+	00201: CALL       
+	00202: CALL       
+	00203: CALL       
+	00204: CALL       
+	00205: CALL       
+	00206: CALL       
+	00207: MIRP[nrp0,md,rd,1] 
+	00208: MIRP[srp0,nmd,rd,0] 
+	00209: DELTAP1    
+	00210: CALL       
+	00211: CALL       
+	00212: CALL       
+	00213: MIRP[nrp0,md,rd,1] 
+	00214: SVTCA[y-axis] 
+	00215: MIAP[rd+ci] 
+	00216: MIRP[nrp0,md,rd,1] 
+	00217: MIAP[rd+ci] 
+	00218: MIRP[nrp0,md,rd,1] 
+	00219: SRP2       
+	00220: IP         
+	00221: MDAP[rd]   
+	00222: MIRP[srp0,md,rd,1] 
+	00223: SVTCA[x-axis] 
+	00224: SRP1       
+	00225: SRP2       
+	00226: IP         
+	00227: SVTCA[y-axis] 
+	00228: SRP1       
+	00229: SRP2       
+	00230: IP         
+	00231: IUP[y]     
+	00232: IUP[x]     
+	00233: RS         
+	00234: JROF       
+	00235: NPUSHB      (51):     2    33    19    37     3    37    32    38    18     7 
+	                            21    27     1    23     2    21    27     1    28    13 
+	                            30    27     1    33     9    30    27     1    20     6 
+	                            17    27     0     7    22     4    24    27     1    29 
+	                            12    27    27     0    31    10    34    27     1     9 
+	                             8 
+	00288: SRP0       
+	00289: ALIGNRP    
+	00290: CALL       
+	00291: CALL       
+	00292: CALL       
+	00293: ALIGNRP    
+	00294: CALL       
+	00295: SVTCA[x-axis] 
+	00296: CALL       
+	00297: CALL       
+	00298: CALL       
+	00299: CALL       
+	00300: CALL       
+	00301: CALL       
+	00302: CALL       
+	00303: FLIPRGON   
+	00304: SVTCA[x-axis] 
+	00305: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:                      Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:                      Y-Short X-Short Off
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                               On
+	 16:        XDual                 X-Short On
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short On
+	 26:        XDual                         On
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   136,  1062)  ->  Abs (   136,  1062)
+	  1: Rel (   415,     0)  ->  Abs (   551,  1062)
+	  2: Rel (   153,     0)  ->  Abs (   704,  1062)
+	  3: Rel (   149,   -51)  ->  Abs (   853,  1011)
+	  4: Rel (   107,  -136)  ->  Abs (   960,   875)
+	  5: Rel (     0,   -95)  ->  Abs (   960,   780)
+	  6: Rel (     0,   -76)  ->  Abs (   960,   704)
+	  7: Rel (   -63,  -113)  ->  Abs (   897,   591)
+	  8: Rel (   -63,   -38)  ->  Abs (   834,   553)
+	  9: Rel (    75,   -25)  ->  Abs (   909,   528)
+	 10: Rel (    99,  -137)  ->  Abs (  1008,   391)
+	 11: Rel (     0,   -94)  ->  Abs (  1008,   297)
+	 12: Rel (   -10,  -151)  ->  Abs (   998,   146)
+	 13: Rel (  -196,  -146)  ->  Abs (   802,     0)
+	 14: Rel (  -187,     0)  ->  Abs (   615,     0)
+	 15: Rel (  -479,     0)  ->  Abs (   136,     0)
+	 16: Rel (   180,   615)  ->  Abs (   316,   615)
+	 17: Rel (   192,     0)  ->  Abs (   508,   615)
+	 18: Rel (   115,     0)  ->  Abs (   623,   615)
+	 19: Rel (    86,    24)  ->  Abs (   709,   639)
+	 20: Rel (    68,    73)  ->  Abs (   777,   712)
+	 21: Rel (     0,    51)  ->  Abs (   777,   763)
+	 22: Rel (     0,    84)  ->  Abs (   777,   847)
+	 23: Rel (  -119,    66)  ->  Abs (   658,   913)
+	 24: Rel (  -144,     0)  ->  Abs (   514,   913)
+	 25: Rel (  -198,     0)  ->  Abs (   316,   913)
+	 26: Rel (     0,  -765)  ->  Abs (   316,   148)
+	 27: Rel (   237,     0)  ->  Abs (   553,   148)
+	 28: Rel (   153,     0)  ->  Abs (   706,   148)
+	 29: Rel (   114,    71)  ->  Abs (   820,   219)
+	 30: Rel (     3,    87)  ->  Abs (   823,   306)
+	 31: Rel (     0,    51)  ->  Abs (   823,   357)
+	 32: Rel (   -66,    87)  ->  Abs (   757,   444)
+	 33: Rel (  -106,    23)  ->  Abs (   651,   467)
+	 34: Rel (  -117,     0)  ->  Abs (   534,   467)
+	 35: Rel (  -218,     0)  ->  Abs (   316,   467)
+
+	Glyph 605: off = 0x0001B782, len = 132
+	  numberOfContours:	1
+	  xMin:			136
+	  yMin:			0
+	  xMax:			747
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	100
+	00000: NPUSHB      (11):     3    43     0     6     5    10     1     7     4    37 
+	                             0 
+	00013: PUSHW[1]            -10 
+	00016: PUSHB[5]             17    17     2    85     0 
+	00022: PUSHW[1]             -6 
+	00025: NPUSHB      (17):    14    14     2    85     0     4    12    12     2    85 
+	                             0    10    11    11     2    85     0 
+	00044: PUSHW[1]            -12 
+	00047: PUSHB[5]             16    16     6    85     0 
+	00053: PUSHW[1]             -4 
+	00056: NPUSHB      (22):    13    13     6    85     0    12    12    12     6    85 
+	                             0     4    11    11     6    85     0     0     1     0 
+	                            69     6 
+	00080: SRP0       
+	00081: MIRP[srp0,nmd,rd,2] 
+	00082: DELTAP1    
+	00083: CALL       
+	00084: CALL       
+	00085: CALL       
+	00086: CALL       
+	00087: CALL       
+	00088: CALL       
+	00089: CALL       
+	00090: CALL       
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: SRP0       
+	00093: ALIGNRP    
+	00094: SVTCA[y-axis] 
+	00095: MIAP[rd+ci] 
+	00096: MIAP[rd+ci] 
+	00097: MIRP[nrp0,md,rd,1] 
+	00098: IUP[y]     
+	00099: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   136,  1062)  ->  Abs (   136,  1062)
+	  1: Rel (   611,     0)  ->  Abs (   747,  1062)
+	  2: Rel (     0,  -149)  ->  Abs (   747,   913)
+	  3: Rel (  -431,     0)  ->  Abs (   316,   913)
+	  4: Rel (     0,  -913)  ->  Abs (   316,     0)
+	  5: Rel (  -180,     0)  ->  Abs (   136,     0)
+
+	Glyph 606: off = 0x0001B806, len = 386
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			-301
+	  xMax:			1132
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  12
+	  1:  17
+
+	  Length of Instructions:	315
+	00000: NPUSHB      (15):    13    43     0     6     5     9    15     3    10    43 
+	                             7    10    13   146     0 
+	00017: PUSHW[1]            -18 
+	00020: NPUSHB      (11):    16    16     2    85     0    22    12    12     2    85 
+	                             0 
+	00033: PUSHW[1]            -14 
+	00036: PUSHB[5]             11    11     2    85     0 
+	00042: PUSHW[1]             -8 
+	00045: PUSHB[5]             11    11     6    85     0 
+	00051: PUSHW[1]            -22 
+	00054: NPUSHB      (25):    12    12     6    85   143     0     1     0    64    15 
+	                           201     0    11    16    11    32    11     3    11    11 
+	                             8     9    16    37     2 
+	00081: PUSHW[1]            -12 
+	00084: NPUSHB      (23):    12    12     6    85     2     2    16    16     6    85 
+	                            15     2     1    15     2   207     2     2     2     2 
+	                             5    43     3 
+	00109: PUSHW[1]            -30 
+	00112: NPUSHB      (17):    16    16     2    85     3     0    15    15     2    85 
+	                             3    14    14    14     2    85     3 
+	00131: PUSHW[1]            -10 
+	00134: NPUSHB      (11):    13    13     2    85     3     6    12    12     2    85 
+	                             3 
+	00147: PUSHW[1]            -10 
+	00150: NPUSHB      (17):    11    11     2    85     3     8    11    11     6    85 
+	                             3    18    12    12     6    85     3 
+	00169: PUSHW[1]            -38 
+	00172: PUSHB[5]             13    13     6    85     3 
+	00178: PUSHW[1]            -26 
+	00181: PUSHB[5]             15    15     6    85     3 
+	00187: PUSHW[1]            -11 
+	00190: NPUSHB      (36):    16    16     6    85    31     3    63     3   159     3 
+	                           175     3   191     3   223     3   239     3   255     3 
+	                             8    79     3   143     3     2   223     3     1     3 
+	                            78    19     8    43     9     9 
+	00228: PUSHW[1]             -8 
+	00231: PUSHB[5]             12    13     6    85     9 
+	00237: PUSHW[1]            -12 
+	00240: NPUSHB      (15):    15    15     6    85   223     9     1    15     9     1 
+	                            31     9     1     9    18 
+	00257: SRP0       
+	00258: ALIGNRP    
+	00259: DELTAP1    
+	00260: DELTAP2    
+	00261: DELTAP3    
+	00262: CALL       
+	00263: CALL       
+	00264: SRP0       
+	00265: MIRP[nrp0,md,rd,1] 
+	00266: SRP0       
+	00267: MIRP[srp0,nmd,rd,2] 
+	00268: DELTAP3    
+	00269: DELTAP2    
+	00270: DELTAP1    
+	00271: CALL       
+	00272: CALL       
+	00273: CALL       
+	00274: CALL       
+	00275: CALL       
+	00276: CALL       
+	00277: CALL       
+	00278: CALL       
+	00279: CALL       
+	00280: CALL       
+	00281: CALL       
+	00282: MIRP[srp0,md,rd,1] 
+	00283: IP         
+	00284: MDAP[rd]   
+	00285: DELTAP1    
+	00286: DELTAP2    
+	00287: CALL       
+	00288: CALL       
+	00289: MIRP[nrp0,md,rd,1] 
+	00290: SRP1       
+	00291: SRP2       
+	00292: IP         
+	00293: MDAP[rd]   
+	00294: DELTAP1    
+	00295: MIRP[nrp0,md,rd,1] 
+	00296: MIRP[srp0,nmd,rd,0] 
+	00297: DELTAP1    
+	00298: CALL       
+	00299: CALL       
+	00300: CALL       
+	00301: CALL       
+	00302: CALL       
+	00303: MIRP[nrp0,md,rd,1] 
+	00304: SVTCA[y-axis] 
+	00305: MIAP[rd+ci] 
+	00306: MIRP[srp0,md,rd,1] 
+	00307: ALIGNRP    
+	00308: ALIGNRP    
+	00309: MDAP[rd]   
+	00310: ALIGNRP    
+	00311: MIAP[rd+ci] 
+	00312: MIRP[nrp0,md,rd,1] 
+	00313: IUP[y]     
+	00314: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual XDual                 X-Short On
+	  4:        XDual                         On
+	  5:  YDual                       X-Short On
+	  6:        XDual                         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+	 10:        XDual                         On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                 X-Short Off
+	 13:        XDual                 X-Short On
+	 14:                              X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:  YDual                               On
+	 17:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   277,  1062)  ->  Abs (   277,  1062)
+	  1: Rel (   740,     0)  ->  Abs (  1017,  1062)
+	  2: Rel (     0,  -914)  ->  Abs (  1017,   148)
+	  3: Rel (   115,     0)  ->  Abs (  1132,   148)
+	  4: Rel (     0,  -449)  ->  Abs (  1132,  -301)
+	  5: Rel (  -148,     0)  ->  Abs (   984,  -301)
+	  6: Rel (     0,   301)  ->  Abs (   984,     0)
+	  7: Rel (  -836,     0)  ->  Abs (   148,     0)
+	  8: Rel (     0,  -301)  ->  Abs (   148,  -301)
+	  9: Rel (  -148,     0)  ->  Abs (     0,  -301)
+	 10: Rel (     0,   449)  ->  Abs (     0,   148)
+	 11: Rel (    95,     0)  ->  Abs (    95,   148)
+	 12: Rel (   190,   258)  ->  Abs (   285,   406)
+	 13: Rel (   142,   507)  ->  Abs (   427,   913)
+	 14: Rel (   -20,  -517)  ->  Abs (   407,   396)
+	 15: Rel (  -140,  -248)  ->  Abs (   267,   148)
+	 16: Rel (   571,     0)  ->  Abs (   838,   148)
+	 17: Rel (     0,   765)  ->  Abs (   838,   913)
+
+	Glyph 607: off = 0x0001B988, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			75
+	  yMin:			-24
+	  xMax:			1054
+	  yMax:			1086
+
+	     0: Flags:		0x0206
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 608: off = 0x0001B998, len = 616
+	  numberOfContours:	1
+	  xMin:			-5
+	  yMin:			0
+	  xMax:			1376
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  56
+
+	  Length of Instructions:	440
+	00000: NPUSHB      (57):    39     5     1     3    18    12    37    19    18    28 
+	                            37    16    58    47    58    63    58    96    58   112 
+	                            58   175    58    10     0    58    31    58    48    58 
+	                            79    58   127    58   128    58   223    58   239    58 
+	                             8    52    22    59    33   132    22   139    33   148 
+	                            22   155    33     6    53    51    51 
+	00059: PUSHW[1]             -8 
+	00062: PUSHB[5]             16    16     2    85    51 
+	00068: PUSHW[1]            -14 
+	00071: NPUSHB      (74):    15    17     6    85    51    43    41    39    20    41 
+	                            41    39     3     5     5    14    15    17     6    85 
+	                             5    43    14    16    20    14    14    16    23    22 
+	                            22    37    21    20    20    21    21    20    32    33 
+	                            33    37    34    35    20    34    34    35     3     5 
+	                            53    51     4     8     1    16    14    39    41     4 
+	                            11    18    37    18     1    35    32    23    20     4 
+	                            29    34    55     1 
+	00147: PUSHW[1]            268 
+	00150: NPUSHB      (63):    29    26    26     0    27    46    51    11    48    11 
+	                            72     8     8     0     6    34    33    33    27    27 
+	                            22    22    21    10    37    39    53    41    51     5 
+	                            47    35    33    32     3    28    34    18    16    14 
+	                             3     5     5    10    23    22    20     3    27    64 
+	                            10     1    10   170   128    21     1     0    21    16 
+	                            21     2    21 
+	00215: PUSHW[1]            552 
+	00218: NPUSHB      (11):     0    27    37    56    28    10    15    16     2    85 
+	                            28 
+	00231: PUSHW[1]            -14 
+	00234: PUSHB[5]             14    14     2    85    28 
+	00240: PUSHW[1]             -4 
+	00243: PUSHB[5]             12    12     2    85    28 
+	00249: PUSHW[1]            -10 
+	00252: PUSHB[5]             11    11     2    85    28 
+	00258: PUSHW[1]             -9 
+	00261: PUSHB[5]             11    13     6    85    28 
+	00267: PUSHW[1]             -8 
+	00270: NPUSHB      (13):    16    16     6    85   128    28     1     0    28    16 
+	                            28     2    28 
+	00285: PUSHW[1]            552 
+	00288: NPUSHB      (29):    79    47     1    47   170     0    34   144    34   208 
+	                            34     3    80    34   176    34   240    34     3   112 
+	                            34   224    34   240    34     3    34    51    57 
+	00319: SRP0       
+	00320: MIRP[srp0,nmd,rd,1] 
+	00321: DELTAP1    
+	00322: DELTAP2    
+	00323: DELTAP3    
+	00324: MIRP[nrp0,nmd,rd,0] 
+	00325: DELTAP2    
+	00326: MIRP[srp0,nmd,rd,0] 
+	00327: DELTAP1    
+	00328: DELTAP2    
+	00329: CALL       
+	00330: CALL       
+	00331: CALL       
+	00332: CALL       
+	00333: CALL       
+	00334: CALL       
+	00335: ALIGNRP    
+	00336: MIRP[srp0,md,rd,1] 
+	00337: ALIGNRP    
+	00338: MIRP[srp0,nmd,rd,0] 
+	00339: DELTAP1    
+	00340: DELTAP2    
+	00341: MIRP[nrp0,nmd,rd,0] 
+	00342: DELTAP2    
+	00343: SRP2       
+	00344: SLOOP      
+	00345: IP         
+	00346: SRP1       
+	00347: SLOOP      
+	00348: IP         
+	00349: SRP1       
+	00350: SRP2       
+	00351: SLOOP      
+	00352: IP         
+	00353: SRP1       
+	00354: SLOOP      
+	00355: IP         
+	00356: SVTCA[y-axis] 
+	00357: MIAP[rd+ci] 
+	00358: ALIGNRP    
+	00359: SRP0       
+	00360: ALIGNRP    
+	00361: SRP0       
+	00362: ALIGNRP    
+	00363: SRP0       
+	00364: ALIGNRP    
+	00365: MIAP[rd+ci] 
+	00366: ALIGNRP    
+	00367: SRP0       
+	00368: MIRP[nrp0,md,rd,1] 
+	00369: ALIGNRP    
+	00370: SRP0       
+	00371: MIRP[nrp0,nmd,rd,0] 
+	00372: SRP1       
+	00373: SRP2       
+	00374: IP         
+	00375: MDAP[rd]   
+	00376: ALIGNRP    
+	00377: MIRP[srp0,md,rd,1] 
+	00378: ALIGNRP    
+	00379: SRP1       
+	00380: SRP2       
+	00381: SLOOP      
+	00382: IP         
+	00383: SRP1       
+	00384: IP         
+	00385: IP         
+	00386: SRP1       
+	00387: SRP2       
+	00388: SLOOP      
+	00389: IP         
+	00390: SRP1       
+	00391: SRP2       
+	00392: SLOOP      
+	00393: IP         
+	00394: SDPVTL[1]  
+	00395: SFVTCA[x-axis] 
+	00396: MDAP[nrd]  
+	00397: CALL       
+	00398: SFVTPV     
+	00399: RDTG       
+	00400: SRP0       
+	00401: MDRP[nrp0,nmd,rd,0] 
+	00402: SDPVTL[1]  
+	00403: SFVTCA[x-axis] 
+	00404: MDAP[nrd]  
+	00405: RTG        
+	00406: CALL       
+	00407: SFVTPV     
+	00408: RDTG       
+	00409: SRP0       
+	00410: MDRP[nrp0,nmd,rd,0] 
+	00411: SDPVTL[1]  
+	00412: SFVTPV     
+	00413: MDAP[nrd]  
+	00414: RTG        
+	00415: CALL       
+	00416: CALL       
+	00417: SFVTPV     
+	00418: RDTG       
+	00419: SRP0       
+	00420: MDRP[nrp0,nmd,rd,0] 
+	00421: SDPVTL[1]  
+	00422: SFVTPV     
+	00423: MDAP[nrd]  
+	00424: RTG        
+	00425: CALL       
+	00426: CALL       
+	00427: CALL       
+	00428: SFVTPV     
+	00429: RDTG       
+	00430: SRP0       
+	00431: MDRP[nrp0,nmd,rd,0] 
+	00432: IUP[y]     
+	00433: IUP[x]     
+	00434: SVTCA[x-axis] 
+	00435: DELTAP2    
+	00436: DELTAP2    
+	00437: DELTAP1    
+	00438: SVTCA[y-axis] 
+	00439: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual         Y-Short         On
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual                       X-Short Off
+	 13:                      Y-Short X-Short On
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual                 X-Short On
+	 22:  YDual                       X-Short On
+	 23:                              X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:        XDual                         On
+	 28:  YDual                       X-Short On
+	 29:        XDual                         On
+	 30:  YDual                       X-Short Off
+	 31:                      Y-Short X-Short Off
+	 32:                      Y-Short X-Short On
+	 33:                              X-Short On
+	 34:  YDual                       X-Short On
+	 35:        XDual                 X-Short On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short X-Short On
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual               Y-Short X-Short On
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual               Y-Short X-Short On
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short Off
+	 46:                      Y-Short X-Short On
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual                 X-Short Off
+	 50:        XDual         Y-Short X-Short Off
+	 51:        XDual         Y-Short X-Short Off
+	 52:        XDual         Y-Short X-Short On
+	 53:        XDual         Y-Short X-Short Off
+	 54:        XDual         Y-Short X-Short Off
+	 55:  YDual XDual                 X-Short On
+	 56:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   777,  1062)  ->  Abs (   777,  1062)
+	  1: Rel (     0,  -459)  ->  Abs (   777,   603)
+	  2: Rel (    86,     0)  ->  Abs (   863,   603)
+	  3: Rel (    70,    66)  ->  Abs (   933,   669)
+	  4: Rel (    67,   159)  ->  Abs (  1000,   828)
+	  5: Rel (    63,   151)  ->  Abs (  1063,   979)
+	  6: Rel (    50,    42)  ->  Abs (  1113,  1021)
+	  7: Rel (    49,    41)  ->  Abs (  1162,  1062)
+	  8: Rel (   107,     0)  ->  Abs (  1269,  1062)
+	  9: Rel (    66,     0)  ->  Abs (  1335,  1062)
+	 10: Rel (     0,  -149)  ->  Abs (  1335,   913)
+	 11: Rel (   -49,     1)  ->  Abs (  1286,   914)
+	 12: Rel (   -72,     0)  ->  Abs (  1214,   914)
+	 13: Rel (   -20,   -21)  ->  Abs (  1194,   893)
+	 14: Rel (   -21,   -22)  ->  Abs (  1173,   871)
+	 15: Rel (   -43,  -109)  ->  Abs (  1130,   762)
+	 16: Rel (   -40,  -104)  ->  Abs (  1090,   658)
+	 17: Rel (   -68,   -80)  ->  Abs (  1022,   578)
+	 18: Rel (   -72,   -33)  ->  Abs (   950,   545)
+	 19: Rel (   117,   -31)  ->  Abs (  1067,   514)
+	 20: Rel (   111,  -185)  ->  Abs (  1178,   329)
+	 21: Rel (   198,  -329)  ->  Abs (  1376,     0)
+	 22: Rel (  -198,     0)  ->  Abs (  1178,     0)
+	 23: Rel (  -193,   329)  ->  Abs (   985,   329)
+	 24: Rel (   -59,   100)  ->  Abs (   926,   429)
+	 25: Rel (   -88,    62)  ->  Abs (   838,   491)
+	 26: Rel (   -61,     0)  ->  Abs (   777,   491)
+	 27: Rel (     0,  -491)  ->  Abs (   777,     0)
+	 28: Rel (  -184,     0)  ->  Abs (   593,     0)
+	 29: Rel (     0,   491)  ->  Abs (   593,   491)
+	 30: Rel (   -60,     0)  ->  Abs (   533,   491)
+	 31: Rel (   -88,   -61)  ->  Abs (   445,   430)
+	 32: Rel (   -59,  -101)  ->  Abs (   386,   329)
+	 33: Rel (  -193,  -329)  ->  Abs (   193,     0)
+	 34: Rel (  -198,     0)  ->  Abs (    -5,     0)
+	 35: Rel (   197,   329)  ->  Abs (   192,   329)
+	 36: Rel (   112,   185)  ->  Abs (   304,   514)
+	 37: Rel (   117,    31)  ->  Abs (   421,   545)
+	 38: Rel (   -80,    37)  ->  Abs (   341,   582)
+	 39: Rel (   -64,    87)  ->  Abs (   277,   669)
+	 40: Rel (   -64,   164)  ->  Abs (   213,   833)
+	 41: Rel (   -22,    55)  ->  Abs (   191,   888)
+	 42: Rel (   -25,    13)  ->  Abs (   166,   901)
+	 43: Rel (   -26,    13)  ->  Abs (   140,   914)
+	 44: Rel (   -51,     0)  ->  Abs (    89,   914)
+	 45: Rel (   -13,     0)  ->  Abs (    76,   914)
+	 46: Rel (   -40,    -1)  ->  Abs (    36,   913)
+	 47: Rel (     0,   149)  ->  Abs (    36,  1062)
+	 48: Rel (    25,     0)  ->  Abs (    61,  1062)
+	 49: Rel (   104,     0)  ->  Abs (   165,  1062)
+	 50: Rel (    85,   -25)  ->  Abs (   250,  1037)
+	 51: Rel (    67,   -81)  ->  Abs (   317,   956)
+	 52: Rel (    54,  -128)  ->  Abs (   371,   828)
+	 53: Rel (    66,  -157)  ->  Abs (   437,   671)
+	 54: Rel (    69,   -68)  ->  Abs (   506,   603)
+	 55: Rel (    87,     0)  ->  Abs (   593,   603)
+	 56: Rel (     0,   459)  ->  Abs (   593,  1062)
+
+	Glyph 609: off = 0x0001BC00, len = 384
+	  numberOfContours:	1
+	  xMin:			50
+	  yMin:			-24
+	  xMax:			866
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  38
+
+	  Length of Instructions:	266
+	00000: NPUSHB      (93):   212     9     1    16    40    85    29   128     9   132 
+	                            12   130    29     5     8    25     1    59     8    18 
+	                             0     1    26   143     0    27    80    27    96    27 
+	                           112    27   176    27     5   208    27     1    27    27 
+	                            30     0    11   143    15    10   127    10     2    10 
+	                            10     8    64     1     1     1    72   144     0   160 
+	                             0     2     0     0    24     8    72    13     7    30 
+	                            72    24    11    18    16    33     1     1     5    10 
+	                           201    11   143    27   201    26     5    36    16   143 
+	                            33    36    21 
+	00095: PUSHW[1]            -16 
+	00098: PUSHB[5]             16    16     2    85    21 
+	00104: PUSHW[1]            -64 
+	00107: NPUSHB      (17):    36    37    52    48    21     1     0    21    16    21 
+	                            32    21     3    21    49    40    26 
+	00126: PUSHW[1]            -16 
+	00129: NPUSHB      (13):    16    16     2    85    64    26     1   143    26   176 
+	                            26     2    26 
+	00144: PUSHW[2]            603    39 
+	00149: SRP0       
+	00150: MIRP[nrp0,nmd,rd,2] 
+	00151: DELTAP1    
+	00152: DELTAP2    
+	00153: CALL       
+	00154: SRP0       
+	00155: MIRP[srp0,nmd,rd,2] 
+	00156: DELTAP1    
+	00157: DELTAP1    
+	00158: CALL       
+	00159: CALL       
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: MIRP[srp0,nmd,rd,0] 
+	00162: MIRP[nrp0,md,rd,1] 
+	00163: SRP0       
+	00164: MIRP[nrp0,md,rd,1] 
+	00165: MIRP[srp0,nmd,rd,0] 
+	00166: MIRP[srp0,md,rd,1] 
+	00167: SRP1       
+	00168: IP         
+	00169: MDAP[rd]   
+	00170: SRP1       
+	00171: SRP2       
+	00172: IP         
+	00173: SVTCA[y-axis] 
+	00174: MIAP[rd+ci] 
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: MIAP[rd+ci] 
+	00177: MIRP[nrp0,md,rd,1] 
+	00178: SRP2       
+	00179: IP         
+	00180: MDAP[rd]   
+	00181: DELTAP1    
+	00182: MIRP[nrp0,md,rd,1] 
+	00183: DELTAP2    
+	00184: SRP1       
+	00185: IP         
+	00186: MDAP[rd]   
+	00187: DELTAP1    
+	00188: MIRP[nrp0,nmd,rd,0] 
+	00189: SRP1       
+	00190: SRP2       
+	00191: IP         
+	00192: MDAP[rd]   
+	00193: DELTAP2    
+	00194: DELTAP1    
+	00195: MIRP[nrp0,nmd,rd,0] 
+	00196: SRP1       
+	00197: SRP2       
+	00198: IP         
+	00199: IUP[y]     
+	00200: IUP[x]     
+	00201: RS         
+	00202: JROF       
+	00203: NPUSHB      (42):    31    36    19    23    14    15     6     7    35    38 
+	                             7    14     5    27     1    31    23    33    27     1 
+	                            36    19    33    27     3     6    15     8    27     1 
+	                            32    22    30    27     0    34    20    37    27     1 
+	                            19    18 
+	00247: SRP0       
+	00248: ALIGNRP    
+	00249: CALL       
+	00250: CALL       
+	00251: CALL       
+	00252: SVTCA[x-axis] 
+	00253: CALL       
+	00254: CALL       
+	00255: CALL       
+	00256: CALL       
+	00257: FLIPRGON   
+	00258: FLIPRGON   
+	00259: FLIPRGON   
+	00260: FLIPRGON   
+	00261: SVTCA[y-axis] 
+	00262: DELTAP1    
+	00263: SVTCA[x-axis] 
+	00264: DELTAP1    
+	00265: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual Rep-  2 Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short On
+	 12:        XDual                 X-Short Off
+	 13:  YDual                               On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                               Off
+	 26:                              X-Short On
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   370,   480)  ->  Abs (   370,   480)
+	  1: Rel (     0,   141)  ->  Abs (   370,   621)
+	  2: Rel (   114,     1)  ->  Abs (   484,   622)
+	  3: Rel (    83,    16)  ->  Abs (   567,   638)
+	  4: Rel (    74,    80)  ->  Abs (   641,   718)
+	  5: Rel (     0,    60)  ->  Abs (   641,   778)
+	  6: Rel (     0,    73)  ->  Abs (   641,   851)
+	  7: Rel (   -97,    87)  ->  Abs (   544,   938)
+	  8: Rel (   -77,     0)  ->  Abs (   467,   938)
+	  9: Rel (  -152,     0)  ->  Abs (   315,   938)
+	 10: Rel (   -61,  -179)  ->  Abs (   254,   759)
+	 11: Rel (  -171,    28)  ->  Abs (    83,   787)
+	 12: Rel (    80,   299)  ->  Abs (   163,  1086)
+	 13: Rel (   306,     0)  ->  Abs (   469,  1086)
+	 14: Rel (   170,     0)  ->  Abs (   639,  1086)
+	 15: Rel (   193,  -186)  ->  Abs (   832,   900)
+	 16: Rel (     0,  -129)  ->  Abs (   832,   771)
+	 17: Rel (     0,  -130)  ->  Abs (   832,   641)
+	 18: Rel (  -126,   -77)  ->  Abs (   706,   564)
+	 19: Rel (    80,   -43)  ->  Abs (   786,   521)
+	 20: Rel (    80,  -133)  ->  Abs (   866,   388)
+	 21: Rel (     0,   -91)  ->  Abs (   866,   297)
+	 22: Rel (     0,  -143)  ->  Abs (   866,   154)
+	 23: Rel (  -208,  -178)  ->  Abs (   658,   -24)
+	 24: Rel (  -187,     0)  ->  Abs (   471,   -24)
+	 25: Rel (  -363,     0)  ->  Abs (   108,   -24)
+	 26: Rel (   -58,   323)  ->  Abs (    50,   299)
+	 27: Rel (   169,    36)  ->  Abs (   219,   335)
+	 28: Rel (    23,  -102)  ->  Abs (   242,   233)
+	 29: Rel (   141,  -112)  ->  Abs (   383,   121)
+	 30: Rel (    91,     0)  ->  Abs (   474,   121)
+	 31: Rel (    91,     0)  ->  Abs (   565,   121)
+	 32: Rel (   121,   103)  ->  Abs (   686,   224)
+	 33: Rel (     0,    80)  ->  Abs (   686,   304)
+	 34: Rel (     0,    62)  ->  Abs (   686,   366)
+	 35: Rel (   -76,    92)  ->  Abs (   610,   458)
+	 36: Rel (   -86,    23)  ->  Abs (   524,   481)
+	 37: Rel (  -113,     0)  ->  Abs (   411,   481)
+	 38: Rel (    -9,     0)  ->  Abs (   402,   481)
+
+	Glyph 610: off = 0x0001BD80, len = 384
+	  numberOfContours:	1
+	  xMin:			135
+	  yMin:			0
+	  xMax:			1008
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	338
+	00000: NPUSHB      (17):    25     3    20     8     2    86     2   103     2   123 
+	                             7   132     2   141     7     5     2 
+	00019: PUSHW[1]            -22 
+	00022: NPUSHB      (11):     9    17     2    85     7    22     9    17     2    85 
+	                             2 
+	00035: PUSHW[1]            -22 
+	00038: NPUSHB      (57):     9    17     6    85     7    22     9    17     6    85 
+	                             3     7     8     8    43     2     3    20     2     2 
+	                             3     2     7     8     3     1     6     8     6    10 
+	                             7    37    11    64    16    16     2    85    11    64 
+	                            11    11     2    85     4    36    16    17     2    85 
+	                             4    18    14    14     2    85     4 
+	00097: PUSHW[1]            -19 
+	00100: NPUSHB      (29):    13    13     2    85     4     6    12    12     2    85 
+	                             4    26    11    11     2    85     4    22    16    16 
+	                             6    85     4     6    15    15     6    85     4 
+	00131: PUSHW[1]            -12 
+	00134: PUSHB[5]             12    13     6    85     4 
+	00140: PUSHW[1]             -4 
+	00143: NPUSHB      (18):    11    11     6    85     4    64    51    54    52   255 
+	                             4     1   255     4     1     4    78    11 
+	00163: PUSHW[1]            -64 
+	00166: NPUSHB      (23):    52    54    52   176    11   240    11     2   112    11 
+	                           128    11   160    11   176    11   192    11     5    11 
+	                             2    37     9 
+	00191: PUSHW[1]             -6 
+	00194: PUSHB[5]             16    16     2    85     9 
+	00200: PUSHW[1]             -6 
+	00203: NPUSHB      (11):    14    14     2    85     9     6    11    12     2    85 
+	                             9 
+	00216: PUSHW[1]             -6 
+	00219: NPUSHB      (11):    15    15     6    85     9     4    11    11     6    85 
+	                             9 
+	00232: PUSHW[1]            -64 
+	00235: NPUSHB      (18):    51    54    52   240     9     1     0     9    32     9 
+	                           208     9   224     9     4     9    78    10 
+	00255: SRP0       
+	00256: MIRP[srp0,nmd,rd,2] 
+	00257: DELTAP1    
+	00258: DELTAP2    
+	00259: CALL       
+	00260: CALL       
+	00261: CALL       
+	00262: CALL       
+	00263: CALL       
+	00264: CALL       
+	00265: MIRP[nrp0,md,rd,1] 
+	00266: SRP0       
+	00267: DELTAP1    
+	00268: DELTAP2    
+	00269: CALL       
+	00270: MIRP[srp0,nmd,rd,2] 
+	00271: DELTAP1    
+	00272: DELTAP2    
+	00273: CALL       
+	00274: CALL       
+	00275: CALL       
+	00276: CALL       
+	00277: CALL       
+	00278: CALL       
+	00279: CALL       
+	00280: CALL       
+	00281: CALL       
+	00282: CALL       
+	00283: CALL       
+	00284: CALL       
+	00285: MIRP[nrp0,md,rd,1] 
+	00286: PUSHB[2]              6     2 
+	00289: RS         
+	00290: EQ         
+	00291: IF         
+	00292: PUSHB[4]              3     8     7     2 
+	00297: SRP1       
+	00298: SRP2       
+	00299: IP         
+	00300: IP         
+	00301: ELSE       
+	00302: PUSHB[4]              3     8     6     2 
+	00307: SRP1       
+	00308: SRP2       
+	00309: IP         
+	00310: IP         
+	00311: EIF        
+	00312: SVTCA[y-axis] 
+	00313: MIAP[rd+ci] 
+	00314: ALIGNRP    
+	00315: MIAP[rd+ci] 
+	00316: ALIGNRP    
+	00317: SRP2       
+	00318: IP         
+	00319: IP         
+	00320: SDPVTL[1]  
+	00321: SFVTCA[x-axis] 
+	00322: MDAP[nrd]  
+	00323: CALL       
+	00324: SDPVTL[1]  
+	00325: RDTG       
+	00326: MDRP[nrp0,nmd,rd,0] 
+	00327: SVTCA[y-axis] 
+	00328: CALL       
+	00329: CALL       
+	00330: CALL       
+	00331: CALL       
+	00332: IUP[y]     
+	00333: IUP[x]     
+	00334: SVTCA[y-axis] 
+	00335: DELTAP1    
+	00336: SVTCA[x-axis] 
+	00337: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:                                      On
+	  4:  YDual XDual                 X-Short On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+	  8:                                      On
+	  9:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   135,  1062)  ->  Abs (   135,  1062)
+	  1: Rel (   180,     0)  ->  Abs (   315,  1062)
+	  2: Rel (     0,  -810)  ->  Abs (   315,   252)
+	  3: Rel (   499,   810)  ->  Abs (   814,  1062)
+	  4: Rel (   194,     0)  ->  Abs (  1008,  1062)
+	  5: Rel (     0, -1062)  ->  Abs (  1008,     0)
+	  6: Rel (  -180,     0)  ->  Abs (   828,     0)
+	  7: Rel (     0,   805)  ->  Abs (   828,   805)
+	  8: Rel (  -499,  -805)  ->  Abs (   329,     0)
+	  9: Rel (  -194,     0)  ->  Abs (   135,     0)
+
+	Glyph 611: off = 0x0001BF00, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			135
+	  yMin:			0
+	  xMax:			1008
+	  yMax:			1464
+
+	     0: Flags:		0x0226
+		Glyf Index:	610
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	217
+		X WOffset:	246
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    17    11     0     4    65     1     1    14 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 612: off = 0x0001BF30, len = 416
+	  numberOfContours:	1
+	  xMin:			134
+	  yMin:			0
+	  xMax:			912
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	318
+	00000: NPUSHB      (75):    62     5    63     6    63     7    68     5    68    23 
+	                           148    23     6    13     6    47     4    44     5    47 
+	                             6    47    31    76     6    94     6   122     7   139 
+	                             7   150     6    10    75     4    75     6   155     4 
+	                           155     6   171     4   171     6   187     4   187     6 
+	                           203     4   203     6    10    31    31    63    31   123 
+	                             4   123     6   143     4   143     6     6     4    17 
+	                             6    15    24    23    23 
+	00077: PUSHW[1]            -16 
+	00080: NPUSHB      (27):    12    13     6    85    23    37    22    21    20    22 
+	                            22    21     6     4     9     2    17    15     4     6 
+	                             4    12    21    24    28    19     2 
+	00109: PUSHW[1]            268 
+	00112: NPUSHB      (42):    27    27    22     1    12    72     9     9     1     6 
+	                            28    23    23    22    10     4     6    19    17    15 
+	                             5    11    24    21    23     3    28    11   170     0 
+	                            22     1    22    73    32    31     1    31     1    28 
+	                            37     0 
+	00156: PUSHW[1]             -8 
+	00159: PUSHB[5]             16    16     2    85     0 
+	00165: PUSHW[1]             -6 
+	00168: NPUSHB      (17):    14    14     2    85     0     6    12    12     2    85 
+	                             0     6    11    11     2    85     0 
+	00187: PUSHW[1]             -6 
+	00190: PUSHB[5]             12    12     6    85     0 
+	00196: PUSHW[1]             -4 
+	00199: PUSHB[5]             13    13     6    85     0 
+	00205: PUSHW[1]            -16 
+	00208: PUSHB[5]             15    15     6    85     0 
+	00214: PUSHW[1]            -10 
+	00217: PUSHB[5]             16    16     6    85     0 
+	00223: PUSHW[1]            -64 
+	00226: NPUSHB      (18):    51    54    52   240     0     1     0     0    32     0 
+	                           208     0   224     0     4     0    78    30 
+	00246: SRP0       
+	00247: MIRP[srp0,nmd,rd,0] 
+	00248: DELTAP1    
+	00249: DELTAP2    
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+	00253: CALL       
+	00254: CALL       
+	00255: CALL       
+	00256: CALL       
+	00257: CALL       
+	00258: CALL       
+	00259: MIRP[srp0,md,rd,1] 
+	00260: ALIGNRP    
+	00261: SRP0       
+	00262: DELTAP1    
+	00263: MIRP[srp0,nmd,rd,1] 
+	00264: DELTAP1    
+	00265: MIRP[nrp0,nmd,rd,0] 
+	00266: SRP2       
+	00267: SLOOP      
+	00268: IP         
+	00269: SRP1       
+	00270: SLOOP      
+	00271: IP         
+	00272: SVTCA[y-axis] 
+	00273: MIAP[rd+ci] 
+	00274: ALIGNRP    
+	00275: SRP0       
+	00276: ALIGNRP    
+	00277: MIAP[rd+ci] 
+	00278: ALIGNRP    
+	00279: SRP0       
+	00280: MIRP[nrp0,md,rd,1] 
+	00281: SRP1       
+	00282: SRP2       
+	00283: IP         
+	00284: MDAP[rd]   
+	00285: MIRP[nrp0,md,rd,1] 
+	00286: IP         
+	00287: SRP2       
+	00288: IP         
+	00289: IP         
+	00290: SRP2       
+	00291: SLOOP      
+	00292: IP         
+	00293: SRP1       
+	00294: SRP2       
+	00295: IP         
+	00296: IP         
+	00297: SDPVTL[1]  
+	00298: SFVTCA[x-axis] 
+	00299: MDAP[nrd]  
+	00300: CALL       
+	00301: CALL       
+	00302: SFVTPV     
+	00303: RDTG       
+	00304: SRP0       
+	00305: MDRP[nrp0,nmd,rd,0] 
+	00306: SVTCA[x-axis] 
+	00307: SRP1       
+	00308: SHP[rp1,zp0] 
+	00309: SRP1       
+	00310: SHP[rp1,zp0] 
+	00311: DELTAP1    
+	00312: DELTAP2    
+	00313: IUP[y]     
+	00314: IUP[x]     
+	00315: SVTCA[x-axis] 
+	00316: DELTAP1    
+	00317: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual XDual                 X-Short Off
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual Rep-  2 Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short On
+	 11:        XDual         Y-Short         On
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual                 X-Short On
+	 23:  YDual                       X-Short On
+	 24:                              X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:        XDual                         On
+	 29:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   134,  1062)  ->  Abs (   134,  1062)
+	  1: Rel (   180,     0)  ->  Abs (   314,  1062)
+	  2: Rel (     0,  -459)  ->  Abs (   314,   603)
+	  3: Rel (    86,     0)  ->  Abs (   400,   603)
+	  4: Rel (    69,    66)  ->  Abs (   469,   669)
+	  5: Rel (    67,   159)  ->  Abs (   536,   828)
+	  6: Rel (    53,   126)  ->  Abs (   589,   954)
+	  7: Rel (    66,    80)  ->  Abs (   655,  1034)
+	  8: Rel (    86,    28)  ->  Abs (   741,  1062)
+	  9: Rel (    95,     0)  ->  Abs (   836,  1062)
+	 10: Rel (    36,     0)  ->  Abs (   872,  1062)
+	 11: Rel (     0,  -149)  ->  Abs (   872,   913)
+	 12: Rel (   -50,     1)  ->  Abs (   822,   914)
+	 13: Rel (   -71,     0)  ->  Abs (   751,   914)
+	 14: Rel (   -20,   -21)  ->  Abs (   731,   893)
+	 15: Rel (   -21,   -22)  ->  Abs (   710,   871)
+	 16: Rel (   -43,  -109)  ->  Abs (   667,   762)
+	 17: Rel (   -41,  -104)  ->  Abs (   626,   658)
+	 18: Rel (   -68,   -80)  ->  Abs (   558,   578)
+	 19: Rel (   -71,   -33)  ->  Abs (   487,   545)
+	 20: Rel (   116,   -31)  ->  Abs (   603,   514)
+	 21: Rel (   112,  -185)  ->  Abs (   715,   329)
+	 22: Rel (   197,  -329)  ->  Abs (   912,     0)
+	 23: Rel (  -198,     0)  ->  Abs (   714,     0)
+	 24: Rel (  -192,   329)  ->  Abs (   522,   329)
+	 25: Rel (   -59,    99)  ->  Abs (   463,   428)
+	 26: Rel (   -88,    63)  ->  Abs (   375,   491)
+	 27: Rel (   -61,     0)  ->  Abs (   314,   491)
+	 28: Rel (     0,  -491)  ->  Abs (   314,     0)
+	 29: Rel (  -180,     0)  ->  Abs (   134,     0)
+
+	Glyph 613: off = 0x0001C0D0, len = 390
+	  numberOfContours:	1
+	  xMin:			24
+	  yMin:			-7
+	  xMax:			1059
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	326
+	00000: NPUSHB      (22):    28     8     5    43     0     6     3    51    12    14 
+	                            28    10    10     3    37    20    64    11    11     2 
+	                            85     2 
+	00024: PUSHW[1]            -52 
+	00027: NPUSHB      (11):    16    16     2    85     2    40    15    15     2    85 
+	                             2 
+	00040: PUSHW[1]             -6 
+	00043: NPUSHB      (11):    14    14     2    85     2    20    13    13     2    85 
+	                             2 
+	00056: PUSHW[1]            -14 
+	00059: NPUSHB      (11):    12    12     2    85     2    10    11    11     2    85 
+	                             2 
+	00072: PUSHW[1]            -20 
+	00075: PUSHB[5]              9     9     2    85     2 
+	00081: PUSHW[1]            -15 
+	00084: PUSHB[5]             11    12     6    85     2 
+	00090: PUSHW[1]            -10 
+	00093: NPUSHB      (27):    13    13     6    85     2     4    15    15     6    85 
+	                             2    16    16    16     6    85     2    64    51    54 
+	                            52   255     2     1     2    78    20 
+	00122: PUSHW[1]            -64 
+	00125: NPUSHB      (25):    52    54    52   176    20   240    20     2    64    20 
+	                            96    20   112    20   160    20   176    20   192    20 
+	                             6    20     5    37    18 
+	00152: PUSHW[1]            -10 
+	00155: PUSHB[5]             17    17     2    85    18 
+	00161: PUSHW[1]            -48 
+	00164: NPUSHB      (17):    16    16     2    85    18    22    15    15     2    85 
+	                            18    22    13    13     2    85    18 
+	00183: PUSHW[1]            -26 
+	00186: PUSHB[5]             12    12     2    85    18 
+	00192: PUSHW[1]            -20 
+	00195: PUSHB[5]             11    11     2    85    18 
+	00201: PUSHW[1]            -18 
+	00204: PUSHB[5]             12    12     6    85    18 
+	00210: PUSHW[1]            -14 
+	00213: PUSHB[5]             13    13     6    85    18 
+	00219: PUSHW[1]            -32 
+	00222: NPUSHB      (22):    15    16     6    85    79    18    95    18   111    18 
+	                           112    18   223    18     5    18   187    12    12    20 
+	                            19   124 
+	00246: PUSHW[2]            266    24 
+	00251: CALL       
+	00252: SRP1       
+	00253: SRP2       
+	00254: IP         
+	00255: MDAP[rd]   
+	00256: MIRP[srp0,nmd,rd,0] 
+	00257: DELTAP1    
+	00258: CALL       
+	00259: CALL       
+	00260: CALL       
+	00261: CALL       
+	00262: CALL       
+	00263: CALL       
+	00264: CALL       
+	00265: CALL       
+	00266: CALL       
+	00267: MIRP[nrp0,md,rd,1] 
+	00268: SRP0       
+	00269: DELTAP1    
+	00270: DELTAP2    
+	00271: CALL       
+	00272: MIRP[srp0,nmd,rd,2] 
+	00273: DELTAP2    
+	00274: CALL       
+	00275: CALL       
+	00276: CALL       
+	00277: CALL       
+	00278: CALL       
+	00279: CALL       
+	00280: CALL       
+	00281: CALL       
+	00282: CALL       
+	00283: CALL       
+	00284: CALL       
+	00285: CALL       
+	00286: CALL       
+	00287: MIRP[nrp0,md,rd,1] 
+	00288: SVTCA[y-axis] 
+	00289: MIAP[rd+ci] 
+	00290: MIRP[nrp0,md,rd,1] 
+	00291: SRP0       
+	00292: MIRP[nrp0,nmd,rd,0] 
+	00293: MIAP[rd+ci] 
+	00294: MIRP[nrp0,md,rd,1] 
+	00295: IUP[y]     
+	00296: IUP[x]     
+	00297: RS         
+	00298: JROF       
+	00299: NPUSHB      (18):    15    17     7     9     8    38    16    37    15     9 
+	                            18    27     1    17     7    14    27     0 
+	00319: CALL       
+	00320: SVTCA[x-axis] 
+	00321: CALL       
+	00322: CALL       
+	00323: CALL       
+	00324: FLIPRGON   
+	00325: FLIPRGON   
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:        XDual                         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   223,  1062)  ->  Abs (   223,  1062)
+	  1: Rel (   836,     0)  ->  Abs (  1059,  1062)
+	  2: Rel (     0, -1062)  ->  Abs (  1059,     0)
+	  3: Rel (  -179,     0)  ->  Abs (   880,     0)
+	  4: Rel (     0,   913)  ->  Abs (   880,   913)
+	  5: Rel (  -477,     0)  ->  Abs (   403,   913)
+	  6: Rel (     0,  -529)  ->  Abs (   403,   384)
+	  7: Rel (     0,  -185)  ->  Abs (   403,   199)
+	  8: Rel (   -24,  -118)  ->  Abs (   379,    81)
+	  9: Rel (  -108,   -88)  ->  Abs (   271,    -7)
+	 10: Rel (  -102,     0)  ->  Abs (   169,    -7)
+	 11: Rel (   -63,     0)  ->  Abs (   106,    -7)
+	 12: Rel (   -82,     8)  ->  Abs (    24,     1)
+	 13: Rel (     0,   150)  ->  Abs (    24,   151)
+	 14: Rel (    79,     0)  ->  Abs (   103,   151)
+	 15: Rel (    56,     0)  ->  Abs (   159,   151)
+	 16: Rel (    48,    23)  ->  Abs (   207,   174)
+	 17: Rel (    16,    50)  ->  Abs (   223,   224)
+	 18: Rel (     0,   138)  ->  Abs (   223,   362)
+
+	Glyph 614: off = 0x0001C256, len = 452
+	  numberOfContours:	1
+	  xMin:			140
+	  yMin:			0
+	  xMax:			1268
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  12
+
+	  Length of Instructions:	392
+	00000: PUSHB[7]              7    28    10    13     2    85     2 
+	00008: PUSHW[1]            -28 
+	00011: NPUSHB     (118):    10    12     2    85    14     2   181    10   197    10 
+	                             3    18     2    27     7     2     4     1    12     3 
+	                             3     8    12     9    70     1    74     3    69     8 
+	                            74     9    86     8    90     9   132     1   143     3 
+	                           129     8   143     9   208     1   223     3   208     8 
+	                           223     9   245     8   250     9    20     8     9    25 
+	                             2    27     9   120     2   120     9   136     9   148 
+	                             1   155     3   148     8   155     9   164     1   171 
+	                             3   180     1   187     3   182     8   196     1   203 
+	                             3   198     8    18     5     8    10     9    20     1 
+	                            26     3    22     8    27     9   149     1   153     2 
+	                           154     3   149     8   158     9    11     1 
+	00131: PUSHW[1]            -10 
+	00134: NPUSHB      (21):     1    10     9     9    11    10    12     6    85     9 
+	                            43     2     1    20     2     2     1     3     7     8 
+	                             8 
+	00157: PUSHW[1]            -20 
+	00160: PUSHB[5]             10    12     6    85     8 
+	00166: PUSHW[1]            -11 
+	00169: NPUSHB      (39):    13    13     6    85     8    43     2     3    20     2 
+	                             2     3    10     7     2     3    11     3     1     6 
+	                            11     9     9     8     8     6    10     2     9     8 
+	                             1     3     5     6    11     6     7    37     4 
+	00210: PUSHW[1]            -28 
+	00213: NPUSHB      (11):    16    16     2    85     4    28    14    14     2    85 
+	                             4 
+	00226: PUSHW[1]            -20 
+	00229: PUSHB[5]             12    12     2    85     4 
+	00235: PUSHW[1]             -6 
+	00238: PUSHB[5]             12    12     6    85     4 
+	00244: PUSHW[1]             -2 
+	00247: NPUSHB      (33):    13    13     6    85     4     8    15    15     6    85 
+	                             4    32    16    17     6    85     4    78   128    14 
+	                           176    14   192    14     3    14    63    14     1    11 
+	                            10    37     0 
+	00282: PUSHW[1]             -6 
+	00285: NPUSHB      (11):    16    16     2    85     0     6    11    12     2    85 
+	                             0 
+	00298: PUSHW[1]             -2 
+	00301: PUSHB[5]             12    12     6    85     0 
+	00307: PUSHW[1]            -12 
+	00310: NPUSHB      (12):    15    17     6    85     0     0    32     0     2     0 
+	                            78    13 
+	00324: SRP0       
+	00325: MIRP[srp0,nmd,rd,2] 
+	00326: DELTAP1    
+	00327: CALL       
+	00328: CALL       
+	00329: CALL       
+	00330: CALL       
+	00331: MIRP[srp0,md,rd,1] 
+	00332: ALIGNRP    
+	00333: DELTAP1    
+	00334: SRP0       
+	00335: DELTAP1    
+	00336: MIRP[srp0,nmd,rd,2] 
+	00337: CALL       
+	00338: CALL       
+	00339: CALL       
+	00340: CALL       
+	00341: CALL       
+	00342: CALL       
+	00343: CALL       
+	00344: MIRP[srp0,md,rd,1] 
+	00345: ALIGNRP    
+	00346: SRP1       
+	00347: SRP2       
+	00348: SLOOP      
+	00349: IP         
+	00350: SVTCA[y-axis] 
+	00351: MIAP[rd+ci] 
+	00352: ALIGNRP    
+	00353: SRP0       
+	00354: ALIGNRP    
+	00355: SRP0       
+	00356: ALIGNRP    
+	00357: MIAP[rd+ci] 
+	00358: ALIGNRP    
+	00359: SRP2       
+	00360: SLOOP      
+	00361: IP         
+	00362: SDPVTL[1]  
+	00363: SFVTCA[x-axis] 
+	00364: MDAP[nrd]  
+	00365: CALL       
+	00366: CALL       
+	00367: CALL       
+	00368: SDPVTL[1]  
+	00369: RDTG       
+	00370: MDRP[nrp0,nmd,rd,0] 
+	00371: SDPVTL[1]  
+	00372: MDAP[nrd]  
+	00373: RTG        
+	00374: CALL       
+	00375: CALL       
+	00376: SDPVTL[1]  
+	00377: RDTG       
+	00378: MDRP[nrp0,nmd,rd,0] 
+	00379: IUP[y]     
+	00380: IUP[x]     
+	00381: SVTCA[x-axis] 
+	00382: SHPIX      
+	00383: SVTCA[x-axis] 
+	00384: DELTAP3    
+	00385: DELTAP1    
+	00386: DELTAP2    
+	00387: SVTCA[y-axis] 
+	00388: DELTAP3    
+	00389: DELTAP1    
+	00390: CALL       
+	00391: CALL       
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:                                      On
+	  3:                                      On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+	  8:                                      On
+	  9:  YDual                       X-Short On
+	 10:                                      On
+	 11:        XDual                         On
+	 12:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   140,  1062)  ->  Abs (   140,  1062)
+	  1: Rel (   280,     0)  ->  Abs (   420,  1062)
+	  2: Rel (   279,  -850)  ->  Abs (   699,   212)
+	  3: Rel (   310,   850)  ->  Abs (  1009,  1062)
+	  4: Rel (   259,     0)  ->  Abs (  1268,  1062)
+	  5: Rel (     0, -1062)  ->  Abs (  1268,     0)
+	  6: Rel (  -180,     0)  ->  Abs (  1088,     0)
+	  7: Rel (     0,   855)  ->  Abs (  1088,   855)
+	  8: Rel (  -314,  -855)  ->  Abs (   774,     0)
+	  9: Rel (  -161,     0)  ->  Abs (   613,     0)
+	 10: Rel (  -297,   896)  ->  Abs (   316,   896)
+	 11: Rel (     0,  -896)  ->  Abs (   316,     0)
+	 12: Rel (  -176,     0)  ->  Abs (   140,     0)
+
+	Glyph 615: off = 0x0001C41A, len = 300
+	  numberOfContours:	1
+	  xMin:			136
+	  yMin:			0
+	  xMax:			995
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	252
+	00000: NPUSHB      (25):   208    13   224    13     2     2    43     9     9     4 
+	                             1     6    10     7    10     4     7    37    13    64 
+	                            11    11     2    85     5 
+	00027: PUSHW[1]            -20 
+	00030: NPUSHB      (11):    16    16     2    85     5    22    14    14     2    85 
+	                             5 
+	00043: PUSHW[1]            -20 
+	00046: NPUSHB      (17):    13    13     2    85     5     8    12    12     2    85 
+	                             5    34    11    11     2    85     5 
+	00065: PUSHW[1]            -10 
+	00068: NPUSHB      (30):    11    13     6    85     5    10    15    15     6    85 
+	                             5    22    16    16     6    85     5    64    51    54 
+	                            52   255     5     1   255     5     1     5    78    13 
+	00100: PUSHW[1]            -64 
+	00103: NPUSHB      (22):    52    54    52   176    13   240    13     2   112    13 
+	                           160    13   176    13   192    13     4    13     1    10 
+	                            37     0 
+	00127: PUSHW[1]            -10 
+	00130: PUSHB[5]             17    17     2    85     0 
+	00136: PUSHW[1]             -6 
+	00139: PUSHB[5]             16    16     2    85     0 
+	00145: PUSHW[1]             -6 
+	00148: NPUSHB      (23):    14    14     2    85     0     4    12    12     2    85 
+	                             0    10    11    11     2    85     0     3    11    11 
+	                             6    85     0 
+	00173: PUSHW[1]            -10 
+	00176: PUSHB[5]             15    15     6    85     0 
+	00182: PUSHW[1]            -64 
+	00185: NPUSHB      (20):    51    54    52   240     0     1     0     0    32     0 
+	                           208     0   224     0   240     0     5     0    78    12 
+	00207: SRP0       
+	00208: MIRP[srp0,nmd,rd,2] 
+	00209: DELTAP1    
+	00210: DELTAP2    
+	00211: CALL       
+	00212: CALL       
+	00213: CALL       
+	00214: CALL       
+	00215: CALL       
+	00216: CALL       
+	00217: CALL       
+	00218: CALL       
+	00219: MIRP[srp0,md,rd,1] 
+	00220: ALIGNRP    
+	00221: SRP0       
+	00222: DELTAP1    
+	00223: DELTAP2    
+	00224: CALL       
+	00225: MIRP[srp0,nmd,rd,2] 
+	00226: DELTAP1    
+	00227: DELTAP2    
+	00228: CALL       
+	00229: CALL       
+	00230: CALL       
+	00231: CALL       
+	00232: CALL       
+	00233: CALL       
+	00234: CALL       
+	00235: CALL       
+	00236: CALL       
+	00237: CALL       
+	00238: MIRP[srp0,md,rd,1] 
+	00239: ALIGNRP    
+	00240: SVTCA[y-axis] 
+	00241: MIAP[rd+ci] 
+	00242: ALIGNRP    
+	00243: MIAP[rd+ci] 
+	00244: ALIGNRP    
+	00245: IP         
+	00246: MDAP[rd]   
+	00247: MIRP[nrp0,md,rd,1] 
+	00248: IUP[y]     
+	00249: IUP[x]     
+	00250: SVTCA[x-axis] 
+	00251: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual                       X-Short On
+	  8:        XDual                         On
+	  9:  YDual                               On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   136,  1062)  ->  Abs (   136,  1062)
+	  1: Rel (   180,     0)  ->  Abs (   316,  1062)
+	  2: Rel (     0,  -442)  ->  Abs (   316,   620)
+	  3: Rel (   499,     0)  ->  Abs (   815,   620)
+	  4: Rel (     0,   442)  ->  Abs (   815,  1062)
+	  5: Rel (   180,     0)  ->  Abs (   995,  1062)
+	  6: Rel (     0, -1062)  ->  Abs (   995,     0)
+	  7: Rel (  -180,     0)  ->  Abs (   815,     0)
+	  8: Rel (     0,   471)  ->  Abs (   815,   471)
+	  9: Rel (  -499,     0)  ->  Abs (   316,   471)
+	 10: Rel (     0,  -471)  ->  Abs (   316,     0)
+	 11: Rel (  -180,     0)  ->  Abs (   136,     0)
+
+	Glyph 616: off = 0x0001C546, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1063
+	  yMax:			1086
+
+	     0: Flags:		0x0206
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 617: off = 0x0001C556, len = 304
+	  numberOfContours:	1
+	  xMin:			136
+	  yMin:			0
+	  xMax:			974
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	267
+	00000: NPUSHB      (16):     4    43     0     6     6     3    10     3    37     9 
+	                            64    11    11     2    85     1 
+	00018: PUSHW[1]             -5 
+	00021: NPUSHB      (17):    16    16     2    85     1    12    15    15     2    85 
+	                             1    22    14    14     2    85     1 
+	00040: PUSHW[1]             -8 
+	00043: NPUSHB      (17):    13    13     2    85     1    16    12    12     2    85 
+	                             1    38    11    11     2    85     1 
+	00062: PUSHW[1]             -8 
+	00065: PUSHB[5]             12    12     6    85     1 
+	00071: PUSHW[1]             -6 
+	00074: NPUSHB      (32):    13    13     6    85     1    14    15    15     6    85 
+	                             1    24    16    16     6    85     1    64    51    54 
+	                            52   255     1     1   223     1   255     1     2     1 
+	                            78     9 
+	00108: PUSHW[1]            -64 
+	00111: NPUSHB      (23):    52    54    52   176     9   240     9     2    31     9 
+	                           112     9   160     9   176     9   192     9     5     9 
+	                             6    37     0 
+	00136: PUSHW[1]            -10 
+	00139: PUSHB[5]             17    17     2    85     0 
+	00145: PUSHW[1]             -6 
+	00148: PUSHB[5]             16    16     2    85     0 
+	00154: PUSHW[1]             -6 
+	00157: NPUSHB      (17):    14    14     2    85     0     4    12    12     2    85 
+	                             0    10    11    11     2    85     0 
+	00176: PUSHW[1]             -2 
+	00179: PUSHB[5]             12    12     6    85     0 
+	00185: PUSHW[1]             -8 
+	00188: PUSHB[5]             15    15     6    85     0 
+	00194: PUSHW[1]             -4 
+	00197: PUSHB[5]             16    16     6    85     0 
+	00203: PUSHW[1]            -64 
+	00206: NPUSHB      (18):    51    54    52   240     0     1     0     0    32     0 
+	                           208     0   224     0     4     0    78     8 
+	00226: SRP0       
+	00227: MIRP[srp0,nmd,rd,2] 
+	00228: DELTAP1    
+	00229: DELTAP2    
+	00230: CALL       
+	00231: CALL       
+	00232: CALL       
+	00233: CALL       
+	00234: CALL       
+	00235: CALL       
+	00236: CALL       
+	00237: CALL       
+	00238: CALL       
+	00239: MIRP[nrp0,md,rd,1] 
+	00240: SRP0       
+	00241: DELTAP1    
+	00242: DELTAP2    
+	00243: CALL       
+	00244: MIRP[srp0,nmd,rd,2] 
+	00245: DELTAP1    
+	00246: DELTAP2    
+	00247: CALL       
+	00248: CALL       
+	00249: CALL       
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+	00253: CALL       
+	00254: CALL       
+	00255: CALL       
+	00256: CALL       
+	00257: CALL       
+	00258: CALL       
+	00259: MIRP[srp0,md,rd,1] 
+	00260: SVTCA[y-axis] 
+	00261: MIAP[rd+ci] 
+	00262: ALIGNRP    
+	00263: MIAP[rd+ci] 
+	00264: MIRP[nrp0,md,rd,1] 
+	00265: IUP[y]     
+	00266: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:        XDual                         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   136,  1062)  ->  Abs (   136,  1062)
+	  1: Rel (   838,     0)  ->  Abs (   974,  1062)
+	  2: Rel (     0, -1062)  ->  Abs (   974,     0)
+	  3: Rel (  -180,     0)  ->  Abs (   794,     0)
+	  4: Rel (     0,   913)  ->  Abs (   794,   913)
+	  5: Rel (  -478,     0)  ->  Abs (   316,   913)
+	  6: Rel (     0,  -913)  ->  Abs (   316,     0)
+	  7: Rel (  -180,     0)  ->  Abs (   136,     0)
+
+	Glyph 618: off = 0x0001C686, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			135
+	  yMin:			-407
+	  xMax:			1057
+	  yMax:			1086
+
+	     0: Flags:		0x0206
+		Glyf Index:	83
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 619: off = 0x0001C696, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			80
+	  yMin:			-24
+	  xMax:			1005
+	  yMax:			1086
+
+	     0: Flags:		0x0206
+		Glyf Index:	70
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 620: off = 0x0001C6A6, len = 192
+	  numberOfContours:	1
+	  xMin:			38
+	  yMin:			0
+	  xMax:			901
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	154
+	00000: NPUSHB      (19):    47     9    48     9    64     9    95     9   160     9 
+	                             5     2     7    43     0     6     5    10     7 
+	00021: PUSHW[4]            343     4     2   343 
+	00030: PUSHB[3]              4    37     5 
+	00034: PUSHW[1]            -10 
+	00037: NPUSHB      (11):    16    16     2    85     5    10    15    15     2    85 
+	                             5 
+	00050: PUSHW[1]            -12 
+	00053: PUSHB[5]             13    13     2    85     5 
+	00059: PUSHW[1]            -10 
+	00062: PUSHB[5]             11    11     2    85     5 
+	00068: PUSHW[1]            -18 
+	00071: PUSHB[5]             11    11     6    85     5 
+	00077: PUSHW[1]             -8 
+	00080: PUSHB[5]             12    12     6    85     5 
+	00086: PUSHW[1]             -5 
+	00089: NPUSHB      (38):    13    13     6    85     5     6    16    16     6    85 
+	                             0     5    16     5    80     5   176     5   192     5 
+	                             5     0     5    80     5    96     5   160     5   176 
+	                             5     5     0     5   160     5     2     5 
+	00129: MDAP[rd]   
+	00130: DELTAP1    
+	00131: DELTAP2    
+	00132: DELTAP3    
+	00133: CALL       
+	00134: CALL       
+	00135: CALL       
+	00136: CALL       
+	00137: CALL       
+	00138: CALL       
+	00139: CALL       
+	00140: CALL       
+	00141: MIRP[nrp0,md,rd,1] 
+	00142: MIRP[nrp0,md,rd,1] 
+	00143: SRP0       
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: SVTCA[y-axis] 
+	00146: MIAP[rd+ci] 
+	00147: MIAP[rd+ci] 
+	00148: MIRP[srp0,md,rd,1] 
+	00149: ALIGNRP    
+	00150: IUP[y]     
+	00151: IUP[x]     
+	00152: SVTCA[x-axis] 
+	00153: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual                       X-Short On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (    38,  1062)  ->  Abs (    38,  1062)
+	  1: Rel (   863,     0)  ->  Abs (   901,  1062)
+	  2: Rel (     0,  -149)  ->  Abs (   901,   913)
+	  3: Rel (  -342,     0)  ->  Abs (   559,   913)
+	  4: Rel (     0,  -913)  ->  Abs (   559,     0)
+	  5: Rel (  -179,     0)  ->  Abs (   380,     0)
+	  6: Rel (     0,   913)  ->  Abs (   380,   913)
+	  7: Rel (  -342,     0)  ->  Abs (    38,   913)
+
+	Glyph 621: off = 0x0001C766, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			33
+	  yMin:			-431
+	  xMax:			1006
+	  yMax:			1062
+
+	     0: Flags:		0x0206
+		Glyf Index:	92
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 622: off = 0x0001C776, len = 486
+	  numberOfContours:	3
+	  xMin:			75
+	  yMin:			-407
+	  xMax:			1610
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  29
+	  1:  41
+	  2:  53
+
+	  Length of Instructions:	324
+	00000: NPUSHB      (98):    88    18     1     4     6     4    10    11    21    11 
+	                            25    15    55    31    55    91     3    92    13    85 
+	                            18    83    28    89    32    89    34    89    38    85 
+	                            44    86    46    85    52   106     3   106    13   101 
+	                            18   100    28   106    32   110    34   110    38   104 
+	                            40   102    44   101    46   102    52   121     3   118 
+	                             6   121    13   118    18   118    28   131     6   137 
+	                            13   133    18    35    30    48     1     0    39    51 
+	                            51    28     5    26     7    33    51    45    28    11 
+	                            20    11    16    14     0     0     1    15 
+	00100: PUSHW[1]            -10 
+	00103: PUSHB[8]             15    16     2    85    15    37     0    16 
+	00112: PUSHW[1]            -16 
+	00115: PUSHB[5]             12    12     6    85    16 
+	00121: PUSHW[1]            -13 
+	00124: NPUSHB      (10):    13    13     6    85    16    16    23    36    36     8 
+	00136: PUSHW[1]            -10 
+	00139: PUSHB[5]             10    11     2    85     8 
+	00145: PUSHW[1]            -28 
+	00148: PUSHB[5]             11    12     6    85     8 
+	00154: PUSHW[1]            -22 
+	00157: PUSHB[5]             13    13     6    85     8 
+	00163: PUSHW[1]            -22 
+	00166: PUSHB[5]             15    15     6    85     8 
+	00172: PUSHW[1]            -64 
+	00175: NPUSHB      (36):    36    37    52    48     8     1    32     8     1     8 
+	                            49     0    55    64    55    80    55    96    55   128 
+	                            55   144    55     6     0    55    32    55    48    55 
+	                            64    55   223    55     5    55 
+	00213: PUSHW[1]            -64 
+	00216: NPUSHB      (52):    30    35    52    48    55     1    55    42    36    23 
+	                            24    11    11     6    85    23    35    12    12     6 
+	                            85    23    28    13    13     6    85    23     8    15 
+	                            15     6    85    23    14    16    16     6    85    23 
+	                            64    36    37    52    31    23    63    23     2    23 
+	                            49    54 
+	00270: SRP0       
+	00271: MIRP[srp0,nmd,rd,2] 
+	00272: DELTAP1    
+	00273: CALL       
+	00274: CALL       
+	00275: CALL       
+	00276: CALL       
+	00277: CALL       
+	00278: CALL       
+	00279: MIRP[nrp0,md,rd,1] 
+	00280: SRP0       
+	00281: DELTAP2    
+	00282: CALL       
+	00283: DELTAP1    
+	00284: DELTAP1    
+	00285: MIRP[srp0,nmd,rd,0] 
+	00286: DELTAP1    
+	00287: DELTAP1    
+	00288: CALL       
+	00289: CALL       
+	00290: CALL       
+	00291: CALL       
+	00292: CALL       
+	00293: MIRP[nrp0,md,rd,1] 
+	00294: SRP2       
+	00295: IP         
+	00296: MDAP[rd]   
+	00297: CALL       
+	00298: CALL       
+	00299: ALIGNRP    
+	00300: MIRP[srp0,md,rd,1] 
+	00301: CALL       
+	00302: ALIGNRP    
+	00303: SVTCA[y-axis] 
+	00304: MIAP[rd+ci] 
+	00305: MIAP[rd+ci] 
+	00306: MIAP[rd+ci] 
+	00307: ALIGNRP    
+	00308: MIRP[srp0,md,rd,1] 
+	00309: MIRP[nrp0,nmd,rd,0] 
+	00310: MIAP[rd+ci] 
+	00311: ALIGNRP    
+	00312: MIRP[srp0,md,rd,1] 
+	00313: MIRP[nrp0,nmd,rd,0] 
+	00314: SVTCA[x-axis] 
+	00315: SRP1       
+	00316: SRP2       
+	00317: IP         
+	00318: IP         
+	00319: IUP[y]     
+	00320: IUP[x]     
+	00321: DELTAP1    
+	00322: SVTCA[y-axis] 
+	00323: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual                 X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                              X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:        XDual                         On
+	 16:  YDual                       X-Short On
+	 17:        XDual                         On
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:                              X-Short Off
+	 23:        XDual                         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:        XDual                 X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short On
+	 30:        XDual                 X-Short On
+	 31:        XDual         Y-Short         Off
+	 32:        XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:                      Y-Short X-Short Off
+	 42:                      Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:        XDual         Y-Short X-Short Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short         On
+	 49:  YDual XDual         Y-Short         Off
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual                       X-Short On
+	 52:  YDual                       X-Short Off
+	 53:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   753,  1466)  ->  Abs (   753,  1466)
+	  1: Rel (   180,     0)  ->  Abs (   933,  1466)
+	  2: Rel (     0,  -507)  ->  Abs (   933,   959)
+	  3: Rel (    56,    64)  ->  Abs (   989,  1023)
+	  4: Rel (   134,    63)  ->  Abs (  1123,  1086)
+	  5: Rel (    77,     0)  ->  Abs (  1200,  1086)
+	  6: Rel (   189,     0)  ->  Abs (  1389,  1086)
+	  7: Rel (   221,  -315)  ->  Abs (  1610,   771)
+	  8: Rel (     0,  -239)  ->  Abs (  1610,   532)
+	  9: Rel (     0,  -249)  ->  Abs (  1610,   283)
+	 10: Rel (  -238,  -307)  ->  Abs (  1372,   -24)
+	 11: Rel (  -177,     0)  ->  Abs (  1195,   -24)
+	 12: Rel (   -58,     0)  ->  Abs (  1137,   -24)
+	 13: Rel (  -120,    36)  ->  Abs (  1017,    12)
+	 14: Rel (   -84,    80)  ->  Abs (   933,    92)
+	 15: Rel (     0,  -499)  ->  Abs (   933,  -407)
+	 16: Rel (  -180,     0)  ->  Abs (   753,  -407)
+	 17: Rel (     0,   499)  ->  Abs (   753,    92)
+	 18: Rel (   -54,   -58)  ->  Abs (   699,    34)
+	 19: Rel (  -131,   -58)  ->  Abs (   568,   -24)
+	 20: Rel (   -76,     0)  ->  Abs (   492,   -24)
+	 21: Rel (  -167,     0)  ->  Abs (   325,   -24)
+	 22: Rel (  -250,   293)  ->  Abs (    75,   269)
+	 23: Rel (     0,   273)  ->  Abs (    75,   542)
+	 24: Rel (     0,   231)  ->  Abs (    75,   773)
+	 25: Rel (   226,   313)  ->  Abs (   301,  1086)
+	 26: Rel (   191,     0)  ->  Abs (   492,  1086)
+	 27: Rel (    80,     0)  ->  Abs (   572,  1086)
+	 28: Rel (   130,   -63)  ->  Abs (   702,  1023)
+	 29: Rel (    51,   -64)  ->  Abs (   753,   959)
+	 30: Rel (   179,  -432)  ->  Abs (   932,   527)
+	 31: Rel (     0,  -240)  ->  Abs (   932,   287)
+	 32: Rel (   132,  -165)  ->  Abs (  1064,   122)
+	 33: Rel (    99,     0)  ->  Abs (  1163,   122)
+	 34: Rel (   110,     0)  ->  Abs (  1273,   122)
+	 35: Rel (   155,   203)  ->  Abs (  1428,   325)
+	 36: Rel (     0,   214)  ->  Abs (  1428,   539)
+	 37: Rel (     0,   202)  ->  Abs (  1428,   741)
+	 38: Rel (  -143,   198)  ->  Abs (  1285,   939)
+	 39: Rel (  -112,     0)  ->  Abs (  1173,   939)
+	 40: Rel (  -120,     0)  ->  Abs (  1053,   939)
+	 41: Rel (  -121,  -206)  ->  Abs (   932,   733)
+	 42: Rel (  -674,  -186)  ->  Abs (   258,   547)
+	 43: Rel (     0,  -225)  ->  Abs (   258,   322)
+	 44: Rel (   151,  -198)  ->  Abs (   409,   124)
+	 45: Rel (   112,     0)  ->  Abs (   521,   124)
+	 46: Rel (   117,     0)  ->  Abs (   638,   124)
+	 47: Rel (   116,   197)  ->  Abs (   754,   321)
+	 48: Rel (     0,   197)  ->  Abs (   754,   518)
+	 49: Rel (     0,   210)  ->  Abs (   754,   728)
+	 50: Rel (  -122,   210)  ->  Abs (   632,   938)
+	 51: Rel (  -123,     0)  ->  Abs (   509,   938)
+	 52: Rel (  -111,     0)  ->  Abs (   398,   938)
+	 53: Rel (  -140,  -205)  ->  Abs (   258,   733)
+
+	Glyph 623: off = 0x0001C95C, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			15
+	  yMin:			0
+	  xMax:			1009
+	  yMax:			1062
+
+	     0: Flags:		0x0206
+		Glyf Index:	91
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 624: off = 0x0001C96C, len = 310
+	  numberOfContours:	1
+	  xMin:			138
+	  yMin:			-301
+	  xMax:			1112
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	262
+	00000: NPUSHB      (22):    95    13     1     4     1     6     7     2    43    11 
+	                            10     9    14     3    37    13    64    11    11     2 
+	                            85     6 
+	00024: PUSHW[1]            -22 
+	00027: PUSHB[5]             16    16     2    85     6 
+	00033: PUSHW[1]            -32 
+	00036: PUSHB[5]             13    13     2    85     6 
+	00042: PUSHW[1]             -6 
+	00045: NPUSHB      (11):    12    12     2    85     6    22    11    11     2    85 
+	                             6 
+	00058: PUSHW[1]            -14 
+	00061: PUSHB[5]             11    13     6    85     6 
+	00067: PUSHW[1]            -26 
+	00070: PUSHB[5]             15    15     6    85     6 
+	00076: PUSHW[1]            -18 
+	00079: PUSHB[8]             16    16     6    85     6     9    43     7 
+	00088: PUSHW[1]            -16 
+	00091: PUSHB[5]             16    16     2    85     7 
+	00097: PUSHW[1]            -16 
+	00100: NPUSHB      (17):    13    13     2    85     7    40    11    11     2    85 
+	                             7     8    13    13     6    85     7 
+	00119: PUSHW[1]            -10 
+	00122: PUSHB[5]             15    16     6    85     7 
+	00128: PUSHW[1]            268 
+	00131: NPUSHB      (16):   144     6     1    96     6   128     6   192     6     3 
+	                             6    78    13     2    37     0 
+	00149: PUSHW[1]             -6 
+	00152: NPUSHB      (23):    16    16     2    85     0     6    11    12     2    85 
+	                             0    14    11    11     6    85     0     4    12    12 
+	                             6    85     0 
+	00177: PUSHW[1]            -15 
+	00180: PUSHB[5]             15    15     6    85     0 
+	00186: PUSHW[1]            -10 
+	00189: PUSHB[5]             16    16     6    85     0 
+	00195: PUSHW[1]            -64 
+	00198: NPUSHB      (18):    51    54    52   240     0     1     0     0    32     0 
+	                           208     0   224     0     4     0    78    12 
+	00218: SRP0       
+	00219: MIRP[srp0,nmd,rd,2] 
+	00220: DELTAP1    
+	00221: DELTAP2    
+	00222: CALL       
+	00223: CALL       
+	00224: CALL       
+	00225: CALL       
+	00226: CALL       
+	00227: CALL       
+	00228: CALL       
+	00229: MIRP[nrp0,md,rd,1] 
+	00230: SRP0       
+	00231: MIRP[srp0,nmd,rd,2] 
+	00232: DELTAP1    
+	00233: DELTAP3    
+	00234: MIRP[srp0,md,rd,0] 
+	00235: CALL       
+	00236: CALL       
+	00237: CALL       
+	00238: CALL       
+	00239: CALL       
+	00240: MIRP[nrp0,md,rd,1] 
+	00241: SRP0       
+	00242: CALL       
+	00243: CALL       
+	00244: CALL       
+	00245: CALL       
+	00246: CALL       
+	00247: CALL       
+	00248: CALL       
+	00249: CALL       
+	00250: MIRP[nrp0,md,rd,1] 
+	00251: SVTCA[y-axis] 
+	00252: MIAP[rd+ci] 
+	00253: MIAP[rd+ci] 
+	00254: MIRP[srp0,md,rd,1] 
+	00255: ALIGNRP    
+	00256: MIAP[rd+ci] 
+	00257: ALIGNRP    
+	00258: IUP[y]     
+	00259: IUP[x]     
+	00260: SVTCA[x-axis] 
+	00261: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual XDual                 X-Short On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+	 10:        XDual                         On
+	 11:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   138,  1062)  ->  Abs (   138,  1062)
+	  1: Rel (   180,     0)  ->  Abs (   318,  1062)
+	  2: Rel (     0,  -914)  ->  Abs (   318,   148)
+	  3: Rel (   498,     0)  ->  Abs (   816,   148)
+	  4: Rel (     0,   914)  ->  Abs (   816,  1062)
+	  5: Rel (   180,     0)  ->  Abs (   996,  1062)
+	  6: Rel (     0,  -914)  ->  Abs (   996,   148)
+	  7: Rel (   116,     0)  ->  Abs (  1112,   148)
+	  8: Rel (     0,  -449)  ->  Abs (  1112,  -301)
+	  9: Rel (  -148,     0)  ->  Abs (   964,  -301)
+	 10: Rel (     0,   301)  ->  Abs (   964,     0)
+	 11: Rel (  -826,     0)  ->  Abs (   138,     0)
+
+	Glyph 625: off = 0x0001CAA2, len = 270
+	  numberOfContours:	1
+	  xMin:			69
+	  yMin:			0
+	  xMax:			931
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	205
+	00000: NPUSHB      (18):    28     8     8     1    13    15    72     6     6     9 
+	                             1     6    12    10     9    12    37    10 
+	00020: PUSHW[1]            -48 
+	00023: NPUSHB      (17):    16    16     2    85    10    32    15    15     2    85 
+	                            10    10    13    13     2    85    10 
+	00042: PUSHW[1]             -6 
+	00045: PUSHB[5]             10    11     2    85    10 
+	00051: PUSHW[1]             -8 
+	00054: NPUSHB      (22):    12    12     6    85    10    20    15    15     6    85 
+	                            10    26    16    16     6    85    10    78    21     1 
+	                            37     0 
+	00078: PUSHW[1]            -32 
+	00081: NPUSHB      (17):    16    16     2    85     0    28    15    15     2    85 
+	                             0    22    13    13     2    85     0 
+	00100: PUSHW[1]             -4 
+	00103: NPUSHB      (36):    12    12     2    85     0    22    11    12     6    85 
+	                             0    24    13    13     6    85     0    24    15    15 
+	                             6    85     0    28    16    16     6    85    31     0 
+	                            79     0     2     0    40    20 
+	00141: SRP0       
+	00142: MIRP[srp0,nmd,rd,2] 
+	00143: DELTAP1    
+	00144: CALL       
+	00145: CALL       
+	00146: CALL       
+	00147: CALL       
+	00148: CALL       
+	00149: CALL       
+	00150: CALL       
+	00151: CALL       
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: SRP0       
+	00154: MIRP[srp0,nmd,rd,0] 
+	00155: CALL       
+	00156: CALL       
+	00157: CALL       
+	00158: CALL       
+	00159: CALL       
+	00160: CALL       
+	00161: CALL       
+	00162: MIRP[srp0,md,rd,1] 
+	00163: ALIGNRP    
+	00164: SVTCA[y-axis] 
+	00165: MIAP[rd+ci] 
+	00166: MIAP[rd+ci] 
+	00167: ALIGNRP    
+	00168: IP         
+	00169: MDAP[rd]   
+	00170: MIRP[nrp0,md,rd,1] 
+	00171: IP         
+	00172: SRP2       
+	00173: IP         
+	00174: IUP[y]     
+	00175: IUP[x]     
+	00176: RS         
+	00177: JROF       
+	00178: NPUSHB      (18):    16    18     3     5     4    38    17    37     5    16 
+	                             2    29     0     3    18     6    29     0 
+	00198: CALL       
+	00199: SVTCA[x-axis] 
+	00200: CALL       
+	00201: CALL       
+	00202: CALL       
+	00203: FLIPRGON   
+	00204: FLIPRGON   
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:        XDual                         On
+	 10:  YDual XDual                 X-Short On
+	 11:        XDual                         On
+	 12:  YDual                       X-Short On
+	 13:        XDual                         On
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (    69,  1062)  ->  Abs (    69,  1062)
+	  1: Rel (   180,     0)  ->  Abs (   249,  1062)
+	  2: Rel (     0,  -201)  ->  Abs (   249,   861)
+	  3: Rel (     0,  -130)  ->  Abs (   249,   731)
+	  4: Rel (    31,  -117)  ->  Abs (   280,   614)
+	  5: Rel (   118,   -87)  ->  Abs (   398,   527)
+	  6: Rel (    89,     0)  ->  Abs (   487,   527)
+	  7: Rel (   102,     0)  ->  Abs (   589,   527)
+	  8: Rel (   162,    54)  ->  Abs (   751,   581)
+	  9: Rel (     0,   481)  ->  Abs (   751,  1062)
+	 10: Rel (   180,     0)  ->  Abs (   931,  1062)
+	 11: Rel (     0, -1062)  ->  Abs (   931,     0)
+	 12: Rel (  -180,     0)  ->  Abs (   751,     0)
+	 13: Rel (     0,   428)  ->  Abs (   751,   428)
+	 14: Rel (  -166,   -52)  ->  Abs (   585,   376)
+	 15: Rel (  -144,     0)  ->  Abs (   441,   376)
+	 16: Rel (  -121,     0)  ->  Abs (   320,   376)
+	 17: Rel (  -185,   123)  ->  Abs (   135,   499)
+	 18: Rel (   -66,   178)  ->  Abs (    69,   677)
+	 19: Rel (     0,   107)  ->  Abs (    69,   784)
+
+	Glyph 626: off = 0x0001CBB0, len = 428
+	  numberOfContours:	1
+	  xMin:			141
+	  yMin:			0
+	  xMax:			1501
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	380
+	00000: NPUSHB      (37):     0    13    16    13   112    13     3    32    13    48 
+	                            13    79    13    96    13   112    13   160    13   192 
+	                            13   239    13     8     8     4     4     1     6     7 
+	                             2    43    11    10     7    37     9 
+	00039: PUSHW[1]            -10 
+	00042: PUSHB[5]             16    16     2    85     9 
+	00048: PUSHW[1]            -18 
+	00051: NPUSHB      (11):    13    13     2    85     9     6    12    12     2    85 
+	                             9 
+	00064: PUSHW[1]            -16 
+	00067: PUSHB[5]             11    11     2    85     9 
+	00073: PUSHW[1]            -24 
+	00076: PUSHB[5]             12    12     6    85     9 
+	00082: PUSHW[1]             -5 
+	00085: PUSHB[5]             15    15     6    85     9 
+	00091: PUSHW[1]             -3 
+	00094: NPUSHB      (36):    16    16     6    85    48     9     1     0     9    16 
+	                             9    48     9    64     9   176     9   208     9   224 
+	                             9     7    16     9    32     9    48     9    96     9 
+	                           112     9   128     9     6     9 
+	00132: PUSHW[1]            452 
+	00135: PUSHB[6]             64     5     1     3    37     5 
+	00142: PUSHW[1]            -20 
+	00145: PUSHB[5]             16    16     2    85     5 
+	00151: PUSHW[1]            -22 
+	00154: PUSHB[5]             13    13     2    85     5 
+	00160: PUSHW[1]            -12 
+	00163: PUSHB[5]             12    12     2    85     5 
+	00169: PUSHW[1]            -12 
+	00172: PUSHB[5]             11    11     2    85     5 
+	00178: PUSHW[1]            -19 
+	00181: PUSHB[5]             12    12     6    85     5 
+	00187: PUSHW[1]            -10 
+	00190: PUSHB[5]             15    15     6    85     5 
+	00196: PUSHW[1]             -6 
+	00199: NPUSHB      (36):    16    16     6    85    31     5    47     5   175     5 
+	                           223     5     4     0     5    48     5   208     5   224 
+	                             5     4    16     5    32     5    48     5    96     5 
+	                           112     5   128     5     6     5 
+	00237: PUSHW[1]            452 
+	00240: PUSHB[3]              2    37     0 
+	00244: PUSHW[1]             -6 
+	00247: PUSHB[5]             16    16     2    85     0 
+	00253: PUSHW[1]            -12 
+	00256: NPUSHB      (11):    14    14     2    85     0     6    11    11     2    85 
+	                             0 
+	00269: PUSHW[1]            -16 
+	00272: NPUSHB      (11):     9    10     2    85     0     6    16    16     6    85 
+	                             0 
+	00285: PUSHW[1]             -2 
+	00288: PUSHB[5]             15    15     6    85     0 
+	00294: PUSHW[1]             -8 
+	00297: NPUSHB      (28):    13    13     6    85     0     9    12    12     6    85 
+	                             0     5    11    11     6    85    15     0     1    79 
+	                             0     1     0     0     1     0    78    12 
+	00327: SRP0       
+	00328: MIRP[srp0,nmd,rd,2] 
+	00329: DELTAP1    
+	00330: DELTAP2    
+	00331: DELTAP3    
+	00332: CALL       
+	00333: CALL       
+	00334: CALL       
+	00335: CALL       
+	00336: CALL       
+	00337: CALL       
+	00338: CALL       
+	00339: CALL       
+	00340: CALL       
+	00341: MIRP[nrp0,md,rd,1] 
+	00342: MIRP[srp0,md,rd,1] 
+	00343: DELTAP1    
+	00344: DELTAP2    
+	00345: DELTAP3    
+	00346: CALL       
+	00347: CALL       
+	00348: CALL       
+	00349: CALL       
+	00350: CALL       
+	00351: CALL       
+	00352: CALL       
+	00353: MIRP[srp0,md,rd,1] 
+	00354: DELTAP2    
+	00355: MIRP[srp0,md,rd,1] 
+	00356: DELTAP1    
+	00357: DELTAP2    
+	00358: DELTAP3    
+	00359: CALL       
+	00360: CALL       
+	00361: CALL       
+	00362: CALL       
+	00363: CALL       
+	00364: CALL       
+	00365: CALL       
+	00366: MIRP[nrp0,md,rd,1] 
+	00367: SVTCA[y-axis] 
+	00368: MIAP[rd+ci] 
+	00369: MIRP[srp0,md,rd,1] 
+	00370: ALIGNRP    
+	00371: MIAP[rd+ci] 
+	00372: ALIGNRP    
+	00373: SRP0       
+	00374: ALIGNRP    
+	00375: IUP[y]     
+	00376: IUP[x]     
+	00377: SVTCA[x-axis] 
+	00378: DELTAP1    
+	00379: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual                         On
+	 11:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   141,  1062)  ->  Abs (   141,  1062)
+	  1: Rel (   180,     0)  ->  Abs (   321,  1062)
+	  2: Rel (     0,  -913)  ->  Abs (   321,   149)
+	  3: Rel (   410,     0)  ->  Abs (   731,   149)
+	  4: Rel (     0,   913)  ->  Abs (   731,  1062)
+	  5: Rel (   180,     0)  ->  Abs (   911,  1062)
+	  6: Rel (     0,  -913)  ->  Abs (   911,   149)
+	  7: Rel (   411,     0)  ->  Abs (  1322,   149)
+	  8: Rel (     0,   913)  ->  Abs (  1322,  1062)
+	  9: Rel (   179,     0)  ->  Abs (  1501,  1062)
+	 10: Rel (     0, -1062)  ->  Abs (  1501,     0)
+	 11: Rel ( -1360,     0)  ->  Abs (   141,     0)
+
+	Glyph 627: off = 0x0001CD5C, len = 438
+	  numberOfContours:	1
+	  xMin:			141
+	  yMin:			-301
+	  xMax:			1620
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	380
+	00000: NPUSHB      (46):    16    17     1    32    17    79    17    96    17   112 
+	                            17   160    17   192    17   239    17     7     8     4 
+	                             4     1     6     6    11     2    43    15    10    13 
+	                            14    14    43    12    10    16    16     6    85    12 
+	                            20    15    15     6    85    12 
+	00048: PUSHW[1]            -17 
+	00051: NPUSHB      (25):    13    13     6    85    12    17    12    12     6    85 
+	                            12    12    17    48    17    80    17   112    17   160 
+	                            17     4     7    37     9 
+	00078: PUSHW[1]            -10 
+	00081: PUSHB[5]             16    16     2    85     9 
+	00087: PUSHW[1]            -18 
+	00090: NPUSHB      (11):    13    13     2    85     9     6    12    12     2    85 
+	                             9 
+	00103: PUSHW[1]            -16 
+	00106: PUSHB[5]             11    11     2    85     9 
+	00112: PUSHW[1]            -19 
+	00115: NPUSHB      (42):    12    13     6    85     9     3    16    16     6    85 
+	                            48     9     1     0     9    16     9    48     9    64 
+	                             9   176     9   208     9   224     9     7    16     9 
+	                            32     9    48     9    96     9   112     9   128     9 
+	                             6     9 
+	00159: PUSHW[1]            452 
+	00162: PUSHB[6]             64     5     1     3    37     5 
+	00169: PUSHW[1]            -20 
+	00172: PUSHB[5]             16    16     2    85     5 
+	00178: PUSHW[1]            -22 
+	00181: PUSHB[5]             13    13     2    85     5 
+	00187: PUSHW[1]            -12 
+	00190: PUSHB[5]             12    12     2    85     5 
+	00196: PUSHW[1]            -12 
+	00199: PUSHB[5]             11    11     2    85     5 
+	00205: PUSHW[1]            -15 
+	00208: NPUSHB      (36):    12    13     6    85    31     5    47     5   175     5 
+	                           223     5     4     0     5    48     5   208     5   224 
+	                             5     4    16     5    32     5    48     5    96     5 
+	                           112     5   128     5     6     5 
+	00246: PUSHW[1]            452 
+	00249: PUSHB[3]              2    37     0 
+	00253: PUSHW[1]             -6 
+	00256: PUSHB[5]             16    16     2    85     0 
+	00262: PUSHW[1]            -12 
+	00265: NPUSHB      (11):    14    14     2    85     0     6    11    11     2    85 
+	                             0 
+	00278: PUSHW[1]            -16 
+	00281: NPUSHB      (11):     9    10     2    85     0    10    16    16     6    85 
+	                             0 
+	00294: PUSHW[1]            -13 
+	00297: NPUSHB      (22):    13    13     6    85     0    13    12    12     6    85 
+	                            15     0     1    79     0     1     0     0     1     0 
+	                            78    16 
+	00321: SRP0       
+	00322: MIRP[srp0,nmd,rd,2] 
+	00323: DELTAP1    
+	00324: DELTAP2    
+	00325: DELTAP3    
+	00326: CALL       
+	00327: CALL       
+	00328: CALL       
+	00329: CALL       
+	00330: CALL       
+	00331: CALL       
+	00332: CALL       
+	00333: MIRP[nrp0,md,rd,1] 
+	00334: MIRP[srp0,md,rd,1] 
+	00335: DELTAP1    
+	00336: DELTAP2    
+	00337: DELTAP3    
+	00338: CALL       
+	00339: CALL       
+	00340: CALL       
+	00341: CALL       
+	00342: CALL       
+	00343: MIRP[srp0,md,rd,1] 
+	00344: DELTAP2    
+	00345: MIRP[srp0,md,rd,1] 
+	00346: DELTAP1    
+	00347: DELTAP2    
+	00348: DELTAP3    
+	00349: CALL       
+	00350: CALL       
+	00351: CALL       
+	00352: CALL       
+	00353: CALL       
+	00354: CALL       
+	00355: MIRP[nrp0,md,rd,1] 
+	00356: DELTAP1    
+	00357: SRP2       
+	00358: IP         
+	00359: MDAP[rd]   
+	00360: CALL       
+	00361: CALL       
+	00362: CALL       
+	00363: CALL       
+	00364: MIRP[nrp0,md,rd,1] 
+	00365: SVTCA[y-axis] 
+	00366: MIAP[rd+ci] 
+	00367: MIAP[rd+ci] 
+	00368: MIRP[srp0,md,rd,1] 
+	00369: ALIGNRP    
+	00370: ALIGNRP    
+	00371: MIAP[rd+ci] 
+	00372: ALIGNRP    
+	00373: SRP0       
+	00374: ALIGNRP    
+	00375: IUP[y]     
+	00376: IUP[x]     
+	00377: SVTCA[x-axis] 
+	00378: DELTAP1    
+	00379: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual                         On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                         On
+	 13:  YDual                       X-Short On
+	 14:        XDual                         On
+	 15:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   141,  1062)  ->  Abs (   141,  1062)
+	  1: Rel (   180,     0)  ->  Abs (   321,  1062)
+	  2: Rel (     0,  -914)  ->  Abs (   321,   148)
+	  3: Rel (   410,     0)  ->  Abs (   731,   148)
+	  4: Rel (     0,   914)  ->  Abs (   731,  1062)
+	  5: Rel (   180,     0)  ->  Abs (   911,  1062)
+	  6: Rel (     0,  -914)  ->  Abs (   911,   148)
+	  7: Rel (   411,     0)  ->  Abs (  1322,   148)
+	  8: Rel (     0,   914)  ->  Abs (  1322,  1062)
+	  9: Rel (   179,     0)  ->  Abs (  1501,  1062)
+	 10: Rel (     0,  -914)  ->  Abs (  1501,   148)
+	 11: Rel (   119,     0)  ->  Abs (  1620,   148)
+	 12: Rel (     0,  -449)  ->  Abs (  1620,  -301)
+	 13: Rel (  -149,     0)  ->  Abs (  1471,  -301)
+	 14: Rel (     0,   301)  ->  Abs (  1471,     0)
+	 15: Rel ( -1330,     0)  ->  Abs (   141,     0)
+
+	Glyph 628: off = 0x0001CF12, len = 322
+	  numberOfContours:	2
+	  xMin:			40
+	  yMin:			0
+	  xMax:			1207
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  12
+	  1:  21
+
+	  Length of Instructions:	248
+	00000: NPUSHB      (28):    19    16     1    25    19     1    25    18     1    25 
+	                             4     1    21    43     2     2    10    12    43     0 
+	                             6    13    43    10    10    17    36     6 
+	00030: PUSHW[1]            -26 
+	00033: PUSHB[5]             13    13     2    85     6 
+	00039: PUSHW[1]             -6 
+	00042: PUSHB[5]             11    11     2    85     6 
+	00048: PUSHW[1]             -2 
+	00051: PUSHB[5]             11    11     6    85     6 
+	00057: PUSHW[1]            -22 
+	00060: PUSHB[5]             12    12     6    85     6 
+	00066: PUSHW[1]            -20 
+	00069: NPUSHB      (10):    15    15     6    85     6    23   223    23     1    23 
+	00081: PUSHW[1]            -64 
+	00084: NPUSHB      (22):    30    35    52    48    23     1     2    13    37    10 
+	                            12    16    16     2    85    10    16    15    15     2 
+	                            85    10 
+	00108: PUSHW[1]            -38 
+	00111: PUSHB[5]             13    13     2    85    10 
+	00117: PUSHW[1]            -22 
+	00120: PUSHB[5]             12    12     2    85    10 
+	00126: PUSHW[1]            -12 
+	00129: PUSHB[5]             11    11     2    85    10 
+	00135: PUSHW[1]            -64 
+	00138: PUSHB[4]             25    76    52    10 
+	00143: PUSHW[1]            -64 
+	00146: NPUSHB      (10):    11    13    52   144    10     1    10    12    12     0 
+	00158: PUSHW[1]            -14 
+	00161: PUSHB[5]             11    11     6    85     0 
+	00167: PUSHW[1]            -32 
+	00170: PUSHB[5]             12    13     6    85     0 
+	00176: PUSHW[1]            -45 
+	00179: PUSHB[5]             15    15     6    85     0 
+	00185: PUSHW[1]            -54 
+	00188: NPUSHB      (11):    16    16     6    85     0    64    25    76    52     0 
+	                            22 
+	00201: SRP0       
+	00202: MDRP[srp0,md,rd,2] 
+	00203: CALL       
+	00204: CALL       
+	00205: CALL       
+	00206: CALL       
+	00207: CALL       
+	00208: ALIGNRP    
+	00209: SRP0       
+	00210: MDRP[srp0,md,rd,2] 
+	00211: DELTAP1    
+	00212: CALL       
+	00213: CALL       
+	00214: CALL       
+	00215: CALL       
+	00216: CALL       
+	00217: CALL       
+	00218: CALL       
+	00219: MIRP[srp0,md,rd,1] 
+	00220: ALIGNRP    
+	00221: SVTCA[x-axis] 
+	00222: DELTAP2    
+	00223: CALL       
+	00224: DELTAP1    
+	00225: SRP0       
+	00226: MDRP[srp0,md,rd,2] 
+	00227: CALL       
+	00228: CALL       
+	00229: CALL       
+	00230: CALL       
+	00231: CALL       
+	00232: MIRP[nrp0,md,rd,1] 
+	00233: SVTCA[y-axis] 
+	00234: MIAP[rd+ci] 
+	00235: MIRP[nrp0,md,rd,1] 
+	00236: MIAP[rd+ci] 
+	00237: MIRP[nrp0,md,rd,1] 
+	00238: SRP2       
+	00239: IP         
+	00240: MDAP[rd]   
+	00241: MIRP[nrp0,md,rd,1] 
+	00242: IUP[y]     
+	00243: IUP[x]     
+	00244: DELTAP3    
+	00245: DELTAP3    
+	00246: DELTAP3    
+	00247: DELTAP3    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                               On
+	 11:        XDual                         On
+	 12:  YDual                               On
+	 13:                                      On
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    40,  1062)  ->  Abs (    40,  1062)
+	  1: Rel (   475,     0)  ->  Abs (   515,  1062)
+	  2: Rel (     0,  -415)  ->  Abs (   515,   647)
+	  3: Rel (   229,     0)  ->  Abs (   744,   647)
+	  4: Rel (   243,     0)  ->  Abs (   987,   647)
+	  5: Rel (   220,  -189)  ->  Abs (  1207,   458)
+	  6: Rel (     0,  -137)  ->  Abs (  1207,   321)
+	  7: Rel (     0,  -142)  ->  Abs (  1207,   179)
+	  8: Rel (  -213,  -179)  ->  Abs (   994,     0)
+	  9: Rel (  -208,     0)  ->  Abs (   786,     0)
+	 10: Rel (  -451,     0)  ->  Abs (   335,     0)
+	 11: Rel (     0,   913)  ->  Abs (   335,   913)
+	 12: Rel (  -295,     0)  ->  Abs (    40,   913)
+	 13: Rel (   475,  -767)  ->  Abs (   515,   146)
+	 14: Rel (   189,     0)  ->  Abs (   704,   146)
+	 15: Rel (   172,     0)  ->  Abs (   876,   146)
+	 16: Rel (   144,    83)  ->  Abs (  1020,   229)
+	 17: Rel (     0,    92)  ->  Abs (  1020,   321)
+	 18: Rel (     0,    84)  ->  Abs (  1020,   405)
+	 19: Rel (  -123,    92)  ->  Abs (   897,   497)
+	 20: Rel (  -169,     0)  ->  Abs (   728,   497)
+	 21: Rel (  -213,     0)  ->  Abs (   515,   497)
+
+	Glyph 629: off = 0x0001D054, len = 368
+	  numberOfContours:	3
+	  xMin:			139
+	  yMin:			0
+	  xMax:			1326
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  14
+	  2:  23
+
+	  Length of Instructions:	288
+	00000: NPUSHB      (19):    31     8     6    43    23    23     3     5     0     6 
+	                            15    43    14    14     3    10    19    36    10 
+	00021: PUSHW[1]            -20 
+	00024: NPUSHB      (11):    15    16     2    85    10    10    13    13     2    85 
+	                            10 
+	00037: PUSHW[1]            -38 
+	00040: PUSHB[5]             15    15     6    85    10 
+	00046: PUSHW[1]            -20 
+	00049: NPUSHB      (39):    16    16     6    85    80    10   144    10     2    15 
+	                            10     1    96    10   112    10   128    10   192    10 
+	                             4    10    10    15     3    37     1     4    16    16 
+	                             2    85     1    32    15    15     2    85     1 
+	00090: PUSHW[1]            -30 
+	00093: NPUSHB      (11):    13    13     2    85     1    10    12    12     2    85 
+	                             1 
+	00106: PUSHW[1]            -20 
+	00109: PUSHB[5]             10    11     2    85     1 
+	00115: PUSHW[1]            -28 
+	00118: PUSHB[5]             11    11     6    85     1 
+	00124: PUSHW[1]            -12 
+	00127: NPUSHB      (23):    12    13     6    85     1    16    15    15     6    85 
+	                             1    36    16    16     6    85     1    78    25     5 
+	                            15    37     4 
+	00152: PUSHW[1]             -4 
+	00155: NPUSHB      (11):    16    16     2    85     4     4    11    12     2    85 
+	                             4 
+	00168: PUSHW[1]            -12 
+	00171: PUSHB[5]             15    15     6    85     4 
+	00177: PUSHW[1]            -16 
+	00180: PUSHB[5]             16    16     6    85     4 
+	00186: PUSHW[1]            -64 
+	00189: NPUSHB      (18):    51    54    52   240     4     1     0     4    32     4 
+	                           208     4   224     4     4     4    78    24 
+	00209: SRP0       
+	00210: MIRP[srp0,nmd,rd,2] 
+	00211: DELTAP1    
+	00212: DELTAP2    
+	00213: CALL       
+	00214: CALL       
+	00215: CALL       
+	00216: CALL       
+	00217: CALL       
+	00218: MIRP[srp0,md,rd,1] 
+	00219: ALIGNRP    
+	00220: SRP0       
+	00221: MIRP[srp0,nmd,rd,2] 
+	00222: CALL       
+	00223: CALL       
+	00224: CALL       
+	00225: CALL       
+	00226: CALL       
+	00227: CALL       
+	00228: CALL       
+	00229: CALL       
+	00230: CALL       
+	00231: MIRP[srp0,md,rd,1] 
+	00232: SRP1       
+	00233: IP         
+	00234: MDAP[rd]   
+	00235: DELTAP1    
+	00236: DELTAP2    
+	00237: DELTAP3    
+	00238: CALL       
+	00239: CALL       
+	00240: CALL       
+	00241: CALL       
+	00242: MIRP[nrp0,md,rd,1] 
+	00243: SVTCA[y-axis] 
+	00244: MIAP[rd+ci] 
+	00245: ALIGNRP    
+	00246: SRP0       
+	00247: MIRP[nrp0,md,rd,1] 
+	00248: MIAP[rd+ci] 
+	00249: ALIGNRP    
+	00250: SRP2       
+	00251: IP         
+	00252: MDAP[rd]   
+	00253: MIRP[srp0,md,rd,1] 
+	00254: IUP[y]     
+	00255: IUP[x]     
+	00256: RS         
+	00257: JROF       
+	00258: NPUSHB      (22):     8    21    17    12    19    27     1    21     8    19 
+	                            27     1    18    11    16    27     0    20     9    22 
+	                            27     1 
+	00282: CALL       
+	00283: CALL       
+	00284: SVTCA[x-axis] 
+	00285: CALL       
+	00286: CALL       
+	00287: FLIPRGON   
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:                                      On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                               On
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1146,  1062)  ->  Abs (  1146,  1062)
+	  1: Rel (   180,     0)  ->  Abs (  1326,  1062)
+	  2: Rel (     0, -1062)  ->  Abs (  1326,     0)
+	  3: Rel (  -180,     0)  ->  Abs (  1146,     0)
+	  4: Rel ( -1007,  1062)  ->  Abs (   139,  1062)
+	  5: Rel (   180,     0)  ->  Abs (   319,  1062)
+	  6: Rel (     0,  -415)  ->  Abs (   319,   647)
+	  7: Rel (   228,     0)  ->  Abs (   547,   647)
+	  8: Rel (   223,     0)  ->  Abs (   770,   647)
+	  9: Rel (   241,  -173)  ->  Abs (  1011,   474)
+	 10: Rel (     0,  -152)  ->  Abs (  1011,   322)
+	 11: Rel (     0,  -133)  ->  Abs (  1011,   189)
+	 12: Rel (  -201,  -189)  ->  Abs (   810,     0)
+	 13: Rel (  -221,     0)  ->  Abs (   589,     0)
+	 14: Rel (  -450,     0)  ->  Abs (   139,     0)
+	 15: Rel (   180,   148)  ->  Abs (   319,   148)
+	 16: Rel (   189,     0)  ->  Abs (   508,   148)
+	 17: Rel (   171,     0)  ->  Abs (   679,   148)
+	 18: Rel (   146,    84)  ->  Abs (   825,   232)
+	 19: Rel (     0,    89)  ->  Abs (   825,   321)
+	 20: Rel (     0,    69)  ->  Abs (   825,   390)
+	 21: Rel (  -108,   108)  ->  Abs (   717,   498)
+	 22: Rel (  -185,     0)  ->  Abs (   532,   498)
+	 23: Rel (  -213,     0)  ->  Abs (   319,   498)
+
+	Glyph 630: off = 0x0001D1C4, len = 328
+	  numberOfContours:	2
+	  xMin:			132
+	  yMin:			0
+	  xMax:			1004
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  10
+	  1:  19
+
+	  Length of Instructions:	262
+	00000: NPUSHB      (22):    31     8     2    43    19    19    10     0     6    11 
+	                            43    10    10    15    36     6    14    12    12     2 
+	                            85     6 
+	00024: PUSHW[1]             -4 
+	00027: PUSHB[5]             11    11     6    85     6 
+	00033: PUSHW[1]            -15 
+	00036: PUSHB[5]             12    12     6    85     6 
+	00042: PUSHW[1]            -10 
+	00045: NPUSHB      (11):    15    15     6    85     6     6    16    16     6    85 
+	                             6 
+	00058: PUSHW[1]            -64 
+	00061: NPUSHB      (55):    36    37    52    48     6     1     0     6    16     6 
+	                            32     6     3     6    49    31    21    63    21    95 
+	                            21   127    21   159    21   175    21   191    21   223 
+	                            21     8    15    21     1    15    21   143    21   175 
+	                            21   191    21   207    21   223    21   239    21     7 
+	                            21     1    11    37     0 
+	00118: PUSHW[1]             -4 
+	00121: NPUSHB      (11):    16    16     2    85     0     4    11    12     2    85 
+	                             0 
+	00134: PUSHW[1]             -4 
+	00137: PUSHB[5]             12    12     6    85     0 
+	00143: PUSHW[1]             -2 
+	00146: PUSHB[5]             13    13     6    85     0 
+	00152: PUSHW[1]            -12 
+	00155: PUSHB[5]             15    15     6    85     0 
+	00161: PUSHW[1]            -20 
+	00164: PUSHB[5]             16    16     6    85     0 
+	00170: PUSHW[1]            -64 
+	00173: NPUSHB      (18):    51    54    52   240     0     1     0     0    32     0 
+	                           208     0   224     0     4     0    78    20 
+	00193: SRP0       
+	00194: MIRP[srp0,nmd,rd,2] 
+	00195: DELTAP1    
+	00196: DELTAP2    
+	00197: CALL       
+	00198: CALL       
+	00199: CALL       
+	00200: CALL       
+	00201: CALL       
+	00202: CALL       
+	00203: CALL       
+	00204: MIRP[srp0,md,rd,1] 
+	00205: ALIGNRP    
+	00206: SRP0       
+	00207: DELTAP2    
+	00208: DELTAP3    
+	00209: DELTAP1    
+	00210: MIRP[srp0,nmd,rd,2] 
+	00211: DELTAP1    
+	00212: DELTAP1    
+	00213: CALL       
+	00214: CALL       
+	00215: CALL       
+	00216: CALL       
+	00217: CALL       
+	00218: CALL       
+	00219: MIRP[nrp0,md,rd,1] 
+	00220: SVTCA[y-axis] 
+	00221: MIAP[rd+ci] 
+	00222: MIRP[nrp0,md,rd,1] 
+	00223: MIAP[rd+ci] 
+	00224: SRP2       
+	00225: IP         
+	00226: MDAP[rd]   
+	00227: MIRP[srp0,md,rd,1] 
+	00228: IUP[y]     
+	00229: IUP[x]     
+	00230: RS         
+	00231: JROF       
+	00232: NPUSHB      (22):     4    17    13     8    15    27     1    17     4    15 
+	                            27     1    14     7    12    27     0    16     5    18 
+	                            27     1 
+	00256: CALL       
+	00257: CALL       
+	00258: SVTCA[x-axis] 
+	00259: CALL       
+	00260: CALL       
+	00261: FLIPRGON   
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                               On
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   132,  1062)  ->  Abs (   132,  1062)
+	  1: Rel (   180,     0)  ->  Abs (   312,  1062)
+	  2: Rel (     0,  -415)  ->  Abs (   312,   647)
+	  3: Rel (   228,     0)  ->  Abs (   540,   647)
+	  4: Rel (   223,     0)  ->  Abs (   763,   647)
+	  5: Rel (   241,  -173)  ->  Abs (  1004,   474)
+	  6: Rel (     0,  -152)  ->  Abs (  1004,   322)
+	  7: Rel (     0,  -133)  ->  Abs (  1004,   189)
+	  8: Rel (  -201,  -189)  ->  Abs (   803,     0)
+	  9: Rel (  -221,     0)  ->  Abs (   582,     0)
+	 10: Rel (  -450,     0)  ->  Abs (   132,     0)
+	 11: Rel (   180,   148)  ->  Abs (   312,   148)
+	 12: Rel (   189,     0)  ->  Abs (   501,   148)
+	 13: Rel (   171,     0)  ->  Abs (   672,   148)
+	 14: Rel (   146,    84)  ->  Abs (   818,   232)
+	 15: Rel (     0,    89)  ->  Abs (   818,   321)
+	 16: Rel (     0,    69)  ->  Abs (   818,   390)
+	 17: Rel (  -108,   108)  ->  Abs (   710,   498)
+	 18: Rel (  -185,     0)  ->  Abs (   525,   498)
+	 19: Rel (  -213,     0)  ->  Abs (   312,   498)
+
+	Glyph 631: off = 0x0001D30C, len = 82
+	  numberOfContours:	-1  (Composite)
+	  xMin:			43
+	  yMin:			-37
+	  xMax:			970
+	  yMax:			1086
+
+	     0: Flags:		0x0153
+		Glyf Index:	637
+		X WOffset:	1045
+		Y WOffset:	0
+		X Scale:	-1.000000
+		Y Scale:	 1.000000
+		Other:		                   No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              0    14 
+	00003: PUSHW[1]             -6 
+	00006: NPUSHB      (11):    16    16     2    85    14     6    15    15     2    85 
+	                            14 
+	00019: PUSHW[1]            -12 
+	00022: PUSHB[5]             12    12     2    85    14 
+	00028: PUSHW[1]             -2 
+	00031: NPUSHB      (14):    15    15     6    85    14     6    16    16     6    85 
+	                            14    14    55    28 
+	00047: FLIPOFF    
+	00048: SRP0       
+	00049: MIRP[srp0,nmd,rd,2] 
+	00050: SRP1       
+	00051: CALL       
+	00052: CALL       
+	00053: CALL       
+	00054: CALL       
+	00055: CALL       
+	00056: SHC[rp1,zp0] 
+
+	Glyph 632: off = 0x0001D35E, len = 482
+	  numberOfContours:	2
+	  xMin:			137
+	  yMin:			-24
+	  xMax:			1453
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  31
+
+	  Length of Instructions:	381
+	00000: NPUSHB      (94):    10     4     1    52    25    71    25    90     8    95 
+	                            12    80    14    83    21    83    25    95    27    91 
+	                            31   110     8   111    12   101    14    99    21    99 
+	                            25   111    27   110    31   185     4   203     4   217 
+	                             4   217    15   219    21   217    22   219    25   213 
+	                            27   211    31   233     4   231    15   249     4   251 
+	                             5   247    15   249    21   250    25   245    27   243 
+	                            31    34     2    43    17    17    19     0    20    28 
+	                             6     7     0     6    19    10    26    28    13    11 
+	                             3    16    36    23 
+	00096: PUSHW[1]            -18 
+	00099: PUSHB[5]             16    16     2    85    23 
+	00105: PUSHW[1]            -28 
+	00108: PUSHB[5]             13    13     2    85    23 
+	00114: PUSHW[1]            -19 
+	00117: NPUSHB      (11):    16    16     6    85    23    16    13    13     6    85 
+	                            23 
+	00130: PUSHW[1]             -9 
+	00133: NPUSHB      (24):    12    12     6    85    48    23   255    23     2   159 
+	                            23   208    23   224    23   240    23     4    23    23 
+	                             0    29    36    10 
+	00159: PUSHW[1]             -4 
+	00162: PUSHB[5]             16    16     2    85    10 
+	00168: PUSHW[1]            -14 
+	00171: PUSHB[5]             15    15     2    85    10 
+	00177: PUSHW[1]            -12 
+	00180: PUSHB[5]             15    15     6    85    10 
+	00186: PUSHW[1]            -10 
+	00189: PUSHB[5]             13    13     6    85    10 
+	00195: PUSHW[1]            -16 
+	00198: PUSHB[5]             11    12     6    85    10 
+	00204: PUSHW[1]            -64 
+	00207: NPUSHB      (20):    36    37    52    48    10     1     0    10    16    10 
+	                            32    10     3    10    49    33     1    18    37     0 
+	00229: PUSHW[1]            -10 
+	00232: PUSHB[5]             17    17     2    85     0 
+	00238: PUSHW[1]             -6 
+	00241: PUSHB[5]             16    16     2    85     0 
+	00247: PUSHW[1]             -6 
+	00250: NPUSHB      (23):    14    14     2    85     0     4    12    12     2    85 
+	                             0    10    11    11     2    85     0     4    11    12 
+	                             6    85     0 
+	00275: PUSHW[1]             -2 
+	00278: PUSHB[5]             13    13     6    85     0 
+	00284: PUSHW[1]             -8 
+	00287: PUSHB[5]             15    15     6    85     0 
+	00293: PUSHW[1]            -12 
+	00296: PUSHB[5]             16    16     6    85     0 
+	00302: PUSHW[1]            -64 
+	00305: NPUSHB      (18):    51    54    52   240     0     1     0     0    32     0 
+	                           208     0   224     0     4     0    78    32 
+	00325: SRP0       
+	00326: MIRP[srp0,nmd,rd,2] 
+	00327: DELTAP1    
+	00328: DELTAP2    
+	00329: CALL       
+	00330: CALL       
+	00331: CALL       
+	00332: CALL       
+	00333: CALL       
+	00334: CALL       
+	00335: CALL       
+	00336: CALL       
+	00337: CALL       
+	00338: CALL       
+	00339: MIRP[srp0,md,rd,1] 
+	00340: ALIGNRP    
+	00341: SRP0       
+	00342: MIRP[srp0,nmd,rd,2] 
+	00343: DELTAP1    
+	00344: DELTAP1    
+	00345: CALL       
+	00346: CALL       
+	00347: CALL       
+	00348: CALL       
+	00349: CALL       
+	00350: CALL       
+	00351: MIRP[nrp0,md,rd,1] 
+	00352: SRP2       
+	00353: IP         
+	00354: MDAP[rd]   
+	00355: DELTAP1    
+	00356: DELTAP2    
+	00357: CALL       
+	00358: CALL       
+	00359: CALL       
+	00360: CALL       
+	00361: CALL       
+	00362: MIRP[srp0,md,rd,1] 
+	00363: ALIGNRP    
+	00364: SVTCA[y-axis] 
+	00365: MIAP[rd+ci] 
+	00366: MIRP[nrp0,md,rd,1] 
+	00367: MIAP[rd+ci] 
+	00368: MIAP[rd+ci] 
+	00369: MIAP[rd+ci] 
+	00370: MIRP[nrp0,md,rd,1] 
+	00371: SRP1       
+	00372: SRP2       
+	00373: IP         
+	00374: MDAP[rd]   
+	00375: MIRP[nrp0,md,rd,1] 
+	00376: IUP[y]     
+	00377: IUP[x]     
+	00378: SVTCA[x-axis] 
+	00379: DELTAP1    
+	00380: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual                         Off
+	 12:                              X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:                              X-Short Off
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual                       X-Short On
+	 18:        XDual                         On
+	 19:  YDual                       X-Short On
+	 20:                                      On
+	 21:  YDual                       X-Short Off
+	 22:                      Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   137,  1062)  ->  Abs (   137,  1062)
+	  1: Rel (   180,     0)  ->  Abs (   317,  1062)
+	  2: Rel (     0,  -444)  ->  Abs (   317,   618)
+	  3: Rel (   218,     0)  ->  Abs (   535,   618)
+	  4: Rel (    24,   228)  ->  Abs (   559,   846)
+	  5: Rel (   237,   240)  ->  Abs (   796,  1086)
+	  6: Rel (   189,     0)  ->  Abs (   985,  1086)
+	  7: Rel (   161,     0)  ->  Abs (  1146,  1086)
+	  8: Rel (   186,  -130)  ->  Abs (  1332,   956)
+	  9: Rel (   121,  -228)  ->  Abs (  1453,   728)
+	 10: Rel (     0,  -193)  ->  Abs (  1453,   535)
+	 11: Rel (     0,  -275)  ->  Abs (  1453,   260)
+	 12: Rel (  -250,  -284)  ->  Abs (  1203,   -24)
+	 13: Rel (  -214,     0)  ->  Abs (   989,   -24)
+	 14: Rel (  -199,     0)  ->  Abs (   790,   -24)
+	 15: Rel (  -240,   264)  ->  Abs (   550,   240)
+	 16: Rel (   -15,   230)  ->  Abs (   535,   470)
+	 17: Rel (  -218,     0)  ->  Abs (   317,   470)
+	 18: Rel (     0,  -470)  ->  Abs (   317,     0)
+	 19: Rel (  -180,     0)  ->  Abs (   137,     0)
+	 20: Rel (   858,   933)  ->  Abs (   995,   933)
+	 21: Rel (  -132,     0)  ->  Abs (   863,   933)
+	 22: Rel (  -147,  -203)  ->  Abs (   716,   730)
+	 23: Rel (     0,  -183)  ->  Abs (   716,   547)
+	 24: Rel (     0,  -219)  ->  Abs (   716,   328)
+	 25: Rel (   148,  -204)  ->  Abs (   864,   124)
+	 26: Rel (   124,     0)  ->  Abs (   988,   124)
+	 27: Rel (   123,     0)  ->  Abs (  1111,   124)
+	 28: Rel (   157,   189)  ->  Abs (  1268,   313)
+	 29: Rel (     0,   210)  ->  Abs (  1268,   523)
+	 30: Rel (     0,   205)  ->  Abs (  1268,   728)
+	 31: Rel (  -136,   205)  ->  Abs (  1132,   933)
+
+	Glyph 633: off = 0x0001D540, len = 380
+	  numberOfContours:	2
+	  xMin:			31
+	  yMin:			0
+	  xMax:			971
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  18
+	  1:  27
+
+	  Length of Instructions:	288
+	00000: NPUSHB      (38):     4     9    29     8    52    12    68    12    91     8 
+	                            84    12   212    12     7   121    11     1    36     8 
+	                            12     2    10     6     8     8    10    12    12     2 
+	                            85     8     6    12    12     6    85     8 
+	00040: PUSHW[1]            -10 
+	00043: NPUSHB      (42):    16    16     6    85     8    37     9    11    20     9 
+	                             9    11    11    12     6     9     3    12    12    27 
+	                            43     3     3     2    20    43    18     6     9     8 
+	                             8     2    10    11     6     8     3     9    19     2 
+	                            37     0 
+	00087: PUSHW[1]             -4 
+	00090: NPUSHB      (11):    16    16     2    85     0    18    15    15     2    85 
+	                             0 
+	00103: PUSHW[1]            -10 
+	00106: NPUSHB      (11):    13    13     2    85     0    18    12    12     2    85 
+	                             0 
+	00119: PUSHW[1]            -18 
+	00122: PUSHB[5]             11    11     2    85     0 
+	00128: PUSHW[1]            -22 
+	00131: PUSHB[5]             10    10     2    85     0 
+	00137: PUSHW[1]             -8 
+	00140: PUSHB[5]             12    12     6    85     0 
+	00146: PUSHW[1]             -6 
+	00149: NPUSHB      (24):    13    13     6    85     0    14    15    15     6    85 
+	                             0    34    16    16     6    85     0    78    29     9 
+	                            40    23    36    15 
+	00175: PUSHW[1]             -8 
+	00178: PUSHB[7]             10    10     2    85    15   145    28 
+	00186: SRP0       
+	00187: MIRP[srp0,nmd,rd,2] 
+	00188: CALL       
+	00189: MIRP[nrp0,md,rd,1] 
+	00190: RTHG       
+	00191: MIRP[nrp0,nmd,rd,0] 
+	00192: RTG        
+	00193: SRP0       
+	00194: MIRP[srp0,nmd,rd,2] 
+	00195: CALL       
+	00196: CALL       
+	00197: CALL       
+	00198: CALL       
+	00199: CALL       
+	00200: CALL       
+	00201: CALL       
+	00202: CALL       
+	00203: CALL       
+	00204: CALL       
+	00205: MIRP[srp0,md,rd,1] 
+	00206: ALIGNRP    
+	00207: SRP1       
+	00208: SLOOP      
+	00209: IP         
+	00210: SVTCA[y-axis] 
+	00211: MIAP[rd+ci] 
+	00212: ALIGNRP    
+	00213: SRP0       
+	00214: ALIGNRP    
+	00215: MIAP[rd+ci] 
+	00216: MIRP[nrp0,md,rd,1] 
+	00217: SRP2       
+	00218: IP         
+	00219: MDAP[rd]   
+	00220: MIRP[nrp0,md,rd,1] 
+	00221: RTHG       
+	00222: IP         
+	00223: MDAP[rd]   
+	00224: SRP1       
+	00225: SRP2       
+	00226: IP         
+	00227: SRP1       
+	00228: IP         
+	00229: SDPVTL[1]  
+	00230: SFVTCA[x-axis] 
+	00231: MDAP[nrd]  
+	00232: RTG        
+	00233: CALL       
+	00234: CALL       
+	00235: CALL       
+	00236: CALL       
+	00237: SFVTPV     
+	00238: RDTG       
+	00239: SRP0       
+	00240: MDRP[nrp0,nmd,rd,0] 
+	00241: SVTCA[x-axis] 
+	00242: SRP1       
+	00243: SRP2       
+	00244: IP         
+	00245: IUP[y]     
+	00246: IUP[x]     
+	00247: RTG        
+	00248: RS         
+	00249: JROF       
+	00250: NPUSHB      (24):    13    25    25    13    23    27     2    21    17    23 
+	                            27     0    24    14    26    27     0    13    12    22 
+	                            16    20    27     1 
+	00276: SVTCA[y-axis] 
+	00277: CALL       
+	00278: SRP0       
+	00279: ALIGNRP    
+	00280: CALL       
+	00281: SVTCA[x-axis] 
+	00282: CALL       
+	00283: CALL       
+	00284: FLIPRGON   
+	00285: SVTCA[x-axis] 
+	00286: DELTAP1    
+	00287: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short X-Short On
+	  9:  YDual                       X-Short On
+	 10:        XDual                 X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:                      Y-Short         On
+	 20:  YDual                               On
+	 21:  YDual                       X-Short Off
+	 22:                      Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   971,  1062)  ->  Abs (   971,  1062)
+	  1: Rel (     0, -1062)  ->  Abs (   971,     0)
+	  2: Rel (  -179,     0)  ->  Abs (   792,     0)
+	  3: Rel (     0,   414)  ->  Abs (   792,   414)
+	  4: Rel (  -104,     0)  ->  Abs (   688,   414)
+	  5: Rel (   -95,     0)  ->  Abs (   593,   414)
+	  6: Rel (   -93,   -49)  ->  Abs (   500,   365)
+	  7: Rel (   -89,  -133)  ->  Abs (   411,   232)
+	  8: Rel (  -157,  -232)  ->  Abs (   254,     0)
+	  9: Rel (  -223,     0)  ->  Abs (    31,     0)
+	 10: Rel (   194,   286)  ->  Abs (   225,   286)
+	 11: Rel (    89,   131)  ->  Abs (   314,   417)
+	 12: Rel (    88,    17)  ->  Abs (   402,   434)
+	 13: Rel (  -154,    21)  ->  Abs (   248,   455)
+	 14: Rel (  -149,   180)  ->  Abs (    99,   635)
+	 15: Rel (     0,   117)  ->  Abs (    99,   752)
+	 16: Rel (     0,   138)  ->  Abs (    99,   890)
+	 17: Rel (   195,   172)  ->  Abs (   294,  1062)
+	 18: Rel (   185,     0)  ->  Abs (   479,  1062)
+	 19: Rel (   313,  -149)  ->  Abs (   792,   913)
+	 20: Rel (  -256,     0)  ->  Abs (   536,   913)
+	 21: Rel (  -161,     0)  ->  Abs (   375,   913)
+	 22: Rel (   -93,  -100)  ->  Abs (   282,   813)
+	 23: Rel (     0,   -67)  ->  Abs (   282,   746)
+	 24: Rel (     0,   -95)  ->  Abs (   282,   651)
+	 25: Rel (   137,   -89)  ->  Abs (   419,   562)
+	 26: Rel (   174,     0)  ->  Abs (   593,   562)
+	 27: Rel (   199,     0)  ->  Abs (   792,   562)
+
+	Glyph 634: off = 0x0001D6BC, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			75
+	  yMin:			-24
+	  xMax:			1054
+	  yMax:			1475
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	223
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (20):     3     2    34    64    11    11     2    85   175    34 
+	                             1    34    10    80    72    43     2     3     2    37 
+	00022: PUSHW[2]            546    41 
+	00027: SVTCA[y-axis] 
+	00028: CALL       
+	00029: SVTCA[x-axis] 
+	00030: CALL       
+	00031: DELTAP1    
+	00032: CALL       
+	00033: SHC[rp1,zp0] 
+	00034: SHC[rp1,zp0] 
+
+	Glyph 635: off = 0x0001D6FA, len = 422
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-431
+	  xMax:			1000
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  37
+
+	  Length of Instructions:	312
+	00000: NPUSHB      (30):     3    15    20    15    37    11    53    11    70    11 
+	                             5    54    18    69    19   122    31   139    31     4 
+	                            23    23    22    22    26    28    20    15     7     2 
+	00032: PUSHW[1]            -64 
+	00035: NPUSHB      (55):    30    43    52     2   212     8     1     1    13     4 
+	                             0    32    28    13     7    36    37    10    23     0 
+	                            22     1    22     7    32     2     1     2    29    37 
+	                            39    64    11    11     2    85    39    64    16    16 
+	                             2    85    16    40    16    16     2    85    16    20 
+	                            14    14     2    85    16 
+	00092: PUSHW[1]            -20 
+	00095: NPUSHB      (17):    13    13     2    85    16     4    12    12     2    85 
+	                            16    26    11    11     2    85    16 
+	00114: PUSHW[1]            -10 
+	00117: NPUSHB      (30):    11    13     6    85    16    10    15    15     6    85 
+	                            16    20    16    16     6    85    16    64    51    54 
+	                            52   255    16     1   192    16     1    16    78    39 
+	00149: PUSHW[1]            -64 
+	00152: NPUSHB      (24):    52    54    52   176    39   240    39     2   112    39 
+	                           160    39   176    39   255    39     4    39    10     5 
+	                            36    37     4    37 
+	00178: PUSHW[1]             -6 
+	00181: PUSHB[5]             16    16     2    85    37 
+	00187: PUSHW[1]             -6 
+	00190: NPUSHB      (23):    14    14     2    85    37     4    12    12     2    85 
+	                            37     8    11    11     2    85    37     8    11    11 
+	                             6    85    37 
+	00215: PUSHW[1]             -8 
+	00218: PUSHB[5]             15    15     6    85    37 
+	00224: PUSHW[1]            -64 
+	00227: NPUSHB      (18):    51    54    52   240    37     1     0    37    32    37 
+	                           208    37   224    37     4    37    78    38 
+	00247: SRP0       
+	00248: MIRP[srp0,md,rd,1] 
+	00249: DELTAP1    
+	00250: DELTAP2    
+	00251: CALL       
+	00252: CALL       
+	00253: CALL       
+	00254: CALL       
+	00255: CALL       
+	00256: CALL       
+	00257: CALL       
+	00258: ALIGNRP    
+	00259: MIRP[srp0,md,rd,1] 
+	00260: ALIGNRP    
+	00261: ALIGNRP    
+	00262: SRP0       
+	00263: DELTAP1    
+	00264: DELTAP2    
+	00265: CALL       
+	00266: MIRP[srp0,nmd,rd,2] 
+	00267: DELTAP1    
+	00268: DELTAP2    
+	00269: CALL       
+	00270: CALL       
+	00271: CALL       
+	00272: CALL       
+	00273: CALL       
+	00274: CALL       
+	00275: CALL       
+	00276: CALL       
+	00277: CALL       
+	00278: CALL       
+	00279: CALL       
+	00280: MIRP[nrp0,md,rd,1] 
+	00281: MDAP[rd]   
+	00282: DELTAP1    
+	00283: MDAP[rd]   
+	00284: MDAP[rd]   
+	00285: DELTAP1    
+	00286: SHP[rp1,zp0] 
+	00287: SVTCA[y-axis] 
+	00288: MIAP[rd+ci] 
+	00289: ALIGNRP    
+	00290: MIAP[rd+ci] 
+	00291: MIRP[nrp0,md,rd,1] 
+	00292: MIAP[rd+ci] 
+	00293: SRP2       
+	00294: IP         
+	00295: MDAP[rd]   
+	00296: ALIGNRP    
+	00297: MIRP[srp0,md,rd,1] 
+	00298: CALL       
+	00299: ALIGNRP    
+	00300: MIAP[rd+ci] 
+	00301: MIRP[nrp0,md,rd,1] 
+	00302: SHP[rp1,zp0] 
+	00303: MDAP[rd]   
+	00304: SHP[rp1,zp0] 
+	00305: MDAP[rd]   
+	00306: IUP[y]     
+	00307: IUP[x]     
+	00308: SVTCA[x-axis] 
+	00309: DELTAP1    
+	00310: SVTCA[y-axis] 
+	00311: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                       X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual         Y-Short         On
+	  9:  YDual                               On
+	 10:        XDual                         On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual                         On
+	 18:        XDual         Y-Short         Off
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:        XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:        XDual                         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:                      Y-Short X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual                         On
+	 37:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   135,  1217)  ->  Abs (   135,  1217)
+	  1: Rel (  -134,     0)  ->  Abs (     1,  1217)
+	  2: Rel (    -1,   119)  ->  Abs (     0,  1336)
+	  3: Rel (   135,     0)  ->  Abs (   135,  1336)
+	  4: Rel (     0,   130)  ->  Abs (   135,  1466)
+	  5: Rel (   179,     0)  ->  Abs (   314,  1466)
+	  6: Rel (     0,  -130)  ->  Abs (   314,  1336)
+	  7: Rel (   343,     0)  ->  Abs (   657,  1336)
+	  8: Rel (     0,  -119)  ->  Abs (   657,  1217)
+	  9: Rel (  -343,     0)  ->  Abs (   314,  1217)
+	 10: Rel (     0,  -278)  ->  Abs (   314,   939)
+	 11: Rel (    61,    74)  ->  Abs (   375,  1013)
+	 12: Rel (   161,    73)  ->  Abs (   536,  1086)
+	 13: Rel (    99,     0)  ->  Abs (   635,  1086)
+	 14: Rel (   175,     0)  ->  Abs (   810,  1086)
+	 15: Rel (   190,  -184)  ->  Abs (  1000,   902)
+	 16: Rel (     0,  -229)  ->  Abs (  1000,   673)
+	 17: Rel (     0,  -731)  ->  Abs (  1000,   -58)
+	 18: Rel (     0,  -238)  ->  Abs (  1000,  -296)
+	 19: Rel (  -152,  -135)  ->  Abs (   848,  -431)
+	 20: Rel (  -114,     0)  ->  Abs (   734,  -431)
+	 21: Rel (   -79,     0)  ->  Abs (   655,  -431)
+	 22: Rel (   -63,    19)  ->  Abs (   592,  -412)
+	 23: Rel (    34,   153)  ->  Abs (   626,  -259)
+	 24: Rel (    52,   -14)  ->  Abs (   678,  -273)
+	 25: Rel (    32,     0)  ->  Abs (   710,  -273)
+	 26: Rel (    47,     0)  ->  Abs (   757,  -273)
+	 27: Rel (    63,    63)  ->  Abs (   820,  -210)
+	 28: Rel (     0,   156)  ->  Abs (   820,   -54)
+	 29: Rel (     0,   727)  ->  Abs (   820,   673)
+	 30: Rel (     0,   129)  ->  Abs (   820,   802)
+	 31: Rel (  -113,   129)  ->  Abs (   707,   931)
+	 32: Rel (  -113,     0)  ->  Abs (   594,   931)
+	 33: Rel (   -99,     0)  ->  Abs (   495,   931)
+	 34: Rel (  -181,  -138)  ->  Abs (   314,   793)
+	 35: Rel (     0,  -212)  ->  Abs (   314,   581)
+	 36: Rel (     0,  -581)  ->  Abs (   314,     0)
+	 37: Rel (  -179,     0)  ->  Abs (   135,     0)
+
+	Glyph 636: off = 0x0001D8A0, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			136
+	  yMin:			0
+	  xMax:			747
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	605
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	141
+		X BOffset:	120
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1     1     6 
+	00004: PUSHW[2]            546    41 
+	00009: SVTCA[y-axis] 
+	00010: CALL       
+
+	Glyph 637: off = 0x0001D8C4, len = 320
+	  numberOfContours:	1
+	  xMin:			75
+	  yMin:			-37
+	  xMax:			1002
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  26
+
+	  Length of Instructions:	226
+	00000: NPUSHB      (58):    31    28    69    24    85     4    85    24   107    12 
+	                           108    13   108    16   115     9   115    10   123    12 
+	                           116    18   117    19   133    18   149    18   144    24 
+	                            15    20   143    95    21   111    21     2    21    21 
+	                            11    17     8    34    48     7    64     7    96     7 
+	                           160     7     4     7     7    17    11    26 
+	00060: PUSHW[1]            -64 
+	00063: NPUSHB      (72):    30    32    52    26    43     2     2    11    23    28 
+	                            17     7     5    28    11    11     1     1     7     2 
+	                            21    36    20   154     7    36    31     8     1     8 
+	                            55    28    26     2    36    14     8    14    14     2 
+	                            85    14    12    13    13     2    85    14    12    12 
+	                            12     2    85    14    16    11    11     2    85    14 
+	                            16    12    12     6    85    14    10    11    13     6 
+	                            85    14 
+	00137: PUSHW[1]             -4 
+	00140: NPUSHB      (24):    15    15     6    85    14    14    16    16     6    85 
+	                            14    64    36    37    52    31    14    63    14     2 
+	                            14    49    27    52 
+	00166: PUSHW[2]            266    24 
+	00171: CALL       
+	00172: FLIPOFF    
+	00173: SRP0       
+	00174: MIRP[srp0,nmd,rd,0] 
+	00175: DELTAP1    
+	00176: CALL       
+	00177: CALL       
+	00178: CALL       
+	00179: CALL       
+	00180: CALL       
+	00181: CALL       
+	00182: CALL       
+	00183: CALL       
+	00184: CALL       
+	00185: FLIPON     
+	00186: MIRP[srp0,md,rd,1] 
+	00187: ALIGNRP    
+	00188: FLIPOFF    
+	00189: SRP0       
+	00190: MIRP[srp0,nmd,rd,2] 
+	00191: DELTAP1    
+	00192: FLIPON     
+	00193: MIRP[nrp0,md,rd,1] 
+	00194: MIRP[srp0,nmd,rd,0] 
+	00195: MIRP[nrp0,md,rd,1] 
+	00196: SRP1       
+	00197: SRP2       
+	00198: IP         
+	00199: MDAP[rd]   
+	00200: SVTCA[y-axis] 
+	00201: MIAP[rd+ci] 
+	00202: MIRP[nrp0,md,rd,1] 
+	00203: MIAP[rd+ci] 
+	00204: MIRP[nrp0,md,rd,1] 
+	00205: SRP2       
+	00206: IP         
+	00207: MDAP[rd]   
+	00208: MIRP[nrp0,md,rd,1] 
+	00209: CALL       
+	00210: SRP1       
+	00211: SRP2       
+	00212: IP         
+	00213: MDAP[rd]   
+	00214: DELTAP1    
+	00215: MIRP[nrp0,nmd,rd,0] 
+	00216: SRP1       
+	00217: SRP2       
+	00218: IP         
+	00219: MDAP[rd]   
+	00220: DELTAP1    
+	00221: MIRP[nrp0,nmd,rd,0] 
+	00222: IUP[y]     
+	00223: IUP[x]     
+	00224: SVTCA[x-axis] 
+	00225: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual                 X-Short On
+	  8:        XDual         Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:                              X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:        XDual                         Off
+	 16:                                      Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short X-Short On
+	 21:                      Y-Short X-Short On
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   641,   618)  ->  Abs (   641,   618)
+	  1: Rel (     0,  -148)  ->  Abs (   641,   470)
+	  2: Rel (  -375,     0)  ->  Abs (   266,   470)
+	  3: Rel (    17,  -173)  ->  Abs (   283,   297)
+	  4: Rel (   145,  -173)  ->  Abs (   428,   124)
+	  5: Rel (   129,     0)  ->  Abs (   557,   124)
+	  6: Rel (   228,     0)  ->  Abs (   785,   124)
+	  7: Rel (    41,   264)  ->  Abs (   826,   388)
+	  8: Rel (   176,   -23)  ->  Abs (  1002,   365)
+	  9: Rel (   -28,  -175)  ->  Abs (   974,   190)
+	 10: Rel (  -235,  -214)  ->  Abs (   739,   -24)
+	 11: Rel (  -190,     0)  ->  Abs (   549,   -24)
+	 12: Rel (  -226,   -13)  ->  Abs (   323,   -37)
+	 13: Rel (  -248,   313)  ->  Abs (    75,   276)
+	 14: Rel (     6,   255)  ->  Abs (    81,   531)
+	 15: Rel (     0,   259)  ->  Abs (    81,   790)
+	 16: Rel (   258,   296)  ->  Abs (   339,  1086)
+	 17: Rel (   223,     0)  ->  Abs (   562,  1086)
+	 18: Rel (   178,     0)  ->  Abs (   740,  1086)
+	 19: Rel (   220,  -189)  ->  Abs (   960,   897)
+	 20: Rel (    24,  -149)  ->  Abs (   984,   748)
+	 21: Rel (  -175,   -28)  ->  Abs (   809,   720)
+	 22: Rel (   -44,   217)  ->  Abs (   765,   937)
+	 23: Rel (  -209,     0)  ->  Abs (   556,   937)
+	 24: Rel (  -120,     0)  ->  Abs (   436,   937)
+	 25: Rel (  -153,  -177)  ->  Abs (   283,   760)
+	 26: Rel (   -17,  -142)  ->  Abs (   266,   618)
+
+	Glyph 638: off = 0x0001DA04, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			63
+	  yMin:			-24
+	  xMax:			945
+	  yMax:			1086
+
+	     0: Flags:		0x0206
+		Glyf Index:	86
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 639: off = 0x0001DA14, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			136
+	  yMin:			0
+	  xMax:			316
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	76
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 640: off = 0x0001DA24, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			9
+	  yMin:			0
+	  xMax:			570
+	  yMax:			1475
+
+	     0: Flags:		0x0226
+		Glyf Index:	213
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	142
+		X BOffset:	-52
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     2     1     8    32    11    11     6    85     8     2 
+	                             0    72    43     1     2     2    11 
+	00019: PUSHW[2]            546    41 
+	00024: SVTCA[y-axis] 
+	00025: CALL       
+	00026: SVTCA[x-axis] 
+	00027: CALL       
+	00028: CALL       
+	00029: SHC[rp1,zp0] 
+	00030: SHC[rp1,zp0] 
+
+	Glyph 641: off = 0x0001DA5C, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-94
+	  yMin:			-431
+	  xMax:			314
+	  yMax:			1466
+
+	     0: Flags:		0x0206
+		Glyf Index:	77
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 642: off = 0x0001DA6C, len = 396
+	  numberOfContours:	2
+	  xMin:			19
+	  yMin:			-6
+	  xMax:			1784
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  25
+	  1:  34
+
+	  Length of Instructions:	288
+	00000: NPUSHB      (31):    21     4    21     6    16    36     3     1    43    34 
+	                            34     9    11    43    25     6    26    43     9    19 
+	                            43    18    18     9    10    16    10     0    26    37 
+	                             9 
+	00033: PUSHW[1]            -12 
+	00036: NPUSHB      (11):    16    16     2    85     9    12    15    15     2    85 
+	                             9 
+	00049: PUSHW[1]            -12 
+	00052: PUSHB[5]             13    13     2    85     9 
+	00058: PUSHW[1]            -20 
+	00061: PUSHB[5]             11    11     6    85     9 
+	00067: PUSHW[1]            -39 
+	00070: PUSHB[5]             12    12     6    85     9 
+	00076: PUSHW[1]            -16 
+	00079: PUSHB[5]             13    13     6    85     9 
+	00085: PUSHW[1]            -30 
+	00088: NPUSHB      (18):    16    16     6    85    64     9    96     9     2   144 
+	                             9     1     9     9    12    30    36     5 
+	00108: PUSHW[1]            -10 
+	00111: PUSHB[5]             11    11     6    85     5 
+	00117: PUSHW[1]            -28 
+	00120: PUSHB[5]             12    12     6    85     5 
+	00126: PUSHW[1]            -10 
+	00129: NPUSHB      (11):    15    15     6    85     5     4    16    16     6    85 
+	                             5 
+	00142: PUSHW[1]            -64 
+	00145: NPUSHB      (19):    36    37    52    48     5     1     0     5    16     5 
+	                            32     5     3     5    49   223    36     1    36 
+	00166: PUSHW[1]            -64 
+	00169: NPUSHB      (22):    30    35    52    48    36     1    36    12    37    24 
+	                             8    15    16     2    85    24    18    13    13     2 
+	                            85    24 
+	00193: PUSHW[1]            -12 
+	00196: NPUSHB      (34):    11    12     2    85    24    32    11    11     6    85 
+	                            24    28    12    12     6    85    24    20    13    13 
+	                             6    85    79    24    95    24   223    24     3    24 
+	                           164    19   154    35 
+	00232: SRP0       
+	00233: MIRP[srp0,nmd,rd,2] 
+	00234: MIRP[srp0,nmd,rd,2] 
+	00235: DELTAP1    
+	00236: CALL       
+	00237: CALL       
+	00238: CALL       
+	00239: CALL       
+	00240: CALL       
+	00241: CALL       
+	00242: MIRP[nrp0,md,rd,1] 
+	00243: SRP0       
+	00244: DELTAP2    
+	00245: CALL       
+	00246: DELTAP1    
+	00247: MIRP[srp0,nmd,rd,0] 
+	00248: DELTAP1    
+	00249: DELTAP1    
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+	00253: CALL       
+	00254: CALL       
+	00255: MIRP[srp0,md,rd,1] 
+	00256: SRP1       
+	00257: IP         
+	00258: MDAP[rd]   
+	00259: DELTAP1    
+	00260: DELTAP2    
+	00261: CALL       
+	00262: CALL       
+	00263: CALL       
+	00264: CALL       
+	00265: CALL       
+	00266: CALL       
+	00267: CALL       
+	00268: MIRP[srp0,md,rd,1] 
+	00269: ALIGNRP    
+	00270: SVTCA[y-axis] 
+	00271: MIAP[rd+ci] 
+	00272: MIAP[rd+ci] 
+	00273: ALIGNRP    
+	00274: SRP0       
+	00275: MIRP[nrp0,md,rd,1] 
+	00276: SRP0       
+	00277: MIRP[nrp0,md,rd,1] 
+	00278: MIAP[rd+ci] 
+	00279: MIRP[nrp0,md,rd,1] 
+	00280: SRP2       
+	00281: IP         
+	00282: MDAP[rd]   
+	00283: MIRP[nrp0,md,rd,1] 
+	00284: IUP[y]     
+	00285: IUP[x]     
+	00286: SVTCA[x-axis] 
+	00287: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:        XDual                         On
+	 11:  YDual                               On
+	 12:        XDual                         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short On
+	 19:  YDual XDual         Y-Short         On
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:        XDual                         On
+	 26:                                      On
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1092,  1062)  ->  Abs (  1092,  1062)
+	  1: Rel (     0,  -415)  ->  Abs (  1092,   647)
+	  2: Rel (   229,     0)  ->  Abs (  1321,   647)
+	  3: Rel (   220,     0)  ->  Abs (  1541,   647)
+	  4: Rel (   243,  -172)  ->  Abs (  1784,   475)
+	  5: Rel (     0,  -153)  ->  Abs (  1784,   322)
+	  6: Rel (     0,  -128)  ->  Abs (  1784,   194)
+	  7: Rel (  -196,  -194)  ->  Abs (  1588,     0)
+	  8: Rel (  -226,     0)  ->  Abs (  1362,     0)
+	  9: Rel (  -450,     0)  ->  Abs (   912,     0)
+	 10: Rel (     0,   913)  ->  Abs (   912,   913)
+	 11: Rel (  -499,     0)  ->  Abs (   413,   913)
+	 12: Rel (     0,  -529)  ->  Abs (   413,   384)
+	 13: Rel (     0,  -175)  ->  Abs (   413,   209)
+	 14: Rel (   -39,  -144)  ->  Abs (   374,    65)
+	 15: Rel (  -111,   -71)  ->  Abs (   263,    -6)
+	 16: Rel (  -104,     0)  ->  Abs (   159,    -6)
+	 17: Rel (   -29,     0)  ->  Abs (   130,    -6)
+	 18: Rel (  -111,     6)  ->  Abs (    19,     0)
+	 19: Rel (     0,   147)  ->  Abs (    19,   147)
+	 20: Rel (    71,   -10)  ->  Abs (    90,   137)
+	 21: Rel (    40,     0)  ->  Abs (   130,   137)
+	 22: Rel (    63,     0)  ->  Abs (   193,   137)
+	 23: Rel (    40,    78)  ->  Abs (   233,   215)
+	 24: Rel (     0,   147)  ->  Abs (   233,   362)
+	 25: Rel (     0,   700)  ->  Abs (   233,  1062)
+	 26: Rel (   859,  -914)  ->  Abs (  1092,   148)
+	 27: Rel (   189,     0)  ->  Abs (  1281,   148)
+	 28: Rel (   172,     0)  ->  Abs (  1453,   148)
+	 29: Rel (   146,    83)  ->  Abs (  1599,   231)
+	 30: Rel (     0,    90)  ->  Abs (  1599,   321)
+	 31: Rel (     0,    70)  ->  Abs (  1599,   391)
+	 32: Rel (  -107,   107)  ->  Abs (  1492,   498)
+	 33: Rel (  -186,     0)  ->  Abs (  1306,   498)
+	 34: Rel (  -214,     0)  ->  Abs (  1092,   498)
+
+	Glyph 643: off = 0x0001DBF8, len = 366
+	  numberOfContours:	2
+	  xMin:			131
+	  yMin:			0
+	  xMax:			1593
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  18
+	  1:  27
+
+	  Length of Instructions:	278
+	00000: NPUSHB      (40):    21     3    21     5     2     1    15    43    26    10 
+	                            10     8    17    14     6    19    43    11     8    10 
+	                            17     8    37     0    27    18    18    19    28    16 
+	                            16     2    85    19    20    13    13     2    85    19 
+	00042: PUSHW[1]            -14 
+	00045: NPUSHB      (11):    12    12     6    85    19    10    13    13     6    85 
+	                            19 
+	00058: PUSHW[1]            -12 
+	00061: NPUSHB      (21):    15    15     6    85    19    25    16    16     6    85 
+	                            15    19    47    19     2    19    19    12    23    36 
+	                             4 
+	00084: PUSHW[1]             -8 
+	00087: PUSHB[5]             11    11     6    85     4 
+	00093: PUSHW[1]            -28 
+	00096: PUSHB[5]             12    12     6    85     4 
+	00102: PUSHW[1]            -12 
+	00105: PUSHB[5]             15    15     6    85     4 
+	00111: PUSHW[1]            -64 
+	00114: NPUSHB      (17):    36    37    52    48     4     1     0     4    32     4 
+	                             2     4    49   223    29     1    29 
+	00133: PUSHW[1]            -64 
+	00136: NPUSHB      (11):    30    35    52    48    29     1    29    14    11    37 
+	                            12 
+	00149: PUSHW[1]             -8 
+	00152: NPUSHB      (17):    16    16     2    85    12     4    11    12     2    85 
+	                            12     4    12    12     6    85    12 
+	00171: PUSHW[1]             -4 
+	00174: PUSHB[5]             13    13     6    85    12 
+	00180: PUSHW[1]            -12 
+	00183: PUSHB[5]             15    15     6    85    12 
+	00189: PUSHW[1]            -12 
+	00192: PUSHB[5]             16    16     6    85    12 
+	00198: PUSHW[1]            -64 
+	00201: NPUSHB      (18):    51    54    52   240    12     1     0    12    32    12 
+	                           208    12   224    12     4    12    78    28 
+	00221: SRP0       
+	00222: MIRP[srp0,nmd,rd,2] 
+	00223: DELTAP1    
+	00224: DELTAP2    
+	00225: CALL       
+	00226: CALL       
+	00227: CALL       
+	00228: CALL       
+	00229: CALL       
+	00230: CALL       
+	00231: CALL       
+	00232: MIRP[srp0,md,rd,1] 
+	00233: ALIGNRP    
+	00234: SRP0       
+	00235: DELTAP2    
+	00236: CALL       
+	00237: DELTAP1    
+	00238: MIRP[srp0,nmd,rd,2] 
+	00239: DELTAP1    
+	00240: DELTAP1    
+	00241: CALL       
+	00242: CALL       
+	00243: CALL       
+	00244: CALL       
+	00245: MIRP[nrp0,md,rd,1] 
+	00246: SRP2       
+	00247: IP         
+	00248: MDAP[rd]   
+	00249: DELTAP1    
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+	00253: CALL       
+	00254: CALL       
+	00255: CALL       
+	00256: ALIGNRP    
+	00257: SRP2       
+	00258: IP         
+	00259: IP         
+	00260: MIRP[srp0,md,rd,1] 
+	00261: ALIGNRP    
+	00262: SVTCA[y-axis] 
+	00263: MIAP[rd+ci] 
+	00264: ALIGNRP    
+	00265: MIRP[nrp0,md,rd,1] 
+	00266: MIAP[rd+ci] 
+	00267: ALIGNRP    
+	00268: SRP2       
+	00269: IP         
+	00270: MDAP[rd]   
+	00271: ALIGNRP    
+	00272: MIRP[srp0,md,rd,1] 
+	00273: ALIGNRP    
+	00274: IUP[y]     
+	00275: IUP[x]     
+	00276: SVTCA[x-axis] 
+	00277: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                               On
+	  9:        XDual                         On
+	 10:  YDual                               On
+	 11:        XDual                         On
+	 12:  YDual                       X-Short On
+	 13:        XDual                         On
+	 14:  YDual XDual                 X-Short On
+	 15:        XDual                         On
+	 16:  YDual                               On
+	 17:        XDual                         On
+	 18:  YDual XDual                 X-Short On
+	 19:        XDual                         On
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   901,   620)  ->  Abs (   901,   620)
+	  1: Rel (   229,     0)  ->  Abs (  1130,   620)
+	  2: Rel (   222,     0)  ->  Abs (  1352,   620)
+	  3: Rel (   241,  -166)  ->  Abs (  1593,   454)
+	  4: Rel (     0,  -145)  ->  Abs (  1593,   309)
+	  5: Rel (     0,  -129)  ->  Abs (  1593,   180)
+	  6: Rel (  -202,  -180)  ->  Abs (  1391,     0)
+	  7: Rel (  -220,     0)  ->  Abs (  1171,     0)
+	  8: Rel (  -450,     0)  ->  Abs (   721,     0)
+	  9: Rel (     0,   471)  ->  Abs (   721,   471)
+	 10: Rel (  -410,     0)  ->  Abs (   311,   471)
+	 11: Rel (     0,  -471)  ->  Abs (   311,     0)
+	 12: Rel (  -180,     0)  ->  Abs (   131,     0)
+	 13: Rel (     0,  1062)  ->  Abs (   131,  1062)
+	 14: Rel (   180,     0)  ->  Abs (   311,  1062)
+	 15: Rel (     0,  -442)  ->  Abs (   311,   620)
+	 16: Rel (   410,     0)  ->  Abs (   721,   620)
+	 17: Rel (     0,   442)  ->  Abs (   721,  1062)
+	 18: Rel (   180,     0)  ->  Abs (   901,  1062)
+	 19: Rel (     0,  -921)  ->  Abs (   901,   141)
+	 20: Rel (   189,     0)  ->  Abs (  1090,   141)
+	 21: Rel (   173,     0)  ->  Abs (  1263,   141)
+	 22: Rel (   144,    79)  ->  Abs (  1407,   220)
+	 23: Rel (     0,    84)  ->  Abs (  1407,   304)
+	 24: Rel (     0,    66)  ->  Abs (  1407,   370)
+	 25: Rel (  -107,   101)  ->  Abs (  1300,   471)
+	 26: Rel (  -186,     0)  ->  Abs (  1114,   471)
+	 27: Rel (  -213,     0)  ->  Abs (   901,   471)
+
+	Glyph 644: off = 0x0001DD66, len = 372
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1000
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  27
+
+	  Length of Instructions:	286
+	00000: NPUSHB      (18):     3    12    20    12    37     8    53     8    70     8 
+	                             5   122    18   138    18     2     4    27 
+	00020: PUSHW[1]            -64 
+	00023: NPUSHB      (50):    30    43    52    27   212     5    26    26    10     1 
+	                             0    19    28    10     7    15    24    10     4    32 
+	                            27     1    27    16    37    29    64    11    11     2 
+	                            85    29    64    16    16     2    85    13    40    16 
+	                            16     2    85    13    20    14    14     2    85    13 
+	00075: PUSHW[1]            -20 
+	00078: NPUSHB      (17):    13    13     2    85    13     4    12    12     2    85 
+	                            13    26    11    11     2    85    13 
+	00097: PUSHW[1]            -10 
+	00100: NPUSHB      (30):    11    13     6    85    13    10    15    15     6    85 
+	                            13    22    16    16     6    85    13    64    51    54 
+	                            52   255    13     1   192    13     1    13    78    29 
+	00132: PUSHW[1]            -64 
+	00135: NPUSHB      (24):    52    54    52   176    29   240    29     2   112    29 
+	                           160    29   176    29   255    29     4    29     7     2 
+	                            23    37     1    24 
+	00161: PUSHW[1]             -6 
+	00164: PUSHB[5]             16    16     2    85    24 
+	00170: PUSHW[1]             -6 
+	00173: NPUSHB      (23):    14    14     2    85    24     4    12    12     2    85 
+	                            24     8    11    11     2    85    24     6    11    11 
+	                             6    85    24 
+	00198: PUSHW[1]             -6 
+	00201: PUSHB[5]             15    15     6    85    24 
+	00207: PUSHW[1]            -64 
+	00210: NPUSHB      (18):    51    54    52   240    24     1     0    24    32    24 
+	                           208    24   224    24     4    24    78    28 
+	00230: SRP0       
+	00231: MIRP[srp0,nmd,rd,2] 
+	00232: DELTAP1    
+	00233: DELTAP2    
+	00234: CALL       
+	00235: CALL       
+	00236: CALL       
+	00237: CALL       
+	00238: CALL       
+	00239: CALL       
+	00240: CALL       
+	00241: ALIGNRP    
+	00242: MIRP[srp0,md,rd,1] 
+	00243: ALIGNRP    
+	00244: ALIGNRP    
+	00245: SRP0       
+	00246: DELTAP1    
+	00247: DELTAP2    
+	00248: CALL       
+	00249: MIRP[srp0,nmd,rd,2] 
+	00250: DELTAP1    
+	00251: DELTAP2    
+	00252: CALL       
+	00253: CALL       
+	00254: CALL       
+	00255: CALL       
+	00256: CALL       
+	00257: CALL       
+	00258: CALL       
+	00259: CALL       
+	00260: CALL       
+	00261: CALL       
+	00262: CALL       
+	00263: MIRP[nrp0,md,rd,1] 
+	00264: MDAP[rd]   
+	00265: DELTAP1    
+	00266: MDAP[rd]   
+	00267: SVTCA[y-axis] 
+	00268: MIAP[rd+ci] 
+	00269: ALIGNRP    
+	00270: MIAP[rd+ci] 
+	00271: MIRP[nrp0,md,rd,1] 
+	00272: MIAP[rd+ci] 
+	00273: SRP2       
+	00274: IP         
+	00275: MDAP[rd]   
+	00276: ALIGNRP    
+	00277: MIRP[srp0,md,rd,1] 
+	00278: CALL       
+	00279: ALIGNRP    
+	00280: IUP[y]     
+	00281: IUP[x]     
+	00282: SVTCA[x-axis] 
+	00283: DELTAP1    
+	00284: SVTCA[y-axis] 
+	00285: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual                         On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual                         On
+	 15:  YDual                       X-Short On
+	 16:        XDual                         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:                      Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual                         On
+	 24:  YDual                       X-Short On
+	 25:        XDual                         On
+	 26:  YDual                       X-Short On
+	 27:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   135,  1336)  ->  Abs (   135,  1336)
+	  1: Rel (     0,   130)  ->  Abs (   135,  1466)
+	  2: Rel (   179,     0)  ->  Abs (   314,  1466)
+	  3: Rel (     0,  -130)  ->  Abs (   314,  1336)
+	  4: Rel (   343,     0)  ->  Abs (   657,  1336)
+	  5: Rel (     0,  -119)  ->  Abs (   657,  1217)
+	  6: Rel (  -343,     0)  ->  Abs (   314,  1217)
+	  7: Rel (     0,  -278)  ->  Abs (   314,   939)
+	  8: Rel (    61,    74)  ->  Abs (   375,  1013)
+	  9: Rel (   161,    73)  ->  Abs (   536,  1086)
+	 10: Rel (    99,     0)  ->  Abs (   635,  1086)
+	 11: Rel (   175,     0)  ->  Abs (   810,  1086)
+	 12: Rel (   190,  -184)  ->  Abs (  1000,   902)
+	 13: Rel (     0,  -229)  ->  Abs (  1000,   673)
+	 14: Rel (     0,  -673)  ->  Abs (  1000,     0)
+	 15: Rel (  -180,     0)  ->  Abs (   820,     0)
+	 16: Rel (     0,   673)  ->  Abs (   820,   673)
+	 17: Rel (     0,   129)  ->  Abs (   820,   802)
+	 18: Rel (  -113,   129)  ->  Abs (   707,   931)
+	 19: Rel (  -113,     0)  ->  Abs (   594,   931)
+	 20: Rel (   -99,     0)  ->  Abs (   495,   931)
+	 21: Rel (  -181,  -138)  ->  Abs (   314,   793)
+	 22: Rel (     0,  -212)  ->  Abs (   314,   581)
+	 23: Rel (     0,  -581)  ->  Abs (   314,     0)
+	 24: Rel (  -179,     0)  ->  Abs (   135,     0)
+	 25: Rel (     0,  1217)  ->  Abs (   135,  1217)
+	 26: Rel (  -134,     0)  ->  Abs (     1,  1217)
+	 27: Rel (    -1,   119)  ->  Abs (     0,  1336)
+
+	Glyph 645: off = 0x0001DEDA, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			134
+	  yMin:			0
+	  xMax:			912
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	612
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	141
+		X BOffset:	120
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1     1    30 
+	00004: PUSHW[2]            546    41 
+	00009: SVTCA[y-axis] 
+	00010: CALL       
+
+	Glyph 646: off = 0x0001DEFE, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			33
+	  yMin:			-431
+	  xMax:			1006
+	  yMax:			1464
+
+	     0: Flags:		0x0226
+		Glyf Index:	92
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	217
+		X WOffset:	183
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    34    28    11    19    65     1     1    31 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 647: off = 0x0001DF2E, len = 366
+	  numberOfContours:	1
+	  xMin:			136
+	  yMin:			-302
+	  xMax:			995
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	318
+	00000: NPUSHB      (14):     9     6     6     2    14     7    43     4     4    11 
+	                            10     0    43     3 
+	00016: PUSHW[1]             -6 
+	00019: PUSHB[5]             10    13     2    85     3 
+	00025: PUSHW[1]             -4 
+	00028: PUSHB[5]             12    12     6    85     3 
+	00034: PUSHW[1]             -8 
+	00037: PUSHB[5]             13    13     6    85     3 
+	00043: PUSHW[1]            -16 
+	00046: NPUSHB      (23):    15    16     6    85    95     3   111     3   127     3 
+	                             3     3     3     4     8    37    13    64    11    11 
+	                             2    85    11 
+	00071: PUSHW[1]            -15 
+	00074: NPUSHB      (11):    16    16     2    85    11    22    14    14     2    85 
+	                            11 
+	00087: PUSHW[1]            -16 
+	00090: NPUSHB      (17):    13    13     2    85    11    10    12    12     2    85 
+	                            11    38    11    11     2    85    11 
+	00109: PUSHW[1]             -9 
+	00112: PUSHB[5]             11    11     6    85    11 
+	00118: PUSHW[1]            -11 
+	00121: PUSHB[5]             12    12     6    85    11 
+	00127: PUSHW[1]             -8 
+	00130: NPUSHB      (30):    13    13     6    85    11     8    15    15     6    85 
+	                            11    22    16    16     6    85    11    64    51    54 
+	                            52   255    11     1   255    11     1    11    78    13 
+	00162: PUSHW[1]            -64 
+	00165: NPUSHB      (21):    52    54    52   176    13   240    13     2   112    13 
+	                           160    13   176    13   192    13     4    13     7    37 
+	                             4 
+	00188: PUSHW[1]            -10 
+	00191: PUSHB[5]             17    17     2    85     4 
+	00197: PUSHW[1]             -6 
+	00200: PUSHB[5]             16    16     2    85     4 
+	00206: PUSHW[1]             -6 
+	00209: NPUSHB      (23):    14    14     2    85     4     4    12    12     2    85 
+	                             4    10    11    11     2    85     4     4    11    11 
+	                             6    85     4 
+	00234: PUSHW[1]             -8 
+	00237: PUSHB[5]             15    15     6    85     4 
+	00243: PUSHW[1]            -64 
+	00246: NPUSHB      (18):    51    54    52   240     4     1     0     4    32     4 
+	                           208     4   224     4     4     4    78    12 
+	00266: SRP0       
+	00267: MIRP[srp0,nmd,rd,2] 
+	00268: DELTAP1    
+	00269: DELTAP2    
+	00270: CALL       
+	00271: CALL       
+	00272: CALL       
+	00273: CALL       
+	00274: CALL       
+	00275: CALL       
+	00276: CALL       
+	00277: CALL       
+	00278: MIRP[nrp0,md,rd,1] 
+	00279: SRP0       
+	00280: DELTAP1    
+	00281: DELTAP2    
+	00282: CALL       
+	00283: MIRP[srp0,nmd,rd,2] 
+	00284: DELTAP1    
+	00285: DELTAP2    
+	00286: CALL       
+	00287: CALL       
+	00288: CALL       
+	00289: CALL       
+	00290: CALL       
+	00291: CALL       
+	00292: CALL       
+	00293: CALL       
+	00294: CALL       
+	00295: CALL       
+	00296: CALL       
+	00297: CALL       
+	00298: MIRP[nrp0,md,rd,1] 
+	00299: SRP2       
+	00300: IP         
+	00301: MDAP[rd]   
+	00302: DELTAP1    
+	00303: CALL       
+	00304: CALL       
+	00305: CALL       
+	00306: CALL       
+	00307: MIRP[nrp0,md,rd,1] 
+	00308: SVTCA[y-axis] 
+	00309: MIAP[rd+ci] 
+	00310: ALIGNRP    
+	00311: SRP0       
+	00312: MIRP[nrp0,md,rd,1] 
+	00313: MIAP[rd+ci] 
+	00314: MIAP[rd+ci] 
+	00315: ALIGNRP    
+	00316: IUP[y]     
+	00317: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:  YDual                               On
+	  9:        XDual                         On
+	 10:  YDual XDual                 X-Short On
+	 11:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   640,     0)  ->  Abs (   640,     0)
+	  1: Rel (     0,  -302)  ->  Abs (   640,  -302)
+	  2: Rel (  -149,     0)  ->  Abs (   491,  -302)
+	  3: Rel (     0,   302)  ->  Abs (   491,     0)
+	  4: Rel (  -355,     0)  ->  Abs (   136,     0)
+	  5: Rel (     0,  1062)  ->  Abs (   136,  1062)
+	  6: Rel (   180,     0)  ->  Abs (   316,  1062)
+	  7: Rel (     0,  -914)  ->  Abs (   316,   148)
+	  8: Rel (   499,     0)  ->  Abs (   815,   148)
+	  9: Rel (     0,   914)  ->  Abs (   815,  1062)
+	 10: Rel (   180,     0)  ->  Abs (   995,  1062)
+	 11: Rel (     0, -1062)  ->  Abs (   995,     0)
+
+	Glyph 648: off = 0x0001E09C, len = 178
+	  numberOfContours:	1
+	  xMin:			161
+	  yMin:			0
+	  xMax:			940
+	  yMax:			1872
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	140
+	00000: NPUSHB      (46):     1     4    30     7     2     6     8     0    30     3 
+	                            22    15    15     2    85     3    18    12    12     2 
+	                            85     3     9    11    11     6    85     3    19    12 
+	                            13     6    85     3    30    15    15     6    85     3 
+	                             3     8     9     5    32     6 
+	00048: PUSHW[1]            -28 
+	00051: PUSHB[5]             16    16     2    85     6 
+	00057: PUSHW[1]            -12 
+	00060: PUSHB[5]             15    15     2    85     6 
+	00066: PUSHW[1]             -6 
+	00069: PUSHB[5]             13    13     2    85     6 
+	00075: PUSHW[1]             -2 
+	00078: PUSHB[5]             12    12     2    85     6 
+	00084: PUSHW[1]             -3 
+	00087: PUSHB[5]             15    16     6    85     6 
+	00093: PUSHW[1]             -1 
+	00096: PUSHB[5]             13    13     6    85     6 
+	00102: PUSHW[1]             -6 
+	00105: PUSHB[7]             12    12     6    85     6    57     8 
+	00113: SRP0       
+	00114: MIRP[srp0,nmd,rd,2] 
+	00115: CALL       
+	00116: CALL       
+	00117: CALL       
+	00118: CALL       
+	00119: CALL       
+	00120: CALL       
+	00121: CALL       
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: SRP1       
+	00124: SRP2       
+	00125: IP         
+	00126: MDAP[rd]   
+	00127: CALL       
+	00128: CALL       
+	00129: CALL       
+	00130: CALL       
+	00131: CALL       
+	00132: MIRP[nrp0,md,rd,1] 
+	00133: SVTCA[y-axis] 
+	00134: MIAP[rd+ci] 
+	00135: MIAP[rd+ci] 
+	00136: MIRP[nrp0,md,rd,1] 
+	00137: MDAP[rd]   
+	00138: IUP[y]     
+	00139: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   767,  1466)  ->  Abs (   767,  1466)
+	  1: Rel (     0,   406)  ->  Abs (   767,  1872)
+	  2: Rel (   173,     0)  ->  Abs (   940,  1872)
+	  3: Rel (     0,  -579)  ->  Abs (   940,  1293)
+	  4: Rel (  -585,     0)  ->  Abs (   355,  1293)
+	  5: Rel (     0, -1293)  ->  Abs (   355,     0)
+	  6: Rel (  -194,     0)  ->  Abs (   161,     0)
+	  7: Rel (     0,  1466)  ->  Abs (   161,  1466)
+
+	Glyph 649: off = 0x0001E14E, len = 190
+	  numberOfContours:	1
+	  xMin:			136
+	  yMin:			0
+	  xMax:			780
+	  yMax:			1468
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	151
+	00000: NPUSHB      (35):     1     0     4    43     7     6     6    10     0    37 
+	                             3    22    15    15     2    85     3    12    12    12 
+	                             2    85     3    10    11    11     6    85     3    20 
+	                            12    13     6    85     3 
+	00037: PUSHW[1]            -25 
+	00040: PUSHB[5]             15    15     6    85     3 
+	00046: PUSHW[1]            -13 
+	00049: NPUSHB      (14):    16    16     6    85    32     3     1     3     3     8 
+	                             9     5    37     6 
+	00065: PUSHW[1]            -10 
+	00068: PUSHB[5]             17    17     2    85     6 
+	00074: PUSHW[1]             -6 
+	00077: NPUSHB      (23):    14    14     2    85     6     4    12    12     2    85 
+	                             6    10    11    11     2    85     6     2    12    12 
+	                             6    85     6 
+	00102: PUSHW[1]             -4 
+	00105: PUSHB[5]             15    15     6    85     6 
+	00111: PUSHW[1]            -13 
+	00114: PUSHB[7]             16    16     6    85     6    69     8 
+	00122: SRP0       
+	00123: MIRP[srp0,nmd,rd,2] 
+	00124: CALL       
+	00125: CALL       
+	00126: CALL       
+	00127: CALL       
+	00128: CALL       
+	00129: CALL       
+	00130: CALL       
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: SRP1       
+	00133: SRP2       
+	00134: IP         
+	00135: MDAP[rd]   
+	00136: DELTAP1    
+	00137: CALL       
+	00138: CALL       
+	00139: CALL       
+	00140: CALL       
+	00141: CALL       
+	00142: CALL       
+	00143: MIRP[nrp0,md,rd,1] 
+	00144: SVTCA[y-axis] 
+	00145: MIAP[rd+ci] 
+	00146: MIAP[rd+ci] 
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: MIAP[rd+ci] 
+	00149: IUP[y]     
+	00150: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   631,  1062)  ->  Abs (   631,  1062)
+	  1: Rel (     0,   406)  ->  Abs (   631,  1468)
+	  2: Rel (   149,     0)  ->  Abs (   780,  1468)
+	  3: Rel (     0,  -555)  ->  Abs (   780,   913)
+	  4: Rel (  -464,     0)  ->  Abs (   316,   913)
+	  5: Rel (     0,  -913)  ->  Abs (   316,     0)
+	  6: Rel (  -180,     0)  ->  Abs (   136,     0)
+	  7: Rel (     0,  1062)  ->  Abs (   136,  1062)
+
+	Glyph 650: off = 0x0001E20C, len = 46
+	  numberOfContours:	1
+	  xMin:			65
+	  yMin:			458
+	  xMax:			1984
+	  yMax:			603
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	20
+	00000: NPUSHB       (9):     1    30     0     2   171     5     0   171     4 
+	00011: SRP0       
+	00012: MIRP[nrp0,nmd,rd,2] 
+	00013: SRP0       
+	00014: MIRP[nrp0,nmd,rd,2] 
+	00015: SVTCA[y-axis] 
+	00016: MDAP[rd]   
+	00017: MIRP[nrp0,md,rd,1] 
+	00018: IUP[y]     
+	00019: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (    65,   458)  ->  Abs (    65,   458)
+	  1: Rel (     0,   145)  ->  Abs (    65,   603)
+	  2: Rel (  1919,     0)  ->  Abs (  1984,   603)
+	  3: Rel (     0,  -145)  ->  Abs (  1984,   458)
+
+	Glyph 651: off = 0x0001E23A, len = 438
+	  numberOfContours:	4
+	  xMin:			160
+	  yMin:			0
+	  xMax:			2112
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  9
+	  1:  21
+	  2:  33
+	  3:  37
+
+	  Length of Instructions:	314
+	00000: NPUSHB      (24):    39     1    40     6    47    39   138     1   134     6 
+	                           170    11   163    14   170    21     8     7    24     9 
+	                            22     2    85     2 
+	00026: PUSHW[1]            -24 
+	00029: NPUSHB      (37):     9    22     2    85    55     2   102     2   117     2 
+	                           133     2   143     7     5    56     8     1     7     6 
+	                             6   186     2     1    20     2     2     1     2     7 
+	                             6     3     1     2    31    42    13 
+	00068: PUSHW[1]            358 
+	00071: NPUSHB      (40):    25    42    19    77    35    34    53    36    37   117 
+	                             8     8     6     8     1     6     2     8     2     3 
+	                            32     5    22    16    16     2    85     5     4    15 
+	                            15     2    85     5    10    13    13     2    85     5 
+	00113: PUSHW[1]            -32 
+	00116: NPUSHB      (16):    12    12     2    85     5     5     8    10    36   197 
+	                            16    37   197    22    94    10 
+	00134: PUSHW[1]            354 
+	00137: NPUSHB      (23):    28    94    16     6    11    12     2    85    16    62 
+	                            39     7     8    32     9     9     0    28    16    16 
+	                             2    85     0 
+	00162: PUSHW[1]            -12 
+	00165: PUSHB[5]             15    15     2    85     0 
+	00171: PUSHW[1]            -14 
+	00174: PUSHB[5]             13    13     2    85     0 
+	00180: PUSHW[1]             -6 
+	00183: PUSHB[7]             11    12     2    85     0   249    38 
+	00191: SRP0       
+	00192: MIRP[srp0,nmd,rd,2] 
+	00193: CALL       
+	00194: CALL       
+	00195: CALL       
+	00196: CALL       
+	00197: ALIGNRP    
+	00198: SRP0       
+	00199: MIRP[srp0,md,rd,1] 
+	00200: ALIGNRP    
+	00201: SRP0       
+	00202: MIRP[srp0,nmd,rd,2] 
+	00203: CALL       
+	00204: MIRP[nrp0,md,rd,1] 
+	00205: MIRP[srp0,md,rd,1] 
+	00206: MIRP[nrp0,md,rd,1] 
+	00207: MIRP[nrp0,nmd,rd,0] 
+	00208: SRP0       
+	00209: MIRP[nrp0,nmd,rd,0] 
+	00210: SRP1       
+	00211: SRP2       
+	00212: IP         
+	00213: MDAP[rd]   
+	00214: CALL       
+	00215: CALL       
+	00216: CALL       
+	00217: CALL       
+	00218: MIRP[srp0,md,rd,1] 
+	00219: ALIGNRP    
+	00220: SRP1       
+	00221: SRP2       
+	00222: IP         
+	00223: IP         
+	00224: SVTCA[y-axis] 
+	00225: MIAP[rd+ci] 
+	00226: ALIGNRP    
+	00227: SRP0       
+	00228: MIRP[srp0,nmd,rd,0] 
+	00229: ALIGNRP    
+	00230: MIRP[srp0,md,rd,1] 
+	00231: ALIGNRP    
+	00232: MIRP[srp0,md,rd,2] 
+	00233: MIRP[nrp0,md,rd,1] 
+	00234: MIRP[srp0,md,rd,1] 
+	00235: MIRP[nrp0,md,rd,1] 
+	00236: MIAP[rd+ci] 
+	00237: ALIGNRP    
+	00238: SRP2       
+	00239: IP         
+	00240: IP         
+	00241: SDPVTL[1]  
+	00242: SFVTCA[x-axis] 
+	00243: MDAP[nrd]  
+	00244: CALL       
+	00245: SDPVTL[1]  
+	00246: RDTG       
+	00247: MDRP[nrp0,nmd,rd,0] 
+	00248: IUP[y]     
+	00249: IUP[x]     
+	00250: RTG        
+	00251: RS         
+	00252: JROF       
+	00253: NPUSHB      (42):    11    33    26    18    28    31     1    24    20    22 
+	                            31     0    30    14    28    31     1    32    12    22 
+	                            31     0    27    17    25    31     0    23    21    25 
+	                            31     0    29    15    31    31     1    33    11    31 
+	                            31     1 
+	00297: SVTCA[y-axis] 
+	00298: CALL       
+	00299: CALL       
+	00300: CALL       
+	00301: CALL       
+	00302: SVTCA[x-axis] 
+	00303: CALL       
+	00304: CALL       
+	00305: CALL       
+	00306: CALL       
+	00307: FLIPRGON   
+	00308: SVTCA[y-axis] 
+	00309: DELTAP1    
+	00310: CALL       
+	00311: CALL       
+	00312: SVTCA[x-axis] 
+	00313: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:                                      On
+	  3:        XDual                         On
+	  4:  YDual XDual                 X-Short On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:                                      On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+	 10:                                      On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short         Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:                      Y-Short X-Short Off
+	 34:                              X-Short On
+	 35:  YDual                               On
+	 36:        XDual         Y-Short         On
+	 37:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   160,  1466)  ->  Abs (   160,  1466)
+	  1: Rel (   195,     0)  ->  Abs (   355,  1466)
+	  2: Rel (   717, -1136)  ->  Abs (  1072,   330)
+	  3: Rel (     0,  1136)  ->  Abs (  1072,  1466)
+	  4: Rel (   185,     0)  ->  Abs (  1257,  1466)
+	  5: Rel (     0, -1466)  ->  Abs (  1257,     0)
+	  6: Rel (  -194,     0)  ->  Abs (  1063,     0)
+	  7: Rel (  -721,  1131)  ->  Abs (   342,  1131)
+	  8: Rel (     0, -1131)  ->  Abs (   342,     0)
+	  9: Rel (  -182,     0)  ->  Abs (   160,     0)
+	 10: Rel (  1231,   785)  ->  Abs (  1391,   785)
+	 11: Rel (     0,   177)  ->  Abs (  1391,   962)
+	 12: Rel (   199,   210)  ->  Abs (  1590,  1172)
+	 13: Rel (   164,     0)  ->  Abs (  1754,  1172)
+	 14: Rel (   163,     0)  ->  Abs (  1917,  1172)
+	 15: Rel (   195,  -216)  ->  Abs (  2112,   956)
+	 16: Rel (     0,  -183)  ->  Abs (  2112,   773)
+	 17: Rel (     0,  -185)  ->  Abs (  2112,   588)
+	 18: Rel (  -201,  -216)  ->  Abs (  1911,   372)
+	 19: Rel (  -165,     0)  ->  Abs (  1746,   372)
+	 20: Rel (  -142,     0)  ->  Abs (  1604,   372)
+	 21: Rel (  -213,   195)  ->  Abs (  1391,   567)
+	 22: Rel (   175,   212)  ->  Abs (  1566,   779)
+	 23: Rel (     0,  -134)  ->  Abs (  1566,   645)
+	 24: Rel (   107,  -136)  ->  Abs (  1673,   509)
+	 25: Rel (    78,     0)  ->  Abs (  1751,   509)
+	 26: Rel (    73,     0)  ->  Abs (  1824,   509)
+	 27: Rel (   113,   131)  ->  Abs (  1937,   640)
+	 28: Rel (     0,   133)  ->  Abs (  1937,   773)
+	 29: Rel (     0,   140)  ->  Abs (  1937,   913)
+	 30: Rel (  -117,   125)  ->  Abs (  1820,  1038)
+	 31: Rel (   -70,     0)  ->  Abs (  1750,  1038)
+	 32: Rel (   -75,     0)  ->  Abs (  1675,  1038)
+	 33: Rel (  -109,  -130)  ->  Abs (  1566,   908)
+	 34: Rel (  -156,  -642)  ->  Abs (  1410,   266)
+	 35: Rel (   681,     0)  ->  Abs (  2091,   266)
+	 36: Rel (     0,  -148)  ->  Abs (  2091,   118)
+	 37: Rel (  -681,     0)  ->  Abs (  1410,   118)
+
+	Glyph 652: off = 0x0001E3F0, len = 248
+	  numberOfContours:	1
+	  xMin:			45
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	200
+	00000: NPUSHB      (22):    15    13    47    13     2    10    10     2    10     8 
+	                             0     4    43     5     6    11    37     9     0    37 
+	                             2     9 
+	00024: PUSHW[1]            -24 
+	00027: PUSHB[5]             16    16     2    85     9 
+	00033: PUSHW[1]             -8 
+	00036: PUSHB[5]             13    13     2    85     9 
+	00042: PUSHW[1]            -14 
+	00045: PUSHB[5]             12    12     2    85     9 
+	00051: PUSHW[1]            -19 
+	00054: PUSHB[5]             12    12     6    85     9 
+	00060: PUSHW[1]             -4 
+	00063: NPUSHB      (20):    13    13     6    85     9    10    15    15     6    85 
+	                             9    38    16    16     6    85     9    66     6     2 
+	00085: PUSHW[1]            -24 
+	00088: PUSHB[5]             15    16     2    85     2 
+	00094: PUSHW[1]            -12 
+	00097: NPUSHB      (11):    13    13     2    85     2    10    11    11     2    85 
+	                             2 
+	00110: PUSHW[1]            -18 
+	00113: NPUSHB      (11):    11    11     6    85     2     8    12    12     6    85 
+	                             2 
+	00126: PUSHW[1]             -8 
+	00129: PUSHB[5]             13    13     6    85     2 
+	00135: PUSHW[1]            -22 
+	00138: PUSHB[5]             15    15     6    85     2 
+	00144: PUSHW[1]            -32 
+	00147: NPUSHB      (13):    16    16     6    85     2    66     5     6   196    13 
+	                             5   124    12 
+	00162: SRP0       
+	00163: MIRP[nrp0,nmd,rd,2] 
+	00164: SRP0       
+	00165: MIRP[nrp0,nmd,rd,2] 
+	00166: SRP0       
+	00167: MIRP[nrp0,nmd,rd,0] 
+	00168: CALL       
+	00169: CALL       
+	00170: CALL       
+	00171: CALL       
+	00172: CALL       
+	00173: CALL       
+	00174: CALL       
+	00175: CALL       
+	00176: SRP0       
+	00177: MIRP[nrp0,nmd,rd,0] 
+	00178: CALL       
+	00179: CALL       
+	00180: CALL       
+	00181: CALL       
+	00182: CALL       
+	00183: CALL       
+	00184: CALL       
+	00185: SRP0       
+	00186: MIRP[nrp0,md,rd,1] 
+	00187: SRP0       
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: SVTCA[y-axis] 
+	00190: MIAP[rd+ci] 
+	00191: MIRP[srp0,md,rd,1] 
+	00192: ALIGNRP    
+	00193: ALIGNRP    
+	00194: MIAP[rd+ci] 
+	00195: MIAP[rd+ci] 
+	00196: IUP[y]     
+	00197: IUP[x]     
+	00198: SVTCA[x-axis] 
+	00199: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual         Y-Short         On
+	  8:  YDual                       X-Short On
+	  9:        XDual                         On
+	 10:  YDual                       X-Short On
+	 11:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   505,   916)  ->  Abs (   505,   916)
+	  1: Rel (     0,  -916)  ->  Abs (   505,     0)
+	  2: Rel (  -180,     0)  ->  Abs (   325,     0)
+	  3: Rel (     0,   916)  ->  Abs (   325,   916)
+	  4: Rel (  -280,     0)  ->  Abs (    45,   916)
+	  5: Rel (     0,   146)  ->  Abs (    45,  1062)
+	  6: Rel (  1324,     0)  ->  Abs (  1369,  1062)
+	  7: Rel (     0,  -146)  ->  Abs (  1369,   916)
+	  8: Rel (  -242,     0)  ->  Abs (  1127,   916)
+	  9: Rel (     0,  -916)  ->  Abs (  1127,     0)
+	 10: Rel (  -180,     0)  ->  Abs (   947,     0)
+	 11: Rel (     0,   916)  ->  Abs (   947,   916)
+
+	Glyph 653: off = 0x0001E4E8, len = 142
+	  numberOfContours:	2
+	  xMin:			257
+	  yMin:			-430
+	  xMax:			425
+	  yMax:			-50
+
+	EndPoints
+	---------
+	  0:  14
+	  1:  29
+
+	  Length of Instructions:	49
+	00000: PUSHW[2]              0   723 
+	00005: PUSHB[8]              8    64    13    23    52     8     8    15 
+	00014: PUSHW[6]            723    23   708    19     4   723 
+	00027: PUSHB[7]             27    12    64    26    27    52    12 
+	00035: MDAP[rd]   
+	00036: CALL       
+	00037: ALIGNRP    
+	00038: MIRP[srp0,md,rd,1] 
+	00039: ALIGNRP    
+	00040: SVTCA[y-axis] 
+	00041: MIAP[rd+ci] 
+	00042: MIRP[srp0,md,rd,1] 
+	00043: SHP[rp2,zp1] 
+	00044: MDAP[rd]   
+	00045: CALL       
+	00046: MIRP[srp0,md,rd,1] 
+	00047: IUP[y]     
+	00048: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short Off
+	 22:                      Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   341,   -50)  ->  Abs (   341,   -50)
+	  1: Rel (    24,     0)  ->  Abs (   365,   -50)
+	  2: Rel (    38,   -22)  ->  Abs (   403,   -72)
+	  3: Rel (    22,   -38)  ->  Abs (   425,  -110)
+	  4: Rel (     0,   -24)  ->  Abs (   425,  -134)
+	  5: Rel (     0,   -24)  ->  Abs (   425,  -158)
+	  6: Rel (   -22,   -37)  ->  Abs (   403,  -195)
+	  7: Rel (   -38,   -23)  ->  Abs (   365,  -218)
+	  8: Rel (   -24,     0)  ->  Abs (   341,  -218)
+	  9: Rel (   -24,     0)  ->  Abs (   317,  -218)
+	 10: Rel (   -38,    23)  ->  Abs (   279,  -195)
+	 11: Rel (   -22,    37)  ->  Abs (   257,  -158)
+	 12: Rel (     0,    24)  ->  Abs (   257,  -134)
+	 13: Rel (     0,    31)  ->  Abs (   257,  -103)
+	 14: Rel (    43,    53)  ->  Abs (   300,   -50)
+	 15: Rel (    41,  -212)  ->  Abs (   341,  -262)
+	 16: Rel (    24,     0)  ->  Abs (   365,  -262)
+	 17: Rel (    38,   -22)  ->  Abs (   403,  -284)
+	 18: Rel (    22,   -38)  ->  Abs (   425,  -322)
+	 19: Rel (     0,   -24)  ->  Abs (   425,  -346)
+	 20: Rel (     0,   -24)  ->  Abs (   425,  -370)
+	 21: Rel (   -22,   -37)  ->  Abs (   403,  -407)
+	 22: Rel (   -38,   -23)  ->  Abs (   365,  -430)
+	 23: Rel (   -24,     0)  ->  Abs (   341,  -430)
+	 24: Rel (   -24,     0)  ->  Abs (   317,  -430)
+	 25: Rel (   -38,    23)  ->  Abs (   279,  -407)
+	 26: Rel (   -22,    37)  ->  Abs (   257,  -370)
+	 27: Rel (     0,    24)  ->  Abs (   257,  -346)
+	 28: Rel (     0,    36)  ->  Abs (   257,  -310)
+	 29: Rel (    48,    48)  ->  Abs (   305,  -262)
+
+	Glyph 654: off = 0x0001E576, len = 300
+	  numberOfContours:	5
+	  xMin:			30
+	  yMin:			-430
+	  xMax:			652
+	  yMax:			-50
+
+	EndPoints
+	---------
+	  0:  14
+	  1:  29
+	  2:  42
+	  3:  55
+	  4:  70
+
+	  Length of Instructions:	99
+	00000: PUSHB[3]             30    15     0 
+	00004: PUSHW[1]            723 
+	00007: NPUSHB      (11):    37    23     8    64    13    23    52     8     8    56 
+	                            43 
+	00020: PUSHW[6]            723    64    49   708    46   723 
+	00033: PUSHB[3]             53    53    12 
+	00037: PUSHW[1]            723 
+	00040: PUSHB[5]              4   229    27    60    33 
+	00046: PUSHW[1]            723 
+	00049: PUSHB[4]             68    40   229    19 
+	00054: PUSHW[1]            723 
+	00057: NPUSHB       (9):    27    64    26    27    52    27    27    72    71 
+	00068: SRP1       
+	00069: SRP2       
+	00070: IP         
+	00071: MDAP[rd]   
+	00072: CALL       
+	00073: MIRP[srp0,md,rd,1] 
+	00074: MIRP[srp0,md,rd,2] 
+	00075: ALIGNRP    
+	00076: MIRP[srp0,md,rd,1] 
+	00077: ALIGNRP    
+	00078: SRP0       
+	00079: MIRP[srp0,md,rd,2] 
+	00080: MIRP[srp0,md,rd,1] 
+	00081: IP         
+	00082: MDAP[rd]   
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: SVTCA[y-axis] 
+	00085: MIAP[rd+ci] 
+	00086: ALIGNRP    
+	00087: MIRP[srp0,md,rd,1] 
+	00088: ALIGNRP    
+	00089: SHP[rp2,zp1] 
+	00090: MDAP[rd]   
+	00091: CALL       
+	00092: ALIGNRP    
+	00093: ALIGNRP    
+	00094: MIRP[srp0,md,rd,1] 
+	00095: ALIGNRP    
+	00096: ALIGNRP    
+	00097: IUP[y]     
+	00098: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual         Y-Short X-Short On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual                               On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short Off
+	 22:                      Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual                               On
+	 31:  YDual XDual                 X-Short Off
+	 32:        XDual         Y-Short X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:                      Y-Short X-Short Off
+	 36:                      Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:                      Y-Short         On
+	 44:  YDual XDual                 X-Short Off
+	 45:        XDual         Y-Short X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual         Y-Short         Off
+	 48:                      Y-Short X-Short Off
+	 49:  YDual                       X-Short On
+	 50:  YDual                       X-Short Off
+	 51:  YDual               Y-Short X-Short Off
+	 52:  YDual               Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short         On
+	 54:  YDual XDual         Y-Short         Off
+	 55:  YDual XDual         Y-Short X-Short Off
+	 56:  YDual                               On
+	 57:  YDual XDual                 X-Short Off
+	 58:        XDual         Y-Short X-Short Off
+	 59:        XDual         Y-Short X-Short Off
+	 60:        XDual         Y-Short         On
+	 61:        XDual         Y-Short         Off
+	 62:                      Y-Short X-Short Off
+	 63:                      Y-Short X-Short Off
+	 64:  YDual                       X-Short On
+	 65:  YDual                       X-Short Off
+	 66:  YDual               Y-Short X-Short Off
+	 67:  YDual               Y-Short X-Short Off
+	 68:  YDual XDual         Y-Short         On
+	 69:  YDual XDual         Y-Short         Off
+	 70:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   114,   -50)  ->  Abs (   114,   -50)
+	  1: Rel (    24,     0)  ->  Abs (   138,   -50)
+	  2: Rel (    37,   -22)  ->  Abs (   175,   -72)
+	  3: Rel (    23,   -38)  ->  Abs (   198,  -110)
+	  4: Rel (     0,   -24)  ->  Abs (   198,  -134)
+	  5: Rel (     0,   -24)  ->  Abs (   198,  -158)
+	  6: Rel (   -23,   -37)  ->  Abs (   175,  -195)
+	  7: Rel (   -37,   -23)  ->  Abs (   138,  -218)
+	  8: Rel (   -24,     0)  ->  Abs (   114,  -218)
+	  9: Rel (   -24,     0)  ->  Abs (    90,  -218)
+	 10: Rel (   -38,    23)  ->  Abs (    52,  -195)
+	 11: Rel (   -22,    37)  ->  Abs (    30,  -158)
+	 12: Rel (     0,    24)  ->  Abs (    30,  -134)
+	 13: Rel (     0,    31)  ->  Abs (    30,  -103)
+	 14: Rel (    43,    53)  ->  Abs (    73,   -50)
+	 15: Rel (   268,     0)  ->  Abs (   341,   -50)
+	 16: Rel (    22,     0)  ->  Abs (   363,   -50)
+	 17: Rel (    37,   -19)  ->  Abs (   400,   -69)
+	 18: Rel (    25,   -39)  ->  Abs (   425,  -108)
+	 19: Rel (     0,   -26)  ->  Abs (   425,  -134)
+	 20: Rel (     0,   -24)  ->  Abs (   425,  -158)
+	 21: Rel (   -22,   -37)  ->  Abs (   403,  -195)
+	 22: Rel (   -38,   -23)  ->  Abs (   365,  -218)
+	 23: Rel (   -24,     0)  ->  Abs (   341,  -218)
+	 24: Rel (   -24,     0)  ->  Abs (   317,  -218)
+	 25: Rel (   -38,    23)  ->  Abs (   279,  -195)
+	 26: Rel (   -22,    37)  ->  Abs (   257,  -158)
+	 27: Rel (     0,    24)  ->  Abs (   257,  -134)
+	 28: Rel (     0,    36)  ->  Abs (   257,   -98)
+	 29: Rel (    48,    48)  ->  Abs (   305,   -50)
+	 30: Rel (   263,     0)  ->  Abs (   568,   -50)
+	 31: Rel (    41,     0)  ->  Abs (   609,   -50)
+	 32: Rel (    43,   -53)  ->  Abs (   652,  -103)
+	 33: Rel (     0,   -31)  ->  Abs (   652,  -134)
+	 34: Rel (     0,   -24)  ->  Abs (   652,  -158)
+	 35: Rel (   -22,   -37)  ->  Abs (   630,  -195)
+	 36: Rel (   -38,   -23)  ->  Abs (   592,  -218)
+	 37: Rel (   -24,     0)  ->  Abs (   568,  -218)
+	 38: Rel (   -35,     0)  ->  Abs (   533,  -218)
+	 39: Rel (   -49,    49)  ->  Abs (   484,  -169)
+	 40: Rel (     0,    35)  ->  Abs (   484,  -134)
+	 41: Rel (     0,    36)  ->  Abs (   484,   -98)
+	 42: Rel (    48,    48)  ->  Abs (   532,   -50)
+	 43: Rel (  -306,  -212)  ->  Abs (   226,  -262)
+	 44: Rel (    31,     0)  ->  Abs (   257,  -262)
+	 45: Rel (    53,   -43)  ->  Abs (   310,  -305)
+	 46: Rel (     0,   -41)  ->  Abs (   310,  -346)
+	 47: Rel (     0,   -35)  ->  Abs (   310,  -381)
+	 48: Rel (   -48,   -49)  ->  Abs (   262,  -430)
+	 49: Rel (   -36,     0)  ->  Abs (   226,  -430)
+	 50: Rel (   -24,     0)  ->  Abs (   202,  -430)
+	 51: Rel (   -37,    23)  ->  Abs (   165,  -407)
+	 52: Rel (   -23,    37)  ->  Abs (   142,  -370)
+	 53: Rel (     0,    24)  ->  Abs (   142,  -346)
+	 54: Rel (     0,    31)  ->  Abs (   142,  -315)
+	 55: Rel (    44,    53)  ->  Abs (   186,  -262)
+	 56: Rel (   382,     0)  ->  Abs (   568,  -262)
+	 57: Rel (    22,     0)  ->  Abs (   590,  -262)
+	 58: Rel (    37,   -19)  ->  Abs (   627,  -281)
+	 59: Rel (    25,   -39)  ->  Abs (   652,  -320)
+	 60: Rel (     0,   -26)  ->  Abs (   652,  -346)
+	 61: Rel (     0,   -24)  ->  Abs (   652,  -370)
+	 62: Rel (   -22,   -37)  ->  Abs (   630,  -407)
+	 63: Rel (   -38,   -23)  ->  Abs (   592,  -430)
+	 64: Rel (   -24,     0)  ->  Abs (   568,  -430)
+	 65: Rel (   -21,     0)  ->  Abs (   547,  -430)
+	 66: Rel (   -37,    20)  ->  Abs (   510,  -410)
+	 67: Rel (   -26,    38)  ->  Abs (   484,  -372)
+	 68: Rel (     0,    26)  ->  Abs (   484,  -346)
+	 69: Rel (     0,    36)  ->  Abs (   484,  -310)
+	 70: Rel (    48,    48)  ->  Abs (   532,  -262)
+
+	Glyph 655: off = 0x0001E6A2, len = 180
+	  numberOfContours:	3
+	  xMin:			49
+	  yMin:			-430
+	  xMax:			633
+	  yMax:			-50
+
+	EndPoints
+	---------
+	  0:  12
+	  1:  16
+	  2:  31
+
+	  Length of Instructions:	80
+	00000: PUSHB[5]             16   100    14    14     0 
+	00006: PUSHW[1]            723 
+	00009: PUSHB[8]              6    64    13    23    52     6     6    17 
+	00018: PUSHW[3]            723    24   708 
+	00025: PUSHB[7]             14    14    15    85     9    21     3 
+	00033: PUSHW[1]            723 
+	00036: NPUSHB      (16):    28    95     9     1   127     9     1     9    64    23 
+	                            25    52     9     9    33    32 
+	00054: SRP1       
+	00055: SRP2       
+	00056: IP         
+	00057: MDAP[rd]   
+	00058: CALL       
+	00059: DELTAP1    
+	00060: DELTAP3    
+	00061: ALIGNRP    
+	00062: MIRP[srp0,md,rd,1] 
+	00063: ALIGNRP    
+	00064: SRP0       
+	00065: MIRP[srp0,md,rd,2] 
+	00066: SHP[rp2,zp1] 
+	00067: MDAP[rd]   
+	00068: SVTCA[y-axis] 
+	00069: MIAP[rd+ci] 
+	00070: MIRP[srp0,md,rd,1] 
+	00071: SHP[rp2,zp1] 
+	00072: MDAP[rd]   
+	00073: CALL       
+	00074: MIRP[srp0,md,rd,1] 
+	00075: SHP[rp2,zp1] 
+	00076: MDAP[rd]   
+	00077: MIRP[nrp0,md,rd,1] 
+	00078: IUP[y]     
+	00079: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:                      Y-Short         On
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual                               On
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   549,   -50)  ->  Abs (   549,   -50)
+	  1: Rel (    40,     0)  ->  Abs (   589,   -50)
+	  2: Rel (    44,   -53)  ->  Abs (   633,  -103)
+	  3: Rel (     0,   -31)  ->  Abs (   633,  -134)
+	  4: Rel (     0,   -31)  ->  Abs (   633,  -165)
+	  5: Rel (   -44,   -53)  ->  Abs (   589,  -218)
+	  6: Rel (   -40,     0)  ->  Abs (   549,  -218)
+	  7: Rel (   -36,     0)  ->  Abs (   513,  -218)
+	  8: Rel (   -48,    49)  ->  Abs (   465,  -169)
+	  9: Rel (     0,    35)  ->  Abs (   465,  -134)
+	 10: Rel (     0,    24)  ->  Abs (   465,  -110)
+	 11: Rel (    22,    38)  ->  Abs (   487,   -72)
+	 12: Rel (    38,    22)  ->  Abs (   525,   -50)
+	 13: Rel (  -476,  -114)  ->  Abs (    49,  -164)
+	 14: Rel (     0,   104)  ->  Abs (    49,   -60)
+	 15: Rel (   336,     0)  ->  Abs (   385,   -60)
+	 16: Rel (     0,  -104)  ->  Abs (   385,  -164)
+	 17: Rel (   164,   -98)  ->  Abs (   549,  -262)
+	 18: Rel (    21,     0)  ->  Abs (   570,  -262)
+	 19: Rel (    37,   -19)  ->  Abs (   607,  -281)
+	 20: Rel (    26,   -39)  ->  Abs (   633,  -320)
+	 21: Rel (     0,   -26)  ->  Abs (   633,  -346)
+	 22: Rel (     0,   -31)  ->  Abs (   633,  -377)
+	 23: Rel (   -44,   -53)  ->  Abs (   589,  -430)
+	 24: Rel (   -40,     0)  ->  Abs (   549,  -430)
+	 25: Rel (   -22,     0)  ->  Abs (   527,  -430)
+	 26: Rel (   -37,    20)  ->  Abs (   490,  -410)
+	 27: Rel (   -25,    38)  ->  Abs (   465,  -372)
+	 28: Rel (     0,    26)  ->  Abs (   465,  -346)
+	 29: Rel (     0,    22)  ->  Abs (   465,  -324)
+	 30: Rel (    19,    37)  ->  Abs (   484,  -287)
+	 31: Rel (    39,    25)  ->  Abs (   523,  -262)
+
+	Glyph 656: off = 0x0001E756, len = 218
+	  numberOfContours:	3
+	  xMin:			49
+	  yMin:			-430
+	  xMax:			633
+	  yMax:			-50
+
+	EndPoints
+	---------
+	  0:  12
+	  1:  20
+	  2:  35
+
+	  Length of Instructions:	108
+	00000: NPUSHB      (12):    32    20     1    20    20    28    14    19   100    16 
+	                            16     0 
+	00014: PUSHW[1]            723 
+	00017: PUSHB[8]              6    64    13    23    52     6     6    21 
+	00026: PUSHW[6]            723    28   708    25     3   723 
+	00039: NPUSHB      (34):    32     9    85    18    15   117    14   117    19   117 
+	                            47    18    63    18     2    18    64    32    34    52 
+	                            18    64    45    47    52    18    64    63    67    52 
+	                            18    18    37    36 
+	00075: SRP1       
+	00076: SRP2       
+	00077: IP         
+	00078: MDAP[rd]   
+	00079: CALL       
+	00080: CALL       
+	00081: CALL       
+	00082: DELTAP2    
+	00083: MIRP[srp0,nmd,rd,0] 
+	00084: MIRP[srp0,md,rd,1] 
+	00085: MIRP[nrp0,nmd,rd,0] 
+	00086: SRP0       
+	00087: MIRP[srp0,md,rd,2] 
+	00088: ALIGNRP    
+	00089: MIRP[srp0,md,rd,1] 
+	00090: ALIGNRP    
+	00091: SVTCA[y-axis] 
+	00092: MIAP[rd+ci] 
+	00093: MIRP[srp0,md,rd,1] 
+	00094: SHP[rp2,zp1] 
+	00095: MDAP[rd]   
+	00096: CALL       
+	00097: MIRP[srp0,md,rd,1] 
+	00098: SHP[rp2,zp1] 
+	00099: MDAP[rd]   
+	00100: MIRP[srp0,md,rd,1] 
+	00101: ALIGNRP    
+	00102: SRP1       
+	00103: IP         
+	00104: MDAP[rd]   
+	00105: DELTAP2    
+	00106: IUP[y]     
+	00107: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:                                      On
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual                       X-Short On
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual                               On
+	 18:        XDual         Y-Short         On
+	 19:  YDual                       X-Short On
+	 20:        XDual         Y-Short         On
+	 21:  YDual               Y-Short         On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:                      Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   549,   -50)  ->  Abs (   549,   -50)
+	  1: Rel (    40,     0)  ->  Abs (   589,   -50)
+	  2: Rel (    44,   -53)  ->  Abs (   633,  -103)
+	  3: Rel (     0,   -31)  ->  Abs (   633,  -134)
+	  4: Rel (     0,   -31)  ->  Abs (   633,  -165)
+	  5: Rel (   -44,   -53)  ->  Abs (   589,  -218)
+	  6: Rel (   -40,     0)  ->  Abs (   549,  -218)
+	  7: Rel (   -36,     0)  ->  Abs (   513,  -218)
+	  8: Rel (   -48,    49)  ->  Abs (   465,  -169)
+	  9: Rel (     0,    35)  ->  Abs (   465,  -134)
+	 10: Rel (     0,    24)  ->  Abs (   465,  -110)
+	 11: Rel (    22,    38)  ->  Abs (   487,   -72)
+	 12: Rel (    38,    22)  ->  Abs (   525,   -50)
+	 13: Rel (  -363,  -262)  ->  Abs (   162,  -312)
+	 14: Rel (     0,   148)  ->  Abs (   162,  -164)
+	 15: Rel (  -113,     0)  ->  Abs (    49,  -164)
+	 16: Rel (     0,   104)  ->  Abs (    49,   -60)
+	 17: Rel (   336,     0)  ->  Abs (   385,   -60)
+	 18: Rel (     0,  -104)  ->  Abs (   385,  -164)
+	 19: Rel (  -107,     0)  ->  Abs (   278,  -164)
+	 20: Rel (     0,  -148)  ->  Abs (   278,  -312)
+	 21: Rel (   271,    50)  ->  Abs (   549,  -262)
+	 22: Rel (    21,     0)  ->  Abs (   570,  -262)
+	 23: Rel (    37,   -19)  ->  Abs (   607,  -281)
+	 24: Rel (    26,   -39)  ->  Abs (   633,  -320)
+	 25: Rel (     0,   -26)  ->  Abs (   633,  -346)
+	 26: Rel (     0,   -31)  ->  Abs (   633,  -377)
+	 27: Rel (   -44,   -53)  ->  Abs (   589,  -430)
+	 28: Rel (   -40,     0)  ->  Abs (   549,  -430)
+	 29: Rel (   -22,     0)  ->  Abs (   527,  -430)
+	 30: Rel (   -37,    20)  ->  Abs (   490,  -410)
+	 31: Rel (   -25,    38)  ->  Abs (   465,  -372)
+	 32: Rel (     0,    26)  ->  Abs (   465,  -346)
+	 33: Rel (     0,    22)  ->  Abs (   465,  -324)
+	 34: Rel (    19,    37)  ->  Abs (   484,  -287)
+	 35: Rel (    39,    25)  ->  Abs (   523,  -262)
+
+	Glyph 657: off = 0x0001E830, len = 74
+	  numberOfContours:	1
+	  xMin:			257
+	  yMin:			-369
+	  xMax:			425
+	  yMax:			-201
+
+	EndPoints
+	---------
+	  0:  14
+
+	  Length of Instructions:	20
+	00000: PUSHW[6]              0   723     8     4   723    12 
+	00013: MDAP[rd]   
+	00014: MIRP[nrp0,md,rd,1] 
+	00015: SVTCA[y-axis] 
+	00016: MDAP[rd]   
+	00017: MIRP[srp0,md,rd,1] 
+	00018: IUP[y]     
+	00019: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   341,  -201)  ->  Abs (   341,  -201)
+	  1: Rel (    24,     0)  ->  Abs (   365,  -201)
+	  2: Rel (    38,   -22)  ->  Abs (   403,  -223)
+	  3: Rel (    22,   -38)  ->  Abs (   425,  -261)
+	  4: Rel (     0,   -24)  ->  Abs (   425,  -285)
+	  5: Rel (     0,   -24)  ->  Abs (   425,  -309)
+	  6: Rel (   -22,   -37)  ->  Abs (   403,  -346)
+	  7: Rel (   -38,   -23)  ->  Abs (   365,  -369)
+	  8: Rel (   -24,     0)  ->  Abs (   341,  -369)
+	  9: Rel (   -24,     0)  ->  Abs (   317,  -369)
+	 10: Rel (   -38,    23)  ->  Abs (   279,  -346)
+	 11: Rel (   -22,    37)  ->  Abs (   257,  -309)
+	 12: Rel (     0,    24)  ->  Abs (   257,  -285)
+	 13: Rel (     0,    31)  ->  Abs (   257,  -254)
+	 14: Rel (    43,    53)  ->  Abs (   300,  -201)
+
+	Glyph 658: off = 0x0001E87A, len = 126
+	  numberOfContours:	2
+	  xMin:			126
+	  yMin:			-369
+	  xMax:			556
+	  yMax:			-201
+
+	EndPoints
+	---------
+	  0:  12
+	  1:  27
+
+	  Length of Instructions:	39
+	00000: PUSHB[2]             13     0 
+	00003: PUSHW[1]            723 
+	00006: PUSHB[3]             20     6    16 
+	00010: PUSHW[1]            723 
+	00013: PUSHB[3]             24   106    10 
+	00017: PUSHW[1]            723 
+	00020: PUSHB[4]              3     3    29    28 
+	00025: SRP1       
+	00026: SRP2       
+	00027: IP         
+	00028: MDAP[rd]   
+	00029: MIRP[nrp0,md,rd,1] 
+	00030: MIRP[srp0,md,rd,2] 
+	00031: MIRP[nrp0,md,rd,1] 
+	00032: SVTCA[y-axis] 
+	00033: MDAP[rd]   
+	00034: ALIGNRP    
+	00035: MIRP[srp0,md,rd,1] 
+	00036: ALIGNRP    
+	00037: IUP[y]     
+	00038: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual         Y-Short X-Short On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual                               On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   210,  -201)  ->  Abs (   210,  -201)
+	  1: Rel (    30,     0)  ->  Abs (   240,  -201)
+	  2: Rel (    54,   -43)  ->  Abs (   294,  -244)
+	  3: Rel (     0,   -41)  ->  Abs (   294,  -285)
+	  4: Rel (     0,   -35)  ->  Abs (   294,  -320)
+	  5: Rel (   -48,   -49)  ->  Abs (   246,  -369)
+	  6: Rel (   -36,     0)  ->  Abs (   210,  -369)
+	  7: Rel (   -24,     0)  ->  Abs (   186,  -369)
+	  8: Rel (   -38,    23)  ->  Abs (   148,  -346)
+	  9: Rel (   -22,    37)  ->  Abs (   126,  -309)
+	 10: Rel (     0,    24)  ->  Abs (   126,  -285)
+	 11: Rel (     0,    36)  ->  Abs (   126,  -249)
+	 12: Rel (    48,    48)  ->  Abs (   174,  -201)
+	 13: Rel (   298,     0)  ->  Abs (   472,  -201)
+	 14: Rel (    40,     0)  ->  Abs (   512,  -201)
+	 15: Rel (    44,   -53)  ->  Abs (   556,  -254)
+	 16: Rel (     0,   -31)  ->  Abs (   556,  -285)
+	 17: Rel (     0,   -24)  ->  Abs (   556,  -309)
+	 18: Rel (   -22,   -37)  ->  Abs (   534,  -346)
+	 19: Rel (   -38,   -23)  ->  Abs (   496,  -369)
+	 20: Rel (   -24,     0)  ->  Abs (   472,  -369)
+	 21: Rel (   -22,     0)  ->  Abs (   450,  -369)
+	 22: Rel (   -37,    20)  ->  Abs (   413,  -349)
+	 23: Rel (   -25,    38)  ->  Abs (   388,  -311)
+	 24: Rel (     0,    26)  ->  Abs (   388,  -285)
+	 25: Rel (     0,    22)  ->  Abs (   388,  -263)
+	 26: Rel (    19,    37)  ->  Abs (   407,  -226)
+	 27: Rel (    39,    25)  ->  Abs (   446,  -201)
+
+	Glyph 659: off = 0x0001E8F8, len = 198
+	  numberOfContours:	3
+	  xMin:			126
+	  yMin:			-430
+	  xMax:			556
+	  yMax:			-50
+
+	EndPoints
+	---------
+	  0:  12
+	  1:  27
+	  2:  42
+
+	  Length of Instructions:	72
+	00000: PUSHB[2]             13     0 
+	00003: PUSHW[1]            723 
+	00006: NPUSHB       (9):    20     6    64    13    23    52     6     6    28 
+	00017: PUSHW[5]            723    36   708    32   723 
+	00028: PUSHB[5]             40    40     3    10    16 
+	00034: PUSHW[1]            723 
+	00037: PUSHB[3]             24   106    10 
+	00041: PUSHW[1]            723 
+	00044: PUSHB[4]              3     3    44    43 
+	00049: SRP1       
+	00050: SRP2       
+	00051: IP         
+	00052: MDAP[rd]   
+	00053: MIRP[nrp0,md,rd,1] 
+	00054: MIRP[srp0,md,rd,2] 
+	00055: MIRP[nrp0,md,rd,1] 
+	00056: SRP1       
+	00057: SRP2       
+	00058: IP         
+	00059: MDAP[rd]   
+	00060: MIRP[nrp0,md,rd,1] 
+	00061: SVTCA[y-axis] 
+	00062: MIAP[rd+ci] 
+	00063: MIRP[srp0,md,rd,1] 
+	00064: SHP[rp2,zp1] 
+	00065: MDAP[rd]   
+	00066: CALL       
+	00067: ALIGNRP    
+	00068: MIRP[srp0,md,rd,1] 
+	00069: ALIGNRP    
+	00070: IUP[y]     
+	00071: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual         Y-Short X-Short On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual                               On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:                      Y-Short X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   210,   -50)  ->  Abs (   210,   -50)
+	  1: Rel (    30,     0)  ->  Abs (   240,   -50)
+	  2: Rel (    54,   -43)  ->  Abs (   294,   -93)
+	  3: Rel (     0,   -41)  ->  Abs (   294,  -134)
+	  4: Rel (     0,   -35)  ->  Abs (   294,  -169)
+	  5: Rel (   -48,   -49)  ->  Abs (   246,  -218)
+	  6: Rel (   -36,     0)  ->  Abs (   210,  -218)
+	  7: Rel (   -24,     0)  ->  Abs (   186,  -218)
+	  8: Rel (   -38,    23)  ->  Abs (   148,  -195)
+	  9: Rel (   -22,    37)  ->  Abs (   126,  -158)
+	 10: Rel (     0,    24)  ->  Abs (   126,  -134)
+	 11: Rel (     0,    36)  ->  Abs (   126,   -98)
+	 12: Rel (    48,    48)  ->  Abs (   174,   -50)
+	 13: Rel (   298,     0)  ->  Abs (   472,   -50)
+	 14: Rel (    40,     0)  ->  Abs (   512,   -50)
+	 15: Rel (    44,   -53)  ->  Abs (   556,  -103)
+	 16: Rel (     0,   -31)  ->  Abs (   556,  -134)
+	 17: Rel (     0,   -24)  ->  Abs (   556,  -158)
+	 18: Rel (   -22,   -37)  ->  Abs (   534,  -195)
+	 19: Rel (   -38,   -23)  ->  Abs (   496,  -218)
+	 20: Rel (   -24,     0)  ->  Abs (   472,  -218)
+	 21: Rel (   -22,     0)  ->  Abs (   450,  -218)
+	 22: Rel (   -37,    20)  ->  Abs (   413,  -198)
+	 23: Rel (   -25,    38)  ->  Abs (   388,  -160)
+	 24: Rel (     0,    26)  ->  Abs (   388,  -134)
+	 25: Rel (     0,    22)  ->  Abs (   388,  -112)
+	 26: Rel (    19,    37)  ->  Abs (   407,   -75)
+	 27: Rel (    39,    25)  ->  Abs (   446,   -50)
+	 28: Rel (  -105,  -212)  ->  Abs (   341,  -262)
+	 29: Rel (    24,     0)  ->  Abs (   365,  -262)
+	 30: Rel (    38,   -22)  ->  Abs (   403,  -284)
+	 31: Rel (    22,   -38)  ->  Abs (   425,  -322)
+	 32: Rel (     0,   -24)  ->  Abs (   425,  -346)
+	 33: Rel (     0,   -24)  ->  Abs (   425,  -370)
+	 34: Rel (   -22,   -37)  ->  Abs (   403,  -407)
+	 35: Rel (   -38,   -23)  ->  Abs (   365,  -430)
+	 36: Rel (   -24,     0)  ->  Abs (   341,  -430)
+	 37: Rel (   -24,     0)  ->  Abs (   317,  -430)
+	 38: Rel (   -38,    23)  ->  Abs (   279,  -407)
+	 39: Rel (   -22,    37)  ->  Abs (   257,  -370)
+	 40: Rel (     0,    24)  ->  Abs (   257,  -346)
+	 41: Rel (     0,    36)  ->  Abs (   257,  -310)
+	 42: Rel (    48,    48)  ->  Abs (   305,  -262)
+
+	Glyph 660: off = 0x0001E9BE, len = 40
+	  numberOfContours:	1
+	  xMin:			140
+	  yMin:			-315
+	  xMax:			542
+	  yMax:			-211
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	15
+	00000: PUSHB[6]              1   100     0     2     2     1 
+	00007: MDAP[rd]   
+	00008: SHP[rp1,zp0] 
+	00009: MDAP[rd]   
+	00010: SVTCA[y-axis] 
+	00011: MDAP[rd]   
+	00012: MIRP[nrp0,md,rd,1] 
+	00013: IUP[y]     
+	00014: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   140,  -315)  ->  Abs (   140,  -315)
+	  1: Rel (     0,   104)  ->  Abs (   140,  -211)
+	  2: Rel (   402,     0)  ->  Abs (   542,  -211)
+	  3: Rel (     0,  -104)  ->  Abs (   542,  -315)
+
+	Glyph 661: off = 0x0001E9E6, len = 74
+	  numberOfContours:	1
+	  xMin:			140
+	  yMin:			-430
+	  xMax:			542
+	  yMax:			-158
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	40
+	00000: PUSHB[6]              3   100     6     2   159     0 
+	00007: PUSHW[1]            708 
+	00010: NPUSHB      (11):     5     5     6   117     1     2     2     1     1     9 
+	                             8 
+	00023: SRP1       
+	00024: SRP2       
+	00025: IP         
+	00026: MDAP[rd]   
+	00027: SHP[rp1,zp0] 
+	00028: MDAP[rd]   
+	00029: SRP0       
+	00030: MIRP[srp0,md,rd,1] 
+	00031: SHP[rp2,zp1] 
+	00032: MDAP[rd]   
+	00033: SVTCA[y-axis] 
+	00034: MIAP[rd+ci] 
+	00035: MIRP[srp0,nmd,rd,0] 
+	00036: ALIGNRP    
+	00037: MIRP[nrp0,md,rd,1] 
+	00038: IUP[y]     
+	00039: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                       X-Short On
+	  7:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   284,  -430)  ->  Abs (   284,  -430)
+	  1: Rel (     0,   168)  ->  Abs (   284,  -262)
+	  2: Rel (  -144,     0)  ->  Abs (   140,  -262)
+	  3: Rel (     0,   104)  ->  Abs (   140,  -158)
+	  4: Rel (   402,     0)  ->  Abs (   542,  -158)
+	  5: Rel (     0,  -104)  ->  Abs (   542,  -262)
+	  6: Rel (  -142,     0)  ->  Abs (   400,  -262)
+	  7: Rel (     0,  -168)  ->  Abs (   400,  -430)
+
+	Glyph 662: off = 0x0001EA30, len = 86
+	  numberOfContours:	1
+	  xMin:			257
+	  yMin:			1182
+	  xMax:			425
+	  yMax:			1350
+
+	EndPoints
+	---------
+	  0:  14
+
+	  Length of Instructions:	32
+	00000: PUSHW[2]              0   723 
+	00005: PUSHB[5]             16     8     1     8     4 
+	00011: PUSHW[1]            723 
+	00014: PUSHB[8]             31    12    47    12   175    12     3    12 
+	00023: MDAP[rd]   
+	00024: DELTAP2    
+	00025: MIRP[nrp0,md,rd,1] 
+	00026: SVTCA[y-axis] 
+	00027: MDAP[rd]   
+	00028: DELTAP1    
+	00029: MIRP[nrp0,md,rd,1] 
+	00030: IUP[y]     
+	00031: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   341,  1350)  ->  Abs (   341,  1350)
+	  1: Rel (    22,     0)  ->  Abs (   363,  1350)
+	  2: Rel (    37,   -20)  ->  Abs (   400,  1330)
+	  3: Rel (    25,   -38)  ->  Abs (   425,  1292)
+	  4: Rel (     0,   -26)  ->  Abs (   425,  1266)
+	  5: Rel (     0,   -24)  ->  Abs (   425,  1242)
+	  6: Rel (   -22,   -38)  ->  Abs (   403,  1204)
+	  7: Rel (   -38,   -22)  ->  Abs (   365,  1182)
+	  8: Rel (   -24,     0)  ->  Abs (   341,  1182)
+	  9: Rel (   -24,     0)  ->  Abs (   317,  1182)
+	 10: Rel (   -37,    22)  ->  Abs (   280,  1204)
+	 11: Rel (   -23,    38)  ->  Abs (   257,  1242)
+	 12: Rel (     0,    24)  ->  Abs (   257,  1266)
+	 13: Rel (     0,    35)  ->  Abs (   257,  1301)
+	 14: Rel (    48,    49)  ->  Abs (   305,  1350)
+
+	Glyph 663: off = 0x0001EA86, len = 236
+	  numberOfContours:	3
+	  xMin:			16
+	  yMin:			-431
+	  xMax:			666
+	  yMax:			-51
+
+	EndPoints
+	---------
+	  0:  15
+	  1:  30
+	  2:  45
+
+	  Length of Instructions:	98
+	00000: PUSHW[2]             16   723 
+	00005: PUSHB[4]             24    24    39     0 
+	00010: PUSHW[1]            723 
+	00013: NPUSHB      (18):     8    64    53    57    52     8    64    33    37    52 
+	                             8    64     9    23    52     8     8    31 
+	00033: PUSHW[3]            723    39   -64 
+	00040: PUSHB[4]              9    12    52    39 
+	00045: PUSHW[3]            708    35   723 
+	00052: PUSHB[3]             43   171    20 
+	00056: PUSHW[4]            723    28    12   723 
+	00065: PUSHB[6]              4   171    28    28    47    46 
+	00072: SRP1       
+	00073: SRP2       
+	00074: IP         
+	00075: MDAP[rd]   
+	00076: MIRP[srp0,nmd,rd,2] 
+	00077: MIRP[nrp0,md,rd,1] 
+	00078: SRP0       
+	00079: MIRP[srp0,md,rd,1] 
+	00080: MIRP[srp0,nmd,rd,2] 
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SVTCA[y-axis] 
+	00083: MIAP[rd+ci] 
+	00084: CALL       
+	00085: MIRP[srp0,md,rd,1] 
+	00086: SHP[rp2,zp1] 
+	00087: MDAP[rd]   
+	00088: CALL       
+	00089: CALL       
+	00090: CALL       
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: SRP2       
+	00093: IP         
+	00094: MDAP[rd]   
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: IUP[y]     
+	00097: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual         Y-Short X-Short On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:                      Y-Short         On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:                      Y-Short         On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:                      Y-Short X-Short Off
+	 38:                      Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   100,   -51)  ->  Abs (   100,   -51)
+	  1: Rel (    22,     0)  ->  Abs (   122,   -51)
+	  2: Rel (    37,   -19)  ->  Abs (   159,   -70)
+	  3: Rel (    25,   -39)  ->  Abs (   184,  -109)
+	  4: Rel (     0,   -26)  ->  Abs (   184,  -135)
+	  5: Rel (     0,   -24)  ->  Abs (   184,  -159)
+	  6: Rel (   -22,   -37)  ->  Abs (   162,  -196)
+	  7: Rel (   -38,   -23)  ->  Abs (   124,  -219)
+	  8: Rel (   -24,     0)  ->  Abs (   100,  -219)
+	  9: Rel (   -24,     0)  ->  Abs (    76,  -219)
+	 10: Rel (   -37,    23)  ->  Abs (    39,  -196)
+	 11: Rel (   -23,    37)  ->  Abs (    16,  -159)
+	 12: Rel (     0,    24)  ->  Abs (    16,  -135)
+	 13: Rel (     0,    22)  ->  Abs (    16,  -113)
+	 14: Rel (    20,    37)  ->  Abs (    36,   -76)
+	 15: Rel (    38,    25)  ->  Abs (    74,   -51)
+	 16: Rel (   267,  -108)  ->  Abs (   341,  -159)
+	 17: Rel (    24,     0)  ->  Abs (   365,  -159)
+	 18: Rel (    38,   -22)  ->  Abs (   403,  -181)
+	 19: Rel (    22,   -38)  ->  Abs (   425,  -219)
+	 20: Rel (     0,   -24)  ->  Abs (   425,  -243)
+	 21: Rel (     0,   -24)  ->  Abs (   425,  -267)
+	 22: Rel (   -22,   -37)  ->  Abs (   403,  -304)
+	 23: Rel (   -38,   -23)  ->  Abs (   365,  -327)
+	 24: Rel (   -24,     0)  ->  Abs (   341,  -327)
+	 25: Rel (   -24,     0)  ->  Abs (   317,  -327)
+	 26: Rel (   -38,    23)  ->  Abs (   279,  -304)
+	 27: Rel (   -22,    37)  ->  Abs (   257,  -267)
+	 28: Rel (     0,    24)  ->  Abs (   257,  -243)
+	 29: Rel (     0,    36)  ->  Abs (   257,  -207)
+	 30: Rel (    48,    48)  ->  Abs (   305,  -159)
+	 31: Rel (   277,  -104)  ->  Abs (   582,  -263)
+	 32: Rel (    24,     0)  ->  Abs (   606,  -263)
+	 33: Rel (    37,   -22)  ->  Abs (   643,  -285)
+	 34: Rel (    23,   -38)  ->  Abs (   666,  -323)
+	 35: Rel (     0,   -24)  ->  Abs (   666,  -347)
+	 36: Rel (     0,   -24)  ->  Abs (   666,  -371)
+	 37: Rel (   -23,   -37)  ->  Abs (   643,  -408)
+	 38: Rel (   -37,   -23)  ->  Abs (   606,  -431)
+	 39: Rel (   -24,     0)  ->  Abs (   582,  -431)
+	 40: Rel (   -24,     0)  ->  Abs (   558,  -431)
+	 41: Rel (   -38,    23)  ->  Abs (   520,  -408)
+	 42: Rel (   -22,    37)  ->  Abs (   498,  -371)
+	 43: Rel (     0,    24)  ->  Abs (   498,  -347)
+	 44: Rel (     0,    36)  ->  Abs (   498,  -311)
+	 45: Rel (    48,    48)  ->  Abs (   546,  -263)
+
+	Glyph 664: off = 0x0001EB72, len = 74
+	  numberOfContours:	1
+	  xMin:			257
+	  yMin:			494
+	  xMax:			425
+	  yMax:			662
+
+	EndPoints
+	---------
+	  0:  12
+
+	  Length of Instructions:	26
+	00000: PUSHW[5]              6   723     0     3   723 
+	00011: PUSHB[6]             31    10    47    10     2    10 
+	00018: MDAP[rd]   
+	00019: DELTAP2    
+	00020: MIRP[nrp0,md,rd,1] 
+	00021: SVTCA[y-axis] 
+	00022: MDAP[rd]   
+	00023: MIRP[nrp0,md,rd,1] 
+	00024: IUP[y]     
+	00025: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   341,   662)  ->  Abs (   341,   662)
+	  1: Rel (    30,     0)  ->  Abs (   371,   662)
+	  2: Rel (    54,   -44)  ->  Abs (   425,   618)
+	  3: Rel (     0,   -40)  ->  Abs (   425,   578)
+	  4: Rel (     0,   -36)  ->  Abs (   425,   542)
+	  5: Rel (   -49,   -48)  ->  Abs (   376,   494)
+	  6: Rel (   -35,     0)  ->  Abs (   341,   494)
+	  7: Rel (   -24,     0)  ->  Abs (   317,   494)
+	  8: Rel (   -38,    22)  ->  Abs (   279,   516)
+	  9: Rel (   -22,    37)  ->  Abs (   257,   553)
+	 10: Rel (     0,    25)  ->  Abs (   257,   578)
+	 11: Rel (     0,    31)  ->  Abs (   257,   609)
+	 12: Rel (    43,    53)  ->  Abs (   300,   662)
+
+	Glyph 665: off = 0x0001EBBC, len = 52
+	  numberOfContours:	1
+	  xMin:			289
+	  yMin:			-431
+	  xMax:			393
+	  yMax:			-51
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	26
+	00000: PUSHW[2]              0   -64 
+	00005: PUSHB[5]             13    19    52     0     3 
+	00011: PUSHW[1]            708 
+	00014: PUSHB[3]              1   100     0 
+	00018: MDAP[rd]   
+	00019: MIRP[nrp0,md,rd,1] 
+	00020: SVTCA[y-axis] 
+	00021: MIAP[rd+ci] 
+	00022: MDAP[rd]   
+	00023: CALL       
+	00024: IUP[y]     
+	00025: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   289,   -51)  ->  Abs (   289,   -51)
+	  1: Rel (   104,     0)  ->  Abs (   393,   -51)
+	  2: Rel (     0,  -380)  ->  Abs (   393,  -431)
+	  3: Rel (  -104,     0)  ->  Abs (   289,  -431)
+
+	Glyph 666: off = 0x0001EBF0, len = 40
+	  numberOfContours:	1
+	  xMin:			125
+	  yMin:			901
+	  xMax:			659
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	14
+	00000: PUSHB[6]              0   249     1     3   238     0 
+	00007: MDAP[rd]   
+	00008: MIRP[nrp0,md,rd,1] 
+	00009: SVTCA[y-axis] 
+	00010: MDAP[rd]   
+	00011: MIRP[srp0,md,rd,1] 
+	00012: IUP[y]     
+	00013: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   125,   901)  ->  Abs (   125,   901)
+	  1: Rel (     0,   160)  ->  Abs (   125,  1061)
+	  2: Rel (   534,     0)  ->  Abs (   659,  1061)
+	  3: Rel (     0,  -160)  ->  Abs (   659,   901)
+
+	Glyph 667: off = 0x0001EC18, len = 40
+	  numberOfContours:	1
+	  xMin:			140
+	  yMin:			1251
+	  xMax:			542
+	  yMax:			1355
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	14
+	00000: PUSHB[6]              0   100     1     3   110     0 
+	00007: MDAP[rd]   
+	00008: MIRP[nrp0,md,rd,1] 
+	00009: SVTCA[y-axis] 
+	00010: MDAP[rd]   
+	00011: MIRP[srp0,md,rd,1] 
+	00012: IUP[y]     
+	00013: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   140,  1251)  ->  Abs (   140,  1251)
+	  1: Rel (     0,   104)  ->  Abs (   140,  1355)
+	  2: Rel (   402,     0)  ->  Abs (   542,  1355)
+	  3: Rel (     0,  -104)  ->  Abs (   542,  1251)
+
+	Glyph 668: off = 0x0001EC40, len = 52
+	  numberOfContours:	1
+	  xMin:			210
+	  yMin:			-20
+	  xMax:			353
+	  yMax:			1281
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	27
+	00000: PUSHB[4]              1     1     0     5 
+	00005: PUSHW[1]            712 
+	00008: PUSHB[3]              3    32     0 
+	00012: PUSHW[2]            711     4 
+	00017: SRP0       
+	00018: MIRP[srp0,nmd,rd,2] 
+	00019: MIRP[srp0,md,rd,1] 
+	00020: MIRP[nrp0,nmd,rd,2] 
+	00021: SVTCA[y-axis] 
+	00022: MDAP[rd]   
+	00023: SHP[rp1,zp0] 
+	00024: MDAP[rd]   
+	00025: IUP[y]     
+	00026: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual         Y-Short X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   210,   -20)  ->  Abs (   210,   -20)
+	  1: Rel (     0,  1301)  ->  Abs (   210,  1281)
+	  2: Rel (   143,     0)  ->  Abs (   353,  1281)
+	  3: Rel (     0, -1301)  ->  Abs (   353,   -20)
+
+	Glyph 669: off = 0x0001EC74, len = 68
+	  numberOfContours:	1
+	  xMin:			779
+	  yMin:			1182
+	  xMax:			947
+	  yMax:			1351
+
+	EndPoints
+	---------
+	  0:  12
+
+	  Length of Instructions:	20
+	00000: PUSHW[6]              7   723     0     3   723    10 
+	00013: MDAP[rd]   
+	00014: MIRP[nrp0,md,rd,1] 
+	00015: SVTCA[y-axis] 
+	00016: MDAP[rd]   
+	00017: MIRP[nrp0,md,rd,1] 
+	00018: IUP[y]     
+	00019: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   863,  1351)  ->  Abs (   863,  1351)
+	  1: Rel (    41,     0)  ->  Abs (   904,  1351)
+	  2: Rel (    43,   -53)  ->  Abs (   947,  1298)
+	  3: Rel (     0,   -32)  ->  Abs (   947,  1266)
+	  4: Rel (     0,   -22)  ->  Abs (   947,  1244)
+	  5: Rel (   -18,   -36)  ->  Abs (   929,  1208)
+	  6: Rel (   -39,   -26)  ->  Abs (   890,  1182)
+	  7: Rel (   -27,     0)  ->  Abs (   863,  1182)
+	  8: Rel (   -35,     0)  ->  Abs (   828,  1182)
+	  9: Rel (   -49,    49)  ->  Abs (   779,  1231)
+	 10: Rel (     0,    35)  ->  Abs (   779,  1266)
+	 11: Rel (     0,    41)  ->  Abs (   779,  1307)
+	 12: Rel (    54,    44)  ->  Abs (   833,  1351)
+
+	Glyph 670: off = 0x0001ECB8, len = 68
+	  numberOfContours:	1
+	  xMin:			-252
+	  yMin:			1182
+	  xMax:			-84
+	  yMax:			1351
+
+	EndPoints
+	---------
+	  0:  12
+
+	  Length of Instructions:	20
+	00000: PUSHW[6]              7   723     0    10   723     3 
+	00013: MDAP[rd]   
+	00014: MIRP[nrp0,md,rd,1] 
+	00015: SVTCA[y-axis] 
+	00016: MDAP[rd]   
+	00017: MIRP[nrp0,md,rd,1] 
+	00018: IUP[y]     
+	00019: IUP[x]     
+
+	Flags
+	-----
+	  0:                              X-Short On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:              Rep-  2 Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  -168,  1351)  ->  Abs (  -168,  1351)
+	  1: Rel (    40,     0)  ->  Abs (  -128,  1351)
+	  2: Rel (    44,   -53)  ->  Abs (   -84,  1298)
+	  3: Rel (     0,   -32)  ->  Abs (   -84,  1266)
+	  4: Rel (    -1,   -24)  ->  Abs (   -85,  1242)
+	  5: Rel (   -22,   -37)  ->  Abs (  -107,  1205)
+	  6: Rel (   -37,   -23)  ->  Abs (  -144,  1182)
+	  7: Rel (   -24,     0)  ->  Abs (  -168,  1182)
+	  8: Rel (   -36,     0)  ->  Abs (  -204,  1182)
+	  9: Rel (   -48,    49)  ->  Abs (  -252,  1231)
+	 10: Rel (     0,    35)  ->  Abs (  -252,  1266)
+	 11: Rel (     0,    41)  ->  Abs (  -252,  1307)
+	 12: Rel (    53,    44)  ->  Abs (  -199,  1351)
+
+	Glyph 671: off = 0x0001ECFC, len = 62
+	  numberOfContours:	2
+	  xMin:			185
+	  yMin:			0
+	  xMax:			390
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	26
+	00000: NPUSHB      (12):     0    60     1     5    60     4     3     7     0     7 
+	                            60     4 
+	00014: MDAP[rd]   
+	00015: MIRP[nrp0,md,rd,1] 
+	00016: ALIGNRP    
+	00017: SRP0       
+	00018: ALIGNRP    
+	00019: SVTCA[y-axis] 
+	00020: MDAP[rd]   
+	00021: MIRP[nrp0,md,rd,1] 
+	00022: MDAP[rd]   
+	00023: MIRP[nrp0,md,rd,1] 
+	00024: IUP[y]     
+	00025: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:                              X-Short On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   185,   857)  ->  Abs (   185,   857)
+	  1: Rel (     0,   205)  ->  Abs (   185,  1062)
+	  2: Rel (   205,     0)  ->  Abs (   390,  1062)
+	  3: Rel (     0,  -205)  ->  Abs (   390,   857)
+	  4: Rel (  -205,  -857)  ->  Abs (   185,     0)
+	  5: Rel (     0,   205)  ->  Abs (   185,   205)
+	  6: Rel (   205,     0)  ->  Abs (   390,   205)
+	  7: Rel (     0,  -205)  ->  Abs (   390,     0)
+
+	Glyph 672: off = 0x0001ED3A, len = 318
+	  numberOfContours:	1
+	  xMin:			105
+	  yMin:			0
+	  xMax:			1098
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  21
+
+	  Length of Instructions:	233
+	00000: NPUSHB     (122):    25     8    38    12    56     1    58     2    59     8 
+	                            59     9    57    12    59    21    72     1    77     2 
+	                            73     8    77     9    73    12    77    21    85     3 
+	                            86     9    86    12   103     3   127     8   115    20 
+	                           140     9   130    20   128    21   167    12   216     0 
+	                           215    21    26     8     2    41    19    40    21    61 
+	                             2    63    21   129     9   143    21   166    12   218 
+	                            21     9    21    12    11    11     0     2     9    10 
+	                             1     1     0    11    11    32    10     1    20    10 
+	                            10     1    21    12     1     9     4    10     6     5 
+	                             0     1    10    17    16    11    10     6    15    16 
+	                            18     4     5     7     9     2    12    21     4    17 
+	                             6     1 
+	00124: PUSHW[1]            608 
+	00127: PUSHB[8]            128     0     1     0     0    16    32    17 
+	00136: PUSHW[1]            714 
+	00139: PUSHB[7]             23    11    10     5    32    10     6 
+	00147: PUSHW[2]            713    22 
+	00152: SRP0       
+	00153: MIRP[srp0,nmd,rd,2] 
+	00154: SHP[rp2,zp1] 
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: MDAP[rd]   
+	00157: SHP[rp1,zp0] 
+	00158: SRP0       
+	00159: MIRP[srp0,nmd,rd,2] 
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: SHP[rp1,zp0] 
+	00162: MDAP[rd]   
+	00163: DELTAP1    
+	00164: MIRP[nrp0,md,rd,1] 
+	00165: SRP1       
+	00166: SRP2       
+	00167: SLOOP      
+	00168: IP         
+	00169: SHP[rp1,zp0] 
+	00170: SRP1       
+	00171: SHP[rp1,zp0] 
+	00172: SHP[rp2,zp1] 
+	00173: SRP1       
+	00174: SHP[rp1,zp0] 
+	00175: SVTCA[y-axis] 
+	00176: MIAP[rd+ci] 
+	00177: ALIGNRP    
+	00178: ALIGNRP    
+	00179: ALIGNRP    
+	00180: MIAP[rd+ci] 
+	00181: ALIGNRP    
+	00182: ALIGNRP    
+	00183: ALIGNRP    
+	00184: SRP2       
+	00185: SLOOP      
+	00186: IP         
+	00187: SDPVTL[1]  
+	00188: SFVTCA[x-axis] 
+	00189: MDAP[nrd]  
+	00190: CALL       
+	00191: SDPVTL[1]  
+	00192: RDTG       
+	00193: MDRP[nrp0,nmd,rd,0] 
+	00194: SPVTL[p1,p2] 
+	00195: SFVTPV     
+	00196: ALIGNRP    
+	00197: ALIGNRP    
+	00198: SDPVTL[1]  
+	00199: SFVTPV     
+	00200: SRP0       
+	00201: MDRP[nrp0,nmd,rd,0] 
+	00202: ALIGNRP    
+	00203: PUSHB[2]              6     2 
+	00206: RS         
+	00207: EQ         
+	00208: IF         
+	00209: PUSHB[6]              2    24    12    17    52    12 
+	00216: PUSHW[1]            -24 
+	00219: PUSHB[3]             12    17    52 
+	00223: SVTCA[y-axis] 
+	00224: CALL       
+	00225: CALL       
+	00226: EIF        
+	00227: IUP[y]     
+	00228: IUP[x]     
+	00229: SVTCA[y-axis] 
+	00230: DELTAP1    
+	00231: SVTCA[x-axis] 
+	00232: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:                                      On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                              X-Short On
+	  6:  YDual                       X-Short On
+	  7:        XDual                 X-Short On
+	  8:        XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:                              X-Short On
+	 11:  YDual XDual                 X-Short On
+	 12:                                      On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual                 X-Short On
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1098,     0)  ->  Abs (  1098,     0)
+	  1: Rel (  -236,     0)  ->  Abs (   862,     0)
+	  2: Rel (  -405,   573)  ->  Abs (   457,   573)
+	  3: Rel (   -94,   -51)  ->  Abs (   363,   522)
+	  4: Rel (   -17,  -155)  ->  Abs (   346,   367)
+	  5: Rel (   -43,  -367)  ->  Abs (   303,     0)
+	  6: Rel (  -198,     0)  ->  Abs (   105,     0)
+	  7: Rel (    43,   367)  ->  Abs (   148,   367)
+	  8: Rel (    30,   256)  ->  Abs (   178,   623)
+	  9: Rel (   178,    90)  ->  Abs (   356,   713)
+	 10: Rel (  -247,   348)  ->  Abs (   109,  1061)
+	 11: Rel (   235,     0)  ->  Abs (   344,  1061)
+	 12: Rel (   340,  -475)  ->  Abs (   684,   586)
+	 13: Rel (    62,    41)  ->  Abs (   746,   627)
+	 14: Rel (    49,   103)  ->  Abs (   795,   730)
+	 15: Rel (    14,   118)  ->  Abs (   809,   848)
+	 16: Rel (    25,   213)  ->  Abs (   834,  1061)
+	 17: Rel (   198,     0)  ->  Abs (  1032,  1061)
+	 18: Rel (   -24,  -219)  ->  Abs (  1008,   842)
+	 19: Rel (   -16,  -141)  ->  Abs (   992,   701)
+	 20: Rel (   -95,  -181)  ->  Abs (   897,   520)
+	 21: Rel (  -117,   -71)  ->  Abs (   780,   449)
+
+	Glyph 673: off = 0x0001EE78, len = 184
+	  numberOfContours:	1
+	  xMin:			50
+	  yMin:			0
+	  xMax:			1065
+	  yMax:			1073
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	118
+	00000: NPUSHB      (44):     5    16    22    16    84    16    99    16   226    16 
+	                             5     0     4   249     3    10    12   249    13    12 
+	                           249    13    13    10   249    15     7     5    32     0 
+	                             0     1    20    12    12     6    85     1    26    13 
+	                            13     6    85     1 
+	00046: PUSHW[1]            -16 
+	00049: NPUSHB      (11):    15    15     6    85     1     8    16    16     6    85 
+	                             1 
+	00062: PUSHW[1]            716 
+	00065: PUSHB[5]             20    12    12    13    12 
+	00071: PUSHW[1]            -64 
+	00074: PUSHB[6]             13    17    52    12    13     4 
+	00081: PUSHW[2]            715    19 
+	00086: SRP0       
+	00087: MIRP[srp0,nmd,rd,2] 
+	00088: SHP[rp2,zp1] 
+	00089: MDAP[rd]   
+	00090: CALL       
+	00091: SRP1       
+	00092: SHP[rp1,zp0] 
+	00093: MDAP[rd]   
+	00094: SRP0       
+	00095: MIRP[srp0,nmd,rd,2] 
+	00096: CALL       
+	00097: CALL       
+	00098: CALL       
+	00099: CALL       
+	00100: SHP[rp2,zp1] 
+	00101: MDAP[rd]   
+	00102: MIRP[nrp0,md,rd,1] 
+	00103: SVTCA[y-axis] 
+	00104: MIAP[rd+ci] 
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: SHP[rp1,zp0] 
+	00107: MDAP[rd]   
+	00108: MIRP[nrp0,md,rd,1] 
+	00109: MDAP[rd]   
+	00110: MIRP[nrp0,md,rd,1] 
+	00111: MIAP[rd+ci] 
+	00112: MIRP[srp0,md,rd,1] 
+	00113: ALIGNRP    
+	00114: IUP[y]     
+	00115: IUP[x]     
+	00116: SVTCA[x-axis] 
+	00117: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual                               Off
+	 17:                      Y-Short         Off
+	 18:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   896,   160)  ->  Abs (   896,   160)
+	  1: Rel (   169,     0)  ->  Abs (  1065,   160)
+	  2: Rel (     0,  -160)  ->  Abs (  1065,     0)
+	  3: Rel ( -1015,     0)  ->  Abs (    50,     0)
+	  4: Rel (     0,   160)  ->  Abs (    50,   160)
+	  5: Rel (   655,     0)  ->  Abs (   705,   160)
+	  6: Rel (     0,   362)  ->  Abs (   705,   522)
+	  7: Rel (     0,   148)  ->  Abs (   705,   670)
+	  8: Rel (   -66,   149)  ->  Abs (   639,   819)
+	  9: Rel (  -173,    88)  ->  Abs (   466,   907)
+	 10: Rel (  -183,     0)  ->  Abs (   283,   907)
+	 11: Rel (   -65,     0)  ->  Abs (   218,   907)
+	 12: Rel (  -136,   -14)  ->  Abs (    82,   893)
+	 13: Rel (   -16,   158)  ->  Abs (    66,  1051)
+	 14: Rel (   135,    22)  ->  Abs (   201,  1073)
+	 15: Rel (   152,     0)  ->  Abs (   353,  1073)
+	 16: Rel (   286,     0)  ->  Abs (   639,  1073)
+	 17: Rel (   257,  -248)  ->  Abs (   896,   825)
+	 18: Rel (     0,  -252)  ->  Abs (   896,   573)
+
+	Glyph 674: off = 0x0001EF30, len = 288
+	  numberOfContours:	1
+	  xMin:			25
+	  yMin:			0
+	  xMax:			744
+	  yMax:			1073
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	201
+	00000: NPUSHB      (86):     3    24    18    24    35    24    47    27    56    10 
+	                            52    24    75    10    89    10   106    10   123    10 
+	                           133     6   144     5   169    11    13     3     4     4 
+	                           186     1     2    20     1     1     2     5     7     7 
+	                            35     8    10    20     8     8    10     5     4    10 
+	                             8     1    12   232     0     4    16     4     2     4 
+	                             4    22     8     7     2     3    10    19   249    20 
+	                             7    20    17   249    22     7     5    10    12     8 
+	                            19   197    20    20     7     8 
+	00088: PUSHW[1]            -16 
+	00091: NPUSHB      (17):     8     8     4    12    32     1     3   159     2   175 
+	                             2   191     2     3     2     2     1 
+	00110: PUSHW[1]            -10 
+	00113: NPUSHB      (14):    12    12     6    85     1    10    15    16     6    85 
+	                            47     1     1     1 
+	00129: PUSHW[2]            712    27 
+	00134: SRP0       
+	00135: MIRP[srp0,nmd,rd,2] 
+	00136: DELTAP1    
+	00137: CALL       
+	00138: CALL       
+	00139: SHP[rp2,zp1] 
+	00140: RDTG       
+	00141: MDAP[rd]   
+	00142: RTG        
+	00143: DELTAP1    
+	00144: SHP[rp1,zp0] 
+	00145: SRP0       
+	00146: MIRP[srp0,md,rd,1] 
+	00147: SHP[rp2,zp1] 
+	00148: SHP[rp1,zp0] 
+	00149: MDAP[rd]   
+	00150: SHPIX      
+	00151: SHP[rp1,zp0] 
+	00152: SHP[rp1,zp0] 
+	00153: MDAP[rd]   
+	00154: MIRP[nrp0,nmd,rd,0] 
+	00155: SRP1       
+	00156: SRP2       
+	00157: IP         
+	00158: IP         
+	00159: SVTCA[y-axis] 
+	00160: MIAP[rd+ci] 
+	00161: MIRP[nrp0,md,rd,1] 
+	00162: SHP[rp1,zp0] 
+	00163: MIAP[rd+ci] 
+	00164: MIRP[nrp0,md,rd,1] 
+	00165: MIAP[rd+ci] 
+	00166: ALIGNRP    
+	00167: ALIGNRP    
+	00168: ALIGNRP    
+	00169: RUTG       
+	00170: SRP2       
+	00171: IP         
+	00172: MDAP[rd]   
+	00173: DELTAP1    
+	00174: RTG        
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: SHP[rp1,zp0] 
+	00177: SRP1       
+	00178: IP         
+	00179: SRP2       
+	00180: IP         
+	00181: SDPVTL[1]  
+	00182: SFVTCA[x-axis] 
+	00183: MDAP[nrd]  
+	00184: CALL       
+	00185: SFVTPV     
+	00186: RDTG       
+	00187: SRP0       
+	00188: MDRP[nrp0,nmd,rd,0] 
+	00189: SDPVTL[1]  
+	00190: SFVTCA[x-axis] 
+	00191: MDAP[nrd]  
+	00192: RTG        
+	00193: CALL       
+	00194: RDTG       
+	00195: SRP0       
+	00196: MDRP[nrp0,nmd,rd,0] 
+	00197: IUP[y]     
+	00198: IUP[x]     
+	00199: SVTCA[x-axis] 
+	00200: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual                 X-Short On
+	  3:  YDual                       X-Short On
+	  4:                              X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short On
+	  8:  YDual                       X-Short On
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:  YDual               Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   646,   686)  ->  Abs (   646,   686)
+	  1: Rel (     0,  -326)  ->  Abs (   646,   360)
+	  2: Rel (    98,  -360)  ->  Abs (   744,     0)
+	  3: Rel (  -187,     0)  ->  Abs (   557,     0)
+	  4: Rel (   -73,   260)  ->  Abs (   484,   260)
+	  5: Rel (  -123,     0)  ->  Abs (   361,   260)
+	  6: Rel (   -82,  -149)  ->  Abs (   279,   111)
+	  7: Rel (   -59,  -111)  ->  Abs (   220,     0)
+	  8: Rel (  -195,     0)  ->  Abs (    25,     0)
+	  9: Rel (    84,   164)  ->  Abs (   109,   164)
+	 10: Rel (    75,   146)  ->  Abs (   184,   310)
+	 11: Rel (   198,    91)  ->  Abs (   382,   401)
+	 12: Rel (    73,     0)  ->  Abs (   455,   401)
+	 13: Rel (     0,   279)  ->  Abs (   455,   680)
+	 14: Rel (     0,    86)  ->  Abs (   455,   766)
+	 15: Rel (   -25,    89)  ->  Abs (   430,   855)
+	 16: Rel (   -86,    54)  ->  Abs (   344,   909)
+	 17: Rel (   -71,     0)  ->  Abs (   273,   909)
+	 18: Rel (   -61,     0)  ->  Abs (   212,   909)
+	 19: Rel (   -48,   -10)  ->  Abs (   164,   899)
+	 20: Rel (   -14,   152)  ->  Abs (   150,  1051)
+	 21: Rel (    67,    22)  ->  Abs (   217,  1073)
+	 22: Rel (    97,     0)  ->  Abs (   314,  1073)
+	 23: Rel (   136,     0)  ->  Abs (   450,  1073)
+	 24: Rel (   144,  -102)  ->  Abs (   594,   971)
+	 25: Rel (    52,  -149)  ->  Abs (   646,   822)
+
+	Glyph 675: off = 0x0001F050, len = 118
+	  numberOfContours:	1
+	  xMin:			45
+	  yMin:			0
+	  xMax:			996
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	81
+	00000: NPUSHB      (16):     3    10     1     5   249     6     6     4    32     1 
+	                            12    11    12     6    85     1 
+	00018: PUSHW[1]            -20 
+	00021: PUSHB[5]             13    13     6    85     1 
+	00027: PUSHW[1]             -4 
+	00030: NPUSHB      (16):    15    15     6    85     1    10    16    16     6    85 
+	                           159     1     1     1   160     7 
+	00048: PUSHW[1]            716 
+	00051: PUSHB[5]              9    48     6     1     6 
+	00057: PUSHW[2]            715     8 
+	00062: SRP0       
+	00063: MIRP[nrp0,nmd,rd,2] 
+	00064: DELTAP1    
+	00065: SRP0       
+	00066: MIRP[srp0,nmd,rd,2] 
+	00067: MIRP[srp0,nmd,rd,0] 
+	00068: DELTAP1    
+	00069: CALL       
+	00070: CALL       
+	00071: CALL       
+	00072: CALL       
+	00073: MIRP[nrp0,md,rd,1] 
+	00074: SVTCA[y-axis] 
+	00075: MIAP[rd+ci] 
+	00076: MIRP[srp0,md,rd,1] 
+	00077: ALIGNRP    
+	00078: MIAP[rd+ci] 
+	00079: IUP[y]     
+	00080: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:        XDual                         On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   996,   901)  ->  Abs (   996,   901)
+	  1: Rel (  -181,     0)  ->  Abs (   815,   901)
+	  2: Rel (     0,  -901)  ->  Abs (   815,     0)
+	  3: Rel (  -190,     0)  ->  Abs (   625,     0)
+	  4: Rel (     0,   901)  ->  Abs (   625,   901)
+	  5: Rel (  -580,     0)  ->  Abs (    45,   901)
+	  6: Rel (     0,   160)  ->  Abs (    45,  1061)
+	  7: Rel (   951,     0)  ->  Abs (   996,  1061)
+
+	Glyph 676: off = 0x0001F0C6, len = 206
+	  numberOfContours:	2
+	  xMin:			150
+	  yMin:			0
+	  xMax:			1088
+	  yMax:			1073
+
+	EndPoints
+	---------
+	  0:  14
+	  1:  18
+
+	  Length of Instructions:	138
+	00000: NPUSHB      (31):    50     3    52     4    69     3    69     4    86     3 
+	                            86     4   102     4     7    14   249     0    18     7 
+	                            17    10    14    12   249     0     2     7     8    32 
+	                             5 
+	00033: PUSHW[1]            -20 
+	00036: NPUSHB      (11):    16    16     6    85     5    16    15    15     6    85 
+	                             5 
+	00049: PUSHW[1]            -16 
+	00052: PUSHB[5]             12    12     6    85     5 
+	00058: PUSHW[1]            712 
+	00061: NPUSHB      (14):    20    14    14     0     0    15    32    18    42    16 
+	                            16     6    85    18 
+	00077: PUSHW[1]            -18 
+	00080: PUSHB[5]             15    15     6    85    18 
+	00086: PUSHW[1]            -10 
+	00089: NPUSHB      (11):    13    13     6    85    18     4    12    12     6    85 
+	                            18 
+	00102: PUSHW[2]            711    19 
+	00107: SRP0       
+	00108: MIRP[srp0,nmd,rd,2] 
+	00109: CALL       
+	00110: CALL       
+	00111: CALL       
+	00112: CALL       
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: SHP[rp1,zp0] 
+	00115: MDAP[rd]   
+	00116: SHP[rp1,zp0] 
+	00117: MDAP[rd]   
+	00118: SRP0       
+	00119: MIRP[srp0,nmd,rd,2] 
+	00120: CALL       
+	00121: CALL       
+	00122: CALL       
+	00123: MIRP[nrp0,md,rd,1] 
+	00124: SVTCA[y-axis] 
+	00125: MIAP[rd+ci] 
+	00126: SHP[rp1,zp0] 
+	00127: MIRP[srp0,md,rd,1] 
+	00128: SHP[rp2,zp1] 
+	00129: MIAP[rd+ci] 
+	00130: ALIGNRP    
+	00131: MDAP[rd]   
+	00132: MDAP[rd]   
+	00133: MIRP[nrp0,md,rd,1] 
+	00134: IUP[y]     
+	00135: IUP[x]     
+	00136: SVTCA[x-axis] 
+	00137: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual                               Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual                         On
+	  7:  YDual                       X-Short On
+	  8:        XDual                         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:        XDual                 X-Short On
+	 16:        XDual                         On
+	 17:  YDual                       X-Short On
+	 18:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   150,  1042)  ->  Abs (   150,  1042)
+	  1: Rel (   181,    31)  ->  Abs (   331,  1073)
+	  2: Rel (   171,     0)  ->  Abs (   502,  1073)
+	  3: Rel (   332,     0)  ->  Abs (   834,  1073)
+	  4: Rel (   254,  -246)  ->  Abs (  1088,   827)
+	  5: Rel (     0,  -254)  ->  Abs (  1088,   573)
+	  6: Rel (     0,  -573)  ->  Abs (  1088,     0)
+	  7: Rel (  -191,     0)  ->  Abs (   897,     0)
+	  8: Rel (     0,   522)  ->  Abs (   897,   522)
+	  9: Rel (     0,   159)  ->  Abs (   897,   681)
+	 10: Rel (   -74,   149)  ->  Abs (   823,   830)
+	 11: Rel (  -181,    77)  ->  Abs (   642,   907)
+	 12: Rel (  -173,     0)  ->  Abs (   469,   907)
+	 13: Rel (  -136,     0)  ->  Abs (   333,   907)
+	 14: Rel (  -167,   -28)  ->  Abs (   166,   879)
+	 15: Rel (   187,  -281)  ->  Abs (   353,   598)
+	 16: Rel (     0,  -598)  ->  Abs (   353,     0)
+	 17: Rel (  -191,     0)  ->  Abs (   162,     0)
+	 18: Rel (     0,   598)  ->  Abs (   162,   598)
+
+	Glyph 677: off = 0x0001F194, len = 82
+	  numberOfContours:	1
+	  xMin:			155
+	  yMin:			0
+	  xMax:			350
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	55
+	00000: PUSHB[5]              2    10     3     6     5 
+	00006: PUSHW[1]            712 
+	00009: PUSHB[3]              0    32     3 
+	00013: PUSHW[1]             -2 
+	00016: PUSHB[5]             11    11     6    85     3 
+	00022: PUSHW[1]             -2 
+	00025: NPUSHB      (11):    13    13     6    85     3    20    16    16     6    85 
+	                             3 
+	00038: PUSHW[2]            711     4 
+	00043: SRP0       
+	00044: MIRP[srp0,nmd,rd,2] 
+	00045: CALL       
+	00046: CALL       
+	00047: CALL       
+	00048: MIRP[srp0,md,rd,1] 
+	00049: MIRP[nrp0,nmd,rd,0] 
+	00050: SVTCA[y-axis] 
+	00051: MIAP[rd+ci] 
+	00052: MIAP[rd+ci] 
+	00053: IUP[y]     
+	00054: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   350,  1061)  ->  Abs (   350,  1061)
+	  1: Rel (     0, -1061)  ->  Abs (   350,     0)
+	  2: Rel (  -195,     0)  ->  Abs (   155,     0)
+	  3: Rel (     0,  1061)  ->  Abs (   155,  1061)
+
+	Glyph 678: off = 0x0001F1E6, len = 146
+	  numberOfContours:	1
+	  xMin:			95
+	  yMin:			0
+	  xMax:			738
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	80
+	00000: NPUSHB      (30):    15    21    32    21     2     9    10     0   232    17 
+	                           249    18     6    16    16     0    17     8    32     9 
+	                             9     3    32    14    14    18    15    19     1    19 
+	00032: PUSHW[1]            716 
+	00035: NPUSHB      (11):    21    18    20    12    13     6    85    32    18     1 
+	                            18 
+	00048: PUSHW[2]            709    20 
+	00053: SRP0       
+	00054: MIRP[nrp0,nmd,rd,2] 
+	00055: DELTAP1    
+	00056: CALL       
+	00057: SRP0       
+	00058: MIRP[nrp0,nmd,rd,2] 
+	00059: DELTAP1    
+	00060: SRP1       
+	00061: IP         
+	00062: MDAP[rd]   
+	00063: MIRP[nrp0,md,rd,1] 
+	00064: IP         
+	00065: MDAP[rd]   
+	00066: MIRP[nrp0,md,rd,1] 
+	00067: SRP1       
+	00068: SRP2       
+	00069: IP         
+	00070: MDAP[rd]   
+	00071: SVTCA[y-axis] 
+	00072: MIAP[rd+ci] 
+	00073: MIRP[nrp0,md,rd,1] 
+	00074: MIRP[nrp0,md,rd,1] 
+	00075: MIAP[rd+ci] 
+	00076: IUP[y]     
+	00077: IUP[x]     
+	00078: SVTCA[x-axis] 
+	00079: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:                      Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         On
+	  9:  YDual                       X-Short On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual                               On
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   738,   926)  ->  Abs (   738,   926)
+	  1: Rel (  -153,     0)  ->  Abs (   585,   926)
+	  2: Rel (  -173,  -175)  ->  Abs (   412,   751)
+	  3: Rel (     0,  -147)  ->  Abs (   412,   604)
+	  4: Rel (     0,   -29)  ->  Abs (   412,   575)
+	  5: Rel (     9,   -84)  ->  Abs (   421,   491)
+	  6: Rel (    26,  -242)  ->  Abs (   447,   249)
+	  7: Rel (     0,  -102)  ->  Abs (   447,   147)
+	  8: Rel (     0,  -147)  ->  Abs (   447,     0)
+	  9: Rel (  -192,     0)  ->  Abs (   255,     0)
+	 10: Rel (     0,   174)  ->  Abs (   255,   174)
+	 11: Rel (     0,   106)  ->  Abs (   255,   280)
+	 12: Rel (   -20,   220)  ->  Abs (   235,   500)
+	 13: Rel (    -7,    74)  ->  Abs (   228,   574)
+	 14: Rel (     0,    49)  ->  Abs (   228,   623)
+	 15: Rel (     0,   165)  ->  Abs (   228,   788)
+	 16: Rel (   135,   113)  ->  Abs (   363,   901)
+	 17: Rel (  -268,     0)  ->  Abs (    95,   901)
+	 18: Rel (     0,   160)  ->  Abs (    95,  1061)
+	 19: Rel (   643,     0)  ->  Abs (   738,  1061)
+
+	Glyph 679: off = 0x0001F278, len = 176
+	  numberOfContours:	1
+	  xMin:			155
+	  yMin:			0
+	  xMax:			1081
+	  yMax:			1073
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	115
+	00000: NPUSHB      (20):    99    15   115    16     2    67    15    83    15     2 
+	                             1    10    10     6   249    13     7     2    32    17 
+	00022: PUSHW[1]            -20 
+	00025: NPUSHB      (11):    16    16     6    85    17    16    15    15     6    85 
+	                            17 
+	00038: PUSHW[1]            -16 
+	00041: PUSHB[5]             12    12     6    85    17 
+	00047: PUSHW[1]            712 
+	00050: NPUSHB      (10):    19     8    32    11    42    16    16     6    85    11 
+	00062: PUSHW[1]            -18 
+	00065: PUSHB[5]             15    15     6    85    11 
+	00071: PUSHW[1]            -10 
+	00074: NPUSHB      (11):    13    13     6    85    11     4    12    12     6    85 
+	                            11 
+	00087: PUSHW[2]            711    18 
+	00092: SRP0       
+	00093: MIRP[srp0,nmd,rd,2] 
+	00094: CALL       
+	00095: CALL       
+	00096: CALL       
+	00097: CALL       
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: SRP0       
+	00100: MIRP[srp0,nmd,rd,0] 
+	00101: CALL       
+	00102: CALL       
+	00103: CALL       
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: SVTCA[y-axis] 
+	00106: MIAP[rd+ci] 
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: MIAP[rd+ci] 
+	00109: ALIGNRP    
+	00110: IUP[y]     
+	00111: IUP[x]     
+	00112: SVTCA[x-axis] 
+	00113: DELTAP1    
+	00114: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:                      Y-Short X-Short On
+	  9:        XDual                         On
+	 10:  YDual                       X-Short On
+	 11:        XDual                         On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1081,     0)  ->  Abs (  1081,     0)
+	  1: Rel (  -191,     0)  ->  Abs (   890,     0)
+	  2: Rel (     0,   575)  ->  Abs (   890,   575)
+	  3: Rel (     0,   117)  ->  Abs (   890,   692)
+	  4: Rel (   -52,   134)  ->  Abs (   838,   826)
+	  5: Rel (  -156,    81)  ->  Abs (   682,   907)
+	  6: Rel (  -146,     0)  ->  Abs (   536,   907)
+	  7: Rel (   -85,     0)  ->  Abs (   451,   907)
+	  8: Rel (  -105,   -14)  ->  Abs (   346,   893)
+	  9: Rel (     0,  -893)  ->  Abs (   346,     0)
+	 10: Rel (  -191,     0)  ->  Abs (   155,     0)
+	 11: Rel (     0,  1038)  ->  Abs (   155,  1038)
+	 12: Rel (   214,    35)  ->  Abs (   369,  1073)
+	 13: Rel (   179,     0)  ->  Abs (   548,  1073)
+	 14: Rel (   196,     0)  ->  Abs (   744,  1073)
+	 15: Rel (   239,  -115)  ->  Abs (   983,   958)
+	 16: Rel (    98,  -192)  ->  Abs (  1081,   766)
+	 17: Rel (     0,  -172)  ->  Abs (  1081,   594)
+
+	Glyph 680: off = 0x0001F328, len = 244
+	  numberOfContours:	1
+	  xMin:			140
+	  yMin:			-29
+	  xMax:			1088
+	  yMax:			1083
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	156
+	00000: NPUSHB      (41):    47    31     1   107    27   123    27     2     3    18 
+	                            19    18    35    18     3    70     5    86     5   107 
+	                            23   123    23     4     5   249    25    11    31    14 
+	                             1    14    14    12   249    17     7     0     6    15 
+	                            14 
+	00043: PUSHW[1]            -16 
+	00046: NPUSHB      (23):     2    15    15   159    14   175    14     2    14    14 
+	                             0     9    32    21    16    16    16     6    85    47 
+	                            21     1    21 
+	00071: PUSHW[1]            712 
+	00074: PUSHB[4]             31     1    32     0 
+	00079: PUSHW[1]            -10 
+	00082: PUSHB[5]             16    16     6    85     0 
+	00088: PUSHW[1]            -17 
+	00091: PUSHB[5]             15    15     6    85     0 
+	00097: PUSHW[1]            -12 
+	00100: PUSHB[5]             13    13     6    85     0 
+	00106: PUSHW[1]             -2 
+	00109: PUSHB[5]             11    11     6    85     0 
+	00115: PUSHW[2]            711    30 
+	00120: SRP0       
+	00121: MIRP[srp0,nmd,rd,2] 
+	00122: CALL       
+	00123: CALL       
+	00124: CALL       
+	00125: CALL       
+	00126: MIRP[nrp0,md,rd,1] 
+	00127: SRP0       
+	00128: MIRP[srp0,nmd,rd,2] 
+	00129: DELTAP1    
+	00130: CALL       
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: SRP2       
+	00133: IP         
+	00134: MDAP[rd]   
+	00135: DELTAP1    
+	00136: SHP[rp1,zp0] 
+	00137: MDAP[rd]   
+	00138: SLOOP      
+	00139: SHPIX      
+	00140: SVTCA[y-axis] 
+	00141: MIAP[rd+ci] 
+	00142: MIAP[rd+ci] 
+	00143: MIRP[srp0,md,rd,1] 
+	00144: SHP[rp2,zp1] 
+	00145: MDAP[rd]   
+	00146: DELTAP1    
+	00147: MIAP[rd+ci] 
+	00148: MIRP[nrp0,md,rd,1] 
+	00149: DELTAP1    
+	00150: DELTAP1    
+	00151: IUP[y]     
+	00152: IUP[x]     
+	00153: SVTCA[x-axis] 
+	00154: DELTAP1    
+	00155: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:        XDual         Y-Short         Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   140,  1061)  ->  Abs (   140,  1061)
+	  1: Rel (   191,     0)  ->  Abs (   331,  1061)
+	  2: Rel (     0,  -551)  ->  Abs (   331,   510)
+	  3: Rel (     0,  -235)  ->  Abs (   331,   275)
+	  4: Rel (   173,  -150)  ->  Abs (   504,   125)
+	  5: Rel (   107,     0)  ->  Abs (   611,   125)
+	  6: Rel (   114,     0)  ->  Abs (   725,   125)
+	  7: Rel (   133,   106)  ->  Abs (   858,   231)
+	  8: Rel (    40,   170)  ->  Abs (   898,   401)
+	  9: Rel (     0,   144)  ->  Abs (   898,   545)
+	 10: Rel (     0,   135)  ->  Abs (   898,   680)
+	 11: Rel (     0,   233)  ->  Abs (   898,   913)
+	 12: Rel (  -135,     0)  ->  Abs (   763,   913)
+	 13: Rel (   -95,     0)  ->  Abs (   668,   913)
+	 14: Rel (   -79,  -106)  ->  Abs (   589,   807)
+	 15: Rel (   -60,    98)  ->  Abs (   529,   905)
+	 16: Rel (   108,   178)  ->  Abs (   637,  1083)
+	 17: Rel (   167,     0)  ->  Abs (   804,  1083)
+	 18: Rel (   140,     0)  ->  Abs (   944,  1083)
+	 19: Rel (   144,  -220)  ->  Abs (  1088,   863)
+	 20: Rel (     0,  -212)  ->  Abs (  1088,   651)
+	 21: Rel (     0,   -76)  ->  Abs (  1088,   575)
+	 22: Rel (     0,  -206)  ->  Abs (  1088,   369)
+	 23: Rel (   -79,  -232)  ->  Abs (  1009,   137)
+	 24: Rel (  -223,  -166)  ->  Abs (   786,   -29)
+	 25: Rel (  -175,     0)  ->  Abs (   611,   -29)
+	 26: Rel (  -154,     0)  ->  Abs (   457,   -29)
+	 27: Rel (  -227,   152)  ->  Abs (   230,   123)
+	 28: Rel (   -90,   232)  ->  Abs (   140,   355)
+	 29: Rel (     0,   208)  ->  Abs (   140,   563)
+
+	Glyph 681: off = 0x0001F41C, len = 84
+	  numberOfContours:	1
+	  xMin:			155
+	  yMin:			512
+	  xMax:			350
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	56
+	00000: PUSHB[5]              2     2     3     6     5 
+	00006: PUSHW[1]            712 
+	00009: PUSHB[3]              0    32     3 
+	00013: PUSHW[1]             -2 
+	00016: PUSHB[5]             11    11     6    85     3 
+	00022: PUSHW[1]             -2 
+	00025: NPUSHB      (11):    13    13     6    85     3    16    16    16     6    85 
+	                             3 
+	00038: PUSHW[2]            711     4 
+	00043: SRP0       
+	00044: MIRP[srp0,nmd,rd,0] 
+	00045: CALL       
+	00046: CALL       
+	00047: CALL       
+	00048: MIRP[srp0,md,rd,1] 
+	00049: MIRP[nrp0,nmd,rd,2] 
+	00050: SVTCA[y-axis] 
+	00051: MIAP[rd+ci] 
+	00052: SHP[rp1,zp0] 
+	00053: MDAP[rd]   
+	00054: IUP[y]     
+	00055: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   350,  1061)  ->  Abs (   350,  1061)
+	  1: Rel (     0,  -549)  ->  Abs (   350,   512)
+	  2: Rel (  -195,     0)  ->  Abs (   155,   512)
+	  3: Rel (     0,   549)  ->  Abs (   155,  1061)
+
+	Glyph 682: off = 0x0001F470, len = 150
+	  numberOfContours:	1
+	  xMin:			40
+	  yMin:			-408
+	  xMax:			898
+	  yMax:			1073
+
+	EndPoints
+	---------
+	  0:  14
+
+	  Length of Instructions:	94
+	00000: PUSHB[6]             43    10    59    10     2     3 
+	00007: PUSHW[3]            -16     4   -16 
+	00014: NPUSHB      (19):     7    14    14   249     0     6     0    12   249     2 
+	                             7    14    14     0     0    15     8    32     5 
+	00035: PUSHW[1]            -14 
+	00038: NPUSHB      (23):    11    12     6    85     5    10    13    13     6    85 
+	                             5    22    15    15     6    85     5    32    16    16 
+	                             6    85     5 
+	00063: PUSHW[2]            712    16 
+	00068: SRP0       
+	00069: MIRP[srp0,nmd,rd,2] 
+	00070: CALL       
+	00071: CALL       
+	00072: CALL       
+	00073: CALL       
+	00074: MIRP[nrp0,md,rd,1] 
+	00075: SRP1       
+	00076: SHP[rp1,zp0] 
+	00077: MDAP[rd]   
+	00078: SHP[rp1,zp0] 
+	00079: MDAP[rd]   
+	00080: SVTCA[y-axis] 
+	00081: MIAP[rd+ci] 
+	00082: MIRP[nrp0,md,rd,1] 
+	00083: SHP[rp1,zp0] 
+	00084: MIAP[rd+ci] 
+	00085: MIRP[nrp0,md,rd,1] 
+	00086: MIAP[rd+ci] 
+	00087: IUP[y]     
+	00088: IUP[x]     
+	00089: SHPIX      
+	00090: SVTCA[x-axis] 
+	00091: SHPIX      
+	00092: SVTCA[x-axis] 
+	00093: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual                               Off
+	  4:                      Y-Short         Off
+	  5:        XDual                         On
+	  6:        XDual                         On
+	  7:  YDual                       X-Short On
+	  8:        XDual                         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    40,  1051)  ->  Abs (    40,  1051)
+	  1: Rel (   154,    22)  ->  Abs (   194,  1073)
+	  2: Rel (   128,     0)  ->  Abs (   322,  1073)
+	  3: Rel (   298,     0)  ->  Abs (   620,  1073)
+	  4: Rel (   278,  -227)  ->  Abs (   898,   846)
+	  5: Rel (     0,  -273)  ->  Abs (   898,   573)
+	  6: Rel (     0,  -981)  ->  Abs (   898,  -408)
+	  7: Rel (  -191,     0)  ->  Abs (   707,  -408)
+	  8: Rel (     0,   930)  ->  Abs (   707,   522)
+	  9: Rel (     0,   173)  ->  Abs (   707,   695)
+	 10: Rel (   -89,   146)  ->  Abs (   618,   841)
+	 11: Rel (  -184,    66)  ->  Abs (   434,   907)
+	 12: Rel (  -122,     0)  ->  Abs (   312,   907)
+	 13: Rel (  -108,     0)  ->  Abs (   204,   907)
+	 14: Rel (  -148,   -20)  ->  Abs (    56,   887)
+
+	Glyph 683: off = 0x0001F506, len = 190
+	  numberOfContours:	1
+	  xMin:			80
+	  yMin:			-16
+	  xMax:			854
+	  yMax:			1079
+
+	EndPoints
+	---------
+	  0:  23
+
+	  Length of Instructions:	113
+	00000: NPUSHB      (53):    74     5    74     9    92     5    92     9    89    17 
+	                            89    20     6    42     5    44     9    59     5    59 
+	                             9     4     1   159     0     0     3   159    22    11 
+	                            12   159    13    13    10   159    15     7     1    12 
+	                             1     0     0    12    63    13     1    13    13    24 
+	                             7    38    18 
+	00055: PUSHW[1]             -8 
+	00058: PUSHB[5]             11    13     6    85    18 
+	00064: PUSHW[1]             -8 
+	00067: PUSHB[8]             15    15     6    85    32    18     1    18 
+	00076: PUSHW[2]            710    25 
+	00081: SRP0       
+	00082: MIRP[srp0,nmd,rd,2] 
+	00083: DELTAP1    
+	00084: CALL       
+	00085: CALL       
+	00086: MIRP[nrp0,md,rd,1] 
+	00087: SRP1       
+	00088: SHP[rp1,zp0] 
+	00089: MDAP[rd]   
+	00090: DELTAP1    
+	00091: SHP[rp1,zp0] 
+	00092: ALIGNRP    
+	00093: SRP1       
+	00094: SHP[rp1,zp0] 
+	00095: MDAP[rd]   
+	00096: MDAP[rd]   
+	00097: SVTCA[y-axis] 
+	00098: MIAP[rd+ci] 
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: SHP[rp1,zp0] 
+	00101: MDAP[rd]   
+	00102: MIRP[nrp0,md,rd,1] 
+	00103: MIAP[rd+ci] 
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: SHP[rp1,zp0] 
+	00106: MDAP[rd]   
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: IUP[y]     
+	00109: IUP[x]     
+	00110: SVTCA[x-axis] 
+	00111: DELTAP1    
+	00112: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual                               Off
+	 17:                                      Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    80,    14)  ->  Abs (    80,    14)
+	  1: Rel (    26,   172)  ->  Abs (   106,   186)
+	  2: Rel (    94,   -30)  ->  Abs (   200,   156)
+	  3: Rel (    99,     0)  ->  Abs (   299,   156)
+	  4: Rel (   113,     0)  ->  Abs (   412,   156)
+	  5: Rel (   154,    93)  ->  Abs (   566,   249)
+	  6: Rel (    83,   170)  ->  Abs (   649,   419)
+	  7: Rel (     0,   111)  ->  Abs (   649,   530)
+	  8: Rel (     0,   167)  ->  Abs (   649,   697)
+	  9: Rel (  -181,   210)  ->  Abs (   468,   907)
+	 10: Rel (  -169,     0)  ->  Abs (   299,   907)
+	 11: Rel (  -100,     0)  ->  Abs (   199,   907)
+	 12: Rel (   -93,   -30)  ->  Abs (   106,   877)
+	 13: Rel (   -26,   172)  ->  Abs (    80,  1049)
+	 14: Rel (   117,    30)  ->  Abs (   197,  1079)
+	 15: Rel (    92,     0)  ->  Abs (   289,  1079)
+	 16: Rel (   266,     0)  ->  Abs (   555,  1079)
+	 17: Rel (   299,  -310)  ->  Abs (   854,   769)
+	 18: Rel (     0,  -239)  ->  Abs (   854,   530)
+	 19: Rel (     0,  -156)  ->  Abs (   854,   374)
+	 20: Rel (  -129,  -240)  ->  Abs (   725,   134)
+	 21: Rel (  -246,  -150)  ->  Abs (   479,   -16)
+	 22: Rel (  -190,     0)  ->  Abs (   289,   -16)
+	 23: Rel (   -93,     0)  ->  Abs (   196,   -16)
+
+	Glyph 684: off = 0x0001F5C4, len = 234
+	  numberOfContours:	1
+	  xMin:			60
+	  yMin:			0
+	  xMax:			838
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  22
+
+	  Length of Instructions:	159
+	00000: NPUSHB      (28):    54     6    68     6    84     6   117     6   131     6 
+	                             5    10    10    20   249     0     6    21     2     8 
+	                            32    11     8    11    13     6    85    11 
+	00030: PUSHW[1]            -25 
+	00033: PUSHB[5]             15    15     6    85    11 
+	00039: PUSHW[1]            -32 
+	00042: NPUSHB      (10):    16    16     6    85    11    11    20    19    32     1 
+	00054: PUSHW[1]            -20 
+	00057: PUSHB[5]             11    11     6    85     1 
+	00063: PUSHW[1]            -24 
+	00066: PUSHB[5]             12    13     6    85     1 
+	00072: PUSHW[1]             -8 
+	00075: PUSHB[5]             15    15     6    85     1 
+	00081: PUSHW[1]             -2 
+	00084: PUSHB[5]             16    16     6    85     1 
+	00090: PUSHW[1]            714 
+	00093: PUSHB[4]             24     0    32    20 
+	00098: PUSHW[1]            -10 
+	00101: NPUSHB      (25):    11    11     6    85    20    25    12    13     6    85 
+	                            20    25    15    15     6    85    20    34    16    16 
+	                             6    85    20    20    23 
+	00128: SRP1       
+	00129: SHP[rp1,zp0] 
+	00130: MDAP[rd]   
+	00131: CALL       
+	00132: CALL       
+	00133: CALL       
+	00134: CALL       
+	00135: MIRP[nrp0,md,rd,1] 
+	00136: SRP0       
+	00137: MIRP[srp0,nmd,rd,0] 
+	00138: CALL       
+	00139: CALL       
+	00140: CALL       
+	00141: CALL       
+	00142: MIRP[nrp0,md,rd,1] 
+	00143: SRP2       
+	00144: IP         
+	00145: MDAP[rd]   
+	00146: CALL       
+	00147: CALL       
+	00148: CALL       
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: SVTCA[y-axis] 
+	00151: MIAP[rd+ci] 
+	00152: MIAP[rd+ci] 
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: MIAP[rd+ci] 
+	00155: IUP[y]     
+	00156: IUP[x]     
+	00157: SVTCA[x-axis] 
+	00158: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         On
+	 10:  YDual                       X-Short On
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual                               On
+	 21:        XDual                         On
+	 22:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   250,  1061)  ->  Abs (   250,  1061)
+	  1: Rel (   588,     0)  ->  Abs (   838,  1061)
+	  2: Rel (     0,  -264)  ->  Abs (   838,   797)
+	  3: Rel (     0,  -112)  ->  Abs (   838,   685)
+	  4: Rel (   -42,  -139)  ->  Abs (   796,   546)
+	  5: Rel (   -52,   -71)  ->  Abs (   744,   475)
+	  6: Rel (   -54,   -72)  ->  Abs (   690,   403)
+	  7: Rel (   -81,  -109)  ->  Abs (   609,   294)
+	  8: Rel (     0,  -124)  ->  Abs (   609,   170)
+	  9: Rel (     0,  -170)  ->  Abs (   609,     0)
+	 10: Rel (  -191,     0)  ->  Abs (   418,     0)
+	 11: Rel (     0,   143)  ->  Abs (   418,   143)
+	 12: Rel (     0,   129)  ->  Abs (   418,   272)
+	 13: Rel (    51,   130)  ->  Abs (   469,   402)
+	 14: Rel (    49,    63)  ->  Abs (   518,   465)
+	 15: Rel (    60,    76)  ->  Abs (   578,   541)
+	 16: Rel (    44,    56)  ->  Abs (   622,   597)
+	 17: Rel (    25,    90)  ->  Abs (   647,   687)
+	 18: Rel (     0,    71)  ->  Abs (   647,   758)
+	 19: Rel (     0,   143)  ->  Abs (   647,   901)
+	 20: Rel (  -587,     0)  ->  Abs (    60,   901)
+	 21: Rel (     0,   565)  ->  Abs (    60,  1466)
+	 22: Rel (   190,     0)  ->  Abs (   250,  1466)
+
+	Glyph 685: off = 0x0001F6AE, len = 178
+	  numberOfContours:	2
+	  xMin:			155
+	  yMin:			0
+	  xMax:			1081
+	  yMax:			1073
+
+	EndPoints
+	---------
+	  0:  8
+	  1:  17
+
+	  Length of Instructions:	112
+	00000: NPUSHB      (18):    67     6    83     6   102     6     3    17   249     1 
+	                            10    14   249     4     7    10    32     8 
+	00020: PUSHW[1]            -20 
+	00023: NPUSHB      (11):    16    16     6    85     8    14    15    15     6    85 
+	                             8 
+	00036: PUSHW[1]            -14 
+	00039: PUSHB[5]             12    12     6    85     8 
+	00045: PUSHW[1]            712 
+	00048: NPUSHB      (10):    19    16    32     2    60    16    16     6    85     2 
+	00060: PUSHW[1]            -18 
+	00063: PUSHB[5]             15    16     6    85     2 
+	00069: PUSHW[1]            -12 
+	00072: NPUSHB      (11):    13    13     6    85     2     4    12    12     6    85 
+	                             2 
+	00085: PUSHW[2]            711    18 
+	00090: SRP0       
+	00091: MIRP[srp0,nmd,rd,2] 
+	00092: CALL       
+	00093: CALL       
+	00094: CALL       
+	00095: CALL       
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: SRP0       
+	00098: MIRP[srp0,nmd,rd,2] 
+	00099: CALL       
+	00100: CALL       
+	00101: CALL       
+	00102: MIRP[nrp0,md,rd,1] 
+	00103: SVTCA[y-axis] 
+	00104: MIAP[rd+ci] 
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: MIAP[rd+ci] 
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: IUP[y]     
+	00109: IUP[x]     
+	00110: SVTCA[x-axis] 
+	00111: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:                              X-Short On
+	 10:        XDual                         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1081,     0)  ->  Abs (  1081,     0)
+	  1: Rel (  -926,     0)  ->  Abs (   155,     0)
+	  2: Rel (     0,  1038)  ->  Abs (   155,  1038)
+	  3: Rel (   214,    35)  ->  Abs (   369,  1073)
+	  4: Rel (   179,     0)  ->  Abs (   548,  1073)
+	  5: Rel (   196,     0)  ->  Abs (   744,  1073)
+	  6: Rel (   239,  -115)  ->  Abs (   983,   958)
+	  7: Rel (    98,  -192)  ->  Abs (  1081,   766)
+	  8: Rel (     0,  -172)  ->  Abs (  1081,   594)
+	  9: Rel (  -191,  -434)  ->  Abs (   890,   160)
+	 10: Rel (     0,   415)  ->  Abs (   890,   575)
+	 11: Rel (     0,   117)  ->  Abs (   890,   692)
+	 12: Rel (   -52,   134)  ->  Abs (   838,   826)
+	 13: Rel (  -156,    81)  ->  Abs (   682,   907)
+	 14: Rel (  -146,     0)  ->  Abs (   536,   907)
+	 15: Rel (   -85,     0)  ->  Abs (   451,   907)
+	 16: Rel (  -105,   -14)  ->  Abs (   346,   893)
+	 17: Rel (     0,  -733)  ->  Abs (   346,   160)
+
+	Glyph 686: off = 0x0001F760, len = 288
+	  numberOfContours:	1
+	  xMin:			80
+	  yMin:			0
+	  xMax:			1086
+	  yMax:			1073
+
+	EndPoints
+	---------
+	  0:  26
+
+	  Length of Instructions:	197
+	00000: NPUSHB      (22):    10     4     7     8     8    21    41     4    54    21 
+	                            90     4    90     5   105     5   106    18     9     0 
+	                            16     3 
+	00024: PUSHW[1]            -16 
+	00027: NPUSHB      (75):    12    12    15    23     3     2     2    32     1     0 
+	                            20     1     1     0    21    23    23    18    11    13 
+	                             6    85    23    32    24     0    20    24    24     0 
+	                             0     3    21     3    24     1    19   249     6     7 
+	                             2     1     6    13   249    11    11    23    24    10 
+	                             0     3     2    23    21     5    10     1     1    24 
+	                            30    16    16     6    85    63    24    95    24     2 
+	                            24    24    15    32    10 
+	00104: PUSHW[1]            -20 
+	00107: NPUSHB      (11):    16    16     6    85    10    16    15    15     6    85 
+	                            10 
+	00120: PUSHW[1]            -16 
+	00123: PUSHB[5]             12    12     6    85    10 
+	00129: PUSHW[2]            712    28 
+	00134: SRP0       
+	00135: MIRP[srp0,nmd,rd,2] 
+	00136: CALL       
+	00137: CALL       
+	00138: CALL       
+	00139: MIRP[nrp0,md,rd,1] 
+	00140: SHP[rp1,zp0] 
+	00141: MDAP[rd]   
+	00142: DELTAP1    
+	00143: CALL       
+	00144: RTHG       
+	00145: SHP[rp1,zp0] 
+	00146: MDAP[rd]   
+	00147: RTG        
+	00148: SRP2       
+	00149: SLOOP      
+	00150: IP         
+	00151: SVTCA[y-axis] 
+	00152: MIAP[rd+ci] 
+	00153: ALIGNRP    
+	00154: ALIGNRP    
+	00155: SRP0       
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: MIAP[rd+ci] 
+	00158: ALIGNRP    
+	00159: MIAP[rd+ci] 
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: SRP1       
+	00162: SRP2       
+	00163: SLOOP      
+	00164: IP         
+	00165: SDPVTL[1]  
+	00166: SFVTCA[x-axis] 
+	00167: MDAP[nrd]  
+	00168: CALL       
+	00169: CALL       
+	00170: SFVTPV     
+	00171: RDTG       
+	00172: SRP0       
+	00173: MDRP[nrp0,nmd,rd,0] 
+	00174: SDPVTL[1]  
+	00175: SFVTCA[x-axis] 
+	00176: MDAP[nrd]  
+	00177: RTG        
+	00178: CALL       
+	00179: SFVTPV     
+	00180: RDTG       
+	00181: SRP0       
+	00182: MDRP[nrp0,nmd,rd,0] 
+	00183: SVTCA[x-axis] 
+	00184: RTG        
+	00185: SRP1       
+	00186: SRP2       
+	00187: IP         
+	00188: MDAP[rd]   
+	00189: SVTCA[y-axis] 
+	00190: SHPIX      
+	00191: SVTCA[x-axis] 
+	00192: SHPIX      
+	00193: IUP[y]     
+	00194: IUP[x]     
+	00195: SVTCA[x-axis] 
+	00196: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:                              X-Short On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual                         On
+	 12:  YDual                               On
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual                               On
+	 15:        XDual                         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:                      Y-Short X-Short Off
+	 22:                              X-Short On
+	 23:                              X-Short On
+	 24:  YDual                       X-Short On
+	 25:        XDual                 X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   244,   618)  ->  Abs (   244,   618)
+	  1: Rel (  -164,   443)  ->  Abs (    80,  1061)
+	  2: Rel (   187,     0)  ->  Abs (   267,  1061)
+	  3: Rel (    78,  -234)  ->  Abs (   345,   827)
+	  4: Rel (    47,   103)  ->  Abs (   392,   930)
+	  5: Rel (   200,   143)  ->  Abs (   592,  1073)
+	  6: Rel (   115,     0)  ->  Abs (   707,  1073)
+	  7: Rel (   122,     0)  ->  Abs (   829,  1073)
+	  8: Rel (   177,  -125)  ->  Abs (  1006,   948)
+	  9: Rel (    80,  -240)  ->  Abs (  1086,   708)
+	 10: Rel (     0,  -241)  ->  Abs (  1086,   467)
+	 11: Rel (     0,  -467)  ->  Abs (  1086,     0)
+	 12: Rel (  -547,     0)  ->  Abs (   539,     0)
+	 13: Rel (     0,   160)  ->  Abs (   539,   160)
+	 14: Rel (   354,     0)  ->  Abs (   893,   160)
+	 15: Rel (     0,   311)  ->  Abs (   893,   471)
+	 16: Rel (     0,   176)  ->  Abs (   893,   647)
+	 17: Rel (   -23,   161)  ->  Abs (   870,   808)
+	 18: Rel (   -95,   101)  ->  Abs (   775,   909)
+	 19: Rel (   -72,     0)  ->  Abs (   703,   909)
+	 20: Rel (  -112,     0)  ->  Abs (   591,   909)
+	 21: Rel (  -157,  -231)  ->  Abs (   434,   678)
+	 22: Rel (   -55,  -285)  ->  Abs (   379,   393)
+	 23: Rel (   -75,  -393)  ->  Abs (   304,     0)
+	 24: Rel (  -193,     0)  ->  Abs (   111,     0)
+	 25: Rel (    84,   414)  ->  Abs (   195,   414)
+	 26: Rel (    12,    59)  ->  Abs (   207,   473)
+
+	Glyph 687: off = 0x0001F880, len = 82
+	  numberOfContours:	1
+	  xMin:			155
+	  yMin:			-408
+	  xMax:			350
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	55
+	00000: PUSHB[5]              2    14     3     6     5 
+	00006: PUSHW[1]            712 
+	00009: PUSHB[3]              0    32     3 
+	00013: PUSHW[1]             -2 
+	00016: PUSHB[5]             11    11     6    85     3 
+	00022: PUSHW[1]             -2 
+	00025: NPUSHB      (11):    13    13     6    85     3    16    16    16     6    85 
+	                             3 
+	00038: PUSHW[2]            711     4 
+	00043: SRP0       
+	00044: MIRP[srp0,nmd,rd,2] 
+	00045: CALL       
+	00046: CALL       
+	00047: CALL       
+	00048: MIRP[srp0,md,rd,1] 
+	00049: MIRP[nrp0,nmd,rd,2] 
+	00050: SVTCA[y-axis] 
+	00051: MIAP[rd+ci] 
+	00052: MIAP[rd+ci] 
+	00053: IUP[y]     
+	00054: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   350,  1061)  ->  Abs (   350,  1061)
+	  1: Rel (     0, -1469)  ->  Abs (   350,  -408)
+	  2: Rel (  -195,     0)  ->  Abs (   155,  -408)
+	  3: Rel (     0,  1469)  ->  Abs (   155,  1061)
+
+	Glyph 688: off = 0x0001F8D2, len = 170
+	  numberOfContours:	1
+	  xMin:			60
+	  yMin:			0
+	  xMax:			572
+	  yMax:			1073
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	108
+	00000: NPUSHB      (35):     4    15    20    15    36    15    47    19    52    15 
+	                             5     2   249     1    10    10   249    11    11     8 
+	                           249    13     7    11     2     2    10    16    11     1 
+	                            11    11     4    32    17 
+	00037: PUSHW[1]            -17 
+	00040: NPUSHB      (17):    16    16     6    85    17     7    15    15     6    85 
+	                            17    14    13    13     6    85    17 
+	00059: PUSHW[1]            -17 
+	00062: NPUSHB      (12):    12    12     6    85    47    17   191    17   207    17 
+	                             3    17 
+	00076: PUSHW[2]            712    19 
+	00081: SRP0       
+	00082: MIRP[srp0,nmd,rd,2] 
+	00083: DELTAP1    
+	00084: CALL       
+	00085: CALL       
+	00086: CALL       
+	00087: CALL       
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: SHP[rp1,zp0] 
+	00090: MDAP[rd]   
+	00091: DELTAP1    
+	00092: SHP[rp1,zp0] 
+	00093: SHP[rp1,zp0] 
+	00094: MDAP[rd]   
+	00095: MDAP[rd]   
+	00096: SVTCA[y-axis] 
+	00097: MIAP[rd+ci] 
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: SHP[rp1,zp0] 
+	00100: MDAP[rd]   
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: MIAP[rd+ci] 
+	00103: MIRP[nrp0,md,rd,1] 
+	00104: IUP[y]     
+	00105: IUP[x]     
+	00106: SVTCA[x-axis] 
+	00107: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   572,     0)  ->  Abs (   572,     0)
+	  1: Rel (  -512,     0)  ->  Abs (    60,     0)
+	  2: Rel (     0,   160)  ->  Abs (    60,   160)
+	  3: Rel (   321,     0)  ->  Abs (   381,   160)
+	  4: Rel (     0,   520)  ->  Abs (   381,   680)
+	  5: Rel (     0,    86)  ->  Abs (   381,   766)
+	  6: Rel (   -26,    89)  ->  Abs (   355,   855)
+	  7: Rel (   -85,    54)  ->  Abs (   270,   909)
+	  8: Rel (   -71,     0)  ->  Abs (   199,   909)
+	  9: Rel (   -61,     0)  ->  Abs (   138,   909)
+	 10: Rel (   -48,   -10)  ->  Abs (    90,   899)
+	 11: Rel (   -14,   152)  ->  Abs (    76,  1051)
+	 12: Rel (    67,    22)  ->  Abs (   143,  1073)
+	 13: Rel (    97,     0)  ->  Abs (   240,  1073)
+	 14: Rel (   136,     0)  ->  Abs (   376,  1073)
+	 15: Rel (   144,  -102)  ->  Abs (   520,   971)
+	 16: Rel (    52,  -149)  ->  Abs (   572,   822)
+	 17: Rel (     0,  -136)  ->  Abs (   572,   686)
+
+	Glyph 689: off = 0x0001F97C, len = 310
+	  numberOfContours:	2
+	  xMin:			90
+	  yMin:			-31
+	  xMax:			1086
+	  yMax:			1090
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  25
+
+	  Length of Instructions:	223
+	00000: NPUSHB      (42):    47    27    55    24    71    24    83     2    89     5 
+	                            89     9    83    12    83    16    92    18    92    22 
+	                            83    24   167     9   168    13   231     1   233     6 
+	                            15    17   249    11    11    23   249     3     7    20 
+	                            38     7 
+	00044: PUSHW[1]            -12 
+	00047: NPUSHB      (11):    16    16     2    85     7    12    15    15     2    85 
+	                             7 
+	00060: PUSHW[1]            -12 
+	00063: NPUSHB      (11):    14    14     2    85     7    10    13    13     2    85 
+	                             7 
+	00076: PUSHW[1]            -10 
+	00079: NPUSHB      (11):    12    12     2    85     7     0    11    11     2    85 
+	                             7 
+	00092: PUSHW[1]            -26 
+	00095: PUSHB[5]             11    11     6    85     7 
+	00101: PUSHW[1]            -16 
+	00104: PUSHB[5]             13    13     6    85     7 
+	00110: PUSHW[1]            -14 
+	00113: PUSHB[5]             12    12     6    85     7 
+	00119: PUSHW[1]             -8 
+	00122: PUSHB[5]             15    15     6    85     7 
+	00128: PUSHW[1]            710 
+	00131: NPUSHB      (10):    27    14    38     0    10    12    15     2    85     0 
+	00143: PUSHW[1]            -10 
+	00146: NPUSHB      (29):    11    11     2    85     0    14    11    11     6    85 
+	                             0    14    13    13     6    85     0    12    16    16 
+	                             6    85     0    20    12    12     6    85     0 
+	00177: PUSHW[1]            -10 
+	00180: PUSHB[5]             15    15     6    85     0 
+	00186: PUSHW[2]            709    26 
+	00191: SRP0       
+	00192: MIRP[srp0,nmd,rd,2] 
+	00193: CALL       
+	00194: CALL       
+	00195: CALL       
+	00196: CALL       
+	00197: CALL       
+	00198: CALL       
+	00199: CALL       
+	00200: MIRP[nrp0,md,rd,1] 
+	00201: SRP0       
+	00202: MIRP[srp0,nmd,rd,2] 
+	00203: CALL       
+	00204: CALL       
+	00205: CALL       
+	00206: CALL       
+	00207: CALL       
+	00208: CALL       
+	00209: CALL       
+	00210: CALL       
+	00211: CALL       
+	00212: CALL       
+	00213: MIRP[nrp0,md,rd,1] 
+	00214: SVTCA[y-axis] 
+	00215: MIAP[rd+ci] 
+	00216: MIRP[nrp0,md,rd,1] 
+	00217: MIAP[rd+ci] 
+	00218: MIRP[nrp0,md,rd,1] 
+	00219: IUP[y]     
+	00220: IUP[x]     
+	00221: SVTCA[x-axis] 
+	00222: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:                                      Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual                 X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:                                      Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short         Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    90,   526)  ->  Abs (    90,   526)
+	  1: Rel (     0,   254)  ->  Abs (    90,   780)
+	  2: Rel (   273,   310)  ->  Abs (   363,  1090)
+	  3: Rel (   225,     0)  ->  Abs (   588,  1090)
+	  4: Rel (   134,     0)  ->  Abs (   722,  1090)
+	  5: Rel (   216,  -117)  ->  Abs (   938,   973)
+	  6: Rel (   148,  -256)  ->  Abs (  1086,   717)
+	  7: Rel (     0,  -191)  ->  Abs (  1086,   526)
+	  8: Rel (     0,  -157)  ->  Abs (  1086,   369)
+	  9: Rel (  -112,  -248)  ->  Abs (   974,   121)
+	 10: Rel (  -226,  -152)  ->  Abs (   748,   -31)
+	 11: Rel (  -160,     0)  ->  Abs (   588,   -31)
+	 12: Rel (  -225,     0)  ->  Abs (   363,   -31)
+	 13: Rel (  -273,   305)  ->  Abs (    90,   274)
+	 14: Rel (   209,   252)  ->  Abs (   299,   526)
+	 15: Rel (     0,  -188)  ->  Abs (   299,   338)
+	 16: Rel (   152,  -209)  ->  Abs (   451,   129)
+	 17: Rel (   137,     0)  ->  Abs (   588,   129)
+	 18: Rel (   148,     0)  ->  Abs (   736,   129)
+	 19: Rel (   143,   226)  ->  Abs (   879,   355)
+	 20: Rel (     0,   173)  ->  Abs (   879,   528)
+	 21: Rel (     0,   192)  ->  Abs (   879,   720)
+	 22: Rel (  -154,   214)  ->  Abs (   725,   934)
+	 23: Rel (  -137,     0)  ->  Abs (   588,   934)
+	 24: Rel (  -145,     0)  ->  Abs (   443,   934)
+	 25: Rel (  -144,  -231)  ->  Abs (   299,   703)
+
+	Glyph 690: off = 0x0001FAB2, len = 216
+	  numberOfContours:	1
+	  xMin:			25
+	  yMin:			-98
+	  xMax:			949
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	145
+	00000: NPUSHB      (31):   135    17     1     8     0    53    13   121     0   121 
+	                             3   117    12   117    13   137     0     7    27     0 
+	                            24     3    59     4   105     4     4     0     3     2 
+	                             2 
+	00033: PUSHW[1]             -8 
+	00036: NPUSHB      (54):    15    16     6    85     2    32     1     0    20     1 
+	                             1     0     3     0     2    16   249     0    15    16 
+	                            15     2    15     7     2     1     6     3     3    16 
+	                             3     2     0     2     1    18    12    12     6    85 
+	                             1     1     8    16    15    15    31    16     1    16 
+	                            16     7    32     8 
+	00092: PUSHW[2]            717    19 
+	00097: SRP0       
+	00098: MIRP[srp0,nmd,rd,2] 
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: SHP[rp1,zp0] 
+	00101: MDAP[rd]   
+	00102: DELTAP1    
+	00103: SHP[rp1,zp0] 
+	00104: MDAP[rd]   
+	00105: SRP1       
+	00106: SRP2       
+	00107: IP         
+	00108: MDAP[rd]   
+	00109: CALL       
+	00110: SHP[rp1,zp0] 
+	00111: SHP[rp1,zp0] 
+	00112: SRP1       
+	00113: SHP[rp1,zp0] 
+	00114: RTHG       
+	00115: SRP1       
+	00116: IP         
+	00117: MDAP[rd]   
+	00118: SVTCA[y-axis] 
+	00119: RTG        
+	00120: MIAP[rd+ci] 
+	00121: ALIGNRP    
+	00122: ALIGNRP    
+	00123: MDAP[rd]   
+	00124: DELTAP1    
+	00125: MIRP[srp0,md,rd,1] 
+	00126: SRP1       
+	00127: IP         
+	00128: IP         
+	00129: SDPVTL[1]  
+	00130: SFVTCA[x-axis] 
+	00131: MDAP[nrd]  
+	00132: CALL       
+	00133: CALL       
+	00134: SDPVTL[1]  
+	00135: SFVTPV     
+	00136: RDTG       
+	00137: MDRP[nrp0,nmd,rd,0] 
+	00138: IUP[y]     
+	00139: IUP[x]     
+	00140: SVTCA[x-axis] 
+	00141: DELTAP1    
+	00142: DELTAP1    
+	00143: SVTCA[y-axis] 
+	00144: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                              X-Short On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                 X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:        XDual                 X-Short On
+	  8:  YDual XDual                 X-Short On
+	  9:                              X-Short On
+	 10:              Rep-  3 Y-Short X-Short Off
+	 14:                      Y-Short         Off
+	 15:                      Y-Short         On
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   316,   129)  ->  Abs (   316,   129)
+	  1: Rel (  -184,   932)  ->  Abs (   132,  1061)
+	  2: Rel (   201,     0)  ->  Abs (   333,  1061)
+	  3: Rel (   157,  -873)  ->  Abs (   490,   188)
+	  4: Rel (   170,    67)  ->  Abs (   660,   255)
+	  5: Rel (    86,   251)  ->  Abs (   746,   506)
+	  6: Rel (     0,   190)  ->  Abs (   746,   696)
+	  7: Rel (    10,   365)  ->  Abs (   756,  1061)
+	  8: Rel (   193,     0)  ->  Abs (   949,  1061)
+	  9: Rel (   -10,  -281)  ->  Abs (   939,   780)
+	 10: Rel (    -8,  -203)  ->  Abs (   931,   577)
+	 11: Rel (   -19,  -164)  ->  Abs (   912,   413)
+	 12: Rel (   -85,  -197)  ->  Abs (   827,   216)
+	 13: Rel (  -164,  -145)  ->  Abs (   663,    71)
+	 14: Rel (  -317,  -120)  ->  Abs (   346,   -49)
+	 15: Rel (  -294,   -49)  ->  Abs (    52,   -98)
+	 16: Rel (   -27,   166)  ->  Abs (    25,    68)
+	 17: Rel (   179,    26)  ->  Abs (   204,    94)
+
+	Glyph 691: off = 0x0001FB8A, len = 230
+	  numberOfContours:	1
+	  xMin:			110
+	  yMin:			-408
+	  xMax:			1015
+	  yMax:			1073
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	146
+	00000: NPUSHB       (9):    56    22    73    22    91    22     3    15    23 
+	00011: PUSHW[1]            -16 
+	00014: PUSHB[3]              2    16    21 
+	00018: PUSHW[1]            -16 
+	00021: NPUSHB      (23):     2     3   108     8     8    14    26    19    14    12 
+	                            12    24   249    14     7     5     5     6     6     0 
+	                            20    32    17 
+	00046: PUSHW[1]             -8 
+	00049: PUSHB[5]             11    12     6    85    17 
+	00055: PUSHW[1]             -4 
+	00058: NPUSHB      (17):    13    13     6    85    17    20    15    15     6    85 
+	                            17    35    16    16     6    85    17 
+	00077: PUSHW[1]            712 
+	00080: NPUSHB      (22):    27     0    32    12    18    11    13     6    85    12 
+	                             8    15    15     6    85    12    18    16    16     6 
+	                            85    12 
+	00104: PUSHW[2]            713    26 
+	00109: SRP0       
+	00110: MIRP[srp0,nmd,rd,2] 
+	00111: CALL       
+	00112: CALL       
+	00113: CALL       
+	00114: MIRP[nrp0,md,rd,1] 
+	00115: SRP0       
+	00116: MIRP[srp0,nmd,rd,2] 
+	00117: CALL       
+	00118: CALL       
+	00119: CALL       
+	00120: CALL       
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: SRP1       
+	00123: IP         
+	00124: MDAP[rd]   
+	00125: SHP[rp1,zp0] 
+	00126: MDAP[rd]   
+	00127: SVTCA[y-axis] 
+	00128: MIAP[rd+ci] 
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: SHP[rp1,zp0] 
+	00131: MDAP[rd]   
+	00132: MIAP[rd+ci] 
+	00133: SRP1       
+	00134: SRP2       
+	00135: IP         
+	00136: MDAP[rd]   
+	00137: MIRP[nrp0,md,rd,1] 
+	00138: IUP[y]     
+	00139: IUP[x]     
+	00140: SLOOP      
+	00141: SHPIX      
+	00142: SVTCA[x-axis] 
+	00143: SLOOP      
+	00144: SHPIX      
+	00145: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:        XDual                         On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:                      Y-Short         Off
+	 17:        XDual                         On
+	 18:        XDual                         On
+	 19:  YDual                       X-Short On
+	 20:        XDual                         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   294,   897)  ->  Abs (   294,   897)
+	  1: Rel (     0,  -281)  ->  Abs (   294,   616)
+	  2: Rel (     0,  -122)  ->  Abs (   294,   494)
+	  3: Rel (   123,     0)  ->  Abs (   417,   494)
+	  4: Rel (    50,     0)  ->  Abs (   467,   494)
+	  5: Rel (    34,    12)  ->  Abs (   501,   506)
+	  6: Rel (    21,  -139)  ->  Abs (   522,   367)
+	  7: Rel (   -59,   -25)  ->  Abs (   463,   342)
+	  8: Rel (   -76,     0)  ->  Abs (   387,   342)
+	  9: Rel (  -130,     0)  ->  Abs (   257,   342)
+	 10: Rel (  -147,   140)  ->  Abs (   110,   482)
+	 11: Rel (     0,   139)  ->  Abs (   110,   621)
+	 12: Rel (     0,   399)  ->  Abs (   110,  1020)
+	 13: Rel (   180,    53)  ->  Abs (   290,  1073)
+	 14: Rel (   193,     0)  ->  Abs (   483,  1073)
+	 15: Rel (   240,     0)  ->  Abs (   723,  1073)
+	 16: Rel (   292,  -198)  ->  Abs (  1015,   875)
+	 17: Rel (     0,  -281)  ->  Abs (  1015,   594)
+	 18: Rel (     0, -1002)  ->  Abs (  1015,  -408)
+	 19: Rel (  -190,     0)  ->  Abs (   825,  -408)
+	 20: Rel (     0,   983)  ->  Abs (   825,   575)
+	 21: Rel (     0,   111)  ->  Abs (   825,   686)
+	 22: Rel (   -51,   137)  ->  Abs (   774,   823)
+	 23: Rel (  -160,    92)  ->  Abs (   614,   915)
+	 24: Rel (  -143,     0)  ->  Abs (   471,   915)
+	 25: Rel (   -98,     0)  ->  Abs (   373,   915)
+
+	Glyph 692: off = 0x0001FC70, len = 262
+	  numberOfContours:	1
+	  xMin:			115
+	  yMin:			-16
+	  xMax:			1029
+	  yMax:			1079
+
+	EndPoints
+	---------
+	  0:  32
+
+	  Length of Instructions:	160
+	00000: NPUSHB      (57):    77    14    75    18   122    14   139    14     4    47 
+	                            14    47    18    61    14    61    18     4    24   108 
+	                            29    29     2     8    11   249    10    10    13   249 
+	                             8    11     0     0    19   249     2     7    11    11 
+	                            10    10    32    26    26    27    27    22    16    38 
+	                             5     8    16    16     6    85     5 
+	00059: PUSHW[1]             -8 
+	00062: PUSHB[5]             15    15     6    85     5 
+	00068: PUSHW[1]             -8 
+	00071: PUSHB[8]             11    13     6    85    32     5     1     5 
+	00080: PUSHW[6]            710    34    22   719    32    -8 
+	00093: NPUSHB      (17):    16    16     6    85    32    14    15    15     6    85 
+	                            32    14    11    13     6    85    32 
+	00112: PUSHW[2]            713    33 
+	00117: SRP0       
+	00118: MIRP[srp0,nmd,rd,0] 
+	00119: CALL       
+	00120: CALL       
+	00121: CALL       
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: SRP0       
+	00124: MIRP[srp0,nmd,rd,0] 
+	00125: DELTAP1    
+	00126: CALL       
+	00127: CALL       
+	00128: CALL       
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: SRP1       
+	00131: IP         
+	00132: MDAP[rd]   
+	00133: SHP[rp1,zp0] 
+	00134: MDAP[rd]   
+	00135: SRP1       
+	00136: SHP[rp1,zp0] 
+	00137: MDAP[rd]   
+	00138: SHP[rp1,zp0] 
+	00139: MDAP[rd]   
+	00140: SVTCA[y-axis] 
+	00141: MIAP[rd+ci] 
+	00142: MIRP[nrp0,md,rd,1] 
+	00143: SHP[rp1,zp0] 
+	00144: MDAP[rd]   
+	00145: MIAP[rd+ci] 
+	00146: MIRP[nrp0,md,rd,1] 
+	00147: SHP[rp1,zp0] 
+	00148: MDAP[rd]   
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: SRP1       
+	00151: SRP2       
+	00152: IP         
+	00153: MDAP[rd]   
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: IUP[y]     
+	00156: IUP[x]     
+	00157: SVTCA[x-axis] 
+	00158: DELTAP1    
+	00159: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:                                      Off
+	  5:        XDual                         On
+	  6:        XDual                         Off
+	  7:                                      Off
+	  8:  YDual                               On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short On
+	 28:                      Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   122,  1026)  ->  Abs (   122,  1026)
+	  1: Rel (   173,    53)  ->  Abs (   295,  1079)
+	  2: Rel (   189,     0)  ->  Abs (   484,  1079)
+	  3: Rel (   233,     0)  ->  Abs (   717,  1079)
+	  4: Rel (   312,  -274)  ->  Abs (  1029,   805)
+	  5: Rel (     0,  -260)  ->  Abs (  1029,   545)
+	  6: Rel (     0,  -257)  ->  Abs (  1029,   288)
+	  7: Rel (  -320,  -304)  ->  Abs (   709,   -16)
+	  8: Rel (  -286,     0)  ->  Abs (   423,   -16)
+	  9: Rel (  -195,     0)  ->  Abs (   228,   -16)
+	 10: Rel (  -113,    71)  ->  Abs (   115,    55)
+	 11: Rel (    46,   158)  ->  Abs (   161,   213)
+	 12: Rel (    98,   -63)  ->  Abs (   259,   150)
+	 13: Rel (   151,     0)  ->  Abs (   410,   150)
+	 14: Rel (   171,     0)  ->  Abs (   581,   150)
+	 15: Rel (   247,   195)  ->  Abs (   828,   345)
+	 16: Rel (     0,   196)  ->  Abs (   828,   541)
+	 17: Rel (     0,   172)  ->  Abs (   828,   713)
+	 18: Rel (  -194,   209)  ->  Abs (   634,   922)
+	 19: Rel (  -162,     0)  ->  Abs (   472,   922)
+	 20: Rel (   -84,     0)  ->  Abs (   388,   922)
+	 21: Rel (   -82,   -19)  ->  Abs (   306,   903)
+	 22: Rel (     0,  -194)  ->  Abs (   306,   709)
+	 23: Rel (     0,  -123)  ->  Abs (   306,   586)
+	 24: Rel (   123,     0)  ->  Abs (   429,   586)
+	 25: Rel (    50,     0)  ->  Abs (   479,   586)
+	 26: Rel (    34,    12)  ->  Abs (   513,   598)
+	 27: Rel (    20,  -139)  ->  Abs (   533,   459)
+	 28: Rel (   -58,   -25)  ->  Abs (   475,   434)
+	 29: Rel (   -77,     0)  ->  Abs (   398,   434)
+	 30: Rel (  -130,     0)  ->  Abs (   268,   434)
+	 31: Rel (  -146,   141)  ->  Abs (   122,   575)
+	 32: Rel (     0,   138)  ->  Abs (   122,   713)
+
+	Glyph 693: off = 0x0001FD76, len = 230
+	  numberOfContours:	1
+	  xMin:			25
+	  yMin:			-408
+	  xMax:			865
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	166
+	00000: PUSHW[2]              3   -20 
+	00005: NPUSHB      (65):    15    16     6    85     9     3     1    87     4   104 
+	                             2   102     3   102     4   120     2   118     4   233 
+	                             3   249     3     8    25     1    20    11    38    11 
+	                            47    15    54    11    72     2    71     4    88     2 
+	                             8    12    16     1     4   108     0    12    16    12 
+	                             2    12    12     2     0    14     9     8     3     2 
+	                             6     4    12    32     1 
+	00072: PUSHW[1]             -8 
+	00075: NPUSHB      (26):    11    13     6    85     1    36    15    16     6    85 
+	                           143     1     1    31     1    47     1   111     1   127 
+	                             1     4     1     1     9     2 
+	00103: PUSHW[1]            -16 
+	00106: NPUSHB      (16):     3    32    15     2    63     2    95     2   127     2 
+	                             4     2     2     8    32     9 
+	00124: PUSHW[2]            710    15 
+	00129: SRP0       
+	00130: MIRP[srp0,nmd,rd,2] 
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: SHP[rp1,zp0] 
+	00133: MDAP[rd]   
+	00134: DELTAP1    
+	00135: MIRP[nrp0,md,rd,1] 
+	00136: SHPIX      
+	00137: SRP2       
+	00138: IP         
+	00139: MDAP[rd]   
+	00140: DELTAP1    
+	00141: DELTAP2    
+	00142: CALL       
+	00143: CALL       
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: IP         
+	00146: SVTCA[y-axis] 
+	00147: MIAP[rd+ci] 
+	00148: ALIGNRP    
+	00149: ALIGNRP    
+	00150: ALIGNRP    
+	00151: MIAP[rd+ci] 
+	00152: SRP2       
+	00153: IP         
+	00154: MDAP[rd]   
+	00155: DELTAP1    
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: SHP[rp1,zp0] 
+	00158: SHPIX      
+	00159: IUP[y]     
+	00160: IUP[x]     
+	00161: SVTCA[x-axis] 
+	00162: DELTAP1    
+	00163: DELTAP1    
+	00164: DELTAP2    
+	00165: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:                                      On
+	  3:  YDual XDual                 X-Short On
+	  4:                                      On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual                 X-Short On
+	  9:  YDual XDual                 X-Short On
+	 10:                              X-Short On
+	 11:                              X-Short Off
+	 12:                      Y-Short         On
+	 13:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   345,  -408)  ->  Abs (   345,  -408)
+	  1: Rel (     0,   809)  ->  Abs (   345,   401)
+	  2: Rel (  -320,   660)  ->  Abs (    25,  1061)
+	  3: Rel (   203,     0)  ->  Abs (   228,  1061)
+	  4: Rel (   256,  -529)  ->  Abs (   484,   532)
+	  5: Rel (    79,    47)  ->  Abs (   563,   579)
+	  6: Rel (    64,   115)  ->  Abs (   627,   694)
+	  7: Rel (    10,    97)  ->  Abs (   637,   791)
+	  8: Rel (    29,   270)  ->  Abs (   666,  1061)
+	  9: Rel (   199,     0)  ->  Abs (   865,  1061)
+	 10: Rel (   -33,  -307)  ->  Abs (   832,   754)
+	 11: Rel (   -29,  -270)  ->  Abs (   803,   484)
+	 12: Rel (  -270,  -105)  ->  Abs (   533,   379)
+	 13: Rel (     0,  -787)  ->  Abs (   533,  -408)
+
+	Glyph 694: off = 0x0001FE5C, len = 226
+	  numberOfContours:	1
+	  xMin:			10
+	  yMin:			0
+	  xMax:			870
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	155
+	00000: PUSHW[2]             10   -20 
+	00005: NPUSHB      (28):    11    12     6    85    11    20    13    16     6    85 
+	                             7    13    47    19    58     5    58    10    72    10 
+	                           118     4   132     4     7    12    16     5 
+	00035: PUSHW[3]            -16    13   -16 
+	00042: NPUSHB      (30):     5    13     5    13     6    12    10     6    12    12 
+	                           186    11    10    20    11    11    10     6    10   249 
+	                             7    10    17    12    11     6     9     9    12    11 
+	00074: PUSHW[1]            -16 
+	00077: NPUSHB      (22):    15    11    47    11     2    11    11     0    10     6 
+	                             6     7     7    17    10    16    16     6    85    17 
+	                            32     0 
+	00101: PUSHW[2]            710    19 
+	00106: SRP0       
+	00107: MIRP[srp0,nmd,rd,2] 
+	00108: MIRP[nrp0,md,rd,1] 
+	00109: CALL       
+	00110: SHP[rp1,zp0] 
+	00111: MDAP[rd]   
+	00112: ALIGNRP    
+	00113: SRP1       
+	00114: SHP[rp1,zp0] 
+	00115: SRP1       
+	00116: SHP[rp1,zp0] 
+	00117: MDAP[rd]   
+	00118: DELTAP1    
+	00119: SHPIX      
+	00120: SHP[rp1,zp0] 
+	00121: SHP[rp1,zp0] 
+	00122: MDAP[rd]   
+	00123: SVTCA[y-axis] 
+	00124: MIAP[rd+ci] 
+	00125: ALIGNRP    
+	00126: ALIGNRP    
+	00127: MIAP[rd+ci] 
+	00128: MIRP[srp0,md,rd,1] 
+	00129: IP         
+	00130: SDPVTL[1]  
+	00131: SFVTCA[x-axis] 
+	00132: MDAP[nrd]  
+	00133: CALL       
+	00134: SDPVTL[1]  
+	00135: RDTG       
+	00136: MDRP[nrp0,nmd,rd,0] 
+	00137: SVTCA[x-axis] 
+	00138: SRP1       
+	00139: SRP2       
+	00140: IP         
+	00141: IP         
+	00142: SVTCA[y-axis] 
+	00143: IP         
+	00144: IP         
+	00145: SHPIX      
+	00146: SVTCA[x-axis] 
+	00147: SHPIX      
+	00148: SHPIX      
+	00149: IUP[y]     
+	00150: IUP[x]     
+	00151: SVTCA[x-axis] 
+	00152: DELTAP1    
+	00153: CALL       
+	00154: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:              Rep-  2 Y-Short X-Short Off
+	  5:                      Y-Short X-Short On
+	  6:        XDual                 X-Short On
+	  7:        XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual                               On
+	 11:                                      On
+	 12:  YDual XDual                 X-Short On
+	 13:                                      On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   870,  1061)  ->  Abs (   870,  1061)
+	  1: Rel (   -10,  -191)  ->  Abs (   860,   870)
+	  2: Rel (    -5,   -95)  ->  Abs (   855,   775)
+	  3: Rel (   -33,  -117)  ->  Abs (   822,   658)
+	  4: Rel (  -106,  -124)  ->  Abs (   716,   534)
+	  5: Rel (  -116,   -67)  ->  Abs (   600,   467)
+	  6: Rel (   227,  -354)  ->  Abs (   827,   113)
+	  7: Rel (     0,  -113)  ->  Abs (   827,     0)
+	  8: Rel (  -764,     0)  ->  Abs (    63,     0)
+	  9: Rel (     0,   160)  ->  Abs (    63,   160)
+	 10: Rel (   533,     0)  ->  Abs (   596,   160)
+	 11: Rel (  -586,   901)  ->  Abs (    10,  1061)
+	 12: Rel (   217,     0)  ->  Abs (   227,  1061)
+	 13: Rel (   295,  -471)  ->  Abs (   522,   590)
+	 14: Rel (    75,    55)  ->  Abs (   597,   645)
+	 15: Rel (    64,   125)  ->  Abs (   661,   770)
+	 16: Rel (     0,   115)  ->  Abs (   661,   885)
+	 17: Rel (    10,   176)  ->  Abs (   671,  1061)
+
+	Glyph 695: off = 0x0001FF3E, len = 244
+	  numberOfContours:	2
+	  xMin:			150
+	  yMin:			-408
+	  xMax:			1016
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  20
+	  1:  24
+
+	  Length of Instructions:	159
+	00000: NPUSHB      (25):    16    26   117     6   131     6     3    22    21    14 
+	                            10    10    20   249     0     6     8    32    11    14 
+	                            16    16     6    85    11 
+	00027: PUSHW[1]            -12 
+	00030: NPUSHB      (28):    15    15     6    85    11    12    13    13     6    85 
+	                            11    22    12    12     6    85    11    11     0    18 
+	                            32     2     6    16    16     6    85     2 
+	00060: PUSHW[1]            -11 
+	00063: PUSHB[5]             15    15     6    85     2 
+	00069: PUSHW[1]            -11 
+	00072: PUSHB[8]             11    12     6    85    16     2     1     2 
+	00081: PUSHW[4]            714    26    23   739 
+	00090: PUSHB[3]             22    22     0 
+	00094: PUSHW[1]            -23 
+	00097: PUSHB[5]             15    16     6    85     0 
+	00103: PUSHW[1]            -13 
+	00106: PUSHB[5]             13    13     6    85     0 
+	00112: PUSHW[1]            -11 
+	00115: PUSHB[5]             12    12     6    85     0 
+	00121: PUSHW[2]            711    25 
+	00126: SRP0       
+	00127: MIRP[srp0,nmd,rd,2] 
+	00128: CALL       
+	00129: CALL       
+	00130: CALL       
+	00131: SHP[rp2,zp1] 
+	00132: MDAP[rd]   
+	00133: MIRP[nrp0,md,rd,1] 
+	00134: SRP0       
+	00135: MIRP[srp0,nmd,rd,2] 
+	00136: DELTAP1    
+	00137: CALL       
+	00138: CALL       
+	00139: CALL       
+	00140: MIRP[nrp0,md,rd,1] 
+	00141: SRP2       
+	00142: IP         
+	00143: MDAP[rd]   
+	00144: CALL       
+	00145: CALL       
+	00146: CALL       
+	00147: CALL       
+	00148: MIRP[nrp0,md,rd,1] 
+	00149: SVTCA[y-axis] 
+	00150: MIAP[rd+ci] 
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: MIAP[rd+ci] 
+	00153: MIAP[rd+ci] 
+	00154: MDAP[rd]   
+	00155: IUP[y]     
+	00156: IUP[x]     
+	00157: SVTCA[x-axis] 
+	00158: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         On
+	 10:  YDual                       X-Short On
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual                               On
+	 21:        XDual                 X-Short On
+	 22:        XDual                         On
+	 23:  YDual XDual                 X-Short On
+	 24:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   150,  1061)  ->  Abs (   150,  1061)
+	  1: Rel (   866,     0)  ->  Abs (  1016,  1061)
+	  2: Rel (     0,  -264)  ->  Abs (  1016,   797)
+	  3: Rel (     0,  -113)  ->  Abs (  1016,   684)
+	  4: Rel (   -41,  -137)  ->  Abs (   975,   547)
+	  5: Rel (   -53,   -72)  ->  Abs (   922,   475)
+	  6: Rel (   -53,   -72)  ->  Abs (   869,   403)
+	  7: Rel (   -82,  -110)  ->  Abs (   787,   293)
+	  8: Rel (     0,  -123)  ->  Abs (   787,   170)
+	  9: Rel (     0,  -170)  ->  Abs (   787,     0)
+	 10: Rel (  -191,     0)  ->  Abs (   596,     0)
+	 11: Rel (     0,   143)  ->  Abs (   596,   143)
+	 12: Rel (     0,   109)  ->  Abs (   596,   252)
+	 13: Rel (    39,   135)  ->  Abs (   635,   387)
+	 14: Rel (    62,    78)  ->  Abs (   697,   465)
+	 15: Rel (    59,    76)  ->  Abs (   756,   541)
+	 16: Rel (    43,    55)  ->  Abs (   799,   596)
+	 17: Rel (    27,    89)  ->  Abs (   826,   685)
+	 18: Rel (     0,    73)  ->  Abs (   826,   758)
+	 19: Rel (     0,   143)  ->  Abs (   826,   901)
+	 20: Rel (  -676,     0)  ->  Abs (   150,   901)
+	 21: Rel (    16, -1309)  ->  Abs (   166,  -408)
+	 22: Rel (     0,  1006)  ->  Abs (   166,   598)
+	 23: Rel (   183,     0)  ->  Abs (   349,   598)
+	 24: Rel (     0, -1006)  ->  Abs (   349,  -408)
+
+	Glyph 696: off = 0x00020032, len = 158
+	  numberOfContours:	1
+	  xMin:			40
+	  yMin:			0
+	  xMax:			898
+	  yMax:			1073
+
+	EndPoints
+	---------
+	  0:  14
+
+	  Length of Instructions:	104
+	00000: PUSHB[8]             43    10    59    10    73    10     3     3 
+	00009: PUSHW[3]            -16     4   -16 
+	00016: NPUSHB      (21):     7    10    14   249     0     6     0    12   249     2 
+	                             7    14    14    47     0     1     0     0     8    32 
+	                             5 
+	00039: PUSHW[1]            -14 
+	00042: NPUSHB      (11):    12    12     6    85     5     8    13    13     6    85 
+	                             5 
+	00055: PUSHW[1]            -35 
+	00058: PUSHB[5]             15    15     6    85     5 
+	00064: PUSHW[1]            -32 
+	00067: PUSHB[5]             16    16     6    85     5 
+	00073: PUSHW[2]            712    16 
+	00078: SRP0       
+	00079: MIRP[srp0,nmd,rd,2] 
+	00080: CALL       
+	00081: CALL       
+	00082: CALL       
+	00083: CALL       
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: SHP[rp1,zp0] 
+	00086: MDAP[rd]   
+	00087: DELTAP1    
+	00088: SHP[rp1,zp0] 
+	00089: MDAP[rd]   
+	00090: SVTCA[y-axis] 
+	00091: MIAP[rd+ci] 
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: SHP[rp1,zp0] 
+	00094: MIAP[rd+ci] 
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: MIAP[rd+ci] 
+	00097: IUP[y]     
+	00098: IUP[x]     
+	00099: SHPIX      
+	00100: SVTCA[x-axis] 
+	00101: SHPIX      
+	00102: SVTCA[x-axis] 
+	00103: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual                               Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual                         On
+	  7:  YDual                       X-Short On
+	  8:        XDual                         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    40,  1051)  ->  Abs (    40,  1051)
+	  1: Rel (   154,    22)  ->  Abs (   194,  1073)
+	  2: Rel (   129,     0)  ->  Abs (   323,  1073)
+	  3: Rel (   322,     0)  ->  Abs (   645,  1073)
+	  4: Rel (   253,  -249)  ->  Abs (   898,   824)
+	  5: Rel (     0,  -251)  ->  Abs (   898,   573)
+	  6: Rel (     0,  -573)  ->  Abs (   898,     0)
+	  7: Rel (  -190,     0)  ->  Abs (   708,     0)
+	  8: Rel (     0,   522)  ->  Abs (   708,   522)
+	  9: Rel (     0,   145)  ->  Abs (   708,   667)
+	 10: Rel (   -62,   148)  ->  Abs (   646,   815)
+	 11: Rel (  -176,    92)  ->  Abs (   470,   907)
+	 12: Rel (  -158,     0)  ->  Abs (   312,   907)
+	 13: Rel (  -107,     0)  ->  Abs (   205,   907)
+	 14: Rel (  -149,   -20)  ->  Abs (    56,   887)
+
+	Glyph 697: off = 0x000200D0, len = 262
+	  numberOfContours:	1
+	  xMin:			100
+	  yMin:			-29
+	  xMax:			1322
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  33
+
+	  Length of Instructions:	145
+	00000: NPUSHB      (70):     7    15     8    19    22    15    28    19    25    26 
+	                            43    31    47    35    49    15    53    16    61    19 
+	                            61    26    49    30    72    20    72    25    89     5 
+	                            92    18    90    31   104     5   106    18   106    31 
+	                           117    11   114    12   116    16   118    26   121    31 
+	                           140     5   137    30   137    31    28    14     3     3 
+	                            33    17   249    28    11    22     7    33     6     8 
+	00072: PUSHW[1]             -8 
+	00075: NPUSHB      (24):    16    16     6    85    22     8    16    16     6    85 
+	                            33     8    16    16     6    85     8    32     7     7 
+	                            33    22    32    23 
+	00101: PUSHW[1]            710 
+	00104: PUSHB[6]             35    14     3     0    32    33 
+	00111: PUSHW[2]            709    34 
+	00116: SRP0       
+	00117: MIRP[srp0,nmd,rd,0] 
+	00118: MIRP[srp0,md,rd,1] 
+	00119: SHP[rp2,zp1] 
+	00120: SHP[rp2,zp1] 
+	00121: SRP0       
+	00122: MIRP[srp0,nmd,rd,2] 
+	00123: MIRP[nrp0,md,rd,1] 
+	00124: SRP2       
+	00125: IP         
+	00126: MDAP[rd]   
+	00127: MIRP[nrp0,md,rd,1] 
+	00128: CALL       
+	00129: CALL       
+	00130: CALL       
+	00131: SVTCA[y-axis] 
+	00132: MIAP[rd+ci] 
+	00133: ALIGNRP    
+	00134: ALIGNRP    
+	00135: MIAP[rd+ci] 
+	00136: MIRP[nrp0,md,rd,1] 
+	00137: SRP2       
+	00138: IP         
+	00139: MDAP[rd]   
+	00140: SHP[rp1,zp0] 
+	00141: IUP[y]     
+	00142: IUP[x]     
+	00143: SVTCA[x-axis] 
+	00144: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short On
+	  2:        XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:        XDual                 X-Short On
+	  8:  YDual XDual                 X-Short On
+	  9:                              X-Short On
+	 10:              Rep-  3 Y-Short X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:        XDual                 X-Short On
+	 23:  YDual XDual                 X-Short On
+	 24:                              X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:                              X-Short Off
+	 27:                      Y-Short         Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:                              X-Short Off
+	 32:        XDual                         On
+	 33:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   294,  1061)  ->  Abs (   294,  1061)
+	  1: Rel (     4,  -172)  ->  Abs (   298,   889)
+	  2: Rel (     6,  -265)  ->  Abs (   304,   624)
+	  3: Rel (    17,  -102)  ->  Abs (   321,   522)
+	  4: Rel (   106,     0)  ->  Abs (   427,   522)
+	  5: Rel (   170,   106)  ->  Abs (   597,   628)
+	  6: Rel (     0,   148)  ->  Abs (   597,   776)
+	  7: Rel (    21,   285)  ->  Abs (   618,  1061)
+	  8: Rel (   192,     0)  ->  Abs (   810,  1061)
+	  9: Rel (   -24,  -334)  ->  Abs (   786,   727)
+	 10: Rel (    -6,   -85)  ->  Abs (   780,   642)
+	 11: Rel (   -26,   -88)  ->  Abs (   754,   554)
+	 12: Rel (   -81,   -98)  ->  Abs (   673,   456)
+	 13: Rel (  -175,   -73)  ->  Abs (   498,   383)
+	 14: Rel (  -148,   -12)  ->  Abs (   350,   371)
+	 15: Rel (    25,  -108)  ->  Abs (   375,   263)
+	 16: Rel (   182,  -130)  ->  Abs (   557,   133)
+	 17: Rel (   133,     0)  ->  Abs (   690,   133)
+	 18: Rel (   123,     0)  ->  Abs (   813,   133)
+	 19: Rel (   176,   117)  ->  Abs (   989,   250)
+	 20: Rel (    84,   185)  ->  Abs (  1073,   435)
+	 21: Rel (    14,   171)  ->  Abs (  1087,   606)
+	 22: Rel (    43,   455)  ->  Abs (  1130,  1061)
+	 23: Rel (   192,     0)  ->  Abs (  1322,  1061)
+	 24: Rel (   -36,  -393)  ->  Abs (  1286,   668)
+	 25: Rel (   -21,  -221)  ->  Abs (  1265,   447)
+	 26: Rel (  -108,  -294)  ->  Abs (  1157,   153)
+	 27: Rel (  -267,  -182)  ->  Abs (   890,   -29)
+	 28: Rel (  -211,     0)  ->  Abs (   679,   -29)
+	 29: Rel (  -187,     0)  ->  Abs (   492,   -29)
+	 30: Rel (  -253,   181)  ->  Abs (   239,   152)
+	 31: Rel (  -125,   336)  ->  Abs (   114,   488)
+	 32: Rel (     0,   280)  ->  Abs (   114,   768)
+	 33: Rel (   -14,   293)  ->  Abs (   100,  1061)
+
+	Glyph 698: off = 0x000201D6, len = 250
+	  numberOfContours:	1
+	  xMin:			40
+	  yMin:			-8
+	  xMax:			1171
+	  yMax:			1073
+
+	EndPoints
+	---------
+	  0:  30
+
+	  Length of Instructions:	154
+	00000: NPUSHB      (76):    73    21    73    22    90    21   101    15   117    15 
+	                             5     1   232     0     0     3   249    29    10    18 
+	                            10     7    24   249    12     7    10    10     0    24 
+	                            32     7    11    11    11     6    85     7    15    12 
+	                            12     6    85     7    15    15    15     6    85     7 
+	                             8    16    16     6    85    64     7     1     7     7 
+	                            16     0     0     1     1    10     9     9    47    10 
+	                             1    10    10    19    32    16 
+	00078: PUSHW[1]            -11 
+	00081: PUSHB[5]             12    12     6    85    16 
+	00087: PUSHW[1]            -35 
+	00090: PUSHB[5]             15    15     6    85    16 
+	00096: PUSHW[1]            -32 
+	00099: PUSHB[5]             16    16     6    85    16 
+	00105: PUSHW[2]            712    32 
+	00110: SRP0       
+	00111: MIRP[srp0,nmd,rd,2] 
+	00112: CALL       
+	00113: CALL       
+	00114: CALL       
+	00115: MIRP[nrp0,md,rd,1] 
+	00116: SHP[rp1,zp0] 
+	00117: MDAP[rd]   
+	00118: DELTAP1    
+	00119: SHP[rp1,zp0] 
+	00120: MDAP[rd]   
+	00121: SRP1       
+	00122: SHP[rp1,zp0] 
+	00123: MDAP[rd]   
+	00124: SHP[rp1,zp0] 
+	00125: MDAP[rd]   
+	00126: SRP2       
+	00127: IP         
+	00128: MDAP[rd]   
+	00129: DELTAP2    
+	00130: CALL       
+	00131: CALL       
+	00132: CALL       
+	00133: CALL       
+	00134: MIRP[nrp0,md,rd,1] 
+	00135: SRP2       
+	00136: IP         
+	00137: MDAP[rd]   
+	00138: SVTCA[y-axis] 
+	00139: MIAP[rd+ci] 
+	00140: MIRP[srp0,md,rd,1] 
+	00141: SHP[rp2,zp1] 
+	00142: MIAP[rd+ci] 
+	00143: MIAP[rd+ci] 
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: SHP[rp1,zp0] 
+	00146: RTHG       
+	00147: MDAP[rd]   
+	00148: RTG        
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: IUP[y]     
+	00151: IUP[x]     
+	00152: SVTCA[x-axis] 
+	00153: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:        XDual                         On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:                      Y-Short         Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:        XDual                         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:                      Y-Short X-Short On
+	 25:        XDual                         On
+	 26:        XDual         Y-Short         Off
+	 27:                      Y-Short X-Short Off
+	 28:                      Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    40,    25)  ->  Abs (    40,    25)
+	  1: Rel (    33,   143)  ->  Abs (    73,   168)
+	  2: Rel (    52,   -18)  ->  Abs (   125,   150)
+	  3: Rel (    61,     0)  ->  Abs (   186,   150)
+	  4: Rel (    69,     0)  ->  Abs (   255,   150)
+	  5: Rel (    52,    61)  ->  Abs (   307,   211)
+	  6: Rel (     0,    80)  ->  Abs (   307,   291)
+	  7: Rel (     0,   612)  ->  Abs (   307,   903)
+	  8: Rel (   -86,     0)  ->  Abs (   221,   903)
+	  9: Rel (  -125,   -18)  ->  Abs (    96,   885)
+	 10: Rel (   -17,   159)  ->  Abs (    79,  1044)
+	 11: Rel (   228,    29)  ->  Abs (   307,  1073)
+	 12: Rel (   235,     0)  ->  Abs (   542,  1073)
+	 13: Rel (   238,     0)  ->  Abs (   780,  1073)
+	 14: Rel (   256,   -80)  ->  Abs (  1036,   993)
+	 15: Rel (   135,  -213)  ->  Abs (  1171,   780)
+	 16: Rel (     0,  -207)  ->  Abs (  1171,   573)
+	 17: Rel (     0,  -573)  ->  Abs (  1171,     0)
+	 18: Rel (  -191,     0)  ->  Abs (   980,     0)
+	 19: Rel (     0,   522)  ->  Abs (   980,   522)
+	 20: Rel (     0,   155)  ->  Abs (   980,   677)
+	 21: Rel (   -47,   144)  ->  Abs (   933,   821)
+	 22: Rel (  -158,    90)  ->  Abs (   775,   911)
+	 23: Rel (  -182,     0)  ->  Abs (   593,   911)
+	 24: Rel (   -96,    -2)  ->  Abs (   497,   909)
+	 25: Rel (     0,  -643)  ->  Abs (   497,   266)
+	 26: Rel (     0,  -100)  ->  Abs (   497,   166)
+	 27: Rel (   -37,  -106)  ->  Abs (   460,    60)
+	 28: Rel (  -117,   -68)  ->  Abs (   343,    -8)
+	 29: Rel (  -116,     0)  ->  Abs (   227,    -8)
+	 30: Rel (   -94,     0)  ->  Abs (   133,    -8)
+
+	Glyph 699: off = 0x000202D0, len = 120
+	  numberOfContours:	2
+	  xMin:			155
+	  yMin:			0
+	  xMax:			855
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	79
+	00000: PUSHB[7]              2     6    10     3     7     6     9 
+	00008: PUSHW[1]            712 
+	00011: NPUSHB      (25):     0    32     3    13    15    15     6    85     3     3 
+	                            12    12     6    85     3   148     4    32     7    20 
+	                            16    16     6    85     7 
+	00038: PUSHW[1]             -3 
+	00041: PUSHB[5]             13    13     6    85     7 
+	00047: PUSHW[1]             -3 
+	00050: PUSHB[5]             11    11     6    85     7 
+	00056: PUSHW[2]            711     8 
+	00061: SRP0       
+	00062: MIRP[srp0,nmd,rd,2] 
+	00063: CALL       
+	00064: CALL       
+	00065: CALL       
+	00066: MIRP[srp0,md,rd,1] 
+	00067: MIRP[srp0,nmd,rd,2] 
+	00068: CALL       
+	00069: CALL       
+	00070: MIRP[srp0,md,rd,1] 
+	00071: MIRP[nrp0,nmd,rd,2] 
+	00072: SVTCA[y-axis] 
+	00073: MIAP[rd+ci] 
+	00074: ALIGNRP    
+	00075: MIAP[rd+ci] 
+	00076: ALIGNRP    
+	00077: IUP[y]     
+	00078: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   855,  1061)  ->  Abs (   855,  1061)
+	  1: Rel (     0, -1061)  ->  Abs (   855,     0)
+	  2: Rel (  -195,     0)  ->  Abs (   660,     0)
+	  3: Rel (     0,  1061)  ->  Abs (   660,  1061)
+	  4: Rel (  -310,     0)  ->  Abs (   350,  1061)
+	  5: Rel (     0, -1061)  ->  Abs (   350,     0)
+	  6: Rel (  -195,     0)  ->  Abs (   155,     0)
+	  7: Rel (     0,  1061)  ->  Abs (   155,  1061)
+
+	Glyph 700: off = 0x00020348, len = 120
+	  numberOfContours:	2
+	  xMin:			155
+	  yMin:			0
+	  xMax:			855
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	79
+	00000: PUSHB[7]              2    10     6     3     7     6     9 
+	00008: PUSHW[1]            712 
+	00011: NPUSHB      (25):     0    32     3    13    15    15     6    85     3     3 
+	                            12    12     6    85     3   148     4    32     7    20 
+	                            16    16     6    85     7 
+	00038: PUSHW[1]             -3 
+	00041: PUSHB[5]             13    13     6    85     7 
+	00047: PUSHW[1]             -3 
+	00050: PUSHB[5]             11    11     6    85     7 
+	00056: PUSHW[2]            711     8 
+	00061: SRP0       
+	00062: MIRP[srp0,nmd,rd,2] 
+	00063: CALL       
+	00064: CALL       
+	00065: CALL       
+	00066: MIRP[srp0,md,rd,1] 
+	00067: MIRP[srp0,nmd,rd,2] 
+	00068: CALL       
+	00069: CALL       
+	00070: MIRP[srp0,md,rd,1] 
+	00071: MIRP[nrp0,nmd,rd,2] 
+	00072: SVTCA[y-axis] 
+	00073: MIAP[rd+ci] 
+	00074: ALIGNRP    
+	00075: MDAP[rd]   
+	00076: MIAP[rd+ci] 
+	00077: IUP[y]     
+	00078: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   855,  1061)  ->  Abs (   855,  1061)
+	  1: Rel (     0, -1061)  ->  Abs (   855,     0)
+	  2: Rel (  -195,     0)  ->  Abs (   660,     0)
+	  3: Rel (     0,  1061)  ->  Abs (   660,  1061)
+	  4: Rel (  -310,     0)  ->  Abs (   350,  1061)
+	  5: Rel (     0,  -549)  ->  Abs (   350,   512)
+	  6: Rel (  -195,     0)  ->  Abs (   155,   512)
+	  7: Rel (     0,   549)  ->  Abs (   155,  1061)
+
+	Glyph 701: off = 0x000203C0, len = 118
+	  numberOfContours:	2
+	  xMin:			155
+	  yMin:			512
+	  xMax:			855
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	78
+	00000: PUSHB[6]              2     6     3     7     6     9 
+	00007: PUSHW[1]            712 
+	00010: NPUSHB      (25):     0    32     3    13    15    15     6    85     3     3 
+	                            12    12     6    85     3   148     4    32     7    20 
+	                            16    16     6    85     7 
+	00037: PUSHW[1]             -3 
+	00040: PUSHB[5]             13    13     6    85     7 
+	00046: PUSHW[1]             -3 
+	00049: PUSHB[5]             11    11     6    85     7 
+	00055: PUSHW[2]            711     8 
+	00060: SRP0       
+	00061: MIRP[srp0,nmd,rd,2] 
+	00062: CALL       
+	00063: CALL       
+	00064: CALL       
+	00065: MIRP[srp0,md,rd,1] 
+	00066: MIRP[srp0,nmd,rd,2] 
+	00067: CALL       
+	00068: CALL       
+	00069: MIRP[srp0,md,rd,1] 
+	00070: MIRP[nrp0,nmd,rd,2] 
+	00071: SVTCA[y-axis] 
+	00072: MIAP[rd+ci] 
+	00073: ALIGNRP    
+	00074: MDAP[rd]   
+	00075: MDAP[rd]   
+	00076: IUP[y]     
+	00077: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   855,  1061)  ->  Abs (   855,  1061)
+	  1: Rel (     0,  -549)  ->  Abs (   855,   512)
+	  2: Rel (  -195,     0)  ->  Abs (   660,   512)
+	  3: Rel (     0,   549)  ->  Abs (   660,  1061)
+	  4: Rel (  -310,     0)  ->  Abs (   350,  1061)
+	  5: Rel (     0,  -549)  ->  Abs (   350,   512)
+	  6: Rel (  -195,     0)  ->  Abs (   155,   512)
+	  7: Rel (     0,   549)  ->  Abs (   155,  1061)
+
+	Glyph 702: off = 0x00020436, len = 54
+	  numberOfContours:	1
+	  xMin:			90
+	  yMin:			676
+	  xMax:			393
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	25
+	00000: NPUSHB      (12):     3     0     0     1     6     2    60     1   100     3 
+	                           172     0 
+	00014: MDAP[rd]   
+	00015: MIRP[nrp0,md,rd,1] 
+	00016: MIRP[srp0,md,rd,0] 
+	00017: MIRP[nrp0,md,rd,1] 
+	00018: SVTCA[y-axis] 
+	00019: MIAP[rd+ci] 
+	00020: SHP[rp1,zp0] 
+	00021: MDAP[rd]   
+	00022: ALIGNRP    
+	00023: IUP[y]     
+	00024: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                 X-Short On
+	  2:  YDual XDual                 X-Short On
+	  3:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    90,   676)  ->  Abs (    90,   676)
+	  1: Rel (    98,   385)  ->  Abs (   188,  1061)
+	  2: Rel (   205,     0)  ->  Abs (   393,  1061)
+	  3: Rel (  -182,  -385)  ->  Abs (   211,   676)
+
+	Glyph 703: off = 0x0002046C, len = 92
+	  numberOfContours:	2
+	  xMin:			90
+	  yMin:			676
+	  xMax:			764
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	48
+	00000: NPUSHB      (26):     0     4     1     5     4     4     5     6     2    60 
+	                             1   100     3   172    95     0     1     0     0     6 
+	                            60     5   100     7   172     4 
+	00028: MDAP[rd]   
+	00029: MIRP[nrp0,md,rd,1] 
+	00030: MIRP[srp0,md,rd,0] 
+	00031: MIRP[srp0,md,rd,1] 
+	00032: SHP[rp2,zp1] 
+	00033: MDAP[rd]   
+	00034: DELTAP1    
+	00035: MIRP[nrp0,md,rd,1] 
+	00036: MIRP[srp0,md,rd,0] 
+	00037: MIRP[nrp0,md,rd,1] 
+	00038: SVTCA[y-axis] 
+	00039: MIAP[rd+ci] 
+	00040: SHP[rp1,zp0] 
+	00041: MDAP[rd]   
+	00042: SRP0       
+	00043: ALIGNRP    
+	00044: SRP0       
+	00045: ALIGNRP    
+	00046: IUP[y]     
+	00047: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                 X-Short On
+	  2:  YDual XDual                 X-Short On
+	  3:                              X-Short On
+	  4:  YDual                               On
+	  5:        XDual                 X-Short On
+	  6:  YDual XDual                 X-Short On
+	  7:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   461,   676)  ->  Abs (   461,   676)
+	  1: Rel (    98,   385)  ->  Abs (   559,  1061)
+	  2: Rel (   205,     0)  ->  Abs (   764,  1061)
+	  3: Rel (  -182,  -385)  ->  Abs (   582,   676)
+	  4: Rel (  -492,     0)  ->  Abs (    90,   676)
+	  5: Rel (    98,   385)  ->  Abs (   188,  1061)
+	  6: Rel (   205,     0)  ->  Abs (   393,  1061)
+	  7: Rel (  -182,  -385)  ->  Abs (   211,   676)
+
+	Glyph 704: off = 0x000204C8, len = 200
+	  numberOfContours:	2
+	  xMin:			155
+	  yMin:			0
+	  xMax:			1515
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  27
+
+	  Length of Instructions:	106
+	00000: NPUSHB       (9):    22     6     2    16    15     1    15    18    17 
+	00011: PUSHW[1]            722 
+	00014: PUSHB[6]             14    14     9    10     6     7 
+	00021: PUSHW[1]            722 
+	00024: PUSHB[3]             10     6    29 
+	00028: PUSHW[5]            712    23   720    22   721 
+	00039: PUSHB[5]              1     1     0     2     0 
+	00045: PUSHW[3]            720     3   721 
+	00052: PUSHB[4]             17    16    14    16 
+	00057: PUSHW[8]            720    15   721     7   720    10   711    28 
+	00074: SRP0       
+	00075: MIRP[srp0,nmd,rd,2] 
+	00076: MIRP[srp0,md,rd,1] 
+	00077: MIRP[srp0,nmd,rd,2] 
+	00078: MIRP[nrp0,md,rd,1] 
+	00079: ALIGNRP    
+	00080: SRP0       
+	00081: ALIGNRP    
+	00082: MIRP[srp0,nmd,rd,2] 
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: ALIGNRP    
+	00085: SRP0       
+	00086: ALIGNRP    
+	00087: SRP0       
+	00088: MIRP[srp0,nmd,rd,2] 
+	00089: MIRP[srp0,md,rd,1] 
+	00090: MIRP[nrp0,nmd,rd,2] 
+	00091: SVTCA[y-axis] 
+	00092: MIAP[rd+ci] 
+	00093: MIRP[srp0,md,rd,1] 
+	00094: ALIGNRP    
+	00095: MIAP[rd+ci] 
+	00096: ALIGNRP    
+	00097: SRP0       
+	00098: MIRP[srp0,md,rd,1] 
+	00099: ALIGNRP    
+	00100: MDAP[rd]   
+	00101: DELTAP1    
+	00102: MDAP[rd]   
+	00103: MIAP[rd+ci] 
+	00104: IUP[y]     
+	00105: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+	 10:        XDual                         On
+	 11:  YDual                               On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:                                      On
+	 15:        XDual                         On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:  YDual                               On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:        XDual                         On
+	 23:  YDual XDual                 X-Short On
+	 24:        XDual                         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1118,   791)  ->  Abs (  1118,   791)
+	  1: Rel (     0,  -447)  ->  Abs (  1118,   344)
+	  2: Rel (  -168,     0)  ->  Abs (   950,   344)
+	  3: Rel (     0,   430)  ->  Abs (   950,   774)
+	  4: Rel (     0,    77)  ->  Abs (   950,   851)
+	  5: Rel (   -70,    67)  ->  Abs (   880,   918)
+	  6: Rel (   -78,     0)  ->  Abs (   802,   918)
+	  7: Rel (  -479,     0)  ->  Abs (   323,   918)
+	  8: Rel (     0,  -918)  ->  Abs (   323,     0)
+	  9: Rel (  -168,     0)  ->  Abs (   155,     0)
+	 10: Rel (     0,  1061)  ->  Abs (   155,  1061)
+	 11: Rel (   680,     0)  ->  Abs (   835,  1061)
+	 12: Rel (   139,     0)  ->  Abs (   974,  1061)
+	 13: Rel (   144,  -149)  ->  Abs (  1118,   912)
+	 14: Rel (  -566,  -912)  ->  Abs (   552,     0)
+	 15: Rel (     0,   717)  ->  Abs (   552,   717)
+	 16: Rel (   168,     0)  ->  Abs (   720,   717)
+	 17: Rel (     0,  -574)  ->  Abs (   720,   143)
+	 18: Rel (   479,     0)  ->  Abs (  1199,   143)
+	 19: Rel (    88,     0)  ->  Abs (  1287,   143)
+	 20: Rel (    60,    78)  ->  Abs (  1347,   221)
+	 21: Rel (     0,    66)  ->  Abs (  1347,   287)
+	 22: Rel (     0,   774)  ->  Abs (  1347,  1061)
+	 23: Rel (   168,     0)  ->  Abs (  1515,  1061)
+	 24: Rel (     0,  -791)  ->  Abs (  1515,   270)
+	 25: Rel (     0,  -115)  ->  Abs (  1515,   155)
+	 26: Rel (  -136,  -155)  ->  Abs (  1379,     0)
+	 27: Rel (  -147,     0)  ->  Abs (  1232,     0)
+
+	Glyph 705: off = 0x00020590, len = 140
+	  numberOfContours:	2
+	  xMin:			-84
+	  yMin:			0
+	  xMax:			350
+	  yMax:			1351
+
+	EndPoints
+	---------
+	  0:  12
+	  1:  16
+
+	  Length of Instructions:	78
+	00000: PUSHW[2]              0   723 
+	00005: PUSHB[8]              7   172    16    15    10    16     6    10 
+	00014: PUSHW[1]            723 
+	00017: PUSHB[5]             47     3     1     3    18 
+	00023: PUSHW[1]            712 
+	00026: PUSHB[3]             13    32    16 
+	00030: PUSHW[1]             -2 
+	00033: PUSHB[5]             11    11     6    85    16 
+	00039: PUSHW[1]             -2 
+	00042: NPUSHB      (11):    13    13     6    85    16    18    16    16     6    85 
+	                            16 
+	00055: PUSHW[2]            711    17 
+	00060: SRP0       
+	00061: MIRP[srp0,nmd,rd,0] 
+	00062: CALL       
+	00063: CALL       
+	00064: CALL       
+	00065: MIRP[srp0,md,rd,1] 
+	00066: MIRP[nrp0,nmd,rd,2] 
+	00067: MDAP[rd]   
+	00068: DELTAP1    
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: SVTCA[y-axis] 
+	00071: MIAP[rd+ci] 
+	00072: MIAP[rd+ci] 
+	00073: SRP0       
+	00074: MIRP[srp0,md,rd,2] 
+	00075: MIRP[nrp0,md,rd,1] 
+	00076: IUP[y]     
+	00077: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                         On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:                                      On
+	 14:        XDual                         On
+	 15:  YDual                       X-Short On
+	 16:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (     0,  1351)  ->  Abs (     0,  1351)
+	  1: Rel (    41,     0)  ->  Abs (    41,  1351)
+	  2: Rel (    43,   -53)  ->  Abs (    84,  1298)
+	  3: Rel (     0,   -32)  ->  Abs (    84,  1266)
+	  4: Rel (     0,   -24)  ->  Abs (    84,  1242)
+	  5: Rel (   -22,   -38)  ->  Abs (    62,  1204)
+	  6: Rel (   -38,   -22)  ->  Abs (    24,  1182)
+	  7: Rel (   -24,     0)  ->  Abs (     0,  1182)
+	  8: Rel (   -37,     1)  ->  Abs (   -37,  1183)
+	  9: Rel (   -47,    50)  ->  Abs (   -84,  1233)
+	 10: Rel (     0,    33)  ->  Abs (   -84,  1266)
+	 11: Rel (     0,    37)  ->  Abs (   -84,  1303)
+	 12: Rel (    49,    48)  ->  Abs (   -35,  1351)
+	 13: Rel (   385,  -290)  ->  Abs (   350,  1061)
+	 14: Rel (     0, -1061)  ->  Abs (   350,     0)
+	 15: Rel (  -195,     0)  ->  Abs (   155,     0)
+	 16: Rel (     0,  1061)  ->  Abs (   155,  1061)
+
+	Glyph 706: off = 0x0002061C, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			40
+	  yMin:			-408
+	  xMax:			898
+	  yMax:			1073
+
+	     0: Flags:		0x0226
+		Glyf Index:	682
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	653
+		X WOffset:	8
+		Y WOffset:	502
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     2     1   143    15     1     0    15    15     2     2 
+	                            65     1     2     2    15 
+	00017: PUSHW[2]            730    41 
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+	00026: DELTAP1    
+	00027: SHC[rp1,zp0] 
+	00028: SHC[rp1,zp0] 
+
+	Glyph 707: off = 0x00020654, len = 70
+	  numberOfContours:	-1  (Composite)
+	  xMin:			40
+	  yMin:			-408
+	  xMax:			898
+	  yMax:			1073
+
+	     0: Flags:		0x0226
+		Glyf Index:	682
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	661
+		X WOffset:	8
+		Y WOffset:	502
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1    80    15   144    15     2   144    15   176    15 
+	                             2    15 
+	00014: PUSHW[1]            -64 
+	00017: NPUSHB      (12):     9    12    52     0    15    15     2     2    65     1 
+	                             1    18 
+	00031: PUSHW[2]            730    41 
+	00036: SVTCA[y-axis] 
+	00037: CALL       
+	00038: SVTCA[x-axis] 
+	00039: CALL       
+	00040: CALL       
+	00041: DELTAP1    
+	00042: DELTAP2    
+	00043: SHC[rp1,zp0] 
+
+	Glyph 708: off = 0x0002069A, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-169
+	  yMin:			0
+	  xMax:			838
+	  yMax:			1466
+
+	     0: Flags:		0x0026
+		Glyf Index:	684
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	662
+		X WOffset:	-426
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    27    27    38    38    65     1     1    23 
+	00012: PUSHW[2]            731    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 709: off = 0x000206CA, len = 106
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-169
+	  yMin:			0
+	  xMax:			838
+	  yMax:			1466
+
+	     0: Flags:		0x0026
+		Glyf Index:	684
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	662
+		X WOffset:	-426
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	664
+		X BOffset:	-31
+		Y BOffset:	57
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              2    48 
+	00003: PUSHW[1]            -30 
+	00006: PUSHB[5]             10    10     6    85    48 
+	00012: PUSHW[1]            -30 
+	00015: PUSHB[8]             15    15     6    85     0    48     1    48 
+	00024: PUSHW[1]            -64 
+	00027: NPUSHB      (19):    12    14    52     0    48    41    20    19    65     1 
+	                             0    27    27    51    51    65     2     1    38 
+	00048: PUSHW[1]            732 
+	00051: PUSHB[4]             41     1     1    23 
+	00056: PUSHW[2]            731    41 
+	00061: SVTCA[y-axis] 
+	00062: CALL       
+	00063: CALL       
+	00064: SVTCA[x-axis] 
+	00065: CALL       
+	00066: SHC[rp1,zp0] 
+	00067: CALL       
+	00068: CALL       
+	00069: DELTAP1    
+	00070: CALL       
+	00071: CALL       
+	00072: SHC[rp1,zp0] 
+
+	Glyph 710: off = 0x00020734, len = 192
+	  numberOfContours:	1
+	  xMin:			45
+	  yMin:			0
+	  xMax:			961
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	130
+	00000: NPUSHB      (32):    47    15    59     9    58    10   121     6   121     9 
+	                           121    10   129     2     7    42     2    42     6    42 
+	                             9    42    10    60     2    59     6     6     6     9 
+	                             8     8 
+	00034: PUSHW[1]            -10 
+	00037: NPUSHB      (46):    14    17     6    85     8   186     7     6    20     7 
+	                             7     6     6     9    58     5   249     4     4     3 
+	                            10    12     7     6     9     9     4     9     8     6 
+	                             8     7     7    13     4     4    12    32    47    13 
+	                           191    13   207    13     3    13 
+	00085: PUSHW[2]            717    15 
+	00090: SRP0       
+	00091: MIRP[srp0,nmd,rd,2] 
+	00092: DELTAP1    
+	00093: MIRP[nrp0,md,rd,1] 
+	00094: SHP[rp1,zp0] 
+	00095: MDAP[rd]   
+	00096: SRP2       
+	00097: IP         
+	00098: MDAP[rd]   
+	00099: SHP[rp1,zp0] 
+	00100: SHP[rp1,zp0] 
+	00101: SRP1       
+	00102: SHP[rp1,zp0] 
+	00103: RTHG       
+	00104: SRP1       
+	00105: IP         
+	00106: MDAP[rd]   
+	00107: SVTCA[y-axis] 
+	00108: RTG        
+	00109: MIAP[rd+ci] 
+	00110: ALIGNRP    
+	00111: MIAP[rd+ci] 
+	00112: ALIGNRP    
+	00113: SRP0       
+	00114: MIRP[srp0,md,rd,1] 
+	00115: MIRP[nrp0,nmd,rd,0] 
+	00116: IP         
+	00117: SDPVTL[1]  
+	00118: SFVTCA[x-axis] 
+	00119: MDAP[nrd]  
+	00120: CALL       
+	00121: CALL       
+	00122: SDPVTL[1]  
+	00123: RDTG       
+	00124: MDRP[nrp0,nmd,rd,0] 
+	00125: IUP[y]     
+	00126: IUP[x]     
+	00127: SVTCA[x-axis] 
+	00128: DELTAP1    
+	00129: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                              X-Short Off
+	  2:                                      Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                               On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:                              X-Short On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual                 X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:        XDual                 X-Short On
+	 12:        XDual                 X-Short On
+	 13:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   951,   780)  ->  Abs (   951,   780)
+	  1: Rel (   -17,  -472)  ->  Abs (   934,   308)
+	  2: Rel (  -261,  -308)  ->  Abs (   673,     0)
+	  3: Rel (  -234,     0)  ->  Abs (   439,     0)
+	  4: Rel (  -394,     0)  ->  Abs (    45,     0)
+	  5: Rel (     0,   160)  ->  Abs (    45,   160)
+	  6: Rel (   276,     0)  ->  Abs (   321,   160)
+	  7: Rel (  -177,   901)  ->  Abs (   144,  1061)
+	  8: Rel (   201,     0)  ->  Abs (   345,  1061)
+	  9: Rel (   162,  -903)  ->  Abs (   507,   158)
+	 10: Rel (   238,    67)  ->  Abs (   745,   225)
+	 11: Rel (    13,   471)  ->  Abs (   758,   696)
+	 12: Rel (    10,   365)  ->  Abs (   768,  1061)
+	 13: Rel (   193,     0)  ->  Abs (   961,  1061)
+
+	Glyph 711: off = 0x000207F4, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			100
+	  yMin:			-29
+	  xMax:			1322
+	  yMax:			1350
+
+	     0: Flags:		0x0226
+		Glyf Index:	697
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	662
+		X WOffset:	893
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     1    79    46     1    10    46    46    22    22    65 
+	                             1     1    34 
+	00015: PUSHW[2]            733    41 
+	00020: SVTCA[y-axis] 
+	00021: CALL       
+	00022: SVTCA[x-axis] 
+	00023: CALL       
+	00024: DELTAP2    
+	00025: SHC[rp1,zp0] 
+
+	Glyph 712: off = 0x00020828, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			100
+	  yMin:			-29
+	  xMax:			1322
+	  yMax:			1350
+
+	     0: Flags:		0x0226
+		Glyf Index:	697
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	662
+		X WOffset:	-150
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    46    46    33    33    65     1     1    34 
+	00012: PUSHW[2]            733    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 713: off = 0x00020858, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			100
+	  yMin:			-29
+	  xMax:			1322
+	  yMax:			1350
+
+	     0: Flags:		0x0226
+		Glyf Index:	737
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	662
+		X WOffset:	893
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     2    79    59     1    10    59    59    22    22    65 
+	                             2     1    47 
+	00015: PUSHW[2]            733    41 
+	00020: SVTCA[y-axis] 
+	00021: CALL       
+	00022: SVTCA[x-axis] 
+	00023: CALL       
+	00024: DELTAP2    
+	00025: SHC[rp1,zp0] 
+
+	Glyph 714: off = 0x0002088C, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			100
+	  yMin:			-29
+	  xMax:			1322
+	  yMax:			1350
+
+	     0: Flags:		0x0226
+		Glyf Index:	737
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	662
+		X WOffset:	-150
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    59    59    33    33    65     2     1    47 
+	00012: PUSHW[2]            733    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 715: off = 0x000208BC, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			105
+	  yMin:			-315
+	  xMax:			1098
+	  yMax:			1061
+
+	     0: Flags:		0x0226
+		Glyf Index:	672
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	660
+		X WOffset:	235
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    23    24     6    17    65     1     1    23 
+	00012: PUSHW[2]            734    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 716: off = 0x000208EC, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			105
+	  yMin:			-430
+	  xMax:			1098
+	  yMax:			1061
+
+	     0: Flags:		0x0226
+		Glyf Index:	672
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	661
+		X WOffset:	235
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    25    26     6    17    65     1     1    25 
+	00012: PUSHW[2]            734    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 717: off = 0x0002091C, len = 416
+	  numberOfContours:	2
+	  xMin:			105
+	  yMin:			0
+	  xMax:			1098
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  21
+	  1:  37
+
+	  Length of Instructions:	286
+	00000: NPUSHB      (83):   130    20   128    21   167    12   216     0   215    21 
+	                             5    85     3    86     9    86    12   103     3   127 
+	                             8   115    20   140     9     7    59    21    72     1 
+	                            77     2    73     8    77     9    73    12    77    21 
+	                             7    25     8    38    12    56     1    58     2    59 
+	                             8    59     9    57    12     7    63    21   129     9 
+	                           143    21   166    12   218    21     5     8     2    41 
+	                            19    40    21    61     2     4     2    24    12    17 
+	                             6    85    12 
+	00085: PUSHW[1]            -24 
+	00088: PUSHB[5]             12    17     6    85    34 
+	00094: PUSHW[1]            723 
+	00097: NPUSHB      (44):   176    26     1    26    26     6    10    21    12    11 
+	                            11     0     2     9    10     1     1     0    11    11 
+	                           186    10     1    20    10    10     1    21    12     1 
+	                             9     4    10     6     5     0     1    10    17    16 
+	                            11    10     6    30 
+	00143: PUSHW[1]            723 
+	00146: NPUSHB      (33):     0    22    32    22   127    22   175    22   191    22 
+	                             5    31    22    47    22     2    22    22     5    15 
+	                            16    18     4     5     7     9     2    12    21     4 
+	                            17     6     1 
+	00181: PUSHW[1]            608 
+	00184: PUSHB[8]            128     0     1     0     0    16    32    17 
+	00193: PUSHW[1]            714 
+	00196: PUSHB[7]             39    11    10     5    32    10     6 
+	00204: PUSHW[2]            713    38 
+	00209: SRP0       
+	00210: MIRP[srp0,nmd,rd,2] 
+	00211: SHP[rp2,zp1] 
+	00212: MIRP[nrp0,md,rd,1] 
+	00213: MDAP[rd]   
+	00214: SHP[rp1,zp0] 
+	00215: SRP0       
+	00216: MIRP[srp0,nmd,rd,2] 
+	00217: MIRP[nrp0,md,rd,1] 
+	00218: SHP[rp1,zp0] 
+	00219: MDAP[rd]   
+	00220: DELTAP1    
+	00221: MIRP[nrp0,md,rd,1] 
+	00222: SRP1       
+	00223: SRP2       
+	00224: SLOOP      
+	00225: IP         
+	00226: SHP[rp1,zp0] 
+	00227: SRP1       
+	00228: SHP[rp1,zp0] 
+	00229: SHP[rp2,zp1] 
+	00230: SRP1       
+	00231: SHP[rp1,zp0] 
+	00232: SRP2       
+	00233: IP         
+	00234: MDAP[rd]   
+	00235: DELTAP2    
+	00236: DELTAP1    
+	00237: MIRP[nrp0,md,rd,1] 
+	00238: SVTCA[y-axis] 
+	00239: MIAP[rd+ci] 
+	00240: ALIGNRP    
+	00241: ALIGNRP    
+	00242: ALIGNRP    
+	00243: MIAP[rd+ci] 
+	00244: ALIGNRP    
+	00245: ALIGNRP    
+	00246: ALIGNRP    
+	00247: SRP2       
+	00248: SLOOP      
+	00249: IP         
+	00250: SDPVTL[1]  
+	00251: SFVTCA[x-axis] 
+	00252: MDAP[nrd]  
+	00253: CALL       
+	00254: SDPVTL[1]  
+	00255: RDTG       
+	00256: MDRP[nrp0,nmd,rd,0] 
+	00257: SPVTL[p1,p2] 
+	00258: SFVTPV     
+	00259: ALIGNRP    
+	00260: ALIGNRP    
+	00261: SDPVTL[1]  
+	00262: SFVTPV     
+	00263: SRP0       
+	00264: MDRP[nrp0,nmd,rd,0] 
+	00265: ALIGNRP    
+	00266: SVTCA[y-axis] 
+	00267: RTG        
+	00268: SRP1       
+	00269: SRP2       
+	00270: IP         
+	00271: MDAP[rd]   
+	00272: DELTAP1    
+	00273: MIRP[nrp0,md,rd,1] 
+	00274: CALL       
+	00275: CALL       
+	00276: IUP[y]     
+	00277: IUP[x]     
+	00278: SVTCA[y-axis] 
+	00279: DELTAP1    
+	00280: DELTAP1    
+	00281: SVTCA[x-axis] 
+	00282: DELTAP1    
+	00283: DELTAP1    
+	00284: DELTAP1    
+	00285: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:                                      On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                              X-Short On
+	  6:  YDual                       X-Short On
+	  7:        XDual                 X-Short On
+	  8:        XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:                              X-Short On
+	 11:  YDual XDual                 X-Short On
+	 12:                                      On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual                 X-Short On
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:                                      On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:                      Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1098,     0)  ->  Abs (  1098,     0)
+	  1: Rel (  -236,     0)  ->  Abs (   862,     0)
+	  2: Rel (  -405,   573)  ->  Abs (   457,   573)
+	  3: Rel (   -93,   -51)  ->  Abs (   364,   522)
+	  4: Rel (   -18,  -155)  ->  Abs (   346,   367)
+	  5: Rel (   -43,  -367)  ->  Abs (   303,     0)
+	  6: Rel (  -198,     0)  ->  Abs (   105,     0)
+	  7: Rel (    43,   367)  ->  Abs (   148,   367)
+	  8: Rel (    30,   256)  ->  Abs (   178,   623)
+	  9: Rel (   178,    90)  ->  Abs (   356,   713)
+	 10: Rel (  -247,   348)  ->  Abs (   109,  1061)
+	 11: Rel (   235,     0)  ->  Abs (   344,  1061)
+	 12: Rel (   340,  -475)  ->  Abs (   684,   586)
+	 13: Rel (    62,    41)  ->  Abs (   746,   627)
+	 14: Rel (    50,   109)  ->  Abs (   796,   736)
+	 15: Rel (    13,   112)  ->  Abs (   809,   848)
+	 16: Rel (    25,   213)  ->  Abs (   834,  1061)
+	 17: Rel (   198,     0)  ->  Abs (  1032,  1061)
+	 18: Rel (   -24,  -219)  ->  Abs (  1008,   842)
+	 19: Rel (   -17,  -156)  ->  Abs (   991,   686)
+	 20: Rel (  -108,  -175)  ->  Abs (   883,   511)
+	 21: Rel (  -103,   -62)  ->  Abs (   780,   449)
+	 22: Rel (  -339,  -291)  ->  Abs (   441,   158)
+	 23: Rel (     0,    24)  ->  Abs (   441,   182)
+	 24: Rel (    23,    37)  ->  Abs (   464,   219)
+	 25: Rel (    38,    23)  ->  Abs (   502,   242)
+	 26: Rel (    23,     0)  ->  Abs (   525,   242)
+	 27: Rel (    24,     0)  ->  Abs (   549,   242)
+	 28: Rel (    38,   -23)  ->  Abs (   587,   219)
+	 29: Rel (    22,   -37)  ->  Abs (   609,   182)
+	 30: Rel (     0,   -24)  ->  Abs (   609,   158)
+	 31: Rel (     0,   -24)  ->  Abs (   609,   134)
+	 32: Rel (   -22,   -37)  ->  Abs (   587,    97)
+	 33: Rel (   -38,   -23)  ->  Abs (   549,    74)
+	 34: Rel (   -24,     0)  ->  Abs (   525,    74)
+	 35: Rel (   -23,     0)  ->  Abs (   502,    74)
+	 36: Rel (   -38,    23)  ->  Abs (   464,    97)
+	 37: Rel (   -22,    37)  ->  Abs (   442,   134)
+
+	Glyph 718: off = 0x00020ABC, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			50
+	  yMin:			0
+	  xMax:			1065
+	  yMax:			1073
+
+	     0: Flags:		0x0226
+		Glyf Index:	673
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	664
+		X BOffset:	8
+		Y BOffset:	-20
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     1     0    29    16    29    32    29    96    29     4 
+	                             0    29    22    15    15    65     1     1    19 
+	00021: PUSHW[2]            735    41 
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: SHC[rp1,zp0] 
+
+	Glyph 719: off = 0x00020AF4, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			25
+	  yMin:			0
+	  xMax:			744
+	  yMax:			1073
+
+	     0: Flags:		0x0226
+		Glyf Index:	674
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	664
+		X BOffset:	-40
+		Y BOffset:	70
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (26):     1    64    36   128    36     2    32    36    80    36 
+	                           144    36   176    36   192    36     5     0    36    29 
+	                            17    17    65     1     1    26 
+	00028: PUSHW[2]            736    41 
+	00033: SVTCA[y-axis] 
+	00034: CALL       
+	00035: SVTCA[x-axis] 
+	00036: CALL       
+	00037: DELTAP1    
+	00038: DELTAP2    
+	00039: SHC[rp1,zp0] 
+
+	Glyph 720: off = 0x00020B34, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			45
+	  yMin:			0
+	  xMax:			996
+	  yMax:			1061
+
+	     0: Flags:		0x0226
+		Glyf Index:	675
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	664
+		X BOffset:	78
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     1     0    18    16    18    32    18   176    18     4 
+	                             0    18    11     5     4    65     1     1     8 
+	00021: PUSHW[2]            732    41 
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: SHC[rp1,zp0] 
+
+	Glyph 721: off = 0x00020B6C, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			150
+	  yMin:			0
+	  xMax:			1088
+	  yMax:			1073
+
+	     0: Flags:		0x0226
+		Glyf Index:	676
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	664
+		X WOffset:	268
+		Y WOffset:	-66
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     2    64    29   112    29   176    29     3     0    29 
+	                            22    15     8    65     2     1    19 
+	00019: PUSHW[2]            737    41 
+	00024: SVTCA[y-axis] 
+	00025: CALL       
+	00026: SVTCA[x-axis] 
+	00027: CALL       
+	00028: DELTAP1    
+	00029: SHC[rp1,zp0] 
+
+	Glyph 722: off = 0x00020BA4, len = 156
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			0
+	  xMax:			432
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  18
+
+	  Length of Instructions:	87
+	00000: PUSHW[2]             12   723 
+	00005: PUSHB[8]              4     2    10     3     6     3    32     0 
+	00014: PUSHW[1]            -18 
+	00017: NPUSHB      (28):    16    16     6    85     0    10    13    15     6    85 
+	                             0    64    67    68    52     0    64    61    53   159 
+	                             0     1    79     0   255     0     2     0 
+	00047: PUSHW[4]            712    20     8   723 
+	00056: NPUSHB       (9):    47    15     1    15    64    16    17    52    15 
+	00067: MDAP[rd]   
+	00068: CALL       
+	00069: DELTAP2    
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: SRP0       
+	00072: MIRP[srp0,nmd,rd,2] 
+	00073: DELTAP2    
+	00074: DELTAP3    
+	00075: CALL       
+	00076: CALL       
+	00077: CALL       
+	00078: CALL       
+	00079: MIRP[srp0,md,rd,1] 
+	00080: SVTCA[y-axis] 
+	00081: MIAP[rd+ci] 
+	00082: MIAP[rd+ci] 
+	00083: MDAP[rd]   
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: IUP[y]     
+	00086: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+	  4:                              X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   432,  1061)  ->  Abs (   432,  1061)
+	  1: Rel (     0, -1061)  ->  Abs (   432,     0)
+	  2: Rel (  -194,     0)  ->  Abs (   238,     0)
+	  3: Rel (     0,  1061)  ->  Abs (   238,  1061)
+	  4: Rel (  -154,  -399)  ->  Abs (    84,   662)
+	  5: Rel (    22,     0)  ->  Abs (   106,   662)
+	  6: Rel (    37,   -20)  ->  Abs (   143,   642)
+	  7: Rel (    25,   -38)  ->  Abs (   168,   604)
+	  8: Rel (     0,   -26)  ->  Abs (   168,   578)
+	  9: Rel (     0,   -24)  ->  Abs (   168,   554)
+	 10: Rel (   -22,   -38)  ->  Abs (   146,   516)
+	 11: Rel (   -38,   -22)  ->  Abs (   108,   494)
+	 12: Rel (   -24,     0)  ->  Abs (    84,   494)
+	 13: Rel (   -31,     0)  ->  Abs (    53,   494)
+	 14: Rel (   -53,    43)  ->  Abs (     0,   537)
+	 15: Rel (     0,    41)  ->  Abs (     0,   578)
+	 16: Rel (     0,    24)  ->  Abs (     0,   602)
+	 17: Rel (    22,    37)  ->  Abs (    22,   639)
+	 18: Rel (    38,    23)  ->  Abs (    60,   662)
+
+	Glyph 723: off = 0x00020C40, len = 250
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			0
+	  xMax:			827
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  34
+
+	  Length of Instructions:	142
+	00000: NPUSHB      (10):    15    36    31    36    80     1    98     1     4    28 
+	00012: PUSHW[1]            723 
+	00015: NPUSHB      (29):    16    20     1    20     9    10     0    39    17   249 
+	                            18     6    16    16     0    17     8    32     9     2 
+	                            16    16     6    85     9     9     3    32    14 
+	00046: PUSHW[1]             -6 
+	00049: NPUSHB      (43):    11    13     6    85    14    22    15    15     6    85 
+	                            14     2    16    16     6    85    14    64    14    16 
+	                            52    79    14     1    15    14   207    14   223    14 
+	                             3    14    19    64    14    23    52    15    19    31 
+	                            19     2    19 
+	00094: PUSHW[1]            716 
+	00097: PUSHB[4]             36    18   197    24 
+	00102: PUSHW[2]            723    32 
+	00107: MDAP[rd]   
+	00108: MIRP[srp0,md,rd,1] 
+	00109: MIRP[nrp0,nmd,rd,2] 
+	00110: SRP0       
+	00111: MIRP[nrp0,nmd,rd,2] 
+	00112: DELTAP1    
+	00113: CALL       
+	00114: MDAP[rd]   
+	00115: DELTAP1    
+	00116: DELTAP2    
+	00117: CALL       
+	00118: CALL       
+	00119: CALL       
+	00120: CALL       
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: SHP[rp1,zp0] 
+	00123: MDAP[rd]   
+	00124: CALL       
+	00125: MIRP[nrp0,md,rd,1] 
+	00126: SRP1       
+	00127: SRP2       
+	00128: IP         
+	00129: MDAP[rd]   
+	00130: SVTCA[y-axis] 
+	00131: MIAP[rd+ci] 
+	00132: MIRP[srp0,md,rd,1] 
+	00133: MIRP[nrp0,nmd,rd,0] 
+	00134: MIAP[rd+ci] 
+	00135: MDAP[rd]   
+	00136: DELTAP1    
+	00137: MIRP[nrp0,md,rd,1] 
+	00138: IUP[y]     
+	00139: IUP[x]     
+	00140: SVTCA[x-axis] 
+	00141: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:                      Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         On
+	  9:  YDual                       X-Short On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual                               On
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual                               On
+	 20:                                      On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   827,   926)  ->  Abs (   827,   926)
+	  1: Rel (  -153,     0)  ->  Abs (   674,   926)
+	  2: Rel (  -173,  -175)  ->  Abs (   501,   751)
+	  3: Rel (     0,  -147)  ->  Abs (   501,   604)
+	  4: Rel (     0,   -29)  ->  Abs (   501,   575)
+	  5: Rel (     9,   -84)  ->  Abs (   510,   491)
+	  6: Rel (    26,  -242)  ->  Abs (   536,   249)
+	  7: Rel (     0,  -102)  ->  Abs (   536,   147)
+	  8: Rel (     0,  -147)  ->  Abs (   536,     0)
+	  9: Rel (  -192,     0)  ->  Abs (   344,     0)
+	 10: Rel (     0,   174)  ->  Abs (   344,   174)
+	 11: Rel (     0,   106)  ->  Abs (   344,   280)
+	 12: Rel (   -20,   220)  ->  Abs (   324,   500)
+	 13: Rel (    -7,    74)  ->  Abs (   317,   574)
+	 14: Rel (     0,    49)  ->  Abs (   317,   623)
+	 15: Rel (     0,   165)  ->  Abs (   317,   788)
+	 16: Rel (   135,   113)  ->  Abs (   452,   901)
+	 17: Rel (  -268,     0)  ->  Abs (   184,   901)
+	 18: Rel (     0,   160)  ->  Abs (   184,  1061)
+	 19: Rel (   643,     0)  ->  Abs (   827,  1061)
+	 20: Rel (  -743,  -342)  ->  Abs (    84,   719)
+	 21: Rel (    22,     0)  ->  Abs (   106,   719)
+	 22: Rel (    37,   -20)  ->  Abs (   143,   699)
+	 23: Rel (    25,   -38)  ->  Abs (   168,   661)
+	 24: Rel (     0,   -26)  ->  Abs (   168,   635)
+	 25: Rel (     0,   -24)  ->  Abs (   168,   611)
+	 26: Rel (   -22,   -38)  ->  Abs (   146,   573)
+	 27: Rel (   -38,   -22)  ->  Abs (   108,   551)
+	 28: Rel (   -24,     0)  ->  Abs (    84,   551)
+	 29: Rel (   -24,     0)  ->  Abs (    60,   551)
+	 30: Rel (   -37,    22)  ->  Abs (    23,   573)
+	 31: Rel (   -23,    38)  ->  Abs (     0,   611)
+	 32: Rel (     0,    24)  ->  Abs (     0,   635)
+	 33: Rel (     0,    35)  ->  Abs (     0,   670)
+	 34: Rel (    48,    49)  ->  Abs (    48,   719)
+
+	Glyph 724: off = 0x00020D3A, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			140
+	  yMin:			-29
+	  xMax:			1088
+	  yMax:			1083
+
+	     0: Flags:		0x0226
+		Glyf Index:	680
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	664
+		X WOffset:	276
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    40    33    29    22    65     1     1    30 
+	00012: PUSHW[2]            735    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 725: off = 0x00020D6A, len = 164
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			512
+	  xMax:			432
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  16
+
+	  Length of Instructions:	102
+	00000: PUSHW[2]             10   723 
+	00005: NPUSHB      (12):     4     4     0     2     1     2     2     3     6     3 
+	                            32     0 
+	00019: PUSHW[1]            -18 
+	00022: NPUSHB      (34):    16    16     6    85     0    10    13    15     6    85 
+	                             0    40    11    12     6    85     0    64    67    68 
+	                            52     0    64    61    53   159     0     1    79     0 
+	                           255     0     2     0 
+	00058: PUSHW[4]            712    18     7   723 
+	00067: NPUSHB       (9):    47    13     1    13    64    16    17    52    13 
+	00078: MDAP[rd]   
+	00079: CALL       
+	00080: DELTAP2    
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SRP0       
+	00083: MIRP[srp0,nmd,rd,0] 
+	00084: DELTAP2    
+	00085: DELTAP3    
+	00086: CALL       
+	00087: CALL       
+	00088: CALL       
+	00089: CALL       
+	00090: CALL       
+	00091: MIRP[srp0,md,rd,1] 
+	00092: SVTCA[y-axis] 
+	00093: MIAP[rd+ci] 
+	00094: SHP[rp1,zp0] 
+	00095: MDAP[rd]   
+	00096: DELTAP1    
+	00097: IP         
+	00098: MDAP[rd]   
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: IUP[y]     
+	00101: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+	  4:                      Y-Short X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   432,  1061)  ->  Abs (   432,  1061)
+	  1: Rel (     0,  -549)  ->  Abs (   432,   512)
+	  2: Rel (  -194,     0)  ->  Abs (   238,   512)
+	  3: Rel (     0,   549)  ->  Abs (   238,  1061)
+	  4: Rel (  -154,  -246)  ->  Abs (    84,   815)
+	  5: Rel (    31,     0)  ->  Abs (   115,   815)
+	  6: Rel (    53,   -43)  ->  Abs (   168,   772)
+	  7: Rel (     0,   -41)  ->  Abs (   168,   731)
+	  8: Rel (     0,   -35)  ->  Abs (   168,   696)
+	  9: Rel (   -49,   -49)  ->  Abs (   119,   647)
+	 10: Rel (   -35,     0)  ->  Abs (    84,   647)
+	 11: Rel (   -31,     0)  ->  Abs (    53,   647)
+	 12: Rel (   -53,    44)  ->  Abs (     0,   691)
+	 13: Rel (     0,    40)  ->  Abs (     0,   731)
+	 14: Rel (     0,    24)  ->  Abs (     0,   755)
+	 15: Rel (    22,    38)  ->  Abs (    22,   793)
+	 16: Rel (    38,    22)  ->  Abs (    60,   815)
+
+	Glyph 726: off = 0x00020E0E, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			40
+	  yMin:			-408
+	  xMax:			898
+	  yMax:			1073
+
+	     0: Flags:		0x0226
+		Glyf Index:	682
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	664
+		X BOffset:	18
+		Y BOffset:	-72
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    25    18    14     8    65     1     1    15 
+	00012: PUSHW[2]            737    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 727: off = 0x00020E3C, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			80
+	  yMin:			-16
+	  xMax:			854
+	  yMax:			1079
+
+	     0: Flags:		0x0226
+		Glyf Index:	683
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	664
+		X BOffset:	-11
+		Y BOffset:	-52
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1    34 
+	00003: PUSHW[1]            -32 
+	00006: NPUSHB      (20):    11    11     6    85     0    34    96    34   112    34 
+	                             3     0    34    27    13     7    65     1     1    24 
+	00028: PUSHW[2]            735    41 
+	00033: SVTCA[y-axis] 
+	00034: CALL       
+	00035: SVTCA[x-axis] 
+	00036: CALL       
+	00037: DELTAP1    
+	00038: CALL       
+	00039: SHC[rp1,zp0] 
+
+	Glyph 728: off = 0x00020E7C, len = 80
+	  numberOfContours:	-1  (Composite)
+	  xMin:			60
+	  yMin:			0
+	  xMax:			838
+	  yMax:			1466
+
+	     0: Flags:		0x0026
+		Glyf Index:	684
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	664
+		X BOffset:	31
+		Y BOffset:	57
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1    33 
+	00003: PUSHW[1]            -30 
+	00006: PUSHB[5]             15    15     6    85    33 
+	00012: PUSHW[1]            -30 
+	00015: PUSHB[8]             10    10     6    85     0    33     1    33 
+	00024: PUSHW[1]            -64 
+	00027: NPUSHB      (12):    12    14    52     0    33    26    20    19    65     1 
+	                             1    23 
+	00041: PUSHW[2]            732    41 
+	00046: SVTCA[y-axis] 
+	00047: CALL       
+	00048: SVTCA[x-axis] 
+	00049: CALL       
+	00050: CALL       
+	00051: DELTAP1    
+	00052: CALL       
+	00053: CALL       
+	00054: SHC[rp1,zp0] 
+
+	Glyph 729: off = 0x00020ECC, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			80
+	  yMin:			0
+	  xMax:			1086
+	  yMax:			1073
+
+	     0: Flags:		0x0226
+		Glyf Index:	686
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	664
+		X WOffset:	319
+		Y WOffset:	-68
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    37    30    21    14    65     1     1    27 
+	00012: PUSHW[2]            735    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 730: off = 0x00020EFC, len = 76
+	  numberOfContours:	-1  (Composite)
+	  xMin:			60
+	  yMin:			0
+	  xMax:			572
+	  yMax:			1073
+
+	     0: Flags:		0x0226
+		Glyf Index:	688
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	664
+		X WOffset:	-158
+		Y WOffset:	-50
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1    28 
+	00003: PUSHW[1]            -30 
+	00006: PUSHB[5]             11    13     6    85    28 
+	00012: PUSHW[1]            -64 
+	00015: PUSHB[8]             12    14    52    16    28   144    28     2 
+	00024: PUSHW[1]            -22 
+	00027: PUSHB[8]             28    21     2     3    65     1     1    18 
+	00036: PUSHW[2]            735    41 
+	00041: SVTCA[y-axis] 
+	00042: CALL       
+	00043: SVTCA[x-axis] 
+	00044: CALL       
+	00045: DELTAP1    
+	00046: CALL       
+	00047: CALL       
+	00048: SHC[rp1,zp0] 
+
+	Glyph 731: off = 0x00020F48, len = 408
+	  numberOfContours:	3
+	  xMin:			90
+	  yMin:			-31
+	  xMax:			1086
+	  yMax:			1090
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  25
+	  2:  40
+
+	  Length of Instructions:	281
+	00000: NPUSHB      (33):    47    42    92    18    92    22    83    24   167     9 
+	                           168    13   231     1   233     6     8    55    24    71 
+	                            24    83     2    89     5    89     9    83    12    83 
+	                            16     7    34 
+	00035: PUSHW[1]            723 
+	00038: NPUSHB      (25):   127    26   159    26     2    32    26   223    26     2 
+	                            47    26     1    26    26    23    17   249    11    11 
+	                            23   249     3     7    30 
+	00065: PUSHW[1]            723 
+	00068: NPUSHB      (18):    31    38    79    38     2    95    38   143    38   159 
+	                            38     3    38    38    14    20    38     7 
+	00088: PUSHW[1]            -12 
+	00091: NPUSHB      (11):    16    16     2    85     7    12    15    15     2    85 
+	                             7 
+	00104: PUSHW[1]            -12 
+	00107: NPUSHB      (11):    14    14     2    85     7    10    13    13     2    85 
+	                             7 
+	00120: PUSHW[1]            -10 
+	00123: NPUSHB      (11):    12    12     2    85     7     0    11    11     2    85 
+	                             7 
+	00136: PUSHW[1]            -26 
+	00139: PUSHB[5]             11    11     6    85     7 
+	00145: PUSHW[1]            -16 
+	00148: PUSHB[5]             13    13     6    85     7 
+	00154: PUSHW[1]            -14 
+	00157: PUSHB[5]             12    12     6    85     7 
+	00163: PUSHW[1]             -8 
+	00166: PUSHB[5]             15    15     6    85     7 
+	00172: PUSHW[1]            710 
+	00175: NPUSHB      (10):    42    14    38     0    10    12    15     2    85     0 
+	00187: PUSHW[1]            -10 
+	00190: NPUSHB      (29):    11    11     2    85     0    14    11    11     6    85 
+	                             0    14    13    13     6    85     0    12    16    16 
+	                             6    85     0    20    12    12     6    85     0 
+	00221: PUSHW[1]            -10 
+	00224: PUSHB[5]             15    15     6    85     0 
+	00230: PUSHW[2]            709    41 
+	00235: SRP0       
+	00236: MIRP[srp0,nmd,rd,2] 
+	00237: CALL       
+	00238: CALL       
+	00239: CALL       
+	00240: CALL       
+	00241: CALL       
+	00242: CALL       
+	00243: CALL       
+	00244: MIRP[nrp0,md,rd,1] 
+	00245: SRP0       
+	00246: MIRP[srp0,nmd,rd,2] 
+	00247: CALL       
+	00248: CALL       
+	00249: CALL       
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+	00253: CALL       
+	00254: CALL       
+	00255: CALL       
+	00256: CALL       
+	00257: MIRP[nrp0,md,rd,1] 
+	00258: SRP1       
+	00259: IP         
+	00260: MDAP[rd]   
+	00261: DELTAP1    
+	00262: DELTAP2    
+	00263: MIRP[nrp0,md,rd,1] 
+	00264: SVTCA[y-axis] 
+	00265: MIAP[rd+ci] 
+	00266: MIRP[nrp0,md,rd,1] 
+	00267: MIAP[rd+ci] 
+	00268: MIRP[srp0,md,rd,1] 
+	00269: SRP1       
+	00270: IP         
+	00271: MDAP[rd]   
+	00272: DELTAP1    
+	00273: DELTAP2    
+	00274: DELTAP3    
+	00275: MIRP[nrp0,md,rd,1] 
+	00276: IUP[y]     
+	00277: IUP[x]     
+	00278: SVTCA[x-axis] 
+	00279: DELTAP1    
+	00280: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:                                      Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual                 X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:                                      Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short         Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short         On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:                      Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    90,   526)  ->  Abs (    90,   526)
+	  1: Rel (     0,   254)  ->  Abs (    90,   780)
+	  2: Rel (   273,   310)  ->  Abs (   363,  1090)
+	  3: Rel (   225,     0)  ->  Abs (   588,  1090)
+	  4: Rel (   134,     0)  ->  Abs (   722,  1090)
+	  5: Rel (   216,  -117)  ->  Abs (   938,   973)
+	  6: Rel (   148,  -256)  ->  Abs (  1086,   717)
+	  7: Rel (     0,  -191)  ->  Abs (  1086,   526)
+	  8: Rel (     0,  -157)  ->  Abs (  1086,   369)
+	  9: Rel (  -112,  -248)  ->  Abs (   974,   121)
+	 10: Rel (  -226,  -152)  ->  Abs (   748,   -31)
+	 11: Rel (  -160,     0)  ->  Abs (   588,   -31)
+	 12: Rel (  -225,     0)  ->  Abs (   363,   -31)
+	 13: Rel (  -273,   305)  ->  Abs (    90,   274)
+	 14: Rel (   209,   252)  ->  Abs (   299,   526)
+	 15: Rel (     0,  -188)  ->  Abs (   299,   338)
+	 16: Rel (   152,  -209)  ->  Abs (   451,   129)
+	 17: Rel (   137,     0)  ->  Abs (   588,   129)
+	 18: Rel (   148,     0)  ->  Abs (   736,   129)
+	 19: Rel (   143,   226)  ->  Abs (   879,   355)
+	 20: Rel (     0,   173)  ->  Abs (   879,   528)
+	 21: Rel (     0,   192)  ->  Abs (   879,   720)
+	 22: Rel (  -154,   214)  ->  Abs (   725,   934)
+	 23: Rel (  -137,     0)  ->  Abs (   588,   934)
+	 24: Rel (  -145,     0)  ->  Abs (   443,   934)
+	 25: Rel (  -144,  -231)  ->  Abs (   299,   703)
+	 26: Rel (   291,   -89)  ->  Abs (   590,   614)
+	 27: Rel (    22,     0)  ->  Abs (   612,   614)
+	 28: Rel (    37,   -20)  ->  Abs (   649,   594)
+	 29: Rel (    25,   -38)  ->  Abs (   674,   556)
+	 30: Rel (     0,   -26)  ->  Abs (   674,   530)
+	 31: Rel (     0,   -24)  ->  Abs (   674,   506)
+	 32: Rel (   -22,   -38)  ->  Abs (   652,   468)
+	 33: Rel (   -38,   -22)  ->  Abs (   614,   446)
+	 34: Rel (   -24,     0)  ->  Abs (   590,   446)
+	 35: Rel (   -24,     0)  ->  Abs (   566,   446)
+	 36: Rel (   -37,    22)  ->  Abs (   529,   468)
+	 37: Rel (   -23,    38)  ->  Abs (   506,   506)
+	 38: Rel (     0,    24)  ->  Abs (   506,   530)
+	 39: Rel (     0,    35)  ->  Abs (   506,   565)
+	 40: Rel (    48,    49)  ->  Abs (   554,   614)
+
+	Glyph 732: off = 0x000210E0, len = 358
+	  numberOfContours:	2
+	  xMin:			110
+	  yMin:			-408
+	  xMax:			1015
+	  yMax:			1073
+
+	EndPoints
+	---------
+	  0:  24
+	  1:  40
+
+	  Length of Instructions:	233
+	00000: NPUSHB      (32):     9    32    31    34    52     9    32    14    17    52 
+	                            73    21    75    22    91    21   139    22   184    15 
+	                             5    25    21    41    21    56    21    61    22     4 
+	                            15    23 
+	00034: PUSHW[1]            -16 
+	00037: PUSHB[3]              2    14    21 
+	00041: PUSHW[4]            -16     2    25   723 
+	00050: NPUSHB      (19):    33    33     3   108     8     8    13    41    18    14 
+	                            11    11    23   249    13     7     5   197     6 
+	00071: PUSHW[1]            -64 
+	00074: PUSHB[6]             25    40    52     6    85    29 
+	00081: PUSHW[1]            723 
+	00084: PUSHB[7]             37    20    15    15     6    85    37 
+	00092: PUSHW[1]            -22 
+	00095: NPUSHB      (20):    12    13     6    85    37    64    35    38    52    37 
+	                            64    25    28    52    37    37     0    19    32    16 
+	00117: PUSHW[1]             -8 
+	00120: PUSHB[5]             11    12     6    85    16 
+	00126: PUSHW[1]             -4 
+	00129: NPUSHB      (20):    13    13     6    85    16    20    15    15     6    85 
+	                            16    35    16    16     6    85    47    16     1    16 
+	00151: PUSHW[1]            712 
+	00154: NPUSHB      (22):    42     0    32    11    18    11    13     6    85    11 
+	                             8    15    15     6    85    11    18    16    16     6 
+	                            85    11 
+	00178: PUSHW[2]            713    41 
+	00183: SRP0       
+	00184: MIRP[srp0,nmd,rd,2] 
+	00185: CALL       
+	00186: CALL       
+	00187: CALL       
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: SRP0       
+	00190: MIRP[srp0,nmd,rd,2] 
+	00191: DELTAP1    
+	00192: CALL       
+	00193: CALL       
+	00194: CALL       
+	00195: CALL       
+	00196: MIRP[nrp0,md,rd,1] 
+	00197: SRP1       
+	00198: IP         
+	00199: MDAP[rd]   
+	00200: CALL       
+	00201: CALL       
+	00202: CALL       
+	00203: CALL       
+	00204: MIRP[nrp0,md,rd,1] 
+	00205: MIRP[srp0,md,rd,2] 
+	00206: CALL       
+	00207: MIRP[nrp0,nmd,rd,0] 
+	00208: SVTCA[y-axis] 
+	00209: MIAP[rd+ci] 
+	00210: MIRP[nrp0,md,rd,1] 
+	00211: SHP[rp1,zp0] 
+	00212: MDAP[rd]   
+	00213: MIAP[rd+ci] 
+	00214: SRP1       
+	00215: SRP2       
+	00216: IP         
+	00217: MDAP[rd]   
+	00218: MIRP[nrp0,md,rd,1] 
+	00219: SHP[rp1,zp0] 
+	00220: MDAP[rd]   
+	00221: MIRP[nrp0,md,rd,1] 
+	00222: IUP[y]     
+	00223: IUP[x]     
+	00224: SLOOP      
+	00225: SHPIX      
+	00226: SVTCA[x-axis] 
+	00227: SLOOP      
+	00228: SHPIX      
+	00229: DELTAP1    
+	00230: DELTAP1    
+	00231: CALL       
+	00232: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:        XDual                         On
+	 11:        XDual                         On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual                               Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:        XDual                         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:                                      On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:                      Y-Short X-Short Off
+	 32:                      Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   294,   897)  ->  Abs (   294,   897)
+	  1: Rel (     0,  -281)  ->  Abs (   294,   616)
+	  2: Rel (     0,  -122)  ->  Abs (   294,   494)
+	  3: Rel (    92,     0)  ->  Abs (   386,   494)
+	  4: Rel (    45,     0)  ->  Abs (   431,   494)
+	  5: Rel (    31,    12)  ->  Abs (   462,   506)
+	  6: Rel (    19,  -139)  ->  Abs (   481,   367)
+	  7: Rel (   -54,   -25)  ->  Abs (   427,   342)
+	  8: Rel (   -68,     0)  ->  Abs (   359,   342)
+	  9: Rel (  -249,     0)  ->  Abs (   110,   342)
+	 10: Rel (     0,   279)  ->  Abs (   110,   621)
+	 11: Rel (     0,   399)  ->  Abs (   110,  1020)
+	 12: Rel (   180,    53)  ->  Abs (   290,  1073)
+	 13: Rel (   193,     0)  ->  Abs (   483,  1073)
+	 14: Rel (   282,     0)  ->  Abs (   765,  1073)
+	 15: Rel (   250,  -230)  ->  Abs (  1015,   843)
+	 16: Rel (     0,  -249)  ->  Abs (  1015,   594)
+	 17: Rel (     0, -1002)  ->  Abs (  1015,  -408)
+	 18: Rel (  -190,     0)  ->  Abs (   825,  -408)
+	 19: Rel (     0,   983)  ->  Abs (   825,   575)
+	 20: Rel (     0,   117)  ->  Abs (   825,   692)
+	 21: Rel (   -63,   145)  ->  Abs (   762,   837)
+	 22: Rel (  -165,    78)  ->  Abs (   597,   915)
+	 23: Rel (  -126,     0)  ->  Abs (   471,   915)
+	 24: Rel (   -98,     0)  ->  Abs (   373,   915)
+	 25: Rel (   267,  -349)  ->  Abs (   640,   566)
+	 26: Rel (    24,     0)  ->  Abs (   664,   566)
+	 27: Rel (    37,   -23)  ->  Abs (   701,   543)
+	 28: Rel (    23,   -37)  ->  Abs (   724,   506)
+	 29: Rel (     0,   -24)  ->  Abs (   724,   482)
+	 30: Rel (     0,   -25)  ->  Abs (   724,   457)
+	 31: Rel (   -22,   -37)  ->  Abs (   702,   420)
+	 32: Rel (   -37,   -22)  ->  Abs (   665,   398)
+	 33: Rel (   -25,     0)  ->  Abs (   640,   398)
+	 34: Rel (   -24,     0)  ->  Abs (   616,   398)
+	 35: Rel (   -38,    22)  ->  Abs (   578,   420)
+	 36: Rel (   -22,    38)  ->  Abs (   556,   458)
+	 37: Rel (     0,    24)  ->  Abs (   556,   482)
+	 38: Rel (     0,    22)  ->  Abs (   556,   504)
+	 39: Rel (    19,    37)  ->  Abs (   575,   541)
+	 40: Rel (    39,    25)  ->  Abs (   614,   566)
+
+	Glyph 733: off = 0x00021246, len = 352
+	  numberOfContours:	2
+	  xMin:			115
+	  yMin:			-16
+	  xMax:			1029
+	  yMax:			1079
+
+	EndPoints
+	---------
+	  0:  32
+	  1:  45
+
+	  Length of Instructions:	214
+	00000: NPUSHB      (19):    77    14    75    18   122    14   139    14     4    47 
+	                            14    47    18    61    14    61    18     4    33 
+	00021: PUSHW[1]            723 
+	00024: NPUSHB      (28):    40    40    24   108    29    29     2     8    11   249 
+	                            10    10    13   249     8    11     0     0    19   249 
+	                             2     7    11    11    10    10    32    27 
+	00054: PUSHW[1]            -64 
+	00057: PUSHB[6]             25    35    52    27    62    37 
+	00064: PUSHW[3]            723    43   -28 
+	00071: NPUSHB      (32):    12    13     6    85    43     8    16    16     6    85 
+	                            43    64    33    35    52    43    64    25    28    52 
+	                            43    43    22    16    38     5     8    16    16     6 
+	                            85     5 
+	00105: PUSHW[1]             -8 
+	00108: PUSHB[5]             15    15     6    85     5 
+	00114: PUSHW[1]             -8 
+	00117: PUSHB[8]             11    13     6    85    32     5     1     5 
+	00126: PUSHW[6]            710    47    22   719    32    -8 
+	00139: NPUSHB      (17):    16    16     6    85    32    14    15    15     6    85 
+	                            32    14    11    13     6    85    32 
+	00158: PUSHW[2]            713    46 
+	00163: SRP0       
+	00164: MIRP[srp0,nmd,rd,2] 
+	00165: CALL       
+	00166: CALL       
+	00167: CALL       
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: SRP0       
+	00170: MIRP[srp0,nmd,rd,0] 
+	00171: DELTAP1    
+	00172: CALL       
+	00173: CALL       
+	00174: CALL       
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: SRP1       
+	00177: IP         
+	00178: MDAP[rd]   
+	00179: CALL       
+	00180: CALL       
+	00181: CALL       
+	00182: CALL       
+	00183: MIRP[nrp0,md,rd,1] 
+	00184: MIRP[nrp0,md,rd,2] 
+	00185: CALL       
+	00186: SRP1       
+	00187: SHP[rp1,zp0] 
+	00188: MDAP[rd]   
+	00189: SHP[rp1,zp0] 
+	00190: MDAP[rd]   
+	00191: SVTCA[y-axis] 
+	00192: MIAP[rd+ci] 
+	00193: MIRP[nrp0,md,rd,1] 
+	00194: SHP[rp1,zp0] 
+	00195: MDAP[rd]   
+	00196: MIAP[rd+ci] 
+	00197: MIRP[nrp0,md,rd,1] 
+	00198: SHP[rp1,zp0] 
+	00199: MDAP[rd]   
+	00200: MIRP[nrp0,md,rd,1] 
+	00201: SRP1       
+	00202: SRP2       
+	00203: IP         
+	00204: MDAP[rd]   
+	00205: MIRP[nrp0,md,rd,1] 
+	00206: SHP[rp1,zp0] 
+	00207: MDAP[rd]   
+	00208: MIRP[nrp0,md,rd,1] 
+	00209: IUP[y]     
+	00210: IUP[x]     
+	00211: SVTCA[x-axis] 
+	00212: DELTAP1    
+	00213: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:                                      Off
+	  5:        XDual                         On
+	  6:        XDual                         Off
+	  7:                                      Off
+	  8:  YDual                               On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short On
+	 28:                      Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:                      Y-Short         On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:                      Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   122,  1026)  ->  Abs (   122,  1026)
+	  1: Rel (   173,    53)  ->  Abs (   295,  1079)
+	  2: Rel (   189,     0)  ->  Abs (   484,  1079)
+	  3: Rel (   233,     0)  ->  Abs (   717,  1079)
+	  4: Rel (   312,  -274)  ->  Abs (  1029,   805)
+	  5: Rel (     0,  -260)  ->  Abs (  1029,   545)
+	  6: Rel (     0,  -257)  ->  Abs (  1029,   288)
+	  7: Rel (  -320,  -304)  ->  Abs (   709,   -16)
+	  8: Rel (  -286,     0)  ->  Abs (   423,   -16)
+	  9: Rel (  -195,     0)  ->  Abs (   228,   -16)
+	 10: Rel (  -113,    71)  ->  Abs (   115,    55)
+	 11: Rel (    46,   158)  ->  Abs (   161,   213)
+	 12: Rel (    98,   -63)  ->  Abs (   259,   150)
+	 13: Rel (   151,     0)  ->  Abs (   410,   150)
+	 14: Rel (   171,     0)  ->  Abs (   581,   150)
+	 15: Rel (   247,   195)  ->  Abs (   828,   345)
+	 16: Rel (     0,   196)  ->  Abs (   828,   541)
+	 17: Rel (     0,   172)  ->  Abs (   828,   713)
+	 18: Rel (  -194,   209)  ->  Abs (   634,   922)
+	 19: Rel (  -162,     0)  ->  Abs (   472,   922)
+	 20: Rel (   -84,     0)  ->  Abs (   388,   922)
+	 21: Rel (   -82,   -19)  ->  Abs (   306,   903)
+	 22: Rel (     0,  -194)  ->  Abs (   306,   709)
+	 23: Rel (     0,  -123)  ->  Abs (   306,   586)
+	 24: Rel (   123,     0)  ->  Abs (   429,   586)
+	 25: Rel (    18,     0)  ->  Abs (   447,   586)
+	 26: Rel (    10,     2)  ->  Abs (   457,   588)
+	 27: Rel (    21,  -135)  ->  Abs (   478,   453)
+	 28: Rel (   -39,   -19)  ->  Abs (   439,   434)
+	 29: Rel (   -66,     0)  ->  Abs (   373,   434)
+	 30: Rel (   -98,     0)  ->  Abs (   275,   434)
+	 31: Rel (  -153,   131)  ->  Abs (   122,   565)
+	 32: Rel (     0,   135)  ->  Abs (   122,   700)
+	 33: Rel (   522,   -73)  ->  Abs (   644,   627)
+	 34: Rel (    24,     0)  ->  Abs (   668,   627)
+	 35: Rel (    37,   -23)  ->  Abs (   705,   604)
+	 36: Rel (    23,   -37)  ->  Abs (   728,   567)
+	 37: Rel (     0,   -24)  ->  Abs (   728,   543)
+	 38: Rel (     0,   -36)  ->  Abs (   728,   507)
+	 39: Rel (   -48,   -48)  ->  Abs (   680,   459)
+	 40: Rel (   -36,     0)  ->  Abs (   644,   459)
+	 41: Rel (   -35,     0)  ->  Abs (   609,   459)
+	 42: Rel (   -49,    48)  ->  Abs (   560,   507)
+	 43: Rel (     0,    36)  ->  Abs (   560,   543)
+	 44: Rel (     0,    35)  ->  Abs (   560,   578)
+	 45: Rel (    48,    49)  ->  Abs (   608,   627)
+
+	Glyph 734: off = 0x000213A6, len = 70
+	  numberOfContours:	-1  (Composite)
+	  xMin:			10
+	  yMin:			0
+	  xMax:			870
+	  yMax:			1061
+
+	     0: Flags:		0x0226
+		Glyf Index:	694
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	664
+		X WOffset:	-155
+		Y WOffset:	-115
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              1    28    18    11    12     6    85    28 
+	00009: PUSHW[1]            -18 
+	00012: NPUSHB      (16):    13    13     6    85     0    28    28     9     9    65 
+	                            71    11     1     1     1    18 
+	00030: PUSHW[2]            737    41 
+	00035: SVTCA[y-axis] 
+	00036: CALL       
+	00037: SVTCA[x-axis] 
+	00038: DELTAP2    
+	00039: CALL       
+	00040: CALL       
+	00041: CALL       
+	00042: SHC[rp1,zp0] 
+
+	Glyph 735: off = 0x000213EC, len = 84
+	  numberOfContours:	-1  (Composite)
+	  xMin:			150
+	  yMin:			-408
+	  xMax:			1016
+	  yMax:			1061
+
+	     0: Flags:		0x0226
+		Glyf Index:	695
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	664
+		X WOffset:	200
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (28):     2    35     8    16    16     6    85    35    64    62 
+	                            67    52    35    64    51    55    52    35    64    29 
+	                            31    52   255    35     1   112    35     1 
+	00030: PUSHW[1]            -93 
+	00033: PUSHB[8]             35    28    23    19    65     2     1    25 
+	00042: PUSHW[2]            738    41 
+	00047: SVTCA[y-axis] 
+	00048: CALL       
+	00049: SVTCA[x-axis] 
+	00050: CALL       
+	00051: DELTAP1    
+	00052: DELTAP2    
+	00053: CALL       
+	00054: CALL       
+	00055: CALL       
+	00056: CALL       
+	00057: SHC[rp1,zp0] 
+
+	Glyph 736: off = 0x00021440, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			40
+	  yMin:			0
+	  xMax:			898
+	  yMax:			1073
+
+	     0: Flags:		0x0226
+		Glyf Index:	696
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	664
+		X BOffset:	18
+		Y BOffset:	-72
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1    25 
+	00003: PUSHW[1]            -18 
+	00006: NPUSHB      (13):    13    13     6    85     0    25    18    14     8    65 
+	                             1     1    15 
+	00021: PUSHW[2]            737    41 
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: CALL       
+	00031: SHC[rp1,zp0] 
+
+	Glyph 737: off = 0x00021478, len = 370
+	  numberOfContours:	2
+	  xMin:			100
+	  yMin:			-29
+	  xMax:			1322
+	  yMax:			1061
+
+	EndPoints
+	---------
+	  0:  33
+	  1:  46
+
+	  Length of Instructions:	216
+	00000: NPUSHB      (90):    47    48   205    19   203    20   203    25   218    20 
+	                           218    25     6   164    11   164    12   170    20   170 
+	                            25   187    20   187    25     6   121    31   140     5 
+	                           137    30   137    31   155    20   153    25     6   106 
+	                            18   106    31   117    11   114    12   116    16   118 
+	                            26     6    72    20    72    25    89     5    92    18 
+	                            90    31   104     5     6    43    31    49    15    53 
+	                            16    61    19    61    26    49    30     6     7    15 
+	                             8    19    22    15    28    19    25    26     5    34 
+	00092: PUSHW[1]            723 
+	00095: NPUSHB      (16):    40    40    17    14     3     3    33    17   249    28 
+	                            11    22     7    33     6    37 
+	00113: PUSHW[1]            723 
+	00116: PUSHB[7]            111    44     1    44    44    22     8 
+	00124: PUSHW[1]             -8 
+	00127: NPUSHB      (27):    16    16     6    85    22     8    16    16     6    85 
+	                            33     8    16    16     6    85     8    32    48     7 
+	                             1     7     7    33    22    32    23 
+	00156: PUSHW[1]            710 
+	00159: PUSHB[6]             48    14     3     0    32    33 
+	00166: PUSHW[2]            709    47 
+	00171: SRP0       
+	00172: MIRP[srp0,nmd,rd,2] 
+	00173: MIRP[srp0,md,rd,1] 
+	00174: SHP[rp2,zp1] 
+	00175: SHP[rp2,zp1] 
+	00176: SRP0       
+	00177: MIRP[srp0,nmd,rd,2] 
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: SRP2       
+	00180: IP         
+	00181: MDAP[rd]   
+	00182: DELTAP1    
+	00183: MIRP[srp0,md,rd,1] 
+	00184: CALL       
+	00185: CALL       
+	00186: CALL       
+	00187: SRP1       
+	00188: IP         
+	00189: MDAP[rd]   
+	00190: DELTAP1    
+	00191: MIRP[nrp0,md,rd,1] 
+	00192: SVTCA[y-axis] 
+	00193: MIAP[rd+ci] 
+	00194: ALIGNRP    
+	00195: ALIGNRP    
+	00196: MIAP[rd+ci] 
+	00197: MIRP[nrp0,md,rd,1] 
+	00198: SRP2       
+	00199: IP         
+	00200: MDAP[rd]   
+	00201: SHP[rp1,zp0] 
+	00202: SRP1       
+	00203: IP         
+	00204: MDAP[rd]   
+	00205: MIRP[nrp0,md,rd,1] 
+	00206: IUP[y]     
+	00207: IUP[x]     
+	00208: SVTCA[x-axis] 
+	00209: DELTAP1    
+	00210: DELTAP1    
+	00211: DELTAP1    
+	00212: DELTAP1    
+	00213: DELTAP1    
+	00214: DELTAP1    
+	00215: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short On
+	  2:        XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:        XDual                 X-Short On
+	  8:  YDual XDual                 X-Short On
+	  9:                              X-Short On
+	 10:              Rep-  3 Y-Short X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:        XDual                 X-Short On
+	 23:  YDual XDual                 X-Short On
+	 24:                              X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:                              X-Short Off
+	 27:                      Y-Short         Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:                              X-Short Off
+	 32:        XDual                         On
+	 33:                              X-Short On
+	 34:                                      On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:                      Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   294,  1061)  ->  Abs (   294,  1061)
+	  1: Rel (     4,  -172)  ->  Abs (   298,   889)
+	  2: Rel (     6,  -265)  ->  Abs (   304,   624)
+	  3: Rel (    17,  -102)  ->  Abs (   321,   522)
+	  4: Rel (   106,     0)  ->  Abs (   427,   522)
+	  5: Rel (   170,   106)  ->  Abs (   597,   628)
+	  6: Rel (     0,   148)  ->  Abs (   597,   776)
+	  7: Rel (    21,   285)  ->  Abs (   618,  1061)
+	  8: Rel (   192,     0)  ->  Abs (   810,  1061)
+	  9: Rel (   -24,  -334)  ->  Abs (   786,   727)
+	 10: Rel (    -6,   -85)  ->  Abs (   780,   642)
+	 11: Rel (   -26,   -88)  ->  Abs (   754,   554)
+	 12: Rel (   -81,   -98)  ->  Abs (   673,   456)
+	 13: Rel (  -175,   -73)  ->  Abs (   498,   383)
+	 14: Rel (  -148,   -12)  ->  Abs (   350,   371)
+	 15: Rel (    25,  -108)  ->  Abs (   375,   263)
+	 16: Rel (   182,  -130)  ->  Abs (   557,   133)
+	 17: Rel (   133,     0)  ->  Abs (   690,   133)
+	 18: Rel (   123,     0)  ->  Abs (   813,   133)
+	 19: Rel (   176,   117)  ->  Abs (   989,   250)
+	 20: Rel (    84,   185)  ->  Abs (  1073,   435)
+	 21: Rel (    14,   171)  ->  Abs (  1087,   606)
+	 22: Rel (    43,   455)  ->  Abs (  1130,  1061)
+	 23: Rel (   192,     0)  ->  Abs (  1322,  1061)
+	 24: Rel (   -36,  -393)  ->  Abs (  1286,   668)
+	 25: Rel (   -21,  -221)  ->  Abs (  1265,   447)
+	 26: Rel (  -108,  -294)  ->  Abs (  1157,   153)
+	 27: Rel (  -267,  -182)  ->  Abs (   890,   -29)
+	 28: Rel (  -211,     0)  ->  Abs (   679,   -29)
+	 29: Rel (  -187,     0)  ->  Abs (   492,   -29)
+	 30: Rel (  -253,   181)  ->  Abs (   239,   152)
+	 31: Rel (  -125,   336)  ->  Abs (   114,   488)
+	 32: Rel (     0,   280)  ->  Abs (   114,   768)
+	 33: Rel (   -14,   293)  ->  Abs (   100,  1061)
+	 34: Rel (   784,  -510)  ->  Abs (   884,   551)
+	 35: Rel (    35,     0)  ->  Abs (   919,   551)
+	 36: Rel (    49,   -49)  ->  Abs (   968,   502)
+	 37: Rel (     0,   -35)  ->  Abs (   968,   467)
+	 38: Rel (     0,   -35)  ->  Abs (   968,   432)
+	 39: Rel (   -48,   -49)  ->  Abs (   920,   383)
+	 40: Rel (   -36,     0)  ->  Abs (   884,   383)
+	 41: Rel (   -21,     0)  ->  Abs (   863,   383)
+	 42: Rel (   -37,    19)  ->  Abs (   826,   402)
+	 43: Rel (   -26,    39)  ->  Abs (   800,   441)
+	 44: Rel (     0,    26)  ->  Abs (   800,   467)
+	 45: Rel (     0,    35)  ->  Abs (   800,   502)
+	 46: Rel (    48,    49)  ->  Abs (   848,   551)
+
+	Glyph 738: off = 0x000215EA, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			40
+	  yMin:			-8
+	  xMax:			1171
+	  yMax:			1073
+
+	     0: Flags:		0x0226
+		Glyf Index:	698
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	664
+		X WOffset:	390
+		Y WOffset:	-93
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     1   160    41   176    41     2     0    41    34    24 
+	                            18    65     1     1    31 
+	00017: PUSHW[2]            737    41 
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+	00026: DELTAP1    
+	00027: SHC[rp1,zp0] 
+
+	Glyph 739: off = 0x00021620, len = 146
+	  numberOfContours:	2
+	  xMin:			155
+	  yMin:			0
+	  xMax:			350
+	  yMax:			1350
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  18
+
+	  Length of Instructions:	78
+	00000: PUSHW[4]             12   723     4   733 
+	00009: PUSHB[5]              2    10     3     6     8 
+	00015: PUSHW[1]            723 
+	00018: PUSHB[4]             16    16     3    20 
+	00023: PUSHW[1]            712 
+	00026: PUSHB[3]              0    32     3 
+	00030: PUSHW[1]             -2 
+	00033: PUSHB[5]             11    11     6    85     3 
+	00039: PUSHW[1]             -2 
+	00042: NPUSHB      (11):    13    13     6    85     3    20    16    16     6    85 
+	                             3 
+	00055: PUSHW[2]            711    19 
+	00060: SRP0       
+	00061: MIRP[srp0,nmd,rd,2] 
+	00062: CALL       
+	00063: CALL       
+	00064: CALL       
+	00065: MIRP[srp0,md,rd,1] 
+	00066: MIRP[nrp0,nmd,rd,2] 
+	00067: SRP2       
+	00068: IP         
+	00069: MDAP[rd]   
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: SVTCA[y-axis] 
+	00072: MIAP[rd+ci] 
+	00073: MIAP[rd+ci] 
+	00074: MIAP[rd+ci] 
+	00075: MIRP[nrp0,md,rd,1] 
+	00076: IUP[y]     
+	00077: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+	  4:        XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   350,  1061)  ->  Abs (   350,  1061)
+	  1: Rel (     0, -1061)  ->  Abs (   350,     0)
+	  2: Rel (  -195,     0)  ->  Abs (   155,     0)
+	  3: Rel (     0,  1061)  ->  Abs (   155,  1061)
+	  4: Rel (    96,   289)  ->  Abs (   251,  1350)
+	  5: Rel (    22,     0)  ->  Abs (   273,  1350)
+	  6: Rel (    37,   -20)  ->  Abs (   310,  1330)
+	  7: Rel (    25,   -38)  ->  Abs (   335,  1292)
+	  8: Rel (     0,   -26)  ->  Abs (   335,  1266)
+	  9: Rel (     0,   -24)  ->  Abs (   335,  1242)
+	 10: Rel (   -22,   -38)  ->  Abs (   313,  1204)
+	 11: Rel (   -38,   -22)  ->  Abs (   275,  1182)
+	 12: Rel (   -24,     0)  ->  Abs (   251,  1182)
+	 13: Rel (   -24,     0)  ->  Abs (   227,  1182)
+	 14: Rel (   -37,    22)  ->  Abs (   190,  1204)
+	 15: Rel (   -23,    38)  ->  Abs (   167,  1242)
+	 16: Rel (     0,    24)  ->  Abs (   167,  1266)
+	 17: Rel (     0,    35)  ->  Abs (   167,  1301)
+	 18: Rel (    48,    49)  ->  Abs (   215,  1350)
+
+	Glyph 740: off = 0x000216B2, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			50
+	  yMin:			0
+	  xMax:			1065
+	  yMax:			1355
+
+	     0: Flags:		0x0226
+		Glyf Index:	673
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	667
+		X WOffset:	134
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (22):     1    20    64    18    21    52     0    20    16    20 
+	                           224    20     3     0    20    21    11    11    65     1 
+	                             1    20 
+	00024: PUSHW[2]            733    41 
+	00029: SVTCA[y-axis] 
+	00030: CALL       
+	00031: SVTCA[x-axis] 
+	00032: CALL       
+	00033: DELTAP1    
+	00034: CALL       
+	00035: SHC[rp1,zp0] 
+
+	Glyph 741: off = 0x000216F0, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			80
+	  yMin:			-16
+	  xMax:			854
+	  yMax:			1355
+
+	     0: Flags:		0x0226
+		Glyf Index:	683
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	667
+		X BOffset:	100
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    25    26    13     7    65     1     1    25 
+	00012: PUSHW[2]            733    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 742: off = 0x0002171E, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			115
+	  yMin:			-16
+	  xMax:			1029
+	  yMax:			1355
+
+	     0: Flags:		0x0226
+		Glyf Index:	692
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	667
+		X WOffset:	188
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              1    64    34     1    34 
+	00006: PUSHW[1]            -64 
+	00009: NPUSHB      (12):     9    11    52     0    34    35     2     2    65     1 
+	                             1    34 
+	00023: PUSHW[2]            733    41 
+	00028: SVTCA[y-axis] 
+	00029: CALL       
+	00030: SVTCA[x-axis] 
+	00031: CALL       
+	00032: CALL       
+	00033: DELTAP1    
+	00034: SHC[rp1,zp0] 
+
+	Glyph 743: off = 0x0002175C, len = 304
+	  numberOfContours:	1
+	  xMin:			60
+	  yMin:			0
+	  xMax:			1124
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	210
+	00000: NPUSHB      (35):   108     2   113     8   115     9     3     5    15    26 
+	                             8    39    24    52     3    75     0    75     1    87 
+	                            25   111     8   138     8   130    24    10     2    24 
+	                            12    17     6    85    16 
+	00037: PUSHW[1]            -24 
+	00040: NPUSHB      (59):    12    17     6    85    12    25    16    15    15     0 
+	                             2     9    10     1     1    10    10    32    15     0 
+	                            20    15    15     0    25    16     2     9     4    14 
+	                             6     5     0     1    10    11   249    14    20    21 
+	                            21    15    15    14     6    22    19    20     4     5 
+	                             7     9     2    25    16     4    21     6     1 
+	00101: PUSHW[1]            608 
+	00104: PUSHB[8]            128     0     1     0     0    20    32    21 
+	00113: PUSHW[1]            714 
+	00116: NPUSHB      (15):    27    10    11    12    15   117    14    14    13    32 
+	                            12    12     5    32     6 
+	00133: PUSHW[2]            713    26 
+	00138: SRP0       
+	00139: MIRP[srp0,nmd,rd,2] 
+	00140: MIRP[nrp0,md,rd,1] 
+	00141: SHP[rp1,zp0] 
+	00142: MDAP[rd]   
+	00143: MIRP[srp0,md,rd,1] 
+	00144: ALIGNRP    
+	00145: SRP0       
+	00146: MIRP[nrp0,nmd,rd,0] 
+	00147: SRP0       
+	00148: ALIGNRP    
+	00149: SHP[rp2,zp1] 
+	00150: SRP0       
+	00151: MIRP[srp0,nmd,rd,2] 
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: SHP[rp1,zp0] 
+	00154: MDAP[rd]   
+	00155: DELTAP1    
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: SRP1       
+	00158: SRP2       
+	00159: SLOOP      
+	00160: IP         
+	00161: SHP[rp1,zp0] 
+	00162: SRP1       
+	00163: SHP[rp1,zp0] 
+	00164: SRP1       
+	00165: SHP[rp1,zp0] 
+	00166: SHP[rp2,zp1] 
+	00167: SVTCA[y-axis] 
+	00168: MIAP[rd+ci] 
+	00169: ALIGNRP    
+	00170: SRP0       
+	00171: ALIGNRP    
+	00172: SRP0       
+	00173: ALIGNRP    
+	00174: SRP0       
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: MIAP[rd+ci] 
+	00177: ALIGNRP    
+	00178: ALIGNRP    
+	00179: ALIGNRP    
+	00180: SRP2       
+	00181: SLOOP      
+	00182: IP         
+	00183: SDPVTL[1]  
+	00184: SFVTCA[x-axis] 
+	00185: MDAP[nrd]  
+	00186: CALL       
+	00187: RDTG       
+	00188: SRP0       
+	00189: MDRP[nrp0,nmd,rd,0] 
+	00190: SPVTL[p1,p2] 
+	00191: SFVTPV     
+	00192: ALIGNRP    
+	00193: ALIGNRP    
+	00194: SDPVTL[1]  
+	00195: SFVTPV     
+	00196: SRP0       
+	00197: MDRP[nrp0,nmd,rd,0] 
+	00198: ALIGNRP    
+	00199: SVTCA[y-axis] 
+	00200: RTG        
+	00201: MDAP[rd]   
+	00202: CALL       
+	00203: CALL       
+	00204: IUP[y]     
+	00205: IUP[x]     
+	00206: SVTCA[x-axis] 
+	00207: DELTAP1    
+	00208: SVTCA[y-axis] 
+	00209: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:                                      On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                              X-Short On
+	  6:  YDual                       X-Short On
+	  7:        XDual                 X-Short On
+	  8:        XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual                       X-Short On
+	 12:        XDual                         On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual                         On
+	 15:  YDual XDual                 X-Short On
+	 16:                                      On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual                 X-Short On
+	 22:                      Y-Short X-Short On
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short Off
+	 25:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1124,     0)  ->  Abs (  1124,     0)
+	  1: Rel (  -236,     0)  ->  Abs (   888,     0)
+	  2: Rel (  -405,   573)  ->  Abs (   483,   573)
+	  3: Rel (   -93,   -51)  ->  Abs (   390,   522)
+	  4: Rel (   -18,  -155)  ->  Abs (   372,   367)
+	  5: Rel (   -43,  -367)  ->  Abs (   329,     0)
+	  6: Rel (  -198,     0)  ->  Abs (   131,     0)
+	  7: Rel (    43,   367)  ->  Abs (   174,   367)
+	  8: Rel (    30,   256)  ->  Abs (   204,   623)
+	  9: Rel (   178,    90)  ->  Abs (   382,   713)
+	 10: Rel (  -134,   188)  ->  Abs (   248,   901)
+	 11: Rel (  -188,     0)  ->  Abs (    60,   901)
+	 12: Rel (     0,   565)  ->  Abs (    60,  1466)
+	 13: Rel (   190,     0)  ->  Abs (   250,  1466)
+	 14: Rel (     0,  -405)  ->  Abs (   250,  1061)
+	 15: Rel (   120,     0)  ->  Abs (   370,  1061)
+	 16: Rel (   340,  -475)  ->  Abs (   710,   586)
+	 17: Rel (    62,    41)  ->  Abs (   772,   627)
+	 18: Rel (    50,   109)  ->  Abs (   822,   736)
+	 19: Rel (    13,   112)  ->  Abs (   835,   848)
+	 20: Rel (    25,   213)  ->  Abs (   860,  1061)
+	 21: Rel (   198,     0)  ->  Abs (  1058,  1061)
+	 22: Rel (   -24,  -219)  ->  Abs (  1034,   842)
+	 23: Rel (   -17,  -156)  ->  Abs (  1017,   686)
+	 24: Rel (  -108,  -175)  ->  Abs (   909,   511)
+	 25: Rel (  -103,   -62)  ->  Abs (   806,   449)
+
+	Glyph 744: off = 0x0002188C, len = 40
+	  numberOfContours:	1
+	  xMin:			-36
+	  yMin:			-275
+	  xMax:			36
+	  yMax:			1289
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	13
+	00000: PUSHB[5]              2     3     0   171     3 
+	00006: MDAP[rd]   
+	00007: MIRP[nrp0,md,rd,1] 
+	00008: SVTCA[y-axis] 
+	00009: MDAP[rd]   
+	00010: MDAP[rd]   
+	00011: IUP[y]     
+	00012: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (    36,  1289)  ->  Abs (    36,  1289)
+	  1: Rel (     0, -1564)  ->  Abs (    36,  -275)
+	  2: Rel (   -72,     0)  ->  Abs (   -36,  -275)
+	  3: Rel (     0,  1564)  ->  Abs (   -36,  1289)
+
+	Glyph 745: off = 0x000218B4, len = 316
+	  numberOfContours:	1
+	  xMin:			-219
+	  yMin:			-275
+	  xMax:			219
+	  yMax:			1413
+
+	EndPoints
+	---------
+	  0:  14
+
+	  Length of Instructions:	257
+	00000: NPUSHB      (18):    24     5    23    11     2    77     2    77    14     2 
+	                             1    12   229    13    13     4   229     3 
+	00020: PUSHW[1]            -64 
+	00023: PUSHB[4]              9    14    52     3 
+	00028: PUSHW[1]            728 
+	00031: NPUSHB      (13):     5    10   229     9     6   229     9     7    64     9 
+	                            14    52     7 
+	00046: PUSHW[1]            728 
+	00049: PUSHB[7]              5     8    64    63    63    52     8 
+	00057: PUSHW[1]            -64 
+	00060: NPUSHB      (52):    22    23    52     8     8     5    11     5    14     2 
+	                            64   141   142    52     2    64    91    92    52     2 
+	                            64    38    41    52     2    64    14    23    52     2 
+	                             2     5    34     9    20    52     5    12   229    13 
+	                            10   229     9    13    64    43    45    52     0    13 
+	                             1    13 
+	00114: PUSHW[1]            726 
+	00117: NPUSHB       (9):     9    64    43    45    52     0     9     1     9 
+	00128: PUSHW[3]            726    11   -34 
+	00135: NPUSHB      (15):    43    51    52    11    11    14   171     2     4   229 
+	                             3     6   229     7     3 
+	00152: PUSHW[1]            -64 
+	00155: PUSHB[7]             43    45    52    15     3     1     3 
+	00163: PUSHW[3]            726     7   -64 
+	00170: PUSHB[7]             43    45    52    15     7     1     7 
+	00178: PUSHW[1]            726 
+	00181: PUSHB[8]              5    34    43    51    52     5     5     2 
+	00190: MDAP[rd]   
+	00191: SHP[rp1,zp0] 
+	00192: MDAP[rd]   
+	00193: CALL       
+	00194: MIRP[nrp0,nmd,rd,0] 
+	00195: DELTAP1    
+	00196: CALL       
+	00197: MIRP[nrp0,nmd,rd,0] 
+	00198: DELTAP1    
+	00199: CALL       
+	00200: SRP0       
+	00201: MIRP[nrp0,md,rd,0] 
+	00202: SRP0       
+	00203: MIRP[nrp0,md,rd,0] 
+	00204: SRP0       
+	00205: MIRP[srp0,md,rd,1] 
+	00206: SHP[rp2,zp1] 
+	00207: MDAP[rd]   
+	00208: CALL       
+	00209: MIRP[nrp0,nmd,rd,0] 
+	00210: DELTAP1    
+	00211: CALL       
+	00212: MIRP[nrp0,nmd,rd,0] 
+	00213: DELTAP1    
+	00214: CALL       
+	00215: SRP0       
+	00216: MIRP[nrp0,md,rd,0] 
+	00217: SRP0       
+	00218: MIRP[nrp0,md,rd,0] 
+	00219: SVTCA[y-axis] 
+	00220: MDAP[rd]   
+	00221: CALL       
+	00222: SHP[rp1,zp0] 
+	00223: MDAP[rd]   
+	00224: CALL       
+	00225: CALL       
+	00226: CALL       
+	00227: CALL       
+	00228: ALIGNRP    
+	00229: SRP0       
+	00230: ALIGNRP    
+	00231: SRP1       
+	00232: SHP[rp1,zp0] 
+	00233: MDAP[rd]   
+	00234: CALL       
+	00235: CALL       
+	00236: SRP0       
+	00237: MIRP[srp0,md,rd,1] 
+	00238: CALL       
+	00239: ALIGNRP    
+	00240: MIRP[nrp0,md,rd,0] 
+	00241: SRP0       
+	00242: MIRP[nrp0,md,rd,0] 
+	00243: SRP0       
+	00244: MIRP[srp0,md,rd,1] 
+	00245: CALL       
+	00246: MIRP[nrp0,md,rd,0] 
+	00247: ALIGNRP    
+	00248: SRP0       
+	00249: MIRP[nrp0,md,rd,0] 
+	00250: MDAP[rd]   
+	00251: IUP[y]     
+	00252: IUP[x]     
+	00253: SVTCA[y-axis] 
+	00254: DELTAP1    
+	00255: SVTCA[x-axis] 
+	00256: DELTAP3    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:                      Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short On
+	 11:                      Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short On
+	 13:                      Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    36,  -275)  ->  Abs (    36,  -275)
+	  1: Rel (   -72,     0)  ->  Abs (   -36,  -275)
+	  2: Rel (     0,  1389)  ->  Abs (   -36,  1114)
+	  3: Rel (  -134,  -136)  ->  Abs (  -170,   978)
+	  4: Rel (   -49,    49)  ->  Abs (  -219,  1027)
+	  5: Rel (   171,   169)  ->  Abs (   -48,  1196)
+	  6: Rel (  -171,   168)  ->  Abs (  -219,  1364)
+	  7: Rel (    49,    49)  ->  Abs (  -170,  1413)
+	  8: Rel (   170,  -171)  ->  Abs (     0,  1242)
+	  9: Rel (   170,   171)  ->  Abs (   170,  1413)
+	 10: Rel (    49,   -49)  ->  Abs (   219,  1364)
+	 11: Rel (  -171,  -168)  ->  Abs (    48,  1196)
+	 12: Rel (   171,  -169)  ->  Abs (   219,  1027)
+	 13: Rel (   -49,   -49)  ->  Abs (   170,   978)
+	 14: Rel (  -134,   136)  ->  Abs (    36,  1114)
+
+	Glyph 746: off = 0x000219F0, len = 144
+	  numberOfContours:	1
+	  xMin:			-36
+	  yMin:			-275
+	  xMax:			430
+	  yMax:			1413
+
+	EndPoints
+	---------
+	  0:  10
+
+	  Length of Instructions:	95
+	00000: NPUSHB      (54):     6    10   229     9   114     8     0     0     3     8 
+	                             1   229     2   114     3     3     4   171     8     7 
+	                             0   114     8     5   171     6     6     7    10   229 
+	                             9     1   229     2     2     9   232     8     8     3 
+	                            34    40    41    52     3    64     9    11    52     3 
+	                           165     4   171     7 
+	00056: MDAP[rd]   
+	00057: MIRP[srp0,md,rd,1] 
+	00058: MIRP[srp0,nmd,rd,2] 
+	00059: CALL       
+	00060: CALL       
+	00061: ALIGNRP    
+	00062: SRP0       
+	00063: MIRP[srp0,nmd,rd,0] 
+	00064: ALIGNRP    
+	00065: SRP0       
+	00066: MIRP[nrp0,md,rd,0] 
+	00067: SRP0       
+	00068: MIRP[nrp0,md,rd,0] 
+	00069: SRP0       
+	00070: ALIGNRP    
+	00071: SRP0       
+	00072: MIRP[nrp0,md,rd,1] 
+	00073: SRP0       
+	00074: MIRP[nrp0,md,rd,1] 
+	00075: SVTCA[y-axis] 
+	00076: MDAP[rd]   
+	00077: ALIGNRP    
+	00078: MIRP[srp0,md,rd,1] 
+	00079: ALIGNRP    
+	00080: SRP0       
+	00081: MIRP[srp0,nmd,rd,0] 
+	00082: MIRP[nrp0,nmd,rd,0] 
+	00083: RTHG       
+	00084: SRP1       
+	00085: SRP2       
+	00086: IP         
+	00087: MDAP[rd]   
+	00088: RTG        
+	00089: SRP0       
+	00090: MIRP[srp0,nmd,rd,0] 
+	00091: MIRP[nrp0,nmd,rd,0] 
+	00092: MDAP[rd]   
+	00093: IUP[y]     
+	00094: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+	  8:  YDual                               On
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   430,  1198)  ->  Abs (   430,  1198)
+	  1: Rel (  -217,  -214)  ->  Abs (   213,   984)
+	  2: Rel (   -49,    49)  ->  Abs (   164,  1033)
+	  3: Rel (   137,   130)  ->  Abs (   301,  1163)
+	  4: Rel (  -266,     0)  ->  Abs (    35,  1163)
+	  5: Rel (     0, -1438)  ->  Abs (    35,  -275)
+	  6: Rel (   -71,     0)  ->  Abs (   -36,  -275)
+	  7: Rel (     0,  1509)  ->  Abs (   -36,  1234)
+	  8: Rel (   337,     0)  ->  Abs (   301,  1234)
+	  9: Rel (  -137,   130)  ->  Abs (   164,  1364)
+	 10: Rel (    49,    49)  ->  Abs (   213,  1413)
+
+	Glyph 747: off = 0x00021A80, len = 170
+	  numberOfContours:	1
+	  xMin:			-431
+	  yMin:			-275
+	  xMax:			35
+	  yMax:			1413
+
+	EndPoints
+	---------
+	  0:  10
+
+	  Length of Instructions:	122
+	00000: NPUSHB      (46):    12    64     9    10    52     1     7   229     8   114 
+	                             9     6     6     9     3     5   229     4   114     3 
+	                           171     9     2   171     9    10     6   114     9     1 
+	                           171     0     0    10     7   229     8     5   229     4 
+	                             4     8   232     9     9     3 
+	00048: PUSHW[1]            -34 
+	00051: PUSHB[4]             40    41    52     3 
+	00056: PUSHW[1]            -64 
+	00059: NPUSHB      (13):     9    11    52     3   165     2   171    10    64     9 
+	                            10    52    10 
+	00074: PUSHW[2]            729    12 
+	00079: SRP0       
+	00080: MIRP[srp0,nmd,rd,1] 
+	00081: CALL       
+	00082: MIRP[srp0,md,rd,1] 
+	00083: MIRP[srp0,nmd,rd,2] 
+	00084: CALL       
+	00085: CALL       
+	00086: ALIGNRP    
+	00087: SRP0       
+	00088: MIRP[srp0,nmd,rd,0] 
+	00089: ALIGNRP    
+	00090: SRP0       
+	00091: MIRP[nrp0,md,rd,0] 
+	00092: SRP0       
+	00093: MIRP[nrp0,md,rd,0] 
+	00094: SRP0       
+	00095: ALIGNRP    
+	00096: SRP0       
+	00097: MIRP[nrp0,md,rd,1] 
+	00098: SRP0       
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: SVTCA[y-axis] 
+	00101: MDAP[rd]   
+	00102: ALIGNRP    
+	00103: MIRP[nrp0,md,rd,1] 
+	00104: SRP0       
+	00105: MIRP[srp0,md,rd,1] 
+	00106: MIRP[srp0,nmd,rd,0] 
+	00107: MIRP[nrp0,nmd,rd,0] 
+	00108: RTHG       
+	00109: SRP1       
+	00110: SRP2       
+	00111: IP         
+	00112: MDAP[rd]   
+	00113: RTG        
+	00114: SRP0       
+	00115: MIRP[srp0,nmd,rd,0] 
+	00116: MIRP[nrp0,nmd,rd,0] 
+	00117: MDAP[rd]   
+	00118: IUP[y]     
+	00119: IUP[x]     
+	00120: SVTCA[x-axis] 
+	00121: CALL       
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:        XDual         Y-Short X-Short On
+	  5:                      Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short On
+	  9:                      Y-Short X-Short On
+	 10:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (    35,  -275)  ->  Abs (    35,  -275)
+	  1: Rel (   -71,     0)  ->  Abs (   -36,  -275)
+	  2: Rel (     0,  1438)  ->  Abs (   -36,  1163)
+	  3: Rel (  -266,     0)  ->  Abs (  -302,  1163)
+	  4: Rel (   137,  -130)  ->  Abs (  -165,  1033)
+	  5: Rel (   -49,   -49)  ->  Abs (  -214,   984)
+	  6: Rel (  -217,   214)  ->  Abs (  -431,  1198)
+	  7: Rel (   217,   215)  ->  Abs (  -214,  1413)
+	  8: Rel (    49,   -49)  ->  Abs (  -165,  1364)
+	  9: Rel (  -137,  -130)  ->  Abs (  -302,  1234)
+	 10: Rel (   337,     0)  ->  Abs (    35,  1234)
+
+	Glyph 748: off = 0x00021B2A, len = 130
+	  numberOfContours:	1
+	  xMin:			171
+	  yMin:			280
+	  xMax:			493
+	  yMax:			908
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	67
+	00000: PUSHB[2]             11    10 
+	00003: PUSHW[1]            -64 
+	00006: PUSHB[4]             15    17    52    10 
+	00011: PUSHW[1]            -64 
+	00014: PUSHB[6]             12    17    52    10    10     3 
+	00021: PUSHW[1]            748 
+	00024: PUSHB[8]             11    10    10     0    15    15     6     0 
+	00033: PUSHW[1]            -64 
+	00036: PUSHB[6]             16    17    52     0     0     6 
+	00043: PUSHW[1]            284 
+	00046: SCANCTRL   
+	00047: MDAP[rd]   
+	00048: SHP[rp1,zp0] 
+	00049: MDAP[rd]   
+	00050: CALL       
+	00051: SRP2       
+	00052: IP         
+	00053: MDAP[rd]   
+	00054: SRP2       
+	00055: IP         
+	00056: MDAP[rd]   
+	00057: SHP[rp1,zp0] 
+	00058: SVTCA[y-axis] 
+	00059: MIAP[rd+ci] 
+	00060: SHP[rp1,zp0] 
+	00061: MDAP[rd]   
+	00062: CALL       
+	00063: CALL       
+	00064: SHP[rp1,zp0] 
+	00065: IUP[y]     
+	00066: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:                      Y-Short X-Short On
+	 14:                      Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   493,   417)  ->  Abs (   493,   417)
+	  1: Rel (     0,   -53)  ->  Abs (   493,   364)
+	  2: Rel (   -80,   -84)  ->  Abs (   413,   280)
+	  3: Rel (   -63,     0)  ->  Abs (   350,   280)
+	  4: Rel (   -77,     0)  ->  Abs (   273,   280)
+	  5: Rel (  -102,   144)  ->  Abs (   171,   424)
+	  6: Rel (     0,   107)  ->  Abs (   171,   531)
+	  7: Rel (     0,   149)  ->  Abs (   171,   680)
+	  8: Rel (    88,   112)  ->  Abs (   259,   792)
+	  9: Rel (    43,    55)  ->  Abs (   302,   847)
+	 10: Rel (    86,    61)  ->  Abs (   388,   908)
+	 11: Rel (    33,   -55)  ->  Abs (   421,   853)
+	 12: Rel (   -59,   -54)  ->  Abs (   362,   799)
+	 13: Rel (   -31,   -40)  ->  Abs (   331,   759)
+	 14: Rel (   -55,   -71)  ->  Abs (   276,   688)
+	 15: Rel (     0,   -54)  ->  Abs (   276,   634)
+	 16: Rel (     0,   -54)  ->  Abs (   276,   580)
+	 17: Rel (   217,   -48)  ->  Abs (   493,   532)
+
+	Glyph 749: off = 0x00021BAC, len = 188
+	  numberOfContours:	2
+	  xMin:			160
+	  yMin:			278
+	  xMax:			482
+	  yMax:			1248
+
+	EndPoints
+	---------
+	  0:  17
+	  1:  29
+
+	  Length of Instructions:	93
+	00000: PUSHB[2]             11    10 
+	00003: PUSHW[1]            -64 
+	00006: PUSHB[4]             15    17    52    10 
+	00011: PUSHW[1]            -64 
+	00014: NPUSHB      (11):    12    17    52    10    10    15     3     1     3     3 
+	                            27 
+	00027: PUSHW[5]            750    21   748    18   749 
+	00038: NPUSHB      (11):    24    24     6    11    10    10     0    15    15     6 
+	                             0 
+	00051: PUSHW[1]            -64 
+	00054: PUSHB[6]             16    17    52     0     0     6 
+	00061: PUSHW[1]            284 
+	00064: SCANCTRL   
+	00065: MDAP[rd]   
+	00066: SHP[rp1,zp0] 
+	00067: MDAP[rd]   
+	00068: CALL       
+	00069: SRP2       
+	00070: IP         
+	00071: MDAP[rd]   
+	00072: SRP2       
+	00073: IP         
+	00074: MDAP[rd]   
+	00075: SHP[rp1,zp0] 
+	00076: SRP1       
+	00077: SHP[rp1,zp0] 
+	00078: MDAP[rd]   
+	00079: MIRP[nrp0,md,rd,1] 
+	00080: SVTCA[y-axis] 
+	00081: MIAP[rd+ci] 
+	00082: MIRP[srp0,md,rd,1] 
+	00083: SHP[rp2,zp1] 
+	00084: MDAP[rd]   
+	00085: DELTAP1    
+	00086: SHP[rp1,zp0] 
+	00087: MDAP[rd]   
+	00088: CALL       
+	00089: CALL       
+	00090: SHP[rp1,zp0] 
+	00091: IUP[y]     
+	00092: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:                      Y-Short X-Short On
+	 14:                      Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:                              X-Short On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   482,   757)  ->  Abs (   482,   757)
+	  1: Rel (     0,   -53)  ->  Abs (   482,   704)
+	  2: Rel (   -80,   -84)  ->  Abs (   402,   620)
+	  3: Rel (   -63,     0)  ->  Abs (   339,   620)
+	  4: Rel (   -77,     0)  ->  Abs (   262,   620)
+	  5: Rel (  -102,   144)  ->  Abs (   160,   764)
+	  6: Rel (     0,   107)  ->  Abs (   160,   871)
+	  7: Rel (     0,   149)  ->  Abs (   160,  1020)
+	  8: Rel (    88,   112)  ->  Abs (   248,  1132)
+	  9: Rel (    43,    55)  ->  Abs (   291,  1187)
+	 10: Rel (    86,    61)  ->  Abs (   377,  1248)
+	 11: Rel (    33,   -55)  ->  Abs (   410,  1193)
+	 12: Rel (   -59,   -54)  ->  Abs (   351,  1139)
+	 13: Rel (   -31,   -40)  ->  Abs (   320,  1099)
+	 14: Rel (   -55,   -71)  ->  Abs (   265,  1028)
+	 15: Rel (     0,   -54)  ->  Abs (   265,   974)
+	 16: Rel (     0,   -54)  ->  Abs (   265,   920)
+	 17: Rel (   217,   -48)  ->  Abs (   482,   872)
+	 18: Rel (   -27,  -478)  ->  Abs (   455,   394)
+	 19: Rel (     0,   -47)  ->  Abs (   455,   347)
+	 20: Rel (   -67,   -69)  ->  Abs (   388,   278)
+	 21: Rel (   -48,     0)  ->  Abs (   340,   278)
+	 22: Rel (   -48,     0)  ->  Abs (   292,   278)
+	 23: Rel (   -71,    69)  ->  Abs (   221,   347)
+	 24: Rel (     0,    47)  ->  Abs (   221,   394)
+	 25: Rel (     0,    48)  ->  Abs (   221,   442)
+	 26: Rel (    70,    68)  ->  Abs (   291,   510)
+	 27: Rel (    49,     0)  ->  Abs (   340,   510)
+	 28: Rel (    49,     0)  ->  Abs (   389,   510)
+	 29: Rel (    66,   -66)  ->  Abs (   455,   444)
+
+	Glyph 750: off = 0x00021C68, len = 280
+	  numberOfContours:	2
+	  xMin:			67
+	  yMin:			280
+	  xMax:			668
+	  yMax:			1457
+
+	EndPoints
+	---------
+	  0:  39
+	  1:  51
+
+	  Length of Instructions:	131
+	00000: PUSHW[2]             20   -52 
+	00005: PUSHB[4]             14    17    52    20 
+	00010: PUSHW[1]            -32 
+	00013: NPUSHB      (17):    10    12    52     4    64    21    26    52     4    64 
+	                             9    17    52     4     4    25    13 
+	00032: PUSHW[3]            753    37   754 
+	00039: PUSHB[8]             25    64     9    11    52    25    25    49 
+	00048: PUSHW[5]            750    43   748    24   753 
+	00059: PUSHB[7]             25    25    40    46    10    10     0 
+	00067: PUSHW[1]            749 
+	00070: NPUSHB      (15):     7    64    18    19    52     7     7   128    16     1 
+	                            16    16    34    34    40 
+	00087: PUSHW[3]            749    46   292 
+	00094: SCANCTRL   
+	00095: MDAP[rd]   
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: SHP[rp1,zp0] 
+	00098: MDAP[rd]   
+	00099: SHP[rp1,zp0] 
+	00100: MDAP[rd]   
+	00101: DELTAP1    
+	00102: SHP[rp1,zp0] 
+	00103: MDAP[rd]   
+	00104: CALL       
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: IP         
+	00107: MDAP[rd]   
+	00108: SRP1       
+	00109: SRP2       
+	00110: IP         
+	00111: MDAP[rd]   
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: SVTCA[y-axis] 
+	00114: MIAP[rd+ci] 
+	00115: MIRP[srp0,md,rd,1] 
+	00116: SHP[rp2,zp1] 
+	00117: MDAP[rd]   
+	00118: CALL       
+	00119: MIAP[rd+ci] 
+	00120: MIRP[nrp0,md,rd,1] 
+	00121: SRP1       
+	00122: IP         
+	00123: MDAP[rd]   
+	00124: CALL       
+	00125: CALL       
+	00126: IUP[y]     
+	00127: IUP[x]     
+	00128: SVTCA[x-axis] 
+	00129: CALL       
+	00130: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:                      Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:        XDual         Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual               Y-Short X-Short On
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual               Y-Short X-Short On
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:                              X-Short On
+	 41:        XDual         Y-Short         Off
+	 42:                      Y-Short X-Short Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short Off
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short         On
+	 47:  YDual XDual         Y-Short         Off
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   668,  1209)  ->  Abs (   668,  1209)
+	  1: Rel (     0,   -62)  ->  Abs (   668,  1147)
+	  2: Rel (   -36,   -47)  ->  Abs (   632,  1100)
+	  3: Rel (   -41,   -53)  ->  Abs (   591,  1047)
+	  4: Rel (   -64,     0)  ->  Abs (   527,  1047)
+	  5: Rel (   -50,     0)  ->  Abs (   477,  1047)
+	  6: Rel (   -66,    66)  ->  Abs (   411,  1113)
+	  7: Rel (     0,    44)  ->  Abs (   411,  1157)
+	  8: Rel (     0,    68)  ->  Abs (   411,  1225)
+	  9: Rel (   110,    68)  ->  Abs (   521,  1293)
+	 10: Rel (     0,    22)  ->  Abs (   521,  1315)
+	 11: Rel (     0,    34)  ->  Abs (   521,  1349)
+	 12: Rel (   -64,    42)  ->  Abs (   457,  1391)
+	 13: Rel (   -52,     0)  ->  Abs (   405,  1391)
+	 14: Rel (   -65,     0)  ->  Abs (   340,  1391)
+	 15: Rel (   -83,   -73)  ->  Abs (   257,  1318)
+	 16: Rel (     0,   -53)  ->  Abs (   257,  1265)
+	 17: Rel (     0,   -49)  ->  Abs (   257,  1216)
+	 18: Rel (    42,   -76)  ->  Abs (   299,  1140)
+	 19: Rel (    64,  -116)  ->  Abs (   363,  1024)
+	 20: Rel (    14,   -34)  ->  Abs (   377,   990)
+	 21: Rel (    42,  -105)  ->  Abs (   419,   885)
+	 22: Rel (     0,  -122)  ->  Abs (   419,   763)
+	 23: Rel (     0,   -66)  ->  Abs (   419,   697)
+	 24: Rel (   -10,   -82)  ->  Abs (   409,   615)
+	 25: Rel (   -61,     1)  ->  Abs (   348,   616)
+	 26: Rel (     0,    18)  ->  Abs (   348,   634)
+	 27: Rel (     1,    10)  ->  Abs (   349,   644)
+	 28: Rel (     5,    52)  ->  Abs (   354,   696)
+	 29: Rel (     0,    56)  ->  Abs (   354,   752)
+	 30: Rel (   -74,    66)  ->  Abs (   280,   818)
+	 31: Rel (  -126,   112)  ->  Abs (   154,   930)
+	 32: Rel (   -12,    14)  ->  Abs (   142,   944)
+	 33: Rel (   -75,    89)  ->  Abs (    67,  1033)
+	 34: Rel (     0,   111)  ->  Abs (    67,  1144)
+	 35: Rel (     0,   135)  ->  Abs (    67,  1279)
+	 36: Rel (   180,   178)  ->  Abs (   247,  1457)
+	 37: Rel (   133,     0)  ->  Abs (   380,  1457)
+	 38: Rel (   120,     0)  ->  Abs (   500,  1457)
+	 39: Rel (   168,  -137)  ->  Abs (   668,  1320)
+	 40: Rel (  -182,  -916)  ->  Abs (   486,   404)
+	 41: Rel (     0,   -51)  ->  Abs (   486,   353)
+	 42: Rel (   -73,   -73)  ->  Abs (   413,   280)
+	 43: Rel (   -52,     0)  ->  Abs (   361,   280)
+	 44: Rel (   -49,     0)  ->  Abs (   312,   280)
+	 45: Rel (   -72,    74)  ->  Abs (   240,   354)
+	 46: Rel (     0,    50)  ->  Abs (   240,   404)
+	 47: Rel (     0,    52)  ->  Abs (   240,   456)
+	 48: Rel (    73,    73)  ->  Abs (   313,   529)
+	 49: Rel (    52,     0)  ->  Abs (   365,   529)
+	 50: Rel (    51,     0)  ->  Abs (   416,   529)
+	 51: Rel (    70,   -74)  ->  Abs (   486,   455)
+
+	Glyph 751: off = 0x00021D80, len = 270
+	  numberOfContours:	1
+	  xMin:			121
+	  yMin:			147
+	  xMax:			744
+	  yMax:			819
+
+	EndPoints
+	---------
+	  0:  36
+
+	  Length of Instructions:	151
+	00000: PUSHB[6]             11    32    16    17    52    33 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (15):    16    17    52    23    19    24    64    14    21    52 
+	                            24    24    28    35     0 
+	00027: PUSHW[3]            751     1   -64 
+	00034: PUSHB[8]              9    13    52     1     1    35    10    19 
+	00043: PUSHW[1]            751 
+	00046: PUSHB[3]             28    28    35 
+	00050: PUSHW[1]            751 
+	00053: PUSHB[6]             10     6    10     5     5    10 
+	00060: PUSHW[1]            747 
+	00063: NPUSHB      (13):    35    35    24    24    23    23     1     0     0     1 
+	                             1    38     6 
+	00078: PUSHW[1]            -64 
+	00081: NPUSHB      (12):     9    10    52     6     5    16    14    15    52     5 
+	                             5    31 
+	00095: PUSHW[3]            755    13   278 
+	00102: SCANCTRL   
+	00103: MDAP[rd]   
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: IP         
+	00106: MDAP[rd]   
+	00107: CALL       
+	00108: SHP[rp1,zp0] 
+	00109: CALL       
+	00110: SRP1       
+	00111: SHP[rp1,zp0] 
+	00112: MDAP[rd]   
+	00113: SHP[rp1,zp0] 
+	00114: MDAP[rd]   
+	00115: SRP1       
+	00116: IP         
+	00117: MDAP[rd]   
+	00118: IP         
+	00119: MDAP[rd]   
+	00120: IP         
+	00121: MDAP[rd]   
+	00122: SVTCA[y-axis] 
+	00123: MIAP[rd+ci] 
+	00124: SHP[rp1,zp0] 
+	00125: MDAP[rd]   
+	00126: SRP2       
+	00127: IP         
+	00128: SRP0       
+	00129: MIRP[srp0,md,rd,1] 
+	00130: SHP[rp2,zp1] 
+	00131: MDAP[rd]   
+	00132: MIRP[nrp0,md,rd,1] 
+	00133: SRP1       
+	00134: SRP2       
+	00135: IP         
+	00136: MDAP[rd]   
+	00137: CALL       
+	00138: MIRP[nrp0,md,rd,1] 
+	00139: SRP1       
+	00140: SRP2       
+	00141: IP         
+	00142: MDAP[rd]   
+	00143: CALL       
+	00144: SRP1       
+	00145: IP         
+	00146: IUP[y]     
+	00147: IUP[x]     
+	00148: SVTCA[x-axis] 
+	00149: CALL       
+	00150: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short On
+	  4:                      Y-Short X-Short Off
+	  5:                      Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short On
+	 24:                      Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual               Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:                      Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:        XDual         Y-Short X-Short On
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   744,   537)  ->  Abs (   744,   537)
+	  1: Rel (   -48,  -164)  ->  Abs (   696,   373)
+	  2: Rel (  -152,   -38)  ->  Abs (   544,   335)
+	  3: Rel (   -98,   -47)  ->  Abs (   446,   288)
+	  4: Rel (  -113,   -54)  ->  Abs (   333,   234)
+	  5: Rel (   -93,   -87)  ->  Abs (   240,   147)
+	  6: Rel (   -31,    17)  ->  Abs (   209,   164)
+	  7: Rel (    13,    46)  ->  Abs (   222,   210)
+	  8: Rel (    22,    39)  ->  Abs (   244,   249)
+	  9: Rel (    19,    34)  ->  Abs (   263,   283)
+	 10: Rel (    25,    27)  ->  Abs (   288,   310)
+	 11: Rel (  -116,    66)  ->  Abs (   172,   376)
+	 12: Rel (   -51,    34)  ->  Abs (   121,   410)
+	 13: Rel (     0,    40)  ->  Abs (   121,   450)
+	 14: Rel (     0,    32)  ->  Abs (   121,   482)
+	 15: Rel (    40,    84)  ->  Abs (   161,   566)
+	 16: Rel (    48,   100)  ->  Abs (   209,   666)
+	 17: Rel (    62,    67)  ->  Abs (   271,   733)
+	 18: Rel (    80,    86)  ->  Abs (   351,   819)
+	 19: Rel (    81,     0)  ->  Abs (   432,   819)
+	 20: Rel (    75,     0)  ->  Abs (   507,   819)
+	 21: Rel (    49,   -43)  ->  Abs (   556,   776)
+	 22: Rel (    11,    -9)  ->  Abs (   567,   767)
+	 23: Rel (    40,   -46)  ->  Abs (   607,   721)
+	 24: Rel (   -52,  -131)  ->  Abs (   555,   590)
+	 25: Rel (   -37,    25)  ->  Abs (   518,   615)
+	 26: Rel (    -7,     5)  ->  Abs (   511,   620)
+	 27: Rel (   -61,    39)  ->  Abs (   450,   659)
+	 28: Rel (   -39,     0)  ->  Abs (   411,   659)
+	 29: Rel (   -48,     0)  ->  Abs (   363,   659)
+	 30: Rel (  -104,   -54)  ->  Abs (   259,   605)
+	 31: Rel (     0,   -34)  ->  Abs (   259,   571)
+	 32: Rel (     0,   -41)  ->  Abs (   259,   530)
+	 33: Rel (    60,   -38)  ->  Abs (   319,   492)
+	 34: Rel (    47,   -29)  ->  Abs (   366,   463)
+	 35: Rel (    95,   -34)  ->  Abs (   461,   429)
+	 36: Rel (   139,    67)  ->  Abs (   600,   496)
+
+	Glyph 752: off = 0x00021E8E, len = 52
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			293
+	  xMax:			494
+	  yMax:			467
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	24
+	00000: PUSHW[6]              2   751     1   747     0   752 
+	00013: PUSHB[2]              5     1 
+	00016: MDAP[rd]   
+	00017: SRP0       
+	00018: MIRP[nrp0,nmd,rd,0] 
+	00019: SVTCA[y-axis] 
+	00020: MIAP[rd+ci] 
+	00021: MIRP[nrp0,md,rd,1] 
+	00022: IUP[y]     
+	00023: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   494,   293)  ->  Abs (   494,   293)
+	  1: Rel (  -494,     0)  ->  Abs (     0,   293)
+	  2: Rel (     0,   174)  ->  Abs (     0,   467)
+	  3: Rel (   494,     0)  ->  Abs (   494,   467)
+
+	Glyph 753: off = 0x00021EC2, len = 134
+	  numberOfContours:	2
+	  xMin:			70
+	  yMin:			1239
+	  xMax:			412
+	  yMax:			1597
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  16
+
+	  Length of Instructions:	68
+	00000: PUSHW[2]              0   757 
+	00005: PUSHB[3]              2     2     6 
+	00009: PUSHW[1]            757 
+	00012: NPUSHB       (9):     4    64     9    14    52     4     4    15     8 
+	00023: PUSHW[1]            757 
+	00026: PUSHB[3]             11    11    15 
+	00030: PUSHW[3]            757    13   756 
+	00037: PUSHB[5]              0     8     8     4    13 
+	00043: PUSHW[1]            292 
+	00046: SCANCTRL   
+	00047: MDAP[rd]   
+	00048: ALIGNRP    
+	00049: SHP[rp1,zp0] 
+	00050: MDAP[rd]   
+	00051: ALIGNRP    
+	00052: SVTCA[y-axis] 
+	00053: MIAP[rd+ci] 
+	00054: MIRP[nrp0,md,rd,1] 
+	00055: SHP[rp1,zp0] 
+	00056: MDAP[rd]   
+	00057: MIRP[nrp0,md,rd,1] 
+	00058: SRP1       
+	00059: SHP[rp1,zp0] 
+	00060: MDAP[rd]   
+	00061: CALL       
+	00062: MIRP[nrp0,md,rd,1] 
+	00063: SHP[rp1,zp0] 
+	00064: MDAP[rd]   
+	00065: MIRP[srp0,md,rd,1] 
+	00066: IUP[y]     
+	00067: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:                      Y-Short X-Short On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   412,  1597)  ->  Abs (   412,  1597)
+	  1: Rel (     0,   -46)  ->  Abs (   412,  1551)
+	  2: Rel (   -51,   -43)  ->  Abs (   361,  1508)
+	  3: Rel (   -91,   -37)  ->  Abs (   270,  1471)
+	  4: Rel (  -200,   -80)  ->  Abs (    70,  1391)
+	  5: Rel (     0,    43)  ->  Abs (    70,  1434)
+	  6: Rel (    44,    40)  ->  Abs (   114,  1474)
+	  7: Rel (    83,    35)  ->  Abs (   197,  1509)
+	  8: Rel (   215,   -62)  ->  Abs (   412,  1447)
+	  9: Rel (     0,   -48)  ->  Abs (   412,  1399)
+	 10: Rel (   -27,   -23)  ->  Abs (   385,  1376)
+	 11: Rel (   -23,   -20)  ->  Abs (   362,  1356)
+	 12: Rel (   -92,   -37)  ->  Abs (   270,  1319)
+	 13: Rel (  -200,   -80)  ->  Abs (    70,  1239)
+	 14: Rel (     0,    43)  ->  Abs (    70,  1282)
+	 15: Rel (    44,    40)  ->  Abs (   114,  1322)
+	 16: Rel (    83,    35)  ->  Abs (   197,  1357)
+
+	Glyph 754: off = 0x00021F48, len = 348
+	  numberOfContours:	2
+	  xMin:			70
+	  yMin:			1239
+	  xMax:			485
+	  yMax:			1626
+
+	EndPoints
+	---------
+	  0:  47
+	  1:  58
+
+	  Length of Instructions:	173
+	00000: NPUSHB       (9):     3    57     9    37     8     8    35    13    45 
+	00011: PUSHW[3]            757    51   -64 
+	00018: PUSHB[6]             11    15    52    51    51    57 
+	00025: PUSHW[1]            757 
+	00028: PUSHB[7]             37    37    20    24    24    35    28 
+	00036: PUSHW[1]            757 
+	00039: PUSHB[3]             20    20    35 
+	00043: PUSHW[3]            757    13   756 
+	00050: NPUSHB      (14):     8     6    57     9    48    37    53    41    35    31 
+	                            17     6     6     0 
+	00066: PUSHW[3]            758    48   -64 
+	00073: PUSHB[6]              9    10    52    48    48    53 
+	00080: PUSHW[1]            758 
+	00083: NPUSHB      (12):    41    64     9    17    52    41    41    31    13    24 
+	                            24    17 
+	00097: PUSHW[3]            758    31   -64 
+	00104: PUSHB[4]             23    27    52    31 
+	00109: PUSHW[1]            -64 
+	00112: PUSHB[4]             14    18    52    31 
+	00117: MDAP[rd]   
+	00118: CALL       
+	00119: CALL       
+	00120: MIRP[srp0,md,rd,1] 
+	00121: SHP[rp2,zp1] 
+	00122: MDAP[rd]   
+	00123: IP         
+	00124: SRP1       
+	00125: SHP[rp1,zp0] 
+	00126: MDAP[rd]   
+	00127: CALL       
+	00128: MIRP[srp0,md,rd,1] 
+	00129: SHP[rp2,zp1] 
+	00130: MDAP[rd]   
+	00131: CALL       
+	00132: MIRP[nrp0,md,rd,1] 
+	00133: IP         
+	00134: MDAP[rd]   
+	00135: SRP1       
+	00136: SRP2       
+	00137: IP         
+	00138: SRP1       
+	00139: SRP2       
+	00140: IP         
+	00141: SRP1       
+	00142: IP         
+	00143: IP         
+	00144: SRP2       
+	00145: IP         
+	00146: SVTCA[y-axis] 
+	00147: MIAP[rd+ci] 
+	00148: MIRP[srp0,md,rd,1] 
+	00149: SHP[rp2,zp1] 
+	00150: MDAP[rd]   
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: SRP2       
+	00153: IP         
+	00154: MDAP[rd]   
+	00155: SRP1       
+	00156: IP         
+	00157: MDAP[rd]   
+	00158: MIRP[srp0,md,rd,1] 
+	00159: SHP[rp2,zp1] 
+	00160: MDAP[rd]   
+	00161: CALL       
+	00162: MIRP[nrp0,md,rd,1] 
+	00163: SRP1       
+	00164: SRP2       
+	00165: IP         
+	00166: MDAP[rd]   
+	00167: SRP2       
+	00168: IP         
+	00169: SRP1       
+	00170: IP         
+	00171: IUP[y]     
+	00172: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:                      Y-Short X-Short On
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short X-Short On
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual               Y-Short X-Short On
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:        XDual         Y-Short X-Short Off
+	 48:                      Y-Short X-Short On
+	 49:  YDual XDual         Y-Short         Off
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual                       X-Short On
+	 52:  YDual                       X-Short Off
+	 53:        XDual         Y-Short         On
+	 54:        XDual         Y-Short         Off
+	 55:        XDual         Y-Short X-Short On
+	 56:        XDual         Y-Short X-Short Off
+	 57:        XDual         Y-Short X-Short On
+	 58:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   485,  1562)  ->  Abs (   485,  1562)
+	  1: Rel (     0,   -37)  ->  Abs (   485,  1525)
+	  2: Rel (   -22,   -65)  ->  Abs (   463,  1460)
+	  3: Rel (   -22,   -34)  ->  Abs (   441,  1426)
+	  4: Rel (    14,   -10)  ->  Abs (   455,  1416)
+	  5: Rel (    18,   -23)  ->  Abs (   473,  1393)
+	  6: Rel (     0,   -13)  ->  Abs (   473,  1380)
+	  7: Rel (     0,   -47)  ->  Abs (   473,  1333)
+	  8: Rel (    -7,   -41)  ->  Abs (   466,  1292)
+	  9: Rel (   -86,    67)  ->  Abs (   380,  1359)
+	 10: Rel (   -46,   -54)  ->  Abs (   334,  1305)
+	 11: Rel (   -58,   -30)  ->  Abs (   276,  1275)
+	 12: Rel (   -71,   -36)  ->  Abs (   205,  1239)
+	 13: Rel (   -87,     0)  ->  Abs (   118,  1239)
+	 14: Rel (    40,    66)  ->  Abs (   158,  1305)
+	 15: Rel (     4,     9)  ->  Abs (   162,  1314)
+	 16: Rel (    12,    27)  ->  Abs (   174,  1341)
+	 17: Rel (     0,    24)  ->  Abs (   174,  1365)
+	 18: Rel (     0,    24)  ->  Abs (   174,  1389)
+	 19: Rel (   -20,    37)  ->  Abs (   154,  1426)
+	 20: Rel (   -19,     0)  ->  Abs (   135,  1426)
+	 21: Rel (   -20,     0)  ->  Abs (   115,  1426)
+	 22: Rel (   -18,   -24)  ->  Abs (    97,  1402)
+	 23: Rel (    -7,   -10)  ->  Abs (    90,  1392)
+	 24: Rel (   -20,   -35)  ->  Abs (    70,  1357)
+	 25: Rel (     7,    70)  ->  Abs (    77,  1427)
+	 26: Rel (    11,    31)  ->  Abs (    88,  1458)
+	 27: Rel (    20,    55)  ->  Abs (   108,  1513)
+	 28: Rel (    46,     0)  ->  Abs (   154,  1513)
+	 29: Rel (    34,     0)  ->  Abs (   188,  1513)
+	 30: Rel (    38,   -66)  ->  Abs (   226,  1447)
+	 31: Rel (     0,   -42)  ->  Abs (   226,  1405)
+	 32: Rel (     0,   -21)  ->  Abs (   226,  1384)
+	 33: Rel (    -4,   -21)  ->  Abs (   222,  1363)
+	 34: Rel (    -7,   -29)  ->  Abs (   215,  1334)
+	 35: Rel (    -3,   -15)  ->  Abs (   212,  1319)
+	 36: Rel (    69,    20)  ->  Abs (   281,  1339)
+	 37: Rel (    63,    47)  ->  Abs (   344,  1386)
+	 38: Rel (   -17,    16)  ->  Abs (   327,  1402)
+	 39: Rel (   -16,    17)  ->  Abs (   311,  1419)
+	 40: Rel (   -26,    29)  ->  Abs (   285,  1448)
+	 41: Rel (     0,    32)  ->  Abs (   285,  1480)
+	 42: Rel (     0,    47)  ->  Abs (   285,  1527)
+	 43: Rel (    39,    47)  ->  Abs (   324,  1574)
+	 44: Rel (    43,    52)  ->  Abs (   367,  1626)
+	 45: Rel (    53,     0)  ->  Abs (   420,  1626)
+	 46: Rel (    27,     0)  ->  Abs (   447,  1626)
+	 47: Rel (    38,   -38)  ->  Abs (   485,  1588)
+	 48: Rel (   -71,   -85)  ->  Abs (   414,  1503)
+	 49: Rel (     0,    23)  ->  Abs (   414,  1526)
+	 50: Rel (   -24,    38)  ->  Abs (   390,  1564)
+	 51: Rel (   -20,     0)  ->  Abs (   370,  1564)
+	 52: Rel (   -22,     0)  ->  Abs (   348,  1564)
+	 53: Rel (     0,   -28)  ->  Abs (   348,  1536)
+	 54: Rel (     0,   -18)  ->  Abs (   348,  1518)
+	 55: Rel (    18,   -20)  ->  Abs (   366,  1498)
+	 56: Rel (     5,    -6)  ->  Abs (   371,  1492)
+	 57: Rel (    30,   -27)  ->  Abs (   401,  1465)
+	 58: Rel (    13,    19)  ->  Abs (   414,  1484)
+
+	Glyph 755: off = 0x000220A4, len = 130
+	  numberOfContours:	2
+	  xMin:			70
+	  yMin:			-266
+	  xMax:			412
+	  yMax:			91
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  15
+
+	  Length of Instructions:	69
+	00000: PUSHW[2]              8   757 
+	00005: PUSHB[3]             10    10    12 
+	00009: PUSHW[3]            757    14   -64 
+	00016: PUSHB[7]              9    15    52    14    14     4     0 
+	00024: PUSHW[1]            757 
+	00027: PUSHB[3]              2     2     6 
+	00031: PUSHW[3]            757     4   759 
+	00038: PUSHB[5]              0     8     8     4    12 
+	00044: PUSHW[1]            292 
+	00047: SCANCTRL   
+	00048: MDAP[rd]   
+	00049: ALIGNRP    
+	00050: SHP[rp1,zp0] 
+	00051: MDAP[rd]   
+	00052: ALIGNRP    
+	00053: SVTCA[y-axis] 
+	00054: MIAP[rd+ci] 
+	00055: MIRP[nrp0,md,rd,1] 
+	00056: SHP[rp1,zp0] 
+	00057: MDAP[rd]   
+	00058: MIRP[nrp0,md,rd,1] 
+	00059: SRP1       
+	00060: SHP[rp1,zp0] 
+	00061: MDAP[rd]   
+	00062: CALL       
+	00063: MIRP[srp0,md,rd,1] 
+	00064: SHP[rp2,zp1] 
+	00065: MDAP[rd]   
+	00066: MIRP[nrp0,md,rd,1] 
+	00067: IUP[y]     
+	00068: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   412,    91)  ->  Abs (   412,    91)
+	  1: Rel (     0,   -47)  ->  Abs (   412,    44)
+	  2: Rel (   -52,   -44)  ->  Abs (   360,     0)
+	  3: Rel (   -90,   -35)  ->  Abs (   270,   -35)
+	  4: Rel (  -200,   -81)  ->  Abs (    70,  -116)
+	  5: Rel (     0,    44)  ->  Abs (    70,   -72)
+	  6: Rel (    44,    40)  ->  Abs (   114,   -32)
+	  7: Rel (    83,    34)  ->  Abs (   197,     2)
+	  8: Rel (   215,   -59)  ->  Abs (   412,   -57)
+	  9: Rel (     0,   -47)  ->  Abs (   412,  -104)
+	 10: Rel (   -52,   -45)  ->  Abs (   360,  -149)
+	 11: Rel (   -90,   -35)  ->  Abs (   270,  -184)
+	 12: Rel (  -200,   -82)  ->  Abs (    70,  -266)
+	 13: Rel (     0,    43)  ->  Abs (    70,  -223)
+	 14: Rel (    44,    42)  ->  Abs (   114,  -181)
+	 15: Rel (    83,    35)  ->  Abs (   197,  -146)
+
+	Glyph 756: off = 0x00022126, len = 74
+	  numberOfContours:	1
+	  xMin:			70
+	  yMin:			1378
+	  xMax:			412
+	  yMax:			1585
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	35
+	00000: PUSHW[2]              0   757 
+	00005: PUSHB[3]              2     2     6 
+	00009: PUSHW[3]            757     4   756 
+	00016: PUSHB[3]              0     0     4 
+	00020: PUSHW[1]            292 
+	00023: SCANCTRL   
+	00024: MDAP[rd]   
+	00025: SHP[rp1,zp0] 
+	00026: MDAP[rd]   
+	00027: SVTCA[y-axis] 
+	00028: MIAP[rd+ci] 
+	00029: MIRP[nrp0,md,rd,1] 
+	00030: SHP[rp1,zp0] 
+	00031: MDAP[rd]   
+	00032: MIRP[srp0,md,rd,1] 
+	00033: IUP[y]     
+	00034: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   412,  1585)  ->  Abs (   412,  1585)
+	  1: Rel (     0,   -46)  ->  Abs (   412,  1539)
+	  2: Rel (   -52,   -45)  ->  Abs (   360,  1494)
+	  3: Rel (   -90,   -35)  ->  Abs (   270,  1459)
+	  4: Rel (  -200,   -81)  ->  Abs (    70,  1378)
+	  5: Rel (     0,    44)  ->  Abs (    70,  1422)
+	  6: Rel (    44,    40)  ->  Abs (   114,  1462)
+	  7: Rel (    83,    35)  ->  Abs (   197,  1497)
+
+	Glyph 757: off = 0x00022170, len = 266
+	  numberOfContours:	2
+	  xMin:			72
+	  yMin:			1239
+	  xMax:			429
+	  yMax:			1674
+
+	EndPoints
+	---------
+	  0:  29
+	  1:  40
+
+	  Length of Instructions:	138
+	00000: PUSHB[6]             26    39     4    13     3    20 
+	00007: PUSHW[3]            757    33   -64 
+	00014: NPUSHB      (10):    11    13    52    33    33    39     3     3     9    39 
+	00026: PUSHW[1]            757 
+	00029: PUSHB[3]             13    13     9 
+	00033: PUSHW[1]            756 
+	00036: NPUSHB      (12):     3     0    23    13     4    39     3    30    36     0 
+	                             0    23 
+	00050: PUSHW[1]            758 
+	00053: PUSHB[4]             30    30    36     8 
+	00058: PUSHW[1]            758 
+	00061: PUSHB[3]              9     9    17 
+	00065: PUSHW[3]            758    36   -64 
+	00072: PUSHB[4]             26    28    52    36 
+	00077: PUSHW[1]            -64 
+	00080: PUSHB[4]             19    21    52    36 
+	00085: PUSHW[1]            -64 
+	00088: PUSHB[4]             14    16    52    36 
+	00093: PUSHW[1]            285 
+	00096: SCANCTRL   
+	00097: MDAP[rd]   
+	00098: CALL       
+	00099: CALL       
+	00100: CALL       
+	00101: MIRP[srp0,md,rd,1] 
+	00102: SHP[rp2,zp1] 
+	00103: MDAP[rd]   
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: SRP1       
+	00106: SHP[rp1,zp0] 
+	00107: MDAP[rd]   
+	00108: MIRP[srp0,md,rd,1] 
+	00109: SHP[rp2,zp1] 
+	00110: MDAP[rd]   
+	00111: SRP1       
+	00112: SRP2       
+	00113: SLOOP      
+	00114: IP         
+	00115: SRP1       
+	00116: SRP2       
+	00117: IP         
+	00118: SVTCA[y-axis] 
+	00119: MIAP[rd+ci] 
+	00120: SHP[rp1,zp0] 
+	00121: MDAP[rd]   
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: SRP2       
+	00124: IP         
+	00125: MDAP[rd]   
+	00126: SRP1       
+	00127: SHP[rp1,zp0] 
+	00128: MDAP[rd]   
+	00129: CALL       
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: SRP1       
+	00132: SRP2       
+	00133: IP         
+	00134: SRP1       
+	00135: IP         
+	00136: IUP[y]     
+	00137: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short X-Short On
+	 29:        XDual         Y-Short X-Short Off
+	 30:  YDual               Y-Short X-Short On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:                      Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:        XDual         Y-Short X-Short On
+	 39:        XDual         Y-Short X-Short On
+	 40:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   429,  1405)  ->  Abs (   429,  1405)
+	  1: Rel (     0,   -17)  ->  Abs (   429,  1388)
+	  2: Rel (    -6,   -36)  ->  Abs (   423,  1352)
+	  3: Rel (    -3,   -18)  ->  Abs (   420,  1334)
+	  4: Rel (   -83,    50)  ->  Abs (   337,  1384)
+	  5: Rel (   -50,   -55)  ->  Abs (   287,  1329)
+	  6: Rel (   -18,   -18)  ->  Abs (   269,  1311)
+	  7: Rel (   -74,   -72)  ->  Abs (   195,  1239)
+	  8: Rel (   -50,     0)  ->  Abs (   145,  1239)
+	  9: Rel (   -73,     0)  ->  Abs (    72,  1239)
+	 10: Rel (    53,    25)  ->  Abs (   125,  1264)
+	 11: Rel (    71,    56)  ->  Abs (   196,  1320)
+	 12: Rel (    64,    51)  ->  Abs (   260,  1371)
+	 13: Rel (    33,    39)  ->  Abs (   293,  1410)
+	 14: Rel (   -31,    19)  ->  Abs (   262,  1429)
+	 15: Rel (   -16,    21)  ->  Abs (   246,  1450)
+	 16: Rel (   -20,    26)  ->  Abs (   226,  1476)
+	 17: Rel (     0,    31)  ->  Abs (   226,  1507)
+	 18: Rel (     0,    66)  ->  Abs (   226,  1573)
+	 19: Rel (    77,   101)  ->  Abs (   303,  1674)
+	 20: Rel (    45,     0)  ->  Abs (   348,  1674)
+	 21: Rel (    26,     0)  ->  Abs (   374,  1674)
+	 22: Rel (    42,   -56)  ->  Abs (   416,  1618)
+	 23: Rel (     0,   -40)  ->  Abs (   416,  1578)
+	 24: Rel (     0,   -19)  ->  Abs (   416,  1559)
+	 25: Rel (   -11,   -41)  ->  Abs (   405,  1518)
+	 26: Rel (   -20,   -55)  ->  Abs (   385,  1463)
+	 27: Rel (    16,   -14)  ->  Abs (   401,  1449)
+	 28: Rel (    17,   -13)  ->  Abs (   418,  1436)
+	 29: Rel (    11,   -11)  ->  Abs (   429,  1425)
+	 30: Rel (   -75,    93)  ->  Abs (   354,  1518)
+	 31: Rel (     0,    27)  ->  Abs (   354,  1545)
+	 32: Rel (   -38,    46)  ->  Abs (   316,  1591)
+	 33: Rel (   -18,     0)  ->  Abs (   298,  1591)
+	 34: Rel (   -10,     0)  ->  Abs (   288,  1591)
+	 35: Rel (   -11,   -14)  ->  Abs (   277,  1577)
+	 36: Rel (     0,    -7)  ->  Abs (   277,  1570)
+	 37: Rel (     0,   -22)  ->  Abs (   277,  1548)
+	 38: Rel (    25,   -24)  ->  Abs (   302,  1524)
+	 39: Rel (    44,   -34)  ->  Abs (   346,  1490)
+	 40: Rel (     8,    20)  ->  Abs (   354,  1510)
+
+	Glyph 758: off = 0x0002227A, len = 72
+	  numberOfContours:	1
+	  xMin:			70
+	  yMin:			-43
+	  xMax:			412
+	  yMax:			164
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	35
+	00000: PUSHW[2]              0   757 
+	00005: PUSHB[3]              2     2     6 
+	00009: PUSHW[3]            757     4   760 
+	00016: PUSHB[3]              0     0     4 
+	00020: PUSHW[1]            292 
+	00023: SCANCTRL   
+	00024: MDAP[rd]   
+	00025: SHP[rp1,zp0] 
+	00026: MDAP[rd]   
+	00027: SVTCA[y-axis] 
+	00028: MIAP[rd+ci] 
+	00029: MIRP[nrp0,md,rd,1] 
+	00030: SHP[rp1,zp0] 
+	00031: MDAP[rd]   
+	00032: MIRP[nrp0,md,rd,1] 
+	00033: IUP[y]     
+	00034: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   412,   164)  ->  Abs (   412,   164)
+	  1: Rel (     0,   -48)  ->  Abs (   412,   116)
+	  2: Rel (   -52,   -44)  ->  Abs (   360,    72)
+	  3: Rel (   -90,   -35)  ->  Abs (   270,    37)
+	  4: Rel (  -200,   -80)  ->  Abs (    70,   -43)
+	  5: Rel (     0,    43)  ->  Abs (    70,     0)
+	  6: Rel (    44,    40)  ->  Abs (   114,    40)
+	  7: Rel (    83,    34)  ->  Abs (   197,    74)
+
+	Glyph 759: off = 0x000222C2, len = 260
+	  numberOfContours:	1
+	  xMin:			70
+	  yMin:			1239
+	  xMax:			433
+	  yMax:			1561
+
+	EndPoints
+	---------
+	  0:  40
+
+	  Length of Instructions:	135
+	00000: NPUSHB      (27):     7    24     4    37    38    33    28    29    17    24 
+	                            29    29    18    38    64     9    10    52    38    38 
+	                            15    18     1    18    18    24    33 
+	00029: PUSHW[1]            757 
+	00032: PUSHB[3]              4     4    24 
+	00036: PUSHW[3]            757    11   756 
+	00043: PUSHB[8]              7    29    28    21    18    17     0    38 
+	00052: PUSHW[1]            761 
+	00055: PUSHB[5]             37    37    29    14    17 
+	00061: PUSHW[1]            761 
+	00064: PUSHB[3]             18    18    29 
+	00068: PUSHW[3]            761    28   -64 
+	00075: PUSHB[4]             21    23    52    28 
+	00080: PUSHW[1]            -64 
+	00083: PUSHB[4]             13    16    52    28 
+	00088: MDAP[rd]   
+	00089: CALL       
+	00090: CALL       
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: SHP[rp1,zp0] 
+	00093: MDAP[rd]   
+	00094: MIRP[srp0,md,rd,1] 
+	00095: SHP[rp2,zp1] 
+	00096: SRP1       
+	00097: SHP[rp1,zp0] 
+	00098: MDAP[rd]   
+	00099: MIRP[srp0,md,rd,1] 
+	00100: SHP[rp2,zp1] 
+	00101: SRP1       
+	00102: SRP2       
+	00103: IP         
+	00104: SRP1       
+	00105: SRP2       
+	00106: IP         
+	00107: SVTCA[y-axis] 
+	00108: MIAP[rd+ci] 
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: IP         
+	00111: MDAP[rd]   
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: SRP1       
+	00114: SHP[rp1,zp0] 
+	00115: MDAP[rd]   
+	00116: DELTAP1    
+	00117: SHP[rp1,zp0] 
+	00118: MDAP[rd]   
+	00119: CALL       
+	00120: SRP2       
+	00121: IP         
+	00122: MDAP[rd]   
+	00123: SRP1       
+	00124: IP         
+	00125: SRP2       
+	00126: IP         
+	00127: SRP1       
+	00128: SRP2       
+	00129: IP         
+	00130: SRP1       
+	00131: SRP2       
+	00132: IP         
+	00133: IUP[y]     
+	00134: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short X-Short On
+	 32:        XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   433,  1477)  ->  Abs (   433,  1477)
+	  1: Rel (     0,   -75)  ->  Abs (   433,  1402)
+	  2: Rel (   -26,   -48)  ->  Abs (   407,  1354)
+	  3: Rel (   -29,   -54)  ->  Abs (   378,  1300)
+	  4: Rel (   -51,     0)  ->  Abs (   327,  1300)
+	  5: Rel (   -18,     0)  ->  Abs (   309,  1300)
+	  6: Rel (   -30,    12)  ->  Abs (   279,  1312)
+	  7: Rel (   -19,    13)  ->  Abs (   260,  1325)
+	  8: Rel (   -21,   -36)  ->  Abs (   239,  1289)
+	  9: Rel (   -18,   -18)  ->  Abs (   221,  1271)
+	 10: Rel (   -32,   -32)  ->  Abs (   189,  1239)
+	 11: Rel (   -35,     0)  ->  Abs (   154,  1239)
+	 12: Rel (   -42,     0)  ->  Abs (   112,  1239)
+	 13: Rel (   -42,    57)  ->  Abs (    70,  1296)
+	 14: Rel (     0,    50)  ->  Abs (    70,  1346)
+	 15: Rel (     0,    26)  ->  Abs (    70,  1372)
+	 16: Rel (    14,    50)  ->  Abs (    84,  1422)
+	 17: Rel (    13,    32)  ->  Abs (    97,  1454)
+	 18: Rel (    21,     9)  ->  Abs (   118,  1463)
+	 19: Rel (     0,    -8)  ->  Abs (   118,  1455)
+	 20: Rel (    -4,   -36)  ->  Abs (   114,  1419)
+	 21: Rel (     0,   -12)  ->  Abs (   114,  1407)
+	 22: Rel (     0,   -22)  ->  Abs (   114,  1385)
+	 23: Rel (    18,   -35)  ->  Abs (   132,  1350)
+	 24: Rel (    18,     0)  ->  Abs (   150,  1350)
+	 25: Rel (    43,     0)  ->  Abs (   193,  1350)
+	 26: Rel (    26,    56)  ->  Abs (   219,  1406)
+	 27: Rel (    12,    26)  ->  Abs (   231,  1432)
+	 28: Rel (    18,    75)  ->  Abs (   249,  1507)
+	 29: Rel (    21,     6)  ->  Abs (   270,  1513)
+	 30: Rel (     8,   -49)  ->  Abs (   278,  1464)
+	 31: Rel (     5,   -11)  ->  Abs (   283,  1453)
+	 32: Rel (    12,   -31)  ->  Abs (   295,  1422)
+	 33: Rel (    28,     0)  ->  Abs (   323,  1422)
+	 34: Rel (    38,     0)  ->  Abs (   361,  1422)
+	 35: Rel (    22,    50)  ->  Abs (   383,  1472)
+	 36: Rel (    18,    40)  ->  Abs (   401,  1512)
+	 37: Rel (     0,    43)  ->  Abs (   401,  1555)
+	 38: Rel (    21,     6)  ->  Abs (   422,  1561)
+	 39: Rel (     4,   -19)  ->  Abs (   426,  1542)
+	 40: Rel (     7,   -47)  ->  Abs (   433,  1495)
+
+	Glyph 760: off = 0x000223C6, len = 124
+	  numberOfContours:	2
+	  xMin:			70
+	  yMin:			1239
+	  xMax:			337
+	  yMax:			1549
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  24
+
+	  Length of Instructions:	45
+	00000: PUSHW[2]              9   757 
+	00005: PUSHB[3]             15    15    22 
+	00009: PUSHW[5]            757     3   756     0   758 
+	00020: PUSHB[3]             12    12     6 
+	00024: PUSHW[3]            762    18   285 
+	00031: SCANCTRL   
+	00032: MDAP[rd]   
+	00033: MIRP[nrp0,md,rd,1] 
+	00034: SHP[rp1,zp0] 
+	00035: MDAP[rd]   
+	00036: MIRP[nrp0,md,rd,1] 
+	00037: SVTCA[y-axis] 
+	00038: MIAP[rd+ci] 
+	00039: MIRP[srp0,md,rd,1] 
+	00040: SHP[rp2,zp1] 
+	00041: MDAP[rd]   
+	00042: MIRP[nrp0,md,rd,1] 
+	00043: IUP[y]     
+	00044: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   337,  1399)  ->  Abs (   337,  1399)
+	  1: Rel (     0,   -62)  ->  Abs (   337,  1337)
+	  2: Rel (   -92,   -98)  ->  Abs (   245,  1239)
+	  3: Rel (   -67,     0)  ->  Abs (   178,  1239)
+	  4: Rel (   -54,     0)  ->  Abs (   124,  1239)
+	  5: Rel (   -54,    60)  ->  Abs (    70,  1299)
+	  6: Rel (     0,    54)  ->  Abs (    70,  1353)
+	  7: Rel (     0,    77)  ->  Abs (    70,  1430)
+	  8: Rel (    80,   119)  ->  Abs (   150,  1549)
+	  9: Rel (    59,     0)  ->  Abs (   209,  1549)
+	 10: Rel (    54,     0)  ->  Abs (   263,  1549)
+	 11: Rel (    74,   -90)  ->  Abs (   337,  1459)
+	 12: Rel (   -60,   -87)  ->  Abs (   277,  1372)
+	 13: Rel (     0,    28)  ->  Abs (   277,  1400)
+	 14: Rel (   -78,    68)  ->  Abs (   199,  1468)
+	 15: Rel (   -27,     0)  ->  Abs (   172,  1468)
+	 16: Rel (   -26,     0)  ->  Abs (   146,  1468)
+	 17: Rel (   -36,   -45)  ->  Abs (   110,  1423)
+	 18: Rel (     0,   -24)  ->  Abs (   110,  1399)
+	 19: Rel (     0,   -35)  ->  Abs (   110,  1364)
+	 20: Rel (    33,   -14)  ->  Abs (   143,  1350)
+	 21: Rel (    26,   -11)  ->  Abs (   169,  1339)
+	 22: Rel (    49,     0)  ->  Abs (   218,  1339)
+	 23: Rel (    25,     0)  ->  Abs (   243,  1339)
+	 24: Rel (    34,    14)  ->  Abs (   277,  1353)
+
+	Glyph 761: off = 0x00022442, len = 88
+	  numberOfContours:	1
+	  xMin:			380
+	  yMin:			448
+	  xMax:			705
+	  yMax:			925
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	29
+	00000: NPUSHB      (14):    10    10     3    10    32    16    19    52     3    10 
+	                             7     0     0     7 
+	00016: MDAP[rd]   
+	00017: SHP[rp1,zp0] 
+	00018: MDAP[rd]   
+	00019: SRP2       
+	00020: IP         
+	00021: IP         
+	00022: CALL       
+	00023: SVTCA[y-axis] 
+	00024: MDAP[rd]   
+	00025: SHP[rp1,zp0] 
+	00026: MDAP[rd]   
+	00027: IUP[y]     
+	00028: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   705,   744)  ->  Abs (   705,   744)
+	  1: Rel (   -28,   -87)  ->  Abs (   677,   657)
+	  2: Rel (   -28,  -108)  ->  Abs (   649,   549)
+	  3: Rel (   -19,  -101)  ->  Abs (   630,   448)
+	  4: Rel (   -85,    48)  ->  Abs (   545,   496)
+	  5: Rel (   -48,    34)  ->  Abs (   497,   530)
+	  6: Rel (   -32,    23)  ->  Abs (   465,   553)
+	  7: Rel (   -85,    68)  ->  Abs (   380,   621)
+	  8: Rel (    21,    91)  ->  Abs (   401,   712)
+	  9: Rel (    35,   118)  ->  Abs (   436,   830)
+	 10: Rel (    34,    95)  ->  Abs (   470,   925)
+	 11: Rel (    56,   -49)  ->  Abs (   526,   876)
+	 12: Rel (    57,   -44)  ->  Abs (   583,   832)
+	 13: Rel (    38,   -29)  ->  Abs (   621,   803)
+
+	Glyph 762: off = 0x0002249A, len = 132
+	  numberOfContours:	1
+	  xMin:			302
+	  yMin:			293
+	  xMax:			670
+	  yMax:			1467
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	59
+	00000: PUSHB[3]             13    13    14 
+	00004: PUSHW[5]            754     5   747    18   -16 
+	00015: NPUSHB      (16):     9    18    52     7     4    14    14     5    13    64 
+	                            11    29    52    13    13     4 
+	00033: PUSHW[2]            763     5 
+	00038: MDAP[rd]   
+	00039: MIRP[nrp0,md,rd,1] 
+	00040: SHP[rp1,zp0] 
+	00041: MDAP[rd]   
+	00042: CALL       
+	00043: RTHG       
+	00044: SRP2       
+	00045: IP         
+	00046: MDAP[rd]   
+	00047: SRP1       
+	00048: IP         
+	00049: CALL       
+	00050: SVTCA[y-axis] 
+	00051: RTG        
+	00052: MIAP[rd+ci] 
+	00053: MIAP[rd+ci] 
+	00054: IP         
+	00055: MDAP[rd]   
+	00056: IUP[y]     
+	00057: IUP[x]     
+	00058: SVTCA[x-axis] 
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:  YDual                       X-Short On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   670,   711)  ->  Abs (   670,   711)
+	  1: Rel (     0,   -90)  ->  Abs (   670,   621)
+	  2: Rel (   -14,  -119)  ->  Abs (   656,   502)
+	  3: Rel (    -3,   -29)  ->  Abs (   653,   473)
+	  4: Rel (   -25,  -180)  ->  Abs (   628,   293)
+	  5: Rel (   -34,     0)  ->  Abs (   594,   293)
+	  6: Rel (     0,    24)  ->  Abs (   594,   317)
+	  7: Rel (     4,   115)  ->  Abs (   598,   432)
+	  8: Rel (     0,   212)  ->  Abs (   598,   644)
+	  9: Rel (   -58,   184)  ->  Abs (   540,   828)
+	 10: Rel (   -45,   143)  ->  Abs (   495,   971)
+	 11: Rel (   -79,   126)  ->  Abs (   416,  1097)
+	 12: Rel (   -40,    64)  ->  Abs (   376,  1161)
+	 13: Rel (   -74,    90)  ->  Abs (   302,  1251)
+	 14: Rel (    96,   216)  ->  Abs (   398,  1467)
+	 15: Rel (    79,   -95)  ->  Abs (   477,  1372)
+	 16: Rel (    48,   -81)  ->  Abs (   525,  1291)
+	 17: Rel (    68,  -115)  ->  Abs (   593,  1176)
+	 18: Rel (    35,  -128)  ->  Abs (   628,  1048)
+	 19: Rel (    42,  -152)  ->  Abs (   670,   896)
+
+	Glyph 763: off = 0x0002251E, len = 234
+	  numberOfContours:	1
+	  xMin:			183
+	  yMin:			293
+	  xMax:			801
+	  yMax:			1480
+
+	EndPoints
+	---------
+	  0:  32
+
+	  Length of Instructions:	127
+	00000: PUSHB[2]              6     4 
+	00003: PUSHW[1]            751 
+	00006: NPUSHB      (12):    25    64    14    17    52    25    25    21    20    20 
+	                            15    21 
+	00020: PUSHW[5]            754    29   754    15   747 
+	00031: PUSHB[6]             17    64    14    24    52     9 
+	00038: PUSHW[1]            -12 
+	00041: PUSHB[4]              9    17    52    29 
+	00046: PUSHW[1]            763 
+	00049: PUSHB[4]             30    30    14     6 
+	00054: PUSHW[1]            -42 
+	00057: NPUSHB      (15):    14    17    52     6    21    21    15    20    64    11 
+	                            29    52    20    20    14 
+	00074: PUSHW[2]            763    15 
+	00079: MDAP[rd]   
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: SHP[rp1,zp0] 
+	00082: MDAP[rd]   
+	00083: CALL       
+	00084: RTHG       
+	00085: SRP2       
+	00086: IP         
+	00087: MDAP[rd]   
+	00088: IP         
+	00089: CALL       
+	00090: SRP1       
+	00091: SHP[rp1,zp0] 
+	00092: RTG        
+	00093: MDAP[rd]   
+	00094: MIRP[nrp0,md,rd,1] 
+	00095: CALL       
+	00096: CALL       
+	00097: SVTCA[y-axis] 
+	00098: MIAP[rd+ci] 
+	00099: MIAP[rd+ci] 
+	00100: MIAP[rd+ci] 
+	00101: SRP2       
+	00102: IP         
+	00103: MDAP[rd]   
+	00104: SRP1       
+	00105: IP         
+	00106: MDAP[rd]   
+	00107: CALL       
+	00108: MIRP[srp0,md,rd,1] 
+	00109: IP         
+	00110: PUSHB[2]              6     2 
+	00113: RS         
+	00114: EQ         
+	00115: IF         
+	00116: PUSHB[5]             20    64    15    17    52 
+	00122: SVTCA[y-axis] 
+	00123: CALL       
+	00124: EIF        
+	00125: IUP[y]     
+	00126: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:  YDual                       X-Short On
+	 16:                              X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual               Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short On
+	 24:        XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   801,  1307)  ->  Abs (   801,  1307)
+	  1: Rel (     0,  -110)  ->  Abs (   801,  1197)
+	  2: Rel (   -52,   -66)  ->  Abs (   749,  1131)
+	  3: Rel (   -57,   -72)  ->  Abs (   692,  1059)
+	  4: Rel (  -104,     0)  ->  Abs (   588,  1059)
+	  5: Rel (   -13,     0)  ->  Abs (   575,  1059)
+	  6: Rel (   -56,     8)  ->  Abs (   519,  1067)
+	  7: Rel (    38,   -80)  ->  Abs (   557,   987)
+	  8: Rel (    16,   -47)  ->  Abs (   573,   940)
+	  9: Rel (    27,   -79)  ->  Abs (   600,   861)
+	 10: Rel (    28,  -212)  ->  Abs (   628,   649)
+	 11: Rel (     0,  -178)  ->  Abs (   628,   471)
+	 12: Rel (     0,   -31)  ->  Abs (   628,   440)
+	 13: Rel (    -4,  -141)  ->  Abs (   624,   299)
+	 14: Rel (     0,    -6)  ->  Abs (   624,   293)
+	 15: Rel (   -30,     0)  ->  Abs (   594,   293)
+	 16: Rel (   -76,   323)  ->  Abs (   518,   616)
+	 17: Rel (   -25,    85)  ->  Abs (   493,   701)
+	 18: Rel (   -48,   166)  ->  Abs (   445,   867)
+	 19: Rel (  -131,   247)  ->  Abs (   314,  1114)
+	 20: Rel (  -131,   164)  ->  Abs (   183,  1278)
+	 21: Rel (    66,   202)  ->  Abs (   249,  1480)
+	 22: Rel (    67,   -95)  ->  Abs (   316,  1385)
+	 23: Rel (    52,   -46)  ->  Abs (   368,  1339)
+	 24: Rel (    95,   -84)  ->  Abs (   463,  1255)
+	 25: Rel (   106,     0)  ->  Abs (   569,  1255)
+	 26: Rel (   112,     0)  ->  Abs (   681,  1255)
+	 27: Rel (    43,    75)  ->  Abs (   724,  1330)
+	 28: Rel (    24,    41)  ->  Abs (   748,  1371)
+	 29: Rel (    13,   107)  ->  Abs (   761,  1478)
+	 30: Rel (    32,     2)  ->  Abs (   793,  1480)
+	 31: Rel (     4,   -35)  ->  Abs (   797,  1445)
+	 32: Rel (     4,   -93)  ->  Abs (   801,  1352)
+
+	Glyph 764: off = 0x00022608, len = 278
+	  numberOfContours:	1
+	  xMin:			129
+	  yMin:			293
+	  xMax:			964
+	  yMax:			1480
+
+	EndPoints
+	---------
+	  0:  41
+
+	  Length of Instructions:	150
+	00000: PUSHB[8]             21    32    14    17    52     6    28     3 
+	00009: PUSHW[1]            751 
+	00012: PUSHB[4]             36    36    24     9 
+	00017: PUSHW[1]            751 
+	00020: NPUSHB      (11):   143    28     1    28    28    18    23    23    24    18 
+	                            38 
+	00033: NPUSHW       (9):   754    32   754    24   754    18   747    32   763 
+	00053: PUSHB[4]             33    33    17    39 
+	00058: PUSHW[3]            763    38   -64 
+	00065: NPUSHB      (23):    12    18    52    38    38    14    17   128     9     1 
+	                             9    23    24    24    18    23    64    10    29    52 
+	                            23    23    17 
+	00090: PUSHW[3]            763    18   -64 
+	00097: PUSHB[4]              9    12    52    18 
+	00102: MDAP[rd]   
+	00103: CALL       
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: SHP[rp1,zp0] 
+	00106: MDAP[rd]   
+	00107: CALL       
+	00108: RTHG       
+	00109: SRP2       
+	00110: IP         
+	00111: MDAP[rd]   
+	00112: SRP1       
+	00113: IP         
+	00114: DELTAP1    
+	00115: SRP1       
+	00116: SHP[rp1,zp0] 
+	00117: SHP[rp1,zp0] 
+	00118: RTG        
+	00119: MDAP[rd]   
+	00120: CALL       
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: SRP2       
+	00123: IP         
+	00124: MDAP[rd]   
+	00125: MIRP[nrp0,md,rd,1] 
+	00126: SVTCA[y-axis] 
+	00127: MIAP[rd+ci] 
+	00128: MIAP[rd+ci] 
+	00129: MIAP[rd+ci] 
+	00130: MIAP[rd+ci] 
+	00131: SRP1       
+	00132: SRP2       
+	00133: IP         
+	00134: MDAP[rd]   
+	00135: SRP1       
+	00136: IP         
+	00137: MDAP[rd]   
+	00138: DELTAP1    
+	00139: MIRP[nrp0,md,rd,1] 
+	00140: SRP2       
+	00141: IP         
+	00142: MDAP[rd]   
+	00143: MIRP[srp0,md,rd,1] 
+	00144: SRP1       
+	00145: IP         
+	00146: IUP[y]     
+	00147: IUP[x]     
+	00148: SVTCA[x-axis] 
+	00149: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:  YDual                       X-Short On
+	 19:  YDual XDual         Y-Short         Off
+	 20:                              X-Short Off
+	 21:  YDual               Y-Short X-Short On
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual XDual                 X-Short On
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:  YDual XDual                 X-Short On
+	 40:        XDual         Y-Short         Off
+	 41:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   964,  1379)  ->  Abs (   964,  1379)
+	  1: Rel (     0,  -125)  ->  Abs (   964,  1254)
+	  2: Rel (   -95,  -132)  ->  Abs (   869,  1122)
+	  3: Rel (   -99,     0)  ->  Abs (   770,  1122)
+	  4: Rel (   -57,     0)  ->  Abs (   713,  1122)
+	  5: Rel (   -84,    36)  ->  Abs (   629,  1158)
+	  6: Rel (   -20,    37)  ->  Abs (   609,  1195)
+	  7: Rel (   -34,   -56)  ->  Abs (   575,  1139)
+	  8: Rel (  -104,   -57)  ->  Abs (   471,  1082)
+	  9: Rel (   -73,     0)  ->  Abs (   398,  1082)
+	 10: Rel (    37,   -73)  ->  Abs (   435,  1009)
+	 11: Rel (    16,   -39)  ->  Abs (   451,   970)
+	 12: Rel (    29,   -71)  ->  Abs (   480,   899)
+	 13: Rel (    31,  -160)  ->  Abs (   511,   739)
+	 14: Rel (     0,  -113)  ->  Abs (   511,   626)
+	 15: Rel (     0,   -63)  ->  Abs (   511,   563)
+	 16: Rel (   -11,  -117)  ->  Abs (   500,   446)
+	 17: Rel (   -24,  -153)  ->  Abs (   476,   293)
+	 18: Rel (   -40,     0)  ->  Abs (   436,   293)
+	 19: Rel (     0,   220)  ->  Abs (   436,   513)
+	 20: Rel (   -56,   282)  ->  Abs (   380,   795)
+	 21: Rel (   -68,   133)  ->  Abs (   312,   928)
+	 22: Rel (   -52,   101)  ->  Abs (   260,  1029)
+	 23: Rel (  -131,   193)  ->  Abs (   129,  1222)
+	 24: Rel (    73,   237)  ->  Abs (   202,  1459)
+	 25: Rel (    52,   -86)  ->  Abs (   254,  1373)
+	 26: Rel (    60,   -44)  ->  Abs (   314,  1329)
+	 27: Rel (    67,   -49)  ->  Abs (   381,  1280)
+	 28: Rel (    82,     0)  ->  Abs (   463,  1280)
+	 29: Rel (    85,     0)  ->  Abs (   548,  1280)
+	 30: Rel (    48,    58)  ->  Abs (   596,  1338)
+	 31: Rel (    41,    50)  ->  Abs (   637,  1388)
+	 32: Rel (    16,    92)  ->  Abs (   653,  1480)
+	 33: Rel (    32,     0)  ->  Abs (   685,  1480)
+	 34: Rel (     8,   -92)  ->  Abs (   693,  1388)
+	 35: Rel (    56,   -74)  ->  Abs (   749,  1314)
+	 36: Rel (    52,     0)  ->  Abs (   801,  1314)
+	 37: Rel (   105,     0)  ->  Abs (   906,  1314)
+	 38: Rel (    20,   166)  ->  Abs (   926,  1480)
+	 39: Rel (    33,     0)  ->  Abs (   959,  1480)
+	 40: Rel (     0,   -22)  ->  Abs (   959,  1458)
+	 41: Rel (     5,   -73)  ->  Abs (   964,  1385)
+
+	Glyph 765: off = 0x0002271E, len = 252
+	  numberOfContours:	1
+	  xMin:			300
+	  yMin:			293
+	  xMax:			814
+	  yMax:			1461
+
+	EndPoints
+	---------
+	  0:  43
+
+	  Length of Instructions:	114
+	00000: PUSHB[4]            132    31     1    31 
+	00005: PUSHW[1]            -64 
+	00008: PUSHB[4]             11    17    52    32 
+	00013: PUSHW[1]            -64 
+	00016: PUSHB[8]             10    17    52    32    13    13     0    24 
+	00025: PUSHW[7]            751    23   754     0   751     1   747 
+	00040: PUSHB[7]              1     0     0    24    23    23    34 
+	00048: PUSHW[1]            764 
+	00051: PUSHB[4]             13    13    40    17 
+	00056: PUSHW[1]            764 
+	00059: PUSHB[3]             28    28     7 
+	00063: PUSHW[3]            764    40   302 
+	00070: SCANCTRL   
+	00071: MDAP[rd]   
+	00072: MIRP[srp0,md,rd,1] 
+	00073: IP         
+	00074: MDAP[rd]   
+	00075: MIRP[nrp0,md,rd,1] 
+	00076: SRP1       
+	00077: SHP[rp1,zp0] 
+	00078: MDAP[rd]   
+	00079: MIRP[nrp0,md,rd,1] 
+	00080: IP         
+	00081: MDAP[rd]   
+	00082: SHP[rp1,zp0] 
+	00083: SHP[rp2,zp1] 
+	00084: MDAP[rd]   
+	00085: SHP[rp1,zp0] 
+	00086: SVTCA[y-axis] 
+	00087: MIAP[rd+ci] 
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: MIAP[rd+ci] 
+	00090: MIRP[nrp0,md,rd,1] 
+	00091: SRP1       
+	00092: IP         
+	00093: MDAP[rd]   
+	00094: IP         
+	00095: CALL       
+	00096: PUSHB[2]              6     2 
+	00099: RS         
+	00100: EQ         
+	00101: IF         
+	00102: PUSHB[3]              9    13     1 
+	00106: SVTCA[y-axis] 
+	00107: DELTAP1    
+	00108: EIF        
+	00109: IUP[y]     
+	00110: IUP[x]     
+	00111: SVTCA[x-axis] 
+	00112: CALL       
+	00113: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short X-Short On
+	 27:                      Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:        XDual         Y-Short X-Short On
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:                      Y-Short X-Short On
+	 37:                      Y-Short X-Short Off
+	 38:                      Y-Short X-Short On
+	 39:                      Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:        XDual         Y-Short X-Short On
+	 43:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   814,   495)  ->  Abs (   814,   495)
+	  1: Rel (   -63,  -202)  ->  Abs (   751,   293)
+	  2: Rel (   -90,     0)  ->  Abs (   661,   293)
+	  3: Rel (   -83,    13)  ->  Abs (   578,   306)
+	  4: Rel (  -110,    17)  ->  Abs (   468,   323)
+	  5: Rel (   -67,    34)  ->  Abs (   401,   357)
+	  6: Rel (   -82,    41)  ->  Abs (   319,   398)
+	  7: Rel (     0,    61)  ->  Abs (   319,   459)
+	  8: Rel (     0,    57)  ->  Abs (   319,   516)
+	  9: Rel (    35,    60)  ->  Abs (   354,   576)
+	 10: Rel (    30,    51)  ->  Abs (   384,   627)
+	 11: Rel (    62,    66)  ->  Abs (   446,   693)
+	 12: Rel (    33,    35)  ->  Abs (   479,   728)
+	 13: Rel (    92,    87)  ->  Abs (   571,   815)
+	 14: Rel (   -85,    32)  ->  Abs (   486,   847)
+	 15: Rel (   -85,    33)  ->  Abs (   401,   880)
+	 16: Rel (  -101,    45)  ->  Abs (   300,   925)
+	 17: Rel (     0,    46)  ->  Abs (   300,   971)
+	 18: Rel (     0,    76)  ->  Abs (   300,  1047)
+	 19: Rel (    74,   100)  ->  Abs (   374,  1147)
+	 20: Rel (    57,    77)  ->  Abs (   431,  1224)
+	 21: Rel (   109,    98)  ->  Abs (   540,  1322)
+	 22: Rel (    76,    68)  ->  Abs (   616,  1390)
+	 23: Rel (    93,    71)  ->  Abs (   709,  1461)
+	 24: Rel (   -31,  -192)  ->  Abs (   678,  1269)
+	 25: Rel (  -111,   -41)  ->  Abs (   567,  1228)
+	 26: Rel (   -37,   -18)  ->  Abs (   530,  1210)
+	 27: Rel (   -88,   -43)  ->  Abs (   442,  1167)
+	 28: Rel (     0,   -36)  ->  Abs (   442,  1131)
+	 29: Rel (     0,   -32)  ->  Abs (   442,  1099)
+	 30: Rel (    75,   -33)  ->  Abs (   517,  1066)
+	 31: Rel (    70,   -27)  ->  Abs (   587,  1039)
+	 32: Rel (    71,   -26)  ->  Abs (   658,  1013)
+	 33: Rel (    76,   -31)  ->  Abs (   734,   982)
+	 34: Rel (     0,   -26)  ->  Abs (   734,   956)
+	 35: Rel (     0,   -29)  ->  Abs (   734,   927)
+	 36: Rel (   -68,   -72)  ->  Abs (   666,   855)
+	 37: Rel (   -63,   -66)  ->  Abs (   603,   789)
+	 38: Rel (   -63,   -65)  ->  Abs (   540,   724)
+	 39: Rel (   -68,   -77)  ->  Abs (   472,   647)
+	 40: Rel (     0,   -41)  ->  Abs (   472,   606)
+	 41: Rel (     0,   -48)  ->  Abs (   472,   558)
+	 42: Rel (   137,   -32)  ->  Abs (   609,   526)
+	 43: Rel (    89,   -21)  ->  Abs (   698,   505)
+
+	Glyph 766: off = 0x0002281A, len = 170
+	  numberOfContours:	2
+	  xMin:			190
+	  yMin:			506
+	  xMax:			896
+	  yMax:			1273
+
+	EndPoints
+	---------
+	  0:  16
+	  1:  33
+
+	  Length of Instructions:	64
+	00000: NPUSHB      (16):    20    64    14    17    52    25    32    14    17    52 
+	                            20    64     9    17    52    14 
+	00018: PUSHW[1]            751 
+	00021: PUSHB[3]             23    23    31 
+	00025: PUSHW[4]            751     4     0   766 
+	00034: PUSHB[3]             17    17     8 
+	00038: PUSHW[3]            765    27   308 
+	00045: SCANCTRL   
+	00046: MDAP[rd]   
+	00047: MIRP[nrp0,md,rd,1] 
+	00048: SHP[rp1,zp0] 
+	00049: MDAP[rd]   
+	00050: MIRP[nrp0,md,rd,1] 
+	00051: SVTCA[y-axis] 
+	00052: MDAP[rd]   
+	00053: MIRP[srp0,md,rd,1] 
+	00054: SHP[rp2,zp1] 
+	00055: MDAP[rd]   
+	00056: MIRP[nrp0,md,rd,1] 
+	00057: IUP[y]     
+	00058: IUP[x]     
+	00059: SVTCA[x-axis] 
+	00060: CALL       
+	00061: CALL       
+	00062: SVTCA[y-axis] 
+	00063: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual               Y-Short X-Short On
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual               Y-Short X-Short On
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:                      Y-Short X-Short On
+	 26:                      Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:        XDual         Y-Short X-Short On
+	 30:        XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   896,   921)  ->  Abs (   896,   921)
+	  1: Rel (     0,  -173)  ->  Abs (   896,   748)
+	  2: Rel (  -103,  -113)  ->  Abs (   793,   635)
+	  3: Rel (  -117,  -129)  ->  Abs (   676,   506)
+	  4: Rel (  -215,     0)  ->  Abs (   461,   506)
+	  5: Rel (  -121,     0)  ->  Abs (   340,   506)
+	  6: Rel (   -70,    42)  ->  Abs (   270,   548)
+	  7: Rel (   -80,    48)  ->  Abs (   190,   596)
+	  8: Rel (     0,    91)  ->  Abs (   190,   687)
+	  9: Rel (     0,    81)  ->  Abs (   190,   768)
+	 10: Rel (    44,   135)  ->  Abs (   234,   903)
+	 11: Rel (    50,   152)  ->  Abs (   284,  1055)
+	 12: Rel (    70,    98)  ->  Abs (   354,  1153)
+	 13: Rel (    86,   120)  ->  Abs (   440,  1273)
+	 14: Rel (    92,     0)  ->  Abs (   532,  1273)
+	 15: Rel (   118,     0)  ->  Abs (   650,  1273)
+	 16: Rel (   246,  -238)  ->  Abs (   896,  1035)
+	 17: Rel (   -74,  -220)  ->  Abs (   822,   815)
+	 18: Rel (     0,    57)  ->  Abs (   822,   872)
+	 19: Rel (   -80,    66)  ->  Abs (   742,   938)
+	 20: Rel (   -67,    55)  ->  Abs (   675,   993)
+	 21: Rel (  -101,    45)  ->  Abs (   574,  1038)
+	 22: Rel (   -93,    41)  ->  Abs (   481,  1079)
+	 23: Rel (   -47,     0)  ->  Abs (   434,  1079)
+	 24: Rel (   -66,     0)  ->  Abs (   368,  1079)
+	 25: Rel (   -44,   -90)  ->  Abs (   324,   989)
+	 26: Rel (   -36,   -73)  ->  Abs (   288,   916)
+	 27: Rel (     0,   -72)  ->  Abs (   288,   844)
+	 28: Rel (     0,   -82)  ->  Abs (   288,   762)
+	 29: Rel (    69,   -38)  ->  Abs (   357,   724)
+	 30: Rel (    63,   -35)  ->  Abs (   420,   689)
+	 31: Rel (   124,     0)  ->  Abs (   544,   689)
+	 32: Rel (   122,     0)  ->  Abs (   666,   689)
+	 33: Rel (   156,    73)  ->  Abs (   822,   762)
+
+	Glyph 767: off = 0x000228C4, len = 240
+	  numberOfContours:	1
+	  xMin:			175
+	  yMin:			320
+	  xMax:			839
+	  yMax:			1455
+
+	EndPoints
+	---------
+	  0:  40
+
+	  Length of Instructions:	111
+	00000: PUSHW[2]             40   -32 
+	00005: PUSHB[4]             12    17    52    39 
+	00010: PUSHW[1]            -24 
+	00013: PUSHB[7]              9    17    52    31    22    11    15 
+	00021: PUSHW[1]            767 
+	00024: PUSHB[4]             27    27    22     0 
+	00029: PUSHW[1]            -64 
+	00032: PUSHB[7]             14    17    52     0     0     1    22 
+	00040: PUSHW[5]            754     1   747    23   763 
+	00051: PUSHB[7]             22    22     7    31     1    11     7 
+	00059: PUSHW[1]            766 
+	00062: NPUSHB      (11):    35    64    16    17    52    35    35     1     0     0 
+	                             1 
+	00075: RTHG       
+	00076: MDAP[rd]   
+	00077: SHP[rp1,zp0] 
+	00078: RTG        
+	00079: MDAP[rd]   
+	00080: SRP1       
+	00081: SHP[rp1,zp0] 
+	00082: MDAP[rd]   
+	00083: CALL       
+	00084: MIRP[srp0,md,rd,1] 
+	00085: IP         
+	00086: SRP2       
+	00087: IP         
+	00088: SRP1       
+	00089: SHP[rp1,zp0] 
+	00090: MDAP[rd]   
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: SVTCA[y-axis] 
+	00093: MIAP[rd+ci] 
+	00094: MIAP[rd+ci] 
+	00095: SRP2       
+	00096: IP         
+	00097: MDAP[rd]   
+	00098: CALL       
+	00099: SRP1       
+	00100: IP         
+	00101: MDAP[rd]   
+	00102: MIRP[srp0,md,rd,1] 
+	00103: IP         
+	00104: SRP2       
+	00105: IP         
+	00106: IUP[y]     
+	00107: IUP[x]     
+	00108: SVTCA[x-axis] 
+	00109: CALL       
+	00110: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:                      Y-Short X-Short On
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:                      Y-Short X-Short Off
+	 33:                      Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:        XDual         Y-Short X-Short On
+	 38:        XDual         Y-Short X-Short Off
+	 39:        XDual         Y-Short X-Short On
+	 40:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   839,   548)  ->  Abs (   839,   548)
+	  1: Rel (   -38,  -228)  ->  Abs (   801,   320)
+	  2: Rel (   -65,    43)  ->  Abs (   736,   363)
+	  3: Rel (   -33,    37)  ->  Abs (   703,   400)
+	  4: Rel (   -56,    61)  ->  Abs (   647,   461)
+	  5: Rel (   -29,    91)  ->  Abs (   618,   552)
+	  6: Rel (   -36,   111)  ->  Abs (   582,   663)
+	  7: Rel (     0,   163)  ->  Abs (   582,   826)
+	  8: Rel (     0,    58)  ->  Abs (   582,   884)
+	  9: Rel (     5,    61)  ->  Abs (   587,   945)
+	 10: Rel (     1,    17)  ->  Abs (   588,   962)
+	 11: Rel (    21,   182)  ->  Abs (   609,  1144)
+	 12: Rel (   -48,    -9)  ->  Abs (   561,  1135)
+	 13: Rel (   -23,    -4)  ->  Abs (   538,  1131)
+	 14: Rel (   -74,   -14)  ->  Abs (   464,  1117)
+	 15: Rel (   -47,     0)  ->  Abs (   417,  1117)
+	 16: Rel (  -156,     0)  ->  Abs (   261,  1117)
+	 17: Rel (   -48,    32)  ->  Abs (   213,  1149)
+	 18: Rel (   -38,    25)  ->  Abs (   175,  1174)
+	 19: Rel (     0,    78)  ->  Abs (   175,  1252)
+	 20: Rel (     0,    33)  ->  Abs (   175,  1285)
+	 21: Rel (     6,   132)  ->  Abs (   181,  1417)
+	 22: Rel (     0,    34)  ->  Abs (   181,  1451)
+	 23: Rel (    36,     4)  ->  Abs (   217,  1455)
+	 24: Rel (    24,   -55)  ->  Abs (   241,  1400)
+	 25: Rel (    22,   -18)  ->  Abs (   263,  1382)
+	 26: Rel (    46,   -37)  ->  Abs (   309,  1345)
+	 27: Rel (   106,     0)  ->  Abs (   415,  1345)
+	 28: Rel (    79,     0)  ->  Abs (   494,  1345)
+	 29: Rel (    99,    19)  ->  Abs (   593,  1364)
+	 30: Rel (    22,     4)  ->  Abs (   615,  1368)
+	 31: Rel (    85,    19)  ->  Abs (   700,  1387)
+	 32: Rel (   -17,  -103)  ->  Abs (   683,  1284)
+	 33: Rel (    -7,   -51)  ->  Abs (   676,  1233)
+	 34: Rel (   -12,   -87)  ->  Abs (   664,  1146)
+	 35: Rel (     0,   -65)  ->  Abs (   664,  1081)
+	 36: Rel (     0,  -161)  ->  Abs (   664,   920)
+	 37: Rel (    28,  -110)  ->  Abs (   692,   810)
+	 38: Rel (    22,   -87)  ->  Abs (   714,   723)
+	 39: Rel (    46,   -72)  ->  Abs (   760,   651)
+	 40: Rel (    16,   -25)  ->  Abs (   776,   626)
+
+	Glyph 768: off = 0x000229B4, len = 210
+	  numberOfContours:	1
+	  xMin:			129
+	  yMin:			293
+	  xMax:			940
+	  yMax:			1455
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	133
+	00000: NPUSHB      (32):    12    32    14    17    52     3    38    14    17    52 
+	                             3    52     9    13    52     1     1     0     8    64 
+	                            14    17    52     8    64    10    17    52     8     8 
+	                             9     0 
+	00034: PUSHW[3]            754     9   754 
+	00041: PUSHB[6]             13    32     9    13    52    13 
+	00048: PUSHW[3]            767     5   747 
+	00055: NPUSHB      (11):    14    13     5     8     9     1     0     0     9     4 
+	                             5 
+	00068: PUSHW[1]            327 
+	00071: SCANCTRL   
+	00072: RTHG       
+	00073: MDAP[rd]   
+	00074: SHP[rp1,zp0] 
+	00075: SHP[rp1,zp0] 
+	00076: SHP[rp1,zp0] 
+	00077: MDAP[rd]   
+	00078: SHP[rp1,zp0] 
+	00079: MDAP[rd]   
+	00080: SHP[rp1,zp0] 
+	00081: SRP1       
+	00082: SHP[rp1,zp0] 
+	00083: SHP[rp1,zp0] 
+	00084: SVTCA[y-axis] 
+	00085: RTG        
+	00086: MIAP[rd+ci] 
+	00087: MIRP[nrp0,md,rd,1] 
+	00088: CALL       
+	00089: MIAP[rd+ci] 
+	00090: MIAP[rd+ci] 
+	00091: SRP1       
+	00092: IP         
+	00093: MDAP[rd]   
+	00094: CALL       
+	00095: CALL       
+	00096: SRP2       
+	00097: IP         
+	00098: MDAP[rd]   
+	00099: PUSHB[2]              6     2 
+	00102: RS         
+	00103: EQ         
+	00104: IF         
+	00105: NPUSHB      (15):    13   200    15    17    52    13   150    14    14    52 
+	                            13    64     9    13    52 
+	00122: SVTCA[y-axis] 
+	00123: CALL       
+	00124: CALL       
+	00125: CALL       
+	00126: EIF        
+	00127: IUP[y]     
+	00128: IUP[x]     
+	00129: SVTCA[x-axis] 
+	00130: CALL       
+	00131: CALL       
+	00132: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                              X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:                              X-Short Off
+	  4:                              X-Short On
+	  5:  YDual                       X-Short On
+	  6:                              X-Short Off
+	  7:                              X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:        XDual                 X-Short On
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual                 X-Short On
+	 14:  YDual XDual                 X-Short On
+	 15:        XDual                 X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   940,  1455)  ->  Abs (   940,  1455)
+	  1: Rel (    -8,  -287)  ->  Abs (   932,  1168)
+	  2: Rel (  -148,  -151)  ->  Abs (   784,  1017)
+	  3: Rel (  -174,  -418)  ->  Abs (   610,   599)
+	  4: Rel (   -41,  -306)  ->  Abs (   569,   293)
+	  5: Rel (   -14,     0)  ->  Abs (   555,   293)
+	  6: Rel (   -64,   307)  ->  Abs (   491,   600)
+	  7: Rel (  -199,   388)  ->  Abs (   292,   988)
+	  8: Rel (  -163,   146)  ->  Abs (   129,  1134)
+	  9: Rel (    36,   317)  ->  Abs (   165,  1451)
+	 10: Rel (   155,  -181)  ->  Abs (   320,  1270)
+	 11: Rel (   101,  -209)  ->  Abs (   421,  1061)
+	 12: Rel (    98,  -203)  ->  Abs (   519,   858)
+	 13: Rel (    63,  -264)  ->  Abs (   582,   594)
+	 14: Rel (    10,     0)  ->  Abs (   592,   594)
+	 15: Rel (    39,   278)  ->  Abs (   631,   872)
+	 16: Rel (    89,   217)  ->  Abs (   720,  1089)
+	 17: Rel (    86,   210)  ->  Abs (   806,  1299)
+
+	Glyph 769: off = 0x00022A86, len = 234
+	  numberOfContours:	1
+	  xMin:			154
+	  yMin:			305
+	  xMax:			966
+	  yMax:			1467
+
+	EndPoints
+	---------
+	  0:  22
+
+	  Length of Instructions:	147
+	00000: NPUSHB      (19):     6    84    14    17    52    19    38    14    17    52 
+	                            19    52     9    13    52    12    12    11     0 
+	00021: PUSHW[1]            -64 
+	00024: PUSHB[4]             14    17    52     0 
+	00029: PUSHW[1]            -64 
+	00032: PUSHB[6]             10    17    52     0     0     1 
+	00039: PUSHW[5]            747    11   747     4   -32 
+	00050: PUSHB[4]              9    13    52     4 
+	00055: PUSHW[3]            767    17   754 
+	00062: NPUSHB      (11):     5     4    17    12    11     0     1     1    11    16 
+	                            17 
+	00075: PUSHW[1]            327 
+	00078: SCANCTRL   
+	00079: RTHG       
+	00080: MDAP[rd]   
+	00081: SHP[rp1,zp0] 
+	00082: SHP[rp1,zp0] 
+	00083: SHP[rp1,zp0] 
+	00084: MDAP[rd]   
+	00085: SHP[rp1,zp0] 
+	00086: MDAP[rd]   
+	00087: SHP[rp1,zp0] 
+	00088: SRP1       
+	00089: SHP[rp1,zp0] 
+	00090: SHP[rp1,zp0] 
+	00091: SVTCA[y-axis] 
+	00092: RTG        
+	00093: MIAP[rd+ci] 
+	00094: MIRP[nrp0,md,rd,1] 
+	00095: CALL       
+	00096: MIAP[rd+ci] 
+	00097: MIAP[rd+ci] 
+	00098: IP         
+	00099: MDAP[rd]   
+	00100: CALL       
+	00101: CALL       
+	00102: SRP2       
+	00103: IP         
+	00104: MDAP[rd]   
+	00105: PUSHB[2]              6     2 
+	00108: RS         
+	00109: EQ         
+	00110: IF         
+	00111: PUSHW[2]              4  -200 
+	00116: PUSHB[4]             15    17    52     4 
+	00121: PUSHW[1]           -150 
+	00124: PUSHB[4]             14    14    52     4 
+	00129: PUSHW[1]            -64 
+	00132: PUSHB[3]              9    13    52 
+	00136: SVTCA[y-axis] 
+	00137: CALL       
+	00138: CALL       
+	00139: CALL       
+	00140: EIF        
+	00141: IUP[y]     
+	00142: IUP[x]     
+	00143: SVTCA[x-axis] 
+	00144: CALL       
+	00145: CALL       
+	00146: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                              X-Short On
+	  2:  YDual               Y-Short X-Short Off
+	  3:                              X-Short Off
+	  4:  YDual               Y-Short X-Short On
+	  5:  YDual                       X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short On
+	 12:        XDual                         On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:        XDual                 X-Short On
+	 17:  YDual XDual                 X-Short On
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   966,   627)  ->  Abs (   966,   627)
+	  1: Rel (   -36,  -316)  ->  Abs (   930,   311)
+	  2: Rel (  -148,   153)  ->  Abs (   782,   464)
+	  3: Rel (  -222,   456)  ->  Abs (   560,   920)
+	  4: Rel (   -49,   253)  ->  Abs (   511,  1173)
+	  5: Rel (    -7,     0)  ->  Abs (   504,  1173)
+	  6: Rel (   -43,  -225)  ->  Abs (   461,   948)
+	  7: Rel (   -32,  -114)  ->  Abs (   429,   834)
+	  8: Rel (   -42,  -151)  ->  Abs (   387,   683)
+	  9: Rel (   -60,  -118)  ->  Abs (   327,   565)
+	 10: Rel (   -63,  -124)  ->  Abs (   264,   441)
+	 11: Rel (  -110,  -136)  ->  Abs (   154,   305)
+	 12: Rel (     0,   286)  ->  Abs (   154,   591)
+	 13: Rel (   144,   133)  ->  Abs (   298,   724)
+	 14: Rel (    89,   213)  ->  Abs (   387,   937)
+	 15: Rel (    86,   207)  ->  Abs (   473,  1144)
+	 16: Rel (    50,   323)  ->  Abs (   523,  1467)
+	 17: Rel (    19,     0)  ->  Abs (   542,  1467)
+	 18: Rel (    51,  -238)  ->  Abs (   593,  1229)
+	 19: Rel (    63,  -158)  ->  Abs (   656,  1071)
+	 20: Rel (    59,  -148)  ->  Abs (   715,   923)
+	 21: Rel (    80,  -110)  ->  Abs (   795,   813)
+	 22: Rel (    66,   -90)  ->  Abs (   861,   723)
+
+	Glyph 770: off = 0x00022B70, len = 232
+	  numberOfContours:	2
+	  xMin:			219
+	  yMin:			293
+	  xMax:			845
+	  yMax:			1484
+
+	EndPoints
+	---------
+	  0:  26
+	  1:  39
+
+	  Length of Instructions:	106
+	00000: PUSHW[2]             26   -32 
+	00005: NPUSHB      (13):    12    17    52     3    16     9    10    52    27    31 
+	                             5    37     0 
+	00020: PUSHW[1]            -64 
+	00023: PUSHB[7]             15    17    52     0     0     1     8 
+	00031: PUSHW[1]            751 
+	00034: PUSHB[4]             37    37     1    31 
+	00039: PUSHW[7]            751    17   754     1   747    11   765 
+	00054: PUSHB[3]             34    34    27 
+	00058: PUSHW[3]            765     5   765 
+	00065: PUSHB[6]             23    23     1     0     0     1 
+	00072: RTHG       
+	00073: MDAP[rd]   
+	00074: SHP[rp1,zp0] 
+	00075: RTG        
+	00076: MDAP[rd]   
+	00077: SRP1       
+	00078: SHP[rp1,zp0] 
+	00079: MDAP[rd]   
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: MIRP[srp0,md,rd,1] 
+	00082: SHP[rp2,zp1] 
+	00083: MDAP[rd]   
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: SVTCA[y-axis] 
+	00086: MIAP[rd+ci] 
+	00087: MIAP[rd+ci] 
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: SRP1       
+	00090: IP         
+	00091: MDAP[rd]   
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: SRP1       
+	00094: IP         
+	00095: MDAP[rd]   
+	00096: CALL       
+	00097: SRP1       
+	00098: IP         
+	00099: SRP2       
+	00100: IP         
+	00101: IUP[y]     
+	00102: IUP[x]     
+	00103: SVTCA[x-axis] 
+	00104: CALL       
+	00105: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:        XDual                         On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:                              X-Short On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual               Y-Short X-Short On
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:                      Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   845,   506)  ->  Abs (   845,   506)
+	  1: Rel (   -61,  -213)  ->  Abs (   784,   293)
+	  2: Rel (  -100,    61)  ->  Abs (   684,   354)
+	  3: Rel (   -32,   144)  ->  Abs (   652,   498)
+	  4: Rel (   -26,   118)  ->  Abs (   626,   616)
+	  5: Rel (     0,   301)  ->  Abs (   626,   917)
+	  6: Rel (   -68,   -24)  ->  Abs (   558,   893)
+	  7: Rel (   -68,   -14)  ->  Abs (   490,   879)
+	  8: Rel (   -33,     0)  ->  Abs (   457,   879)
+	  9: Rel (  -109,     0)  ->  Abs (   348,   879)
+	 10: Rel (  -129,    90)  ->  Abs (   219,   969)
+	 11: Rel (     0,    84)  ->  Abs (   219,  1053)
+	 12: Rel (     0,    62)  ->  Abs (   219,  1115)
+	 13: Rel (    30,    91)  ->  Abs (   249,  1206)
+	 14: Rel (    38,   116)  ->  Abs (   287,  1322)
+	 15: Rel (    64,    71)  ->  Abs (   351,  1393)
+	 16: Rel (    82,    91)  ->  Abs (   433,  1484)
+	 17: Rel (   111,     0)  ->  Abs (   544,  1484)
+	 18: Rel (    83,     0)  ->  Abs (   627,  1484)
+	 19: Rel (    43,   -87)  ->  Abs (   670,  1397)
+	 20: Rel (    35,   -70)  ->  Abs (   705,  1327)
+	 21: Rel (    11,  -139)  ->  Abs (   716,  1188)
+	 22: Rel (     7,   -86)  ->  Abs (   723,  1102)
+	 23: Rel (     0,  -168)  ->  Abs (   723,   934)
+	 24: Rel (    20,  -230)  ->  Abs (   743,   704)
+	 25: Rel (    34,   -93)  ->  Abs (   777,   611)
+	 26: Rel (    15,   -41)  ->  Abs (   792,   570)
+	 27: Rel (  -174,   522)  ->  Abs (   618,  1092)
+	 28: Rel (     0,    91)  ->  Abs (   618,  1183)
+	 29: Rel (   -23,    47)  ->  Abs (   595,  1230)
+	 30: Rel (   -31,    64)  ->  Abs (   564,  1294)
+	 31: Rel (   -80,     0)  ->  Abs (   484,  1294)
+	 32: Rel (   -60,     0)  ->  Abs (   424,  1294)
+	 33: Rel (  -112,   -90)  ->  Abs (   312,  1204)
+	 34: Rel (     0,   -39)  ->  Abs (   312,  1165)
+	 35: Rel (     0,   -42)  ->  Abs (   312,  1123)
+	 36: Rel (    98,   -46)  ->  Abs (   410,  1077)
+	 37: Rel (    70,     0)  ->  Abs (   480,  1077)
+	 38: Rel (    30,     0)  ->  Abs (   510,  1077)
+	 39: Rel (    86,    12)  ->  Abs (   596,  1089)
+
+	Glyph 771: off = 0x00022C58, len = 176
+	  numberOfContours:	3
+	  xMin:			133
+	  yMin:			172
+	  xMax:			948
+	  yMax:			1592
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  15
+	  2:  27
+
+	  Length of Instructions:	80
+	00000: NPUSHB       (9):    15     2    15    27    52     6    13     1     3 
+	00011: PUSHW[1]            750 
+	00014: PUSHB[4]              9     9    15    25 
+	00019: PUSHW[1]            750 
+	00022: PUSHB[4]             19    19    14    22 
+	00027: PUSHW[1]            749 
+	00030: PUSHB[3]             16    16    15 
+	00034: PUSHW[1]            768 
+	00037: PUSHB[4]             12    12    29     0 
+	00042: PUSHW[1]            749 
+	00045: PUSHB[3]              6     6    13 
+	00049: PUSHW[2]            768    14 
+	00054: MDAP[rd]   
+	00055: MIRP[nrp0,md,rd,1] 
+	00056: IP         
+	00057: MDAP[rd]   
+	00058: MIRP[nrp0,md,rd,1] 
+	00059: SRP1       
+	00060: SHP[rp1,zp0] 
+	00061: MDAP[rd]   
+	00062: MIRP[srp0,md,rd,1] 
+	00063: IP         
+	00064: MDAP[rd]   
+	00065: MIRP[nrp0,md,rd,1] 
+	00066: SVTCA[y-axis] 
+	00067: MDAP[rd]   
+	00068: SHP[rp1,zp0] 
+	00069: MDAP[rd]   
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: MDAP[rd]   
+	00072: SHP[rp1,zp0] 
+	00073: MDAP[rd]   
+	00074: MIRP[nrp0,md,rd,1] 
+	00075: IUP[y]     
+	00076: IUP[x]     
+	00077: SVTCA[x-axis] 
+	00078: DELTAP1    
+	00079: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:  YDual               Y-Short         On
+	 13:                                      On
+	 14:  YDual                       X-Short On
+	 15:                                      On
+	 16:        XDual                 X-Short On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   436,  1465)  ->  Abs (   436,  1465)
+	  1: Rel (     0,   -55)  ->  Abs (   436,  1410)
+	  2: Rel (   -76,   -78)  ->  Abs (   360,  1332)
+	  3: Rel (   -55,     0)  ->  Abs (   305,  1332)
+	  4: Rel (   -54,     0)  ->  Abs (   251,  1332)
+	  5: Rel (   -77,    79)  ->  Abs (   174,  1411)
+	  6: Rel (     0,    54)  ->  Abs (   174,  1465)
+	  7: Rel (     0,    53)  ->  Abs (   174,  1518)
+	  8: Rel (    76,    74)  ->  Abs (   250,  1592)
+	  9: Rel (    55,     0)  ->  Abs (   305,  1592)
+	 10: Rel (    55,     0)  ->  Abs (   360,  1592)
+	 11: Rel (    76,   -72)  ->  Abs (   436,  1520)
+	 12: Rel (   512,    71)  ->  Abs (   948,  1591)
+	 13: Rel (  -706, -1402)  ->  Abs (   242,   189)
+	 14: Rel (  -109,     0)  ->  Abs (   133,   189)
+	 15: Rel (   700,  1402)  ->  Abs (   833,  1591)
+	 16: Rel (    68, -1289)  ->  Abs (   901,   302)
+	 17: Rel (     0,   -54)  ->  Abs (   901,   248)
+	 18: Rel (   -76,   -76)  ->  Abs (   825,   172)
+	 19: Rel (   -56,     0)  ->  Abs (   769,   172)
+	 20: Rel (   -55,     0)  ->  Abs (   714,   172)
+	 21: Rel (   -74,    76)  ->  Abs (   640,   248)
+	 22: Rel (     0,    54)  ->  Abs (   640,   302)
+	 23: Rel (     0,    54)  ->  Abs (   640,   356)
+	 24: Rel (    75,    79)  ->  Abs (   715,   435)
+	 25: Rel (    54,     0)  ->  Abs (   769,   435)
+	 26: Rel (    54,     0)  ->  Abs (   823,   435)
+	 27: Rel (    78,   -78)  ->  Abs (   901,   357)
+
+	Glyph 772: off = 0x00022D08, len = 130
+	  numberOfContours:	1
+	  xMin:			193
+	  yMin:			48
+	  xMax:			471
+	  yMax:			546
+
+	EndPoints
+	---------
+	  0:  20
+
+	  Length of Instructions:	57
+	00000: PUSHW[2]             18   -64 
+	00005: PUSHB[6]             12    17    52    18     7     6 
+	00012: PUSHW[1]            -64 
+	00015: PUSHB[7]             12    14    52     6     6    18    11 
+	00023: PUSHW[1]            748 
+	00026: NPUSHB       (9):     7     6     6    11    11    15     0     0    15 
+	00037: MDAP[rd]   
+	00038: SHP[rp1,zp0] 
+	00039: MDAP[rd]   
+	00040: SRP2       
+	00041: IP         
+	00042: MDAP[rd]   
+	00043: IP         
+	00044: MDAP[rd]   
+	00045: SHP[rp1,zp0] 
+	00046: SVTCA[y-axis] 
+	00047: MIAP[rd+ci] 
+	00048: SHP[rp1,zp0] 
+	00049: SHP[rp1,zp0] 
+	00050: MDAP[rd]   
+	00051: CALL       
+	00052: SHP[rp1,zp0] 
+	00053: MDAP[rd]   
+	00054: CALL       
+	00055: IUP[y]     
+	00056: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   471,   410)  ->  Abs (   471,   410)
+	  1: Rel (     0,   -85)  ->  Abs (   471,   325)
+	  2: Rel (   -38,   -73)  ->  Abs (   433,   252)
+	  3: Rel (   -31,   -59)  ->  Abs (   402,   193)
+	  4: Rel (   -59,   -57)  ->  Abs (   343,   136)
+	  5: Rel (   -34,   -33)  ->  Abs (   309,   103)
+	  6: Rel (   -74,   -55)  ->  Abs (   235,    48)
+	  7: Rel (   -42,    55)  ->  Abs (   193,   103)
+	  8: Rel (    69,    55)  ->  Abs (   262,   158)
+	  9: Rel (    23,    25)  ->  Abs (   285,   183)
+	 10: Rel (    41,    45)  ->  Abs (   326,   228)
+	 11: Rel (     0,    40)  ->  Abs (   326,   268)
+	 12: Rel (   -49,    19)  ->  Abs (   277,   287)
+	 13: Rel (   -37,    32)  ->  Abs (   240,   319)
+	 14: Rel (   -41,    36)  ->  Abs (   199,   355)
+	 15: Rel (     0,    60)  ->  Abs (   199,   415)
+	 16: Rel (     0,    54)  ->  Abs (   199,   469)
+	 17: Rel (    75,    77)  ->  Abs (   274,   546)
+	 18: Rel (    54,     0)  ->  Abs (   328,   546)
+	 19: Rel (    57,     0)  ->  Abs (   385,   546)
+	 20: Rel (    86,   -80)  ->  Abs (   471,   466)
+
+	Glyph 773: off = 0x00022D8A, len = 606
+	  numberOfContours:	2
+	  xMin:			179
+	  yMin:			826
+	  xMax:			868
+	  yMax:			1524
+
+	EndPoints
+	---------
+	  0:  103
+	  1:  115
+
+	  Length of Instructions:	284
+	00000: PUSHW[2]             13   -32 
+	00005: PUSHB[4]             11    16    52    35 
+	00010: PUSHW[1]            -32 
+	00013: NPUSHB      (50):    11    16    52    13    35    24     3    48    30   113 
+	                           101    54   107    89    32    11    16    52    66    32 
+	                            11    16    52    89    66    71    78    24    24    44 
+	                            57     6    97     4   107    31    42    15     7     4 
+	                           113    30    70    85    59    96     4   107    71    30 
+	00065: PUSHW[5]            763    17   763   113   -64 
+	00076: PUSHB[6]             10    13    52   113   113    84 
+	00083: PUSHW[3]            763    71   763 
+	00090: PUSHB[6]             31   107     1   107   107    78 
+	00097: PUSHW[1]            754 
+	00100: NPUSHB      (25):    10    32    11    16    52    92    32    11    16    52 
+	                            10    92    95     0     1     0     0    81    21    97 
+	                           104    75    27   110    63 
+	00127: PUSHW[1]            -32 
+	00130: PUSHB[4]             11    16    52    38 
+	00135: PUSHW[1]            -32 
+	00138: NPUSHB      (30):    11    16    52    63    38    44    80    51     1    51 
+	                            51    70    71    84    85    15    17    30    31     8 
+	                           110     7    96    97   104    59    42   110    44     6 
+	00170: PUSHW[3]            763    97   763 
+	00177: PUSHB[8]            104    64    10    12    52   104   104    57 
+	00186: PUSHW[5]            763    44   763   110   320 
+	00197: SCANCTRL   
+	00198: MDAP[rd]   
+	00199: MIRP[nrp0,nmd,rd,1] 
+	00200: MIRP[nrp0,nmd,rd,1] 
+	00201: SHP[rp1,zp0] 
+	00202: MDAP[rd]   
+	00203: CALL       
+	00204: MIRP[nrp0,nmd,rd,1] 
+	00205: MIRP[nrp0,nmd,rd,1] 
+	00206: SRP1       
+	00207: SRP2       
+	00208: IP         
+	00209: IP         
+	00210: SRP1       
+	00211: SRP2       
+	00212: IP         
+	00213: IP         
+	00214: SRP2       
+	00215: SLOOP      
+	00216: IP         
+	00217: SHP[rp2,zp1] 
+	00218: MDAP[rd]   
+	00219: DELTAP2    
+	00220: SRP2       
+	00221: IP         
+	00222: IP         
+	00223: CALL       
+	00224: CALL       
+	00225: SRP1       
+	00226: IP         
+	00227: IP         
+	00228: SRP1       
+	00229: SRP2       
+	00230: IP         
+	00231: IP         
+	00232: SHP[rp1,zp0] 
+	00233: MDAP[rd]   
+	00234: DELTAP2    
+	00235: IP         
+	00236: IP         
+	00237: CALL       
+	00238: CALL       
+	00239: SVTCA[y-axis] 
+	00240: MIAP[rd+ci] 
+	00241: SHP[rp1,zp0] 
+	00242: MDAP[rd]   
+	00243: DELTAP1    
+	00244: MIRP[nrp0,nmd,rd,1] 
+	00245: MIRP[nrp0,nmd,rd,1] 
+	00246: SHP[rp1,zp0] 
+	00247: MDAP[rd]   
+	00248: CALL       
+	00249: MIRP[nrp0,nmd,rd,1] 
+	00250: MIRP[nrp0,nmd,rd,1] 
+	00251: SRP1       
+	00252: SRP2       
+	00253: SLOOP      
+	00254: IP         
+	00255: SRP1       
+	00256: SRP2       
+	00257: SLOOP      
+	00258: IP         
+	00259: SRP1       
+	00260: SLOOP      
+	00261: IP         
+	00262: SHP[rp2,zp1] 
+	00263: MDAP[rd]   
+	00264: SRP1       
+	00265: SRP2       
+	00266: IP         
+	00267: IP         
+	00268: CALL       
+	00269: CALL       
+	00270: SRP1       
+	00271: IP         
+	00272: IP         
+	00273: SRP1       
+	00274: SRP2       
+	00275: IP         
+	00276: IP         
+	00277: SRP1       
+	00278: IP         
+	00279: IP         
+	00280: CALL       
+	00281: CALL       
+	00282: IUP[y]     
+	00283: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:                      Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual               Y-Short X-Short On
+	 32:                      Y-Short X-Short Off
+	 33:                      Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual XDual         Y-Short X-Short On
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual               Y-Short X-Short On
+	 45:                      Y-Short X-Short Off
+	 46:                      Y-Short X-Short On
+	 47:                      Y-Short X-Short Off
+	 48:  YDual                       X-Short On
+	 49:  YDual                       X-Short Off
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         Off
+	 53:  YDual XDual         Y-Short X-Short Off
+	 54:  YDual XDual                 X-Short On
+	 55:  YDual XDual                 X-Short Off
+	 56:        XDual         Y-Short X-Short Off
+	 57:        XDual         Y-Short X-Short On
+	 58:  YDual XDual         Y-Short X-Short Off
+	 59:  YDual XDual         Y-Short X-Short On
+	 60:  YDual               Y-Short X-Short Off
+	 61:  YDual               Y-Short X-Short On
+	 62:  YDual               Y-Short X-Short Off
+	 63:  YDual XDual         Y-Short         On
+	 64:  YDual XDual         Y-Short         Off
+	 65:  YDual XDual         Y-Short X-Short Off
+	 66:  YDual XDual                 X-Short On
+	 67:  YDual XDual                 X-Short Off
+	 68:        XDual         Y-Short X-Short On
+	 69:        XDual         Y-Short X-Short Off
+	 70:        XDual         Y-Short X-Short On
+	 71:  YDual XDual         Y-Short X-Short On
+	 72:  YDual               Y-Short X-Short Off
+	 73:  YDual               Y-Short X-Short On
+	 74:  YDual               Y-Short X-Short Off
+	 75:  YDual XDual         Y-Short         On
+	 76:  YDual XDual         Y-Short         Off
+	 77:  YDual XDual         Y-Short X-Short Off
+	 78:  YDual XDual                 X-Short On
+	 79:  YDual XDual                 X-Short Off
+	 80:        XDual         Y-Short X-Short Off
+	 81:        XDual         Y-Short         On
+	 82:        XDual         Y-Short         Off
+	 83:                      Y-Short X-Short Off
+	 84:                      Y-Short X-Short On
+	 85:        XDual         Y-Short X-Short On
+	 86:  YDual XDual         Y-Short X-Short Off
+	 87:  YDual XDual         Y-Short X-Short On
+	 88:  YDual XDual         Y-Short X-Short Off
+	 89:  YDual XDual                 X-Short On
+	 90:  YDual XDual                 X-Short Off
+	 91:        XDual         Y-Short X-Short Off
+	 92:        XDual         Y-Short         On
+	 93:        XDual         Y-Short         Off
+	 94:                      Y-Short X-Short On
+	 95:                      Y-Short X-Short Off
+	 96:                      Y-Short X-Short On
+	 97:        XDual         Y-Short X-Short On
+	 98:  YDual XDual         Y-Short X-Short Off
+	 99:  YDual XDual         Y-Short X-Short On
+	100:  YDual XDual         Y-Short X-Short Off
+	101:  YDual XDual                 X-Short On
+	102:  YDual XDual                 X-Short Off
+	103:        XDual         Y-Short X-Short Off
+	104:                      Y-Short         On
+	105:  YDual XDual         Y-Short         Off
+	106:  YDual               Y-Short X-Short Off
+	107:  YDual                       X-Short On
+	108:  YDual                       X-Short Off
+	109:                      Y-Short X-Short Off
+	110:        XDual         Y-Short         On
+	111:        XDual         Y-Short         Off
+	112:        XDual         Y-Short X-Short Off
+	113:  YDual XDual                 X-Short On
+	114:  YDual XDual                 X-Short Off
+	115:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   868,  1174)  ->  Abs (   868,  1174)
+	  1: Rel (     0,   -29)  ->  Abs (   868,  1145)
+	  2: Rel (   -44,   -36)  ->  Abs (   824,  1109)
+	  3: Rel (   -33,     0)  ->  Abs (   791,  1109)
+	  4: Rel (   -53,     0)  ->  Abs (   738,  1109)
+	  5: Rel (   -74,    25)  ->  Abs (   664,  1134)
+	  6: Rel (   -74,    26)  ->  Abs (   590,  1160)
+	  7: Rel (   -10,   -30)  ->  Abs (   580,  1130)
+	  8: Rel (   118,   -58)  ->  Abs (   698,  1072)
+	  9: Rel (    86,   -47)  ->  Abs (   784,  1025)
+	 10: Rel (     0,   -54)  ->  Abs (   784,   971)
+	 11: Rel (     0,   -28)  ->  Abs (   784,   943)
+	 12: Rel (   -37,   -39)  ->  Abs (   747,   904)
+	 13: Rel (   -28,     0)  ->  Abs (   719,   904)
+	 14: Rel (   -52,     0)  ->  Abs (   667,   904)
+	 15: Rel (  -106,   207)  ->  Abs (   561,  1111)
+	 16: Rel (    -9,    -6)  ->  Abs (   552,  1105)
+	 17: Rel (   -12,    -3)  ->  Abs (   540,  1102)
+	 18: Rel (    22,   -68)  ->  Abs (   562,  1034)
+	 19: Rel (     9,   -34)  ->  Abs (   571,  1000)
+	 20: Rel (    17,   -60)  ->  Abs (   588,   940)
+	 21: Rel (     0,   -44)  ->  Abs (   588,   896)
+	 22: Rel (     0,   -30)  ->  Abs (   588,   866)
+	 23: Rel (   -33,   -40)  ->  Abs (   555,   826)
+	 24: Rel (   -32,     0)  ->  Abs (   523,   826)
+	 25: Rel (   -31,     0)  ->  Abs (   492,   826)
+	 26: Rel (   -33,    39)  ->  Abs (   459,   865)
+	 27: Rel (     0,    31)  ->  Abs (   459,   896)
+	 28: Rel (     0,    45)  ->  Abs (   459,   941)
+	 29: Rel (    36,   110)  ->  Abs (   495,  1051)
+	 30: Rel (    18,    51)  ->  Abs (   513,  1102)
+	 31: Rel (   -27,     9)  ->  Abs (   486,  1111)
+	 32: Rel (   -34,   -64)  ->  Abs (   452,  1047)
+	 33: Rel (   -33,   -63)  ->  Abs (   419,   984)
+	 34: Rel (   -46,   -80)  ->  Abs (   373,   904)
+	 35: Rel (   -48,     0)  ->  Abs (   325,   904)
+	 36: Rel (   -28,     0)  ->  Abs (   297,   904)
+	 37: Rel (   -36,    38)  ->  Abs (   261,   942)
+	 38: Rel (     0,    29)  ->  Abs (   261,   971)
+	 39: Rel (     0,    54)  ->  Abs (   261,  1025)
+	 40: Rel (    86,    46)  ->  Abs (   347,  1071)
+	 41: Rel (     8,     4)  ->  Abs (   355,  1075)
+	 42: Rel (   113,    55)  ->  Abs (   468,  1130)
+	 43: Rel (    -8,    16)  ->  Abs (   460,  1146)
+	 44: Rel (    -3,    14)  ->  Abs (   457,  1160)
+	 45: Rel (   -67,   -23)  ->  Abs (   390,  1137)
+	 46: Rel (   -33,   -10)  ->  Abs (   357,  1127)
+	 47: Rel (   -59,   -18)  ->  Abs (   298,  1109)
+	 48: Rel (   -43,     0)  ->  Abs (   255,  1109)
+	 49: Rel (   -33,     0)  ->  Abs (   222,  1109)
+	 50: Rel (   -43,    35)  ->  Abs (   179,  1144)
+	 51: Rel (     0,    30)  ->  Abs (   179,  1174)
+	 52: Rel (     0,    31)  ->  Abs (   179,  1205)
+	 53: Rel (    42,    36)  ->  Abs (   221,  1241)
+	 54: Rel (    34,     0)  ->  Abs (   255,  1241)
+	 55: Rel (    44,     0)  ->  Abs (   299,  1241)
+	 56: Rel (   107,   -37)  ->  Abs (   406,  1204)
+	 57: Rel (    51,   -18)  ->  Abs (   457,  1186)
+	 58: Rel (     3,    16)  ->  Abs (   460,  1202)
+	 59: Rel (     8,    18)  ->  Abs (   468,  1220)
+	 60: Rel (   -61,    28)  ->  Abs (   407,  1248)
+	 61: Rel (   -60,    29)  ->  Abs (   347,  1277)
+	 62: Rel (   -86,    45)  ->  Abs (   261,  1322)
+	 63: Rel (     0,    54)  ->  Abs (   261,  1376)
+	 64: Rel (     0,    29)  ->  Abs (   261,  1405)
+	 65: Rel (    36,    40)  ->  Abs (   297,  1445)
+	 66: Rel (    28,     0)  ->  Abs (   325,  1445)
+	 67: Rel (    47,     0)  ->  Abs (   372,  1445)
+	 68: Rel (    46,   -80)  ->  Abs (   418,  1365)
+	 69: Rel (    40,   -76)  ->  Abs (   458,  1289)
+	 70: Rel (    28,   -52)  ->  Abs (   486,  1237)
+	 71: Rel (    25,     8)  ->  Abs (   511,  1245)
+	 72: Rel (    -2,     9)  ->  Abs (   509,  1254)
+	 73: Rel (   -23,    67)  ->  Abs (   486,  1321)
+	 74: Rel (   -27,    81)  ->  Abs (   459,  1402)
+	 75: Rel (     0,    49)  ->  Abs (   459,  1451)
+	 76: Rel (     0,    30)  ->  Abs (   459,  1481)
+	 77: Rel (    33,    43)  ->  Abs (   492,  1524)
+	 78: Rel (    31,     0)  ->  Abs (   523,  1524)
+	 79: Rel (    32,     0)  ->  Abs (   555,  1524)
+	 80: Rel (    33,   -42)  ->  Abs (   588,  1482)
+	 81: Rel (     0,   -31)  ->  Abs (   588,  1451)
+	 82: Rel (     0,   -45)  ->  Abs (   588,  1406)
+	 83: Rel (   -37,  -109)  ->  Abs (   551,  1297)
+	 84: Rel (   -17,   -50)  ->  Abs (   534,  1247)
+	 85: Rel (    27,   -10)  ->  Abs (   561,  1237)
+	 86: Rel (    63,   122)  ->  Abs (   624,  1359)
+	 87: Rel (     3,     5)  ->  Abs (   627,  1364)
+	 88: Rel (    46,    81)  ->  Abs (   673,  1445)
+	 89: Rel (    46,     0)  ->  Abs (   719,  1445)
+	 90: Rel (    29,     0)  ->  Abs (   748,  1445)
+	 91: Rel (    36,   -40)  ->  Abs (   784,  1405)
+	 92: Rel (     0,   -29)  ->  Abs (   784,  1376)
+	 93: Rel (     0,   -53)  ->  Abs (   784,  1323)
+	 94: Rel (   -85,   -45)  ->  Abs (   699,  1278)
+	 95: Rel (   -73,   -36)  ->  Abs (   626,  1242)
+	 96: Rel (   -46,   -22)  ->  Abs (   580,  1220)
+	 97: Rel (    10,   -34)  ->  Abs (   590,  1186)
+	 98: Rel (    65,    24)  ->  Abs (   655,  1210)
+	 99: Rel (    33,    11)  ->  Abs (   688,  1221)
+	100: Rel (    60,    20)  ->  Abs (   748,  1241)
+	101: Rel (    43,     0)  ->  Abs (   791,  1241)
+	102: Rel (    35,     0)  ->  Abs (   826,  1241)
+	103: Rel (    42,   -35)  ->  Abs (   868,  1206)
+	104: Rel (  -305,   -32)  ->  Abs (   563,  1174)
+	105: Rel (     0,    18)  ->  Abs (   563,  1192)
+	106: Rel (   -22,    22)  ->  Abs (   541,  1214)
+	107: Rel (   -18,     0)  ->  Abs (   523,  1214)
+	108: Rel (   -17,     0)  ->  Abs (   506,  1214)
+	109: Rel (   -22,   -22)  ->  Abs (   484,  1192)
+	110: Rel (     0,   -18)  ->  Abs (   484,  1174)
+	111: Rel (     0,   -16)  ->  Abs (   484,  1158)
+	112: Rel (    22,   -24)  ->  Abs (   506,  1134)
+	113: Rel (    17,     0)  ->  Abs (   523,  1134)
+	114: Rel (    17,     0)  ->  Abs (   540,  1134)
+	115: Rel (    23,    23)  ->  Abs (   563,  1157)
+
+	Glyph 774: off = 0x00022FE8, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 775: off = 0x00023012, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 776: off = 0x0002303C, len = 184
+	  numberOfContours:	2
+	  xMin:			54
+	  yMin:			266
+	  xMax:			536
+	  yMax:			881
+
+	EndPoints
+	---------
+	  0:  17
+	  1:  31
+
+	  Length of Instructions:	80
+	00000: NPUSHB       (9):    22    32    13    17    52    12    22    29    14 
+	00011: PUSHW[1]            751 
+	00014: PUSHB[3]             13    13    29 
+	00018: PUSHW[3]            751     4   747 
+	00025: NPUSHB       (9):    22    18    12    13     8    14    14    26    18 
+	00036: PUSHW[1]            765 
+	00039: PUSHB[4]              0     0    33    26 
+	00044: PUSHW[3]            765     8   296 
+	00051: SCANCTRL   
+	00052: MDAP[rd]   
+	00053: MIRP[nrp0,md,rd,1] 
+	00054: SRP1       
+	00055: SHP[rp1,zp0] 
+	00056: MDAP[rd]   
+	00057: MIRP[nrp0,md,rd,1] 
+	00058: RTHG       
+	00059: SRP1       
+	00060: IP         
+	00061: MDAP[rd]   
+	00062: SRP2       
+	00063: IP         
+	00064: IP         
+	00065: SRP2       
+	00066: IP         
+	00067: SVTCA[y-axis] 
+	00068: RTG        
+	00069: MIAP[rd+ci] 
+	00070: MIRP[srp0,md,rd,1] 
+	00071: SHP[rp2,zp1] 
+	00072: MDAP[rd]   
+	00073: MIRP[nrp0,md,rd,0] 
+	00074: SRP2       
+	00075: IP         
+	00076: IP         
+	00077: CALL       
+	00078: IUP[y]     
+	00079: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual               Y-Short X-Short On
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short On
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   536,   588)  ->  Abs (   536,   588)
+	  1: Rel (     0,  -141)  ->  Abs (   536,   447)
+	  2: Rel (   -46,   -71)  ->  Abs (   490,   376)
+	  3: Rel (   -71,  -110)  ->  Abs (   419,   266)
+	  4: Rel (  -189,     0)  ->  Abs (   230,   266)
+	  5: Rel (   -73,     0)  ->  Abs (   157,   266)
+	  6: Rel (   -48,    29)  ->  Abs (   109,   295)
+	  7: Rel (   -55,    33)  ->  Abs (    54,   328)
+	  8: Rel (     0,    61)  ->  Abs (    54,   389)
+	  9: Rel (     0,    70)  ->  Abs (    54,   459)
+	 10: Rel (    35,    92)  ->  Abs (    89,   551)
+	 11: Rel (    32,    78)  ->  Abs (   121,   629)
+	 12: Rel (    33,    79)  ->  Abs (   154,   708)
+	 13: Rel (   -15,     4)  ->  Abs (   139,   712)
+	 14: Rel (    61,   169)  ->  Abs (   200,   881)
+	 15: Rel (   181,   -95)  ->  Abs (   381,   786)
+	 16: Rel (    35,   -25)  ->  Abs (   416,   761)
+	 17: Rel (   120,   -84)  ->  Abs (   536,   677)
+	 18: Rel (   -87,  -167)  ->  Abs (   449,   510)
+	 19: Rel (     0,    38)  ->  Abs (   449,   548)
+	 20: Rel (  -110,    63)  ->  Abs (   339,   611)
+	 21: Rel (   -47,    27)  ->  Abs (   292,   638)
+	 22: Rel (   -54,    26)  ->  Abs (   238,   664)
+	 23: Rel (   -45,   -49)  ->  Abs (   193,   615)
+	 24: Rel (    -9,   -12)  ->  Abs (   184,   603)
+	 25: Rel (   -28,   -39)  ->  Abs (   156,   564)
+	 26: Rel (     0,   -35)  ->  Abs (   156,   529)
+	 27: Rel (     0,   -51)  ->  Abs (   156,   478)
+	 28: Rel (    57,   -57)  ->  Abs (   213,   421)
+	 29: Rel (    48,     0)  ->  Abs (   261,   421)
+	 30: Rel (    56,     0)  ->  Abs (   317,   421)
+	 31: Rel (   132,    63)  ->  Abs (   449,   484)
+
+	Glyph 777: off = 0x000230F4, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 778: off = 0x0002311E, len = 322
+	  numberOfContours:	1
+	  xMin:			158
+	  yMin:			301
+	  xMax:			932
+	  yMax:			1475
+
+	EndPoints
+	---------
+	  0:  44
+
+	  Length of Instructions:	183
+	00000: PUSHW[2]             18   -32 
+	00005: PUSHB[7]             16    17    52    11    12    25     4 
+	00013: PUSHW[1]            -32 
+	00016: NPUSHB      (11):     9    17    52     4    19    16    26    25    32    29 
+	                            25 
+	00029: PUSHW[1]            -64 
+	00032: NPUSHB      (10):     9    14    52    25    25    22    16    16     7    29 
+	00044: PUSHW[1]            751 
+	00047: PUSHB[6]              0    22     1    22    22     7 
+	00054: PUSHW[1]            754 
+	00057: PUSHB[4]              0     0    39     1 
+	00062: PUSHW[3]            754    39   747 
+	00069: NPUSHB      (10):    12    11    11    19    36    26    38    32     0    19 
+	00081: PUSHW[1]            763 
+	00084: PUSHB[5]              4     4    38     0    25 
+	00090: PUSHW[1]            763 
+	00093: NPUSHB      (16):    26    26    32    38     0     1     1    39     0    64 
+	                            12    29    52     0     0    38 
+	00111: PUSHW[1]            763 
+	00114: PUSHB[4]             48    39     1    39 
+	00119: MDAP[rd]   
+	00120: DELTAP1    
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: SHP[rp1,zp0] 
+	00123: MDAP[rd]   
+	00124: CALL       
+	00125: RTHG       
+	00126: SRP2       
+	00127: IP         
+	00128: MDAP[rd]   
+	00129: SRP1       
+	00130: SRP2       
+	00131: IP         
+	00132: SHP[rp2,zp1] 
+	00133: RTG        
+	00134: MDAP[rd]   
+	00135: MIRP[nrp0,md,rd,1] 
+	00136: SRP1       
+	00137: SRP2       
+	00138: IP         
+	00139: MDAP[rd]   
+	00140: MIRP[nrp0,md,rd,1] 
+	00141: SRP2       
+	00142: IP         
+	00143: SRP1       
+	00144: SRP2       
+	00145: IP         
+	00146: SRP1       
+	00147: IP         
+	00148: MDAP[rd]   
+	00149: SHP[rp1,zp0] 
+	00150: SVTCA[y-axis] 
+	00151: MIAP[rd+ci] 
+	00152: MIAP[rd+ci] 
+	00153: SRP2       
+	00154: IP         
+	00155: MDAP[rd]   
+	00156: MIAP[rd+ci] 
+	00157: IP         
+	00158: MDAP[rd]   
+	00159: DELTAP1    
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: SRP2       
+	00162: IP         
+	00163: MDAP[rd]   
+	00164: SRP2       
+	00165: IP         
+	00166: MDAP[rd]   
+	00167: CALL       
+	00168: SRP1       
+	00169: IP         
+	00170: SRP1       
+	00171: IP         
+	00172: SRP1       
+	00173: IP         
+	00174: IP         
+	00175: CALL       
+	00176: SRP2       
+	00177: IP         
+	00178: IP         
+	00179: IUP[y]     
+	00180: IUP[x]     
+	00181: SVTCA[x-axis] 
+	00182: CALL       
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short X-Short On
+	 12:                      Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short On
+	 27:                      Y-Short X-Short Off
+	 28:                      Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual               Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short X-Short On
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short On
+	 39:  YDual                       X-Short On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual               Y-Short X-Short On
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual               Y-Short X-Short On
+	 44:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   158,  1227)  ->  Abs (   158,  1227)
+	  1: Rel (    75,   240)  ->  Abs (   233,  1467)
+	  2: Rel (    90,  -162)  ->  Abs (   323,  1305)
+	  3: Rel (    74,   -96)  ->  Abs (   397,  1209)
+	  4: Rel (    71,   -42)  ->  Abs (   468,  1167)
+	  5: Rel (    14,   163)  ->  Abs (   482,  1330)
+	  6: Rel (    95,   145)  ->  Abs (   577,  1475)
+	  7: Rel (    91,     0)  ->  Abs (   668,  1475)
+	  8: Rel (    61,     0)  ->  Abs (   729,  1475)
+	  9: Rel (    49,   -30)  ->  Abs (   778,  1445)
+	 10: Rel (    45,   -27)  ->  Abs (   823,  1418)
+	 11: Rel (    49,   -60)  ->  Abs (   872,  1358)
+	 12: Rel (    -8,   -12)  ->  Abs (   864,  1346)
+	 13: Rel (    -5,     1)  ->  Abs (   859,  1347)
+	 14: Rel (   -33,    11)  ->  Abs (   826,  1358)
+	 15: Rel (   -49,    16)  ->  Abs (   777,  1374)
+	 16: Rel (   -46,     0)  ->  Abs (   731,  1374)
+	 17: Rel (   -93,     0)  ->  Abs (   638,  1374)
+	 18: Rel (  -113,  -105)  ->  Abs (   525,  1269)
+	 19: Rel (   -29,  -116)  ->  Abs (   496,  1153)
+	 20: Rel (    51,   -16)  ->  Abs (   547,  1137)
+	 21: Rel (    73,   -15)  ->  Abs (   620,  1122)
+	 22: Rel (    31,     0)  ->  Abs (   651,  1122)
+	 23: Rel (    82,     0)  ->  Abs (   733,  1122)
+	 24: Rel (   114,    56)  ->  Abs (   847,  1178)
+	 25: Rel (    62,    75)  ->  Abs (   909,  1253)
+	 26: Rel (    23,    -8)  ->  Abs (   932,  1245)
+	 27: Rel (   -28,  -147)  ->  Abs (   904,  1098)
+	 28: Rel (  -155,  -154)  ->  Abs (   749,   944)
+	 29: Rel (  -122,     0)  ->  Abs (   627,   944)
+	 30: Rel (   -59,     0)  ->  Abs (   568,   944)
+	 31: Rel (   -69,    21)  ->  Abs (   499,   965)
+	 32: Rel (   -40,    29)  ->  Abs (   459,   994)
+	 33: Rel (    42,   -96)  ->  Abs (   501,   898)
+	 34: Rel (    12,   -65)  ->  Abs (   513,   833)
+	 35: Rel (     9,   -50)  ->  Abs (   522,   783)
+	 36: Rel (     0,  -107)  ->  Abs (   522,   676)
+	 37: Rel (     0,  -142)  ->  Abs (   522,   534)
+	 38: Rel (   -51,  -233)  ->  Abs (   471,   301)
+	 39: Rel (   -35,     0)  ->  Abs (   436,   301)
+	 40: Rel (     0,   219)  ->  Abs (   436,   520)
+	 41: Rel (   -39,   180)  ->  Abs (   397,   700)
+	 42: Rel (   -34,   159)  ->  Abs (   363,   859)
+	 43: Rel (   -68,   142)  ->  Abs (   295,  1001)
+	 44: Rel (   -54,   113)  ->  Abs (   241,  1114)
+
+	Glyph 779: off = 0x00023260, len = 262
+	  numberOfContours:	2
+	  xMin:			152
+	  yMin:			326
+	  xMax:			903
+	  yMax:			1450
+
+	EndPoints
+	---------
+	  0:  22
+	  1:  44
+
+	  Length of Instructions:	123
+	00000: NPUSHB      (25):    35    32    11    17    52    31    32    11    17    52 
+	                            23    33    22     3     0    26    12    42     9     0 
+	                            64    14    17    52     0 
+	00027: PUSHW[5]            767     1   754    26   767 
+	00038: PUSHB[3]              9     9    42 
+	00042: PUSHW[3]            767    15   747 
+	00049: NPUSHB      (16):    23    12    33    22    42    11    17    52    22    22 
+	                            29     0     1     1    19    29 
+	00067: PUSHW[1]            766 
+	00070: PUSHB[4]              5     5    46    39 
+	00075: PUSHW[3]            764    19   300 
+	00082: SCANCTRL   
+	00083: MDAP[rd]   
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: SRP1       
+	00086: SHP[rp1,zp0] 
+	00087: MDAP[rd]   
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: RTHG       
+	00090: SRP2       
+	00091: IP         
+	00092: MDAP[rd]   
+	00093: SHP[rp1,zp0] 
+	00094: SRP2       
+	00095: IP         
+	00096: MDAP[rd]   
+	00097: CALL       
+	00098: SHP[rp1,zp0] 
+	00099: IP         
+	00100: IP         
+	00101: SVTCA[y-axis] 
+	00102: RTG        
+	00103: MIAP[rd+ci] 
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: IP         
+	00106: MDAP[rd]   
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: MIAP[rd+ci] 
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: CALL       
+	00111: SRP1       
+	00112: SRP2       
+	00113: IP         
+	00114: SRP1       
+	00115: SRP2       
+	00116: SLOOP      
+	00117: IP         
+	00118: IUP[y]     
+	00119: IUP[x]     
+	00120: SVTCA[x-axis] 
+	00121: CALL       
+	00122: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:        XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:        XDual                 X-Short On
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual               Y-Short X-Short On
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual               Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short On
+	 36:                      Y-Short X-Short Off
+	 37:                      Y-Short X-Short On
+	 38:                      Y-Short X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   430,  1231)  ->  Abs (   430,  1231)
+	  1: Rel (    66,   219)  ->  Abs (   496,  1450)
+	  2: Rel (   210,  -209)  ->  Abs (   706,  1241)
+	  3: Rel (   105,  -208)  ->  Abs (   811,  1033)
+	  4: Rel (    92,  -182)  ->  Abs (   903,   851)
+	  5: Rel (     0,  -151)  ->  Abs (   903,   700)
+	  6: Rel (     0,  -120)  ->  Abs (   903,   580)
+	  7: Rel (   -65,  -105)  ->  Abs (   838,   475)
+	  8: Rel (   -74,  -119)  ->  Abs (   764,   356)
+	  9: Rel (  -107,     0)  ->  Abs (   657,   356)
+	 10: Rel (   -28,     0)  ->  Abs (   629,   356)
+	 11: Rel (   -48,    14)  ->  Abs (   581,   370)
+	 12: Rel (   -28,    23)  ->  Abs (   553,   393)
+	 13: Rel (   -44,   -37)  ->  Abs (   509,   356)
+	 14: Rel (   -89,   -30)  ->  Abs (   420,   326)
+	 15: Rel (   -47,     0)  ->  Abs (   373,   326)
+	 16: Rel (   -95,     0)  ->  Abs (   278,   326)
+	 17: Rel (   -61,    52)  ->  Abs (   217,   378)
+	 18: Rel (   -65,    55)  ->  Abs (   152,   433)
+	 19: Rel (     0,    95)  ->  Abs (   152,   528)
+	 20: Rel (     0,   113)  ->  Abs (   152,   641)
+	 21: Rel (   162,   285)  ->  Abs (   314,   926)
+	 22: Rel (   196,   228)  ->  Abs (   510,  1154)
+	 23: Rel (    80,  -556)  ->  Abs (   590,   598)
+	 24: Rel (    22,   -23)  ->  Abs (   612,   575)
+	 25: Rel (    77,   -32)  ->  Abs (   689,   543)
+	 26: Rel (    40,     0)  ->  Abs (   729,   543)
+	 27: Rel (    48,     0)  ->  Abs (   777,   543)
+	 28: Rel (    65,    51)  ->  Abs (   842,   594)
+	 29: Rel (     0,    39)  ->  Abs (   842,   633)
+	 30: Rel (     0,    74)  ->  Abs (   842,   707)
+	 31: Rel (   -87,   135)  ->  Abs (   755,   842)
+	 32: Rel (   -80,   124)  ->  Abs (   675,   966)
+	 33: Rel (  -141,   158)  ->  Abs (   534,  1124)
+	 34: Rel (   -41,   -43)  ->  Abs (   493,  1081)
+	 35: Rel (   -48,   -67)  ->  Abs (   445,  1014)
+	 36: Rel (   -64,   -89)  ->  Abs (   381,   925)
+	 37: Rel (   -39,   -82)  ->  Abs (   342,   843)
+	 38: Rel (   -49,  -103)  ->  Abs (   293,   740)
+	 39: Rel (     0,   -74)  ->  Abs (   293,   666)
+	 40: Rel (     0,   -64)  ->  Abs (   293,   602)
+	 41: Rel (    68,   -74)  ->  Abs (   361,   528)
+	 42: Rel (    61,     0)  ->  Abs (   422,   528)
+	 43: Rel (    43,     0)  ->  Abs (   465,   528)
+	 44: Rel (    71,    28)  ->  Abs (   536,   556)
+
+	Glyph 780: off = 0x00023366, len = 234
+	  numberOfContours:	1
+	  xMin:			203
+	  yMin:			301
+	  xMax:			891
+	  yMax:			1469
+
+	EndPoints
+	---------
+	  0:  35
+
+	  Length of Instructions:	121
+	00000: PUSHB[6]             21    32    14    22    52    10 
+	00007: PUSHW[1]            -32 
+	00010: PUSHB[7]             11    17    52    15    16    19    29 
+	00018: PUSHW[1]            751 
+	00021: PUSHB[7]             28    28    25    19    19    12     3 
+	00029: PUSHW[1]            751 
+	00032: PUSHB[4]             25    25     0    12 
+	00037: PUSHW[3]            754     0   747 
+	00044: NPUSHB      (21):     3    64    15    16    52     3    64    11    13    52 
+	                             3    28    35    16    15    15    29    28    28    35 
+	                            22 
+	00067: PUSHW[1]            755 
+	00070: PUSHB[3]              6     6    35 
+	00074: PUSHW[3]            763     0   290 
+	00081: SCANCTRL   
+	00082: MDAP[rd]   
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: SHP[rp1,zp0] 
+	00085: MDAP[rd]   
+	00086: MIRP[nrp0,md,rd,1] 
+	00087: SRP1       
+	00088: SHP[rp1,zp0] 
+	00089: MDAP[rd]   
+	00090: SHP[rp1,zp0] 
+	00091: IP         
+	00092: MDAP[rd]   
+	00093: SHP[rp1,zp0] 
+	00094: SRP1       
+	00095: SRP2       
+	00096: IP         
+	00097: CALL       
+	00098: CALL       
+	00099: SVTCA[y-axis] 
+	00100: MIAP[rd+ci] 
+	00101: MIAP[rd+ci] 
+	00102: SRP2       
+	00103: IP         
+	00104: MDAP[rd]   
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: SRP2       
+	00107: IP         
+	00108: MDAP[rd]   
+	00109: SRP2       
+	00110: IP         
+	00111: MDAP[rd]   
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: SRP2       
+	00114: IP         
+	00115: IP         
+	00116: IUP[y]     
+	00117: IUP[x]     
+	00118: SVTCA[x-axis] 
+	00119: CALL       
+	00120: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         Off
+	  2:        XDual                 X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short On
+	 16:                      Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:                      Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:                      Y-Short X-Short On
+	 30:                      Y-Short X-Short Off
+	 31:                      Y-Short X-Short On
+	 32:                      Y-Short X-Short Off
+	 33:                      Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   344,   301)  ->  Abs (   344,   301)
+	  1: Rel (     0,   171)  ->  Abs (   344,   472)
+	  2: Rel (    71,   302)  ->  Abs (   415,   774)
+	  3: Rel (    81,   133)  ->  Abs (   496,   907)
+	  4: Rel (  -149,     0)  ->  Abs (   347,   907)
+	  5: Rel (  -144,    63)  ->  Abs (   203,   970)
+	  6: Rel (     0,    62)  ->  Abs (   203,  1032)
+	  7: Rel (     0,    47)  ->  Abs (   203,  1079)
+	  8: Rel (    78,   145)  ->  Abs (   281,  1224)
+	  9: Rel (    75,    89)  ->  Abs (   356,  1313)
+	 10: Rel (    59,    74)  ->  Abs (   415,  1387)
+	 11: Rel (   118,    82)  ->  Abs (   533,  1469)
+	 12: Rel (    45,     0)  ->  Abs (   578,  1469)
+	 13: Rel (    53,     0)  ->  Abs (   631,  1469)
+	 14: Rel (   115,   -86)  ->  Abs (   746,  1383)
+	 15: Rel (    75,   -95)  ->  Abs (   821,  1288)
+	 16: Rel (   -10,   -10)  ->  Abs (   811,  1278)
+	 17: Rel (   -73,    25)  ->  Abs (   738,  1303)
+	 18: Rel (   -77,    16)  ->  Abs (   661,  1319)
+	 19: Rel (   -49,     0)  ->  Abs (   612,  1319)
+	 20: Rel (  -125,     0)  ->  Abs (   487,  1319)
+	 21: Rel (  -149,   -67)  ->  Abs (   338,  1252)
+	 22: Rel (     0,   -50)  ->  Abs (   338,  1202)
+	 23: Rel (     0,   -54)  ->  Abs (   338,  1148)
+	 24: Rel (   108,   -60)  ->  Abs (   446,  1088)
+	 25: Rel (    95,     0)  ->  Abs (   541,  1088)
+	 26: Rel (    86,     0)  ->  Abs (   627,  1088)
+	 27: Rel (   141,    34)  ->  Abs (   768,  1122)
+	 28: Rel (   123,    56)  ->  Abs (   891,  1178)
+	 29: Rel (   -45,  -191)  ->  Abs (   846,   987)
+	 30: Rel (   -98,   -34)  ->  Abs (   748,   953)
+	 31: Rel (   -94,   -88)  ->  Abs (   654,   865)
+	 32: Rel (  -104,   -97)  ->  Abs (   550,   768)
+	 33: Rel (   -68,  -135)  ->  Abs (   482,   633)
+	 34: Rel (   -77,  -152)  ->  Abs (   405,   481)
+	 35: Rel (   -20,  -180)  ->  Abs (   385,   301)
+
+	Glyph 781: off = 0x00023450, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 782: off = 0x0002347A, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 783: off = 0x000234A4, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 784: off = 0x000234CE, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 785: off = 0x000234F8, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 786: off = 0x00023522, len = 384
+	  numberOfContours:	3
+	  xMin:			70
+	  yMin:			1239
+	  xMax:			433
+	  yMax:			1879
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  16
+	  2:  58
+
+	  Length of Instructions:	206
+	00000: PUSHW[2]              0   757 
+	00005: PUSHB[3]              2     2     6 
+	00009: PUSHW[1]            757 
+	00012: NPUSHB       (9):     4    64     9    14    52     4     4    15     8 
+	00023: PUSHW[1]            757 
+	00026: PUSHB[3]             11    11    15 
+	00030: PUSHW[1]            757 
+	00033: NPUSHB      (27):    13    64     9    17    52    13    13    36    24    42 
+	                            21    55    56    51    46    47    35    42    47    47 
+	                            36    56    56    36    36    42    51 
+	00062: PUSHW[1]            757 
+	00065: PUSHB[3]             21    21    42 
+	00069: PUSHW[3]            757    28   756 
+	00076: PUSHB[5]              0     8     8     4    13 
+	00082: PUSHW[1]            -63 
+	00085: NPUSHB      (12):    15    16    52    13    24    47    46    39    36    35 
+	                            17    56 
+	00099: PUSHW[1]            761 
+	00102: PUSHB[5]             55    55    47    31    35 
+	00108: PUSHW[1]            761 
+	00111: PUSHB[3]             36    36    47 
+	00115: PUSHW[3]            761    46   -64 
+	00122: PUSHB[4]             21    23    52    46 
+	00127: PUSHW[1]            -64 
+	00130: PUSHB[4]             13    16    52    46 
+	00135: PUSHW[1]            292 
+	00138: SCANCTRL   
+	00139: MDAP[rd]   
+	00140: CALL       
+	00141: CALL       
+	00142: MIRP[nrp0,md,rd,1] 
+	00143: SHP[rp1,zp0] 
+	00144: MDAP[rd]   
+	00145: MIRP[srp0,md,rd,1] 
+	00146: SHP[rp2,zp1] 
+	00147: SRP1       
+	00148: SHP[rp1,zp0] 
+	00149: MDAP[rd]   
+	00150: MIRP[srp0,md,rd,1] 
+	00151: SHP[rp2,zp1] 
+	00152: SRP1       
+	00153: SRP2       
+	00154: IP         
+	00155: SRP1       
+	00156: SRP2       
+	00157: IP         
+	00158: MDAP[rd]   
+	00159: CALL       
+	00160: ALIGNRP    
+	00161: SHP[rp1,zp0] 
+	00162: MDAP[rd]   
+	00163: ALIGNRP    
+	00164: SVTCA[y-axis] 
+	00165: MIAP[rd+ci] 
+	00166: MIRP[nrp0,md,rd,1] 
+	00167: IP         
+	00168: MDAP[rd]   
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: SRP1       
+	00171: SHP[rp1,zp0] 
+	00172: MDAP[rd]   
+	00173: SHP[rp2,zp1] 
+	00174: MDAP[rd]   
+	00175: SRP2       
+	00176: IP         
+	00177: MDAP[rd]   
+	00178: SRP1       
+	00179: IP         
+	00180: SRP2       
+	00181: IP         
+	00182: SRP1       
+	00183: SRP2       
+	00184: IP         
+	00185: SRP1       
+	00186: SRP2       
+	00187: IP         
+	00188: SRP1       
+	00189: SHP[rp1,zp0] 
+	00190: MDAP[rd]   
+	00191: CALL       
+	00192: MIRP[nrp0,md,rd,1] 
+	00193: SHP[rp1,zp0] 
+	00194: MDAP[rd]   
+	00195: MIRP[nrp0,md,rd,1] 
+	00196: SRP1       
+	00197: SHP[rp1,zp0] 
+	00198: MDAP[rd]   
+	00199: CALL       
+	00200: MIRP[nrp0,md,rd,1] 
+	00201: SHP[rp1,zp0] 
+	00202: MDAP[rd]   
+	00203: MIRP[nrp0,md,rd,1] 
+	00204: IUP[y]     
+	00205: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:                      Y-Short X-Short On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short X-Short On
+	 18:        XDual         Y-Short         Off
+	 19:                      Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short X-Short On
+	 27:                      Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:  YDual XDual         Y-Short X-Short On
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short X-Short On
+	 47:  YDual XDual         Y-Short X-Short On
+	 48:        XDual         Y-Short X-Short Off
+	 49:        XDual         Y-Short X-Short On
+	 50:        XDual         Y-Short X-Short Off
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:  YDual XDual         Y-Short X-Short Off
+	 55:  YDual XDual         Y-Short         On
+	 56:  YDual XDual         Y-Short X-Short On
+	 57:        XDual         Y-Short X-Short Off
+	 58:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   412,  1879)  ->  Abs (   412,  1879)
+	  1: Rel (     0,   -46)  ->  Abs (   412,  1833)
+	  2: Rel (   -51,   -43)  ->  Abs (   361,  1790)
+	  3: Rel (   -91,   -37)  ->  Abs (   270,  1753)
+	  4: Rel (  -200,   -80)  ->  Abs (    70,  1673)
+	  5: Rel (     0,    43)  ->  Abs (    70,  1716)
+	  6: Rel (    44,    40)  ->  Abs (   114,  1756)
+	  7: Rel (    83,    35)  ->  Abs (   197,  1791)
+	  8: Rel (   215,   -62)  ->  Abs (   412,  1729)
+	  9: Rel (     0,   -48)  ->  Abs (   412,  1681)
+	 10: Rel (   -27,   -23)  ->  Abs (   385,  1658)
+	 11: Rel (   -23,   -20)  ->  Abs (   362,  1638)
+	 12: Rel (   -92,   -37)  ->  Abs (   270,  1601)
+	 13: Rel (  -200,   -80)  ->  Abs (    70,  1521)
+	 14: Rel (     0,    43)  ->  Abs (    70,  1564)
+	 15: Rel (    44,    40)  ->  Abs (   114,  1604)
+	 16: Rel (    83,    35)  ->  Abs (   197,  1639)
+	 17: Rel (   236,  -162)  ->  Abs (   433,  1477)
+	 18: Rel (     0,   -76)  ->  Abs (   433,  1401)
+	 19: Rel (   -26,   -48)  ->  Abs (   407,  1353)
+	 20: Rel (   -29,   -54)  ->  Abs (   378,  1299)
+	 21: Rel (   -51,     0)  ->  Abs (   327,  1299)
+	 22: Rel (   -17,     0)  ->  Abs (   310,  1299)
+	 23: Rel (   -33,    13)  ->  Abs (   277,  1312)
+	 24: Rel (   -17,    12)  ->  Abs (   260,  1324)
+	 25: Rel (   -20,   -34)  ->  Abs (   240,  1290)
+	 26: Rel (   -19,   -19)  ->  Abs (   221,  1271)
+	 27: Rel (   -32,   -32)  ->  Abs (   189,  1239)
+	 28: Rel (   -35,     0)  ->  Abs (   154,  1239)
+	 29: Rel (   -41,     0)  ->  Abs (   113,  1239)
+	 30: Rel (   -43,    57)  ->  Abs (    70,  1296)
+	 31: Rel (     0,    49)  ->  Abs (    70,  1345)
+	 32: Rel (     0,    26)  ->  Abs (    70,  1371)
+	 33: Rel (     8,    29)  ->  Abs (    78,  1400)
+	 34: Rel (     5,    18)  ->  Abs (    83,  1418)
+	 35: Rel (    14,    36)  ->  Abs (    97,  1454)
+	 36: Rel (    21,     8)  ->  Abs (   118,  1462)
+	 37: Rel (     0,    -8)  ->  Abs (   118,  1454)
+	 38: Rel (    -4,   -36)  ->  Abs (   114,  1418)
+	 39: Rel (     0,   -12)  ->  Abs (   114,  1406)
+	 40: Rel (     0,   -22)  ->  Abs (   114,  1384)
+	 41: Rel (    18,   -35)  ->  Abs (   132,  1349)
+	 42: Rel (    18,     0)  ->  Abs (   150,  1349)
+	 43: Rel (    43,     0)  ->  Abs (   193,  1349)
+	 44: Rel (    26,    56)  ->  Abs (   219,  1405)
+	 45: Rel (    12,    25)  ->  Abs (   231,  1430)
+	 46: Rel (    18,    75)  ->  Abs (   249,  1505)
+	 47: Rel (    21,     7)  ->  Abs (   270,  1512)
+	 48: Rel (     9,   -49)  ->  Abs (   279,  1463)
+	 49: Rel (     4,   -11)  ->  Abs (   283,  1452)
+	 50: Rel (    12,   -32)  ->  Abs (   295,  1420)
+	 51: Rel (    28,     0)  ->  Abs (   323,  1420)
+	 52: Rel (    38,     0)  ->  Abs (   361,  1420)
+	 53: Rel (    22,    50)  ->  Abs (   383,  1470)
+	 54: Rel (    18,    41)  ->  Abs (   401,  1511)
+	 55: Rel (     0,    45)  ->  Abs (   401,  1556)
+	 56: Rel (    21,     6)  ->  Abs (   422,  1562)
+	 57: Rel (     4,   -19)  ->  Abs (   426,  1543)
+	 58: Rel (     7,   -49)  ->  Abs (   433,  1494)
+
+	Glyph 787: off = 0x000236A2, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 788: off = 0x000236CC, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 789: off = 0x000236F6, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 790: off = 0x00023720, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 791: off = 0x0002374A, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 792: off = 0x00023774, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 793: off = 0x0002379E, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 794: off = 0x000237C8, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 795: off = 0x000237F2, len = 52
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1367
+	  yMax:			467
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	24
+	00000: PUSHW[6]              2   751     1   747     0   752 
+	00013: PUSHB[2]              5     1 
+	00016: MDAP[rd]   
+	00017: SRP0       
+	00018: MIRP[nrp0,nmd,rd,0] 
+	00019: SVTCA[y-axis] 
+	00020: MIAP[rd+ci] 
+	00021: MIRP[nrp0,md,rd,1] 
+	00022: IUP[y]     
+	00023: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1367,   293)  ->  Abs (  1367,   293)
+	  1: Rel ( -1367,     0)  ->  Abs (     0,   293)
+	  2: Rel (     0,   174)  ->  Abs (     0,   467)
+	  3: Rel (  1367,     0)  ->  Abs (  1367,   467)
+
+	Glyph 796: off = 0x00023826, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 797: off = 0x00023850, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 798: off = 0x0002387A, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 799: off = 0x000238A4, len = 378
+	  numberOfContours:	4
+	  xMin:			128
+	  yMin:			-359
+	  xMax:			1531
+	  yMax:			960
+
+	EndPoints
+	---------
+	  0:  28
+	  1:  32
+	  2:  36
+	  3:  40
+
+	  Length of Instructions:	238
+	00000: PUSHB[6]             36    16    18    21    52    30 
+	00007: PUSHW[1]            -16 
+	00010: PUSHB[4]             18    21    52    40 
+	00015: PUSHW[1]            -16 
+	00018: PUSHB[4]             18    21    52    16 
+	00023: PUSHW[1]            -64 
+	00026: NPUSHB      (11):    14    17    52    22    52    12    17    52    33    35 
+	                            34 
+	00039: PUSHW[1]            770 
+	00042: PUSHB[6]             36    36    30    37    39    38 
+	00049: PUSHW[1]            770 
+	00052: PUSHB[5]             40    40    29    31    30 
+	00058: PUSHW[1]            770 
+	00061: NPUSHB      (12):   111    32     1   223    32     1    32    32     1    10 
+	                            18     9 
+	00075: NPUSHW       (9):   772    23   751    24   772    18   751     1   747 
+	00095: PUSHB[3]             34    36    33 
+	00099: PUSHW[1]            769 
+	00102: PUSHB[6]             35    35    37    30    32    29 
+	00109: PUSHW[1]            769 
+	00112: PUSHB[5]             31    31    38    40    39 
+	00118: PUSHW[1]            769 
+	00121: PUSHB[8]             37    37     5    24    24    23    23    19 
+	00130: NPUSHW      (10):   771    64     0   752    42    10   763    32     9   -64 
+	00152: PUSHB[6]              9    11    52     9     9    14 
+	00159: PUSHW[3]            771     5   298 
+	00166: SCANCTRL   
+	00167: MDAP[rd]   
+	00168: MIRP[srp0,md,rd,1] 
+	00169: SHP[rp2,zp1] 
+	00170: RTHG       
+	00171: MDAP[rd]   
+	00172: CALL       
+	00173: SMD        
+	00174: MIRP[nrp0,md,rd,1] 
+	00175: RTG        
+	00176: SRP0       
+	00177: MIRP[srp0,nmd,rd,0] 
+	00178: SMD        
+	00179: MIRP[srp0,md,rd,1] 
+	00180: SHP[rp2,zp1] 
+	00181: MDAP[rd]   
+	00182: RTHG       
+	00183: IP         
+	00184: MDAP[rd]   
+	00185: RTG        
+	00186: SRP1       
+	00187: IP         
+	00188: MDAP[rd]   
+	00189: MIRP[srp0,md,rd,1] 
+	00190: IP         
+	00191: IP         
+	00192: SHP[rp1,zp0] 
+	00193: MDAP[rd]   
+	00194: MIRP[nrp0,md,rd,1] 
+	00195: IP         
+	00196: IP         
+	00197: SRP1       
+	00198: SHP[rp1,zp0] 
+	00199: MDAP[rd]   
+	00200: MIRP[nrp0,md,rd,1] 
+	00201: IP         
+	00202: IP         
+	00203: SVTCA[y-axis] 
+	00204: MIAP[rd+ci] 
+	00205: MIRP[nrp0,md,rd,1] 
+	00206: MIAP[rd+ci] 
+	00207: MIRP[nrp0,md,rd,1] 
+	00208: MIAP[rd+ci] 
+	00209: SRP2       
+	00210: IP         
+	00211: SRP1       
+	00212: SHP[rp1,zp0] 
+	00213: MDAP[rd]   
+	00214: DELTAP1    
+	00215: DELTAP2    
+	00216: MIRP[srp0,md,rd,1] 
+	00217: IP         
+	00218: IP         
+	00219: SHP[rp1,zp0] 
+	00220: MDAP[rd]   
+	00221: MIRP[srp0,md,rd,1] 
+	00222: IP         
+	00223: IP         
+	00224: SRP1       
+	00225: SHP[rp1,zp0] 
+	00226: MDAP[rd]   
+	00227: MIRP[srp0,md,rd,1] 
+	00228: IP         
+	00229: IP         
+	00230: IUP[y]     
+	00231: IUP[x]     
+	00232: SVTCA[x-axis] 
+	00233: CALL       
+	00234: CALL       
+	00235: CALL       
+	00236: CALL       
+	00237: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual                               On
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:                                      On
+	 30:                      Y-Short X-Short On
+	 31:  YDual               Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:        XDual                 X-Short On
+	 34:                      Y-Short X-Short On
+	 35:  YDual               Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual               Y-Short X-Short On
+	 38:                      Y-Short X-Short On
+	 39:  YDual               Y-Short X-Short On
+	 40:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1531,   293)  ->  Abs (  1531,   293)
+	  1: Rel (  -954,     0)  ->  Abs (   577,   293)
+	  2: Rel (  -192,     0)  ->  Abs (   385,   293)
+	  3: Rel (  -114,    67)  ->  Abs (   271,   360)
+	  4: Rel (  -143,    84)  ->  Abs (   128,   444)
+	  5: Rel (     0,   179)  ->  Abs (   128,   623)
+	  6: Rel (     0,    93)  ->  Abs (   128,   716)
+	  7: Rel (    42,    97)  ->  Abs (   170,   813)
+	  8: Rel (    15,    35)  ->  Abs (   185,   848)
+	  9: Rel (    57,    98)  ->  Abs (   242,   946)
+	 10: Rel (    30,   -19)  ->  Abs (   272,   927)
+	 11: Rel (   -22,   -46)  ->  Abs (   250,   881)
+	 12: Rel (   -21,   -46)  ->  Abs (   229,   835)
+	 13: Rel (   -29,   -71)  ->  Abs (   200,   764)
+	 14: Rel (     0,   -56)  ->  Abs (   200,   708)
+	 15: Rel (     0,  -118)  ->  Abs (   200,   590)
+	 16: Rel (   124,   -65)  ->  Abs (   324,   525)
+	 17: Rel (   111,   -58)  ->  Abs (   435,   467)
+	 18: Rel (   170,     0)  ->  Abs (   605,   467)
+	 19: Rel (   847,     0)  ->  Abs (  1452,   467)
+	 20: Rel (     0,    27)  ->  Abs (  1452,   494)
+	 21: Rel (     0,   112)  ->  Abs (  1452,   606)
+	 22: Rel (   -54,   141)  ->  Abs (  1398,   747)
+	 23: Rel (   -65,    50)  ->  Abs (  1333,   797)
+	 24: Rel (    77,   163)  ->  Abs (  1410,   960)
+	 25: Rel (    44,   -55)  ->  Abs (  1454,   905)
+	 26: Rel (     9,   -14)  ->  Abs (  1463,   891)
+	 27: Rel (    68,  -112)  ->  Abs (  1531,   779)
+	 28: Rel (     0,  -214)  ->  Abs (  1531,   565)
+	 29: Rel (  -443,  -509)  ->  Abs (  1088,    56)
+	 30: Rel (   -74,  -145)  ->  Abs (  1014,   -89)
+	 31: Rel (  -164,    84)  ->  Abs (   850,    -5)
+	 32: Rel (    76,   145)  ->  Abs (   926,   140)
+	 33: Rel (   128,  -353)  ->  Abs (  1054,  -213)
+	 34: Rel (   -74,  -146)  ->  Abs (   980,  -359)
+	 35: Rel (  -163,    86)  ->  Abs (   817,  -273)
+	 36: Rel (    77,   146)  ->  Abs (   894,  -127)
+	 37: Rel (   -34,    90)  ->  Abs (   860,   -37)
+	 38: Rel (   -75,  -143)  ->  Abs (   785,  -180)
+	 39: Rel (  -165,    85)  ->  Abs (   620,   -95)
+	 40: Rel (    78,   144)  ->  Abs (   698,    49)
+
+	Glyph 800: off = 0x00023A1E, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-359
+	  xMax:			1531
+	  yMax:			960
+
+	     0: Flags:		0x0016
+		Glyf Index:	799
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 801: off = 0x00023A2E, len = 290
+	  numberOfContours:	4
+	  xMin:			-3
+	  yMin:			-359
+	  xMax:			571
+	  yMax:			934
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  11
+	  3:  24
+
+	  Length of Instructions:	194
+	00000: PUSHB[6]              7    16    18    21    52     1 
+	00007: PUSHW[1]            -16 
+	00010: PUSHB[4]             18    21    52    11 
+	00015: PUSHW[1]            -16 
+	00018: NPUSHB      (11):    18    21    52    18    52    12    17    52     4     6 
+	                             5 
+	00031: PUSHW[1]            770 
+	00034: PUSHB[6]              7     7     1     8    10     9 
+	00041: PUSHW[1]            770 
+	00044: PUSHB[5]             11    11     0     2     1 
+	00050: PUSHW[1]            770 
+	00053: NPUSHB      (10):   111     3     1   223     3     1     3     3    13    19 
+	00065: PUSHW[7]            751    20   772    14   751    13   747 
+	00080: PUSHB[3]              5     7     4 
+	00084: PUSHW[1]            769 
+	00087: PUSHB[6]              6     6     8     1     3     0 
+	00094: PUSHW[1]            769 
+	00097: PUSHB[5]              2     2     9    11    10 
+	00103: PUSHW[1]            769 
+	00106: NPUSHB      (13):     8    64     9    10    52     8     8    13    20    20 
+	                            19    19    15 
+	00121: PUSHW[6]            771    12   752    26    13   298 
+	00134: SCANCTRL   
+	00135: MDAP[rd]   
+	00136: SRP0       
+	00137: MIRP[srp0,nmd,rd,1] 
+	00138: MIRP[srp0,md,rd,1] 
+	00139: SHP[rp2,zp1] 
+	00140: MDAP[rd]   
+	00141: RTHG       
+	00142: IP         
+	00143: MDAP[rd]   
+	00144: RTG        
+	00145: SRP1       
+	00146: IP         
+	00147: MDAP[rd]   
+	00148: CALL       
+	00149: MIRP[srp0,md,rd,1] 
+	00150: IP         
+	00151: IP         
+	00152: SHP[rp1,zp0] 
+	00153: MDAP[rd]   
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: IP         
+	00156: IP         
+	00157: SRP1       
+	00158: SHP[rp1,zp0] 
+	00159: MDAP[rd]   
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: IP         
+	00162: IP         
+	00163: SVTCA[y-axis] 
+	00164: MIAP[rd+ci] 
+	00165: MIRP[nrp0,md,rd,1] 
+	00166: MIAP[rd+ci] 
+	00167: MIRP[nrp0,md,rd,1] 
+	00168: SRP1       
+	00169: SHP[rp1,zp0] 
+	00170: MDAP[rd]   
+	00171: DELTAP1    
+	00172: DELTAP2    
+	00173: MIRP[srp0,md,rd,1] 
+	00174: IP         
+	00175: IP         
+	00176: SHP[rp1,zp0] 
+	00177: MDAP[rd]   
+	00178: MIRP[srp0,md,rd,1] 
+	00179: IP         
+	00180: IP         
+	00181: SRP1       
+	00182: SHP[rp1,zp0] 
+	00183: MDAP[rd]   
+	00184: MIRP[srp0,md,rd,1] 
+	00185: IP         
+	00186: IP         
+	00187: IUP[y]     
+	00188: IUP[x]     
+	00189: SVTCA[x-axis] 
+	00190: CALL       
+	00191: CALL       
+	00192: CALL       
+	00193: CALL       
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:        XDual                 X-Short On
+	  5:                      Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short On
+	  9:                      Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual               Y-Short         On
+	 13:  YDual                               On
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual                               On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual               Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   465,    56)  ->  Abs (   465,    56)
+	  1: Rel (   -74,  -145)  ->  Abs (   391,   -89)
+	  2: Rel (  -164,    84)  ->  Abs (   227,    -5)
+	  3: Rel (    76,   145)  ->  Abs (   303,   140)
+	  4: Rel (   128,  -353)  ->  Abs (   431,  -213)
+	  5: Rel (   -74,  -146)  ->  Abs (   357,  -359)
+	  6: Rel (  -163,    86)  ->  Abs (   194,  -273)
+	  7: Rel (    77,   146)  ->  Abs (   271,  -127)
+	  8: Rel (   -34,    90)  ->  Abs (   237,   -37)
+	  9: Rel (   -75,  -143)  ->  Abs (   162,  -180)
+	 10: Rel (  -165,    85)  ->  Abs (    -3,   -95)
+	 11: Rel (    78,   144)  ->  Abs (    75,    49)
+	 12: Rel (   496,   244)  ->  Abs (   571,   293)
+	 13: Rel (  -570,     0)  ->  Abs (     1,   293)
+	 14: Rel (     0,   174)  ->  Abs (     1,   467)
+	 15: Rel (   497,     0)  ->  Abs (   498,   467)
+	 16: Rel (     0,   118)  ->  Abs (   498,   585)
+	 17: Rel (   -28,    62)  ->  Abs (   470,   647)
+	 18: Rel (   -19,    43)  ->  Abs (   451,   690)
+	 19: Rel (   -75,    81)  ->  Abs (   376,   771)
+	 20: Rel (    78,   163)  ->  Abs (   454,   934)
+	 21: Rel (    72,   -91)  ->  Abs (   526,   843)
+	 22: Rel (    18,   -51)  ->  Abs (   544,   792)
+	 23: Rel (    27,   -77)  ->  Abs (   571,   715)
+	 24: Rel (     0,  -178)  ->  Abs (   571,   537)
+
+	Glyph 802: off = 0x00023B50, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			-359
+	  xMax:			571
+	  yMax:			934
+
+	     0: Flags:		0x0016
+		Glyf Index:	801
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 803: off = 0x00023B60, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 804: off = 0x00023B8A, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 805: off = 0x00023BB4, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 806: off = 0x00023BDE, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 807: off = 0x00023C08, len = 426
+	  numberOfContours:	4
+	  xMin:			54
+	  yMin:			-434
+	  xMax:			1056
+	  yMax:			885
+
+	EndPoints
+	---------
+	  0:  44
+	  1:  48
+	  2:  52
+	  3:  56
+
+	  Length of Instructions:	246
+	00000: PUSHB[6]             52    16    18    21    52    46 
+	00007: PUSHW[1]            -16 
+	00010: PUSHB[4]             18    21    52    56 
+	00015: PUSHW[1]            -16 
+	00018: NPUSHB      (17):    18    21    52    41    32    10    11    52    24    42 
+	                            10    11    52   121    42     1    27 
+	00037: PUSHW[1]            -74 
+	00040: PUSHB[6]              9    17    52    49    51    50 
+	00047: PUSHW[1]            770 
+	00050: PUSHB[6]             52    52    46    53    55    54 
+	00057: PUSHW[1]            770 
+	00060: PUSHB[5]             56    56    45    47    46 
+	00066: PUSHW[3]            770    48   -64 
+	00073: NPUSHB      (10):    11    17    52    48    48    19     7     3    31    30 
+	00085: PUSHW[3]            751    32   774 
+	00092: PUSHB[5]             15    18     0    19    11 
+	00098: PUSHW[1]            751 
+	00101: PUSHB[3]              3     3    18 
+	00105: PUSHW[3]            751    19   775 
+	00112: PUSHB[3]             50    52    49 
+	00116: PUSHW[1]            769 
+	00119: PUSHB[6]             51    51    53    46    48    45 
+	00126: PUSHW[1]            769 
+	00129: PUSHB[5]             47    47    54    56    55 
+	00135: PUSHW[1]            769 
+	00138: NPUSHB      (23):    53    64    10    11    52    53    53   143     0     1 
+	                             0    18    30    32    31    31    19    18    18    58 
+	                             7     7    25 
+	00163: PUSHW[3]            771    39   298 
+	00170: SCANCTRL   
+	00171: MDAP[rd]   
+	00172: MIRP[nrp0,md,rd,1] 
+	00173: SHP[rp1,zp0] 
+	00174: MDAP[rd]   
+	00175: SRP1       
+	00176: SHP[rp1,zp0] 
+	00177: MDAP[rd]   
+	00178: SHP[rp1,zp0] 
+	00179: SHP[rp1,zp0] 
+	00180: MDAP[rd]   
+	00181: IP         
+	00182: IP         
+	00183: SRP1       
+	00184: IP         
+	00185: DELTAP1    
+	00186: IP         
+	00187: MDAP[rd]   
+	00188: CALL       
+	00189: MIRP[srp0,md,rd,1] 
+	00190: IP         
+	00191: IP         
+	00192: SHP[rp1,zp0] 
+	00193: MDAP[rd]   
+	00194: MIRP[nrp0,md,rd,1] 
+	00195: IP         
+	00196: IP         
+	00197: SRP1       
+	00198: SHP[rp1,zp0] 
+	00199: MDAP[rd]   
+	00200: MIRP[nrp0,md,rd,1] 
+	00201: IP         
+	00202: IP         
+	00203: SVTCA[y-axis] 
+	00204: MIAP[rd+ci] 
+	00205: MIRP[nrp0,md,rd,1] 
+	00206: IP         
+	00207: MDAP[rd]   
+	00208: MIRP[nrp0,md,rd,1] 
+	00209: SRP2       
+	00210: IP         
+	00211: SRP1       
+	00212: IP         
+	00213: MIAP[rd+ci] 
+	00214: MIRP[nrp0,md,rd,1] 
+	00215: IP         
+	00216: SRP1       
+	00217: IP         
+	00218: SRP1       
+	00219: IP         
+	00220: MDAP[rd]   
+	00221: CALL       
+	00222: MIRP[srp0,md,rd,1] 
+	00223: IP         
+	00224: IP         
+	00225: SHP[rp1,zp0] 
+	00226: MDAP[rd]   
+	00227: MIRP[srp0,md,rd,1] 
+	00228: IP         
+	00229: IP         
+	00230: SRP1       
+	00231: SHP[rp1,zp0] 
+	00232: MDAP[rd]   
+	00233: MIRP[srp0,md,rd,1] 
+	00234: IP         
+	00235: IP         
+	00236: IUP[y]     
+	00237: IUP[x]     
+	00238: SVTCA[x-axis] 
+	00239: CALL       
+	00240: DELTAP1    
+	00241: CALL       
+	00242: CALL       
+	00243: CALL       
+	00244: CALL       
+	00245: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:                      Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short X-Short On
+	 24:                      Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:        XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual                               On
+	 30:  YDual XDual                 X-Short On
+	 31:        XDual         Y-Short X-Short On
+	 32:                      Y-Short X-Short On
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual               Y-Short X-Short On
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual               Y-Short X-Short On
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:                      Y-Short         On
+	 46:                      Y-Short X-Short On
+	 47:  YDual               Y-Short X-Short On
+	 48:  YDual XDual         Y-Short X-Short On
+	 49:        XDual                 X-Short On
+	 50:                      Y-Short X-Short On
+	 51:  YDual               Y-Short X-Short On
+	 52:  YDual XDual         Y-Short X-Short On
+	 53:  YDual               Y-Short X-Short On
+	 54:                      Y-Short X-Short On
+	 55:  YDual               Y-Short X-Short On
+	 56:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   484,   696)  ->  Abs (   484,   696)
+	  1: Rel (   -20,     0)  ->  Abs (   464,   696)
+	  2: Rel (   -76,     6)  ->  Abs (   388,   702)
+	  3: Rel (   -19,     0)  ->  Abs (   369,   702)
+	  4: Rel (   -64,     0)  ->  Abs (   305,   702)
+	  5: Rel (   -80,   -12)  ->  Abs (   225,   690)
+	  6: Rel (   -52,    -8)  ->  Abs (   173,   682)
+	  7: Rel (   -90,   -18)  ->  Abs (    83,   664)
+	  8: Rel (    40,   113)  ->  Abs (   123,   777)
+	  9: Rel (    35,    34)  ->  Abs (   158,   811)
+	 10: Rel (    75,    74)  ->  Abs (   233,   885)
+	 11: Rel (   177,     0)  ->  Abs (   410,   885)
+	 12: Rel (    66,     0)  ->  Abs (   476,   885)
+	 13: Rel (   204,   -28)  ->  Abs (   680,   857)
+	 14: Rel (    95,   -13)  ->  Abs (   775,   844)
+	 15: Rel (    69,     0)  ->  Abs (   844,   844)
+	 16: Rel (    29,     0)  ->  Abs (   873,   844)
+	 17: Rel (   112,    14)  ->  Abs (   985,   858)
+	 18: Rel (    28,     0)  ->  Abs (  1013,   858)
+	 19: Rel (   -37,  -169)  ->  Abs (   976,   689)
+	 20: Rel (  -211,   -36)  ->  Abs (   765,   653)
+	 21: Rel (  -148,   -46)  ->  Abs (   617,   607)
+	 22: Rel (  -220,   -68)  ->  Abs (   397,   539)
+	 23: Rel (  -123,   -98)  ->  Abs (   274,   441)
+	 24: Rel (  -153,  -122)  ->  Abs (   121,   319)
+	 25: Rel (     0,  -166)  ->  Abs (   121,   153)
+	 26: Rel (     0,  -215)  ->  Abs (   121,   -62)
+	 27: Rel (   224,  -108)  ->  Abs (   345,  -170)
+	 28: Rel (   195,   -94)  ->  Abs (   540,  -264)
+	 29: Rel (   326,     0)  ->  Abs (   866,  -264)
+	 30: Rel (   184,     0)  ->  Abs (  1050,  -264)
+	 31: Rel (     6,   -11)  ->  Abs (  1056,  -275)
+	 32: Rel (  -226,  -159)  ->  Abs (   830,  -434)
+	 33: Rel (   -58,     0)  ->  Abs (   772,  -434)
+	 34: Rel (  -216,     0)  ->  Abs (   556,  -434)
+	 35: Rel (  -143,    40)  ->  Abs (   413,  -394)
+	 36: Rel (  -171,    48)  ->  Abs (   242,  -346)
+	 37: Rel (   -88,   106)  ->  Abs (   154,  -240)
+	 38: Rel (  -100,   121)  ->  Abs (    54,  -119)
+	 39: Rel (     0,   199)  ->  Abs (    54,    80)
+	 40: Rel (     0,   168)  ->  Abs (    54,   248)
+	 41: Rel (    79,   134)  ->  Abs (   133,   382)
+	 42: Rel (    60,   102)  ->  Abs (   193,   484)
+	 43: Rel (   115,    91)  ->  Abs (   308,   575)
+	 44: Rel (    35,    28)  ->  Abs (   343,   603)
+	 45: Rel (   513,  -243)  ->  Abs (   856,   360)
+	 46: Rel (   -74,  -145)  ->  Abs (   782,   215)
+	 47: Rel (  -164,    84)  ->  Abs (   618,   299)
+	 48: Rel (    76,   145)  ->  Abs (   694,   444)
+	 49: Rel (   128,  -353)  ->  Abs (   822,    91)
+	 50: Rel (   -74,  -146)  ->  Abs (   748,   -55)
+	 51: Rel (  -163,    86)  ->  Abs (   585,    31)
+	 52: Rel (    77,   146)  ->  Abs (   662,   177)
+	 53: Rel (   -34,    90)  ->  Abs (   628,   267)
+	 54: Rel (   -75,  -143)  ->  Abs (   553,   124)
+	 55: Rel (  -165,    85)  ->  Abs (   388,   209)
+	 56: Rel (    78,   144)  ->  Abs (   466,   353)
+
+	Glyph 808: off = 0x00023DB2, len = 540
+	  numberOfContours:	4
+	  xMin:			54
+	  yMin:			-434
+	  xMax:			1147
+	  yMax:			873
+
+	EndPoints
+	---------
+	  0:  62
+	  1:  66
+	  2:  70
+	  3:  74
+
+	  Length of Instructions:	310
+	00000: PUSHB[6]             70    16    18    21    52    64 
+	00007: PUSHW[1]            -16 
+	00010: PUSHB[4]             18    21    52    74 
+	00015: PUSHW[1]            -16 
+	00018: NPUSHB      (17):    18    21    52    30    32    10    11    52    13    42 
+	                            10    11    52   121    31     1    16 
+	00037: PUSHW[1]            -94 
+	00040: PUSHB[6]              9    17    52    71    73    72 
+	00047: PUSHW[1]            770 
+	00050: PUSHB[5]             74    74    65    63    66 
+	00056: PUSHW[1]            770 
+	00059: PUSHB[5]             64    64    67    69    70 
+	00065: PUSHW[1]            770 
+	00068: NPUSHB      (15):   208    68     1    68    68     1    19    56     8    52 
+	                            61    41    37    20    19 
+	00085: PUSHW[3]            751    21   774 
+	00092: PUSHB[5]             48    51    34    52    45 
+	00098: PUSHW[1]            751 
+	00101: PUSHB[3]             37    37    51 
+	00105: PUSHW[7]            751    52   775    61   751     1   747 
+	00120: PUSHB[3]             68    70    67 
+	00124: PUSHW[1]            769 
+	00127: PUSHB[6]             69    69    65    72    74    73 
+	00134: PUSHW[1]            769 
+	00137: PUSHB[5]             71    71    64    66    65 
+	00143: PUSHW[1]            769 
+	00146: NPUSHB      (18):    63    64    18    25    52    95    63   127    63     2 
+	                            63    63     4    14    56    51     8     4 
+	00166: PUSHW[1]            771 
+	00169: NPUSHB      (16):    57    57   143    34     1    34    51    19    21    14 
+	                            20    20    52    51    51     0 
+	00187: PUSHW[1]            752 
+	00190: PUSHB[4]             76    41    41    14 
+	00195: PUSHW[3]            771    28   298 
+	00202: SCANCTRL   
+	00203: MDAP[rd]   
+	00204: MIRP[nrp0,md,rd,1] 
+	00205: SHP[rp1,zp0] 
+	00206: MDAP[rd]   
+	00207: SRP0       
+	00208: MIRP[nrp0,nmd,rd,0] 
+	00209: SHP[rp1,zp0] 
+	00210: MDAP[rd]   
+	00211: SHP[rp1,zp0] 
+	00212: SHP[rp1,zp0] 
+	00213: MDAP[rd]   
+	00214: SRP2       
+	00215: IP         
+	00216: IP         
+	00217: SRP1       
+	00218: IP         
+	00219: DELTAP1    
+	00220: IP         
+	00221: MDAP[rd]   
+	00222: MIRP[srp0,md,rd,1] 
+	00223: IP         
+	00224: SRP2       
+	00225: IP         
+	00226: SRP1       
+	00227: SRP2       
+	00228: IP         
+	00229: MDAP[rd]   
+	00230: DELTAP1    
+	00231: CALL       
+	00232: MIRP[srp0,md,rd,1] 
+	00233: IP         
+	00234: IP         
+	00235: SHP[rp2,zp1] 
+	00236: MDAP[rd]   
+	00237: MIRP[srp0,md,rd,1] 
+	00238: IP         
+	00239: IP         
+	00240: SRP1       
+	00241: SHP[rp1,zp0] 
+	00242: MDAP[rd]   
+	00243: MIRP[nrp0,md,rd,1] 
+	00244: IP         
+	00245: IP         
+	00246: SVTCA[y-axis] 
+	00247: MIAP[rd+ci] 
+	00248: MIRP[nrp0,md,rd,1] 
+	00249: MIAP[rd+ci] 
+	00250: MIRP[nrp0,md,rd,1] 
+	00251: IP         
+	00252: MDAP[rd]   
+	00253: MIRP[nrp0,md,rd,1] 
+	00254: SRP2       
+	00255: IP         
+	00256: SRP1       
+	00257: IP         
+	00258: MIAP[rd+ci] 
+	00259: MIRP[nrp0,md,rd,1] 
+	00260: IP         
+	00261: SRP1       
+	00262: IP         
+	00263: SRP1       
+	00264: SRP2       
+	00265: IP         
+	00266: IP         
+	00267: SRP1       
+	00268: SRP2       
+	00269: IP         
+	00270: MDAP[rd]   
+	00271: DELTAP1    
+	00272: PUSHB[2]              6     2 
+	00275: RS         
+	00276: EQ         
+	00277: IF         
+	00278: PUSHB[5]             15    68    31    68     2 
+	00284: SVTCA[y-axis] 
+	00285: DELTAP1    
+	00286: EIF        
+	00287: MIRP[nrp0,md,rd,1] 
+	00288: IP         
+	00289: IP         
+	00290: SHP[rp2,zp1] 
+	00291: MDAP[rd]   
+	00292: MIRP[srp0,md,rd,1] 
+	00293: IP         
+	00294: IP         
+	00295: SHP[rp2,zp1] 
+	00296: MDAP[rd]   
+	00297: MIRP[srp0,md,rd,1] 
+	00298: IP         
+	00299: IP         
+	00300: IUP[y]     
+	00301: IUP[x]     
+	00302: SVTCA[x-axis] 
+	00303: CALL       
+	00304: DELTAP1    
+	00305: CALL       
+	00306: CALL       
+	00307: CALL       
+	00308: CALL       
+	00309: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual                               On
+	 19:  YDual XDual                 X-Short On
+	 20:        XDual         Y-Short X-Short On
+	 21:                      Y-Short X-Short On
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual               Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:                      Y-Short X-Short On
+	 40:                      Y-Short X-Short Off
+	 41:                      Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:        XDual         Y-Short X-Short Off
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual                 X-Short Off
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:                      Y-Short X-Short On
+	 53:                      Y-Short X-Short Off
+	 54:                      Y-Short X-Short On
+	 55:                      Y-Short X-Short Off
+	 56:                      Y-Short X-Short On
+	 57:                      Y-Short X-Short On
+	 58:        XDual         Y-Short         Off
+	 59:        XDual         Y-Short X-Short On
+	 60:        XDual         Y-Short X-Short Off
+	 61:  YDual XDual                 X-Short On
+	 62:  YDual XDual                 X-Short On
+	 63:                      Y-Short         On
+	 64:                      Y-Short X-Short On
+	 65:  YDual               Y-Short X-Short On
+	 66:  YDual XDual         Y-Short X-Short On
+	 67:        XDual                 X-Short On
+	 68:                      Y-Short X-Short On
+	 69:  YDual               Y-Short X-Short On
+	 70:  YDual XDual         Y-Short X-Short On
+	 71:  YDual               Y-Short X-Short On
+	 72:                      Y-Short X-Short On
+	 73:  YDual               Y-Short X-Short On
+	 74:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1147,   293)  ->  Abs (  1147,   293)
+	  1: Rel (  -207,     0)  ->  Abs (   940,   293)
+	  2: Rel (  -121,     0)  ->  Abs (   819,   293)
+	  3: Rel (  -102,    90)  ->  Abs (   717,   383)
+	  4: Rel (     0,   104)  ->  Abs (   717,   487)
+	  5: Rel (     0,    39)  ->  Abs (   717,   526)
+	  6: Rel (    10,    58)  ->  Abs (   727,   584)
+	  7: Rel (     4,    22)  ->  Abs (   731,   606)
+	  8: Rel (     7,    36)  ->  Abs (   738,   642)
+	  9: Rel (  -171,   -52)  ->  Abs (   567,   590)
+	 10: Rel (   -87,   -37)  ->  Abs (   480,   553)
+	 11: Rel (  -160,   -68)  ->  Abs (   320,   485)
+	 12: Rel (   -88,   -86)  ->  Abs (   232,   399)
+	 13: Rel (  -111,  -108)  ->  Abs (   121,   291)
+	 14: Rel (     0,  -138)  ->  Abs (   121,   153)
+	 15: Rel (     0,  -215)  ->  Abs (   121,   -62)
+	 16: Rel (   224,  -108)  ->  Abs (   345,  -170)
+	 17: Rel (   195,   -94)  ->  Abs (   540,  -264)
+	 18: Rel (   326,     0)  ->  Abs (   866,  -264)
+	 19: Rel (   184,     0)  ->  Abs (  1050,  -264)
+	 20: Rel (     6,   -11)  ->  Abs (  1056,  -275)
+	 21: Rel (  -226,  -159)  ->  Abs (   830,  -434)
+	 22: Rel (   -58,     0)  ->  Abs (   772,  -434)
+	 23: Rel (  -216,     0)  ->  Abs (   556,  -434)
+	 24: Rel (  -143,    40)  ->  Abs (   413,  -394)
+	 25: Rel (  -171,    48)  ->  Abs (   242,  -346)
+	 26: Rel (   -88,   106)  ->  Abs (   154,  -240)
+	 27: Rel (  -100,   121)  ->  Abs (    54,  -119)
+	 28: Rel (     0,   199)  ->  Abs (    54,    80)
+	 29: Rel (     0,   171)  ->  Abs (    54,   251)
+	 30: Rel (    85,   128)  ->  Abs (   139,   379)
+	 31: Rel (    66,   100)  ->  Abs (   205,   479)
+	 32: Rel (   127,    83)  ->  Abs (   332,   562)
+	 33: Rel (    37,    25)  ->  Abs (   369,   587)
+	 34: Rel (   169,    90)  ->  Abs (   538,   677)
+	 35: Rel (   -40,     5)  ->  Abs (   498,   682)
+	 36: Rel (   -89,     7)  ->  Abs (   409,   689)
+	 37: Rel (   -36,     0)  ->  Abs (   373,   689)
+	 38: Rel (  -101,     0)  ->  Abs (   272,   689)
+	 39: Rel (   -63,    -9)  ->  Abs (   209,   680)
+	 40: Rel (   -21,    -3)  ->  Abs (   188,   677)
+	 41: Rel (  -110,   -24)  ->  Abs (    78,   653)
+	 42: Rel (    34,    98)  ->  Abs (   112,   751)
+	 43: Rel (    37,    38)  ->  Abs (   149,   789)
+	 44: Rel (    83,    84)  ->  Abs (   232,   873)
+	 45: Rel (   177,     0)  ->  Abs (   409,   873)
+	 46: Rel (    97,     0)  ->  Abs (   506,   873)
+	 47: Rel (   226,   -37)  ->  Abs (   732,   836)
+	 48: Rel (    77,     0)  ->  Abs (   809,   836)
+	 49: Rel (    51,     0)  ->  Abs (   860,   836)
+	 50: Rel (    97,     8)  ->  Abs (   957,   844)
+	 51: Rel (    53,     7)  ->  Abs (  1010,   851)
+	 52: Rel (   -40,  -170)  ->  Abs (   970,   681)
+	 53: Rel (   -41,    -5)  ->  Abs (   929,   676)
+	 54: Rel (   -52,    -9)  ->  Abs (   877,   667)
+	 55: Rel (   -33,    -6)  ->  Abs (   844,   661)
+	 56: Rel (   -58,   -11)  ->  Abs (   786,   650)
+	 57: Rel (    -2,   -56)  ->  Abs (   784,   594)
+	 58: Rel (     0,   -82)  ->  Abs (   784,   512)
+	 59: Rel (    50,   -28)  ->  Abs (   834,   484)
+	 60: Rel (    31,   -17)  ->  Abs (   865,   467)
+	 61: Rel (    75,     0)  ->  Abs (   940,   467)
+	 62: Rel (   207,     0)  ->  Abs (  1147,   467)
+	 63: Rel (  -427,  -219)  ->  Abs (   720,   248)
+	 64: Rel (   -74,  -145)  ->  Abs (   646,   103)
+	 65: Rel (  -164,    84)  ->  Abs (   482,   187)
+	 66: Rel (    76,   145)  ->  Abs (   558,   332)
+	 67: Rel (   128,  -353)  ->  Abs (   686,   -21)
+	 68: Rel (   -74,  -146)  ->  Abs (   612,  -167)
+	 69: Rel (  -163,    86)  ->  Abs (   449,   -81)
+	 70: Rel (    77,   146)  ->  Abs (   526,    65)
+	 71: Rel (   -34,    90)  ->  Abs (   492,   155)
+	 72: Rel (   -75,  -143)  ->  Abs (   417,    12)
+	 73: Rel (  -165,    85)  ->  Abs (   252,    97)
+	 74: Rel (    78,   144)  ->  Abs (   330,   241)
+
+	Glyph 809: off = 0x00023FCE, len = 302
+	  numberOfContours:	4
+	  xMin:			0
+	  yMin:			-359
+	  xMax:			1145
+	  yMax:			875
+
+	EndPoints
+	---------
+	  0:  22
+	  1:  26
+	  2:  30
+	  3:  34
+
+	  Length of Instructions:	177
+	00000: PUSHB[6]             30    16    18    21    52    24 
+	00007: PUSHW[1]            -16 
+	00010: PUSHB[4]             18    21    52    34 
+	00015: PUSHW[1]            -16 
+	00018: PUSHB[6]             18    21    52    27    29    28 
+	00025: PUSHW[1]            770 
+	00028: PUSHB[6]             30    30    24    31    33    32 
+	00035: PUSHW[1]            770 
+	00038: PUSHB[5]             34    34    25    23    24 
+	00044: PUSHW[1]            770 
+	00047: PUSHB[6]             26    26     1    11     2    15 
+	00054: PUSHW[1]            751 
+	00057: PUSHB[4]              9     9    22     2 
+	00062: PUSHW[3]            751     1   747 
+	00069: PUSHB[3]             28    30    27 
+	00073: PUSHW[1]            769 
+	00076: PUSHB[6]             29    29    25    32    34    33 
+	00083: PUSHW[1]            769 
+	00086: PUSHB[5]             31    31    24    26    23 
+	00092: PUSHW[1]            769 
+	00095: NPUSHB      (15):    25    25     3    11    11     1     3    84     9    17 
+	                            52     3     3     1     0 
+	00112: PUSHW[1]            752 
+	00115: PUSHB[2]             36     1 
+	00118: MDAP[rd]   
+	00119: SRP0       
+	00120: MIRP[nrp0,nmd,rd,0] 
+	00121: SRP1       
+	00122: IP         
+	00123: MDAP[rd]   
+	00124: CALL       
+	00125: SRP2       
+	00126: IP         
+	00127: MDAP[rd]   
+	00128: SRP1       
+	00129: IP         
+	00130: MDAP[rd]   
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: IP         
+	00133: IP         
+	00134: SHP[rp1,zp0] 
+	00135: MDAP[rd]   
+	00136: MIRP[nrp0,md,rd,1] 
+	00137: IP         
+	00138: IP         
+	00139: SRP1       
+	00140: SHP[rp1,zp0] 
+	00141: MDAP[rd]   
+	00142: MIRP[nrp0,md,rd,1] 
+	00143: IP         
+	00144: IP         
+	00145: SVTCA[y-axis] 
+	00146: MIAP[rd+ci] 
+	00147: MIRP[srp0,md,rd,1] 
+	00148: ALIGNRP    
+	00149: SHP[rp2,zp1] 
+	00150: MDAP[rd]   
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: SRP2       
+	00153: IP         
+	00154: SRP1       
+	00155: SHP[rp1,zp0] 
+	00156: MDAP[rd]   
+	00157: MIRP[nrp0,md,rd,1] 
+	00158: IP         
+	00159: IP         
+	00160: SHP[rp1,zp0] 
+	00161: MDAP[rd]   
+	00162: MIRP[srp0,md,rd,1] 
+	00163: IP         
+	00164: IP         
+	00165: SRP1       
+	00166: SHP[rp1,zp0] 
+	00167: MDAP[rd]   
+	00168: MIRP[srp0,md,rd,1] 
+	00169: IP         
+	00170: IP         
+	00171: IUP[y]     
+	00172: IUP[x]     
+	00173: SVTCA[x-axis] 
+	00174: CALL       
+	00175: CALL       
+	00176: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:                      Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short On
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:  YDual XDual                 X-Short On
+	 23:                                      On
+	 24:                      Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:        XDual                 X-Short On
+	 28:                      Y-Short X-Short On
+	 29:  YDual               Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual               Y-Short X-Short On
+	 32:                      Y-Short X-Short On
+	 33:  YDual               Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1145,   293)  ->  Abs (  1145,   293)
+	  1: Rel ( -1145,     0)  ->  Abs (     0,   293)
+	  2: Rel (     0,   174)  ->  Abs (     0,   467)
+	  3: Rel (   805,     0)  ->  Abs (   805,   467)
+	  4: Rel (  -102,    79)  ->  Abs (   703,   546)
+	  5: Rel (   -70,    44)  ->  Abs (   633,   590)
+	  6: Rel (   -87,    55)  ->  Abs (   546,   645)
+	  7: Rel (   -72,    25)  ->  Abs (   474,   670)
+	  8: Rel (   -81,    28)  ->  Abs (   393,   698)
+	  9: Rel (   -83,     0)  ->  Abs (   310,   698)
+	 10: Rel (   -51,     0)  ->  Abs (   259,   698)
+	 11: Rel (   -52,    -7)  ->  Abs (   207,   691)
+	 12: Rel (    29,    74)  ->  Abs (   236,   765)
+	 13: Rel (    47,    45)  ->  Abs (   283,   810)
+	 14: Rel (    68,    65)  ->  Abs (   351,   875)
+	 15: Rel (   104,     0)  ->  Abs (   455,   875)
+	 16: Rel (   102,     0)  ->  Abs (   557,   875)
+	 17: Rel (   139,  -100)  ->  Abs (   696,   775)
+	 18: Rel (    69,   -50)  ->  Abs (   765,   725)
+	 19: Rel (   156,  -140)  ->  Abs (   921,   585)
+	 20: Rel (   121,  -109)  ->  Abs (  1042,   476)
+	 21: Rel (    43,    -9)  ->  Abs (  1085,   467)
+	 22: Rel (    60,     0)  ->  Abs (  1145,   467)
+	 23: Rel (  -379,  -411)  ->  Abs (   766,    56)
+	 24: Rel (   -74,  -145)  ->  Abs (   692,   -89)
+	 25: Rel (  -164,    84)  ->  Abs (   528,    -5)
+	 26: Rel (    76,   145)  ->  Abs (   604,   140)
+	 27: Rel (   128,  -353)  ->  Abs (   732,  -213)
+	 28: Rel (   -74,  -146)  ->  Abs (   658,  -359)
+	 29: Rel (  -163,    86)  ->  Abs (   495,  -273)
+	 30: Rel (    77,   146)  ->  Abs (   572,  -127)
+	 31: Rel (   -34,    90)  ->  Abs (   538,   -37)
+	 32: Rel (   -75,  -143)  ->  Abs (   463,  -180)
+	 33: Rel (  -165,    85)  ->  Abs (   298,   -95)
+	 34: Rel (    78,   144)  ->  Abs (   376,    49)
+
+	Glyph 810: off = 0x000240FC, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-359
+	  xMax:			1145
+	  yMax:			875
+
+	     0: Flags:		0x0016
+		Glyf Index:	809
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 811: off = 0x0002410C, len = 380
+	  numberOfContours:	4
+	  xMin:			144
+	  yMin:			-186
+	  xMax:			1071
+	  yMax:			1481
+
+	EndPoints
+	---------
+	  0:  30
+	  1:  34
+	  2:  38
+	  3:  42
+
+	  Length of Instructions:	233
+	00000: NPUSHB      (11):    42    16    18    21    52    36    16    18    21    52 
+	                            32 
+	00013: PUSHW[1]            -16 
+	00016: NPUSHB      (14):    18    21    52    19    42     9    17    52    18    42 
+	                            12    17    52     4 
+	00032: PUSHW[1]            -32 
+	00035: PUSHB[4]              9    17    52     3 
+	00040: PUSHW[1]            -32 
+	00043: PUSHB[4]              9    17    52     2 
+	00048: PUSHW[1]            -42 
+	00051: NPUSHB      (11):     9    17    52    24    52    12    17    52    31    33 
+	                            34 
+	00064: PUSHW[1]            770 
+	00067: PUSHB[6]             32    32    42    35    37    38 
+	00074: PUSHW[1]            770 
+	00077: PUSHB[5]             36    36    39    41    42 
+	00083: PUSHW[1]            770 
+	00086: NPUSHB       (9):    15    40     1    40    40    26    13    12    25 
+	00097: PUSHW[3]            751    26   777 
+	00104: PUSHB[3]             12    58    16 
+	00108: PUSHW[3]            778     6   776 
+	00115: PUSHB[3]             32    34    33 
+	00119: PUSHW[1]            769 
+	00122: PUSHB[6]             31    31    37    40    42    41 
+	00129: PUSHW[1]            769 
+	00132: PUSHB[5]             39    39    36    38    35 
+	00138: PUSHW[1]            769 
+	00141: PUSHB[8]             37    37    25    26    26    25    25    21 
+	00150: PUSHW[3]            771     0   752 
+	00157: PUSHB[3]             44    13    12 
+	00161: PUSHW[1]            282 
+	00164: SCANCTRL   
+	00165: MDAP[rd]   
+	00166: SHP[rp1,zp0] 
+	00167: SRP0       
+	00168: MIRP[srp0,nmd,rd,0] 
+	00169: MIRP[srp0,md,rd,1] 
+	00170: SHP[rp2,zp1] 
+	00171: MDAP[rd]   
+	00172: RTHG       
+	00173: IP         
+	00174: MDAP[rd]   
+	00175: SRP1       
+	00176: SHP[rp1,zp0] 
+	00177: RTG        
+	00178: MDAP[rd]   
+	00179: MIRP[nrp0,md,rd,1] 
+	00180: IP         
+	00181: IP         
+	00182: SHP[rp1,zp0] 
+	00183: MDAP[rd]   
+	00184: MIRP[srp0,md,rd,1] 
+	00185: IP         
+	00186: IP         
+	00187: SRP1       
+	00188: SHP[rp1,zp0] 
+	00189: MDAP[rd]   
+	00190: MIRP[srp0,md,rd,1] 
+	00191: IP         
+	00192: IP         
+	00193: SVTCA[y-axis] 
+	00194: MIAP[rd+ci] 
+	00195: MIRP[srp0,md,rd,1] 
+	00196: RTHG       
+	00197: MIRP[nrp0,nmd,rd,0] 
+	00198: RTG        
+	00199: MIAP[rd+ci] 
+	00200: MIRP[nrp0,md,rd,1] 
+	00201: SRP1       
+	00202: IP         
+	00203: SRP1       
+	00204: SHP[rp1,zp0] 
+	00205: MDAP[rd]   
+	00206: DELTAP1    
+	00207: MIRP[nrp0,md,rd,1] 
+	00208: IP         
+	00209: IP         
+	00210: SHP[rp1,zp0] 
+	00211: MDAP[rd]   
+	00212: MIRP[nrp0,md,rd,1] 
+	00213: IP         
+	00214: IP         
+	00215: SRP1       
+	00216: SHP[rp1,zp0] 
+	00217: MDAP[rd]   
+	00218: MIRP[nrp0,md,rd,1] 
+	00219: IP         
+	00220: IP         
+	00221: IUP[y]     
+	00222: IUP[x]     
+	00223: SVTCA[x-axis] 
+	00224: CALL       
+	00225: CALL       
+	00226: CALL       
+	00227: CALL       
+	00228: CALL       
+	00229: CALL       
+	00230: CALL       
+	00231: CALL       
+	00232: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short X-Short On
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:                              X-Short On
+	 32:                      Y-Short X-Short On
+	 33:  YDual               Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:                                      On
+	 36:                      Y-Short X-Short On
+	 37:  YDual               Y-Short X-Short On
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:                      Y-Short X-Short On
+	 40:                      Y-Short X-Short On
+	 41:  YDual               Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1071,   293)  ->  Abs (  1071,   293)
+	  1: Rel (     0,  -110)  ->  Abs (  1071,   183)
+	  2: Rel (   -94,  -118)  ->  Abs (   977,    65)
+	  3: Rel (   -82,  -104)  ->  Abs (   895,   -39)
+	  4: Rel (  -122,   -75)  ->  Abs (   773,  -114)
+	  5: Rel (  -116,   -72)  ->  Abs (   657,  -186)
+	  6: Rel (   -75,     0)  ->  Abs (   582,  -186)
+	  7: Rel (   -69,     0)  ->  Abs (   513,  -186)
+	  8: Rel (   -80,    20)  ->  Abs (   433,  -166)
+	  9: Rel (   -61,    15)  ->  Abs (   372,  -151)
+	 10: Rel (   -85,    32)  ->  Abs (   287,  -119)
+	 11: Rel (   -72,    27)  ->  Abs (   215,   -92)
+	 12: Rel (   -71,    27)  ->  Abs (   144,   -65)
+	 13: Rel (    17,    40)  ->  Abs (   161,   -25)
+	 14: Rel (    66,   -13)  ->  Abs (   227,   -38)
+	 15: Rel (   143,   -27)  ->  Abs (   370,   -65)
+	 16: Rel (    58,     0)  ->  Abs (   428,   -65)
+	 17: Rel (   128,     0)  ->  Abs (   556,   -65)
+	 18: Rel (   139,    82)  ->  Abs (   695,    17)
+	 19: Rel (   126,    75)  ->  Abs (   821,    92)
+	 20: Rel (   178,   229)  ->  Abs (   999,   321)
+	 21: Rel (     0,    92)  ->  Abs (   999,   413)
+	 22: Rel (     0,    79)  ->  Abs (   999,   492)
+	 23: Rel (   -46,    87)  ->  Abs (   953,   579)
+	 24: Rel (   -37,    70)  ->  Abs (   916,   649)
+	 25: Rel (   -67,    74)  ->  Abs (   849,   723)
+	 26: Rel (    57,   157)  ->  Abs (   906,   880)
+	 27: Rel (    82,   -76)  ->  Abs (   988,   804)
+	 28: Rel (    39,   -76)  ->  Abs (  1027,   728)
+	 29: Rel (    44,   -86)  ->  Abs (  1071,   642)
+	 30: Rel (     0,  -106)  ->  Abs (  1071,   536)
+	 31: Rel (  -223,   859)  ->  Abs (   848,  1395)
+	 32: Rel (   -77,  -146)  ->  Abs (   771,  1249)
+	 33: Rel (  -160,    86)  ->  Abs (   611,  1335)
+	 34: Rel (    74,   146)  ->  Abs (   685,  1481)
+	 35: Rel (   360,  -264)  ->  Abs (  1045,  1217)
+	 36: Rel (   -78,  -144)  ->  Abs (   967,  1073)
+	 37: Rel (  -162,    86)  ->  Abs (   805,  1159)
+	 38: Rel (    75,   143)  ->  Abs (   880,  1302)
+	 39: Rel (   -65,  -175)  ->  Abs (   815,  1127)
+	 40: Rel (   -76,  -145)  ->  Abs (   739,   982)
+	 41: Rel (  -162,    84)  ->  Abs (   577,  1066)
+	 42: Rel (    74,   145)  ->  Abs (   651,  1211)
+
+	Glyph 812: off = 0x00024288, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-186
+	  xMax:			1071
+	  yMax:			1481
+
+	     0: Flags:		0x0016
+		Glyf Index:	811
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 813: off = 0x00024298, len = 326
+	  numberOfContours:	1
+	  xMin:			90
+	  yMin:			293
+	  xMax:			1733
+	  yMax:			1503
+
+	EndPoints
+	---------
+	  0:  44
+
+	  Length of Instructions:	186
+	00000: PUSHW[2]             22   -64 
+	00005: NPUSHB      (19):    16    17    52     9    32    16    17    52    59     5 
+	                           107     5     2     9    32     9    12    52    42 
+	00026: PUSHW[1]            -32 
+	00029: PUSHB[4]             16    17    52    18 
+	00034: PUSHW[1]            -24 
+	00037: PUSHB[4]             15    17    52    18 
+	00042: PUSHW[1]            -36 
+	00045: PUSHB[4]             13    14    52    18 
+	00050: PUSHW[1]            -16 
+	00053: NPUSHB      (10):    10    12    52     4     3     7    18     4    44    13 
+	00065: NPUSHW      (11):   751    12   779    37    36   777    26    44   751    28 
+	                           747 
+	00089: PUSHB[4]              3     4     0     7 
+	00094: PUSHW[1]            755 
+	00097: PUSHB[7]             64    18    18    40    12    12     0 
+	00105: NPUSHW       (9):   768    27   752    46    37   763    32    36   -64 
+	00125: PUSHB[6]              9    11    52    36    36    40 
+	00132: PUSHW[3]            771    32   298 
+	00139: SCANCTRL   
+	00140: MDAP[rd]   
+	00141: MIRP[srp0,md,rd,1] 
+	00142: SHP[rp2,zp1] 
+	00143: RTHG       
+	00144: MDAP[rd]   
+	00145: CALL       
+	00146: SMD        
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: RTG        
+	00149: SRP0       
+	00150: MIRP[srp0,nmd,rd,1] 
+	00151: RTHG       
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: SHP[rp1,zp0] 
+	00154: RTG        
+	00155: MDAP[rd]   
+	00156: SRP2       
+	00157: IP         
+	00158: MDAP[rd]   
+	00159: SMD        
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: SRP2       
+	00162: IP         
+	00163: IP         
+	00164: SVTCA[y-axis] 
+	00165: MIAP[rd+ci] 
+	00166: MIRP[srp0,md,rd,1] 
+	00167: ALIGNRP    
+	00168: MIAP[rd+ci] 
+	00169: IP         
+	00170: MIAP[rd+ci] 
+	00171: MIRP[nrp0,md,rd,1] 
+	00172: SRP1       
+	00173: SLOOP      
+	00174: IP         
+	00175: CALL       
+	00176: CALL       
+	00177: CALL       
+	00178: IUP[y]     
+	00179: IUP[x]     
+	00180: SVTCA[x-axis] 
+	00181: CALL       
+	00182: CALL       
+	00183: DELTAP1    
+	00184: CALL       
+	00185: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:                      Y-Short X-Short On
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual               Y-Short         On
+	 13:        XDual         Y-Short         On
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short         On
+	 28:  YDual                               On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short On
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:        XDual         Y-Short X-Short On
+	 38:                      Y-Short X-Short Off
+	 39:                      Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:        XDual         Y-Short X-Short On
+	 43:        XDual         Y-Short X-Short Off
+	 44:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1617,   467)  ->  Abs (  1617,   467)
+	  1: Rel (   -70,   106)  ->  Abs (  1547,   573)
+	  2: Rel (  -180,   157)  ->  Abs (  1367,   730)
+	  3: Rel (  -153,    91)  ->  Abs (  1214,   821)
+	  4: Rel (   -33,   -31)  ->  Abs (  1181,   790)
+	  5: Rel (  -118,    90)  ->  Abs (  1063,   880)
+	  6: Rel (   -62,    52)  ->  Abs (  1001,   932)
+	  7: Rel (     0,    29)  ->  Abs (  1001,   961)
+	  8: Rel (     0,   172)  ->  Abs (  1001,  1133)
+	  9: Rel (    84,    98)  ->  Abs (  1085,  1231)
+	 10: Rel (    78,    90)  ->  Abs (  1163,  1321)
+	 11: Rel (   191,    72)  ->  Abs (  1354,  1393)
+	 12: Rel (   282,   110)  ->  Abs (  1636,  1503)
+	 13: Rel (     0,  -173)  ->  Abs (  1636,  1330)
+	 14: Rel (  -209,   -70)  ->  Abs (  1427,  1260)
+	 15: Rel (  -125,   -41)  ->  Abs (  1302,  1219)
+	 16: Rel (   -77,   -34)  ->  Abs (  1225,  1185)
+	 17: Rel (   -98,   -43)  ->  Abs (  1127,  1142)
+	 18: Rel (     0,   -23)  ->  Abs (  1127,  1119)
+	 19: Rel (     0,   -23)  ->  Abs (  1127,  1096)
+	 20: Rel (    64,   -48)  ->  Abs (  1191,  1048)
+	 21: Rel (    40,   -30)  ->  Abs (  1231,  1018)
+	 22: Rel (    41,   -30)  ->  Abs (  1272,   988)
+	 23: Rel (   152,  -115)  ->  Abs (  1424,   873)
+	 24: Rel (   113,  -126)  ->  Abs (  1537,   747)
+	 25: Rel (   122,  -135)  ->  Abs (  1659,   612)
+	 26: Rel (    74,  -145)  ->  Abs (  1733,   467)
+	 27: Rel (     0,  -174)  ->  Abs (  1733,   293)
+	 28: Rel ( -1195,     0)  ->  Abs (   538,   293)
+	 29: Rel (  -239,     0)  ->  Abs (   299,   293)
+	 30: Rel (  -101,    57)  ->  Abs (   198,   350)
+	 31: Rel (  -108,    61)  ->  Abs (    90,   411)
+	 32: Rel (     0,   147)  ->  Abs (    90,   558)
+	 33: Rel (     0,    88)  ->  Abs (    90,   646)
+	 34: Rel (    47,   112)  ->  Abs (   137,   758)
+	 35: Rel (    13,    31)  ->  Abs (   150,   789)
+	 36: Rel (    42,    84)  ->  Abs (   192,   873)
+	 37: Rel (    34,   -20)  ->  Abs (   226,   853)
+	 38: Rel (   -34,   -78)  ->  Abs (   192,   775)
+	 39: Rel (   -21,   -84)  ->  Abs (   171,   691)
+	 40: Rel (     0,   -38)  ->  Abs (   171,   653)
+	 41: Rel (     0,  -109)  ->  Abs (   171,   544)
+	 42: Rel (   115,   -44)  ->  Abs (   286,   500)
+	 43: Rel (    86,   -33)  ->  Abs (   372,   467)
+	 44: Rel (   166,     0)  ->  Abs (   538,   467)
+
+	Glyph 814: off = 0x000243DE, len = 460
+	  numberOfContours:	1
+	  xMin:			90
+	  yMin:			293
+	  xMax:			1980
+	  yMax:			1503
+
+	EndPoints
+	---------
+	  0:  69
+
+	  Length of Instructions:	253
+	00000: PUSHW[2]             42   -42 
+	00005: PUSHB[4]             16    17    52    33 
+	00010: PUSHW[1]            -16 
+	00013: PUSHB[4]             15    17    52    47 
+	00018: PUSHW[1]            -32 
+	00021: PUSHB[4]             15    17    52    44 
+	00026: PUSHW[1]            -32 
+	00029: PUSHB[4]             15    17    52    48 
+	00034: PUSHW[1]            -32 
+	00037: PUSHB[4]             13    17    52    46 
+	00042: PUSHW[1]            -32 
+	00045: NPUSHB      (21):    13    17    52    59    27   107    27   137    61     3 
+	                            31    32     9    15    52    19    32    15    17    52 
+	                            14 
+	00068: PUSHW[1]            -32 
+	00071: PUSHB[4]             16    17    52    40 
+	00076: PUSHW[1]            -32 
+	00079: PUSHB[4]             15    17    52    40 
+	00084: PUSHW[1]            -36 
+	00087: PUSHB[4]             13    14    52    40 
+	00092: PUSHW[1]            -16 
+	00095: NPUSHB      (11):    10    12    52    65    26    25    29    40     5    16 
+	                            35 
+	00108: NPUSHW      (12):   751    34   779     9     8   777    55    16   751    56 
+	                             0   747 
+	00134: PUSHB[4]             25    26    21    29 
+	00139: PUSHW[1]            755 
+	00142: NPUSHB      (13):    15    40    95    40     2    40    40    21    12    35 
+	                            35    56    21 
+	00157: PUSHW[1]            771 
+	00160: PUSHB[5]             64    65    65    12    56 
+	00166: PUSHW[7]            752    71     9   763    32     8   -64 
+	00181: PUSHB[6]              9    11    52     8     8    12 
+	00188: PUSHW[3]            771     4   298 
+	00195: SCANCTRL   
+	00196: MDAP[rd]   
+	00197: MIRP[srp0,md,rd,1] 
+	00198: SHP[rp2,zp1] 
+	00199: RTHG       
+	00200: MDAP[rd]   
+	00201: CALL       
+	00202: SMD        
+	00203: MIRP[nrp0,md,rd,1] 
+	00204: RTG        
+	00205: SRP0       
+	00206: MIRP[nrp0,nmd,rd,1] 
+	00207: SRP1       
+	00208: IP         
+	00209: MDAP[rd]   
+	00210: SMD        
+	00211: MIRP[nrp0,md,rd,1] 
+	00212: SRP2       
+	00213: IP         
+	00214: MDAP[rd]   
+	00215: SRP1       
+	00216: SRP2       
+	00217: IP         
+	00218: MDAP[rd]   
+	00219: DELTAP1    
+	00220: MIRP[nrp0,md,rd,1] 
+	00221: SRP2       
+	00222: IP         
+	00223: IP         
+	00224: SVTCA[y-axis] 
+	00225: MIAP[rd+ci] 
+	00226: ALIGNRP    
+	00227: MIRP[srp0,md,rd,1] 
+	00228: ALIGNRP    
+	00229: MIAP[rd+ci] 
+	00230: IP         
+	00231: MIAP[rd+ci] 
+	00232: MIRP[nrp0,md,rd,1] 
+	00233: SRP1       
+	00234: SLOOP      
+	00235: IP         
+	00236: CALL       
+	00237: CALL       
+	00238: CALL       
+	00239: IUP[y]     
+	00240: IUP[x]     
+	00241: SVTCA[x-axis] 
+	00242: CALL       
+	00243: CALL       
+	00244: CALL       
+	00245: DELTAP1    
+	00246: CALL       
+	00247: CALL       
+	00248: SVTCA[y-axis] 
+	00249: CALL       
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual                               On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:                      Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual               Y-Short         On
+	 35:        XDual         Y-Short         On
+	 36:                      Y-Short X-Short On
+	 37:                      Y-Short X-Short Off
+	 38:                      Y-Short X-Short On
+	 39:                      Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:        XDual         Y-Short X-Short On
+	 43:        XDual         Y-Short X-Short Off
+	 44:        XDual         Y-Short X-Short On
+	 45:        XDual         Y-Short X-Short Off
+	 46:        XDual         Y-Short X-Short On
+	 47:        XDual         Y-Short X-Short Off
+	 48:        XDual         Y-Short X-Short On
+	 49:        XDual         Y-Short X-Short Off
+	 50:        XDual         Y-Short X-Short On
+	 51:        XDual         Y-Short X-Short Off
+	 52:        XDual         Y-Short X-Short On
+	 53:        XDual         Y-Short X-Short Off
+	 54:  YDual XDual                 X-Short On
+	 55:  YDual XDual                 X-Short On
+	 56:        XDual         Y-Short         On
+	 57:  YDual                       X-Short On
+	 58:  YDual                       X-Short Off
+	 59:  YDual               Y-Short X-Short On
+	 60:  YDual               Y-Short X-Short Off
+	 61:  YDual               Y-Short X-Short On
+	 62:  YDual               Y-Short X-Short Off
+	 63:  YDual               Y-Short X-Short On
+	 64:  YDual               Y-Short X-Short Off
+	 65:  YDual               Y-Short X-Short On
+	 66:        XDual         Y-Short         Off
+	 67:                      Y-Short X-Short On
+	 68:                      Y-Short X-Short Off
+	 69:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   538,   293)  ->  Abs (   538,   293)
+	  1: Rel (  -239,     0)  ->  Abs (   299,   293)
+	  2: Rel (  -101,    57)  ->  Abs (   198,   350)
+	  3: Rel (  -108,    61)  ->  Abs (    90,   411)
+	  4: Rel (     0,   147)  ->  Abs (    90,   558)
+	  5: Rel (     0,    88)  ->  Abs (    90,   646)
+	  6: Rel (    47,   112)  ->  Abs (   137,   758)
+	  7: Rel (    13,    31)  ->  Abs (   150,   789)
+	  8: Rel (    42,    84)  ->  Abs (   192,   873)
+	  9: Rel (    34,   -20)  ->  Abs (   226,   853)
+	 10: Rel (   -34,   -78)  ->  Abs (   192,   775)
+	 11: Rel (   -21,   -84)  ->  Abs (   171,   691)
+	 12: Rel (     0,   -38)  ->  Abs (   171,   653)
+	 13: Rel (     0,  -109)  ->  Abs (   171,   544)
+	 14: Rel (   115,   -44)  ->  Abs (   286,   500)
+	 15: Rel (    86,   -33)  ->  Abs (   372,   467)
+	 16: Rel (   166,     0)  ->  Abs (   538,   467)
+	 17: Rel (   426,     0)  ->  Abs (   964,   467)
+	 18: Rel (   159,     0)  ->  Abs (  1123,   467)
+	 19: Rel (   108,    41)  ->  Abs (  1231,   508)
+	 20: Rel (   129,    49)  ->  Abs (  1360,   557)
+	 21: Rel (     0,    89)  ->  Abs (  1360,   646)
+	 22: Rel (     0,    67)  ->  Abs (  1360,   713)
+	 23: Rel (   -49,    46)  ->  Abs (  1311,   759)
+	 24: Rel (   -25,    24)  ->  Abs (  1286,   783)
+	 25: Rel (   -72,    38)  ->  Abs (  1214,   821)
+	 26: Rel (   -33,   -31)  ->  Abs (  1181,   790)
+	 27: Rel (  -118,    90)  ->  Abs (  1063,   880)
+	 28: Rel (   -62,    52)  ->  Abs (  1001,   932)
+	 29: Rel (     0,    29)  ->  Abs (  1001,   961)
+	 30: Rel (     0,   172)  ->  Abs (  1001,  1133)
+	 31: Rel (    84,    98)  ->  Abs (  1085,  1231)
+	 32: Rel (    78,    90)  ->  Abs (  1163,  1321)
+	 33: Rel (   191,    72)  ->  Abs (  1354,  1393)
+	 34: Rel (   282,   110)  ->  Abs (  1636,  1503)
+	 35: Rel (     0,  -173)  ->  Abs (  1636,  1330)
+	 36: Rel (  -209,   -70)  ->  Abs (  1427,  1260)
+	 37: Rel (  -171,   -58)  ->  Abs (  1256,  1202)
+	 38: Rel (   -70,   -35)  ->  Abs (  1186,  1167)
+	 39: Rel (   -59,   -30)  ->  Abs (  1127,  1137)
+	 40: Rel (     0,   -18)  ->  Abs (  1127,  1119)
+	 41: Rel (     0,   -23)  ->  Abs (  1127,  1096)
+	 42: Rel (    64,   -48)  ->  Abs (  1191,  1048)
+	 43: Rel (    40,   -30)  ->  Abs (  1231,  1018)
+	 44: Rel (    41,   -30)  ->  Abs (  1272,   988)
+	 45: Rel (    88,   -67)  ->  Abs (  1360,   921)
+	 46: Rel (    71,   -65)  ->  Abs (  1431,   856)
+	 47: Rel (    61,   -56)  ->  Abs (  1492,   800)
+	 48: Rel (    53,   -60)  ->  Abs (  1545,   740)
+	 49: Rel (    33,   -37)  ->  Abs (  1578,   703)
+	 50: Rel (    73,   -90)  ->  Abs (  1651,   613)
+	 51: Rel (    47,   -57)  ->  Abs (  1698,   556)
+	 52: Rel (    45,   -38)  ->  Abs (  1743,   518)
+	 53: Rel (    61,   -51)  ->  Abs (  1804,   467)
+	 54: Rel (    45,     0)  ->  Abs (  1849,   467)
+	 55: Rel (   131,     0)  ->  Abs (  1980,   467)
+	 56: Rel (     0,  -174)  ->  Abs (  1980,   293)
+	 57: Rel (  -123,     0)  ->  Abs (  1857,   293)
+	 58: Rel (   -82,     0)  ->  Abs (  1775,   293)
+	 59: Rel (   -90,    84)  ->  Abs (  1685,   377)
+	 60: Rel (   -44,    41)  ->  Abs (  1641,   418)
+	 61: Rel (   -81,   105)  ->  Abs (  1560,   523)
+	 62: Rel (   -49,    63)  ->  Abs (  1511,   586)
+	 63: Rel (   -11,    13)  ->  Abs (  1500,   599)
+	 64: Rel (   -25,    30)  ->  Abs (  1475,   629)
+	 65: Rel (   -51,    49)  ->  Abs (  1424,   678)
+	 66: Rel (     0,  -178)  ->  Abs (  1424,   500)
+	 67: Rel (  -111,  -100)  ->  Abs (  1313,   400)
+	 68: Rel (  -119,  -107)  ->  Abs (  1194,   293)
+	 69: Rel (  -235,     0)  ->  Abs (   959,   293)
+
+	Glyph 815: off = 0x000245AA, len = 262
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			293
+	  xMax:			877
+	  yMax:			1503
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	161
+	00000: PUSHW[2]             25   -64 
+	00005: NPUSHB      (19):    16    17    52    12    32    16    17    52    59     8 
+	                           107     8     2    12    32     9    12    52    21 
+	00026: PUSHW[1]            -24 
+	00029: PUSHB[4]             15    17    52    21 
+	00034: PUSHW[1]            -36 
+	00037: PUSHB[4]             13    14    52    21 
+	00042: PUSHW[1]            -16 
+	00045: NPUSHB      (10):    10    12    52     7     6    10    21     4     2    16 
+	00057: PUSHW[8]            751    15   779    29     2   751     1   747 
+	00074: PUSHB[4]              6     7     3    10 
+	00079: PUSHW[1]            755 
+	00082: NPUSHB      (22):    64   111    21   143    21     2    15    21    47    21 
+	                            95    21     3    32    21     1    21    21     1    15 
+	                            15     3 
+	00106: PUSHW[7]            768    32     0   752    31     1   298 
+	00121: SCANCTRL   
+	00122: MDAP[rd]   
+	00123: SRP0       
+	00124: MIRP[srp0,nmd,rd,0] 
+	00125: SMD        
+	00126: RTHG       
+	00127: MIRP[nrp0,md,rd,1] 
+	00128: SHP[rp1,zp0] 
+	00129: RTG        
+	00130: MDAP[rd]   
+	00131: SRP2       
+	00132: IP         
+	00133: MDAP[rd]   
+	00134: DELTAP1    
+	00135: DELTAP1    
+	00136: DELTAP1    
+	00137: SMD        
+	00138: MIRP[nrp0,md,rd,1] 
+	00139: SRP2       
+	00140: IP         
+	00141: IP         
+	00142: SVTCA[y-axis] 
+	00143: MIAP[rd+ci] 
+	00144: MIRP[srp0,md,rd,1] 
+	00145: ALIGNRP    
+	00146: MIAP[rd+ci] 
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: SRP1       
+	00149: SLOOP      
+	00150: IP         
+	00151: CALL       
+	00152: CALL       
+	00153: CALL       
+	00154: IUP[y]     
+	00155: IUP[x]     
+	00156: SVTCA[x-axis] 
+	00157: CALL       
+	00158: DELTAP1    
+	00159: CALL       
+	00160: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:                      Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual               Y-Short         On
+	 16:        XDual         Y-Short         On
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:        XDual         Y-Short X-Short On
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   877,   293)  ->  Abs (   877,   293)
+	  1: Rel (  -877,     0)  ->  Abs (     0,   293)
+	  2: Rel (     0,   174)  ->  Abs (     0,   467)
+	  3: Rel (   761,     0)  ->  Abs (   761,   467)
+	  4: Rel (   -70,   106)  ->  Abs (   691,   573)
+	  5: Rel (  -180,   157)  ->  Abs (   511,   730)
+	  6: Rel (  -153,    91)  ->  Abs (   358,   821)
+	  7: Rel (   -33,   -31)  ->  Abs (   325,   790)
+	  8: Rel (  -118,    90)  ->  Abs (   207,   880)
+	  9: Rel (   -62,    52)  ->  Abs (   145,   932)
+	 10: Rel (     0,    29)  ->  Abs (   145,   961)
+	 11: Rel (     0,   172)  ->  Abs (   145,  1133)
+	 12: Rel (    84,    98)  ->  Abs (   229,  1231)
+	 13: Rel (    78,    90)  ->  Abs (   307,  1321)
+	 14: Rel (   191,    72)  ->  Abs (   498,  1393)
+	 15: Rel (   282,   110)  ->  Abs (   780,  1503)
+	 16: Rel (     0,  -173)  ->  Abs (   780,  1330)
+	 17: Rel (  -209,   -70)  ->  Abs (   571,  1260)
+	 18: Rel (  -125,   -41)  ->  Abs (   446,  1219)
+	 19: Rel (   -77,   -34)  ->  Abs (   369,  1185)
+	 20: Rel (   -98,   -43)  ->  Abs (   271,  1142)
+	 21: Rel (     0,   -23)  ->  Abs (   271,  1119)
+	 22: Rel (     0,   -23)  ->  Abs (   271,  1096)
+	 23: Rel (    64,   -48)  ->  Abs (   335,  1048)
+	 24: Rel (    40,   -30)  ->  Abs (   375,  1018)
+	 25: Rel (    41,   -30)  ->  Abs (   416,   988)
+	 26: Rel (   152,  -115)  ->  Abs (   568,   873)
+	 27: Rel (   113,  -126)  ->  Abs (   681,   747)
+	 28: Rel (   122,  -135)  ->  Abs (   803,   612)
+	 29: Rel (    74,  -145)  ->  Abs (   877,   467)
+
+	Glyph 816: off = 0x000246B0, len = 384
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1124
+	  yMax:			1503
+
+	EndPoints
+	---------
+	  0:  54
+
+	  Length of Instructions:	220
+	00000: PUSHW[2]             47   -42 
+	00005: PUSHB[4]             13    17    52    38 
+	00010: PUSHW[1]            -16 
+	00013: PUSHB[4]             13    17    52    52 
+	00018: PUSHW[1]            -32 
+	00021: PUSHB[4]             15    17    52    49 
+	00026: PUSHW[1]            -32 
+	00029: PUSHB[4]             13    17    52    53 
+	00034: PUSHW[1]            -32 
+	00037: PUSHB[4]             13    17    52    51 
+	00042: PUSHW[1]            -32 
+	00045: NPUSHB      (31):    13    17    52    84    43    84    50     2    68    43 
+	                            68    50     2    59    32   107    32   137    11     3 
+	                            36    32     9    15    52    24    32    15    17    52 
+	                            45 
+	00078: PUSHW[1]            -32 
+	00081: PUSHB[4]             15    17    52    45 
+	00086: PUSHW[1]            -36 
+	00089: PUSHB[4]             13    14    52    45 
+	00094: PUSHW[1]            -16 
+	00097: NPUSHB      (14):    10    12    52     0    45     1    15    31    30    34 
+	                            45     5    21    40 
+	00113: NPUSHW       (9):   751    39   779     5    21   751     6    20   747 
+	00133: PUSHB[4]             30    31    26    34 
+	00138: PUSHW[1]            755 
+	00141: NPUSHB      (11):    15    45     1    45    45    26    20    40    40     6 
+	                            26 
+	00154: PUSHW[1]            771 
+	00157: PUSHB[4]             15    15    20     6 
+	00162: PUSHW[4]            752    56    20   298 
+	00171: SCANCTRL   
+	00172: MDAP[rd]   
+	00173: SRP0       
+	00174: MIRP[nrp0,nmd,rd,1] 
+	00175: SRP1       
+	00176: IP         
+	00177: MDAP[rd]   
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: SRP2       
+	00180: IP         
+	00181: MDAP[rd]   
+	00182: SRP1       
+	00183: SRP2       
+	00184: IP         
+	00185: MDAP[rd]   
+	00186: DELTAP1    
+	00187: MIRP[nrp0,md,rd,1] 
+	00188: SRP2       
+	00189: IP         
+	00190: IP         
+	00191: SVTCA[y-axis] 
+	00192: MIAP[rd+ci] 
+	00193: ALIGNRP    
+	00194: MIRP[srp0,md,rd,1] 
+	00195: ALIGNRP    
+	00196: MIAP[rd+ci] 
+	00197: MIRP[nrp0,md,rd,1] 
+	00198: SRP1       
+	00199: SLOOP      
+	00200: IP         
+	00201: DELTAP1    
+	00202: CALL       
+	00203: CALL       
+	00204: CALL       
+	00205: IUP[y]     
+	00206: IUP[x]     
+	00207: SVTCA[x-axis] 
+	00208: CALL       
+	00209: CALL       
+	00210: DELTAP1    
+	00211: DELTAP1    
+	00212: DELTAP1    
+	00213: CALL       
+	00214: CALL       
+	00215: SVTCA[y-axis] 
+	00216: CALL       
+	00217: CALL       
+	00218: CALL       
+	00219: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual         Y-Short         On
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short On
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual               Y-Short X-Short On
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual               Y-Short X-Short On
+	 31:                      Y-Short X-Short On
+	 32:  YDual               Y-Short X-Short On
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:  YDual               Y-Short         On
+	 40:        XDual         Y-Short         On
+	 41:                      Y-Short X-Short On
+	 42:                      Y-Short X-Short Off
+	 43:                      Y-Short X-Short On
+	 44:                      Y-Short X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         Off
+	 47:        XDual         Y-Short X-Short On
+	 48:        XDual         Y-Short X-Short Off
+	 49:        XDual         Y-Short X-Short On
+	 50:        XDual         Y-Short X-Short Off
+	 51:        XDual         Y-Short X-Short On
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short X-Short On
+	 54:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   795,   613)  ->  Abs (   795,   613)
+	  1: Rel (    47,   -57)  ->  Abs (   842,   556)
+	  2: Rel (    45,   -38)  ->  Abs (   887,   518)
+	  3: Rel (    61,   -51)  ->  Abs (   948,   467)
+	  4: Rel (    45,     0)  ->  Abs (   993,   467)
+	  5: Rel (   131,     0)  ->  Abs (  1124,   467)
+	  6: Rel (     0,  -174)  ->  Abs (  1124,   293)
+	  7: Rel (  -123,     0)  ->  Abs (  1001,   293)
+	  8: Rel (   -82,     0)  ->  Abs (   919,   293)
+	  9: Rel (   -90,    84)  ->  Abs (   829,   377)
+	 10: Rel (   -44,    41)  ->  Abs (   785,   418)
+	 11: Rel (   -81,   105)  ->  Abs (   704,   523)
+	 12: Rel (   -49,    63)  ->  Abs (   655,   586)
+	 13: Rel (   -11,    13)  ->  Abs (   644,   599)
+	 14: Rel (   -25,    30)  ->  Abs (   619,   629)
+	 15: Rel (   -51,    49)  ->  Abs (   568,   678)
+	 16: Rel (     0,  -178)  ->  Abs (   568,   500)
+	 17: Rel (  -111,  -100)  ->  Abs (   457,   400)
+	 18: Rel (  -119,  -107)  ->  Abs (   338,   293)
+	 19: Rel (  -235,     0)  ->  Abs (   103,   293)
+	 20: Rel (  -103,     0)  ->  Abs (     0,   293)
+	 21: Rel (     0,   174)  ->  Abs (     0,   467)
+	 22: Rel (   108,     0)  ->  Abs (   108,   467)
+	 23: Rel (   159,     0)  ->  Abs (   267,   467)
+	 24: Rel (   108,    41)  ->  Abs (   375,   508)
+	 25: Rel (   129,    49)  ->  Abs (   504,   557)
+	 26: Rel (     0,    89)  ->  Abs (   504,   646)
+	 27: Rel (     0,    67)  ->  Abs (   504,   713)
+	 28: Rel (   -49,    46)  ->  Abs (   455,   759)
+	 29: Rel (   -25,    24)  ->  Abs (   430,   783)
+	 30: Rel (   -72,    38)  ->  Abs (   358,   821)
+	 31: Rel (   -33,   -31)  ->  Abs (   325,   790)
+	 32: Rel (  -118,    90)  ->  Abs (   207,   880)
+	 33: Rel (   -62,    52)  ->  Abs (   145,   932)
+	 34: Rel (     0,    29)  ->  Abs (   145,   961)
+	 35: Rel (     0,   172)  ->  Abs (   145,  1133)
+	 36: Rel (    84,    98)  ->  Abs (   229,  1231)
+	 37: Rel (    78,    90)  ->  Abs (   307,  1321)
+	 38: Rel (   191,    72)  ->  Abs (   498,  1393)
+	 39: Rel (   282,   110)  ->  Abs (   780,  1503)
+	 40: Rel (     0,  -173)  ->  Abs (   780,  1330)
+	 41: Rel (  -209,   -70)  ->  Abs (   571,  1260)
+	 42: Rel (  -125,   -41)  ->  Abs (   446,  1219)
+	 43: Rel (   -77,   -34)  ->  Abs (   369,  1185)
+	 44: Rel (   -98,   -43)  ->  Abs (   271,  1142)
+	 45: Rel (     0,   -23)  ->  Abs (   271,  1119)
+	 46: Rel (     0,   -23)  ->  Abs (   271,  1096)
+	 47: Rel (    64,   -48)  ->  Abs (   335,  1048)
+	 48: Rel (    40,   -30)  ->  Abs (   375,  1018)
+	 49: Rel (    41,   -30)  ->  Abs (   416,   988)
+	 50: Rel (    88,   -67)  ->  Abs (   504,   921)
+	 51: Rel (    71,   -65)  ->  Abs (   575,   856)
+	 52: Rel (    61,   -56)  ->  Abs (   636,   800)
+	 53: Rel (    53,   -60)  ->  Abs (   689,   740)
+	 54: Rel (    33,   -37)  ->  Abs (   722,   703)
+
+	Glyph 817: off = 0x00024830, len = 416
+	  numberOfContours:	2
+	  xMin:			90
+	  yMin:			293
+	  xMax:			1733
+	  yMax:			1776
+
+	EndPoints
+	---------
+	  0:  44
+	  1:  55
+
+	  Length of Instructions:	241
+	00000: NPUSHB      (16):    48     8    19    21    52    47    32    10    11    52 
+	                            54    32    10    11    52    22 
+	00018: PUSHW[1]            -64 
+	00021: NPUSHB      (19):    16    17    52     9    32    16    17    52    59     5 
+	                           107     5     2     9    32     9    12    52    42 
+	00042: PUSHW[1]            -32 
+	00045: PUSHB[8]             16    17    52    51    13    50    12    45 
+	00054: PUSHW[1]            751 
+	00057: PUSHB[7]             15    46     1    46    46    12    18 
+	00065: PUSHW[1]            -24 
+	00068: PUSHB[4]             15    17    52    18 
+	00073: PUSHW[1]            -36 
+	00076: PUSHB[4]             13    14    52    18 
+	00081: PUSHW[1]            -16 
+	00084: NPUSHB      (10):    10    12    52     4     3     7    18     4    44    13 
+	00096: NPUSHW      (11):   751    12   779    37    36   777    26    44   751    28 
+	                           747 
+	00120: NPUSHB       (9):    46    12    50    50     7     3     4     0     7 
+	00131: PUSHW[1]            755 
+	00134: PUSHB[7]             64    18    18    40    12    12     0 
+	00142: NPUSHW       (9):   768    27   752    57    37   763    32    36   -64 
+	00162: PUSHB[6]              9    11    52    36    36    40 
+	00169: PUSHW[3]            771    32   298 
+	00176: SCANCTRL   
+	00177: MDAP[rd]   
+	00178: MIRP[srp0,md,rd,1] 
+	00179: SHP[rp2,zp1] 
+	00180: RTHG       
+	00181: MDAP[rd]   
+	00182: CALL       
+	00183: SMD        
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: RTG        
+	00186: SRP0       
+	00187: MIRP[srp0,nmd,rd,1] 
+	00188: RTHG       
+	00189: MIRP[nrp0,md,rd,1] 
+	00190: SHP[rp1,zp0] 
+	00191: RTG        
+	00192: MDAP[rd]   
+	00193: SRP2       
+	00194: IP         
+	00195: MDAP[rd]   
+	00196: SMD        
+	00197: MIRP[nrp0,md,rd,1] 
+	00198: SRP2       
+	00199: IP         
+	00200: IP         
+	00201: SRP1       
+	00202: SHP[rp1,zp0] 
+	00203: MDAP[rd]   
+	00204: SRP0       
+	00205: ALIGNRP    
+	00206: SVTCA[y-axis] 
+	00207: MIAP[rd+ci] 
+	00208: MIRP[srp0,md,rd,1] 
+	00209: ALIGNRP    
+	00210: MIAP[rd+ci] 
+	00211: IP         
+	00212: MIAP[rd+ci] 
+	00213: MIRP[nrp0,md,rd,1] 
+	00214: SRP1       
+	00215: SLOOP      
+	00216: IP         
+	00217: CALL       
+	00218: CALL       
+	00219: CALL       
+	00220: SRP1       
+	00221: SHP[rp1,zp0] 
+	00222: MDAP[rd]   
+	00223: DELTAP1    
+	00224: MIRP[nrp0,md,rd,1] 
+	00225: SRP1       
+	00226: SHP[rp1,zp0] 
+	00227: SRP2       
+	00228: IP         
+	00229: IUP[y]     
+	00230: IUP[x]     
+	00231: SVTCA[x-axis] 
+	00232: CALL       
+	00233: CALL       
+	00234: DELTAP1    
+	00235: CALL       
+	00236: CALL       
+	00237: SVTCA[y-axis] 
+	00238: CALL       
+	00239: CALL       
+	00240: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:                      Y-Short X-Short On
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual               Y-Short         On
+	 13:        XDual         Y-Short         On
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short         On
+	 28:  YDual                               On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short On
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:        XDual         Y-Short X-Short On
+	 38:                      Y-Short X-Short Off
+	 39:                      Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:        XDual         Y-Short X-Short On
+	 43:        XDual         Y-Short X-Short Off
+	 44:  YDual XDual                 X-Short On
+	 45:                                      On
+	 46:        XDual         Y-Short         On
+	 47:                      Y-Short X-Short Off
+	 48:                      Y-Short X-Short On
+	 49:                      Y-Short X-Short Off
+	 50:                      Y-Short X-Short On
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short X-Short Off
+	 54:  YDual XDual         Y-Short X-Short On
+	 55:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1617,   467)  ->  Abs (  1617,   467)
+	  1: Rel (   -70,   106)  ->  Abs (  1547,   573)
+	  2: Rel (  -180,   157)  ->  Abs (  1367,   730)
+	  3: Rel (  -153,    91)  ->  Abs (  1214,   821)
+	  4: Rel (   -33,   -31)  ->  Abs (  1181,   790)
+	  5: Rel (  -118,    90)  ->  Abs (  1063,   880)
+	  6: Rel (   -62,    52)  ->  Abs (  1001,   932)
+	  7: Rel (     0,    29)  ->  Abs (  1001,   961)
+	  8: Rel (     0,   172)  ->  Abs (  1001,  1133)
+	  9: Rel (    84,    98)  ->  Abs (  1085,  1231)
+	 10: Rel (    78,    90)  ->  Abs (  1163,  1321)
+	 11: Rel (   191,    72)  ->  Abs (  1354,  1393)
+	 12: Rel (   282,   110)  ->  Abs (  1636,  1503)
+	 13: Rel (     0,  -173)  ->  Abs (  1636,  1330)
+	 14: Rel (  -209,   -70)  ->  Abs (  1427,  1260)
+	 15: Rel (  -125,   -41)  ->  Abs (  1302,  1219)
+	 16: Rel (   -77,   -34)  ->  Abs (  1225,  1185)
+	 17: Rel (   -98,   -43)  ->  Abs (  1127,  1142)
+	 18: Rel (     0,   -23)  ->  Abs (  1127,  1119)
+	 19: Rel (     0,   -23)  ->  Abs (  1127,  1096)
+	 20: Rel (    64,   -48)  ->  Abs (  1191,  1048)
+	 21: Rel (    40,   -30)  ->  Abs (  1231,  1018)
+	 22: Rel (    41,   -30)  ->  Abs (  1272,   988)
+	 23: Rel (   152,  -115)  ->  Abs (  1424,   873)
+	 24: Rel (   113,  -126)  ->  Abs (  1537,   747)
+	 25: Rel (   122,  -135)  ->  Abs (  1659,   612)
+	 26: Rel (    74,  -145)  ->  Abs (  1733,   467)
+	 27: Rel (     0,  -174)  ->  Abs (  1733,   293)
+	 28: Rel ( -1195,     0)  ->  Abs (   538,   293)
+	 29: Rel (  -239,     0)  ->  Abs (   299,   293)
+	 30: Rel (  -101,    57)  ->  Abs (   198,   350)
+	 31: Rel (  -108,    61)  ->  Abs (    90,   411)
+	 32: Rel (     0,   147)  ->  Abs (    90,   558)
+	 33: Rel (     0,    88)  ->  Abs (    90,   646)
+	 34: Rel (    47,   112)  ->  Abs (   137,   758)
+	 35: Rel (    13,    31)  ->  Abs (   150,   789)
+	 36: Rel (    42,    84)  ->  Abs (   192,   873)
+	 37: Rel (    34,   -20)  ->  Abs (   226,   853)
+	 38: Rel (   -34,   -78)  ->  Abs (   192,   775)
+	 39: Rel (   -21,   -84)  ->  Abs (   171,   691)
+	 40: Rel (     0,   -38)  ->  Abs (   171,   653)
+	 41: Rel (     0,  -109)  ->  Abs (   171,   544)
+	 42: Rel (   115,   -44)  ->  Abs (   286,   500)
+	 43: Rel (    86,   -33)  ->  Abs (   372,   467)
+	 44: Rel (   166,     0)  ->  Abs (   538,   467)
+	 45: Rel (  1098,  1309)  ->  Abs (  1636,  1776)
+	 46: Rel (     0,  -169)  ->  Abs (  1636,  1607)
+	 47: Rel (  -216,   -79)  ->  Abs (  1420,  1528)
+	 48: Rel (  -184,   -89)  ->  Abs (  1236,  1439)
+	 49: Rel (  -163,   -78)  ->  Abs (  1073,  1361)
+	 50: Rel (   -93,   -63)  ->  Abs (   980,  1298)
+	 51: Rel (     0,   106)  ->  Abs (   980,  1404)
+	 52: Rel (    32,    36)  ->  Abs (  1012,  1440)
+	 53: Rel (   192,   126)  ->  Abs (  1204,  1566)
+	 54: Rel (   134,    70)  ->  Abs (  1338,  1636)
+	 55: Rel (   150,    79)  ->  Abs (  1488,  1715)
+
+	Glyph 818: off = 0x000249D0, len = 548
+	  numberOfContours:	2
+	  xMin:			90
+	  yMin:			293
+	  xMax:			1980
+	  yMax:			1776
+
+	EndPoints
+	---------
+	  0:  69
+	  1:  80
+
+	  Length of Instructions:	307
+	00000: NPUSHB      (16):    73     8    19    21    52    72    32    10    11    52 
+	                            79    32    10    11    52    42 
+	00018: PUSHW[1]            -42 
+	00021: PUSHB[4]             16    17    52    33 
+	00026: PUSHW[1]            -16 
+	00029: PUSHB[4]             15    17    52    47 
+	00034: PUSHW[1]            -32 
+	00037: PUSHB[4]             15    17    52    44 
+	00042: PUSHW[1]            -32 
+	00045: PUSHB[4]             15    17    52    48 
+	00050: PUSHW[1]            -32 
+	00053: PUSHB[4]             13    17    52    46 
+	00058: PUSHW[1]            -32 
+	00061: NPUSHB      (21):    13    17    52    59    27   107    27   137    61     3 
+	                            31    32     9    15    52    19    32    15    17    52 
+	                            14 
+	00084: PUSHW[1]            -32 
+	00087: PUSHB[8]             16    17    52    76    35    75    34    70 
+	00096: PUSHW[1]            751 
+	00099: PUSHB[7]             15    71     1    71    71    34    40 
+	00107: PUSHW[1]            -32 
+	00110: PUSHB[4]             15    17    52    40 
+	00115: PUSHW[1]            -36 
+	00118: PUSHB[4]             13    14    52    40 
+	00123: PUSHW[1]            -16 
+	00126: NPUSHB      (11):    10    12    52    65    26    25    29    40     5    16 
+	                            35 
+	00139: NPUSHW      (12):   751    34   779     9     8   777    55    16   751    56 
+	                             0   747 
+	00165: NPUSHB       (9):    71    35    75    75    29    25    26    21    29 
+	00176: PUSHW[1]            755 
+	00179: NPUSHB      (13):    15    40    95    40     2    40    40    21    12    35 
+	                            35    56    21 
+	00194: PUSHW[1]            771 
+	00197: PUSHB[5]             64    65    65    12    56 
+	00203: PUSHW[7]            752    82     9   763    32     8   -64 
+	00218: PUSHB[6]              9    11    52     8     8    12 
+	00225: PUSHW[3]            771     4   298 
+	00232: SCANCTRL   
+	00233: MDAP[rd]   
+	00234: MIRP[srp0,md,rd,1] 
+	00235: SHP[rp2,zp1] 
+	00236: RTHG       
+	00237: MDAP[rd]   
+	00238: CALL       
+	00239: SMD        
+	00240: MIRP[nrp0,md,rd,1] 
+	00241: RTG        
+	00242: SRP0       
+	00243: MIRP[nrp0,nmd,rd,1] 
+	00244: SRP1       
+	00245: IP         
+	00246: MDAP[rd]   
+	00247: SMD        
+	00248: MIRP[nrp0,md,rd,1] 
+	00249: SRP2       
+	00250: IP         
+	00251: MDAP[rd]   
+	00252: SRP1       
+	00253: SRP2       
+	00254: IP         
+	00255: MDAP[rd]   
+	00256: DELTAP1    
+	00257: MIRP[nrp0,md,rd,1] 
+	00258: SRP2       
+	00259: IP         
+	00260: IP         
+	00261: SRP1       
+	00262: SHP[rp1,zp0] 
+	00263: MDAP[rd]   
+	00264: SRP0       
+	00265: ALIGNRP    
+	00266: SVTCA[y-axis] 
+	00267: MIAP[rd+ci] 
+	00268: ALIGNRP    
+	00269: MIRP[srp0,md,rd,1] 
+	00270: ALIGNRP    
+	00271: MIAP[rd+ci] 
+	00272: IP         
+	00273: MIAP[rd+ci] 
+	00274: MIRP[nrp0,md,rd,1] 
+	00275: SRP1       
+	00276: SLOOP      
+	00277: IP         
+	00278: CALL       
+	00279: CALL       
+	00280: CALL       
+	00281: SRP1       
+	00282: SHP[rp1,zp0] 
+	00283: MDAP[rd]   
+	00284: DELTAP1    
+	00285: MIRP[nrp0,md,rd,1] 
+	00286: SRP1       
+	00287: SHP[rp1,zp0] 
+	00288: SRP2       
+	00289: IP         
+	00290: IUP[y]     
+	00291: IUP[x]     
+	00292: SVTCA[x-axis] 
+	00293: CALL       
+	00294: CALL       
+	00295: CALL       
+	00296: DELTAP1    
+	00297: CALL       
+	00298: CALL       
+	00299: SVTCA[y-axis] 
+	00300: CALL       
+	00301: CALL       
+	00302: CALL       
+	00303: CALL       
+	00304: CALL       
+	00305: CALL       
+	00306: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual                               On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:                      Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual               Y-Short         On
+	 35:        XDual         Y-Short         On
+	 36:                      Y-Short X-Short On
+	 37:                      Y-Short X-Short Off
+	 38:                      Y-Short X-Short On
+	 39:                      Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:        XDual         Y-Short X-Short On
+	 43:        XDual         Y-Short X-Short Off
+	 44:        XDual         Y-Short X-Short On
+	 45:        XDual         Y-Short X-Short Off
+	 46:        XDual         Y-Short X-Short On
+	 47:        XDual         Y-Short X-Short Off
+	 48:        XDual         Y-Short X-Short On
+	 49:        XDual         Y-Short X-Short Off
+	 50:        XDual         Y-Short X-Short On
+	 51:        XDual         Y-Short X-Short Off
+	 52:        XDual         Y-Short X-Short On
+	 53:        XDual         Y-Short X-Short Off
+	 54:  YDual XDual                 X-Short On
+	 55:  YDual XDual                 X-Short On
+	 56:        XDual         Y-Short         On
+	 57:  YDual                       X-Short On
+	 58:  YDual                       X-Short Off
+	 59:  YDual               Y-Short X-Short On
+	 60:  YDual               Y-Short X-Short Off
+	 61:  YDual               Y-Short X-Short On
+	 62:  YDual               Y-Short X-Short Off
+	 63:  YDual               Y-Short X-Short On
+	 64:  YDual               Y-Short X-Short Off
+	 65:  YDual               Y-Short X-Short On
+	 66:        XDual         Y-Short         Off
+	 67:                      Y-Short X-Short On
+	 68:                      Y-Short X-Short Off
+	 69:  YDual                       X-Short On
+	 70:                                      On
+	 71:        XDual         Y-Short         On
+	 72:                      Y-Short X-Short Off
+	 73:                      Y-Short X-Short On
+	 74:                      Y-Short X-Short Off
+	 75:                      Y-Short X-Short On
+	 76:  YDual XDual         Y-Short         On
+	 77:  YDual XDual         Y-Short X-Short Off
+	 78:  YDual XDual         Y-Short X-Short Off
+	 79:  YDual XDual         Y-Short X-Short On
+	 80:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   538,   293)  ->  Abs (   538,   293)
+	  1: Rel (  -239,     0)  ->  Abs (   299,   293)
+	  2: Rel (  -101,    57)  ->  Abs (   198,   350)
+	  3: Rel (  -108,    61)  ->  Abs (    90,   411)
+	  4: Rel (     0,   147)  ->  Abs (    90,   558)
+	  5: Rel (     0,    88)  ->  Abs (    90,   646)
+	  6: Rel (    47,   112)  ->  Abs (   137,   758)
+	  7: Rel (    13,    31)  ->  Abs (   150,   789)
+	  8: Rel (    42,    84)  ->  Abs (   192,   873)
+	  9: Rel (    34,   -20)  ->  Abs (   226,   853)
+	 10: Rel (   -34,   -78)  ->  Abs (   192,   775)
+	 11: Rel (   -21,   -84)  ->  Abs (   171,   691)
+	 12: Rel (     0,   -38)  ->  Abs (   171,   653)
+	 13: Rel (     0,  -109)  ->  Abs (   171,   544)
+	 14: Rel (   115,   -44)  ->  Abs (   286,   500)
+	 15: Rel (    86,   -33)  ->  Abs (   372,   467)
+	 16: Rel (   166,     0)  ->  Abs (   538,   467)
+	 17: Rel (   426,     0)  ->  Abs (   964,   467)
+	 18: Rel (   159,     0)  ->  Abs (  1123,   467)
+	 19: Rel (   108,    41)  ->  Abs (  1231,   508)
+	 20: Rel (   129,    49)  ->  Abs (  1360,   557)
+	 21: Rel (     0,    89)  ->  Abs (  1360,   646)
+	 22: Rel (     0,    67)  ->  Abs (  1360,   713)
+	 23: Rel (   -49,    46)  ->  Abs (  1311,   759)
+	 24: Rel (   -25,    24)  ->  Abs (  1286,   783)
+	 25: Rel (   -72,    38)  ->  Abs (  1214,   821)
+	 26: Rel (   -33,   -31)  ->  Abs (  1181,   790)
+	 27: Rel (  -118,    90)  ->  Abs (  1063,   880)
+	 28: Rel (   -62,    52)  ->  Abs (  1001,   932)
+	 29: Rel (     0,    29)  ->  Abs (  1001,   961)
+	 30: Rel (     0,   172)  ->  Abs (  1001,  1133)
+	 31: Rel (    84,    98)  ->  Abs (  1085,  1231)
+	 32: Rel (    78,    90)  ->  Abs (  1163,  1321)
+	 33: Rel (   191,    72)  ->  Abs (  1354,  1393)
+	 34: Rel (   282,   110)  ->  Abs (  1636,  1503)
+	 35: Rel (     0,  -173)  ->  Abs (  1636,  1330)
+	 36: Rel (  -209,   -70)  ->  Abs (  1427,  1260)
+	 37: Rel (  -171,   -58)  ->  Abs (  1256,  1202)
+	 38: Rel (   -70,   -35)  ->  Abs (  1186,  1167)
+	 39: Rel (   -59,   -30)  ->  Abs (  1127,  1137)
+	 40: Rel (     0,   -18)  ->  Abs (  1127,  1119)
+	 41: Rel (     0,   -23)  ->  Abs (  1127,  1096)
+	 42: Rel (    64,   -48)  ->  Abs (  1191,  1048)
+	 43: Rel (    40,   -30)  ->  Abs (  1231,  1018)
+	 44: Rel (    41,   -30)  ->  Abs (  1272,   988)
+	 45: Rel (    88,   -67)  ->  Abs (  1360,   921)
+	 46: Rel (    71,   -65)  ->  Abs (  1431,   856)
+	 47: Rel (    61,   -56)  ->  Abs (  1492,   800)
+	 48: Rel (    53,   -60)  ->  Abs (  1545,   740)
+	 49: Rel (    33,   -37)  ->  Abs (  1578,   703)
+	 50: Rel (    73,   -90)  ->  Abs (  1651,   613)
+	 51: Rel (    47,   -57)  ->  Abs (  1698,   556)
+	 52: Rel (    45,   -38)  ->  Abs (  1743,   518)
+	 53: Rel (    61,   -51)  ->  Abs (  1804,   467)
+	 54: Rel (    45,     0)  ->  Abs (  1849,   467)
+	 55: Rel (   131,     0)  ->  Abs (  1980,   467)
+	 56: Rel (     0,  -174)  ->  Abs (  1980,   293)
+	 57: Rel (  -123,     0)  ->  Abs (  1857,   293)
+	 58: Rel (   -82,     0)  ->  Abs (  1775,   293)
+	 59: Rel (   -90,    84)  ->  Abs (  1685,   377)
+	 60: Rel (   -44,    41)  ->  Abs (  1641,   418)
+	 61: Rel (   -81,   105)  ->  Abs (  1560,   523)
+	 62: Rel (   -49,    63)  ->  Abs (  1511,   586)
+	 63: Rel (   -11,    13)  ->  Abs (  1500,   599)
+	 64: Rel (   -25,    30)  ->  Abs (  1475,   629)
+	 65: Rel (   -51,    49)  ->  Abs (  1424,   678)
+	 66: Rel (     0,  -178)  ->  Abs (  1424,   500)
+	 67: Rel (  -111,  -100)  ->  Abs (  1313,   400)
+	 68: Rel (  -119,  -107)  ->  Abs (  1194,   293)
+	 69: Rel (  -235,     0)  ->  Abs (   959,   293)
+	 70: Rel (   677,  1483)  ->  Abs (  1636,  1776)
+	 71: Rel (     0,  -169)  ->  Abs (  1636,  1607)
+	 72: Rel (  -216,   -79)  ->  Abs (  1420,  1528)
+	 73: Rel (  -184,   -89)  ->  Abs (  1236,  1439)
+	 74: Rel (  -163,   -78)  ->  Abs (  1073,  1361)
+	 75: Rel (   -93,   -63)  ->  Abs (   980,  1298)
+	 76: Rel (     0,   106)  ->  Abs (   980,  1404)
+	 77: Rel (    32,    36)  ->  Abs (  1012,  1440)
+	 78: Rel (   192,   126)  ->  Abs (  1204,  1566)
+	 79: Rel (   134,    70)  ->  Abs (  1338,  1636)
+	 80: Rel (   150,    79)  ->  Abs (  1488,  1715)
+
+	Glyph 819: off = 0x00024BF4, len = 346
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			293
+	  xMax:			877
+	  yMax:			1794
+
+	EndPoints
+	---------
+	  0:  29
+	  1:  40
+
+	  Length of Instructions:	210
+	00000: NPUSHB      (14):   200    33     1    32    32    10    11    52    39    32 
+	                            10    11    52    25 
+	00016: PUSHW[1]            -64 
+	00019: NPUSHB      (23):    16    17    52    12    32    16    17    52    59     8 
+	                           107     8     2    12    32     9    12    52    36    16 
+	                            35    15    30 
+	00044: PUSHW[1]            751 
+	00047: PUSHB[4]             31    31    15    21 
+	00052: PUSHW[1]            -24 
+	00055: PUSHB[4]             15    17    52    21 
+	00060: PUSHW[1]            -36 
+	00063: PUSHB[4]             13    14    52    21 
+	00068: PUSHW[1]            -16 
+	00071: NPUSHB      (10):    10    12    52     7     6    10    21     4     2    16 
+	00083: PUSHW[8]            751    15   779    29     2   751     1   747 
+	00100: NPUSHB       (9):    31    15    35    35    10     6     7     3    10 
+	00111: PUSHW[1]            755 
+	00114: NPUSHB      (22):    64   111    21   143    21     2    15    21    47    21 
+	                            95    21     3    32    21     1    21    21     1    15 
+	                            15     3 
+	00138: PUSHW[7]            768    32     0   752    42     1   298 
+	00153: SCANCTRL   
+	00154: MDAP[rd]   
+	00155: SRP0       
+	00156: MIRP[srp0,nmd,rd,1] 
+	00157: SMD        
+	00158: RTHG       
+	00159: MIRP[nrp0,md,rd,1] 
+	00160: SHP[rp1,zp0] 
+	00161: RTG        
+	00162: MDAP[rd]   
+	00163: SRP2       
+	00164: IP         
+	00165: MDAP[rd]   
+	00166: DELTAP1    
+	00167: DELTAP1    
+	00168: DELTAP1    
+	00169: SMD        
+	00170: MIRP[nrp0,md,rd,1] 
+	00171: SRP2       
+	00172: IP         
+	00173: IP         
+	00174: SRP1       
+	00175: SHP[rp1,zp0] 
+	00176: MDAP[rd]   
+	00177: SRP0       
+	00178: ALIGNRP    
+	00179: SVTCA[y-axis] 
+	00180: MIAP[rd+ci] 
+	00181: MIRP[srp0,md,rd,1] 
+	00182: ALIGNRP    
+	00183: MIAP[rd+ci] 
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: SRP1       
+	00186: SLOOP      
+	00187: IP         
+	00188: CALL       
+	00189: CALL       
+	00190: CALL       
+	00191: SRP1       
+	00192: SHP[rp1,zp0] 
+	00193: MDAP[rd]   
+	00194: MIRP[nrp0,md,rd,1] 
+	00195: SRP1       
+	00196: SHP[rp1,zp0] 
+	00197: SRP2       
+	00198: IP         
+	00199: IUP[y]     
+	00200: IUP[x]     
+	00201: SVTCA[x-axis] 
+	00202: CALL       
+	00203: DELTAP1    
+	00204: CALL       
+	00205: CALL       
+	00206: SVTCA[y-axis] 
+	00207: CALL       
+	00208: CALL       
+	00209: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:                      Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual               Y-Short         On
+	 16:        XDual         Y-Short         On
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:        XDual         Y-Short X-Short On
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short On
+	 30:                              X-Short On
+	 31:        XDual         Y-Short         On
+	 32:                      Y-Short X-Short Off
+	 33:                      Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short On
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   877,   293)  ->  Abs (   877,   293)
+	  1: Rel (  -877,     0)  ->  Abs (     0,   293)
+	  2: Rel (     0,   174)  ->  Abs (     0,   467)
+	  3: Rel (   761,     0)  ->  Abs (   761,   467)
+	  4: Rel (   -70,   106)  ->  Abs (   691,   573)
+	  5: Rel (  -180,   157)  ->  Abs (   511,   730)
+	  6: Rel (  -153,    91)  ->  Abs (   358,   821)
+	  7: Rel (   -33,   -31)  ->  Abs (   325,   790)
+	  8: Rel (  -118,    90)  ->  Abs (   207,   880)
+	  9: Rel (   -62,    52)  ->  Abs (   145,   932)
+	 10: Rel (     0,    29)  ->  Abs (   145,   961)
+	 11: Rel (     0,   172)  ->  Abs (   145,  1133)
+	 12: Rel (    84,    98)  ->  Abs (   229,  1231)
+	 13: Rel (    78,    90)  ->  Abs (   307,  1321)
+	 14: Rel (   191,    72)  ->  Abs (   498,  1393)
+	 15: Rel (   282,   110)  ->  Abs (   780,  1503)
+	 16: Rel (     0,  -173)  ->  Abs (   780,  1330)
+	 17: Rel (  -209,   -70)  ->  Abs (   571,  1260)
+	 18: Rel (  -125,   -41)  ->  Abs (   446,  1219)
+	 19: Rel (   -77,   -34)  ->  Abs (   369,  1185)
+	 20: Rel (   -98,   -43)  ->  Abs (   271,  1142)
+	 21: Rel (     0,   -23)  ->  Abs (   271,  1119)
+	 22: Rel (     0,   -23)  ->  Abs (   271,  1096)
+	 23: Rel (    64,   -48)  ->  Abs (   335,  1048)
+	 24: Rel (    40,   -30)  ->  Abs (   375,  1018)
+	 25: Rel (    41,   -30)  ->  Abs (   416,   988)
+	 26: Rel (   152,  -115)  ->  Abs (   568,   873)
+	 27: Rel (   113,  -126)  ->  Abs (   681,   747)
+	 28: Rel (   122,  -135)  ->  Abs (   803,   612)
+	 29: Rel (    74,  -145)  ->  Abs (   877,   467)
+	 30: Rel (   -97,  1327)  ->  Abs (   780,  1794)
+	 31: Rel (     0,  -169)  ->  Abs (   780,  1625)
+	 32: Rel (  -216,   -79)  ->  Abs (   564,  1546)
+	 33: Rel (  -184,   -89)  ->  Abs (   380,  1457)
+	 34: Rel (  -163,   -78)  ->  Abs (   217,  1379)
+	 35: Rel (   -93,   -63)  ->  Abs (   124,  1316)
+	 36: Rel (     0,   106)  ->  Abs (   124,  1422)
+	 37: Rel (    32,    36)  ->  Abs (   156,  1458)
+	 38: Rel (   192,   126)  ->  Abs (   348,  1584)
+	 39: Rel (   134,    70)  ->  Abs (   482,  1654)
+	 40: Rel (   150,    79)  ->  Abs (   632,  1733)
+
+	Glyph 820: off = 0x00024D4E, len = 482
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1124
+	  yMax:			1794
+
+	EndPoints
+	---------
+	  0:  54
+	  1:  65
+
+	  Length of Instructions:	283
+	00000: PUSHB[4]            200    58     1    65 
+	00005: PUSHW[1]            -32 
+	00008: NPUSHB      (19):    16    17    52    63    32    13    14    52    57    32 
+	                            10    11    52    64    32    10    11    52    47 
+	00029: PUSHW[1]            -42 
+	00032: PUSHB[4]             13    17    52    38 
+	00037: PUSHW[1]            -16 
+	00040: PUSHB[4]             13    17    52    52 
+	00045: PUSHW[1]            -32 
+	00048: PUSHB[4]             15    17    52    49 
+	00053: PUSHW[1]            -32 
+	00056: PUSHB[4]             13    17    52    53 
+	00061: PUSHW[1]            -32 
+	00064: PUSHB[4]             13    17    52    51 
+	00069: PUSHW[1]            -32 
+	00072: NPUSHB      (35):    13    17    52    84    43    84    50     2    68    43 
+	                            68    50     2    59    32   107    32   137    11     3 
+	                            36    32     9    15    52    24    32    15    17    52 
+	                            61    40    60    39    55 
+	00109: PUSHW[1]            751 
+	00112: PUSHB[4]             56    56    39    45 
+	00117: PUSHW[1]            -32 
+	00120: PUSHB[4]             15    17    52    45 
+	00125: PUSHW[1]            -36 
+	00128: PUSHB[4]             13    14    52    45 
+	00133: PUSHW[1]            -16 
+	00136: NPUSHB      (14):    10    12    52     0    45     1    15    31    30    34 
+	                            45     5    21    40 
+	00152: NPUSHW       (9):   751    39   779     5    21   751     6    20   747 
+	00172: NPUSHB       (9):    56    40    60    60    34    30    31    26    34 
+	00183: PUSHW[1]            755 
+	00186: NPUSHB      (11):    15    45     1    45    45    26    20    40    40     6 
+	                            26 
+	00199: PUSHW[1]            771 
+	00202: PUSHB[4]             15    15    20     6 
+	00207: PUSHW[4]            752    67    20   298 
+	00216: SCANCTRL   
+	00217: MDAP[rd]   
+	00218: SRP0       
+	00219: MIRP[nrp0,nmd,rd,1] 
+	00220: SRP1       
+	00221: IP         
+	00222: MDAP[rd]   
+	00223: MIRP[nrp0,md,rd,1] 
+	00224: SRP2       
+	00225: IP         
+	00226: MDAP[rd]   
+	00227: SRP1       
+	00228: SRP2       
+	00229: IP         
+	00230: MDAP[rd]   
+	00231: DELTAP1    
+	00232: MIRP[nrp0,md,rd,1] 
+	00233: SRP2       
+	00234: IP         
+	00235: IP         
+	00236: SRP1       
+	00237: SHP[rp1,zp0] 
+	00238: MDAP[rd]   
+	00239: SRP0       
+	00240: ALIGNRP    
+	00241: SVTCA[y-axis] 
+	00242: MIAP[rd+ci] 
+	00243: ALIGNRP    
+	00244: MIRP[srp0,md,rd,1] 
+	00245: ALIGNRP    
+	00246: MIAP[rd+ci] 
+	00247: MIRP[nrp0,md,rd,1] 
+	00248: SRP1       
+	00249: SLOOP      
+	00250: IP         
+	00251: DELTAP1    
+	00252: CALL       
+	00253: CALL       
+	00254: CALL       
+	00255: SRP1       
+	00256: SHP[rp1,zp0] 
+	00257: MDAP[rd]   
+	00258: MIRP[nrp0,md,rd,1] 
+	00259: SRP1       
+	00260: SHP[rp1,zp0] 
+	00261: SRP2       
+	00262: IP         
+	00263: IUP[y]     
+	00264: IUP[x]     
+	00265: SVTCA[x-axis] 
+	00266: CALL       
+	00267: CALL       
+	00268: DELTAP1    
+	00269: DELTAP1    
+	00270: DELTAP1    
+	00271: CALL       
+	00272: CALL       
+	00273: SVTCA[y-axis] 
+	00274: CALL       
+	00275: CALL       
+	00276: CALL       
+	00277: CALL       
+	00278: CALL       
+	00279: CALL       
+	00280: CALL       
+	00281: CALL       
+	00282: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual         Y-Short         On
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short On
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual               Y-Short X-Short On
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual               Y-Short X-Short On
+	 31:                      Y-Short X-Short On
+	 32:  YDual               Y-Short X-Short On
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:  YDual               Y-Short         On
+	 40:        XDual         Y-Short         On
+	 41:                      Y-Short X-Short On
+	 42:                      Y-Short X-Short Off
+	 43:                      Y-Short X-Short On
+	 44:                      Y-Short X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         Off
+	 47:        XDual         Y-Short X-Short On
+	 48:        XDual         Y-Short X-Short Off
+	 49:        XDual         Y-Short X-Short On
+	 50:        XDual         Y-Short X-Short Off
+	 51:        XDual         Y-Short X-Short On
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short X-Short On
+	 54:        XDual         Y-Short X-Short Off
+	 55:        XDual                 X-Short On
+	 56:        XDual         Y-Short         On
+	 57:                      Y-Short X-Short Off
+	 58:                      Y-Short X-Short On
+	 59:                      Y-Short X-Short Off
+	 60:                      Y-Short X-Short On
+	 61:  YDual XDual         Y-Short         On
+	 62:  YDual XDual         Y-Short X-Short Off
+	 63:  YDual XDual         Y-Short X-Short Off
+	 64:  YDual XDual         Y-Short X-Short On
+	 65:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   795,   613)  ->  Abs (   795,   613)
+	  1: Rel (    47,   -57)  ->  Abs (   842,   556)
+	  2: Rel (    45,   -38)  ->  Abs (   887,   518)
+	  3: Rel (    61,   -51)  ->  Abs (   948,   467)
+	  4: Rel (    45,     0)  ->  Abs (   993,   467)
+	  5: Rel (   131,     0)  ->  Abs (  1124,   467)
+	  6: Rel (     0,  -174)  ->  Abs (  1124,   293)
+	  7: Rel (  -123,     0)  ->  Abs (  1001,   293)
+	  8: Rel (   -82,     0)  ->  Abs (   919,   293)
+	  9: Rel (   -90,    84)  ->  Abs (   829,   377)
+	 10: Rel (   -44,    41)  ->  Abs (   785,   418)
+	 11: Rel (   -81,   105)  ->  Abs (   704,   523)
+	 12: Rel (   -49,    63)  ->  Abs (   655,   586)
+	 13: Rel (   -11,    13)  ->  Abs (   644,   599)
+	 14: Rel (   -25,    30)  ->  Abs (   619,   629)
+	 15: Rel (   -51,    49)  ->  Abs (   568,   678)
+	 16: Rel (     0,  -178)  ->  Abs (   568,   500)
+	 17: Rel (  -111,  -100)  ->  Abs (   457,   400)
+	 18: Rel (  -119,  -107)  ->  Abs (   338,   293)
+	 19: Rel (  -235,     0)  ->  Abs (   103,   293)
+	 20: Rel (  -103,     0)  ->  Abs (     0,   293)
+	 21: Rel (     0,   174)  ->  Abs (     0,   467)
+	 22: Rel (   108,     0)  ->  Abs (   108,   467)
+	 23: Rel (   159,     0)  ->  Abs (   267,   467)
+	 24: Rel (   108,    41)  ->  Abs (   375,   508)
+	 25: Rel (   129,    49)  ->  Abs (   504,   557)
+	 26: Rel (     0,    89)  ->  Abs (   504,   646)
+	 27: Rel (     0,    67)  ->  Abs (   504,   713)
+	 28: Rel (   -49,    46)  ->  Abs (   455,   759)
+	 29: Rel (   -25,    24)  ->  Abs (   430,   783)
+	 30: Rel (   -72,    38)  ->  Abs (   358,   821)
+	 31: Rel (   -33,   -31)  ->  Abs (   325,   790)
+	 32: Rel (  -118,    90)  ->  Abs (   207,   880)
+	 33: Rel (   -62,    52)  ->  Abs (   145,   932)
+	 34: Rel (     0,    29)  ->  Abs (   145,   961)
+	 35: Rel (     0,   172)  ->  Abs (   145,  1133)
+	 36: Rel (    84,    98)  ->  Abs (   229,  1231)
+	 37: Rel (    78,    90)  ->  Abs (   307,  1321)
+	 38: Rel (   191,    72)  ->  Abs (   498,  1393)
+	 39: Rel (   282,   110)  ->  Abs (   780,  1503)
+	 40: Rel (     0,  -173)  ->  Abs (   780,  1330)
+	 41: Rel (  -209,   -70)  ->  Abs (   571,  1260)
+	 42: Rel (  -125,   -41)  ->  Abs (   446,  1219)
+	 43: Rel (   -77,   -34)  ->  Abs (   369,  1185)
+	 44: Rel (   -98,   -43)  ->  Abs (   271,  1142)
+	 45: Rel (     0,   -23)  ->  Abs (   271,  1119)
+	 46: Rel (     0,   -23)  ->  Abs (   271,  1096)
+	 47: Rel (    64,   -48)  ->  Abs (   335,  1048)
+	 48: Rel (    40,   -30)  ->  Abs (   375,  1018)
+	 49: Rel (    41,   -30)  ->  Abs (   416,   988)
+	 50: Rel (    88,   -67)  ->  Abs (   504,   921)
+	 51: Rel (    71,   -65)  ->  Abs (   575,   856)
+	 52: Rel (    61,   -56)  ->  Abs (   636,   800)
+	 53: Rel (    53,   -60)  ->  Abs (   689,   740)
+	 54: Rel (    33,   -37)  ->  Abs (   722,   703)
+	 55: Rel (    58,  1091)  ->  Abs (   780,  1794)
+	 56: Rel (     0,  -169)  ->  Abs (   780,  1625)
+	 57: Rel (  -216,   -79)  ->  Abs (   564,  1546)
+	 58: Rel (  -184,   -89)  ->  Abs (   380,  1457)
+	 59: Rel (  -163,   -78)  ->  Abs (   217,  1379)
+	 60: Rel (   -93,   -63)  ->  Abs (   124,  1316)
+	 61: Rel (     0,   106)  ->  Abs (   124,  1422)
+	 62: Rel (    32,    36)  ->  Abs (   156,  1458)
+	 63: Rel (   192,   126)  ->  Abs (   348,  1584)
+	 64: Rel (   134,    70)  ->  Abs (   482,  1654)
+	 65: Rel (   150,    79)  ->  Abs (   632,  1733)
+
+	Glyph 821: off = 0x00024F30, len = 324
+	  numberOfContours:	1
+	  xMin:			50
+	  yMin:			-89
+	  xMax:			1241
+	  yMax:			946
+
+	EndPoints
+	---------
+	  0:  59
+
+	  Length of Instructions:	153
+	00000: PUSHW[2]             38   -42 
+	00005: NPUSHB      (19):    14    17    52    41    52    14    17    52    42    52 
+	                            11    17    52     3     6    14    33    39    32 
+	00026: NPUSHW       (9):   775     6   751    57   772    39   751    22   -64 
+	00046: PUSHB[4]              9    11    52    22 
+	00051: PUSHW[7]            781    14   751    48   747    51   780 
+	00066: NPUSHB       (9):    10    10    44    36     3    18     0     0    44 
+	00077: PUSHW[1]            765 
+	00080: PUSHB[5]             64    18    18    61    33 
+	00086: PUSHW[4]            763    32    32   -64 
+	00095: PUSHB[6]              9    11    52    32    32    36 
+	00102: PUSHW[3]            780    26   313 
+	00109: SCANCTRL   
+	00110: MDAP[rd]   
+	00111: MIRP[srp0,md,rd,1] 
+	00112: SHP[rp2,zp1] 
+	00113: RTHG       
+	00114: MDAP[rd]   
+	00115: CALL       
+	00116: SMD        
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: SRP1       
+	00119: SHP[rp1,zp0] 
+	00120: RTG        
+	00121: MDAP[rd]   
+	00122: SMD        
+	00123: MIRP[nrp0,md,rd,1] 
+	00124: SHP[rp1,zp0] 
+	00125: MDAP[rd]   
+	00126: SRP2       
+	00127: IP         
+	00128: SRP1       
+	00129: SRP2       
+	00130: IP         
+	00131: MDAP[rd]   
+	00132: MIRP[nrp0,md,rd,1] 
+	00133: SVTCA[y-axis] 
+	00134: MIAP[rd+ci] 
+	00135: MIRP[nrp0,md,rd,1] 
+	00136: MIAP[rd+ci] 
+	00137: CALL       
+	00138: MIRP[nrp0,md,rd,1] 
+	00139: MIAP[rd+ci] 
+	00140: MIRP[nrp0,md,rd,1] 
+	00141: MIAP[rd+ci] 
+	00142: SRP2       
+	00143: IP         
+	00144: SRP1       
+	00145: SRP2       
+	00146: IP         
+	00147: IUP[y]     
+	00148: IUP[x]     
+	00149: SVTCA[x-axis] 
+	00150: CALL       
+	00151: CALL       
+	00152: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:                      Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                               On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:        XDual         Y-Short X-Short Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short On
+	 49:  YDual                       X-Short Off
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:  YDual XDual         Y-Short X-Short Off
+	 55:  YDual XDual         Y-Short X-Short On
+	 56:  YDual XDual         Y-Short X-Short Off
+	 57:  YDual XDual                 X-Short On
+	 58:  YDual XDual                 X-Short Off
+	 59:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1241,   800)  ->  Abs (  1241,   800)
+	  1: Rel (     0,   -32)  ->  Abs (  1241,   768)
+	  2: Rel (   -12,   -67)  ->  Abs (  1229,   701)
+	  3: Rel (    -2,   -14)  ->  Abs (  1227,   687)
+	  4: Rel (   -35,    45)  ->  Abs (  1192,   732)
+	  5: Rel (   -97,    52)  ->  Abs (  1095,   784)
+	  6: Rel (   -50,     0)  ->  Abs (  1045,   784)
+	  7: Rel (   -87,     0)  ->  Abs (   958,   784)
+	  8: Rel (   -96,  -101)  ->  Abs (   862,   683)
+	  9: Rel (   -88,   -93)  ->  Abs (   774,   590)
+	 10: Rel (     0,   -55)  ->  Abs (   774,   535)
+	 11: Rel (     0,   -19)  ->  Abs (   774,   516)
+	 12: Rel (    43,   -19)  ->  Abs (   817,   497)
+	 13: Rel (    53,     0)  ->  Abs (   870,   497)
+	 14: Rel (    80,     0)  ->  Abs (   950,   497)
+	 15: Rel (    72,     0)  ->  Abs (  1022,   497)
+	 16: Rel (    69,    -3)  ->  Abs (  1091,   494)
+	 17: Rel (    96,   -16)  ->  Abs (  1187,   478)
+	 18: Rel (     0,   -65)  ->  Abs (  1187,   413)
+	 19: Rel (     0,  -251)  ->  Abs (  1187,   162)
+	 20: Rel (  -219,  -131)  ->  Abs (   968,    31)
+	 21: Rel (  -201,  -120)  ->  Abs (   767,   -89)
+	 22: Rel (  -343,     0)  ->  Abs (   424,   -89)
+	 23: Rel (  -178,     0)  ->  Abs (   246,   -89)
+	 24: Rel (   -94,    69)  ->  Abs (   152,   -20)
+	 25: Rel (  -102,    75)  ->  Abs (    50,    55)
+	 26: Rel (     0,   151)  ->  Abs (    50,   206)
+	 27: Rel (     0,   104)  ->  Abs (    50,   310)
+	 28: Rel (    34,   114)  ->  Abs (    84,   424)
+	 29: Rel (    26,    87)  ->  Abs (   110,   511)
+	 30: Rel (    46,    95)  ->  Abs (   156,   606)
+	 31: Rel (     3,     6)  ->  Abs (   159,   612)
+	 32: Rel (    60,   113)  ->  Abs (   219,   725)
+	 33: Rel (    42,   -17)  ->  Abs (   261,   708)
+	 34: Rel (   -63,  -112)  ->  Abs (   198,   596)
+	 35: Rel (   -67,  -195)  ->  Abs (   131,   401)
+	 36: Rel (     0,   -75)  ->  Abs (   131,   326)
+	 37: Rel (     0,  -122)  ->  Abs (   131,   204)
+	 38: Rel (   169,  -122)  ->  Abs (   300,    82)
+	 39: Rel (   157,     0)  ->  Abs (   457,    82)
+	 40: Rel (   120,     0)  ->  Abs (   577,    82)
+	 41: Rel (   159,    48)  ->  Abs (   736,   130)
+	 42: Rel (   136,    41)  ->  Abs (   872,   171)
+	 43: Rel (   218,   114)  ->  Abs (  1090,   285)
+	 44: Rel (     0,    27)  ->  Abs (  1090,   312)
+	 45: Rel (     0,    19)  ->  Abs (  1090,   331)
+	 46: Rel (   -25,    12)  ->  Abs (  1065,   343)
+	 47: Rel (   -28,     0)  ->  Abs (  1037,   343)
+	 48: Rel (  -234,     0)  ->  Abs (   803,   343)
+	 49: Rel (   -43,     0)  ->  Abs (   760,   343)
+	 50: Rel (   -66,    62)  ->  Abs (   694,   405)
+	 51: Rel (     0,    49)  ->  Abs (   694,   454)
+	 52: Rel (     0,    67)  ->  Abs (   694,   521)
+	 53: Rel (    55,   115)  ->  Abs (   749,   636)
+	 54: Rel (    60,   125)  ->  Abs (   809,   761)
+	 55: Rel (    85,    84)  ->  Abs (   894,   845)
+	 56: Rel (   102,   101)  ->  Abs (   996,   946)
+	 57: Rel (   103,     0)  ->  Abs (  1099,   946)
+	 58: Rel (    66,     0)  ->  Abs (  1165,   946)
+	 59: Rel (    76,   -80)  ->  Abs (  1241,   866)
+
+	Glyph 822: off = 0x00025074, len = 302
+	  numberOfContours:	1
+	  xMin:			106
+	  yMin:			-225
+	  xMax:			1275
+	  yMax:			517
+
+	EndPoints
+	---------
+	  0:  54
+
+	  Length of Instructions:	144
+	00000: PUSHW[2]             32   -32 
+	00005: NPUSHB       (9):    12    17    52    26    53    25    25    53     6 
+	00016: PUSHW[1]            -64 
+	00019: NPUSHB      (10):     9    10    52     6     6     1    44    44     1    34 
+	00031: PUSHW[3]            751    17   -64 
+	00038: PUSHB[4]              9    13    52    17 
+	00043: PUSHW[7]            782    53   751     1   747    38   780 
+	00058: PUSHB[4]             13    13     0    47 
+	00063: PUSHW[1]            780 
+	00066: PUSHB[5]             64     4     4    30     0 
+	00072: PUSHW[7]            752    56    26   763    32    25   -64 
+	00087: PUSHB[6]              9    11    52    25    25    30 
+	00094: PUSHW[3]            780    21   313 
+	00101: SCANCTRL   
+	00102: MDAP[rd]   
+	00103: MIRP[srp0,md,rd,1] 
+	00104: SHP[rp2,zp1] 
+	00105: RTHG       
+	00106: MDAP[rd]   
+	00107: CALL       
+	00108: SMD        
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: RTG        
+	00111: SRP0       
+	00112: MIRP[nrp0,nmd,rd,0] 
+	00113: SRP1       
+	00114: IP         
+	00115: MDAP[rd]   
+	00116: SMD        
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: SRP2       
+	00119: IP         
+	00120: MDAP[rd]   
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: SVTCA[y-axis] 
+	00123: MIAP[rd+ci] 
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: MIAP[rd+ci] 
+	00126: CALL       
+	00127: MIRP[srp0,md,rd,1] 
+	00128: SRP1       
+	00129: IP         
+	00130: MDAP[rd]   
+	00131: SRP2       
+	00132: IP         
+	00133: MDAP[rd]   
+	00134: CALL       
+	00135: SRP1       
+	00136: SHP[rp1,zp0] 
+	00137: MDAP[rd]   
+	00138: SRP2       
+	00139: IP         
+	00140: IUP[y]     
+	00141: IUP[x]     
+	00142: SVTCA[x-axis] 
+	00143: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                               On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short On
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short On
+	 27:                      Y-Short X-Short Off
+	 28:                      Y-Short X-Short On
+	 29:                      Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:        XDual         Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short Off
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual XDual         Y-Short X-Short On
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual                 X-Short On
+	 54:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1275,   293)  ->  Abs (  1275,   293)
+	  1: Rel (  -175,     0)  ->  Abs (  1100,   293)
+	  2: Rel (  -154,     0)  ->  Abs (   946,   293)
+	  3: Rel (  -155,   -16)  ->  Abs (   791,   277)
+	  4: Rel (     0,   -24)  ->  Abs (   791,   253)
+	  5: Rel (     0,   -33)  ->  Abs (   791,   220)
+	  6: Rel (    93,     0)  ->  Abs (   884,   220)
+	  7: Rel (    41,     0)  ->  Abs (   925,   220)
+	  8: Rel (    48,    -4)  ->  Abs (   973,   216)
+	  9: Rel (    81,    -9)  ->  Abs (  1054,   207)
+	 10: Rel (    48,    -6)  ->  Abs (  1102,   201)
+	 11: Rel (    18,    -9)  ->  Abs (  1120,   192)
+	 12: Rel (    29,   -15)  ->  Abs (  1149,   177)
+	 13: Rel (     0,   -37)  ->  Abs (  1149,   140)
+	 14: Rel (     0,  -187)  ->  Abs (  1149,   -47)
+	 15: Rel (  -123,   -85)  ->  Abs (  1026,  -132)
+	 16: Rel (  -134,   -93)  ->  Abs (   892,  -225)
+	 17: Rel (  -309,     0)  ->  Abs (   583,  -225)
+	 18: Rel (  -215,     0)  ->  Abs (   368,  -225)
+	 19: Rel (  -127,    73)  ->  Abs (   241,  -152)
+	 20: Rel (  -135,    78)  ->  Abs (   106,   -74)
+	 21: Rel (     0,   144)  ->  Abs (   106,    70)
+	 22: Rel (     0,   116)  ->  Abs (   106,   186)
+	 23: Rel (    64,   130)  ->  Abs (   170,   316)
+	 24: Rel (    23,    47)  ->  Abs (   193,   363)
+	 25: Rel (    98,   154)  ->  Abs (   291,   517)
+	 26: Rel (    40,   -20)  ->  Abs (   331,   497)
+	 27: Rel (   -38,   -65)  ->  Abs (   293,   432)
+	 28: Rel (   -37,   -64)  ->  Abs (   256,   368)
+	 29: Rel (   -57,  -110)  ->  Abs (   199,   258)
+	 30: Rel (     0,   -70)  ->  Abs (   199,   188)
+	 31: Rel (     0,  -123)  ->  Abs (   199,    65)
+	 32: Rel (   128,   -64)  ->  Abs (   327,     1)
+	 33: Rel (   122,   -61)  ->  Abs (   449,   -60)
+	 34: Rel (   213,     0)  ->  Abs (   662,   -60)
+	 35: Rel (   143,     0)  ->  Abs (   805,   -60)
+	 36: Rel (   109,    22)  ->  Abs (   914,   -38)
+	 37: Rel (   134,    27)  ->  Abs (  1048,   -11)
+	 38: Rel (     0,    47)  ->  Abs (  1048,    36)
+	 39: Rel (     0,    17)  ->  Abs (  1048,    53)
+	 40: Rel (   -30,    17)  ->  Abs (  1018,    70)
+	 41: Rel (   -35,     0)  ->  Abs (   983,    70)
+	 42: Rel (   -27,     3)  ->  Abs (   956,    73)
+	 43: Rel (  -115,     7)  ->  Abs (   841,    80)
+	 44: Rel (   -18,     0)  ->  Abs (   823,    80)
+	 45: Rel (   -63,     0)  ->  Abs (   760,    80)
+	 46: Rel (   -54,    33)  ->  Abs (   706,   113)
+	 47: Rel (     0,    33)  ->  Abs (   706,   146)
+	 48: Rel (     0,   124)  ->  Abs (   706,   270)
+	 49: Rel (    73,    79)  ->  Abs (   779,   349)
+	 50: Rel (    60,    64)  ->  Abs (   839,   413)
+	 51: Rel (   101,    31)  ->  Abs (   940,   444)
+	 52: Rel (    76,    23)  ->  Abs (  1016,   467)
+	 53: Rel (    84,     0)  ->  Abs (  1100,   467)
+	 54: Rel (   175,     0)  ->  Abs (  1275,   467)
+
+	Glyph 823: off = 0x000251A2, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 824: off = 0x000251CC, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 825: off = 0x000251F6, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 826: off = 0x00025220, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 827: off = 0x0002524A, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 828: off = 0x00025274, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 829: off = 0x0002529E, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 830: off = 0x000252C8, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 831: off = 0x000252F2, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 832: off = 0x0002531C, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 833: off = 0x00025346, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 834: off = 0x00025370, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 835: off = 0x0002539A, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 836: off = 0x000253C4, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 837: off = 0x000253EE, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 838: off = 0x00025418, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 839: off = 0x00025442, len = 572
+	  numberOfContours:	3
+	  xMin:			48
+	  yMin:			1239
+	  xMax:			463
+	  yMax:			1911
+
+	EndPoints
+	---------
+	  0:  45
+	  1:  86
+	  2:  98
+
+	  Length of Instructions:	285
+	00000: NPUSHB       (9):     3    97    10    35     9     9    33    14    43 
+	00011: PUSHW[3]            757    90   -64 
+	00018: PUSHB[6]             11    15    52    90    90    97 
+	00025: PUSHW[1]            757 
+	00028: PUSHB[7]             35    35    20    23    23    33    27 
+	00036: PUSHW[1]            757 
+	00039: PUSHB[3]             20    20    33 
+	00043: PUSHW[1]            757 
+	00046: NPUSHB      (22):    14    14    75    53    70    50    83    84    79    74 
+	                            75    63    70    75    75    64    84    84    64    64 
+	                            70    79 
+	00070: PUSHW[1]            757 
+	00073: PUSHB[3]             50    50    70 
+	00077: PUSHW[3]            757    57   756 
+	00084: NPUSHB      (14):     9     6    97    10    87    35    93    39    33    30 
+	                            17     6     6     0 
+	00100: PUSHW[3]            758    87   -64 
+	00107: PUSHB[6]              9    10    52    87    87    93 
+	00114: PUSHW[1]            758 
+	00117: NPUSHB      (12):    39    64     9    16    52    39    39    30    14    23 
+	                            23    17 
+	00131: PUSHW[1]            758 
+	00134: NPUSHB      (10):    30    30    53    75    74    67    64    63    46    84 
+	00146: PUSHW[1]            761 
+	00149: PUSHB[5]             83    83    75    60    63 
+	00155: PUSHW[1]            761 
+	00158: PUSHB[3]             64    64    75 
+	00162: PUSHW[3]            761    74   -64 
+	00169: PUSHB[4]             21    23    52    74 
+	00174: PUSHW[1]            -64 
+	00177: PUSHB[4]             13    16    52    74 
+	00182: PUSHW[1]            292 
+	00185: SCANCTRL   
+	00186: MDAP[rd]   
+	00187: CALL       
+	00188: CALL       
+	00189: MIRP[nrp0,md,rd,1] 
+	00190: SHP[rp1,zp0] 
+	00191: MDAP[rd]   
+	00192: MIRP[srp0,md,rd,1] 
+	00193: SHP[rp2,zp1] 
+	00194: SRP1       
+	00195: SHP[rp1,zp0] 
+	00196: MDAP[rd]   
+	00197: MIRP[srp0,md,rd,1] 
+	00198: SHP[rp2,zp1] 
+	00199: SRP1       
+	00200: SRP2       
+	00201: IP         
+	00202: SRP1       
+	00203: SRP2       
+	00204: IP         
+	00205: SHP[rp1,zp0] 
+	00206: MDAP[rd]   
+	00207: MIRP[srp0,md,rd,1] 
+	00208: SHP[rp2,zp1] 
+	00209: MDAP[rd]   
+	00210: IP         
+	00211: SRP1       
+	00212: SHP[rp1,zp0] 
+	00213: MDAP[rd]   
+	00214: CALL       
+	00215: MIRP[srp0,md,rd,1] 
+	00216: SHP[rp2,zp1] 
+	00217: MDAP[rd]   
+	00218: CALL       
+	00219: MIRP[nrp0,md,rd,1] 
+	00220: IP         
+	00221: MDAP[rd]   
+	00222: SRP1       
+	00223: SRP2       
+	00224: IP         
+	00225: SRP1       
+	00226: SRP2       
+	00227: IP         
+	00228: SRP1       
+	00229: IP         
+	00230: IP         
+	00231: SRP2       
+	00232: IP         
+	00233: SVTCA[y-axis] 
+	00234: MIAP[rd+ci] 
+	00235: MIRP[nrp0,md,rd,1] 
+	00236: IP         
+	00237: MDAP[rd]   
+	00238: MIRP[nrp0,md,rd,1] 
+	00239: SRP1       
+	00240: SHP[rp1,zp0] 
+	00241: MDAP[rd]   
+	00242: SHP[rp2,zp1] 
+	00243: MDAP[rd]   
+	00244: SRP2       
+	00245: IP         
+	00246: MDAP[rd]   
+	00247: SRP1       
+	00248: IP         
+	00249: SRP2       
+	00250: IP         
+	00251: SRP1       
+	00252: SRP2       
+	00253: IP         
+	00254: SRP1       
+	00255: SRP2       
+	00256: IP         
+	00257: SRP1       
+	00258: SHP[rp1,zp0] 
+	00259: MDAP[rd]   
+	00260: MIRP[srp0,md,rd,1] 
+	00261: SHP[rp2,zp1] 
+	00262: MDAP[rd]   
+	00263: MIRP[nrp0,md,rd,1] 
+	00264: SRP2       
+	00265: IP         
+	00266: MDAP[rd]   
+	00267: SRP1       
+	00268: IP         
+	00269: MDAP[rd]   
+	00270: MIRP[srp0,md,rd,1] 
+	00271: SHP[rp2,zp1] 
+	00272: MDAP[rd]   
+	00273: CALL       
+	00274: MIRP[nrp0,md,rd,1] 
+	00275: SRP1       
+	00276: SRP2       
+	00277: IP         
+	00278: MDAP[rd]   
+	00279: SRP2       
+	00280: IP         
+	00281: SRP1       
+	00282: IP         
+	00283: IUP[y]     
+	00284: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:                      Y-Short X-Short On
+	 23:                      Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:                      Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual               Y-Short X-Short On
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:        XDual         Y-Short X-Short Off
+	 45:        XDual         Y-Short X-Short Off
+	 46:                              X-Short On
+	 47:        XDual         Y-Short         Off
+	 48:                      Y-Short X-Short On
+	 49:                      Y-Short X-Short Off
+	 50:  YDual                       X-Short On
+	 51:  YDual                       X-Short Off
+	 52:  YDual               Y-Short X-Short Off
+	 53:  YDual               Y-Short X-Short On
+	 54:                      Y-Short X-Short Off
+	 55:                      Y-Short X-Short On
+	 56:                      Y-Short X-Short Off
+	 57:  YDual                       X-Short On
+	 58:  YDual                       X-Short Off
+	 59:  YDual               Y-Short X-Short Off
+	 60:  YDual XDual         Y-Short         On
+	 61:  YDual XDual         Y-Short         Off
+	 62:  YDual XDual         Y-Short X-Short Off
+	 63:  YDual XDual         Y-Short X-Short On
+	 64:  YDual XDual         Y-Short X-Short On
+	 65:        XDual         Y-Short         Off
+	 66:                      Y-Short X-Short Off
+	 67:        XDual         Y-Short         On
+	 68:        XDual         Y-Short         Off
+	 69:        XDual         Y-Short X-Short Off
+	 70:  YDual XDual                 X-Short On
+	 71:  YDual XDual                 X-Short Off
+	 72:  YDual XDual         Y-Short X-Short On
+	 73:  YDual XDual         Y-Short X-Short Off
+	 74:  YDual XDual         Y-Short X-Short On
+	 75:  YDual XDual         Y-Short X-Short On
+	 76:        XDual         Y-Short X-Short Off
+	 77:        XDual         Y-Short X-Short On
+	 78:        XDual         Y-Short X-Short Off
+	 79:  YDual XDual                 X-Short On
+	 80:  YDual XDual                 X-Short Off
+	 81:  YDual XDual         Y-Short X-Short On
+	 82:  YDual XDual         Y-Short X-Short Off
+	 83:  YDual XDual         Y-Short         On
+	 84:  YDual XDual         Y-Short X-Short On
+	 85:        XDual         Y-Short X-Short Off
+	 86:        XDual         Y-Short X-Short Off
+	 87:                              X-Short On
+	 88:  YDual XDual         Y-Short         Off
+	 89:  YDual               Y-Short X-Short Off
+	 90:  YDual                       X-Short On
+	 91:  YDual                       X-Short Off
+	 92:                      Y-Short X-Short Off
+	 93:        XDual         Y-Short         On
+	 94:        XDual         Y-Short         Off
+	 95:        XDual         Y-Short X-Short On
+	 96:        XDual         Y-Short X-Short Off
+	 97:        XDual         Y-Short X-Short On
+	 98:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   458,  1813)  ->  Abs (   458,  1813)
+	  1: Rel (    -4,   -23)  ->  Abs (   454,  1790)
+	  2: Rel (   -13,   -47)  ->  Abs (   441,  1743)
+	  3: Rel (   -22,   -35)  ->  Abs (   419,  1708)
+	  4: Rel (    15,   -12)  ->  Abs (   434,  1696)
+	  5: Rel (    17,   -21)  ->  Abs (   451,  1675)
+	  6: Rel (     0,   -13)  ->  Abs (   451,  1662)
+	  7: Rel (     0,   -18)  ->  Abs (   451,  1644)
+	  8: Rel (    -3,   -43)  ->  Abs (   448,  1601)
+	  9: Rel (    -4,   -26)  ->  Abs (   444,  1575)
+	 10: Rel (   -86,    67)  ->  Abs (   358,  1642)
+	 11: Rel (   -46,   -54)  ->  Abs (   312,  1588)
+	 12: Rel (   -58,   -30)  ->  Abs (   254,  1558)
+	 13: Rel (   -71,   -36)  ->  Abs (   183,  1522)
+	 14: Rel (   -87,     0)  ->  Abs (    96,  1522)
+	 15: Rel (    36,    60)  ->  Abs (   132,  1582)
+	 16: Rel (    20,    37)  ->  Abs (   152,  1619)
+	 17: Rel (     0,    29)  ->  Abs (   152,  1648)
+	 18: Rel (     0,    22)  ->  Abs (   152,  1670)
+	 19: Rel (   -20,    38)  ->  Abs (   132,  1708)
+	 20: Rel (   -19,     0)  ->  Abs (   113,  1708)
+	 21: Rel (   -21,     0)  ->  Abs (    92,  1708)
+	 22: Rel (   -18,   -24)  ->  Abs (    74,  1684)
+	 23: Rel (   -26,   -44)  ->  Abs (    48,  1640)
+	 24: Rel (     7,    71)  ->  Abs (    55,  1711)
+	 25: Rel (    11,    30)  ->  Abs (    66,  1741)
+	 26: Rel (    20,    55)  ->  Abs (    86,  1796)
+	 27: Rel (    46,     0)  ->  Abs (   132,  1796)
+	 28: Rel (    34,     0)  ->  Abs (   166,  1796)
+	 29: Rel (    38,   -67)  ->  Abs (   204,  1729)
+	 30: Rel (     0,   -42)  ->  Abs (   204,  1687)
+	 31: Rel (     0,   -17)  ->  Abs (   204,  1670)
+	 32: Rel (    -7,   -35)  ->  Abs (   197,  1635)
+	 33: Rel (    -8,   -33)  ->  Abs (   189,  1602)
+	 34: Rel (    69,    20)  ->  Abs (   258,  1622)
+	 35: Rel (    64,    46)  ->  Abs (   322,  1668)
+	 36: Rel (   -32,    32)  ->  Abs (   290,  1700)
+	 37: Rel (    -9,    12)  ->  Abs (   281,  1712)
+	 38: Rel (   -18,    24)  ->  Abs (   263,  1736)
+	 39: Rel (     0,    27)  ->  Abs (   263,  1763)
+	 40: Rel (     0,    47)  ->  Abs (   263,  1810)
+	 41: Rel (    37,    45)  ->  Abs (   300,  1855)
+	 42: Rel (    46,    55)  ->  Abs (   346,  1910)
+	 43: Rel (    50,     1)  ->  Abs (   396,  1911)
+	 44: Rel (    29,    -1)  ->  Abs (   425,  1910)
+	 45: Rel (    38,   -38)  ->  Abs (   463,  1872)
+	 46: Rel (   -30,  -396)  ->  Abs (   433,  1476)
+	 47: Rel (     0,   -75)  ->  Abs (   433,  1401)
+	 48: Rel (   -26,   -48)  ->  Abs (   407,  1353)
+	 49: Rel (   -29,   -54)  ->  Abs (   378,  1299)
+	 50: Rel (   -51,     0)  ->  Abs (   327,  1299)
+	 51: Rel (   -18,     0)  ->  Abs (   309,  1299)
+	 52: Rel (   -30,    12)  ->  Abs (   279,  1311)
+	 53: Rel (   -19,    13)  ->  Abs (   260,  1324)
+	 54: Rel (   -20,   -34)  ->  Abs (   240,  1290)
+	 55: Rel (   -19,   -19)  ->  Abs (   221,  1271)
+	 56: Rel (   -32,   -32)  ->  Abs (   189,  1239)
+	 57: Rel (   -35,     0)  ->  Abs (   154,  1239)
+	 58: Rel (   -42,     0)  ->  Abs (   112,  1239)
+	 59: Rel (   -42,    56)  ->  Abs (    70,  1295)
+	 60: Rel (     0,    50)  ->  Abs (    70,  1345)
+	 61: Rel (     0,    26)  ->  Abs (    70,  1371)
+	 62: Rel (    14,    50)  ->  Abs (    84,  1421)
+	 63: Rel (    13,    33)  ->  Abs (    97,  1454)
+	 64: Rel (    21,     8)  ->  Abs (   118,  1462)
+	 65: Rel (     0,    -8)  ->  Abs (   118,  1454)
+	 66: Rel (    -4,   -36)  ->  Abs (   114,  1418)
+	 67: Rel (     0,   -12)  ->  Abs (   114,  1406)
+	 68: Rel (     0,   -22)  ->  Abs (   114,  1384)
+	 69: Rel (    18,   -35)  ->  Abs (   132,  1349)
+	 70: Rel (    18,     0)  ->  Abs (   150,  1349)
+	 71: Rel (    43,     0)  ->  Abs (   193,  1349)
+	 72: Rel (    26,    56)  ->  Abs (   219,  1405)
+	 73: Rel (    12,    25)  ->  Abs (   231,  1430)
+	 74: Rel (    18,    76)  ->  Abs (   249,  1506)
+	 75: Rel (    21,     6)  ->  Abs (   270,  1512)
+	 76: Rel (     8,   -49)  ->  Abs (   278,  1463)
+	 77: Rel (     5,   -11)  ->  Abs (   283,  1452)
+	 78: Rel (    12,   -31)  ->  Abs (   295,  1421)
+	 79: Rel (    28,     0)  ->  Abs (   323,  1421)
+	 80: Rel (    38,     0)  ->  Abs (   361,  1421)
+	 81: Rel (    22,    50)  ->  Abs (   383,  1471)
+	 82: Rel (    18,    41)  ->  Abs (   401,  1512)
+	 83: Rel (     0,    44)  ->  Abs (   401,  1556)
+	 84: Rel (    21,     6)  ->  Abs (   422,  1562)
+	 85: Rel (     4,   -19)  ->  Abs (   426,  1543)
+	 86: Rel (     7,   -49)  ->  Abs (   433,  1494)
+	 87: Rel (   -41,   292)  ->  Abs (   392,  1786)
+	 88: Rel (     0,    24)  ->  Abs (   392,  1810)
+	 89: Rel (   -23,    38)  ->  Abs (   369,  1848)
+	 90: Rel (   -12,     0)  ->  Abs (   357,  1848)
+	 91: Rel (   -19,     0)  ->  Abs (   338,  1848)
+	 92: Rel (   -12,   -17)  ->  Abs (   326,  1831)
+	 93: Rel (     0,   -12)  ->  Abs (   326,  1819)
+	 94: Rel (     0,   -18)  ->  Abs (   326,  1801)
+	 95: Rel (    18,   -20)  ->  Abs (   344,  1781)
+	 96: Rel (     5,    -6)  ->  Abs (   349,  1775)
+	 97: Rel (    30,   -27)  ->  Abs (   379,  1748)
+	 98: Rel (    13,    17)  ->  Abs (   392,  1765)
+
+	Glyph 840: off = 0x0002567E, len = 380
+	  numberOfContours:	3
+	  xMin:			70
+	  yMin:			1239
+	  xMax:			433
+	  yMax:			1853
+
+	EndPoints
+	---------
+	  0:  41
+	  1:  49
+	  2:  57
+
+	  Length of Instructions:	204
+	00000: NPUSHB      (19):     7    25     4    38    39    34    29    30    18    25 
+	                            30    30    19    39    39    19    19    25    34 
+	00021: PUSHW[1]            757 
+	00024: PUSHB[3]              4     4    25 
+	00028: PUSHW[1]            757 
+	00031: NPUSHB       (9):    11    64     9    12    52    11    11    48    42 
+	00042: PUSHW[1]            757 
+	00045: PUSHB[3]             44    44    48 
+	00049: PUSHW[1]            757 
+	00052: NPUSHB       (9):    46    64     9    24    52    46    46    56    50 
+	00063: PUSHW[1]            757 
+	00066: PUSHB[3]             52    52    56 
+	00070: PUSHW[3]            757    54   756 
+	00077: NPUSHB      (18):    42    50    50    46    54    64    37    40    52    54 
+	                             7    30    29    22    19    18     0    39 
+	00097: PUSHW[1]            761 
+	00100: PUSHB[5]             38    38    30    14    18 
+	00106: PUSHW[1]            761 
+	00109: PUSHB[3]             19    19    30 
+	00113: PUSHW[3]            761    29   -64 
+	00120: PUSHB[4]             21    23    52    29 
+	00125: PUSHW[1]            -64 
+	00128: PUSHB[4]             13    16    52    29 
+	00133: PUSHW[1]            292 
+	00136: SCANCTRL   
+	00137: MDAP[rd]   
+	00138: CALL       
+	00139: CALL       
+	00140: MIRP[nrp0,md,rd,1] 
+	00141: SHP[rp1,zp0] 
+	00142: MDAP[rd]   
+	00143: MIRP[srp0,md,rd,1] 
+	00144: SHP[rp2,zp1] 
+	00145: SRP1       
+	00146: SHP[rp1,zp0] 
+	00147: MDAP[rd]   
+	00148: MIRP[srp0,md,rd,1] 
+	00149: SHP[rp2,zp1] 
+	00150: SRP1       
+	00151: SRP2       
+	00152: IP         
+	00153: SRP1       
+	00154: SRP2       
+	00155: IP         
+	00156: MDAP[rd]   
+	00157: CALL       
+	00158: ALIGNRP    
+	00159: SHP[rp1,zp0] 
+	00160: MDAP[rd]   
+	00161: ALIGNRP    
+	00162: SVTCA[y-axis] 
+	00163: MIAP[rd+ci] 
+	00164: MIRP[nrp0,md,rd,1] 
+	00165: SHP[rp1,zp0] 
+	00166: MDAP[rd]   
+	00167: MIRP[nrp0,md,rd,1] 
+	00168: SRP1       
+	00169: SHP[rp1,zp0] 
+	00170: MDAP[rd]   
+	00171: CALL       
+	00172: MIRP[nrp0,md,rd,1] 
+	00173: SHP[rp1,zp0] 
+	00174: MDAP[rd]   
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: SRP1       
+	00177: SHP[rp1,zp0] 
+	00178: MDAP[rd]   
+	00179: CALL       
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: IP         
+	00182: MDAP[rd]   
+	00183: MIRP[nrp0,md,rd,1] 
+	00184: SRP1       
+	00185: SHP[rp1,zp0] 
+	00186: MDAP[rd]   
+	00187: SHP[rp2,zp1] 
+	00188: MDAP[rd]   
+	00189: SRP2       
+	00190: IP         
+	00191: MDAP[rd]   
+	00192: SRP1       
+	00193: IP         
+	00194: SRP2       
+	00195: IP         
+	00196: SRP1       
+	00197: SRP2       
+	00198: IP         
+	00199: SRP1       
+	00200: SRP2       
+	00201: IP         
+	00202: IUP[y]     
+	00203: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:                      Y-Short X-Short On
+	 43:        XDual         Y-Short         Off
+	 44:                      Y-Short X-Short On
+	 45:                      Y-Short X-Short Off
+	 46:                      Y-Short X-Short On
+	 47:  YDual XDual         Y-Short         Off
+	 48:  YDual XDual         Y-Short X-Short On
+	 49:  YDual XDual         Y-Short X-Short Off
+	 50:        XDual         Y-Short X-Short On
+	 51:        XDual         Y-Short         Off
+	 52:                      Y-Short X-Short On
+	 53:                      Y-Short X-Short Off
+	 54:                      Y-Short X-Short On
+	 55:  YDual XDual         Y-Short         Off
+	 56:  YDual XDual         Y-Short X-Short On
+	 57:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   433,  1767)  ->  Abs (   433,  1767)
+	  1: Rel (     0,   -76)  ->  Abs (   433,  1691)
+	  2: Rel (   -26,   -48)  ->  Abs (   407,  1643)
+	  3: Rel (   -29,   -53)  ->  Abs (   378,  1590)
+	  4: Rel (   -51,     0)  ->  Abs (   327,  1590)
+	  5: Rel (   -17,     0)  ->  Abs (   310,  1590)
+	  6: Rel (   -33,    13)  ->  Abs (   277,  1603)
+	  7: Rel (   -17,    12)  ->  Abs (   260,  1615)
+	  8: Rel (   -19,   -34)  ->  Abs (   241,  1581)
+	  9: Rel (   -20,   -19)  ->  Abs (   221,  1562)
+	 10: Rel (   -32,   -31)  ->  Abs (   189,  1531)
+	 11: Rel (   -35,     0)  ->  Abs (   154,  1531)
+	 12: Rel (   -42,     0)  ->  Abs (   112,  1531)
+	 13: Rel (   -42,    56)  ->  Abs (    70,  1587)
+	 14: Rel (     0,    49)  ->  Abs (    70,  1636)
+	 15: Rel (     0,    25)  ->  Abs (    70,  1661)
+	 16: Rel (     8,    29)  ->  Abs (    78,  1690)
+	 17: Rel (     5,    18)  ->  Abs (    83,  1708)
+	 18: Rel (    14,    36)  ->  Abs (    97,  1744)
+	 19: Rel (    21,     8)  ->  Abs (   118,  1752)
+	 20: Rel (     0,    -8)  ->  Abs (   118,  1744)
+	 21: Rel (    -4,   -36)  ->  Abs (   114,  1708)
+	 22: Rel (     0,   -12)  ->  Abs (   114,  1696)
+	 23: Rel (     0,   -23)  ->  Abs (   114,  1673)
+	 24: Rel (    17,   -33)  ->  Abs (   131,  1640)
+	 25: Rel (    19,     0)  ->  Abs (   150,  1640)
+	 26: Rel (    43,     0)  ->  Abs (   193,  1640)
+	 27: Rel (    26,    56)  ->  Abs (   219,  1696)
+	 28: Rel (    13,    27)  ->  Abs (   232,  1723)
+	 29: Rel (    17,    73)  ->  Abs (   249,  1796)
+	 30: Rel (    21,     6)  ->  Abs (   270,  1802)
+	 31: Rel (     9,   -49)  ->  Abs (   279,  1753)
+	 32: Rel (     4,   -11)  ->  Abs (   283,  1742)
+	 33: Rel (    12,   -32)  ->  Abs (   295,  1710)
+	 34: Rel (    28,     0)  ->  Abs (   323,  1710)
+	 35: Rel (    38,     0)  ->  Abs (   361,  1710)
+	 36: Rel (    22,    50)  ->  Abs (   383,  1760)
+	 37: Rel (    18,    41)  ->  Abs (   401,  1801)
+	 38: Rel (     0,    45)  ->  Abs (   401,  1846)
+	 39: Rel (    21,     7)  ->  Abs (   422,  1853)
+	 40: Rel (     4,   -24)  ->  Abs (   426,  1829)
+	 41: Rel (     7,   -44)  ->  Abs (   433,  1785)
+	 42: Rel (   -15,  -214)  ->  Abs (   418,  1571)
+	 43: Rel (     0,   -46)  ->  Abs (   418,  1525)
+	 44: Rel (   -52,   -44)  ->  Abs (   366,  1481)
+	 45: Rel (   -89,   -35)  ->  Abs (   277,  1446)
+	 46: Rel (  -201,   -82)  ->  Abs (    76,  1364)
+	 47: Rel (     0,    44)  ->  Abs (    76,  1408)
+	 48: Rel (    43,    41)  ->  Abs (   119,  1449)
+	 49: Rel (    84,    34)  ->  Abs (   203,  1483)
+	 50: Rel (   215,   -35)  ->  Abs (   418,  1448)
+	 51: Rel (     0,   -47)  ->  Abs (   418,  1401)
+	 52: Rel (   -51,   -45)  ->  Abs (   367,  1356)
+	 53: Rel (   -90,   -36)  ->  Abs (   277,  1320)
+	 54: Rel (  -201,   -81)  ->  Abs (    76,  1239)
+	 55: Rel (     0,    43)  ->  Abs (    76,  1282)
+	 56: Rel (    43,    41)  ->  Abs (   119,  1323)
+	 57: Rel (    84,    35)  ->  Abs (   203,  1358)
+
+	Glyph 841: off = 0x000257FA, len = 324
+	  numberOfContours:	2
+	  xMin:			70
+	  yMin:			1239
+	  xMax:			433
+	  yMax:			1721
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  49
+
+	  Length of Instructions:	173
+	00000: PUSHW[2]              0   757 
+	00005: PUSHB[3]              2     2     6 
+	00009: PUSHW[1]            757 
+	00012: NPUSHB      (27):     4    64     9    28    52     4     4    27    46    47 
+	                            42    37    38    26    27    15    33    12    38    38 
+	                            27    47    47    27    27    33    42 
+	00041: PUSHW[1]            757 
+	00044: PUSHB[3]             12    12    33 
+	00048: PUSHW[3]            757    19   756 
+	00055: PUSHB[3]              0     0     4 
+	00059: PUSHW[1]            -64 
+	00062: NPUSHB      (12):    14    19    52     4    15    38    37    30    27    26 
+	                             8    47 
+	00076: PUSHW[1]            761 
+	00079: PUSHB[5]             46    46    38    22    26 
+	00085: PUSHW[1]            761 
+	00088: PUSHB[3]             27    27    38 
+	00092: PUSHW[3]            761    37   -64 
+	00099: PUSHB[4]             21    23    52    37 
+	00104: PUSHW[1]            -64 
+	00107: PUSHB[4]             13    16    52    37 
+	00112: PUSHW[1]            292 
+	00115: SCANCTRL   
+	00116: MDAP[rd]   
+	00117: CALL       
+	00118: CALL       
+	00119: MIRP[nrp0,md,rd,1] 
+	00120: SHP[rp1,zp0] 
+	00121: MDAP[rd]   
+	00122: MIRP[srp0,md,rd,1] 
+	00123: SHP[rp2,zp1] 
+	00124: SRP1       
+	00125: SHP[rp1,zp0] 
+	00126: MDAP[rd]   
+	00127: MIRP[srp0,md,rd,1] 
+	00128: SHP[rp2,zp1] 
+	00129: SRP1       
+	00130: SRP2       
+	00131: IP         
+	00132: SRP1       
+	00133: SRP2       
+	00134: IP         
+	00135: MDAP[rd]   
+	00136: CALL       
+	00137: SHP[rp1,zp0] 
+	00138: MDAP[rd]   
+	00139: SVTCA[y-axis] 
+	00140: MIAP[rd+ci] 
+	00141: MIRP[nrp0,md,rd,1] 
+	00142: IP         
+	00143: MDAP[rd]   
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: SRP1       
+	00146: SHP[rp1,zp0] 
+	00147: MDAP[rd]   
+	00148: SHP[rp2,zp1] 
+	00149: MDAP[rd]   
+	00150: SRP2       
+	00151: IP         
+	00152: MDAP[rd]   
+	00153: SRP1       
+	00154: SRP2       
+	00155: IP         
+	00156: SRP1       
+	00157: IP         
+	00158: SRP1       
+	00159: IP         
+	00160: SRP1       
+	00161: SRP2       
+	00162: IP         
+	00163: SRP1       
+	00164: SHP[rp1,zp0] 
+	00165: MDAP[rd]   
+	00166: CALL       
+	00167: MIRP[nrp0,md,rd,1] 
+	00168: SHP[rp1,zp0] 
+	00169: MDAP[rd]   
+	00170: MIRP[srp0,md,rd,1] 
+	00171: IUP[y]     
+	00172: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short         Off
+	 29:                      Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:        XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short X-Short On
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short X-Short On
+	 41:        XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:  YDual XDual         Y-Short X-Short On
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short         On
+	 47:  YDual XDual         Y-Short X-Short On
+	 48:        XDual         Y-Short X-Short Off
+	 49:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   418,  1721)  ->  Abs (   418,  1721)
+	  1: Rel (     0,   -46)  ->  Abs (   418,  1675)
+	  2: Rel (   -52,   -46)  ->  Abs (   366,  1629)
+	  3: Rel (   -89,   -35)  ->  Abs (   277,  1594)
+	  4: Rel (  -201,   -80)  ->  Abs (    76,  1514)
+	  5: Rel (     0,    42)  ->  Abs (    76,  1556)
+	  6: Rel (    45,    41)  ->  Abs (   121,  1597)
+	  7: Rel (    82,    34)  ->  Abs (   203,  1631)
+	  8: Rel (   230,  -155)  ->  Abs (   433,  1476)
+	  9: Rel (     0,   -75)  ->  Abs (   433,  1401)
+	 10: Rel (   -26,   -48)  ->  Abs (   407,  1353)
+	 11: Rel (   -29,   -54)  ->  Abs (   378,  1299)
+	 12: Rel (   -51,     0)  ->  Abs (   327,  1299)
+	 13: Rel (   -17,     0)  ->  Abs (   310,  1299)
+	 14: Rel (   -33,    13)  ->  Abs (   277,  1312)
+	 15: Rel (   -17,    12)  ->  Abs (   260,  1324)
+	 16: Rel (   -20,   -34)  ->  Abs (   240,  1290)
+	 17: Rel (   -19,   -19)  ->  Abs (   221,  1271)
+	 18: Rel (   -32,   -32)  ->  Abs (   189,  1239)
+	 19: Rel (   -35,     0)  ->  Abs (   154,  1239)
+	 20: Rel (   -42,     0)  ->  Abs (   112,  1239)
+	 21: Rel (   -42,    56)  ->  Abs (    70,  1295)
+	 22: Rel (     0,    50)  ->  Abs (    70,  1345)
+	 23: Rel (     0,    26)  ->  Abs (    70,  1371)
+	 24: Rel (     8,    29)  ->  Abs (    78,  1400)
+	 25: Rel (     5,    18)  ->  Abs (    83,  1418)
+	 26: Rel (    14,    36)  ->  Abs (    97,  1454)
+	 27: Rel (    21,     8)  ->  Abs (   118,  1462)
+	 28: Rel (     0,    -8)  ->  Abs (   118,  1454)
+	 29: Rel (    -4,   -36)  ->  Abs (   114,  1418)
+	 30: Rel (     0,   -12)  ->  Abs (   114,  1406)
+	 31: Rel (     0,   -22)  ->  Abs (   114,  1384)
+	 32: Rel (    18,   -35)  ->  Abs (   132,  1349)
+	 33: Rel (    18,     0)  ->  Abs (   150,  1349)
+	 34: Rel (    43,     0)  ->  Abs (   193,  1349)
+	 35: Rel (    26,    56)  ->  Abs (   219,  1405)
+	 36: Rel (    12,    25)  ->  Abs (   231,  1430)
+	 37: Rel (    18,    76)  ->  Abs (   249,  1506)
+	 38: Rel (    21,     6)  ->  Abs (   270,  1512)
+	 39: Rel (     8,   -49)  ->  Abs (   278,  1463)
+	 40: Rel (     5,   -11)  ->  Abs (   283,  1452)
+	 41: Rel (    12,   -31)  ->  Abs (   295,  1421)
+	 42: Rel (    28,     0)  ->  Abs (   323,  1421)
+	 43: Rel (    38,     0)  ->  Abs (   361,  1421)
+	 44: Rel (    22,    50)  ->  Abs (   383,  1471)
+	 45: Rel (    18,    41)  ->  Abs (   401,  1512)
+	 46: Rel (     0,    44)  ->  Abs (   401,  1556)
+	 47: Rel (    21,     6)  ->  Abs (   422,  1562)
+	 48: Rel (     4,   -19)  ->  Abs (   426,  1543)
+	 49: Rel (     7,   -49)  ->  Abs (   433,  1494)
+
+	Glyph 842: off = 0x0002593E, len = 488
+	  numberOfContours:	3
+	  xMin:			64
+	  yMin:			1241
+	  xMax:			433
+	  yMax:			1838
+
+	EndPoints
+	---------
+	  0:  32
+	  1:  74
+	  2:  86
+
+	  Length of Instructions:	236
+	00000: PUSHB[8]             29    84     4    15    11     0     8    22 
+	00009: PUSHW[3]            757    78   -64 
+	00016: NPUSHB      (10):    11    13    52    78    78    84     0     0     8    84 
+	00028: PUSHW[1]            757 
+	00031: NPUSHB      (29):    15    15     8    64     9    24    52     8     8    52 
+	                            40    58    37    71    72    67    62    63    51    58 
+	                            63    63    52    72    72    52    52    58    67 
+	00062: PUSHW[1]            757 
+	00065: PUSHB[3]             37    37    58 
+	00069: PUSHW[3]            757    44   756 
+	00076: NPUSHB       (9):    84     4    75    15    81    19     0     0    25 
+	00087: PUSHW[1]            758 
+	00090: PUSHB[6]             75    75    81    11    11    19 
+	00097: PUSHW[1]            758 
+	00100: NPUSHB      (10):    81    81    40    63    62    55    52    51    33    72 
+	00112: PUSHW[1]            761 
+	00115: PUSHB[5]             71    71    63    47    51 
+	00121: PUSHW[1]            761 
+	00124: PUSHB[3]             52    52    63 
+	00128: PUSHW[3]            761    62   -64 
+	00135: PUSHB[4]             21    23    52    62 
+	00140: PUSHW[1]            -64 
+	00143: PUSHB[4]             13    16    52    62 
+	00148: PUSHW[1]            292 
+	00151: SCANCTRL   
+	00152: MDAP[rd]   
+	00153: CALL       
+	00154: CALL       
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: SHP[rp1,zp0] 
+	00157: MDAP[rd]   
+	00158: MIRP[srp0,md,rd,1] 
+	00159: SHP[rp2,zp1] 
+	00160: SRP1       
+	00161: SHP[rp1,zp0] 
+	00162: MDAP[rd]   
+	00163: MIRP[srp0,md,rd,1] 
+	00164: SHP[rp2,zp1] 
+	00165: SRP1       
+	00166: SRP2       
+	00167: IP         
+	00168: SRP1       
+	00169: SRP2       
+	00170: IP         
+	00171: SHP[rp1,zp0] 
+	00172: MDAP[rd]   
+	00173: MIRP[srp0,md,rd,1] 
+	00174: SHP[rp2,zp1] 
+	00175: MDAP[rd]   
+	00176: SRP1       
+	00177: SHP[rp1,zp0] 
+	00178: MDAP[rd]   
+	00179: MIRP[srp0,md,rd,1] 
+	00180: SHP[rp2,zp1] 
+	00181: MDAP[rd]   
+	00182: SRP1       
+	00183: SRP2       
+	00184: IP         
+	00185: SRP1       
+	00186: IP         
+	00187: IP         
+	00188: SVTCA[y-axis] 
+	00189: MIAP[rd+ci] 
+	00190: MIRP[nrp0,md,rd,1] 
+	00191: IP         
+	00192: MDAP[rd]   
+	00193: MIRP[nrp0,md,rd,1] 
+	00194: SRP1       
+	00195: SHP[rp1,zp0] 
+	00196: MDAP[rd]   
+	00197: SHP[rp2,zp1] 
+	00198: MDAP[rd]   
+	00199: SRP2       
+	00200: IP         
+	00201: MDAP[rd]   
+	00202: SRP1       
+	00203: IP         
+	00204: SRP2       
+	00205: IP         
+	00206: SRP1       
+	00207: SRP2       
+	00208: IP         
+	00209: SRP1       
+	00210: SRP2       
+	00211: IP         
+	00212: SRP1       
+	00213: SHP[rp1,zp0] 
+	00214: MDAP[rd]   
+	00215: CALL       
+	00216: SHP[rp1,zp0] 
+	00217: MDAP[rd]   
+	00218: MIRP[nrp0,md,rd,1] 
+	00219: SRP2       
+	00220: IP         
+	00221: MDAP[rd]   
+	00222: SRP1       
+	00223: SHP[rp1,zp0] 
+	00224: MDAP[rd]   
+	00225: CALL       
+	00226: MIRP[nrp0,md,rd,1] 
+	00227: SRP1       
+	00228: SRP2       
+	00229: IP         
+	00230: SRP1       
+	00231: IP         
+	00232: SRP2       
+	00233: IP         
+	00234: IUP[y]     
+	00235: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual               Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:                      Y-Short X-Short On
+	 28:                      Y-Short X-Short Off
+	 29:                      Y-Short X-Short On
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short X-Short On
+	 32:        XDual         Y-Short X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:                      Y-Short X-Short On
+	 36:                      Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual               Y-Short X-Short On
+	 41:                      Y-Short X-Short Off
+	 42:                      Y-Short X-Short On
+	 43:                      Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short Off
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual XDual         Y-Short X-Short On
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:  YDual XDual         Y-Short X-Short On
+	 53:        XDual         Y-Short         Off
+	 54:                      Y-Short X-Short Off
+	 55:        XDual         Y-Short         On
+	 56:        XDual         Y-Short         Off
+	 57:        XDual         Y-Short X-Short Off
+	 58:  YDual XDual                 X-Short On
+	 59:  YDual XDual                 X-Short Off
+	 60:  YDual XDual         Y-Short X-Short On
+	 61:  YDual XDual         Y-Short X-Short Off
+	 62:  YDual XDual         Y-Short X-Short On
+	 63:  YDual XDual         Y-Short X-Short On
+	 64:        XDual         Y-Short X-Short Off
+	 65:        XDual         Y-Short X-Short On
+	 66:        XDual         Y-Short X-Short Off
+	 67:  YDual XDual                 X-Short On
+	 68:  YDual XDual                 X-Short Off
+	 69:  YDual XDual         Y-Short X-Short On
+	 70:  YDual XDual         Y-Short X-Short Off
+	 71:  YDual XDual         Y-Short         On
+	 72:  YDual XDual         Y-Short X-Short On
+	 73:        XDual         Y-Short X-Short Off
+	 74:        XDual         Y-Short X-Short Off
+	 75:  YDual               Y-Short X-Short On
+	 76:  YDual XDual         Y-Short         Off
+	 77:  YDual               Y-Short X-Short Off
+	 78:  YDual                       X-Short On
+	 79:  YDual                       X-Short Off
+	 80:                      Y-Short X-Short Off
+	 81:        XDual         Y-Short         On
+	 82:        XDual         Y-Short         Off
+	 83:        XDual         Y-Short X-Short Off
+	 84:        XDual         Y-Short X-Short On
+	 85:  YDual XDual         Y-Short X-Short Off
+	 86:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   433,  1585)  ->  Abs (   433,  1585)
+	  1: Rel (   -35,     0)  ->  Abs (   398,  1585)
+	  2: Rel (   -39,     9)  ->  Abs (   359,  1594)
+	  3: Rel (    -8,     2)  ->  Abs (   351,  1596)
+	  4: Rel (   -35,    10)  ->  Abs (   316,  1606)
+	  5: Rel (   -57,   -49)  ->  Abs (   259,  1557)
+	  6: Rel (   -23,   -14)  ->  Abs (   236,  1543)
+	  7: Rel (   -60,   -38)  ->  Abs (   176,  1505)
+	  8: Rel (   -56,     0)  ->  Abs (   120,  1505)
+	  9: Rel (   -14,     0)  ->  Abs (   106,  1505)
+	 10: Rel (   -27,     9)  ->  Abs (    79,  1514)
+	 11: Rel (   -15,     8)  ->  Abs (    64,  1522)
+	 12: Rel (    76,    34)  ->  Abs (   140,  1556)
+	 13: Rel (    31,    15)  ->  Abs (   171,  1571)
+	 14: Rel (    48,    23)  ->  Abs (   219,  1594)
+	 15: Rel (    58,    33)  ->  Abs (   277,  1627)
+	 16: Rel (   -23,    22)  ->  Abs (   254,  1649)
+	 17: Rel (   -11,    15)  ->  Abs (   243,  1664)
+	 18: Rel (   -17,    23)  ->  Abs (   226,  1687)
+	 19: Rel (     0,    23)  ->  Abs (   226,  1710)
+	 20: Rel (     0,    43)  ->  Abs (   226,  1753)
+	 21: Rel (    71,    85)  ->  Abs (   297,  1838)
+	 22: Rel (    45,     0)  ->  Abs (   342,  1838)
+	 23: Rel (    29,     0)  ->  Abs (   371,  1838)
+	 24: Rel (    47,   -41)  ->  Abs (   418,  1797)
+	 25: Rel (     0,   -29)  ->  Abs (   418,  1768)
+	 26: Rel (     0,   -21)  ->  Abs (   418,  1747)
+	 27: Rel (   -10,   -23)  ->  Abs (   408,  1724)
+	 28: Rel (    -3,    -7)  ->  Abs (   405,  1717)
+	 29: Rel (   -20,   -35)  ->  Abs (   385,  1682)
+	 30: Rel (    32,   -15)  ->  Abs (   417,  1667)
+	 31: Rel (     6,   -11)  ->  Abs (   423,  1656)
+	 32: Rel (    10,   -17)  ->  Abs (   433,  1639)
+	 33: Rel (     0,  -161)  ->  Abs (   433,  1478)
+	 34: Rel (     0,   -75)  ->  Abs (   433,  1403)
+	 35: Rel (   -26,   -48)  ->  Abs (   407,  1355)
+	 36: Rel (   -29,   -54)  ->  Abs (   378,  1301)
+	 37: Rel (   -51,     0)  ->  Abs (   327,  1301)
+	 38: Rel (   -17,     0)  ->  Abs (   310,  1301)
+	 39: Rel (   -33,    13)  ->  Abs (   277,  1314)
+	 40: Rel (   -17,    12)  ->  Abs (   260,  1326)
+	 41: Rel (   -20,   -34)  ->  Abs (   240,  1292)
+	 42: Rel (   -19,   -19)  ->  Abs (   221,  1273)
+	 43: Rel (   -32,   -32)  ->  Abs (   189,  1241)
+	 44: Rel (   -35,     0)  ->  Abs (   154,  1241)
+	 45: Rel (   -42,     0)  ->  Abs (   112,  1241)
+	 46: Rel (   -42,    56)  ->  Abs (    70,  1297)
+	 47: Rel (     0,    50)  ->  Abs (    70,  1347)
+	 48: Rel (     0,    26)  ->  Abs (    70,  1373)
+	 49: Rel (     8,    29)  ->  Abs (    78,  1402)
+	 50: Rel (     5,    18)  ->  Abs (    83,  1420)
+	 51: Rel (    14,    36)  ->  Abs (    97,  1456)
+	 52: Rel (    21,     8)  ->  Abs (   118,  1464)
+	 53: Rel (     0,    -8)  ->  Abs (   118,  1456)
+	 54: Rel (    -4,   -36)  ->  Abs (   114,  1420)
+	 55: Rel (     0,   -12)  ->  Abs (   114,  1408)
+	 56: Rel (     0,   -22)  ->  Abs (   114,  1386)
+	 57: Rel (    18,   -35)  ->  Abs (   132,  1351)
+	 58: Rel (    18,     0)  ->  Abs (   150,  1351)
+	 59: Rel (    43,     0)  ->  Abs (   193,  1351)
+	 60: Rel (    26,    56)  ->  Abs (   219,  1407)
+	 61: Rel (    12,    25)  ->  Abs (   231,  1432)
+	 62: Rel (    18,    75)  ->  Abs (   249,  1507)
+	 63: Rel (    21,     7)  ->  Abs (   270,  1514)
+	 64: Rel (     9,   -50)  ->  Abs (   279,  1464)
+	 65: Rel (     4,   -11)  ->  Abs (   283,  1453)
+	 66: Rel (    12,   -31)  ->  Abs (   295,  1422)
+	 67: Rel (    28,     0)  ->  Abs (   323,  1422)
+	 68: Rel (    38,     0)  ->  Abs (   361,  1422)
+	 69: Rel (    22,    50)  ->  Abs (   383,  1472)
+	 70: Rel (    18,    41)  ->  Abs (   401,  1513)
+	 71: Rel (     0,    45)  ->  Abs (   401,  1558)
+	 72: Rel (    21,     6)  ->  Abs (   422,  1564)
+	 73: Rel (     4,   -20)  ->  Abs (   426,  1544)
+	 74: Rel (     7,   -49)  ->  Abs (   433,  1495)
+	 75: Rel (   -81,   242)  ->  Abs (   352,  1737)
+	 76: Rel (     0,    21)  ->  Abs (   352,  1758)
+	 77: Rel (   -30,    40)  ->  Abs (   322,  1798)
+	 78: Rel (   -22,     0)  ->  Abs (   300,  1798)
+	 79: Rel (    -7,     0)  ->  Abs (   293,  1798)
+	 80: Rel (    -6,   -14)  ->  Abs (   287,  1784)
+	 81: Rel (     0,    -9)  ->  Abs (   287,  1775)
+	 82: Rel (     0,   -21)  ->  Abs (   287,  1754)
+	 83: Rel (    20,   -29)  ->  Abs (   307,  1725)
+	 84: Rel (    35,   -19)  ->  Abs (   342,  1706)
+	 85: Rel (     3,     7)  ->  Abs (   345,  1713)
+	 86: Rel (     7,    18)  ->  Abs (   352,  1731)
+
+	Glyph 843: off = 0x00025B26, len = 328
+	  numberOfContours:	2
+	  xMin:			70
+	  yMin:			1239
+	  xMax:			433
+	  yMax:			1747
+
+	EndPoints
+	---------
+	  0:  41
+	  1:  49
+
+	  Length of Instructions:	177
+	00000: NPUSHB      (19):     7    25     4    38    39    34    29    30    18    25 
+	                            30    30    19    39    39    19    19    25    34 
+	00021: PUSHW[1]            757 
+	00024: PUSHB[3]              4     4    25 
+	00028: PUSHW[1]            757 
+	00031: NPUSHB      (14):    11    64    27    29    52    11    64     9     9    52 
+	                            11    11    48    42 
+	00047: PUSHW[1]            757 
+	00050: PUSHB[3]             44    44    48 
+	00054: PUSHW[3]            757    46   756 
+	00061: NPUSHB      (16):    42    42    46    64    37    40    52    46     7    30 
+	                            29    22    19    18     0    39 
+	00079: PUSHW[1]            761 
+	00082: PUSHB[5]             38    38    30    14    18 
+	00088: PUSHW[1]            761 
+	00091: PUSHB[3]             19    19    30 
+	00095: PUSHW[3]            761    29   -64 
+	00102: PUSHB[4]             21    23    52    29 
+	00107: PUSHW[1]            -64 
+	00110: PUSHB[4]             13    16    52    29 
+	00115: PUSHW[1]            292 
+	00118: SCANCTRL   
+	00119: MDAP[rd]   
+	00120: CALL       
+	00121: CALL       
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: SHP[rp1,zp0] 
+	00124: MDAP[rd]   
+	00125: MIRP[srp0,md,rd,1] 
+	00126: SHP[rp2,zp1] 
+	00127: SRP1       
+	00128: SHP[rp1,zp0] 
+	00129: MDAP[rd]   
+	00130: MIRP[srp0,md,rd,1] 
+	00131: SHP[rp2,zp1] 
+	00132: SRP1       
+	00133: SRP2       
+	00134: IP         
+	00135: SRP1       
+	00136: SRP2       
+	00137: IP         
+	00138: MDAP[rd]   
+	00139: CALL       
+	00140: SHP[rp1,zp0] 
+	00141: MDAP[rd]   
+	00142: SVTCA[y-axis] 
+	00143: MIAP[rd+ci] 
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: SHP[rp1,zp0] 
+	00146: MDAP[rd]   
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: SRP1       
+	00149: SHP[rp1,zp0] 
+	00150: MDAP[rd]   
+	00151: CALL       
+	00152: CALL       
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: IP         
+	00155: MDAP[rd]   
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: SRP1       
+	00158: SHP[rp1,zp0] 
+	00159: MDAP[rd]   
+	00160: SHP[rp2,zp1] 
+	00161: MDAP[rd]   
+	00162: SRP2       
+	00163: IP         
+	00164: MDAP[rd]   
+	00165: SRP1       
+	00166: IP         
+	00167: SRP2       
+	00168: IP         
+	00169: SRP1       
+	00170: SRP2       
+	00171: IP         
+	00172: SRP1       
+	00173: SRP2       
+	00174: IP         
+	00175: IUP[y]     
+	00176: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:                      Y-Short X-Short On
+	 43:        XDual         Y-Short         Off
+	 44:                      Y-Short X-Short On
+	 45:                      Y-Short X-Short Off
+	 46:                      Y-Short X-Short On
+	 47:  YDual XDual         Y-Short         Off
+	 48:  YDual XDual         Y-Short X-Short On
+	 49:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   433,  1661)  ->  Abs (   433,  1661)
+	  1: Rel (     0,   -75)  ->  Abs (   433,  1586)
+	  2: Rel (   -26,   -47)  ->  Abs (   407,  1539)
+	  3: Rel (   -29,   -53)  ->  Abs (   378,  1486)
+	  4: Rel (   -51,     0)  ->  Abs (   327,  1486)
+	  5: Rel (   -18,     0)  ->  Abs (   309,  1486)
+	  6: Rel (   -30,    12)  ->  Abs (   279,  1498)
+	  7: Rel (   -19,    13)  ->  Abs (   260,  1511)
+	  8: Rel (   -20,   -34)  ->  Abs (   240,  1477)
+	  9: Rel (   -19,   -19)  ->  Abs (   221,  1458)
+	 10: Rel (   -32,   -32)  ->  Abs (   189,  1426)
+	 11: Rel (   -35,     0)  ->  Abs (   154,  1426)
+	 12: Rel (   -42,     0)  ->  Abs (   112,  1426)
+	 13: Rel (   -42,    56)  ->  Abs (    70,  1482)
+	 14: Rel (     0,    50)  ->  Abs (    70,  1532)
+	 15: Rel (     0,    25)  ->  Abs (    70,  1557)
+	 16: Rel (     8,    29)  ->  Abs (    78,  1586)
+	 17: Rel (     5,    18)  ->  Abs (    83,  1604)
+	 18: Rel (    14,    35)  ->  Abs (    97,  1639)
+	 19: Rel (    21,     9)  ->  Abs (   118,  1648)
+	 20: Rel (     0,    -9)  ->  Abs (   118,  1639)
+	 21: Rel (    -4,   -36)  ->  Abs (   114,  1603)
+	 22: Rel (     0,   -12)  ->  Abs (   114,  1591)
+	 23: Rel (     0,   -22)  ->  Abs (   114,  1569)
+	 24: Rel (    18,   -33)  ->  Abs (   132,  1536)
+	 25: Rel (    18,     0)  ->  Abs (   150,  1536)
+	 26: Rel (    43,     0)  ->  Abs (   193,  1536)
+	 27: Rel (    26,    55)  ->  Abs (   219,  1591)
+	 28: Rel (    12,    26)  ->  Abs (   231,  1617)
+	 29: Rel (    18,    74)  ->  Abs (   249,  1691)
+	 30: Rel (    21,     6)  ->  Abs (   270,  1697)
+	 31: Rel (     8,   -49)  ->  Abs (   278,  1648)
+	 32: Rel (     5,   -11)  ->  Abs (   283,  1637)
+	 33: Rel (    12,   -31)  ->  Abs (   295,  1606)
+	 34: Rel (    28,     0)  ->  Abs (   323,  1606)
+	 35: Rel (    38,     0)  ->  Abs (   361,  1606)
+	 36: Rel (    22,    50)  ->  Abs (   383,  1656)
+	 37: Rel (    18,    41)  ->  Abs (   401,  1697)
+	 38: Rel (     0,    44)  ->  Abs (   401,  1741)
+	 39: Rel (    21,     6)  ->  Abs (   422,  1747)
+	 40: Rel (     4,   -19)  ->  Abs (   426,  1728)
+	 41: Rel (     7,   -49)  ->  Abs (   433,  1679)
+	 42: Rel (   -15,  -232)  ->  Abs (   418,  1447)
+	 43: Rel (     0,   -47)  ->  Abs (   418,  1400)
+	 44: Rel (   -51,   -45)  ->  Abs (   367,  1355)
+	 45: Rel (   -90,   -36)  ->  Abs (   277,  1319)
+	 46: Rel (  -201,   -80)  ->  Abs (    76,  1239)
+	 47: Rel (     0,    43)  ->  Abs (    76,  1282)
+	 48: Rel (    44,    40)  ->  Abs (   120,  1322)
+	 49: Rel (    83,    35)  ->  Abs (   203,  1357)
+
+	Glyph 844: off = 0x00025C6E, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 845: off = 0x00025C98, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 846: off = 0x00025CC2, len = 48
+	  numberOfContours:	1
+	  xMin:			-36
+	  yMin:			-275
+	  xMax:			431
+	  yMax:			1234
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	16
+	00000: PUSHB[6]              0     3     2     5     1     2 
+	00007: MDAP[rd]   
+	00008: MDRP[srp0,md,rd,1] 
+	00009: MDRP[nrp0,nmd,rd,2] 
+	00010: SVTCA[y-axis] 
+	00011: MDAP[rd]   
+	00012: MDAP[rd]   
+	00013: MDRP[nrp0,md,rd,1] 
+	00014: IUP[y]     
+	00015: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (    36,  1163)  ->  Abs (    36,  1163)
+	  1: Rel (     0, -1438)  ->  Abs (    36,  -275)
+	  2: Rel (   -72,     0)  ->  Abs (   -36,  -275)
+	  3: Rel (     0,  1509)  ->  Abs (   -36,  1234)
+	  4: Rel (   467,     0)  ->  Abs (   431,  1234)
+	  5: Rel (     0,   -71)  ->  Abs (   431,  1163)
+
+	Glyph 847: off = 0x00025CF2, len = 48
+	  numberOfContours:	1
+	  xMin:			-431
+	  yMin:			-275
+	  xMax:			36
+	  yMax:			1234
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	16
+	00000: PUSHB[6]              5     2     3     0     3     4 
+	00007: MDAP[rd]   
+	00008: MDRP[nrp0,md,rd,1] 
+	00009: MDRP[nrp0,nmd,rd,2] 
+	00010: SVTCA[y-axis] 
+	00011: MDAP[rd]   
+	00012: MDAP[rd]   
+	00013: MDRP[nrp0,md,rd,1] 
+	00014: IUP[y]     
+	00015: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual                       X-Short On
+	  5:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (  -431,  1163)  ->  Abs (  -431,  1163)
+	  1: Rel (     0,    71)  ->  Abs (  -431,  1234)
+	  2: Rel (   467,     0)  ->  Abs (    36,  1234)
+	  3: Rel (     0, -1509)  ->  Abs (    36,  -275)
+	  4: Rel (   -72,     0)  ->  Abs (   -36,  -275)
+	  5: Rel (     0,  1438)  ->  Abs (   -36,  1163)
+
+	Glyph 848: off = 0x00025D22, len = 80
+	  numberOfContours:	1
+	  xMin:			-234
+	  yMin:			-275
+	  xMax:			234
+	  yMax:			1413
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	33
+	00000: NPUSHB      (14):     6     9    10     0     5    10     3     8     0     2 
+	                             3    10     5     3 
+	00016: MDAP[rd]   
+	00017: MDRP[srp0,nmd,rd,2] 
+	00018: MDRP[nrp0,md,rd,1] 
+	00019: SRP0       
+	00020: MDRP[srp0,md,rd,1] 
+	00021: MDRP[srp0,nmd,rd,2] 
+	00022: ALIGNRP    
+	00023: SVTCA[y-axis] 
+	00024: MDAP[rd]   
+	00025: MDAP[rd]   
+	00026: MDRP[srp0,md,rd,1] 
+	00027: ALIGNRP    
+	00028: SRP0       
+	00029: MDRP[srp0,nmd,rd,2] 
+	00030: MDRP[nrp0,md,rd,1] 
+	00031: IUP[y]     
+	00032: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:        XDual                         On
+	  5:  YDual                       X-Short On
+	  6:        XDual                         On
+	  7:  YDual                               On
+	  8:        XDual         Y-Short         On
+	  9:  YDual                               On
+	 10:        XDual                         On
+	 11:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   234,   984)  ->  Abs (   234,   984)
+	  1: Rel (  -198,     0)  ->  Abs (    36,   984)
+	  2: Rel (     0, -1259)  ->  Abs (    36,  -275)
+	  3: Rel (   -72,     0)  ->  Abs (   -36,  -275)
+	  4: Rel (     0,  1259)  ->  Abs (   -36,   984)
+	  5: Rel (  -198,     0)  ->  Abs (  -234,   984)
+	  6: Rel (     0,   429)  ->  Abs (  -234,  1413)
+	  7: Rel (   468,     0)  ->  Abs (   234,  1413)
+	  8: Rel (     0,   -71)  ->  Abs (   234,  1342)
+	  9: Rel (  -398,     0)  ->  Abs (  -164,  1342)
+	 10: Rel (     0,  -287)  ->  Abs (  -164,  1055)
+	 11: Rel (   398,     0)  ->  Abs (   234,  1055)
+
+	Glyph 849: off = 0x00025D72, len = 80
+	  numberOfContours:	1
+	  xMin:			-234
+	  yMin:			-275
+	  xMax:			234
+	  yMax:			1413
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	33
+	00000: NPUSHB      (14):     5     2     1    11     6     1     8     1     6     8 
+	                             9     3    11     9 
+	00016: MDAP[rd]   
+	00017: MDRP[srp0,nmd,rd,2] 
+	00018: MDRP[nrp0,nmd,nrd,0] 
+	00019: SRP0       
+	00020: MDRP[srp0,md,rd,1] 
+	00021: MDRP[srp0,nmd,rd,2] 
+	00022: MDRP[nrp0,md,rd,1] 
+	00023: SVTCA[y-axis] 
+	00024: MDAP[rd]   
+	00025: MDAP[rd]   
+	00026: MDRP[srp0,md,rd,1] 
+	00027: MDRP[nrp0,nmd,nrd,0] 
+	00028: SRP0       
+	00029: MDRP[srp0,nmd,rd,2] 
+	00030: MDRP[nrp0,md,rd,1] 
+	00031: IUP[y]     
+	00032: IUP[x]     
+
+	Flags
+	-----
+	  0:                              X-Short On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                       X-Short On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  -234,  1055)  ->  Abs (  -234,  1055)
+	  1: Rel (   398,     0)  ->  Abs (   164,  1055)
+	  2: Rel (     0,   287)  ->  Abs (   164,  1342)
+	  3: Rel (  -398,     0)  ->  Abs (  -234,  1342)
+	  4: Rel (     0,    71)  ->  Abs (  -234,  1413)
+	  5: Rel (   468,     0)  ->  Abs (   234,  1413)
+	  6: Rel (     0,  -429)  ->  Abs (   234,   984)
+	  7: Rel (  -198,     0)  ->  Abs (    36,   984)
+	  8: Rel (     0, -1259)  ->  Abs (    36,  -275)
+	  9: Rel (   -72,     0)  ->  Abs (   -36,  -275)
+	 10: Rel (     0,  1259)  ->  Abs (   -36,   984)
+	 11: Rel (  -198,     0)  ->  Abs (  -234,   984)
+
+	Glyph 850: off = 0x00025DC2, len = 64
+	  numberOfContours:	1
+	  xMin:			-234
+	  yMin:			-275
+	  xMax:			234
+	  yMax:			1413
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	27
+	00000: NPUSHB      (13):    47     6   127     6     2     6     0     5     3     0 
+	                             2     5     3 
+	00015: MDAP[rd]   
+	00016: MDRP[nrp0,nmd,rd,2] 
+	00017: MDRP[srp0,md,rd,1] 
+	00018: MDRP[nrp0,nmd,rd,2] 
+	00019: SVTCA[y-axis] 
+	00020: MDAP[rd]   
+	00021: MDAP[rd]   
+	00022: ALIGNRP    
+	00023: MDRP[nrp0,md,rd,1] 
+	00024: DELTAP1    
+	00025: IUP[y]     
+	00026: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:        XDual                         On
+	  5:  YDual                       X-Short On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   234,   984)  ->  Abs (   234,   984)
+	  1: Rel (  -198,     0)  ->  Abs (    36,   984)
+	  2: Rel (     0, -1259)  ->  Abs (    36,  -275)
+	  3: Rel (   -72,     0)  ->  Abs (   -36,  -275)
+	  4: Rel (     0,  1259)  ->  Abs (   -36,   984)
+	  5: Rel (  -198,     0)  ->  Abs (  -234,   984)
+	  6: Rel (     0,   429)  ->  Abs (  -234,  1413)
+	  7: Rel (   468,     0)  ->  Abs (   234,  1413)
+
+	Glyph 851: off = 0x00025E02, len = 114
+	  numberOfContours:	2
+	  xMin:			-234
+	  yMin:			-275
+	  xMax:			234
+	  yMax:			1413
+
+	EndPoints
+	---------
+	  0:  6
+	  1:  10
+
+	  Length of Instructions:	64
+	00000: NPUSHB      (30):     5     7     9     3     3    10     4     8    64    16 
+	                            21    52     8    10     6     2     1     8     4    10 
+	                            10     0     1     7     5     0     1     9     3     1 
+	00032: MDAP[rd]   
+	00033: MDRP[srp0,nmd,rd,2] 
+	00034: MDRP[nrp0,md,rd,1] 
+	00035: SRP0       
+	00036: MDRP[srp0,md,rd,1] 
+	00037: MDRP[srp0,nmd,rd,2] 
+	00038: MDRP[nrp0,md,rd,1] 
+	00039: SRP1       
+	00040: SRP2       
+	00041: IP         
+	00042: RTDG       
+	00043: MDAP[rd]   
+	00044: ALIGNRP    
+	00045: ALIGNRP    
+	00046: SVTCA[y-axis] 
+	00047: RTG        
+	00048: MDAP[rd]   
+	00049: MDAP[rd]   
+	00050: ALIGNRP    
+	00051: MDRP[srp0,md,rd,1] 
+	00052: MDRP[srp0,md,rd,2] 
+	00053: CALL       
+	00054: MDRP[nrp0,md,rd,1] 
+	00055: SRP2       
+	00056: IP         
+	00057: RTDG       
+	00058: MDAP[rd]   
+	00059: ALIGNRP    
+	00060: ALIGNRP    
+	00061: ALIGNRP    
+	00062: IUP[y]     
+	00063: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:        XDual         Y-Short X-Short On
+	  6:                      Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short On
+	  9:                      Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    36,  -275)  ->  Abs (    36,  -275)
+	  1: Rel (   -72,     0)  ->  Abs (   -36,  -275)
+	  2: Rel (     0,  1291)  ->  Abs (   -36,  1016)
+	  3: Rel (  -198,   182)  ->  Abs (  -234,  1198)
+	  4: Rel (   234,   215)  ->  Abs (     0,  1413)
+	  5: Rel (   234,  -215)  ->  Abs (   234,  1198)
+	  6: Rel (  -198,  -182)  ->  Abs (    36,  1016)
+	  7: Rel (    98,   182)  ->  Abs (   134,  1198)
+	  8: Rel (  -134,   121)  ->  Abs (     0,  1319)
+	  9: Rel (  -134,  -121)  ->  Abs (  -134,  1198)
+	 10: Rel (   134,  -120)  ->  Abs (     0,  1078)
+
+	Glyph 852: off = 0x00025E74, len = 84
+	  numberOfContours:	1
+	  xMin:			-234
+	  yMin:			-275
+	  xMax:			234
+	  yMax:			1413
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	35
+	00000: NPUSHB      (15):     4     3     7     0     8    13    11     8     6    10 
+	                            11     3    13     1    11 
+	00017: MDAP[rd]   
+	00018: MDRP[nrp0,nmd,nrd,0] 
+	00019: MDRP[srp0,nmd,rd,2] 
+	00020: MDRP[nrp0,nmd,nrd,0] 
+	00021: SRP0       
+	00022: MDRP[srp0,md,rd,1] 
+	00023: MDRP[nrp0,nmd,nrd,0] 
+	00024: MDRP[nrp0,md,rd,2] 
+	00025: SVTCA[y-axis] 
+	00026: MDAP[rd]   
+	00027: MDAP[rd]   
+	00028: MDRP[nrp0,nmd,nrd,0] 
+	00029: MDRP[srp0,md,rd,1] 
+	00030: MDRP[nrp0,nmd,nrd,0] 
+	00031: MDRP[srp0,nmd,rd,2] 
+	00032: MDRP[nrp0,md,rd,1] 
+	00033: IUP[y]     
+	00034: IUP[x]     
+
+	Flags
+	-----
+	  0:                              X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual XDual                 X-Short On
+	  8:        XDual         Y-Short         On
+	  9:  YDual                       X-Short On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+	 12:        XDual                         On
+	 13:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  -234,  1055)  ->  Abs (  -234,  1055)
+	  1: Rel (   198,     0)  ->  Abs (   -36,  1055)
+	  2: Rel (     0,   287)  ->  Abs (   -36,  1342)
+	  3: Rel (  -198,     0)  ->  Abs (  -234,  1342)
+	  4: Rel (     0,    71)  ->  Abs (  -234,  1413)
+	  5: Rel (   270,     0)  ->  Abs (    36,  1413)
+	  6: Rel (     0,  -358)  ->  Abs (    36,  1055)
+	  7: Rel (   198,     0)  ->  Abs (   234,  1055)
+	  8: Rel (     0,   -71)  ->  Abs (   234,   984)
+	  9: Rel (  -198,     0)  ->  Abs (    36,   984)
+	 10: Rel (     0, -1259)  ->  Abs (    36,  -275)
+	 11: Rel (   -72,     0)  ->  Abs (   -36,  -275)
+	 12: Rel (     0,  1259)  ->  Abs (   -36,   984)
+	 13: Rel (  -198,     0)  ->  Abs (  -234,   984)
+
+	Glyph 853: off = 0x00025EC8, len = 94
+	  numberOfContours:	1
+	  xMin:			-234
+	  yMin:			-275
+	  xMax:			234
+	  yMax:			1413
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	41
+	00000: NPUSHB      (18):     5     4     6     3     9     0    10    15    13     5 
+	                            10     7    12    13     4    15     2    13 
+	00020: MDAP[rd]   
+	00021: MDRP[nrp0,nmd,nrd,0] 
+	00022: MDRP[srp0,nmd,rd,2] 
+	00023: MDRP[nrp0,nmd,nrd,0] 
+	00024: SRP0       
+	00025: MDRP[srp0,md,rd,1] 
+	00026: MDRP[nrp0,nmd,nrd,0] 
+	00027: MDRP[srp0,nmd,rd,2] 
+	00028: MDRP[nrp0,nmd,nrd,0] 
+	00029: SVTCA[y-axis] 
+	00030: MDAP[rd]   
+	00031: MDAP[rd]   
+	00032: MDRP[nrp0,nmd,nrd,0] 
+	00033: MDRP[srp0,md,rd,1] 
+	00034: MDRP[nrp0,nmd,nrd,0] 
+	00035: MDRP[srp0,nmd,rd,2] 
+	00036: MDRP[nrp0,nmd,nrd,0] 
+	00037: MDRP[srp0,md,rd,1] 
+	00038: MDRP[nrp0,nmd,nrd,0] 
+	00039: IUP[y]     
+	00040: IUP[x]     
+
+	Flags
+	-----
+	  0:                              X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual         Y-Short         On
+	  7:  YDual                       X-Short On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual         Y-Short         On
+	 11:  YDual                       X-Short On
+	 12:        XDual                         On
+	 13:  YDual                       X-Short On
+	 14:        XDual                         On
+	 15:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  -234,  1055)  ->  Abs (  -234,  1055)
+	  1: Rel (   198,     0)  ->  Abs (   -36,  1055)
+	  2: Rel (     0,   287)  ->  Abs (   -36,  1342)
+	  3: Rel (  -198,     0)  ->  Abs (  -234,  1342)
+	  4: Rel (     0,    71)  ->  Abs (  -234,  1413)
+	  5: Rel (   468,     0)  ->  Abs (   234,  1413)
+	  6: Rel (     0,   -71)  ->  Abs (   234,  1342)
+	  7: Rel (  -198,     0)  ->  Abs (    36,  1342)
+	  8: Rel (     0,  -287)  ->  Abs (    36,  1055)
+	  9: Rel (   198,     0)  ->  Abs (   234,  1055)
+	 10: Rel (     0,   -71)  ->  Abs (   234,   984)
+	 11: Rel (  -198,     0)  ->  Abs (    36,   984)
+	 12: Rel (     0, -1259)  ->  Abs (    36,  -275)
+	 13: Rel (   -72,     0)  ->  Abs (   -36,  -275)
+	 14: Rel (     0,  1259)  ->  Abs (   -36,   984)
+	 15: Rel (  -198,     0)  ->  Abs (  -234,   984)
+
+	Glyph 854: off = 0x00025F26, len = 86
+	  numberOfContours:	2
+	  xMin:			-234
+	  yMin:			-275
+	  xMax:			234
+	  yMax:			1413
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  11
+
+	  Length of Instructions:	33
+	00000: NPUSHB      (14):     5     3     0     7     4     0    10     1     7     9 
+	                            10     0     4    10 
+	00016: MDAP[rd]   
+	00017: MDRP[srp0,nmd,rd,2] 
+	00018: MDRP[nrp0,md,rd,1] 
+	00019: SRP0       
+	00020: MDRP[srp0,md,rd,1] 
+	00021: MDRP[srp0,nmd,rd,2] 
+	00022: MDRP[nrp0,md,rd,1] 
+	00023: SVTCA[y-axis] 
+	00024: MDAP[rd]   
+	00025: MDAP[rd]   
+	00026: MDRP[srp0,md,rd,1] 
+	00027: ALIGNRP    
+	00028: SRP0       
+	00029: MDRP[srp0,nmd,rd,2] 
+	00030: MDRP[nrp0,md,rd,1] 
+	00031: IUP[y]     
+	00032: IUP[x]     
+
+	Flags
+	-----
+	  0:                              X-Short On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:                              X-Short On
+	  5:        XDual                         On
+	  6:  YDual                               On
+	  7:        XDual                         On
+	  8:  YDual                       X-Short On
+	  9:        XDual                         On
+	 10:  YDual                       X-Short On
+	 11:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (  -164,  1055)  ->  Abs (  -164,  1055)
+	  1: Rel (   328,     0)  ->  Abs (   164,  1055)
+	  2: Rel (     0,   287)  ->  Abs (   164,  1342)
+	  3: Rel (  -328,     0)  ->  Abs (  -164,  1342)
+	  4: Rel (   -70,  -358)  ->  Abs (  -234,   984)
+	  5: Rel (     0,   429)  ->  Abs (  -234,  1413)
+	  6: Rel (   468,     0)  ->  Abs (   234,  1413)
+	  7: Rel (     0,  -429)  ->  Abs (   234,   984)
+	  8: Rel (  -198,     0)  ->  Abs (    36,   984)
+	  9: Rel (     0, -1259)  ->  Abs (    36,  -275)
+	 10: Rel (   -72,     0)  ->  Abs (   -36,  -275)
+	 11: Rel (     0,  1259)  ->  Abs (   -36,   984)
+
+	Glyph 855: off = 0x00025F7C, len = 54
+	  numberOfContours:	1
+	  xMin:			-234
+	  yMin:			-275
+	  xMax:			234
+	  yMax:			1413
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	20
+	00000: PUSHB[8]              3     5     2     1     4     0     3     1 
+	00009: MDAP[rd]   
+	00010: MDRP[nrp0,nmd,rd,2] 
+	00011: MDRP[srp0,md,rd,1] 
+	00012: MDRP[nrp0,nmd,rd,2] 
+	00013: SVTCA[y-axis] 
+	00014: MDAP[rd]   
+	00015: MDAP[rd]   
+	00016: ALIGNRP    
+	00017: MDRP[nrp0,md,rd,1] 
+	00018: IUP[y]     
+	00019: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:                              X-Short On
+	  4:  YDual                               On
+	  5:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    36,  -275)  ->  Abs (    36,  -275)
+	  1: Rel (   -72,     0)  ->  Abs (   -36,  -275)
+	  2: Rel (     0,  1324)  ->  Abs (   -36,  1049)
+	  3: Rel (  -198,   364)  ->  Abs (  -234,  1413)
+	  4: Rel (   468,     0)  ->  Abs (   234,  1413)
+	  5: Rel (  -198,  -364)  ->  Abs (    36,  1049)
+
+	Glyph 856: off = 0x00025FB2, len = 66
+	  numberOfContours:	1
+	  xMin:			-234
+	  yMin:			-275
+	  xMax:			234
+	  yMax:			1413
+
+	EndPoints
+	---------
+	  0:  6
+
+	  Length of Instructions:	29
+	00000: NPUSHB      (11):     5     6     4     2     5     5     2     6     1     4 
+	                             2 
+	00013: MDAP[rd]   
+	00014: MDRP[nrp0,nmd,rd,2] 
+	00015: MDRP[srp0,md,rd,1] 
+	00016: MDRP[nrp0,nmd,rd,2] 
+	00017: SRP2       
+	00018: IP         
+	00019: RTDG       
+	00020: MDAP[rd]   
+	00021: SVTCA[y-axis] 
+	00022: RTG        
+	00023: MDAP[rd]   
+	00024: MDAP[rd]   
+	00025: ALIGNRP    
+	00026: MDRP[nrp0,md,rd,1] 
+	00027: IUP[y]     
+	00028: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+	  4:  YDual                       X-Short On
+	  5:        XDual                 X-Short On
+	  6:        XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    36,   984)  ->  Abs (    36,   984)
+	  1: Rel (     0, -1259)  ->  Abs (    36,  -275)
+	  2: Rel (   -72,     0)  ->  Abs (   -36,  -275)
+	  3: Rel (     0,  1259)  ->  Abs (   -36,   984)
+	  4: Rel (  -198,     0)  ->  Abs (  -234,   984)
+	  5: Rel (   234,   429)  ->  Abs (     0,  1413)
+	  6: Rel (   234,  -429)  ->  Abs (   234,   984)
+
+	Glyph 857: off = 0x00025FF4, len = 70
+	  numberOfContours:	2
+	  xMin:			-36
+	  yMin:			-425
+	  xMax:			36
+	  yMax:			1831
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	29
+	00000: NPUSHB      (12):     2     2     3     7     7     6     3     6     1     5 
+	                             2     6 
+	00014: MDAP[rd]   
+	00015: ALIGNRP    
+	00016: MDRP[srp0,md,rd,1] 
+	00017: ALIGNRP    
+	00018: SVTCA[y-axis] 
+	00019: MDAP[rd]   
+	00020: MDAP[rd]   
+	00021: SRP2       
+	00022: IP         
+	00023: MDAP[rd]   
+	00024: SRP2       
+	00025: IP         
+	00026: MDAP[rd]   
+	00027: IUP[y]     
+	00028: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+	  4:        XDual                 X-Short On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (    36,  1831)  ->  Abs (    36,  1831)
+	  1: Rel (     0,  -968)  ->  Abs (    36,   863)
+	  2: Rel (   -72,     0)  ->  Abs (   -36,   863)
+	  3: Rel (     0,   968)  ->  Abs (   -36,  1831)
+	  4: Rel (    72, -1288)  ->  Abs (    36,   543)
+	  5: Rel (     0,  -968)  ->  Abs (    36,  -425)
+	  6: Rel (   -72,     0)  ->  Abs (   -36,  -425)
+	  7: Rel (     0,   968)  ->  Abs (   -36,   543)
+
+	Glyph 858: off = 0x0002603A, len = 74
+	  numberOfContours:	1
+	  xMin:			-234
+	  yMin:			-425
+	  xMax:			234
+	  yMax:			1831
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	31
+	00000: NPUSHB      (13):     7     4     5    10     1     0     7    11     9     2 
+	                             4     0     2 
+	00015: MDAP[rd]   
+	00016: MDRP[srp0,md,rd,1] 
+	00017: MDRP[nrp0,nmd,nrd,0] 
+	00018: SRP0       
+	00019: MDRP[srp0,md,rd,1] 
+	00020: MDRP[srp0,md,rd,1] 
+	00021: MDRP[nrp0,nmd,nrd,0] 
+	00022: SVTCA[y-axis] 
+	00023: MDAP[rd]   
+	00024: MDRP[srp0,md,rd,1] 
+	00025: MDRP[nrp0,nmd,nrd,0] 
+	00026: MDAP[rd]   
+	00027: MDRP[srp0,md,rd,1] 
+	00028: MDRP[nrp0,nmd,nrd,0] 
+	00029: IUP[y]     
+	00030: IUP[x]     
+
+	Flags
+	-----
+	  0:                              X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual                       X-Short On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual         Y-Short         On
+	  8:  YDual                       X-Short On
+	  9:        XDual                         On
+	 10:  YDual XDual                 X-Short On
+	 11:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  -234,  -425)  ->  Abs (  -234,  -425)
+	  1: Rel (     0,    71)  ->  Abs (  -234,  -354)
+	  2: Rel (   198,     0)  ->  Abs (   -36,  -354)
+	  3: Rel (     0,  2114)  ->  Abs (   -36,  1760)
+	  4: Rel (  -198,     0)  ->  Abs (  -234,  1760)
+	  5: Rel (     0,    71)  ->  Abs (  -234,  1831)
+	  6: Rel (   468,     0)  ->  Abs (   234,  1831)
+	  7: Rel (     0,   -71)  ->  Abs (   234,  1760)
+	  8: Rel (  -198,     0)  ->  Abs (    36,  1760)
+	  9: Rel (     0, -2114)  ->  Abs (    36,  -354)
+	 10: Rel (   198,     0)  ->  Abs (   234,  -354)
+	 11: Rel (     0,   -71)  ->  Abs (   234,  -425)
+
+	Glyph 859: off = 0x00026084, len = 48
+	  numberOfContours:	1
+	  xMin:			-36
+	  yMin:			-425
+	  xMax:			224
+	  yMax:			1831
+
+	EndPoints
+	---------
+	  0:  4
+
+	  Length of Instructions:	19
+	00000: PUSHB[7]              1     0     4     3     0     2     3 
+	00008: MDAP[rd]   
+	00009: MDRP[srp0,md,rd,1] 
+	00010: MDRP[nrp0,md,rd,2] 
+	00011: SVTCA[y-axis] 
+	00012: MDAP[rd]   
+	00013: MDAP[rd]   
+	00014: RTHG       
+	00015: MDRP[srp0,md,rd,1] 
+	00016: MDRP[nrp0,md,rd,1] 
+	00017: IUP[y]     
+	00018: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:                      Y-Short X-Short On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   224,  1646)  ->  Abs (   224,  1646)
+	  1: Rel (  -188,  -142)  ->  Abs (    36,  1504)
+	  2: Rel (     0, -1929)  ->  Abs (    36,  -425)
+	  3: Rel (   -72,     0)  ->  Abs (   -36,  -425)
+	  4: Rel (     0,  2256)  ->  Abs (   -36,  1831)
+
+	Glyph 860: off = 0x000260B4, len = 56
+	  numberOfContours:	1
+	  xMin:			-224
+	  yMin:			-425
+	  xMax:			36
+	  yMax:			1831
+
+	EndPoints
+	---------
+	  0:  4
+
+	  Length of Instructions:	27
+	00000: NPUSHB      (12):     6     4    22     4     2     3     4     0     2     1 
+	                             4     2 
+	00014: MDAP[rd]   
+	00015: MDRP[nrp0,md,rd,2] 
+	00016: MDRP[nrp0,md,rd,1] 
+	00017: SVTCA[y-axis] 
+	00018: MDAP[rd]   
+	00019: MDAP[rd]   
+	00020: RTHG       
+	00021: MDRP[srp0,md,rd,1] 
+	00022: MDRP[nrp0,md,rd,1] 
+	00023: IUP[y]     
+	00024: IUP[x]     
+	00025: SVTCA[y-axis] 
+	00026: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    36,  1831)  ->  Abs (    36,  1831)
+	  1: Rel (     0, -2256)  ->  Abs (    36,  -425)
+	  2: Rel (   -72,     0)  ->  Abs (   -36,  -425)
+	  3: Rel (     0,  1929)  ->  Abs (   -36,  1504)
+	  4: Rel (  -188,   142)  ->  Abs (  -224,  1646)
+
+	Glyph 861: off = 0x000260EC, len = 48
+	  numberOfContours:	1
+	  xMin:			-36
+	  yMin:			-425
+	  xMax:			234
+	  yMax:			1831
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	16
+	00000: PUSHB[6]              5     1     4     3     1     4 
+	00007: MDAP[rd]   
+	00008: MDRP[srp0,md,rd,1] 
+	00009: MDRP[nrp0,md,rd,1] 
+	00010: SVTCA[y-axis] 
+	00011: MDAP[rd]   
+	00012: MDRP[nrp0,md,rd,1] 
+	00013: MDAP[rd]   
+	00014: IUP[y]     
+	00015: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (    36,  1831)  ->  Abs (    36,  1831)
+	  1: Rel (     0, -2185)  ->  Abs (    36,  -354)
+	  2: Rel (   198,     0)  ->  Abs (   234,  -354)
+	  3: Rel (     0,   -71)  ->  Abs (   234,  -425)
+	  4: Rel (  -270,     0)  ->  Abs (   -36,  -425)
+	  5: Rel (     0,  2256)  ->  Abs (   -36,  1831)
+
+	Glyph 862: off = 0x0002611C, len = 312
+	  numberOfContours:	2
+	  xMin:			74
+	  yMin:			235
+	  xMax:			1057
+	  yMax:			1216
+
+	EndPoints
+	---------
+	  0:  27
+	  1:  39
+
+	  Length of Instructions:	189
+	00000: NPUSHB      (24):    47    41     1     8    16    14    15    22     2     0 
+	                             1    23    15    17    16     9     1     3     2    22 
+	                            33    16     1    16 
+	00026: PUSHW[5]            674    17   696    21   696 
+	00037: PUSHB[3]             31    41    19 
+	00041: PUSHW[1]            361 
+	00044: PUSHB[6]              5     8    46     2     1     2 
+	00051: PUSHW[5]            674     7   696     3   696 
+	00062: NPUSHB      (22):    37    41     5     9    46    15    48    15    64    15 
+	                           130    15     4    15    62    34    41    14    62    10 
+	                            62    12 
+	00086: PUSHW[1]            361 
+	00089: NPUSHB      (27):    28    41    26    23    33     1    63     1    79     1 
+	                           141     1     4     1    62    24    62     0    62    56 
+	                            26    72    26   207    26     3    26 
+	00118: PUSHW[1]            510 
+	00121: PUSHB[6]             40     5     7   158   121    24 
+	00128: CALL       
+	00129: SVTCA[y-axis] 
+	00130: MIAP[rd+ci] 
+	00131: SVTCA[x-axis] 
+	00132: FLIPOFF    
+	00133: SRP0       
+	00134: MIRP[srp0,nmd,rd,0] 
+	00135: DELTAP1    
+	00136: FLIPON     
+	00137: MIRP[nrp0,nmd,rd,0] 
+	00138: MIRP[nrp0,nmd,rd,0] 
+	00139: MIRP[srp0,nmd,rd,0] 
+	00140: DELTAP1    
+	00141: ALIGNRP    
+	00142: SRP0       
+	00143: MIRP[nrp0,md,rd,1] 
+	00144: MIRP[srp0,md,rd,1] 
+	00145: MIRP[nrp0,nmd,rd,0] 
+	00146: MIRP[nrp0,nmd,rd,0] 
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: MIRP[srp0,nmd,rd,0] 
+	00149: DELTAP1    
+	00150: ALIGNRP    
+	00151: SVTCA[y-axis] 
+	00152: FLIPON     
+	00153: SRP0       
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: MIRP[nrp0,nmd,rd,0] 
+	00156: MIRP[nrp0,nmd,rd,0] 
+	00157: MIRP[srp0,nmd,rd,0] 
+	00158: DELTAP1    
+	00159: ALIGNRP    
+	00160: SRP0       
+	00161: MIRP[srp0,md,rd,1] 
+	00162: MIRP[nrp0,md,rd,1] 
+	00163: MIRP[nrp0,nmd,rd,0] 
+	00164: MIRP[nrp0,nmd,rd,0] 
+	00165: MIRP[srp0,nmd,rd,0] 
+	00166: DELTAP1    
+	00167: ALIGNRP    
+	00168: SRP1       
+	00169: SRP2       
+	00170: IP         
+	00171: IP         
+	00172: SRP1       
+	00173: SRP2       
+	00174: IP         
+	00175: IP         
+	00176: SVTCA[x-axis] 
+	00177: SRP1       
+	00178: SRP2       
+	00179: IP         
+	00180: IP         
+	00181: SRP1       
+	00182: SRP2       
+	00183: IP         
+	00184: IP         
+	00185: IUP[y]     
+	00186: IUP[x]     
+	00187: SVTCA[x-axis] 
+	00188: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual               Y-Short X-Short On
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short On
+	 10:                      Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short On
+	 16:                      Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short On
+	 22:                      Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:        XDual         Y-Short X-Short On
+	 29:        XDual         Y-Short         Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   213,   961)  ->  Abs (   213,   961)
+	  1: Rel (  -139,   136)  ->  Abs (    74,  1097)
+	  2: Rel (   115,   119)  ->  Abs (   189,  1216)
+	  3: Rel (   139,  -139)  ->  Abs (   328,  1077)
+	  4: Rel (   106,    72)  ->  Abs (   434,  1149)
+	  5: Rel (   131,     0)  ->  Abs (   565,  1149)
+	  6: Rel (   132,     0)  ->  Abs (   697,  1149)
+	  7: Rel (   105,   -72)  ->  Abs (   802,  1077)
+	  8: Rel (   139,   139)  ->  Abs (   941,  1216)
+	  9: Rel (   116,  -119)  ->  Abs (  1057,  1097)
+	 10: Rel (  -139,  -136)  ->  Abs (   918,   961)
+	 11: Rel (    71,  -110)  ->  Abs (   989,   851)
+	 12: Rel (     0,  -125)  ->  Abs (   989,   726)
+	 13: Rel (     0,  -126)  ->  Abs (   989,   600)
+	 14: Rel (   -71,  -110)  ->  Abs (   918,   490)
+	 15: Rel (   139,  -136)  ->  Abs (  1057,   354)
+	 16: Rel (  -116,  -119)  ->  Abs (   941,   235)
+	 17: Rel (  -139,   140)  ->  Abs (   802,   375)
+	 18: Rel (  -105,   -73)  ->  Abs (   697,   302)
+	 19: Rel (  -132,     0)  ->  Abs (   565,   302)
+	 20: Rel (  -131,     0)  ->  Abs (   434,   302)
+	 21: Rel (  -106,    73)  ->  Abs (   328,   375)
+	 22: Rel (  -139,  -140)  ->  Abs (   189,   235)
+	 23: Rel (  -115,   119)  ->  Abs (    74,   354)
+	 24: Rel (   139,   136)  ->  Abs (   213,   490)
+	 25: Rel (   -71,   110)  ->  Abs (   142,   600)
+	 26: Rel (     0,   126)  ->  Abs (   142,   726)
+	 27: Rel (     0,   125)  ->  Abs (   142,   851)
+	 28: Rel (   163,  -125)  ->  Abs (   305,   726)
+	 29: Rel (     0,  -108)  ->  Abs (   305,   618)
+	 30: Rel (   152,  -152)  ->  Abs (   457,   466)
+	 31: Rel (   107,     0)  ->  Abs (   564,   466)
+	 32: Rel (   107,     0)  ->  Abs (   671,   466)
+	 33: Rel (   152,   152)  ->  Abs (   823,   618)
+	 34: Rel (     0,   108)  ->  Abs (   823,   726)
+	 35: Rel (     0,   107)  ->  Abs (   823,   833)
+	 36: Rel (  -151,   152)  ->  Abs (   672,   985)
+	 37: Rel (  -108,     0)  ->  Abs (   564,   985)
+	 38: Rel (  -107,     0)  ->  Abs (   457,   985)
+	 39: Rel (  -152,  -152)  ->  Abs (   305,   833)
+
+	Glyph 863: off = 0x00026254, len = 838
+	  numberOfContours:	16
+	  xMin:			0
+	  yMin:			0
+	  xMax:			2048
+	  yMax:			1473
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  9
+	  2:  13
+	  3:  25
+	  4:  29
+	  5:  35
+	  6:  46
+	  7:  52
+	  8:  56
+	  9:  68
+	 10:  72
+	 11:  76
+	 12:  82
+	 13:  89
+	 14:  96
+	 15:  104
+
+	  Length of Instructions:	510
+	00000: NPUSHB     (255):   167    15   183    15     2   119    15   135    15   151 
+	                            15     3   122    38     1    83    37    99    37     2 
+	                            35    37    51    37    67    37     3    89    61   105 
+	                            61     2    41    61    57    61    73    61     3    89 
+	                            65   105    65     2    41    65    57    65    73    65 
+	                             3    86    59   102    59     2    38    59    54    59 
+	                            70    59     3    86    67   102    67     2    38    67 
+	                            54    67    70    67     3   198   102     1   197   104 
+	                             1   202    98     1   201   100     1    86    96   102 
+	                            96     2    89    91   105    91     2   165    42   181 
+	                            42     2    99    42     1   181    42   197    42   213 
+	                            42   245    42     4   117    42   133    42   149    42 
+	                             3    51    42    67    42    83    42     3    99    66 
+	                            24    66    40    45    87   111    93     1    63    93 
+	                            79    93    95    93     3    93    93    39    86    80 
+	                            40     1    47    40    63    40    79    40     3    40 
+	                            47    12    79    71     1    71     1    50    51     7 
+	                            27     3    47     8    28     4    51    19    21   103 
+	                            16    60    94    80    39     1    15    39    79    39 
+	                            95    39     3   159    39     1    32    39    48    39 
+	                            64    39     3    39    82    11    70    34    79    77 
+	                            55    75    32    82    54    74    31    77    97   112 
+	                            57   128    57   144    57     3    64    57    80    57 
+	                            96    57     3    31    57     1    57    39    87    48 
+	                            94     1    94    31    39   191    39     2    31    39 
+	                            95    39   111    39   159 
+	00257: NPUSHB     (102):    39   223    39   239    39     6    39    36    85    45 
+	                           101    45     2    37    45    53    45    69    45     3 
+	                            45    83   159    43     1    43    95    18   111    18 
+	                             2    18    90    80    36     1    36    23   144    14 
+	                             1   111    14   127    14     2    14    33     7    54 
+	                             9    53    35     3     0    31     1    31    35     1 
+	                            11    33     0    10    35   106    48   101     1   101 
+	                           111    63   127    63     2    15    63    31    63    63 
+	                            63    79    63     4    63    26    73    27    74    78 
+	                            47    15    77     1    77    78    49    69    81    50 
+	                            70    78 
+	00361: MDAP[rd]   
+	00362: MDRP[nrp0,nmd,nrd,0] 
+	00363: MDRP[nrp0,nmd,nrd,0] 
+	00364: MDRP[srp0,md,rd,1] 
+	00365: MDRP[nrp0,nmd,nrd,0] 
+	00366: MDRP[nrp0,nmd,nrd,0] 
+	00367: SRP0       
+	00368: MDRP[srp0,md,rd,1] 
+	00369: DELTAP1    
+	00370: MDRP[nrp0,nmd,nrd,0] 
+	00371: SRP0       
+	00372: MDRP[srp0,nmd,rd,0] 
+	00373: MDRP[nrp0,nmd,nrd,0] 
+	00374: MDRP[srp0,md,rd,1] 
+	00375: MDRP[nrp0,nmd,nrd,0] 
+	00376: MDAP[rd]   
+	00377: DELTAP1    
+	00378: DELTAP2    
+	00379: MDRP[nrp0,md,rd,1] 
+	00380: DELTAP3    
+	00381: SRP0       
+	00382: MDRP[srp0,nmd,nrd,0] 
+	00383: MDRP[nrp0,nmd,nrd,0] 
+	00384: MDRP[nrp0,nmd,nrd,0] 
+	00385: MDRP[srp0,md,rd,1] 
+	00386: MDRP[nrp0,nmd,nrd,0] 
+	00387: MDRP[nrp0,nmd,nrd,0] 
+	00388: SRP0       
+	00389: MDRP[srp0,nmd,rd,0] 
+	00390: DELTAP1    
+	00391: MDRP[nrp0,nmd,nrd,0] 
+	00392: SRP0       
+	00393: MDRP[srp0,nmd,rd,0] 
+	00394: MDRP[nrp0,nmd,nrd,0] 
+	00395: MDRP[srp0,md,rd,1] 
+	00396: MDRP[nrp0,nmd,nrd,0] 
+	00397: SRP0       
+	00398: MDRP[srp0,nmd,rd,2] 
+	00399: DELTAP2    
+	00400: DELTAP1    
+	00401: MDRP[nrp0,md,rd,1] 
+	00402: MDRP[srp0,nmd,rd,0] 
+	00403: DELTAP1    
+	00404: MDRP[nrp0,md,rd,1] 
+	00405: MDRP[nrp0,nmd,rd,2] 
+	00406: DELTAP1    
+	00407: MDRP[srp0,nmd,rd,0] 
+	00408: DELTAP2    
+	00409: MDRP[nrp0,md,rd,1] 
+	00410: SHP[rp1,zp0] 
+	00411: DELTAP1    
+	00412: DELTAP1    
+	00413: SRP0       
+	00414: MDRP[srp0,nmd,rd,0] 
+	00415: DELTAP1    
+	00416: DELTAP2    
+	00417: MDRP[srp0,md,rd,1] 
+	00418: DELTAP3    
+	00419: MDRP[nrp0,nmd,nrd,0] 
+	00420: SRP0       
+	00421: MDRP[srp0,nmd,rd,2] 
+	00422: DELTAP1    
+	00423: DELTAP1    
+	00424: DELTAP1    
+	00425: MDRP[nrp0,md,rd,1] 
+	00426: SVTCA[y-axis] 
+	00427: MDAP[rd]   
+	00428: MDRP[nrp0,nmd,nrd,0] 
+	00429: ALIGNRP    
+	00430: ALIGNRP    
+	00431: MDRP[srp0,md,rd,1] 
+	00432: MDRP[nrp0,nmd,nrd,0] 
+	00433: ALIGNRP    
+	00434: ALIGNRP    
+	00435: SRP0       
+	00436: MDRP[srp0,nmd,rd,0] 
+	00437: MDRP[nrp0,nmd,nrd,0] 
+	00438: MDRP[srp0,nmd,rd,2] 
+	00439: MDRP[nrp0,nmd,nrd,0] 
+	00440: SRP0       
+	00441: MDRP[srp0,nmd,rd,2] 
+	00442: DELTAP1    
+	00443: DELTAP1    
+	00444: DELTAP2    
+	00445: DELTAP1    
+	00446: MDRP[nrp0,md,rd,1] 
+	00447: MDRP[srp0,nmd,rd,0] 
+	00448: MDRP[nrp0,nmd,nrd,0] 
+	00449: MDRP[srp0,md,rd,1] 
+	00450: MDRP[srp0,nmd,nrd,0] 
+	00451: MDRP[nrp0,nmd,rd,2] 
+	00452: MDAP[rd]   
+	00453: MDRP[nrp0,nmd,nrd,0] 
+	00454: ALIGNRP    
+	00455: ALIGNRP    
+	00456: MDRP[srp0,md,rd,1] 
+	00457: MDRP[nrp0,nmd,nrd,0] 
+	00458: ALIGNRP    
+	00459: ALIGNRP    
+	00460: SRP0       
+	00461: MDRP[srp0,md,rd,1] 
+	00462: MDRP[nrp0,nmd,nrd,0] 
+	00463: MDRP[srp0,nmd,rd,2] 
+	00464: DELTAP1    
+	00465: MDRP[nrp0,nmd,nrd,0] 
+	00466: SRP0       
+	00467: MDRP[srp0,nmd,rd,2] 
+	00468: DELTAP1    
+	00469: DELTAP2    
+	00470: MDRP[nrp0,md,rd,1] 
+	00471: SRP2       
+	00472: IP         
+	00473: MDAP[rd]   
+	00474: DELTAP2    
+	00475: DELTAP2    
+	00476: MDRP[nrp0,md,rd,1] 
+	00477: IP         
+	00478: SRP0       
+	00479: MDRP[nrp0,nmd,rd,0] 
+	00480: MDRP[nrp0,nmd,nrd,0] 
+	00481: SRP0       
+	00482: MDRP[nrp0,md,rd,1] 
+	00483: IUP[y]     
+	00484: IUP[x]     
+	00485: DELTAP1    
+	00486: DELTAP1    
+	00487: DELTAP2    
+	00488: DELTAP1    
+	00489: DELTAP1    
+	00490: DELTAP2    
+	00491: DELTAP2    
+	00492: DELTAP1    
+	00493: DELTAP1    
+	00494: DELTAP1    
+	00495: DELTAP1    
+	00496: SVTCA[x-axis] 
+	00497: DELTAP1    
+	00498: DELTAP1    
+	00499: DELTAP1    
+	00500: DELTAP1    
+	00501: DELTAP1    
+	00502: DELTAP1    
+	00503: DELTAP1    
+	00504: DELTAP1    
+	00505: DELTAP1    
+	00506: DELTAP1    
+	00507: DELTAP2    
+	00508: DELTAP1    
+	00509: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                       X-Short On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual                               On
+	  6:                      Y-Short         On
+	  7:  YDual                               On
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual                               On
+	 10:                                      On
+	 11:  YDual                       X-Short On
+	 12:        XDual                         On
+	 13:  YDual XDual                 X-Short On
+	 14:                                      On
+	 15:        XDual         Y-Short         Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:        XDual                         On
+	 25:  YDual XDual                 X-Short On
+	 26:                                      On
+	 27:  YDual                               On
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual                               On
+	 30:                                      On
+	 31:  YDual                               On
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual                 X-Short On
+	 36:                                      On
+	 37:        XDual         Y-Short         Off
+	 38:  YDual                               On
+	 39:  YDual                       X-Short On
+	 40:        XDual                         On
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:                      Y-Short X-Short On
+	 46:        XDual         Y-Short X-Short Off
+	 47:                                      On
+	 48:  YDual                       X-Short On
+	 49:        XDual         Y-Short         On
+	 50:  YDual                       X-Short On
+	 51:        XDual                         On
+	 52:  YDual                               On
+	 53:                                      On
+	 54:  YDual                               On
+	 55:  YDual XDual         Y-Short         On
+	 56:  YDual                               On
+	 57:                                      On
+	 58:        XDual         Y-Short         Off
+	 59:                      Y-Short X-Short Off
+	 60:  YDual                       X-Short On
+	 61:  YDual                       X-Short Off
+	 62:  YDual               Y-Short X-Short Off
+	 63:  YDual XDual         Y-Short         On
+	 64:  YDual XDual         Y-Short         Off
+	 65:  YDual XDual         Y-Short X-Short Off
+	 66:  YDual XDual                 X-Short On
+	 67:  YDual XDual                 X-Short Off
+	 68:        XDual         Y-Short X-Short Off
+	 69:                                      On
+	 70:  YDual                       X-Short On
+	 71:        XDual                         On
+	 72:  YDual XDual                 X-Short On
+	 73:                                      On
+	 74:  YDual                               On
+	 75:  YDual XDual         Y-Short         On
+	 76:  YDual                               On
+	 77:                      Y-Short         On
+	 78:  YDual                               On
+	 79:        XDual                         On
+	 80:  YDual XDual                 X-Short On
+	 81:        XDual         Y-Short         On
+	 82:  YDual XDual                 X-Short On
+	 83:                                      On
+	 84:  YDual XDual         Y-Short         Off
+	 85:  YDual                       X-Short On
+	 86:  YDual                       X-Short On
+	 87:        XDual         Y-Short         On
+	 88:  YDual XDual                 X-Short On
+	 89:  YDual XDual                 X-Short Off
+	 90:        XDual         Y-Short X-Short On
+	 91:  YDual XDual         Y-Short         Off
+	 92:  YDual                       X-Short On
+	 93:  YDual                       X-Short On
+	 94:        XDual         Y-Short         On
+	 95:  YDual XDual                 X-Short On
+	 96:  YDual XDual                 X-Short Off
+	 97:  YDual               Y-Short         On
+	 98:        XDual                         Off
+	 99:  YDual                       X-Short On
+	100:  YDual                       X-Short Off
+	101:        XDual                         On
+	102:        XDual                         Off
+	103:  YDual XDual                 X-Short On
+	104:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  2048,  1150)  ->  Abs (  2048,  1150)
+	  1: Rel (  -100,     0)  ->  Abs (  1948,  1150)
+	  2: Rel (     0,   223)  ->  Abs (  1948,  1373)
+	  3: Rel (  -223,     0)  ->  Abs (  1725,  1373)
+	  4: Rel (     0,   100)  ->  Abs (  1725,  1473)
+	  5: Rel (   323,     0)  ->  Abs (  2048,  1473)
+	  6: Rel (  -575,  -100)  ->  Abs (  1473,  1373)
+	  7: Rel (  -323,     0)  ->  Abs (  1150,  1373)
+	  8: Rel (     0,   100)  ->  Abs (  1150,  1473)
+	  9: Rel (   323,     0)  ->  Abs (  1473,  1473)
+	 10: Rel (   575,  -898)  ->  Abs (  2048,   575)
+	 11: Rel (  -100,     0)  ->  Abs (  1948,   575)
+	 12: Rel (     0,   323)  ->  Abs (  1948,   898)
+	 13: Rel (   100,     0)  ->  Abs (  2048,   898)
+	 14: Rel (  -266,  -287)  ->  Abs (  1782,   611)
+	 15: Rel (     0,  -241)  ->  Abs (  1782,   370)
+	 16: Rel (  -211,     0)  ->  Abs (  1571,   370)
+	 17: Rel (   -86,     0)  ->  Abs (  1485,   370)
+	 18: Rel (   -52,    45)  ->  Abs (  1433,   415)
+	 19: Rel (    73,    79)  ->  Abs (  1506,   494)
+	 20: Rel (    25,   -26)  ->  Abs (  1531,   468)
+	 21: Rel (    40,     0)  ->  Abs (  1571,   468)
+	 22: Rel (    95,     0)  ->  Abs (  1666,   468)
+	 23: Rel (     0,   138)  ->  Abs (  1666,   606)
+	 24: Rel (     0,   484)  ->  Abs (  1666,  1090)
+	 25: Rel (   116,     0)  ->  Abs (  1782,  1090)
+	 26: Rel (  -884,   283)  ->  Abs (   898,  1373)
+	 27: Rel (  -323,     0)  ->  Abs (   575,  1373)
+	 28: Rel (     0,   100)  ->  Abs (   575,  1473)
+	 29: Rel (   323,     0)  ->  Abs (   898,  1473)
+	 30: Rel (  1150, -1473)  ->  Abs (  2048,     0)
+	 31: Rel (  -323,     0)  ->  Abs (  1725,     0)
+	 32: Rel (     0,   100)  ->  Abs (  1725,   100)
+	 33: Rel (   223,     0)  ->  Abs (  1948,   100)
+	 34: Rel (     0,   223)  ->  Abs (  1948,   323)
+	 35: Rel (   100,     0)  ->  Abs (  2048,   323)
+	 36: Rel (  -625,   268)  ->  Abs (  1423,   591)
+	 37: Rel (     0,  -209)  ->  Abs (  1423,   382)
+	 38: Rel (  -274,     0)  ->  Abs (  1149,   382)
+	 39: Rel (  -240,     0)  ->  Abs (   909,   382)
+	 40: Rel (     0,   708)  ->  Abs (   909,  1090)
+	 41: Rel (   235,     0)  ->  Abs (  1144,  1090)
+	 42: Rel (   249,     0)  ->  Abs (  1393,  1090)
+	 43: Rel (     0,  -186)  ->  Abs (  1393,   904)
+	 44: Rel (     0,   -91)  ->  Abs (  1393,   813)
+	 45: Rel (   -89,   -54)  ->  Abs (  1304,   759)
+	 46: Rel (   119,   -46)  ->  Abs (  1423,   713)
+	 47: Rel ( -1100,   660)  ->  Abs (   323,  1373)
+	 48: Rel (  -223,     0)  ->  Abs (   100,  1373)
+	 49: Rel (     0,  -223)  ->  Abs (   100,  1150)
+	 50: Rel (  -100,     0)  ->  Abs (     0,  1150)
+	 51: Rel (     0,   323)  ->  Abs (     0,  1473)
+	 52: Rel (   323,     0)  ->  Abs (   323,  1473)
+	 53: Rel (  1150, -1473)  ->  Abs (  1473,     0)
+	 54: Rel (  -323,     0)  ->  Abs (  1150,     0)
+	 55: Rel (     0,   100)  ->  Abs (  1150,   100)
+	 56: Rel (   323,     0)  ->  Abs (  1473,   100)
+	 57: Rel (  -619,   635)  ->  Abs (   854,   735)
+	 58: Rel (     0,  -173)  ->  Abs (   854,   562)
+	 59: Rel (  -164,  -192)  ->  Abs (   690,   370)
+	 60: Rel (  -153,     0)  ->  Abs (   537,   370)
+	 61: Rel (  -153,     0)  ->  Abs (   384,   370)
+	 62: Rel (  -161,   192)  ->  Abs (   223,   562)
+	 63: Rel (     0,   173)  ->  Abs (   223,   735)
+	 64: Rel (     0,   175)  ->  Abs (   223,   910)
+	 65: Rel (   161,   192)  ->  Abs (   384,  1102)
+	 66: Rel (   153,     0)  ->  Abs (   537,  1102)
+	 67: Rel (   153,     0)  ->  Abs (   690,  1102)
+	 68: Rel (   164,  -192)  ->  Abs (   854,   910)
+	 69: Rel (  -754,  -335)  ->  Abs (   100,   575)
+	 70: Rel (  -100,     0)  ->  Abs (     0,   575)
+	 71: Rel (     0,   323)  ->  Abs (     0,   898)
+	 72: Rel (   100,     0)  ->  Abs (   100,   898)
+	 73: Rel (   798,  -898)  ->  Abs (   898,     0)
+	 74: Rel (  -323,     0)  ->  Abs (   575,     0)
+	 75: Rel (     0,   100)  ->  Abs (   575,   100)
+	 76: Rel (   323,     0)  ->  Abs (   898,   100)
+	 77: Rel (  -575,  -100)  ->  Abs (   323,     0)
+	 78: Rel (  -323,     0)  ->  Abs (     0,     0)
+	 79: Rel (     0,   323)  ->  Abs (     0,   323)
+	 80: Rel (   100,     0)  ->  Abs (   100,   323)
+	 81: Rel (     0,  -223)  ->  Abs (   100,   100)
+	 82: Rel (   223,     0)  ->  Abs (   323,   100)
+	 83: Rel (   954,   793)  ->  Abs (  1277,   893)
+	 84: Rel (     0,    99)  ->  Abs (  1277,   992)
+	 85: Rel (  -163,     0)  ->  Abs (  1114,   992)
+	 86: Rel (   -89,     0)  ->  Abs (  1025,   992)
+	 87: Rel (     0,  -194)  ->  Abs (  1025,   798)
+	 88: Rel (   101,     0)  ->  Abs (  1126,   798)
+	 89: Rel (   151,     0)  ->  Abs (  1277,   798)
+	 90: Rel (    30,  -207)  ->  Abs (  1307,   591)
+	 91: Rel (     0,   109)  ->  Abs (  1307,   700)
+	 92: Rel (  -171,     0)  ->  Abs (  1136,   700)
+	 93: Rel (  -111,     0)  ->  Abs (  1025,   700)
+	 94: Rel (     0,  -220)  ->  Abs (  1025,   480)
+	 95: Rel (   124,     0)  ->  Abs (  1149,   480)
+	 96: Rel (   158,     0)  ->  Abs (  1307,   480)
+	 97: Rel (  -569,   255)  ->  Abs (   738,   735)
+	 98: Rel (     0,   269)  ->  Abs (   738,  1004)
+	 99: Rel (  -201,     0)  ->  Abs (   537,  1004)
+	100: Rel (  -198,     0)  ->  Abs (   339,  1004)
+	101: Rel (     0,  -269)  ->  Abs (   339,   735)
+	102: Rel (     0,  -267)  ->  Abs (   339,   468)
+	103: Rel (   198,     0)  ->  Abs (   537,   468)
+	104: Rel (   201,     0)  ->  Abs (   738,   468)
+
+	Glyph 864: off = 0x0002659A, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 865: off = 0x000265C4, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 866: off = 0x000265EE, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 867: off = 0x00026618, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 868: off = 0x00026642, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 869: off = 0x0002666C, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 870: off = 0x00026696, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 871: off = 0x000266C0, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 872: off = 0x000266EA, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 873: off = 0x00026714, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 874: off = 0x0002673E, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 875: off = 0x00026768, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 876: off = 0x00026792, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 877: off = 0x000267BC, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 878: off = 0x000267E6, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 879: off = 0x00026810, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 880: off = 0x0002683A, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 881: off = 0x00026864, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 882: off = 0x0002688E, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 883: off = 0x000268B8, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 884: off = 0x000268E2, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 885: off = 0x0002690C, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 886: off = 0x00026936, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 887: off = 0x00026960, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 888: off = 0x0002698A, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 889: off = 0x000269B4, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 890: off = 0x000269DE, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 891: off = 0x00026A08, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 892: off = 0x00026A32, len = 158
+	  numberOfContours:	1
+	  xMin:			127
+	  yMin:			-429
+	  xMax:			560
+	  yMax:			1608
+
+	EndPoints
+	---------
+	  0:  23
+
+	  Length of Instructions:	72
+	00000: PUSHW[2]             22   -32 
+	00005: PUSHB[4]             11    17    52    16 
+	00010: PUSHW[1]            -12 
+	00013: PUSHB[4]             14    17    52    15 
+	00018: PUSHW[1]            -32 
+	00021: PUSHB[5]             10    17    52     0     1 
+	00027: PUSHW[1]            774 
+	00030: PUSHB[3]             14    13    13 
+	00034: PUSHW[1]            762 
+	00037: PUSHB[3]             14    14     1 
+	00041: PUSHW[1]            762 
+	00044: PUSHB[3]              0     0     7 
+	00048: PUSHW[2]            767    18 
+	00053: MDAP[rd]   
+	00054: MIRP[nrp0,md,rd,1] 
+	00055: SHP[rp1,zp0] 
+	00056: MDAP[rd]   
+	00057: MIRP[nrp0,md,rd,0] 
+	00058: ALIGNRP    
+	00059: SRP0       
+	00060: MIRP[srp0,md,rd,1] 
+	00061: SVTCA[y-axis] 
+	00062: MDAP[rd]   
+	00063: SHP[rp1,zp0] 
+	00064: MIAP[rd+ci] 
+	00065: SHP[rp1,zp0] 
+	00066: IUP[y]     
+	00067: IUP[x]     
+	00068: SVTCA[x-axis] 
+	00069: CALL       
+	00070: CALL       
+	00071: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:        XDual                         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   560,  -384)  ->  Abs (   560,  -384)
+	  1: Rel (   -44,   -45)  ->  Abs (   516,  -429)
+	  2: Rel (  -104,   125)  ->  Abs (   412,  -304)
+	  3: Rel (   -51,    78)  ->  Abs (   361,  -226)
+	  4: Rel (  -103,   158)  ->  Abs (   258,   -68)
+	  5: Rel (   -57,   174)  ->  Abs (   201,   106)
+	  6: Rel (   -74,   228)  ->  Abs (   127,   334)
+	  7: Rel (     0,   261)  ->  Abs (   127,   595)
+	  8: Rel (     0,   250)  ->  Abs (   127,   845)
+	  9: Rel (    74,   224)  ->  Abs (   201,  1069)
+	 10: Rel (    58,   177)  ->  Abs (   259,  1246)
+	 11: Rel (   102,   158)  ->  Abs (   361,  1404)
+	 12: Rel (    53,    83)  ->  Abs (   414,  1487)
+	 13: Rel (   100,   121)  ->  Abs (   514,  1608)
+	 14: Rel (    46,   -42)  ->  Abs (   560,  1566)
+	 15: Rel (  -108,  -238)  ->  Abs (   452,  1328)
+	 16: Rel (   -56,  -234)  ->  Abs (   396,  1094)
+	 17: Rel (   -60,  -249)  ->  Abs (   336,   845)
+	 18: Rel (     0,  -242)  ->  Abs (   336,   603)
+	 19: Rel (     0,  -244)  ->  Abs (   336,   359)
+	 20: Rel (    34,  -194)  ->  Abs (   370,   165)
+	 21: Rel (    28,  -157)  ->  Abs (   398,     8)
+	 22: Rel (    56,  -150)  ->  Abs (   454,  -142)
+	 23: Rel (    28,   -75)  ->  Abs (   482,  -217)
+
+	Glyph 893: off = 0x00026AD0, len = 22
+	  numberOfContours:	-1  (Composite)
+	  xMin:			93
+	  yMin:			-429
+	  xMax:			526
+	  yMax:			1608
+
+	     0: Flags:		0x0057
+		Glyf Index:	892
+		X WOffset:	653
+		Y WOffset:	0
+		X Scale:	-1.000000
+		Y Scale:	 1.000000
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 894: off = 0x00026AE6, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 895: off = 0x00026B10, len = 736
+	  numberOfContours:	4
+	  xMin:			21
+	  yMin:			293
+	  xMax:			1235
+	  yMax:			1568
+
+	EndPoints
+	---------
+	  0:  12
+	  1:  47
+	  2:  124
+	  3:  135
+
+	  Length of Instructions:	335
+	00000: NPUSHB      (35):     5     0     1     7     7     1     1    37    45    46 
+	                            41    36    37    29    30    19    33    16    37    37 
+	                            30    15    46     1    46    46    30    64     9    12 
+	                            52    30    30    33    41 
+	00037: PUSHW[1]            757 
+	00040: PUSHB[3]             16    16    33 
+	00044: PUSHW[1]            757 
+	00047: NPUSHB      (26):    23    23    99   130   126   133    57    87    61    64 
+	                            67   126   126   133    73    73    80    80   119    99 
+	                            99   133   133    87    67   107 
+	00075: PUSHW[1]            751 
+	00078: PUSHB[3]             53    53    87 
+	00082: PUSHW[1]            751 
+	00085: PUSHB[3]             61    61    67 
+	00089: PUSHW[1]            747 
+	00092: PUSHB[3]              5     5     1 
+	00096: PUSHW[1]            761 
+	00099: PUSHB[7]              0     0    19    37    36    13    46 
+	00107: PUSHW[1]            761 
+	00110: PUSHB[5]             45    45    37    26    29 
+	00116: PUSHW[1]            761 
+	00119: PUSHB[3]             30    30    36 
+	00123: PUSHW[1]            761 
+	00126: PUSHB[8]             64    37    37    99    57    90   103    95 
+	00135: PUSHW[1]            771 
+	00138: NPUSHB      (18):    99    99   119    80   103   103    48    84   130   130 
+	                            70    73   126   125    64     4    84    76 
+	00158: PUSHW[1]            771 
+	00161: PUSHB[3]             80    80    84 
+	00165: PUSHW[1]            -64 
+	00168: PUSHB[4]             16    17    52    84 
+	00173: PUSHW[1]            -64 
+	00176: NPUSHB      (10):     9    10    52    84    84    70    53   110    48   115 
+	00188: PUSHW[1]            771 
+	00191: PUSHB[7]             32   119   119    48    48   137    70 
+	00199: PUSHW[1]            284 
+	00202: SCANCTRL   
+	00203: MDAP[rd]   
+	00204: SRP1       
+	00205: SHP[rp1,zp0] 
+	00206: MDAP[rd]   
+	00207: SHP[rp1,zp0] 
+	00208: RTHG       
+	00209: MDAP[rd]   
+	00210: SMD        
+	00211: MIRP[srp0,md,rd,1] 
+	00212: SRP1       
+	00213: IP         
+	00214: IP         
+	00215: RTG        
+	00216: SRP1       
+	00217: IP         
+	00218: MDAP[rd]   
+	00219: CALL       
+	00220: CALL       
+	00221: SHP[rp1,zp0] 
+	00222: RTHG       
+	00223: MDAP[rd]   
+	00224: MIRP[srp0,md,rd,1] 
+	00225: SRP1       
+	00226: SLOOP      
+	00227: IP         
+	00228: RTG        
+	00229: SRP1       
+	00230: IP         
+	00231: MDAP[rd]   
+	00232: SRP1       
+	00233: SRP2       
+	00234: IP         
+	00235: MDAP[rd]   
+	00236: RTHG       
+	00237: SRP1       
+	00238: SRP2       
+	00239: IP         
+	00240: MDAP[rd]   
+	00241: MIRP[srp0,md,rd,1] 
+	00242: SRP1       
+	00243: IP         
+	00244: IP         
+	00245: SRP1       
+	00246: SHP[rp1,zp0] 
+	00247: RTG        
+	00248: MDAP[rd]   
+	00249: SMD        
+	00250: MIRP[srp0,md,rd,1] 
+	00251: SHP[rp2,zp1] 
+	00252: MDAP[rd]   
+	00253: MIRP[srp0,md,rd,1] 
+	00254: SHP[rp2,zp1] 
+	00255: SRP1       
+	00256: SHP[rp1,zp0] 
+	00257: MDAP[rd]   
+	00258: MIRP[srp0,md,rd,1] 
+	00259: SHP[rp2,zp1] 
+	00260: SRP1       
+	00261: SRP2       
+	00262: IP         
+	00263: SHP[rp1,zp0] 
+	00264: MDAP[rd]   
+	00265: MIRP[srp0,md,rd,1] 
+	00266: SHP[rp2,zp1] 
+	00267: MDAP[rd]   
+	00268: SVTCA[y-axis] 
+	00269: MIAP[rd+ci] 
+	00270: ALIGNRP    
+	00271: SRP0       
+	00272: MIRP[nrp0,md,rd,1] 
+	00273: ALIGNRP    
+	00274: SRP0       
+	00275: MIRP[nrp0,md,rd,1] 
+	00276: SRP1       
+	00277: SRP2       
+	00278: IP         
+	00279: MDAP[rd]   
+	00280: SHP[rp2,zp1] 
+	00281: MDAP[rd]   
+	00282: ALIGNRP    
+	00283: IP         
+	00284: MDAP[rd]   
+	00285: IP         
+	00286: MDAP[rd]   
+	00287: SRP2       
+	00288: IP         
+	00289: MDAP[rd]   
+	00290: SRP1       
+	00291: IP         
+	00292: SRP1       
+	00293: SRP2       
+	00294: IP         
+	00295: SRP1       
+	00296: SRP2       
+	00297: IP         
+	00298: SRP1       
+	00299: SHP[rp1,zp0] 
+	00300: MDAP[rd]   
+	00301: MIRP[nrp0,md,rd,1] 
+	00302: IP         
+	00303: MDAP[rd]   
+	00304: MIRP[nrp0,md,rd,1] 
+	00305: SRP1       
+	00306: SHP[rp1,zp0] 
+	00307: MDAP[rd]   
+	00308: CALL       
+	00309: SHP[rp2,zp1] 
+	00310: MDAP[rd]   
+	00311: DELTAP1    
+	00312: SRP2       
+	00313: IP         
+	00314: MDAP[rd]   
+	00315: SRP1       
+	00316: SRP2       
+	00317: IP         
+	00318: SRP1       
+	00319: IP         
+	00320: SRP1       
+	00321: IP         
+	00322: SRP1       
+	00323: SRP2       
+	00324: IP         
+	00325: SRP1       
+	00326: SHP[rp1,zp0] 
+	00327: MDAP[rd]   
+	00328: SHP[rp1,zp0] 
+	00329: MDAP[rd]   
+	00330: SRP2       
+	00331: IP         
+	00332: IP         
+	00333: IUP[y]     
+	00334: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual               Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:        XDual         Y-Short         Off
+	 32:        XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short On
+	 38:        XDual         Y-Short X-Short Off
+	 39:        XDual         Y-Short X-Short On
+	 40:        XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short X-Short On
+	 46:  YDual XDual         Y-Short X-Short On
+	 47:        XDual         Y-Short X-Short Off
+	 48:                                      On
+	 49:        XDual         Y-Short         Off
+	 50:                      Y-Short X-Short On
+	 51:                      Y-Short X-Short Off
+	 52:                      Y-Short X-Short On
+	 53:                      Y-Short X-Short On
+	 54:  YDual                       X-Short Off
+	 55:  YDual               Y-Short X-Short On
+	 56:  YDual               Y-Short X-Short Off
+	 57:  YDual               Y-Short X-Short On
+	 58:                      Y-Short X-Short Off
+	 59:                      Y-Short X-Short On
+	 60:                      Y-Short X-Short Off
+	 61:  YDual                       X-Short On
+	 62:  YDual                       X-Short Off
+	 63:  YDual               Y-Short X-Short Off
+	 64:  YDual               Y-Short X-Short On
+	 65:                      Y-Short X-Short Off
+	 66:                      Y-Short X-Short Off
+	 67:  YDual                       X-Short On
+	 68:  YDual                       X-Short Off
+	 69:  YDual               Y-Short X-Short Off
+	 70:  YDual XDual         Y-Short         On
+	 71:  YDual XDual         Y-Short         Off
+	 72:  YDual XDual         Y-Short X-Short Off
+	 73:  YDual XDual         Y-Short X-Short On
+	 74:  YDual               Y-Short X-Short Off
+	 75:  YDual               Y-Short X-Short Off
+	 76:  YDual XDual         Y-Short         On
+	 77:  YDual XDual         Y-Short         Off
+	 78:  YDual XDual         Y-Short X-Short On
+	 79:  YDual XDual         Y-Short X-Short Off
+	 80:  YDual XDual         Y-Short X-Short On
+	 81:        XDual         Y-Short X-Short Off
+	 82:        XDual         Y-Short X-Short On
+	 83:        XDual         Y-Short X-Short Off
+	 84:        XDual         Y-Short X-Short On
+	 85:        XDual         Y-Short X-Short Off
+	 86:        XDual         Y-Short X-Short Off
+	 87:  YDual XDual                 X-Short On
+	 88:  YDual XDual                 X-Short Off
+	 89:  YDual XDual         Y-Short X-Short Off
+	 90:  YDual XDual         Y-Short X-Short On
+	 91:                              X-Short On
+	 92:  YDual               Y-Short X-Short Off
+	 93:  YDual               Y-Short X-Short On
+	 94:  YDual               Y-Short X-Short Off
+	 95:  YDual XDual         Y-Short         On
+	 96:  YDual XDual         Y-Short         Off
+	 97:  YDual XDual         Y-Short X-Short On
+	 98:  YDual XDual         Y-Short X-Short Off
+	 99:  YDual XDual         Y-Short X-Short On
+	100:        XDual         Y-Short X-Short Off
+	101:        XDual         Y-Short X-Short Off
+	102:        XDual         Y-Short X-Short On
+	103:        XDual         Y-Short X-Short On
+	104:        XDual         Y-Short X-Short Off
+	105:        XDual         Y-Short X-Short On
+	106:        XDual         Y-Short X-Short Off
+	107:  YDual XDual                 X-Short On
+	108:  YDual XDual                 X-Short Off
+	109:  YDual XDual         Y-Short X-Short Off
+	110:  YDual XDual         Y-Short X-Short On
+	111:                              X-Short On
+	112:  YDual               Y-Short X-Short Off
+	113:  YDual               Y-Short X-Short On
+	114:  YDual               Y-Short X-Short Off
+	115:  YDual XDual         Y-Short         On
+	116:  YDual XDual         Y-Short         Off
+	117:  YDual XDual         Y-Short X-Short On
+	118:  YDual XDual         Y-Short X-Short Off
+	119:  YDual XDual         Y-Short X-Short On
+	120:        XDual         Y-Short X-Short Off
+	121:        XDual         Y-Short X-Short On
+	122:        XDual         Y-Short X-Short Off
+	123:        XDual         Y-Short X-Short On
+	124:        XDual         Y-Short X-Short Off
+	125:                      Y-Short         On
+	126:  YDual               Y-Short X-Short On
+	127:                      Y-Short X-Short Off
+	128:                      Y-Short X-Short On
+	129:                      Y-Short X-Short Off
+	130:                      Y-Short X-Short On
+	131:        XDual         Y-Short X-Short Off
+	132:        XDual         Y-Short X-Short Off
+	133:  YDual XDual                 X-Short On
+	134:  YDual XDual                 X-Short Off
+	135:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   765,  1361)  ->  Abs (   765,  1361)
+	  1: Rel (   -21,    -8)  ->  Abs (   744,  1353)
+	  2: Rel (   -25,    61)  ->  Abs (   719,  1414)
+	  3: Rel (   -51,    53)  ->  Abs (   668,  1467)
+	  4: Rel (   -13,    14)  ->  Abs (   655,  1481)
+	  5: Rel (   -54,    45)  ->  Abs (   601,  1526)
+	  6: Rel (     9,    42)  ->  Abs (   610,  1568)
+	  7: Rel (    37,     0)  ->  Abs (   647,  1568)
+	  8: Rel (    37,     0)  ->  Abs (   684,  1568)
+	  9: Rel (    21,   -36)  ->  Abs (   705,  1532)
+	 10: Rel (    31,   -57)  ->  Abs (   736,  1475)
+	 11: Rel (     5,   -12)  ->  Abs (   741,  1463)
+	 12: Rel (    17,   -42)  ->  Abs (   758,  1421)
+	 13: Rel (   187,  -106)  ->  Abs (   945,  1315)
+	 14: Rel (     0,   -72)  ->  Abs (   945,  1243)
+	 15: Rel (   -53,  -107)  ->  Abs (   892,  1136)
+	 16: Rel (   -41,     0)  ->  Abs (   851,  1136)
+	 17: Rel (   -23,     0)  ->  Abs (   828,  1136)
+	 18: Rel (   -37,    11)  ->  Abs (   791,  1147)
+	 19: Rel (   -23,    13)  ->  Abs (   768,  1160)
+	 20: Rel (   -12,   -30)  ->  Abs (   756,  1130)
+	 21: Rel (   -25,   -24)  ->  Abs (   731,  1106)
+	 22: Rel (   -32,   -31)  ->  Abs (   699,  1075)
+	 23: Rel (   -33,     0)  ->  Abs (   666,  1075)
+	 24: Rel (   -42,     0)  ->  Abs (   624,  1075)
+	 25: Rel (   -42,    54)  ->  Abs (   582,  1129)
+	 26: Rel (     0,    45)  ->  Abs (   582,  1174)
+	 27: Rel (     0,    18)  ->  Abs (   582,  1192)
+	 28: Rel (     8,    45)  ->  Abs (   590,  1237)
+	 29: Rel (     2,    12)  ->  Abs (   592,  1249)
+	 30: Rel (    30,    12)  ->  Abs (   622,  1261)
+	 31: Rel (     0,   -48)  ->  Abs (   622,  1213)
+	 32: Rel (    29,   -35)  ->  Abs (   651,  1178)
+	 33: Rel (    32,     0)  ->  Abs (   683,  1178)
+	 34: Rel (    21,     0)  ->  Abs (   704,  1178)
+	 35: Rel (    47,    85)  ->  Abs (   751,  1263)
+	 36: Rel (     6,    40)  ->  Abs (   757,  1303)
+	 37: Rel (    23,     6)  ->  Abs (   780,  1309)
+	 38: Rel (    11,   -40)  ->  Abs (   791,  1269)
+	 39: Rel (     6,    -7)  ->  Abs (   797,  1262)
+	 40: Rel (    14,   -19)  ->  Abs (   811,  1243)
+	 41: Rel (    38,     0)  ->  Abs (   849,  1243)
+	 42: Rel (    27,     0)  ->  Abs (   876,  1243)
+	 43: Rel (    19,    41)  ->  Abs (   895,  1284)
+	 44: Rel (    12,    27)  ->  Abs (   907,  1311)
+	 45: Rel (     8,    38)  ->  Abs (   915,  1349)
+	 46: Rel (    25,     6)  ->  Abs (   940,  1355)
+	 47: Rel (     5,   -20)  ->  Abs (   945,  1335)
+	 48: Rel (   290,  -861)  ->  Abs (  1235,   474)
+	 49: Rel (     0,   -37)  ->  Abs (  1235,   437)
+	 50: Rel (    -5,   -31)  ->  Abs (  1230,   406)
+	 51: Rel (    -8,   -50)  ->  Abs (  1222,   356)
+	 52: Rel (   -20,   -38)  ->  Abs (  1202,   318)
+	 53: Rel (   -13,   -25)  ->  Abs (  1189,   293)
+	 54: Rel (  -119,     0)  ->  Abs (  1070,   293)
+	 55: Rel (   -76,    35)  ->  Abs (   994,   328)
+	 56: Rel (   -61,    28)  ->  Abs (   933,   356)
+	 57: Rel (   -46,    59)  ->  Abs (   887,   415)
+	 58: Rel (   -40,   -68)  ->  Abs (   847,   347)
+	 59: Rel (   -56,   -29)  ->  Abs (   791,   318)
+	 60: Rel (   -48,   -25)  ->  Abs (   743,   293)
+	 61: Rel (   -63,     0)  ->  Abs (   680,   293)
+	 62: Rel (   -65,     0)  ->  Abs (   615,   293)
+	 63: Rel (  -123,    76)  ->  Abs (   492,   369)
+	 64: Rel (   -22,    60)  ->  Abs (   470,   429)
+	 65: Rel (   -40,   -59)  ->  Abs (   430,   370)
+	 66: Rel (  -112,   -77)  ->  Abs (   318,   293)
+	 67: Rel (   -53,     0)  ->  Abs (   265,   293)
+	 68: Rel (  -112,     0)  ->  Abs (   153,   293)
+	 69: Rel (  -132,    33)  ->  Abs (    21,   326)
+	 70: Rel (     0,    26)  ->  Abs (    21,   352)
+	 71: Rel (     0,    84)  ->  Abs (    21,   436)
+	 72: Rel (   228,   213)  ->  Abs (   249,   649)
+	 73: Rel (   164,    76)  ->  Abs (   413,   725)
+	 74: Rel (    -4,    15)  ->  Abs (   409,   740)
+	 75: Rel (   -11,    52)  ->  Abs (   398,   792)
+	 76: Rel (     0,    15)  ->  Abs (   398,   807)
+	 77: Rel (     0,    34)  ->  Abs (   398,   841)
+	 78: Rel (    23,    42)  ->  Abs (   421,   883)
+	 79: Rel (    19,    34)  ->  Abs (   440,   917)
+	 80: Rel (    32,    38)  ->  Abs (   472,   955)
+	 81: Rel (    13,   -82)  ->  Abs (   485,   873)
+	 82: Rel (    14,   -82)  ->  Abs (   499,   791)
+	 83: Rel (    21,  -123)  ->  Abs (   520,   668)
+	 84: Rel (    22,  -106)  ->  Abs (   542,   562)
+	 85: Rel (    12,   -55)  ->  Abs (   554,   507)
+	 86: Rel (    67,   -48)  ->  Abs (   621,   459)
+	 87: Rel (    57,     0)  ->  Abs (   678,   459)
+	 88: Rel (    46,     0)  ->  Abs (   724,   459)
+	 89: Rel (    51,    25)  ->  Abs (   775,   484)
+	 90: Rel (    39,    60)  ->  Abs (   814,   544)
+	 91: Rel (   -59,   273)  ->  Abs (   755,   817)
+	 92: Rel (    -7,    32)  ->  Abs (   748,   849)
+	 93: Rel (    -3,    20)  ->  Abs (   745,   869)
+	 94: Rel (    -7,    39)  ->  Abs (   738,   908)
+	 95: Rel (     0,    17)  ->  Abs (   738,   925)
+	 96: Rel (     0,    35)  ->  Abs (   738,   960)
+	 97: Rel (    23,    42)  ->  Abs (   761,  1002)
+	 98: Rel (    19,    34)  ->  Abs (   780,  1036)
+	 99: Rel (    32,    37)  ->  Abs (   812,  1073)
+	100: Rel (     9,   -51)  ->  Abs (   821,  1022)
+	101: Rel (    23,  -119)  ->  Abs (   844,   903)
+	102: Rel (    23,  -114)  ->  Abs (   867,   789)
+	103: Rel (    36,  -172)  ->  Abs (   903,   617)
+	104: Rel (    16,   -73)  ->  Abs (   919,   544)
+	105: Rel (    32,   -38)  ->  Abs (   951,   506)
+	106: Rel (    39,   -46)  ->  Abs (   990,   460)
+	107: Rel (    66,     0)  ->  Abs (  1056,   460)
+	108: Rel (    28,     0)  ->  Abs (  1084,   460)
+	109: Rel (    35,    45)  ->  Abs (  1119,   505)
+	110: Rel (     5,    39)  ->  Abs (  1124,   544)
+	111: Rel (   -58,   273)  ->  Abs (  1066,   817)
+	112: Rel (    -7,    42)  ->  Abs (  1059,   859)
+	113: Rel (    -2,    10)  ->  Abs (  1057,   869)
+	114: Rel (    -7,    41)  ->  Abs (  1050,   910)
+	115: Rel (     0,    15)  ->  Abs (  1050,   925)
+	116: Rel (     0,    34)  ->  Abs (  1050,   959)
+	117: Rel (    23,    43)  ->  Abs (  1073,  1002)
+	118: Rel (    20,    37)  ->  Abs (  1093,  1039)
+	119: Rel (    29,    34)  ->  Abs (  1122,  1073)
+	120: Rel (     4,   -25)  ->  Abs (  1126,  1048)
+	121: Rel (    30,  -135)  ->  Abs (  1156,   913)
+	122: Rel (    36,  -164)  ->  Abs (  1192,   749)
+	123: Rel (    16,   -84)  ->  Abs (  1208,   665)
+	124: Rel (    27,  -142)  ->  Abs (  1235,   523)
+	125: Rel (  -786,   -23)  ->  Abs (   449,   500)
+	126: Rel (   -19,   111)  ->  Abs (   430,   611)
+	127: Rel (   -88,   -32)  ->  Abs (   342,   579)
+	128: Rel (   -46,   -31)  ->  Abs (   296,   548)
+	129: Rel (   -52,   -35)  ->  Abs (   244,   513)
+	130: Rel (   -35,   -56)  ->  Abs (   209,   457)
+	131: Rel (    22,    -9)  ->  Abs (   231,   448)
+	132: Rel (    55,   -10)  ->  Abs (   286,   438)
+	133: Rel (    50,     0)  ->  Abs (   336,   438)
+	134: Rel (    28,     0)  ->  Abs (   364,   438)
+	135: Rel (    60,    33)  ->  Abs (   424,   471)
+
+	Glyph 896: off = 0x00026DF0, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			121
+	  yMin:			147
+	  xMax:			744
+	  yMax:			819
+
+	     0: Flags:		0x0016
+		Glyf Index:	751
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 897: off = 0x00026E00, len = 282
+	  numberOfContours:	2
+	  xMin:			14
+	  yMin:			266
+	  xMax:			422
+	  yMax:			1693
+
+	EndPoints
+	---------
+	  0:  22
+	  1:  43
+
+	  Length of Instructions:	140
+	00000: NPUSHB      (14):     0    20    22    64    22    63    52    22    22    16 
+	                            20    12     8    11 
+	00016: PUSHW[1]            -64 
+	00019: PUSHB[7]             22    63    52    11    11     4    16 
+	00027: PUSHW[1]            753 
+	00030: PUSHB[3]              8     8    20 
+	00034: PUSHW[1]            753 
+	00037: NPUSHB      (11):     4    64     9    15    52     4     4    39    28    27 
+	                            36 
+	00050: PUSHW[5]            751    39   779    27   783 
+	00061: NPUSHB       (9):    22    22     0    11     0    11    12    12    36 
+	00072: PUSHW[1]            784 
+	00075: PUSHB[7]             39    39    31    28    27    27    23 
+	00083: PUSHW[2]            784    31 
+	00088: MDAP[rd]   
+	00089: MIRP[nrp0,md,rd,1] 
+	00090: RTHG       
+	00091: IP         
+	00092: MDAP[rd]   
+	00093: SHP[rp1,zp0] 
+	00094: SRP1       
+	00095: IP         
+	00096: MDAP[rd]   
+	00097: RTG        
+	00098: MIRP[srp0,md,rd,1] 
+	00099: SHP[rp2,zp1] 
+	00100: MDAP[rd]   
+	00101: SHP[rp1,zp0] 
+	00102: SHP[rp1,zp0] 
+	00103: RTHG       
+	00104: MDAP[rd]   
+	00105: RTG        
+	00106: MDAP[rd]   
+	00107: SHP[rp1,zp0] 
+	00108: RTHG       
+	00109: MDAP[rd]   
+	00110: SVTCA[y-axis] 
+	00111: RTG        
+	00112: MIAP[rd+ci] 
+	00113: MIAP[rd+ci] 
+	00114: MIRP[nrp0,nmd,rd,0] 
+	00115: SRP1       
+	00116: IP         
+	00117: SRP1       
+	00118: SHP[rp1,zp0] 
+	00119: MDAP[rd]   
+	00120: CALL       
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: SHP[rp1,zp0] 
+	00123: MDAP[rd]   
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: SRP2       
+	00126: IP         
+	00127: MDAP[rd]   
+	00128: CALL       
+	00129: SRP2       
+	00130: IP         
+	00131: SRP1       
+	00132: SRP2       
+	00133: IP         
+	00134: MDAP[rd]   
+	00135: CALL       
+	00136: SRP2       
+	00137: IP         
+	00138: IUP[y]     
+	00139: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:                              X-Short On
+	 24:        XDual         Y-Short         Off
+	 25:                      Y-Short X-Short On
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:                              X-Short Off
+	 34:  YDual               Y-Short X-Short On
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual               Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual                 X-Short Off
+	 42:        XDual         Y-Short X-Short On
+	 43:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   422,  1654)  ->  Abs (   422,  1654)
+	  1: Rel (   -28,   -32)  ->  Abs (   394,  1622)
+	  2: Rel (   -29,   -17)  ->  Abs (   365,  1605)
+	  3: Rel (   -41,   -24)  ->  Abs (   324,  1581)
+	  4: Rel (   -48,     0)  ->  Abs (   276,  1581)
+	  5: Rel (   -50,     0)  ->  Abs (   226,  1581)
+	  6: Rel (   -45,    15)  ->  Abs (   181,  1596)
+	  7: Rel (   -99,    33)  ->  Abs (    82,  1629)
+	  8: Rel (    -6,     0)  ->  Abs (    76,  1629)
+	  9: Rel (   -12,     0)  ->  Abs (    64,  1629)
+	 10: Rel (   -24,    -7)  ->  Abs (    40,  1622)
+	 11: Rel (   -15,    -7)  ->  Abs (    25,  1615)
+	 12: Rel (   -11,    13)  ->  Abs (    14,  1628)
+	 13: Rel (    25,    36)  ->  Abs (    39,  1664)
+	 14: Rel (    11,     9)  ->  Abs (    50,  1673)
+	 15: Rel (    23,    20)  ->  Abs (    73,  1693)
+	 16: Rel (    38,     0)  ->  Abs (   111,  1693)
+	 17: Rel (     9,     0)  ->  Abs (   120,  1693)
+	 18: Rel (   100,   -32)  ->  Abs (   220,  1661)
+	 19: Rel (    50,   -16)  ->  Abs (   270,  1645)
+	 20: Rel (    33,     0)  ->  Abs (   303,  1645)
+	 21: Rel (    53,     0)  ->  Abs (   356,  1645)
+	 22: Rel (    52,    23)  ->  Abs (   408,  1668)
+	 23: Rel (   -70, -1120)  ->  Abs (   338,   548)
+	 24: Rel (     0,   -80)  ->  Abs (   338,   468)
+	 25: Rel (   -29,   -75)  ->  Abs (   309,   393)
+	 26: Rel (   -15,   -40)  ->  Abs (   294,   353)
+	 27: Rel (   -50,   -87)  ->  Abs (   244,   266)
+	 28: Rel (   -18,    10)  ->  Abs (   226,   276)
+	 29: Rel (     3,    29)  ->  Abs (   229,   305)
+	 30: Rel (     5,    76)  ->  Abs (   234,   381)
+	 31: Rel (     0,    13)  ->  Abs (   234,   394)
+	 32: Rel (     0,   104)  ->  Abs (   234,   498)
+	 33: Rel (   -33,   373)  ->  Abs (   201,   871)
+	 34: Rel (   -23,   203)  ->  Abs (   178,  1074)
+	 35: Rel (   -14,   123)  ->  Abs (   164,  1197)
+	 36: Rel (   -17,   128)  ->  Abs (   147,  1325)
+	 37: Rel (    20,    44)  ->  Abs (   167,  1369)
+	 38: Rel (    51,   102)  ->  Abs (   218,  1471)
+	 39: Rel (    23,    45)  ->  Abs (   241,  1516)
+	 40: Rel (    16,  -114)  ->  Abs (   257,  1402)
+	 41: Rel (    49,  -396)  ->  Abs (   306,  1006)
+	 42: Rel (    14,  -159)  ->  Abs (   320,   847)
+	 43: Rel (    18,  -198)  ->  Abs (   338,   649)
+
+	Glyph 898: off = 0x00026F1A, len = 290
+	  numberOfContours:	2
+	  xMin:			34
+	  yMin:			293
+	  xMax:			540
+	  yMax:			1693
+
+	EndPoints
+	---------
+	  0:  22
+	  1:  45
+
+	  Length of Instructions:	144
+	00000: NPUSHB      (14):    23    43    45    64    22    63    52    45    45    39 
+	                            43    35    31    34 
+	00016: PUSHW[1]            -64 
+	00019: PUSHB[7]             22    63    52    34    34    27    39 
+	00027: PUSHW[1]            753 
+	00030: PUSHB[3]             31    31    43 
+	00034: PUSHW[1]            753 
+	00037: PUSHB[8]             27    64     9    15    52    27    27    12 
+	00046: PUSHW[7]            751    13   779    22   751     1   747 
+	00061: NPUSHB      (18):    45    45    23    34    23    34    35    35    12    64 
+	                             9    17    52    12    12    13    13     6 
+	00081: PUSHW[1]            786 
+	00084: PUSHB[3]             17    17     0 
+	00088: PUSHW[2]            752    47 
+	00093: SRP0       
+	00094: MIRP[srp0,nmd,rd,1] 
+	00095: SHP[rp2,zp1] 
+	00096: MDAP[rd]   
+	00097: MIRP[srp0,md,rd,1] 
+	00098: RTHG       
+	00099: IP         
+	00100: MDAP[rd]   
+	00101: SHP[rp2,zp1] 
+	00102: RTG        
+	00103: MDAP[rd]   
+	00104: CALL       
+	00105: SHP[rp1,zp0] 
+	00106: MDAP[rd]   
+	00107: SHP[rp1,zp0] 
+	00108: SHP[rp1,zp0] 
+	00109: RTHG       
+	00110: MDAP[rd]   
+	00111: RTG        
+	00112: MDAP[rd]   
+	00113: SHP[rp1,zp0] 
+	00114: RTHG       
+	00115: MDAP[rd]   
+	00116: SVTCA[y-axis] 
+	00117: RTG        
+	00118: MIAP[rd+ci] 
+	00119: MIRP[nrp0,md,rd,1] 
+	00120: MIAP[rd+ci] 
+	00121: MIRP[nrp0,md,rd,0] 
+	00122: SHP[rp1,zp0] 
+	00123: MDAP[rd]   
+	00124: CALL       
+	00125: MIRP[nrp0,md,rd,1] 
+	00126: SHP[rp1,zp0] 
+	00127: MDAP[rd]   
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: SRP2       
+	00130: IP         
+	00131: MDAP[rd]   
+	00132: CALL       
+	00133: SRP2       
+	00134: IP         
+	00135: SRP1       
+	00136: SRP2       
+	00137: IP         
+	00138: MDAP[rd]   
+	00139: CALL       
+	00140: SRP2       
+	00141: IP         
+	00142: IUP[y]     
+	00143: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual       Rep-  2 Y-Short X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short On
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual                 X-Short On
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short On
+	 23:                              X-Short On
+	 24:                      Y-Short X-Short Off
+	 25:                      Y-Short X-Short On
+	 26:                      Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:                      Y-Short X-Short Off
+	 34:                      Y-Short X-Short On
+	 35:  YDual               Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short X-Short On
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:        XDual         Y-Short X-Short On
+	 42:        XDual         Y-Short X-Short Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   540,   293)  ->  Abs (   540,   293)
+	  1: Rel (  -140,     0)  ->  Abs (   400,   293)
+	  2: Rel (   -68,     0)  ->  Abs (   332,   293)
+	  3: Rel (   -41,    55)  ->  Abs (   291,   348)
+	  4: Rel (   -36,    48)  ->  Abs (   255,   396)
+	  5: Rel (   -37,   190)  ->  Abs (   218,   586)
+	  6: Rel (   -10,   139)  ->  Abs (   208,   725)
+	  7: Rel (    -6,   113)  ->  Abs (   202,   838)
+	  8: Rel (   -13,   238)  ->  Abs (   189,  1076)
+	  9: Rel (   -21,   123)  ->  Abs (   168,  1199)
+	 10: Rel (   -18,    39)  ->  Abs (   150,  1238)
+	 11: Rel (   -22,    48)  ->  Abs (   128,  1286)
+	 12: Rel (   -39,    36)  ->  Abs (    89,  1322)
+	 13: Rel (   123,   194)  ->  Abs (   212,  1516)
+	 14: Rel (    39,  -120)  ->  Abs (   251,  1396)
+	 15: Rel (    16,  -167)  ->  Abs (   267,  1229)
+	 16: Rel (    10,  -104)  ->  Abs (   277,  1125)
+	 17: Rel (    10,  -388)  ->  Abs (   287,   737)
+	 18: Rel (    18,  -178)  ->  Abs (   305,   559)
+	 19: Rel (    34,   -50)  ->  Abs (   339,   509)
+	 20: Rel (    28,   -42)  ->  Abs (   367,   467)
+	 21: Rel (    33,     0)  ->  Abs (   400,   467)
+	 22: Rel (   140,     0)  ->  Abs (   540,   467)
+	 23: Rel (   -98,  1187)  ->  Abs (   442,  1654)
+	 24: Rel (   -28,   -32)  ->  Abs (   414,  1622)
+	 25: Rel (   -29,   -17)  ->  Abs (   385,  1605)
+	 26: Rel (   -41,   -24)  ->  Abs (   344,  1581)
+	 27: Rel (   -48,     0)  ->  Abs (   296,  1581)
+	 28: Rel (   -50,     0)  ->  Abs (   246,  1581)
+	 29: Rel (   -45,    15)  ->  Abs (   201,  1596)
+	 30: Rel (   -99,    33)  ->  Abs (   102,  1629)
+	 31: Rel (    -6,     0)  ->  Abs (    96,  1629)
+	 32: Rel (   -12,     0)  ->  Abs (    84,  1629)
+	 33: Rel (   -24,    -7)  ->  Abs (    60,  1622)
+	 34: Rel (   -15,    -7)  ->  Abs (    45,  1615)
+	 35: Rel (   -11,    13)  ->  Abs (    34,  1628)
+	 36: Rel (    25,    36)  ->  Abs (    59,  1664)
+	 37: Rel (    11,     9)  ->  Abs (    70,  1673)
+	 38: Rel (    23,    20)  ->  Abs (    93,  1693)
+	 39: Rel (    38,     0)  ->  Abs (   131,  1693)
+	 40: Rel (     9,     0)  ->  Abs (   140,  1693)
+	 41: Rel (   100,   -32)  ->  Abs (   240,  1661)
+	 42: Rel (    50,   -16)  ->  Abs (   290,  1645)
+	 43: Rel (    33,     0)  ->  Abs (   323,  1645)
+	 44: Rel (    53,     0)  ->  Abs (   376,  1645)
+	 45: Rel (    52,    23)  ->  Abs (   428,  1668)
+
+	Glyph 899: off = 0x0002703C, len = 318
+	  numberOfContours:	2
+	  xMin:			86
+	  yMin:			266
+	  xMax:			366
+	  yMax:			1802
+
+	EndPoints
+	---------
+	  0:  31
+	  1:  52
+
+	  Length of Instructions:	155
+	00000: PUSHW[2]              3   -32 
+	00005: PUSHB[4]             18    25    52     2 
+	00010: PUSHW[1]            -32 
+	00013: PUSHB[6]             11    17    52    37    36    45 
+	00020: PUSHW[3]            751    48   -64 
+	00027: NPUSHB      (13):     9    42    52    48    48     5    21     0    23     7 
+	                            29     5     5 
+	00042: PUSHW[1]            -64 
+	00045: PUSHB[7]             18    25    52     5    29    29    23 
+	00053: PUSHW[5]            757    15   789    36   783 
+	00064: NPUSHB      (11):    21     7    18    18    26     0     0    26     5     5 
+	                            11 
+	00077: PUSHW[1]            773 
+	00080: PUSHB[3]             26    26    45 
+	00084: PUSHW[1]            784 
+	00087: PUSHB[7]             48    48    40    37    36    36    32 
+	00095: PUSHW[3]            784    40   315 
+	00102: SCANCTRL   
+	00103: MDAP[rd]   
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: RTHG       
+	00106: IP         
+	00107: MDAP[rd]   
+	00108: SHP[rp1,zp0] 
+	00109: SRP1       
+	00110: IP         
+	00111: MDAP[rd]   
+	00112: RTG        
+	00113: MIRP[srp0,md,rd,1] 
+	00114: IP         
+	00115: MDAP[rd]   
+	00116: MIRP[srp0,md,rd,1] 
+	00117: SHP[rp2,zp1] 
+	00118: MDAP[rd]   
+	00119: SRP1       
+	00120: SHP[rp1,zp0] 
+	00121: MDAP[rd]   
+	00122: SRP2       
+	00123: IP         
+	00124: MDAP[rd]   
+	00125: IP         
+	00126: IP         
+	00127: SVTCA[y-axis] 
+	00128: MIAP[rd+ci] 
+	00129: MIAP[rd+ci] 
+	00130: MIRP[srp0,md,rd,1] 
+	00131: SHP[rp2,zp1] 
+	00132: MDAP[rd]   
+	00133: SHP[rp1,zp0] 
+	00134: CALL       
+	00135: MDAP[rd]   
+	00136: SRP2       
+	00137: IP         
+	00138: SRP1       
+	00139: IP         
+	00140: IP         
+	00141: SRP1       
+	00142: SHP[rp1,zp0] 
+	00143: RDTG       
+	00144: MDAP[rd]   
+	00145: RTG        
+	00146: CALL       
+	00147: MIRP[nrp0,nmd,rd,0] 
+	00148: SRP1       
+	00149: IP         
+	00150: IUP[y]     
+	00151: IUP[x]     
+	00152: SVTCA[y-axis] 
+	00153: CALL       
+	00154: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:                      Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:        XDual                 X-Short On
+	 33:        XDual         Y-Short         Off
+	 34:                      Y-Short X-Short On
+	 35:                      Y-Short X-Short Off
+	 36:                      Y-Short X-Short On
+	 37:  YDual               Y-Short X-Short On
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:                              X-Short Off
+	 43:  YDual               Y-Short X-Short On
+	 44:  YDual               Y-Short X-Short Off
+	 45:  YDual               Y-Short X-Short On
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short X-Short On
+	 49:        XDual         Y-Short X-Short Off
+	 50:        XDual                 X-Short Off
+	 51:        XDual         Y-Short X-Short On
+	 52:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   366,  1638)  ->  Abs (   366,  1638)
+	  1: Rel (     0,   -25)  ->  Abs (   366,  1613)
+	  2: Rel (   -31,   -20)  ->  Abs (   335,  1593)
+	  3: Rel (   -21,   -13)  ->  Abs (   314,  1580)
+	  4: Rel (   -42,   -15)  ->  Abs (   272,  1565)
+	  5: Rel (  -186,   -64)  ->  Abs (    86,  1501)
+	  6: Rel (     0,    46)  ->  Abs (    86,  1547)
+	  7: Rel (   100,    35)  ->  Abs (   186,  1582)
+	  8: Rel (   -31,    16)  ->  Abs (   155,  1598)
+	  9: Rel (   -16,    15)  ->  Abs (   139,  1613)
+	 10: Rel (   -21,    19)  ->  Abs (   118,  1632)
+	 11: Rel (     0,    21)  ->  Abs (   118,  1653)
+	 12: Rel (     0,    31)  ->  Abs (   118,  1684)
+	 13: Rel (    53,    56)  ->  Abs (   171,  1740)
+	 14: Rel (    59,    62)  ->  Abs (   230,  1802)
+	 15: Rel (    45,     0)  ->  Abs (   275,  1802)
+	 16: Rel (    20,     0)  ->  Abs (   295,  1802)
+	 17: Rel (    29,   -27)  ->  Abs (   324,  1775)
+	 18: Rel (     0,   -22)  ->  Abs (   324,  1753)
+	 19: Rel (     0,   -14)  ->  Abs (   324,  1739)
+	 20: Rel (   -12,   -29)  ->  Abs (   312,  1710)
+	 21: Rel (   -11,   -18)  ->  Abs (   301,  1692)
+	 22: Rel (   -31,    28)  ->  Abs (   270,  1720)
+	 23: Rel (   -36,     0)  ->  Abs (   234,  1720)
+	 24: Rel (   -22,     0)  ->  Abs (   212,  1720)
+	 25: Rel (   -43,   -18)  ->  Abs (   169,  1702)
+	 26: Rel (     0,   -12)  ->  Abs (   169,  1690)
+	 27: Rel (     0,   -15)  ->  Abs (   169,  1675)
+	 28: Rel (    93,   -52)  ->  Abs (   262,  1623)
+	 29: Rel (    33,     0)  ->  Abs (   295,  1623)
+	 30: Rel (    22,     0)  ->  Abs (   317,  1623)
+	 31: Rel (    19,     3)  ->  Abs (   336,  1626)
+	 32: Rel (     2, -1078)  ->  Abs (   338,   548)
+	 33: Rel (     0,   -80)  ->  Abs (   338,   468)
+	 34: Rel (   -29,   -75)  ->  Abs (   309,   393)
+	 35: Rel (   -15,   -40)  ->  Abs (   294,   353)
+	 36: Rel (   -50,   -87)  ->  Abs (   244,   266)
+	 37: Rel (   -18,    10)  ->  Abs (   226,   276)
+	 38: Rel (     3,    29)  ->  Abs (   229,   305)
+	 39: Rel (     5,    76)  ->  Abs (   234,   381)
+	 40: Rel (     0,    13)  ->  Abs (   234,   394)
+	 41: Rel (     0,   104)  ->  Abs (   234,   498)
+	 42: Rel (   -33,   373)  ->  Abs (   201,   871)
+	 43: Rel (   -23,   203)  ->  Abs (   178,  1074)
+	 44: Rel (   -14,   123)  ->  Abs (   164,  1197)
+	 45: Rel (   -17,   128)  ->  Abs (   147,  1325)
+	 46: Rel (    20,    44)  ->  Abs (   167,  1369)
+	 47: Rel (    51,   102)  ->  Abs (   218,  1471)
+	 48: Rel (    23,    45)  ->  Abs (   241,  1516)
+	 49: Rel (    16,  -114)  ->  Abs (   257,  1402)
+	 50: Rel (    49,  -396)  ->  Abs (   306,  1006)
+	 51: Rel (    14,  -159)  ->  Abs (   320,   847)
+	 52: Rel (    18,  -198)  ->  Abs (   338,   649)
+
+	Glyph 900: off = 0x0002717A, len = 322
+	  numberOfContours:	2
+	  xMin:			86
+	  yMin:			293
+	  xMax:			540
+	  yMax:			1802
+
+	EndPoints
+	---------
+	  0:  31
+	  1:  54
+
+	  Length of Instructions:	156
+	00000: PUSHW[2]              2   -32 
+	00005: PUSHB[4]             11    17    52    44 
+	00010: PUSHW[3]            751    45   -64 
+	00017: NPUSHB      (13):     9    42    52    45    45     5    21     0    23     7 
+	                            29     5     5 
+	00032: PUSHW[1]            -64 
+	00035: PUSHB[7]             18    25    52     5    29    29    23 
+	00043: PUSHW[7]            757    15   789    54   751    33   747 
+	00058: NPUSHB      (11):    21     7    18    18    26     0     0    26     5     5 
+	                            11 
+	00071: PUSHW[1]            773 
+	00074: NPUSHB      (13):    26    26    45    44    64     9    17    52    44    44 
+	                            45    45    38 
+	00089: PUSHW[1]            786 
+	00092: PUSHB[3]             49    49    32 
+	00096: PUSHW[3]            752    56   315 
+	00103: SCANCTRL   
+	00104: SRP0       
+	00105: MIRP[srp0,nmd,rd,1] 
+	00106: SHP[rp2,zp1] 
+	00107: MDAP[rd]   
+	00108: MIRP[srp0,md,rd,1] 
+	00109: RTHG       
+	00110: IP         
+	00111: MDAP[rd]   
+	00112: SHP[rp2,zp1] 
+	00113: RTG        
+	00114: MDAP[rd]   
+	00115: CALL       
+	00116: SRP2       
+	00117: IP         
+	00118: MDAP[rd]   
+	00119: MIRP[srp0,md,rd,1] 
+	00120: SHP[rp2,zp1] 
+	00121: MDAP[rd]   
+	00122: SRP1       
+	00123: SHP[rp1,zp0] 
+	00124: MDAP[rd]   
+	00125: SRP2       
+	00126: IP         
+	00127: MDAP[rd]   
+	00128: IP         
+	00129: IP         
+	00130: SVTCA[y-axis] 
+	00131: MIAP[rd+ci] 
+	00132: MIRP[nrp0,md,rd,1] 
+	00133: MIAP[rd+ci] 
+	00134: MIRP[srp0,md,rd,1] 
+	00135: SHP[rp2,zp1] 
+	00136: MDAP[rd]   
+	00137: SHP[rp1,zp0] 
+	00138: CALL       
+	00139: MDAP[rd]   
+	00140: SRP2       
+	00141: IP         
+	00142: SRP1       
+	00143: IP         
+	00144: IP         
+	00145: SRP1       
+	00146: SHP[rp1,zp0] 
+	00147: RDTG       
+	00148: MDAP[rd]   
+	00149: RTG        
+	00150: CALL       
+	00151: MIRP[nrp0,md,rd,0] 
+	00152: IUP[y]     
+	00153: IUP[x]     
+	00154: SVTCA[y-axis] 
+	00155: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:                      Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:        XDual                 X-Short On
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual               Y-Short X-Short On
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual               Y-Short X-Short On
+	 39:  YDual       Rep-  2 Y-Short X-Short Off
+	 42:  YDual               Y-Short X-Short On
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual               Y-Short X-Short On
+	 45:  YDual XDual         Y-Short X-Short On
+	 46:        XDual         Y-Short X-Short Off
+	 47:        XDual         Y-Short X-Short On
+	 48:        XDual         Y-Short X-Short Off
+	 49:        XDual                 X-Short On
+	 50:        XDual         Y-Short X-Short Off
+	 51:        XDual         Y-Short X-Short On
+	 52:        XDual         Y-Short X-Short Off
+	 53:  YDual XDual                 X-Short On
+	 54:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   366,  1638)  ->  Abs (   366,  1638)
+	  1: Rel (     0,   -25)  ->  Abs (   366,  1613)
+	  2: Rel (   -31,   -20)  ->  Abs (   335,  1593)
+	  3: Rel (   -21,   -13)  ->  Abs (   314,  1580)
+	  4: Rel (   -42,   -15)  ->  Abs (   272,  1565)
+	  5: Rel (  -186,   -64)  ->  Abs (    86,  1501)
+	  6: Rel (     0,    46)  ->  Abs (    86,  1547)
+	  7: Rel (   100,    35)  ->  Abs (   186,  1582)
+	  8: Rel (   -31,    16)  ->  Abs (   155,  1598)
+	  9: Rel (   -16,    15)  ->  Abs (   139,  1613)
+	 10: Rel (   -21,    19)  ->  Abs (   118,  1632)
+	 11: Rel (     0,    21)  ->  Abs (   118,  1653)
+	 12: Rel (     0,    31)  ->  Abs (   118,  1684)
+	 13: Rel (    53,    56)  ->  Abs (   171,  1740)
+	 14: Rel (    59,    62)  ->  Abs (   230,  1802)
+	 15: Rel (    45,     0)  ->  Abs (   275,  1802)
+	 16: Rel (    20,     0)  ->  Abs (   295,  1802)
+	 17: Rel (    29,   -27)  ->  Abs (   324,  1775)
+	 18: Rel (     0,   -22)  ->  Abs (   324,  1753)
+	 19: Rel (     0,   -14)  ->  Abs (   324,  1739)
+	 20: Rel (   -12,   -29)  ->  Abs (   312,  1710)
+	 21: Rel (   -11,   -18)  ->  Abs (   301,  1692)
+	 22: Rel (   -31,    28)  ->  Abs (   270,  1720)
+	 23: Rel (   -36,     0)  ->  Abs (   234,  1720)
+	 24: Rel (   -22,     0)  ->  Abs (   212,  1720)
+	 25: Rel (   -43,   -18)  ->  Abs (   169,  1702)
+	 26: Rel (     0,   -12)  ->  Abs (   169,  1690)
+	 27: Rel (     0,   -15)  ->  Abs (   169,  1675)
+	 28: Rel (    93,   -52)  ->  Abs (   262,  1623)
+	 29: Rel (    33,     0)  ->  Abs (   295,  1623)
+	 30: Rel (    22,     0)  ->  Abs (   317,  1623)
+	 31: Rel (    19,     3)  ->  Abs (   336,  1626)
+	 32: Rel (   204, -1333)  ->  Abs (   540,   293)
+	 33: Rel (  -140,     0)  ->  Abs (   400,   293)
+	 34: Rel (   -68,     0)  ->  Abs (   332,   293)
+	 35: Rel (   -41,    55)  ->  Abs (   291,   348)
+	 36: Rel (   -36,    48)  ->  Abs (   255,   396)
+	 37: Rel (   -37,   190)  ->  Abs (   218,   586)
+	 38: Rel (   -10,   139)  ->  Abs (   208,   725)
+	 39: Rel (    -6,   113)  ->  Abs (   202,   838)
+	 40: Rel (   -13,   238)  ->  Abs (   189,  1076)
+	 41: Rel (   -21,   123)  ->  Abs (   168,  1199)
+	 42: Rel (   -18,    39)  ->  Abs (   150,  1238)
+	 43: Rel (   -22,    48)  ->  Abs (   128,  1286)
+	 44: Rel (   -39,    36)  ->  Abs (    89,  1322)
+	 45: Rel (   123,   194)  ->  Abs (   212,  1516)
+	 46: Rel (    39,  -120)  ->  Abs (   251,  1396)
+	 47: Rel (    16,  -167)  ->  Abs (   267,  1229)
+	 48: Rel (    10,  -104)  ->  Abs (   277,  1125)
+	 49: Rel (    10,  -388)  ->  Abs (   287,   737)
+	 50: Rel (    18,  -178)  ->  Abs (   305,   559)
+	 51: Rel (    34,   -50)  ->  Abs (   339,   509)
+	 52: Rel (    28,   -42)  ->  Abs (   367,   467)
+	 53: Rel (    33,     0)  ->  Abs (   400,   467)
+	 54: Rel (   140,     0)  ->  Abs (   540,   467)
+
+	Glyph 901: off = 0x000272BC, len = 422
+	  numberOfContours:	3
+	  xMin:			120
+	  yMin:			-157
+	  xMax:			955
+	  yMax:			1137
+
+	EndPoints
+	---------
+	  0:  32
+	  1:  42
+	  2:  74
+
+	  Length of Instructions:	205
+	00000: PUSHW[2]             45   -32 
+	00005: NPUSHB       (9):    11    17    52    16    64    13    17    52     3 
+	00016: PUSHW[1]            -32 
+	00019: NPUSHB      (15):    11    18    52    18    64     9    17    52    64    43 
+	                            66    50    72    48    58 
+	00036: PUSHW[1]            757 
+	00039: NPUSHB      (21):    66    66    72    64    18    25    52    72    72    48 
+	                            64     9    29    52    48    48    28    11    20    10 
+	                            28 
+	00062: PUSHW[1]            751 
+	00065: PUSHB[3]             37    37    33 
+	00069: PUSHW[3]            751    20   747 
+	00076: PUSHB[3]             10    10    14 
+	00080: PUSHW[3]            778     4   776 
+	00087: NPUSHB      (11):    64    50    61    61    69    43    43    69    48    48 
+	                            54 
+	00100: PUSHW[1]            773 
+	00103: PUSHB[3]             69    69    24 
+	00107: PUSHW[1]            765 
+	00110: PUSHB[4]             40    40    10    33 
+	00115: PUSHW[5]            771    20   771     0   752 
+	00126: PUSHB[3]             76    11    10 
+	00130: PUSHW[1]            -64 
+	00133: PUSHB[4]              9    12    52    10 
+	00138: PUSHW[1]            315 
+	00141: SCANCTRL   
+	00142: MDAP[rd]   
+	00143: CALL       
+	00144: SHP[rp1,zp0] 
+	00145: SRP0       
+	00146: MIRP[srp0,nmd,rd,0] 
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: MIRP[nrp0,md,rd,1] 
+	00149: SRP1       
+	00150: IP         
+	00151: MDAP[rd]   
+	00152: MIRP[srp0,md,rd,1] 
+	00153: SHP[rp2,zp1] 
+	00154: MDAP[rd]   
+	00155: MIRP[srp0,md,rd,1] 
+	00156: SHP[rp2,zp1] 
+	00157: MDAP[rd]   
+	00158: SRP1       
+	00159: SHP[rp1,zp0] 
+	00160: MDAP[rd]   
+	00161: SRP2       
+	00162: IP         
+	00163: MDAP[rd]   
+	00164: IP         
+	00165: IP         
+	00166: SVTCA[y-axis] 
+	00167: MIAP[rd+ci] 
+	00168: MIRP[srp0,md,rd,1] 
+	00169: SHP[rp2,zp1] 
+	00170: RTHG       
+	00171: MDAP[rd]   
+	00172: RTG        
+	00173: MIAP[rd+ci] 
+	00174: MIRP[srp0,md,rd,1] 
+	00175: SHP[rp2,zp1] 
+	00176: MDAP[rd]   
+	00177: MIRP[nrp0,md,rd,1] 
+	00178: SRP1       
+	00179: SRP2       
+	00180: IP         
+	00181: SRP1       
+	00182: SHP[rp1,zp0] 
+	00183: MDAP[rd]   
+	00184: CALL       
+	00185: SHP[rp1,zp0] 
+	00186: MDAP[rd]   
+	00187: CALL       
+	00188: SHP[rp1,zp0] 
+	00189: MDAP[rd]   
+	00190: MIRP[nrp0,md,rd,1] 
+	00191: SRP1       
+	00192: SRP2       
+	00193: IP         
+	00194: SRP1       
+	00195: IP         
+	00196: IP         
+	00197: IUP[y]     
+	00198: IUP[x]     
+	00199: SVTCA[x-axis] 
+	00200: CALL       
+	00201: CALL       
+	00202: CALL       
+	00203: SVTCA[y-axis] 
+	00204: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short On
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:                      Y-Short X-Short On
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual               Y-Short X-Short On
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:                      Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:        XDual         Y-Short X-Short Off
+	 43:                              X-Short On
+	 44:        XDual         Y-Short         Off
+	 45:                      Y-Short X-Short On
+	 46:                      Y-Short X-Short Off
+	 47:                      Y-Short X-Short On
+	 48:                      Y-Short X-Short On
+	 49:  YDual XDual         Y-Short         Off
+	 50:  YDual XDual         Y-Short X-Short On
+	 51:  YDual               Y-Short X-Short Off
+	 52:  YDual               Y-Short X-Short On
+	 53:  YDual               Y-Short X-Short Off
+	 54:  YDual XDual         Y-Short         On
+	 55:  YDual XDual         Y-Short         Off
+	 56:  YDual XDual         Y-Short X-Short On
+	 57:  YDual XDual         Y-Short X-Short Off
+	 58:  YDual XDual                 X-Short On
+	 59:  YDual XDual                 X-Short Off
+	 60:        XDual         Y-Short X-Short Off
+	 61:        XDual         Y-Short         On
+	 62:        XDual         Y-Short         Off
+	 63:                      Y-Short X-Short Off
+	 64:                      Y-Short X-Short On
+	 65:  YDual               Y-Short X-Short Off
+	 66:  YDual                       X-Short On
+	 67:  YDual                       X-Short Off
+	 68:                      Y-Short X-Short Off
+	 69:        XDual         Y-Short         On
+	 70:        XDual         Y-Short         Off
+	 71:        XDual         Y-Short X-Short Off
+	 72:  YDual XDual                 X-Short On
+	 73:  YDual XDual                 X-Short Off
+	 74:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   955,   353)  ->  Abs (   955,   353)
+	  1: Rel (     0,  -165)  ->  Abs (   955,   188)
+	  2: Rel (  -122,  -163)  ->  Abs (   833,    25)
+	  3: Rel (  -136,  -182)  ->  Abs (   697,  -157)
+	  4: Rel (  -178,     0)  ->  Abs (   519,  -157)
+	  5: Rel (   -66,     0)  ->  Abs (   453,  -157)
+	  6: Rel (   -70,    15)  ->  Abs (   383,  -142)
+	  7: Rel (   -51,    11)  ->  Abs (   332,  -131)
+	  8: Rel (   -82,    27)  ->  Abs (   250,  -104)
+	  9: Rel (   -65,    23)  ->  Abs (   185,   -81)
+	 10: Rel (   -65,    22)  ->  Abs (   120,   -59)
+	 11: Rel (    17,    35)  ->  Abs (   137,   -24)
+	 12: Rel (    56,   -13)  ->  Abs (   193,   -37)
+	 13: Rel (   123,   -29)  ->  Abs (   316,   -66)
+	 14: Rel (    49,     0)  ->  Abs (   365,   -66)
+	 15: Rel (   122,     0)  ->  Abs (   487,   -66)
+	 16: Rel (   109,    62)  ->  Abs (   596,    -4)
+	 17: Rel (    85,    49)  ->  Abs (   681,    45)
+	 18: Rel (    85,    93)  ->  Abs (   766,   138)
+	 19: Rel (    43,    47)  ->  Abs (   809,   185)
+	 20: Rel (    79,   106)  ->  Abs (   888,   291)
+	 21: Rel (  -135,     0)  ->  Abs (   753,   291)
+	 22: Rel (   -67,    43)  ->  Abs (   686,   334)
+	 23: Rel (   -76,    49)  ->  Abs (   610,   383)
+	 24: Rel (     0,   112)  ->  Abs (   610,   495)
+	 25: Rel (     0,   103)  ->  Abs (   610,   598)
+	 26: Rel (    48,    88)  ->  Abs (   658,   686)
+	 27: Rel (    56,   102)  ->  Abs (   714,   788)
+	 28: Rel (    86,     0)  ->  Abs (   800,   788)
+	 29: Rel (    87,     0)  ->  Abs (   887,   788)
+	 30: Rel (    38,  -101)  ->  Abs (   925,   687)
+	 31: Rel (    30,   -79)  ->  Abs (   955,   608)
+	 32: Rel (     0,  -141)  ->  Abs (   955,   467)
+	 33: Rel (   -63,    -5)  ->  Abs (   892,   462)
+	 34: Rel (   -22,    96)  ->  Abs (   870,   558)
+	 35: Rel (   -31,    37)  ->  Abs (   839,   595)
+	 36: Rel (   -27,    32)  ->  Abs (   812,   627)
+	 37: Rel (   -39,     0)  ->  Abs (   773,   627)
+	 38: Rel (   -28,     0)  ->  Abs (   745,   627)
+	 39: Rel (   -41,   -37)  ->  Abs (   704,   590)
+	 40: Rel (     0,   -28)  ->  Abs (   704,   562)
+	 41: Rel (     0,   -49)  ->  Abs (   704,   513)
+	 42: Rel (    88,   -51)  ->  Abs (   792,   462)
+	 43: Rel (   -77,   511)  ->  Abs (   715,   973)
+	 44: Rel (     0,   -25)  ->  Abs (   715,   948)
+	 45: Rel (   -31,   -20)  ->  Abs (   684,   928)
+	 46: Rel (   -21,   -13)  ->  Abs (   663,   915)
+	 47: Rel (   -42,   -15)  ->  Abs (   621,   900)
+	 48: Rel (  -186,   -64)  ->  Abs (   435,   836)
+	 49: Rel (     0,    46)  ->  Abs (   435,   882)
+	 50: Rel (   100,    35)  ->  Abs (   535,   917)
+	 51: Rel (   -31,    16)  ->  Abs (   504,   933)
+	 52: Rel (   -16,    15)  ->  Abs (   488,   948)
+	 53: Rel (   -21,    19)  ->  Abs (   467,   967)
+	 54: Rel (     0,    21)  ->  Abs (   467,   988)
+	 55: Rel (     0,    31)  ->  Abs (   467,  1019)
+	 56: Rel (    53,    56)  ->  Abs (   520,  1075)
+	 57: Rel (    59,    62)  ->  Abs (   579,  1137)
+	 58: Rel (    45,     0)  ->  Abs (   624,  1137)
+	 59: Rel (    20,     0)  ->  Abs (   644,  1137)
+	 60: Rel (    29,   -27)  ->  Abs (   673,  1110)
+	 61: Rel (     0,   -22)  ->  Abs (   673,  1088)
+	 62: Rel (     0,   -14)  ->  Abs (   673,  1074)
+	 63: Rel (   -12,   -29)  ->  Abs (   661,  1045)
+	 64: Rel (   -11,   -18)  ->  Abs (   650,  1027)
+	 65: Rel (   -31,    28)  ->  Abs (   619,  1055)
+	 66: Rel (   -36,     0)  ->  Abs (   583,  1055)
+	 67: Rel (   -22,     0)  ->  Abs (   561,  1055)
+	 68: Rel (   -43,   -18)  ->  Abs (   518,  1037)
+	 69: Rel (     0,   -12)  ->  Abs (   518,  1025)
+	 70: Rel (     0,   -15)  ->  Abs (   518,  1010)
+	 71: Rel (    93,   -52)  ->  Abs (   611,   958)
+	 72: Rel (    33,     0)  ->  Abs (   644,   958)
+	 73: Rel (    22,     0)  ->  Abs (   666,   958)
+	 74: Rel (    19,     3)  ->  Abs (   685,   961)
+
+	Glyph 902: off = 0x00027462, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			120
+	  yMin:			-157
+	  xMax:			955
+	  yMax:			1137
+
+	     0: Flags:		0x0016
+		Glyf Index:	901
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 903: off = 0x00027472, len = 322
+	  numberOfContours:	2
+	  xMin:			45
+	  yMin:			-192
+	  xMax:			338
+	  yMax:			1516
+
+	EndPoints
+	---------
+	  0:  31
+	  1:  52
+
+	  Length of Instructions:	159
+	00000: PUSHW[2]              2   -32 
+	00005: NPUSHB      (10):    11    17    52    21     0    23     7    29     5    15 
+	00017: PUSHW[1]            757 
+	00020: NPUSHB      (10):    23    23    29    64    18    25    52    29    29     5 
+	00032: PUSHW[1]            -64 
+	00035: PUSHB[7]             18    20    52    32     5     1     5 
+	00043: PUSHW[1]            -64 
+	00046: PUSHB[8]              9    15    52     5     5    37    36    45 
+	00055: PUSHW[3]            751    48   779 
+	00062: PUSHB[4]             47    36     1    36 
+	00067: PUSHW[1]            783 
+	00070: NPUSHB       (9):    21     7    18    18     0     0     5     5    26 
+	00081: PUSHW[1]            773 
+	00084: PUSHB[4]             11    11    40    45 
+	00089: PUSHW[1]            784 
+	00092: PUSHB[7]             48    48    40    37    36    36    32 
+	00100: PUSHW[3]            784    40   315 
+	00107: SCANCTRL   
+	00108: MDAP[rd]   
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: RTHG       
+	00111: IP         
+	00112: MDAP[rd]   
+	00113: SHP[rp1,zp0] 
+	00114: SRP1       
+	00115: IP         
+	00116: MDAP[rd]   
+	00117: RTG        
+	00118: MIRP[nrp0,md,rd,1] 
+	00119: SRP1       
+	00120: SHP[rp1,zp0] 
+	00121: MDAP[rd]   
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: SHP[rp1,zp0] 
+	00124: MDAP[rd]   
+	00125: SHP[rp2,zp1] 
+	00126: MDAP[rd]   
+	00127: IP         
+	00128: MDAP[rd]   
+	00129: IP         
+	00130: IP         
+	00131: SVTCA[y-axis] 
+	00132: MIAP[rd+ci] 
+	00133: DELTAP1    
+	00134: MIAP[rd+ci] 
+	00135: MIRP[nrp0,nmd,rd,0] 
+	00136: SRP1       
+	00137: IP         
+	00138: SHP[rp1,zp0] 
+	00139: MDAP[rd]   
+	00140: CALL       
+	00141: DELTAP1    
+	00142: CALL       
+	00143: SHP[rp1,zp0] 
+	00144: MDAP[rd]   
+	00145: CALL       
+	00146: SHP[rp1,zp0] 
+	00147: MDAP[rd]   
+	00148: MIRP[nrp0,md,rd,1] 
+	00149: SRP1       
+	00150: SRP2       
+	00151: IP         
+	00152: SRP1       
+	00153: IP         
+	00154: IP         
+	00155: IUP[y]     
+	00156: IUP[x]     
+	00157: SVTCA[y-axis] 
+	00158: CALL       
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:                      Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:        XDual                 X-Short On
+	 33:        XDual         Y-Short         Off
+	 34:                      Y-Short X-Short On
+	 35:                      Y-Short X-Short Off
+	 36:                      Y-Short X-Short On
+	 37:  YDual               Y-Short X-Short On
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:                              X-Short Off
+	 43:  YDual               Y-Short X-Short On
+	 44:  YDual               Y-Short X-Short Off
+	 45:  YDual               Y-Short X-Short On
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short X-Short On
+	 49:        XDual         Y-Short X-Short Off
+	 50:        XDual                 X-Short Off
+	 51:        XDual         Y-Short X-Short On
+	 52:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   325,   -55)  ->  Abs (   325,   -55)
+	  1: Rel (     0,   -25)  ->  Abs (   325,   -80)
+	  2: Rel (   -31,   -20)  ->  Abs (   294,  -100)
+	  3: Rel (   -21,   -13)  ->  Abs (   273,  -113)
+	  4: Rel (   -42,   -15)  ->  Abs (   231,  -128)
+	  5: Rel (  -186,   -64)  ->  Abs (    45,  -192)
+	  6: Rel (     0,    46)  ->  Abs (    45,  -146)
+	  7: Rel (   100,    35)  ->  Abs (   145,  -111)
+	  8: Rel (   -31,    16)  ->  Abs (   114,   -95)
+	  9: Rel (   -16,    15)  ->  Abs (    98,   -80)
+	 10: Rel (   -21,    19)  ->  Abs (    77,   -61)
+	 11: Rel (     0,    21)  ->  Abs (    77,   -40)
+	 12: Rel (     0,    31)  ->  Abs (    77,    -9)
+	 13: Rel (    53,    56)  ->  Abs (   130,    47)
+	 14: Rel (    59,    62)  ->  Abs (   189,   109)
+	 15: Rel (    45,     0)  ->  Abs (   234,   109)
+	 16: Rel (    20,     0)  ->  Abs (   254,   109)
+	 17: Rel (    29,   -27)  ->  Abs (   283,    82)
+	 18: Rel (     0,   -22)  ->  Abs (   283,    60)
+	 19: Rel (     0,   -14)  ->  Abs (   283,    46)
+	 20: Rel (   -12,   -29)  ->  Abs (   271,    17)
+	 21: Rel (   -11,   -18)  ->  Abs (   260,    -1)
+	 22: Rel (   -31,    28)  ->  Abs (   229,    27)
+	 23: Rel (   -36,     0)  ->  Abs (   193,    27)
+	 24: Rel (   -22,     0)  ->  Abs (   171,    27)
+	 25: Rel (   -43,   -18)  ->  Abs (   128,     9)
+	 26: Rel (     0,   -12)  ->  Abs (   128,    -3)
+	 27: Rel (     0,   -15)  ->  Abs (   128,   -18)
+	 28: Rel (    93,   -52)  ->  Abs (   221,   -70)
+	 29: Rel (    33,     0)  ->  Abs (   254,   -70)
+	 30: Rel (    22,     0)  ->  Abs (   276,   -70)
+	 31: Rel (    19,     3)  ->  Abs (   295,   -67)
+	 32: Rel (    43,   615)  ->  Abs (   338,   548)
+	 33: Rel (     0,   -80)  ->  Abs (   338,   468)
+	 34: Rel (   -29,   -75)  ->  Abs (   309,   393)
+	 35: Rel (   -15,   -40)  ->  Abs (   294,   353)
+	 36: Rel (   -50,   -87)  ->  Abs (   244,   266)
+	 37: Rel (   -18,    10)  ->  Abs (   226,   276)
+	 38: Rel (     3,    29)  ->  Abs (   229,   305)
+	 39: Rel (     5,    76)  ->  Abs (   234,   381)
+	 40: Rel (     0,    13)  ->  Abs (   234,   394)
+	 41: Rel (     0,   104)  ->  Abs (   234,   498)
+	 42: Rel (   -33,   373)  ->  Abs (   201,   871)
+	 43: Rel (   -23,   203)  ->  Abs (   178,  1074)
+	 44: Rel (   -14,   123)  ->  Abs (   164,  1197)
+	 45: Rel (   -17,   128)  ->  Abs (   147,  1325)
+	 46: Rel (    20,    44)  ->  Abs (   167,  1369)
+	 47: Rel (    51,   102)  ->  Abs (   218,  1471)
+	 48: Rel (    23,    45)  ->  Abs (   241,  1516)
+	 49: Rel (    16,  -114)  ->  Abs (   257,  1402)
+	 50: Rel (    49,  -396)  ->  Abs (   306,  1006)
+	 51: Rel (    14,  -159)  ->  Abs (   320,   847)
+	 52: Rel (    18,  -198)  ->  Abs (   338,   649)
+
+	Glyph 904: off = 0x000275B4, len = 336
+	  numberOfContours:	2
+	  xMin:			89
+	  yMin:			-192
+	  xMax:			540
+	  yMax:			1516
+
+	EndPoints
+	---------
+	  0:  22
+	  1:  54
+
+	  Length of Instructions:	169
+	00000: PUSHW[2]             25   -32 
+	00005: NPUSHB      (10):    11    17    52    44    23    46    30    52    28    38 
+	00017: PUSHW[1]            757 
+	00020: NPUSHB      (13):    46    46    52    64    18    25    52    52    52   144 
+	                            28     1    28 
+	00035: PUSHW[1]            -64 
+	00038: PUSHB[7]              9    14    52    28    28     1    12 
+	00046: PUSHW[7]            751    13   779    22   751     1   747 
+	00061: NPUSHB      (11):    44    30    41    41    49    23    23    49    28    28 
+	                            34 
+	00074: PUSHW[1]            773 
+	00077: NPUSHB      (22):    49    64    13    14    52    49    64     9    10    52 
+	                            49    49    12    64     9    17    52    12    12    13 
+	                            13     6 
+	00101: PUSHW[1]            786 
+	00104: PUSHB[3]             17    17     0 
+	00108: PUSHW[3]            752    56   315 
+	00115: SCANCTRL   
+	00116: SRP0       
+	00117: MIRP[srp0,nmd,rd,0] 
+	00118: SHP[rp2,zp1] 
+	00119: MDAP[rd]   
+	00120: MIRP[srp0,md,rd,1] 
+	00121: RTHG       
+	00122: IP         
+	00123: MDAP[rd]   
+	00124: SHP[rp2,zp1] 
+	00125: RTG        
+	00126: MDAP[rd]   
+	00127: CALL       
+	00128: SHP[rp2,zp1] 
+	00129: MDAP[rd]   
+	00130: CALL       
+	00131: CALL       
+	00132: MIRP[srp0,md,rd,1] 
+	00133: SHP[rp2,zp1] 
+	00134: MDAP[rd]   
+	00135: SRP1       
+	00136: SHP[rp1,zp0] 
+	00137: MDAP[rd]   
+	00138: SRP2       
+	00139: IP         
+	00140: MDAP[rd]   
+	00141: IP         
+	00142: IP         
+	00143: SVTCA[y-axis] 
+	00144: MIAP[rd+ci] 
+	00145: MIRP[nrp0,md,rd,1] 
+	00146: MIAP[rd+ci] 
+	00147: MIRP[nrp0,md,rd,0] 
+	00148: SRP1       
+	00149: SHP[rp1,zp0] 
+	00150: MDAP[rd]   
+	00151: CALL       
+	00152: DELTAP1    
+	00153: SHP[rp1,zp0] 
+	00154: MDAP[rd]   
+	00155: CALL       
+	00156: SHP[rp1,zp0] 
+	00157: MDAP[rd]   
+	00158: MIRP[nrp0,md,rd,1] 
+	00159: SRP1       
+	00160: SRP2       
+	00161: IP         
+	00162: SRP1       
+	00163: IP         
+	00164: IP         
+	00165: IUP[y]     
+	00166: IUP[x]     
+	00167: SVTCA[y-axis] 
+	00168: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual       Rep-  2 Y-Short X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short On
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual                 X-Short On
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short On
+	 23:                              X-Short On
+	 24:        XDual         Y-Short         Off
+	 25:                      Y-Short X-Short On
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short On
+	 28:                      Y-Short X-Short On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual               Y-Short X-Short On
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:        XDual         Y-Short         Off
+	 43:                      Y-Short X-Short Off
+	 44:                      Y-Short X-Short On
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:                      Y-Short X-Short Off
+	 49:        XDual         Y-Short         On
+	 50:        XDual         Y-Short         Off
+	 51:        XDual         Y-Short X-Short Off
+	 52:  YDual XDual                 X-Short On
+	 53:  YDual XDual                 X-Short Off
+	 54:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   540,   293)  ->  Abs (   540,   293)
+	  1: Rel (  -140,     0)  ->  Abs (   400,   293)
+	  2: Rel (   -68,     0)  ->  Abs (   332,   293)
+	  3: Rel (   -41,    55)  ->  Abs (   291,   348)
+	  4: Rel (   -36,    48)  ->  Abs (   255,   396)
+	  5: Rel (   -37,   190)  ->  Abs (   218,   586)
+	  6: Rel (   -10,   139)  ->  Abs (   208,   725)
+	  7: Rel (    -6,   113)  ->  Abs (   202,   838)
+	  8: Rel (   -13,   238)  ->  Abs (   189,  1076)
+	  9: Rel (   -21,   123)  ->  Abs (   168,  1199)
+	 10: Rel (   -18,    39)  ->  Abs (   150,  1238)
+	 11: Rel (   -22,    48)  ->  Abs (   128,  1286)
+	 12: Rel (   -39,    36)  ->  Abs (    89,  1322)
+	 13: Rel (   123,   194)  ->  Abs (   212,  1516)
+	 14: Rel (    39,  -120)  ->  Abs (   251,  1396)
+	 15: Rel (    16,  -167)  ->  Abs (   267,  1229)
+	 16: Rel (    10,  -104)  ->  Abs (   277,  1125)
+	 17: Rel (    10,  -388)  ->  Abs (   287,   737)
+	 18: Rel (    18,  -178)  ->  Abs (   305,   559)
+	 19: Rel (    34,   -50)  ->  Abs (   339,   509)
+	 20: Rel (    28,   -42)  ->  Abs (   367,   467)
+	 21: Rel (    33,     0)  ->  Abs (   400,   467)
+	 22: Rel (   140,     0)  ->  Abs (   540,   467)
+	 23: Rel (  -165,  -522)  ->  Abs (   375,   -55)
+	 24: Rel (     0,   -25)  ->  Abs (   375,   -80)
+	 25: Rel (   -31,   -20)  ->  Abs (   344,  -100)
+	 26: Rel (   -21,   -13)  ->  Abs (   323,  -113)
+	 27: Rel (   -42,   -15)  ->  Abs (   281,  -128)
+	 28: Rel (  -186,   -64)  ->  Abs (    95,  -192)
+	 29: Rel (     0,    46)  ->  Abs (    95,  -146)
+	 30: Rel (   100,    35)  ->  Abs (   195,  -111)
+	 31: Rel (   -31,    16)  ->  Abs (   164,   -95)
+	 32: Rel (   -16,    15)  ->  Abs (   148,   -80)
+	 33: Rel (   -21,    19)  ->  Abs (   127,   -61)
+	 34: Rel (     0,    21)  ->  Abs (   127,   -40)
+	 35: Rel (     0,    31)  ->  Abs (   127,    -9)
+	 36: Rel (    53,    56)  ->  Abs (   180,    47)
+	 37: Rel (    59,    62)  ->  Abs (   239,   109)
+	 38: Rel (    45,     0)  ->  Abs (   284,   109)
+	 39: Rel (    20,     0)  ->  Abs (   304,   109)
+	 40: Rel (    29,   -27)  ->  Abs (   333,    82)
+	 41: Rel (     0,   -22)  ->  Abs (   333,    60)
+	 42: Rel (     0,   -14)  ->  Abs (   333,    46)
+	 43: Rel (   -12,   -29)  ->  Abs (   321,    17)
+	 44: Rel (   -11,   -18)  ->  Abs (   310,    -1)
+	 45: Rel (   -31,    28)  ->  Abs (   279,    27)
+	 46: Rel (   -36,     0)  ->  Abs (   243,    27)
+	 47: Rel (   -22,     0)  ->  Abs (   221,    27)
+	 48: Rel (   -43,   -18)  ->  Abs (   178,     9)
+	 49: Rel (     0,   -12)  ->  Abs (   178,    -3)
+	 50: Rel (     0,   -15)  ->  Abs (   178,   -18)
+	 51: Rel (    93,   -52)  ->  Abs (   271,   -70)
+	 52: Rel (    33,     0)  ->  Abs (   304,   -70)
+	 53: Rel (    22,     0)  ->  Abs (   326,   -70)
+	 54: Rel (    19,     3)  ->  Abs (   345,   -67)
+
+	Glyph 905: off = 0x00027704, len = 496
+	  numberOfContours:	2
+	  xMin:			50
+	  yMin:			-89
+	  xMax:			1241
+	  yMax:			1137
+
+	EndPoints
+	---------
+	  0:  59
+	  1:  91
+
+	  Length of Instructions:	240
+	00000: PUSHW[2]             62   -32 
+	00005: PUSHB[4]             11    17    52    38 
+	00010: PUSHW[1]            -42 
+	00013: NPUSHB      (20):    14    17    52    41    52    14    17    52    42    52 
+	                            11    17    52    81    60    83    67    89    65    75 
+	00035: PUSHW[1]            757 
+	00038: NPUSHB      (21):    83    83    89    64    18    25    52    89    89    15 
+	                            65     1    65    65    32     3     6    14    33    39 
+	                            32 
+	00061: NPUSHW       (9):   775     6   751    57   772    39   751    22   -64 
+	00081: PUSHB[4]              9    11    52    22 
+	00086: PUSHW[5]            781    14   751    48   747 
+	00097: NPUSHB      (11):    81    67    78    78    86    60    60    86    65    65 
+	                            71 
+	00110: PUSHW[1]            773 
+	00113: PUSHB[4]             86    86    36    51 
+	00118: PUSHW[1]            780 
+	00121: NPUSHB       (9):    10    10    44    36     3    18     0     0    44 
+	00132: PUSHW[1]            765 
+	00135: PUSHB[5]             64    18    18    93    33 
+	00141: PUSHW[4]            763    32    32   -64 
+	00150: PUSHB[6]              9    11    52    32    32    36 
+	00157: PUSHW[3]            780    26   315 
+	00164: SCANCTRL   
+	00165: MDAP[rd]   
+	00166: MIRP[srp0,md,rd,1] 
+	00167: SHP[rp2,zp1] 
+	00168: RTHG       
+	00169: MDAP[rd]   
+	00170: CALL       
+	00171: SMD        
+	00172: MIRP[nrp0,md,rd,1] 
+	00173: SRP1       
+	00174: SHP[rp1,zp0] 
+	00175: RTG        
+	00176: MDAP[rd]   
+	00177: SMD        
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: SHP[rp1,zp0] 
+	00180: MDAP[rd]   
+	00181: SRP2       
+	00182: IP         
+	00183: SRP1       
+	00184: SRP2       
+	00185: IP         
+	00186: MDAP[rd]   
+	00187: MIRP[nrp0,md,rd,1] 
+	00188: SRP1       
+	00189: SHP[rp1,zp0] 
+	00190: MDAP[rd]   
+	00191: MIRP[srp0,md,rd,1] 
+	00192: SHP[rp2,zp1] 
+	00193: MDAP[rd]   
+	00194: SRP1       
+	00195: SHP[rp1,zp0] 
+	00196: MDAP[rd]   
+	00197: SRP2       
+	00198: IP         
+	00199: MDAP[rd]   
+	00200: IP         
+	00201: IP         
+	00202: SVTCA[y-axis] 
+	00203: MIAP[rd+ci] 
+	00204: MIRP[nrp0,md,rd,1] 
+	00205: MIAP[rd+ci] 
+	00206: CALL       
+	00207: MIRP[nrp0,md,rd,1] 
+	00208: MIAP[rd+ci] 
+	00209: MIRP[nrp0,md,rd,1] 
+	00210: MIAP[rd+ci] 
+	00211: SRP2       
+	00212: IP         
+	00213: SRP1       
+	00214: SRP2       
+	00215: IP         
+	00216: SRP1       
+	00217: SHP[rp1,zp0] 
+	00218: MDAP[rd]   
+	00219: DELTAP1    
+	00220: SHP[rp1,zp0] 
+	00221: MDAP[rd]   
+	00222: CALL       
+	00223: SHP[rp1,zp0] 
+	00224: MDAP[rd]   
+	00225: MIRP[nrp0,md,rd,1] 
+	00226: SRP1       
+	00227: SRP2       
+	00228: IP         
+	00229: SRP1       
+	00230: IP         
+	00231: IP         
+	00232: IUP[y]     
+	00233: IUP[x]     
+	00234: SVTCA[x-axis] 
+	00235: CALL       
+	00236: CALL       
+	00237: CALL       
+	00238: SVTCA[y-axis] 
+	00239: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:                      Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                               On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:        XDual         Y-Short X-Short Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short On
+	 49:  YDual                       X-Short Off
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:  YDual XDual         Y-Short X-Short Off
+	 55:  YDual XDual         Y-Short X-Short On
+	 56:  YDual XDual         Y-Short X-Short Off
+	 57:  YDual XDual                 X-Short On
+	 58:  YDual XDual                 X-Short Off
+	 59:        XDual         Y-Short X-Short Off
+	 60:  YDual               Y-Short         On
+	 61:        XDual         Y-Short         Off
+	 62:                      Y-Short X-Short On
+	 63:                      Y-Short X-Short Off
+	 64:                      Y-Short X-Short On
+	 65:                      Y-Short X-Short On
+	 66:  YDual XDual         Y-Short         Off
+	 67:  YDual XDual         Y-Short X-Short On
+	 68:  YDual               Y-Short X-Short Off
+	 69:  YDual               Y-Short X-Short On
+	 70:  YDual               Y-Short X-Short Off
+	 71:  YDual XDual         Y-Short         On
+	 72:  YDual XDual         Y-Short         Off
+	 73:  YDual XDual         Y-Short X-Short On
+	 74:  YDual XDual         Y-Short X-Short Off
+	 75:  YDual XDual                 X-Short On
+	 76:  YDual XDual                 X-Short Off
+	 77:        XDual         Y-Short X-Short Off
+	 78:        XDual         Y-Short         On
+	 79:        XDual         Y-Short         Off
+	 80:                      Y-Short X-Short Off
+	 81:                      Y-Short X-Short On
+	 82:  YDual               Y-Short X-Short Off
+	 83:  YDual                       X-Short On
+	 84:  YDual                       X-Short Off
+	 85:                      Y-Short X-Short Off
+	 86:        XDual         Y-Short         On
+	 87:        XDual         Y-Short         Off
+	 88:        XDual         Y-Short X-Short Off
+	 89:  YDual XDual                 X-Short On
+	 90:  YDual XDual                 X-Short Off
+	 91:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1241,   800)  ->  Abs (  1241,   800)
+	  1: Rel (     0,   -32)  ->  Abs (  1241,   768)
+	  2: Rel (   -12,   -67)  ->  Abs (  1229,   701)
+	  3: Rel (    -2,   -14)  ->  Abs (  1227,   687)
+	  4: Rel (   -35,    45)  ->  Abs (  1192,   732)
+	  5: Rel (   -97,    52)  ->  Abs (  1095,   784)
+	  6: Rel (   -50,     0)  ->  Abs (  1045,   784)
+	  7: Rel (   -87,     0)  ->  Abs (   958,   784)
+	  8: Rel (   -96,  -101)  ->  Abs (   862,   683)
+	  9: Rel (   -88,   -93)  ->  Abs (   774,   590)
+	 10: Rel (     0,   -55)  ->  Abs (   774,   535)
+	 11: Rel (     0,   -19)  ->  Abs (   774,   516)
+	 12: Rel (    43,   -19)  ->  Abs (   817,   497)
+	 13: Rel (    53,     0)  ->  Abs (   870,   497)
+	 14: Rel (    80,     0)  ->  Abs (   950,   497)
+	 15: Rel (    72,     0)  ->  Abs (  1022,   497)
+	 16: Rel (    69,    -3)  ->  Abs (  1091,   494)
+	 17: Rel (    96,   -16)  ->  Abs (  1187,   478)
+	 18: Rel (     0,   -65)  ->  Abs (  1187,   413)
+	 19: Rel (     0,  -251)  ->  Abs (  1187,   162)
+	 20: Rel (  -219,  -131)  ->  Abs (   968,    31)
+	 21: Rel (  -201,  -120)  ->  Abs (   767,   -89)
+	 22: Rel (  -343,     0)  ->  Abs (   424,   -89)
+	 23: Rel (  -178,     0)  ->  Abs (   246,   -89)
+	 24: Rel (   -94,    69)  ->  Abs (   152,   -20)
+	 25: Rel (  -102,    75)  ->  Abs (    50,    55)
+	 26: Rel (     0,   151)  ->  Abs (    50,   206)
+	 27: Rel (     0,   104)  ->  Abs (    50,   310)
+	 28: Rel (    34,   114)  ->  Abs (    84,   424)
+	 29: Rel (    26,    87)  ->  Abs (   110,   511)
+	 30: Rel (    46,    95)  ->  Abs (   156,   606)
+	 31: Rel (     3,     6)  ->  Abs (   159,   612)
+	 32: Rel (    60,   113)  ->  Abs (   219,   725)
+	 33: Rel (    42,   -17)  ->  Abs (   261,   708)
+	 34: Rel (   -63,  -112)  ->  Abs (   198,   596)
+	 35: Rel (   -67,  -195)  ->  Abs (   131,   401)
+	 36: Rel (     0,   -75)  ->  Abs (   131,   326)
+	 37: Rel (     0,  -122)  ->  Abs (   131,   204)
+	 38: Rel (   169,  -122)  ->  Abs (   300,    82)
+	 39: Rel (   157,     0)  ->  Abs (   457,    82)
+	 40: Rel (   120,     0)  ->  Abs (   577,    82)
+	 41: Rel (   159,    48)  ->  Abs (   736,   130)
+	 42: Rel (   136,    41)  ->  Abs (   872,   171)
+	 43: Rel (   218,   114)  ->  Abs (  1090,   285)
+	 44: Rel (     0,    27)  ->  Abs (  1090,   312)
+	 45: Rel (     0,    19)  ->  Abs (  1090,   331)
+	 46: Rel (   -25,    12)  ->  Abs (  1065,   343)
+	 47: Rel (   -28,     0)  ->  Abs (  1037,   343)
+	 48: Rel (  -234,     0)  ->  Abs (   803,   343)
+	 49: Rel (   -43,     0)  ->  Abs (   760,   343)
+	 50: Rel (   -66,    62)  ->  Abs (   694,   405)
+	 51: Rel (     0,    49)  ->  Abs (   694,   454)
+	 52: Rel (     0,    67)  ->  Abs (   694,   521)
+	 53: Rel (    55,   115)  ->  Abs (   749,   636)
+	 54: Rel (    60,   125)  ->  Abs (   809,   761)
+	 55: Rel (    85,    84)  ->  Abs (   894,   845)
+	 56: Rel (   102,   101)  ->  Abs (   996,   946)
+	 57: Rel (   103,     0)  ->  Abs (  1099,   946)
+	 58: Rel (    66,     0)  ->  Abs (  1165,   946)
+	 59: Rel (    76,   -80)  ->  Abs (  1241,   866)
+	 60: Rel (  -879,   107)  ->  Abs (   362,   973)
+	 61: Rel (     0,   -25)  ->  Abs (   362,   948)
+	 62: Rel (   -31,   -20)  ->  Abs (   331,   928)
+	 63: Rel (   -21,   -13)  ->  Abs (   310,   915)
+	 64: Rel (   -42,   -15)  ->  Abs (   268,   900)
+	 65: Rel (  -186,   -64)  ->  Abs (    82,   836)
+	 66: Rel (     0,    46)  ->  Abs (    82,   882)
+	 67: Rel (   100,    35)  ->  Abs (   182,   917)
+	 68: Rel (   -31,    16)  ->  Abs (   151,   933)
+	 69: Rel (   -16,    15)  ->  Abs (   135,   948)
+	 70: Rel (   -21,    19)  ->  Abs (   114,   967)
+	 71: Rel (     0,    21)  ->  Abs (   114,   988)
+	 72: Rel (     0,    31)  ->  Abs (   114,  1019)
+	 73: Rel (    53,    56)  ->  Abs (   167,  1075)
+	 74: Rel (    59,    62)  ->  Abs (   226,  1137)
+	 75: Rel (    45,     0)  ->  Abs (   271,  1137)
+	 76: Rel (    20,     0)  ->  Abs (   291,  1137)
+	 77: Rel (    29,   -27)  ->  Abs (   320,  1110)
+	 78: Rel (     0,   -22)  ->  Abs (   320,  1088)
+	 79: Rel (     0,   -14)  ->  Abs (   320,  1074)
+	 80: Rel (   -12,   -29)  ->  Abs (   308,  1045)
+	 81: Rel (   -11,   -18)  ->  Abs (   297,  1027)
+	 82: Rel (   -31,    28)  ->  Abs (   266,  1055)
+	 83: Rel (   -36,     0)  ->  Abs (   230,  1055)
+	 84: Rel (   -22,     0)  ->  Abs (   208,  1055)
+	 85: Rel (   -43,   -18)  ->  Abs (   165,  1037)
+	 86: Rel (     0,   -12)  ->  Abs (   165,  1025)
+	 87: Rel (     0,   -15)  ->  Abs (   165,  1010)
+	 88: Rel (    93,   -52)  ->  Abs (   258,   958)
+	 89: Rel (    33,     0)  ->  Abs (   291,   958)
+	 90: Rel (    22,     0)  ->  Abs (   313,   958)
+	 91: Rel (    19,     3)  ->  Abs (   332,   961)
+
+	Glyph 906: off = 0x000278F4, len = 468
+	  numberOfContours:	2
+	  xMin:			106
+	  yMin:			-225
+	  xMax:			1275
+	  yMax:			1006
+
+	EndPoints
+	---------
+	  0:  54
+	  1:  86
+
+	  Length of Instructions:	225
+	00000: PUSHW[2]             57   -32 
+	00005: PUSHB[4]             11    17    52    32 
+	00010: PUSHW[1]            -32 
+	00013: NPUSHB      (10):    12    17    52    76    55    78    62    84    60    70 
+	00025: PUSHW[1]            757 
+	00028: NPUSHB      (17):    78    78    84    64    18    25    52    84    84    60 
+	                            60    26    53    25    25    53     6 
+	00047: PUSHW[1]            -64 
+	00050: NPUSHB      (10):     9    10    52     6     6     1    44    44     1    34 
+	00062: PUSHW[3]            751    17   -64 
+	00069: PUSHB[4]              9    13    52    17 
+	00074: PUSHW[5]            782    53   751     1   747 
+	00085: NPUSHB      (11):    76    62    73    73    81    55    55    81    60    60 
+	                            66 
+	00098: PUSHW[1]            773 
+	00101: PUSHB[4]             81    81    30    38 
+	00106: PUSHW[1]            780 
+	00109: PUSHB[4]             13    13     0    47 
+	00114: PUSHW[1]            780 
+	00117: PUSHB[5]             64     4     4    30     0 
+	00123: PUSHW[7]            752    88    26   763    32    25   -64 
+	00138: PUSHB[6]              9    11    52    25    25    30 
+	00145: PUSHW[3]            780    21   315 
+	00152: SCANCTRL   
+	00153: MDAP[rd]   
+	00154: MIRP[srp0,md,rd,1] 
+	00155: SHP[rp2,zp1] 
+	00156: RTHG       
+	00157: MDAP[rd]   
+	00158: CALL       
+	00159: SMD        
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: RTG        
+	00162: SRP0       
+	00163: MIRP[nrp0,nmd,rd,1] 
+	00164: SRP1       
+	00165: IP         
+	00166: MDAP[rd]   
+	00167: SMD        
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: SRP2       
+	00170: IP         
+	00171: MDAP[rd]   
+	00172: MIRP[nrp0,md,rd,1] 
+	00173: SRP1       
+	00174: SHP[rp1,zp0] 
+	00175: MDAP[rd]   
+	00176: MIRP[srp0,md,rd,1] 
+	00177: SHP[rp2,zp1] 
+	00178: MDAP[rd]   
+	00179: SRP1       
+	00180: SHP[rp1,zp0] 
+	00181: MDAP[rd]   
+	00182: SRP2       
+	00183: IP         
+	00184: MDAP[rd]   
+	00185: IP         
+	00186: IP         
+	00187: SVTCA[y-axis] 
+	00188: MIAP[rd+ci] 
+	00189: MIRP[nrp0,md,rd,1] 
+	00190: MIAP[rd+ci] 
+	00191: CALL       
+	00192: MIRP[srp0,md,rd,1] 
+	00193: SRP1       
+	00194: IP         
+	00195: MDAP[rd]   
+	00196: SRP2       
+	00197: IP         
+	00198: MDAP[rd]   
+	00199: CALL       
+	00200: SRP1       
+	00201: SHP[rp1,zp0] 
+	00202: MDAP[rd]   
+	00203: SRP2       
+	00204: IP         
+	00205: SHP[rp1,zp0] 
+	00206: MDAP[rd]   
+	00207: SHP[rp1,zp0] 
+	00208: MDAP[rd]   
+	00209: CALL       
+	00210: SHP[rp1,zp0] 
+	00211: MDAP[rd]   
+	00212: MIRP[nrp0,md,rd,1] 
+	00213: SRP1       
+	00214: SRP2       
+	00215: IP         
+	00216: SRP1       
+	00217: IP         
+	00218: IP         
+	00219: IUP[y]     
+	00220: IUP[x]     
+	00221: SVTCA[x-axis] 
+	00222: CALL       
+	00223: SVTCA[y-axis] 
+	00224: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                               On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short On
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short On
+	 27:                      Y-Short X-Short Off
+	 28:                      Y-Short X-Short On
+	 29:                      Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:        XDual         Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short Off
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual XDual         Y-Short X-Short On
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual                 X-Short On
+	 54:  YDual XDual                 X-Short On
+	 55:                                      On
+	 56:        XDual         Y-Short         Off
+	 57:                      Y-Short X-Short On
+	 58:                      Y-Short X-Short Off
+	 59:                      Y-Short X-Short On
+	 60:                      Y-Short X-Short On
+	 61:  YDual XDual         Y-Short         Off
+	 62:  YDual XDual         Y-Short X-Short On
+	 63:  YDual               Y-Short X-Short Off
+	 64:  YDual               Y-Short X-Short On
+	 65:  YDual               Y-Short X-Short Off
+	 66:  YDual XDual         Y-Short         On
+	 67:  YDual XDual         Y-Short         Off
+	 68:  YDual XDual         Y-Short X-Short On
+	 69:  YDual XDual         Y-Short X-Short Off
+	 70:  YDual XDual                 X-Short On
+	 71:  YDual XDual                 X-Short Off
+	 72:        XDual         Y-Short X-Short Off
+	 73:        XDual         Y-Short         On
+	 74:        XDual         Y-Short         Off
+	 75:                      Y-Short X-Short Off
+	 76:                      Y-Short X-Short On
+	 77:  YDual               Y-Short X-Short Off
+	 78:  YDual                       X-Short On
+	 79:  YDual                       X-Short Off
+	 80:                      Y-Short X-Short Off
+	 81:        XDual         Y-Short         On
+	 82:        XDual         Y-Short         Off
+	 83:        XDual         Y-Short X-Short Off
+	 84:  YDual XDual                 X-Short On
+	 85:  YDual XDual                 X-Short Off
+	 86:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1275,   293)  ->  Abs (  1275,   293)
+	  1: Rel (  -175,     0)  ->  Abs (  1100,   293)
+	  2: Rel (  -154,     0)  ->  Abs (   946,   293)
+	  3: Rel (  -155,   -16)  ->  Abs (   791,   277)
+	  4: Rel (     0,   -24)  ->  Abs (   791,   253)
+	  5: Rel (     0,   -33)  ->  Abs (   791,   220)
+	  6: Rel (    93,     0)  ->  Abs (   884,   220)
+	  7: Rel (    41,     0)  ->  Abs (   925,   220)
+	  8: Rel (    48,    -4)  ->  Abs (   973,   216)
+	  9: Rel (    81,    -9)  ->  Abs (  1054,   207)
+	 10: Rel (    48,    -6)  ->  Abs (  1102,   201)
+	 11: Rel (    18,    -9)  ->  Abs (  1120,   192)
+	 12: Rel (    29,   -15)  ->  Abs (  1149,   177)
+	 13: Rel (     0,   -37)  ->  Abs (  1149,   140)
+	 14: Rel (     0,  -187)  ->  Abs (  1149,   -47)
+	 15: Rel (  -123,   -85)  ->  Abs (  1026,  -132)
+	 16: Rel (  -134,   -93)  ->  Abs (   892,  -225)
+	 17: Rel (  -309,     0)  ->  Abs (   583,  -225)
+	 18: Rel (  -215,     0)  ->  Abs (   368,  -225)
+	 19: Rel (  -127,    73)  ->  Abs (   241,  -152)
+	 20: Rel (  -135,    78)  ->  Abs (   106,   -74)
+	 21: Rel (     0,   144)  ->  Abs (   106,    70)
+	 22: Rel (     0,   116)  ->  Abs (   106,   186)
+	 23: Rel (    64,   130)  ->  Abs (   170,   316)
+	 24: Rel (    23,    47)  ->  Abs (   193,   363)
+	 25: Rel (    98,   154)  ->  Abs (   291,   517)
+	 26: Rel (    40,   -20)  ->  Abs (   331,   497)
+	 27: Rel (   -38,   -65)  ->  Abs (   293,   432)
+	 28: Rel (   -37,   -64)  ->  Abs (   256,   368)
+	 29: Rel (   -57,  -110)  ->  Abs (   199,   258)
+	 30: Rel (     0,   -70)  ->  Abs (   199,   188)
+	 31: Rel (     0,  -123)  ->  Abs (   199,    65)
+	 32: Rel (   128,   -64)  ->  Abs (   327,     1)
+	 33: Rel (   122,   -61)  ->  Abs (   449,   -60)
+	 34: Rel (   213,     0)  ->  Abs (   662,   -60)
+	 35: Rel (   143,     0)  ->  Abs (   805,   -60)
+	 36: Rel (   109,    22)  ->  Abs (   914,   -38)
+	 37: Rel (   134,    27)  ->  Abs (  1048,   -11)
+	 38: Rel (     0,    47)  ->  Abs (  1048,    36)
+	 39: Rel (     0,    17)  ->  Abs (  1048,    53)
+	 40: Rel (   -30,    17)  ->  Abs (  1018,    70)
+	 41: Rel (   -35,     0)  ->  Abs (   983,    70)
+	 42: Rel (   -27,     3)  ->  Abs (   956,    73)
+	 43: Rel (  -115,     7)  ->  Abs (   841,    80)
+	 44: Rel (   -18,     0)  ->  Abs (   823,    80)
+	 45: Rel (   -63,     0)  ->  Abs (   760,    80)
+	 46: Rel (   -54,    33)  ->  Abs (   706,   113)
+	 47: Rel (     0,    33)  ->  Abs (   706,   146)
+	 48: Rel (     0,   124)  ->  Abs (   706,   270)
+	 49: Rel (    73,    79)  ->  Abs (   779,   349)
+	 50: Rel (    60,    64)  ->  Abs (   839,   413)
+	 51: Rel (   101,    31)  ->  Abs (   940,   444)
+	 52: Rel (    76,    23)  ->  Abs (  1016,   467)
+	 53: Rel (    84,     0)  ->  Abs (  1100,   467)
+	 54: Rel (   175,     0)  ->  Abs (  1275,   467)
+	 55: Rel (  -853,   375)  ->  Abs (   422,   842)
+	 56: Rel (     0,   -25)  ->  Abs (   422,   817)
+	 57: Rel (   -31,   -20)  ->  Abs (   391,   797)
+	 58: Rel (   -21,   -13)  ->  Abs (   370,   784)
+	 59: Rel (   -42,   -15)  ->  Abs (   328,   769)
+	 60: Rel (  -186,   -64)  ->  Abs (   142,   705)
+	 61: Rel (     0,    46)  ->  Abs (   142,   751)
+	 62: Rel (   100,    35)  ->  Abs (   242,   786)
+	 63: Rel (   -31,    16)  ->  Abs (   211,   802)
+	 64: Rel (   -16,    15)  ->  Abs (   195,   817)
+	 65: Rel (   -21,    19)  ->  Abs (   174,   836)
+	 66: Rel (     0,    21)  ->  Abs (   174,   857)
+	 67: Rel (     0,    31)  ->  Abs (   174,   888)
+	 68: Rel (    53,    56)  ->  Abs (   227,   944)
+	 69: Rel (    59,    62)  ->  Abs (   286,  1006)
+	 70: Rel (    45,     0)  ->  Abs (   331,  1006)
+	 71: Rel (    20,     0)  ->  Abs (   351,  1006)
+	 72: Rel (    29,   -27)  ->  Abs (   380,   979)
+	 73: Rel (     0,   -22)  ->  Abs (   380,   957)
+	 74: Rel (     0,   -14)  ->  Abs (   380,   943)
+	 75: Rel (   -12,   -29)  ->  Abs (   368,   914)
+	 76: Rel (   -11,   -18)  ->  Abs (   357,   896)
+	 77: Rel (   -31,    28)  ->  Abs (   326,   924)
+	 78: Rel (   -36,     0)  ->  Abs (   290,   924)
+	 79: Rel (   -22,     0)  ->  Abs (   268,   924)
+	 80: Rel (   -43,   -18)  ->  Abs (   225,   906)
+	 81: Rel (     0,   -12)  ->  Abs (   225,   894)
+	 82: Rel (     0,   -15)  ->  Abs (   225,   879)
+	 83: Rel (    93,   -52)  ->  Abs (   318,   827)
+	 84: Rel (    33,     0)  ->  Abs (   351,   827)
+	 85: Rel (    22,     0)  ->  Abs (   373,   827)
+	 86: Rel (    19,     3)  ->  Abs (   392,   830)
+
+	Glyph 907: off = 0x00027AC8, len = 280
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			293
+	  xMax:			570
+	  yMax:			1369
+
+	EndPoints
+	---------
+	  0:  12
+	  1:  44
+
+	  Length of Instructions:	142
+	00000: PUSHW[2]             15   -32 
+	00005: NPUSHB      (15):    11    17    52     6    52    12    17    52    34    13 
+	                            36    20    42    18    28 
+	00022: PUSHW[1]            757 
+	00025: NPUSHB      (12):    36    36    42    64    18    24    52    42    42    18 
+	                            18     7 
+	00039: PUSHW[7]            751     8   772     2   751     1   747 
+	00054: NPUSHB      (11):    34    20    31    31    39    13    13    39    18    18 
+	                            24 
+	00067: PUSHW[1]            773 
+	00070: PUSHB[8]             39    39     1     8     8     7     7     3 
+	00079: PUSHW[6]            771     0   752    46     1   315 
+	00092: SCANCTRL   
+	00093: MDAP[rd]   
+	00094: SRP0       
+	00095: MIRP[srp0,nmd,rd,1] 
+	00096: MIRP[srp0,md,rd,1] 
+	00097: SHP[rp2,zp1] 
+	00098: MDAP[rd]   
+	00099: RTHG       
+	00100: IP         
+	00101: MDAP[rd]   
+	00102: RTG        
+	00103: SRP1       
+	00104: IP         
+	00105: MDAP[rd]   
+	00106: MIRP[srp0,md,rd,1] 
+	00107: SHP[rp2,zp1] 
+	00108: MDAP[rd]   
+	00109: SRP1       
+	00110: SHP[rp1,zp0] 
+	00111: MDAP[rd]   
+	00112: SRP2       
+	00113: IP         
+	00114: MDAP[rd]   
+	00115: IP         
+	00116: IP         
+	00117: SVTCA[y-axis] 
+	00118: MIAP[rd+ci] 
+	00119: MIRP[nrp0,md,rd,1] 
+	00120: MIAP[rd+ci] 
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: SHP[rp1,zp0] 
+	00123: MDAP[rd]   
+	00124: SHP[rp1,zp0] 
+	00125: MDAP[rd]   
+	00126: CALL       
+	00127: SHP[rp1,zp0] 
+	00128: MDAP[rd]   
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: SRP1       
+	00131: SRP2       
+	00132: IP         
+	00133: SRP1       
+	00134: IP         
+	00135: IP         
+	00136: IUP[y]     
+	00137: IUP[x]     
+	00138: SVTCA[x-axis] 
+	00139: CALL       
+	00140: SVTCA[y-axis] 
+	00141: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:                              X-Short On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short X-Short Off
+	 34:                      Y-Short X-Short On
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:                      Y-Short X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   570,   293)  ->  Abs (   570,   293)
+	  1: Rel (  -570,     0)  ->  Abs (     0,   293)
+	  2: Rel (     0,   174)  ->  Abs (     0,   467)
+	  3: Rel (   497,     0)  ->  Abs (   497,   467)
+	  4: Rel (     0,   118)  ->  Abs (   497,   585)
+	  5: Rel (   -28,    62)  ->  Abs (   469,   647)
+	  6: Rel (   -19,    43)  ->  Abs (   450,   690)
+	  7: Rel (   -75,    81)  ->  Abs (   375,   771)
+	  8: Rel (    78,   163)  ->  Abs (   453,   934)
+	  9: Rel (    72,   -91)  ->  Abs (   525,   843)
+	 10: Rel (    18,   -51)  ->  Abs (   543,   792)
+	 11: Rel (    27,   -77)  ->  Abs (   570,   715)
+	 12: Rel (     0,  -178)  ->  Abs (   570,   537)
+	 13: Rel (  -108,   668)  ->  Abs (   462,  1205)
+	 14: Rel (     0,   -25)  ->  Abs (   462,  1180)
+	 15: Rel (   -31,   -20)  ->  Abs (   431,  1160)
+	 16: Rel (   -21,   -13)  ->  Abs (   410,  1147)
+	 17: Rel (   -42,   -15)  ->  Abs (   368,  1132)
+	 18: Rel (  -186,   -64)  ->  Abs (   182,  1068)
+	 19: Rel (     0,    46)  ->  Abs (   182,  1114)
+	 20: Rel (   100,    35)  ->  Abs (   282,  1149)
+	 21: Rel (   -31,    16)  ->  Abs (   251,  1165)
+	 22: Rel (   -16,    15)  ->  Abs (   235,  1180)
+	 23: Rel (   -21,    19)  ->  Abs (   214,  1199)
+	 24: Rel (     0,    21)  ->  Abs (   214,  1220)
+	 25: Rel (     0,    31)  ->  Abs (   214,  1251)
+	 26: Rel (    53,    56)  ->  Abs (   267,  1307)
+	 27: Rel (    59,    62)  ->  Abs (   326,  1369)
+	 28: Rel (    45,     0)  ->  Abs (   371,  1369)
+	 29: Rel (    20,     0)  ->  Abs (   391,  1369)
+	 30: Rel (    29,   -27)  ->  Abs (   420,  1342)
+	 31: Rel (     0,   -22)  ->  Abs (   420,  1320)
+	 32: Rel (     0,   -14)  ->  Abs (   420,  1306)
+	 33: Rel (   -12,   -29)  ->  Abs (   408,  1277)
+	 34: Rel (   -11,   -18)  ->  Abs (   397,  1259)
+	 35: Rel (   -31,    28)  ->  Abs (   366,  1287)
+	 36: Rel (   -36,     0)  ->  Abs (   330,  1287)
+	 37: Rel (   -22,     0)  ->  Abs (   308,  1287)
+	 38: Rel (   -43,   -18)  ->  Abs (   265,  1269)
+	 39: Rel (     0,   -12)  ->  Abs (   265,  1257)
+	 40: Rel (     0,   -15)  ->  Abs (   265,  1242)
+	 41: Rel (    93,   -52)  ->  Abs (   358,  1190)
+	 42: Rel (    33,     0)  ->  Abs (   391,  1190)
+	 43: Rel (    22,     0)  ->  Abs (   413,  1190)
+	 44: Rel (    19,     3)  ->  Abs (   432,  1193)
+
+	Glyph 908: off = 0x00027BE0, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			293
+	  xMax:			570
+	  yMax:			1369
+
+	     0: Flags:		0x0016
+		Glyf Index:	907
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 909: off = 0x00027BF0, len = 130
+	  numberOfContours:	1
+	  xMin:			147
+	  yMin:			266
+	  xMax:			338
+	  yMax:			1516
+
+	EndPoints
+	---------
+	  0:  20
+
+	  Length of Instructions:	51
+	00000: PUSHB[3]              5     4    13 
+	00004: PUSHW[7]            751    16   779     4   783    13   784 
+	00019: PUSHB[7]             16    16     8     5     4     4     0 
+	00027: PUSHW[2]            784     8 
+	00032: MDAP[rd]   
+	00033: MIRP[nrp0,md,rd,1] 
+	00034: RTHG       
+	00035: IP         
+	00036: MDAP[rd]   
+	00037: SHP[rp1,zp0] 
+	00038: SRP1       
+	00039: IP         
+	00040: MDAP[rd]   
+	00041: RTG        
+	00042: MIRP[nrp0,md,rd,1] 
+	00043: SVTCA[y-axis] 
+	00044: MIAP[rd+ci] 
+	00045: MIAP[rd+ci] 
+	00046: MIRP[nrp0,nmd,rd,0] 
+	00047: SRP1       
+	00048: IP         
+	00049: IUP[y]     
+	00050: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:                              X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   338,   548)  ->  Abs (   338,   548)
+	  1: Rel (     0,   -80)  ->  Abs (   338,   468)
+	  2: Rel (   -29,   -75)  ->  Abs (   309,   393)
+	  3: Rel (   -15,   -40)  ->  Abs (   294,   353)
+	  4: Rel (   -50,   -87)  ->  Abs (   244,   266)
+	  5: Rel (   -18,    10)  ->  Abs (   226,   276)
+	  6: Rel (     3,    29)  ->  Abs (   229,   305)
+	  7: Rel (     5,    76)  ->  Abs (   234,   381)
+	  8: Rel (     0,    13)  ->  Abs (   234,   394)
+	  9: Rel (     0,   104)  ->  Abs (   234,   498)
+	 10: Rel (   -33,   373)  ->  Abs (   201,   871)
+	 11: Rel (   -23,   203)  ->  Abs (   178,  1074)
+	 12: Rel (   -14,   123)  ->  Abs (   164,  1197)
+	 13: Rel (   -17,   128)  ->  Abs (   147,  1325)
+	 14: Rel (    20,    44)  ->  Abs (   167,  1369)
+	 15: Rel (    51,   102)  ->  Abs (   218,  1471)
+	 16: Rel (    23,    45)  ->  Abs (   241,  1516)
+	 17: Rel (    16,  -114)  ->  Abs (   257,  1402)
+	 18: Rel (    49,  -396)  ->  Abs (   306,  1006)
+	 19: Rel (    14,  -159)  ->  Abs (   320,   847)
+	 20: Rel (    18,  -198)  ->  Abs (   338,   649)
+
+	Glyph 910: off = 0x00027C72, len = 142
+	  numberOfContours:	1
+	  xMin:			89
+	  yMin:			293
+	  xMax:			540
+	  yMax:			1516
+
+	EndPoints
+	---------
+	  0:  22
+
+	  Length of Instructions:	60
+	00000: PUSHW[8]             12   751    13   779    22   751     1   747 
+	00017: NPUSHB      (10):    12    64     9    17    52    12    12    13    13     6 
+	00029: PUSHW[1]            786 
+	00032: PUSHB[3]             17    17     0 
+	00036: PUSHW[2]            752    24 
+	00041: SRP0       
+	00042: MIRP[srp0,nmd,rd,0] 
+	00043: SHP[rp2,zp1] 
+	00044: MDAP[rd]   
+	00045: MIRP[srp0,md,rd,1] 
+	00046: RTHG       
+	00047: IP         
+	00048: MDAP[rd]   
+	00049: SHP[rp2,zp1] 
+	00050: RTG        
+	00051: MDAP[rd]   
+	00052: CALL       
+	00053: SVTCA[y-axis] 
+	00054: MIAP[rd+ci] 
+	00055: MIRP[nrp0,md,rd,1] 
+	00056: MIAP[rd+ci] 
+	00057: MIRP[nrp0,md,rd,0] 
+	00058: IUP[y]     
+	00059: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual       Rep-  2 Y-Short X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short On
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual                 X-Short On
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   540,   293)  ->  Abs (   540,   293)
+	  1: Rel (  -140,     0)  ->  Abs (   400,   293)
+	  2: Rel (   -68,     0)  ->  Abs (   332,   293)
+	  3: Rel (   -41,    55)  ->  Abs (   291,   348)
+	  4: Rel (   -36,    48)  ->  Abs (   255,   396)
+	  5: Rel (   -37,   190)  ->  Abs (   218,   586)
+	  6: Rel (   -10,   139)  ->  Abs (   208,   725)
+	  7: Rel (    -6,   113)  ->  Abs (   202,   838)
+	  8: Rel (   -13,   238)  ->  Abs (   189,  1076)
+	  9: Rel (   -21,   123)  ->  Abs (   168,  1199)
+	 10: Rel (   -18,    39)  ->  Abs (   150,  1238)
+	 11: Rel (   -22,    48)  ->  Abs (   128,  1286)
+	 12: Rel (   -39,    36)  ->  Abs (    89,  1322)
+	 13: Rel (   123,   194)  ->  Abs (   212,  1516)
+	 14: Rel (    39,  -120)  ->  Abs (   251,  1396)
+	 15: Rel (    16,  -167)  ->  Abs (   267,  1229)
+	 16: Rel (    10,  -104)  ->  Abs (   277,  1125)
+	 17: Rel (    10,  -388)  ->  Abs (   287,   737)
+	 18: Rel (    18,  -178)  ->  Abs (   305,   559)
+	 19: Rel (    34,   -50)  ->  Abs (   339,   509)
+	 20: Rel (    28,   -42)  ->  Abs (   367,   467)
+	 21: Rel (    33,     0)  ->  Abs (   400,   467)
+	 22: Rel (   140,     0)  ->  Abs (   540,   467)
+
+	Glyph 911: off = 0x00027D00, len = 256
+	  numberOfContours:	2
+	  xMin:			128
+	  yMin:			-95
+	  xMax:			1531
+	  yMax:			960
+
+	EndPoints
+	---------
+	  0:  28
+	  1:  32
+
+	  Length of Instructions:	145
+	00000: PUSHW[2]             16   -64 
+	00005: NPUSHB      (11):    14    17    52    22    52    12    17    52    29    31 
+	                            30 
+	00018: PUSHW[1]            770 
+	00021: PUSHB[6]             32    32     1    10    18     9 
+	00028: NPUSHW       (9):   772    23   751    24   772    18   751     1   747 
+	00048: PUSHB[3]             30    32    29 
+	00052: PUSHW[1]            769 
+	00055: PUSHB[8]             31    31     5    24    24    23    23    19 
+	00064: NPUSHW      (10):   771    64     0   752    34    10   763    32     9   -64 
+	00086: PUSHB[6]              9    11    52     9     9    14 
+	00093: PUSHW[3]            771     5   298 
+	00100: SCANCTRL   
+	00101: MDAP[rd]   
+	00102: MIRP[srp0,md,rd,1] 
+	00103: SHP[rp2,zp1] 
+	00104: RTHG       
+	00105: MDAP[rd]   
+	00106: CALL       
+	00107: SMD        
+	00108: MIRP[nrp0,md,rd,1] 
+	00109: RTG        
+	00110: SRP0       
+	00111: MIRP[srp0,nmd,rd,0] 
+	00112: SMD        
+	00113: MIRP[srp0,md,rd,1] 
+	00114: SHP[rp2,zp1] 
+	00115: MDAP[rd]   
+	00116: RTHG       
+	00117: IP         
+	00118: MDAP[rd]   
+	00119: RTG        
+	00120: SRP1       
+	00121: IP         
+	00122: MDAP[rd]   
+	00123: MIRP[nrp0,md,rd,1] 
+	00124: IP         
+	00125: IP         
+	00126: SVTCA[y-axis] 
+	00127: MIAP[rd+ci] 
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: MIAP[rd+ci] 
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: MIAP[rd+ci] 
+	00132: SRP2       
+	00133: IP         
+	00134: SRP1       
+	00135: SHP[rp1,zp0] 
+	00136: MDAP[rd]   
+	00137: MIRP[srp0,md,rd,1] 
+	00138: IP         
+	00139: IP         
+	00140: IUP[y]     
+	00141: IUP[x]     
+	00142: SVTCA[x-axis] 
+	00143: CALL       
+	00144: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual                               On
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:                                      On
+	 30:                      Y-Short X-Short On
+	 31:  YDual               Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1531,   293)  ->  Abs (  1531,   293)
+	  1: Rel (  -954,     0)  ->  Abs (   577,   293)
+	  2: Rel (  -192,     0)  ->  Abs (   385,   293)
+	  3: Rel (  -114,    67)  ->  Abs (   271,   360)
+	  4: Rel (  -143,    84)  ->  Abs (   128,   444)
+	  5: Rel (     0,   179)  ->  Abs (   128,   623)
+	  6: Rel (     0,    93)  ->  Abs (   128,   716)
+	  7: Rel (    42,    97)  ->  Abs (   170,   813)
+	  8: Rel (    15,    35)  ->  Abs (   185,   848)
+	  9: Rel (    57,    98)  ->  Abs (   242,   946)
+	 10: Rel (    30,   -19)  ->  Abs (   272,   927)
+	 11: Rel (   -22,   -46)  ->  Abs (   250,   881)
+	 12: Rel (   -21,   -46)  ->  Abs (   229,   835)
+	 13: Rel (   -29,   -71)  ->  Abs (   200,   764)
+	 14: Rel (     0,   -56)  ->  Abs (   200,   708)
+	 15: Rel (     0,  -118)  ->  Abs (   200,   590)
+	 16: Rel (   124,   -65)  ->  Abs (   324,   525)
+	 17: Rel (   111,   -58)  ->  Abs (   435,   467)
+	 18: Rel (   170,     0)  ->  Abs (   605,   467)
+	 19: Rel (   847,     0)  ->  Abs (  1452,   467)
+	 20: Rel (     0,    27)  ->  Abs (  1452,   494)
+	 21: Rel (     0,   112)  ->  Abs (  1452,   606)
+	 22: Rel (   -54,   141)  ->  Abs (  1398,   747)
+	 23: Rel (   -65,    50)  ->  Abs (  1333,   797)
+	 24: Rel (    77,   163)  ->  Abs (  1410,   960)
+	 25: Rel (    44,   -55)  ->  Abs (  1454,   905)
+	 26: Rel (     9,   -14)  ->  Abs (  1463,   891)
+	 27: Rel (    68,  -112)  ->  Abs (  1531,   779)
+	 28: Rel (     0,  -214)  ->  Abs (  1531,   565)
+	 29: Rel (  -573,  -515)  ->  Abs (   958,    50)
+	 30: Rel (   -78,  -145)  ->  Abs (   880,   -95)
+	 31: Rel (  -162,    84)  ->  Abs (   718,   -11)
+	 32: Rel (    74,   146)  ->  Abs (   792,   135)
+
+	Glyph 912: off = 0x00027E00, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-95
+	  xMax:			1531
+	  yMax:			960
+
+	     0: Flags:		0x0016
+		Glyf Index:	911
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 913: off = 0x00027E10, len = 160
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			-95
+	  xMax:			570
+	  yMax:			934
+
+	EndPoints
+	---------
+	  0:  12
+	  1:  16
+
+	  Length of Instructions:	93
+	00000: PUSHB[8]              6    52    12    17    52    15    13    14 
+	00009: PUSHW[1]            770 
+	00012: PUSHB[4]             16    16     1     7 
+	00017: PUSHW[7]            751     8   772     2   751     1   747 
+	00032: PUSHB[3]             14    16    13 
+	00036: PUSHW[1]            769 
+	00039: PUSHB[8]             15    15     1     8     8     7     7     3 
+	00048: PUSHW[6]            771     0   752    18     1   298 
+	00061: SCANCTRL   
+	00062: MDAP[rd]   
+	00063: SRP0       
+	00064: MIRP[srp0,nmd,rd,0] 
+	00065: MIRP[srp0,md,rd,1] 
+	00066: SHP[rp2,zp1] 
+	00067: MDAP[rd]   
+	00068: RTHG       
+	00069: IP         
+	00070: MDAP[rd]   
+	00071: RTG        
+	00072: SRP1       
+	00073: IP         
+	00074: MDAP[rd]   
+	00075: MIRP[nrp0,md,rd,1] 
+	00076: IP         
+	00077: IP         
+	00078: SVTCA[y-axis] 
+	00079: MIAP[rd+ci] 
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: MIAP[rd+ci] 
+	00082: MIRP[nrp0,md,rd,1] 
+	00083: SRP1       
+	00084: SHP[rp1,zp0] 
+	00085: MDAP[rd]   
+	00086: MIRP[nrp0,md,rd,1] 
+	00087: IP         
+	00088: IP         
+	00089: IUP[y]     
+	00090: IUP[x]     
+	00091: SVTCA[x-axis] 
+	00092: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:                              X-Short On
+	 14:                      Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   570,   293)  ->  Abs (   570,   293)
+	  1: Rel (  -570,     0)  ->  Abs (     0,   293)
+	  2: Rel (     0,   174)  ->  Abs (     0,   467)
+	  3: Rel (   497,     0)  ->  Abs (   497,   467)
+	  4: Rel (     0,   118)  ->  Abs (   497,   585)
+	  5: Rel (   -28,    62)  ->  Abs (   469,   647)
+	  6: Rel (   -19,    43)  ->  Abs (   450,   690)
+	  7: Rel (   -75,    81)  ->  Abs (   375,   771)
+	  8: Rel (    78,   163)  ->  Abs (   453,   934)
+	  9: Rel (    72,   -91)  ->  Abs (   525,   843)
+	 10: Rel (    18,   -51)  ->  Abs (   543,   792)
+	 11: Rel (    27,   -77)  ->  Abs (   570,   715)
+	 12: Rel (     0,  -178)  ->  Abs (   570,   537)
+	 13: Rel (  -102,  -487)  ->  Abs (   468,    50)
+	 14: Rel (   -78,  -145)  ->  Abs (   390,   -95)
+	 15: Rel (  -162,    84)  ->  Abs (   228,   -11)
+	 16: Rel (    74,   146)  ->  Abs (   302,   135)
+
+	Glyph 914: off = 0x00027EB0, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-95
+	  xMax:			570
+	  yMax:			934
+
+	     0: Flags:		0x0016
+		Glyf Index:	913
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 915: off = 0x00027EC0, len = 278
+	  numberOfContours:	4
+	  xMin:			0
+	  yMin:			266
+	  xMax:			556
+	  yMax:			1312
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  25
+	  3:  39
+
+	  Length of Instructions:	144
+	00000: PUSHB[3]              0     2     3 
+	00004: PUSHW[1]            770 
+	00007: PUSHB[5]              1     1     4     6     7 
+	00013: PUSHW[1]            770 
+	00016: NPUSHB      (15):    15     5     1     5     5    22    30    32    13    17 
+	                            52    20    30    37    22 
+	00033: PUSHW[1]            751 
+	00036: PUSHB[3]             21    21    37 
+	00040: PUSHW[3]            751    12   747 
+	00047: PUSHB[3]              1     3     0 
+	00051: PUSHW[1]            769 
+	00054: PUSHB[5]              2     2     5     7     6 
+	00060: PUSHW[1]            769 
+	00063: NPUSHB      (12):     4     4    34    30    26    21    20    16    22    22 
+	                            34    26 
+	00077: PUSHW[1]            765 
+	00080: PUSHB[4]              8     8    41    34 
+	00085: PUSHW[3]            765    16   296 
+	00092: SCANCTRL   
+	00093: MDAP[rd]   
+	00094: MIRP[nrp0,md,rd,1] 
+	00095: SRP1       
+	00096: SHP[rp1,zp0] 
+	00097: MDAP[rd]   
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: RTHG       
+	00100: SRP1       
+	00101: IP         
+	00102: MDAP[rd]   
+	00103: SRP2       
+	00104: IP         
+	00105: IP         
+	00106: SRP2       
+	00107: IP         
+	00108: SRP1       
+	00109: SHP[rp1,zp0] 
+	00110: RTG        
+	00111: MDAP[rd]   
+	00112: MIRP[srp0,md,rd,1] 
+	00113: IP         
+	00114: IP         
+	00115: SHP[rp1,zp0] 
+	00116: MDAP[rd]   
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: IP         
+	00119: IP         
+	00120: SVTCA[y-axis] 
+	00121: MIAP[rd+ci] 
+	00122: MIRP[srp0,md,rd,1] 
+	00123: SHP[rp2,zp1] 
+	00124: MDAP[rd]   
+	00125: MIRP[nrp0,md,rd,0] 
+	00126: SRP2       
+	00127: IP         
+	00128: IP         
+	00129: CALL       
+	00130: SRP1       
+	00131: SHP[rp1,zp0] 
+	00132: MDAP[rd]   
+	00133: DELTAP1    
+	00134: MIRP[nrp0,md,rd,1] 
+	00135: IP         
+	00136: IP         
+	00137: SHP[rp1,zp0] 
+	00138: MDAP[rd]   
+	00139: MIRP[nrp0,md,rd,1] 
+	00140: IP         
+	00141: IP         
+	00142: IUP[y]     
+	00143: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:                                      On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual               Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:                      Y-Short X-Short On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual               Y-Short X-Short On
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual               Y-Short X-Short On
+	 31:                      Y-Short X-Short Off
+	 32:                      Y-Short X-Short On
+	 33:                      Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   468,  1227)  ->  Abs (   468,  1227)
+	  1: Rel (   -78,  -144)  ->  Abs (   390,  1083)
+	  2: Rel (  -162,    86)  ->  Abs (   228,  1169)
+	  3: Rel (    75,   143)  ->  Abs (   303,  1312)
+	  4: Rel (   -65,  -175)  ->  Abs (   238,  1137)
+	  5: Rel (   -76,  -145)  ->  Abs (   162,   992)
+	  6: Rel (  -162,    84)  ->  Abs (     0,  1076)
+	  7: Rel (    74,   145)  ->  Abs (    74,  1221)
+	  8: Rel (   482,  -633)  ->  Abs (   556,   588)
+	  9: Rel (     0,  -141)  ->  Abs (   556,   447)
+	 10: Rel (   -46,   -71)  ->  Abs (   510,   376)
+	 11: Rel (   -71,  -110)  ->  Abs (   439,   266)
+	 12: Rel (  -189,     0)  ->  Abs (   250,   266)
+	 13: Rel (   -73,     0)  ->  Abs (   177,   266)
+	 14: Rel (   -48,    29)  ->  Abs (   129,   295)
+	 15: Rel (   -55,    33)  ->  Abs (    74,   328)
+	 16: Rel (     0,    61)  ->  Abs (    74,   389)
+	 17: Rel (     0,    70)  ->  Abs (    74,   459)
+	 18: Rel (    35,    92)  ->  Abs (   109,   551)
+	 19: Rel (    32,    78)  ->  Abs (   141,   629)
+	 20: Rel (    33,    79)  ->  Abs (   174,   708)
+	 21: Rel (   -15,     4)  ->  Abs (   159,   712)
+	 22: Rel (    61,   169)  ->  Abs (   220,   881)
+	 23: Rel (   181,   -95)  ->  Abs (   401,   786)
+	 24: Rel (    35,   -25)  ->  Abs (   436,   761)
+	 25: Rel (   120,   -84)  ->  Abs (   556,   677)
+	 26: Rel (   -87,  -167)  ->  Abs (   469,   510)
+	 27: Rel (     0,    38)  ->  Abs (   469,   548)
+	 28: Rel (  -110,    63)  ->  Abs (   359,   611)
+	 29: Rel (   -47,    27)  ->  Abs (   312,   638)
+	 30: Rel (   -54,    26)  ->  Abs (   258,   664)
+	 31: Rel (   -45,   -49)  ->  Abs (   213,   615)
+	 32: Rel (    -9,   -12)  ->  Abs (   204,   603)
+	 33: Rel (   -28,   -39)  ->  Abs (   176,   564)
+	 34: Rel (     0,   -35)  ->  Abs (   176,   529)
+	 35: Rel (     0,   -51)  ->  Abs (   176,   478)
+	 36: Rel (    57,   -57)  ->  Abs (   233,   421)
+	 37: Rel (    48,     0)  ->  Abs (   281,   421)
+	 38: Rel (    56,     0)  ->  Abs (   337,   421)
+	 39: Rel (   132,    63)  ->  Abs (   469,   484)
+
+	Glyph 916: off = 0x00027FD6, len = 338
+	  numberOfContours:	4
+	  xMin:			61
+	  yMin:			293
+	  xMax:			838
+	  yMax:			1573
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  38
+	  3:  47
+
+	  Length of Instructions:	180
+	00000: PUSHB[6]              4    11     1     0     2     3 
+	00007: PUSHW[1]            770 
+	00010: PUSHB[5]              1     1     4     6     7 
+	00016: PUSHW[1]            770 
+	00019: NPUSHB      (17):     5    64     9    11    52     5     5    29    39    43 
+	                            40    13    46    16    29    29    22 
+	00038: PUSHW[1]            778 
+	00041: PUSHB[3]             40    40    46 
+	00045: PUSHW[1]            751 
+	00048: PUSHB[6]            144    16     1    16    16    38 
+	00055: PUSHW[3]            751     9   747 
+	00062: PUSHB[3]              1     3     0 
+	00066: PUSHW[1]            769 
+	00069: PUSHB[5]              2     2     5     7     6 
+	00075: PUSHW[1]            769 
+	00078: NPUSHB      (12):    64     4     4    43    35     8    22    40    39    13 
+	                             4    25 
+	00092: PUSHW[1]            766 
+	00095: PUSHB[8]             32    15    29     1    29    29    43     8 
+	00104: PUSHW[6]            752    49    43   787    19   275 
+	00117: SCANCTRL   
+	00118: MDAP[rd]   
+	00119: MIRP[nrp0,md,rd,1] 
+	00120: SRP0       
+	00121: MIRP[nrp0,nmd,rd,1] 
+	00122: RTHG       
+	00123: SRP1       
+	00124: IP         
+	00125: MDAP[rd]   
+	00126: DELTAP1    
+	00127: SMD        
+	00128: MIRP[srp0,md,rd,1] 
+	00129: SLOOP      
+	00130: IP         
+	00131: SRP2       
+	00132: IP         
+	00133: RTG        
+	00134: SRP2       
+	00135: IP         
+	00136: MDAP[rd]   
+	00137: SMD        
+	00138: MIRP[srp0,md,rd,1] 
+	00139: IP         
+	00140: IP         
+	00141: SHP[rp1,zp0] 
+	00142: MDAP[rd]   
+	00143: MIRP[nrp0,md,rd,1] 
+	00144: IP         
+	00145: IP         
+	00146: SVTCA[y-axis] 
+	00147: MIAP[rd+ci] 
+	00148: MIRP[srp0,md,rd,1] 
+	00149: SHP[rp2,zp1] 
+	00150: MDAP[rd]   
+	00151: DELTAP1    
+	00152: MIRP[srp0,md,rd,1] 
+	00153: SHP[rp2,zp1] 
+	00154: MDAP[rd]   
+	00155: MIRP[srp0,md,rd,1] 
+	00156: SHP[rp2,zp1] 
+	00157: MDAP[rd]   
+	00158: SRP1       
+	00159: SRP2       
+	00160: IP         
+	00161: SRP1       
+	00162: IP         
+	00163: IP         
+	00164: SRP1       
+	00165: SHP[rp1,zp0] 
+	00166: MDAP[rd]   
+	00167: CALL       
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: IP         
+	00170: IP         
+	00171: SHP[rp1,zp0] 
+	00172: MDAP[rd]   
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: IP         
+	00175: IP         
+	00176: IUP[y]     
+	00177: IUP[x]     
+	00178: SVTCA[x-axis] 
+	00179: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:                                      On
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short On
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short X-Short On
+	 36:        XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short On
+	 39:                                      On
+	 40:  YDual               Y-Short X-Short On
+	 41:                      Y-Short X-Short Off
+	 42:                      Y-Short X-Short Off
+	 43:                      Y-Short X-Short On
+	 44:        XDual         Y-Short X-Short Off
+	 45:        XDual         Y-Short X-Short Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   585,  1488)  ->  Abs (   585,  1488)
+	  1: Rel (   -78,  -144)  ->  Abs (   507,  1344)
+	  2: Rel (  -162,    86)  ->  Abs (   345,  1430)
+	  3: Rel (    75,   143)  ->  Abs (   420,  1573)
+	  4: Rel (   -65,  -175)  ->  Abs (   355,  1398)
+	  5: Rel (   -76,  -145)  ->  Abs (   279,  1253)
+	  6: Rel (  -162,    84)  ->  Abs (   117,  1337)
+	  7: Rel (    74,   145)  ->  Abs (   191,  1482)
+	  8: Rel (   647, -1189)  ->  Abs (   838,   293)
+	  9: Rel (  -143,     0)  ->  Abs (   695,   293)
+	 10: Rel (   -72,     0)  ->  Abs (   623,   293)
+	 11: Rel (   -55,   123)  ->  Abs (   568,   416)
+	 12: Rel (   -41,    92)  ->  Abs (   527,   508)
+	 13: Rel (   -25,   145)  ->  Abs (   502,   653)
+	 14: Rel (   -30,   -56)  ->  Abs (   472,   597)
+	 15: Rel (   -92,   -62)  ->  Abs (   380,   535)
+	 16: Rel (   -51,     0)  ->  Abs (   329,   535)
+	 17: Rel (  -115,     0)  ->  Abs (   214,   535)
+	 18: Rel (  -153,    31)  ->  Abs (    61,   566)
+	 19: Rel (     0,    24)  ->  Abs (    61,   590)
+	 20: Rel (     0,    86)  ->  Abs (    61,   676)
+	 21: Rel (   224,   209)  ->  Abs (   285,   885)
+	 22: Rel (   168,    78)  ->  Abs (   453,   963)
+	 23: Rel (    -2,     8)  ->  Abs (   451,   971)
+	 24: Rel (   -13,    68)  ->  Abs (   438,  1039)
+	 25: Rel (     0,     8)  ->  Abs (   438,  1047)
+	 26: Rel (     0,    34)  ->  Abs (   438,  1081)
+	 27: Rel (    23,    42)  ->  Abs (   461,  1123)
+	 28: Rel (    19,    34)  ->  Abs (   480,  1157)
+	 29: Rel (    31,    36)  ->  Abs (   511,  1193)
+	 30: Rel (    10,   -62)  ->  Abs (   521,  1131)
+	 31: Rel (    21,  -116)  ->  Abs (   542,  1015)
+	 32: Rel (    14,   -62)  ->  Abs (   556,   953)
+	 33: Rel (    30,  -172)  ->  Abs (   586,   781)
+	 34: Rel (    25,  -142)  ->  Abs (   611,   639)
+	 35: Rel (    20,   -68)  ->  Abs (   631,   571)
+	 36: Rel (    31,  -104)  ->  Abs (   662,   467)
+	 37: Rel (    33,     0)  ->  Abs (   695,   467)
+	 38: Rel (   143,     0)  ->  Abs (   838,   467)
+	 39: Rel (  -349,   273)  ->  Abs (   489,   740)
+	 40: Rel (   -19,   109)  ->  Abs (   470,   849)
+	 41: Rel (   -87,   -31)  ->  Abs (   383,   818)
+	 42: Rel (  -100,   -67)  ->  Abs (   283,   751)
+	 43: Rel (   -34,   -55)  ->  Abs (   249,   696)
+	 44: Rel (    21,    -9)  ->  Abs (   270,   687)
+	 45: Rel (    56,   -10)  ->  Abs (   326,   677)
+	 46: Rel (    49,     0)  ->  Abs (   375,   677)
+	 47: Rel (    60,     0)  ->  Abs (   435,   677)
+
+	Glyph 917: off = 0x00028128, len = 304
+	  numberOfContours:	3
+	  xMin:			128
+	  yMin:			293
+	  xMax:			1531
+	  yMax:			1286
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  36
+
+	  Length of Instructions:	180
+	00000: PUSHW[2]             24   -64 
+	00005: NPUSHB      (11):    14    17    52    30    52    12    17    52     0     2 
+	                             3 
+	00018: PUSHW[1]            770 
+	00021: PUSHB[5]              1     1     4     6     7 
+	00027: PUSHW[1]            770 
+	00030: NPUSHB      (11):     5    64     9    11    52     5     5    32    18    26 
+	                            17 
+	00043: NPUSHW       (9):   772    31   751    32   772    26   751     9   747 
+	00063: PUSHB[3]              1     3     0 
+	00067: PUSHW[1]            769 
+	00070: PUSHB[5]              2     2     5     7     6 
+	00076: PUSHW[1]            769 
+	00079: PUSHB[8]              4     4    13    32    32    31    31    27 
+	00088: NPUSHW      (10):   771    64     8   752    38    18   763    32    17   -64 
+	00110: PUSHB[6]              9    11    52    17    17    22 
+	00117: PUSHW[3]            771    13   298 
+	00124: SCANCTRL   
+	00125: MDAP[rd]   
+	00126: MIRP[srp0,md,rd,1] 
+	00127: SHP[rp2,zp1] 
+	00128: RTHG       
+	00129: MDAP[rd]   
+	00130: CALL       
+	00131: SMD        
+	00132: MIRP[nrp0,md,rd,1] 
+	00133: RTG        
+	00134: SRP0       
+	00135: MIRP[srp0,nmd,rd,1] 
+	00136: SMD        
+	00137: MIRP[srp0,md,rd,1] 
+	00138: SHP[rp2,zp1] 
+	00139: MDAP[rd]   
+	00140: RTHG       
+	00141: IP         
+	00142: MDAP[rd]   
+	00143: RTG        
+	00144: SRP1       
+	00145: IP         
+	00146: MDAP[rd]   
+	00147: MIRP[srp0,md,rd,1] 
+	00148: IP         
+	00149: IP         
+	00150: SHP[rp1,zp0] 
+	00151: MDAP[rd]   
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: IP         
+	00154: IP         
+	00155: SVTCA[y-axis] 
+	00156: MIAP[rd+ci] 
+	00157: MIRP[nrp0,md,rd,1] 
+	00158: MIAP[rd+ci] 
+	00159: MIRP[nrp0,md,rd,1] 
+	00160: MIAP[rd+ci] 
+	00161: SRP2       
+	00162: IP         
+	00163: SRP1       
+	00164: SHP[rp1,zp0] 
+	00165: MDAP[rd]   
+	00166: CALL       
+	00167: MIRP[nrp0,md,rd,1] 
+	00168: IP         
+	00169: IP         
+	00170: SHP[rp1,zp0] 
+	00171: MDAP[rd]   
+	00172: MIRP[nrp0,md,rd,1] 
+	00173: IP         
+	00174: IP         
+	00175: IUP[y]     
+	00176: IUP[x]     
+	00177: SVTCA[x-axis] 
+	00178: CALL       
+	00179: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:                                      On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:        XDual         Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual                               On
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual               Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short X-Short On
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1061,  1201)  ->  Abs (  1061,  1201)
+	  1: Rel (   -78,  -144)  ->  Abs (   983,  1057)
+	  2: Rel (  -162,    86)  ->  Abs (   821,  1143)
+	  3: Rel (    75,   143)  ->  Abs (   896,  1286)
+	  4: Rel (   -65,  -175)  ->  Abs (   831,  1111)
+	  5: Rel (   -76,  -145)  ->  Abs (   755,   966)
+	  6: Rel (  -162,    84)  ->  Abs (   593,  1050)
+	  7: Rel (    74,   145)  ->  Abs (   667,  1195)
+	  8: Rel (   864,  -902)  ->  Abs (  1531,   293)
+	  9: Rel (  -954,     0)  ->  Abs (   577,   293)
+	 10: Rel (  -192,     0)  ->  Abs (   385,   293)
+	 11: Rel (  -114,    67)  ->  Abs (   271,   360)
+	 12: Rel (  -143,    84)  ->  Abs (   128,   444)
+	 13: Rel (     0,   179)  ->  Abs (   128,   623)
+	 14: Rel (     0,    93)  ->  Abs (   128,   716)
+	 15: Rel (    42,    97)  ->  Abs (   170,   813)
+	 16: Rel (    15,    35)  ->  Abs (   185,   848)
+	 17: Rel (    57,    98)  ->  Abs (   242,   946)
+	 18: Rel (    30,   -19)  ->  Abs (   272,   927)
+	 19: Rel (   -22,   -46)  ->  Abs (   250,   881)
+	 20: Rel (   -21,   -46)  ->  Abs (   229,   835)
+	 21: Rel (   -29,   -71)  ->  Abs (   200,   764)
+	 22: Rel (     0,   -56)  ->  Abs (   200,   708)
+	 23: Rel (     0,  -118)  ->  Abs (   200,   590)
+	 24: Rel (   124,   -65)  ->  Abs (   324,   525)
+	 25: Rel (   111,   -58)  ->  Abs (   435,   467)
+	 26: Rel (   170,     0)  ->  Abs (   605,   467)
+	 27: Rel (   847,     0)  ->  Abs (  1452,   467)
+	 28: Rel (     0,    27)  ->  Abs (  1452,   494)
+	 29: Rel (     0,   112)  ->  Abs (  1452,   606)
+	 30: Rel (   -54,   141)  ->  Abs (  1398,   747)
+	 31: Rel (   -65,    50)  ->  Abs (  1333,   797)
+	 32: Rel (    77,   163)  ->  Abs (  1410,   960)
+	 33: Rel (    44,   -55)  ->  Abs (  1454,   905)
+	 34: Rel (     9,   -14)  ->  Abs (  1463,   891)
+	 35: Rel (    68,  -112)  ->  Abs (  1531,   779)
+	 36: Rel (     0,  -214)  ->  Abs (  1531,   565)
+
+	Glyph 918: off = 0x00028258, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			293
+	  xMax:			1531
+	  yMax:			1286
+
+	     0: Flags:		0x0016
+		Glyf Index:	917
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 919: off = 0x00028268, len = 206
+	  numberOfContours:	3
+	  xMin:			0
+	  yMin:			293
+	  xMax:			570
+	  yMax:			1366
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  20
+
+	  Length of Instructions:	123
+	00000: PUSHB[8]             14    52    12    17    52     0     2     3 
+	00009: PUSHW[1]            770 
+	00012: PUSHB[5]              1     1     4     6     7 
+	00018: PUSHW[1]            770 
+	00021: PUSHB[6]             15     5     1     5     5    15 
+	00028: PUSHW[7]            751    16   772    10   751     9   747 
+	00043: PUSHB[3]              1     3     0 
+	00047: PUSHW[1]            769 
+	00050: PUSHB[5]              2     2     5     7     6 
+	00056: PUSHW[1]            769 
+	00059: PUSHB[8]              4     4     9    16    16    15    15    11 
+	00068: PUSHW[6]            771     8   752    22     9   298 
+	00081: SCANCTRL   
+	00082: MDAP[rd]   
+	00083: SRP0       
+	00084: MIRP[srp0,nmd,rd,1] 
+	00085: MIRP[srp0,md,rd,1] 
+	00086: SHP[rp2,zp1] 
+	00087: MDAP[rd]   
+	00088: RTHG       
+	00089: IP         
+	00090: MDAP[rd]   
+	00091: RTG        
+	00092: SRP1       
+	00093: IP         
+	00094: MDAP[rd]   
+	00095: MIRP[srp0,md,rd,1] 
+	00096: IP         
+	00097: IP         
+	00098: SHP[rp1,zp0] 
+	00099: MDAP[rd]   
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: IP         
+	00102: IP         
+	00103: SVTCA[y-axis] 
+	00104: MIAP[rd+ci] 
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: MIAP[rd+ci] 
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: SHP[rp1,zp0] 
+	00109: MDAP[rd]   
+	00110: DELTAP1    
+	00111: MIRP[nrp0,md,rd,1] 
+	00112: IP         
+	00113: IP         
+	00114: SHP[rp1,zp0] 
+	00115: MDAP[rd]   
+	00116: MIRP[nrp0,md,rd,1] 
+	00117: IP         
+	00118: IP         
+	00119: IUP[y]     
+	00120: IUP[x]     
+	00121: SVTCA[x-axis] 
+	00122: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:                                      On
+	  9:  YDual                               On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual                               On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   505,  1281)  ->  Abs (   505,  1281)
+	  1: Rel (   -78,  -144)  ->  Abs (   427,  1137)
+	  2: Rel (  -162,    86)  ->  Abs (   265,  1223)
+	  3: Rel (    75,   143)  ->  Abs (   340,  1366)
+	  4: Rel (   -65,  -175)  ->  Abs (   275,  1191)
+	  5: Rel (   -76,  -145)  ->  Abs (   199,  1046)
+	  6: Rel (  -162,    84)  ->  Abs (    37,  1130)
+	  7: Rel (    74,   145)  ->  Abs (   111,  1275)
+	  8: Rel (   459,  -982)  ->  Abs (   570,   293)
+	  9: Rel (  -570,     0)  ->  Abs (     0,   293)
+	 10: Rel (     0,   174)  ->  Abs (     0,   467)
+	 11: Rel (   497,     0)  ->  Abs (   497,   467)
+	 12: Rel (     0,   118)  ->  Abs (   497,   585)
+	 13: Rel (   -28,    62)  ->  Abs (   469,   647)
+	 14: Rel (   -19,    43)  ->  Abs (   450,   690)
+	 15: Rel (   -75,    81)  ->  Abs (   375,   771)
+	 16: Rel (    78,   163)  ->  Abs (   453,   934)
+	 17: Rel (    72,   -91)  ->  Abs (   525,   843)
+	 18: Rel (    18,   -51)  ->  Abs (   543,   792)
+	 19: Rel (    27,   -77)  ->  Abs (   570,   715)
+	 20: Rel (     0,  -178)  ->  Abs (   570,   537)
+
+	Glyph 920: off = 0x00028336, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			293
+	  xMax:			570
+	  yMax:			1366
+
+	     0: Flags:		0x0016
+		Glyf Index:	919
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 921: off = 0x00028346, len = 374
+	  numberOfContours:	4
+	  xMin:			128
+	  yMin:			293
+	  xMax:			1531
+	  yMax:			1465
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  11
+	  3:  40
+
+	  Length of Instructions:	234
+	00000: NPUSHB      (11):    11    16    18    21    52     5    16    18    21    52 
+	                             1 
+	00013: PUSHW[1]            -16 
+	00016: PUSHB[4]             18    21    52    28 
+	00021: PUSHW[1]            -64 
+	00024: NPUSHB      (11):    14    17    52    34    52    12    17    52     0     2 
+	                             3 
+	00037: PUSHW[1]            770 
+	00040: PUSHB[6]              1     1    11     4     6     7 
+	00047: PUSHW[1]            770 
+	00050: PUSHB[5]              5     5     8    10    11 
+	00056: PUSHW[1]            770 
+	00059: NPUSHB      (11):     9    64     9    11    52     9     9    36    22    30 
+	                            21 
+	00072: NPUSHW       (9):   772    35   751    36   772    30   751    13   747 
+	00092: PUSHB[3]              1     3     2 
+	00096: PUSHW[1]            769 
+	00099: PUSHB[6]              0     0     8     5     7     4 
+	00106: PUSHW[1]            769 
+	00109: PUSHB[5]              6     6     9    11    10 
+	00115: PUSHW[1]            769 
+	00118: PUSHB[8]              8     8    17    36    36    35    35    31 
+	00127: NPUSHW      (10):   771    64    12   752    42    22   763    32    21   -64 
+	00149: PUSHB[6]              9    11    52    21    21    26 
+	00156: PUSHW[3]            771    17   298 
+	00163: SCANCTRL   
+	00164: MDAP[rd]   
+	00165: MIRP[srp0,md,rd,1] 
+	00166: SHP[rp2,zp1] 
+	00167: RTHG       
+	00168: MDAP[rd]   
+	00169: CALL       
+	00170: SMD        
+	00171: MIRP[nrp0,md,rd,1] 
+	00172: RTG        
+	00173: SRP0       
+	00174: MIRP[srp0,nmd,rd,1] 
+	00175: SMD        
+	00176: MIRP[srp0,md,rd,1] 
+	00177: SHP[rp2,zp1] 
+	00178: MDAP[rd]   
+	00179: RTHG       
+	00180: IP         
+	00181: MDAP[rd]   
+	00182: RTG        
+	00183: SRP1       
+	00184: IP         
+	00185: MDAP[rd]   
+	00186: MIRP[srp0,md,rd,1] 
+	00187: IP         
+	00188: IP         
+	00189: SHP[rp1,zp0] 
+	00190: MDAP[rd]   
+	00191: MIRP[nrp0,md,rd,1] 
+	00192: IP         
+	00193: IP         
+	00194: SRP1       
+	00195: SHP[rp1,zp0] 
+	00196: MDAP[rd]   
+	00197: MIRP[srp0,md,rd,1] 
+	00198: IP         
+	00199: IP         
+	00200: SVTCA[y-axis] 
+	00201: MIAP[rd+ci] 
+	00202: MIRP[nrp0,md,rd,1] 
+	00203: MIAP[rd+ci] 
+	00204: MIRP[nrp0,md,rd,1] 
+	00205: MIAP[rd+ci] 
+	00206: SRP2       
+	00207: IP         
+	00208: SRP1       
+	00209: SHP[rp1,zp0] 
+	00210: MDAP[rd]   
+	00211: CALL       
+	00212: MIRP[nrp0,md,rd,1] 
+	00213: IP         
+	00214: IP         
+	00215: SHP[rp1,zp0] 
+	00216: MDAP[rd]   
+	00217: MIRP[nrp0,md,rd,1] 
+	00218: IP         
+	00219: IP         
+	00220: SRP1       
+	00221: SHP[rp1,zp0] 
+	00222: MDAP[rd]   
+	00223: MIRP[nrp0,md,rd,1] 
+	00224: IP         
+	00225: IP         
+	00226: IUP[y]     
+	00227: IUP[x]     
+	00228: SVTCA[x-axis] 
+	00229: CALL       
+	00230: CALL       
+	00231: CALL       
+	00232: CALL       
+	00233: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:                      Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:                      Y-Short X-Short On
+	  9:                      Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:                                      On
+	 13:  YDual                               On
+	 14:  YDual                       X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short On
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:        XDual         Y-Short X-Short On
+	 29:        XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual                               On
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual               Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short X-Short On
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   864,  1379)  ->  Abs (   864,  1379)
+	  1: Rel (   -77,  -146)  ->  Abs (   787,  1233)
+	  2: Rel (  -160,    86)  ->  Abs (   627,  1319)
+	  3: Rel (    74,   146)  ->  Abs (   701,  1465)
+	  4: Rel (   360,  -264)  ->  Abs (  1061,  1201)
+	  5: Rel (   -78,  -144)  ->  Abs (   983,  1057)
+	  6: Rel (  -162,    86)  ->  Abs (   821,  1143)
+	  7: Rel (    75,   143)  ->  Abs (   896,  1286)
+	  8: Rel (   -65,  -175)  ->  Abs (   831,  1111)
+	  9: Rel (   -76,  -145)  ->  Abs (   755,   966)
+	 10: Rel (  -162,    84)  ->  Abs (   593,  1050)
+	 11: Rel (    74,   145)  ->  Abs (   667,  1195)
+	 12: Rel (   864,  -902)  ->  Abs (  1531,   293)
+	 13: Rel (  -954,     0)  ->  Abs (   577,   293)
+	 14: Rel (  -192,     0)  ->  Abs (   385,   293)
+	 15: Rel (  -114,    67)  ->  Abs (   271,   360)
+	 16: Rel (  -143,    84)  ->  Abs (   128,   444)
+	 17: Rel (     0,   179)  ->  Abs (   128,   623)
+	 18: Rel (     0,    93)  ->  Abs (   128,   716)
+	 19: Rel (    42,    97)  ->  Abs (   170,   813)
+	 20: Rel (    15,    35)  ->  Abs (   185,   848)
+	 21: Rel (    57,    98)  ->  Abs (   242,   946)
+	 22: Rel (    30,   -19)  ->  Abs (   272,   927)
+	 23: Rel (   -22,   -46)  ->  Abs (   250,   881)
+	 24: Rel (   -21,   -46)  ->  Abs (   229,   835)
+	 25: Rel (   -29,   -71)  ->  Abs (   200,   764)
+	 26: Rel (     0,   -56)  ->  Abs (   200,   708)
+	 27: Rel (     0,  -118)  ->  Abs (   200,   590)
+	 28: Rel (   124,   -65)  ->  Abs (   324,   525)
+	 29: Rel (   111,   -58)  ->  Abs (   435,   467)
+	 30: Rel (   170,     0)  ->  Abs (   605,   467)
+	 31: Rel (   847,     0)  ->  Abs (  1452,   467)
+	 32: Rel (     0,    27)  ->  Abs (  1452,   494)
+	 33: Rel (     0,   112)  ->  Abs (  1452,   606)
+	 34: Rel (   -54,   141)  ->  Abs (  1398,   747)
+	 35: Rel (   -65,    50)  ->  Abs (  1333,   797)
+	 36: Rel (    77,   163)  ->  Abs (  1410,   960)
+	 37: Rel (    44,   -55)  ->  Abs (  1454,   905)
+	 38: Rel (     9,   -14)  ->  Abs (  1463,   891)
+	 39: Rel (    68,  -112)  ->  Abs (  1531,   779)
+	 40: Rel (     0,  -214)  ->  Abs (  1531,   565)
+
+	Glyph 922: off = 0x000284BC, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			293
+	  xMax:			1531
+	  yMax:			1465
+
+	     0: Flags:		0x0016
+		Glyf Index:	921
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 923: off = 0x000284CC, len = 276
+	  numberOfContours:	4
+	  xMin:			0
+	  yMin:			293
+	  xMax:			570
+	  yMax:			1545
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  11
+	  3:  24
+
+	  Length of Instructions:	178
+	00000: NPUSHB      (11):    11    16    18    21    52     5    16    18    21    52 
+	                             1 
+	00013: PUSHW[1]            -16 
+	00016: NPUSHB      (11):    18    21    52    18    52    12    17    52     0     2 
+	                             3 
+	00029: PUSHW[1]            770 
+	00032: PUSHB[6]              1     1    11     4     6     7 
+	00039: PUSHW[1]            770 
+	00042: PUSHB[5]              5     5     8    10    11 
+	00048: PUSHW[1]            770 
+	00051: PUSHB[6]             15     9     1     9     9    19 
+	00058: PUSHW[7]            751    20   772    14   751    13   747 
+	00073: PUSHB[3]              1     3     2 
+	00077: PUSHW[1]            769 
+	00080: PUSHB[6]              0     0     8     5     7     4 
+	00087: PUSHW[1]            769 
+	00090: PUSHB[5]              6     6     9    11    10 
+	00096: PUSHW[1]            769 
+	00099: PUSHB[8]              8     8    13    20    20    19    19    15 
+	00108: PUSHW[6]            771    12   752    26    13   298 
+	00121: SCANCTRL   
+	00122: MDAP[rd]   
+	00123: SRP0       
+	00124: MIRP[srp0,nmd,rd,1] 
+	00125: MIRP[srp0,md,rd,1] 
+	00126: SHP[rp2,zp1] 
+	00127: MDAP[rd]   
+	00128: RTHG       
+	00129: IP         
+	00130: MDAP[rd]   
+	00131: RTG        
+	00132: SRP1       
+	00133: IP         
+	00134: MDAP[rd]   
+	00135: MIRP[srp0,md,rd,1] 
+	00136: IP         
+	00137: IP         
+	00138: SHP[rp1,zp0] 
+	00139: MDAP[rd]   
+	00140: MIRP[nrp0,md,rd,1] 
+	00141: IP         
+	00142: IP         
+	00143: SRP1       
+	00144: SHP[rp1,zp0] 
+	00145: MDAP[rd]   
+	00146: MIRP[srp0,md,rd,1] 
+	00147: IP         
+	00148: IP         
+	00149: SVTCA[y-axis] 
+	00150: MIAP[rd+ci] 
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: MIAP[rd+ci] 
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: SHP[rp1,zp0] 
+	00155: MDAP[rd]   
+	00156: DELTAP1    
+	00157: MIRP[nrp0,md,rd,1] 
+	00158: IP         
+	00159: IP         
+	00160: SHP[rp1,zp0] 
+	00161: MDAP[rd]   
+	00162: MIRP[nrp0,md,rd,1] 
+	00163: IP         
+	00164: IP         
+	00165: SRP1       
+	00166: SHP[rp1,zp0] 
+	00167: MDAP[rd]   
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: IP         
+	00170: IP         
+	00171: IUP[y]     
+	00172: IUP[x]     
+	00173: SVTCA[x-axis] 
+	00174: CALL       
+	00175: CALL       
+	00176: CALL       
+	00177: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:                      Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:                      Y-Short X-Short On
+	  9:                      Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:                                      On
+	 13:  YDual                               On
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual                               On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual               Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   308,  1459)  ->  Abs (   308,  1459)
+	  1: Rel (   -77,  -146)  ->  Abs (   231,  1313)
+	  2: Rel (  -160,    86)  ->  Abs (    71,  1399)
+	  3: Rel (    74,   146)  ->  Abs (   145,  1545)
+	  4: Rel (   360,  -264)  ->  Abs (   505,  1281)
+	  5: Rel (   -78,  -144)  ->  Abs (   427,  1137)
+	  6: Rel (  -162,    86)  ->  Abs (   265,  1223)
+	  7: Rel (    75,   143)  ->  Abs (   340,  1366)
+	  8: Rel (   -65,  -175)  ->  Abs (   275,  1191)
+	  9: Rel (   -76,  -145)  ->  Abs (   199,  1046)
+	 10: Rel (  -162,    84)  ->  Abs (    37,  1130)
+	 11: Rel (    74,   145)  ->  Abs (   111,  1275)
+	 12: Rel (   459,  -982)  ->  Abs (   570,   293)
+	 13: Rel (  -570,     0)  ->  Abs (     0,   293)
+	 14: Rel (     0,   174)  ->  Abs (     0,   467)
+	 15: Rel (   497,     0)  ->  Abs (   497,   467)
+	 16: Rel (     0,   118)  ->  Abs (   497,   585)
+	 17: Rel (   -28,    62)  ->  Abs (   469,   647)
+	 18: Rel (   -19,    43)  ->  Abs (   450,   690)
+	 19: Rel (   -75,    81)  ->  Abs (   375,   771)
+	 20: Rel (    78,   163)  ->  Abs (   453,   934)
+	 21: Rel (    72,   -91)  ->  Abs (   525,   843)
+	 22: Rel (    18,   -51)  ->  Abs (   543,   792)
+	 23: Rel (    27,   -77)  ->  Abs (   570,   715)
+	 24: Rel (     0,  -178)  ->  Abs (   570,   537)
+
+	Glyph 924: off = 0x000285E0, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			293
+	  xMax:			570
+	  yMax:			1545
+
+	     0: Flags:		0x0016
+		Glyf Index:	923
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 925: off = 0x000285F0, len = 308
+	  numberOfContours:	2
+	  xMin:			54
+	  yMin:			-434
+	  xMax:			1056
+	  yMax:			885
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  48
+
+	  Length of Instructions:	156
+	00000: NPUSHB      (14):    45    32    10    11    52    28    42    10    11    52 
+	                           121    46     1    31 
+	00016: PUSHW[1]            -74 
+	00019: PUSHB[6]              9    17    52     0     2     1 
+	00026: PUSHW[3]            770     3   -64 
+	00033: NPUSHB      (10):     9    10    52     3     3    23    11     7    35    34 
+	00045: PUSHW[3]            751    36   774 
+	00052: PUSHB[5]             19    22     4    23    15 
+	00058: PUSHW[1]            751 
+	00061: PUSHB[3]              7     7    22 
+	00065: PUSHW[3]            751    23   775 
+	00072: PUSHB[3]              1     3     2 
+	00076: PUSHW[1]            769 
+	00079: NPUSHB      (18):     0     0   143     4     1     4    22    34    36    35 
+	                            35    23    22    22    50    11    11    29 
+	00099: PUSHW[3]            771    43   298 
+	00106: SCANCTRL   
+	00107: MDAP[rd]   
+	00108: MIRP[nrp0,md,rd,1] 
+	00109: SHP[rp1,zp0] 
+	00110: MDAP[rd]   
+	00111: SRP1       
+	00112: SHP[rp1,zp0] 
+	00113: MDAP[rd]   
+	00114: SHP[rp1,zp0] 
+	00115: SHP[rp1,zp0] 
+	00116: MDAP[rd]   
+	00117: IP         
+	00118: IP         
+	00119: SRP1       
+	00120: IP         
+	00121: DELTAP1    
+	00122: IP         
+	00123: MDAP[rd]   
+	00124: MIRP[srp0,md,rd,1] 
+	00125: IP         
+	00126: IP         
+	00127: SVTCA[y-axis] 
+	00128: MIAP[rd+ci] 
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: IP         
+	00131: MDAP[rd]   
+	00132: MIRP[nrp0,md,rd,1] 
+	00133: SRP2       
+	00134: IP         
+	00135: SRP1       
+	00136: IP         
+	00137: MIAP[rd+ci] 
+	00138: MIRP[nrp0,md,rd,1] 
+	00139: IP         
+	00140: SRP1       
+	00141: IP         
+	00142: SRP1       
+	00143: IP         
+	00144: MDAP[rd]   
+	00145: CALL       
+	00146: MIRP[srp0,md,rd,1] 
+	00147: IP         
+	00148: IP         
+	00149: IUP[y]     
+	00150: IUP[x]     
+	00151: SVTCA[x-axis] 
+	00152: CALL       
+	00153: DELTAP1    
+	00154: CALL       
+	00155: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                              X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short On
+	 18:        XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:                      Y-Short X-Short On
+	 24:                      Y-Short X-Short Off
+	 25:                      Y-Short X-Short On
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short On
+	 28:                      Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:        XDual         Y-Short X-Short On
+	 32:        XDual         Y-Short X-Short Off
+	 33:  YDual                               On
+	 34:  YDual XDual                 X-Short On
+	 35:        XDual         Y-Short X-Short On
+	 36:                      Y-Short X-Short On
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual               Y-Short X-Short On
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual               Y-Short X-Short On
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual XDual         Y-Short X-Short On
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short X-Short On
+	 48:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   774,   263)  ->  Abs (   774,   263)
+	  1: Rel (   -85,  -151)  ->  Abs (   689,   112)
+	  2: Rel (  -157,    90)  ->  Abs (   532,   202)
+	  3: Rel (    77,   145)  ->  Abs (   609,   347)
+	  4: Rel (  -125,   349)  ->  Abs (   484,   696)
+	  5: Rel (   -20,     0)  ->  Abs (   464,   696)
+	  6: Rel (   -76,     6)  ->  Abs (   388,   702)
+	  7: Rel (   -19,     0)  ->  Abs (   369,   702)
+	  8: Rel (   -64,     0)  ->  Abs (   305,   702)
+	  9: Rel (   -80,   -12)  ->  Abs (   225,   690)
+	 10: Rel (   -52,    -8)  ->  Abs (   173,   682)
+	 11: Rel (   -90,   -18)  ->  Abs (    83,   664)
+	 12: Rel (    40,   113)  ->  Abs (   123,   777)
+	 13: Rel (    35,    34)  ->  Abs (   158,   811)
+	 14: Rel (    75,    74)  ->  Abs (   233,   885)
+	 15: Rel (   177,     0)  ->  Abs (   410,   885)
+	 16: Rel (    66,     0)  ->  Abs (   476,   885)
+	 17: Rel (   204,   -28)  ->  Abs (   680,   857)
+	 18: Rel (    95,   -13)  ->  Abs (   775,   844)
+	 19: Rel (    69,     0)  ->  Abs (   844,   844)
+	 20: Rel (    29,     0)  ->  Abs (   873,   844)
+	 21: Rel (   112,    14)  ->  Abs (   985,   858)
+	 22: Rel (    28,     0)  ->  Abs (  1013,   858)
+	 23: Rel (   -37,  -169)  ->  Abs (   976,   689)
+	 24: Rel (  -211,   -36)  ->  Abs (   765,   653)
+	 25: Rel (  -148,   -46)  ->  Abs (   617,   607)
+	 26: Rel (  -220,   -68)  ->  Abs (   397,   539)
+	 27: Rel (  -123,   -98)  ->  Abs (   274,   441)
+	 28: Rel (  -153,  -122)  ->  Abs (   121,   319)
+	 29: Rel (     0,  -166)  ->  Abs (   121,   153)
+	 30: Rel (     0,  -215)  ->  Abs (   121,   -62)
+	 31: Rel (   224,  -108)  ->  Abs (   345,  -170)
+	 32: Rel (   195,   -94)  ->  Abs (   540,  -264)
+	 33: Rel (   326,     0)  ->  Abs (   866,  -264)
+	 34: Rel (   184,     0)  ->  Abs (  1050,  -264)
+	 35: Rel (     6,   -11)  ->  Abs (  1056,  -275)
+	 36: Rel (  -226,  -159)  ->  Abs (   830,  -434)
+	 37: Rel (   -58,     0)  ->  Abs (   772,  -434)
+	 38: Rel (  -216,     0)  ->  Abs (   556,  -434)
+	 39: Rel (  -143,    40)  ->  Abs (   413,  -394)
+	 40: Rel (  -171,    48)  ->  Abs (   242,  -346)
+	 41: Rel (   -88,   106)  ->  Abs (   154,  -240)
+	 42: Rel (  -100,   121)  ->  Abs (    54,  -119)
+	 43: Rel (     0,   199)  ->  Abs (    54,    80)
+	 44: Rel (     0,   168)  ->  Abs (    54,   248)
+	 45: Rel (    79,   134)  ->  Abs (   133,   382)
+	 46: Rel (    60,   102)  ->  Abs (   193,   484)
+	 47: Rel (   115,    91)  ->  Abs (   308,   575)
+	 48: Rel (    35,    28)  ->  Abs (   343,   603)
+
+	Glyph 926: off = 0x00028724, len = 406
+	  numberOfContours:	2
+	  xMin:			54
+	  yMin:			-434
+	  xMax:			1147
+	  yMax:			873
+
+	EndPoints
+	---------
+	  0:  62
+	  1:  66
+
+	  Length of Instructions:	204
+	00000: NPUSHB      (14):    30    32    10    11    52    13    42    10    11    52 
+	                           121    31     1    16 
+	00016: PUSHW[1]            -94 
+	00019: PUSHB[6]              9    17    52    65    63    64 
+	00026: PUSHW[3]            770    66   -64 
+	00033: NPUSHB      (15):    11    19    52    66    66     1    19    56     8    52 
+	                            61    41    37    20    19 
+	00050: PUSHW[3]            751    21   774 
+	00057: PUSHB[5]             48    51    34    52    45 
+	00063: PUSHW[1]            751 
+	00066: PUSHB[3]             37    37    51 
+	00070: PUSHW[7]            751    52   775    61   751     1   747 
+	00085: PUSHB[3]             64    66    65 
+	00089: PUSHW[1]            769 
+	00092: PUSHB[8]             63    63     4    14    56    51     8     4 
+	00101: PUSHW[1]            771 
+	00104: NPUSHB      (16):    57    57   143    34     1    34    51    19    21    14 
+	                            20    20    52    51    51     0 
+	00122: PUSHW[1]            752 
+	00125: PUSHB[4]             68    41    41    14 
+	00130: PUSHW[3]            771    28   298 
+	00137: SCANCTRL   
+	00138: MDAP[rd]   
+	00139: MIRP[nrp0,md,rd,1] 
+	00140: SHP[rp1,zp0] 
+	00141: MDAP[rd]   
+	00142: SRP0       
+	00143: MIRP[nrp0,nmd,rd,1] 
+	00144: SHP[rp1,zp0] 
+	00145: MDAP[rd]   
+	00146: SHP[rp1,zp0] 
+	00147: SHP[rp1,zp0] 
+	00148: MDAP[rd]   
+	00149: SRP2       
+	00150: IP         
+	00151: IP         
+	00152: SRP1       
+	00153: IP         
+	00154: DELTAP1    
+	00155: IP         
+	00156: MDAP[rd]   
+	00157: MIRP[srp0,md,rd,1] 
+	00158: IP         
+	00159: SRP2       
+	00160: IP         
+	00161: SRP1       
+	00162: SRP2       
+	00163: IP         
+	00164: MDAP[rd]   
+	00165: MIRP[srp0,md,rd,1] 
+	00166: IP         
+	00167: IP         
+	00168: SVTCA[y-axis] 
+	00169: MIAP[rd+ci] 
+	00170: MIRP[nrp0,md,rd,1] 
+	00171: MIAP[rd+ci] 
+	00172: MIRP[nrp0,md,rd,1] 
+	00173: IP         
+	00174: MDAP[rd]   
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: SRP2       
+	00177: IP         
+	00178: SRP1       
+	00179: IP         
+	00180: MIAP[rd+ci] 
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: IP         
+	00183: SRP1       
+	00184: IP         
+	00185: SRP1       
+	00186: SRP2       
+	00187: IP         
+	00188: IP         
+	00189: SRP1       
+	00190: SRP2       
+	00191: IP         
+	00192: MDAP[rd]   
+	00193: CALL       
+	00194: MIRP[nrp0,md,rd,1] 
+	00195: IP         
+	00196: IP         
+	00197: IUP[y]     
+	00198: IUP[x]     
+	00199: SVTCA[x-axis] 
+	00200: CALL       
+	00201: DELTAP1    
+	00202: CALL       
+	00203: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual                               On
+	 19:  YDual XDual                 X-Short On
+	 20:        XDual         Y-Short X-Short On
+	 21:                      Y-Short X-Short On
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual               Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:                      Y-Short X-Short On
+	 40:                      Y-Short X-Short Off
+	 41:                      Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:        XDual         Y-Short X-Short Off
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual                 X-Short Off
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:                      Y-Short X-Short On
+	 53:                      Y-Short X-Short Off
+	 54:                      Y-Short X-Short On
+	 55:                      Y-Short X-Short Off
+	 56:                      Y-Short X-Short On
+	 57:                      Y-Short X-Short On
+	 58:        XDual         Y-Short         Off
+	 59:        XDual         Y-Short X-Short On
+	 60:        XDual         Y-Short X-Short Off
+	 61:  YDual XDual                 X-Short On
+	 62:  YDual XDual                 X-Short On
+	 63:                                      On
+	 64:                      Y-Short X-Short On
+	 65:  YDual               Y-Short X-Short On
+	 66:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1147,   293)  ->  Abs (  1147,   293)
+	  1: Rel (  -207,     0)  ->  Abs (   940,   293)
+	  2: Rel (  -121,     0)  ->  Abs (   819,   293)
+	  3: Rel (  -102,    90)  ->  Abs (   717,   383)
+	  4: Rel (     0,   104)  ->  Abs (   717,   487)
+	  5: Rel (     0,    39)  ->  Abs (   717,   526)
+	  6: Rel (    10,    58)  ->  Abs (   727,   584)
+	  7: Rel (     4,    22)  ->  Abs (   731,   606)
+	  8: Rel (     7,    36)  ->  Abs (   738,   642)
+	  9: Rel (  -171,   -52)  ->  Abs (   567,   590)
+	 10: Rel (   -87,   -37)  ->  Abs (   480,   553)
+	 11: Rel (  -160,   -68)  ->  Abs (   320,   485)
+	 12: Rel (   -88,   -86)  ->  Abs (   232,   399)
+	 13: Rel (  -111,  -108)  ->  Abs (   121,   291)
+	 14: Rel (     0,  -138)  ->  Abs (   121,   153)
+	 15: Rel (     0,  -215)  ->  Abs (   121,   -62)
+	 16: Rel (   224,  -108)  ->  Abs (   345,  -170)
+	 17: Rel (   195,   -94)  ->  Abs (   540,  -264)
+	 18: Rel (   326,     0)  ->  Abs (   866,  -264)
+	 19: Rel (   184,     0)  ->  Abs (  1050,  -264)
+	 20: Rel (     6,   -11)  ->  Abs (  1056,  -275)
+	 21: Rel (  -226,  -159)  ->  Abs (   830,  -434)
+	 22: Rel (   -58,     0)  ->  Abs (   772,  -434)
+	 23: Rel (  -216,     0)  ->  Abs (   556,  -434)
+	 24: Rel (  -143,    40)  ->  Abs (   413,  -394)
+	 25: Rel (  -171,    48)  ->  Abs (   242,  -346)
+	 26: Rel (   -88,   106)  ->  Abs (   154,  -240)
+	 27: Rel (  -100,   121)  ->  Abs (    54,  -119)
+	 28: Rel (     0,   199)  ->  Abs (    54,    80)
+	 29: Rel (     0,   171)  ->  Abs (    54,   251)
+	 30: Rel (    85,   128)  ->  Abs (   139,   379)
+	 31: Rel (    66,   100)  ->  Abs (   205,   479)
+	 32: Rel (   127,    83)  ->  Abs (   332,   562)
+	 33: Rel (    37,    25)  ->  Abs (   369,   587)
+	 34: Rel (   169,    90)  ->  Abs (   538,   677)
+	 35: Rel (   -40,     5)  ->  Abs (   498,   682)
+	 36: Rel (   -89,     7)  ->  Abs (   409,   689)
+	 37: Rel (   -36,     0)  ->  Abs (   373,   689)
+	 38: Rel (  -101,     0)  ->  Abs (   272,   689)
+	 39: Rel (   -63,    -9)  ->  Abs (   209,   680)
+	 40: Rel (   -21,    -3)  ->  Abs (   188,   677)
+	 41: Rel (  -110,   -24)  ->  Abs (    78,   653)
+	 42: Rel (    34,    98)  ->  Abs (   112,   751)
+	 43: Rel (    37,    38)  ->  Abs (   149,   789)
+	 44: Rel (    83,    84)  ->  Abs (   232,   873)
+	 45: Rel (   177,     0)  ->  Abs (   409,   873)
+	 46: Rel (    97,     0)  ->  Abs (   506,   873)
+	 47: Rel (   226,   -37)  ->  Abs (   732,   836)
+	 48: Rel (    77,     0)  ->  Abs (   809,   836)
+	 49: Rel (    51,     0)  ->  Abs (   860,   836)
+	 50: Rel (    97,     8)  ->  Abs (   957,   844)
+	 51: Rel (    53,     7)  ->  Abs (  1010,   851)
+	 52: Rel (   -40,  -170)  ->  Abs (   970,   681)
+	 53: Rel (   -41,    -5)  ->  Abs (   929,   676)
+	 54: Rel (   -52,    -9)  ->  Abs (   877,   667)
+	 55: Rel (   -33,    -6)  ->  Abs (   844,   661)
+	 56: Rel (   -58,   -11)  ->  Abs (   786,   650)
+	 57: Rel (    -2,   -56)  ->  Abs (   784,   594)
+	 58: Rel (     0,   -82)  ->  Abs (   784,   512)
+	 59: Rel (    50,   -28)  ->  Abs (   834,   484)
+	 60: Rel (    31,   -17)  ->  Abs (   865,   467)
+	 61: Rel (    75,     0)  ->  Abs (   940,   467)
+	 62: Rel (   207,     0)  ->  Abs (  1147,   467)
+	 63: Rel (  -444,  -282)  ->  Abs (   703,   185)
+	 64: Rel (   -77,  -146)  ->  Abs (   626,    39)
+	 65: Rel (  -161,    85)  ->  Abs (   465,   124)
+	 66: Rel (    77,   146)  ->  Abs (   542,   270)
+
+	Glyph 927: off = 0x000288BA, len = 188
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			-68
+	  xMax:			1145
+	  yMax:			875
+
+	EndPoints
+	---------
+	  0:  22
+	  1:  26
+
+	  Length of Instructions:	92
+	00000: PUSHB[3]             25    23    24 
+	00004: PUSHW[1]            770 
+	00007: PUSHB[6]             26    26     1    11     2    15 
+	00014: PUSHW[1]            751 
+	00017: PUSHB[4]              9     9    22     2 
+	00022: PUSHW[3]            751     1   747 
+	00029: PUSHB[3]             24    26    23 
+	00033: PUSHW[1]            769 
+	00036: NPUSHB      (15):    25    25     3    11    11     1     3    84     9    17 
+	                            52     3     3     1     0 
+	00053: PUSHW[1]            752 
+	00056: PUSHB[2]             28     1 
+	00059: MDAP[rd]   
+	00060: SRP0       
+	00061: MIRP[nrp0,nmd,rd,1] 
+	00062: SRP1       
+	00063: IP         
+	00064: MDAP[rd]   
+	00065: CALL       
+	00066: SRP2       
+	00067: IP         
+	00068: MDAP[rd]   
+	00069: SRP1       
+	00070: IP         
+	00071: MDAP[rd]   
+	00072: MIRP[nrp0,md,rd,1] 
+	00073: IP         
+	00074: IP         
+	00075: SVTCA[y-axis] 
+	00076: MIAP[rd+ci] 
+	00077: MIRP[srp0,md,rd,1] 
+	00078: ALIGNRP    
+	00079: SHP[rp2,zp1] 
+	00080: MDAP[rd]   
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SRP2       
+	00083: IP         
+	00084: SRP1       
+	00085: SHP[rp1,zp0] 
+	00086: MDAP[rd]   
+	00087: MIRP[nrp0,md,rd,1] 
+	00088: IP         
+	00089: IP         
+	00090: IUP[y]     
+	00091: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:                      Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short On
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:  YDual XDual                 X-Short On
+	 23:                                      On
+	 24:                      Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1145,   293)  ->  Abs (  1145,   293)
+	  1: Rel ( -1145,     0)  ->  Abs (     0,   293)
+	  2: Rel (     0,   174)  ->  Abs (     0,   467)
+	  3: Rel (   805,     0)  ->  Abs (   805,   467)
+	  4: Rel (  -102,    79)  ->  Abs (   703,   546)
+	  5: Rel (   -70,    44)  ->  Abs (   633,   590)
+	  6: Rel (   -87,    55)  ->  Abs (   546,   645)
+	  7: Rel (   -72,    25)  ->  Abs (   474,   670)
+	  8: Rel (   -81,    28)  ->  Abs (   393,   698)
+	  9: Rel (   -83,     0)  ->  Abs (   310,   698)
+	 10: Rel (   -51,     0)  ->  Abs (   259,   698)
+	 11: Rel (   -52,    -7)  ->  Abs (   207,   691)
+	 12: Rel (    29,    74)  ->  Abs (   236,   765)
+	 13: Rel (    47,    45)  ->  Abs (   283,   810)
+	 14: Rel (    68,    65)  ->  Abs (   351,   875)
+	 15: Rel (   104,     0)  ->  Abs (   455,   875)
+	 16: Rel (   102,     0)  ->  Abs (   557,   875)
+	 17: Rel (   139,  -100)  ->  Abs (   696,   775)
+	 18: Rel (    69,   -50)  ->  Abs (   765,   725)
+	 19: Rel (   156,  -140)  ->  Abs (   921,   585)
+	 20: Rel (   121,  -109)  ->  Abs (  1042,   476)
+	 21: Rel (    43,    -9)  ->  Abs (  1085,   467)
+	 22: Rel (    60,     0)  ->  Abs (  1145,   467)
+	 23: Rel (  -509,  -391)  ->  Abs (   636,    76)
+	 24: Rel (   -75,  -144)  ->  Abs (   561,   -68)
+	 25: Rel (  -163,    84)  ->  Abs (   398,    16)
+	 26: Rel (    78,   146)  ->  Abs (   476,   162)
+
+	Glyph 928: off = 0x00028976, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-68
+	  xMax:			1145
+	  yMax:			875
+
+	     0: Flags:		0x0016
+		Glyf Index:	927
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 929: off = 0x00028986, len = 254
+	  numberOfContours:	1
+	  xMin:			54
+	  yMin:			-434
+	  xMax:			1056
+	  yMax:			885
+
+	EndPoints
+	---------
+	  0:  44
+
+	  Length of Instructions:	117
+	00000: NPUSHB      (14):    41    32    10    11    52    24    42    10    11    52 
+	                           121    42     1    27 
+	00016: PUSHW[1]            -74 
+	00019: PUSHB[7]              9    17    52     7     3    31    30 
+	00027: PUSHW[3]            751    32   774 
+	00034: PUSHB[5]             15    18     0    19    11 
+	00040: PUSHW[1]            751 
+	00043: PUSHB[3]              3     3    18 
+	00047: PUSHW[3]            751    19   775 
+	00054: NPUSHB      (16):   143     0     1     0    18    30    32    31    31    19 
+	                            18    18    46     7     7    25 
+	00072: PUSHW[3]            771    39   298 
+	00079: SCANCTRL   
+	00080: MDAP[rd]   
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SHP[rp1,zp0] 
+	00083: MDAP[rd]   
+	00084: SRP1       
+	00085: SHP[rp1,zp0] 
+	00086: MDAP[rd]   
+	00087: SHP[rp1,zp0] 
+	00088: SHP[rp1,zp0] 
+	00089: MDAP[rd]   
+	00090: IP         
+	00091: IP         
+	00092: SRP1       
+	00093: IP         
+	00094: DELTAP1    
+	00095: SVTCA[y-axis] 
+	00096: MIAP[rd+ci] 
+	00097: MIRP[nrp0,md,rd,1] 
+	00098: IP         
+	00099: MDAP[rd]   
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: SRP2       
+	00102: IP         
+	00103: SRP1       
+	00104: IP         
+	00105: MIAP[rd+ci] 
+	00106: MIRP[nrp0,md,rd,1] 
+	00107: IP         
+	00108: SRP1       
+	00109: IP         
+	00110: IUP[y]     
+	00111: IUP[x]     
+	00112: SVTCA[x-axis] 
+	00113: CALL       
+	00114: DELTAP1    
+	00115: CALL       
+	00116: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:                      Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short X-Short On
+	 24:                      Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:        XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual                               On
+	 30:  YDual XDual                 X-Short On
+	 31:        XDual         Y-Short X-Short On
+	 32:                      Y-Short X-Short On
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual               Y-Short X-Short On
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual               Y-Short X-Short On
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   484,   696)  ->  Abs (   484,   696)
+	  1: Rel (   -20,     0)  ->  Abs (   464,   696)
+	  2: Rel (   -76,     6)  ->  Abs (   388,   702)
+	  3: Rel (   -19,     0)  ->  Abs (   369,   702)
+	  4: Rel (   -64,     0)  ->  Abs (   305,   702)
+	  5: Rel (   -80,   -12)  ->  Abs (   225,   690)
+	  6: Rel (   -52,    -8)  ->  Abs (   173,   682)
+	  7: Rel (   -90,   -18)  ->  Abs (    83,   664)
+	  8: Rel (    40,   113)  ->  Abs (   123,   777)
+	  9: Rel (    35,    34)  ->  Abs (   158,   811)
+	 10: Rel (    75,    74)  ->  Abs (   233,   885)
+	 11: Rel (   177,     0)  ->  Abs (   410,   885)
+	 12: Rel (    66,     0)  ->  Abs (   476,   885)
+	 13: Rel (   204,   -28)  ->  Abs (   680,   857)
+	 14: Rel (    95,   -13)  ->  Abs (   775,   844)
+	 15: Rel (    69,     0)  ->  Abs (   844,   844)
+	 16: Rel (    29,     0)  ->  Abs (   873,   844)
+	 17: Rel (   112,    14)  ->  Abs (   985,   858)
+	 18: Rel (    28,     0)  ->  Abs (  1013,   858)
+	 19: Rel (   -37,  -169)  ->  Abs (   976,   689)
+	 20: Rel (  -211,   -36)  ->  Abs (   765,   653)
+	 21: Rel (  -148,   -46)  ->  Abs (   617,   607)
+	 22: Rel (  -220,   -68)  ->  Abs (   397,   539)
+	 23: Rel (  -123,   -98)  ->  Abs (   274,   441)
+	 24: Rel (  -153,  -122)  ->  Abs (   121,   319)
+	 25: Rel (     0,  -166)  ->  Abs (   121,   153)
+	 26: Rel (     0,  -215)  ->  Abs (   121,   -62)
+	 27: Rel (   224,  -108)  ->  Abs (   345,  -170)
+	 28: Rel (   195,   -94)  ->  Abs (   540,  -264)
+	 29: Rel (   326,     0)  ->  Abs (   866,  -264)
+	 30: Rel (   184,     0)  ->  Abs (  1050,  -264)
+	 31: Rel (     6,   -11)  ->  Abs (  1056,  -275)
+	 32: Rel (  -226,  -159)  ->  Abs (   830,  -434)
+	 33: Rel (   -58,     0)  ->  Abs (   772,  -434)
+	 34: Rel (  -216,     0)  ->  Abs (   556,  -434)
+	 35: Rel (  -143,    40)  ->  Abs (   413,  -394)
+	 36: Rel (  -171,    48)  ->  Abs (   242,  -346)
+	 37: Rel (   -88,   106)  ->  Abs (   154,  -240)
+	 38: Rel (  -100,   121)  ->  Abs (    54,  -119)
+	 39: Rel (     0,   199)  ->  Abs (    54,    80)
+	 40: Rel (     0,   168)  ->  Abs (    54,   248)
+	 41: Rel (    79,   134)  ->  Abs (   133,   382)
+	 42: Rel (    60,   102)  ->  Abs (   193,   484)
+	 43: Rel (   115,    91)  ->  Abs (   308,   575)
+	 44: Rel (    35,    28)  ->  Abs (   343,   603)
+
+	Glyph 930: off = 0x00028A84, len = 346
+	  numberOfContours:	1
+	  xMin:			54
+	  yMin:			-434
+	  xMax:			1147
+	  yMax:			873
+
+	EndPoints
+	---------
+	  0:  62
+
+	  Length of Instructions:	160
+	00000: NPUSHB      (14):    30    32    10    11    52    13    42    10    11    52 
+	                           121    31     1    16 
+	00016: PUSHW[1]            -94 
+	00019: NPUSHB      (11):     9    17    52    56     8    52    61    41    37    20 
+	                            19 
+	00032: PUSHW[3]            751    21   774 
+	00039: PUSHB[5]             48    51    34    52    45 
+	00045: PUSHW[1]            751 
+	00048: PUSHB[3]             37    37    51 
+	00052: PUSHW[7]            751    52   775    61   751     1   747 
+	00067: PUSHB[4]             56    51     8     4 
+	00072: PUSHW[1]            771 
+	00075: NPUSHB      (16):    57    57   143    34     1    34    51    19    21    14 
+	                            20    20    52    51    51     0 
+	00093: PUSHW[1]            752 
+	00096: PUSHB[4]             64    41    41    14 
+	00101: PUSHW[3]            771    28   298 
+	00108: SCANCTRL   
+	00109: MDAP[rd]   
+	00110: MIRP[nrp0,md,rd,1] 
+	00111: SHP[rp1,zp0] 
+	00112: MDAP[rd]   
+	00113: SRP0       
+	00114: MIRP[nrp0,nmd,rd,1] 
+	00115: SHP[rp1,zp0] 
+	00116: MDAP[rd]   
+	00117: SHP[rp1,zp0] 
+	00118: SHP[rp1,zp0] 
+	00119: MDAP[rd]   
+	00120: SRP2       
+	00121: IP         
+	00122: IP         
+	00123: SRP1       
+	00124: IP         
+	00125: DELTAP1    
+	00126: IP         
+	00127: MDAP[rd]   
+	00128: MIRP[srp0,md,rd,1] 
+	00129: IP         
+	00130: SRP2       
+	00131: IP         
+	00132: SVTCA[y-axis] 
+	00133: MIAP[rd+ci] 
+	00134: MIRP[nrp0,md,rd,1] 
+	00135: MIAP[rd+ci] 
+	00136: MIRP[nrp0,md,rd,1] 
+	00137: IP         
+	00138: MDAP[rd]   
+	00139: MIRP[nrp0,md,rd,1] 
+	00140: SRP2       
+	00141: IP         
+	00142: SRP1       
+	00143: IP         
+	00144: MIAP[rd+ci] 
+	00145: MIRP[nrp0,md,rd,1] 
+	00146: IP         
+	00147: SRP1       
+	00148: IP         
+	00149: SRP1       
+	00150: SRP2       
+	00151: IP         
+	00152: IP         
+	00153: IUP[y]     
+	00154: IUP[x]     
+	00155: SVTCA[x-axis] 
+	00156: CALL       
+	00157: DELTAP1    
+	00158: CALL       
+	00159: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual                               On
+	 19:  YDual XDual                 X-Short On
+	 20:        XDual         Y-Short X-Short On
+	 21:                      Y-Short X-Short On
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual               Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:                      Y-Short X-Short On
+	 40:                      Y-Short X-Short Off
+	 41:                      Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:        XDual         Y-Short X-Short Off
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual                 X-Short Off
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:                      Y-Short X-Short On
+	 53:                      Y-Short X-Short Off
+	 54:                      Y-Short X-Short On
+	 55:                      Y-Short X-Short Off
+	 56:                      Y-Short X-Short On
+	 57:                      Y-Short X-Short On
+	 58:        XDual         Y-Short         Off
+	 59:        XDual         Y-Short X-Short On
+	 60:        XDual         Y-Short X-Short Off
+	 61:  YDual XDual                 X-Short On
+	 62:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1147,   293)  ->  Abs (  1147,   293)
+	  1: Rel (  -207,     0)  ->  Abs (   940,   293)
+	  2: Rel (  -121,     0)  ->  Abs (   819,   293)
+	  3: Rel (  -102,    90)  ->  Abs (   717,   383)
+	  4: Rel (     0,   104)  ->  Abs (   717,   487)
+	  5: Rel (     0,    39)  ->  Abs (   717,   526)
+	  6: Rel (    10,    58)  ->  Abs (   727,   584)
+	  7: Rel (     4,    22)  ->  Abs (   731,   606)
+	  8: Rel (     7,    36)  ->  Abs (   738,   642)
+	  9: Rel (  -171,   -52)  ->  Abs (   567,   590)
+	 10: Rel (   -87,   -37)  ->  Abs (   480,   553)
+	 11: Rel (  -160,   -68)  ->  Abs (   320,   485)
+	 12: Rel (   -88,   -86)  ->  Abs (   232,   399)
+	 13: Rel (  -111,  -108)  ->  Abs (   121,   291)
+	 14: Rel (     0,  -138)  ->  Abs (   121,   153)
+	 15: Rel (     0,  -215)  ->  Abs (   121,   -62)
+	 16: Rel (   224,  -108)  ->  Abs (   345,  -170)
+	 17: Rel (   195,   -94)  ->  Abs (   540,  -264)
+	 18: Rel (   326,     0)  ->  Abs (   866,  -264)
+	 19: Rel (   184,     0)  ->  Abs (  1050,  -264)
+	 20: Rel (     6,   -11)  ->  Abs (  1056,  -275)
+	 21: Rel (  -226,  -159)  ->  Abs (   830,  -434)
+	 22: Rel (   -58,     0)  ->  Abs (   772,  -434)
+	 23: Rel (  -216,     0)  ->  Abs (   556,  -434)
+	 24: Rel (  -143,    40)  ->  Abs (   413,  -394)
+	 25: Rel (  -171,    48)  ->  Abs (   242,  -346)
+	 26: Rel (   -88,   106)  ->  Abs (   154,  -240)
+	 27: Rel (  -100,   121)  ->  Abs (    54,  -119)
+	 28: Rel (     0,   199)  ->  Abs (    54,    80)
+	 29: Rel (     0,   171)  ->  Abs (    54,   251)
+	 30: Rel (    85,   128)  ->  Abs (   139,   379)
+	 31: Rel (    66,   100)  ->  Abs (   205,   479)
+	 32: Rel (   127,    83)  ->  Abs (   332,   562)
+	 33: Rel (    37,    25)  ->  Abs (   369,   587)
+	 34: Rel (   169,    90)  ->  Abs (   538,   677)
+	 35: Rel (   -40,     5)  ->  Abs (   498,   682)
+	 36: Rel (   -89,     7)  ->  Abs (   409,   689)
+	 37: Rel (   -36,     0)  ->  Abs (   373,   689)
+	 38: Rel (  -101,     0)  ->  Abs (   272,   689)
+	 39: Rel (   -63,    -9)  ->  Abs (   209,   680)
+	 40: Rel (   -21,    -3)  ->  Abs (   188,   677)
+	 41: Rel (  -110,   -24)  ->  Abs (    78,   653)
+	 42: Rel (    34,    98)  ->  Abs (   112,   751)
+	 43: Rel (    37,    38)  ->  Abs (   149,   789)
+	 44: Rel (    83,    84)  ->  Abs (   232,   873)
+	 45: Rel (   177,     0)  ->  Abs (   409,   873)
+	 46: Rel (    97,     0)  ->  Abs (   506,   873)
+	 47: Rel (   226,   -37)  ->  Abs (   732,   836)
+	 48: Rel (    77,     0)  ->  Abs (   809,   836)
+	 49: Rel (    51,     0)  ->  Abs (   860,   836)
+	 50: Rel (    97,     8)  ->  Abs (   957,   844)
+	 51: Rel (    53,     7)  ->  Abs (  1010,   851)
+	 52: Rel (   -40,  -170)  ->  Abs (   970,   681)
+	 53: Rel (   -41,    -5)  ->  Abs (   929,   676)
+	 54: Rel (   -52,    -9)  ->  Abs (   877,   667)
+	 55: Rel (   -33,    -6)  ->  Abs (   844,   661)
+	 56: Rel (   -58,   -11)  ->  Abs (   786,   650)
+	 57: Rel (    -2,   -56)  ->  Abs (   784,   594)
+	 58: Rel (     0,   -82)  ->  Abs (   784,   512)
+	 59: Rel (    50,   -28)  ->  Abs (   834,   484)
+	 60: Rel (    31,   -17)  ->  Abs (   865,   467)
+	 61: Rel (    75,     0)  ->  Abs (   940,   467)
+	 62: Rel (   207,     0)  ->  Abs (  1147,   467)
+
+	Glyph 931: off = 0x00028BDE, len = 140
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1145
+	  yMax:			875
+
+	EndPoints
+	---------
+	  0:  22
+
+	  Length of Instructions:	60
+	00000: PUSHB[3]             11     2    15 
+	00004: PUSHW[1]            751 
+	00007: PUSHB[4]              9     9    22     2 
+	00012: PUSHW[3]            751     1   747 
+	00019: NPUSHB      (12):    11    11     1     3    84     9    17    52     3     3 
+	                             1     0 
+	00033: PUSHW[1]            752 
+	00036: PUSHB[2]             24     1 
+	00039: MDAP[rd]   
+	00040: SRP0       
+	00041: MIRP[nrp0,nmd,rd,1] 
+	00042: SRP1       
+	00043: IP         
+	00044: MDAP[rd]   
+	00045: CALL       
+	00046: SRP2       
+	00047: IP         
+	00048: MDAP[rd]   
+	00049: SVTCA[y-axis] 
+	00050: MIAP[rd+ci] 
+	00051: MIRP[srp0,md,rd,1] 
+	00052: ALIGNRP    
+	00053: SHP[rp2,zp1] 
+	00054: MDAP[rd]   
+	00055: MIRP[nrp0,md,rd,1] 
+	00056: SRP2       
+	00057: IP         
+	00058: IUP[y]     
+	00059: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:                      Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short On
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1145,   293)  ->  Abs (  1145,   293)
+	  1: Rel ( -1145,     0)  ->  Abs (     0,   293)
+	  2: Rel (     0,   174)  ->  Abs (     0,   467)
+	  3: Rel (   805,     0)  ->  Abs (   805,   467)
+	  4: Rel (  -102,    79)  ->  Abs (   703,   546)
+	  5: Rel (   -70,    44)  ->  Abs (   633,   590)
+	  6: Rel (   -87,    55)  ->  Abs (   546,   645)
+	  7: Rel (   -72,    25)  ->  Abs (   474,   670)
+	  8: Rel (   -81,    28)  ->  Abs (   393,   698)
+	  9: Rel (   -83,     0)  ->  Abs (   310,   698)
+	 10: Rel (   -51,     0)  ->  Abs (   259,   698)
+	 11: Rel (   -52,    -7)  ->  Abs (   207,   691)
+	 12: Rel (    29,    74)  ->  Abs (   236,   765)
+	 13: Rel (    47,    45)  ->  Abs (   283,   810)
+	 14: Rel (    68,    65)  ->  Abs (   351,   875)
+	 15: Rel (   104,     0)  ->  Abs (   455,   875)
+	 16: Rel (   102,     0)  ->  Abs (   557,   875)
+	 17: Rel (   139,  -100)  ->  Abs (   696,   775)
+	 18: Rel (    69,   -50)  ->  Abs (   765,   725)
+	 19: Rel (   156,  -140)  ->  Abs (   921,   585)
+	 20: Rel (   121,  -109)  ->  Abs (  1042,   476)
+	 21: Rel (    43,    -9)  ->  Abs (  1085,   467)
+	 22: Rel (    60,     0)  ->  Abs (  1145,   467)
+
+	Glyph 932: off = 0x00028C6A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1145
+	  yMax:			875
+
+	     0: Flags:		0x0016
+		Glyf Index:	931
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 933: off = 0x00028C7A, len = 298
+	  numberOfContours:	2
+	  xMin:			54
+	  yMin:			-434
+	  xMax:			1056
+	  yMax:			1309
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  48
+
+	  Length of Instructions:	147
+	00000: NPUSHB      (14):    45    32    10    11    52    28    42    10    11    52 
+	                           121    46     1    31 
+	00016: PUSHW[1]            -74 
+	00019: PUSHB[6]              9    17    52     0     2     3 
+	00026: PUSHW[1]            770 
+	00029: PUSHB[7]              1     1    15    11     7    35    34 
+	00037: PUSHW[3]            751    36   774 
+	00044: PUSHB[5]             19    22     4    23    15 
+	00050: PUSHW[1]            751 
+	00053: PUSHB[3]              7     7    22 
+	00057: PUSHW[3]            751    23   775 
+	00064: PUSHB[3]              1     3     2 
+	00068: PUSHW[1]            769 
+	00071: NPUSHB      (18):     0     0   143     4     1     4    22    34    36    35 
+	                            35    23    22    22    50    11    11    29 
+	00091: PUSHW[3]            771    43   298 
+	00098: SCANCTRL   
+	00099: MDAP[rd]   
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: SHP[rp1,zp0] 
+	00102: MDAP[rd]   
+	00103: SRP1       
+	00104: SHP[rp1,zp0] 
+	00105: MDAP[rd]   
+	00106: SHP[rp1,zp0] 
+	00107: SHP[rp1,zp0] 
+	00108: MDAP[rd]   
+	00109: IP         
+	00110: IP         
+	00111: SRP1       
+	00112: IP         
+	00113: DELTAP1    
+	00114: IP         
+	00115: MDAP[rd]   
+	00116: MIRP[srp0,md,rd,1] 
+	00117: IP         
+	00118: IP         
+	00119: SVTCA[y-axis] 
+	00120: MIAP[rd+ci] 
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: IP         
+	00123: MDAP[rd]   
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: SRP2       
+	00126: IP         
+	00127: SRP1       
+	00128: IP         
+	00129: MIAP[rd+ci] 
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: IP         
+	00132: SRP1       
+	00133: IP         
+	00134: SRP1       
+	00135: SHP[rp1,zp0] 
+	00136: MDAP[rd]   
+	00137: MIRP[nrp0,md,rd,1] 
+	00138: IP         
+	00139: IP         
+	00140: IUP[y]     
+	00141: IUP[x]     
+	00142: SVTCA[x-axis] 
+	00143: CALL       
+	00144: DELTAP1    
+	00145: CALL       
+	00146: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                              X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short On
+	 18:        XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:                      Y-Short X-Short On
+	 24:                      Y-Short X-Short Off
+	 25:                      Y-Short X-Short On
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short On
+	 28:                      Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:        XDual         Y-Short X-Short On
+	 32:        XDual         Y-Short X-Short Off
+	 33:  YDual                               On
+	 34:  YDual XDual                 X-Short On
+	 35:        XDual         Y-Short X-Short On
+	 36:                      Y-Short X-Short On
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual               Y-Short X-Short On
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual               Y-Short X-Short On
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual XDual         Y-Short X-Short On
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short X-Short On
+	 48:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   676,  1224)  ->  Abs (   676,  1224)
+	  1: Rel (   -77,  -145)  ->  Abs (   599,  1079)
+	  2: Rel (  -161,    84)  ->  Abs (   438,  1163)
+	  3: Rel (    75,   146)  ->  Abs (   513,  1309)
+	  4: Rel (   -29,  -613)  ->  Abs (   484,   696)
+	  5: Rel (   -20,     0)  ->  Abs (   464,   696)
+	  6: Rel (   -76,     6)  ->  Abs (   388,   702)
+	  7: Rel (   -19,     0)  ->  Abs (   369,   702)
+	  8: Rel (   -64,     0)  ->  Abs (   305,   702)
+	  9: Rel (   -80,   -12)  ->  Abs (   225,   690)
+	 10: Rel (   -52,    -8)  ->  Abs (   173,   682)
+	 11: Rel (   -90,   -18)  ->  Abs (    83,   664)
+	 12: Rel (    40,   113)  ->  Abs (   123,   777)
+	 13: Rel (    35,    34)  ->  Abs (   158,   811)
+	 14: Rel (    75,    74)  ->  Abs (   233,   885)
+	 15: Rel (   177,     0)  ->  Abs (   410,   885)
+	 16: Rel (    66,     0)  ->  Abs (   476,   885)
+	 17: Rel (   204,   -28)  ->  Abs (   680,   857)
+	 18: Rel (    95,   -13)  ->  Abs (   775,   844)
+	 19: Rel (    69,     0)  ->  Abs (   844,   844)
+	 20: Rel (    29,     0)  ->  Abs (   873,   844)
+	 21: Rel (   112,    14)  ->  Abs (   985,   858)
+	 22: Rel (    28,     0)  ->  Abs (  1013,   858)
+	 23: Rel (   -37,  -169)  ->  Abs (   976,   689)
+	 24: Rel (  -211,   -36)  ->  Abs (   765,   653)
+	 25: Rel (  -148,   -46)  ->  Abs (   617,   607)
+	 26: Rel (  -220,   -68)  ->  Abs (   397,   539)
+	 27: Rel (  -123,   -98)  ->  Abs (   274,   441)
+	 28: Rel (  -153,  -122)  ->  Abs (   121,   319)
+	 29: Rel (     0,  -166)  ->  Abs (   121,   153)
+	 30: Rel (     0,  -215)  ->  Abs (   121,   -62)
+	 31: Rel (   224,  -108)  ->  Abs (   345,  -170)
+	 32: Rel (   195,   -94)  ->  Abs (   540,  -264)
+	 33: Rel (   326,     0)  ->  Abs (   866,  -264)
+	 34: Rel (   184,     0)  ->  Abs (  1050,  -264)
+	 35: Rel (     6,   -11)  ->  Abs (  1056,  -275)
+	 36: Rel (  -226,  -159)  ->  Abs (   830,  -434)
+	 37: Rel (   -58,     0)  ->  Abs (   772,  -434)
+	 38: Rel (  -216,     0)  ->  Abs (   556,  -434)
+	 39: Rel (  -143,    40)  ->  Abs (   413,  -394)
+	 40: Rel (  -171,    48)  ->  Abs (   242,  -346)
+	 41: Rel (   -88,   106)  ->  Abs (   154,  -240)
+	 42: Rel (  -100,   121)  ->  Abs (    54,  -119)
+	 43: Rel (     0,   199)  ->  Abs (    54,    80)
+	 44: Rel (     0,   168)  ->  Abs (    54,   248)
+	 45: Rel (    79,   134)  ->  Abs (   133,   382)
+	 46: Rel (    60,   102)  ->  Abs (   193,   484)
+	 47: Rel (   115,    91)  ->  Abs (   308,   575)
+	 48: Rel (    35,    28)  ->  Abs (   343,   603)
+
+	Glyph 934: off = 0x00028DA4, len = 396
+	  numberOfContours:	2
+	  xMin:			54
+	  yMin:			-434
+	  xMax:			1147
+	  yMax:			1309
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  66
+
+	  Length of Instructions:	194
+	00000: NPUSHB      (14):    34    32    10    11    52    17    42    10    11    52 
+	                           121    35     1    20 
+	00016: PUSHW[1]            -94 
+	00019: PUSHB[6]              9    17    52     0     2     3 
+	00026: PUSHW[1]            770 
+	00029: NPUSHB      (11):     1     1    49    60    12    56    65    45    41    24 
+	                            23 
+	00042: PUSHW[3]            751    25   774 
+	00049: PUSHB[5]             52    55    38    56    49 
+	00055: PUSHW[1]            751 
+	00058: PUSHB[3]             41    41    55 
+	00062: PUSHW[7]            751    56   775    65   751     5   747 
+	00077: PUSHB[3]              1     3     2 
+	00081: PUSHW[1]            769 
+	00084: PUSHB[8]              0     0     8    18    60    55    12     8 
+	00093: PUSHW[1]            771 
+	00096: NPUSHB      (16):    61    61   143    38     1    38    55    23    25    18 
+	                            24    24    56    55    55     4 
+	00114: PUSHW[1]            752 
+	00117: PUSHB[4]             68    45    45    18 
+	00122: PUSHW[3]            771    32   298 
+	00129: SCANCTRL   
+	00130: MDAP[rd]   
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: SHP[rp1,zp0] 
+	00133: MDAP[rd]   
+	00134: SRP0       
+	00135: MIRP[nrp0,nmd,rd,1] 
+	00136: SHP[rp1,zp0] 
+	00137: MDAP[rd]   
+	00138: SHP[rp1,zp0] 
+	00139: SHP[rp1,zp0] 
+	00140: MDAP[rd]   
+	00141: SRP2       
+	00142: IP         
+	00143: IP         
+	00144: SRP1       
+	00145: IP         
+	00146: DELTAP1    
+	00147: IP         
+	00148: MDAP[rd]   
+	00149: MIRP[srp0,md,rd,1] 
+	00150: IP         
+	00151: SRP2       
+	00152: IP         
+	00153: SRP1       
+	00154: SRP2       
+	00155: IP         
+	00156: MDAP[rd]   
+	00157: MIRP[srp0,md,rd,1] 
+	00158: IP         
+	00159: IP         
+	00160: SVTCA[y-axis] 
+	00161: MIAP[rd+ci] 
+	00162: MIRP[nrp0,md,rd,1] 
+	00163: MIAP[rd+ci] 
+	00164: MIRP[nrp0,md,rd,1] 
+	00165: IP         
+	00166: MDAP[rd]   
+	00167: MIRP[nrp0,md,rd,1] 
+	00168: SRP2       
+	00169: IP         
+	00170: SRP1       
+	00171: IP         
+	00172: MIAP[rd+ci] 
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: IP         
+	00175: SRP1       
+	00176: IP         
+	00177: SRP1       
+	00178: SRP2       
+	00179: IP         
+	00180: IP         
+	00181: SRP1       
+	00182: SHP[rp1,zp0] 
+	00183: MDAP[rd]   
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: IP         
+	00186: IP         
+	00187: IUP[y]     
+	00188: IUP[x]     
+	00189: SVTCA[x-axis] 
+	00190: CALL       
+	00191: DELTAP1    
+	00192: CALL       
+	00193: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual                               On
+	 23:  YDual XDual                 X-Short On
+	 24:        XDual         Y-Short X-Short On
+	 25:                      Y-Short X-Short On
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual               Y-Short X-Short On
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual               Y-Short X-Short On
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:                      Y-Short X-Short On
+	 44:                      Y-Short X-Short Off
+	 45:                      Y-Short X-Short On
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short X-Short On
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:        XDual         Y-Short X-Short Off
+	 52:  YDual XDual                 X-Short On
+	 53:  YDual XDual                 X-Short Off
+	 54:  YDual XDual         Y-Short X-Short Off
+	 55:  YDual XDual         Y-Short X-Short On
+	 56:                      Y-Short X-Short On
+	 57:                      Y-Short X-Short Off
+	 58:                      Y-Short X-Short On
+	 59:                      Y-Short X-Short Off
+	 60:                      Y-Short X-Short On
+	 61:                      Y-Short X-Short On
+	 62:        XDual         Y-Short         Off
+	 63:        XDual         Y-Short X-Short On
+	 64:        XDual         Y-Short X-Short Off
+	 65:  YDual XDual                 X-Short On
+	 66:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   680,  1224)  ->  Abs (   680,  1224)
+	  1: Rel (   -77,  -145)  ->  Abs (   603,  1079)
+	  2: Rel (  -161,    84)  ->  Abs (   442,  1163)
+	  3: Rel (    75,   146)  ->  Abs (   517,  1309)
+	  4: Rel (   630, -1016)  ->  Abs (  1147,   293)
+	  5: Rel (  -207,     0)  ->  Abs (   940,   293)
+	  6: Rel (  -121,     0)  ->  Abs (   819,   293)
+	  7: Rel (  -102,    90)  ->  Abs (   717,   383)
+	  8: Rel (     0,   104)  ->  Abs (   717,   487)
+	  9: Rel (     0,    39)  ->  Abs (   717,   526)
+	 10: Rel (    10,    58)  ->  Abs (   727,   584)
+	 11: Rel (     4,    22)  ->  Abs (   731,   606)
+	 12: Rel (     7,    36)  ->  Abs (   738,   642)
+	 13: Rel (  -171,   -52)  ->  Abs (   567,   590)
+	 14: Rel (   -87,   -37)  ->  Abs (   480,   553)
+	 15: Rel (  -160,   -68)  ->  Abs (   320,   485)
+	 16: Rel (   -88,   -86)  ->  Abs (   232,   399)
+	 17: Rel (  -111,  -108)  ->  Abs (   121,   291)
+	 18: Rel (     0,  -138)  ->  Abs (   121,   153)
+	 19: Rel (     0,  -215)  ->  Abs (   121,   -62)
+	 20: Rel (   224,  -108)  ->  Abs (   345,  -170)
+	 21: Rel (   195,   -94)  ->  Abs (   540,  -264)
+	 22: Rel (   326,     0)  ->  Abs (   866,  -264)
+	 23: Rel (   184,     0)  ->  Abs (  1050,  -264)
+	 24: Rel (     6,   -11)  ->  Abs (  1056,  -275)
+	 25: Rel (  -226,  -159)  ->  Abs (   830,  -434)
+	 26: Rel (   -58,     0)  ->  Abs (   772,  -434)
+	 27: Rel (  -216,     0)  ->  Abs (   556,  -434)
+	 28: Rel (  -143,    40)  ->  Abs (   413,  -394)
+	 29: Rel (  -171,    48)  ->  Abs (   242,  -346)
+	 30: Rel (   -88,   106)  ->  Abs (   154,  -240)
+	 31: Rel (  -100,   121)  ->  Abs (    54,  -119)
+	 32: Rel (     0,   199)  ->  Abs (    54,    80)
+	 33: Rel (     0,   171)  ->  Abs (    54,   251)
+	 34: Rel (    85,   128)  ->  Abs (   139,   379)
+	 35: Rel (    66,   100)  ->  Abs (   205,   479)
+	 36: Rel (   127,    83)  ->  Abs (   332,   562)
+	 37: Rel (    37,    25)  ->  Abs (   369,   587)
+	 38: Rel (   169,    90)  ->  Abs (   538,   677)
+	 39: Rel (   -40,     5)  ->  Abs (   498,   682)
+	 40: Rel (   -89,     7)  ->  Abs (   409,   689)
+	 41: Rel (   -36,     0)  ->  Abs (   373,   689)
+	 42: Rel (  -101,     0)  ->  Abs (   272,   689)
+	 43: Rel (   -63,    -9)  ->  Abs (   209,   680)
+	 44: Rel (   -21,    -3)  ->  Abs (   188,   677)
+	 45: Rel (  -110,   -24)  ->  Abs (    78,   653)
+	 46: Rel (    34,    98)  ->  Abs (   112,   751)
+	 47: Rel (    37,    38)  ->  Abs (   149,   789)
+	 48: Rel (    83,    84)  ->  Abs (   232,   873)
+	 49: Rel (   177,     0)  ->  Abs (   409,   873)
+	 50: Rel (    97,     0)  ->  Abs (   506,   873)
+	 51: Rel (   226,   -37)  ->  Abs (   732,   836)
+	 52: Rel (    77,     0)  ->  Abs (   809,   836)
+	 53: Rel (    51,     0)  ->  Abs (   860,   836)
+	 54: Rel (    97,     8)  ->  Abs (   957,   844)
+	 55: Rel (    53,     7)  ->  Abs (  1010,   851)
+	 56: Rel (   -40,  -170)  ->  Abs (   970,   681)
+	 57: Rel (   -41,    -5)  ->  Abs (   929,   676)
+	 58: Rel (   -52,    -9)  ->  Abs (   877,   667)
+	 59: Rel (   -33,    -6)  ->  Abs (   844,   661)
+	 60: Rel (   -58,   -11)  ->  Abs (   786,   650)
+	 61: Rel (    -2,   -56)  ->  Abs (   784,   594)
+	 62: Rel (     0,   -82)  ->  Abs (   784,   512)
+	 63: Rel (    50,   -28)  ->  Abs (   834,   484)
+	 64: Rel (    31,   -17)  ->  Abs (   865,   467)
+	 65: Rel (    75,     0)  ->  Abs (   940,   467)
+	 66: Rel (   207,     0)  ->  Abs (  1147,   467)
+
+	Glyph 935: off = 0x00028F30, len = 188
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1145
+	  yMax:			1309
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  26
+
+	  Length of Instructions:	92
+	00000: PUSHB[3]              0     2     3 
+	00004: PUSHW[1]            770 
+	00007: PUSHB[6]              1     1    19    15     6    19 
+	00014: PUSHW[1]            751 
+	00017: PUSHB[4]             13    13    26     6 
+	00022: PUSHW[3]            751     5   747 
+	00029: PUSHB[3]              1     3     0 
+	00033: PUSHW[1]            769 
+	00036: NPUSHB      (15):     2     2     7    15    15     5     7    84     9    17 
+	                            52     7     7     5     4 
+	00053: PUSHW[1]            752 
+	00056: PUSHB[2]             28     5 
+	00059: MDAP[rd]   
+	00060: SRP0       
+	00061: MIRP[nrp0,nmd,rd,1] 
+	00062: SRP1       
+	00063: IP         
+	00064: MDAP[rd]   
+	00065: CALL       
+	00066: SRP2       
+	00067: IP         
+	00068: MDAP[rd]   
+	00069: SRP1       
+	00070: IP         
+	00071: MDAP[rd]   
+	00072: MIRP[nrp0,md,rd,1] 
+	00073: IP         
+	00074: IP         
+	00075: SVTCA[y-axis] 
+	00076: MIAP[rd+ci] 
+	00077: MIRP[srp0,md,rd,1] 
+	00078: ALIGNRP    
+	00079: SHP[rp2,zp1] 
+	00080: MDAP[rd]   
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SRP2       
+	00083: IP         
+	00084: SRP1       
+	00085: SHP[rp1,zp0] 
+	00086: MDAP[rd]   
+	00087: MIRP[nrp0,md,rd,1] 
+	00088: IP         
+	00089: IP         
+	00090: IUP[y]     
+	00091: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short On
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short On
+	 26:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   666,  1224)  ->  Abs (   666,  1224)
+	  1: Rel (   -76,  -145)  ->  Abs (   590,  1079)
+	  2: Rel (  -162,    84)  ->  Abs (   428,  1163)
+	  3: Rel (    74,   146)  ->  Abs (   502,  1309)
+	  4: Rel (   643, -1016)  ->  Abs (  1145,   293)
+	  5: Rel ( -1145,     0)  ->  Abs (     0,   293)
+	  6: Rel (     0,   174)  ->  Abs (     0,   467)
+	  7: Rel (   805,     0)  ->  Abs (   805,   467)
+	  8: Rel (  -102,    79)  ->  Abs (   703,   546)
+	  9: Rel (   -70,    44)  ->  Abs (   633,   590)
+	 10: Rel (   -87,    55)  ->  Abs (   546,   645)
+	 11: Rel (   -72,    25)  ->  Abs (   474,   670)
+	 12: Rel (   -81,    28)  ->  Abs (   393,   698)
+	 13: Rel (   -83,     0)  ->  Abs (   310,   698)
+	 14: Rel (   -51,     0)  ->  Abs (   259,   698)
+	 15: Rel (   -52,    -7)  ->  Abs (   207,   691)
+	 16: Rel (    29,    74)  ->  Abs (   236,   765)
+	 17: Rel (    47,    45)  ->  Abs (   283,   810)
+	 18: Rel (    68,    65)  ->  Abs (   351,   875)
+	 19: Rel (   104,     0)  ->  Abs (   455,   875)
+	 20: Rel (   102,     0)  ->  Abs (   557,   875)
+	 21: Rel (   139,  -100)  ->  Abs (   696,   775)
+	 22: Rel (    69,   -50)  ->  Abs (   765,   725)
+	 23: Rel (   156,  -140)  ->  Abs (   921,   585)
+	 24: Rel (   121,  -109)  ->  Abs (  1042,   476)
+	 25: Rel (    43,    -9)  ->  Abs (  1085,   467)
+	 26: Rel (    60,     0)  ->  Abs (  1145,   467)
+
+	Glyph 936: off = 0x00028FEC, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1145
+	  yMax:			1309
+
+	     0: Flags:		0x0016
+		Glyf Index:	935
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 937: off = 0x00028FFC, len = 152
+	  numberOfContours:	1
+	  xMin:			165
+	  yMin:			293
+	  xMax:			761
+	  yMax:			1130
+
+	EndPoints
+	---------
+	  0:  22
+
+	  Length of Instructions:	74
+	00000: PUSHB[7]            102    19     1     7     7    13    18 
+	00008: PUSHW[1]            751 
+	00011: PUSHB[3]             17    17    13 
+	00015: PUSHW[3]            751     1   747 
+	00022: PUSHB[6]             18    18    17    17     8    13 
+	00029: PUSHW[3]            771     0   752 
+	00036: PUSHB[3]             24     4     8 
+	00040: PUSHW[3]            761     7   298 
+	00047: SCANCTRL   
+	00048: MDAP[rd]   
+	00049: MIRP[nrp0,md,rd,1] 
+	00050: SHP[rp1,zp0] 
+	00051: SRP0       
+	00052: MIRP[srp0,nmd,rd,1] 
+	00053: MIRP[nrp0,md,rd,1] 
+	00054: SRP1       
+	00055: IP         
+	00056: MDAP[rd]   
+	00057: RTHG       
+	00058: IP         
+	00059: MDAP[rd]   
+	00060: SVTCA[y-axis] 
+	00061: RTG        
+	00062: MIAP[rd+ci] 
+	00063: MIRP[srp0,md,rd,1] 
+	00064: SHP[rp2,zp1] 
+	00065: MDAP[rd]   
+	00066: MIRP[nrp0,md,rd,1] 
+	00067: SRP2       
+	00068: IP         
+	00069: MDAP[rd]   
+	00070: IUP[y]     
+	00071: IUP[x]     
+	00072: SVTCA[x-axis] 
+	00073: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual                               On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   761,   293)  ->  Abs (   761,   293)
+	  1: Rel (  -448,     0)  ->  Abs (   313,   293)
+	  2: Rel (   -57,     0)  ->  Abs (   256,   293)
+	  3: Rel (   -91,    66)  ->  Abs (   165,   359)
+	  4: Rel (     0,    45)  ->  Abs (   165,   404)
+	  5: Rel (     0,    38)  ->  Abs (   165,   442)
+	  6: Rel (     8,    62)  ->  Abs (   173,   504)
+	  7: Rel (    11,    37)  ->  Abs (   184,   541)
+	  8: Rel (    23,     0)  ->  Abs (   207,   541)
+	  9: Rel (    11,   -41)  ->  Abs (   218,   500)
+	 10: Rel (    29,   -18)  ->  Abs (   247,   482)
+	 11: Rel (    24,   -15)  ->  Abs (   271,   467)
+	 12: Rel (    42,     0)  ->  Abs (   313,   467)
+	 13: Rel (   387,     0)  ->  Abs (   700,   467)
+	 14: Rel (     0,   179)  ->  Abs (   700,   646)
+	 15: Rel (   -50,   109)  ->  Abs (   650,   755)
+	 16: Rel (   -62,   136)  ->  Abs (   588,   891)
+	 17: Rel (  -145,    45)  ->  Abs (   443,   936)
+	 18: Rel (    15,   194)  ->  Abs (   458,  1130)
+	 19: Rel (   173,   -85)  ->  Abs (   631,  1045)
+	 20: Rel (    72,  -186)  ->  Abs (   703,   859)
+	 21: Rel (    58,  -150)  ->  Abs (   761,   709)
+	 22: Rel (     0,  -242)  ->  Abs (   761,   467)
+
+	Glyph 938: off = 0x00029094, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			165
+	  yMin:			293
+	  xMax:			761
+	  yMax:			1130
+
+	     0: Flags:		0x0016
+		Glyf Index:	937
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 939: off = 0x000290A4, len = 204
+	  numberOfContours:	2
+	  xMin:			165
+	  yMin:			293
+	  xMax:			761
+	  yMax:			1555
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  26
+
+	  Length of Instructions:	109
+	00000: PUSHB[6]            102    23     1     0     2     3 
+	00007: PUSHW[1]            770 
+	00010: PUSHB[7]              1     1    22    11    11    17    22 
+	00018: PUSHW[1]            751 
+	00021: PUSHB[3]             21    21    17 
+	00025: PUSHW[3]            751     5   747 
+	00032: PUSHB[3]              1     3     0 
+	00036: PUSHW[1]            769 
+	00039: NPUSHB      (10):     2     2    21    11    22    22    21    21    12    17 
+	00051: PUSHW[3]            771     4   752 
+	00058: PUSHB[3]             28     8    12 
+	00062: PUSHW[3]            761    11   298 
+	00069: SCANCTRL   
+	00070: MDAP[rd]   
+	00071: MIRP[nrp0,md,rd,1] 
+	00072: SHP[rp1,zp0] 
+	00073: SRP0       
+	00074: MIRP[srp0,nmd,rd,1] 
+	00075: MIRP[nrp0,md,rd,1] 
+	00076: SRP1       
+	00077: IP         
+	00078: MDAP[rd]   
+	00079: RTHG       
+	00080: IP         
+	00081: MDAP[rd]   
+	00082: RTG        
+	00083: SRP1       
+	00084: SRP2       
+	00085: IP         
+	00086: MDAP[rd]   
+	00087: MIRP[nrp0,md,rd,1] 
+	00088: IP         
+	00089: IP         
+	00090: SVTCA[y-axis] 
+	00091: MIAP[rd+ci] 
+	00092: MIRP[srp0,md,rd,1] 
+	00093: SHP[rp2,zp1] 
+	00094: MDAP[rd]   
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: SRP2       
+	00097: IP         
+	00098: MDAP[rd]   
+	00099: SRP1       
+	00100: SHP[rp1,zp0] 
+	00101: MDAP[rd]   
+	00102: MIRP[nrp0,md,rd,1] 
+	00103: IP         
+	00104: IP         
+	00105: IUP[y]     
+	00106: IUP[x]     
+	00107: SVTCA[x-axis] 
+	00108: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:  YDual                               On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual                               On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual               Y-Short X-Short On
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual               Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   495,  1469)  ->  Abs (   495,  1469)
+	  1: Rel (   -78,  -145)  ->  Abs (   417,  1324)
+	  2: Rel (  -160,    86)  ->  Abs (   257,  1410)
+	  3: Rel (    73,   145)  ->  Abs (   330,  1555)
+	  4: Rel (   431, -1262)  ->  Abs (   761,   293)
+	  5: Rel (  -448,     0)  ->  Abs (   313,   293)
+	  6: Rel (   -57,     0)  ->  Abs (   256,   293)
+	  7: Rel (   -91,    66)  ->  Abs (   165,   359)
+	  8: Rel (     0,    45)  ->  Abs (   165,   404)
+	  9: Rel (     0,    38)  ->  Abs (   165,   442)
+	 10: Rel (     8,    62)  ->  Abs (   173,   504)
+	 11: Rel (    11,    37)  ->  Abs (   184,   541)
+	 12: Rel (    23,     0)  ->  Abs (   207,   541)
+	 13: Rel (    11,   -41)  ->  Abs (   218,   500)
+	 14: Rel (    29,   -18)  ->  Abs (   247,   482)
+	 15: Rel (    24,   -15)  ->  Abs (   271,   467)
+	 16: Rel (    42,     0)  ->  Abs (   313,   467)
+	 17: Rel (   387,     0)  ->  Abs (   700,   467)
+	 18: Rel (     0,   179)  ->  Abs (   700,   646)
+	 19: Rel (   -50,   109)  ->  Abs (   650,   755)
+	 20: Rel (   -62,   136)  ->  Abs (   588,   891)
+	 21: Rel (  -145,    45)  ->  Abs (   443,   936)
+	 22: Rel (    15,   194)  ->  Abs (   458,  1130)
+	 23: Rel (   173,   -85)  ->  Abs (   631,  1045)
+	 24: Rel (    72,  -186)  ->  Abs (   703,   859)
+	 25: Rel (    58,  -150)  ->  Abs (   761,   709)
+	 26: Rel (     0,  -242)  ->  Abs (   761,   467)
+
+	Glyph 940: off = 0x00029170, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			165
+	  yMin:			293
+	  xMax:			761
+	  yMax:			1555
+
+	     0: Flags:		0x0016
+		Glyf Index:	939
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 941: off = 0x00029180, len = 216
+	  numberOfContours:	1
+	  xMin:			144
+	  yMin:			-186
+	  xMax:			1071
+	  yMax:			880
+
+	EndPoints
+	---------
+	  0:  30
+
+	  Length of Instructions:	114
+	00000: NPUSHB      (11):    19    42     9    17    52    18    42    12    17    52 
+	                             4 
+	00013: PUSHW[1]            -32 
+	00016: PUSHB[4]              9    17    52     3 
+	00021: PUSHW[1]            -32 
+	00024: PUSHB[4]              9    17    52     2 
+	00029: PUSHW[1]            -42 
+	00032: NPUSHB      (11):     9    17    52    24    52    12    17    52    13    12 
+	                            25 
+	00045: PUSHW[3]            751    26   777 
+	00052: PUSHB[3]             12    58    16 
+	00056: PUSHW[3]            778     6   776 
+	00063: PUSHB[5]             26    26    25    25    21 
+	00069: PUSHW[3]            771     0   752 
+	00076: PUSHB[3]             32    13    12 
+	00080: PUSHW[1]            282 
+	00083: SCANCTRL   
+	00084: MDAP[rd]   
+	00085: SHP[rp1,zp0] 
+	00086: SRP0       
+	00087: MIRP[srp0,nmd,rd,0] 
+	00088: MIRP[srp0,md,rd,1] 
+	00089: SHP[rp2,zp1] 
+	00090: MDAP[rd]   
+	00091: RTHG       
+	00092: IP         
+	00093: MDAP[rd]   
+	00094: SVTCA[y-axis] 
+	00095: RTG        
+	00096: MIAP[rd+ci] 
+	00097: MIRP[srp0,md,rd,1] 
+	00098: RTHG       
+	00099: MIRP[nrp0,nmd,rd,0] 
+	00100: RTG        
+	00101: MIAP[rd+ci] 
+	00102: MIRP[nrp0,md,rd,1] 
+	00103: SRP1       
+	00104: IP         
+	00105: IUP[y]     
+	00106: IUP[x]     
+	00107: SVTCA[x-axis] 
+	00108: CALL       
+	00109: CALL       
+	00110: CALL       
+	00111: CALL       
+	00112: CALL       
+	00113: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short X-Short On
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1071,   293)  ->  Abs (  1071,   293)
+	  1: Rel (     0,  -110)  ->  Abs (  1071,   183)
+	  2: Rel (   -94,  -118)  ->  Abs (   977,    65)
+	  3: Rel (   -82,  -104)  ->  Abs (   895,   -39)
+	  4: Rel (  -122,   -75)  ->  Abs (   773,  -114)
+	  5: Rel (  -116,   -72)  ->  Abs (   657,  -186)
+	  6: Rel (   -75,     0)  ->  Abs (   582,  -186)
+	  7: Rel (   -69,     0)  ->  Abs (   513,  -186)
+	  8: Rel (   -80,    20)  ->  Abs (   433,  -166)
+	  9: Rel (   -61,    15)  ->  Abs (   372,  -151)
+	 10: Rel (   -85,    32)  ->  Abs (   287,  -119)
+	 11: Rel (   -72,    27)  ->  Abs (   215,   -92)
+	 12: Rel (   -71,    27)  ->  Abs (   144,   -65)
+	 13: Rel (    17,    40)  ->  Abs (   161,   -25)
+	 14: Rel (    66,   -13)  ->  Abs (   227,   -38)
+	 15: Rel (   143,   -27)  ->  Abs (   370,   -65)
+	 16: Rel (    58,     0)  ->  Abs (   428,   -65)
+	 17: Rel (   128,     0)  ->  Abs (   556,   -65)
+	 18: Rel (   139,    82)  ->  Abs (   695,    17)
+	 19: Rel (   126,    75)  ->  Abs (   821,    92)
+	 20: Rel (   178,   229)  ->  Abs (   999,   321)
+	 21: Rel (     0,    92)  ->  Abs (   999,   413)
+	 22: Rel (     0,    79)  ->  Abs (   999,   492)
+	 23: Rel (   -46,    87)  ->  Abs (   953,   579)
+	 24: Rel (   -37,    70)  ->  Abs (   916,   649)
+	 25: Rel (   -67,    74)  ->  Abs (   849,   723)
+	 26: Rel (    57,   157)  ->  Abs (   906,   880)
+	 27: Rel (    82,   -76)  ->  Abs (   988,   804)
+	 28: Rel (    39,   -76)  ->  Abs (  1027,   728)
+	 29: Rel (    44,   -86)  ->  Abs (  1071,   642)
+	 30: Rel (     0,  -106)  ->  Abs (  1071,   536)
+
+	Glyph 942: off = 0x00029258, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-186
+	  xMax:			1071
+	  yMax:			880
+
+	     0: Flags:		0x0016
+		Glyf Index:	941
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 943: off = 0x00029268, len = 264
+	  numberOfContours:	2
+	  xMin:			144
+	  yMin:			-186
+	  xMax:			1071
+	  yMax:			1309
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  34
+
+	  Length of Instructions:	146
+	00000: NPUSHB      (11):    23    42     9    17    52    22    42    12    17    52 
+	                             8 
+	00013: PUSHW[1]            -32 
+	00016: PUSHB[4]              9    17    52     7 
+	00021: PUSHW[1]            -32 
+	00024: PUSHB[4]              9    17    52     6 
+	00029: PUSHW[1]            -42 
+	00032: NPUSHB      (11):     9    17    52    28    52    12    17    52     0     2 
+	                             3 
+	00045: PUSHW[1]            770 
+	00048: PUSHB[6]              1     1    30    17    16    29 
+	00055: PUSHW[3]            751    30   777 
+	00062: PUSHB[3]             16    58    20 
+	00066: PUSHW[3]            778    10   776 
+	00073: PUSHB[3]              1     3     2 
+	00077: PUSHW[1]            769 
+	00080: PUSHB[8]              0     0    29    30    30    29    29    25 
+	00089: PUSHW[3]            771     4   752 
+	00096: PUSHB[3]             36    17    16 
+	00100: PUSHW[1]            282 
+	00103: SCANCTRL   
+	00104: MDAP[rd]   
+	00105: SHP[rp1,zp0] 
+	00106: SRP0       
+	00107: MIRP[srp0,nmd,rd,0] 
+	00108: MIRP[srp0,md,rd,1] 
+	00109: SHP[rp2,zp1] 
+	00110: MDAP[rd]   
+	00111: RTHG       
+	00112: IP         
+	00113: MDAP[rd]   
+	00114: SRP1       
+	00115: SHP[rp1,zp0] 
+	00116: RTG        
+	00117: MDAP[rd]   
+	00118: MIRP[srp0,md,rd,1] 
+	00119: IP         
+	00120: IP         
+	00121: SVTCA[y-axis] 
+	00122: MIAP[rd+ci] 
+	00123: MIRP[srp0,md,rd,1] 
+	00124: RTHG       
+	00125: MIRP[nrp0,nmd,rd,0] 
+	00126: RTG        
+	00127: MIAP[rd+ci] 
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: SRP1       
+	00130: IP         
+	00131: SRP1       
+	00132: SHP[rp1,zp0] 
+	00133: MDAP[rd]   
+	00134: MIRP[nrp0,md,rd,1] 
+	00135: IP         
+	00136: IP         
+	00137: IUP[y]     
+	00138: IUP[x]     
+	00139: SVTCA[x-axis] 
+	00140: CALL       
+	00141: CALL       
+	00142: CALL       
+	00143: CALL       
+	00144: CALL       
+	00145: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:                      Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   921,  1224)  ->  Abs (   921,  1224)
+	  1: Rel (   -77,  -145)  ->  Abs (   844,  1079)
+	  2: Rel (  -161,    84)  ->  Abs (   683,  1163)
+	  3: Rel (    75,   146)  ->  Abs (   758,  1309)
+	  4: Rel (   313, -1016)  ->  Abs (  1071,   293)
+	  5: Rel (     0,  -110)  ->  Abs (  1071,   183)
+	  6: Rel (   -94,  -118)  ->  Abs (   977,    65)
+	  7: Rel (   -82,  -104)  ->  Abs (   895,   -39)
+	  8: Rel (  -122,   -75)  ->  Abs (   773,  -114)
+	  9: Rel (  -116,   -72)  ->  Abs (   657,  -186)
+	 10: Rel (   -75,     0)  ->  Abs (   582,  -186)
+	 11: Rel (   -69,     0)  ->  Abs (   513,  -186)
+	 12: Rel (   -80,    20)  ->  Abs (   433,  -166)
+	 13: Rel (   -61,    15)  ->  Abs (   372,  -151)
+	 14: Rel (   -85,    32)  ->  Abs (   287,  -119)
+	 15: Rel (   -72,    27)  ->  Abs (   215,   -92)
+	 16: Rel (   -71,    27)  ->  Abs (   144,   -65)
+	 17: Rel (    17,    40)  ->  Abs (   161,   -25)
+	 18: Rel (    66,   -13)  ->  Abs (   227,   -38)
+	 19: Rel (   143,   -27)  ->  Abs (   370,   -65)
+	 20: Rel (    58,     0)  ->  Abs (   428,   -65)
+	 21: Rel (   128,     0)  ->  Abs (   556,   -65)
+	 22: Rel (   139,    82)  ->  Abs (   695,    17)
+	 23: Rel (   126,    75)  ->  Abs (   821,    92)
+	 24: Rel (   178,   229)  ->  Abs (   999,   321)
+	 25: Rel (     0,    92)  ->  Abs (   999,   413)
+	 26: Rel (     0,    79)  ->  Abs (   999,   492)
+	 27: Rel (   -46,    87)  ->  Abs (   953,   579)
+	 28: Rel (   -37,    70)  ->  Abs (   916,   649)
+	 29: Rel (   -67,    74)  ->  Abs (   849,   723)
+	 30: Rel (    57,   157)  ->  Abs (   906,   880)
+	 31: Rel (    82,   -76)  ->  Abs (   988,   804)
+	 32: Rel (    39,   -76)  ->  Abs (  1027,   728)
+	 33: Rel (    44,   -86)  ->  Abs (  1071,   642)
+	 34: Rel (     0,  -106)  ->  Abs (  1071,   536)
+
+	Glyph 944: off = 0x00029370, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-186
+	  xMax:			1071
+	  yMax:			1309
+
+	     0: Flags:		0x0016
+		Glyf Index:	943
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 945: off = 0x00029380, len = 454
+	  numberOfContours:	1
+	  xMin:			132
+	  yMin:			-148
+	  xMax:			1752
+	  yMax:			855
+
+	EndPoints
+	---------
+	  0:  70
+
+	  Length of Instructions:	249
+	00000: PUSHB[6]             64    32    16    17    52    30 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (26):    14    17    52    33    32    11    17    52    38    52 
+	                            11    17    52    65    65    66    58    52    53    44 
+	                            66    66    40    53    53    39 
+	00038: PUSHW[3]            751    40   777 
+	00045: PUSHB[3]             25    31    24 
+	00049: PUSHW[3]            775    58   751 
+	00056: PUSHB[3]              0     0    44 
+	00060: PUSHW[7]            751     9   747    31   751    15   785 
+	00075: PUSHB[4]              4    65    49    52 
+	00080: PUSHW[3]            762    53   -64 
+	00087: NPUSHB      (17):     9    16    52    53    53    65     9    40    40    15 
+	                            39    31    39     2    39    39    35 
+	00106: PUSHW[4]            773    44     9   -64 
+	00115: NPUSHB      (15):     9    13    52     9     9    65    28    66    66    63 
+	                            65     1    65    65    61 
+	00132: NPUSHW      (10):   773    64     0   752    72    25   763    32    24   -64 
+	00154: PUSHB[6]              9    11    52    24    24    28 
+	00161: PUSHW[1]            771 
+	00164: PUSHB[4]              0    19     1    19 
+	00169: PUSHW[1]            298 
+	00172: SCANCTRL   
+	00173: MDAP[rd]   
+	00174: DELTAP1    
+	00175: MIRP[srp0,md,rd,1] 
+	00176: SHP[rp2,zp1] 
+	00177: RTHG       
+	00178: MDAP[rd]   
+	00179: CALL       
+	00180: SMD        
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: RTG        
+	00183: SRP0       
+	00184: MIRP[srp0,nmd,rd,1] 
+	00185: SMD        
+	00186: MIRP[srp0,md,rd,1] 
+	00187: SHP[rp2,zp1] 
+	00188: MDAP[rd]   
+	00189: DELTAP1    
+	00190: RTHG       
+	00191: IP         
+	00192: MDAP[rd]   
+	00193: RTG        
+	00194: SRP1       
+	00195: SRP2       
+	00196: IP         
+	00197: MDAP[rd]   
+	00198: CALL       
+	00199: ALIGNRP    
+	00200: MIRP[srp0,md,rd,1] 
+	00201: SHP[rp2,zp1] 
+	00202: MDAP[rd]   
+	00203: DELTAP1    
+	00204: RTHG       
+	00205: IP         
+	00206: MDAP[rd]   
+	00207: SRP1       
+	00208: SRP2       
+	00209: IP         
+	00210: MDAP[rd]   
+	00211: CALL       
+	00212: MIRP[srp0,nmd,rd,0] 
+	00213: IP         
+	00214: SRP2       
+	00215: IP         
+	00216: SVTCA[y-axis] 
+	00217: RTG        
+	00218: MIAP[rd+ci] 
+	00219: MIRP[nrp0,md,rd,1] 
+	00220: MIAP[rd+ci] 
+	00221: MIRP[nrp0,md,rd,1] 
+	00222: ALIGNRP    
+	00223: SRP0       
+	00224: MIRP[nrp0,md,rd,1] 
+	00225: MIAP[rd+ci] 
+	00226: SRP2       
+	00227: IP         
+	00228: MIAP[rd+ci] 
+	00229: MIRP[srp0,md,rd,1] 
+	00230: IP         
+	00231: MDAP[rd]   
+	00232: SRP2       
+	00233: IP         
+	00234: MDAP[rd]   
+	00235: SRP1       
+	00236: SRP2       
+	00237: IP         
+	00238: SRP1       
+	00239: SRP2       
+	00240: IP         
+	00241: MDAP[rd]   
+	00242: IUP[y]     
+	00243: IUP[x]     
+	00244: SVTCA[x-axis] 
+	00245: CALL       
+	00246: CALL       
+	00247: CALL       
+	00248: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual               Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:                      Y-Short X-Short On
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short On
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual               Y-Short X-Short On
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual               Y-Short X-Short On
+	 40:  YDual XDual         Y-Short X-Short On
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short X-Short On
+	 43:        XDual         Y-Short X-Short Off
+	 44:        XDual         Y-Short         On
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:  YDual XDual         Y-Short X-Short On
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual         Y-Short         On
+	 50:  YDual XDual         Y-Short         Off
+	 51:  YDual               Y-Short X-Short Off
+	 52:  YDual               Y-Short X-Short On
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:        XDual         Y-Short X-Short On
+	 55:        XDual         Y-Short X-Short Off
+	 56:        XDual         Y-Short X-Short On
+	 57:        XDual         Y-Short X-Short Off
+	 58:  YDual XDual                 X-Short On
+	 59:  YDual XDual                 X-Short Off
+	 60:  YDual XDual         Y-Short X-Short Off
+	 61:  YDual XDual         Y-Short         On
+	 62:  YDual XDual         Y-Short         Off
+	 63:  YDual               Y-Short X-Short On
+	 64:  YDual               Y-Short X-Short Off
+	 65:  YDual               Y-Short X-Short On
+	 66:  YDual XDual         Y-Short X-Short On
+	 67:        XDual         Y-Short X-Short Off
+	 68:        XDual         Y-Short X-Short On
+	 69:        XDual         Y-Short X-Short Off
+	 70:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1752,   293)  ->  Abs (  1752,   293)
+	  1: Rel (   -79,     0)  ->  Abs (  1673,   293)
+	  2: Rel (   -60,     0)  ->  Abs (  1613,   293)
+	  3: Rel (   -91,    33)  ->  Abs (  1522,   326)
+	  4: Rel (   -47,    36)  ->  Abs (  1475,   362)
+	  5: Rel (   -42,   -38)  ->  Abs (  1433,   324)
+	  6: Rel (   -33,   -13)  ->  Abs (  1400,   311)
+	  7: Rel (   -47,   -18)  ->  Abs (  1353,   293)
+	  8: Rel (   -90,     0)  ->  Abs (  1263,   293)
+	  9: Rel (  -123,     0)  ->  Abs (  1140,   293)
+	 10: Rel (     0,   -92)  ->  Abs (  1140,   201)
+	 11: Rel (   -44,   -87)  ->  Abs (  1096,   114)
+	 12: Rel (   -57,  -113)  ->  Abs (  1039,     1)
+	 13: Rel (  -117,   -66)  ->  Abs (   922,   -65)
+	 14: Rel (  -147,   -83)  ->  Abs (   775,  -148)
+	 15: Rel (  -221,     0)  ->  Abs (   554,  -148)
+	 16: Rel (  -200,     0)  ->  Abs (   354,  -148)
+	 17: Rel (  -106,    70)  ->  Abs (   248,   -78)
+	 18: Rel (  -116,    77)  ->  Abs (   132,    -1)
+	 19: Rel (     0,   159)  ->  Abs (   132,   158)
+	 20: Rel (     0,    86)  ->  Abs (   132,   244)
+	 21: Rel (    42,   176)  ->  Abs (   174,   420)
+	 22: Rel (    36,    89)  ->  Abs (   210,   509)
+	 23: Rel (    22,    54)  ->  Abs (   232,   563)
+	 24: Rel (    54,   112)  ->  Abs (   286,   675)
+	 25: Rel (    40,   -18)  ->  Abs (   326,   657)
+	 26: Rel (   -70,  -144)  ->  Abs (   256,   513)
+	 27: Rel (   -45,  -166)  ->  Abs (   211,   347)
+	 28: Rel (     0,   -69)  ->  Abs (   211,   278)
+	 29: Rel (     0,  -124)  ->  Abs (   211,   154)
+	 30: Rel (   177,  -129)  ->  Abs (   388,    25)
+	 31: Rel (   164,     0)  ->  Abs (   552,    25)
+	 32: Rel (   192,     0)  ->  Abs (   744,    25)
+	 33: Rel (   151,    67)  ->  Abs (   895,    92)
+	 34: Rel (   188,    83)  ->  Abs (  1083,   175)
+	 35: Rel (     0,   149)  ->  Abs (  1083,   324)
+	 36: Rel (     0,   100)  ->  Abs (  1083,   424)
+	 37: Rel (   -37,    90)  ->  Abs (  1046,   514)
+	 38: Rel (   -29,    71)  ->  Abs (  1017,   585)
+	 39: Rel (   -53,    65)  ->  Abs (   964,   650)
+	 40: Rel (    83,   205)  ->  Abs (  1047,   855)
+	 41: Rel (    50,   -82)  ->  Abs (  1097,   773)
+	 42: Rel (    18,   -63)  ->  Abs (  1115,   710)
+	 43: Rel (    25,   -89)  ->  Abs (  1140,   621)
+	 44: Rel (     0,  -154)  ->  Abs (  1140,   467)
+	 45: Rel (   123,     0)  ->  Abs (  1263,   467)
+	 46: Rel (    95,     0)  ->  Abs (  1358,   467)
+	 47: Rel (    40,    29)  ->  Abs (  1398,   496)
+	 48: Rel (    35,    25)  ->  Abs (  1433,   521)
+	 49: Rel (     0,    52)  ->  Abs (  1433,   573)
+	 50: Rel (     0,    29)  ->  Abs (  1433,   602)
+	 51: Rel (    -7,    59)  ->  Abs (  1426,   661)
+	 52: Rel (    -7,    35)  ->  Abs (  1419,   696)
+	 53: Rel (    40,    60)  ->  Abs (  1459,   756)
+	 54: Rel (    16,   -97)  ->  Abs (  1475,   659)
+	 55: Rel (    22,   -98)  ->  Abs (  1497,   561)
+	 56: Rel (    37,   -43)  ->  Abs (  1534,   518)
+	 57: Rel (    41,   -48)  ->  Abs (  1575,   470)
+	 58: Rel (    75,     0)  ->  Abs (  1650,   470)
+	 59: Rel (    23,     0)  ->  Abs (  1673,   470)
+	 60: Rel (    25,    29)  ->  Abs (  1698,   499)
+	 61: Rel (     0,    22)  ->  Abs (  1698,   521)
+	 62: Rel (     0,    50)  ->  Abs (  1698,   571)
+	 63: Rel (   -31,    57)  ->  Abs (  1667,   628)
+	 64: Rel (   -23,    42)  ->  Abs (  1644,   670)
+	 65: Rel (   -38,    42)  ->  Abs (  1606,   712)
+	 66: Rel (    67,   109)  ->  Abs (  1673,   821)
+	 67: Rel (    47,   -77)  ->  Abs (  1720,   744)
+	 68: Rel (    10,   -28)  ->  Abs (  1730,   716)
+	 69: Rel (    22,   -63)  ->  Abs (  1752,   653)
+	 70: Rel (     0,  -120)  ->  Abs (  1752,   533)
+
+	Glyph 946: off = 0x00029546, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			132
+	  yMin:			-148
+	  xMax:			1752
+	  yMax:			855
+
+	     0: Flags:		0x0016
+		Glyf Index:	945
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 947: off = 0x00029556, len = 344
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1157
+	  yMax:			821
+
+	EndPoints
+	---------
+	  0:  59
+
+	  Length of Instructions:	170
+	00000: NPUSHB      (23):    53    32    16    17    52     4    13    18    17    41 
+	                            42    34    26    18    27    27    54    42    42    55 
+	                            54    54    55 
+	00025: PUSHW[3]            777    47   751 
+	00032: PUSHB[3]              0     0    34 
+	00036: PUSHW[1]            751 
+	00039: PUSHB[3]              9     9    18 
+	00043: PUSHW[3]            751    17   747 
+	00050: PUSHB[7]              4    50    42    13    27    38    41 
+	00058: PUSHW[3]            762    42   -64 
+	00065: PUSHB[8]              9    14    52    42    42    54    23    26 
+	00074: PUSHW[3]            762    27   -64 
+	00081: NPUSHB      (17):     9    10    52    27    27    54    17    55    55    54 
+	                            64    12    14    52    54    54    50 
+	00100: PUSHW[3]            773     0   752 
+	00107: PUSHB[2]             61    17 
+	00110: MDAP[rd]   
+	00111: SRP0       
+	00112: MIRP[srp0,nmd,rd,1] 
+	00113: MIRP[srp0,md,rd,1] 
+	00114: SHP[rp2,zp1] 
+	00115: MDAP[rd]   
+	00116: CALL       
+	00117: RTHG       
+	00118: IP         
+	00119: MDAP[rd]   
+	00120: SRP1       
+	00121: SRP2       
+	00122: IP         
+	00123: MDAP[rd]   
+	00124: CALL       
+	00125: MIRP[srp0,nmd,rd,0] 
+	00126: IP         
+	00127: SRP2       
+	00128: IP         
+	00129: MDAP[rd]   
+	00130: CALL       
+	00131: MIRP[srp0,nmd,rd,0] 
+	00132: IP         
+	00133: SRP1       
+	00134: IP         
+	00135: SRP1       
+	00136: SRP2       
+	00137: IP         
+	00138: SVTCA[y-axis] 
+	00139: RTG        
+	00140: MIAP[rd+ci] 
+	00141: MIRP[nrp0,md,rd,1] 
+	00142: ALIGNRP    
+	00143: SRP0       
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: ALIGNRP    
+	00146: SRP0       
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: MIAP[rd+ci] 
+	00149: IP         
+	00150: MDAP[rd]   
+	00151: SRP2       
+	00152: IP         
+	00153: MDAP[rd]   
+	00154: SRP1       
+	00155: IP         
+	00156: MDAP[rd]   
+	00157: SRP2       
+	00158: IP         
+	00159: SRP1       
+	00160: SRP2       
+	00161: IP         
+	00162: SRP1       
+	00163: SRP2       
+	00164: IP         
+	00165: IP         
+	00166: IUP[y]     
+	00167: IUP[x]     
+	00168: SVTCA[x-axis] 
+	00169: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual               Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short On
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual               Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short On
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short X-Short On
+	 32:        XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual               Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:        XDual         Y-Short X-Short On
+	 44:        XDual         Y-Short X-Short Off
+	 45:        XDual         Y-Short X-Short On
+	 46:        XDual         Y-Short X-Short Off
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short Off
+	 49:  YDual XDual         Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual               Y-Short X-Short On
+	 53:  YDual               Y-Short X-Short Off
+	 54:  YDual               Y-Short X-Short On
+	 55:  YDual XDual         Y-Short X-Short On
+	 56:        XDual         Y-Short X-Short Off
+	 57:        XDual         Y-Short X-Short On
+	 58:        XDual         Y-Short X-Short Off
+	 59:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1157,   293)  ->  Abs (  1157,   293)
+	  1: Rel (   -77,     0)  ->  Abs (  1080,   293)
+	  2: Rel (   -64,     0)  ->  Abs (  1016,   293)
+	  3: Rel (   -92,    35)  ->  Abs (   924,   328)
+	  4: Rel (   -38,    32)  ->  Abs (   886,   360)
+	  5: Rel (   -47,   -37)  ->  Abs (   839,   323)
+	  6: Rel (   -35,   -12)  ->  Abs (   804,   311)
+	  7: Rel (   -51,   -18)  ->  Abs (   753,   293)
+	  8: Rel (   -89,     0)  ->  Abs (   664,   293)
+	  9: Rel (   -65,     0)  ->  Abs (   599,   293)
+	 10: Rel (   -52,     0)  ->  Abs (   547,   293)
+	 11: Rel (   -52,    20)  ->  Abs (   495,   313)
+	 12: Rel (   -34,    13)  ->  Abs (   461,   326)
+	 13: Rel (   -50,    30)  ->  Abs (   411,   356)
+	 14: Rel (   -48,   -36)  ->  Abs (   363,   320)
+	 15: Rel (   -80,   -27)  ->  Abs (   283,   293)
+	 16: Rel (   -90,     0)  ->  Abs (   193,   293)
+	 17: Rel (  -193,     0)  ->  Abs (     0,   293)
+	 18: Rel (     0,   174)  ->  Abs (     0,   467)
+	 19: Rel (   193,     0)  ->  Abs (   193,   467)
+	 20: Rel (    81,     0)  ->  Abs (   274,   467)
+	 21: Rel (    35,    14)  ->  Abs (   309,   481)
+	 22: Rel (    58,    23)  ->  Abs (   367,   504)
+	 23: Rel (     0,    69)  ->  Abs (   367,   573)
+	 24: Rel (     0,    29)  ->  Abs (   367,   602)
+	 25: Rel (    -6,    58)  ->  Abs (   361,   660)
+	 26: Rel (    -8,    36)  ->  Abs (   353,   696)
+	 27: Rel (    41,    60)  ->  Abs (   394,   756)
+	 28: Rel (    28,   -92)  ->  Abs (   422,   664)
+	 29: Rel (    18,   -42)  ->  Abs (   440,   622)
+	 30: Rel (    32,   -73)  ->  Abs (   472,   549)
+	 31: Rel (    38,   -37)  ->  Abs (   510,   512)
+	 32: Rel (    46,   -45)  ->  Abs (   556,   467)
+	 33: Rel (    64,     0)  ->  Abs (   620,   467)
+	 34: Rel (    67,     0)  ->  Abs (   687,   467)
+	 35: Rel (    75,     0)  ->  Abs (   762,   467)
+	 36: Rel (    36,    23)  ->  Abs (   798,   490)
+	 37: Rel (    40,    26)  ->  Abs (   838,   516)
+	 38: Rel (     0,    57)  ->  Abs (   838,   573)
+	 39: Rel (     0,    31)  ->  Abs (   838,   604)
+	 40: Rel (    -8,    58)  ->  Abs (   830,   662)
+	 41: Rel (    -7,    34)  ->  Abs (   823,   696)
+	 42: Rel (    42,    60)  ->  Abs (   865,   756)
+	 43: Rel (    21,   -94)  ->  Abs (   886,   662)
+	 44: Rel (    27,  -111)  ->  Abs (   913,   551)
+	 45: Rel (    39,   -43)  ->  Abs (   952,   508)
+	 46: Rel (    34,   -38)  ->  Abs (   986,   470)
+	 47: Rel (    58,     0)  ->  Abs (  1044,   470)
+	 48: Rel (    27,     0)  ->  Abs (  1071,   470)
+	 49: Rel (    33,    33)  ->  Abs (  1104,   503)
+	 50: Rel (     0,    26)  ->  Abs (  1104,   529)
+	 51: Rel (     0,    56)  ->  Abs (  1104,   585)
+	 52: Rel (   -41,    62)  ->  Abs (  1063,   647)
+	 53: Rel (    -7,    10)  ->  Abs (  1056,   657)
+	 54: Rel (   -42,    55)  ->  Abs (  1014,   712)
+	 55: Rel (    65,   109)  ->  Abs (  1079,   821)
+	 56: Rel (    41,   -62)  ->  Abs (  1120,   759)
+	 57: Rel (    15,   -45)  ->  Abs (  1135,   714)
+	 58: Rel (    22,   -68)  ->  Abs (  1157,   646)
+	 59: Rel (     0,  -113)  ->  Abs (  1157,   533)
+
+	Glyph 948: off = 0x000296AE, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1157
+	  yMax:			821
+
+	     0: Flags:		0x0016
+		Glyf Index:	947
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 949: off = 0x000296BE, len = 618
+	  numberOfContours:	4
+	  xMin:			132
+	  yMin:			-148
+	  xMax:			1752
+	  yMax:			1465
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  11
+	  3:  82
+
+	  Length of Instructions:	367
+	00000: NPUSHB      (11):    11    16    18    21    52     5    16    18    21    52 
+	                             1 
+	00013: PUSHW[1]            -16 
+	00016: NPUSHB       (9):    18    21    52    76    32    16    17    52    42 
+	00027: PUSHW[1]            -32 
+	00030: NPUSHB      (16):    14    17    52    45    32    11    17    52    50    52 
+	                            11    17    52     0     2     3 
+	00048: PUSHW[1]            770 
+	00051: PUSHB[6]              1     1    11     4     6     7 
+	00058: PUSHW[1]            770 
+	00061: PUSHB[5]              5     5     8    10    11 
+	00067: PUSHW[1]            770 
+	00070: NPUSHB      (16):     9     9    52    77    77    78    70    64    65    56 
+	                            78    78    52    65    65    51 
+	00088: PUSHW[3]            751    52   777 
+	00095: PUSHB[3]             37    43    36 
+	00099: PUSHW[3]            775    70   751 
+	00106: PUSHB[3]             12    12    56 
+	00110: PUSHW[7]            751    21   747    43   751    27   785 
+	00125: PUSHB[3]              1     3     2 
+	00129: PUSHW[1]            769 
+	00132: PUSHB[6]              0     0     8     5     7     4 
+	00139: PUSHW[1]            769 
+	00142: PUSHB[5]              6     6     9    11    10 
+	00148: PUSHW[1]            769 
+	00151: PUSHB[8]              8     8    73    21    16    77    61    64 
+	00160: PUSHW[3]            762    65   -64 
+	00167: NPUSHB      (17):     9    16    52    65    65    77    21    52    52    15 
+	                            51    31    51     2    51    51    47 
+	00186: PUSHW[4]            773    56    21   -64 
+	00195: NPUSHB      (15):     9    13    52    21    21    77    40    78    78    63 
+	                            77     1    77    77    73 
+	00212: NPUSHW      (10):   773    64    12   752    84    37   763    32    36   -64 
+	00234: PUSHB[6]              9    11    52    36    36    40 
+	00241: PUSHW[1]            771 
+	00244: PUSHB[4]              0    31     1    31 
+	00249: PUSHW[1]            298 
+	00252: SCANCTRL   
+	00253: MDAP[rd]   
+	00254: DELTAP1    
+	00255: MIRP[srp0,md,rd,1] 
+	00256: SHP[rp2,zp1] 
+	00257: RTHG       
+	00258: MDAP[rd]   
+	00259: CALL       
+	00260: SMD        
+	00261: MIRP[nrp0,md,rd,1] 
+	00262: RTG        
+	00263: SRP0       
+	00264: MIRP[srp0,nmd,rd,1] 
+	00265: SMD        
+	00266: MIRP[srp0,md,rd,1] 
+	00267: SHP[rp2,zp1] 
+	00268: MDAP[rd]   
+	00269: DELTAP1    
+	00270: RTHG       
+	00271: IP         
+	00272: MDAP[rd]   
+	00273: RTG        
+	00274: SRP1       
+	00275: SRP2       
+	00276: IP         
+	00277: MDAP[rd]   
+	00278: CALL       
+	00279: ALIGNRP    
+	00280: MIRP[srp0,md,rd,1] 
+	00281: SHP[rp2,zp1] 
+	00282: MDAP[rd]   
+	00283: DELTAP1    
+	00284: RTHG       
+	00285: IP         
+	00286: MDAP[rd]   
+	00287: SRP1       
+	00288: SRP2       
+	00289: IP         
+	00290: MDAP[rd]   
+	00291: CALL       
+	00292: MIRP[srp0,nmd,rd,0] 
+	00293: IP         
+	00294: SRP2       
+	00295: IP         
+	00296: RTG        
+	00297: SRP1       
+	00298: SRP2       
+	00299: IP         
+	00300: MDAP[rd]   
+	00301: MIRP[srp0,md,rd,1] 
+	00302: IP         
+	00303: IP         
+	00304: SHP[rp1,zp0] 
+	00305: MDAP[rd]   
+	00306: MIRP[nrp0,md,rd,1] 
+	00307: IP         
+	00308: IP         
+	00309: SRP1       
+	00310: SHP[rp1,zp0] 
+	00311: MDAP[rd]   
+	00312: MIRP[srp0,md,rd,1] 
+	00313: IP         
+	00314: IP         
+	00315: SVTCA[y-axis] 
+	00316: MIAP[rd+ci] 
+	00317: MIRP[nrp0,md,rd,1] 
+	00318: MIAP[rd+ci] 
+	00319: MIRP[nrp0,md,rd,1] 
+	00320: ALIGNRP    
+	00321: SRP0       
+	00322: MIRP[nrp0,md,rd,1] 
+	00323: MIAP[rd+ci] 
+	00324: SRP2       
+	00325: IP         
+	00326: MIAP[rd+ci] 
+	00327: MIRP[srp0,md,rd,1] 
+	00328: IP         
+	00329: MDAP[rd]   
+	00330: SRP2       
+	00331: IP         
+	00332: MDAP[rd]   
+	00333: SRP1       
+	00334: SRP2       
+	00335: IP         
+	00336: SRP1       
+	00337: SRP2       
+	00338: IP         
+	00339: MDAP[rd]   
+	00340: SRP1       
+	00341: SHP[rp1,zp0] 
+	00342: MDAP[rd]   
+	00343: MIRP[nrp0,md,rd,1] 
+	00344: IP         
+	00345: IP         
+	00346: SHP[rp1,zp0] 
+	00347: MDAP[rd]   
+	00348: MIRP[nrp0,md,rd,1] 
+	00349: IP         
+	00350: IP         
+	00351: SRP1       
+	00352: SHP[rp1,zp0] 
+	00353: MDAP[rd]   
+	00354: MIRP[nrp0,md,rd,1] 
+	00355: IP         
+	00356: IP         
+	00357: IUP[y]     
+	00358: IUP[x]     
+	00359: SVTCA[x-axis] 
+	00360: CALL       
+	00361: CALL       
+	00362: CALL       
+	00363: CALL       
+	00364: CALL       
+	00365: CALL       
+	00366: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:                      Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:                      Y-Short X-Short On
+	  9:                      Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:                                      On
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short X-Short On
+	 24:                      Y-Short X-Short Off
+	 25:                      Y-Short X-Short On
+	 26:                      Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:        XDual         Y-Short X-Short On
+	 38:                      Y-Short X-Short Off
+	 39:                      Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:        XDual         Y-Short X-Short Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:  YDual XDual         Y-Short X-Short On
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual               Y-Short X-Short On
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual               Y-Short X-Short On
+	 52:  YDual XDual         Y-Short X-Short On
+	 53:        XDual         Y-Short X-Short Off
+	 54:        XDual         Y-Short X-Short On
+	 55:        XDual         Y-Short X-Short Off
+	 56:        XDual         Y-Short         On
+	 57:  YDual XDual                 X-Short On
+	 58:  YDual XDual                 X-Short Off
+	 59:  YDual XDual         Y-Short X-Short On
+	 60:  YDual XDual         Y-Short X-Short Off
+	 61:  YDual XDual         Y-Short         On
+	 62:  YDual XDual         Y-Short         Off
+	 63:  YDual               Y-Short X-Short Off
+	 64:  YDual               Y-Short X-Short On
+	 65:  YDual XDual         Y-Short X-Short On
+	 66:        XDual         Y-Short X-Short On
+	 67:        XDual         Y-Short X-Short Off
+	 68:        XDual         Y-Short X-Short On
+	 69:        XDual         Y-Short X-Short Off
+	 70:  YDual XDual                 X-Short On
+	 71:  YDual XDual                 X-Short Off
+	 72:  YDual XDual         Y-Short X-Short Off
+	 73:  YDual XDual         Y-Short         On
+	 74:  YDual XDual         Y-Short         Off
+	 75:  YDual               Y-Short X-Short On
+	 76:  YDual               Y-Short X-Short Off
+	 77:  YDual               Y-Short X-Short On
+	 78:  YDual XDual         Y-Short X-Short On
+	 79:        XDual         Y-Short X-Short Off
+	 80:        XDual         Y-Short X-Short On
+	 81:        XDual         Y-Short X-Short Off
+	 82:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1476,  1379)  ->  Abs (  1476,  1379)
+	  1: Rel (   -77,  -146)  ->  Abs (  1399,  1233)
+	  2: Rel (  -160,    86)  ->  Abs (  1239,  1319)
+	  3: Rel (    74,   146)  ->  Abs (  1313,  1465)
+	  4: Rel (   360,  -264)  ->  Abs (  1673,  1201)
+	  5: Rel (   -78,  -144)  ->  Abs (  1595,  1057)
+	  6: Rel (  -162,    86)  ->  Abs (  1433,  1143)
+	  7: Rel (    75,   143)  ->  Abs (  1508,  1286)
+	  8: Rel (   -65,  -175)  ->  Abs (  1443,  1111)
+	  9: Rel (   -76,  -145)  ->  Abs (  1367,   966)
+	 10: Rel (  -162,    84)  ->  Abs (  1205,  1050)
+	 11: Rel (    74,   145)  ->  Abs (  1279,  1195)
+	 12: Rel (   473,  -902)  ->  Abs (  1752,   293)
+	 13: Rel (   -79,     0)  ->  Abs (  1673,   293)
+	 14: Rel (   -60,     0)  ->  Abs (  1613,   293)
+	 15: Rel (   -91,    33)  ->  Abs (  1522,   326)
+	 16: Rel (   -47,    36)  ->  Abs (  1475,   362)
+	 17: Rel (   -42,   -38)  ->  Abs (  1433,   324)
+	 18: Rel (   -33,   -13)  ->  Abs (  1400,   311)
+	 19: Rel (   -47,   -18)  ->  Abs (  1353,   293)
+	 20: Rel (   -90,     0)  ->  Abs (  1263,   293)
+	 21: Rel (  -123,     0)  ->  Abs (  1140,   293)
+	 22: Rel (     0,   -92)  ->  Abs (  1140,   201)
+	 23: Rel (   -44,   -87)  ->  Abs (  1096,   114)
+	 24: Rel (   -57,  -113)  ->  Abs (  1039,     1)
+	 25: Rel (  -117,   -66)  ->  Abs (   922,   -65)
+	 26: Rel (  -147,   -83)  ->  Abs (   775,  -148)
+	 27: Rel (  -221,     0)  ->  Abs (   554,  -148)
+	 28: Rel (  -200,     0)  ->  Abs (   354,  -148)
+	 29: Rel (  -106,    70)  ->  Abs (   248,   -78)
+	 30: Rel (  -116,    77)  ->  Abs (   132,    -1)
+	 31: Rel (     0,   159)  ->  Abs (   132,   158)
+	 32: Rel (     0,    86)  ->  Abs (   132,   244)
+	 33: Rel (    42,   176)  ->  Abs (   174,   420)
+	 34: Rel (    36,    89)  ->  Abs (   210,   509)
+	 35: Rel (    22,    54)  ->  Abs (   232,   563)
+	 36: Rel (    54,   112)  ->  Abs (   286,   675)
+	 37: Rel (    40,   -18)  ->  Abs (   326,   657)
+	 38: Rel (   -70,  -144)  ->  Abs (   256,   513)
+	 39: Rel (   -45,  -166)  ->  Abs (   211,   347)
+	 40: Rel (     0,   -69)  ->  Abs (   211,   278)
+	 41: Rel (     0,  -124)  ->  Abs (   211,   154)
+	 42: Rel (   177,  -129)  ->  Abs (   388,    25)
+	 43: Rel (   164,     0)  ->  Abs (   552,    25)
+	 44: Rel (   192,     0)  ->  Abs (   744,    25)
+	 45: Rel (   151,    67)  ->  Abs (   895,    92)
+	 46: Rel (   188,    83)  ->  Abs (  1083,   175)
+	 47: Rel (     0,   149)  ->  Abs (  1083,   324)
+	 48: Rel (     0,   100)  ->  Abs (  1083,   424)
+	 49: Rel (   -37,    90)  ->  Abs (  1046,   514)
+	 50: Rel (   -29,    71)  ->  Abs (  1017,   585)
+	 51: Rel (   -53,    65)  ->  Abs (   964,   650)
+	 52: Rel (    83,   205)  ->  Abs (  1047,   855)
+	 53: Rel (    50,   -82)  ->  Abs (  1097,   773)
+	 54: Rel (    18,   -63)  ->  Abs (  1115,   710)
+	 55: Rel (    25,   -89)  ->  Abs (  1140,   621)
+	 56: Rel (     0,  -154)  ->  Abs (  1140,   467)
+	 57: Rel (   123,     0)  ->  Abs (  1263,   467)
+	 58: Rel (    95,     0)  ->  Abs (  1358,   467)
+	 59: Rel (    40,    29)  ->  Abs (  1398,   496)
+	 60: Rel (    35,    25)  ->  Abs (  1433,   521)
+	 61: Rel (     0,    52)  ->  Abs (  1433,   573)
+	 62: Rel (     0,    29)  ->  Abs (  1433,   602)
+	 63: Rel (    -7,    59)  ->  Abs (  1426,   661)
+	 64: Rel (    -7,    35)  ->  Abs (  1419,   696)
+	 65: Rel (    40,    60)  ->  Abs (  1459,   756)
+	 66: Rel (    16,   -97)  ->  Abs (  1475,   659)
+	 67: Rel (    22,   -98)  ->  Abs (  1497,   561)
+	 68: Rel (    37,   -43)  ->  Abs (  1534,   518)
+	 69: Rel (    41,   -48)  ->  Abs (  1575,   470)
+	 70: Rel (    75,     0)  ->  Abs (  1650,   470)
+	 71: Rel (    23,     0)  ->  Abs (  1673,   470)
+	 72: Rel (    25,    29)  ->  Abs (  1698,   499)
+	 73: Rel (     0,    22)  ->  Abs (  1698,   521)
+	 74: Rel (     0,    50)  ->  Abs (  1698,   571)
+	 75: Rel (   -31,    57)  ->  Abs (  1667,   628)
+	 76: Rel (   -23,    42)  ->  Abs (  1644,   670)
+	 77: Rel (   -38,    42)  ->  Abs (  1606,   712)
+	 78: Rel (    67,   109)  ->  Abs (  1673,   821)
+	 79: Rel (    47,   -77)  ->  Abs (  1720,   744)
+	 80: Rel (    10,   -28)  ->  Abs (  1730,   716)
+	 81: Rel (    22,   -63)  ->  Abs (  1752,   653)
+	 82: Rel (     0,  -120)  ->  Abs (  1752,   533)
+
+	Glyph 950: off = 0x00029928, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			132
+	  yMin:			-148
+	  xMax:			1752
+	  yMax:			1465
+
+	     0: Flags:		0x0016
+		Glyf Index:	949
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 951: off = 0x00029938, len = 506
+	  numberOfContours:	4
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1157
+	  yMax:			1465
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  11
+	  3:  71
+
+	  Length of Instructions:	286
+	00000: NPUSHB      (11):    11    16    18    21    52     5    16    18    21    52 
+	                             1 
+	00013: PUSHW[1]            -16 
+	00016: NPUSHB      (11):    18    21    52    65    32    16    17    52     0     2 
+	                             3 
+	00029: PUSHW[1]            770 
+	00032: PUSHB[6]              1     1    11     4     6     7 
+	00039: PUSHW[1]            770 
+	00042: PUSHB[5]              5     5     8    10    11 
+	00048: PUSHW[1]            770 
+	00051: NPUSHB      (21):     9     9    67    16    25    30    29    53    54    46 
+	                            38    30    39    39    66    54    54    67    66    66 
+	                            67 
+	00074: PUSHW[3]            777    59   751 
+	00081: PUSHB[3]             12    12    46 
+	00085: PUSHW[1]            751 
+	00088: PUSHB[3]             21    21    30 
+	00092: PUSHW[3]            751    29   747 
+	00099: PUSHB[3]              1     3     2 
+	00103: PUSHW[1]            769 
+	00106: PUSHB[6]              0     0     8     5     7     4 
+	00113: PUSHW[1]            769 
+	00116: PUSHB[5]              6     6     9    11    10 
+	00122: PUSHW[1]            769 
+	00125: NPUSHB      (10):     8     8    53    16    62    54    25    39    50    53 
+	00137: PUSHW[3]            762    54   -64 
+	00144: PUSHB[8]              9    14    52    54    54    66    35    38 
+	00153: PUSHW[3]            762    39   -64 
+	00160: NPUSHB      (17):     9    10    52    39    39    66    29    67    67    66 
+	                            64    12    14    52    66    66    62 
+	00179: PUSHW[3]            773    12   752 
+	00186: PUSHB[2]             73    29 
+	00189: MDAP[rd]   
+	00190: SRP0       
+	00191: MIRP[srp0,nmd,rd,1] 
+	00192: MIRP[srp0,md,rd,1] 
+	00193: SHP[rp2,zp1] 
+	00194: MDAP[rd]   
+	00195: CALL       
+	00196: RTHG       
+	00197: IP         
+	00198: MDAP[rd]   
+	00199: SRP1       
+	00200: SRP2       
+	00201: IP         
+	00202: MDAP[rd]   
+	00203: CALL       
+	00204: MIRP[srp0,nmd,rd,0] 
+	00205: IP         
+	00206: SRP2       
+	00207: IP         
+	00208: MDAP[rd]   
+	00209: CALL       
+	00210: MIRP[srp0,nmd,rd,0] 
+	00211: IP         
+	00212: SRP1       
+	00213: IP         
+	00214: SRP1       
+	00215: SRP2       
+	00216: IP         
+	00217: RTG        
+	00218: SRP2       
+	00219: IP         
+	00220: MDAP[rd]   
+	00221: MIRP[srp0,md,rd,1] 
+	00222: IP         
+	00223: IP         
+	00224: SHP[rp1,zp0] 
+	00225: MDAP[rd]   
+	00226: MIRP[nrp0,md,rd,1] 
+	00227: IP         
+	00228: IP         
+	00229: SRP1       
+	00230: SHP[rp1,zp0] 
+	00231: MDAP[rd]   
+	00232: MIRP[srp0,md,rd,1] 
+	00233: IP         
+	00234: IP         
+	00235: SVTCA[y-axis] 
+	00236: MIAP[rd+ci] 
+	00237: MIRP[nrp0,md,rd,1] 
+	00238: ALIGNRP    
+	00239: SRP0       
+	00240: MIRP[nrp0,md,rd,1] 
+	00241: ALIGNRP    
+	00242: SRP0       
+	00243: MIRP[nrp0,md,rd,1] 
+	00244: MIAP[rd+ci] 
+	00245: IP         
+	00246: MDAP[rd]   
+	00247: SRP2       
+	00248: IP         
+	00249: MDAP[rd]   
+	00250: SRP1       
+	00251: IP         
+	00252: MDAP[rd]   
+	00253: SRP2       
+	00254: IP         
+	00255: SRP1       
+	00256: SRP2       
+	00257: IP         
+	00258: SRP1       
+	00259: SRP2       
+	00260: IP         
+	00261: IP         
+	00262: SRP1       
+	00263: SHP[rp1,zp0] 
+	00264: MDAP[rd]   
+	00265: MIRP[nrp0,md,rd,1] 
+	00266: IP         
+	00267: IP         
+	00268: SHP[rp1,zp0] 
+	00269: MDAP[rd]   
+	00270: MIRP[nrp0,md,rd,1] 
+	00271: IP         
+	00272: IP         
+	00273: SRP1       
+	00274: SHP[rp1,zp0] 
+	00275: MDAP[rd]   
+	00276: MIRP[nrp0,md,rd,1] 
+	00277: IP         
+	00278: IP         
+	00279: IUP[y]     
+	00280: IUP[x]     
+	00281: SVTCA[x-axis] 
+	00282: CALL       
+	00283: CALL       
+	00284: CALL       
+	00285: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:                      Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:                      Y-Short X-Short On
+	  9:                      Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:                                      On
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short On
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual               Y-Short X-Short On
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short X-Short On
+	 42:        XDual         Y-Short X-Short Off
+	 43:        XDual         Y-Short X-Short On
+	 44:        XDual         Y-Short X-Short Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:  YDual XDual         Y-Short X-Short On
+	 49:  YDual XDual         Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual               Y-Short X-Short Off
+	 53:  YDual               Y-Short X-Short On
+	 54:  YDual XDual         Y-Short X-Short On
+	 55:        XDual         Y-Short X-Short On
+	 56:        XDual         Y-Short X-Short Off
+	 57:        XDual         Y-Short X-Short On
+	 58:        XDual         Y-Short X-Short Off
+	 59:  YDual XDual                 X-Short On
+	 60:  YDual XDual                 X-Short Off
+	 61:  YDual XDual         Y-Short X-Short Off
+	 62:  YDual XDual         Y-Short         On
+	 63:  YDual XDual         Y-Short         Off
+	 64:  YDual               Y-Short X-Short On
+	 65:  YDual               Y-Short X-Short Off
+	 66:  YDual               Y-Short X-Short On
+	 67:  YDual XDual         Y-Short X-Short On
+	 68:        XDual         Y-Short X-Short Off
+	 69:        XDual         Y-Short X-Short On
+	 70:        XDual         Y-Short X-Short Off
+	 71:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   871,  1379)  ->  Abs (   871,  1379)
+	  1: Rel (   -77,  -146)  ->  Abs (   794,  1233)
+	  2: Rel (  -160,    86)  ->  Abs (   634,  1319)
+	  3: Rel (    74,   146)  ->  Abs (   708,  1465)
+	  4: Rel (   360,  -264)  ->  Abs (  1068,  1201)
+	  5: Rel (   -78,  -144)  ->  Abs (   990,  1057)
+	  6: Rel (  -162,    86)  ->  Abs (   828,  1143)
+	  7: Rel (    75,   143)  ->  Abs (   903,  1286)
+	  8: Rel (   -65,  -175)  ->  Abs (   838,  1111)
+	  9: Rel (   -76,  -145)  ->  Abs (   762,   966)
+	 10: Rel (  -162,    84)  ->  Abs (   600,  1050)
+	 11: Rel (    74,   145)  ->  Abs (   674,  1195)
+	 12: Rel (   483,  -902)  ->  Abs (  1157,   293)
+	 13: Rel (   -77,     0)  ->  Abs (  1080,   293)
+	 14: Rel (   -64,     0)  ->  Abs (  1016,   293)
+	 15: Rel (   -92,    35)  ->  Abs (   924,   328)
+	 16: Rel (   -38,    32)  ->  Abs (   886,   360)
+	 17: Rel (   -47,   -37)  ->  Abs (   839,   323)
+	 18: Rel (   -35,   -12)  ->  Abs (   804,   311)
+	 19: Rel (   -51,   -18)  ->  Abs (   753,   293)
+	 20: Rel (   -89,     0)  ->  Abs (   664,   293)
+	 21: Rel (   -65,     0)  ->  Abs (   599,   293)
+	 22: Rel (   -52,     0)  ->  Abs (   547,   293)
+	 23: Rel (   -52,    20)  ->  Abs (   495,   313)
+	 24: Rel (   -34,    13)  ->  Abs (   461,   326)
+	 25: Rel (   -50,    30)  ->  Abs (   411,   356)
+	 26: Rel (   -48,   -36)  ->  Abs (   363,   320)
+	 27: Rel (   -80,   -27)  ->  Abs (   283,   293)
+	 28: Rel (   -90,     0)  ->  Abs (   193,   293)
+	 29: Rel (  -193,     0)  ->  Abs (     0,   293)
+	 30: Rel (     0,   174)  ->  Abs (     0,   467)
+	 31: Rel (   193,     0)  ->  Abs (   193,   467)
+	 32: Rel (    81,     0)  ->  Abs (   274,   467)
+	 33: Rel (    35,    14)  ->  Abs (   309,   481)
+	 34: Rel (    58,    23)  ->  Abs (   367,   504)
+	 35: Rel (     0,    69)  ->  Abs (   367,   573)
+	 36: Rel (     0,    29)  ->  Abs (   367,   602)
+	 37: Rel (    -6,    58)  ->  Abs (   361,   660)
+	 38: Rel (    -8,    36)  ->  Abs (   353,   696)
+	 39: Rel (    41,    60)  ->  Abs (   394,   756)
+	 40: Rel (    28,   -92)  ->  Abs (   422,   664)
+	 41: Rel (    18,   -42)  ->  Abs (   440,   622)
+	 42: Rel (    32,   -73)  ->  Abs (   472,   549)
+	 43: Rel (    38,   -37)  ->  Abs (   510,   512)
+	 44: Rel (    46,   -45)  ->  Abs (   556,   467)
+	 45: Rel (    64,     0)  ->  Abs (   620,   467)
+	 46: Rel (    67,     0)  ->  Abs (   687,   467)
+	 47: Rel (    75,     0)  ->  Abs (   762,   467)
+	 48: Rel (    36,    23)  ->  Abs (   798,   490)
+	 49: Rel (    40,    26)  ->  Abs (   838,   516)
+	 50: Rel (     0,    57)  ->  Abs (   838,   573)
+	 51: Rel (     0,    31)  ->  Abs (   838,   604)
+	 52: Rel (    -8,    58)  ->  Abs (   830,   662)
+	 53: Rel (    -7,    34)  ->  Abs (   823,   696)
+	 54: Rel (    42,    60)  ->  Abs (   865,   756)
+	 55: Rel (    21,   -94)  ->  Abs (   886,   662)
+	 56: Rel (    27,  -111)  ->  Abs (   913,   551)
+	 57: Rel (    39,   -43)  ->  Abs (   952,   508)
+	 58: Rel (    34,   -38)  ->  Abs (   986,   470)
+	 59: Rel (    58,     0)  ->  Abs (  1044,   470)
+	 60: Rel (    27,     0)  ->  Abs (  1071,   470)
+	 61: Rel (    33,    33)  ->  Abs (  1104,   503)
+	 62: Rel (     0,    26)  ->  Abs (  1104,   529)
+	 63: Rel (     0,    56)  ->  Abs (  1104,   585)
+	 64: Rel (   -41,    62)  ->  Abs (  1063,   647)
+	 65: Rel (    -7,    10)  ->  Abs (  1056,   657)
+	 66: Rel (   -42,    55)  ->  Abs (  1014,   712)
+	 67: Rel (    65,   109)  ->  Abs (  1079,   821)
+	 68: Rel (    41,   -62)  ->  Abs (  1120,   759)
+	 69: Rel (    15,   -45)  ->  Abs (  1135,   714)
+	 70: Rel (    22,   -68)  ->  Abs (  1157,   646)
+	 71: Rel (     0,  -113)  ->  Abs (  1157,   533)
+
+	Glyph 952: off = 0x00029B32, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1157
+	  yMax:			1465
+
+	     0: Flags:		0x0016
+		Glyf Index:	951
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 953: off = 0x00029B42, len = 362
+	  numberOfContours:	2
+	  xMin:			132
+	  yMin:			-148
+	  xMax:			2319
+	  yMax:			855
+
+	EndPoints
+	---------
+	  0:  49
+	  1:  62
+
+	  Length of Instructions:	173
+	00000: PUSHW[2]             20   -42 
+	00005: NPUSHB      (14):    14    17    52    23    52    11    17    52    28    52 
+	                            11    17    52    53 
+	00021: PUSHW[1]            751 
+	00024: PUSHB[3]             45    45    29 
+	00028: PUSHW[3]            751    30   777 
+	00035: PUSHB[3]             15    21    14 
+	00039: PUSHW[3]            775    60   751 
+	00046: PUSHB[3]              0     0    34 
+	00050: PUSHW[7]            751     1   747    21   751     5   785 
+	00065: PUSHB[8]             59    50     1    30    30    29    29    25 
+	00074: PUSHW[1]            773 
+	00077: PUSHB[7]              1    34    34     1     1    18    50 
+	00085: NPUSHW      (10):   764    64     0   752    64    15   763    32    14   -64 
+	00107: PUSHB[6]              9    11    52    14    14    18 
+	00114: PUSHW[3]            771     9   298 
+	00121: SCANCTRL   
+	00122: MDAP[rd]   
+	00123: MIRP[srp0,md,rd,1] 
+	00124: SHP[rp2,zp1] 
+	00125: RTHG       
+	00126: MDAP[rd]   
+	00127: CALL       
+	00128: SMD        
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: RTG        
+	00131: SRP0       
+	00132: MIRP[srp0,nmd,rd,1] 
+	00133: SMD        
+	00134: MIRP[nrp0,md,rd,1] 
+	00135: SRP1       
+	00136: IP         
+	00137: MDAP[rd]   
+	00138: SHP[rp1,zp0] 
+	00139: MDAP[rd]   
+	00140: SRP0       
+	00141: MIRP[srp0,md,rd,1] 
+	00142: SHP[rp2,zp1] 
+	00143: MDAP[rd]   
+	00144: RTHG       
+	00145: IP         
+	00146: MDAP[rd]   
+	00147: SRP1       
+	00148: SRP2       
+	00149: IP         
+	00150: SVTCA[y-axis] 
+	00151: RTG        
+	00152: MIAP[rd+ci] 
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: MIAP[rd+ci] 
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: ALIGNRP    
+	00157: SRP0       
+	00158: MIRP[nrp0,md,rd,1] 
+	00159: MIAP[rd+ci] 
+	00160: SRP2       
+	00161: IP         
+	00162: MIAP[rd+ci] 
+	00163: MIRP[srp0,md,rd,1] 
+	00164: IP         
+	00165: MDAP[rd]   
+	00166: MIRP[nrp0,md,rd,1] 
+	00167: IUP[y]     
+	00168: IUP[x]     
+	00169: SVTCA[x-axis] 
+	00170: CALL       
+	00171: CALL       
+	00172: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short On
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                               On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:  YDual XDual         Y-Short X-Short On
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:        XDual         Y-Short X-Short On
+	 48:        XDual         Y-Short X-Short Off
+	 49:        XDual         Y-Short         On
+	 50:                      Y-Short X-Short On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual               Y-Short X-Short Off
+	 53:  YDual                       X-Short On
+	 54:  YDual                       X-Short Off
+	 55:                      Y-Short X-Short On
+	 56:                      Y-Short X-Short Off
+	 57:                      Y-Short X-Short On
+	 58:                      Y-Short X-Short Off
+	 59:                      Y-Short X-Short On
+	 60:  YDual                               On
+	 61:  YDual XDual                 X-Short Off
+	 62:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  2319,   293)  ->  Abs (  2319,   293)
+	  1: Rel ( -1188,     0)  ->  Abs (  1131,   293)
+	  2: Rel (   -30,  -208)  ->  Abs (  1101,    85)
+	  3: Rel (  -114,  -104)  ->  Abs (   987,   -19)
+	  4: Rel (  -142,  -129)  ->  Abs (   845,  -148)
+	  5: Rel (  -291,     0)  ->  Abs (   554,  -148)
+	  6: Rel (  -200,     0)  ->  Abs (   354,  -148)
+	  7: Rel (  -106,    70)  ->  Abs (   248,   -78)
+	  8: Rel (  -116,    77)  ->  Abs (   132,    -1)
+	  9: Rel (     0,   159)  ->  Abs (   132,   158)
+	 10: Rel (     0,    86)  ->  Abs (   132,   244)
+	 11: Rel (    42,   176)  ->  Abs (   174,   420)
+	 12: Rel (    36,    89)  ->  Abs (   210,   509)
+	 13: Rel (    22,    54)  ->  Abs (   232,   563)
+	 14: Rel (    54,   112)  ->  Abs (   286,   675)
+	 15: Rel (    40,   -18)  ->  Abs (   326,   657)
+	 16: Rel (   -70,  -144)  ->  Abs (   256,   513)
+	 17: Rel (   -45,  -166)  ->  Abs (   211,   347)
+	 18: Rel (     0,   -69)  ->  Abs (   211,   278)
+	 19: Rel (     0,  -124)  ->  Abs (   211,   154)
+	 20: Rel (   177,  -129)  ->  Abs (   388,    25)
+	 21: Rel (   164,     0)  ->  Abs (   552,    25)
+	 22: Rel (   192,     0)  ->  Abs (   744,    25)
+	 23: Rel (   151,    67)  ->  Abs (   895,    92)
+	 24: Rel (   188,    83)  ->  Abs (  1083,   175)
+	 25: Rel (     0,   149)  ->  Abs (  1083,   324)
+	 26: Rel (     0,   100)  ->  Abs (  1083,   424)
+	 27: Rel (   -37,    90)  ->  Abs (  1046,   514)
+	 28: Rel (   -29,    71)  ->  Abs (  1017,   585)
+	 29: Rel (   -53,    65)  ->  Abs (   964,   650)
+	 30: Rel (    83,   205)  ->  Abs (  1047,   855)
+	 31: Rel (    50,   -82)  ->  Abs (  1097,   773)
+	 32: Rel (    18,   -63)  ->  Abs (  1115,   710)
+	 33: Rel (    25,   -89)  ->  Abs (  1140,   621)
+	 34: Rel (     0,  -154)  ->  Abs (  1140,   467)
+	 35: Rel (    18,     0)  ->  Abs (  1158,   467)
+	 36: Rel (   119,     0)  ->  Abs (  1277,   467)
+	 37: Rel (   102,    38)  ->  Abs (  1379,   505)
+	 38: Rel (    88,    33)  ->  Abs (  1467,   538)
+	 39: Rel (    97,    71)  ->  Abs (  1564,   609)
+	 40: Rel (   148,   103)  ->  Abs (  1712,   712)
+	 41: Rel (    29,    19)  ->  Abs (  1741,   731)
+	 42: Rel (    82,    52)  ->  Abs (  1823,   783)
+	 43: Rel (    65,    22)  ->  Abs (  1888,   805)
+	 44: Rel (    74,    25)  ->  Abs (  1962,   830)
+	 45: Rel (    89,     0)  ->  Abs (  2051,   830)
+	 46: Rel (   137,     0)  ->  Abs (  2188,   830)
+	 47: Rel (    68,   -79)  ->  Abs (  2256,   751)
+	 48: Rel (    63,   -73)  ->  Abs (  2319,   678)
+	 49: Rel (     0,  -132)  ->  Abs (  2319,   546)
+	 50: Rel (  -162,    -2)  ->  Abs (  2157,   544)
+	 51: Rel (     0,    49)  ->  Abs (  2157,   593)
+	 52: Rel (  -123,    55)  ->  Abs (  2034,   648)
+	 53: Rel (   -82,     0)  ->  Abs (  1952,   648)
+	 54: Rel (   -72,     0)  ->  Abs (  1880,   648)
+	 55: Rel (   -89,   -32)  ->  Abs (  1791,   616)
+	 56: Rel (   -63,   -23)  ->  Abs (  1728,   593)
+	 57: Rel (   -97,   -50)  ->  Abs (  1631,   543)
+	 58: Rel (   -73,   -38)  ->  Abs (  1558,   505)
+	 59: Rel (   -72,   -38)  ->  Abs (  1486,   467)
+	 60: Rel (   461,     0)  ->  Abs (  1947,   467)
+	 61: Rel (    96,     0)  ->  Abs (  2043,   467)
+	 62: Rel (   114,    39)  ->  Abs (  2157,   506)
+
+	Glyph 954: off = 0x00029CAC, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			132
+	  yMin:			-148
+	  xMax:			2319
+	  yMax:			855
+
+	     0: Flags:		0x0016
+		Glyf Index:	953
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 955: off = 0x00029CBC, len = 240
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1803
+	  yMax:			830
+
+	EndPoints
+	---------
+	  0:  37
+	  1:  48
+
+	  Length of Instructions:	91
+	00000: PUSHB[8]             18    19     5    10     9    19    19    33 
+	00009: PUSHW[1]            751 
+	00012: PUSHB[3]             41    41    45 
+	00016: PUSHW[3]            751    23   751 
+	00023: PUSHB[3]              1     1    10 
+	00027: PUSHW[3]            751     9   747 
+	00034: PUSHB[5]             45     5    38    15    18 
+	00040: PUSHW[1]            762 
+	00043: PUSHB[4]             19    19     9    38 
+	00048: PUSHW[3]            764     0   752 
+	00055: PUSHB[2]             50     9 
+	00058: MDAP[rd]   
+	00059: SRP0       
+	00060: MIRP[srp0,nmd,rd,1] 
+	00061: MIRP[nrp0,md,rd,1] 
+	00062: RTHG       
+	00063: SRP1       
+	00064: IP         
+	00065: MDAP[rd]   
+	00066: MIRP[srp0,nmd,rd,0] 
+	00067: IP         
+	00068: SRP2       
+	00069: IP         
+	00070: IP         
+	00071: SVTCA[y-axis] 
+	00072: RTG        
+	00073: MIAP[rd+ci] 
+	00074: MIRP[nrp0,md,rd,1] 
+	00075: ALIGNRP    
+	00076: SRP0       
+	00077: MIRP[nrp0,md,rd,1] 
+	00078: MIRP[srp0,md,rd,1] 
+	00079: SHP[rp2,zp1] 
+	00080: MDAP[rd]   
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: IP         
+	00083: MDAP[rd]   
+	00084: SRP1       
+	00085: SRP2       
+	00086: IP         
+	00087: SRP1       
+	00088: IP         
+	00089: IUP[y]     
+	00090: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual               Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short X-Short On
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:                      Y-Short X-Short On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:                      Y-Short X-Short On
+	 44:                      Y-Short X-Short Off
+	 45:                      Y-Short X-Short On
+	 46:  YDual                               On
+	 47:  YDual XDual                 X-Short Off
+	 48:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1803,   293)  ->  Abs (  1803,   293)
+	  1: Rel ( -1202,     0)  ->  Abs (   601,   293)
+	  2: Rel (   -54,     0)  ->  Abs (   547,   293)
+	  3: Rel (   -49,    18)  ->  Abs (   498,   311)
+	  4: Rel (   -37,    14)  ->  Abs (   461,   325)
+	  5: Rel (   -50,    31)  ->  Abs (   411,   356)
+	  6: Rel (   -42,   -36)  ->  Abs (   369,   320)
+	  7: Rel (   -84,   -27)  ->  Abs (   285,   293)
+	  8: Rel (   -92,     0)  ->  Abs (   193,   293)
+	  9: Rel (  -193,     0)  ->  Abs (     0,   293)
+	 10: Rel (     0,   174)  ->  Abs (     0,   467)
+	 11: Rel (   193,     0)  ->  Abs (   193,   467)
+	 12: Rel (    81,     0)  ->  Abs (   274,   467)
+	 13: Rel (    35,    14)  ->  Abs (   309,   481)
+	 14: Rel (    58,    23)  ->  Abs (   367,   504)
+	 15: Rel (     0,    69)  ->  Abs (   367,   573)
+	 16: Rel (     0,    29)  ->  Abs (   367,   602)
+	 17: Rel (    -7,    59)  ->  Abs (   360,   661)
+	 18: Rel (    -7,    35)  ->  Abs (   353,   696)
+	 19: Rel (    41,    60)  ->  Abs (   394,   756)
+	 20: Rel (    35,  -136)  ->  Abs (   429,   620)
+	 21: Rel (    61,   -74)  ->  Abs (   490,   546)
+	 22: Rel (    65,   -79)  ->  Abs (   555,   467)
+	 23: Rel (    88,     0)  ->  Abs (   643,   467)
+	 24: Rel (    84,     0)  ->  Abs (   727,   467)
+	 25: Rel (   113,    38)  ->  Abs (   840,   505)
+	 26: Rel (   122,    41)  ->  Abs (   962,   546)
+	 27: Rel (    88,    63)  ->  Abs (  1050,   609)
+	 28: Rel (   143,   102)  ->  Abs (  1193,   711)
+	 29: Rel (    32,    20)  ->  Abs (  1225,   731)
+	 30: Rel (    81,    52)  ->  Abs (  1306,   783)
+	 31: Rel (    66,    22)  ->  Abs (  1372,   805)
+	 32: Rel (    74,    25)  ->  Abs (  1446,   830)
+	 33: Rel (    88,     0)  ->  Abs (  1534,   830)
+	 34: Rel (   136,     0)  ->  Abs (  1670,   830)
+	 35: Rel (    69,   -79)  ->  Abs (  1739,   751)
+	 36: Rel (    64,   -73)  ->  Abs (  1803,   678)
+	 37: Rel (     0,  -132)  ->  Abs (  1803,   546)
+	 38: Rel (  -163,    -2)  ->  Abs (  1640,   544)
+	 39: Rel (     0,    49)  ->  Abs (  1640,   593)
+	 40: Rel (  -122,    55)  ->  Abs (  1518,   648)
+	 41: Rel (   -81,     0)  ->  Abs (  1437,   648)
+	 42: Rel (  -100,     0)  ->  Abs (  1337,   648)
+	 43: Rel (  -142,   -67)  ->  Abs (  1195,   581)
+	 44: Rel (  -113,   -57)  ->  Abs (  1082,   524)
+	 45: Rel (  -112,   -57)  ->  Abs (   970,   467)
+	 46: Rel (   461,     0)  ->  Abs (  1431,   467)
+	 47: Rel (   109,     0)  ->  Abs (  1540,   467)
+	 48: Rel (   100,    38)  ->  Abs (  1640,   505)
+
+	Glyph 956: off = 0x00029DAC, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1803
+	  yMax:			830
+
+	     0: Flags:		0x0016
+		Glyf Index:	955
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 957: off = 0x00029DBC, len = 408
+	  numberOfContours:	3
+	  xMin:			132
+	  yMin:			-148
+	  xMax:			2319
+	  yMax:			1209
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  53
+	  2:  66
+
+	  Length of Instructions:	204
+	00000: PUSHW[2]             24   -42 
+	00005: NPUSHB      (16):    14    17    52    27    52    11    17    52    32    52 
+	                            11    17    52     0     2     3 
+	00023: PUSHW[1]            770 
+	00026: PUSHB[4]              1     1    34    57 
+	00031: PUSHW[1]            751 
+	00034: PUSHB[3]             49    49    33 
+	00038: PUSHW[3]            751    34   777 
+	00045: PUSHB[3]             19    25    18 
+	00049: PUSHW[3]            775    64   751 
+	00056: PUSHB[3]              4     4    38 
+	00060: PUSHW[7]            751     5   747    25   751     9   785 
+	00075: PUSHB[3]              1     3     2 
+	00079: PUSHW[1]            769 
+	00082: NPUSHB      (10):     0     0    63    54     5    34    34    33    33    29 
+	00094: PUSHW[1]            773 
+	00097: PUSHB[7]              5    38    38     5     5    22    54 
+	00105: NPUSHW      (10):   764    64     4   752    68    19   763    32    18   -64 
+	00127: PUSHB[6]              9    11    52    18    18    22 
+	00134: PUSHW[3]            771    13   298 
+	00141: SCANCTRL   
+	00142: MDAP[rd]   
+	00143: MIRP[srp0,md,rd,1] 
+	00144: SHP[rp2,zp1] 
+	00145: RTHG       
+	00146: MDAP[rd]   
+	00147: CALL       
+	00148: SMD        
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: RTG        
+	00151: SRP0       
+	00152: MIRP[srp0,nmd,rd,1] 
+	00153: SMD        
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: SRP1       
+	00156: IP         
+	00157: MDAP[rd]   
+	00158: SHP[rp1,zp0] 
+	00159: MDAP[rd]   
+	00160: SRP0       
+	00161: MIRP[srp0,md,rd,1] 
+	00162: SHP[rp2,zp1] 
+	00163: MDAP[rd]   
+	00164: RTHG       
+	00165: IP         
+	00166: MDAP[rd]   
+	00167: SRP1       
+	00168: SRP2       
+	00169: IP         
+	00170: RTG        
+	00171: IP         
+	00172: MDAP[rd]   
+	00173: MIRP[srp0,md,rd,1] 
+	00174: IP         
+	00175: IP         
+	00176: SVTCA[y-axis] 
+	00177: MIAP[rd+ci] 
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: MIAP[rd+ci] 
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: ALIGNRP    
+	00182: SRP0       
+	00183: MIRP[nrp0,md,rd,1] 
+	00184: MIAP[rd+ci] 
+	00185: SRP2       
+	00186: IP         
+	00187: MIAP[rd+ci] 
+	00188: MIRP[srp0,md,rd,1] 
+	00189: IP         
+	00190: MDAP[rd]   
+	00191: MIRP[nrp0,md,rd,1] 
+	00192: SRP1       
+	00193: SHP[rp1,zp0] 
+	00194: MDAP[rd]   
+	00195: MIRP[nrp0,md,rd,1] 
+	00196: IP         
+	00197: IP         
+	00198: IUP[y]     
+	00199: IUP[x]     
+	00200: SVTCA[x-axis] 
+	00201: CALL       
+	00202: CALL       
+	00203: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:  YDual                               On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual               Y-Short X-Short On
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual               Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short X-Short On
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short X-Short On
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short X-Short On
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:        XDual         Y-Short X-Short On
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short         On
+	 54:                      Y-Short X-Short On
+	 55:  YDual XDual         Y-Short         Off
+	 56:  YDual               Y-Short X-Short Off
+	 57:  YDual                       X-Short On
+	 58:  YDual                       X-Short Off
+	 59:                      Y-Short X-Short On
+	 60:                      Y-Short X-Short Off
+	 61:                      Y-Short X-Short On
+	 62:                      Y-Short X-Short Off
+	 63:                      Y-Short X-Short On
+	 64:  YDual                               On
+	 65:  YDual XDual                 X-Short Off
+	 66:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1653,  1124)  ->  Abs (  1653,  1124)
+	  1: Rel (   -76,  -145)  ->  Abs (  1577,   979)
+	  2: Rel (  -162,    84)  ->  Abs (  1415,  1063)
+	  3: Rel (    74,   146)  ->  Abs (  1489,  1209)
+	  4: Rel (   830,  -916)  ->  Abs (  2319,   293)
+	  5: Rel ( -1188,     0)  ->  Abs (  1131,   293)
+	  6: Rel (   -30,  -208)  ->  Abs (  1101,    85)
+	  7: Rel (  -114,  -104)  ->  Abs (   987,   -19)
+	  8: Rel (  -142,  -129)  ->  Abs (   845,  -148)
+	  9: Rel (  -291,     0)  ->  Abs (   554,  -148)
+	 10: Rel (  -200,     0)  ->  Abs (   354,  -148)
+	 11: Rel (  -106,    70)  ->  Abs (   248,   -78)
+	 12: Rel (  -116,    77)  ->  Abs (   132,    -1)
+	 13: Rel (     0,   159)  ->  Abs (   132,   158)
+	 14: Rel (     0,    86)  ->  Abs (   132,   244)
+	 15: Rel (    42,   176)  ->  Abs (   174,   420)
+	 16: Rel (    36,    89)  ->  Abs (   210,   509)
+	 17: Rel (    22,    54)  ->  Abs (   232,   563)
+	 18: Rel (    54,   112)  ->  Abs (   286,   675)
+	 19: Rel (    40,   -18)  ->  Abs (   326,   657)
+	 20: Rel (   -70,  -144)  ->  Abs (   256,   513)
+	 21: Rel (   -45,  -166)  ->  Abs (   211,   347)
+	 22: Rel (     0,   -69)  ->  Abs (   211,   278)
+	 23: Rel (     0,  -124)  ->  Abs (   211,   154)
+	 24: Rel (   177,  -129)  ->  Abs (   388,    25)
+	 25: Rel (   164,     0)  ->  Abs (   552,    25)
+	 26: Rel (   192,     0)  ->  Abs (   744,    25)
+	 27: Rel (   151,    67)  ->  Abs (   895,    92)
+	 28: Rel (   188,    83)  ->  Abs (  1083,   175)
+	 29: Rel (     0,   149)  ->  Abs (  1083,   324)
+	 30: Rel (     0,   100)  ->  Abs (  1083,   424)
+	 31: Rel (   -37,    90)  ->  Abs (  1046,   514)
+	 32: Rel (   -29,    71)  ->  Abs (  1017,   585)
+	 33: Rel (   -53,    65)  ->  Abs (   964,   650)
+	 34: Rel (    83,   205)  ->  Abs (  1047,   855)
+	 35: Rel (    50,   -82)  ->  Abs (  1097,   773)
+	 36: Rel (    18,   -63)  ->  Abs (  1115,   710)
+	 37: Rel (    25,   -89)  ->  Abs (  1140,   621)
+	 38: Rel (     0,  -154)  ->  Abs (  1140,   467)
+	 39: Rel (    18,     0)  ->  Abs (  1158,   467)
+	 40: Rel (   119,     0)  ->  Abs (  1277,   467)
+	 41: Rel (   102,    38)  ->  Abs (  1379,   505)
+	 42: Rel (    88,    33)  ->  Abs (  1467,   538)
+	 43: Rel (    97,    71)  ->  Abs (  1564,   609)
+	 44: Rel (   148,   103)  ->  Abs (  1712,   712)
+	 45: Rel (    29,    19)  ->  Abs (  1741,   731)
+	 46: Rel (    82,    52)  ->  Abs (  1823,   783)
+	 47: Rel (    65,    22)  ->  Abs (  1888,   805)
+	 48: Rel (    74,    25)  ->  Abs (  1962,   830)
+	 49: Rel (    89,     0)  ->  Abs (  2051,   830)
+	 50: Rel (   137,     0)  ->  Abs (  2188,   830)
+	 51: Rel (    68,   -79)  ->  Abs (  2256,   751)
+	 52: Rel (    63,   -73)  ->  Abs (  2319,   678)
+	 53: Rel (     0,  -132)  ->  Abs (  2319,   546)
+	 54: Rel (  -162,    -2)  ->  Abs (  2157,   544)
+	 55: Rel (     0,    49)  ->  Abs (  2157,   593)
+	 56: Rel (  -123,    55)  ->  Abs (  2034,   648)
+	 57: Rel (   -82,     0)  ->  Abs (  1952,   648)
+	 58: Rel (   -72,     0)  ->  Abs (  1880,   648)
+	 59: Rel (   -89,   -32)  ->  Abs (  1791,   616)
+	 60: Rel (   -63,   -23)  ->  Abs (  1728,   593)
+	 61: Rel (   -97,   -50)  ->  Abs (  1631,   543)
+	 62: Rel (   -73,   -38)  ->  Abs (  1558,   505)
+	 63: Rel (   -72,   -38)  ->  Abs (  1486,   467)
+	 64: Rel (   461,     0)  ->  Abs (  1947,   467)
+	 65: Rel (    96,     0)  ->  Abs (  2043,   467)
+	 66: Rel (   114,    39)  ->  Abs (  2157,   506)
+
+	Glyph 958: off = 0x00029F54, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			132
+	  yMin:			-148
+	  xMax:			2319
+	  yMax:			1209
+
+	     0: Flags:		0x0016
+		Glyf Index:	957
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 959: off = 0x00029F64, len = 286
+	  numberOfContours:	3
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1803
+	  yMax:			1209
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  41
+	  2:  52
+
+	  Length of Instructions:	122
+	00000: PUSHB[3]              0     2     3 
+	00004: PUSHW[1]            770 
+	00007: NPUSHB      (11):     1     1    37    22    23     9    14    13    23    23 
+	                            37 
+	00020: PUSHW[1]            751 
+	00023: PUSHB[3]             45    45    49 
+	00027: PUSHW[3]            751    27   751 
+	00034: PUSHB[3]              5     5    14 
+	00038: PUSHW[3]            751    13   747 
+	00045: PUSHB[3]              1     3     2 
+	00049: PUSHW[1]            769 
+	00052: PUSHB[7]              0     0    49     9    42    19    22 
+	00060: PUSHW[1]            762 
+	00063: PUSHB[4]             23    23    13    42 
+	00068: PUSHW[3]            764     4   752 
+	00075: PUSHB[2]             54    13 
+	00078: MDAP[rd]   
+	00079: SRP0       
+	00080: MIRP[srp0,nmd,rd,1] 
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: RTHG       
+	00083: SRP1       
+	00084: IP         
+	00085: MDAP[rd]   
+	00086: MIRP[srp0,nmd,rd,0] 
+	00087: IP         
+	00088: SRP2       
+	00089: IP         
+	00090: IP         
+	00091: RTG        
+	00092: IP         
+	00093: MDAP[rd]   
+	00094: MIRP[srp0,md,rd,1] 
+	00095: IP         
+	00096: IP         
+	00097: SVTCA[y-axis] 
+	00098: MIAP[rd+ci] 
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: ALIGNRP    
+	00101: SRP0       
+	00102: MIRP[nrp0,md,rd,1] 
+	00103: MIRP[srp0,md,rd,1] 
+	00104: SHP[rp2,zp1] 
+	00105: MDAP[rd]   
+	00106: MIRP[nrp0,md,rd,1] 
+	00107: IP         
+	00108: MDAP[rd]   
+	00109: SRP1       
+	00110: SRP2       
+	00111: IP         
+	00112: SRP1       
+	00113: IP         
+	00114: SRP1       
+	00115: SHP[rp1,zp0] 
+	00116: MDAP[rd]   
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: IP         
+	00119: IP         
+	00120: IUP[y]     
+	00121: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:  YDual                               On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short On
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short X-Short On
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:                      Y-Short X-Short On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual               Y-Short X-Short Off
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short Off
+	 47:                      Y-Short X-Short On
+	 48:                      Y-Short X-Short Off
+	 49:                      Y-Short X-Short On
+	 50:  YDual                               On
+	 51:  YDual XDual                 X-Short Off
+	 52:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1167,  1124)  ->  Abs (  1167,  1124)
+	  1: Rel (   -76,  -145)  ->  Abs (  1091,   979)
+	  2: Rel (  -162,    84)  ->  Abs (   929,  1063)
+	  3: Rel (    74,   146)  ->  Abs (  1003,  1209)
+	  4: Rel (   800,  -916)  ->  Abs (  1803,   293)
+	  5: Rel ( -1202,     0)  ->  Abs (   601,   293)
+	  6: Rel (   -54,     0)  ->  Abs (   547,   293)
+	  7: Rel (   -49,    18)  ->  Abs (   498,   311)
+	  8: Rel (   -37,    14)  ->  Abs (   461,   325)
+	  9: Rel (   -50,    31)  ->  Abs (   411,   356)
+	 10: Rel (   -42,   -36)  ->  Abs (   369,   320)
+	 11: Rel (   -84,   -27)  ->  Abs (   285,   293)
+	 12: Rel (   -92,     0)  ->  Abs (   193,   293)
+	 13: Rel (  -193,     0)  ->  Abs (     0,   293)
+	 14: Rel (     0,   174)  ->  Abs (     0,   467)
+	 15: Rel (   193,     0)  ->  Abs (   193,   467)
+	 16: Rel (    81,     0)  ->  Abs (   274,   467)
+	 17: Rel (    35,    14)  ->  Abs (   309,   481)
+	 18: Rel (    58,    23)  ->  Abs (   367,   504)
+	 19: Rel (     0,    69)  ->  Abs (   367,   573)
+	 20: Rel (     0,    29)  ->  Abs (   367,   602)
+	 21: Rel (    -7,    59)  ->  Abs (   360,   661)
+	 22: Rel (    -7,    35)  ->  Abs (   353,   696)
+	 23: Rel (    41,    60)  ->  Abs (   394,   756)
+	 24: Rel (    35,  -136)  ->  Abs (   429,   620)
+	 25: Rel (    61,   -74)  ->  Abs (   490,   546)
+	 26: Rel (    65,   -79)  ->  Abs (   555,   467)
+	 27: Rel (    88,     0)  ->  Abs (   643,   467)
+	 28: Rel (    84,     0)  ->  Abs (   727,   467)
+	 29: Rel (   113,    38)  ->  Abs (   840,   505)
+	 30: Rel (   122,    41)  ->  Abs (   962,   546)
+	 31: Rel (    88,    63)  ->  Abs (  1050,   609)
+	 32: Rel (   143,   102)  ->  Abs (  1193,   711)
+	 33: Rel (    32,    20)  ->  Abs (  1225,   731)
+	 34: Rel (    81,    52)  ->  Abs (  1306,   783)
+	 35: Rel (    66,    22)  ->  Abs (  1372,   805)
+	 36: Rel (    74,    25)  ->  Abs (  1446,   830)
+	 37: Rel (    88,     0)  ->  Abs (  1534,   830)
+	 38: Rel (   136,     0)  ->  Abs (  1670,   830)
+	 39: Rel (    69,   -79)  ->  Abs (  1739,   751)
+	 40: Rel (    64,   -73)  ->  Abs (  1803,   678)
+	 41: Rel (     0,  -132)  ->  Abs (  1803,   546)
+	 42: Rel (  -163,    -2)  ->  Abs (  1640,   544)
+	 43: Rel (     0,    49)  ->  Abs (  1640,   593)
+	 44: Rel (  -122,    55)  ->  Abs (  1518,   648)
+	 45: Rel (   -81,     0)  ->  Abs (  1437,   648)
+	 46: Rel (  -100,     0)  ->  Abs (  1337,   648)
+	 47: Rel (  -142,   -67)  ->  Abs (  1195,   581)
+	 48: Rel (  -113,   -57)  ->  Abs (  1082,   524)
+	 49: Rel (  -112,   -57)  ->  Abs (   970,   467)
+	 50: Rel (   461,     0)  ->  Abs (  1431,   467)
+	 51: Rel (   109,     0)  ->  Abs (  1540,   467)
+	 52: Rel (   100,    38)  ->  Abs (  1640,   505)
+
+	Glyph 960: off = 0x0002A082, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1803
+	  yMax:			1209
+
+	     0: Flags:		0x0016
+		Glyf Index:	959
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 961: off = 0x0002A092, len = 320
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1261
+	  yMax:			1625
+
+	EndPoints
+	---------
+	  0:  45
+	  1:  57
+
+	  Length of Instructions:	141
+	00000: PUSHW[2]             31   -16 
+	00005: NPUSHB      (13):    15    17    52    37     7    49    55    17    16    24 
+	                            27    41    30 
+	00020: PUSHW[6]            751    20    24   779    41   751 
+	00033: PUSHB[5]             49    49    55    55     2 
+	00039: PUSHW[3]            751     1   747 
+	00046: NPUSHB      (16):    37    33    55     7    10     1    27    24    30    20 
+	                            20    17    17    24    24    16 
+	00064: PUSHW[1]            786 
+	00067: PUSHB[3]             30    30    33 
+	00071: PUSHW[1]            786 
+	00074: PUSHB[4]             10    10     1    46 
+	00079: PUSHW[3]            764     0   752 
+	00086: PUSHB[2]             59     1 
+	00089: MDAP[rd]   
+	00090: SRP0       
+	00091: MIRP[srp0,nmd,rd,1] 
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: SRP1       
+	00094: IP         
+	00095: MDAP[rd]   
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: SHP[rp1,zp0] 
+	00098: MDAP[rd]   
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: SHP[rp1,zp0] 
+	00101: MDAP[rd]   
+	00102: SHP[rp2,zp1] 
+	00103: MDAP[rd]   
+	00104: RTHG       
+	00105: IP         
+	00106: MDAP[rd]   
+	00107: SRP1       
+	00108: SRP2       
+	00109: IP         
+	00110: SRP1       
+	00111: SRP2       
+	00112: IP         
+	00113: IP         
+	00114: SRP1       
+	00115: IP         
+	00116: SVTCA[y-axis] 
+	00117: RTG        
+	00118: MIAP[rd+ci] 
+	00119: MIRP[srp0,md,rd,1] 
+	00120: ALIGNRP    
+	00121: SRP1       
+	00122: SHP[rp1,zp0] 
+	00123: MDAP[rd]   
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: MIAP[rd+ci] 
+	00126: SHP[rp1,zp0] 
+	00127: MIRP[nrp0,md,rd,1] 
+	00128: SRP1       
+	00129: IP         
+	00130: SRP1       
+	00131: IP         
+	00132: IP         
+	00133: SRP1       
+	00134: SRP2       
+	00135: IP         
+	00136: IP         
+	00137: IUP[y]     
+	00138: IUP[x]     
+	00139: SVTCA[x-axis] 
+	00140: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:  YDual               Y-Short X-Short On
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:                      Y-Short X-Short On
+	 36:                      Y-Short X-Short Off
+	 37:                      Y-Short X-Short On
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:        XDual         Y-Short X-Short On
+	 44:        XDual         Y-Short X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:                      Y-Short X-Short On
+	 47:  YDual XDual         Y-Short         Off
+	 48:  YDual               Y-Short X-Short Off
+	 49:  YDual                       X-Short On
+	 50:  YDual                       X-Short Off
+	 51:                      Y-Short X-Short On
+	 52:                      Y-Short X-Short Off
+	 53:                      Y-Short X-Short On
+	 54:                      Y-Short X-Short Off
+	 55:                      Y-Short X-Short On
+	 56:  YDual                               On
+	 57:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1261,   293)  ->  Abs (  1261,   293)
+	  1: Rel ( -1261,     0)  ->  Abs (     0,   293)
+	  2: Rel (     0,   174)  ->  Abs (     0,   467)
+	  3: Rel (   153,     1)  ->  Abs (   153,   468)
+	  4: Rel (    68,     0)  ->  Abs (   221,   468)
+	  5: Rel (    59,    18)  ->  Abs (   280,   486)
+	  6: Rel (    68,    21)  ->  Abs (   348,   507)
+	  7: Rel (    86,    53)  ->  Abs (   434,   560)
+	  8: Rel (    18,    44)  ->  Abs (   452,   604)
+	  9: Rel (    22,   101)  ->  Abs (   474,   705)
+	 10: Rel (     0,    47)  ->  Abs (   474,   752)
+	 11: Rel (     0,   107)  ->  Abs (   474,   859)
+	 12: Rel (   -20,   129)  ->  Abs (   454,   988)
+	 13: Rel (   -15,    94)  ->  Abs (   439,  1082)
+	 14: Rel (   -30,   127)  ->  Abs (   409,  1209)
+	 15: Rel (   -16,    66)  ->  Abs (   393,  1275)
+	 16: Rel (   -26,    95)  ->  Abs (   367,  1370)
+	 17: Rel (   -62,    31)  ->  Abs (   305,  1401)
+	 18: Rel (     7,    60)  ->  Abs (   312,  1461)
+	 19: Rel (    27,   112)  ->  Abs (   339,  1573)
+	 20: Rel (    24,    52)  ->  Abs (   363,  1625)
+	 21: Rel (    16,   -47)  ->  Abs (   379,  1578)
+	 22: Rel (    57,   -26)  ->  Abs (   436,  1552)
+	 23: Rel (    47,   -21)  ->  Abs (   483,  1531)
+	 24: Rel (    73,    -7)  ->  Abs (   556,  1524)
+	 25: Rel (   -10,  -103)  ->  Abs (   546,  1421)
+	 26: Rel (   -10,   -56)  ->  Abs (   536,  1365)
+	 27: Rel (   -14,   -41)  ->  Abs (   522,  1324)
+	 28: Rel (    -7,     1)  ->  Abs (   515,  1325)
+	 29: Rel (   -30,     9)  ->  Abs (   485,  1334)
+	 30: Rel (   -13,     4)  ->  Abs (   472,  1338)
+	 31: Rel (    35,  -117)  ->  Abs (   507,  1221)
+	 32: Rel (    45,  -247)  ->  Abs (   552,   974)
+	 33: Rel (     0,   -84)  ->  Abs (   552,   890)
+	 34: Rel (     0,   -71)  ->  Abs (   552,   819)
+	 35: Rel (   -14,   -87)  ->  Abs (   538,   732)
+	 36: Rel (    -5,   -31)  ->  Abs (   533,   701)
+	 37: Rel (   -13,   -65)  ->  Abs (   520,   636)
+	 38: Rel (   175,   101)  ->  Abs (   695,   737)
+	 39: Rel (    49,    23)  ->  Abs (   744,   760)
+	 40: Rel (   148,    70)  ->  Abs (   892,   830)
+	 41: Rel (   106,     0)  ->  Abs (   998,   830)
+	 42: Rel (   135,     0)  ->  Abs (  1133,   830)
+	 43: Rel (    67,   -79)  ->  Abs (  1200,   751)
+	 44: Rel (    61,   -72)  ->  Abs (  1261,   679)
+	 45: Rel (     0,  -133)  ->  Abs (  1261,   546)
+	 46: Rel (  -158,    -2)  ->  Abs (  1103,   544)
+	 47: Rel (     0,    51)  ->  Abs (  1103,   595)
+	 48: Rel (  -105,    53)  ->  Abs (   998,   648)
+	 49: Rel (   -98,     0)  ->  Abs (   900,   648)
+	 50: Rel (   -73,     0)  ->  Abs (   827,   648)
+	 51: Rel (   -95,   -32)  ->  Abs (   732,   616)
+	 52: Rel (   -78,   -26)  ->  Abs (   654,   590)
+	 53: Rel (   -88,   -46)  ->  Abs (   566,   544)
+	 54: Rel (   -65,   -34)  ->  Abs (   501,   510)
+	 55: Rel (   -69,   -43)  ->  Abs (   432,   467)
+	 56: Rel (   435,     0)  ->  Abs (   867,   467)
+	 57: Rel (   236,     0)  ->  Abs (  1103,   467)
+
+	Glyph 962: off = 0x0002A1D2, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1261
+	  yMax:			1625
+
+	     0: Flags:		0x0016
+		Glyf Index:	961
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 963: off = 0x0002A1E2, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1261
+	  yMax:			1625
+
+	     0: Flags:		0x0016
+		Glyf Index:	961
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 964: off = 0x0002A1F2, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1261
+	  yMax:			1625
+
+	     0: Flags:		0x0016
+		Glyf Index:	961
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 965: off = 0x0002A202, len = 376
+	  numberOfContours:	3
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1261
+	  yMax:			1625
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  49
+	  2:  61
+
+	  Length of Instructions:	181
+	00000: PUSHW[2]             35   -16 
+	00005: PUSHB[6]             15    17    52     0     2     3 
+	00012: PUSHW[1]            770 
+	00015: NPUSHB      (13):     1     1    45    41    11    53    59    21    20    28 
+	                            31    45    34 
+	00030: PUSHW[6]            751    24    28   779    45   751 
+	00043: PUSHB[5]             53    53    59    59     6 
+	00049: PUSHW[3]            751     5   747 
+	00056: PUSHB[3]              1     3     2 
+	00060: PUSHW[1]            769 
+	00063: NPUSHB      (25):     0    64     9    11    52     0     0    50    28    41 
+	                            37    59    11    14     5    31    28    34    24    24 
+	                            21    21    28    28    20 
+	00090: PUSHW[1]            786 
+	00093: PUSHB[3]             34    34    37 
+	00097: PUSHW[1]            786 
+	00100: PUSHB[4]             14    14     5    50 
+	00105: PUSHW[3]            764     4   752 
+	00112: PUSHB[2]             63     5 
+	00115: MDAP[rd]   
+	00116: SRP0       
+	00117: MIRP[srp0,nmd,rd,1] 
+	00118: MIRP[nrp0,md,rd,1] 
+	00119: SRP1       
+	00120: IP         
+	00121: MDAP[rd]   
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: SHP[rp1,zp0] 
+	00124: MDAP[rd]   
+	00125: MIRP[nrp0,md,rd,1] 
+	00126: SHP[rp1,zp0] 
+	00127: MDAP[rd]   
+	00128: SHP[rp2,zp1] 
+	00129: MDAP[rd]   
+	00130: RTHG       
+	00131: IP         
+	00132: MDAP[rd]   
+	00133: SRP1       
+	00134: SRP2       
+	00135: IP         
+	00136: SRP1       
+	00137: SRP2       
+	00138: IP         
+	00139: IP         
+	00140: SRP1       
+	00141: IP         
+	00142: RTG        
+	00143: SRP1       
+	00144: SRP2       
+	00145: IP         
+	00146: MDAP[rd]   
+	00147: CALL       
+	00148: MIRP[srp0,md,rd,1] 
+	00149: IP         
+	00150: IP         
+	00151: SVTCA[y-axis] 
+	00152: MIAP[rd+ci] 
+	00153: MIRP[srp0,md,rd,1] 
+	00154: ALIGNRP    
+	00155: SRP1       
+	00156: SHP[rp1,zp0] 
+	00157: MDAP[rd]   
+	00158: MIRP[nrp0,md,rd,1] 
+	00159: MIAP[rd+ci] 
+	00160: SHP[rp1,zp0] 
+	00161: MIRP[nrp0,md,rd,1] 
+	00162: SRP1       
+	00163: IP         
+	00164: SRP1       
+	00165: IP         
+	00166: IP         
+	00167: SRP1       
+	00168: SRP2       
+	00169: IP         
+	00170: IP         
+	00171: SRP1       
+	00172: SHP[rp1,zp0] 
+	00173: MDAP[rd]   
+	00174: MIRP[nrp0,md,rd,1] 
+	00175: IP         
+	00176: IP         
+	00177: IUP[y]     
+	00178: IUP[x]     
+	00179: SVTCA[x-axis] 
+	00180: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual               Y-Short X-Short On
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual               Y-Short X-Short On
+	 21:  YDual               Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short X-Short On
+	 29:                      Y-Short X-Short Off
+	 30:                      Y-Short X-Short Off
+	 31:                      Y-Short X-Short On
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual               Y-Short X-Short On
+	 34:  YDual               Y-Short X-Short On
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:                      Y-Short X-Short On
+	 40:                      Y-Short X-Short Off
+	 41:                      Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:        XDual         Y-Short X-Short On
+	 48:        XDual         Y-Short X-Short Off
+	 49:        XDual         Y-Short         On
+	 50:                      Y-Short X-Short On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual               Y-Short X-Short Off
+	 53:  YDual                       X-Short On
+	 54:  YDual                       X-Short Off
+	 55:                      Y-Short X-Short On
+	 56:                      Y-Short X-Short Off
+	 57:                      Y-Short X-Short On
+	 58:                      Y-Short X-Short Off
+	 59:                      Y-Short X-Short On
+	 60:  YDual                               On
+	 61:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   989,  1224)  ->  Abs (   989,  1224)
+	  1: Rel (   -77,  -145)  ->  Abs (   912,  1079)
+	  2: Rel (  -162,    84)  ->  Abs (   750,  1163)
+	  3: Rel (    74,   146)  ->  Abs (   824,  1309)
+	  4: Rel (   437, -1016)  ->  Abs (  1261,   293)
+	  5: Rel ( -1261,     0)  ->  Abs (     0,   293)
+	  6: Rel (     0,   174)  ->  Abs (     0,   467)
+	  7: Rel (   153,     1)  ->  Abs (   153,   468)
+	  8: Rel (    68,     0)  ->  Abs (   221,   468)
+	  9: Rel (    59,    18)  ->  Abs (   280,   486)
+	 10: Rel (    68,    21)  ->  Abs (   348,   507)
+	 11: Rel (    86,    53)  ->  Abs (   434,   560)
+	 12: Rel (    18,    44)  ->  Abs (   452,   604)
+	 13: Rel (    22,   101)  ->  Abs (   474,   705)
+	 14: Rel (     0,    47)  ->  Abs (   474,   752)
+	 15: Rel (     0,   107)  ->  Abs (   474,   859)
+	 16: Rel (   -20,   129)  ->  Abs (   454,   988)
+	 17: Rel (   -15,    94)  ->  Abs (   439,  1082)
+	 18: Rel (   -30,   127)  ->  Abs (   409,  1209)
+	 19: Rel (   -16,    66)  ->  Abs (   393,  1275)
+	 20: Rel (   -26,    95)  ->  Abs (   367,  1370)
+	 21: Rel (   -62,    31)  ->  Abs (   305,  1401)
+	 22: Rel (     7,    60)  ->  Abs (   312,  1461)
+	 23: Rel (    27,   112)  ->  Abs (   339,  1573)
+	 24: Rel (    24,    52)  ->  Abs (   363,  1625)
+	 25: Rel (    16,   -47)  ->  Abs (   379,  1578)
+	 26: Rel (    57,   -26)  ->  Abs (   436,  1552)
+	 27: Rel (    47,   -21)  ->  Abs (   483,  1531)
+	 28: Rel (    73,    -7)  ->  Abs (   556,  1524)
+	 29: Rel (   -10,  -103)  ->  Abs (   546,  1421)
+	 30: Rel (   -10,   -56)  ->  Abs (   536,  1365)
+	 31: Rel (   -14,   -41)  ->  Abs (   522,  1324)
+	 32: Rel (    -7,     1)  ->  Abs (   515,  1325)
+	 33: Rel (   -30,     9)  ->  Abs (   485,  1334)
+	 34: Rel (   -13,     4)  ->  Abs (   472,  1338)
+	 35: Rel (    35,  -117)  ->  Abs (   507,  1221)
+	 36: Rel (    45,  -247)  ->  Abs (   552,   974)
+	 37: Rel (     0,   -84)  ->  Abs (   552,   890)
+	 38: Rel (     0,   -71)  ->  Abs (   552,   819)
+	 39: Rel (   -14,   -87)  ->  Abs (   538,   732)
+	 40: Rel (    -5,   -31)  ->  Abs (   533,   701)
+	 41: Rel (   -13,   -65)  ->  Abs (   520,   636)
+	 42: Rel (   175,   101)  ->  Abs (   695,   737)
+	 43: Rel (    49,    23)  ->  Abs (   744,   760)
+	 44: Rel (   148,    70)  ->  Abs (   892,   830)
+	 45: Rel (   106,     0)  ->  Abs (   998,   830)
+	 46: Rel (   135,     0)  ->  Abs (  1133,   830)
+	 47: Rel (    67,   -79)  ->  Abs (  1200,   751)
+	 48: Rel (    61,   -72)  ->  Abs (  1261,   679)
+	 49: Rel (     0,  -133)  ->  Abs (  1261,   546)
+	 50: Rel (  -158,    -2)  ->  Abs (  1103,   544)
+	 51: Rel (     0,    51)  ->  Abs (  1103,   595)
+	 52: Rel (  -105,    53)  ->  Abs (   998,   648)
+	 53: Rel (   -98,     0)  ->  Abs (   900,   648)
+	 54: Rel (   -73,     0)  ->  Abs (   827,   648)
+	 55: Rel (   -95,   -32)  ->  Abs (   732,   616)
+	 56: Rel (   -78,   -26)  ->  Abs (   654,   590)
+	 57: Rel (   -88,   -46)  ->  Abs (   566,   544)
+	 58: Rel (   -65,   -34)  ->  Abs (   501,   510)
+	 59: Rel (   -69,   -43)  ->  Abs (   432,   467)
+	 60: Rel (   435,     0)  ->  Abs (   867,   467)
+	 61: Rel (   236,     0)  ->  Abs (  1103,   467)
+
+	Glyph 966: off = 0x0002A37A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1261
+	  yMax:			1625
+
+	     0: Flags:		0x0016
+		Glyf Index:	965
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 967: off = 0x0002A38A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1261
+	  yMax:			1625
+
+	     0: Flags:		0x0016
+		Glyf Index:	965
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 968: off = 0x0002A39A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1261
+	  yMax:			1625
+
+	     0: Flags:		0x0016
+		Glyf Index:	965
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 969: off = 0x0002A3AA, len = 338
+	  numberOfContours:	1
+	  xMin:			42
+	  yMin:			-434
+	  xMax:			1056
+	  yMax:			1094
+
+	EndPoints
+	---------
+	  0:  55
+
+	  Length of Instructions:	167
+	00000: PUSHB[4]            128    43     1    29 
+	00005: PUSHW[1]            -32 
+	00008: PUSHB[4]             14    17    52    49 
+	00013: PUSHW[1]            -52 
+	00016: PUSHB[4]             11    17    52    48 
+	00021: PUSHW[1]            -32 
+	00024: NPUSHB       (9):    11    17    52    13    32    14    17    52    13 
+	00035: PUSHW[3]            751    35   -38 
+	00042: PUSHB[8]             14    17    52    35    35    40     0    55 
+	00051: PUSHW[5]            751     1   774    21   751 
+	00062: PUSHB[3]             25    25    39 
+	00066: PUSHW[3]            751    40   775 
+	00073: NPUSHB      (20):    13    52    14    17    52    35    13    39    31     1 
+	                             0    46    25    25    39    55     0     0    40    39 
+	00095: PUSHW[1]            -64 
+	00098: PUSHB[7]             12    13    52    39    39    57    31 
+	00106: PUSHW[1]            780 
+	00109: PUSHB[3]             17    17    46 
+	00113: PUSHW[3]            780     7   287 
+	00120: SCANCTRL   
+	00121: MDAP[rd]   
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: SHP[rp1,zp0] 
+	00124: MDAP[rd]   
+	00125: MIRP[nrp0,md,rd,1] 
+	00126: SRP1       
+	00127: SHP[rp1,zp0] 
+	00128: MDAP[rd]   
+	00129: CALL       
+	00130: SHP[rp1,zp0] 
+	00131: SHP[rp1,zp0] 
+	00132: MDAP[rd]   
+	00133: ALIGNRP    
+	00134: SRP1       
+	00135: IP         
+	00136: MDAP[rd]   
+	00137: SRP1       
+	00138: SRP2       
+	00139: IP         
+	00140: SRP1       
+	00141: SRP2       
+	00142: IP         
+	00143: IP         
+	00144: CALL       
+	00145: SVTCA[y-axis] 
+	00146: MIAP[rd+ci] 
+	00147: MIRP[srp0,md,rd,1] 
+	00148: SHP[rp2,zp1] 
+	00149: MDAP[rd]   
+	00150: MIRP[nrp0,md,rd,1] 
+	00151: MIAP[rd+ci] 
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: IP         
+	00154: SRP1       
+	00155: IP         
+	00156: MDAP[rd]   
+	00157: CALL       
+	00158: MIRP[nrp0,md,rd,1] 
+	00159: CALL       
+	00160: IUP[y]     
+	00161: IUP[x]     
+	00162: SVTCA[x-axis] 
+	00163: CALL       
+	00164: CALL       
+	00165: CALL       
+	00166: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short On
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short On
+	 26:  YDual                       X-Short Off
+	 27:                      Y-Short X-Short On
+	 28:                      Y-Short X-Short Off
+	 29:                      Y-Short X-Short On
+	 30:                      Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:        XDual         Y-Short X-Short On
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short X-Short On
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:                      Y-Short X-Short On
+	 41:                      Y-Short X-Short Off
+	 42:                      Y-Short X-Short On
+	 43:                      Y-Short X-Short Off
+	 44:                      Y-Short X-Short On
+	 45:                      Y-Short X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual         Y-Short         Off
+	 48:        XDual         Y-Short X-Short On
+	 49:        XDual         Y-Short X-Short Off
+	 50:        XDual         Y-Short X-Short On
+	 51:        XDual         Y-Short X-Short Off
+	 52:  YDual XDual                 X-Short On
+	 53:  YDual XDual                 X-Short Off
+	 54:  YDual XDual         Y-Short X-Short Off
+	 55:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1056,  -267)  ->  Abs (  1056,  -267)
+	  1: Rel (  -253,  -167)  ->  Abs (   803,  -434)
+	  2: Rel (  -208,     0)  ->  Abs (   595,  -434)
+	  3: Rel (  -114,    17)  ->  Abs (   481,  -417)
+	  4: Rel (  -197,    29)  ->  Abs (   284,  -388)
+	  5: Rel (  -107,    87)  ->  Abs (   177,  -301)
+	  6: Rel (  -135,   109)  ->  Abs (    42,  -192)
+	  7: Rel (     0,   204)  ->  Abs (    42,    12)
+	  8: Rel (     0,   124)  ->  Abs (    42,   136)
+	  9: Rel (    38,    99)  ->  Abs (    80,   235)
+	 10: Rel (    31,    81)  ->  Abs (   111,   316)
+	 11: Rel (    58,    72)  ->  Abs (   169,   388)
+	 12: Rel (    28,    34)  ->  Abs (   197,   422)
+	 13: Rel (    70,    69)  ->  Abs (   267,   491)
+	 14: Rel (   -96,    48)  ->  Abs (   171,   539)
+	 15: Rel (   -37,    35)  ->  Abs (   134,   574)
+	 16: Rel (   -82,    77)  ->  Abs (    52,   651)
+	 17: Rel (     0,   118)  ->  Abs (    52,   769)
+	 18: Rel (     0,   106)  ->  Abs (    52,   875)
+	 19: Rel (    89,   102)  ->  Abs (   141,   977)
+	 20: Rel (   102,   117)  ->  Abs (   243,  1094)
+	 21: Rel (   145,     0)  ->  Abs (   388,  1094)
+	 22: Rel (    65,     0)  ->  Abs (   453,  1094)
+	 23: Rel (    73,   -38)  ->  Abs (   526,  1056)
+	 24: Rel (    49,   -25)  ->  Abs (   575,  1031)
+	 25: Rel (    74,   -58)  ->  Abs (   649,   973)
+	 26: Rel (   -98,     0)  ->  Abs (   551,   973)
+	 27: Rel (  -103,   -13)  ->  Abs (   448,   960)
+	 28: Rel (  -133,   -17)  ->  Abs (   315,   943)
+	 29: Rel (   -82,   -32)  ->  Abs (   233,   911)
+	 30: Rel (  -100,   -39)  ->  Abs (   133,   872)
+	 31: Rel (     0,   -57)  ->  Abs (   133,   815)
+	 32: Rel (     0,   -61)  ->  Abs (   133,   754)
+	 33: Rel (   115,   -55)  ->  Abs (   248,   699)
+	 34: Rel (    97,   -46)  ->  Abs (   345,   653)
+	 35: Rel (   123,   -19)  ->  Abs (   468,   634)
+	 36: Rel (   100,    54)  ->  Abs (   568,   688)
+	 37: Rel (    95,    38)  ->  Abs (   663,   726)
+	 38: Rel (   106,    42)  ->  Abs (   769,   768)
+	 39: Rel (   114,    28)  ->  Abs (   883,   796)
+	 40: Rel (   -42,  -156)  ->  Abs (   841,   640)
+	 41: Rel (  -208,   -81)  ->  Abs (   633,   559)
+	 42: Rel (   -92,   -43)  ->  Abs (   541,   516)
+	 43: Rel (  -186,   -88)  ->  Abs (   355,   428)
+	 44: Rel (   -99,   -92)  ->  Abs (   256,   336)
+	 45: Rel (  -127,  -118)  ->  Abs (   129,   218)
+	 46: Rel (     0,  -135)  ->  Abs (   129,    83)
+	 47: Rel (     0,  -141)  ->  Abs (   129,   -58)
+	 48: Rel (   106,   -81)  ->  Abs (   235,  -139)
+	 49: Rel (    92,   -70)  ->  Abs (   327,  -209)
+	 50: Rel (   179,   -29)  ->  Abs (   506,  -238)
+	 51: Rel (   142,   -23)  ->  Abs (   648,  -261)
+	 52: Rel (   220,     0)  ->  Abs (   868,  -261)
+	 53: Rel (    47,     0)  ->  Abs (   915,  -261)
+	 54: Rel (    94,     2)  ->  Abs (  1009,  -259)
+	 55: Rel (    47,     1)  ->  Abs (  1056,  -258)
+
+	Glyph 970: off = 0x0002A4FC, len = 334
+	  numberOfContours:	1
+	  xMin:			54
+	  yMin:			-434
+	  xMax:			995
+	  yMax:			883
+
+	EndPoints
+	---------
+	  0:  52
+
+	  Length of Instructions:	177
+	00000: NPUSHB       (9):   232     4     1     5    32    12    14    52    49 
+	00011: PUSHW[1]            -70 
+	00014: PUSHB[4]              9    17    52    48 
+	00019: PUSHW[1]            -52 
+	00022: NPUSHB      (16):     9    17    52    11    10    27    10     2    40    31 
+	                            13     3    19    35     0    52 
+	00040: PUSHW[3]            751     1   774 
+	00047: PUSHB[6]             16    16    23    19    19    23 
+	00054: PUSHW[1]            -64 
+	00057: PUSHB[6]             13    17    52    23    23    35 
+	00064: PUSHW[3]            751    37   747 
+	00071: NPUSHB      (15):    52     1     0    46    40    31    13    27    27    36 
+	                            31    13    13    18    31 
+	00088: PUSHW[1]            -64 
+	00091: NPUSHB       (9):    15    17    52    31    31    18     0     0    36 
+	00102: PUSHW[4]            752    54    18   761 
+	00111: PUSHB[3]             19    19    46 
+	00115: PUSHW[3]            780     7   286 
+	00122: SCANCTRL   
+	00123: MDAP[rd]   
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: SHP[rp1,zp0] 
+	00126: MDAP[rd]   
+	00127: MIRP[nrp0,md,rd,1] 
+	00128: SRP0       
+	00129: MIRP[srp0,nmd,rd,1] 
+	00130: SHP[rp2,zp1] 
+	00131: MDAP[rd]   
+	00132: SRP1       
+	00133: IP         
+	00134: MDAP[rd]   
+	00135: CALL       
+	00136: SRP2       
+	00137: IP         
+	00138: MDAP[rd]   
+	00139: SRP1       
+	00140: SRP2       
+	00141: IP         
+	00142: MDAP[rd]   
+	00143: SRP1       
+	00144: SRP2       
+	00145: IP         
+	00146: SRP1       
+	00147: SRP2       
+	00148: IP         
+	00149: IP         
+	00150: SVTCA[y-axis] 
+	00151: MIAP[rd+ci] 
+	00152: MIRP[srp0,md,rd,1] 
+	00153: SHP[rp2,zp1] 
+	00154: MDAP[rd]   
+	00155: CALL       
+	00156: IP         
+	00157: MDAP[rd]   
+	00158: SRP2       
+	00159: IP         
+	00160: MDAP[rd]   
+	00161: MIAP[rd+ci] 
+	00162: MIRP[nrp0,md,rd,1] 
+	00163: IP         
+	00164: SRP1       
+	00165: SRP2       
+	00166: SLOOP      
+	00167: IP         
+	00168: IUP[y]     
+	00169: IUP[x]     
+	00170: SVTCA[x-axis] 
+	00171: DELTAP1    
+	00172: CALL       
+	00173: CALL       
+	00174: CALL       
+	00175: SVTCA[y-axis] 
+	00176: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:  YDual                       X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual         Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:                      Y-Short X-Short On
+	 30:                      Y-Short X-Short Off
+	 31:                      Y-Short X-Short On
+	 32:        XDual         Y-Short X-Short Off
+	 33:        XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short On
+	 36:        XDual         Y-Short         On
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual               Y-Short X-Short On
+	 41:                      Y-Short X-Short Off
+	 42:                      Y-Short X-Short On
+	 43:                      Y-Short X-Short Off
+	 44:                      Y-Short X-Short On
+	 45:                      Y-Short X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual         Y-Short         Off
+	 48:        XDual         Y-Short X-Short On
+	 49:        XDual         Y-Short X-Short Off
+	 50:        XDual         Y-Short X-Short On
+	 51:        XDual         Y-Short X-Short Off
+	 52:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   995,  -274)  ->  Abs (   995,  -274)
+	  1: Rel (  -202,  -160)  ->  Abs (   793,  -434)
+	  2: Rel (  -187,     0)  ->  Abs (   606,  -434)
+	  3: Rel (  -107,    17)  ->  Abs (   499,  -417)
+	  4: Rel (  -194,    31)  ->  Abs (   305,  -386)
+	  5: Rel (  -110,    89)  ->  Abs (   195,  -297)
+	  6: Rel (  -141,   115)  ->  Abs (    54,  -182)
+	  7: Rel (     0,   207)  ->  Abs (    54,    25)
+	  8: Rel (     0,   137)  ->  Abs (    54,   162)
+	  9: Rel (    53,   117)  ->  Abs (   107,   279)
+	 10: Rel (    42,    93)  ->  Abs (   149,   372)
+	 11: Rel (    84,    94)  ->  Abs (   233,   466)
+	 12: Rel (    40,    45)  ->  Abs (   273,   511)
+	 13: Rel (   107,   100)  ->  Abs (   380,   611)
+	 14: Rel (   -10,    34)  ->  Abs (   370,   645)
+	 15: Rel (   -37,    32)  ->  Abs (   333,   677)
+	 16: Rel (   -21,     0)  ->  Abs (   312,   677)
+	 17: Rel (   -26,     0)  ->  Abs (   286,   677)
+	 18: Rel (   -25,   -35)  ->  Abs (   261,   642)
+	 19: Rel (   -17,     0)  ->  Abs (   244,   642)
+	 20: Rel (    21,   105)  ->  Abs (   265,   747)
+	 21: Rel (    23,    40)  ->  Abs (   288,   787)
+	 22: Rel (    56,    96)  ->  Abs (   344,   883)
+	 23: Rel (   128,     0)  ->  Abs (   472,   883)
+	 24: Rel (    86,     0)  ->  Abs (   558,   883)
+	 25: Rel (    62,   -42)  ->  Abs (   620,   841)
+	 26: Rel (    69,   -47)  ->  Abs (   689,   794)
+	 27: Rel (     0,   -75)  ->  Abs (   689,   719)
+	 28: Rel (     0,   -49)  ->  Abs (   689,   670)
+	 29: Rel (   -38,   -34)  ->  Abs (   651,   636)
+	 30: Rel (   -35,   -28)  ->  Abs (   616,   608)
+	 31: Rel (   -22,   -18)  ->  Abs (   594,   590)
+	 32: Rel (    56,   -67)  ->  Abs (   650,   523)
+	 33: Rel (   103,   -56)  ->  Abs (   753,   467)
+	 34: Rel (    77,     0)  ->  Abs (   830,   467)
+	 35: Rel (   162,     0)  ->  Abs (   992,   467)
+	 36: Rel (     0,  -174)  ->  Abs (   992,   293)
+	 37: Rel (  -162,     0)  ->  Abs (   830,   293)
+	 38: Rel (  -153,     0)  ->  Abs (   677,   293)
+	 39: Rel (  -169,    92)  ->  Abs (   508,   385)
+	 40: Rel (   -51,   106)  ->  Abs (   457,   491)
+	 41: Rel (   -73,   -47)  ->  Abs (   384,   444)
+	 42: Rel (   -59,   -50)  ->  Abs (   325,   394)
+	 43: Rel (   -80,   -68)  ->  Abs (   245,   326)
+	 44: Rel (   -45,   -65)  ->  Abs (   200,   261)
+	 45: Rel (   -56,   -81)  ->  Abs (   144,   180)
+	 46: Rel (     0,   -75)  ->  Abs (   144,   105)
+	 47: Rel (     0,  -169)  ->  Abs (   144,   -64)
+	 48: Rel (   169,   -93)  ->  Abs (   313,  -157)
+	 49: Rel (   130,   -71)  ->  Abs (   443,  -228)
+	 50: Rel (   227,   -25)  ->  Abs (   670,  -253)
+	 51: Rel (   120,   -13)  ->  Abs (   790,  -266)
+	 52: Rel (   201,     0)  ->  Abs (   991,  -266)
+
+	Glyph 971: off = 0x0002A64A, len = 206
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1033
+	  yMax:			967
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	110
+	00000: PUSHW[2]             22   -32 
+	00005: PUSHB[8]             16    17    52    17    18    18     0    21 
+	00014: PUSHW[1]            751 
+	00017: PUSHB[4]             47    13     1    13 
+	00022: PUSHW[3]            772     0   751 
+	00029: PUSHB[7]              0     1     1     1     1     6    27 
+	00037: PUSHW[5]            751     6   751     5   747 
+	00048: NPUSHB      (17):    18    27    17     7    52    13    17    52     7    10 
+	                            17    17     1     0     0    31    24 
+	00067: PUSHW[1]            768 
+	00070: PUSHB[3]             10    10     5 
+	00074: MDAP[rd]   
+	00075: SHP[rp1,zp0] 
+	00076: MDAP[rd]   
+	00077: MIRP[nrp0,md,rd,1] 
+	00078: SRP1       
+	00079: SHP[rp1,zp0] 
+	00080: MDAP[rd]   
+	00081: SHP[rp1,zp0] 
+	00082: SHP[rp1,zp0] 
+	00083: MDAP[rd]   
+	00084: SRP1       
+	00085: IP         
+	00086: CALL       
+	00087: SRP1       
+	00088: IP         
+	00089: IP         
+	00090: SVTCA[y-axis] 
+	00091: MIAP[rd+ci] 
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: MIRP[nrp0,md,rd,1] 
+	00094: SRP2       
+	00095: IP         
+	00096: MDAP[rd]   
+	00097: DELTAP1    
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: MIAP[rd+ci] 
+	00100: DELTAP1    
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: SRP1       
+	00103: IP         
+	00104: MDAP[rd]   
+	00105: IP         
+	00106: IUP[y]     
+	00107: IUP[x]     
+	00108: SVTCA[x-axis] 
+	00109: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short         Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short X-Short On
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short X-Short On
+	 18:                      Y-Short X-Short On
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:                      Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1033,   605)  ->  Abs (  1033,   605)
+	  1: Rel (   -69,  -182)  ->  Abs (   964,   423)
+	  2: Rel (  -151,   -55)  ->  Abs (   813,   368)
+	  3: Rel (  -397,   -75)  ->  Abs (   416,   293)
+	  4: Rel (  -167,     0)  ->  Abs (   249,   293)
+	  5: Rel (  -249,     0)  ->  Abs (     0,   293)
+	  6: Rel (     0,   174)  ->  Abs (     0,   467)
+	  7: Rel (   240,     0)  ->  Abs (   240,   467)
+	  8: Rel (   -29,    47)  ->  Abs (   211,   514)
+	  9: Rel (   -36,   119)  ->  Abs (   175,   633)
+	 10: Rel (     0,    56)  ->  Abs (   175,   689)
+	 11: Rel (     0,   118)  ->  Abs (   175,   807)
+	 12: Rel (   197,   160)  ->  Abs (   372,   967)
+	 13: Rel (   155,     0)  ->  Abs (   527,   967)
+	 14: Rel (   123,     0)  ->  Abs (   650,   967)
+	 15: Rel (    80,   -60)  ->  Abs (   730,   907)
+	 16: Rel (    34,   -25)  ->  Abs (   764,   882)
+	 17: Rel (    81,   -98)  ->  Abs (   845,   784)
+	 18: Rel (   -19,   -17)  ->  Abs (   826,   767)
+	 19: Rel (   -69,    19)  ->  Abs (   757,   786)
+	 20: Rel (  -110,    19)  ->  Abs (   647,   805)
+	 21: Rel (   -59,     0)  ->  Abs (   588,   805)
+	 22: Rel (  -138,     0)  ->  Abs (   450,   805)
+	 23: Rel (  -157,   -61)  ->  Abs (   293,   744)
+	 24: Rel (     0,   -50)  ->  Abs (   293,   694)
+	 25: Rel (     0,   -49)  ->  Abs (   293,   645)
+	 26: Rel (    99,  -121)  ->  Abs (   392,   524)
+	 27: Rel (    78,   -47)  ->  Abs (   470,   477)
+	 28: Rel (   164,    25)  ->  Abs (   634,   502)
+	 29: Rel (   210,    47)  ->  Abs (   844,   549)
+
+	Glyph 972: off = 0x0002A718, len = 228
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			293
+	  xMax:			877
+	  yMax:			856
+
+	EndPoints
+	---------
+	  0:  40
+
+	  Length of Instructions:	106
+	00000: NPUSHB      (12):    16    36    23     5    40     0    19    19    28    23 
+	                            23    28 
+	00014: PUSHW[1]            -64 
+	00017: PUSHB[6]             14    17    52    28    28    40 
+	00024: PUSHW[1]            751 
+	00027: PUSHB[3]              0     0    11 
+	00031: PUSHW[3]            751    10   747 
+	00038: NPUSHB      (15):     5    36    16    16    36    36    22    80    32   128 
+	                            32     2    32    32     0 
+	00055: PUSHW[4]            752    42    22   761 
+	00064: PUSHB[3]             23    23    10 
+	00068: MDAP[rd]   
+	00069: SHP[rp1,zp0] 
+	00070: MDAP[rd]   
+	00071: MIRP[nrp0,md,rd,1] 
+	00072: SRP0       
+	00073: MIRP[srp0,nmd,rd,0] 
+	00074: SHP[rp2,zp1] 
+	00075: MDAP[rd]   
+	00076: DELTAP1    
+	00077: SRP2       
+	00078: IP         
+	00079: MDAP[rd]   
+	00080: IP         
+	00081: MDAP[rd]   
+	00082: SRP2       
+	00083: IP         
+	00084: SVTCA[y-axis] 
+	00085: MIAP[rd+ci] 
+	00086: MIRP[nrp0,md,rd,1] 
+	00087: ALIGNRP    
+	00088: SRP0       
+	00089: MIRP[srp0,md,rd,1] 
+	00090: SHP[rp2,zp1] 
+	00091: MDAP[rd]   
+	00092: CALL       
+	00093: IP         
+	00094: MDAP[rd]   
+	00095: SRP2       
+	00096: IP         
+	00097: MDAP[rd]   
+	00098: SRP1       
+	00099: SRP2       
+	00100: IP         
+	00101: SRP1       
+	00102: IP         
+	00103: IP         
+	00104: IUP[y]     
+	00105: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short On
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:                      Y-Short X-Short Off
+	 22:                      Y-Short X-Short On
+	 23:  YDual                       X-Short On
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short On
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:                      Y-Short X-Short On
+	 35:                      Y-Short X-Short Off
+	 36:                      Y-Short X-Short On
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short X-Short Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   877,   293)  ->  Abs (   877,   293)
+	  1: Rel (  -147,     0)  ->  Abs (   730,   293)
+	  2: Rel (   -65,     0)  ->  Abs (   665,   293)
+	  3: Rel (   -67,    31)  ->  Abs (   598,   324)
+	  4: Rel (   -80,    37)  ->  Abs (   518,   361)
+	  5: Rel (   -36,    66)  ->  Abs (   482,   427)
+	  6: Rel (   -67,   -60)  ->  Abs (   415,   367)
+	  7: Rel (   -86,   -33)  ->  Abs (   329,   334)
+	  8: Rel (  -105,   -41)  ->  Abs (   224,   293)
+	  9: Rel (  -134,     0)  ->  Abs (    90,   293)
+	 10: Rel (   -90,     0)  ->  Abs (     0,   293)
+	 11: Rel (     0,   174)  ->  Abs (     0,   467)
+	 12: Rel (    90,     0)  ->  Abs (    90,   467)
+	 13: Rel (    84,     0)  ->  Abs (   174,   467)
+	 14: Rel (    72,    18)  ->  Abs (   246,   485)
+	 15: Rel (    82,    21)  ->  Abs (   328,   506)
+	 16: Rel (    79,    46)  ->  Abs (   407,   552)
+	 17: Rel (   -42,    54)  ->  Abs (   365,   606)
+	 18: Rel (   -32,    38)  ->  Abs (   333,   644)
+	 19: Rel (   -40,     0)  ->  Abs (   293,   644)
+	 20: Rel (   -18,     0)  ->  Abs (   275,   644)
+	 21: Rel (   -28,   -13)  ->  Abs (   247,   631)
+	 22: Rel (   -17,   -22)  ->  Abs (   230,   609)
+	 23: Rel (   -21,     0)  ->  Abs (   209,   609)
+	 24: Rel (     0,    59)  ->  Abs (   209,   668)
+	 25: Rel (     0,   110)  ->  Abs (   209,   778)
+	 26: Rel (    58,    41)  ->  Abs (   267,   819)
+	 27: Rel (    53,    37)  ->  Abs (   320,   856)
+	 28: Rel (   131,     0)  ->  Abs (   451,   856)
+	 29: Rel (   113,     0)  ->  Abs (   564,   856)
+	 30: Rel (    71,   -30)  ->  Abs (   635,   826)
+	 31: Rel (    93,   -39)  ->  Abs (   728,   787)
+	 32: Rel (     0,   -81)  ->  Abs (   728,   706)
+	 33: Rel (     0,   -43)  ->  Abs (   728,   663)
+	 34: Rel (   -37,   -46)  ->  Abs (   691,   617)
+	 35: Rel (   -27,   -34)  ->  Abs (   664,   583)
+	 36: Rel (   -72,   -60)  ->  Abs (   592,   523)
+	 37: Rel (    16,   -24)  ->  Abs (   608,   499)
+	 38: Rel (    91,   -32)  ->  Abs (   699,   467)
+	 39: Rel (    31,     0)  ->  Abs (   730,   467)
+	 40: Rel (   147,     0)  ->  Abs (   877,   467)
+
+	Glyph 973: off = 0x0002A7FC, len = 384
+	  numberOfContours:	2
+	  xMin:			42
+	  yMin:			-434
+	  xMax:			1056
+	  yMax:			1509
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  59
+
+	  Length of Instructions:	197
+	00000: PUSHB[4]            128    47     1    33 
+	00005: PUSHW[1]            -32 
+	00008: PUSHB[4]             14    17    52    53 
+	00013: PUSHW[1]            -52 
+	00016: PUSHB[4]             11    17    52    52 
+	00021: PUSHW[1]            -32 
+	00024: PUSHB[6]             11    17    52     0     2     3 
+	00031: PUSHW[1]            770 
+	00034: NPUSHB       (9):     1     1    25    17    32    14    17    52    17 
+	00045: PUSHW[3]            751    39   -38 
+	00052: PUSHB[8]             14    17    52    39    39    44     4    59 
+	00061: PUSHW[5]            751     5   774    25   751 
+	00072: PUSHB[3]             29    29    43 
+	00076: PUSHW[3]            751    44   775 
+	00083: PUSHB[3]              1     3     2 
+	00087: PUSHW[1]            769 
+	00090: NPUSHB      (22):     0     0    17    52    14    17    52    39    17    43 
+	                            35     5     4    50    29    29    43    59     4     4 
+	                            44    43 
+	00114: PUSHW[1]            -64 
+	00117: PUSHB[7]             12    13    52    43    43    61    35 
+	00125: PUSHW[1]            780 
+	00128: PUSHB[3]             21    21    50 
+	00132: PUSHW[3]            780    11   287 
+	00139: SCANCTRL   
+	00140: MDAP[rd]   
+	00141: MIRP[nrp0,md,rd,1] 
+	00142: SHP[rp1,zp0] 
+	00143: MDAP[rd]   
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: SRP1       
+	00146: SHP[rp1,zp0] 
+	00147: MDAP[rd]   
+	00148: CALL       
+	00149: SHP[rp1,zp0] 
+	00150: SHP[rp1,zp0] 
+	00151: MDAP[rd]   
+	00152: ALIGNRP    
+	00153: SRP1       
+	00154: IP         
+	00155: MDAP[rd]   
+	00156: SRP1       
+	00157: SRP2       
+	00158: IP         
+	00159: SRP1       
+	00160: SRP2       
+	00161: IP         
+	00162: IP         
+	00163: CALL       
+	00164: IP         
+	00165: MDAP[rd]   
+	00166: MIRP[srp0,md,rd,1] 
+	00167: IP         
+	00168: IP         
+	00169: SVTCA[y-axis] 
+	00170: MIAP[rd+ci] 
+	00171: MIRP[srp0,md,rd,1] 
+	00172: SHP[rp2,zp1] 
+	00173: MDAP[rd]   
+	00174: MIRP[nrp0,md,rd,1] 
+	00175: MIAP[rd+ci] 
+	00176: MIRP[nrp0,md,rd,1] 
+	00177: IP         
+	00178: SRP1       
+	00179: IP         
+	00180: MDAP[rd]   
+	00181: CALL       
+	00182: MIRP[nrp0,md,rd,1] 
+	00183: CALL       
+	00184: SRP1       
+	00185: SHP[rp1,zp0] 
+	00186: MDAP[rd]   
+	00187: MIRP[nrp0,md,rd,1] 
+	00188: IP         
+	00189: IP         
+	00190: IUP[y]     
+	00191: IUP[x]     
+	00192: SVTCA[x-axis] 
+	00193: CALL       
+	00194: CALL       
+	00195: CALL       
+	00196: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:                      Y-Short X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual               Y-Short X-Short On
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short On
+	 30:  YDual                       X-Short Off
+	 31:                      Y-Short X-Short On
+	 32:                      Y-Short X-Short Off
+	 33:                      Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:        XDual         Y-Short X-Short On
+	 38:        XDual         Y-Short X-Short Off
+	 39:        XDual         Y-Short X-Short On
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:                      Y-Short X-Short On
+	 45:                      Y-Short X-Short Off
+	 46:                      Y-Short X-Short On
+	 47:                      Y-Short X-Short Off
+	 48:                      Y-Short X-Short On
+	 49:                      Y-Short X-Short Off
+	 50:        XDual         Y-Short         On
+	 51:        XDual         Y-Short         Off
+	 52:        XDual         Y-Short X-Short On
+	 53:        XDual         Y-Short X-Short Off
+	 54:        XDual         Y-Short X-Short On
+	 55:        XDual         Y-Short X-Short Off
+	 56:  YDual XDual                 X-Short On
+	 57:  YDual XDual                 X-Short Off
+	 58:  YDual XDual         Y-Short X-Short Off
+	 59:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   498,  1424)  ->  Abs (   498,  1424)
+	  1: Rel (   -81,  -144)  ->  Abs (   417,  1280)
+	  2: Rel (  -156,    83)  ->  Abs (   261,  1363)
+	  3: Rel (    81,   146)  ->  Abs (   342,  1509)
+	  4: Rel (   714, -1776)  ->  Abs (  1056,  -267)
+	  5: Rel (  -253,  -167)  ->  Abs (   803,  -434)
+	  6: Rel (  -208,     0)  ->  Abs (   595,  -434)
+	  7: Rel (  -114,    17)  ->  Abs (   481,  -417)
+	  8: Rel (  -197,    29)  ->  Abs (   284,  -388)
+	  9: Rel (  -107,    87)  ->  Abs (   177,  -301)
+	 10: Rel (  -135,   109)  ->  Abs (    42,  -192)
+	 11: Rel (     0,   204)  ->  Abs (    42,    12)
+	 12: Rel (     0,   124)  ->  Abs (    42,   136)
+	 13: Rel (    38,    99)  ->  Abs (    80,   235)
+	 14: Rel (    31,    81)  ->  Abs (   111,   316)
+	 15: Rel (    58,    72)  ->  Abs (   169,   388)
+	 16: Rel (    28,    34)  ->  Abs (   197,   422)
+	 17: Rel (    70,    69)  ->  Abs (   267,   491)
+	 18: Rel (   -96,    48)  ->  Abs (   171,   539)
+	 19: Rel (   -37,    35)  ->  Abs (   134,   574)
+	 20: Rel (   -82,    77)  ->  Abs (    52,   651)
+	 21: Rel (     0,   118)  ->  Abs (    52,   769)
+	 22: Rel (     0,   106)  ->  Abs (    52,   875)
+	 23: Rel (    89,   102)  ->  Abs (   141,   977)
+	 24: Rel (   102,   117)  ->  Abs (   243,  1094)
+	 25: Rel (   145,     0)  ->  Abs (   388,  1094)
+	 26: Rel (    65,     0)  ->  Abs (   453,  1094)
+	 27: Rel (    73,   -38)  ->  Abs (   526,  1056)
+	 28: Rel (    49,   -25)  ->  Abs (   575,  1031)
+	 29: Rel (    74,   -58)  ->  Abs (   649,   973)
+	 30: Rel (   -98,     0)  ->  Abs (   551,   973)
+	 31: Rel (  -103,   -13)  ->  Abs (   448,   960)
+	 32: Rel (  -133,   -17)  ->  Abs (   315,   943)
+	 33: Rel (   -82,   -32)  ->  Abs (   233,   911)
+	 34: Rel (  -100,   -39)  ->  Abs (   133,   872)
+	 35: Rel (     0,   -57)  ->  Abs (   133,   815)
+	 36: Rel (     0,   -61)  ->  Abs (   133,   754)
+	 37: Rel (   115,   -55)  ->  Abs (   248,   699)
+	 38: Rel (    97,   -46)  ->  Abs (   345,   653)
+	 39: Rel (   123,   -19)  ->  Abs (   468,   634)
+	 40: Rel (   100,    54)  ->  Abs (   568,   688)
+	 41: Rel (    95,    38)  ->  Abs (   663,   726)
+	 42: Rel (   106,    42)  ->  Abs (   769,   768)
+	 43: Rel (   114,    28)  ->  Abs (   883,   796)
+	 44: Rel (   -42,  -156)  ->  Abs (   841,   640)
+	 45: Rel (  -208,   -81)  ->  Abs (   633,   559)
+	 46: Rel (   -92,   -43)  ->  Abs (   541,   516)
+	 47: Rel (  -186,   -88)  ->  Abs (   355,   428)
+	 48: Rel (   -99,   -92)  ->  Abs (   256,   336)
+	 49: Rel (  -127,  -118)  ->  Abs (   129,   218)
+	 50: Rel (     0,  -135)  ->  Abs (   129,    83)
+	 51: Rel (     0,  -141)  ->  Abs (   129,   -58)
+	 52: Rel (   106,   -81)  ->  Abs (   235,  -139)
+	 53: Rel (    92,   -70)  ->  Abs (   327,  -209)
+	 54: Rel (   179,   -29)  ->  Abs (   506,  -238)
+	 55: Rel (   142,   -23)  ->  Abs (   648,  -261)
+	 56: Rel (   220,     0)  ->  Abs (   868,  -261)
+	 57: Rel (    47,     0)  ->  Abs (   915,  -261)
+	 58: Rel (    94,     2)  ->  Abs (  1009,  -259)
+	 59: Rel (    47,     1)  ->  Abs (  1056,  -258)
+
+	Glyph 974: off = 0x0002A97C, len = 386
+	  numberOfContours:	2
+	  xMin:			54
+	  yMin:			-434
+	  xMax:			995
+	  yMax:			1309
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  56
+
+	  Length of Instructions:	212
+	00000: NPUSHB       (9):   232     8     1     9    32    12    14    52    53 
+	00011: PUSHW[1]            -70 
+	00014: PUSHB[4]              9    17    52    52 
+	00019: PUSHW[1]            -52 
+	00022: NPUSHB      (11):     9    17    52    11    14    27    14     2     0     2 
+	                             3 
+	00035: PUSHW[1]            770 
+	00038: NPUSHB      (11):     1     1    27    44    35    17     3    23    39     4 
+	                            56 
+	00051: PUSHW[3]            751     5   774 
+	00058: PUSHB[6]             20    20    27    23    23    27 
+	00065: PUSHW[1]            -64 
+	00068: PUSHB[6]             13    17    52    27    27    39 
+	00075: PUSHW[3]            751    41   747 
+	00082: PUSHB[3]              1     3     2 
+	00086: PUSHW[1]            769 
+	00089: NPUSHB      (19):     0     0    31    35    56     5     4    50    44    35 
+	                            17    31    31    40    35    17    17    22    35 
+	00110: PUSHW[1]            -64 
+	00113: NPUSHB       (9):    15    17    52    35    35    22     4     4    40 
+	00124: PUSHW[4]            752    58    22   761 
+	00133: PUSHB[3]             23    23    50 
+	00137: PUSHW[3]            780    11   286 
+	00144: SCANCTRL   
+	00145: MDAP[rd]   
+	00146: MIRP[nrp0,md,rd,1] 
+	00147: SHP[rp1,zp0] 
+	00148: MDAP[rd]   
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: SRP0       
+	00151: MIRP[srp0,nmd,rd,1] 
+	00152: SHP[rp2,zp1] 
+	00153: MDAP[rd]   
+	00154: SRP1       
+	00155: IP         
+	00156: MDAP[rd]   
+	00157: CALL       
+	00158: SRP2       
+	00159: IP         
+	00160: MDAP[rd]   
+	00161: SRP1       
+	00162: SRP2       
+	00163: IP         
+	00164: MDAP[rd]   
+	00165: SRP1       
+	00166: SRP2       
+	00167: IP         
+	00168: SRP1       
+	00169: SRP2       
+	00170: IP         
+	00171: IP         
+	00172: SRP1       
+	00173: SRP2       
+	00174: IP         
+	00175: MDAP[rd]   
+	00176: MIRP[srp0,md,rd,1] 
+	00177: IP         
+	00178: IP         
+	00179: SVTCA[y-axis] 
+	00180: MIAP[rd+ci] 
+	00181: MIRP[srp0,md,rd,1] 
+	00182: SHP[rp2,zp1] 
+	00183: MDAP[rd]   
+	00184: CALL       
+	00185: IP         
+	00186: MDAP[rd]   
+	00187: SRP2       
+	00188: IP         
+	00189: MDAP[rd]   
+	00190: MIAP[rd+ci] 
+	00191: MIRP[nrp0,md,rd,1] 
+	00192: IP         
+	00193: SRP1       
+	00194: SRP2       
+	00195: SLOOP      
+	00196: IP         
+	00197: SRP1       
+	00198: SHP[rp1,zp0] 
+	00199: MDAP[rd]   
+	00200: MIRP[nrp0,md,rd,1] 
+	00201: IP         
+	00202: IP         
+	00203: IUP[y]     
+	00204: IUP[x]     
+	00205: SVTCA[x-axis] 
+	00206: DELTAP1    
+	00207: CALL       
+	00208: CALL       
+	00209: CALL       
+	00210: SVTCA[y-axis] 
+	00211: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:                      Y-Short X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:                      Y-Short X-Short On
+	 23:  YDual                       X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short On
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short On
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short On
+	 40:        XDual         Y-Short         On
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual               Y-Short X-Short On
+	 45:                      Y-Short X-Short Off
+	 46:                      Y-Short X-Short On
+	 47:                      Y-Short X-Short Off
+	 48:                      Y-Short X-Short On
+	 49:                      Y-Short X-Short Off
+	 50:        XDual         Y-Short         On
+	 51:        XDual         Y-Short         Off
+	 52:        XDual         Y-Short X-Short On
+	 53:        XDual         Y-Short X-Short Off
+	 54:        XDual         Y-Short X-Short On
+	 55:        XDual         Y-Short X-Short Off
+	 56:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   599,  1224)  ->  Abs (   599,  1224)
+	  1: Rel (   -76,  -145)  ->  Abs (   523,  1079)
+	  2: Rel (  -162,    84)  ->  Abs (   361,  1163)
+	  3: Rel (    75,   146)  ->  Abs (   436,  1309)
+	  4: Rel (   559, -1583)  ->  Abs (   995,  -274)
+	  5: Rel (  -202,  -160)  ->  Abs (   793,  -434)
+	  6: Rel (  -187,     0)  ->  Abs (   606,  -434)
+	  7: Rel (  -107,    17)  ->  Abs (   499,  -417)
+	  8: Rel (  -194,    31)  ->  Abs (   305,  -386)
+	  9: Rel (  -110,    89)  ->  Abs (   195,  -297)
+	 10: Rel (  -141,   115)  ->  Abs (    54,  -182)
+	 11: Rel (     0,   207)  ->  Abs (    54,    25)
+	 12: Rel (     0,   137)  ->  Abs (    54,   162)
+	 13: Rel (    53,   117)  ->  Abs (   107,   279)
+	 14: Rel (    42,    93)  ->  Abs (   149,   372)
+	 15: Rel (    84,    94)  ->  Abs (   233,   466)
+	 16: Rel (    40,    45)  ->  Abs (   273,   511)
+	 17: Rel (   107,   100)  ->  Abs (   380,   611)
+	 18: Rel (   -10,    34)  ->  Abs (   370,   645)
+	 19: Rel (   -37,    32)  ->  Abs (   333,   677)
+	 20: Rel (   -21,     0)  ->  Abs (   312,   677)
+	 21: Rel (   -26,     0)  ->  Abs (   286,   677)
+	 22: Rel (   -25,   -35)  ->  Abs (   261,   642)
+	 23: Rel (   -17,     0)  ->  Abs (   244,   642)
+	 24: Rel (    21,   105)  ->  Abs (   265,   747)
+	 25: Rel (    23,    40)  ->  Abs (   288,   787)
+	 26: Rel (    56,    96)  ->  Abs (   344,   883)
+	 27: Rel (   128,     0)  ->  Abs (   472,   883)
+	 28: Rel (    86,     0)  ->  Abs (   558,   883)
+	 29: Rel (    62,   -42)  ->  Abs (   620,   841)
+	 30: Rel (    69,   -47)  ->  Abs (   689,   794)
+	 31: Rel (     0,   -75)  ->  Abs (   689,   719)
+	 32: Rel (     0,   -49)  ->  Abs (   689,   670)
+	 33: Rel (   -38,   -34)  ->  Abs (   651,   636)
+	 34: Rel (   -35,   -28)  ->  Abs (   616,   608)
+	 35: Rel (   -22,   -18)  ->  Abs (   594,   590)
+	 36: Rel (    56,   -67)  ->  Abs (   650,   523)
+	 37: Rel (   103,   -56)  ->  Abs (   753,   467)
+	 38: Rel (    77,     0)  ->  Abs (   830,   467)
+	 39: Rel (   162,     0)  ->  Abs (   992,   467)
+	 40: Rel (     0,  -174)  ->  Abs (   992,   293)
+	 41: Rel (  -162,     0)  ->  Abs (   830,   293)
+	 42: Rel (  -153,     0)  ->  Abs (   677,   293)
+	 43: Rel (  -169,    92)  ->  Abs (   508,   385)
+	 44: Rel (   -51,   106)  ->  Abs (   457,   491)
+	 45: Rel (   -73,   -47)  ->  Abs (   384,   444)
+	 46: Rel (   -59,   -50)  ->  Abs (   325,   394)
+	 47: Rel (   -80,   -68)  ->  Abs (   245,   326)
+	 48: Rel (   -45,   -65)  ->  Abs (   200,   261)
+	 49: Rel (   -56,   -81)  ->  Abs (   144,   180)
+	 50: Rel (     0,   -75)  ->  Abs (   144,   105)
+	 51: Rel (     0,  -169)  ->  Abs (   144,   -64)
+	 52: Rel (   169,   -93)  ->  Abs (   313,  -157)
+	 53: Rel (   130,   -71)  ->  Abs (   443,  -228)
+	 54: Rel (   227,   -25)  ->  Abs (   670,  -253)
+	 55: Rel (   120,   -13)  ->  Abs (   790,  -266)
+	 56: Rel (   201,     0)  ->  Abs (   991,  -266)
+
+	Glyph 975: off = 0x0002AAFE, len = 256
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			293
+	  xMax:			1033
+	  yMax:			1309
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  33
+
+	  Length of Instructions:	145
+	00000: PUSHW[2]             26   -32 
+	00005: PUSHB[6]             16    17    52     0     2     3 
+	00012: PUSHW[1]            770 
+	00015: NPUSHB      (11):    15     1     1     1     1    17    21    22    22     4 
+	                            25 
+	00028: PUSHW[1]            751 
+	00031: PUSHB[4]             47    17     1    17 
+	00036: PUSHW[3]            772     4   751 
+	00043: PUSHB[7]              0     5     1     5     5    10    31 
+	00051: PUSHW[5]            751    10   751     9   747 
+	00062: PUSHB[3]              1     3     2 
+	00066: PUSHW[1]            769 
+	00069: NPUSHB      (19):     0     0    22    31    21    11    52    13    17    52 
+	                            11    14    21    21     5     4     4    35    28 
+	00090: PUSHW[1]            768 
+	00093: PUSHB[3]             14    14     9 
+	00097: MDAP[rd]   
+	00098: SHP[rp1,zp0] 
+	00099: MDAP[rd]   
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: SRP1       
+	00102: SHP[rp1,zp0] 
+	00103: MDAP[rd]   
+	00104: SHP[rp1,zp0] 
+	00105: SHP[rp1,zp0] 
+	00106: MDAP[rd]   
+	00107: SRP1       
+	00108: IP         
+	00109: CALL       
+	00110: SRP1       
+	00111: IP         
+	00112: IP         
+	00113: IP         
+	00114: MDAP[rd]   
+	00115: MIRP[srp0,md,rd,1] 
+	00116: IP         
+	00117: IP         
+	00118: SVTCA[y-axis] 
+	00119: MIAP[rd+ci] 
+	00120: MIRP[nrp0,md,rd,1] 
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: SRP2       
+	00123: IP         
+	00124: MDAP[rd]   
+	00125: DELTAP1    
+	00126: MIRP[nrp0,md,rd,1] 
+	00127: MIAP[rd+ci] 
+	00128: DELTAP1    
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: SRP1       
+	00131: IP         
+	00132: MDAP[rd]   
+	00133: IP         
+	00134: SRP1       
+	00135: SHP[rp1,zp0] 
+	00136: MDAP[rd]   
+	00137: DELTAP1    
+	00138: MIRP[nrp0,md,rd,1] 
+	00139: IP         
+	00140: IP         
+	00141: IUP[y]     
+	00142: IUP[x]     
+	00143: SVTCA[x-axis] 
+	00144: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short         Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:                      Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:                      Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   613,  1224)  ->  Abs (   613,  1224)
+	  1: Rel (   -75,  -145)  ->  Abs (   538,  1079)
+	  2: Rel (  -163,    84)  ->  Abs (   375,  1163)
+	  3: Rel (    76,   146)  ->  Abs (   451,  1309)
+	  4: Rel (   582,  -704)  ->  Abs (  1033,   605)
+	  5: Rel (   -69,  -182)  ->  Abs (   964,   423)
+	  6: Rel (  -151,   -55)  ->  Abs (   813,   368)
+	  7: Rel (  -397,   -75)  ->  Abs (   416,   293)
+	  8: Rel (  -167,     0)  ->  Abs (   249,   293)
+	  9: Rel (  -249,     0)  ->  Abs (     0,   293)
+	 10: Rel (     0,   174)  ->  Abs (     0,   467)
+	 11: Rel (   240,     0)  ->  Abs (   240,   467)
+	 12: Rel (   -29,    47)  ->  Abs (   211,   514)
+	 13: Rel (   -36,   119)  ->  Abs (   175,   633)
+	 14: Rel (     0,    56)  ->  Abs (   175,   689)
+	 15: Rel (     0,   118)  ->  Abs (   175,   807)
+	 16: Rel (   197,   160)  ->  Abs (   372,   967)
+	 17: Rel (   155,     0)  ->  Abs (   527,   967)
+	 18: Rel (   123,     0)  ->  Abs (   650,   967)
+	 19: Rel (    80,   -60)  ->  Abs (   730,   907)
+	 20: Rel (    34,   -25)  ->  Abs (   764,   882)
+	 21: Rel (    81,   -98)  ->  Abs (   845,   784)
+	 22: Rel (   -19,   -17)  ->  Abs (   826,   767)
+	 23: Rel (   -69,    19)  ->  Abs (   757,   786)
+	 24: Rel (  -110,    19)  ->  Abs (   647,   805)
+	 25: Rel (   -59,     0)  ->  Abs (   588,   805)
+	 26: Rel (  -138,     0)  ->  Abs (   450,   805)
+	 27: Rel (  -157,   -61)  ->  Abs (   293,   744)
+	 28: Rel (     0,   -50)  ->  Abs (   293,   694)
+	 29: Rel (     0,   -49)  ->  Abs (   293,   645)
+	 30: Rel (    99,  -121)  ->  Abs (   392,   524)
+	 31: Rel (    78,   -47)  ->  Abs (   470,   477)
+	 32: Rel (   164,    25)  ->  Abs (   634,   502)
+	 33: Rel (   210,    47)  ->  Abs (   844,   549)
+
+	Glyph 976: off = 0x0002ABFE, len = 276
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			293
+	  xMax:			877
+	  yMax:			1309
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  44
+
+	  Length of Instructions:	138
+	00000: PUSHB[3]              0     2     3 
+	00004: PUSHW[1]            770 
+	00007: NPUSHB      (15):     1     1    32    20    40    27     9    44     4    23 
+	                            23    32    27    27    32 
+	00024: PUSHW[1]            -64 
+	00027: PUSHB[6]             14    17    52    32    32    44 
+	00034: PUSHW[1]            751 
+	00037: PUSHB[3]              4     4    15 
+	00041: PUSHW[3]            751    14   747 
+	00048: PUSHB[3]              1     3     2 
+	00052: PUSHW[1]            769 
+	00055: NPUSHB      (18):     0     0    36     9    40    20    20    40    40    26 
+	                            80    36   128    36     2    36    36     4 
+	00075: PUSHW[4]            752    46    26   761 
+	00084: PUSHB[3]             27    27    14 
+	00088: MDAP[rd]   
+	00089: SHP[rp1,zp0] 
+	00090: MDAP[rd]   
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: SRP0       
+	00093: MIRP[srp0,nmd,rd,1] 
+	00094: SHP[rp2,zp1] 
+	00095: MDAP[rd]   
+	00096: DELTAP1    
+	00097: SRP2       
+	00098: IP         
+	00099: MDAP[rd]   
+	00100: IP         
+	00101: MDAP[rd]   
+	00102: SRP2       
+	00103: IP         
+	00104: SRP2       
+	00105: IP         
+	00106: MDAP[rd]   
+	00107: MIRP[srp0,md,rd,1] 
+	00108: IP         
+	00109: IP         
+	00110: SVTCA[y-axis] 
+	00111: MIAP[rd+ci] 
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: ALIGNRP    
+	00114: SRP0       
+	00115: MIRP[srp0,md,rd,1] 
+	00116: SHP[rp2,zp1] 
+	00117: MDAP[rd]   
+	00118: CALL       
+	00119: IP         
+	00120: MDAP[rd]   
+	00121: SRP2       
+	00122: IP         
+	00123: MDAP[rd]   
+	00124: SRP1       
+	00125: SRP2       
+	00126: IP         
+	00127: SRP1       
+	00128: IP         
+	00129: IP         
+	00130: SRP1       
+	00131: SHP[rp1,zp0] 
+	00132: MDAP[rd]   
+	00133: MIRP[nrp0,md,rd,1] 
+	00134: IP         
+	00135: IP         
+	00136: IUP[y]     
+	00137: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short On
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual               Y-Short X-Short On
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short X-Short On
+	 27:  YDual                       X-Short On
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:        XDual         Y-Short X-Short On
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short On
+	 39:                      Y-Short X-Short Off
+	 40:                      Y-Short X-Short On
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short X-Short Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   536,  1224)  ->  Abs (   536,  1224)
+	  1: Rel (   -76,  -145)  ->  Abs (   460,  1079)
+	  2: Rel (  -162,    84)  ->  Abs (   298,  1163)
+	  3: Rel (    75,   146)  ->  Abs (   373,  1309)
+	  4: Rel (   504, -1016)  ->  Abs (   877,   293)
+	  5: Rel (  -147,     0)  ->  Abs (   730,   293)
+	  6: Rel (   -65,     0)  ->  Abs (   665,   293)
+	  7: Rel (   -67,    31)  ->  Abs (   598,   324)
+	  8: Rel (   -80,    37)  ->  Abs (   518,   361)
+	  9: Rel (   -36,    66)  ->  Abs (   482,   427)
+	 10: Rel (   -67,   -60)  ->  Abs (   415,   367)
+	 11: Rel (   -86,   -33)  ->  Abs (   329,   334)
+	 12: Rel (  -105,   -41)  ->  Abs (   224,   293)
+	 13: Rel (  -134,     0)  ->  Abs (    90,   293)
+	 14: Rel (   -90,     0)  ->  Abs (     0,   293)
+	 15: Rel (     0,   174)  ->  Abs (     0,   467)
+	 16: Rel (    90,     0)  ->  Abs (    90,   467)
+	 17: Rel (    84,     0)  ->  Abs (   174,   467)
+	 18: Rel (    72,    18)  ->  Abs (   246,   485)
+	 19: Rel (    82,    21)  ->  Abs (   328,   506)
+	 20: Rel (    79,    46)  ->  Abs (   407,   552)
+	 21: Rel (   -42,    54)  ->  Abs (   365,   606)
+	 22: Rel (   -32,    38)  ->  Abs (   333,   644)
+	 23: Rel (   -40,     0)  ->  Abs (   293,   644)
+	 24: Rel (   -18,     0)  ->  Abs (   275,   644)
+	 25: Rel (   -28,   -13)  ->  Abs (   247,   631)
+	 26: Rel (   -17,   -22)  ->  Abs (   230,   609)
+	 27: Rel (   -21,     0)  ->  Abs (   209,   609)
+	 28: Rel (     0,    59)  ->  Abs (   209,   668)
+	 29: Rel (     0,   110)  ->  Abs (   209,   778)
+	 30: Rel (    58,    41)  ->  Abs (   267,   819)
+	 31: Rel (    53,    37)  ->  Abs (   320,   856)
+	 32: Rel (   131,     0)  ->  Abs (   451,   856)
+	 33: Rel (   113,     0)  ->  Abs (   564,   856)
+	 34: Rel (    71,   -30)  ->  Abs (   635,   826)
+	 35: Rel (    93,   -39)  ->  Abs (   728,   787)
+	 36: Rel (     0,   -81)  ->  Abs (   728,   706)
+	 37: Rel (     0,   -43)  ->  Abs (   728,   663)
+	 38: Rel (   -37,   -46)  ->  Abs (   691,   617)
+	 39: Rel (   -27,   -34)  ->  Abs (   664,   583)
+	 40: Rel (   -72,   -60)  ->  Abs (   592,   523)
+	 41: Rel (    16,   -24)  ->  Abs (   608,   499)
+	 42: Rel (    91,   -32)  ->  Abs (   699,   467)
+	 43: Rel (    31,     0)  ->  Abs (   730,   467)
+	 44: Rel (   147,     0)  ->  Abs (   877,   467)
+
+	Glyph 977: off = 0x0002AD12, len = 324
+	  numberOfContours:	3
+	  xMin:			109
+	  yMin:			293
+	  xMax:			1685
+	  yMax:			1395
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  35
+	  2:  46
+
+	  Length of Instructions:	175
+	00000: PUSHB[6]              9    32    16    17    52    21 
+	00007: PUSHW[1]            -52 
+	00010: PUSHB[4]             12    17    52    20 
+	00015: PUSHW[1]            -32 
+	00018: PUSHB[6]             12    17    52     0     2     3 
+	00025: PUSHW[1]            770 
+	00028: PUSHB[4]              1     1    31    36 
+	00033: PUSHW[1]            -64 
+	00036: NPUSHB       (9):    16    17    52    36    36    40    16    22    15 
+	00047: NPUSHW       (9):   772    40   751    31   772    22   751     5   747 
+	00067: PUSHB[3]              1     3     2 
+	00071: PUSHW[1]            769 
+	00074: PUSHB[7]              0     0    43    23    23    36    27 
+	00082: PUSHW[1]            755 
+	00085: PUSHB[3]             43    43    36 
+	00089: NPUSHW      (10):   784    64     4   752    48    16   763    32    15   -64 
+	00111: PUSHB[6]              9    11    52    15    15    19 
+	00118: PUSHW[3]            771    11   298 
+	00125: SCANCTRL   
+	00126: MDAP[rd]   
+	00127: MIRP[srp0,md,rd,1] 
+	00128: SHP[rp2,zp1] 
+	00129: RTHG       
+	00130: MDAP[rd]   
+	00131: CALL       
+	00132: SMD        
+	00133: MIRP[nrp0,md,rd,1] 
+	00134: RTG        
+	00135: SRP0       
+	00136: MIRP[srp0,nmd,rd,1] 
+	00137: SMD        
+	00138: MIRP[srp0,md,rd,1] 
+	00139: SHP[rp2,zp1] 
+	00140: MDAP[rd]   
+	00141: MIRP[nrp0,md,rd,1] 
+	00142: SRP2       
+	00143: IP         
+	00144: MDAP[rd]   
+	00145: SRP1       
+	00146: IP         
+	00147: MDAP[rd]   
+	00148: MIRP[srp0,md,rd,1] 
+	00149: IP         
+	00150: IP         
+	00151: SVTCA[y-axis] 
+	00152: MIAP[rd+ci] 
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: MIAP[rd+ci] 
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: MIAP[rd+ci] 
+	00157: SRP2       
+	00158: IP         
+	00159: SRP1       
+	00160: IP         
+	00161: MDAP[rd]   
+	00162: CALL       
+	00163: SRP1       
+	00164: SHP[rp1,zp0] 
+	00165: MDAP[rd]   
+	00166: MIRP[nrp0,md,rd,1] 
+	00167: IP         
+	00168: IP         
+	00169: IUP[y]     
+	00170: IUP[x]     
+	00171: SVTCA[x-axis] 
+	00172: CALL       
+	00173: CALL       
+	00174: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:  YDual                               On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:        XDual         Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short         Off
+	 22:  YDual                               On
+	 23:  YDual                               On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual         Y-Short X-Short On
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:  YDual               Y-Short X-Short On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual               Y-Short X-Short On
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:                      Y-Short X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:        XDual         Y-Short X-Short On
+	 46:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1486,  1309)  ->  Abs (  1486,  1309)
+	  1: Rel (   -82,  -148)  ->  Abs (  1404,  1161)
+	  2: Rel (  -162,    88)  ->  Abs (  1242,  1249)
+	  3: Rel (    83,   146)  ->  Abs (  1325,  1395)
+	  4: Rel (   360, -1102)  ->  Abs (  1685,   293)
+	  5: Rel (  -917,     0)  ->  Abs (   768,   293)
+	  6: Rel (  -211,     0)  ->  Abs (   557,   293)
+	  7: Rel (  -129,    26)  ->  Abs (   428,   319)
+	  8: Rel (  -154,    31)  ->  Abs (   274,   350)
+	  9: Rel (   -79,    72)  ->  Abs (   195,   422)
+	 10: Rel (   -86,    78)  ->  Abs (   109,   500)
+	 11: Rel (     0,   134)  ->  Abs (   109,   634)
+	 12: Rel (     0,    89)  ->  Abs (   109,   723)
+	 13: Rel (    51,   119)  ->  Abs (   160,   842)
+	 14: Rel (    37,    81)  ->  Abs (   197,   923)
+	 15: Rel (    18,    40)  ->  Abs (   215,   963)
+	 16: Rel (    40,   -23)  ->  Abs (   255,   940)
+	 17: Rel (   -43,   -87)  ->  Abs (   212,   853)
+	 18: Rel (   -28,   -91)  ->  Abs (   184,   762)
+	 19: Rel (     0,   -37)  ->  Abs (   184,   725)
+	 20: Rel (     0,  -132)  ->  Abs (   184,   593)
+	 21: Rel (   288,  -126)  ->  Abs (   472,   467)
+	 22: Rel (   314,     0)  ->  Abs (   786,   467)
+	 23: Rel (   737,     0)  ->  Abs (  1523,   467)
+	 24: Rel (  -117,    32)  ->  Abs (  1406,   499)
+	 25: Rel (   -55,    42)  ->  Abs (  1351,   541)
+	 26: Rel (   -63,    48)  ->  Abs (  1288,   589)
+	 27: Rel (     0,    71)  ->  Abs (  1288,   660)
+	 28: Rel (     0,    93)  ->  Abs (  1288,   753)
+	 29: Rel (    62,   106)  ->  Abs (  1350,   859)
+	 30: Rel (    70,   119)  ->  Abs (  1420,   978)
+	 31: Rel (    85,     0)  ->  Abs (  1505,   978)
+	 32: Rel (    99,     0)  ->  Abs (  1604,   978)
+	 33: Rel (    44,  -117)  ->  Abs (  1648,   861)
+	 34: Rel (    37,   -98)  ->  Abs (  1685,   763)
+	 35: Rel (     0,  -181)  ->  Abs (  1685,   582)
+	 36: Rel (  -104,    14)  ->  Abs (  1581,   596)
+	 37: Rel (     0,    87)  ->  Abs (  1581,   683)
+	 38: Rel (   -19,    47)  ->  Abs (  1562,   730)
+	 39: Rel (   -23,    56)  ->  Abs (  1539,   786)
+	 40: Rel (   -47,     0)  ->  Abs (  1492,   786)
+	 41: Rel (   -34,     0)  ->  Abs (  1458,   786)
+	 42: Rel (   -33,   -41)  ->  Abs (  1425,   745)
+	 43: Rel (     0,   -37)  ->  Abs (  1425,   708)
+	 44: Rel (     0,   -49)  ->  Abs (  1425,   659)
+	 45: Rel (    41,   -25)  ->  Abs (  1466,   634)
+	 46: Rel (    30,   -18)  ->  Abs (  1496,   616)
+
+	Glyph 978: off = 0x0002AE56, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			109
+	  yMin:			293
+	  xMax:			1685
+	  yMax:			1395
+
+	     0: Flags:		0x0016
+		Glyf Index:	977
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 979: off = 0x0002AE66, len = 238
+	  numberOfContours:	3
+	  xMin:			0
+	  yMin:			293
+	  xMax:			618
+	  yMax:			1487
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  25
+	  2:  37
+
+	  Length of Instructions:	116
+	00000: PUSHB[3]              0     2     3 
+	00004: PUSHW[1]            770 
+	00007: NPUSHB       (9):     1     1    21    26    30     9    35    13    21 
+	00018: PUSHW[1]            751 
+	00021: PUSHB[3]             30    30    35 
+	00025: PUSHW[1]            751 
+	00028: PUSHB[3]             13    13     6 
+	00032: PUSHW[3]            751     5   747 
+	00039: PUSHB[3]              1     3     2 
+	00043: PUSHW[1]            769 
+	00046: NPUSHB      (11):     0     0    26    32    14    17    52     9    26     7 
+	                            17 
+	00059: PUSHW[1]            780 
+	00062: PUSHB[4]             33    33     5     7 
+	00067: PUSHW[3]            780     4   752 
+	00074: PUSHB[2]             39     5 
+	00077: MDAP[rd]   
+	00078: SRP0       
+	00079: MIRP[srp0,nmd,rd,1] 
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: SRP1       
+	00082: IP         
+	00083: MDAP[rd]   
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: SRP2       
+	00086: IP         
+	00087: IP         
+	00088: CALL       
+	00089: IP         
+	00090: MDAP[rd]   
+	00091: MIRP[srp0,md,rd,1] 
+	00092: IP         
+	00093: IP         
+	00094: SVTCA[y-axis] 
+	00095: MIAP[rd+ci] 
+	00096: MIRP[srp0,md,rd,1] 
+	00097: SHP[rp2,zp1] 
+	00098: MDAP[rd]   
+	00099: MIRP[srp0,md,rd,1] 
+	00100: SHP[rp2,zp1] 
+	00101: MDAP[rd]   
+	00102: MIRP[nrp0,md,rd,1] 
+	00103: SRP1       
+	00104: SRP2       
+	00105: IP         
+	00106: SRP1       
+	00107: IP         
+	00108: SRP1       
+	00109: SHP[rp1,zp0] 
+	00110: MDAP[rd]   
+	00111: MIRP[nrp0,md,rd,1] 
+	00112: IP         
+	00113: IP         
+	00114: IUP[y]     
+	00115: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual               Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short On
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:                              X-Short On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual               Y-Short X-Short On
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:                      Y-Short X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   485,  1401)  ->  Abs (   485,  1401)
+	  1: Rel (   -77,  -146)  ->  Abs (   408,  1255)
+	  2: Rel (  -161,    86)  ->  Abs (   247,  1341)
+	  3: Rel (    74,   146)  ->  Abs (   321,  1487)
+	  4: Rel (   297, -1194)  ->  Abs (   618,   293)
+	  5: Rel (  -618,     0)  ->  Abs (     0,   293)
+	  6: Rel (     0,   174)  ->  Abs (     0,   467)
+	  7: Rel (   533,     0)  ->  Abs (   533,   467)
+	  8: Rel (     0,    89)  ->  Abs (   533,   556)
+	  9: Rel (   -21,    78)  ->  Abs (   512,   634)
+	 10: Rel (   -52,   -17)  ->  Abs (   460,   617)
+	 11: Rel (   -28,    -7)  ->  Abs (   432,   610)
+	 12: Rel (   -46,   -12)  ->  Abs (   386,   598)
+	 13: Rel (   -35,     0)  ->  Abs (   351,   598)
+	 14: Rel (   -73,     0)  ->  Abs (   278,   598)
+	 15: Rel (   -46,    37)  ->  Abs (   232,   635)
+	 16: Rel (   -53,    42)  ->  Abs (   179,   677)
+	 17: Rel (     0,    79)  ->  Abs (   179,   756)
+	 18: Rel (     0,   139)  ->  Abs (   179,   895)
+	 19: Rel (    50,   104)  ->  Abs (   229,   999)
+	 20: Rel (    56,   116)  ->  Abs (   285,  1115)
+	 21: Rel (    90,     0)  ->  Abs (   375,  1115)
+	 22: Rel (   122,     0)  ->  Abs (   497,  1115)
+	 23: Rel (    66,  -191)  ->  Abs (   563,   924)
+	 24: Rel (    55,  -158)  ->  Abs (   618,   766)
+	 25: Rel (     0,  -213)  ->  Abs (   618,   553)
+	 26: Rel (  -163,   260)  ->  Abs (   455,   813)
+	 27: Rel (   -14,    36)  ->  Abs (   441,   849)
+	 28: Rel (   -31,    37)  ->  Abs (   410,   886)
+	 29: Rel (   -42,    50)  ->  Abs (   368,   936)
+	 30: Rel (   -38,     0)  ->  Abs (   330,   936)
+	 31: Rel (   -27,     0)  ->  Abs (   303,   936)
+	 32: Rel (   -35,   -45)  ->  Abs (   268,   891)
+	 33: Rel (     0,   -31)  ->  Abs (   268,   860)
+	 34: Rel (     0,   -80)  ->  Abs (   268,   780)
+	 35: Rel (    88,     0)  ->  Abs (   356,   780)
+	 36: Rel (    23,     0)  ->  Abs (   379,   780)
+	 37: Rel (    52,    18)  ->  Abs (   431,   798)
+
+	Glyph 980: off = 0x0002AF54, len = 218
+	  numberOfContours:	3
+	  xMin:			0
+	  yMin:			293
+	  xMax:			608
+	  yMax:			1447
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  22
+	  2:  33
+
+	  Length of Instructions:	106
+	00000: NPUSHB      (11):    11    12     1    25    32    16    17    52     0     2 
+	                             3 
+	00013: PUSHW[1]            770 
+	00016: PUSHB[3]              1     1    18 
+	00020: PUSHW[1]            751 
+	00023: PUSHB[6]             27    27    10    23    23     6 
+	00030: PUSHW[3]            751     5   747 
+	00037: PUSHB[3]              1     3     2 
+	00041: PUSHW[1]            769 
+	00044: PUSHB[7]              0     0    30    10     4    23    14 
+	00052: PUSHW[1]            780 
+	00055: PUSHB[4]             30    30     5    23 
+	00060: PUSHW[3]            780     4   752 
+	00067: PUSHB[2]             35     5 
+	00070: MDAP[rd]   
+	00071: SRP0       
+	00072: MIRP[srp0,nmd,rd,1] 
+	00073: MIRP[nrp0,md,rd,1] 
+	00074: SRP1       
+	00075: IP         
+	00076: MDAP[rd]   
+	00077: MIRP[nrp0,md,rd,1] 
+	00078: SRP1       
+	00079: SRP2       
+	00080: IP         
+	00081: SRP2       
+	00082: IP         
+	00083: MDAP[rd]   
+	00084: MIRP[srp0,md,rd,1] 
+	00085: IP         
+	00086: IP         
+	00087: SVTCA[y-axis] 
+	00088: MIAP[rd+ci] 
+	00089: MIRP[srp0,md,rd,1] 
+	00090: SHP[rp2,zp1] 
+	00091: MDAP[rd]   
+	00092: IP         
+	00093: SHP[rp1,zp0] 
+	00094: MDAP[rd]   
+	00095: MIRP[srp0,md,rd,1] 
+	00096: SHP[rp2,zp1] 
+	00097: MDAP[rd]   
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: IP         
+	00100: IP         
+	00101: IUP[y]     
+	00102: IUP[x]     
+	00103: SVTCA[x-axis] 
+	00104: CALL       
+	00105: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:        XDual                 X-Short On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:                      Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:        XDual         Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   521,  1355)  ->  Abs (   521,  1355)
+	  1: Rel (   -88,  -144)  ->  Abs (   433,  1211)
+	  2: Rel (  -140,    96)  ->  Abs (   293,  1307)
+	  3: Rel (    83,   140)  ->  Abs (   376,  1447)
+	  4: Rel (   232, -1154)  ->  Abs (   608,   293)
+	  5: Rel (  -608,     0)  ->  Abs (     0,   293)
+	  6: Rel (     0,   174)  ->  Abs (     0,   467)
+	  7: Rel (   343,     0)  ->  Abs (   343,   467)
+	  8: Rel (    62,     0)  ->  Abs (   405,   467)
+	  9: Rel (    87,     9)  ->  Abs (   492,   476)
+	 10: Rel (    51,    15)  ->  Abs (   543,   491)
+	 11: Rel (  -172,    25)  ->  Abs (   371,   516)
+	 12: Rel (   -51,    22)  ->  Abs (   320,   538)
+	 13: Rel (  -115,    50)  ->  Abs (   205,   588)
+	 14: Rel (     0,   120)  ->  Abs (   205,   708)
+	 15: Rel (     0,   105)  ->  Abs (   205,   813)
+	 16: Rel (    55,    93)  ->  Abs (   260,   906)
+	 17: Rel (    62,   105)  ->  Abs (   322,  1011)
+	 18: Rel (    89,     0)  ->  Abs (   411,  1011)
+	 19: Rel (   102,     0)  ->  Abs (   513,  1011)
+	 20: Rel (    53,  -130)  ->  Abs (   566,   881)
+	 21: Rel (    42,  -103)  ->  Abs (   608,   778)
+	 22: Rel (     0,  -140)  ->  Abs (   608,   638)
+	 23: Rel (   -90,     4)  ->  Abs (   518,   642)
+	 24: Rel (   -23,    80)  ->  Abs (   495,   722)
+	 25: Rel (   -21,    39)  ->  Abs (   474,   761)
+	 26: Rel (   -41,    75)  ->  Abs (   433,   836)
+	 27: Rel (   -58,     0)  ->  Abs (   375,   836)
+	 28: Rel (   -28,     0)  ->  Abs (   347,   836)
+	 29: Rel (   -40,   -44)  ->  Abs (   307,   792)
+	 30: Rel (     0,   -30)  ->  Abs (   307,   762)
+	 31: Rel (     0,   -76)  ->  Abs (   307,   686)
+	 32: Rel (    79,   -26)  ->  Abs (   386,   660)
+	 33: Rel (    28,    -9)  ->  Abs (   414,   651)
+
+	Glyph 981: off = 0x0002B02E, len = 412
+	  numberOfContours:	4
+	  xMin:			140
+	  yMin:			-153
+	  xMax:			1261
+	  yMax:			1399
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  53
+	  3:  66
+
+	  Length of Instructions:	209
+	00000: PUSHB[4]             84    10     1     9 
+	00005: PUSHW[1]            -32 
+	00008: PUSHB[4]             14    17    52    29 
+	00013: PUSHW[1]            -32 
+	00016: NPUSHB      (11):    14    17    52    33    64    10    17    52     0     2 
+	                             3 
+	00029: PUSHW[1]            770 
+	00032: PUSHB[5]              1     1     4     6     7 
+	00038: PUSHW[1]            770 
+	00041: PUSHB[3]              5     5    49 
+	00045: PUSHW[1]            751 
+	00048: PUSHB[3]             58    58    41 
+	00052: PUSHW[1]            751 
+	00055: PUSHB[4]             64    64    21    20 
+	00060: PUSHW[5]            775    31   751    12   785 
+	00071: PUSHB[3]              1     3     0 
+	00075: PUSHW[1]            769 
+	00078: PUSHB[5]              2     2     5     7     6 
+	00084: PUSHW[1]            769 
+	00087: NPUSHB      (11):     4     4    54    32    13    17    52    38    54    35 
+	                            45 
+	00100: PUSHW[1]            765 
+	00103: PUSHB[4]             61    61    27    35 
+	00108: NPUSHW      (10):   771    64     8   752    68    21   763    32    20   -64 
+	00130: PUSHB[6]              9    11    52    20    20    27 
+	00137: PUSHW[1]            771 
+	00140: PUSHB[4]              0    16     1    16 
+	00145: PUSHW[1]            298 
+	00148: SCANCTRL   
+	00149: MDAP[rd]   
+	00150: DELTAP1    
+	00151: MIRP[srp0,md,rd,1] 
+	00152: SHP[rp2,zp1] 
+	00153: RTHG       
+	00154: MDAP[rd]   
+	00155: CALL       
+	00156: SMD        
+	00157: MIRP[nrp0,md,rd,1] 
+	00158: RTG        
+	00159: SRP0       
+	00160: MIRP[srp0,nmd,rd,1] 
+	00161: SMD        
+	00162: MIRP[nrp0,md,rd,1] 
+	00163: SRP1       
+	00164: IP         
+	00165: MDAP[rd]   
+	00166: MIRP[nrp0,md,rd,1] 
+	00167: SRP2       
+	00168: IP         
+	00169: IP         
+	00170: CALL       
+	00171: IP         
+	00172: MDAP[rd]   
+	00173: MIRP[srp0,md,rd,1] 
+	00174: IP         
+	00175: IP         
+	00176: SHP[rp1,zp0] 
+	00177: MDAP[rd]   
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: IP         
+	00180: IP         
+	00181: SVTCA[y-axis] 
+	00182: MIAP[rd+ci] 
+	00183: MIRP[nrp0,md,rd,1] 
+	00184: MIAP[rd+ci] 
+	00185: IP         
+	00186: IP         
+	00187: MDAP[rd]   
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: SHP[rp1,zp0] 
+	00190: MDAP[rd]   
+	00191: MIRP[srp0,md,rd,1] 
+	00192: SHP[rp2,zp1] 
+	00193: MDAP[rd]   
+	00194: MIRP[nrp0,md,rd,1] 
+	00195: IP         
+	00196: IP         
+	00197: SHP[rp1,zp0] 
+	00198: MDAP[rd]   
+	00199: MIRP[nrp0,md,rd,1] 
+	00200: IP         
+	00201: IP         
+	00202: IUP[y]     
+	00203: IUP[x]     
+	00204: SVTCA[x-axis] 
+	00205: CALL       
+	00206: CALL       
+	00207: CALL       
+	00208: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:                                      On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                               On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short X-Short On
+	 24:                      Y-Short X-Short Off
+	 25:                      Y-Short X-Short On
+	 26:                      Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:        XDual         Y-Short X-Short On
+	 30:        XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual               Y-Short X-Short On
+	 39:                      Y-Short X-Short Off
+	 40:                      Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:  YDual               Y-Short X-Short On
+	 44:  YDual               Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual XDual         Y-Short X-Short On
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:        XDual         Y-Short X-Short On
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short         On
+	 54:  YDual               Y-Short X-Short On
+	 55:  YDual               Y-Short X-Short Off
+	 56:  YDual               Y-Short X-Short On
+	 57:  YDual               Y-Short X-Short Off
+	 58:  YDual                       X-Short On
+	 59:  YDual                       X-Short Off
+	 60:                      Y-Short X-Short Off
+	 61:        XDual         Y-Short         On
+	 62:        XDual         Y-Short         Off
+	 63:        XDual         Y-Short X-Short Off
+	 64:  YDual XDual                 X-Short On
+	 65:  YDual XDual                 X-Short Off
+	 66:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1144,  1314)  ->  Abs (  1144,  1314)
+	  1: Rel (   -78,  -144)  ->  Abs (  1066,  1170)
+	  2: Rel (  -162,    86)  ->  Abs (   904,  1256)
+	  3: Rel (    75,   143)  ->  Abs (   979,  1399)
+	  4: Rel (   -65,  -175)  ->  Abs (   914,  1224)
+	  5: Rel (   -76,  -145)  ->  Abs (   838,  1079)
+	  6: Rel (  -162,    84)  ->  Abs (   676,  1163)
+	  7: Rel (    74,   145)  ->  Abs (   750,  1308)
+	  8: Rel (   511, -1066)  ->  Abs (  1261,   242)
+	  9: Rel (     0,  -198)  ->  Abs (  1261,    44)
+	 10: Rel (  -190,  -104)  ->  Abs (  1071,   -60)
+	 11: Rel (  -171,   -93)  ->  Abs (   900,  -153)
+	 12: Rel (  -283,     0)  ->  Abs (   617,  -153)
+	 13: Rel (  -223,     0)  ->  Abs (   394,  -153)
+	 14: Rel (  -122,    80)  ->  Abs (   272,   -73)
+	 15: Rel (  -132,    87)  ->  Abs (   140,    14)
+	 16: Rel (     0,   171)  ->  Abs (   140,   185)
+	 17: Rel (     0,   118)  ->  Abs (   140,   303)
+	 18: Rel (    38,   130)  ->  Abs (   178,   433)
+	 19: Rel (    35,   120)  ->  Abs (   213,   553)
+	 20: Rel (    65,   120)  ->  Abs (   278,   673)
+	 21: Rel (    42,   -18)  ->  Abs (   320,   655)
+	 22: Rel (   -29,   -70)  ->  Abs (   291,   585)
+	 23: Rel (   -20,   -54)  ->  Abs (   271,   531)
+	 24: Rel (   -27,   -74)  ->  Abs (   244,   457)
+	 25: Rel (   -12,   -53)  ->  Abs (   232,   404)
+	 26: Rel (   -15,   -67)  ->  Abs (   217,   337)
+	 27: Rel (     0,   -63)  ->  Abs (   217,   274)
+	 28: Rel (     0,  -130)  ->  Abs (   217,   144)
+	 29: Rel (   110,   -62)  ->  Abs (   327,    82)
+	 30: Rel (   102,   -57)  ->  Abs (   429,    25)
+	 31: Rel (   199,     0)  ->  Abs (   628,    25)
+	 32: Rel (   213,     0)  ->  Abs (   841,    25)
+	 33: Rel (   160,    70)  ->  Abs (  1001,    95)
+	 34: Rel (   185,    81)  ->  Abs (  1186,   176)
+	 35: Rel (     0,   138)  ->  Abs (  1186,   314)
+	 36: Rel (     0,    51)  ->  Abs (  1186,   365)
+	 37: Rel (    -7,    45)  ->  Abs (  1179,   410)
+	 38: Rel (    -9,    23)  ->  Abs (  1170,   433)
+	 39: Rel (   -38,   -18)  ->  Abs (  1132,   415)
+	 40: Rel (   -77,   -21)  ->  Abs (  1055,   394)
+	 41: Rel (   -39,     0)  ->  Abs (  1016,   394)
+	 42: Rel (   -88,     0)  ->  Abs (   928,   394)
+	 43: Rel (   -55,    40)  ->  Abs (   873,   434)
+	 44: Rel (   -67,    48)  ->  Abs (   806,   482)
+	 45: Rel (     0,    97)  ->  Abs (   806,   579)
+	 46: Rel (     0,   113)  ->  Abs (   806,   692)
+	 47: Rel (    58,   103)  ->  Abs (   864,   795)
+	 48: Rel (    65,   116)  ->  Abs (   929,   911)
+	 49: Rel (    89,     0)  ->  Abs (  1018,   911)
+	 50: Rel (   117,     0)  ->  Abs (  1135,   911)
+	 51: Rel (    68,  -160)  ->  Abs (  1203,   751)
+	 52: Rel (    58,  -136)  ->  Abs (  1261,   615)
+	 53: Rel (     0,  -179)  ->  Abs (  1261,   436)
+	 54: Rel (  -159,   177)  ->  Abs (  1102,   613)
+	 55: Rel (   -26,    62)  ->  Abs (  1076,   675)
+	 56: Rel (   -11,    15)  ->  Abs (  1065,   690)
+	 57: Rel (   -28,    41)  ->  Abs (  1037,   731)
+	 58: Rel (   -42,     0)  ->  Abs (   995,   731)
+	 59: Rel (   -48,     0)  ->  Abs (   947,   731)
+	 60: Rel (   -45,   -46)  ->  Abs (   902,   685)
+	 61: Rel (     0,   -35)  ->  Abs (   902,   650)
+	 62: Rel (     0,   -31)  ->  Abs (   902,   619)
+	 63: Rel (    58,   -36)  ->  Abs (   960,   583)
+	 64: Rel (    37,     0)  ->  Abs (   997,   583)
+	 65: Rel (    26,     0)  ->  Abs (  1023,   583)
+	 66: Rel (    45,    15)  ->  Abs (  1068,   598)
+
+	Glyph 982: off = 0x0002B1CA, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			140
+	  yMin:			-153
+	  xMax:			1261
+	  yMax:			1399
+
+	     0: Flags:		0x0016
+		Glyf Index:	981
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 983: off = 0x0002B1DA, len = 286
+	  numberOfContours:	4
+	  xMin:			0
+	  yMin:			293
+	  xMax:			618
+	  yMax:			1516
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  29
+	  3:  41
+
+	  Length of Instructions:	150
+	00000: PUSHB[3]              0     2     3 
+	00004: PUSHW[1]            770 
+	00007: PUSHB[5]              1     1     4     6     7 
+	00013: PUSHW[1]            770 
+	00016: NPUSHB      (14):     5    64     9    12    52     5     5    25    30    34 
+	                            13    39    17    25 
+	00032: PUSHW[1]            751 
+	00035: PUSHB[3]             34    34    39 
+	00039: PUSHW[1]            751 
+	00042: PUSHB[3]             17    17    10 
+	00046: PUSHW[3]            751     9   747 
+	00053: PUSHB[3]              1     3     0 
+	00057: PUSHW[1]            769 
+	00060: PUSHB[5]              2     2     5     7     6 
+	00066: PUSHW[1]            769 
+	00069: NPUSHB      (11):     4     4    30    32    14    17    52    13    30    11 
+	                            21 
+	00082: PUSHW[1]            780 
+	00085: PUSHB[4]             37    37     9    11 
+	00090: PUSHW[3]            780     8   752 
+	00097: PUSHB[2]             43     9 
+	00100: MDAP[rd]   
+	00101: SRP0       
+	00102: MIRP[srp0,nmd,rd,1] 
+	00103: MIRP[nrp0,md,rd,1] 
+	00104: SRP1       
+	00105: IP         
+	00106: MDAP[rd]   
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: SRP2       
+	00109: IP         
+	00110: IP         
+	00111: CALL       
+	00112: IP         
+	00113: MDAP[rd]   
+	00114: MIRP[srp0,md,rd,1] 
+	00115: IP         
+	00116: IP         
+	00117: SHP[rp1,zp0] 
+	00118: MDAP[rd]   
+	00119: MIRP[nrp0,md,rd,1] 
+	00120: IP         
+	00121: IP         
+	00122: SVTCA[y-axis] 
+	00123: MIAP[rd+ci] 
+	00124: MIRP[srp0,md,rd,1] 
+	00125: SHP[rp2,zp1] 
+	00126: MDAP[rd]   
+	00127: MIRP[srp0,md,rd,1] 
+	00128: SHP[rp2,zp1] 
+	00129: MDAP[rd]   
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: SRP1       
+	00132: SRP2       
+	00133: IP         
+	00134: SRP1       
+	00135: IP         
+	00136: SRP1       
+	00137: SHP[rp1,zp0] 
+	00138: MDAP[rd]   
+	00139: CALL       
+	00140: MIRP[nrp0,md,rd,1] 
+	00141: IP         
+	00142: IP         
+	00143: SHP[rp1,zp0] 
+	00144: MDAP[rd]   
+	00145: MIRP[nrp0,md,rd,1] 
+	00146: IP         
+	00147: IP         
+	00148: IUP[y]     
+	00149: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:                                      On
+	  9:  YDual                               On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual                               On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual               Y-Short X-Short On
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short On
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:                              X-Short On
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual               Y-Short X-Short On
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:                      Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   586,  1431)  ->  Abs (   586,  1431)
+	  1: Rel (   -78,  -144)  ->  Abs (   508,  1287)
+	  2: Rel (  -162,    86)  ->  Abs (   346,  1373)
+	  3: Rel (    75,   143)  ->  Abs (   421,  1516)
+	  4: Rel (   -65,  -175)  ->  Abs (   356,  1341)
+	  5: Rel (   -76,  -145)  ->  Abs (   280,  1196)
+	  6: Rel (  -162,    84)  ->  Abs (   118,  1280)
+	  7: Rel (    74,   145)  ->  Abs (   192,  1425)
+	  8: Rel (   426, -1132)  ->  Abs (   618,   293)
+	  9: Rel (  -618,     0)  ->  Abs (     0,   293)
+	 10: Rel (     0,   174)  ->  Abs (     0,   467)
+	 11: Rel (   533,     0)  ->  Abs (   533,   467)
+	 12: Rel (     0,    89)  ->  Abs (   533,   556)
+	 13: Rel (   -21,    78)  ->  Abs (   512,   634)
+	 14: Rel (   -52,   -17)  ->  Abs (   460,   617)
+	 15: Rel (   -28,    -7)  ->  Abs (   432,   610)
+	 16: Rel (   -46,   -12)  ->  Abs (   386,   598)
+	 17: Rel (   -35,     0)  ->  Abs (   351,   598)
+	 18: Rel (   -73,     0)  ->  Abs (   278,   598)
+	 19: Rel (   -46,    37)  ->  Abs (   232,   635)
+	 20: Rel (   -53,    42)  ->  Abs (   179,   677)
+	 21: Rel (     0,    79)  ->  Abs (   179,   756)
+	 22: Rel (     0,   139)  ->  Abs (   179,   895)
+	 23: Rel (    50,   104)  ->  Abs (   229,   999)
+	 24: Rel (    56,   116)  ->  Abs (   285,  1115)
+	 25: Rel (    90,     0)  ->  Abs (   375,  1115)
+	 26: Rel (   122,     0)  ->  Abs (   497,  1115)
+	 27: Rel (    66,  -191)  ->  Abs (   563,   924)
+	 28: Rel (    55,  -158)  ->  Abs (   618,   766)
+	 29: Rel (     0,  -213)  ->  Abs (   618,   553)
+	 30: Rel (  -163,   260)  ->  Abs (   455,   813)
+	 31: Rel (   -14,    36)  ->  Abs (   441,   849)
+	 32: Rel (   -31,    37)  ->  Abs (   410,   886)
+	 33: Rel (   -42,    50)  ->  Abs (   368,   936)
+	 34: Rel (   -38,     0)  ->  Abs (   330,   936)
+	 35: Rel (   -27,     0)  ->  Abs (   303,   936)
+	 36: Rel (   -35,   -45)  ->  Abs (   268,   891)
+	 37: Rel (     0,   -31)  ->  Abs (   268,   860)
+	 38: Rel (     0,   -80)  ->  Abs (   268,   780)
+	 39: Rel (    88,     0)  ->  Abs (   356,   780)
+	 40: Rel (    23,     0)  ->  Abs (   379,   780)
+	 41: Rel (    52,    18)  ->  Abs (   431,   798)
+
+	Glyph 984: off = 0x0002B2F8, len = 262
+	  numberOfContours:	4
+	  xMin:			0
+	  yMin:			293
+	  xMax:			608
+	  yMax:			1488
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  26
+	  3:  37
+
+	  Length of Instructions:	134
+	00000: NPUSHB      (11):    11    16     1    29    32    16    17    52     0     2 
+	                             3 
+	00013: PUSHW[1]            770 
+	00016: PUSHB[5]              1     1     4     6     7 
+	00022: PUSHW[1]            770 
+	00025: PUSHB[3]              5     5    22 
+	00029: PUSHW[1]            751 
+	00032: PUSHB[6]             31    31    14    27    27    10 
+	00039: PUSHW[3]            751     9   747 
+	00046: PUSHB[3]              1     3     0 
+	00050: PUSHW[1]            769 
+	00053: PUSHB[5]              2     2     5     7     6 
+	00059: PUSHW[1]            769 
+	00062: PUSHB[7]              4     4    34    14     8    27    18 
+	00070: PUSHW[1]            780 
+	00073: PUSHB[4]             34    34     9    27 
+	00078: PUSHW[3]            780     8   752 
+	00085: PUSHB[2]             39     9 
+	00088: MDAP[rd]   
+	00089: SRP0       
+	00090: MIRP[srp0,nmd,rd,1] 
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: SRP1       
+	00093: IP         
+	00094: MDAP[rd]   
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: SRP1       
+	00097: SRP2       
+	00098: IP         
+	00099: SRP2       
+	00100: IP         
+	00101: MDAP[rd]   
+	00102: MIRP[srp0,md,rd,1] 
+	00103: IP         
+	00104: IP         
+	00105: SHP[rp1,zp0] 
+	00106: MDAP[rd]   
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: IP         
+	00109: IP         
+	00110: SVTCA[y-axis] 
+	00111: MIAP[rd+ci] 
+	00112: MIRP[srp0,md,rd,1] 
+	00113: SHP[rp2,zp1] 
+	00114: MDAP[rd]   
+	00115: IP         
+	00116: SHP[rp1,zp0] 
+	00117: MDAP[rd]   
+	00118: MIRP[srp0,md,rd,1] 
+	00119: SHP[rp2,zp1] 
+	00120: MDAP[rd]   
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: IP         
+	00123: IP         
+	00124: SHP[rp1,zp0] 
+	00125: MDAP[rd]   
+	00126: MIRP[nrp0,md,rd,1] 
+	00127: IP         
+	00128: IP         
+	00129: IUP[y]     
+	00130: IUP[x]     
+	00131: SVTCA[x-axis] 
+	00132: CALL       
+	00133: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:                                      On
+	  9:  YDual                               On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual                               On
+	 12:  YDual XDual                 X-Short Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:                      Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:        XDual         Y-Short X-Short On
+	 37:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   565,  1407)  ->  Abs (   565,  1407)
+	  1: Rel (   -85,  -134)  ->  Abs (   480,  1273)
+	  2: Rel (  -125,    82)  ->  Abs (   355,  1355)
+	  3: Rel (    86,   133)  ->  Abs (   441,  1488)
+	  4: Rel (  -105,  -141)  ->  Abs (   336,  1347)
+	  5: Rel (   -79,  -136)  ->  Abs (   257,  1211)
+	  6: Rel (  -123,    81)  ->  Abs (   134,  1292)
+	  7: Rel (    83,   134)  ->  Abs (   217,  1426)
+	  8: Rel (   391, -1133)  ->  Abs (   608,   293)
+	  9: Rel (  -608,     0)  ->  Abs (     0,   293)
+	 10: Rel (     0,   174)  ->  Abs (     0,   467)
+	 11: Rel (   343,     0)  ->  Abs (   343,   467)
+	 12: Rel (    62,     0)  ->  Abs (   405,   467)
+	 13: Rel (    87,     9)  ->  Abs (   492,   476)
+	 14: Rel (    51,    15)  ->  Abs (   543,   491)
+	 15: Rel (  -172,    25)  ->  Abs (   371,   516)
+	 16: Rel (   -51,    22)  ->  Abs (   320,   538)
+	 17: Rel (  -115,    50)  ->  Abs (   205,   588)
+	 18: Rel (     0,   120)  ->  Abs (   205,   708)
+	 19: Rel (     0,   105)  ->  Abs (   205,   813)
+	 20: Rel (    55,    93)  ->  Abs (   260,   906)
+	 21: Rel (    62,   105)  ->  Abs (   322,  1011)
+	 22: Rel (    89,     0)  ->  Abs (   411,  1011)
+	 23: Rel (   102,     0)  ->  Abs (   513,  1011)
+	 24: Rel (    53,  -130)  ->  Abs (   566,   881)
+	 25: Rel (    42,  -103)  ->  Abs (   608,   778)
+	 26: Rel (     0,  -140)  ->  Abs (   608,   638)
+	 27: Rel (   -90,     4)  ->  Abs (   518,   642)
+	 28: Rel (   -23,    80)  ->  Abs (   495,   722)
+	 29: Rel (   -21,    39)  ->  Abs (   474,   761)
+	 30: Rel (   -41,    75)  ->  Abs (   433,   836)
+	 31: Rel (   -58,     0)  ->  Abs (   375,   836)
+	 32: Rel (   -28,     0)  ->  Abs (   347,   836)
+	 33: Rel (   -40,   -44)  ->  Abs (   307,   792)
+	 34: Rel (     0,   -30)  ->  Abs (   307,   762)
+	 35: Rel (     0,   -76)  ->  Abs (   307,   686)
+	 36: Rel (    79,   -26)  ->  Abs (   386,   660)
+	 37: Rel (    28,    -9)  ->  Abs (   414,   651)
+
+	Glyph 985: off = 0x0002B3FE, len = 520
+	  numberOfContours:	2
+	  xMin:			115
+	  yMin:			293
+	  xMax:			1301
+	  yMax:			1587
+
+	EndPoints
+	---------
+	  0:  40
+	  1:  73
+
+	  Length of Instructions:	302
+	00000: PUSHW[2]             56   -32 
+	00005: PUSHB[4]             16    17    52    27 
+	00010: PUSHW[1]            778 
+	00013: NPUSHB       (9):    47    28     1    28    28    72    35    18    21 
+	00024: PUSHW[1]            778 
+	00027: PUSHB[7]             47    38     1    38    38    72     3 
+	00035: PUSHW[1]            753 
+	00038: NPUSHB      (15):    12    64     9    12    52    12    12    50    58    61 
+	                            60    68    71    50    72 
+	00055: PUSHW[1]            751 
+	00058: PUSHB[3]             65    64    68 
+	00062: PUSHW[8]            779    51    50   777    58   751    42   747 
+	00079: NPUSHB      (21):    28    15    27    64    11    14    52    27    27     0 
+	                            15     8     7    64     9    14    52     7     7    54 
+	                            24 
+	00102: PUSHW[1]            765 
+	00105: NPUSHB       (9):    32    64     9    10    52    32    32    54     0 
+	00116: PUSHW[4]            765    64    15   -64 
+	00125: PUSHB[8]              9    17    52    15    15    61    54    65 
+	00134: PUSHW[1]            763 
+	00137: NPUSHB      (11):    32    64    64    61    61    60    71    72    68    68 
+	                            60 
+	00150: PUSHW[1]            784 
+	00153: PUSHB[6]             15    72     1    72    72    59 
+	00160: PUSHW[8]            784    41   752    75    51   763    50   -64 
+	00177: PUSHB[6]              9    17    52    50    50    54 
+	00184: PUSHW[3]            780    46   -64 
+	00191: PUSHB[4]              9    10    52    46 
+	00196: PUSHW[1]            292 
+	00199: SCANCTRL   
+	00200: MDAP[rd]   
+	00201: CALL       
+	00202: MIRP[srp0,md,rd,1] 
+	00203: SHP[rp2,zp1] 
+	00204: MDAP[rd]   
+	00205: CALL       
+	00206: MIRP[nrp0,md,rd,1] 
+	00207: SRP0       
+	00208: MIRP[srp0,nmd,rd,1] 
+	00209: MIRP[nrp0,md,rd,1] 
+	00210: SHP[rp1,zp0] 
+	00211: MDAP[rd]   
+	00212: DELTAP1    
+	00213: MIRP[nrp0,md,rd,1] 
+	00214: SHP[rp1,zp0] 
+	00215: MDAP[rd]   
+	00216: SRP2       
+	00217: IP         
+	00218: SRP1       
+	00219: SHP[rp1,zp0] 
+	00220: MDAP[rd]   
+	00221: SHP[rp1,zp0] 
+	00222: RTHG       
+	00223: MDAP[rd]   
+	00224: SMD        
+	00225: MIRP[nrp0,md,rd,1] 
+	00226: RTG        
+	00227: SRP1       
+	00228: SRP2       
+	00229: IP         
+	00230: MDAP[rd]   
+	00231: CALL       
+	00232: SMD        
+	00233: MIRP[nrp0,md,rd,1] 
+	00234: SRP2       
+	00235: IP         
+	00236: MDAP[rd]   
+	00237: CALL       
+	00238: MIRP[nrp0,md,rd,1] 
+	00239: SRP1       
+	00240: IP         
+	00241: MDAP[rd]   
+	00242: CALL       
+	00243: IP         
+	00244: SRP1       
+	00245: SRP2       
+	00246: IP         
+	00247: MDAP[rd]   
+	00248: CALL       
+	00249: SRP2       
+	00250: IP         
+	00251: SVTCA[y-axis] 
+	00252: MIAP[rd+ci] 
+	00253: MIRP[nrp0,md,rd,1] 
+	00254: MIAP[rd+ci] 
+	00255: IP         
+	00256: MIAP[rd+ci] 
+	00257: SHP[rp1,zp0] 
+	00258: SHP[rp1,zp0] 
+	00259: MIRP[nrp0,md,rd,1] 
+	00260: SRP1       
+	00261: IP         
+	00262: SRP1       
+	00263: IP         
+	00264: IP         
+	00265: SRP1       
+	00266: SRP2       
+	00267: IP         
+	00268: MDAP[rd]   
+	00269: CALL       
+	00270: MIRP[nrp0,md,rd,1] 
+	00271: SRP2       
+	00272: IP         
+	00273: MDAP[rd]   
+	00274: DELTAP1    
+	00275: PUSHB[2]              6     2 
+	00278: RS         
+	00279: EQ         
+	00280: IF         
+	00281: PUSHB[5]             11    38    27    38     2 
+	00287: SVTCA[y-axis] 
+	00288: DELTAP1    
+	00289: EIF        
+	00290: MIRP[srp0,md,rd,1] 
+	00291: IP         
+	00292: IP         
+	00293: SRP2       
+	00294: IP         
+	00295: MDAP[rd]   
+	00296: DELTAP1    
+	00297: MIRP[nrp0,md,rd,1] 
+	00298: IUP[y]     
+	00299: IUP[x]     
+	00300: SVTCA[x-axis] 
+	00301: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:                      Y-Short X-Short On
+	 29:                      Y-Short X-Short Off
+	 30:                      Y-Short X-Short On
+	 31:                      Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:        XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:  YDual XDual         Y-Short X-Short On
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:        XDual         Y-Short X-Short Off
+	 41:                                      On
+	 42:  YDual                               On
+	 43:  YDual                       X-Short Off
+	 44:  YDual               Y-Short X-Short On
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short         On
+	 47:  YDual XDual         Y-Short         Off
+	 48:  YDual XDual         Y-Short X-Short On
+	 49:  YDual XDual         Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short X-Short On
+	 51:        XDual         Y-Short X-Short On
+	 52:                      Y-Short X-Short Off
+	 53:                      Y-Short X-Short Off
+	 54:        XDual         Y-Short         On
+	 55:        XDual         Y-Short         Off
+	 56:        XDual         Y-Short X-Short On
+	 57:        XDual         Y-Short X-Short Off
+	 58:  YDual XDual                 X-Short On
+	 59:  YDual                               On
+	 60:                              X-Short On
+	 61:  YDual               Y-Short X-Short On
+	 62:  YDual XDual         Y-Short         Off
+	 63:  YDual XDual         Y-Short X-Short Off
+	 64:  YDual XDual         Y-Short X-Short On
+	 65:        XDual         Y-Short X-Short On
+	 66:        XDual         Y-Short         Off
+	 67:        XDual         Y-Short X-Short On
+	 68:        XDual         Y-Short X-Short On
+	 69:        XDual         Y-Short         Off
+	 70:                      Y-Short X-Short Off
+	 71:                      Y-Short X-Short On
+	 72:  YDual               Y-Short X-Short On
+	 73:        XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   935,   904)  ->  Abs (   935,   904)
+	  1: Rel (     0,  -109)  ->  Abs (   935,   795)
+	  2: Rel (  -146,  -120)  ->  Abs (   789,   675)
+	  3: Rel (  -132,     0)  ->  Abs (   657,   675)
+	  4: Rel (   -61,     0)  ->  Abs (   596,   675)
+	  5: Rel (   -74,    17)  ->  Abs (   522,   692)
+	  6: Rel (   -45,    10)  ->  Abs (   477,   702)
+	  7: Rel (   -87,    27)  ->  Abs (   390,   729)
+	  8: Rel (    17,    21)  ->  Abs (   407,   750)
+	  9: Rel (    24,     0)  ->  Abs (   431,   750)
+	 10: Rel (    34,    -3)  ->  Abs (   465,   747)
+	 11: Rel (    79,    -7)  ->  Abs (   544,   740)
+	 12: Rel (    19,     0)  ->  Abs (   563,   740)
+	 13: Rel (   115,     0)  ->  Abs (   678,   740)
+	 14: Rel (   165,    67)  ->  Abs (   843,   807)
+	 15: Rel (     0,    46)  ->  Abs (   843,   853)
+	 16: Rel (     0,    21)  ->  Abs (   843,   874)
+	 17: Rel (   -34,    30)  ->  Abs (   809,   904)
+	 18: Rel (   -23,     0)  ->  Abs (   786,   904)
+	 19: Rel (   -26,     0)  ->  Abs (   760,   904)
+	 20: Rel (   -14,    -1)  ->  Abs (   746,   903)
+	 21: Rel (   -70,    -5)  ->  Abs (   676,   898)
+	 22: Rel (   -25,     0)  ->  Abs (   651,   898)
+	 23: Rel (   -35,    26)  ->  Abs (   616,   924)
+	 24: Rel (     0,    31)  ->  Abs (   616,   955)
+	 25: Rel (     0,    84)  ->  Abs (   616,  1039)
+	 26: Rel (   175,   234)  ->  Abs (   791,  1273)
+	 27: Rel (    96,    32)  ->  Abs (   887,  1305)
+	 28: Rel (   -19,  -131)  ->  Abs (   868,  1174)
+	 29: Rel (   -69,   -19)  ->  Abs (   799,  1155)
+	 30: Rel (   -37,   -22)  ->  Abs (   762,  1133)
+	 31: Rel (   -60,   -35)  ->  Abs (   702,  1098)
+	 32: Rel (     0,   -49)  ->  Abs (   702,  1049)
+	 33: Rel (     0,   -17)  ->  Abs (   702,  1032)
+	 34: Rel (    32,   -15)  ->  Abs (   734,  1017)
+	 35: Rel (    21,     0)  ->  Abs (   755,  1017)
+	 36: Rel (    18,     0)  ->  Abs (   773,  1017)
+	 37: Rel (    14,     2)  ->  Abs (   787,  1019)
+	 38: Rel (    54,     7)  ->  Abs (   841,  1026)
+	 39: Rel (    52,     0)  ->  Abs (   893,  1026)
+	 40: Rel (    42,   -54)  ->  Abs (   935,   972)
+	 41: Rel (   366,  -679)  ->  Abs (  1301,   293)
+	 42: Rel (  -738,     0)  ->  Abs (   563,   293)
+	 43: Rel (  -239,     0)  ->  Abs (   324,   293)
+	 44: Rel (  -101,    57)  ->  Abs (   223,   350)
+	 45: Rel (  -108,    61)  ->  Abs (   115,   411)
+	 46: Rel (     0,   147)  ->  Abs (   115,   558)
+	 47: Rel (     0,    88)  ->  Abs (   115,   646)
+	 48: Rel (    47,   112)  ->  Abs (   162,   758)
+	 49: Rel (    13,    31)  ->  Abs (   175,   789)
+	 50: Rel (    42,    84)  ->  Abs (   217,   873)
+	 51: Rel (    34,   -20)  ->  Abs (   251,   853)
+	 52: Rel (   -34,   -78)  ->  Abs (   217,   775)
+	 53: Rel (   -21,   -84)  ->  Abs (   196,   691)
+	 54: Rel (     0,   -38)  ->  Abs (   196,   653)
+	 55: Rel (     0,  -109)  ->  Abs (   196,   544)
+	 56: Rel (   115,   -44)  ->  Abs (   311,   500)
+	 57: Rel (    86,   -33)  ->  Abs (   397,   467)
+	 58: Rel (   166,     0)  ->  Abs (   563,   467)
+	 59: Rel (   637,     0)  ->  Abs (  1200,   467)
+	 60: Rel (  -125,   848)  ->  Abs (  1075,  1315)
+	 61: Rel (   -52,    25)  ->  Abs (  1023,  1340)
+	 62: Rel (     0,    69)  ->  Abs (  1023,  1409)
+	 63: Rel (    24,   121)  ->  Abs (  1047,  1530)
+	 64: Rel (    24,    57)  ->  Abs (  1071,  1587)
+	 65: Rel (    15,   -11)  ->  Abs (  1086,  1576)
+	 66: Rel (     0,   -58)  ->  Abs (  1086,  1518)
+	 67: Rel (    72,   -29)  ->  Abs (  1158,  1489)
+	 68: Rel (   108,   -40)  ->  Abs (  1266,  1449)
+	 69: Rel (     0,   -46)  ->  Abs (  1266,  1403)
+	 70: Rel (   -23,  -114)  ->  Abs (  1243,  1289)
+	 71: Rel (   -12,   -32)  ->  Abs (  1231,  1257)
+	 72: Rel (   -48,    16)  ->  Abs (  1183,  1273)
+	 73: Rel (   118,  -784)  ->  Abs (  1301,   489)
+
+	Glyph 986: off = 0x0002B606, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			115
+	  yMin:			293
+	  xMax:			1301
+	  yMax:			1587
+
+	     0: Flags:		0x0016
+		Glyf Index:	985
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 987: off = 0x0002B616, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			293
+	  xMax:			877
+	  yMax:			1503
+
+	     0: Flags:		0x0016
+		Glyf Index:	815
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 988: off = 0x0002B626, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			293
+	  xMax:			877
+	  yMax:			1503
+
+	     0: Flags:		0x0016
+		Glyf Index:	815
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 989: off = 0x0002B636, len = 330
+	  numberOfContours:	1
+	  xMin:			141
+	  yMin:			14
+	  xMax:			1107
+	  yMax:			1587
+
+	EndPoints
+	---------
+	  0:  55
+
+	  Length of Instructions:	160
+	00000: PUSHW[2]              2   -32 
+	00005: PUSHB[4]             15    17    52    53 
+	00010: PUSHW[1]            -16 
+	00013: PUSHB[4]             13    17    52    25 
+	00018: PUSHW[1]            -52 
+	00021: NPUSHB      (14):    13    17    52    28    32    12    17    52    36    35 
+	                            46    49    16    50 
+	00037: PUSHW[1]            751 
+	00040: PUSHB[3]             39    38    46 
+	00044: NPUSHW       (9):   779    17    16   777    26   751     6    39   763 
+	00064: NPUSHB      (10):    38    38    36    36    35    49    50    46    46    35 
+	00076: PUSHW[1]            784 
+	00079: PUSHB[3]             50    50    30 
+	00083: PUSHW[8]            780     0   752    57    17   763    16   -64 
+	00100: PUSHB[6]              9    11    52    16    16    23 
+	00107: PUSHW[3]            780    10   293 
+	00114: SCANCTRL   
+	00115: MDAP[rd]   
+	00116: MIRP[srp0,md,rd,1] 
+	00117: SHP[rp2,zp1] 
+	00118: MDAP[rd]   
+	00119: CALL       
+	00120: MIRP[nrp0,md,rd,1] 
+	00121: SRP0       
+	00122: MIRP[srp0,nmd,rd,1] 
+	00123: MIRP[nrp0,md,rd,1] 
+	00124: SHP[rp1,zp0] 
+	00125: MDAP[rd]   
+	00126: MIRP[nrp0,md,rd,1] 
+	00127: SHP[rp1,zp0] 
+	00128: MDAP[rd]   
+	00129: SRP2       
+	00130: IP         
+	00131: SRP1       
+	00132: SHP[rp1,zp0] 
+	00133: MDAP[rd]   
+	00134: SHP[rp1,zp0] 
+	00135: RTHG       
+	00136: MDAP[rd]   
+	00137: MIRP[nrp0,nmd,rd,1] 
+	00138: SVTCA[y-axis] 
+	00139: RTG        
+	00140: MDAP[rd]   
+	00141: MIRP[nrp0,md,rd,1] 
+	00142: MIAP[rd+ci] 
+	00143: IP         
+	00144: MIAP[rd+ci] 
+	00145: SHP[rp1,zp0] 
+	00146: SHP[rp1,zp0] 
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: SRP1       
+	00149: IP         
+	00150: SRP1       
+	00151: IP         
+	00152: IP         
+	00153: IUP[y]     
+	00154: IUP[x]     
+	00155: SVTCA[x-axis] 
+	00156: CALL       
+	00157: CALL       
+	00158: CALL       
+	00159: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual               Y-Short X-Short On
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual       Rep-  2 Y-Short X-Short On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:  YDual XDual                 X-Short On
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short X-Short On
+	 43:        XDual         Y-Short X-Short Off
+	 44:        XDual         Y-Short X-Short On
+	 45:        XDual         Y-Short X-Short Off
+	 46:        XDual         Y-Short X-Short On
+	 47:        XDual         Y-Short         Off
+	 48:                      Y-Short X-Short Off
+	 49:                      Y-Short X-Short On
+	 50:  YDual               Y-Short X-Short On
+	 51:        XDual         Y-Short X-Short Off
+	 52:        XDual         Y-Short X-Short On
+	 53:        XDual         Y-Short X-Short Off
+	 54:        XDual         Y-Short X-Short On
+	 55:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1107,   417)  ->  Abs (  1107,   417)
+	  1: Rel (     0,  -160)  ->  Abs (  1107,   257)
+	  2: Rel (   -75,   -94)  ->  Abs (  1032,   163)
+	  3: Rel (   -67,   -83)  ->  Abs (   965,    80)
+	  4: Rel (  -130,   -36)  ->  Abs (   835,    44)
+	  5: Rel (  -110,   -30)  ->  Abs (   725,    14)
+	  6: Rel (  -169,     0)  ->  Abs (   556,    14)
+	  7: Rel (  -193,     0)  ->  Abs (   363,    14)
+	  8: Rel (  -106,    71)  ->  Abs (   257,    85)
+	  9: Rel (  -116,    78)  ->  Abs (   141,   163)
+	 10: Rel (     0,   155)  ->  Abs (   141,   318)
+	 11: Rel (     0,    86)  ->  Abs (   141,   404)
+	 12: Rel (    25,    93)  ->  Abs (   166,   497)
+	 13: Rel (    21,    79)  ->  Abs (   187,   576)
+	 14: Rel (    43,    94)  ->  Abs (   230,   670)
+	 15: Rel (    31,    68)  ->  Abs (   261,   738)
+	 16: Rel (    53,    96)  ->  Abs (   314,   834)
+	 17: Rel (    32,   -19)  ->  Abs (   346,   815)
+	 18: Rel (   -37,   -67)  ->  Abs (   309,   748)
+	 19: Rel (   -25,   -53)  ->  Abs (   284,   695)
+	 20: Rel (   -33,   -71)  ->  Abs (   251,   624)
+	 21: Rel (   -16,   -56)  ->  Abs (   235,   568)
+	 22: Rel (   -19,   -68)  ->  Abs (   216,   500)
+	 23: Rel (     0,   -64)  ->  Abs (   216,   436)
+	 24: Rel (     0,  -123)  ->  Abs (   216,   313)
+	 25: Rel (   179,  -126)  ->  Abs (   395,   187)
+	 26: Rel (   159,     0)  ->  Abs (   554,   187)
+	 27: Rel (   169,     0)  ->  Abs (   723,   187)
+	 28: Rel (   144,    58)  ->  Abs (   867,   245)
+	 29: Rel (   158,    64)  ->  Abs (  1025,   309)
+	 30: Rel (     0,    89)  ->  Abs (  1025,   398)
+	 31: Rel (     0,    97)  ->  Abs (  1025,   495)
+	 32: Rel (   -31,   232)  ->  Abs (   994,   727)
+	 33: Rel (   -24,   178)  ->  Abs (   970,   905)
+	 34: Rel (   -35,   220)  ->  Abs (   935,  1125)
+	 35: Rel (   -33,   194)  ->  Abs (   902,  1319)
+	 36: Rel (   -46,    24)  ->  Abs (   856,  1343)
+	 37: Rel (     0,   134)  ->  Abs (   856,  1477)
+	 38: Rel (    55,   110)  ->  Abs (   911,  1587)
+	 39: Rel (    17,     0)  ->  Abs (   928,  1587)
+	 40: Rel (     4,   -38)  ->  Abs (   932,  1549)
+	 41: Rel (    20,   -37)  ->  Abs (   952,  1512)
+	 42: Rel (    23,    -9)  ->  Abs (   975,  1503)
+	 43: Rel (    31,   -13)  ->  Abs (  1006,  1490)
+	 44: Rel (    37,   -18)  ->  Abs (  1043,  1472)
+	 45: Rel (    27,   -13)  ->  Abs (  1070,  1459)
+	 46: Rel (    20,   -10)  ->  Abs (  1090,  1449)
+	 47: Rel (     0,   -70)  ->  Abs (  1090,  1379)
+	 48: Rel (   -10,   -64)  ->  Abs (  1080,  1315)
+	 49: Rel (   -15,   -58)  ->  Abs (  1065,  1257)
+	 50: Rel (   -57,    18)  ->  Abs (  1008,  1275)
+	 51: Rel (     2,   -22)  ->  Abs (  1010,  1253)
+	 52: Rel (    27,  -179)  ->  Abs (  1037,  1074)
+	 53: Rel (    31,  -209)  ->  Abs (  1068,   865)
+	 54: Rel (    15,  -130)  ->  Abs (  1083,   735)
+	 55: Rel (    24,  -208)  ->  Abs (  1107,   527)
+
+	Glyph 990: off = 0x0002B780, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			141
+	  yMin:			14
+	  xMax:			1107
+	  yMax:			1587
+
+	     0: Flags:		0x0016
+		Glyf Index:	989
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 991: off = 0x0002B790, len = 184
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			293
+	  xMax:			494
+	  yMax:			1587
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	113
+	00000: PUSHW[2]             18   -16 
+	00005: NPUSHB      (10):    28    29    52     5     4    13    16    18     3    17 
+	00017: PUSHW[1]            751 
+	00020: PUSHB[3]              9     8    13 
+	00024: PUSHW[8]            779     3   751    64     1   747     9   763 
+	00041: NPUSHB      (11):    32     8     8     5     5     4    16    17    13    13 
+	                             4 
+	00054: PUSHW[1]            784 
+	00057: PUSHB[3]             17    17     3 
+	00061: PUSHW[6]            784     0   752    20     1   293 
+	00074: SCANCTRL   
+	00075: MDAP[rd]   
+	00076: SRP0       
+	00077: MIRP[srp0,nmd,rd,1] 
+	00078: MIRP[nrp0,md,rd,1] 
+	00079: SHP[rp1,zp0] 
+	00080: MDAP[rd]   
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SHP[rp1,zp0] 
+	00083: MDAP[rd]   
+	00084: SRP2       
+	00085: IP         
+	00086: SRP1       
+	00087: SHP[rp1,zp0] 
+	00088: MDAP[rd]   
+	00089: SHP[rp1,zp0] 
+	00090: RTHG       
+	00091: MDAP[rd]   
+	00092: SMD        
+	00093: MIRP[nrp0,md,rd,1] 
+	00094: SVTCA[y-axis] 
+	00095: RTG        
+	00096: MIAP[rd+ci] 
+	00097: SMD        
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: MIAP[rd+ci] 
+	00100: SHP[rp1,zp0] 
+	00101: SHP[rp1,zp0] 
+	00102: MIRP[nrp0,md,rd,1] 
+	00103: SRP1       
+	00104: IP         
+	00105: IP         
+	00106: SRP1       
+	00107: IP         
+	00108: IP         
+	00109: IUP[y]     
+	00110: IUP[x]     
+	00111: SVTCA[y-axis] 
+	00112: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:                              X-Short On
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short         Off
+	 11:        XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short On
+	 18:        XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   494,   293)  ->  Abs (   494,   293)
+	  1: Rel (  -494,     0)  ->  Abs (     0,   293)
+	  2: Rel (     0,   174)  ->  Abs (     0,   467)
+	  3: Rel (   393,     0)  ->  Abs (   393,   467)
+	  4: Rel (  -119,   848)  ->  Abs (   274,  1315)
+	  5: Rel (   -52,    25)  ->  Abs (   222,  1340)
+	  6: Rel (     0,    69)  ->  Abs (   222,  1409)
+	  7: Rel (    24,   121)  ->  Abs (   246,  1530)
+	  8: Rel (    24,    57)  ->  Abs (   270,  1587)
+	  9: Rel (    15,   -11)  ->  Abs (   285,  1576)
+	 10: Rel (     0,   -58)  ->  Abs (   285,  1518)
+	 11: Rel (    65,   -29)  ->  Abs (   350,  1489)
+	 12: Rel (    50,   -20)  ->  Abs (   400,  1469)
+	 13: Rel (    51,   -20)  ->  Abs (   451,  1449)
+	 14: Rel (     0,   -50)  ->  Abs (   451,  1399)
+	 15: Rel (   -16,  -114)  ->  Abs (   435,  1285)
+	 16: Rel (   -11,   -28)  ->  Abs (   424,  1257)
+	 17: Rel (   -48,    16)  ->  Abs (   376,  1273)
+	 18: Rel (   118,  -784)  ->  Abs (   494,   489)
+
+	Glyph 992: off = 0x0002B848, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			293
+	  xMax:			494
+	  yMax:			1587
+
+	     0: Flags:		0x0016
+		Glyf Index:	991
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 993: off = 0x0002B858, len = 270
+	  numberOfContours:	1
+	  xMin:			105
+	  yMin:			-434
+	  xMax:			762
+	  yMax:			731
+
+	EndPoints
+	---------
+	  0:  42
+
+	  Length of Instructions:	136
+	00000: PUSHW[2]              8   -32 
+	00005: PUSHB[4]             28    31    52     7 
+	00010: PUSHW[1]             -8 
+	00013: NPUSHB      (19):    17    25    52   139    19   139    24     2    32    27 
+	                            31    64     9    24    52    31    31    23    36 
+	00034: PUSHW[1]            751 
+	00037: NPUSHB       (9):    27    64    25    26    52    27    27    23    42 
+	00048: PUSHW[7]            751    23   751     1   747    12   774 
+	00063: PUSHB[4]             23    23     0    31 
+	00068: PUSHW[1]            762 
+	00071: PUSHB[4]             32    32     5     0 
+	00076: PUSHW[1]            752 
+	00079: PUSHB[7]             44    12    12    18     9     9     5 
+	00087: PUSHW[1]            765 
+	00090: PUSHB[4]             16    18     1    18 
+	00095: MDAP[rd]   
+	00096: DELTAP1    
+	00097: MIRP[nrp0,md,rd,1] 
+	00098: SHP[rp1,zp0] 
+	00099: MDAP[rd]   
+	00100: RTHG       
+	00101: SRP2       
+	00102: IP         
+	00103: MDAP[rd]   
+	00104: RTG        
+	00105: SRP0       
+	00106: MIRP[nrp0,nmd,rd,0] 
+	00107: SRP1       
+	00108: IP         
+	00109: MDAP[rd]   
+	00110: MIRP[srp0,md,rd,1] 
+	00111: SRP1       
+	00112: IP         
+	00113: MDAP[rd]   
+	00114: SVTCA[y-axis] 
+	00115: MIAP[rd+ci] 
+	00116: MIAP[rd+ci] 
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: MIRP[nrp0,md,rd,1] 
+	00119: SRP1       
+	00120: SHP[rp1,zp0] 
+	00121: MDAP[rd]   
+	00122: CALL       
+	00123: MIRP[nrp0,md,rd,1] 
+	00124: SRP2       
+	00125: IP         
+	00126: MDAP[rd]   
+	00127: CALL       
+	00128: SRP2       
+	00129: IP         
+	00130: IUP[y]     
+	00131: IUP[x]     
+	00132: SVTCA[x-axis] 
+	00133: DELTAP1    
+	00134: CALL       
+	00135: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:                      Y-Short X-Short On
+	  4:                      Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:                      Y-Short X-Short On
+	 30:                      Y-Short X-Short Off
+	 31:                      Y-Short X-Short On
+	 32:  YDual               Y-Short X-Short On
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:        XDual         Y-Short X-Short On
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short X-Short On
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   762,   293)  ->  Abs (   762,   293)
+	  1: Rel (  -119,     0)  ->  Abs (   643,   293)
+	  2: Rel (  -166,     0)  ->  Abs (   477,   293)
+	  3: Rel (  -124,   -31)  ->  Abs (   353,   262)
+	  4: Rel (  -157,   -39)  ->  Abs (   196,   223)
+	  5: Rel (     0,   -73)  ->  Abs (   196,   150)
+	  6: Rel (     0,   -66)  ->  Abs (   196,    84)
+	  7: Rel (    45,  -150)  ->  Abs (   241,   -66)
+	  8: Rel (    47,  -154)  ->  Abs (   288,  -220)
+	  9: Rel (     0,   -64)  ->  Abs (   288,  -284)
+	 10: Rel (     0,   -38)  ->  Abs (   288,  -322)
+	 11: Rel (   -11,   -62)  ->  Abs (   277,  -384)
+	 12: Rel (   -14,   -50)  ->  Abs (   263,  -434)
+	 13: Rel (   -26,    83)  ->  Abs (   237,  -351)
+	 14: Rel (   -25,    83)  ->  Abs (   212,  -268)
+	 15: Rel (   -48,   158)  ->  Abs (   164,  -110)
+	 16: Rel (   -23,    81)  ->  Abs (   141,   -29)
+	 17: Rel (   -36,   128)  ->  Abs (   105,    99)
+	 18: Rel (     0,    26)  ->  Abs (   105,   125)
+	 19: Rel (     0,   128)  ->  Abs (   105,   253)
+	 20: Rel (   107,   137)  ->  Abs (   212,   390)
+	 21: Rel (   111,    33)  ->  Abs (   323,   423)
+	 22: Rel (    88,    26)  ->  Abs (   411,   449)
+	 23: Rel (   177,    18)  ->  Abs (   588,   467)
+	 24: Rel (   -63,    64)  ->  Abs (   525,   531)
+	 25: Rel (   -15,    12)  ->  Abs (   510,   543)
+	 26: Rel (   -51,    40)  ->  Abs (   459,   583)
+	 27: Rel (   -52,     0)  ->  Abs (   407,   583)
+	 28: Rel (   -33,     0)  ->  Abs (   374,   583)
+	 29: Rel (   -30,   -20)  ->  Abs (   344,   563)
+	 30: Rel (   -24,   -16)  ->  Abs (   320,   547)
+	 31: Rel (   -34,   -39)  ->  Abs (   286,   508)
+	 32: Rel (   -46,    29)  ->  Abs (   240,   537)
+	 33: Rel (    30,    75)  ->  Abs (   270,   612)
+	 34: Rel (    38,    45)  ->  Abs (   308,   657)
+	 35: Rel (    63,    74)  ->  Abs (   371,   731)
+	 36: Rel (    86,     0)  ->  Abs (   457,   731)
+	 37: Rel (    62,     0)  ->  Abs (   519,   731)
+	 38: Rel (    62,   -46)  ->  Abs (   581,   685)
+	 39: Rel (    51,   -38)  ->  Abs (   632,   647)
+	 40: Rel (    53,   -68)  ->  Abs (   685,   579)
+	 41: Rel (    26,   -33)  ->  Abs (   711,   546)
+	 42: Rel (    51,   -79)  ->  Abs (   762,   467)
+
+	Glyph 994: off = 0x0002B966, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			105
+	  yMin:			-434
+	  xMax:			762
+	  yMax:			731
+
+	     0: Flags:		0x0016
+		Glyf Index:	993
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 995: off = 0x0002B976, len = 236
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			293
+	  xMax:			877
+	  yMax:			841
+
+	EndPoints
+	---------
+	  0:  23
+	  1:  35
+
+	  Length of Instructions:	118
+	00000: NPUSHB      (11):    30    32    12    13    52    27    32    12    17    52 
+	                            33 
+	00013: PUSHW[1]            -32 
+	00016: PUSHB[4]             12    17    52    19 
+	00021: PUSHW[1]            778 
+	00024: PUSHB[3]             28    28    32 
+	00028: PUSHW[1]            751 
+	00031: PUSHB[5]              5     5    10     9    35 
+	00037: PUSHW[1]            751 
+	00040: PUSHB[3]              0     0    10 
+	00044: PUSHW[3]            751     9   747 
+	00051: PUSHB[8]             28    32    19    19    24     5     9    32 
+	00060: PUSHW[1]            -32 
+	00063: PUSHB[7]             17    21    52    32    32     9    24 
+	00071: PUSHW[3]            768     0   752 
+	00078: PUSHB[2]             37     9 
+	00081: MDAP[rd]   
+	00082: SRP0       
+	00083: MIRP[srp0,nmd,rd,1] 
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: SRP1       
+	00086: IP         
+	00087: MDAP[rd]   
+	00088: CALL       
+	00089: SRP2       
+	00090: IP         
+	00091: RTHG       
+	00092: SRP2       
+	00093: IP         
+	00094: MDAP[rd]   
+	00095: SRP2       
+	00096: IP         
+	00097: SVTCA[y-axis] 
+	00098: RTG        
+	00099: MIAP[rd+ci] 
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: ALIGNRP    
+	00102: SRP0       
+	00103: MIRP[nrp0,md,rd,1] 
+	00104: SRP1       
+	00105: SRP2       
+	00106: IP         
+	00107: MDAP[rd]   
+	00108: MIRP[srp0,md,rd,1] 
+	00109: SHP[rp2,zp1] 
+	00110: MDAP[rd]   
+	00111: MIRP[nrp0,md,rd,1] 
+	00112: IUP[y]     
+	00113: IUP[x]     
+	00114: SVTCA[x-axis] 
+	00115: CALL       
+	00116: CALL       
+	00117: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual               Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual               Y-Short X-Short On
+	 29:                      Y-Short X-Short Off
+	 30:                      Y-Short X-Short On
+	 31:                      Y-Short X-Short Off
+	 32:                      Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   877,   293)  ->  Abs (   877,   293)
+	  1: Rel (  -104,     0)  ->  Abs (   773,   293)
+	  2: Rel (   -67,     0)  ->  Abs (   706,   293)
+	  3: Rel (   -84,    30)  ->  Abs (   622,   323)
+	  4: Rel (   -97,    35)  ->  Abs (   525,   358)
+	  5: Rel (   -74,    61)  ->  Abs (   451,   419)
+	  6: Rel (   -58,   -71)  ->  Abs (   393,   348)
+	  7: Rel (  -121,   -55)  ->  Abs (   272,   293)
+	  8: Rel (  -116,     0)  ->  Abs (   156,   293)
+	  9: Rel (  -156,     0)  ->  Abs (     0,   293)
+	 10: Rel (     0,   174)  ->  Abs (     0,   467)
+	 11: Rel (   153,     0)  ->  Abs (   153,   467)
+	 12: Rel (    91,     0)  ->  Abs (   244,   467)
+	 13: Rel (    71,    46)  ->  Abs (   315,   513)
+	 14: Rel (    55,    36)  ->  Abs (   370,   549)
+	 15: Rel (    45,    65)  ->  Abs (   415,   614)
+	 16: Rel (    61,    88)  ->  Abs (   476,   702)
+	 17: Rel (    89,    65)  ->  Abs (   565,   767)
+	 18: Rel (    80,    58)  ->  Abs (   645,   825)
+	 19: Rel (    67,    16)  ->  Abs (   712,   841)
+	 20: Rel (    69,  -105)  ->  Abs (   781,   736)
+	 21: Rel (    41,   -84)  ->  Abs (   822,   652)
+	 22: Rel (    55,  -114)  ->  Abs (   877,   538)
+	 23: Rel (     0,   -71)  ->  Abs (   877,   467)
+	 24: Rel (  -115,    23)  ->  Abs (   762,   490)
+	 25: Rel (   -13,    58)  ->  Abs (   749,   548)
+	 26: Rel (   -27,    56)  ->  Abs (   722,   604)
+	 27: Rel (   -23,    47)  ->  Abs (   699,   651)
+	 28: Rel (   -38,    50)  ->  Abs (   661,   701)
+	 29: Rel (   -48,   -12)  ->  Abs (   613,   689)
+	 30: Rel (   -33,   -33)  ->  Abs (   580,   656)
+	 31: Rel (   -22,   -21)  ->  Abs (   558,   635)
+	 32: Rel (   -30,   -50)  ->  Abs (   528,   585)
+	 33: Rel (    36,   -39)  ->  Abs (   564,   546)
+	 34: Rel (   131,   -62)  ->  Abs (   695,   484)
+	 35: Rel (    58,    -7)  ->  Abs (   753,   477)
+
+	Glyph 996: off = 0x0002BA62, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			293
+	  xMax:			877
+	  yMax:			841
+
+	     0: Flags:		0x0016
+		Glyf Index:	995
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 997: off = 0x0002BA72, len = 286
+	  numberOfContours:	2
+	  xMin:			139
+	  yMin:			-148
+	  xMax:			1147
+	  yMax:			1142
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  36
+
+	  Length of Instructions:	166
+	00000: PUSHW[2]              6   -32 
+	00005: PUSHB[4]             13    17    52    23 
+	00010: PUSHW[1]            -42 
+	00013: NPUSHB      (16):    14    17    52    26    32    11    17    52    31    32 
+	                            11    17    52     0     2     3 
+	00031: PUSHW[1]            770 
+	00034: PUSHB[3]              1     1    32 
+	00038: NPUSHW      (10):   751    33   777    18    17   775    24   751     8   785 
+	00060: PUSHB[3]              1     3     2 
+	00064: PUSHW[3]            769     0   -64 
+	00071: NPUSHB      (11):    10    14    52     0     0    21    33    33    32    32 
+	                            28 
+	00084: NPUSHW      (10):   771    64     4   752    38    18   763    32    17   -64 
+	00106: PUSHB[6]              9    11    52    17    17    21 
+	00113: PUSHW[3]            771    12   298 
+	00120: SCANCTRL   
+	00121: MDAP[rd]   
+	00122: MIRP[srp0,md,rd,1] 
+	00123: SHP[rp2,zp1] 
+	00124: RTHG       
+	00125: MDAP[rd]   
+	00126: CALL       
+	00127: SMD        
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: RTG        
+	00130: SRP0       
+	00131: MIRP[srp0,nmd,rd,1] 
+	00132: SMD        
+	00133: MIRP[srp0,md,rd,1] 
+	00134: SHP[rp2,zp1] 
+	00135: MDAP[rd]   
+	00136: RTHG       
+	00137: IP         
+	00138: MDAP[rd]   
+	00139: RTG        
+	00140: SRP1       
+	00141: IP         
+	00142: MDAP[rd]   
+	00143: CALL       
+	00144: MIRP[srp0,md,rd,1] 
+	00145: IP         
+	00146: IP         
+	00147: SVTCA[y-axis] 
+	00148: MIAP[rd+ci] 
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: MIAP[rd+ci] 
+	00151: IP         
+	00152: MIAP[rd+ci] 
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: SHP[rp1,zp0] 
+	00155: MDAP[rd]   
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: IP         
+	00158: IP         
+	00159: IUP[y]     
+	00160: IUP[x]     
+	00161: SVTCA[x-axis] 
+	00162: CALL       
+	00163: CALL       
+	00164: CALL       
+	00165: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                               On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:        XDual         Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual               Y-Short X-Short On
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual               Y-Short X-Short On
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   775,  1060)  ->  Abs (   775,  1060)
+	  1: Rel (   -75,  -143)  ->  Abs (   700,   917)
+	  2: Rel (  -156,    86)  ->  Abs (   544,  1003)
+	  3: Rel (    72,   139)  ->  Abs (   616,  1142)
+	  4: Rel (   531,  -849)  ->  Abs (  1147,   293)
+	  5: Rel (     0,  -223)  ->  Abs (  1147,    70)
+	  6: Rel (  -131,  -105)  ->  Abs (  1016,   -35)
+	  7: Rel (  -141,  -113)  ->  Abs (   875,  -148)
+	  8: Rel (  -314,     0)  ->  Abs (   561,  -148)
+	  9: Rel (  -200,     0)  ->  Abs (   361,  -148)
+	 10: Rel (  -106,    70)  ->  Abs (   255,   -78)
+	 11: Rel (  -116,    77)  ->  Abs (   139,    -1)
+	 12: Rel (     0,   159)  ->  Abs (   139,   158)
+	 13: Rel (     0,    86)  ->  Abs (   139,   244)
+	 14: Rel (    42,   176)  ->  Abs (   181,   420)
+	 15: Rel (    36,    89)  ->  Abs (   217,   509)
+	 16: Rel (    22,    54)  ->  Abs (   239,   563)
+	 17: Rel (    54,   112)  ->  Abs (   293,   675)
+	 18: Rel (    40,   -18)  ->  Abs (   333,   657)
+	 19: Rel (   -70,  -144)  ->  Abs (   263,   513)
+	 20: Rel (   -45,  -166)  ->  Abs (   218,   347)
+	 21: Rel (     0,   -69)  ->  Abs (   218,   278)
+	 22: Rel (     0,  -124)  ->  Abs (   218,   154)
+	 23: Rel (   177,  -129)  ->  Abs (   395,    25)
+	 24: Rel (   164,     0)  ->  Abs (   559,    25)
+	 25: Rel (   189,     0)  ->  Abs (   748,    25)
+	 26: Rel (   146,    67)  ->  Abs (   894,    92)
+	 27: Rel (   181,    83)  ->  Abs (  1075,   175)
+	 28: Rel (     0,   149)  ->  Abs (  1075,   324)
+	 29: Rel (     0,   102)  ->  Abs (  1075,   426)
+	 30: Rel (   -30,    88)  ->  Abs (  1045,   514)
+	 31: Rel (   -26,    78)  ->  Abs (  1019,   592)
+	 32: Rel (   -48,    58)  ->  Abs (   971,   650)
+	 33: Rel (    83,   205)  ->  Abs (  1054,   855)
+	 34: Rel (    53,   -81)  ->  Abs (  1107,   774)
+	 35: Rel (    40,  -168)  ->  Abs (  1147,   606)
+	 36: Rel (     0,  -139)  ->  Abs (  1147,   467)
+
+	Glyph 998: off = 0x0002BB90, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			139
+	  yMin:			-148
+	  xMax:			1147
+	  yMax:			1142
+
+	     0: Flags:		0x0016
+		Glyf Index:	997
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 999: off = 0x0002BBA0, len = 158
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			293
+	  xMax:			570
+	  yMax:			1302
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  16
+
+	  Length of Instructions:	91
+	00000: PUSHB[8]             10    52    12    17    52     0     2     3 
+	00009: PUSHW[1]            770 
+	00012: PUSHB[3]              1     1    11 
+	00016: PUSHW[7]            751    12   772     6   751     5   747 
+	00031: PUSHB[3]              1     3     0 
+	00035: PUSHW[1]            769 
+	00038: PUSHB[8]              2     2     5    12    12    11    11     7 
+	00047: PUSHW[6]            771     4   752    18     5   298 
+	00060: SCANCTRL   
+	00061: MDAP[rd]   
+	00062: SRP0       
+	00063: MIRP[srp0,nmd,rd,1] 
+	00064: MIRP[srp0,md,rd,1] 
+	00065: SHP[rp2,zp1] 
+	00066: MDAP[rd]   
+	00067: RTHG       
+	00068: IP         
+	00069: MDAP[rd]   
+	00070: RTG        
+	00071: SRP1       
+	00072: IP         
+	00073: MDAP[rd]   
+	00074: MIRP[nrp0,md,rd,1] 
+	00075: IP         
+	00076: IP         
+	00077: SVTCA[y-axis] 
+	00078: MIAP[rd+ci] 
+	00079: MIRP[nrp0,md,rd,1] 
+	00080: MIAP[rd+ci] 
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SHP[rp1,zp0] 
+	00083: MDAP[rd]   
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: IP         
+	00086: IP         
+	00087: IUP[y]     
+	00088: IUP[x]     
+	00089: SVTCA[x-axis] 
+	00090: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:        XDual                 X-Short On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   490,  1218)  ->  Abs (   490,  1218)
+	  1: Rel (   -76,  -145)  ->  Abs (   414,  1073)
+	  2: Rel (  -162,    84)  ->  Abs (   252,  1157)
+	  3: Rel (    74,   145)  ->  Abs (   326,  1302)
+	  4: Rel (   244, -1009)  ->  Abs (   570,   293)
+	  5: Rel (  -570,     0)  ->  Abs (     0,   293)
+	  6: Rel (     0,   174)  ->  Abs (     0,   467)
+	  7: Rel (   497,     0)  ->  Abs (   497,   467)
+	  8: Rel (     0,   118)  ->  Abs (   497,   585)
+	  9: Rel (   -28,    62)  ->  Abs (   469,   647)
+	 10: Rel (   -19,    43)  ->  Abs (   450,   690)
+	 11: Rel (   -75,    81)  ->  Abs (   375,   771)
+	 12: Rel (    78,   163)  ->  Abs (   453,   934)
+	 13: Rel (    72,   -91)  ->  Abs (   525,   843)
+	 14: Rel (    18,   -51)  ->  Abs (   543,   792)
+	 15: Rel (    27,   -77)  ->  Abs (   570,   715)
+	 16: Rel (     0,  -178)  ->  Abs (   570,   537)
+
+	Glyph 1000: off = 0x0002BC3E, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			293
+	  xMax:			570
+	  yMax:			1302
+
+	     0: Flags:		0x0016
+		Glyf Index:	999
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1001: off = 0x0002BC4E, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			54
+	  yMin:			266
+	  xMax:			536
+	  yMax:			881
+
+	     0: Flags:		0x0016
+		Glyf Index:	776
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1002: off = 0x0002BC5E, len = 238
+	  numberOfContours:	2
+	  xMin:			61
+	  yMin:			293
+	  xMax:			838
+	  yMax:			1193
+
+	EndPoints
+	---------
+	  0:  30
+	  1:  39
+
+	  Length of Instructions:	110
+	00000: NPUSHB      (12):     4     3     1    31    35    32     5    38     8    21 
+	                            21    14 
+	00014: PUSHW[1]            778 
+	00017: PUSHB[3]             32    32    38 
+	00021: PUSHW[1]            751 
+	00024: PUSHB[3]              8     8    30 
+	00028: PUSHW[4]            751    64     1   747 
+	00037: PUSHB[8]             27     0    14    32    31     5     4    17 
+	00046: PUSHW[1]            766 
+	00049: PUSHB[8]             32    15    21     1    21    21    35     0 
+	00058: PUSHW[6]            752    41    35   787    11   275 
+	00071: SCANCTRL   
+	00072: MDAP[rd]   
+	00073: MIRP[nrp0,md,rd,1] 
+	00074: SRP0       
+	00075: MIRP[nrp0,nmd,rd,1] 
+	00076: RTHG       
+	00077: SRP1       
+	00078: IP         
+	00079: MDAP[rd]   
+	00080: DELTAP1    
+	00081: SMD        
+	00082: MIRP[srp0,md,rd,1] 
+	00083: SLOOP      
+	00084: IP         
+	00085: SRP2       
+	00086: IP         
+	00087: SVTCA[y-axis] 
+	00088: RTG        
+	00089: MIAP[rd+ci] 
+	00090: SMD        
+	00091: MIRP[srp0,md,rd,1] 
+	00092: SHP[rp2,zp1] 
+	00093: MDAP[rd]   
+	00094: MIRP[srp0,md,rd,1] 
+	00095: SHP[rp2,zp1] 
+	00096: MDAP[rd]   
+	00097: MIRP[srp0,md,rd,1] 
+	00098: SHP[rp2,zp1] 
+	00099: MDAP[rd]   
+	00100: SRP1       
+	00101: SRP2       
+	00102: IP         
+	00103: SRP1       
+	00104: IP         
+	00105: IP         
+	00106: IUP[y]     
+	00107: IUP[x]     
+	00108: SVTCA[x-axis] 
+	00109: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short On
+	 31:                                      On
+	 32:  YDual               Y-Short X-Short On
+	 33:                      Y-Short X-Short Off
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short On
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   838,   293)  ->  Abs (   838,   293)
+	  1: Rel (  -143,     0)  ->  Abs (   695,   293)
+	  2: Rel (   -72,     0)  ->  Abs (   623,   293)
+	  3: Rel (   -55,   123)  ->  Abs (   568,   416)
+	  4: Rel (   -41,    92)  ->  Abs (   527,   508)
+	  5: Rel (   -25,   145)  ->  Abs (   502,   653)
+	  6: Rel (   -30,   -56)  ->  Abs (   472,   597)
+	  7: Rel (   -92,   -62)  ->  Abs (   380,   535)
+	  8: Rel (   -51,     0)  ->  Abs (   329,   535)
+	  9: Rel (  -115,     0)  ->  Abs (   214,   535)
+	 10: Rel (  -153,    31)  ->  Abs (    61,   566)
+	 11: Rel (     0,    24)  ->  Abs (    61,   590)
+	 12: Rel (     0,    86)  ->  Abs (    61,   676)
+	 13: Rel (   224,   209)  ->  Abs (   285,   885)
+	 14: Rel (   168,    78)  ->  Abs (   453,   963)
+	 15: Rel (    -2,     8)  ->  Abs (   451,   971)
+	 16: Rel (   -13,    68)  ->  Abs (   438,  1039)
+	 17: Rel (     0,     8)  ->  Abs (   438,  1047)
+	 18: Rel (     0,    34)  ->  Abs (   438,  1081)
+	 19: Rel (    23,    42)  ->  Abs (   461,  1123)
+	 20: Rel (    19,    34)  ->  Abs (   480,  1157)
+	 21: Rel (    31,    36)  ->  Abs (   511,  1193)
+	 22: Rel (    10,   -62)  ->  Abs (   521,  1131)
+	 23: Rel (    21,  -116)  ->  Abs (   542,  1015)
+	 24: Rel (    14,   -62)  ->  Abs (   556,   953)
+	 25: Rel (    30,  -172)  ->  Abs (   586,   781)
+	 26: Rel (    25,  -142)  ->  Abs (   611,   639)
+	 27: Rel (    20,   -68)  ->  Abs (   631,   571)
+	 28: Rel (    31,  -104)  ->  Abs (   662,   467)
+	 29: Rel (    33,     0)  ->  Abs (   695,   467)
+	 30: Rel (   143,     0)  ->  Abs (   838,   467)
+	 31: Rel (  -349,   273)  ->  Abs (   489,   740)
+	 32: Rel (   -19,   109)  ->  Abs (   470,   849)
+	 33: Rel (   -87,   -31)  ->  Abs (   383,   818)
+	 34: Rel (  -100,   -67)  ->  Abs (   283,   751)
+	 35: Rel (   -34,   -55)  ->  Abs (   249,   696)
+	 36: Rel (    21,    -9)  ->  Abs (   270,   687)
+	 37: Rel (    56,   -10)  ->  Abs (   326,   677)
+	 38: Rel (    49,     0)  ->  Abs (   375,   677)
+	 39: Rel (    60,     0)  ->  Abs (   435,   677)
+
+	Glyph 1003: off = 0x0002BD4C, len = 372
+	  numberOfContours:	3
+	  xMin:			0
+	  yMin:			256
+	  xMax:			858
+	  yMax:			1136
+
+	EndPoints
+	---------
+	  0:  40
+	  1:  53
+	  2:  67
+
+	  Length of Instructions:	167
+	00000: NPUSHB      (15):    58    32    15    17    52    58    45    61    18    50 
+	                            14    29    29    45    35 
+	00017: PUSHW[1]            -64 
+	00020: PUSHB[8]             15    17    52    35    35    45    45    50 
+	00029: PUSHW[1]            751 
+	00032: PUSHB[5]              8     8    14    13    65 
+	00038: PUSHW[7]            751     4   747    14   751    13   747 
+	00053: NPUSHB      (20):    61    58     8    50    41    29    31    35    18    32 
+	                             9    14    52    18    48    22    35    35    41    22 
+	00075: PUSHW[1]            768 
+	00078: PUSHB[4]             48    48    13    41 
+	00083: PUSHW[1]            765 
+	00086: NPUSHB       (9):    58    64     9    12    52    58    58    13    54 
+	00097: PUSHW[1]            768 
+	00100: PUSHB[4]              0     0    69    13 
+	00105: PUSHW[1]            287 
+	00108: SCANCTRL   
+	00109: MDAP[rd]   
+	00110: SRP1       
+	00111: SHP[rp1,zp0] 
+	00112: MDAP[rd]   
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: SRP1       
+	00115: IP         
+	00116: MDAP[rd]   
+	00117: CALL       
+	00118: MIRP[nrp0,md,rd,1] 
+	00119: SRP1       
+	00120: IP         
+	00121: MDAP[rd]   
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: RTHG       
+	00124: SRP2       
+	00125: IP         
+	00126: MDAP[rd]   
+	00127: SRP1       
+	00128: SRP2       
+	00129: IP         
+	00130: CALL       
+	00131: SRP1       
+	00132: IP         
+	00133: IP         
+	00134: SRP1       
+	00135: IP         
+	00136: IP         
+	00137: SRP2       
+	00138: IP         
+	00139: SVTCA[y-axis] 
+	00140: RTG        
+	00141: MIAP[rd+ci] 
+	00142: MIRP[nrp0,md,rd,1] 
+	00143: MIAP[rd+ci] 
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: SRP1       
+	00146: SRP2       
+	00147: IP         
+	00148: MDAP[rd]   
+	00149: MIRP[srp0,md,rd,1] 
+	00150: SHP[rp2,zp1] 
+	00151: MDAP[rd]   
+	00152: SHP[rp1,zp0] 
+	00153: MDAP[rd]   
+	00154: CALL       
+	00155: SRP2       
+	00156: IP         
+	00157: MDAP[rd]   
+	00158: SRP1       
+	00159: SRP2       
+	00160: IP         
+	00161: IP         
+	00162: SRP1       
+	00163: IP         
+	00164: CALL       
+	00165: IUP[y]     
+	00166: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short On
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual               Y-Short X-Short On
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short X-Short On
+	 38:        XDual         Y-Short X-Short Off
+	 39:        XDual         Y-Short X-Short On
+	 40:        XDual         Y-Short X-Short Off
+	 41:  YDual               Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual               Y-Short X-Short On
+	 44:  YDual               Y-Short X-Short Off
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short Off
+	 47:                      Y-Short X-Short Off
+	 48:        XDual         Y-Short         On
+	 49:        XDual         Y-Short         Off
+	 50:        XDual         Y-Short X-Short On
+	 51:  YDual XDual         Y-Short X-Short Off
+	 52:  YDual XDual         Y-Short X-Short On
+	 53:  YDual XDual         Y-Short X-Short Off
+	 54:        XDual         Y-Short X-Short On
+	 55:  YDual XDual         Y-Short         Off
+	 56:  YDual               Y-Short X-Short On
+	 57:  YDual               Y-Short X-Short Off
+	 58:  YDual               Y-Short X-Short On
+	 59:        XDual         Y-Short         Off
+	 60:                      Y-Short X-Short Off
+	 61:                      Y-Short X-Short On
+	 62:        XDual         Y-Short X-Short Off
+	 63:        XDual         Y-Short X-Short On
+	 64:        XDual         Y-Short X-Short Off
+	 65:  YDual XDual                 X-Short On
+	 66:  YDual XDual                 X-Short Off
+	 67:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   858,   462)  ->  Abs (   858,   462)
+	  1: Rel (     0,   -58)  ->  Abs (   858,   404)
+	  2: Rel (   -36,   -71)  ->  Abs (   822,   333)
+	  3: Rel (   -39,   -77)  ->  Abs (   783,   256)
+	  4: Rel (   -39,     0)  ->  Abs (   744,   256)
+	  5: Rel (   -41,     0)  ->  Abs (   703,   256)
+	  6: Rel (  -112,    52)  ->  Abs (   591,   308)
+	  7: Rel (  -103,    48)  ->  Abs (   488,   356)
+	  8: Rel (   -71,    46)  ->  Abs (   417,   402)
+	  9: Rel (  -116,   -66)  ->  Abs (   301,   336)
+	 10: Rel (   -53,   -19)  ->  Abs (   248,   317)
+	 11: Rel (   -67,   -24)  ->  Abs (   181,   293)
+	 12: Rel (   -91,     0)  ->  Abs (    90,   293)
+	 13: Rel (   -90,     0)  ->  Abs (     0,   293)
+	 14: Rel (     0,   174)  ->  Abs (     0,   467)
+	 15: Rel (    90,     0)  ->  Abs (    90,   467)
+	 16: Rel (    41,     0)  ->  Abs (   131,   467)
+	 17: Rel (    76,    13)  ->  Abs (   207,   480)
+	 18: Rel (    65,    17)  ->  Abs (   272,   497)
+	 19: Rel (   -26,    19)  ->  Abs (   246,   516)
+	 20: Rel (   -26,    20)  ->  Abs (   220,   536)
+	 21: Rel (   -28,    25)  ->  Abs (   192,   561)
+	 22: Rel (     0,    24)  ->  Abs (   192,   585)
+	 23: Rel (     0,    17)  ->  Abs (   192,   602)
+	 24: Rel (     3,    16)  ->  Abs (   195,   618)
+	 25: Rel (    12,    22)  ->  Abs (   207,   640)
+	 26: Rel (    99,   173)  ->  Abs (   306,   813)
+	 27: Rel (    20,    35)  ->  Abs (   326,   848)
+	 28: Rel (    33,    27)  ->  Abs (   359,   875)
+	 29: Rel (    29,     8)  ->  Abs (   388,   883)
+	 30: Rel (   -69,    47)  ->  Abs (   319,   930)
+	 31: Rel (     0,    20)  ->  Abs (   319,   950)
+	 32: Rel (     0,    20)  ->  Abs (   319,   970)
+	 33: Rel (    44,    83)  ->  Abs (   363,  1053)
+	 34: Rel (    15,    28)  ->  Abs (   378,  1081)
+	 35: Rel (    31,    55)  ->  Abs (   409,  1136)
+	 36: Rel (    64,   -61)  ->  Abs (   473,  1075)
+	 37: Rel (    97,  -116)  ->  Abs (   570,   959)
+	 38: Rel (   123,  -146)  ->  Abs (   693,   813)
+	 39: Rel (    71,  -115)  ->  Abs (   764,   698)
+	 40: Rel (    94,  -152)  ->  Abs (   858,   546)
+	 41: Rel (  -352,   133)  ->  Abs (   506,   679)
+	 42: Rel (     0,    43)  ->  Abs (   506,   722)
+	 43: Rel (   -18,    25)  ->  Abs (   488,   747)
+	 44: Rel (   -21,    30)  ->  Abs (   467,   777)
+	 45: Rel (   -46,     0)  ->  Abs (   421,   777)
+	 46: Rel (   -46,     0)  ->  Abs (   375,   777)
+	 47: Rel (   -80,   -61)  ->  Abs (   295,   716)
+	 48: Rel (     0,   -43)  ->  Abs (   295,   673)
+	 49: Rel (     0,   -41)  ->  Abs (   295,   632)
+	 50: Rel (   122,   -67)  ->  Abs (   417,   565)
+	 51: Rel (    43,    28)  ->  Abs (   460,   593)
+	 52: Rel (    21,    26)  ->  Abs (   481,   619)
+	 53: Rel (    25,    30)  ->  Abs (   506,   649)
+	 54: Rel (   241,  -199)  ->  Abs (   747,   450)
+	 55: Rel (     0,    35)  ->  Abs (   747,   485)
+	 56: Rel (   -56,    74)  ->  Abs (   691,   559)
+	 57: Rel (   -35,    47)  ->  Abs (   656,   606)
+	 58: Rel (   -51,    53)  ->  Abs (   605,   659)
+	 59: Rel (     0,   -49)  ->  Abs (   605,   610)
+	 60: Rel (   -41,   -85)  ->  Abs (   564,   525)
+	 61: Rel (   -37,   -23)  ->  Abs (   527,   502)
+	 62: Rel (    60,   -31)  ->  Abs (   587,   471)
+	 63: Rel (    61,   -30)  ->  Abs (   648,   441)
+	 64: Rel (    50,   -22)  ->  Abs (   698,   419)
+	 65: Rel (    21,     0)  ->  Abs (   719,   419)
+	 66: Rel (    12,     0)  ->  Abs (   731,   419)
+	 67: Rel (    16,    18)  ->  Abs (   747,   437)
+
+	Glyph 1004: off = 0x0002BEC0, len = 300
+	  numberOfContours:	3
+	  xMin:			0
+	  yMin:			-126
+	  xMax:			877
+	  yMax:			879
+
+	EndPoints
+	---------
+	  0:  31
+	  1:  41
+	  2:  52
+
+	  Length of Instructions:	138
+	00000: PUSHB[6]             38    34    46    16    15    23 
+	00007: PUSHW[1]            751 
+	00010: PUSHB[4]             34    34    16     9 
+	00015: PUSHW[1]            751 
+	00018: PUSHB[4]             50    50    15    31 
+	00023: PUSHW[1]            751 
+	00026: PUSHB[3]              0     0    16 
+	00030: PUSHW[3]            751    15   747 
+	00037: NPUSHB      (10):     1    42    46    30    32    38    14    46    13    38 
+	00049: PUSHW[1]            771 
+	00052: PUSHB[3]             17    17    46 
+	00056: PUSHW[1]            771 
+	00059: PUSHB[5]             13    13    42    15    32 
+	00065: PUSHW[1]            765 
+	00068: PUSHB[3]             26    26     5 
+	00072: PUSHW[1]            765 
+	00075: PUSHB[4]             42    42    15     0 
+	00080: PUSHW[4]            752    54    15   283 
+	00089: SCANCTRL   
+	00090: MDAP[rd]   
+	00091: SRP0       
+	00092: MIRP[nrp0,nmd,rd,0] 
+	00093: SRP1       
+	00094: IP         
+	00095: MDAP[rd]   
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: IP         
+	00098: MDAP[rd]   
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: SRP1       
+	00101: SRP2       
+	00102: IP         
+	00103: MDAP[rd]   
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: SHP[rp1,zp0] 
+	00106: MDAP[rd]   
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: SRP1       
+	00109: SRP2       
+	00110: IP         
+	00111: SRP1       
+	00112: SRP2       
+	00113: IP         
+	00114: SRP1       
+	00115: SRP2       
+	00116: IP         
+	00117: SVTCA[y-axis] 
+	00118: MIAP[rd+ci] 
+	00119: MIRP[nrp0,md,rd,1] 
+	00120: ALIGNRP    
+	00121: SRP0       
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: SRP1       
+	00124: SHP[rp1,zp0] 
+	00125: MDAP[rd]   
+	00126: MIRP[nrp0,md,rd,1] 
+	00127: SRP1       
+	00128: SHP[rp1,zp0] 
+	00129: MDAP[rd]   
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: SRP1       
+	00132: SRP2       
+	00133: IP         
+	00134: SRP1       
+	00135: IP         
+	00136: IUP[y]     
+	00137: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual                       X-Short On
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:                      Y-Short X-Short On
+	 29:                      Y-Short X-Short Off
+	 30:                      Y-Short X-Short On
+	 31:  YDual                               On
+	 32:  YDual               Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:                      Y-Short X-Short On
+	 37:                      Y-Short X-Short Off
+	 38:                      Y-Short X-Short On
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short X-Short On
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:        XDual                 X-Short On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual               Y-Short X-Short On
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual               Y-Short X-Short On
+	 47:        XDual         Y-Short         Off
+	 48:        XDual         Y-Short X-Short On
+	 49:        XDual         Y-Short X-Short Off
+	 50:  YDual XDual                 X-Short On
+	 51:  YDual XDual                 X-Short Off
+	 52:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   877,   293)  ->  Abs (   877,   293)
+	  1: Rel (  -366,     0)  ->  Abs (   511,   293)
+	  2: Rel (    64,   -30)  ->  Abs (   575,   263)
+	  3: Rel (    45,   -55)  ->  Abs (   620,   208)
+	  4: Rel (    57,   -69)  ->  Abs (   677,   139)
+	  5: Rel (     0,   -81)  ->  Abs (   677,    58)
+	  6: Rel (     0,   -78)  ->  Abs (   677,   -20)
+	  7: Rel (   -24,   -47)  ->  Abs (   653,   -67)
+	  8: Rel (   -30,   -59)  ->  Abs (   623,  -126)
+	  9: Rel (   -64,     0)  ->  Abs (   559,  -126)
+	 10: Rel (  -120,     0)  ->  Abs (   439,  -126)
+	 11: Rel (  -100,    83)  ->  Abs (   339,   -43)
+	 12: Rel (  -120,   100)  ->  Abs (   219,    57)
+	 13: Rel (     0,   164)  ->  Abs (   219,   221)
+	 14: Rel (     2,    72)  ->  Abs (   221,   293)
+	 15: Rel (  -221,     0)  ->  Abs (     0,   293)
+	 16: Rel (     0,   174)  ->  Abs (     0,   467)
+	 17: Rel (   253,     0)  ->  Abs (   253,   467)
+	 18: Rel (    35,    93)  ->  Abs (   288,   560)
+	 19: Rel (    42,    80)  ->  Abs (   330,   640)
+	 20: Rel (    53,   101)  ->  Abs (   383,   741)
+	 21: Rel (    58,    64)  ->  Abs (   441,   805)
+	 22: Rel (    67,    74)  ->  Abs (   508,   879)
+	 23: Rel (    59,     0)  ->  Abs (   567,   879)
+	 24: Rel (    31,     0)  ->  Abs (   598,   879)
+	 25: Rel (    47,  -108)  ->  Abs (   645,   771)
+	 26: Rel (     0,   -61)  ->  Abs (   645,   710)
+	 27: Rel (     0,   -88)  ->  Abs (   645,   622)
+	 28: Rel (   -46,   -55)  ->  Abs (   599,   567)
+	 29: Rel (   -27,   -33)  ->  Abs (   572,   534)
+	 30: Rel (  -135,   -67)  ->  Abs (   437,   467)
+	 31: Rel (   440,     0)  ->  Abs (   877,   467)
+	 32: Rel (  -331,   169)  ->  Abs (   546,   636)
+	 33: Rel (     0,    95)  ->  Abs (   546,   731)
+	 34: Rel (   -40,     0)  ->  Abs (   506,   731)
+	 35: Rel (   -43,     0)  ->  Abs (   463,   731)
+	 36: Rel (   -60,   -94)  ->  Abs (   403,   637)
+	 37: Rel (   -29,   -45)  ->  Abs (   374,   592)
+	 38: Rel (   -53,  -105)  ->  Abs (   321,   487)
+	 39: Rel (    91,    25)  ->  Abs (   412,   512)
+	 40: Rel (    62,    38)  ->  Abs (   474,   550)
+	 41: Rel (    72,    44)  ->  Abs (   546,   594)
+	 42: Rel (    40,  -520)  ->  Abs (   586,    74)
+	 43: Rel (     0,    79)  ->  Abs (   586,   153)
+	 44: Rel (  -116,    73)  ->  Abs (   470,   226)
+	 45: Rel (   -95,    60)  ->  Abs (   375,   286)
+	 46: Rel (   -92,    16)  ->  Abs (   283,   302)
+	 47: Rel (     0,  -110)  ->  Abs (   283,   192)
+	 48: Rel (    53,   -71)  ->  Abs (   336,   121)
+	 49: Rel (    64,   -86)  ->  Abs (   400,    35)
+	 50: Rel (   127,     0)  ->  Abs (   527,    35)
+	 51: Rel (    24,     0)  ->  Abs (   551,    35)
+	 52: Rel (    35,    20)  ->  Abs (   586,    55)
+
+	Glyph 1005: off = 0x0002BFEC, len = 250
+	  numberOfContours:	2
+	  xMin:			120
+	  yMin:			-157
+	  xMax:			955
+	  yMax:			788
+
+	EndPoints
+	---------
+	  0:  32
+	  1:  42
+
+	  Length of Instructions:	117
+	00000: PUSHB[6]             16    64    13    17    52     3 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (12):    11    18    52    18    64     9    17    52    11    20 
+	                            10    28 
+	00024: PUSHW[1]            751 
+	00027: PUSHB[3]             37    37    33 
+	00031: PUSHW[3]            751    20   747 
+	00038: PUSHB[3]             10    10    14 
+	00042: PUSHW[5]            778     4   776    24   765 
+	00053: PUSHB[4]             40    40    10    33 
+	00058: PUSHW[5]            771    20   771     0   752 
+	00069: PUSHB[3]             44    11    10 
+	00073: PUSHW[1]            -64 
+	00076: PUSHB[4]              9    12    52    10 
+	00081: PUSHW[1]            287 
+	00084: SCANCTRL   
+	00085: MDAP[rd]   
+	00086: CALL       
+	00087: SHP[rp1,zp0] 
+	00088: SRP0       
+	00089: MIRP[srp0,nmd,rd,1] 
+	00090: MIRP[nrp0,md,rd,1] 
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: SRP1       
+	00093: IP         
+	00094: MDAP[rd]   
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: SVTCA[y-axis] 
+	00097: MIAP[rd+ci] 
+	00098: MIRP[srp0,md,rd,1] 
+	00099: SHP[rp2,zp1] 
+	00100: RTHG       
+	00101: MDAP[rd]   
+	00102: RTG        
+	00103: MIAP[rd+ci] 
+	00104: MIRP[srp0,md,rd,1] 
+	00105: SHP[rp2,zp1] 
+	00106: MDAP[rd]   
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: SRP1       
+	00109: SRP2       
+	00110: IP         
+	00111: IUP[y]     
+	00112: IUP[x]     
+	00113: SVTCA[x-axis] 
+	00114: CALL       
+	00115: CALL       
+	00116: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short On
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:                      Y-Short X-Short On
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual               Y-Short X-Short On
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:                      Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   955,   353)  ->  Abs (   955,   353)
+	  1: Rel (     0,  -165)  ->  Abs (   955,   188)
+	  2: Rel (  -122,  -163)  ->  Abs (   833,    25)
+	  3: Rel (  -136,  -182)  ->  Abs (   697,  -157)
+	  4: Rel (  -178,     0)  ->  Abs (   519,  -157)
+	  5: Rel (   -66,     0)  ->  Abs (   453,  -157)
+	  6: Rel (   -70,    15)  ->  Abs (   383,  -142)
+	  7: Rel (   -51,    11)  ->  Abs (   332,  -131)
+	  8: Rel (   -82,    27)  ->  Abs (   250,  -104)
+	  9: Rel (   -65,    23)  ->  Abs (   185,   -81)
+	 10: Rel (   -65,    22)  ->  Abs (   120,   -59)
+	 11: Rel (    17,    35)  ->  Abs (   137,   -24)
+	 12: Rel (    56,   -13)  ->  Abs (   193,   -37)
+	 13: Rel (   123,   -29)  ->  Abs (   316,   -66)
+	 14: Rel (    49,     0)  ->  Abs (   365,   -66)
+	 15: Rel (   122,     0)  ->  Abs (   487,   -66)
+	 16: Rel (   109,    62)  ->  Abs (   596,    -4)
+	 17: Rel (    85,    49)  ->  Abs (   681,    45)
+	 18: Rel (    85,    93)  ->  Abs (   766,   138)
+	 19: Rel (    43,    47)  ->  Abs (   809,   185)
+	 20: Rel (    79,   106)  ->  Abs (   888,   291)
+	 21: Rel (  -135,     0)  ->  Abs (   753,   291)
+	 22: Rel (   -67,    43)  ->  Abs (   686,   334)
+	 23: Rel (   -76,    49)  ->  Abs (   610,   383)
+	 24: Rel (     0,   112)  ->  Abs (   610,   495)
+	 25: Rel (     0,   103)  ->  Abs (   610,   598)
+	 26: Rel (    48,    88)  ->  Abs (   658,   686)
+	 27: Rel (    56,   102)  ->  Abs (   714,   788)
+	 28: Rel (    86,     0)  ->  Abs (   800,   788)
+	 29: Rel (    87,     0)  ->  Abs (   887,   788)
+	 30: Rel (    38,  -101)  ->  Abs (   925,   687)
+	 31: Rel (    30,   -79)  ->  Abs (   955,   608)
+	 32: Rel (     0,  -141)  ->  Abs (   955,   467)
+	 33: Rel (   -63,    -5)  ->  Abs (   892,   462)
+	 34: Rel (   -22,    96)  ->  Abs (   870,   558)
+	 35: Rel (   -31,    37)  ->  Abs (   839,   595)
+	 36: Rel (   -27,    32)  ->  Abs (   812,   627)
+	 37: Rel (   -39,     0)  ->  Abs (   773,   627)
+	 38: Rel (   -28,     0)  ->  Abs (   745,   627)
+	 39: Rel (   -41,   -37)  ->  Abs (   704,   590)
+	 40: Rel (     0,   -28)  ->  Abs (   704,   562)
+	 41: Rel (     0,   -49)  ->  Abs (   704,   513)
+	 42: Rel (    88,   -51)  ->  Abs (   792,   462)
+
+	Glyph 1006: off = 0x0002C0E6, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			120
+	  yMin:			-157
+	  xMax:			955
+	  yMax:			788
+
+	     0: Flags:		0x0016
+		Glyf Index:	1005
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1007: off = 0x0002C0F6, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			50
+	  yMin:			-89
+	  xMax:			1241
+	  yMax:			946
+
+	     0: Flags:		0x0016
+		Glyf Index:	821
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1008: off = 0x0002C106, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			106
+	  yMin:			-225
+	  xMax:			1275
+	  yMax:			517
+
+	     0: Flags:		0x0016
+		Glyf Index:	822
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1009: off = 0x0002C116, len = 414
+	  numberOfContours:	3
+	  xMin:			50
+	  yMin:			-426
+	  xMax:			1241
+	  yMax:			946
+
+	EndPoints
+	---------
+	  0:  59
+	  1:  63
+	  2:  67
+
+	  Length of Instructions:	213
+	00000: PUSHW[2]             38   -42 
+	00005: NPUSHB      (16):    14    17    52    41    52    14    17    52    42    52 
+	                            11    17    52    60    62    63 
+	00023: PUSHW[1]            770 
+	00026: PUSHB[5]             61    61    64    66    67 
+	00032: PUSHW[3]            770    65   774 
+	00039: PUSHB[6]              3     6    14    33    39    32 
+	00046: NPUSHW       (9):   775     6   751    57   772    39   751    22   -64 
+	00066: PUSHB[4]              9    11    52    22 
+	00071: PUSHW[5]            781    14   751    48   747 
+	00082: PUSHB[3]             61    63    60 
+	00086: PUSHW[1]            769 
+	00089: PUSHB[5]             62    62    65    67    66 
+	00095: PUSHW[1]            769 
+	00098: PUSHB[4]             64    64    36    51 
+	00103: PUSHW[1]            780 
+	00106: NPUSHB       (9):    10    10    44    36     3    18     0     0    44 
+	00117: PUSHW[1]            765 
+	00120: PUSHB[5]             64    18    18    69    33 
+	00126: PUSHW[4]            763    32    32   -64 
+	00135: PUSHB[6]              9    11    52    32    32    36 
+	00142: PUSHW[3]            780    26   313 
+	00149: SCANCTRL   
+	00150: MDAP[rd]   
+	00151: MIRP[srp0,md,rd,1] 
+	00152: SHP[rp2,zp1] 
+	00153: RTHG       
+	00154: MDAP[rd]   
+	00155: CALL       
+	00156: SMD        
+	00157: MIRP[nrp0,md,rd,1] 
+	00158: SRP1       
+	00159: SHP[rp1,zp0] 
+	00160: RTG        
+	00161: MDAP[rd]   
+	00162: SMD        
+	00163: MIRP[nrp0,md,rd,1] 
+	00164: SHP[rp1,zp0] 
+	00165: MDAP[rd]   
+	00166: SRP2       
+	00167: IP         
+	00168: SRP1       
+	00169: SRP2       
+	00170: IP         
+	00171: MDAP[rd]   
+	00172: MIRP[nrp0,md,rd,1] 
+	00173: SRP1       
+	00174: IP         
+	00175: MDAP[rd]   
+	00176: MIRP[srp0,md,rd,1] 
+	00177: IP         
+	00178: IP         
+	00179: SHP[rp1,zp0] 
+	00180: MDAP[rd]   
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: IP         
+	00183: IP         
+	00184: SVTCA[y-axis] 
+	00185: MIAP[rd+ci] 
+	00186: MIRP[nrp0,md,rd,1] 
+	00187: MIAP[rd+ci] 
+	00188: CALL       
+	00189: MIRP[nrp0,md,rd,1] 
+	00190: MIAP[rd+ci] 
+	00191: MIRP[nrp0,md,rd,1] 
+	00192: MIAP[rd+ci] 
+	00193: SRP2       
+	00194: IP         
+	00195: SRP1       
+	00196: SRP2       
+	00197: IP         
+	00198: MIAP[rd+ci] 
+	00199: MIRP[nrp0,md,rd,1] 
+	00200: IP         
+	00201: IP         
+	00202: SHP[rp1,zp0] 
+	00203: MDAP[rd]   
+	00204: MIRP[nrp0,md,rd,1] 
+	00205: IP         
+	00206: IP         
+	00207: IUP[y]     
+	00208: IUP[x]     
+	00209: SVTCA[x-axis] 
+	00210: CALL       
+	00211: CALL       
+	00212: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:                      Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                               On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:        XDual         Y-Short X-Short Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short On
+	 49:  YDual                       X-Short Off
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:  YDual XDual         Y-Short X-Short Off
+	 55:  YDual XDual         Y-Short X-Short On
+	 56:  YDual XDual         Y-Short X-Short Off
+	 57:  YDual XDual                 X-Short On
+	 58:  YDual XDual                 X-Short Off
+	 59:        XDual         Y-Short X-Short Off
+	 60:                                      On
+	 61:                      Y-Short X-Short On
+	 62:  YDual               Y-Short X-Short On
+	 63:  YDual XDual         Y-Short X-Short On
+	 64:                      Y-Short X-Short On
+	 65:                      Y-Short X-Short On
+	 66:  YDual               Y-Short X-Short On
+	 67:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1241,   800)  ->  Abs (  1241,   800)
+	  1: Rel (     0,   -32)  ->  Abs (  1241,   768)
+	  2: Rel (   -12,   -67)  ->  Abs (  1229,   701)
+	  3: Rel (    -2,   -14)  ->  Abs (  1227,   687)
+	  4: Rel (   -35,    45)  ->  Abs (  1192,   732)
+	  5: Rel (   -97,    52)  ->  Abs (  1095,   784)
+	  6: Rel (   -50,     0)  ->  Abs (  1045,   784)
+	  7: Rel (   -87,     0)  ->  Abs (   958,   784)
+	  8: Rel (   -96,  -101)  ->  Abs (   862,   683)
+	  9: Rel (   -88,   -93)  ->  Abs (   774,   590)
+	 10: Rel (     0,   -55)  ->  Abs (   774,   535)
+	 11: Rel (     0,   -19)  ->  Abs (   774,   516)
+	 12: Rel (    43,   -19)  ->  Abs (   817,   497)
+	 13: Rel (    53,     0)  ->  Abs (   870,   497)
+	 14: Rel (    80,     0)  ->  Abs (   950,   497)
+	 15: Rel (    72,     0)  ->  Abs (  1022,   497)
+	 16: Rel (    69,    -3)  ->  Abs (  1091,   494)
+	 17: Rel (    96,   -16)  ->  Abs (  1187,   478)
+	 18: Rel (     0,   -65)  ->  Abs (  1187,   413)
+	 19: Rel (     0,  -251)  ->  Abs (  1187,   162)
+	 20: Rel (  -219,  -131)  ->  Abs (   968,    31)
+	 21: Rel (  -201,  -120)  ->  Abs (   767,   -89)
+	 22: Rel (  -343,     0)  ->  Abs (   424,   -89)
+	 23: Rel (  -178,     0)  ->  Abs (   246,   -89)
+	 24: Rel (   -94,    69)  ->  Abs (   152,   -20)
+	 25: Rel (  -102,    75)  ->  Abs (    50,    55)
+	 26: Rel (     0,   151)  ->  Abs (    50,   206)
+	 27: Rel (     0,   104)  ->  Abs (    50,   310)
+	 28: Rel (    34,   114)  ->  Abs (    84,   424)
+	 29: Rel (    26,    87)  ->  Abs (   110,   511)
+	 30: Rel (    46,    95)  ->  Abs (   156,   606)
+	 31: Rel (     3,     6)  ->  Abs (   159,   612)
+	 32: Rel (    60,   113)  ->  Abs (   219,   725)
+	 33: Rel (    42,   -17)  ->  Abs (   261,   708)
+	 34: Rel (   -63,  -112)  ->  Abs (   198,   596)
+	 35: Rel (   -67,  -195)  ->  Abs (   131,   401)
+	 36: Rel (     0,   -75)  ->  Abs (   131,   326)
+	 37: Rel (     0,  -122)  ->  Abs (   131,   204)
+	 38: Rel (   169,  -122)  ->  Abs (   300,    82)
+	 39: Rel (   157,     0)  ->  Abs (   457,    82)
+	 40: Rel (   120,     0)  ->  Abs (   577,    82)
+	 41: Rel (   159,    48)  ->  Abs (   736,   130)
+	 42: Rel (   136,    41)  ->  Abs (   872,   171)
+	 43: Rel (   218,   114)  ->  Abs (  1090,   285)
+	 44: Rel (     0,    27)  ->  Abs (  1090,   312)
+	 45: Rel (     0,    19)  ->  Abs (  1090,   331)
+	 46: Rel (   -25,    12)  ->  Abs (  1065,   343)
+	 47: Rel (   -28,     0)  ->  Abs (  1037,   343)
+	 48: Rel (  -234,     0)  ->  Abs (   803,   343)
+	 49: Rel (   -43,     0)  ->  Abs (   760,   343)
+	 50: Rel (   -66,    62)  ->  Abs (   694,   405)
+	 51: Rel (     0,    49)  ->  Abs (   694,   454)
+	 52: Rel (     0,    67)  ->  Abs (   694,   521)
+	 53: Rel (    55,   115)  ->  Abs (   749,   636)
+	 54: Rel (    60,   125)  ->  Abs (   809,   761)
+	 55: Rel (    85,    84)  ->  Abs (   894,   845)
+	 56: Rel (   102,   101)  ->  Abs (   996,   946)
+	 57: Rel (   103,     0)  ->  Abs (  1099,   946)
+	 58: Rel (    66,     0)  ->  Abs (  1165,   946)
+	 59: Rel (    76,   -80)  ->  Abs (  1241,   866)
+	 60: Rel (  -377, -1057)  ->  Abs (   864,  -191)
+	 61: Rel (   -78,  -144)  ->  Abs (   786,  -335)
+	 62: Rel (  -162,    86)  ->  Abs (   624,  -249)
+	 63: Rel (    75,   143)  ->  Abs (   699,  -106)
+	 64: Rel (   -65,  -175)  ->  Abs (   634,  -281)
+	 65: Rel (   -76,  -145)  ->  Abs (   558,  -426)
+	 66: Rel (  -162,    84)  ->  Abs (   396,  -342)
+	 67: Rel (    74,   145)  ->  Abs (   470,  -197)
+
+	Glyph 1010: off = 0x0002C2B4, len = 442
+	  numberOfContours:	3
+	  xMin:			106
+	  yMin:			-434
+	  xMax:			1275
+	  yMax:			517
+
+	EndPoints
+	---------
+	  0:  54
+	  1:  58
+	  2:  62
+
+	  Length of Instructions:	254
+	00000: PUSHB[6]            134    51   150    51     2    32 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (19):    12    24    52    58    16    18    21    52    20    24 
+	                            18    20    52   150    15   167    15     2     6 
+	00031: PUSHW[1]            -64 
+	00034: PUSHB[7]              9    10    52     6     6     1    44 
+	00042: PUSHW[1]            -64 
+	00045: PUSHB[7]             46    47    52    44    44     1    34 
+	00053: PUSHW[1]            751 
+	00056: NPUSHB      (12):   239    17     1    17    17    62    55    57   159    58 
+	                             1    58 
+	00070: PUSHW[1]            788 
+	00073: PUSHB[8]             56    56    59    61   159    62     1    62 
+	00082: PUSHW[3]            788    60   -64 
+	00089: PUSHB[4]              9    12    52    60 
+	00094: PUSHW[1]            774 
+	00097: PUSHB[4]             26    25    25    53 
+	00102: PUSHW[3]            751     1   747 
+	00109: PUSHB[3]             56    58    55 
+	00113: PUSHW[1]            769 
+	00116: PUSHB[5]             57    57    60    62    61 
+	00122: PUSHW[1]            769 
+	00125: PUSHB[8]             48    59     1    59    59    47    30    38 
+	00134: PUSHW[1]            780 
+	00137: PUSHB[4]             13    13     0    47 
+	00142: PUSHW[1]            780 
+	00145: PUSHB[5]             64     4     4    30     0 
+	00151: PUSHW[7]            752    64    26   763    32    25   -64 
+	00166: PUSHB[6]              9    11    52    25    25    30 
+	00173: PUSHW[3]            780    21   313 
+	00180: SCANCTRL   
+	00181: MDAP[rd]   
+	00182: MIRP[srp0,md,rd,1] 
+	00183: SHP[rp2,zp1] 
+	00184: RTHG       
+	00185: MDAP[rd]   
+	00186: CALL       
+	00187: SMD        
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: RTG        
+	00190: SRP0       
+	00191: MIRP[nrp0,nmd,rd,0] 
+	00192: SRP1       
+	00193: IP         
+	00194: MDAP[rd]   
+	00195: SMD        
+	00196: MIRP[nrp0,md,rd,1] 
+	00197: SRP2       
+	00198: IP         
+	00199: MDAP[rd]   
+	00200: MIRP[nrp0,md,rd,1] 
+	00201: SRP1       
+	00202: SRP2       
+	00203: IP         
+	00204: MDAP[rd]   
+	00205: DELTAP1    
+	00206: MIRP[srp0,md,rd,1] 
+	00207: IP         
+	00208: IP         
+	00209: SHP[rp1,zp0] 
+	00210: MDAP[rd]   
+	00211: MIRP[nrp0,md,rd,1] 
+	00212: IP         
+	00213: IP         
+	00214: SVTCA[y-axis] 
+	00215: MIAP[rd+ci] 
+	00216: MIRP[srp0,md,rd,1] 
+	00217: SHP[rp2,zp1] 
+	00218: MDAP[rd]   
+	00219: IP         
+	00220: MIAP[rd+ci] 
+	00221: CALL       
+	00222: MIRP[nrp0,md,rd,1] 
+	00223: DELTAP1    
+	00224: IP         
+	00225: IP         
+	00226: SHP[rp1,zp0] 
+	00227: MDAP[rd]   
+	00228: MIRP[nrp0,md,rd,1] 
+	00229: DELTAP1    
+	00230: IP         
+	00231: IP         
+	00232: SRP1       
+	00233: SHP[rp1,zp0] 
+	00234: MDAP[rd]   
+	00235: DELTAP1    
+	00236: MIRP[srp0,md,rd,1] 
+	00237: SRP1       
+	00238: IP         
+	00239: MDAP[rd]   
+	00240: CALL       
+	00241: SRP2       
+	00242: IP         
+	00243: MDAP[rd]   
+	00244: CALL       
+	00245: IUP[y]     
+	00246: IUP[x]     
+	00247: SVTCA[x-axis] 
+	00248: DELTAP1    
+	00249: CALL       
+	00250: CALL       
+	00251: CALL       
+	00252: SVTCA[y-axis] 
+	00253: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                               On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short On
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short On
+	 27:                      Y-Short X-Short Off
+	 28:                      Y-Short X-Short On
+	 29:                      Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:        XDual         Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short Off
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual XDual         Y-Short X-Short On
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual                 X-Short On
+	 54:  YDual XDual                 X-Short On
+	 55:                                      On
+	 56:                      Y-Short X-Short On
+	 57:  YDual               Y-Short X-Short On
+	 58:  YDual XDual         Y-Short X-Short On
+	 59:                      Y-Short X-Short On
+	 60:                      Y-Short X-Short On
+	 61:  YDual               Y-Short X-Short On
+	 62:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1275,   293)  ->  Abs (  1275,   293)
+	  1: Rel (  -175,     0)  ->  Abs (  1100,   293)
+	  2: Rel (  -154,     0)  ->  Abs (   946,   293)
+	  3: Rel (  -155,   -16)  ->  Abs (   791,   277)
+	  4: Rel (     0,   -24)  ->  Abs (   791,   253)
+	  5: Rel (     0,   -33)  ->  Abs (   791,   220)
+	  6: Rel (    93,     0)  ->  Abs (   884,   220)
+	  7: Rel (    41,     0)  ->  Abs (   925,   220)
+	  8: Rel (    48,    -4)  ->  Abs (   973,   216)
+	  9: Rel (    81,    -9)  ->  Abs (  1054,   207)
+	 10: Rel (    48,    -6)  ->  Abs (  1102,   201)
+	 11: Rel (    18,    -9)  ->  Abs (  1120,   192)
+	 12: Rel (    29,   -15)  ->  Abs (  1149,   177)
+	 13: Rel (     0,   -37)  ->  Abs (  1149,   140)
+	 14: Rel (     0,  -187)  ->  Abs (  1149,   -47)
+	 15: Rel (  -123,   -85)  ->  Abs (  1026,  -132)
+	 16: Rel (  -134,   -93)  ->  Abs (   892,  -225)
+	 17: Rel (  -309,     0)  ->  Abs (   583,  -225)
+	 18: Rel (  -215,     0)  ->  Abs (   368,  -225)
+	 19: Rel (  -127,    73)  ->  Abs (   241,  -152)
+	 20: Rel (  -135,    78)  ->  Abs (   106,   -74)
+	 21: Rel (     0,   144)  ->  Abs (   106,    70)
+	 22: Rel (     0,   116)  ->  Abs (   106,   186)
+	 23: Rel (    64,   130)  ->  Abs (   170,   316)
+	 24: Rel (    23,    47)  ->  Abs (   193,   363)
+	 25: Rel (    98,   154)  ->  Abs (   291,   517)
+	 26: Rel (    40,   -20)  ->  Abs (   331,   497)
+	 27: Rel (   -38,   -65)  ->  Abs (   293,   432)
+	 28: Rel (   -37,   -64)  ->  Abs (   256,   368)
+	 29: Rel (   -57,  -110)  ->  Abs (   199,   258)
+	 30: Rel (     0,   -70)  ->  Abs (   199,   188)
+	 31: Rel (     0,  -123)  ->  Abs (   199,    65)
+	 32: Rel (   128,   -64)  ->  Abs (   327,     1)
+	 33: Rel (   122,   -61)  ->  Abs (   449,   -60)
+	 34: Rel (   213,     0)  ->  Abs (   662,   -60)
+	 35: Rel (   143,     0)  ->  Abs (   805,   -60)
+	 36: Rel (   109,    22)  ->  Abs (   914,   -38)
+	 37: Rel (   134,    27)  ->  Abs (  1048,   -11)
+	 38: Rel (     0,    47)  ->  Abs (  1048,    36)
+	 39: Rel (     0,    17)  ->  Abs (  1048,    53)
+	 40: Rel (   -30,    17)  ->  Abs (  1018,    70)
+	 41: Rel (   -35,     0)  ->  Abs (   983,    70)
+	 42: Rel (   -27,     3)  ->  Abs (   956,    73)
+	 43: Rel (  -115,     7)  ->  Abs (   841,    80)
+	 44: Rel (   -18,     0)  ->  Abs (   823,    80)
+	 45: Rel (   -63,     0)  ->  Abs (   760,    80)
+	 46: Rel (   -54,    33)  ->  Abs (   706,   113)
+	 47: Rel (     0,    33)  ->  Abs (   706,   146)
+	 48: Rel (     0,   124)  ->  Abs (   706,   270)
+	 49: Rel (    73,    79)  ->  Abs (   779,   349)
+	 50: Rel (    60,    64)  ->  Abs (   839,   413)
+	 51: Rel (   101,    31)  ->  Abs (   940,   444)
+	 52: Rel (    76,    23)  ->  Abs (  1016,   467)
+	 53: Rel (    84,     0)  ->  Abs (  1100,   467)
+	 54: Rel (   175,     0)  ->  Abs (  1275,   467)
+	 55: Rel (  -414,  -815)  ->  Abs (   861,  -348)
+	 56: Rel (   -93,   -86)  ->  Abs (   768,  -434)
+	 57: Rel (  -112,    71)  ->  Abs (   656,  -363)
+	 58: Rel (    90,    94)  ->  Abs (   746,  -269)
+	 59: Rel (   -92,   -79)  ->  Abs (   654,  -348)
+	 60: Rel (   -91,   -86)  ->  Abs (   563,  -434)
+	 61: Rel (  -116,    71)  ->  Abs (   447,  -363)
+	 62: Rel (    93,    94)  ->  Abs (   540,  -269)
+
+	Glyph 1011: off = 0x0002C46E, len = 206
+	  numberOfContours:	3
+	  xMin:			0
+	  yMin:			-142
+	  xMax:			570
+	  yMax:			934
+
+	EndPoints
+	---------
+	  0:  12
+	  1:  16
+	  2:  20
+
+	  Length of Instructions:	125
+	00000: PUSHB[8]              6    52    12    17    52    17    19    18 
+	00009: PUSHW[1]            770 
+	00012: PUSHB[5]             20    20    15    13    14 
+	00018: PUSHW[1]            770 
+	00021: PUSHB[7]              0    16     1    16    16     1     7 
+	00029: PUSHW[7]            751     8   772     2   751     1   747 
+	00044: PUSHB[3]             14    16    13 
+	00048: PUSHW[1]            769 
+	00051: PUSHB[5]             15    15    18    20    19 
+	00057: PUSHW[1]            769 
+	00060: PUSHB[8]             17    17     1     8     8     7     7     3 
+	00069: PUSHW[6]            771     0   752    22     1   298 
+	00082: SCANCTRL   
+	00083: MDAP[rd]   
+	00084: SRP0       
+	00085: MIRP[srp0,nmd,rd,0] 
+	00086: MIRP[srp0,md,rd,1] 
+	00087: SHP[rp2,zp1] 
+	00088: MDAP[rd]   
+	00089: RTHG       
+	00090: IP         
+	00091: MDAP[rd]   
+	00092: RTG        
+	00093: SRP1       
+	00094: IP         
+	00095: MDAP[rd]   
+	00096: MIRP[srp0,md,rd,1] 
+	00097: IP         
+	00098: IP         
+	00099: SHP[rp1,zp0] 
+	00100: MDAP[rd]   
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: IP         
+	00103: IP         
+	00104: SVTCA[y-axis] 
+	00105: MIAP[rd+ci] 
+	00106: MIRP[nrp0,md,rd,1] 
+	00107: MIAP[rd+ci] 
+	00108: MIRP[nrp0,md,rd,1] 
+	00109: SRP1       
+	00110: SHP[rp1,zp0] 
+	00111: MDAP[rd]   
+	00112: DELTAP1    
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: IP         
+	00115: IP         
+	00116: SHP[rp1,zp0] 
+	00117: MDAP[rd]   
+	00118: MIRP[srp0,md,rd,1] 
+	00119: IP         
+	00120: IP         
+	00121: IUP[y]     
+	00122: IUP[x]     
+	00123: SVTCA[x-axis] 
+	00124: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:                              X-Short On
+	 14:                      Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short On
+	 19:  YDual               Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   570,   293)  ->  Abs (   570,   293)
+	  1: Rel (  -570,     0)  ->  Abs (     0,   293)
+	  2: Rel (     0,   174)  ->  Abs (     0,   467)
+	  3: Rel (   497,     0)  ->  Abs (   497,   467)
+	  4: Rel (     0,   118)  ->  Abs (   497,   585)
+	  5: Rel (   -28,    62)  ->  Abs (   469,   647)
+	  6: Rel (   -19,    43)  ->  Abs (   450,   690)
+	  7: Rel (   -75,    81)  ->  Abs (   375,   771)
+	  8: Rel (    78,   163)  ->  Abs (   453,   934)
+	  9: Rel (    72,   -91)  ->  Abs (   525,   843)
+	 10: Rel (    18,   -51)  ->  Abs (   543,   792)
+	 11: Rel (    27,   -77)  ->  Abs (   570,   715)
+	 12: Rel (     0,  -178)  ->  Abs (   570,   537)
+	 13: Rel (    -5,  -444)  ->  Abs (   565,    93)
+	 14: Rel (   -78,  -144)  ->  Abs (   487,   -51)
+	 15: Rel (  -162,    86)  ->  Abs (   325,    35)
+	 16: Rel (    75,   143)  ->  Abs (   400,   178)
+	 17: Rel (   -65,  -175)  ->  Abs (   335,     3)
+	 18: Rel (   -76,  -145)  ->  Abs (   259,  -142)
+	 19: Rel (  -162,    84)  ->  Abs (    97,   -58)
+	 20: Rel (    74,   145)  ->  Abs (   171,    87)
+
+	Glyph 1012: off = 0x0002C53C, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-142
+	  xMax:			570
+	  yMax:			934
+
+	     0: Flags:		0x0016
+		Glyf Index:	1011
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1013: off = 0x0002C54C, len = 608
+	  numberOfContours:	3
+	  xMin:			64
+	  yMin:			162
+	  xMax:			1038
+	  yMax:			1693
+
+	EndPoints
+	---------
+	  0:  68
+	  1:  78
+	  2:  101
+
+	  Length of Instructions:	304
+	00000: NPUSHB      (19):    84     8    86    74     2    79    99   101    64    22 
+	                            63    52   101   101    95    99    91    87    90 
+	00021: PUSHW[1]            -64 
+	00024: PUSHB[7]             22    63    52    90    90    83    95 
+	00032: PUSHW[1]            753 
+	00035: PUSHB[3]             87    87    99 
+	00039: PUSHW[1]            753 
+	00042: NPUSHB      (39):    83    83    46    60    59     0     1     2    75    31 
+	                            46    55    32    12    17    52    21    72    23     7 
+	                            55     5    35    14    75    17   143    35     1    35 
+	                            64     9    17    52    35    35    46    75     2 
+	00083: PUSHW[1]            751 
+	00086: PUSHB[4]              0     0    75    63 
+	00091: PUSHW[8]            754    46   754    17   751    64    75   747 
+	00108: NPUSHB      (19):   101   101    79    90    79    90    91    91    31    35 
+	                            42    55    72     7    75    21    23    17    64 
+	00129: PUSHW[1]            763 
+	00132: NPUSHB      (11):    32    63    63    60    60    59     1     2     0     0 
+	                            59 
+	00145: PUSHW[1]            780 
+	00148: PUSHB[3]              2     2     7 
+	00152: PUSHW[3]            780    23   -64 
+	00159: NPUSHB       (9):     9    10    52    23    23    17    17    42    69 
+	00170: PUSHW[1]            771 
+	00173: NPUSHB      (17):    11    64    13    15    52    11    64     9    11    52 
+	                            11    11   103    64    42     1    42 
+	00192: PUSHW[1]            277 
+	00195: SCANCTRL   
+	00196: MDAP[rd]   
+	00197: DELTAP1    
+	00198: SRP1       
+	00199: SHP[rp1,zp0] 
+	00200: MDAP[rd]   
+	00201: CALL       
+	00202: CALL       
+	00203: MIRP[nrp0,md,rd,1] 
+	00204: SRP1       
+	00205: IP         
+	00206: MDAP[rd]   
+	00207: IP         
+	00208: MDAP[rd]   
+	00209: CALL       
+	00210: MIRP[srp0,md,rd,1] 
+	00211: SHP[rp2,zp1] 
+	00212: MDAP[rd]   
+	00213: MIRP[nrp0,md,rd,1] 
+	00214: SHP[rp1,zp0] 
+	00215: MDAP[rd]   
+	00216: SRP2       
+	00217: IP         
+	00218: SRP1       
+	00219: SHP[rp1,zp0] 
+	00220: MDAP[rd]   
+	00221: SHP[rp1,zp0] 
+	00222: RTHG       
+	00223: MDAP[rd]   
+	00224: SMD        
+	00225: MIRP[nrp0,md,rd,1] 
+	00226: SRP1       
+	00227: SRP2       
+	00228: IP         
+	00229: IP         
+	00230: SRP1       
+	00231: IP         
+	00232: IP         
+	00233: SRP1       
+	00234: IP         
+	00235: IP         
+	00236: SHP[rp1,zp0] 
+	00237: RTG        
+	00238: MDAP[rd]   
+	00239: SHP[rp1,zp0] 
+	00240: SHP[rp1,zp0] 
+	00241: RTHG       
+	00242: MDAP[rd]   
+	00243: RTG        
+	00244: MDAP[rd]   
+	00245: SHP[rp1,zp0] 
+	00246: RTHG       
+	00247: MDAP[rd]   
+	00248: SVTCA[y-axis] 
+	00249: RTG        
+	00250: MIAP[rd+ci] 
+	00251: SMD        
+	00252: MIRP[nrp0,md,rd,1] 
+	00253: MIAP[rd+ci] 
+	00254: MIAP[rd+ci] 
+	00255: SRP2       
+	00256: IP         
+	00257: MDAP[rd]   
+	00258: MIRP[nrp0,md,rd,1] 
+	00259: SRP1       
+	00260: SRP2       
+	00261: IP         
+	00262: MDAP[rd]   
+	00263: CALL       
+	00264: DELTAP1    
+	00265: SRP1       
+	00266: SRP2       
+	00267: IP         
+	00268: SRP1       
+	00269: SLOOP      
+	00270: IP         
+	00271: CALL       
+	00272: SRP2       
+	00273: IP         
+	00274: SRP1       
+	00275: SRP2       
+	00276: IP         
+	00277: SRP1       
+	00278: IP         
+	00279: IP         
+	00280: SRP1       
+	00281: SHP[rp1,zp0] 
+	00282: MDAP[rd]   
+	00283: MIRP[nrp0,md,rd,1] 
+	00284: SHP[rp1,zp0] 
+	00285: MDAP[rd]   
+	00286: MIRP[nrp0,md,rd,1] 
+	00287: SRP2       
+	00288: IP         
+	00289: MDAP[rd]   
+	00290: CALL       
+	00291: SRP2       
+	00292: IP         
+	00293: SRP1       
+	00294: SRP2       
+	00295: IP         
+	00296: MDAP[rd]   
+	00297: CALL       
+	00298: SRP2       
+	00299: IP         
+	00300: IUP[y]     
+	00301: IUP[x]     
+	00302: SVTCA[y-axis] 
+	00303: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:                      Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual               Y-Short X-Short On
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual               Y-Short X-Short On
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual XDual         Y-Short X-Short On
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:        XDual         Y-Short X-Short On
+	 49:        XDual         Y-Short X-Short Off
+	 50:        XDual         Y-Short X-Short On
+	 51:        XDual         Y-Short X-Short Off
+	 52:        XDual         Y-Short X-Short On
+	 53:        XDual         Y-Short X-Short On
+	 54:        XDual         Y-Short X-Short Off
+	 55:        XDual         Y-Short X-Short On
+	 56:  YDual XDual         Y-Short X-Short Off
+	 57:  YDual XDual         Y-Short X-Short On
+	 58:  YDual XDual         Y-Short X-Short Off
+	 59:  YDual XDual         Y-Short         On
+	 60:  YDual               Y-Short X-Short On
+	 61:  YDual XDual         Y-Short         Off
+	 62:  YDual XDual         Y-Short X-Short Off
+	 63:  YDual XDual         Y-Short X-Short On
+	 64:        XDual         Y-Short X-Short On
+	 65:        XDual         Y-Short X-Short Off
+	 66:        XDual         Y-Short X-Short On
+	 67:        XDual         Y-Short X-Short Off
+	 68:        XDual         Y-Short X-Short Off
+	 69:                              X-Short On
+	 70:  YDual XDual         Y-Short         Off
+	 71:  YDual               Y-Short X-Short Off
+	 72:  YDual               Y-Short X-Short On
+	 73:                      Y-Short X-Short Off
+	 74:                      Y-Short X-Short Off
+	 75:                      Y-Short X-Short On
+	 76:  YDual XDual                 X-Short Off
+	 77:  YDual XDual         Y-Short X-Short On
+	 78:  YDual XDual         Y-Short X-Short Off
+	 79:                                      On
+	 80:                      Y-Short X-Short Off
+	 81:                      Y-Short X-Short On
+	 82:                      Y-Short X-Short Off
+	 83:  YDual                       X-Short On
+	 84:  YDual                       X-Short Off
+	 85:  YDual               Y-Short X-Short On
+	 86:  YDual               Y-Short X-Short Off
+	 87:  YDual                       X-Short On
+	 88:  YDual                       X-Short Off
+	 89:                      Y-Short X-Short Off
+	 90:                      Y-Short X-Short On
+	 91:  YDual               Y-Short X-Short On
+	 92:  YDual XDual         Y-Short X-Short Off
+	 93:  YDual XDual         Y-Short X-Short On
+	 94:  YDual XDual         Y-Short X-Short Off
+	 95:  YDual XDual                 X-Short On
+	 96:  YDual XDual                 X-Short Off
+	 97:        XDual         Y-Short X-Short On
+	 98:        XDual         Y-Short X-Short Off
+	 99:  YDual XDual                 X-Short On
+	100:  YDual XDual                 X-Short Off
+	101:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1038,  1350)  ->  Abs (  1038,  1350)
+	  1: Rel (   -48,  -180)  ->  Abs (   990,  1170)
+	  2: Rel (   -59,    29)  ->  Abs (   931,  1199)
+	  3: Rel (     2,   -91)  ->  Abs (   933,  1108)
+	  4: Rel (     0,  -134)  ->  Abs (   933,   974)
+	  5: Rel (   -34,  -126)  ->  Abs (   899,   848)
+	  6: Rel (   -37,  -138)  ->  Abs (   862,   710)
+	  7: Rel (   -80,  -135)  ->  Abs (   782,   575)
+	  8: Rel (    38,   -70)  ->  Abs (   820,   505)
+	  9: Rel (    15,   -40)  ->  Abs (   835,   465)
+	 10: Rel (    23,   -63)  ->  Abs (   858,   402)
+	 11: Rel (     0,   -65)  ->  Abs (   858,   337)
+	 12: Rel (     0,   -37)  ->  Abs (   858,   300)
+	 13: Rel (    -4,   -52)  ->  Abs (   854,   248)
+	 14: Rel (    -7,   -35)  ->  Abs (   847,   213)
+	 15: Rel (  -106,   -24)  ->  Abs (   741,   189)
+	 16: Rel (  -241,   -27)  ->  Abs (   500,   162)
+	 17: Rel (  -114,     0)  ->  Abs (   386,   162)
+	 18: Rel (     1,    19)  ->  Abs (   387,   181)
+	 19: Rel (     0,    13)  ->  Abs (   387,   194)
+	 20: Rel (     5,    76)  ->  Abs (   392,   270)
+	 21: Rel (    19,    65)  ->  Abs (   411,   335)
+	 22: Rel (   170,    91)  ->  Abs (   581,   426)
+	 23: Rel (   117,   145)  ->  Abs (   698,   571)
+	 24: Rel (   -70,   132)  ->  Abs (   628,   703)
+	 25: Rel (   -32,    55)  ->  Abs (   596,   758)
+	 26: Rel (   -35,    60)  ->  Abs (   561,   818)
+	 27: Rel (   -84,   127)  ->  Abs (   477,   945)
+	 28: Rel (   -31,    43)  ->  Abs (   446,   988)
+	 29: Rel (   -24,    26)  ->  Abs (   422,  1014)
+	 30: Rel (   -33,    35)  ->  Abs (   389,  1049)
+	 31: Rel (   -19,     0)  ->  Abs (   370,  1049)
+	 32: Rel (   -13,     0)  ->  Abs (   357,  1049)
+	 33: Rel (   -30,   -15)  ->  Abs (   327,  1034)
+	 34: Rel (   -16,    -8)  ->  Abs (   311,  1026)
+	 35: Rel (   -11,     0)  ->  Abs (   300,  1026)
+	 36: Rel (   -22,     0)  ->  Abs (   278,  1026)
+	 37: Rel (   -47,    44)  ->  Abs (   231,  1070)
+	 38: Rel (   -41,    39)  ->  Abs (   190,  1109)
+	 39: Rel (   -45,    57)  ->  Abs (   145,  1166)
+	 40: Rel (   -36,    46)  ->  Abs (   109,  1212)
+	 41: Rel (   -26,    61)  ->  Abs (    83,  1273)
+	 42: Rel (     0,    43)  ->  Abs (    83,  1316)
+	 43: Rel (     0,    62)  ->  Abs (    83,  1378)
+	 44: Rel (     8,    35)  ->  Abs (    91,  1413)
+	 45: Rel (    12,    53)  ->  Abs (   103,  1466)
+	 46: Rel (    29,     0)  ->  Abs (   132,  1466)
+	 47: Rel (    41,     0)  ->  Abs (   173,  1466)
+	 48: Rel (    78,   -78)  ->  Abs (   251,  1388)
+	 49: Rel (    69,   -70)  ->  Abs (   320,  1318)
+	 50: Rel (    85,  -114)  ->  Abs (   405,  1204)
+	 51: Rel (    75,  -101)  ->  Abs (   480,  1103)
+	 52: Rel (    73,  -117)  ->  Abs (   553,   986)
+	 53: Rel (   102,  -164)  ->  Abs (   655,   822)
+	 54: Rel (    45,   -74)  ->  Abs (   700,   748)
+	 55: Rel (    47,   -94)  ->  Abs (   747,   654)
+	 56: Rel (    67,   135)  ->  Abs (   814,   789)
+	 57: Rel (    25,   138)  ->  Abs (   839,   927)
+	 58: Rel (    22,   120)  ->  Abs (   861,  1047)
+	 59: Rel (     0,   186)  ->  Abs (   861,  1233)
+	 60: Rel (   -57,    33)  ->  Abs (   804,  1266)
+	 61: Rel (     0,    66)  ->  Abs (   804,  1332)
+	 62: Rel (    23,   107)  ->  Abs (   827,  1439)
+	 63: Rel (    21,    44)  ->  Abs (   848,  1483)
+	 64: Rel (    23,    -6)  ->  Abs (   871,  1477)
+	 65: Rel (     4,   -43)  ->  Abs (   875,  1434)
+	 66: Rel (    44,   -26)  ->  Abs (   919,  1408)
+	 67: Rel (    24,   -14)  ->  Abs (   943,  1394)
+	 68: Rel (    75,   -36)  ->  Abs (  1018,  1358)
+	 69: Rel (  -240,  -981)  ->  Abs (   778,   377)
+	 70: Rel (     0,    22)  ->  Abs (   778,   399)
+	 71: Rel (   -17,    47)  ->  Abs (   761,   446)
+	 72: Rel (   -29,    54)  ->  Abs (   732,   500)
+	 73: Rel (   -30,   -39)  ->  Abs (   702,   461)
+	 74: Rel (  -119,  -102)  ->  Abs (   583,   359)
+	 75: Rel (   -58,   -36)  ->  Abs (   525,   323)
+	 76: Rel (   118,     0)  ->  Abs (   643,   323)
+	 77: Rel (    50,     7)  ->  Abs (   693,   330)
+	 78: Rel (    85,    12)  ->  Abs (   778,   342)
+	 79: Rel (  -306,  1312)  ->  Abs (   472,  1654)
+	 80: Rel (   -28,   -32)  ->  Abs (   444,  1622)
+	 81: Rel (   -29,   -17)  ->  Abs (   415,  1605)
+	 82: Rel (   -41,   -24)  ->  Abs (   374,  1581)
+	 83: Rel (   -48,     0)  ->  Abs (   326,  1581)
+	 84: Rel (   -50,     0)  ->  Abs (   276,  1581)
+	 85: Rel (   -45,    15)  ->  Abs (   231,  1596)
+	 86: Rel (   -99,    33)  ->  Abs (   132,  1629)
+	 87: Rel (    -6,     0)  ->  Abs (   126,  1629)
+	 88: Rel (   -12,     0)  ->  Abs (   114,  1629)
+	 89: Rel (   -24,    -7)  ->  Abs (    90,  1622)
+	 90: Rel (   -15,    -7)  ->  Abs (    75,  1615)
+	 91: Rel (   -11,    13)  ->  Abs (    64,  1628)
+	 92: Rel (    25,    36)  ->  Abs (    89,  1664)
+	 93: Rel (    11,     9)  ->  Abs (   100,  1673)
+	 94: Rel (    23,    20)  ->  Abs (   123,  1693)
+	 95: Rel (    38,     0)  ->  Abs (   161,  1693)
+	 96: Rel (     9,     0)  ->  Abs (   170,  1693)
+	 97: Rel (   100,   -32)  ->  Abs (   270,  1661)
+	 98: Rel (    50,   -16)  ->  Abs (   320,  1645)
+	 99: Rel (    33,     0)  ->  Abs (   353,  1645)
+	100: Rel (    53,     0)  ->  Abs (   406,  1645)
+	101: Rel (    52,    23)  ->  Abs (   458,  1668)
+
+	Glyph 1014: off = 0x0002C7AC, len = 586
+	  numberOfContours:	3
+	  xMin:			64
+	  yMin:			242
+	  xMax:			1291
+	  yMax:			1693
+
+	EndPoints
+	---------
+	  0:  23
+	  1:  62
+	  2:  85
+
+	  Length of Instructions:	328
+	00000: PUSHW[2]             22   -32 
+	00005: PUSHB[4]             15    17    52    20 
+	00010: PUSHW[1]            -32 
+	00013: PUSHB[4]             15    17    52    21 
+	00018: PUSHW[1]            -42 
+	00021: PUSHB[4]             14    17    52    41 
+	00026: PUSHW[1]            -42 
+	00029: PUSHB[4]             11    17    52    40 
+	00034: PUSHW[1]            -32 
+	00037: NPUSHB       (9):    11    17    52    91    28   137    43     2    34 
+	00048: PUSHW[1]            -32 
+	00051: NPUSHB      (37):     9    10    52    43    42     9    17    52    42    74 
+	                             9    17    52    41    84     9    17    52    40    64 
+	                             9    17    52    63    83    85    64    22    63    52 
+	                            85    85    79    83    75    71    74 
+	00090: PUSHW[1]            -64 
+	00093: PUSHB[7]             22    63    52    74    74    67    79 
+	00101: PUSHW[1]            753 
+	00104: PUSHB[3]             71    71    83 
+	00108: PUSHW[1]            753 
+	00111: NPUSHB      (24):    67    67     7    10    64    10    17    52    10    10 
+	                            18     3    32    32    48     3    64     9    24    52 
+	                             3     3    62    18 
+	00137: PUSHW[7]            754    48   751    51   754    39   763 
+	00152: PUSHB[3]             38    38    62 
+	00156: PUSHW[3]            751    25   747 
+	00163: NPUSHB      (13):    85    85    63    74    63    63    74    75    75     7 
+	                            10     0     3 
+	00178: PUSHW[1]            -64 
+	00181: PUSHB[7]             24    32    52     4     3     1     3 
+	00189: PUSHW[1]            -64 
+	00192: NPUSHB      (13):    10    15    52     3     3    16    32    55    45    11 
+	                            48     1    48 
+	00207: PUSHW[1]            784 
+	00210: PUSHB[3]             51    51    45 
+	00214: PUSHW[1]            784 
+	00217: PUSHB[3]             55    55    24 
+	00221: PUSHW[1]            752 
+	00224: PUSHB[4]             87    38    38    16 
+	00229: PUSHW[1]            285 
+	00232: SCANCTRL   
+	00233: MDAP[rd]   
+	00234: SHP[rp1,zp0] 
+	00235: MDAP[rd]   
+	00236: SRP0       
+	00237: MIRP[srp0,nmd,rd,1] 
+	00238: SHP[rp2,zp1] 
+	00239: MDAP[rd]   
+	00240: MIRP[nrp0,md,rd,1] 
+	00241: SHP[rp1,zp0] 
+	00242: RTHG       
+	00243: MDAP[rd]   
+	00244: RTG        
+	00245: MIRP[nrp0,md,rd,1] 
+	00246: DELTAP1    
+	00247: SRP1       
+	00248: SRP2       
+	00249: IP         
+	00250: RTHG       
+	00251: SRP2       
+	00252: IP         
+	00253: MDAP[rd]   
+	00254: CALL       
+	00255: DELTAP1    
+	00256: CALL       
+	00257: SHP[rp1,zp0] 
+	00258: IP         
+	00259: IP         
+	00260: SHP[rp2,zp1] 
+	00261: RTG        
+	00262: MDAP[rd]   
+	00263: SHP[rp1,zp0] 
+	00264: SHP[rp1,zp0] 
+	00265: MDAP[rd]   
+	00266: RTHG       
+	00267: MDAP[rd]   
+	00268: SRP1       
+	00269: SHP[rp1,zp0] 
+	00270: MDAP[rd]   
+	00271: SVTCA[y-axis] 
+	00272: RTG        
+	00273: MIAP[rd+ci] 
+	00274: MIRP[nrp0,md,rd,1] 
+	00275: SHP[rp1,zp0] 
+	00276: MDAP[rd]   
+	00277: MIRP[nrp0,md,rd,1] 
+	00278: MIAP[rd+ci] 
+	00279: MIRP[nrp0,md,rd,1] 
+	00280: MIAP[rd+ci] 
+	00281: SRP2       
+	00282: IP         
+	00283: MDAP[rd]   
+	00284: CALL       
+	00285: SRP1       
+	00286: IP         
+	00287: MDAP[rd]   
+	00288: SRP1       
+	00289: SRP2       
+	00290: IP         
+	00291: MDAP[rd]   
+	00292: CALL       
+	00293: IP         
+	00294: SHP[rp2,zp1] 
+	00295: MDAP[rd]   
+	00296: MIRP[nrp0,md,rd,1] 
+	00297: SHP[rp1,zp0] 
+	00298: MDAP[rd]   
+	00299: MIRP[nrp0,md,rd,1] 
+	00300: SRP2       
+	00301: IP         
+	00302: MDAP[rd]   
+	00303: CALL       
+	00304: SRP2       
+	00305: IP         
+	00306: SRP1       
+	00307: SRP2       
+	00308: IP         
+	00309: MDAP[rd]   
+	00310: CALL       
+	00311: SRP2       
+	00312: IP         
+	00313: IUP[y]     
+	00314: IUP[x]     
+	00315: SVTCA[x-axis] 
+	00316: CALL       
+	00317: CALL       
+	00318: CALL       
+	00319: CALL       
+	00320: CALL       
+	00321: DELTAP1    
+	00322: SVTCA[y-axis] 
+	00323: CALL       
+	00324: CALL       
+	00325: CALL       
+	00326: CALL       
+	00327: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:                                      On
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:                              X-Short Off
+	 34:                      Y-Short X-Short On
+	 35:                      Y-Short X-Short Off
+	 36:                      Y-Short X-Short On
+	 37:                      Y-Short X-Short Off
+	 38:  YDual                               On
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual               Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual               Y-Short X-Short Off
+	 48:  YDual               Y-Short X-Short On
+	 49:  YDual XDual         Y-Short X-Short On
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short X-Short On
+	 54:        XDual         Y-Short X-Short Off
+	 55:        XDual         Y-Short X-Short On
+	 56:        XDual         Y-Short X-Short Off
+	 57:        XDual         Y-Short X-Short On
+	 58:        XDual         Y-Short X-Short Off
+	 59:        XDual         Y-Short X-Short On
+	 60:        XDual         Y-Short X-Short Off
+	 61:  YDual XDual                 X-Short On
+	 62:  YDual XDual                 X-Short On
+	 63:                                      On
+	 64:                      Y-Short X-Short Off
+	 65:                      Y-Short X-Short On
+	 66:                      Y-Short X-Short Off
+	 67:  YDual                       X-Short On
+	 68:  YDual                       X-Short Off
+	 69:  YDual               Y-Short X-Short On
+	 70:  YDual               Y-Short X-Short Off
+	 71:  YDual                       X-Short On
+	 72:  YDual                       X-Short Off
+	 73:                      Y-Short X-Short Off
+	 74:                      Y-Short X-Short On
+	 75:  YDual               Y-Short X-Short On
+	 76:  YDual XDual         Y-Short X-Short Off
+	 77:  YDual XDual         Y-Short X-Short On
+	 78:  YDual XDual         Y-Short X-Short Off
+	 79:  YDual XDual                 X-Short On
+	 80:  YDual XDual                 X-Short Off
+	 81:        XDual         Y-Short X-Short On
+	 82:        XDual         Y-Short X-Short Off
+	 83:  YDual XDual                 X-Short On
+	 84:  YDual XDual                 X-Short Off
+	 85:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   807,   816)  ->  Abs (   807,   816)
+	  1: Rel (     0,   -20)  ->  Abs (   807,   796)
+	  2: Rel (    -4,   -28)  ->  Abs (   803,   768)
+	  3: Rel (    -8,   -21)  ->  Abs (   795,   747)
+	  4: Rel (   -56,   125)  ->  Abs (   739,   872)
+	  5: Rel (  -110,   133)  ->  Abs (   629,  1005)
+	  6: Rel (  -122,   147)  ->  Abs (   507,  1152)
+	  7: Rel (   -70,     0)  ->  Abs (   437,  1152)
+	  8: Rel (   -15,     0)  ->  Abs (   422,  1152)
+	  9: Rel (   -30,   -52)  ->  Abs (   392,  1100)
+	 10: Rel (   -20,     0)  ->  Abs (   372,  1100)
+	 11: Rel (   -27,     0)  ->  Abs (   345,  1100)
+	 12: Rel (   -58,    35)  ->  Abs (   287,  1135)
+	 13: Rel (   -73,    44)  ->  Abs (   214,  1179)
+	 14: Rel (   -44,    58)  ->  Abs (   170,  1237)
+	 15: Rel (   -59,    78)  ->  Abs (   111,  1315)
+	 16: Rel (     0,    88)  ->  Abs (   111,  1403)
+	 17: Rel (     0,    63)  ->  Abs (   111,  1466)
+	 18: Rel (    41,     0)  ->  Abs (   152,  1466)
+	 19: Rel (    72,     0)  ->  Abs (   224,  1466)
+	 20: Rel (   153,   -91)  ->  Abs (   377,  1375)
+	 21: Rel (   171,  -101)  ->  Abs (   548,  1274)
+	 22: Rel (   116,  -135)  ->  Abs (   664,  1139)
+	 23: Rel (   143,  -165)  ->  Abs (   807,   974)
+	 24: Rel (   484,  -681)  ->  Abs (  1291,   293)
+	 25: Rel (  -131,     0)  ->  Abs (  1160,   293)
+	 26: Rel (   -84,     0)  ->  Abs (  1076,   293)
+	 27: Rel (   -51,    91)  ->  Abs (  1025,   384)
+	 28: Rel (   -61,   110)  ->  Abs (   964,   494)
+	 29: Rel (     0,   223)  ->  Abs (   964,   717)
+	 30: Rel (     0,    16)  ->  Abs (   964,   733)
+	 31: Rel (    -7,    54)  ->  Abs (   957,   787)
+	 32: Rel (     0,     7)  ->  Abs (   957,   794)
+	 33: Rel (   -96,  -267)  ->  Abs (   861,   527)
+	 34: Rel (   -75,   -99)  ->  Abs (   786,   428)
+	 35: Rel (   -89,  -116)  ->  Abs (   697,   312)
+	 36: Rel (  -162,   -38)  ->  Abs (   535,   274)
+	 37: Rel (  -138,   -32)  ->  Abs (   397,   242)
+	 38: Rel (  -332,     0)  ->  Abs (    65,   242)
+	 39: Rel (     0,    28)  ->  Abs (    65,   270)
+	 40: Rel (   269,    81)  ->  Abs (   334,   351)
+	 41: Rel (   132,    59)  ->  Abs (   466,   410)
+	 42: Rel (   213,    94)  ->  Abs (   679,   504)
+	 43: Rel (   110,   123)  ->  Abs (   789,   627)
+	 44: Rel (   133,   148)  ->  Abs (   922,   775)
+	 45: Rel (     0,   203)  ->  Abs (   922,   978)
+	 46: Rel (     0,    98)  ->  Abs (   922,  1076)
+	 47: Rel (   -25,   170)  ->  Abs (   897,  1246)
+	 48: Rel (   -22,    89)  ->  Abs (   875,  1335)
+	 49: Rel (    33,    84)  ->  Abs (   908,  1419)
+	 50: Rel (    20,    49)  ->  Abs (   928,  1468)
+	 51: Rel (    17,    34)  ->  Abs (   945,  1502)
+	 52: Rel (    26,  -144)  ->  Abs (   971,  1358)
+	 53: Rel (    23,  -167)  ->  Abs (   994,  1191)
+	 54: Rel (    16,  -115)  ->  Abs (  1010,  1076)
+	 55: Rel (    15,  -132)  ->  Abs (  1025,   944)
+	 56: Rel (    19,  -162)  ->  Abs (  1044,   782)
+	 57: Rel (    14,   -99)  ->  Abs (  1058,   683)
+	 58: Rel (    18,  -126)  ->  Abs (  1076,   557)
+	 59: Rel (    36,   -54)  ->  Abs (  1112,   503)
+	 60: Rel (    24,   -36)  ->  Abs (  1136,   467)
+	 61: Rel (    24,     0)  ->  Abs (  1160,   467)
+	 62: Rel (   131,     0)  ->  Abs (  1291,   467)
+	 63: Rel (  -819,  1187)  ->  Abs (   472,  1654)
+	 64: Rel (   -28,   -32)  ->  Abs (   444,  1622)
+	 65: Rel (   -29,   -17)  ->  Abs (   415,  1605)
+	 66: Rel (   -41,   -24)  ->  Abs (   374,  1581)
+	 67: Rel (   -48,     0)  ->  Abs (   326,  1581)
+	 68: Rel (   -50,     0)  ->  Abs (   276,  1581)
+	 69: Rel (   -45,    15)  ->  Abs (   231,  1596)
+	 70: Rel (   -99,    33)  ->  Abs (   132,  1629)
+	 71: Rel (    -6,     0)  ->  Abs (   126,  1629)
+	 72: Rel (   -12,     0)  ->  Abs (   114,  1629)
+	 73: Rel (   -24,    -7)  ->  Abs (    90,  1622)
+	 74: Rel (   -15,    -7)  ->  Abs (    75,  1615)
+	 75: Rel (   -11,    13)  ->  Abs (    64,  1628)
+	 76: Rel (    25,    36)  ->  Abs (    89,  1664)
+	 77: Rel (    11,     9)  ->  Abs (   100,  1673)
+	 78: Rel (    23,    20)  ->  Abs (   123,  1693)
+	 79: Rel (    38,     0)  ->  Abs (   161,  1693)
+	 80: Rel (     9,     0)  ->  Abs (   170,  1693)
+	 81: Rel (   100,   -32)  ->  Abs (   270,  1661)
+	 82: Rel (    50,   -16)  ->  Abs (   320,  1645)
+	 83: Rel (    33,     0)  ->  Abs (   353,  1645)
+	 84: Rel (    53,     0)  ->  Abs (   406,  1645)
+	 85: Rel (    52,    23)  ->  Abs (   458,  1668)
+
+	Glyph 1015: off = 0x0002C9F6, len = 646
+	  numberOfContours:	3
+	  xMin:			38
+	  yMin:			162
+	  xMax:			1038
+	  yMax:			1802
+
+	EndPoints
+	---------
+	  0:  68
+	  1:  78
+	  2:  110
+
+	  Length of Instructions:	320
+	00000: PUSHW[2]             81   -32 
+	00005: NPUSHB      (44):    11    17    52    84     8    86    74     2    60    59 
+	                             0     1     2    75    31    46    55    32    12    17 
+	                            52    21    72    23     7    55     5    35    14    75 
+	                            17   143    35     1    35    64     9    17    52    35 
+	                            35    46    75     2 
+	00051: PUSHW[1]            751 
+	00054: PUSHB[5]              0     0    63    75    46 
+	00060: PUSHW[1]            -64 
+	00063: PUSHB[7]              9    29    52    46    46    84    63 
+	00071: PUSHW[1]            754 
+	00074: PUSHB[7]             79   100   102    86   108    84    84 
+	00082: PUSHW[1]            -64 
+	00085: PUSHB[7]             18    25    52    84   108   108   102 
+	00093: PUSHW[1]            757 
+	00096: PUSHB[6]             94    64     9    14    52    94 
+	00103: PUSHW[5]            789    17   751    75   747 
+	00114: NPUSHB      (11):   100    86    97    97   105    79    79   105    84    84 
+	                            90 
+	00127: PUSHW[1]            773 
+	00130: NPUSHB      (14):    64   105   105    31    35    42    55    72     7    75 
+	                            21    23    17    64 
+	00146: PUSHW[1]            763 
+	00149: NPUSHB      (11):    32    63    63    60    60    59     1     2     0     0 
+	                            59 
+	00162: PUSHW[1]            780 
+	00165: PUSHB[3]              2     2     7 
+	00169: PUSHW[3]            780    23   -64 
+	00176: NPUSHB       (9):     9    10    52    23    23    17    17    42    69 
+	00187: PUSHW[1]            771 
+	00190: NPUSHB      (17):    11    64    13    15    52    11    64     9    11    52 
+	                            11    11   112    64    42     1    42 
+	00209: PUSHW[1]            315 
+	00212: SCANCTRL   
+	00213: MDAP[rd]   
+	00214: DELTAP1    
+	00215: SRP1       
+	00216: SHP[rp1,zp0] 
+	00217: MDAP[rd]   
+	00218: CALL       
+	00219: CALL       
+	00220: MIRP[nrp0,md,rd,1] 
+	00221: SRP1       
+	00222: IP         
+	00223: MDAP[rd]   
+	00224: IP         
+	00225: MDAP[rd]   
+	00226: CALL       
+	00227: MIRP[srp0,md,rd,1] 
+	00228: SHP[rp2,zp1] 
+	00229: MDAP[rd]   
+	00230: MIRP[nrp0,md,rd,1] 
+	00231: SHP[rp1,zp0] 
+	00232: MDAP[rd]   
+	00233: SRP2       
+	00234: IP         
+	00235: SRP1       
+	00236: SHP[rp1,zp0] 
+	00237: MDAP[rd]   
+	00238: SHP[rp1,zp0] 
+	00239: RTHG       
+	00240: MDAP[rd]   
+	00241: SMD        
+	00242: MIRP[nrp0,md,rd,1] 
+	00243: SRP1       
+	00244: SRP2       
+	00245: IP         
+	00246: IP         
+	00247: SRP1       
+	00248: IP         
+	00249: IP         
+	00250: SRP1       
+	00251: IP         
+	00252: IP         
+	00253: SHP[rp1,zp0] 
+	00254: RTG        
+	00255: MDAP[rd]   
+	00256: SMD        
+	00257: MIRP[srp0,md,rd,1] 
+	00258: SHP[rp2,zp1] 
+	00259: MDAP[rd]   
+	00260: SRP1       
+	00261: SHP[rp1,zp0] 
+	00262: MDAP[rd]   
+	00263: SRP2       
+	00264: IP         
+	00265: MDAP[rd]   
+	00266: IP         
+	00267: IP         
+	00268: SVTCA[y-axis] 
+	00269: MIAP[rd+ci] 
+	00270: MIRP[nrp0,md,rd,1] 
+	00271: MIAP[rd+ci] 
+	00272: CALL       
+	00273: MIRP[srp0,md,rd,1] 
+	00274: SHP[rp2,zp1] 
+	00275: MDAP[rd]   
+	00276: SHP[rp1,zp0] 
+	00277: CALL       
+	00278: MDAP[rd]   
+	00279: SRP2       
+	00280: IP         
+	00281: SRP1       
+	00282: IP         
+	00283: IP         
+	00284: MIAP[rd+ci] 
+	00285: SRP1       
+	00286: SHP[rp1,zp0] 
+	00287: MDAP[rd]   
+	00288: CALL       
+	00289: SRP1       
+	00290: SRP2       
+	00291: IP         
+	00292: MDAP[rd]   
+	00293: MIRP[nrp0,md,rd,1] 
+	00294: SRP1       
+	00295: SRP2       
+	00296: IP         
+	00297: MDAP[rd]   
+	00298: CALL       
+	00299: DELTAP1    
+	00300: SRP1       
+	00301: SRP2       
+	00302: IP         
+	00303: SRP1       
+	00304: SLOOP      
+	00305: IP         
+	00306: CALL       
+	00307: SRP2       
+	00308: IP         
+	00309: SRP1       
+	00310: SRP2       
+	00311: IP         
+	00312: SRP1       
+	00313: IP         
+	00314: IP         
+	00315: IUP[y]     
+	00316: IUP[x]     
+	00317: SVTCA[y-axis] 
+	00318: DELTAP1    
+	00319: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:                      Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual               Y-Short X-Short On
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual               Y-Short X-Short On
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual XDual         Y-Short X-Short On
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:        XDual         Y-Short X-Short On
+	 49:        XDual         Y-Short X-Short Off
+	 50:        XDual         Y-Short X-Short On
+	 51:        XDual         Y-Short X-Short Off
+	 52:        XDual         Y-Short X-Short On
+	 53:        XDual         Y-Short X-Short On
+	 54:        XDual         Y-Short X-Short Off
+	 55:        XDual         Y-Short X-Short On
+	 56:  YDual XDual         Y-Short X-Short Off
+	 57:  YDual XDual         Y-Short X-Short On
+	 58:  YDual XDual         Y-Short X-Short Off
+	 59:  YDual XDual         Y-Short         On
+	 60:  YDual               Y-Short X-Short On
+	 61:  YDual XDual         Y-Short         Off
+	 62:  YDual XDual         Y-Short X-Short Off
+	 63:  YDual XDual         Y-Short X-Short On
+	 64:        XDual         Y-Short X-Short On
+	 65:        XDual         Y-Short X-Short Off
+	 66:        XDual         Y-Short X-Short On
+	 67:        XDual         Y-Short X-Short Off
+	 68:        XDual         Y-Short X-Short Off
+	 69:                              X-Short On
+	 70:  YDual XDual         Y-Short         Off
+	 71:  YDual               Y-Short X-Short Off
+	 72:  YDual               Y-Short X-Short On
+	 73:                      Y-Short X-Short Off
+	 74:                      Y-Short X-Short Off
+	 75:                      Y-Short X-Short On
+	 76:  YDual XDual                 X-Short Off
+	 77:  YDual XDual         Y-Short X-Short On
+	 78:  YDual XDual         Y-Short X-Short Off
+	 79:                                      On
+	 80:        XDual         Y-Short         Off
+	 81:                      Y-Short X-Short On
+	 82:                      Y-Short X-Short Off
+	 83:                      Y-Short X-Short On
+	 84:                      Y-Short X-Short On
+	 85:  YDual XDual         Y-Short         Off
+	 86:  YDual XDual         Y-Short X-Short On
+	 87:  YDual               Y-Short X-Short Off
+	 88:  YDual               Y-Short X-Short On
+	 89:  YDual               Y-Short X-Short Off
+	 90:  YDual XDual         Y-Short         On
+	 91:  YDual XDual         Y-Short         Off
+	 92:  YDual XDual         Y-Short X-Short On
+	 93:  YDual XDual         Y-Short X-Short Off
+	 94:  YDual XDual                 X-Short On
+	 95:  YDual XDual                 X-Short Off
+	 96:        XDual         Y-Short X-Short Off
+	 97:        XDual         Y-Short         On
+	 98:        XDual         Y-Short         Off
+	 99:                      Y-Short X-Short Off
+	100:                      Y-Short X-Short On
+	101:  YDual               Y-Short X-Short Off
+	102:  YDual                       X-Short On
+	103:  YDual                       X-Short Off
+	104:                      Y-Short X-Short Off
+	105:        XDual         Y-Short         On
+	106:        XDual         Y-Short         Off
+	107:        XDual         Y-Short X-Short Off
+	108:  YDual XDual                 X-Short On
+	109:  YDual XDual                 X-Short Off
+	110:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1038,  1350)  ->  Abs (  1038,  1350)
+	  1: Rel (   -48,  -180)  ->  Abs (   990,  1170)
+	  2: Rel (   -59,    29)  ->  Abs (   931,  1199)
+	  3: Rel (     2,   -91)  ->  Abs (   933,  1108)
+	  4: Rel (     0,  -134)  ->  Abs (   933,   974)
+	  5: Rel (   -34,  -126)  ->  Abs (   899,   848)
+	  6: Rel (   -37,  -138)  ->  Abs (   862,   710)
+	  7: Rel (   -80,  -135)  ->  Abs (   782,   575)
+	  8: Rel (    38,   -70)  ->  Abs (   820,   505)
+	  9: Rel (    15,   -40)  ->  Abs (   835,   465)
+	 10: Rel (    23,   -63)  ->  Abs (   858,   402)
+	 11: Rel (     0,   -65)  ->  Abs (   858,   337)
+	 12: Rel (     0,   -37)  ->  Abs (   858,   300)
+	 13: Rel (    -4,   -52)  ->  Abs (   854,   248)
+	 14: Rel (    -7,   -35)  ->  Abs (   847,   213)
+	 15: Rel (  -106,   -24)  ->  Abs (   741,   189)
+	 16: Rel (  -241,   -27)  ->  Abs (   500,   162)
+	 17: Rel (  -114,     0)  ->  Abs (   386,   162)
+	 18: Rel (     1,    19)  ->  Abs (   387,   181)
+	 19: Rel (     0,    13)  ->  Abs (   387,   194)
+	 20: Rel (     5,    76)  ->  Abs (   392,   270)
+	 21: Rel (    19,    65)  ->  Abs (   411,   335)
+	 22: Rel (   170,    91)  ->  Abs (   581,   426)
+	 23: Rel (   117,   145)  ->  Abs (   698,   571)
+	 24: Rel (   -70,   132)  ->  Abs (   628,   703)
+	 25: Rel (   -32,    55)  ->  Abs (   596,   758)
+	 26: Rel (   -35,    60)  ->  Abs (   561,   818)
+	 27: Rel (   -84,   127)  ->  Abs (   477,   945)
+	 28: Rel (   -31,    43)  ->  Abs (   446,   988)
+	 29: Rel (   -24,    26)  ->  Abs (   422,  1014)
+	 30: Rel (   -33,    35)  ->  Abs (   389,  1049)
+	 31: Rel (   -19,     0)  ->  Abs (   370,  1049)
+	 32: Rel (   -13,     0)  ->  Abs (   357,  1049)
+	 33: Rel (   -30,   -15)  ->  Abs (   327,  1034)
+	 34: Rel (   -16,    -8)  ->  Abs (   311,  1026)
+	 35: Rel (   -11,     0)  ->  Abs (   300,  1026)
+	 36: Rel (   -22,     0)  ->  Abs (   278,  1026)
+	 37: Rel (   -47,    44)  ->  Abs (   231,  1070)
+	 38: Rel (   -41,    39)  ->  Abs (   190,  1109)
+	 39: Rel (   -45,    57)  ->  Abs (   145,  1166)
+	 40: Rel (   -36,    46)  ->  Abs (   109,  1212)
+	 41: Rel (   -26,    61)  ->  Abs (    83,  1273)
+	 42: Rel (     0,    43)  ->  Abs (    83,  1316)
+	 43: Rel (     0,    62)  ->  Abs (    83,  1378)
+	 44: Rel (     8,    35)  ->  Abs (    91,  1413)
+	 45: Rel (    12,    53)  ->  Abs (   103,  1466)
+	 46: Rel (    29,     0)  ->  Abs (   132,  1466)
+	 47: Rel (    41,     0)  ->  Abs (   173,  1466)
+	 48: Rel (    78,   -78)  ->  Abs (   251,  1388)
+	 49: Rel (    69,   -70)  ->  Abs (   320,  1318)
+	 50: Rel (    85,  -114)  ->  Abs (   405,  1204)
+	 51: Rel (    75,  -101)  ->  Abs (   480,  1103)
+	 52: Rel (    73,  -117)  ->  Abs (   553,   986)
+	 53: Rel (   102,  -164)  ->  Abs (   655,   822)
+	 54: Rel (    45,   -74)  ->  Abs (   700,   748)
+	 55: Rel (    47,   -94)  ->  Abs (   747,   654)
+	 56: Rel (    67,   135)  ->  Abs (   814,   789)
+	 57: Rel (    25,   138)  ->  Abs (   839,   927)
+	 58: Rel (    22,   120)  ->  Abs (   861,  1047)
+	 59: Rel (     0,   186)  ->  Abs (   861,  1233)
+	 60: Rel (   -57,    33)  ->  Abs (   804,  1266)
+	 61: Rel (     0,    66)  ->  Abs (   804,  1332)
+	 62: Rel (    23,   107)  ->  Abs (   827,  1439)
+	 63: Rel (    21,    44)  ->  Abs (   848,  1483)
+	 64: Rel (    23,    -6)  ->  Abs (   871,  1477)
+	 65: Rel (     4,   -43)  ->  Abs (   875,  1434)
+	 66: Rel (    44,   -26)  ->  Abs (   919,  1408)
+	 67: Rel (    24,   -14)  ->  Abs (   943,  1394)
+	 68: Rel (    75,   -36)  ->  Abs (  1018,  1358)
+	 69: Rel (  -240,  -981)  ->  Abs (   778,   377)
+	 70: Rel (     0,    22)  ->  Abs (   778,   399)
+	 71: Rel (   -17,    47)  ->  Abs (   761,   446)
+	 72: Rel (   -29,    54)  ->  Abs (   732,   500)
+	 73: Rel (   -30,   -39)  ->  Abs (   702,   461)
+	 74: Rel (  -119,  -102)  ->  Abs (   583,   359)
+	 75: Rel (   -58,   -36)  ->  Abs (   525,   323)
+	 76: Rel (   118,     0)  ->  Abs (   643,   323)
+	 77: Rel (    50,     7)  ->  Abs (   693,   330)
+	 78: Rel (    85,    12)  ->  Abs (   778,   342)
+	 79: Rel (  -460,  1296)  ->  Abs (   318,  1638)
+	 80: Rel (     0,   -25)  ->  Abs (   318,  1613)
+	 81: Rel (   -31,   -20)  ->  Abs (   287,  1593)
+	 82: Rel (   -21,   -13)  ->  Abs (   266,  1580)
+	 83: Rel (   -42,   -15)  ->  Abs (   224,  1565)
+	 84: Rel (  -186,   -64)  ->  Abs (    38,  1501)
+	 85: Rel (     0,    46)  ->  Abs (    38,  1547)
+	 86: Rel (   100,    35)  ->  Abs (   138,  1582)
+	 87: Rel (   -31,    16)  ->  Abs (   107,  1598)
+	 88: Rel (   -16,    15)  ->  Abs (    91,  1613)
+	 89: Rel (   -21,    19)  ->  Abs (    70,  1632)
+	 90: Rel (     0,    21)  ->  Abs (    70,  1653)
+	 91: Rel (     0,    31)  ->  Abs (    70,  1684)
+	 92: Rel (    53,    56)  ->  Abs (   123,  1740)
+	 93: Rel (    59,    62)  ->  Abs (   182,  1802)
+	 94: Rel (    45,     0)  ->  Abs (   227,  1802)
+	 95: Rel (    20,     0)  ->  Abs (   247,  1802)
+	 96: Rel (    29,   -27)  ->  Abs (   276,  1775)
+	 97: Rel (     0,   -22)  ->  Abs (   276,  1753)
+	 98: Rel (     0,   -14)  ->  Abs (   276,  1739)
+	 99: Rel (   -12,   -29)  ->  Abs (   264,  1710)
+	100: Rel (   -11,   -18)  ->  Abs (   253,  1692)
+	101: Rel (   -31,    28)  ->  Abs (   222,  1720)
+	102: Rel (   -36,     0)  ->  Abs (   186,  1720)
+	103: Rel (   -22,     0)  ->  Abs (   164,  1720)
+	104: Rel (   -43,   -18)  ->  Abs (   121,  1702)
+	105: Rel (     0,   -12)  ->  Abs (   121,  1690)
+	106: Rel (     0,   -15)  ->  Abs (   121,  1675)
+	107: Rel (    93,   -52)  ->  Abs (   214,  1623)
+	108: Rel (    33,     0)  ->  Abs (   247,  1623)
+	109: Rel (    22,     0)  ->  Abs (   269,  1623)
+	110: Rel (    19,     3)  ->  Abs (   288,  1626)
+
+	Glyph 1016: off = 0x0002CC7C, len = 616
+	  numberOfContours:	3
+	  xMin:			48
+	  yMin:			242
+	  xMax:			1291
+	  yMax:			1802
+
+	EndPoints
+	---------
+	  0:  23
+	  1:  62
+	  2:  94
+
+	  Length of Instructions:	338
+	00000: PUSHW[2]             65   -32 
+	00005: PUSHB[4]             11    17    52    41 
+	00010: PUSHW[1]            -42 
+	00013: PUSHB[4]             11    17    52    40 
+	00018: PUSHW[1]            -32 
+	00021: NPUSHB      (18):    11    17    52   133    20   134    21   134    22   199 
+	                            20     4    91    28   137    43     2    34 
+	00041: PUSHW[1]            -32 
+	00044: NPUSHB      (47):     9    10    52    43    42     9    17    52    42    74 
+	                             9    17    52    41    84     9    17    52    40    64 
+	                             9    17    52     7    32    10     1    10    64    10 
+	                            17    52    10    10     3    64     9    24    52     3 
+	                             3    18    62    32    32    62    48 
+	00093: PUSHW[5]            751    51   754    39   763 
+	00104: PUSHB[3]             38    38    62 
+	00108: PUSHW[5]            751    25   747    18   -64 
+	00119: PUSHB[4]             23    29    52    18 
+	00124: PUSHW[1]            -64 
+	00127: NPUSHB      (13):     9    17    52    18    18    68    84    63    86    70 
+	                            92    68    68 
+	00142: PUSHW[1]            -64 
+	00145: PUSHB[7]             18    25    52    68    92    92    86 
+	00153: PUSHW[1]            757 
+	00156: PUSHB[6]             78    64     9    14    52    78 
+	00163: PUSHW[1]            789 
+	00166: NPUSHB      (11):    84    70    81    81    89    63    63    89    68    68 
+	                            74 
+	00179: PUSHW[1]            773 
+	00182: PUSHB[6]             89    89     7    10     0     3 
+	00189: PUSHW[1]            -64 
+	00192: PUSHB[7]             24    32    52     4     3     1     3 
+	00200: PUSHW[1]            -64 
+	00203: NPUSHB      (13):    10    15    52     3     3    16    32    55    45    11 
+	                            48     1    48 
+	00218: PUSHW[1]            784 
+	00221: PUSHB[3]             51    51    45 
+	00225: PUSHW[1]            784 
+	00228: PUSHB[3]             55    55    24 
+	00232: PUSHW[1]            752 
+	00235: PUSHB[4]             96    38    38    16 
+	00240: PUSHW[1]            315 
+	00243: SCANCTRL   
+	00244: MDAP[rd]   
+	00245: SHP[rp1,zp0] 
+	00246: MDAP[rd]   
+	00247: SRP0       
+	00248: MIRP[srp0,nmd,rd,1] 
+	00249: SHP[rp2,zp1] 
+	00250: MDAP[rd]   
+	00251: MIRP[nrp0,md,rd,1] 
+	00252: SHP[rp1,zp0] 
+	00253: RTHG       
+	00254: MDAP[rd]   
+	00255: RTG        
+	00256: MIRP[nrp0,md,rd,1] 
+	00257: DELTAP1    
+	00258: SRP1       
+	00259: SRP2       
+	00260: IP         
+	00261: RTHG       
+	00262: SRP2       
+	00263: IP         
+	00264: MDAP[rd]   
+	00265: CALL       
+	00266: DELTAP1    
+	00267: CALL       
+	00268: SHP[rp1,zp0] 
+	00269: IP         
+	00270: IP         
+	00271: SHP[rp2,zp1] 
+	00272: RTG        
+	00273: MDAP[rd]   
+	00274: MIRP[srp0,md,rd,1] 
+	00275: SHP[rp2,zp1] 
+	00276: MDAP[rd]   
+	00277: SRP1       
+	00278: SHP[rp1,zp0] 
+	00279: MDAP[rd]   
+	00280: SRP2       
+	00281: IP         
+	00282: MDAP[rd]   
+	00283: IP         
+	00284: IP         
+	00285: SVTCA[y-axis] 
+	00286: MIAP[rd+ci] 
+	00287: CALL       
+	00288: MIRP[srp0,md,rd,1] 
+	00289: SHP[rp2,zp1] 
+	00290: MDAP[rd]   
+	00291: SHP[rp1,zp0] 
+	00292: CALL       
+	00293: MDAP[rd]   
+	00294: SRP2       
+	00295: IP         
+	00296: SRP1       
+	00297: IP         
+	00298: IP         
+	00299: SRP1       
+	00300: SHP[rp1,zp0] 
+	00301: MDAP[rd]   
+	00302: CALL       
+	00303: CALL       
+	00304: MIAP[rd+ci] 
+	00305: MIRP[nrp0,md,rd,1] 
+	00306: SHP[rp1,zp0] 
+	00307: MDAP[rd]   
+	00308: MIRP[nrp0,md,rd,1] 
+	00309: MIAP[rd+ci] 
+	00310: MIRP[nrp0,md,rd,1] 
+	00311: SRP1       
+	00312: IP         
+	00313: MDAP[rd]   
+	00314: SRP1       
+	00315: SRP2       
+	00316: IP         
+	00317: MDAP[rd]   
+	00318: CALL       
+	00319: IP         
+	00320: MDAP[rd]   
+	00321: CALL       
+	00322: DELTAP1    
+	00323: IP         
+	00324: IUP[y]     
+	00325: IUP[x]     
+	00326: SVTCA[x-axis] 
+	00327: CALL       
+	00328: CALL       
+	00329: CALL       
+	00330: CALL       
+	00331: CALL       
+	00332: DELTAP1    
+	00333: SVTCA[y-axis] 
+	00334: DELTAP1    
+	00335: CALL       
+	00336: CALL       
+	00337: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:                                      On
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:                              X-Short Off
+	 34:                      Y-Short X-Short On
+	 35:                      Y-Short X-Short Off
+	 36:                      Y-Short X-Short On
+	 37:                      Y-Short X-Short Off
+	 38:  YDual                               On
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual               Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual               Y-Short X-Short Off
+	 48:  YDual               Y-Short X-Short On
+	 49:  YDual XDual         Y-Short X-Short On
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short X-Short On
+	 54:        XDual         Y-Short X-Short Off
+	 55:        XDual         Y-Short X-Short On
+	 56:        XDual         Y-Short X-Short Off
+	 57:        XDual         Y-Short X-Short On
+	 58:        XDual         Y-Short X-Short Off
+	 59:        XDual         Y-Short X-Short On
+	 60:        XDual         Y-Short X-Short Off
+	 61:  YDual XDual                 X-Short On
+	 62:  YDual XDual                 X-Short On
+	 63:                                      On
+	 64:        XDual         Y-Short         Off
+	 65:                      Y-Short X-Short On
+	 66:                      Y-Short X-Short Off
+	 67:                      Y-Short X-Short On
+	 68:                      Y-Short X-Short On
+	 69:  YDual XDual         Y-Short         Off
+	 70:  YDual XDual         Y-Short X-Short On
+	 71:  YDual               Y-Short X-Short Off
+	 72:  YDual               Y-Short X-Short On
+	 73:  YDual               Y-Short X-Short Off
+	 74:  YDual XDual         Y-Short         On
+	 75:  YDual XDual         Y-Short         Off
+	 76:  YDual XDual         Y-Short X-Short On
+	 77:  YDual XDual         Y-Short X-Short Off
+	 78:  YDual XDual                 X-Short On
+	 79:  YDual XDual                 X-Short Off
+	 80:        XDual         Y-Short X-Short Off
+	 81:        XDual         Y-Short         On
+	 82:        XDual         Y-Short         Off
+	 83:                      Y-Short X-Short Off
+	 84:                      Y-Short X-Short On
+	 85:  YDual               Y-Short X-Short Off
+	 86:  YDual                       X-Short On
+	 87:  YDual                       X-Short Off
+	 88:                      Y-Short X-Short Off
+	 89:        XDual         Y-Short         On
+	 90:        XDual         Y-Short         Off
+	 91:        XDual         Y-Short X-Short Off
+	 92:  YDual XDual                 X-Short On
+	 93:  YDual XDual                 X-Short Off
+	 94:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   807,   816)  ->  Abs (   807,   816)
+	  1: Rel (     0,   -20)  ->  Abs (   807,   796)
+	  2: Rel (    -4,   -28)  ->  Abs (   803,   768)
+	  3: Rel (    -8,   -21)  ->  Abs (   795,   747)
+	  4: Rel (   -56,   125)  ->  Abs (   739,   872)
+	  5: Rel (  -110,   133)  ->  Abs (   629,  1005)
+	  6: Rel (  -122,   147)  ->  Abs (   507,  1152)
+	  7: Rel (   -70,     0)  ->  Abs (   437,  1152)
+	  8: Rel (   -15,     0)  ->  Abs (   422,  1152)
+	  9: Rel (   -30,   -52)  ->  Abs (   392,  1100)
+	 10: Rel (   -20,     0)  ->  Abs (   372,  1100)
+	 11: Rel (   -27,     0)  ->  Abs (   345,  1100)
+	 12: Rel (   -58,    35)  ->  Abs (   287,  1135)
+	 13: Rel (   -73,    44)  ->  Abs (   214,  1179)
+	 14: Rel (   -44,    58)  ->  Abs (   170,  1237)
+	 15: Rel (   -59,    78)  ->  Abs (   111,  1315)
+	 16: Rel (     0,    88)  ->  Abs (   111,  1403)
+	 17: Rel (     0,    63)  ->  Abs (   111,  1466)
+	 18: Rel (    41,     0)  ->  Abs (   152,  1466)
+	 19: Rel (    72,     0)  ->  Abs (   224,  1466)
+	 20: Rel (   153,   -91)  ->  Abs (   377,  1375)
+	 21: Rel (   171,  -101)  ->  Abs (   548,  1274)
+	 22: Rel (   116,  -135)  ->  Abs (   664,  1139)
+	 23: Rel (   143,  -165)  ->  Abs (   807,   974)
+	 24: Rel (   484,  -681)  ->  Abs (  1291,   293)
+	 25: Rel (  -131,     0)  ->  Abs (  1160,   293)
+	 26: Rel (   -84,     0)  ->  Abs (  1076,   293)
+	 27: Rel (   -51,    91)  ->  Abs (  1025,   384)
+	 28: Rel (   -61,   110)  ->  Abs (   964,   494)
+	 29: Rel (     0,   223)  ->  Abs (   964,   717)
+	 30: Rel (     0,    16)  ->  Abs (   964,   733)
+	 31: Rel (    -7,    54)  ->  Abs (   957,   787)
+	 32: Rel (     0,     7)  ->  Abs (   957,   794)
+	 33: Rel (   -96,  -267)  ->  Abs (   861,   527)
+	 34: Rel (   -75,   -99)  ->  Abs (   786,   428)
+	 35: Rel (   -89,  -116)  ->  Abs (   697,   312)
+	 36: Rel (  -162,   -38)  ->  Abs (   535,   274)
+	 37: Rel (  -138,   -32)  ->  Abs (   397,   242)
+	 38: Rel (  -332,     0)  ->  Abs (    65,   242)
+	 39: Rel (     0,    28)  ->  Abs (    65,   270)
+	 40: Rel (   269,    81)  ->  Abs (   334,   351)
+	 41: Rel (   132,    59)  ->  Abs (   466,   410)
+	 42: Rel (   213,    94)  ->  Abs (   679,   504)
+	 43: Rel (   110,   123)  ->  Abs (   789,   627)
+	 44: Rel (   133,   148)  ->  Abs (   922,   775)
+	 45: Rel (     0,   203)  ->  Abs (   922,   978)
+	 46: Rel (     0,    98)  ->  Abs (   922,  1076)
+	 47: Rel (   -25,   170)  ->  Abs (   897,  1246)
+	 48: Rel (   -22,    89)  ->  Abs (   875,  1335)
+	 49: Rel (    33,    84)  ->  Abs (   908,  1419)
+	 50: Rel (    20,    49)  ->  Abs (   928,  1468)
+	 51: Rel (    17,    34)  ->  Abs (   945,  1502)
+	 52: Rel (    26,  -144)  ->  Abs (   971,  1358)
+	 53: Rel (    23,  -167)  ->  Abs (   994,  1191)
+	 54: Rel (    16,  -115)  ->  Abs (  1010,  1076)
+	 55: Rel (    15,  -132)  ->  Abs (  1025,   944)
+	 56: Rel (    19,  -162)  ->  Abs (  1044,   782)
+	 57: Rel (    14,   -99)  ->  Abs (  1058,   683)
+	 58: Rel (    18,  -126)  ->  Abs (  1076,   557)
+	 59: Rel (    36,   -54)  ->  Abs (  1112,   503)
+	 60: Rel (    24,   -36)  ->  Abs (  1136,   467)
+	 61: Rel (    24,     0)  ->  Abs (  1160,   467)
+	 62: Rel (   131,     0)  ->  Abs (  1291,   467)
+	 63: Rel (  -963,  1171)  ->  Abs (   328,  1638)
+	 64: Rel (     0,   -25)  ->  Abs (   328,  1613)
+	 65: Rel (   -31,   -20)  ->  Abs (   297,  1593)
+	 66: Rel (   -21,   -13)  ->  Abs (   276,  1580)
+	 67: Rel (   -42,   -15)  ->  Abs (   234,  1565)
+	 68: Rel (  -186,   -64)  ->  Abs (    48,  1501)
+	 69: Rel (     0,    46)  ->  Abs (    48,  1547)
+	 70: Rel (   100,    35)  ->  Abs (   148,  1582)
+	 71: Rel (   -31,    16)  ->  Abs (   117,  1598)
+	 72: Rel (   -16,    15)  ->  Abs (   101,  1613)
+	 73: Rel (   -21,    19)  ->  Abs (    80,  1632)
+	 74: Rel (     0,    21)  ->  Abs (    80,  1653)
+	 75: Rel (     0,    31)  ->  Abs (    80,  1684)
+	 76: Rel (    53,    56)  ->  Abs (   133,  1740)
+	 77: Rel (    59,    62)  ->  Abs (   192,  1802)
+	 78: Rel (    45,     0)  ->  Abs (   237,  1802)
+	 79: Rel (    20,     0)  ->  Abs (   257,  1802)
+	 80: Rel (    29,   -27)  ->  Abs (   286,  1775)
+	 81: Rel (     0,   -22)  ->  Abs (   286,  1753)
+	 82: Rel (     0,   -14)  ->  Abs (   286,  1739)
+	 83: Rel (   -12,   -29)  ->  Abs (   274,  1710)
+	 84: Rel (   -11,   -18)  ->  Abs (   263,  1692)
+	 85: Rel (   -31,    28)  ->  Abs (   232,  1720)
+	 86: Rel (   -36,     0)  ->  Abs (   196,  1720)
+	 87: Rel (   -22,     0)  ->  Abs (   174,  1720)
+	 88: Rel (   -43,   -18)  ->  Abs (   131,  1702)
+	 89: Rel (     0,   -12)  ->  Abs (   131,  1690)
+	 90: Rel (     0,   -15)  ->  Abs (   131,  1675)
+	 91: Rel (    93,   -52)  ->  Abs (   224,  1623)
+	 92: Rel (    33,     0)  ->  Abs (   257,  1623)
+	 93: Rel (    22,     0)  ->  Abs (   279,  1623)
+	 94: Rel (    19,     3)  ->  Abs (   298,  1626)
+
+	Glyph 1017: off = 0x0002CEE4, len = 644
+	  numberOfContours:	3
+	  xMin:			83
+	  yMin:			-227
+	  xMax:			1038
+	  yMax:			1483
+
+	EndPoints
+	---------
+	  0:  68
+	  1:  78
+	  2:  110
+
+	  Length of Instructions:	320
+	00000: PUSHW[2]             81   -32 
+	00005: NPUSHB      (15):    11    17    52    84     8    86    74     2   100    79 
+	                           102    86   108    84    94 
+	00022: PUSHW[1]            757 
+	00025: NPUSHB      (15):   102   102   108    64    18    25    52   108   108    64 
+	                            84   144    84     2    84 
+	00042: PUSHW[1]            -64 
+	00045: NPUSHB      (42):    11    23    52    84    84    17    60    59     0     1 
+	                             2    75    31    46    55    32    12    17    52    21 
+	                            72    23     7    55     5    35    14    75    17   143 
+	                            35     1    35    64     9    17    52    35    35    46 
+	                            75     2 
+	00089: PUSHW[1]            751 
+	00092: PUSHB[4]              0     0    75    63 
+	00097: PUSHW[7]            754    46   754    17   751    75   747 
+	00112: NPUSHB      (11):   100    86    97    97   105    79    79   105    84    84 
+	                            90 
+	00125: PUSHW[1]            773 
+	00128: NPUSHB      (15):    64   105   105    17    31    35    42    55    72     7 
+	                            75    21    23    17    64 
+	00145: PUSHW[1]            763 
+	00148: NPUSHB      (11):    32    63    63    60    60    59     1     2     0     0 
+	                            59 
+	00161: PUSHW[1]            780 
+	00164: PUSHB[3]              2     2     7 
+	00168: PUSHW[3]            780    23   -64 
+	00175: NPUSHB       (9):     9    10    52    23    23    17    17    42    69 
+	00186: PUSHW[1]            771 
+	00189: NPUSHB      (17):    11    64    13    15    52    11    64     9    11    52 
+	                            11    11   112    64    42     1    42 
+	00208: PUSHW[1]            315 
+	00211: SCANCTRL   
+	00212: MDAP[rd]   
+	00213: DELTAP1    
+	00214: SRP1       
+	00215: SHP[rp1,zp0] 
+	00216: MDAP[rd]   
+	00217: CALL       
+	00218: CALL       
+	00219: MIRP[nrp0,md,rd,1] 
+	00220: SRP1       
+	00221: IP         
+	00222: MDAP[rd]   
+	00223: IP         
+	00224: MDAP[rd]   
+	00225: CALL       
+	00226: MIRP[srp0,md,rd,1] 
+	00227: SHP[rp2,zp1] 
+	00228: MDAP[rd]   
+	00229: MIRP[nrp0,md,rd,1] 
+	00230: SHP[rp1,zp0] 
+	00231: MDAP[rd]   
+	00232: SRP2       
+	00233: IP         
+	00234: SRP1       
+	00235: SHP[rp1,zp0] 
+	00236: MDAP[rd]   
+	00237: SHP[rp1,zp0] 
+	00238: RTHG       
+	00239: MDAP[rd]   
+	00240: SMD        
+	00241: MIRP[nrp0,md,rd,1] 
+	00242: SRP1       
+	00243: SRP2       
+	00244: IP         
+	00245: IP         
+	00246: SRP1       
+	00247: IP         
+	00248: IP         
+	00249: SRP1       
+	00250: IP         
+	00251: IP         
+	00252: SRP1       
+	00253: SHP[rp1,zp0] 
+	00254: RTG        
+	00255: MDAP[rd]   
+	00256: SMD        
+	00257: MIRP[srp0,md,rd,1] 
+	00258: SHP[rp2,zp1] 
+	00259: MDAP[rd]   
+	00260: SRP1       
+	00261: SHP[rp1,zp0] 
+	00262: MDAP[rd]   
+	00263: SRP2       
+	00264: IP         
+	00265: MDAP[rd]   
+	00266: IP         
+	00267: IP         
+	00268: SVTCA[y-axis] 
+	00269: MIAP[rd+ci] 
+	00270: MIRP[nrp0,md,rd,1] 
+	00271: MIAP[rd+ci] 
+	00272: MIAP[rd+ci] 
+	00273: SRP2       
+	00274: IP         
+	00275: MDAP[rd]   
+	00276: MIRP[nrp0,md,rd,1] 
+	00277: SRP1       
+	00278: SRP2       
+	00279: IP         
+	00280: MDAP[rd]   
+	00281: CALL       
+	00282: DELTAP1    
+	00283: SRP1       
+	00284: SRP2       
+	00285: IP         
+	00286: SRP1       
+	00287: SLOOP      
+	00288: IP         
+	00289: CALL       
+	00290: SRP2       
+	00291: IP         
+	00292: SRP1       
+	00293: SRP2       
+	00294: IP         
+	00295: SRP1       
+	00296: IP         
+	00297: IP         
+	00298: SRP1       
+	00299: SHP[rp1,zp0] 
+	00300: MDAP[rd]   
+	00301: CALL       
+	00302: DELTAP1    
+	00303: SHP[rp1,zp0] 
+	00304: MDAP[rd]   
+	00305: CALL       
+	00306: SHP[rp1,zp0] 
+	00307: MDAP[rd]   
+	00308: MIRP[nrp0,md,rd,1] 
+	00309: SRP1       
+	00310: SRP2       
+	00311: IP         
+	00312: SRP1       
+	00313: IP         
+	00314: IP         
+	00315: IUP[y]     
+	00316: IUP[x]     
+	00317: SVTCA[y-axis] 
+	00318: DELTAP1    
+	00319: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:                      Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual               Y-Short X-Short On
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual               Y-Short X-Short On
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual XDual         Y-Short X-Short On
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:        XDual         Y-Short X-Short On
+	 49:        XDual         Y-Short X-Short Off
+	 50:        XDual         Y-Short X-Short On
+	 51:        XDual         Y-Short X-Short Off
+	 52:        XDual         Y-Short X-Short On
+	 53:        XDual         Y-Short X-Short On
+	 54:        XDual         Y-Short X-Short Off
+	 55:        XDual         Y-Short X-Short On
+	 56:  YDual XDual         Y-Short X-Short Off
+	 57:  YDual XDual         Y-Short X-Short On
+	 58:  YDual XDual         Y-Short X-Short Off
+	 59:  YDual XDual         Y-Short         On
+	 60:  YDual               Y-Short X-Short On
+	 61:  YDual XDual         Y-Short         Off
+	 62:  YDual XDual         Y-Short X-Short Off
+	 63:  YDual XDual         Y-Short X-Short On
+	 64:        XDual         Y-Short X-Short On
+	 65:        XDual         Y-Short X-Short Off
+	 66:        XDual         Y-Short X-Short On
+	 67:        XDual         Y-Short X-Short Off
+	 68:        XDual         Y-Short X-Short Off
+	 69:                              X-Short On
+	 70:  YDual XDual         Y-Short         Off
+	 71:  YDual               Y-Short X-Short Off
+	 72:  YDual               Y-Short X-Short On
+	 73:                      Y-Short X-Short Off
+	 74:                      Y-Short X-Short Off
+	 75:                      Y-Short X-Short On
+	 76:  YDual XDual                 X-Short Off
+	 77:  YDual XDual         Y-Short X-Short On
+	 78:  YDual XDual         Y-Short X-Short Off
+	 79:                              X-Short On
+	 80:        XDual         Y-Short         Off
+	 81:                      Y-Short X-Short On
+	 82:                      Y-Short X-Short Off
+	 83:                      Y-Short X-Short On
+	 84:                      Y-Short X-Short On
+	 85:  YDual XDual         Y-Short         Off
+	 86:  YDual XDual         Y-Short X-Short On
+	 87:  YDual               Y-Short X-Short Off
+	 88:  YDual               Y-Short X-Short On
+	 89:  YDual               Y-Short X-Short Off
+	 90:  YDual XDual         Y-Short         On
+	 91:  YDual XDual         Y-Short         Off
+	 92:  YDual XDual         Y-Short X-Short On
+	 93:  YDual XDual         Y-Short X-Short Off
+	 94:  YDual XDual                 X-Short On
+	 95:  YDual XDual                 X-Short Off
+	 96:        XDual         Y-Short X-Short Off
+	 97:        XDual         Y-Short         On
+	 98:        XDual         Y-Short         Off
+	 99:                      Y-Short X-Short Off
+	100:                      Y-Short X-Short On
+	101:  YDual               Y-Short X-Short Off
+	102:  YDual                       X-Short On
+	103:  YDual                       X-Short Off
+	104:                      Y-Short X-Short Off
+	105:        XDual         Y-Short         On
+	106:        XDual         Y-Short         Off
+	107:        XDual         Y-Short X-Short Off
+	108:  YDual XDual                 X-Short On
+	109:  YDual XDual                 X-Short Off
+	110:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1038,  1350)  ->  Abs (  1038,  1350)
+	  1: Rel (   -48,  -180)  ->  Abs (   990,  1170)
+	  2: Rel (   -59,    29)  ->  Abs (   931,  1199)
+	  3: Rel (     2,   -91)  ->  Abs (   933,  1108)
+	  4: Rel (     0,  -134)  ->  Abs (   933,   974)
+	  5: Rel (   -34,  -126)  ->  Abs (   899,   848)
+	  6: Rel (   -37,  -138)  ->  Abs (   862,   710)
+	  7: Rel (   -80,  -135)  ->  Abs (   782,   575)
+	  8: Rel (    38,   -70)  ->  Abs (   820,   505)
+	  9: Rel (    15,   -40)  ->  Abs (   835,   465)
+	 10: Rel (    23,   -63)  ->  Abs (   858,   402)
+	 11: Rel (     0,   -65)  ->  Abs (   858,   337)
+	 12: Rel (     0,   -37)  ->  Abs (   858,   300)
+	 13: Rel (    -4,   -52)  ->  Abs (   854,   248)
+	 14: Rel (    -7,   -35)  ->  Abs (   847,   213)
+	 15: Rel (  -106,   -24)  ->  Abs (   741,   189)
+	 16: Rel (  -241,   -27)  ->  Abs (   500,   162)
+	 17: Rel (  -114,     0)  ->  Abs (   386,   162)
+	 18: Rel (     1,    19)  ->  Abs (   387,   181)
+	 19: Rel (     0,    13)  ->  Abs (   387,   194)
+	 20: Rel (     5,    76)  ->  Abs (   392,   270)
+	 21: Rel (    19,    65)  ->  Abs (   411,   335)
+	 22: Rel (   170,    91)  ->  Abs (   581,   426)
+	 23: Rel (   117,   145)  ->  Abs (   698,   571)
+	 24: Rel (   -70,   132)  ->  Abs (   628,   703)
+	 25: Rel (   -32,    55)  ->  Abs (   596,   758)
+	 26: Rel (   -35,    60)  ->  Abs (   561,   818)
+	 27: Rel (   -84,   127)  ->  Abs (   477,   945)
+	 28: Rel (   -31,    43)  ->  Abs (   446,   988)
+	 29: Rel (   -24,    26)  ->  Abs (   422,  1014)
+	 30: Rel (   -33,    35)  ->  Abs (   389,  1049)
+	 31: Rel (   -19,     0)  ->  Abs (   370,  1049)
+	 32: Rel (   -13,     0)  ->  Abs (   357,  1049)
+	 33: Rel (   -30,   -15)  ->  Abs (   327,  1034)
+	 34: Rel (   -16,    -8)  ->  Abs (   311,  1026)
+	 35: Rel (   -11,     0)  ->  Abs (   300,  1026)
+	 36: Rel (   -22,     0)  ->  Abs (   278,  1026)
+	 37: Rel (   -47,    44)  ->  Abs (   231,  1070)
+	 38: Rel (   -41,    39)  ->  Abs (   190,  1109)
+	 39: Rel (   -45,    57)  ->  Abs (   145,  1166)
+	 40: Rel (   -36,    46)  ->  Abs (   109,  1212)
+	 41: Rel (   -26,    61)  ->  Abs (    83,  1273)
+	 42: Rel (     0,    43)  ->  Abs (    83,  1316)
+	 43: Rel (     0,    62)  ->  Abs (    83,  1378)
+	 44: Rel (     8,    35)  ->  Abs (    91,  1413)
+	 45: Rel (    12,    53)  ->  Abs (   103,  1466)
+	 46: Rel (    29,     0)  ->  Abs (   132,  1466)
+	 47: Rel (    41,     0)  ->  Abs (   173,  1466)
+	 48: Rel (    78,   -78)  ->  Abs (   251,  1388)
+	 49: Rel (    69,   -70)  ->  Abs (   320,  1318)
+	 50: Rel (    85,  -114)  ->  Abs (   405,  1204)
+	 51: Rel (    75,  -101)  ->  Abs (   480,  1103)
+	 52: Rel (    73,  -117)  ->  Abs (   553,   986)
+	 53: Rel (   102,  -164)  ->  Abs (   655,   822)
+	 54: Rel (    45,   -74)  ->  Abs (   700,   748)
+	 55: Rel (    47,   -94)  ->  Abs (   747,   654)
+	 56: Rel (    67,   135)  ->  Abs (   814,   789)
+	 57: Rel (    25,   138)  ->  Abs (   839,   927)
+	 58: Rel (    22,   120)  ->  Abs (   861,  1047)
+	 59: Rel (     0,   186)  ->  Abs (   861,  1233)
+	 60: Rel (   -57,    33)  ->  Abs (   804,  1266)
+	 61: Rel (     0,    66)  ->  Abs (   804,  1332)
+	 62: Rel (    23,   107)  ->  Abs (   827,  1439)
+	 63: Rel (    21,    44)  ->  Abs (   848,  1483)
+	 64: Rel (    23,    -6)  ->  Abs (   871,  1477)
+	 65: Rel (     4,   -43)  ->  Abs (   875,  1434)
+	 66: Rel (    44,   -26)  ->  Abs (   919,  1408)
+	 67: Rel (    24,   -14)  ->  Abs (   943,  1394)
+	 68: Rel (    75,   -36)  ->  Abs (  1018,  1358)
+	 69: Rel (  -240,  -981)  ->  Abs (   778,   377)
+	 70: Rel (     0,    22)  ->  Abs (   778,   399)
+	 71: Rel (   -17,    47)  ->  Abs (   761,   446)
+	 72: Rel (   -29,    54)  ->  Abs (   732,   500)
+	 73: Rel (   -30,   -39)  ->  Abs (   702,   461)
+	 74: Rel (  -119,  -102)  ->  Abs (   583,   359)
+	 75: Rel (   -58,   -36)  ->  Abs (   525,   323)
+	 76: Rel (   118,     0)  ->  Abs (   643,   323)
+	 77: Rel (    50,     7)  ->  Abs (   693,   330)
+	 78: Rel (    85,    12)  ->  Abs (   778,   342)
+	 79: Rel (  -155,  -432)  ->  Abs (   623,   -90)
+	 80: Rel (     0,   -25)  ->  Abs (   623,  -115)
+	 81: Rel (   -31,   -20)  ->  Abs (   592,  -135)
+	 82: Rel (   -21,   -13)  ->  Abs (   571,  -148)
+	 83: Rel (   -42,   -15)  ->  Abs (   529,  -163)
+	 84: Rel (  -186,   -64)  ->  Abs (   343,  -227)
+	 85: Rel (     0,    46)  ->  Abs (   343,  -181)
+	 86: Rel (   100,    35)  ->  Abs (   443,  -146)
+	 87: Rel (   -31,    16)  ->  Abs (   412,  -130)
+	 88: Rel (   -16,    15)  ->  Abs (   396,  -115)
+	 89: Rel (   -21,    19)  ->  Abs (   375,   -96)
+	 90: Rel (     0,    21)  ->  Abs (   375,   -75)
+	 91: Rel (     0,    31)  ->  Abs (   375,   -44)
+	 92: Rel (    53,    56)  ->  Abs (   428,    12)
+	 93: Rel (    59,    62)  ->  Abs (   487,    74)
+	 94: Rel (    45,     0)  ->  Abs (   532,    74)
+	 95: Rel (    20,     0)  ->  Abs (   552,    74)
+	 96: Rel (    29,   -27)  ->  Abs (   581,    47)
+	 97: Rel (     0,   -22)  ->  Abs (   581,    25)
+	 98: Rel (     0,   -14)  ->  Abs (   581,    11)
+	 99: Rel (   -12,   -29)  ->  Abs (   569,   -18)
+	100: Rel (   -11,   -18)  ->  Abs (   558,   -36)
+	101: Rel (   -31,    28)  ->  Abs (   527,    -8)
+	102: Rel (   -36,     0)  ->  Abs (   491,    -8)
+	103: Rel (   -22,     0)  ->  Abs (   469,    -8)
+	104: Rel (   -43,   -18)  ->  Abs (   426,   -26)
+	105: Rel (     0,   -12)  ->  Abs (   426,   -38)
+	106: Rel (     0,   -15)  ->  Abs (   426,   -53)
+	107: Rel (    93,   -52)  ->  Abs (   519,  -105)
+	108: Rel (    33,     0)  ->  Abs (   552,  -105)
+	109: Rel (    22,     0)  ->  Abs (   574,  -105)
+	110: Rel (    19,     3)  ->  Abs (   593,  -102)
+
+	Glyph 1018: off = 0x0002D168, len = 630
+	  numberOfContours:	3
+	  xMin:			65
+	  yMin:			-227
+	  xMax:			1291
+	  yMax:			1502
+
+	EndPoints
+	---------
+	  0:  23
+	  1:  62
+	  2:  94
+
+	  Length of Instructions:	351
+	00000: PUSHW[2]             65   -32 
+	00005: PUSHB[4]             11    17    52    22 
+	00010: PUSHW[1]            -32 
+	00013: PUSHB[4]             15    17    52    20 
+	00018: PUSHW[1]            -32 
+	00021: PUSHB[4]             15    17    52    21 
+	00026: PUSHW[1]            -42 
+	00029: PUSHB[4]             14    17    52    41 
+	00034: PUSHW[1]            -42 
+	00037: PUSHB[4]             11    17    52    40 
+	00042: PUSHW[1]            -32 
+	00045: NPUSHB       (9):    11    17    52    91    28   137    43     2    34 
+	00056: PUSHW[1]            -32 
+	00059: NPUSHB      (30):     9    10    52    43    42     9    17    52    42    74 
+	                             9    17    52    41    84     9    17    52    40    64 
+	                             9    17    52    84    63    86    70    92    68    78 
+	00091: PUSHW[1]            757 
+	00094: NPUSHB      (10):    86    86    92    64    18    25    52    92    92    68 
+	00106: PUSHW[1]            -64 
+	00109: PUSHB[4]             18    19    52    68 
+	00114: PUSHW[1]            -64 
+	00117: NPUSHB      (28):     9    15    52    68    68    38     7    10    64    10 
+	                            17    52    10    10    18     3    32    32    48     3 
+	                            64     9    24    52     3     3    62    18 
+	00147: PUSHW[7]            754    48   751    51   754    39   763 
+	00162: PUSHB[3]             38    38    62 
+	00166: PUSHW[3]            751    25   747 
+	00173: NPUSHB      (11):    84    70    81    81    89    63    63    89    68    68 
+	                            74 
+	00186: PUSHW[1]            773 
+	00189: PUSHB[8]             89    89    45    38     7    10     0     3 
+	00198: PUSHW[1]            -64 
+	00201: PUSHB[7]             24    32    52     4     3     1     3 
+	00209: PUSHW[1]            -64 
+	00212: NPUSHB      (13):    10    15    52     3     3    16    32    55    45    11 
+	                            48     1    48 
+	00227: PUSHW[1]            784 
+	00230: PUSHB[3]             51    51    45 
+	00234: PUSHW[1]            784 
+	00237: PUSHB[3]             55    55    24 
+	00241: PUSHW[1]            752 
+	00244: PUSHB[4]             96    38    38    16 
+	00249: PUSHW[1]            315 
+	00252: SCANCTRL   
+	00253: MDAP[rd]   
+	00254: SHP[rp1,zp0] 
+	00255: MDAP[rd]   
+	00256: SRP0       
+	00257: MIRP[srp0,nmd,rd,1] 
+	00258: SHP[rp2,zp1] 
+	00259: MDAP[rd]   
+	00260: MIRP[nrp0,md,rd,1] 
+	00261: SHP[rp1,zp0] 
+	00262: RTHG       
+	00263: MDAP[rd]   
+	00264: RTG        
+	00265: MIRP[nrp0,md,rd,1] 
+	00266: DELTAP1    
+	00267: SRP1       
+	00268: SRP2       
+	00269: IP         
+	00270: RTHG       
+	00271: SRP2       
+	00272: IP         
+	00273: MDAP[rd]   
+	00274: CALL       
+	00275: DELTAP1    
+	00276: CALL       
+	00277: SHP[rp1,zp0] 
+	00278: IP         
+	00279: IP         
+	00280: RTG        
+	00281: SRP1       
+	00282: SRP2       
+	00283: IP         
+	00284: MDAP[rd]   
+	00285: MIRP[srp0,md,rd,1] 
+	00286: SHP[rp2,zp1] 
+	00287: MDAP[rd]   
+	00288: SRP1       
+	00289: SHP[rp1,zp0] 
+	00290: MDAP[rd]   
+	00291: SRP2       
+	00292: IP         
+	00293: MDAP[rd]   
+	00294: IP         
+	00295: IP         
+	00296: SVTCA[y-axis] 
+	00297: MIAP[rd+ci] 
+	00298: MIRP[nrp0,md,rd,1] 
+	00299: SHP[rp1,zp0] 
+	00300: MDAP[rd]   
+	00301: MIRP[nrp0,md,rd,1] 
+	00302: MIAP[rd+ci] 
+	00303: MIRP[nrp0,md,rd,1] 
+	00304: MIAP[rd+ci] 
+	00305: SRP2       
+	00306: IP         
+	00307: MDAP[rd]   
+	00308: CALL       
+	00309: SRP1       
+	00310: IP         
+	00311: MDAP[rd]   
+	00312: SRP1       
+	00313: SRP2       
+	00314: IP         
+	00315: MDAP[rd]   
+	00316: CALL       
+	00317: IP         
+	00318: SRP1       
+	00319: SHP[rp1,zp0] 
+	00320: MDAP[rd]   
+	00321: CALL       
+	00322: CALL       
+	00323: SHP[rp1,zp0] 
+	00324: MDAP[rd]   
+	00325: CALL       
+	00326: SHP[rp1,zp0] 
+	00327: MDAP[rd]   
+	00328: MIRP[nrp0,md,rd,1] 
+	00329: SRP1       
+	00330: SRP2       
+	00331: IP         
+	00332: SRP1       
+	00333: IP         
+	00334: IP         
+	00335: IUP[y]     
+	00336: IUP[x]     
+	00337: SVTCA[x-axis] 
+	00338: CALL       
+	00339: CALL       
+	00340: CALL       
+	00341: CALL       
+	00342: CALL       
+	00343: DELTAP1    
+	00344: SVTCA[y-axis] 
+	00345: CALL       
+	00346: CALL       
+	00347: CALL       
+	00348: CALL       
+	00349: CALL       
+	00350: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:                                      On
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:                              X-Short Off
+	 34:                      Y-Short X-Short On
+	 35:                      Y-Short X-Short Off
+	 36:                      Y-Short X-Short On
+	 37:                      Y-Short X-Short Off
+	 38:  YDual                               On
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual               Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual               Y-Short X-Short Off
+	 48:  YDual               Y-Short X-Short On
+	 49:  YDual XDual         Y-Short X-Short On
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short X-Short On
+	 54:        XDual         Y-Short X-Short Off
+	 55:        XDual         Y-Short X-Short On
+	 56:        XDual         Y-Short X-Short Off
+	 57:        XDual         Y-Short X-Short On
+	 58:        XDual         Y-Short X-Short Off
+	 59:        XDual         Y-Short X-Short On
+	 60:        XDual         Y-Short X-Short Off
+	 61:  YDual XDual                 X-Short On
+	 62:  YDual XDual                 X-Short On
+	 63:                                      On
+	 64:        XDual         Y-Short         Off
+	 65:                      Y-Short X-Short On
+	 66:                      Y-Short X-Short Off
+	 67:                      Y-Short X-Short On
+	 68:                      Y-Short X-Short On
+	 69:  YDual XDual         Y-Short         Off
+	 70:  YDual XDual         Y-Short X-Short On
+	 71:  YDual               Y-Short X-Short Off
+	 72:  YDual               Y-Short X-Short On
+	 73:  YDual               Y-Short X-Short Off
+	 74:  YDual XDual         Y-Short         On
+	 75:  YDual XDual         Y-Short         Off
+	 76:  YDual XDual         Y-Short X-Short On
+	 77:  YDual XDual         Y-Short X-Short Off
+	 78:  YDual XDual                 X-Short On
+	 79:  YDual XDual                 X-Short Off
+	 80:        XDual         Y-Short X-Short Off
+	 81:        XDual         Y-Short         On
+	 82:        XDual         Y-Short         Off
+	 83:                      Y-Short X-Short Off
+	 84:                      Y-Short X-Short On
+	 85:  YDual               Y-Short X-Short Off
+	 86:  YDual                       X-Short On
+	 87:  YDual                       X-Short Off
+	 88:                      Y-Short X-Short Off
+	 89:        XDual         Y-Short         On
+	 90:        XDual         Y-Short         Off
+	 91:        XDual         Y-Short X-Short Off
+	 92:  YDual XDual                 X-Short On
+	 93:  YDual XDual                 X-Short Off
+	 94:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   807,   816)  ->  Abs (   807,   816)
+	  1: Rel (     0,   -20)  ->  Abs (   807,   796)
+	  2: Rel (    -4,   -28)  ->  Abs (   803,   768)
+	  3: Rel (    -8,   -21)  ->  Abs (   795,   747)
+	  4: Rel (   -56,   125)  ->  Abs (   739,   872)
+	  5: Rel (  -110,   133)  ->  Abs (   629,  1005)
+	  6: Rel (  -122,   147)  ->  Abs (   507,  1152)
+	  7: Rel (   -70,     0)  ->  Abs (   437,  1152)
+	  8: Rel (   -15,     0)  ->  Abs (   422,  1152)
+	  9: Rel (   -30,   -52)  ->  Abs (   392,  1100)
+	 10: Rel (   -20,     0)  ->  Abs (   372,  1100)
+	 11: Rel (   -27,     0)  ->  Abs (   345,  1100)
+	 12: Rel (   -58,    35)  ->  Abs (   287,  1135)
+	 13: Rel (   -73,    44)  ->  Abs (   214,  1179)
+	 14: Rel (   -44,    58)  ->  Abs (   170,  1237)
+	 15: Rel (   -59,    78)  ->  Abs (   111,  1315)
+	 16: Rel (     0,    88)  ->  Abs (   111,  1403)
+	 17: Rel (     0,    63)  ->  Abs (   111,  1466)
+	 18: Rel (    41,     0)  ->  Abs (   152,  1466)
+	 19: Rel (    72,     0)  ->  Abs (   224,  1466)
+	 20: Rel (   153,   -91)  ->  Abs (   377,  1375)
+	 21: Rel (   171,  -101)  ->  Abs (   548,  1274)
+	 22: Rel (   116,  -135)  ->  Abs (   664,  1139)
+	 23: Rel (   143,  -165)  ->  Abs (   807,   974)
+	 24: Rel (   484,  -681)  ->  Abs (  1291,   293)
+	 25: Rel (  -131,     0)  ->  Abs (  1160,   293)
+	 26: Rel (   -84,     0)  ->  Abs (  1076,   293)
+	 27: Rel (   -51,    91)  ->  Abs (  1025,   384)
+	 28: Rel (   -61,   110)  ->  Abs (   964,   494)
+	 29: Rel (     0,   223)  ->  Abs (   964,   717)
+	 30: Rel (     0,    16)  ->  Abs (   964,   733)
+	 31: Rel (    -7,    54)  ->  Abs (   957,   787)
+	 32: Rel (     0,     7)  ->  Abs (   957,   794)
+	 33: Rel (   -96,  -267)  ->  Abs (   861,   527)
+	 34: Rel (   -75,   -99)  ->  Abs (   786,   428)
+	 35: Rel (   -89,  -116)  ->  Abs (   697,   312)
+	 36: Rel (  -162,   -38)  ->  Abs (   535,   274)
+	 37: Rel (  -138,   -32)  ->  Abs (   397,   242)
+	 38: Rel (  -332,     0)  ->  Abs (    65,   242)
+	 39: Rel (     0,    28)  ->  Abs (    65,   270)
+	 40: Rel (   269,    81)  ->  Abs (   334,   351)
+	 41: Rel (   132,    59)  ->  Abs (   466,   410)
+	 42: Rel (   213,    94)  ->  Abs (   679,   504)
+	 43: Rel (   110,   123)  ->  Abs (   789,   627)
+	 44: Rel (   133,   148)  ->  Abs (   922,   775)
+	 45: Rel (     0,   203)  ->  Abs (   922,   978)
+	 46: Rel (     0,    98)  ->  Abs (   922,  1076)
+	 47: Rel (   -25,   170)  ->  Abs (   897,  1246)
+	 48: Rel (   -22,    89)  ->  Abs (   875,  1335)
+	 49: Rel (    33,    84)  ->  Abs (   908,  1419)
+	 50: Rel (    20,    49)  ->  Abs (   928,  1468)
+	 51: Rel (    17,    34)  ->  Abs (   945,  1502)
+	 52: Rel (    26,  -144)  ->  Abs (   971,  1358)
+	 53: Rel (    23,  -167)  ->  Abs (   994,  1191)
+	 54: Rel (    16,  -115)  ->  Abs (  1010,  1076)
+	 55: Rel (    15,  -132)  ->  Abs (  1025,   944)
+	 56: Rel (    19,  -162)  ->  Abs (  1044,   782)
+	 57: Rel (    14,   -99)  ->  Abs (  1058,   683)
+	 58: Rel (    18,  -126)  ->  Abs (  1076,   557)
+	 59: Rel (    36,   -54)  ->  Abs (  1112,   503)
+	 60: Rel (    24,   -36)  ->  Abs (  1136,   467)
+	 61: Rel (    24,     0)  ->  Abs (  1160,   467)
+	 62: Rel (   131,     0)  ->  Abs (  1291,   467)
+	 63: Rel (  -827,  -557)  ->  Abs (   464,   -90)
+	 64: Rel (     0,   -25)  ->  Abs (   464,  -115)
+	 65: Rel (   -31,   -20)  ->  Abs (   433,  -135)
+	 66: Rel (   -21,   -13)  ->  Abs (   412,  -148)
+	 67: Rel (   -42,   -15)  ->  Abs (   370,  -163)
+	 68: Rel (  -186,   -64)  ->  Abs (   184,  -227)
+	 69: Rel (     0,    46)  ->  Abs (   184,  -181)
+	 70: Rel (   100,    35)  ->  Abs (   284,  -146)
+	 71: Rel (   -31,    16)  ->  Abs (   253,  -130)
+	 72: Rel (   -16,    15)  ->  Abs (   237,  -115)
+	 73: Rel (   -21,    19)  ->  Abs (   216,   -96)
+	 74: Rel (     0,    21)  ->  Abs (   216,   -75)
+	 75: Rel (     0,    31)  ->  Abs (   216,   -44)
+	 76: Rel (    53,    56)  ->  Abs (   269,    12)
+	 77: Rel (    59,    62)  ->  Abs (   328,    74)
+	 78: Rel (    45,     0)  ->  Abs (   373,    74)
+	 79: Rel (    20,     0)  ->  Abs (   393,    74)
+	 80: Rel (    29,   -27)  ->  Abs (   422,    47)
+	 81: Rel (     0,   -22)  ->  Abs (   422,    25)
+	 82: Rel (     0,   -14)  ->  Abs (   422,    11)
+	 83: Rel (   -12,   -29)  ->  Abs (   410,   -18)
+	 84: Rel (   -11,   -18)  ->  Abs (   399,   -36)
+	 85: Rel (   -31,    28)  ->  Abs (   368,    -8)
+	 86: Rel (   -36,     0)  ->  Abs (   332,    -8)
+	 87: Rel (   -22,     0)  ->  Abs (   310,    -8)
+	 88: Rel (   -43,   -18)  ->  Abs (   267,   -26)
+	 89: Rel (     0,   -12)  ->  Abs (   267,   -38)
+	 90: Rel (     0,   -15)  ->  Abs (   267,   -53)
+	 91: Rel (    93,   -52)  ->  Abs (   360,  -105)
+	 92: Rel (    33,     0)  ->  Abs (   393,  -105)
+	 93: Rel (    22,     0)  ->  Abs (   415,  -105)
+	 94: Rel (    19,     3)  ->  Abs (   434,  -102)
+
+	Glyph 1019: off = 0x0002D3DE, len = 464
+	  numberOfContours:	2
+	  xMin:			83
+	  yMin:			162
+	  xMax:			1038
+	  yMax:			1483
+
+	EndPoints
+	---------
+	  0:  68
+	  1:  78
+
+	  Length of Instructions:	224
+	00000: NPUSHB      (41):    84     8    86    74     2    60    59     0     1     2 
+	                            75    31    46    55    32    12    17    52    21    72 
+	                            23     7    55     5    35    14    75    17   143    35 
+	                             1    35    64     9    17    52    35    35    46    75 
+	                             2 
+	00043: PUSHW[1]            751 
+	00046: PUSHB[4]              0     0    75    63 
+	00051: PUSHW[8]            754    46   754    17   751    64    75   747 
+	00068: NPUSHB      (11):    31    35    42    55    72     7    75    21    23    17 
+	                            64 
+	00081: PUSHW[1]            763 
+	00084: NPUSHB      (11):    32    63    63    60    60    59     1     2     0     0 
+	                            59 
+	00097: PUSHW[1]            780 
+	00100: PUSHB[3]              2     2     7 
+	00104: PUSHW[3]            780    23   -64 
+	00111: NPUSHB       (9):     9    10    52    23    23    17    17    42    69 
+	00122: PUSHW[1]            771 
+	00125: NPUSHB      (17):    11    64    13    15    52    11    64     9    11    52 
+	                            11    11    80    64    42     1    42 
+	00144: PUSHW[1]            277 
+	00147: SCANCTRL   
+	00148: MDAP[rd]   
+	00149: DELTAP1    
+	00150: SRP1       
+	00151: SHP[rp1,zp0] 
+	00152: MDAP[rd]   
+	00153: CALL       
+	00154: CALL       
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: SRP1       
+	00157: IP         
+	00158: MDAP[rd]   
+	00159: IP         
+	00160: MDAP[rd]   
+	00161: CALL       
+	00162: MIRP[srp0,md,rd,1] 
+	00163: SHP[rp2,zp1] 
+	00164: MDAP[rd]   
+	00165: MIRP[nrp0,md,rd,1] 
+	00166: SHP[rp1,zp0] 
+	00167: MDAP[rd]   
+	00168: SRP2       
+	00169: IP         
+	00170: SRP1       
+	00171: SHP[rp1,zp0] 
+	00172: MDAP[rd]   
+	00173: SHP[rp1,zp0] 
+	00174: RTHG       
+	00175: MDAP[rd]   
+	00176: SMD        
+	00177: MIRP[nrp0,md,rd,1] 
+	00178: SRP1       
+	00179: SRP2       
+	00180: IP         
+	00181: IP         
+	00182: SRP1       
+	00183: IP         
+	00184: IP         
+	00185: SRP1       
+	00186: IP         
+	00187: IP         
+	00188: SVTCA[y-axis] 
+	00189: RTG        
+	00190: MIAP[rd+ci] 
+	00191: SMD        
+	00192: MIRP[nrp0,md,rd,1] 
+	00193: MIAP[rd+ci] 
+	00194: MIAP[rd+ci] 
+	00195: SRP2       
+	00196: IP         
+	00197: MDAP[rd]   
+	00198: MIRP[nrp0,md,rd,1] 
+	00199: SRP1       
+	00200: SRP2       
+	00201: IP         
+	00202: MDAP[rd]   
+	00203: CALL       
+	00204: DELTAP1    
+	00205: SRP1       
+	00206: SRP2       
+	00207: IP         
+	00208: SRP1       
+	00209: SLOOP      
+	00210: IP         
+	00211: CALL       
+	00212: SRP2       
+	00213: IP         
+	00214: SRP1       
+	00215: SRP2       
+	00216: IP         
+	00217: SRP1       
+	00218: IP         
+	00219: IP         
+	00220: IUP[y]     
+	00221: IUP[x]     
+	00222: SVTCA[y-axis] 
+	00223: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:                      Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual               Y-Short X-Short On
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual               Y-Short X-Short On
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual XDual         Y-Short X-Short On
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:        XDual         Y-Short X-Short On
+	 49:        XDual         Y-Short X-Short Off
+	 50:        XDual         Y-Short X-Short On
+	 51:        XDual         Y-Short X-Short Off
+	 52:        XDual         Y-Short X-Short On
+	 53:        XDual         Y-Short X-Short On
+	 54:        XDual         Y-Short X-Short Off
+	 55:        XDual         Y-Short X-Short On
+	 56:  YDual XDual         Y-Short X-Short Off
+	 57:  YDual XDual         Y-Short X-Short On
+	 58:  YDual XDual         Y-Short X-Short Off
+	 59:  YDual XDual         Y-Short         On
+	 60:  YDual               Y-Short X-Short On
+	 61:  YDual XDual         Y-Short         Off
+	 62:  YDual XDual         Y-Short X-Short Off
+	 63:  YDual XDual         Y-Short X-Short On
+	 64:        XDual         Y-Short X-Short On
+	 65:        XDual         Y-Short X-Short Off
+	 66:        XDual         Y-Short X-Short On
+	 67:        XDual         Y-Short X-Short Off
+	 68:        XDual         Y-Short X-Short Off
+	 69:                              X-Short On
+	 70:  YDual XDual         Y-Short         Off
+	 71:  YDual               Y-Short X-Short Off
+	 72:  YDual               Y-Short X-Short On
+	 73:                      Y-Short X-Short Off
+	 74:                      Y-Short X-Short Off
+	 75:                      Y-Short X-Short On
+	 76:  YDual XDual                 X-Short Off
+	 77:  YDual XDual         Y-Short X-Short On
+	 78:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1038,  1350)  ->  Abs (  1038,  1350)
+	  1: Rel (   -48,  -180)  ->  Abs (   990,  1170)
+	  2: Rel (   -59,    29)  ->  Abs (   931,  1199)
+	  3: Rel (     2,   -91)  ->  Abs (   933,  1108)
+	  4: Rel (     0,  -134)  ->  Abs (   933,   974)
+	  5: Rel (   -34,  -126)  ->  Abs (   899,   848)
+	  6: Rel (   -37,  -138)  ->  Abs (   862,   710)
+	  7: Rel (   -80,  -135)  ->  Abs (   782,   575)
+	  8: Rel (    38,   -70)  ->  Abs (   820,   505)
+	  9: Rel (    15,   -40)  ->  Abs (   835,   465)
+	 10: Rel (    23,   -63)  ->  Abs (   858,   402)
+	 11: Rel (     0,   -65)  ->  Abs (   858,   337)
+	 12: Rel (     0,   -37)  ->  Abs (   858,   300)
+	 13: Rel (    -4,   -52)  ->  Abs (   854,   248)
+	 14: Rel (    -7,   -35)  ->  Abs (   847,   213)
+	 15: Rel (  -106,   -24)  ->  Abs (   741,   189)
+	 16: Rel (  -241,   -27)  ->  Abs (   500,   162)
+	 17: Rel (  -114,     0)  ->  Abs (   386,   162)
+	 18: Rel (     1,    19)  ->  Abs (   387,   181)
+	 19: Rel (     0,    13)  ->  Abs (   387,   194)
+	 20: Rel (     5,    76)  ->  Abs (   392,   270)
+	 21: Rel (    19,    65)  ->  Abs (   411,   335)
+	 22: Rel (   170,    91)  ->  Abs (   581,   426)
+	 23: Rel (   117,   145)  ->  Abs (   698,   571)
+	 24: Rel (   -70,   132)  ->  Abs (   628,   703)
+	 25: Rel (   -32,    55)  ->  Abs (   596,   758)
+	 26: Rel (   -35,    60)  ->  Abs (   561,   818)
+	 27: Rel (   -84,   127)  ->  Abs (   477,   945)
+	 28: Rel (   -31,    43)  ->  Abs (   446,   988)
+	 29: Rel (   -24,    26)  ->  Abs (   422,  1014)
+	 30: Rel (   -33,    35)  ->  Abs (   389,  1049)
+	 31: Rel (   -19,     0)  ->  Abs (   370,  1049)
+	 32: Rel (   -13,     0)  ->  Abs (   357,  1049)
+	 33: Rel (   -30,   -15)  ->  Abs (   327,  1034)
+	 34: Rel (   -16,    -8)  ->  Abs (   311,  1026)
+	 35: Rel (   -11,     0)  ->  Abs (   300,  1026)
+	 36: Rel (   -22,     0)  ->  Abs (   278,  1026)
+	 37: Rel (   -47,    44)  ->  Abs (   231,  1070)
+	 38: Rel (   -41,    39)  ->  Abs (   190,  1109)
+	 39: Rel (   -45,    57)  ->  Abs (   145,  1166)
+	 40: Rel (   -36,    46)  ->  Abs (   109,  1212)
+	 41: Rel (   -26,    61)  ->  Abs (    83,  1273)
+	 42: Rel (     0,    43)  ->  Abs (    83,  1316)
+	 43: Rel (     0,    62)  ->  Abs (    83,  1378)
+	 44: Rel (     8,    35)  ->  Abs (    91,  1413)
+	 45: Rel (    12,    53)  ->  Abs (   103,  1466)
+	 46: Rel (    29,     0)  ->  Abs (   132,  1466)
+	 47: Rel (    41,     0)  ->  Abs (   173,  1466)
+	 48: Rel (    78,   -78)  ->  Abs (   251,  1388)
+	 49: Rel (    69,   -70)  ->  Abs (   320,  1318)
+	 50: Rel (    85,  -114)  ->  Abs (   405,  1204)
+	 51: Rel (    75,  -101)  ->  Abs (   480,  1103)
+	 52: Rel (    73,  -117)  ->  Abs (   553,   986)
+	 53: Rel (   102,  -164)  ->  Abs (   655,   822)
+	 54: Rel (    45,   -74)  ->  Abs (   700,   748)
+	 55: Rel (    47,   -94)  ->  Abs (   747,   654)
+	 56: Rel (    67,   135)  ->  Abs (   814,   789)
+	 57: Rel (    25,   138)  ->  Abs (   839,   927)
+	 58: Rel (    22,   120)  ->  Abs (   861,  1047)
+	 59: Rel (     0,   186)  ->  Abs (   861,  1233)
+	 60: Rel (   -57,    33)  ->  Abs (   804,  1266)
+	 61: Rel (     0,    66)  ->  Abs (   804,  1332)
+	 62: Rel (    23,   107)  ->  Abs (   827,  1439)
+	 63: Rel (    21,    44)  ->  Abs (   848,  1483)
+	 64: Rel (    23,    -6)  ->  Abs (   871,  1477)
+	 65: Rel (     4,   -43)  ->  Abs (   875,  1434)
+	 66: Rel (    44,   -26)  ->  Abs (   919,  1408)
+	 67: Rel (    24,   -14)  ->  Abs (   943,  1394)
+	 68: Rel (    75,   -36)  ->  Abs (  1018,  1358)
+	 69: Rel (  -240,  -981)  ->  Abs (   778,   377)
+	 70: Rel (     0,    22)  ->  Abs (   778,   399)
+	 71: Rel (   -17,    47)  ->  Abs (   761,   446)
+	 72: Rel (   -29,    54)  ->  Abs (   732,   500)
+	 73: Rel (   -30,   -39)  ->  Abs (   702,   461)
+	 74: Rel (  -119,  -102)  ->  Abs (   583,   359)
+	 75: Rel (   -58,   -36)  ->  Abs (   525,   323)
+	 76: Rel (   118,     0)  ->  Abs (   643,   323)
+	 77: Rel (    50,     7)  ->  Abs (   693,   330)
+	 78: Rel (    85,    12)  ->  Abs (   778,   342)
+
+	Glyph 1020: off = 0x0002D5AE, len = 442
+	  numberOfContours:	2
+	  xMin:			65
+	  yMin:			242
+	  xMax:			1291
+	  yMax:			1502
+
+	EndPoints
+	---------
+	  0:  23
+	  1:  62
+
+	  Length of Instructions:	249
+	00000: PUSHW[2]             22   -32 
+	00005: PUSHB[4]             15    17    52    20 
+	00010: PUSHW[1]            -32 
+	00013: PUSHB[4]             15    17    52    21 
+	00018: PUSHW[1]            -42 
+	00021: PUSHB[4]             14    17    52    41 
+	00026: PUSHW[1]            -42 
+	00029: PUSHB[4]             11    17    52    40 
+	00034: PUSHW[1]            -32 
+	00037: NPUSHB       (9):    11    17    52    91    28   137    43     2    34 
+	00048: PUSHW[1]            -32 
+	00051: NPUSHB      (45):     9    10    52    43    42     9    17    52    42    74 
+	                             9    17    52    41    84     9    17    52    40    64 
+	                             9    17    52     7    10    64    10    17    52    10 
+	                            10    18     3    32    32    48     3    64     9    24 
+	                            52     3     3    62    18 
+	00098: PUSHW[7]            754    48   751    51   754    39   763 
+	00113: PUSHB[3]             38    38    62 
+	00117: PUSHW[3]            751    25   747 
+	00124: PUSHB[4]              7    10     0     3 
+	00129: PUSHW[1]            -64 
+	00132: PUSHB[7]             24    32    52     4     3     1     3 
+	00140: PUSHW[1]            -64 
+	00143: NPUSHB      (13):    10    15    52     3     3    16    32    55    45    11 
+	                            48     1    48 
+	00158: PUSHW[1]            784 
+	00161: PUSHB[3]             51    51    45 
+	00165: PUSHW[1]            784 
+	00168: PUSHB[3]             55    55    24 
+	00172: PUSHW[1]            752 
+	00175: PUSHB[4]             64    38    38    16 
+	00180: PUSHW[1]            285 
+	00183: SCANCTRL   
+	00184: MDAP[rd]   
+	00185: SHP[rp1,zp0] 
+	00186: MDAP[rd]   
+	00187: SRP0       
+	00188: MIRP[srp0,nmd,rd,1] 
+	00189: SHP[rp2,zp1] 
+	00190: MDAP[rd]   
+	00191: MIRP[nrp0,md,rd,1] 
+	00192: SHP[rp1,zp0] 
+	00193: RTHG       
+	00194: MDAP[rd]   
+	00195: RTG        
+	00196: MIRP[nrp0,md,rd,1] 
+	00197: DELTAP1    
+	00198: SRP1       
+	00199: SRP2       
+	00200: IP         
+	00201: RTHG       
+	00202: SRP2       
+	00203: IP         
+	00204: MDAP[rd]   
+	00205: CALL       
+	00206: DELTAP1    
+	00207: CALL       
+	00208: SHP[rp1,zp0] 
+	00209: IP         
+	00210: IP         
+	00211: SVTCA[y-axis] 
+	00212: RTG        
+	00213: MIAP[rd+ci] 
+	00214: MIRP[nrp0,md,rd,1] 
+	00215: SHP[rp1,zp0] 
+	00216: MDAP[rd]   
+	00217: MIRP[nrp0,md,rd,1] 
+	00218: MIAP[rd+ci] 
+	00219: MIRP[nrp0,md,rd,1] 
+	00220: MIAP[rd+ci] 
+	00221: SRP2       
+	00222: IP         
+	00223: MDAP[rd]   
+	00224: CALL       
+	00225: SRP1       
+	00226: IP         
+	00227: MDAP[rd]   
+	00228: SRP1       
+	00229: SRP2       
+	00230: IP         
+	00231: MDAP[rd]   
+	00232: CALL       
+	00233: IP         
+	00234: IUP[y]     
+	00235: IUP[x]     
+	00236: SVTCA[x-axis] 
+	00237: CALL       
+	00238: CALL       
+	00239: CALL       
+	00240: CALL       
+	00241: CALL       
+	00242: DELTAP1    
+	00243: SVTCA[y-axis] 
+	00244: CALL       
+	00245: CALL       
+	00246: CALL       
+	00247: CALL       
+	00248: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:                                      On
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:                              X-Short Off
+	 34:                      Y-Short X-Short On
+	 35:                      Y-Short X-Short Off
+	 36:                      Y-Short X-Short On
+	 37:                      Y-Short X-Short Off
+	 38:  YDual                               On
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual               Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual               Y-Short X-Short Off
+	 48:  YDual               Y-Short X-Short On
+	 49:  YDual XDual         Y-Short X-Short On
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short X-Short On
+	 54:        XDual         Y-Short X-Short Off
+	 55:        XDual         Y-Short X-Short On
+	 56:        XDual         Y-Short X-Short Off
+	 57:        XDual         Y-Short X-Short On
+	 58:        XDual         Y-Short X-Short Off
+	 59:        XDual         Y-Short X-Short On
+	 60:        XDual         Y-Short X-Short Off
+	 61:  YDual XDual                 X-Short On
+	 62:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   807,   816)  ->  Abs (   807,   816)
+	  1: Rel (     0,   -20)  ->  Abs (   807,   796)
+	  2: Rel (    -4,   -28)  ->  Abs (   803,   768)
+	  3: Rel (    -8,   -21)  ->  Abs (   795,   747)
+	  4: Rel (   -56,   125)  ->  Abs (   739,   872)
+	  5: Rel (  -110,   133)  ->  Abs (   629,  1005)
+	  6: Rel (  -122,   147)  ->  Abs (   507,  1152)
+	  7: Rel (   -70,     0)  ->  Abs (   437,  1152)
+	  8: Rel (   -15,     0)  ->  Abs (   422,  1152)
+	  9: Rel (   -30,   -52)  ->  Abs (   392,  1100)
+	 10: Rel (   -20,     0)  ->  Abs (   372,  1100)
+	 11: Rel (   -27,     0)  ->  Abs (   345,  1100)
+	 12: Rel (   -58,    35)  ->  Abs (   287,  1135)
+	 13: Rel (   -73,    44)  ->  Abs (   214,  1179)
+	 14: Rel (   -44,    58)  ->  Abs (   170,  1237)
+	 15: Rel (   -59,    78)  ->  Abs (   111,  1315)
+	 16: Rel (     0,    88)  ->  Abs (   111,  1403)
+	 17: Rel (     0,    63)  ->  Abs (   111,  1466)
+	 18: Rel (    41,     0)  ->  Abs (   152,  1466)
+	 19: Rel (    72,     0)  ->  Abs (   224,  1466)
+	 20: Rel (   153,   -91)  ->  Abs (   377,  1375)
+	 21: Rel (   171,  -101)  ->  Abs (   548,  1274)
+	 22: Rel (   116,  -135)  ->  Abs (   664,  1139)
+	 23: Rel (   143,  -165)  ->  Abs (   807,   974)
+	 24: Rel (   484,  -681)  ->  Abs (  1291,   293)
+	 25: Rel (  -131,     0)  ->  Abs (  1160,   293)
+	 26: Rel (   -84,     0)  ->  Abs (  1076,   293)
+	 27: Rel (   -51,    91)  ->  Abs (  1025,   384)
+	 28: Rel (   -61,   110)  ->  Abs (   964,   494)
+	 29: Rel (     0,   223)  ->  Abs (   964,   717)
+	 30: Rel (     0,    16)  ->  Abs (   964,   733)
+	 31: Rel (    -7,    54)  ->  Abs (   957,   787)
+	 32: Rel (     0,     7)  ->  Abs (   957,   794)
+	 33: Rel (   -96,  -267)  ->  Abs (   861,   527)
+	 34: Rel (   -75,   -99)  ->  Abs (   786,   428)
+	 35: Rel (   -89,  -116)  ->  Abs (   697,   312)
+	 36: Rel (  -162,   -38)  ->  Abs (   535,   274)
+	 37: Rel (  -138,   -32)  ->  Abs (   397,   242)
+	 38: Rel (  -332,     0)  ->  Abs (    65,   242)
+	 39: Rel (     0,    28)  ->  Abs (    65,   270)
+	 40: Rel (   269,    81)  ->  Abs (   334,   351)
+	 41: Rel (   132,    59)  ->  Abs (   466,   410)
+	 42: Rel (   213,    94)  ->  Abs (   679,   504)
+	 43: Rel (   110,   123)  ->  Abs (   789,   627)
+	 44: Rel (   133,   148)  ->  Abs (   922,   775)
+	 45: Rel (     0,   203)  ->  Abs (   922,   978)
+	 46: Rel (     0,    98)  ->  Abs (   922,  1076)
+	 47: Rel (   -25,   170)  ->  Abs (   897,  1246)
+	 48: Rel (   -22,    89)  ->  Abs (   875,  1335)
+	 49: Rel (    33,    84)  ->  Abs (   908,  1419)
+	 50: Rel (    20,    49)  ->  Abs (   928,  1468)
+	 51: Rel (    17,    34)  ->  Abs (   945,  1502)
+	 52: Rel (    26,  -144)  ->  Abs (   971,  1358)
+	 53: Rel (    23,  -167)  ->  Abs (   994,  1191)
+	 54: Rel (    16,  -115)  ->  Abs (  1010,  1076)
+	 55: Rel (    15,  -132)  ->  Abs (  1025,   944)
+	 56: Rel (    19,  -162)  ->  Abs (  1044,   782)
+	 57: Rel (    14,   -99)  ->  Abs (  1058,   683)
+	 58: Rel (    18,  -126)  ->  Abs (  1076,   557)
+	 59: Rel (    36,   -54)  ->  Abs (  1112,   503)
+	 60: Rel (    24,   -36)  ->  Abs (  1136,   467)
+	 61: Rel (    24,     0)  ->  Abs (  1160,   467)
+	 62: Rel (   131,     0)  ->  Abs (  1291,   467)
+
+	Glyph 1021: off = 0x0002D768, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1022: off = 0x0002D792, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1023: off = 0x0002D7BC, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			70
+	  yMin:			1378
+	  xMax:			412
+	  yMax:			1585
+
+	     0: Flags:		0x0016
+		Glyf Index:	756
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1024: off = 0x0002D7CC, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			70
+	  yMin:			1239
+	  xMax:			412
+	  yMax:			1597
+
+	     0: Flags:		0x0016
+		Glyf Index:	753
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1025: off = 0x0002D7DC, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1026: off = 0x0002D806, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1027: off = 0x0002D830, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1028: off = 0x0002D85A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			70
+	  yMin:			1239
+	  xMax:			337
+	  yMax:			1549
+
+	     0: Flags:		0x0016
+		Glyf Index:	760
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1029: off = 0x0002D86A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			70
+	  yMin:			1239
+	  xMax:			433
+	  yMax:			1561
+
+	     0: Flags:		0x0016
+		Glyf Index:	759
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1030: off = 0x0002D87A, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1031: off = 0x0002D8A4, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1032: off = 0x0002D8CE, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			72
+	  yMin:			1239
+	  xMax:			429
+	  yMax:			1674
+
+	     0: Flags:		0x0016
+		Glyf Index:	757
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1033: off = 0x0002D8DE, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			70
+	  yMin:			1239
+	  xMax:			485
+	  yMax:			1626
+
+	     0: Flags:		0x0016
+		Glyf Index:	754
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1034: off = 0x0002D8EE, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1035: off = 0x0002D918, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1036: off = 0x0002D942, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1037: off = 0x0002D96C, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			70
+	  yMin:			1239
+	  xMax:			433
+	  yMax:			1721
+
+	     0: Flags:		0x0016
+		Glyf Index:	841
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1038: off = 0x0002D97C, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			70
+	  yMin:			1239
+	  xMax:			433
+	  yMax:			1879
+
+	     0: Flags:		0x0016
+		Glyf Index:	786
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1039: off = 0x0002D98C, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			70
+	  yMin:			1239
+	  xMax:			433
+	  yMax:			1747
+
+	     0: Flags:		0x0016
+		Glyf Index:	843
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1040: off = 0x0002D99C, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			70
+	  yMin:			1239
+	  xMax:			433
+	  yMax:			1853
+
+	     0: Flags:		0x0016
+		Glyf Index:	840
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1041: off = 0x0002D9AC, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			64
+	  yMin:			1241
+	  xMax:			433
+	  yMax:			1838
+
+	     0: Flags:		0x0016
+		Glyf Index:	842
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1042: off = 0x0002D9BC, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			48
+	  yMin:			1239
+	  xMax:			463
+	  yMax:			1911
+
+	     0: Flags:		0x0016
+		Glyf Index:	839
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1043: off = 0x0002D9CC, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1044: off = 0x0002D9F6, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			70
+	  yMin:			-43
+	  xMax:			412
+	  yMax:			164
+
+	     0: Flags:		0x0016
+		Glyf Index:	758
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1045: off = 0x0002DA06, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			70
+	  yMin:			-266
+	  xMax:			412
+	  yMax:			91
+
+	     0: Flags:		0x0016
+		Glyf Index:	755
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1046: off = 0x0002DA16, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1047: off = 0x0002DA40, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1048: off = 0x0002DA6A, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1049: off = 0x0002DA94, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1050: off = 0x0002DABE, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1051: off = 0x0002DAE8, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1052: off = 0x0002DB12, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1053: off = 0x0002DB3C, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1054: off = 0x0002DB66, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1055: off = 0x0002DB90, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1056: off = 0x0002DBBA, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1057: off = 0x0002DBE4, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1058: off = 0x0002DC0E, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1059: off = 0x0002DC38, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1060: off = 0x0002DC62, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1061: off = 0x0002DC8C, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1062: off = 0x0002DCB6, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1063: off = 0x0002DCE0, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1064: off = 0x0002DD0A, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1065: off = 0x0002DD34, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1066: off = 0x0002DD5E, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1067: off = 0x0002DD88, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1068: off = 0x0002DDB2, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1069: off = 0x0002DDDC, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1070: off = 0x0002DE06, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1071: off = 0x0002DE30, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1072: off = 0x0002DE5A, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1073: off = 0x0002DE84, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1074: off = 0x0002DEAE, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1075: off = 0x0002DED8, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1076: off = 0x0002DF02, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1077: off = 0x0002DF2C, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1078: off = 0x0002DF56, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1079: off = 0x0002DF80, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1080: off = 0x0002DFAA, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1081: off = 0x0002DFD4, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1082: off = 0x0002DFFE, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1083: off = 0x0002E028, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1084: off = 0x0002E052, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1085: off = 0x0002E07C, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1086: off = 0x0002E0A6, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1087: off = 0x0002E0D0, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1088: off = 0x0002E0FA, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1089: off = 0x0002E124, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1090: off = 0x0002E14E, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1091: off = 0x0002E178, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1092: off = 0x0002E1A2, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1093: off = 0x0002E1CC, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1094: off = 0x0002E1F6, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1095: off = 0x0002E220, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1096: off = 0x0002E24A, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1097: off = 0x0002E274, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1098: off = 0x0002E29E, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1099: off = 0x0002E2C8, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1100: off = 0x0002E2F2, len = 160
+	  numberOfContours:	2
+	  xMin:			202
+	  yMin:			280
+	  xMax:			457
+	  yMax:			1463
+
+	EndPoints
+	---------
+	  0:  18
+	  1:  30
+
+	  Length of Instructions:	62
+	00000: PUSHW[2]             16   754 
+	00005: PUSHB[8]              7    64     9    10    52     7     7    28 
+	00014: PUSHW[5]            750    22   748     6   753 
+	00025: PUSHB[5]              7     7    19    25     0 
+	00031: PUSHW[1]            749 
+	00034: PUSHB[3]             13    13    19 
+	00038: PUSHW[2]            749    25 
+	00043: MDAP[rd]   
+	00044: MIRP[nrp0,md,rd,1] 
+	00045: SHP[rp1,zp0] 
+	00046: MDAP[rd]   
+	00047: MIRP[nrp0,md,rd,1] 
+	00048: SRP1       
+	00049: SRP2       
+	00050: IP         
+	00051: MDAP[rd]   
+	00052: MIRP[nrp0,md,rd,1] 
+	00053: SVTCA[y-axis] 
+	00054: MIAP[rd+ci] 
+	00055: MIRP[srp0,md,rd,1] 
+	00056: SHP[rp2,zp1] 
+	00057: MDAP[rd]   
+	00058: CALL       
+	00059: MIAP[rd+ci] 
+	00060: IUP[y]     
+	00061: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:  YDual                       X-Short On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:                              X-Short On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   457,  1309)  ->  Abs (   457,  1309)
+	  1: Rel (     0,   -67)  ->  Abs (   457,  1242)
+	  2: Rel (   -26,  -118)  ->  Abs (   431,  1124)
+	  3: Rel (   -43,  -195)  ->  Abs (   388,   929)
+	  4: Rel (    -5,   -28)  ->  Abs (   383,   901)
+	  5: Rel (   -26,  -146)  ->  Abs (   357,   755)
+	  6: Rel (     0,  -136)  ->  Abs (   357,   619)
+	  7: Rel (   -57,     0)  ->  Abs (   300,   619)
+	  8: Rel (     0,   126)  ->  Abs (   300,   745)
+	  9: Rel (   -25,   153)  ->  Abs (   275,   898)
+	 10: Rel (   -10,    58)  ->  Abs (   265,   956)
+	 11: Rel (   -37,   182)  ->  Abs (   228,  1138)
+	 12: Rel (   -26,   126)  ->  Abs (   202,  1264)
+	 13: Rel (     0,    45)  ->  Abs (   202,  1309)
+	 14: Rel (     0,    61)  ->  Abs (   202,  1370)
+	 15: Rel (    70,    93)  ->  Abs (   272,  1463)
+	 16: Rel (    55,     0)  ->  Abs (   327,  1463)
+	 17: Rel (    57,     0)  ->  Abs (   384,  1463)
+	 18: Rel (    73,   -92)  ->  Abs (   457,  1371)
+	 19: Rel (    -6,  -969)  ->  Abs (   451,   402)
+	 20: Rel (     0,   -50)  ->  Abs (   451,   352)
+	 21: Rel (   -72,   -72)  ->  Abs (   379,   280)
+	 22: Rel (   -52,     0)  ->  Abs (   327,   280)
+	 23: Rel (   -50,     0)  ->  Abs (   277,   280)
+	 24: Rel (   -72,    72)  ->  Abs (   205,   352)
+	 25: Rel (     0,    50)  ->  Abs (   205,   402)
+	 26: Rel (     0,    51)  ->  Abs (   205,   453)
+	 27: Rel (    72,    74)  ->  Abs (   277,   527)
+	 28: Rel (    52,     0)  ->  Abs (   329,   527)
+	 29: Rel (    50,     0)  ->  Abs (   379,   527)
+	 30: Rel (    72,   -74)  ->  Abs (   451,   453)
+
+	Glyph 1101: off = 0x0002E392, len = 68
+	  numberOfContours:	1
+	  xMin:			199
+	  yMin:			280
+	  xMax:			463
+	  yMax:			546
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	22
+	00000: PUSHW[7]              9   750     3   748     0   749     6 
+	00015: MDAP[rd]   
+	00016: MIRP[nrp0,md,rd,1] 
+	00017: SVTCA[y-axis] 
+	00018: MIAP[rd+ci] 
+	00019: MIRP[nrp0,md,rd,1] 
+	00020: IUP[y]     
+	00021: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   463,   413)  ->  Abs (   463,   413)
+	  1: Rel (     0,   -54)  ->  Abs (   463,   359)
+	  2: Rel (   -79,   -79)  ->  Abs (   384,   280)
+	  3: Rel (   -55,     0)  ->  Abs (   329,   280)
+	  4: Rel (   -54,     0)  ->  Abs (   275,   280)
+	  5: Rel (   -76,    78)  ->  Abs (   199,   358)
+	  6: Rel (     0,    55)  ->  Abs (   199,   413)
+	  7: Rel (     0,    54)  ->  Abs (   199,   467)
+	  8: Rel (    77,    79)  ->  Abs (   276,   546)
+	  9: Rel (    53,     0)  ->  Abs (   329,   546)
+	 10: Rel (    56,     0)  ->  Abs (   385,   546)
+	 11: Rel (    78,   -78)  ->  Abs (   463,   468)
+
+	Glyph 1102: off = 0x0002E3D6, len = 118
+	  numberOfContours:	2
+	  xMin:			198
+	  yMin:			280
+	  xMax:			461
+	  yMax:			1111
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	42
+	00000: PUSHW[2]              9   750 
+	00005: PUSHB[3]              3     3    21 
+	00009: PUSHW[5]            750    15   748     0   749 
+	00020: PUSHB[3]              6     6    12 
+	00024: PUSHW[2]            749    18 
+	00029: MDAP[rd]   
+	00030: MIRP[nrp0,md,rd,1] 
+	00031: SHP[rp1,zp0] 
+	00032: MDAP[rd]   
+	00033: MIRP[nrp0,md,rd,1] 
+	00034: SVTCA[y-axis] 
+	00035: MIAP[rd+ci] 
+	00036: MIRP[srp0,md,rd,1] 
+	00037: SHP[rp2,zp1] 
+	00038: MDAP[rd]   
+	00039: MIRP[nrp0,md,rd,1] 
+	00040: IUP[y]     
+	00041: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual                         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   461,   978)  ->  Abs (   461,   978)
+	  1: Rel (     0,   -56)  ->  Abs (   461,   922)
+	  2: Rel (   -78,   -78)  ->  Abs (   383,   844)
+	  3: Rel (   -56,     0)  ->  Abs (   327,   844)
+	  4: Rel (   -53,     0)  ->  Abs (   274,   844)
+	  5: Rel (   -76,    78)  ->  Abs (   198,   922)
+	  6: Rel (     0,    56)  ->  Abs (   198,   978)
+	  7: Rel (     0,    55)  ->  Abs (   198,  1033)
+	  8: Rel (    74,    78)  ->  Abs (   272,  1111)
+	  9: Rel (    55,     0)  ->  Abs (   327,  1111)
+	 10: Rel (    56,     0)  ->  Abs (   383,  1111)
+	 11: Rel (    78,   -78)  ->  Abs (   461,  1033)
+	 12: Rel (     0,  -620)  ->  Abs (   461,   413)
+	 13: Rel (     0,   -54)  ->  Abs (   461,   359)
+	 14: Rel (   -79,   -79)  ->  Abs (   382,   280)
+	 15: Rel (   -55,     0)  ->  Abs (   327,   280)
+	 16: Rel (   -53,     0)  ->  Abs (   274,   280)
+	 17: Rel (   -76,    78)  ->  Abs (   198,   358)
+	 18: Rel (     0,    55)  ->  Abs (   198,   413)
+	 19: Rel (     0,    54)  ->  Abs (   198,   467)
+	 20: Rel (    75,    79)  ->  Abs (   273,   546)
+	 21: Rel (    54,     0)  ->  Abs (   327,   546)
+	 22: Rel (    56,     0)  ->  Abs (   383,   546)
+	 23: Rel (    78,   -78)  ->  Abs (   461,   468)
+
+	Glyph 1103: off = 0x0002E44C, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1104: off = 0x0002E476, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1105: off = 0x0002E4A0, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1106: off = 0x0002E4CA, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1107: off = 0x0002E4F4, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1108: off = 0x0002E51E, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1109: off = 0x0002E548, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1110: off = 0x0002E572, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1111: off = 0x0002E59C, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1112: off = 0x0002E5C6, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1113: off = 0x0002E5F0, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1114: off = 0x0002E61A, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1115: off = 0x0002E644, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1116: off = 0x0002E66E, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1117: off = 0x0002E698, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1118: off = 0x0002E6C2, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1119: off = 0x0002E6EC, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1120: off = 0x0002E716, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1121: off = 0x0002E740, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1122: off = 0x0002E76A, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1123: off = 0x0002E794, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1124: off = 0x0002E7BE, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1125: off = 0x0002E7E8, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1126: off = 0x0002E812, len = 42
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph 1127: off = 0x0002E83C, len = 52
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			293
+	  xMax:			326
+	  yMax:			467
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	24
+	00000: PUSHW[6]              2   751     1   747     0   752 
+	00013: PUSHB[2]              5     1 
+	00016: MDAP[rd]   
+	00017: SRP0       
+	00018: MIRP[nrp0,nmd,rd,1] 
+	00019: SVTCA[y-axis] 
+	00020: MIAP[rd+ci] 
+	00021: MIRP[nrp0,md,rd,1] 
+	00022: IUP[y]     
+	00023: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   326,   293)  ->  Abs (   326,   293)
+	  1: Rel (  -326,     0)  ->  Abs (     0,   293)
+	  2: Rel (     0,   174)  ->  Abs (     0,   467)
+	  3: Rel (   326,     0)  ->  Abs (   326,   467)
+
+	Glyph 1128: off = 0x0002E870, len = 52
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			293
+	  xMax:			2118
+	  yMax:			467
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	24
+	00000: PUSHW[6]              2   751     1   747     0   752 
+	00013: PUSHB[2]              5     1 
+	00016: MDAP[rd]   
+	00017: SRP0       
+	00018: MIRP[nrp0,nmd,rd,1] 
+	00019: SVTCA[y-axis] 
+	00020: MIAP[rd+ci] 
+	00021: MIRP[nrp0,md,rd,1] 
+	00022: IUP[y]     
+	00023: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  2118,   293)  ->  Abs (  2118,   293)
+	  1: Rel ( -2118,     0)  ->  Abs (     0,   293)
+	  2: Rel (     0,   174)  ->  Abs (     0,   467)
+	  3: Rel (  2118,     0)  ->  Abs (  2118,   467)
+
+	Glyph 1129: off = 0x0002E8A4, len = 52
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			293
+	  xMax:			4154
+	  yMax:			467
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	24
+	00000: PUSHW[6]              2   751     1   747     0   752 
+	00013: PUSHB[2]              5     1 
+	00016: MDAP[rd]   
+	00017: SRP0       
+	00018: MIRP[nrp0,nmd,rd,1] 
+	00019: SVTCA[y-axis] 
+	00020: MIAP[rd+ci] 
+	00021: MIRP[nrp0,md,rd,1] 
+	00022: IUP[y]     
+	00023: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  4154,   293)  ->  Abs (  4154,   293)
+	  1: Rel ( -4154,     0)  ->  Abs (     0,   293)
+	  2: Rel (     0,   174)  ->  Abs (     0,   467)
+	  3: Rel (  4154,     0)  ->  Abs (  4154,   467)
+
+	Glyph 1130: off = 0x0002E8D8, len = 402
+	  numberOfContours:	2
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1708
+	  yMax:			1492
+
+	EndPoints
+	---------
+	  0:  15
+	  1:  44
+
+	  Length of Instructions:	257
+	00000: PUSHB[6]             27    16    13    14    52    39 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (19):    16    17    52    39    32     9    10    52    10    32 
+	                             9    14    52     6    32     9    14    52     2 
+	00031: PUSHW[1]            -32 
+	00034: PUSHB[4]              9    14    52    14 
+	00039: PUSHW[1]            -32 
+	00042: NPUSHB      (70):     9    14    52    40    16    23    23    12     4    16 
+	                            30    17     3    12    30    37     3     4    30    29 
+	                             9    23    40    25     8    44    44    18    38    17 
+	                            26    16    16     2    85    17    35    11    11     6 
+	                            85    17    28    12    12     6    85    17    22    13 
+	                            13     6    85    17    12    15    15     6    85    17 
+	                            56    16    16     6    85    17    17     8    38    25 
+	00114: PUSHW[1]            -26 
+	00117: PUSHB[5]             16    16     2    85    25 
+	00123: PUSHW[1]            -32 
+	00126: PUSHB[5]             13    13     2    85    25 
+	00132: PUSHW[1]            -34 
+	00135: PUSHB[5]             12    12     2    85    25 
+	00141: PUSHW[1]            -32 
+	00144: PUSHB[5]             11    11     6    85    25 
+	00150: PUSHW[1]            -28 
+	00153: PUSHB[5]             12    12     6    85    25 
+	00159: PUSHW[1]            -24 
+	00162: PUSHB[5]             13    13     6    85    25 
+	00168: PUSHW[1]            -46 
+	00171: PUSHB[5]             16    16     6    85    25 
+	00177: PUSHW[1]            -64 
+	00180: NPUSHB      (21):    11    13    52     0    25     1    25     0    38    33 
+	                             8    11    11     6    85    32    33     1    33    99 
+	                            45 
+	00203: SRP0       
+	00204: MIRP[srp0,nmd,rd,2] 
+	00205: DELTAP1    
+	00206: CALL       
+	00207: MIRP[nrp0,md,rd,1] 
+	00208: MDAP[rd]   
+	00209: DELTAP1    
+	00210: CALL       
+	00211: CALL       
+	00212: CALL       
+	00213: CALL       
+	00214: CALL       
+	00215: CALL       
+	00216: CALL       
+	00217: CALL       
+	00218: MIRP[nrp0,md,rd,1] 
+	00219: SHP[rp1,zp0] 
+	00220: MDAP[rd]   
+	00221: CALL       
+	00222: CALL       
+	00223: CALL       
+	00224: CALL       
+	00225: CALL       
+	00226: CALL       
+	00227: MIRP[nrp0,md,rd,1] 
+	00228: IP         
+	00229: MDAP[rd]   
+	00230: SRP1       
+	00231: SRP2       
+	00232: IP         
+	00233: IP         
+	00234: SVTCA[y-axis] 
+	00235: MIAP[rd+ci] 
+	00236: MIRP[nrp0,md,rd,1] 
+	00237: MIAP[rd+ci] 
+	00238: MIRP[nrp0,md,rd,1] 
+	00239: MIAP[rd+ci] 
+	00240: MIRP[nrp0,md,rd,1] 
+	00241: SRP1       
+	00242: SRP2       
+	00243: IP         
+	00244: MDAP[rd]   
+	00245: SRP2       
+	00246: IP         
+	00247: IUP[y]     
+	00248: IUP[x]     
+	00249: SVTCA[x-axis] 
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+	00253: CALL       
+	00254: CALL       
+	00255: CALL       
+	00256: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         Off
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:        XDual                         On
+	  9:        XDual                         Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:  YDual               Y-Short         On
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual                 X-Short On
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short X-Short On
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:                              X-Short Off
+	 28:                      Y-Short         Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short         Off
+	 32:                              X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:        XDual                         Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual                               On
+	 38:  YDual XDual                 X-Short Off
+	 39:                      Y-Short         Off
+	 40:        XDual         Y-Short X-Short On
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   299,   711)  ->  Abs (   299,   711)
+	  1: Rel (     0,  -260)  ->  Abs (   299,   451)
+	  2: Rel (   143,  -158)  ->  Abs (   442,   293)
+	  3: Rel (   138,  -152)  ->  Abs (   580,   141)
+	  4: Rel (   219,     0)  ->  Abs (   799,   141)
+	  5: Rel (   224,     0)  ->  Abs (  1023,   141)
+	  6: Rel (   137,   154)  ->  Abs (  1160,   295)
+	  7: Rel (   141,   160)  ->  Abs (  1301,   455)
+	  8: Rel (     0,   277)  ->  Abs (  1301,   732)
+	  9: Rel (     0,   370)  ->  Abs (  1301,  1102)
+	 10: Rel (  -237,   150)  ->  Abs (  1064,  1252)
+	 11: Rel (  -117,    73)  ->  Abs (   947,  1325)
+	 12: Rel (  -145,     0)  ->  Abs (   802,  1325)
+	 13: Rel (  -223,     0)  ->  Abs (   579,  1325)
+	 14: Rel (  -131,  -141)  ->  Abs (   448,  1184)
+	 15: Rel (  -149,  -160)  ->  Abs (   299,  1024)
+	 16: Rel (  1216,   249)  ->  Abs (  1515,  1273)
+	 17: Rel (     0,   209)  ->  Abs (  1515,  1482)
+	 18: Rel (   193,     0)  ->  Abs (  1708,  1482)
+	 19: Rel (     0,  -165)  ->  Abs (  1708,  1317)
+	 20: Rel (     0,  -124)  ->  Abs (  1708,  1193)
+	 21: Rel (   -38,   -66)  ->  Abs (  1670,  1127)
+	 22: Rel (   -52,   -91)  ->  Abs (  1618,  1036)
+	 23: Rel (  -143,   -76)  ->  Abs (  1475,   960)
+	 24: Rel (    26,  -108)  ->  Abs (  1501,   852)
+	 25: Rel (     0,  -121)  ->  Abs (  1501,   731)
+	 26: Rel (     0,  -224)  ->  Abs (  1501,   507)
+	 27: Rel (  -181,  -351)  ->  Abs (  1320,   156)
+	 28: Rel (  -329,  -181)  ->  Abs (   991,   -25)
+	 29: Rel (  -191,     0)  ->  Abs (   800,   -25)
+	 30: Rel (  -206,     0)  ->  Abs (   594,   -25)
+	 31: Rel (  -327,   199)  ->  Abs (   267,   174)
+	 32: Rel (  -168,   347)  ->  Abs (    99,   521)
+	 33: Rel (     0,   193)  ->  Abs (    99,   714)
+	 34: Rel (     0,   360)  ->  Abs (    99,  1074)
+	 35: Rel (   196,   212)  ->  Abs (   295,  1286)
+	 36: Rel (   191,   206)  ->  Abs (   486,  1492)
+	 37: Rel (   315,     0)  ->  Abs (   801,  1492)
+	 38: Rel (   227,     0)  ->  Abs (  1028,  1492)
+	 39: Rel (   351,  -247)  ->  Abs (  1379,  1245)
+	 40: Rel (    73,  -208)  ->  Abs (  1452,  1037)
+	 41: Rel (    91,    49)  ->  Abs (  1543,  1086)
+	 42: Rel (    37,    56)  ->  Abs (  1580,  1142)
+	 43: Rel (    30,    45)  ->  Abs (  1610,  1187)
+	 44: Rel (    -1,    86)  ->  Abs (  1609,  1273)
+
+	Glyph 1131: off = 0x0002EA6A, len = 412
+	  numberOfContours:	2
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1280
+	  yMax:			1088
+
+	EndPoints
+	---------
+	  0:  15
+	  1:  44
+
+	  Length of Instructions:	275
+	00000: NPUSHB      (14):    89    39     1     6    32    12    14    52    10    32 
+	                            12    14    52     2 
+	00016: PUSHW[1]            -32 
+	00019: PUSHB[4]             12    14    52    14 
+	00024: PUSHW[1]            -32 
+	00027: NPUSHB      (52):    12    14    52    41    16    23    23    12     4    16 
+	                            28    17     7    12    28    37     7     4    28    29 
+	                            11    23    40    25     8    44    44    18    38    17 
+	                            32    16    16     6    85    17    48    15    15     6 
+	                            85    17    18    11    13     6    85    17    17     8 
+	                            36    25 
+	00081: PUSHW[1]            -26 
+	00084: NPUSHB      (17):    15    15     2    85    25    24    13    13     2    85 
+	                            25    16    11    11     2    85    25 
+	00103: PUSHW[1]            -15 
+	00106: PUSHB[5]             16    16     6    85    25 
+	00112: PUSHW[1]            -45 
+	00115: PUSHB[5]             15    15     6    85    25 
+	00121: PUSHW[1]            -42 
+	00124: PUSHB[5]             13    13     6    85    25 
+	00130: PUSHW[1]             -8 
+	00133: NPUSHB      (48):    11    12     6    85     0    25    32    25     2    25 
+	                             0    36     0    64    36    37    52    33    12    14 
+	                            15     2    85    33    18    13    13     2    85    33 
+	                            12    12    12     2    85    33    28    11    11     2 
+	                            85    33     8    16    16     6    85    33 
+	00183: PUSHW[1]             -4 
+	00186: NPUSHB      (30):    15    15     6    85    33     8    13    13     6    85 
+	                            33    22    12    12     6    85    33    14    11    11 
+	                             6    85    31    33    63    33     2    33    49    45 
+	00218: SRP0       
+	00219: MIRP[srp0,nmd,rd,2] 
+	00220: DELTAP1    
+	00221: CALL       
+	00222: CALL       
+	00223: CALL       
+	00224: CALL       
+	00225: CALL       
+	00226: CALL       
+	00227: CALL       
+	00228: CALL       
+	00229: CALL       
+	00230: CALL       
+	00231: MIRP[nrp0,md,rd,1] 
+	00232: MDAP[rd]   
+	00233: DELTAP1    
+	00234: CALL       
+	00235: CALL       
+	00236: CALL       
+	00237: CALL       
+	00238: CALL       
+	00239: CALL       
+	00240: CALL       
+	00241: MIRP[nrp0,md,rd,1] 
+	00242: SHP[rp1,zp0] 
+	00243: MDAP[rd]   
+	00244: CALL       
+	00245: CALL       
+	00246: CALL       
+	00247: MIRP[nrp0,md,rd,1] 
+	00248: IP         
+	00249: MDAP[rd]   
+	00250: SRP1       
+	00251: SRP2       
+	00252: IP         
+	00253: IP         
+	00254: SVTCA[y-axis] 
+	00255: MIAP[rd+ci] 
+	00256: MIRP[nrp0,md,rd,1] 
+	00257: MIAP[rd+ci] 
+	00258: MIRP[nrp0,md,rd,1] 
+	00259: MIAP[rd+ci] 
+	00260: MIRP[nrp0,md,rd,1] 
+	00261: SRP1       
+	00262: SRP2       
+	00263: IP         
+	00264: MDAP[rd]   
+	00265: SRP2       
+	00266: IP         
+	00267: IUP[y]     
+	00268: IUP[x]     
+	00269: SVTCA[x-axis] 
+	00270: CALL       
+	00271: CALL       
+	00272: CALL       
+	00273: CALL       
+	00274: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual         Y-Short         Off
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:  YDual               Y-Short         On
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual                 X-Short On
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short X-Short On
+	 24:        XDual         Y-Short         Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual                         Off
+	 27:                      Y-Short X-Short On
+	 28:                      Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short On
+	 32:  YDual               Y-Short X-Short Off
+	 33:        XDual                         On
+	 34:        XDual                         Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short X-Short On
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   253,   531)  ->  Abs (   253,   531)
+	  1: Rel (     0,  -197)  ->  Abs (   253,   334)
+	  2: Rel (    89,  -108)  ->  Abs (   342,   226)
+	  3: Rel (    84,  -102)  ->  Abs (   426,   124)
+	  4: Rel (   140,     0)  ->  Abs (   566,   124)
+	  5: Rel (   140,     0)  ->  Abs (   706,   124)
+	  6: Rel (    83,   102)  ->  Abs (   789,   226)
+	  7: Rel (    89,   109)  ->  Abs (   878,   335)
+	  8: Rel (     0,   202)  ->  Abs (   878,   537)
+	  9: Rel (     0,   191)  ->  Abs (   878,   728)
+	 10: Rel (   -90,   107)  ->  Abs (   788,   835)
+	 11: Rel (   -84,   102)  ->  Abs (   704,   937)
+	 12: Rel (  -138,     0)  ->  Abs (   566,   937)
+	 13: Rel (  -141,     0)  ->  Abs (   425,   937)
+	 14: Rel (   -83,  -101)  ->  Abs (   342,   836)
+	 15: Rel (   -89,  -108)  ->  Abs (   253,   728)
+	 16: Rel (   834,   151)  ->  Abs (  1087,   879)
+	 17: Rel (     0,   209)  ->  Abs (  1087,  1088)
+	 18: Rel (   193,     0)  ->  Abs (  1280,  1088)
+	 19: Rel (     0,  -165)  ->  Abs (  1280,   923)
+	 20: Rel (     0,  -124)  ->  Abs (  1280,   799)
+	 21: Rel (   -38,   -66)  ->  Abs (  1242,   733)
+	 22: Rel (   -49,   -86)  ->  Abs (  1193,   647)
+	 23: Rel (  -130,   -72)  ->  Abs (  1063,   575)
+	 24: Rel (     0,   -14)  ->  Abs (  1063,   561)
+	 25: Rel (     0,   -15)  ->  Abs (  1063,   546)
+	 26: Rel (     0,  -372)  ->  Abs (  1063,   174)
+	 27: Rel (  -240,  -133)  ->  Abs (   823,    41)
+	 28: Rel (  -118,   -65)  ->  Abs (   705,   -24)
+	 29: Rel (  -139,     0)  ->  Abs (   566,   -24)
+	 30: Rel (  -228,     0)  ->  Abs (   338,   -24)
+	 31: Rel (  -133,   143)  ->  Abs (   205,   119)
+	 32: Rel (  -137,   148)  ->  Abs (    68,   267)
+	 33: Rel (     0,   264)  ->  Abs (    68,   531)
+	 34: Rel (     0,   295)  ->  Abs (    68,   826)
+	 35: Rel (   164,   142)  ->  Abs (   232,   968)
+	 36: Rel (   137,   118)  ->  Abs (   369,  1086)
+	 37: Rel (   197,     0)  ->  Abs (   566,  1086)
+	 38: Rel (   219,     0)  ->  Abs (   785,  1086)
+	 39: Rel (   139,  -143)  ->  Abs (   924,   943)
+	 40: Rel (   105,  -109)  ->  Abs (  1029,   834)
+	 41: Rel (    26,  -172)  ->  Abs (  1055,   662)
+	 42: Rel (    68,    42)  ->  Abs (  1123,   704)
+	 43: Rel (    59,    90)  ->  Abs (  1182,   794)
+	 44: Rel (    -1,    85)  ->  Abs (  1181,   879)
+
+	Glyph 1132: off = 0x0002EC06, len = 412
+	  numberOfContours:	1
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1666
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  37
+
+	  Length of Instructions:	293
+	00000: PUSHB[6]             15    52    12    14    52    12 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (19):    12    14    52    38    24     1    33     7     7    26 
+	                             0    28     1     2    31     2    19     2    26 
+	00031: PUSHW[1]            699 
+	00034: NPUSHB      (54):    14     9    37    37     2    14     9    13     2    85 
+	                             2    38     1    18    10    10     2    85     1    68 
+	                            11    11     6    85     1     8    12    12     6    85 
+	                             1    30    13    13     6    85     1    68    15    15 
+	                             6    85     1    68    16    16     6    85     1     1 
+	                            30    38    32     8 
+	00090: PUSHW[1]            -20 
+	00093: PUSHB[5]             15    15     2    85     8 
+	00099: PUSHW[1]            -18 
+	00102: NPUSHB      (11):    13    13     2    85     8    16    12    12     2    85 
+	                             8 
+	00115: PUSHW[1]            -59 
+	00118: NPUSHB      (11):    11    11     6    85     8    28    12    12     6    85 
+	                             8 
+	00131: PUSHW[1]            -15 
+	00134: PUSHB[5]             13    13     6    85     8 
+	00140: PUSHW[1]            -45 
+	00143: PUSHB[5]             15    15     6    85     8 
+	00149: PUSHW[1]            -45 
+	00152: NPUSHB      (14):    16    16     6    85     8    21    38    18    32    16 
+	                            16     2    85    18 
+	00168: PUSHW[1]            -10 
+	00171: PUSHB[5]             15    15     2    85    18 
+	00177: PUSHW[1]            -10 
+	00180: PUSHB[5]             13    13     2    85    18 
+	00186: PUSHW[1]             -6 
+	00189: PUSHB[5]             12    12     2    85    18 
+	00195: PUSHW[1]             -6 
+	00198: PUSHB[5]             12    12     6    85    18 
+	00204: PUSHW[1]            -10 
+	00207: PUSHB[5]             13    13     6    85    18 
+	00213: PUSHW[1]            -15 
+	00216: PUSHB[5]             15    15     6    85    18 
+	00222: PUSHW[1]             -8 
+	00225: PUSHB[5]             16    16     6    85    18 
+	00231: PUSHW[1]            -64 
+	00234: PUSHB[6]             19    21    52    18    93    38 
+	00241: SRP0       
+	00242: MIRP[srp0,nmd,rd,2] 
+	00243: CALL       
+	00244: CALL       
+	00245: CALL       
+	00246: CALL       
+	00247: CALL       
+	00248: CALL       
+	00249: CALL       
+	00250: CALL       
+	00251: CALL       
+	00252: MIRP[nrp0,md,rd,1] 
+	00253: MDAP[rd]   
+	00254: CALL       
+	00255: CALL       
+	00256: CALL       
+	00257: CALL       
+	00258: CALL       
+	00259: CALL       
+	00260: CALL       
+	00261: CALL       
+	00262: ALIGNRP    
+	00263: MIRP[nrp0,md,rd,1] 
+	00264: SHP[rp1,zp0] 
+	00265: MDAP[rd]   
+	00266: CALL       
+	00267: CALL       
+	00268: CALL       
+	00269: CALL       
+	00270: CALL       
+	00271: CALL       
+	00272: MIRP[nrp0,md,rd,1] 
+	00273: CALL       
+	00274: IP         
+	00275: MDAP[rd]   
+	00276: SVTCA[y-axis] 
+	00277: MIAP[rd+ci] 
+	00278: MIRP[nrp0,md,rd,1] 
+	00279: MIAP[rd+ci] 
+	00280: MIAP[rd+ci] 
+	00281: MIAP[rd+ci] 
+	00282: MIRP[nrp0,md,rd,1] 
+	00283: SRP1       
+	00284: IP         
+	00285: MDAP[rd]   
+	00286: IP         
+	00287: IUP[y]     
+	00288: IUP[x]     
+	00289: SVTCA[x-axis] 
+	00290: DELTAP1    
+	00291: CALL       
+	00292: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:        XDual                         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                               Off
+	 16:                              X-Short On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:        XDual                         On
+	 20:  YDual XDual                 X-Short On
+	 21:        XDual                         On
+	 22:        XDual         Y-Short         Off
+	 23:        XDual         Y-Short X-Short On
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:        XDual                         On
+	 31:        XDual                         On
+	 32:  YDual XDual                 X-Short On
+	 33:        XDual                         On
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1473,  1257)  ->  Abs (  1473,  1257)
+	  1: Rel (     0,   209)  ->  Abs (  1473,  1466)
+	  2: Rel (   193,     0)  ->  Abs (  1666,  1466)
+	  3: Rel (     0,  -165)  ->  Abs (  1666,  1301)
+	  4: Rel (     0,  -157)  ->  Abs (  1666,  1144)
+	  5: Rel (   -36,   -62)  ->  Abs (  1630,  1082)
+	  6: Rel (   -99,  -173)  ->  Abs (  1531,   909)
+	  7: Rel (  -217,   -10)  ->  Abs (  1314,   899)
+	  8: Rel (     0,  -280)  ->  Abs (  1314,   619)
+	  9: Rel (     0,  -225)  ->  Abs (  1314,   394)
+	 10: Rel (   -50,  -126)  ->  Abs (  1264,   268)
+	 11: Rel (   -52,  -131)  ->  Abs (  1212,   137)
+	 12: Rel (  -128,   -80)  ->  Abs (  1084,    57)
+	 13: Rel (  -131,   -82)  ->  Abs (   953,   -25)
+	 14: Rel (  -212,     0)  ->  Abs (   741,   -25)
+	 15: Rel (  -409,     0)  ->  Abs (   332,   -25)
+	 16: Rel (  -115,   277)  ->  Abs (   217,   252)
+	 17: Rel (   -56,   134)  ->  Abs (   161,   386)
+	 18: Rel (     0,   233)  ->  Abs (   161,   619)
+	 19: Rel (     0,   847)  ->  Abs (   161,  1466)
+	 20: Rel (   194,     0)  ->  Abs (   355,  1466)
+	 21: Rel (     0,  -846)  ->  Abs (   355,   620)
+	 22: Rel (     0,  -189)  ->  Abs (   355,   431)
+	 23: Rel (    36,   -93)  ->  Abs (   391,   338)
+	 24: Rel (    34,   -89)  ->  Abs (   425,   249)
+	 25: Rel (   174,   -99)  ->  Abs (   599,   150)
+	 26: Rel (   125,     0)  ->  Abs (   724,   150)
+	 27: Rel (   219,     0)  ->  Abs (   943,   150)
+	 28: Rel (    86,    97)  ->  Abs (  1029,   247)
+	 29: Rel (    91,   102)  ->  Abs (  1120,   349)
+	 30: Rel (     0,   271)  ->  Abs (  1120,   620)
+	 31: Rel (     0,   846)  ->  Abs (  1120,  1466)
+	 32: Rel (   194,     0)  ->  Abs (  1314,  1466)
+	 33: Rel (     0,  -493)  ->  Abs (  1314,   973)
+	 34: Rel (   156,    16)  ->  Abs (  1470,   989)
+	 35: Rel (    70,   108)  ->  Abs (  1540,  1097)
+	 36: Rel (    27,    42)  ->  Abs (  1567,  1139)
+	 37: Rel (     0,   118)  ->  Abs (  1567,  1257)
+
+	Glyph 1133: off = 0x0002EDA2, len = 396
+	  numberOfContours:	1
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			1309
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  36
+
+	  Length of Instructions:	284
+	00000: PUSHB[6]             27    16    11    13    52    24 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (83):    16    17    52    14    32     9    10    52    10    19 
+	                            25    32     7     7    25     0    28     1     6    30 
+	                             6    19     6     9    10    25    28    12    36    36 
+	                             2    38     1    30    11    11     6    85     1    20 
+	                            12    12     6    85     1    45    13    13     6    85 
+	                             1    12    15    15     6    85     1    32    16    16 
+	                             6    85     1     1     8     9    51    29    37    31 
+	                             8    44    16    16     2    85     8    18    14    14 
+	                             2    85     8 
+	00095: PUSHW[1]            -16 
+	00098: NPUSHB      (11):    13    13     2    85     8    10    12    12     2    85 
+	                             8 
+	00111: PUSHW[1]            -12 
+	00114: NPUSHB      (11):    11    11     6    85     8    10    12    12     6    85 
+	                             8 
+	00127: PUSHW[1]            -30 
+	00130: PUSHB[5]             13    13     6    85     8 
+	00136: PUSHW[1]            -34 
+	00139: PUSHB[8]             16    16     6    85     8    21    37    18 
+	00148: PUSHW[1]             -8 
+	00151: PUSHB[5]             16    16     2    85    18 
+	00157: PUSHW[1]             -8 
+	00160: NPUSHB      (23):    14    14     2    85    18     4    12    12     2    85 
+	                            18    10    11    11     6    85    18     4    12    12 
+	                             6    85    18 
+	00185: PUSHW[1]             -4 
+	00188: PUSHB[5]             13    13     6    85    18 
+	00194: PUSHW[1]            -14 
+	00197: PUSHB[5]             15    16     6    85    18 
+	00203: PUSHW[1]            -64 
+	00206: NPUSHB      (18):    51    54    52   240    18     1     0    18    32    18 
+	                           208    18   224    18     4    18    78    37 
+	00226: SRP0       
+	00227: MIRP[srp0,nmd,rd,2] 
+	00228: DELTAP1    
+	00229: DELTAP2    
+	00230: CALL       
+	00231: CALL       
+	00232: CALL       
+	00233: CALL       
+	00234: CALL       
+	00235: CALL       
+	00236: CALL       
+	00237: CALL       
+	00238: MIRP[nrp0,md,rd,1] 
+	00239: MDAP[rd]   
+	00240: CALL       
+	00241: CALL       
+	00242: CALL       
+	00243: CALL       
+	00244: CALL       
+	00245: CALL       
+	00246: CALL       
+	00247: CALL       
+	00248: ALIGNRP    
+	00249: MIRP[srp0,md,rd,1] 
+	00250: MIRP[nrp0,nmd,rd,0] 
+	00251: SRP1       
+	00252: SHP[rp1,zp0] 
+	00253: MDAP[rd]   
+	00254: CALL       
+	00255: CALL       
+	00256: CALL       
+	00257: CALL       
+	00258: CALL       
+	00259: MIRP[nrp0,md,rd,1] 
+	00260: IP         
+	00261: MDAP[rd]   
+	00262: SVTCA[y-axis] 
+	00263: MDAP[rd]   
+	00264: MIRP[nrp0,md,rd,1] 
+	00265: MIAP[rd+ci] 
+	00266: MIAP[rd+ci] 
+	00267: MIAP[rd+ci] 
+	00268: MIAP[rd+ci] 
+	00269: MIRP[nrp0,md,rd,1] 
+	00270: SRP1       
+	00271: IP         
+	00272: MDAP[rd]   
+	00273: IP         
+	00274: SRP1       
+	00275: SRP2       
+	00276: IP         
+	00277: IUP[y]     
+	00278: IUP[x]     
+	00279: SVTCA[x-axis] 
+	00280: CALL       
+	00281: CALL       
+	00282: SVTCA[y-axis] 
+	00283: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+	 10:  YDual XDual         Y-Short         On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:        XDual                         On
+	 20:  YDual XDual                 X-Short On
+	 21:        XDual                         On
+	 22:        XDual         Y-Short         Off
+	 23:        XDual         Y-Short X-Short On
+	 24:        XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:        XDual                         On
+	 31:  YDual XDual                 X-Short On
+	 32:        XDual                         On
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1116,   853)  ->  Abs (  1116,   853)
+	  1: Rel (     0,   209)  ->  Abs (  1116,  1062)
+	  2: Rel (   193,     0)  ->  Abs (  1309,  1062)
+	  3: Rel (     0,  -165)  ->  Abs (  1309,   897)
+	  4: Rel (     0,  -157)  ->  Abs (  1309,   740)
+	  5: Rel (   -36,   -62)  ->  Abs (  1273,   678)
+	  6: Rel (   -92,  -160)  ->  Abs (  1181,   518)
+	  7: Rel (  -189,   -20)  ->  Abs (   992,   498)
+	  8: Rel (     0,  -498)  ->  Abs (   992,     0)
+	  9: Rel (  -161,     0)  ->  Abs (   831,     0)
+	 10: Rel (     0,   156)  ->  Abs (   831,   156)
+	 11: Rel (  -124,  -180)  ->  Abs (   707,   -24)
+	 12: Rel (  -213,     0)  ->  Abs (   494,   -24)
+	 13: Rel (   -93,     0)  ->  Abs (   401,   -24)
+	 14: Rel (  -163,    71)  ->  Abs (   238,    47)
+	 15: Rel (   -80,   110)  ->  Abs (   158,   157)
+	 16: Rel (   -16,    79)  ->  Abs (   142,   236)
+	 17: Rel (   -11,    54)  ->  Abs (   131,   290)
+	 18: Rel (     0,   114)  ->  Abs (   131,   404)
+	 19: Rel (     0,   658)  ->  Abs (   131,  1062)
+	 20: Rel (   180,     0)  ->  Abs (   311,  1062)
+	 21: Rel (     0,  -589)  ->  Abs (   311,   473)
+	 22: Rel (     0,  -143)  ->  Abs (   311,   330)
+	 23: Rel (    11,   -47)  ->  Abs (   322,   283)
+	 24: Rel (    35,  -152)  ->  Abs (   357,   131)
+	 25: Rel (   173,     0)  ->  Abs (   530,   131)
+	 26: Rel (    83,     0)  ->  Abs (   613,   131)
+	 27: Rel (   141,    84)  ->  Abs (   754,   215)
+	 28: Rel (    58,   142)  ->  Abs (   812,   357)
+	 29: Rel (     0,   136)  ->  Abs (   812,   493)
+	 30: Rel (     0,   569)  ->  Abs (   812,  1062)
+	 31: Rel (   180,     0)  ->  Abs (   992,  1062)
+	 32: Rel (     0,  -488)  ->  Abs (   992,   574)
+	 33: Rel (   127,    22)  ->  Abs (  1119,   596)
+	 34: Rel (    63,    97)  ->  Abs (  1182,   693)
+	 35: Rel (    28,    42)  ->  Abs (  1210,   735)
+	 36: Rel (     0,   118)  ->  Abs (  1210,   853)
+
+	Glyph 1134: off = 0x0002EF2E, len = 70
+	  numberOfContours:	1
+	  xMin:			-548
+	  yMin:			1677
+	  xMax:			-187
+	  yMax:			1835
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	44
+	00000: PUSHB[8]              1    32    14    17    52     1   128     2 
+	00009: PUSHW[3]            791     0   595 
+	00016: PUSHB[8]              1   134    64     3   208     3     2     3 
+	00025: PUSHW[2]            608     2 
+	00030: MDAP[rd]   
+	00031: MIRP[nrp0,md,rd,1] 
+	00032: DELTAP1    
+	00033: MIRP[srp0,md,rd,1] 
+	00034: MIRP[nrp0,md,rd,1] 
+	00035: SVTCA[y-axis] 
+	00036: RDTG       
+	00037: MIAP[rd+ci] 
+	00038: SMD        
+	00039: MDRP[nrp0,md,rd,1] 
+	00040: IUP[y]     
+	00041: IUP[x]     
+	00042: SVTCA[x-axis] 
+	00043: CALL       
+
+	Flags
+	-----
+	  0:                              X-Short On
+	  1:  YDual                       X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  -187,  1677)  ->  Abs (  -187,  1677)
+	  1: Rel (  -130,     0)  ->  Abs (  -317,  1677)
+	  2: Rel (  -231,   158)  ->  Abs (  -548,  1835)
+	  3: Rel (   226,     0)  ->  Abs (  -322,  1835)
+
+	Glyph 1135: off = 0x0002EF74, len = 70
+	  numberOfContours:	1
+	  xMin:			-977
+	  yMin:			1677
+	  xMax:			-616
+	  yMax:			1835
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	44
+	00000: PUSHB[8]              1    32    14    17    52     1   128     2 
+	00009: PUSHW[3]            791     0   595 
+	00016: PUSHB[8]              1   134    64     3   208     3     2     3 
+	00025: PUSHW[2]            608     2 
+	00030: MDAP[rd]   
+	00031: MIRP[nrp0,md,rd,1] 
+	00032: DELTAP1    
+	00033: MIRP[srp0,md,rd,1] 
+	00034: MIRP[nrp0,md,rd,1] 
+	00035: SVTCA[y-axis] 
+	00036: RDTG       
+	00037: MIAP[rd+ci] 
+	00038: SMD        
+	00039: MDRP[nrp0,md,rd,1] 
+	00040: IUP[y]     
+	00041: IUP[x]     
+	00042: SVTCA[x-axis] 
+	00043: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  -616,  1677)  ->  Abs (  -616,  1677)
+	  1: Rel (  -130,     0)  ->  Abs (  -746,  1677)
+	  2: Rel (  -231,   158)  ->  Abs (  -977,  1835)
+	  3: Rel (   226,     0)  ->  Abs (  -751,  1835)
+
+	Glyph 1136: off = 0x0002EFBA, len = 110
+	  numberOfContours:	1
+	  xMin:			-858
+	  yMin:			1547
+	  xMax:			-482
+	  yMax:			1827
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	83
+	00000: PUSHB[6]              1    32    14    17    52     1 
+	00007: PUSHW[1]            -64 
+	00010: NPUSHB      (31):     9    10    52     1   135    31     2    47     2     2 
+	                            31     2    47     2   143     2   159     2     4   175 
+	                             2   191     2     2     2    64     9    16    52     2 
+	                             0 
+	00043: PUSHW[1]            595 
+	00046: PUSHB[8]              1   134    64     3   208     3     2     3 
+	00055: PUSHW[1]            608 
+	00058: PUSHB[6]            112     2   176     2     2     2 
+	00065: MDAP[rd]   
+	00066: DELTAP1    
+	00067: MIRP[nrp0,md,rd,1] 
+	00068: DELTAP1    
+	00069: MIRP[srp0,md,rd,1] 
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: SVTCA[y-axis] 
+	00072: MDAP[rd]   
+	00073: CALL       
+	00074: DELTAP1    
+	00075: DELTAP2    
+	00076: DELTAP3    
+	00077: MIRP[nrp0,md,rd,1] 
+	00078: CALL       
+	00079: IUP[y]     
+	00080: IUP[x]     
+	00081: SVTCA[x-axis] 
+	00082: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:                              X-Short On
+	  3:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  -482,  1547)  ->  Abs (  -482,  1547)
+	  1: Rel (  -145,     0)  ->  Abs (  -627,  1547)
+	  2: Rel (  -231,   280)  ->  Abs (  -858,  1827)
+	  3: Rel (   241,     0)  ->  Abs (  -617,  1827)
+
+	Glyph 1137: off = 0x0002F028, len = 92
+	  numberOfContours:	1
+	  xMin:			-428
+	  yMin:			1677
+	  xMax:			-67
+	  yMax:			1835
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	65
+	00000: PUSHW[2]              2   -32 
+	00005: PUSHB[4]             14    17    52     1 
+	00010: PUSHW[1]            -32 
+	00013: PUSHB[6]             14    17    52     2   128     0 
+	00020: PUSHW[3]            791     3   -12 
+	00027: PUSHB[4]              9    18    52     3 
+	00032: PUSHW[1]            595 
+	00035: PUSHB[8]              2   134    79     0   223     0     2     0 
+	00044: PUSHW[2]            608     1 
+	00049: MDAP[rd]   
+	00050: MIRP[nrp0,md,rd,1] 
+	00051: DELTAP1    
+	00052: MIRP[srp0,md,rd,1] 
+	00053: MIRP[nrp0,md,rd,1] 
+	00054: CALL       
+	00055: SVTCA[y-axis] 
+	00056: RDTG       
+	00057: MIAP[rd+ci] 
+	00058: SMD        
+	00059: MDRP[nrp0,md,rd,1] 
+	00060: IUP[y]     
+	00061: IUP[x]     
+	00062: SVTCA[x-axis] 
+	00063: CALL       
+	00064: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:                      Y-Short X-Short On
+	  3:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  -293,  1835)  ->  Abs (  -293,  1835)
+	  1: Rel (   226,     0)  ->  Abs (   -67,  1835)
+	  2: Rel (  -231,  -158)  ->  Abs (  -298,  1677)
+	  3: Rel (  -130,     0)  ->  Abs (  -428,  1677)
+
+	Glyph 1138: off = 0x0002F084, len = 82
+	  numberOfContours:	1
+	  xMin:			-809
+	  yMin:			1677
+	  xMax:			-448
+	  yMax:			1835
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	56
+	00000: PUSHW[2]              2   -32 
+	00005: PUSHB[6]             14    17    52     2   128     0 
+	00012: PUSHW[3]            791     3   -12 
+	00019: PUSHB[4]              9    18    52     3 
+	00024: PUSHW[1]            595 
+	00027: PUSHB[8]              2   134    79     0   223     0     2     0 
+	00036: PUSHW[2]            608     1 
+	00041: MDAP[rd]   
+	00042: MIRP[nrp0,md,rd,1] 
+	00043: DELTAP1    
+	00044: MIRP[srp0,md,rd,1] 
+	00045: MIRP[nrp0,md,rd,1] 
+	00046: CALL       
+	00047: SVTCA[y-axis] 
+	00048: RDTG       
+	00049: MIAP[rd+ci] 
+	00050: SMD        
+	00051: MDRP[nrp0,md,rd,1] 
+	00052: IUP[y]     
+	00053: IUP[x]     
+	00054: SVTCA[x-axis] 
+	00055: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:                      Y-Short X-Short On
+	  3:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  -674,  1835)  ->  Abs (  -674,  1835)
+	  1: Rel (   226,     0)  ->  Abs (  -448,  1835)
+	  2: Rel (  -231,  -158)  ->  Abs (  -679,  1677)
+	  3: Rel (  -130,     0)  ->  Abs (  -809,  1677)
+
+	Glyph 1139: off = 0x0002F0D6, len = 112
+	  numberOfContours:	1
+	  xMin:			-653
+	  yMin:			1547
+	  xMax:			-277
+	  yMax:			1827
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	84
+	00000: PUSHB[4]            153     2     1     2 
+	00005: PUSHW[1]            -32 
+	00008: PUSHB[4]             14    17    52     2 
+	00013: PUSHW[1]            -64 
+	00016: NPUSHB      (31):     9    10    52     2   135    31     1    47     1     2 
+	                            31     1    47     1   143     1   159     1     4   175 
+	                             1   191     1     2     1    64     9    16    52     1 
+	                             3 
+	00049: PUSHW[1]            595 
+	00052: PUSHB[8]              2   134    79     0   223     0     2     0 
+	00061: PUSHW[2]            608     1 
+	00066: MDAP[rd]   
+	00067: MIRP[nrp0,md,rd,1] 
+	00068: DELTAP1    
+	00069: MIRP[srp0,md,rd,1] 
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: SVTCA[y-axis] 
+	00072: MDAP[rd]   
+	00073: CALL       
+	00074: DELTAP1    
+	00075: DELTAP2    
+	00076: DELTAP3    
+	00077: MIRP[nrp0,md,rd,1] 
+	00078: CALL       
+	00079: IUP[y]     
+	00080: IUP[x]     
+	00081: SVTCA[x-axis] 
+	00082: CALL       
+	00083: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:                              X-Short On
+	  3:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  -518,  1827)  ->  Abs (  -518,  1827)
+	  1: Rel (   241,     0)  ->  Abs (  -277,  1827)
+	  2: Rel (  -231,  -280)  ->  Abs (  -508,  1547)
+	  3: Rel (  -145,     0)  ->  Abs (  -653,  1547)
+
+	Glyph 1140: off = 0x0002F146, len = 216
+	  numberOfContours:	1
+	  xMin:			-471
+	  yMin:			1512
+	  xMax:			-34
+	  yMax:			1836
+
+	EndPoints
+	---------
+	  0:  21
+
+	  Length of Instructions:	139
+	00000: PUSHW[2]             17   -64 
+	00005: NPUSHB       (9):     9    24    52    10    12     9     7    21    18 
+	00016: PUSHW[1]            -64 
+	00019: NPUSHB      (14):    18    24    52    18   144    20     1   127    20     1 
+	                           144    20     1    20 
+	00035: PUSHW[1]            -64 
+	00038: PUSHB[4]              9    12    52    20 
+	00043: PUSHW[1]            -64 
+	00046: PUSHB[4]             25    37    52    20 
+	00051: PUSHW[1]            -64 
+	00054: NPUSHB      (10):    55    57    52    20    64    83    90    52    20     7 
+	00066: PUSHW[3]            790    12   791 
+	00073: NPUSHB      (12):    16   201     3     3    19     9    20    10    10    19 
+	                            87    20 
+	00087: PUSHW[1]            -64 
+	00090: NPUSHB       (9):    11    13    52     0    20   112    20     2    20 
+	00101: MDAP[rd]   
+	00102: DELTAP1    
+	00103: CALL       
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: SHP[rp1,zp0] 
+	00106: MDAP[rd]   
+	00107: SRP2       
+	00108: IP         
+	00109: SRP1       
+	00110: SHP[rp1,zp0] 
+	00111: MDAP[rd]   
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: SVTCA[y-axis] 
+	00114: RDTG       
+	00115: MIAP[rd+ci] 
+	00116: RTG        
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: RDTG       
+	00119: MDRP[srp0,nmd,rd,0] 
+	00120: CALL       
+	00121: CALL       
+	00122: CALL       
+	00123: CALL       
+	00124: DELTAP1    
+	00125: DELTAP2    
+	00126: DELTAP3    
+	00127: RTG        
+	00128: MDRP[srp0,md,rd,1] 
+	00129: CALL       
+	00130: MDRP[nrp0,md,rd,1] 
+	00131: SRP1       
+	00132: IP         
+	00133: SRP2       
+	00134: IP         
+	00135: IUP[y]     
+	00136: IUP[x]     
+	00137: SVTCA[x-axis] 
+	00138: CALL       
+
+	Flags
+	-----
+	  0:                                      Off
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:        XDual         Y-Short         On
+	 20:  YDual                       X-Short On
+	 21:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  -275,  1630)  ->  Abs (  -275,  1630)
+	  1: Rel (    16,     5)  ->  Abs (  -259,  1635)
+	  2: Rel (    53,    13)  ->  Abs (  -206,  1648)
+	  3: Rel (     1,    28)  ->  Abs (  -205,  1676)
+	  4: Rel (     1,    23)  ->  Abs (  -204,  1699)
+	  5: Rel (   -29,    16)  ->  Abs (  -233,  1715)
+	  6: Rel (   -42,    23)  ->  Abs (  -275,  1738)
+	  7: Rel (   -91,     0)  ->  Abs (  -366,  1738)
+	  8: Rel (   -31,     0)  ->  Abs (  -397,  1738)
+	  9: Rel (   -63,    -4)  ->  Abs (  -460,  1734)
+	 10: Rel (   -11,    94)  ->  Abs (  -471,  1828)
+	 11: Rel (    39,     8)  ->  Abs (  -432,  1836)
+	 12: Rel (   105,    -1)  ->  Abs (  -327,  1835)
+	 13: Rel (   123,    -1)  ->  Abs (  -204,  1834)
+	 14: Rel (    78,   -39)  ->  Abs (  -126,  1795)
+	 15: Rel (    86,   -42)  ->  Abs (   -40,  1753)
+	 16: Rel (     2,   -67)  ->  Abs (   -38,  1686)
+	 17: Rel (     4,  -101)  ->  Abs (   -34,  1585)
+	 18: Rel (  -186,   -23)  ->  Abs (  -220,  1562)
+	 19: Rel (     0,   -50)  ->  Abs (  -220,  1512)
+	 20: Rel (  -112,     0)  ->  Abs (  -332,  1512)
+	 21: Rel (     0,   112)  ->  Abs (  -332,  1624)
+
+	Glyph 1141: off = 0x0002F21E, len = 204
+	  numberOfContours:	1
+	  xMin:			-499
+	  yMin:			1645
+	  xMax:			-95
+	  yMax:			1836
+
+	EndPoints
+	---------
+	  0:  20
+
+	  Length of Instructions:	128
+	00000: PUSHW[2]             16   -64 
+	00005: NPUSHB      (42):     9    32    52    11    13    10     7    17    17    20 
+	                            64    19    64   124   138    52    19    64    82    85 
+	                            52    19    64    75    76    52    19    64    60    62 
+	                            52    19    64    38    54    52    16    19     1    19 
+	                           128     7 
+	00049: PUSHW[5]            399    13   791    15   -64 
+	00060: NPUSHB      (15):    22    24    52    15   248     3     3    18    10    19 
+	                            11    11    18   144    19 
+	00077: MDAP[rd]   
+	00078: MIRP[nrp0,md,rd,1] 
+	00079: SHP[rp1,zp0] 
+	00080: MDAP[rd]   
+	00081: SRP2       
+	00082: IP         
+	00083: SRP1       
+	00084: SHP[rp1,zp0] 
+	00085: MDAP[rd]   
+	00086: MIRP[nrp0,md,rd,1] 
+	00087: CALL       
+	00088: SVTCA[y-axis] 
+	00089: RDTG       
+	00090: MIAP[rd+ci] 
+	00091: RTG        
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: SMD        
+	00094: MDRP[srp0,md,rd,0] 
+	00095: DELTAP2    
+	00096: CALL       
+	00097: CALL       
+	00098: CALL       
+	00099: CALL       
+	00100: CALL       
+	00101: SMD        
+	00102: MDRP[nrp0,md,rd,1] 
+	00103: IP         
+	00104: MDAP[rd]   
+	00105: SRP1       
+	00106: IP         
+	00107: SRP2       
+	00108: IP         
+	00109: PUSHB[2]              6     2 
+	00112: RS         
+	00113: EQ         
+	00114: IF         
+	00115: PUSHB[5]             17    64     9    25    52 
+	00121: SVTCA[y-axis] 
+	00122: CALL       
+	00123: EIF        
+	00124: IUP[y]     
+	00125: IUP[x]     
+	00126: SVTCA[x-axis] 
+	00127: CALL       
+
+	Flags
+	-----
+	  0:                                      Off
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:                      Y-Short         Off
+	 15:        XDual         Y-Short X-Short On
+	 16:        XDual         Y-Short X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:        XDual         Y-Short         On
+	 19:  YDual                       X-Short On
+	 20:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  -321,  1702)  ->  Abs (  -321,  1702)
+	  1: Rel (    18,     4)  ->  Abs (  -303,  1706)
+	  2: Rel (    49,    11)  ->  Abs (  -254,  1717)
+	  3: Rel (     1,    22)  ->  Abs (  -253,  1739)
+	  4: Rel (     1,    13)  ->  Abs (  -252,  1752)
+	  5: Rel (   -27,     9)  ->  Abs (  -279,  1761)
+	  6: Rel (   -39,    13)  ->  Abs (  -318,  1774)
+	  7: Rel (   -84,     0)  ->  Abs (  -402,  1774)
+	  8: Rel (    -8,     0)  ->  Abs (  -410,  1774)
+	  9: Rel (   -60,    -5)  ->  Abs (  -470,  1769)
+	 10: Rel (   -18,    -3)  ->  Abs (  -488,  1766)
+	 11: Rel (   -11,    65)  ->  Abs (  -499,  1831)
+	 12: Rel (    36,     5)  ->  Abs (  -463,  1836)
+	 13: Rel (    98,    -1)  ->  Abs (  -365,  1835)
+	 14: Rel (   262,    -1)  ->  Abs (  -103,  1834)
+	 15: Rel (     5,   -90)  ->  Abs (   -98,  1744)
+	 16: Rel (     3,   -63)  ->  Abs (   -95,  1681)
+	 17: Rel (  -172,   -14)  ->  Abs (  -267,  1667)
+	 18: Rel (     0,   -22)  ->  Abs (  -267,  1645)
+	 19: Rel (   -93,     0)  ->  Abs (  -360,  1645)
+	 20: Rel (     0,    55)  ->  Abs (  -360,  1700)
+
+	Glyph 1142: off = 0x0002F2EA, len = 216
+	  numberOfContours:	1
+	  xMin:			-751
+	  yMin:			1512
+	  xMax:			-314
+	  yMax:			1836
+
+	EndPoints
+	---------
+	  0:  21
+
+	  Length of Instructions:	139
+	00000: PUSHW[2]             17   -64 
+	00005: NPUSHB       (9):     9    24    52    10    12     9     7    21    18 
+	00016: PUSHW[1]            -64 
+	00019: NPUSHB      (14):    18    24    52    18   144    20     1   127    20     1 
+	                           144    20     1    20 
+	00035: PUSHW[1]            -64 
+	00038: PUSHB[4]              9    12    52    20 
+	00043: PUSHW[1]            -64 
+	00046: PUSHB[4]             25    37    52    20 
+	00051: PUSHW[1]            -64 
+	00054: NPUSHB      (10):    55    57    52    20    64    83    90    52    20     7 
+	00066: PUSHW[3]            790    12   791 
+	00073: NPUSHB      (12):    16   201     3     3    19     9    20    10    10    19 
+	                            87    20 
+	00087: PUSHW[1]            -64 
+	00090: NPUSHB       (9):    11    13    52     0    20   112    20     2    20 
+	00101: MDAP[rd]   
+	00102: DELTAP1    
+	00103: CALL       
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: SHP[rp1,zp0] 
+	00106: MDAP[rd]   
+	00107: SRP2       
+	00108: IP         
+	00109: SRP1       
+	00110: SHP[rp1,zp0] 
+	00111: MDAP[rd]   
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: SVTCA[y-axis] 
+	00114: RDTG       
+	00115: MIAP[rd+ci] 
+	00116: RTG        
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: RDTG       
+	00119: MDRP[srp0,nmd,rd,0] 
+	00120: CALL       
+	00121: CALL       
+	00122: CALL       
+	00123: CALL       
+	00124: DELTAP1    
+	00125: DELTAP2    
+	00126: DELTAP3    
+	00127: RTG        
+	00128: MDRP[srp0,md,rd,1] 
+	00129: CALL       
+	00130: MDRP[nrp0,md,rd,1] 
+	00131: SRP1       
+	00132: IP         
+	00133: SRP2       
+	00134: IP         
+	00135: IUP[y]     
+	00136: IUP[x]     
+	00137: SVTCA[x-axis] 
+	00138: CALL       
+
+	Flags
+	-----
+	  0:                                      Off
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:        XDual         Y-Short         On
+	 20:  YDual                       X-Short On
+	 21:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  -555,  1630)  ->  Abs (  -555,  1630)
+	  1: Rel (    16,     5)  ->  Abs (  -539,  1635)
+	  2: Rel (    53,    13)  ->  Abs (  -486,  1648)
+	  3: Rel (     1,    28)  ->  Abs (  -485,  1676)
+	  4: Rel (     1,    23)  ->  Abs (  -484,  1699)
+	  5: Rel (   -29,    16)  ->  Abs (  -513,  1715)
+	  6: Rel (   -42,    23)  ->  Abs (  -555,  1738)
+	  7: Rel (   -91,     0)  ->  Abs (  -646,  1738)
+	  8: Rel (   -31,     0)  ->  Abs (  -677,  1738)
+	  9: Rel (   -63,    -4)  ->  Abs (  -740,  1734)
+	 10: Rel (   -11,    94)  ->  Abs (  -751,  1828)
+	 11: Rel (    39,     8)  ->  Abs (  -712,  1836)
+	 12: Rel (   105,    -1)  ->  Abs (  -607,  1835)
+	 13: Rel (   123,    -1)  ->  Abs (  -484,  1834)
+	 14: Rel (    78,   -39)  ->  Abs (  -406,  1795)
+	 15: Rel (    86,   -42)  ->  Abs (  -320,  1753)
+	 16: Rel (     2,   -75)  ->  Abs (  -318,  1678)
+	 17: Rel (     4,   -93)  ->  Abs (  -314,  1585)
+	 18: Rel (  -186,   -23)  ->  Abs (  -500,  1562)
+	 19: Rel (     0,   -50)  ->  Abs (  -500,  1512)
+	 20: Rel (  -112,     0)  ->  Abs (  -612,  1512)
+	 21: Rel (     0,   112)  ->  Abs (  -612,  1624)
+
+	Glyph 1143: off = 0x0002F3C2, len = 204
+	  numberOfContours:	1
+	  xMin:			-921
+	  yMin:			1645
+	  xMax:			-517
+	  yMax:			1836
+
+	EndPoints
+	---------
+	  0:  20
+
+	  Length of Instructions:	128
+	00000: PUSHW[2]             16   -64 
+	00005: NPUSHB      (42):     9    32    52    11    13    10     7    17    17    20 
+	                            64    19    64   124   138    52    19    64    82    85 
+	                            52    19    64    75    76    52    19    64    60    62 
+	                            52    19    64    38    54    52    16    19     1    19 
+	                           128     7 
+	00049: PUSHW[5]            399    13   791    15   -64 
+	00060: NPUSHB      (15):    22    24    52    15   248     3     3    18    10    19 
+	                            11    11    18   144    19 
+	00077: MDAP[rd]   
+	00078: MIRP[nrp0,md,rd,1] 
+	00079: SHP[rp1,zp0] 
+	00080: MDAP[rd]   
+	00081: SRP2       
+	00082: IP         
+	00083: SRP1       
+	00084: SHP[rp1,zp0] 
+	00085: MDAP[rd]   
+	00086: MIRP[nrp0,md,rd,1] 
+	00087: CALL       
+	00088: SVTCA[y-axis] 
+	00089: RDTG       
+	00090: MIAP[rd+ci] 
+	00091: RTG        
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: SMD        
+	00094: MDRP[srp0,md,rd,0] 
+	00095: DELTAP2    
+	00096: CALL       
+	00097: CALL       
+	00098: CALL       
+	00099: CALL       
+	00100: CALL       
+	00101: SMD        
+	00102: MDRP[nrp0,md,rd,1] 
+	00103: IP         
+	00104: MDAP[rd]   
+	00105: SRP1       
+	00106: IP         
+	00107: SRP2       
+	00108: IP         
+	00109: PUSHB[2]              6     2 
+	00112: RS         
+	00113: EQ         
+	00114: IF         
+	00115: PUSHB[5]             17    64     9    25    52 
+	00121: SVTCA[y-axis] 
+	00122: CALL       
+	00123: EIF        
+	00124: IUP[y]     
+	00125: IUP[x]     
+	00126: SVTCA[x-axis] 
+	00127: CALL       
+
+	Flags
+	-----
+	  0:                                      Off
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:                      Y-Short         Off
+	 15:        XDual         Y-Short X-Short On
+	 16:        XDual         Y-Short X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:        XDual         Y-Short         On
+	 19:  YDual                       X-Short On
+	 20:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  -743,  1702)  ->  Abs (  -743,  1702)
+	  1: Rel (    18,     4)  ->  Abs (  -725,  1706)
+	  2: Rel (    49,    11)  ->  Abs (  -676,  1717)
+	  3: Rel (     1,    22)  ->  Abs (  -675,  1739)
+	  4: Rel (     1,    13)  ->  Abs (  -674,  1752)
+	  5: Rel (   -27,     9)  ->  Abs (  -701,  1761)
+	  6: Rel (   -39,    13)  ->  Abs (  -740,  1774)
+	  7: Rel (   -84,     0)  ->  Abs (  -824,  1774)
+	  8: Rel (    -8,     0)  ->  Abs (  -832,  1774)
+	  9: Rel (   -60,    -5)  ->  Abs (  -892,  1769)
+	 10: Rel (   -18,    -3)  ->  Abs (  -910,  1766)
+	 11: Rel (   -11,    65)  ->  Abs (  -921,  1831)
+	 12: Rel (    36,     5)  ->  Abs (  -885,  1836)
+	 13: Rel (    98,    -1)  ->  Abs (  -787,  1835)
+	 14: Rel (   262,    -1)  ->  Abs (  -525,  1834)
+	 15: Rel (     5,   -90)  ->  Abs (  -520,  1744)
+	 16: Rel (     3,   -63)  ->  Abs (  -517,  1681)
+	 17: Rel (  -172,   -14)  ->  Abs (  -689,  1667)
+	 18: Rel (     0,   -22)  ->  Abs (  -689,  1645)
+	 19: Rel (   -93,     0)  ->  Abs (  -782,  1645)
+	 20: Rel (     0,    55)  ->  Abs (  -782,  1700)
+
+	Glyph 1144: off = 0x0002F48E, len = 160
+	  numberOfContours:	1
+	  xMin:			-611
+	  yMin:			1609
+	  xMax:			59
+	  yMax:			1840
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	95
+	00000: PUSHB[6]             14    32     9    17    52    11 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (55):     9    19    52     2    32     9    17    52     0     0 
+	                           239    12     1    12    69     7     7   239    16     1 
+	                            16    69     3     3    31     9   223     9     2   143 
+	                             9     1     9    64     9    16    52    63     9   191 
+	                             9     2     9    10   118     9     9     0   118    64 
+	                            18   111    18     2    18 
+	00067: MDAP[rd]   
+	00068: DELTAP1    
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: SHP[rp1,zp0] 
+	00071: MDAP[rd]   
+	00072: MIRP[nrp0,md,rd,1] 
+	00073: SVTCA[y-axis] 
+	00074: MDAP[rd]   
+	00075: DELTAP1    
+	00076: CALL       
+	00077: DELTAP2    
+	00078: DELTAP3    
+	00079: SHP[rp1,zp0] 
+	00080: MDAP[rd]   
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: DELTAP1    
+	00083: IP         
+	00084: MDAP[rd]   
+	00085: MIRP[nrp0,md,rd,1] 
+	00086: DELTAP1    
+	00087: SHP[rp2,zp1] 
+	00088: MDAP[rd]   
+	00089: IUP[y]     
+	00090: IUP[x]     
+	00091: SVTCA[x-axis] 
+	00092: CALL       
+	00093: CALL       
+	00094: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual                 X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  -610,  1609)  ->  Abs (  -610,  1609)
+	  1: Rel (    -1,   102)  ->  Abs (  -611,  1711)
+	  2: Rel (   113,   126)  ->  Abs (  -498,  1837)
+	  3: Rel (    91,     0)  ->  Abs (  -407,  1837)
+	  4: Rel (    62,     0)  ->  Abs (  -345,  1837)
+	  5: Rel (   107,   -54)  ->  Abs (  -238,  1783)
+	  6: Rel (    59,   -30)  ->  Abs (  -179,  1753)
+	  7: Rel (    35,     0)  ->  Abs (  -144,  1753)
+	  8: Rel (    61,     0)  ->  Abs (   -83,  1753)
+	  9: Rel (    12,    87)  ->  Abs (   -71,  1840)
+	 10: Rel (   130,     0)  ->  Abs (    59,  1840)
+	 11: Rel (    -6,  -228)  ->  Abs (    53,  1612)
+	 12: Rel (  -190,     0)  ->  Abs (  -137,  1612)
+	 13: Rel (   -63,     0)  ->  Abs (  -200,  1612)
+	 14: Rel (  -103,    56)  ->  Abs (  -303,  1668)
+	 15: Rel (   -67,    36)  ->  Abs (  -370,  1704)
+	 16: Rel (   -31,     0)  ->  Abs (  -401,  1704)
+	 17: Rel (   -78,     0)  ->  Abs (  -479,  1704)
+	 18: Rel (     2,   -95)  ->  Abs (  -477,  1609)
+
+	Glyph 1145: off = 0x0002F52E, len = 282
+	  numberOfContours:	1
+	  xMin:			-1035
+	  yMin:			1660
+	  xMax:			-365
+	  yMax:			1835
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	217
+	00000: PUSHB[4]             75    14     1    11 
+	00005: PUSHW[1]            -32 
+	00008: NPUSHB      (11):    10    19    52     2    32    10    17    52     0     0 
+	                             7 
+	00021: PUSHW[1]            790 
+	00024: NPUSHB      (31):    64    12    64    94    53    12    64    79    83    52 
+	                            12    64    67    69    52    12    64    43    45    52 
+	                           111    12   127    12     2    15    12     1    12   128 
+	                            16 
+	00057: PUSHW[1]            790 
+	00060: NPUSHB      (97):     3     3    15     9   239     9     2    31     9    47 
+	                             9    79     9    95     9   143     9   159     9     6 
+	                            15     9    95     9   111     9   127     9   191     9 
+	                           240     9     6     9    64   139    53     9    64   106 
+	                           108    52     9    64    97    53     9    64    92    93 
+	                            52     9    64    87    89    52     9    64    77    81 
+	                            52     9    64    68    73    52     9    64    58    53 
+	                             9    64    49    52    52     9    64    46    66    52 
+	                             9    64    39    44    52     9    64    18    37    52 
+	                             9   128    10    13    52     9    10 
+	00159: PUSHW[1]            790 
+	00162: PUSHB[3]              9     9     0 
+	00166: PUSHW[2]            790    18 
+	00171: MDAP[rd]   
+	00172: MIRP[nrp0,md,rd,1] 
+	00173: SHP[rp1,zp0] 
+	00174: MDAP[rd]   
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: SVTCA[y-axis] 
+	00177: RDTG       
+	00178: MDAP[rd]   
+	00179: CALL       
+	00180: CALL       
+	00181: CALL       
+	00182: CALL       
+	00183: CALL       
+	00184: CALL       
+	00185: CALL       
+	00186: CALL       
+	00187: CALL       
+	00188: CALL       
+	00189: CALL       
+	00190: CALL       
+	00191: CALL       
+	00192: DELTAP1    
+	00193: DELTAP2    
+	00194: DELTAP3    
+	00195: SHP[rp1,zp0] 
+	00196: RTG        
+	00197: MDAP[rd]   
+	00198: MIRP[nrp0,md,rd,1] 
+	00199: SMD        
+	00200: MDRP[srp0,md,rd,1] 
+	00201: DELTAP1    
+	00202: DELTAP2    
+	00203: CALL       
+	00204: CALL       
+	00205: CALL       
+	00206: CALL       
+	00207: SMD        
+	00208: MIRP[nrp0,md,rd,1] 
+	00209: SHP[rp1,zp0] 
+	00210: MDAP[rd]   
+	00211: IUP[y]     
+	00212: IUP[x]     
+	00213: SVTCA[x-axis] 
+	00214: CALL       
+	00215: CALL       
+	00216: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual                 X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel ( -1034,  1660)  ->  Abs ( -1034,  1660)
+	  1: Rel (    -1,    82)  ->  Abs ( -1035,  1742)
+	  2: Rel (   113,    91)  ->  Abs (  -922,  1833)
+	  3: Rel (    91,     0)  ->  Abs (  -831,  1833)
+	  4: Rel (    62,     0)  ->  Abs (  -769,  1833)
+	  5: Rel (   107,   -44)  ->  Abs (  -662,  1789)
+	  6: Rel (    59,   -24)  ->  Abs (  -603,  1765)
+	  7: Rel (    68,     0)  ->  Abs (  -535,  1765)
+	  8: Rel (    61,     0)  ->  Abs (  -474,  1765)
+	  9: Rel (    12,    70)  ->  Abs (  -462,  1835)
+	 10: Rel (    97,     0)  ->  Abs (  -365,  1835)
+	 11: Rel (    -6,  -172)  ->  Abs (  -371,  1663)
+	 12: Rel (  -190,     0)  ->  Abs (  -561,  1663)
+	 13: Rel (   -63,     0)  ->  Abs (  -624,  1663)
+	 14: Rel (  -103,    44)  ->  Abs (  -727,  1707)
+	 15: Rel (   -67,    29)  ->  Abs (  -794,  1736)
+	 16: Rel (   -67,     0)  ->  Abs (  -861,  1736)
+	 17: Rel (   -78,     0)  ->  Abs (  -939,  1736)
+	 18: Rel (     2,   -76)  ->  Abs (  -937,  1660)
+
+	Glyph 1146: off = 0x0002F648, len = 180
+	  numberOfContours:	1
+	  xMin:			-910
+	  yMin:			1547
+	  xMax:			-240
+	  yMax:			1778
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	115
+	00000: PUSHB[6]             14    32     9    17    52    11 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (16):     9    19    52     2    32     9    17    52     0     0 
+	                           239    12     1    12    69     7 
+	00028: PUSHW[1]            -64 
+	00031: NPUSHB      (52):    33    38    52     7     7   239    16     1    16    69 
+	                             3     3    31     9    47     9    63     9     3    47 
+	                             9   143     9     2     9    64     9    16    52     9 
+	                            64    54    62    52    63     9   191     9     2     9 
+	                            10   118     9     9     0   118    64    18   111    18 
+	                             2    18 
+	00085: MDAP[rd]   
+	00086: DELTAP1    
+	00087: MIRP[nrp0,md,rd,1] 
+	00088: SHP[rp1,zp0] 
+	00089: MDAP[rd]   
+	00090: MIRP[nrp0,md,rd,1] 
+	00091: SVTCA[y-axis] 
+	00092: MDAP[rd]   
+	00093: DELTAP1    
+	00094: CALL       
+	00095: CALL       
+	00096: DELTAP2    
+	00097: DELTAP3    
+	00098: SHP[rp1,zp0] 
+	00099: MDAP[rd]   
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: DELTAP1    
+	00102: IP         
+	00103: MDAP[rd]   
+	00104: CALL       
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: DELTAP1    
+	00107: SHP[rp2,zp1] 
+	00108: MDAP[rd]   
+	00109: IUP[y]     
+	00110: IUP[x]     
+	00111: SVTCA[x-axis] 
+	00112: CALL       
+	00113: CALL       
+	00114: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual                 X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  -909,  1547)  ->  Abs (  -909,  1547)
+	  1: Rel (    -1,   102)  ->  Abs (  -910,  1649)
+	  2: Rel (   113,   126)  ->  Abs (  -797,  1775)
+	  3: Rel (    91,     0)  ->  Abs (  -706,  1775)
+	  4: Rel (    62,     0)  ->  Abs (  -644,  1775)
+	  5: Rel (   107,   -54)  ->  Abs (  -537,  1721)
+	  6: Rel (    59,   -30)  ->  Abs (  -478,  1691)
+	  7: Rel (    35,     0)  ->  Abs (  -443,  1691)
+	  8: Rel (    61,     0)  ->  Abs (  -382,  1691)
+	  9: Rel (    12,    87)  ->  Abs (  -370,  1778)
+	 10: Rel (   130,     0)  ->  Abs (  -240,  1778)
+	 11: Rel (    -6,  -228)  ->  Abs (  -246,  1550)
+	 12: Rel (  -190,     0)  ->  Abs (  -436,  1550)
+	 13: Rel (   -63,     0)  ->  Abs (  -499,  1550)
+	 14: Rel (  -103,    56)  ->  Abs (  -602,  1606)
+	 15: Rel (   -67,    36)  ->  Abs (  -669,  1642)
+	 16: Rel (   -31,     0)  ->  Abs (  -700,  1642)
+	 17: Rel (   -78,     0)  ->  Abs (  -778,  1642)
+	 18: Rel (     2,   -95)  ->  Abs (  -776,  1547)
+
+	Glyph 1147: off = 0x0002F6FC, len = 130
+	  numberOfContours:	1
+	  xMin:			-299
+	  yMin:			1492
+	  xMax:			284
+	  yMax:			1638
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	61
+	00000: PUSHW[2]             10   -16 
+	00005: PUSHB[4]             22    31    52     4 
+	00010: PUSHW[1]            -16 
+	00013: PUSHB[5]             22    31    52    11     2 
+	00019: PUSHW[1]            -64 
+	00022: NPUSHB      (19):    35    40    52     2   128   240     7     1     7   128 
+	                            16     3    12   128    11    11     2   128     3 
+	00043: MDAP[rd]   
+	00044: MIRP[nrp0,md,rd,1] 
+	00045: SHP[rp1,zp0] 
+	00046: MDAP[rd]   
+	00047: MIRP[nrp0,md,rd,1] 
+	00048: SVTCA[y-axis] 
+	00049: MIAP[rd+ci] 
+	00050: MIRP[nrp0,md,rd,1] 
+	00051: DELTAP2    
+	00052: SMD        
+	00053: MDRP[srp0,md,rd,1] 
+	00054: CALL       
+	00055: MDRP[nrp0,nmd,nrd,0] 
+	00056: IUP[y]     
+	00057: IUP[x]     
+	00058: SVTCA[y-axis] 
+	00059: CALL       
+	00060: CALL       
+
+	Flags
+	-----
+	  0:                              X-Short On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual                 X-Short On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short On
+	 19:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  -252,  1571)  ->  Abs (  -252,  1571)
+	  1: Rel (   -30,    30)  ->  Abs (  -282,  1601)
+	  2: Rel (   -17,    37)  ->  Abs (  -299,  1638)
+	  3: Rel (    78,     0)  ->  Abs (  -221,  1638)
+	  4: Rel (    24,   -29)  ->  Abs (  -197,  1609)
+	  5: Rel (    59,   -19)  ->  Abs (  -138,  1590)
+	  6: Rel (    64,   -20)  ->  Abs (   -74,  1570)
+	  7: Rel (    65,     0)  ->  Abs (    -9,  1570)
+	  8: Rel (    67,     0)  ->  Abs (    58,  1570)
+	  9: Rel (    64,    20)  ->  Abs (   122,  1590)
+	 10: Rel (    59,    18)  ->  Abs (   181,  1608)
+	 11: Rel (    24,    30)  ->  Abs (   205,  1638)
+	 12: Rel (    79,     0)  ->  Abs (   284,  1638)
+	 13: Rel (   -31,   -72)  ->  Abs (   253,  1566)
+	 14: Rel (   -73,   -36)  ->  Abs (   180,  1530)
+	 15: Rel (   -77,   -38)  ->  Abs (   103,  1492)
+	 16: Rel (  -112,     0)  ->  Abs (    -9,  1492)
+	 17: Rel (   -35,     0)  ->  Abs (   -44,  1492)
+	 18: Rel (   -31,     4)  ->  Abs (   -75,  1496)
+	 19: Rel (  -118,    14)  ->  Abs (  -193,  1510)
+
+	Glyph 1148: off = 0x0002F77E, len = 90
+	  numberOfContours:	1
+	  xMin:			-299
+	  yMin:			1492
+	  xMax:			313
+	  yMax:			1615
+
+	EndPoints
+	---------
+	  0:  6
+
+	  Length of Instructions:	57
+	00000: NPUSHB      (17):     0     3     6    15     3     1     3   128     2     3 
+	                             3     4     0     3     1     5     6 
+	00019: PUSHW[1]            -64 
+	00022: PUSHB[4]             20    24    52     6 
+	00027: PUSHW[1]            -64 
+	00030: PUSHB[6]             12    17    52     6     2     1 
+	00037: MDAP[rd]   
+	00038: MDRP[nrp0,md,rd,1] 
+	00039: MDRP[srp0,nmd,rd,2] 
+	00040: CALL       
+	00041: CALL       
+	00042: MDRP[nrp0,md,rd,1] 
+	00043: SRP2       
+	00044: SLOOP      
+	00045: IP         
+	00046: SVTCA[y-axis] 
+	00047: MIAP[rd+ci] 
+	00048: SMD        
+	00049: MDRP[nrp0,md,rd,1] 
+	00050: DELTAP3    
+	00051: MDRP[nrp0,nmd,nrd,0] 
+	00052: SRP2       
+	00053: IP         
+	00054: IUP[y]     
+	00055: IUP[x]     
+	00056: SVTCA[x-axis] 
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:                      Y-Short X-Short On
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual                 X-Short On
+	  5:        XDual         Y-Short X-Short On
+	  6:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (     7,  1559)  ->  Abs (     7,  1559)
+	  1: Rel (  -131,   -67)  ->  Abs (  -124,  1492)
+	  2: Rel (  -175,     0)  ->  Abs (  -299,  1492)
+	  3: Rel (   209,   123)  ->  Abs (   -90,  1615)
+	  4: Rel (   195,     0)  ->  Abs (   105,  1615)
+	  5: Rel (   208,  -123)  ->  Abs (   313,  1492)
+	  6: Rel (  -175,     0)  ->  Abs (   138,  1492)
+
+	Glyph 1149: off = 0x0002F7D8, len = 64
+	  numberOfContours:	1
+	  xMin:			-254
+	  yMin:			-325
+	  xMax:			-49
+	  yMax:			-120
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	40
+	00000: NPUSHB      (19):     0    60    80     1   144     1   208     1     3     0 
+	                             1     1     1     3    60    64     0     1     0 
+	00021: PUSHW[1]            -64 
+	00024: PUSHB[4]              9    10    52     0 
+	00029: MDAP[rd]   
+	00030: CALL       
+	00031: DELTAP2    
+	00032: MIRP[nrp0,md,rd,1] 
+	00033: SVTCA[y-axis] 
+	00034: MDAP[rd]   
+	00035: DELTAP2    
+	00036: DELTAP3    
+	00037: MIRP[nrp0,md,rd,1] 
+	00038: IUP[y]     
+	00039: IUP[x]     
+
+	Flags
+	-----
+	  0:                              X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  -254,  -325)  ->  Abs (  -254,  -325)
+	  1: Rel (     0,   205)  ->  Abs (  -254,  -120)
+	  2: Rel (   205,     0)  ->  Abs (   -49,  -120)
+	  3: Rel (     0,  -205)  ->  Abs (   -49,  -325)
+
+	Glyph 1150: off = 0x0002F818, len = 286
+	  numberOfContours:	3
+	  xMin:			160
+	  yMin:			246
+	  xMax:			905
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  24
+	  1:  36
+	  2:  40
+
+	  Length of Instructions:	164
+	00000: NPUSHB      (21):   143    16   128    20     2   137    12   134    24     2 
+	                             7     2    46     8     1     1     4    22    38    46 
+	                            39 
+	00023: PUSHW[1]            -64 
+	00026: NPUSHB      (23):     9    11    52    39    39    14    24    12    34    11 
+	                            11    28   145    14    64    10    12    52    14    14 
+	                            34   145    22 
+	00051: PUSHW[1]            -64 
+	00054: NPUSHB      (14):    10    12    52    22    22     4     2    31     0    11 
+	                            11    10     0     2 
+	00070: PUSHW[1]            -64 
+	00073: NPUSHB      (12):    10    22    52     2     2     4    25     7    37    37 
+	                             4     0 
+	00087: PUSHW[1]            654 
+	00090: NPUSHB      (10):     5    32    10     1    10    10    42    38    38    25 
+	00102: PUSHW[2]            654    18 
+	00107: MDAP[rd]   
+	00108: MIRP[nrp0,md,rd,1] 
+	00109: SHP[rp1,zp0] 
+	00110: MDAP[rd]   
+	00111: SRP1       
+	00112: SHP[rp1,zp0] 
+	00113: MDAP[rd]   
+	00114: DELTAP1    
+	00115: ALIGNRP    
+	00116: MIRP[srp0,md,rd,1] 
+	00117: ALIGNRP    
+	00118: SHP[rp1,zp0] 
+	00119: MDAP[rd]   
+	00120: ALIGNRP    
+	00121: SRP1       
+	00122: SRP2       
+	00123: IP         
+	00124: MDAP[rd]   
+	00125: CALL       
+	00126: SRP1       
+	00127: SRP2       
+	00128: IP         
+	00129: MDAP[rd]   
+	00130: SRP2       
+	00131: IP         
+	00132: SVTCA[y-axis] 
+	00133: MIAP[rd+ci] 
+	00134: SHP[rp1,zp0] 
+	00135: MDAP[rd]   
+	00136: CALL       
+	00137: MIRP[nrp0,md,rd,1] 
+	00138: SHP[rp1,zp0] 
+	00139: MDAP[rd]   
+	00140: CALL       
+	00141: MIRP[nrp0,md,rd,1] 
+	00142: IP         
+	00143: MDAP[rd]   
+	00144: SRP1       
+	00145: IP         
+	00146: IP         
+	00147: SRP1       
+	00148: SHP[rp1,zp0] 
+	00149: MDAP[rd]   
+	00150: CALL       
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: SRP1       
+	00153: SRP2       
+	00154: IP         
+	00155: MDAP[rd]   
+	00156: ALIGNRP    
+	00157: MIRP[srp0,md,rd,1] 
+	00158: ALIGNRP    
+	00159: IUP[y]     
+	00160: IUP[x]     
+	00161: SVTCA[y-axis] 
+	00162: DELTAP1    
+	00163: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual         Y-Short         On
+	  7:  YDual XDual                 X-Short On
+	  8:        XDual         Y-Short         On
+	  9:  YDual                       X-Short On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+	 12:  YDual XDual         Y-Short         On
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:                                      On
+	 26:        XDual         Y-Short         Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:                      Y-Short X-Short Off
+	 37:                                      On
+	 38:  YDual                               On
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   678,  1293)  ->  Abs (   678,  1293)
+	  1: Rel (   -94,     0)  ->  Abs (   584,  1293)
+	  2: Rel (     0,    92)  ->  Abs (   584,  1385)
+	  3: Rel (    94,     0)  ->  Abs (   678,  1385)
+	  4: Rel (     0,    81)  ->  Abs (   678,  1466)
+	  5: Rel (   125,     0)  ->  Abs (   803,  1466)
+	  6: Rel (     0,   -81)  ->  Abs (   803,  1385)
+	  7: Rel (   102,     0)  ->  Abs (   905,  1385)
+	  8: Rel (     0,   -92)  ->  Abs (   905,  1293)
+	  9: Rel (  -102,     0)  ->  Abs (   803,  1293)
+	 10: Rel (     0,  -851)  ->  Abs (   803,   442)
+	 11: Rel (  -116,     0)  ->  Abs (   687,   442)
+	 12: Rel (     0,    93)  ->  Abs (   687,   535)
+	 13: Rel (   -71,  -111)  ->  Abs (   616,   424)
+	 14: Rel (  -137,     0)  ->  Abs (   479,   424)
+	 15: Rel (  -191,     0)  ->  Abs (   288,   424)
+	 16: Rel (   -87,   187)  ->  Abs (   201,   611)
+	 17: Rel (   -41,    87)  ->  Abs (   160,   698)
+	 18: Rel (     0,   114)  ->  Abs (   160,   812)
+	 19: Rel (     0,   244)  ->  Abs (   160,  1056)
+	 20: Rel (   148,    96)  ->  Abs (   308,  1152)
+	 21: Rel (    74,    49)  ->  Abs (   382,  1201)
+	 22: Rel (    92,     0)  ->  Abs (   474,  1201)
+	 23: Rel (   130,     0)  ->  Abs (   604,  1201)
+	 24: Rel (    74,  -103)  ->  Abs (   678,  1098)
+	 25: Rel (  -389,  -286)  ->  Abs (   289,   812)
+	 26: Rel (     0,  -130)  ->  Abs (   289,   682)
+	 27: Rel (   111,  -154)  ->  Abs (   400,   528)
+	 28: Rel (    91,     0)  ->  Abs (   491,   528)
+	 29: Rel (    91,     0)  ->  Abs (   582,   528)
+	 30: Rel (   107,   147)  ->  Abs (   689,   675)
+	 31: Rel (     0,   126)  ->  Abs (   689,   801)
+	 32: Rel (     0,   140)  ->  Abs (   689,   941)
+	 33: Rel (  -109,   156)  ->  Abs (   580,  1097)
+	 34: Rel (   -95,     0)  ->  Abs (   485,  1097)
+	 35: Rel (   -92,     0)  ->  Abs (   393,  1097)
+	 36: Rel (  -104,  -150)  ->  Abs (   289,   947)
+	 37: Rel (   616,  -701)  ->  Abs (   905,   246)
+	 38: Rel (  -745,     0)  ->  Abs (   160,   246)
+	 39: Rel (     0,    91)  ->  Abs (   160,   337)
+	 40: Rel (   745,     0)  ->  Abs (   905,   337)
+
+	Glyph 1151: off = 0x0002F936, len = 330
+	  numberOfContours:	3
+	  xMin:			107
+	  yMin:			-57
+	  xMax:			1686
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  12
+	  2:  48
+
+	  Length of Instructions:	177
+	00000: NPUSHB      (21):     2     3     3    63     0     1    20     0     0     1 
+	                            34    33    33    31    27    13    14    14    18    41 
+	                            27 
+	00023: PUSHW[1]            609 
+	00026: PUSHB[4]             26    26    18    31 
+	00031: PUSHW[5]            609    37   287    18   609 
+	00042: NPUSHB       (9):    47   226     3     0     9     5     7   232     8 
+	00053: PUSHW[3]            675     4   287 
+	00060: NPUSHB      (22):    10   226     2     1     1     2     1    14    41    21 
+	                            27    26    26    29    14    33    41    34    34    14 
+	                            41    13 
+	00084: PUSHW[1]            552 
+	00087: NPUSHB      (20):    43    29    41    39    39    21    41    43    43    50 
+	                             3    12     0     7    10    12    41     7   203     4 
+	00109: MDAP[rd]   
+	00110: MIRP[nrp0,nmd,rd,2] 
+	00111: MIRP[nrp0,md,rd,1] 
+	00112: IP         
+	00113: SRP2       
+	00114: IP         
+	00115: SRP2       
+	00116: IP         
+	00117: SRP1       
+	00118: SHP[rp1,zp0] 
+	00119: MDAP[rd]   
+	00120: MIRP[srp0,md,rd,1] 
+	00121: IP         
+	00122: MDAP[rd]   
+	00123: MIRP[nrp0,md,rd,1] 
+	00124: SRP0       
+	00125: MIRP[srp0,md,rd,1] 
+	00126: MIRP[nrp0,md,rd,1] 
+	00127: SHP[rp1,zp0] 
+	00128: MDAP[rd]   
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: SRP1       
+	00131: SRP2       
+	00132: IP         
+	00133: MDAP[rd]   
+	00134: IP         
+	00135: SRP1       
+	00136: IP         
+	00137: SRP2       
+	00138: IP         
+	00139: IP         
+	00140: SVTCA[y-axis] 
+	00141: MIAP[rd+ci] 
+	00142: ALIGNRP    
+	00143: MIRP[srp0,nmd,rd,0] 
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: MIRP[srp0,nmd,rd,0] 
+	00146: MIRP[srp0,md,rd,1] 
+	00147: IP         
+	00148: MIAP[rd+ci] 
+	00149: ALIGNRP    
+	00150: MIRP[srp0,nmd,rd,2] 
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: MIRP[srp0,md,rd,1] 
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: SRP1       
+	00155: IP         
+	00156: MDAP[rd]   
+	00157: MIRP[nrp0,md,rd,0] 
+	00158: IP         
+	00159: SRP2       
+	00160: IP         
+	00161: MDAP[rd]   
+	00162: IP         
+	00163: SRP1       
+	00164: SRP2       
+	00165: IP         
+	00166: MDAP[rd]   
+	00167: IP         
+	00168: SDPVTL[1]  
+	00169: SFVTCA[x-axis] 
+	00170: MDAP[nrd]  
+	00171: CALL       
+	00172: RDTG       
+	00173: SRP0       
+	00174: MDRP[nrp0,nmd,rd,0] 
+	00175: IUP[y]     
+	00176: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual         Y-Short X-Short On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+	  4:                              X-Short On
+	  5:        XDual                         On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                         On
+	 13:                                      On
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:                      Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:                      Y-Short X-Short On
+	 34:  YDual               Y-Short X-Short On
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual                               Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:                      Y-Short X-Short On
+	 42:        XDual         Y-Short X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:                      Y-Short X-Short On
+	 46:                      Y-Short X-Short Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                               Off
+
+	Coordinates
+	-----------
+	  0: Rel (   228,   -57)  ->  Abs (   228,   -57)
+	  1: Rel (  1101,  1548)  ->  Abs (  1329,  1491)
+	  2: Rel (   157,     0)  ->  Abs (  1486,  1491)
+	  3: Rel ( -1101, -1548)  ->  Abs (   385,   -57)
+	  4: Rel (   -54,   790)  ->  Abs (   331,   733)
+	  5: Rel (     0,   554)  ->  Abs (   331,  1287)
+	  6: Rel (  -102,   -81)  ->  Abs (   229,  1206)
+	  7: Rel (  -122,   -32)  ->  Abs (   107,  1174)
+	  8: Rel (     0,   123)  ->  Abs (   107,  1297)
+	  9: Rel (   156,    50)  ->  Abs (   263,  1347)
+	 10: Rel (   105,   137)  ->  Abs (   368,  1484)
+	 11: Rel (   108,     0)  ->  Abs (   476,  1484)
+	 12: Rel (     0,  -751)  ->  Abs (   476,   733)
+	 13: Rel (   597,  -566)  ->  Abs (  1073,   167)
+	 14: Rel (   146,    15)  ->  Abs (  1219,   182)
+	 15: Rel (    20,   -59)  ->  Abs (  1239,   123)
+	 16: Rel (    32,   -23)  ->  Abs (  1271,   100)
+	 17: Rel (    43,   -30)  ->  Abs (  1314,    70)
+	 18: Rel (    59,     0)  ->  Abs (  1373,    70)
+	 19: Rel (    70,     0)  ->  Abs (  1443,    70)
+	 20: Rel (    87,    77)  ->  Abs (  1530,   147)
+	 21: Rel (     0,    56)  ->  Abs (  1530,   203)
+	 22: Rel (     0,   110)  ->  Abs (  1530,   313)
+	 23: Rel (  -159,     0)  ->  Abs (  1371,   313)
+	 24: Rel (    -7,     0)  ->  Abs (  1364,   313)
+	 25: Rel (   -41,    -3)  ->  Abs (  1323,   310)
+	 26: Rel (    -7,     0)  ->  Abs (  1316,   310)
+	 27: Rel (    22,   110)  ->  Abs (  1338,   420)
+	 28: Rel (   156,    -2)  ->  Abs (  1494,   418)
+	 29: Rel (     0,   104)  ->  Abs (  1494,   522)
+	 30: Rel (     0,    89)  ->  Abs (  1494,   611)
+	 31: Rel (  -119,     0)  ->  Abs (  1375,   611)
+	 32: Rel (  -101,     0)  ->  Abs (  1274,   611)
+	 33: Rel (   -41,  -102)  ->  Abs (  1233,   509)
+	 34: Rel (  -143,    23)  ->  Abs (  1090,   532)
+	 35: Rel (    41,   107)  ->  Abs (  1131,   639)
+	 36: Rel (   125,    83)  ->  Abs (  1256,   722)
+	 37: Rel (   120,     0)  ->  Abs (  1376,   722)
+	 38: Rel (   275,     0)  ->  Abs (  1651,   722)
+	 39: Rel (     0,  -187)  ->  Abs (  1651,   535)
+	 40: Rel (     0,  -120)  ->  Abs (  1651,   415)
+	 41: Rel (  -138,   -40)  ->  Abs (  1513,   375)
+	 42: Rel (   173,   -42)  ->  Abs (  1686,   333)
+	 43: Rel (     0,  -149)  ->  Abs (  1686,   184)
+	 44: Rel (     0,   -97)  ->  Abs (  1686,    87)
+	 45: Rel (   -79,   -65)  ->  Abs (  1607,    22)
+	 46: Rel (   -84,   -69)  ->  Abs (  1523,   -47)
+	 47: Rel (  -141,     0)  ->  Abs (  1382,   -47)
+	 48: Rel (  -265,     0)  ->  Abs (  1117,   -47)
+
+	Glyph 1152: off = 0x0002FA80, len = 408
+	  numberOfContours:	3
+	  xMin:			25
+	  yMin:			-57
+	  xMax:			1676
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  39
+	  2:  66
+
+	  Length of Instructions:	208
+	00000: NPUSHB      (21):     2     3     3    63     0     1    20     0     0     1 
+	                            25    24    24    22    18     4     5     5     9    32 
+	                            18 
+	00023: PUSHW[1]            609 
+	00026: PUSHB[4]             17    17     9    22 
+	00031: PUSHW[5]            609    28   287     9   609 
+	00042: NPUSHB      (11):    38   226     3     0     9    52    51    51    48    65 
+	                            64 
+	00055: PUSHW[5]            609    66   287    48   609 
+	00066: NPUSHB      (22):    54   226     2     1     1     2     1    24    32    12 
+	                            18    17    17    20     5    24    41    25    25     5 
+	                            41     4 
+	00090: PUSHW[1]            552 
+	00093: NPUSHB      (13):    34    20    41    30    30    12    41    34    34    68 
+	                             3     0    64 
+	00108: PUSHW[1]            -32 
+	00111: NPUSHB      (18):    15    17    52    64    46    40    66    58    46    41 
+	                            58   191    40    51    41    52    39    40 
+	00131: MDAP[rd]   
+	00132: MIRP[srp0,nmd,rd,0] 
+	00133: MIRP[nrp0,md,rd,1] 
+	00134: SRP0       
+	00135: MIRP[srp0,md,rd,1] 
+	00136: MIRP[nrp0,md,rd,1] 
+	00137: MIRP[nrp0,nmd,rd,0] 
+	00138: SRP1       
+	00139: SRP2       
+	00140: IP         
+	00141: CALL       
+	00142: IP         
+	00143: IP         
+	00144: SRP1       
+	00145: SHP[rp1,zp0] 
+	00146: MDAP[rd]   
+	00147: MIRP[srp0,md,rd,1] 
+	00148: IP         
+	00149: MDAP[rd]   
+	00150: MIRP[nrp0,md,rd,1] 
+	00151: SRP0       
+	00152: MIRP[srp0,md,rd,1] 
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: SHP[rp1,zp0] 
+	00155: MDAP[rd]   
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: SRP1       
+	00158: SRP2       
+	00159: IP         
+	00160: MDAP[rd]   
+	00161: IP         
+	00162: SRP1       
+	00163: IP         
+	00164: SRP1       
+	00165: IP         
+	00166: IP         
+	00167: SVTCA[y-axis] 
+	00168: MIAP[rd+ci] 
+	00169: ALIGNRP    
+	00170: MIRP[srp0,nmd,rd,0] 
+	00171: MIRP[nrp0,md,rd,1] 
+	00172: MIRP[srp0,md,rd,1] 
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: SRP1       
+	00175: SRP2       
+	00176: IP         
+	00177: MDAP[rd]   
+	00178: IP         
+	00179: MIAP[rd+ci] 
+	00180: ALIGNRP    
+	00181: MIRP[srp0,nmd,rd,2] 
+	00182: MIRP[nrp0,md,rd,1] 
+	00183: MIRP[srp0,md,rd,1] 
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: SRP1       
+	00186: IP         
+	00187: MDAP[rd]   
+	00188: MIRP[nrp0,md,rd,0] 
+	00189: IP         
+	00190: SRP2       
+	00191: IP         
+	00192: MDAP[rd]   
+	00193: IP         
+	00194: SRP1       
+	00195: SRP2       
+	00196: IP         
+	00197: MDAP[rd]   
+	00198: IP         
+	00199: SDPVTL[1]  
+	00200: SFVTCA[x-axis] 
+	00201: MDAP[nrd]  
+	00202: CALL       
+	00203: RDTG       
+	00204: SRP0       
+	00205: MDRP[nrp0,nmd,rd,0] 
+	00206: IUP[y]     
+	00207: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual         Y-Short X-Short On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+	  4:  YDual               Y-Short         On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:                      Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual                               Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:                      Y-Short X-Short On
+	 37:                      Y-Short X-Short Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                               Off
+	 40:                                      On
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short X-Short On
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short         On
+	 47:  YDual XDual         Y-Short         Off
+	 48:  YDual                       X-Short On
+	 49:  YDual                       X-Short Off
+	 50:                      Y-Short X-Short Off
+	 51:                      Y-Short X-Short On
+	 52:  YDual               Y-Short X-Short On
+	 53:  YDual XDual         Y-Short X-Short Off
+	 54:  YDual XDual                 X-Short On
+	 55:  YDual XDual                 X-Short Off
+	 56:        XDual         Y-Short X-Short On
+	 57:        XDual         Y-Short X-Short Off
+	 58:        XDual         Y-Short         On
+	 59:        XDual         Y-Short         Off
+	 60:                      Y-Short X-Short On
+	 61:                      Y-Short X-Short Off
+	 62:                      Y-Short X-Short On
+	 63:                      Y-Short X-Short Off
+	 64:                      Y-Short X-Short On
+	 65:  YDual                               On
+	 66:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   228,   -57)  ->  Abs (   228,   -57)
+	  1: Rel (  1101,  1548)  ->  Abs (  1329,  1491)
+	  2: Rel (   157,     0)  ->  Abs (  1486,  1491)
+	  3: Rel ( -1101, -1548)  ->  Abs (   385,   -57)
+	  4: Rel (   678,   224)  ->  Abs (  1063,   167)
+	  5: Rel (   146,    15)  ->  Abs (  1209,   182)
+	  6: Rel (    20,   -59)  ->  Abs (  1229,   123)
+	  7: Rel (    32,   -23)  ->  Abs (  1261,   100)
+	  8: Rel (    43,   -30)  ->  Abs (  1304,    70)
+	  9: Rel (    59,     0)  ->  Abs (  1363,    70)
+	 10: Rel (    70,     0)  ->  Abs (  1433,    70)
+	 11: Rel (    87,    77)  ->  Abs (  1520,   147)
+	 12: Rel (     0,    56)  ->  Abs (  1520,   203)
+	 13: Rel (     0,   110)  ->  Abs (  1520,   313)
+	 14: Rel (  -159,     0)  ->  Abs (  1361,   313)
+	 15: Rel (    -7,     0)  ->  Abs (  1354,   313)
+	 16: Rel (   -41,    -3)  ->  Abs (  1313,   310)
+	 17: Rel (    -7,     0)  ->  Abs (  1306,   310)
+	 18: Rel (    22,   110)  ->  Abs (  1328,   420)
+	 19: Rel (   156,    -2)  ->  Abs (  1484,   418)
+	 20: Rel (     0,   104)  ->  Abs (  1484,   522)
+	 21: Rel (     0,    89)  ->  Abs (  1484,   611)
+	 22: Rel (  -119,     0)  ->  Abs (  1365,   611)
+	 23: Rel (  -101,     0)  ->  Abs (  1264,   611)
+	 24: Rel (   -41,  -102)  ->  Abs (  1223,   509)
+	 25: Rel (  -143,    23)  ->  Abs (  1080,   532)
+	 26: Rel (    41,   107)  ->  Abs (  1121,   639)
+	 27: Rel (   125,    83)  ->  Abs (  1246,   722)
+	 28: Rel (   120,     0)  ->  Abs (  1366,   722)
+	 29: Rel (   275,     0)  ->  Abs (  1641,   722)
+	 30: Rel (     0,  -187)  ->  Abs (  1641,   535)
+	 31: Rel (     0,  -120)  ->  Abs (  1641,   415)
+	 32: Rel (  -138,   -40)  ->  Abs (  1503,   375)
+	 33: Rel (   173,   -42)  ->  Abs (  1676,   333)
+	 34: Rel (     0,  -149)  ->  Abs (  1676,   184)
+	 35: Rel (     0,   -97)  ->  Abs (  1676,    87)
+	 36: Rel (   -79,   -65)  ->  Abs (  1597,    22)
+	 37: Rel (   -84,   -69)  ->  Abs (  1513,   -47)
+	 38: Rel (  -141,     0)  ->  Abs (  1372,   -47)
+	 39: Rel (  -265,     0)  ->  Abs (  1107,   -47)
+	 40: Rel ( -1082,   780)  ->  Abs (    25,   733)
+	 41: Rel (    14,   130)  ->  Abs (    39,   863)
+	 42: Rel (   240,   175)  ->  Abs (   279,  1038)
+	 43: Rel (   144,   104)  ->  Abs (   423,  1142)
+	 44: Rel (    27,    30)  ->  Abs (   450,  1172)
+	 45: Rel (    37,    41)  ->  Abs (   487,  1213)
+	 46: Rel (     0,    43)  ->  Abs (   487,  1256)
+	 47: Rel (     0,   110)  ->  Abs (   487,  1366)
+	 48: Rel (  -138,     0)  ->  Abs (   349,  1366)
+	 49: Rel (   -67,     0)  ->  Abs (   282,  1366)
+	 50: Rel (   -64,   -48)  ->  Abs (   218,  1318)
+	 51: Rel (   -21,   -66)  ->  Abs (   197,  1252)
+	 52: Rel (  -151,    16)  ->  Abs (    46,  1268)
+	 53: Rel (    56,   216)  ->  Abs (   102,  1484)
+	 54: Rel (   250,     0)  ->  Abs (   352,  1484)
+	 55: Rel (   144,     0)  ->  Abs (   496,  1484)
+	 56: Rel (    78,   -59)  ->  Abs (   574,  1425)
+	 57: Rel (    70,   -54)  ->  Abs (   644,  1371)
+	 58: Rel (     0,   -90)  ->  Abs (   644,  1281)
+	 59: Rel (     0,   -85)  ->  Abs (   644,  1196)
+	 60: Rel (   -59,   -74)  ->  Abs (   585,  1122)
+	 61: Rel (   -42,   -53)  ->  Abs (   543,  1069)
+	 62: Rel (  -163,  -118)  ->  Abs (   380,   951)
+	 63: Rel (   -80,   -58)  ->  Abs (   300,   893)
+	 64: Rel (   -38,   -39)  ->  Abs (   262,   854)
+	 65: Rel (   386,     0)  ->  Abs (   648,   854)
+	 66: Rel (     0,  -121)  ->  Abs (   648,   733)
+
+	Glyph 1153: off = 0x0002FC18, len = 92
+	  numberOfContours:	1
+	  xMin:			-330
+	  yMin:			1194
+	  xMax:			46
+	  yMax:			1474
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	66
+	00000: PUSHB[4]            153     1     1     2 
+	00005: PUSHW[1]            -32 
+	00008: PUSHB[4]             14    17    52     2 
+	00013: PUSHW[1]            -64 
+	00016: NPUSHB      (15):     9    10    52     2   135   143     1     1     1    64 
+	                             9    16    52     1     3 
+	00033: PUSHW[1]            595 
+	00036: PUSHB[8]              2   134    79     0   223     0     2     0 
+	00045: PUSHW[2]            608     1 
+	00050: MDAP[rd]   
+	00051: MIRP[nrp0,md,rd,1] 
+	00052: DELTAP1    
+	00053: MIRP[srp0,md,rd,1] 
+	00054: MIRP[nrp0,md,rd,1] 
+	00055: SVTCA[y-axis] 
+	00056: MDAP[rd]   
+	00057: CALL       
+	00058: DELTAP2    
+	00059: MIRP[nrp0,md,rd,1] 
+	00060: CALL       
+	00061: IUP[y]     
+	00062: IUP[x]     
+	00063: SVTCA[x-axis] 
+	00064: CALL       
+	00065: DELTAP1    
+
+	Flags
+	-----
+	  0:                              X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:                              X-Short On
+	  3:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  -195,  1474)  ->  Abs (  -195,  1474)
+	  1: Rel (   241,     0)  ->  Abs (    46,  1474)
+	  2: Rel (  -231,  -280)  ->  Abs (  -185,  1194)
+	  3: Rel (  -145,     0)  ->  Abs (  -330,  1194)
+
+	Glyph 1154: off = 0x0002FC74, len = 94
+	  numberOfContours:	1
+	  xMin:			-653
+	  yMin:			1194
+	  xMax:			-277
+	  yMax:			1474
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	66
+	00000: PUSHB[4]            153     1     1     2 
+	00005: PUSHW[1]            -32 
+	00008: PUSHB[4]             14    17    52     2 
+	00013: PUSHW[1]            -64 
+	00016: NPUSHB      (15):     9    10    52     2   135   143     1     1     1    64 
+	                             9    16    52     1     3 
+	00033: PUSHW[1]            595 
+	00036: PUSHB[8]              2   134    79     0   223     0     2     0 
+	00045: PUSHW[2]            608     1 
+	00050: MDAP[rd]   
+	00051: MIRP[nrp0,md,rd,1] 
+	00052: DELTAP1    
+	00053: MIRP[srp0,md,rd,1] 
+	00054: MIRP[nrp0,md,rd,1] 
+	00055: SVTCA[y-axis] 
+	00056: MDAP[rd]   
+	00057: CALL       
+	00058: DELTAP2    
+	00059: MIRP[nrp0,md,rd,1] 
+	00060: CALL       
+	00061: IUP[y]     
+	00062: IUP[x]     
+	00063: SVTCA[x-axis] 
+	00064: CALL       
+	00065: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:                              X-Short On
+	  3:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  -518,  1474)  ->  Abs (  -518,  1474)
+	  1: Rel (   241,     0)  ->  Abs (  -277,  1474)
+	  2: Rel (  -231,  -280)  ->  Abs (  -508,  1194)
+	  3: Rel (  -145,     0)  ->  Abs (  -653,  1194)
+
+	Glyph 1155: off = 0x0002FCD2, len = 92
+	  numberOfContours:	1
+	  xMin:			-504
+	  yMin:			1194
+	  xMax:			-128
+	  yMax:			1474
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	65
+	00000: PUSHB[6]              1    32    14    17    52     1 
+	00007: PUSHW[1]            -64 
+	00010: NPUSHB      (15):     9    10    52     1   135   143     2     1     2    64 
+	                             9    16    52     2     0 
+	00027: PUSHW[1]            595 
+	00030: PUSHB[8]              1   134    64     3   208     3     2     3 
+	00039: PUSHW[1]            608 
+	00042: PUSHB[6]            112     2   176     2     2     2 
+	00049: MDAP[rd]   
+	00050: DELTAP1    
+	00051: MIRP[nrp0,md,rd,1] 
+	00052: DELTAP1    
+	00053: MIRP[srp0,nmd,rd,0] 
+	00054: MIRP[nrp0,md,rd,1] 
+	00055: SVTCA[y-axis] 
+	00056: MDAP[rd]   
+	00057: CALL       
+	00058: DELTAP2    
+	00059: MIRP[nrp0,md,rd,1] 
+	00060: CALL       
+	00061: IUP[y]     
+	00062: IUP[x]     
+	00063: SVTCA[x-axis] 
+	00064: CALL       
+
+	Flags
+	-----
+	  0:                              X-Short On
+	  1:  YDual                       X-Short On
+	  2:                              X-Short On
+	  3:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  -128,  1194)  ->  Abs (  -128,  1194)
+	  1: Rel (  -145,     0)  ->  Abs (  -273,  1194)
+	  2: Rel (  -231,   280)  ->  Abs (  -504,  1474)
+	  3: Rel (   241,     0)  ->  Abs (  -263,  1474)
+
+	Glyph 1156: off = 0x0002FD2E, len = 92
+	  numberOfContours:	1
+	  xMin:			-858
+	  yMin:			1194
+	  xMax:			-482
+	  yMax:			1474
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	65
+	00000: PUSHB[6]              1    32    14    17    52     1 
+	00007: PUSHW[1]            -64 
+	00010: NPUSHB      (15):     9    10    52     1   135   143     2     1     2    64 
+	                             9    16    52     2     0 
+	00027: PUSHW[1]            595 
+	00030: PUSHB[8]              1   134    64     3   208     3     2     3 
+	00039: PUSHW[1]            608 
+	00042: PUSHB[6]            112     2   176     2     2     2 
+	00049: MDAP[rd]   
+	00050: DELTAP1    
+	00051: MIRP[nrp0,md,rd,1] 
+	00052: DELTAP1    
+	00053: MIRP[srp0,nmd,rd,0] 
+	00054: MIRP[nrp0,md,rd,1] 
+	00055: SVTCA[y-axis] 
+	00056: MDAP[rd]   
+	00057: CALL       
+	00058: DELTAP2    
+	00059: MIRP[nrp0,md,rd,1] 
+	00060: CALL       
+	00061: IUP[y]     
+	00062: IUP[x]     
+	00063: SVTCA[x-axis] 
+	00064: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:                              X-Short On
+	  3:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  -482,  1194)  ->  Abs (  -482,  1194)
+	  1: Rel (  -145,     0)  ->  Abs (  -627,  1194)
+	  2: Rel (  -231,   280)  ->  Abs (  -858,  1474)
+	  3: Rel (   241,     0)  ->  Abs (  -617,  1474)
+
+	Glyph 1157: off = 0x0002FD8A, len = 180
+	  numberOfContours:	1
+	  xMin:			-429
+	  yMin:			1194
+	  xMax:			8
+	  yMax:			1549
+
+	EndPoints
+	---------
+	  0:  21
+
+	  Length of Instructions:	104
+	00000: PUSHW[2]             17   -64 
+	00005: PUSHB[8]              9    23    52    10    12     9    21     7 
+	00014: PUSHW[1]            790 
+	00017: PUSHB[4]             12    21    52    18 
+	00022: PUSHW[1]            -64 
+	00025: PUSHB[5]              9    26    52    18    20 
+	00031: PUSHW[1]            707 
+	00034: NPUSHB      (12):    16   201     3     3    19     9    20    10    10    19 
+	                            87    20 
+	00048: PUSHW[1]            -64 
+	00051: NPUSHB       (9):    11    13    52     0    20   112    20     2    20 
+	00062: MDAP[rd]   
+	00063: DELTAP1    
+	00064: CALL       
+	00065: MIRP[nrp0,md,rd,1] 
+	00066: SHP[rp1,zp0] 
+	00067: MDAP[rd]   
+	00068: SRP2       
+	00069: IP         
+	00070: SRP1       
+	00071: SHP[rp1,zp0] 
+	00072: MDAP[rd]   
+	00073: MIRP[nrp0,md,rd,1] 
+	00074: SVTCA[y-axis] 
+	00075: MIAP[rd+ci] 
+	00076: MDRP[srp0,md,rd,1] 
+	00077: CALL       
+	00078: MIRP[srp0,md,rd,1] 
+	00079: MDRP[srp0,nmd,rd,0] 
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: SRP1       
+	00082: IP         
+	00083: SRP1       
+	00084: IP         
+	00085: PUSHB[2]              6     2 
+	00088: RS         
+	00089: EQ         
+	00090: IF         
+	00091: PUSHB[5]             18    64     9    13    52 
+	00097: SVTCA[y-axis] 
+	00098: CALL       
+	00099: EIF        
+	00100: IUP[y]     
+	00101: IUP[x]     
+	00102: SVTCA[x-axis] 
+	00103: CALL       
+
+	Flags
+	-----
+	  0:                              X-Short Off
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:        XDual         Y-Short         On
+	 20:  YDual                       X-Short On
+	 21:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  -233,  1320)  ->  Abs (  -233,  1320)
+	  1: Rel (    16,     5)  ->  Abs (  -217,  1325)
+	  2: Rel (    53,    18)  ->  Abs (  -164,  1343)
+	  3: Rel (     1,    38)  ->  Abs (  -163,  1381)
+	  4: Rel (     1,    23)  ->  Abs (  -162,  1404)
+	  5: Rel (   -29,    16)  ->  Abs (  -191,  1420)
+	  6: Rel (   -42,    23)  ->  Abs (  -233,  1443)
+	  7: Rel (   -91,     0)  ->  Abs (  -324,  1443)
+	  8: Rel (   -31,     0)  ->  Abs (  -355,  1443)
+	  9: Rel (   -63,    -4)  ->  Abs (  -418,  1439)
+	 10: Rel (   -11,   102)  ->  Abs (  -429,  1541)
+	 11: Rel (    39,     8)  ->  Abs (  -390,  1549)
+	 12: Rel (   105,    -1)  ->  Abs (  -285,  1548)
+	 13: Rel (   123,    -1)  ->  Abs (  -162,  1547)
+	 14: Rel (    78,   -39)  ->  Abs (   -84,  1508)
+	 15: Rel (    86,   -42)  ->  Abs (     2,  1466)
+	 16: Rel (     2,   -75)  ->  Abs (     4,  1391)
+	 17: Rel (     4,  -124)  ->  Abs (     8,  1267)
+	 18: Rel (  -186,   -23)  ->  Abs (  -178,  1244)
+	 19: Rel (     0,   -50)  ->  Abs (  -178,  1194)
+	 20: Rel (  -112,     0)  ->  Abs (  -290,  1194)
+	 21: Rel (     0,   120)  ->  Abs (  -290,  1314)
+
+	Glyph 1158: off = 0x0002FE3E, len = 182
+	  numberOfContours:	1
+	  xMin:			-751
+	  yMin:			1194
+	  xMax:			-314
+	  yMax:			1549
+
+	EndPoints
+	---------
+	  0:  21
+
+	  Length of Instructions:	104
+	00000: PUSHW[2]             17   -64 
+	00005: PUSHB[8]              9    23    52    10    12     9    21     7 
+	00014: PUSHW[1]            790 
+	00017: PUSHB[4]             12    21    52    18 
+	00022: PUSHW[1]            -64 
+	00025: PUSHB[5]              9    26    52    18    20 
+	00031: PUSHW[1]            707 
+	00034: NPUSHB      (12):    16   201     3     3    19     9    20    10    10    19 
+	                            87    20 
+	00048: PUSHW[1]            -64 
+	00051: NPUSHB       (9):    11    13    52     0    20   112    20     2    20 
+	00062: MDAP[rd]   
+	00063: DELTAP1    
+	00064: CALL       
+	00065: MIRP[nrp0,md,rd,1] 
+	00066: SHP[rp1,zp0] 
+	00067: MDAP[rd]   
+	00068: SRP2       
+	00069: IP         
+	00070: SRP1       
+	00071: SHP[rp1,zp0] 
+	00072: MDAP[rd]   
+	00073: MIRP[nrp0,md,rd,1] 
+	00074: SVTCA[y-axis] 
+	00075: MIAP[rd+ci] 
+	00076: MDRP[srp0,md,rd,1] 
+	00077: CALL       
+	00078: MIRP[srp0,md,rd,1] 
+	00079: MDRP[srp0,nmd,rd,0] 
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: SRP1       
+	00082: IP         
+	00083: SRP1       
+	00084: IP         
+	00085: PUSHB[2]              6     2 
+	00088: RS         
+	00089: EQ         
+	00090: IF         
+	00091: PUSHB[5]             18    64     9    13    52 
+	00097: SVTCA[y-axis] 
+	00098: CALL       
+	00099: EIF        
+	00100: IUP[y]     
+	00101: IUP[x]     
+	00102: SVTCA[x-axis] 
+	00103: CALL       
+
+	Flags
+	-----
+	  0:                                      Off
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:        XDual         Y-Short         On
+	 20:  YDual                       X-Short On
+	 21:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  -555,  1320)  ->  Abs (  -555,  1320)
+	  1: Rel (    16,     5)  ->  Abs (  -539,  1325)
+	  2: Rel (    53,    18)  ->  Abs (  -486,  1343)
+	  3: Rel (     1,    38)  ->  Abs (  -485,  1381)
+	  4: Rel (     1,    23)  ->  Abs (  -484,  1404)
+	  5: Rel (   -29,    16)  ->  Abs (  -513,  1420)
+	  6: Rel (   -42,    23)  ->  Abs (  -555,  1443)
+	  7: Rel (   -91,     0)  ->  Abs (  -646,  1443)
+	  8: Rel (   -31,     0)  ->  Abs (  -677,  1443)
+	  9: Rel (   -63,    -4)  ->  Abs (  -740,  1439)
+	 10: Rel (   -11,   102)  ->  Abs (  -751,  1541)
+	 11: Rel (    39,     8)  ->  Abs (  -712,  1549)
+	 12: Rel (   105,    -1)  ->  Abs (  -607,  1548)
+	 13: Rel (   123,    -1)  ->  Abs (  -484,  1547)
+	 14: Rel (    78,   -39)  ->  Abs (  -406,  1508)
+	 15: Rel (    86,   -42)  ->  Abs (  -320,  1466)
+	 16: Rel (     2,   -75)  ->  Abs (  -318,  1391)
+	 17: Rel (     4,  -124)  ->  Abs (  -314,  1267)
+	 18: Rel (  -186,   -23)  ->  Abs (  -500,  1244)
+	 19: Rel (     0,   -50)  ->  Abs (  -500,  1194)
+	 20: Rel (  -112,     0)  ->  Abs (  -612,  1194)
+	 21: Rel (     0,   120)  ->  Abs (  -612,  1314)
+
+	Glyph 1159: off = 0x0002FEF4, len = 172
+	  numberOfContours:	1
+	  xMin:			-1080
+	  yMin:			1609
+	  xMax:			-410
+	  yMax:			1840
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	107
+	00000: PUSHB[6]             14    32     9    17    52    11 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (65):     9    19    52     2    32     9    17    52     0     0 
+	                           239    12     1    12    69     7     7   239    16     1 
+	                            16    69     3     3    31     9   223     9     2    79 
+	                             9     1     9    64     9    16    52    63     9    79 
+	                             9   191     9     3     9    10   118     9     9     0 
+	                           118   128    18     1    64    18   208    18   224    18 
+	                             3    80    18     1    18 
+	00077: MDAP[rd]   
+	00078: DELTAP1    
+	00079: DELTAP1    
+	00080: DELTAP2    
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SHP[rp1,zp0] 
+	00083: MDAP[rd]   
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: SVTCA[y-axis] 
+	00086: MDAP[rd]   
+	00087: DELTAP1    
+	00088: CALL       
+	00089: DELTAP2    
+	00090: DELTAP3    
+	00091: SHP[rp1,zp0] 
+	00092: MDAP[rd]   
+	00093: MIRP[srp0,md,rd,1] 
+	00094: DELTAP1    
+	00095: IP         
+	00096: MDAP[rd]   
+	00097: MIRP[srp0,md,rd,1] 
+	00098: DELTAP1    
+	00099: SHP[rp2,zp1] 
+	00100: MDAP[rd]   
+	00101: IUP[y]     
+	00102: IUP[x]     
+	00103: SVTCA[x-axis] 
+	00104: CALL       
+	00105: CALL       
+	00106: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual                 X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel ( -1079,  1609)  ->  Abs ( -1079,  1609)
+	  1: Rel (    -1,   102)  ->  Abs ( -1080,  1711)
+	  2: Rel (   113,   126)  ->  Abs (  -967,  1837)
+	  3: Rel (    91,     0)  ->  Abs (  -876,  1837)
+	  4: Rel (    62,     0)  ->  Abs (  -814,  1837)
+	  5: Rel (   107,   -54)  ->  Abs (  -707,  1783)
+	  6: Rel (    59,   -30)  ->  Abs (  -648,  1753)
+	  7: Rel (    35,     0)  ->  Abs (  -613,  1753)
+	  8: Rel (    61,     0)  ->  Abs (  -552,  1753)
+	  9: Rel (    12,    87)  ->  Abs (  -540,  1840)
+	 10: Rel (   130,     0)  ->  Abs (  -410,  1840)
+	 11: Rel (    -6,  -228)  ->  Abs (  -416,  1612)
+	 12: Rel (  -190,     0)  ->  Abs (  -606,  1612)
+	 13: Rel (   -63,     0)  ->  Abs (  -669,  1612)
+	 14: Rel (  -103,    56)  ->  Abs (  -772,  1668)
+	 15: Rel (   -67,    36)  ->  Abs (  -839,  1704)
+	 16: Rel (   -31,     0)  ->  Abs (  -870,  1704)
+	 17: Rel (   -78,     0)  ->  Abs (  -948,  1704)
+	 18: Rel (     2,   -95)  ->  Abs (  -946,  1609)
+
+	Glyph 1160: off = 0x0002FFA0, len = 172
+	  numberOfContours:	1
+	  xMin:			-1292
+	  yMin:			1609
+	  xMax:			-622
+	  yMax:			1840
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	107
+	00000: PUSHB[6]             14    32     9    17    52    11 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (65):     9    19    52     2    32     9    17    52     0     0 
+	                           239    12     1    12    69     7     7   239    16     1 
+	                            16    69     3     3    31     9   223     9     2    79 
+	                             9     1     9    64     9    16    52    63     9    79 
+	                             9   191     9     3     9    10   118     9     9     0 
+	                           118   128    18     1    64    18   208    18   224    18 
+	                             3    80    18     1    18 
+	00077: MDAP[rd]   
+	00078: DELTAP1    
+	00079: DELTAP1    
+	00080: DELTAP2    
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SHP[rp1,zp0] 
+	00083: MDAP[rd]   
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: SVTCA[y-axis] 
+	00086: MDAP[rd]   
+	00087: DELTAP1    
+	00088: CALL       
+	00089: DELTAP2    
+	00090: DELTAP3    
+	00091: SHP[rp1,zp0] 
+	00092: MDAP[rd]   
+	00093: MIRP[srp0,md,rd,1] 
+	00094: DELTAP1    
+	00095: IP         
+	00096: MDAP[rd]   
+	00097: MIRP[srp0,md,rd,1] 
+	00098: DELTAP1    
+	00099: SHP[rp2,zp1] 
+	00100: MDAP[rd]   
+	00101: IUP[y]     
+	00102: IUP[x]     
+	00103: SVTCA[x-axis] 
+	00104: CALL       
+	00105: CALL       
+	00106: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual                 X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel ( -1291,  1609)  ->  Abs ( -1291,  1609)
+	  1: Rel (    -1,   102)  ->  Abs ( -1292,  1711)
+	  2: Rel (   113,   126)  ->  Abs ( -1179,  1837)
+	  3: Rel (    91,     0)  ->  Abs ( -1088,  1837)
+	  4: Rel (    62,     0)  ->  Abs ( -1026,  1837)
+	  5: Rel (   107,   -54)  ->  Abs (  -919,  1783)
+	  6: Rel (    59,   -30)  ->  Abs (  -860,  1753)
+	  7: Rel (    35,     0)  ->  Abs (  -825,  1753)
+	  8: Rel (    61,     0)  ->  Abs (  -764,  1753)
+	  9: Rel (    12,    87)  ->  Abs (  -752,  1840)
+	 10: Rel (   130,     0)  ->  Abs (  -622,  1840)
+	 11: Rel (    -6,  -228)  ->  Abs (  -628,  1612)
+	 12: Rel (  -190,     0)  ->  Abs (  -818,  1612)
+	 13: Rel (   -63,     0)  ->  Abs (  -881,  1612)
+	 14: Rel (  -103,    56)  ->  Abs (  -984,  1668)
+	 15: Rel (   -67,    36)  ->  Abs ( -1051,  1704)
+	 16: Rel (   -31,     0)  ->  Abs ( -1082,  1704)
+	 17: Rel (   -78,     0)  ->  Abs ( -1160,  1704)
+	 18: Rel (     2,   -95)  ->  Abs ( -1158,  1609)
+
+	Glyph 1161: off = 0x0003004C, len = 172
+	  numberOfContours:	1
+	  xMin:			-1361
+	  yMin:			1609
+	  xMax:			-691
+	  yMax:			1840
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	107
+	00000: PUSHB[6]             14    32     9    17    52    11 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (65):     9    19    52     2    32     9    17    52     0     0 
+	                           239    12     1    12    69     7     7   239    16     1 
+	                            16    69     3     3    31     9   223     9     2    79 
+	                             9     1     9    64     9    16    52    63     9    79 
+	                             9   191     9     3     9    10   118     9     9     0 
+	                           118   128    18     1    64    18   208    18   224    18 
+	                             3    80    18     1    18 
+	00077: MDAP[rd]   
+	00078: DELTAP1    
+	00079: DELTAP1    
+	00080: DELTAP2    
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SHP[rp1,zp0] 
+	00083: MDAP[rd]   
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: SVTCA[y-axis] 
+	00086: MDAP[rd]   
+	00087: DELTAP1    
+	00088: CALL       
+	00089: DELTAP2    
+	00090: DELTAP3    
+	00091: SHP[rp1,zp0] 
+	00092: MDAP[rd]   
+	00093: MIRP[srp0,md,rd,1] 
+	00094: DELTAP1    
+	00095: IP         
+	00096: MDAP[rd]   
+	00097: MIRP[srp0,md,rd,1] 
+	00098: DELTAP1    
+	00099: SHP[rp2,zp1] 
+	00100: MDAP[rd]   
+	00101: IUP[y]     
+	00102: IUP[x]     
+	00103: SVTCA[x-axis] 
+	00104: CALL       
+	00105: CALL       
+	00106: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual                 X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel ( -1360,  1609)  ->  Abs ( -1360,  1609)
+	  1: Rel (    -1,   102)  ->  Abs ( -1361,  1711)
+	  2: Rel (   113,   126)  ->  Abs ( -1248,  1837)
+	  3: Rel (    91,     0)  ->  Abs ( -1157,  1837)
+	  4: Rel (    62,     0)  ->  Abs ( -1095,  1837)
+	  5: Rel (   107,   -54)  ->  Abs (  -988,  1783)
+	  6: Rel (    59,   -30)  ->  Abs (  -929,  1753)
+	  7: Rel (    35,     0)  ->  Abs (  -894,  1753)
+	  8: Rel (    61,     0)  ->  Abs (  -833,  1753)
+	  9: Rel (    12,    87)  ->  Abs (  -821,  1840)
+	 10: Rel (   130,     0)  ->  Abs (  -691,  1840)
+	 11: Rel (    -6,  -228)  ->  Abs (  -697,  1612)
+	 12: Rel (  -190,     0)  ->  Abs (  -887,  1612)
+	 13: Rel (   -63,     0)  ->  Abs (  -950,  1612)
+	 14: Rel (  -103,    56)  ->  Abs ( -1053,  1668)
+	 15: Rel (   -67,    36)  ->  Abs ( -1120,  1704)
+	 16: Rel (   -31,     0)  ->  Abs ( -1151,  1704)
+	 17: Rel (   -78,     0)  ->  Abs ( -1229,  1704)
+	 18: Rel (     2,   -95)  ->  Abs ( -1227,  1609)
+
+	Glyph 1162: off = 0x000300F8, len = 184
+	  numberOfContours:	1
+	  xMin:			-910
+	  yMin:			1219
+	  xMax:			-240
+	  yMax:			1450
+
+	EndPoints
+	---------
+	  0:  23
+
+	  Length of Instructions:	105
+	00000: PUSHW[2]             14   -32 
+	00005: NPUSHB      (50):     9    17    52    17    32     9    17    52     2    32 
+	                             9    17    52     0     0   239    15     1    15    69 
+	                             8     8   239    19     1    19    69     4     4   223 
+	                            11     1    15    11   127    11     2    11    64     9 
+	                            14    52    11    12   118    11    11     0   118    23 
+	00057: PUSHW[1]            -64 
+	00060: PUSHB[4]             19    23    52    23 
+	00065: PUSHW[1]            -64 
+	00068: PUSHB[7]             13    14    52   111    23     1    23 
+	00076: MDAP[rd]   
+	00077: DELTAP1    
+	00078: CALL       
+	00079: CALL       
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: SHP[rp1,zp0] 
+	00082: MDAP[rd]   
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: SVTCA[y-axis] 
+	00085: MDAP[rd]   
+	00086: CALL       
+	00087: DELTAP1    
+	00088: DELTAP3    
+	00089: SHP[rp1,zp0] 
+	00090: MDAP[rd]   
+	00091: MIRP[srp0,md,rd,1] 
+	00092: DELTAP1    
+	00093: IP         
+	00094: MDAP[rd]   
+	00095: MIRP[srp0,md,rd,1] 
+	00096: DELTAP1    
+	00097: SHP[rp2,zp1] 
+	00098: MDAP[rd]   
+	00099: IUP[y]     
+	00100: IUP[x]     
+	00101: SVTCA[x-axis] 
+	00102: CALL       
+	00103: CALL       
+	00104: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  -909,  1219)  ->  Abs (  -909,  1219)
+	  1: Rel (    -1,   104)  ->  Abs (  -910,  1323)
+	  2: Rel (    58,    62)  ->  Abs (  -852,  1385)
+	  3: Rel (    57,    62)  ->  Abs (  -795,  1447)
+	  4: Rel (    89,     0)  ->  Abs (  -706,  1447)
+	  5: Rel (    62,     0)  ->  Abs (  -644,  1447)
+	  6: Rel (   107,   -54)  ->  Abs (  -537,  1393)
+	  7: Rel (    59,   -30)  ->  Abs (  -478,  1363)
+	  8: Rel (    35,     0)  ->  Abs (  -443,  1363)
+	  9: Rel (    32,     0)  ->  Abs (  -411,  1363)
+	 10: Rel (    34,    35)  ->  Abs (  -377,  1398)
+	 11: Rel (     7,    52)  ->  Abs (  -370,  1450)
+	 12: Rel (   130,     0)  ->  Abs (  -240,  1450)
+	 13: Rel (    -3,  -114)  ->  Abs (  -243,  1336)
+	 14: Rel (  -109,  -114)  ->  Abs (  -352,  1222)
+	 15: Rel (   -84,     0)  ->  Abs (  -436,  1222)
+	 16: Rel (   -63,     0)  ->  Abs (  -499,  1222)
+	 17: Rel (  -103,    56)  ->  Abs (  -602,  1278)
+	 18: Rel (   -67,    36)  ->  Abs (  -669,  1314)
+	 19: Rel (   -31,     0)  ->  Abs (  -700,  1314)
+	 20: Rel (   -34,     0)  ->  Abs (  -734,  1314)
+	 21: Rel (   -21,   -24)  ->  Abs (  -755,  1290)
+	 22: Rel (   -22,   -24)  ->  Abs (  -777,  1266)
+	 23: Rel (     1,   -47)  ->  Abs (  -776,  1219)
+
+	Glyph 1163: off = 0x000301B0, len = 184
+	  numberOfContours:	1
+	  xMin:			-1110
+	  yMin:			1219
+	  xMax:			-440
+	  yMax:			1450
+
+	EndPoints
+	---------
+	  0:  23
+
+	  Length of Instructions:	105
+	00000: PUSHW[2]             14   -32 
+	00005: NPUSHB      (50):     9    17    52    17    32     9    17    52     2    32 
+	                             9    17    52     0     0   239    15     1    15    69 
+	                             8     8   239    19     1    19    69     4     4   223 
+	                            11     1    15    11   127    11     2    11    64     9 
+	                            14    52    11    12   118    11    11     0   118    23 
+	00057: PUSHW[1]            -64 
+	00060: PUSHB[4]             19    23    52    23 
+	00065: PUSHW[1]            -64 
+	00068: PUSHB[7]             13    14    52   111    23     1    23 
+	00076: MDAP[rd]   
+	00077: DELTAP1    
+	00078: CALL       
+	00079: CALL       
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: SHP[rp1,zp0] 
+	00082: MDAP[rd]   
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: SVTCA[y-axis] 
+	00085: MDAP[rd]   
+	00086: CALL       
+	00087: DELTAP1    
+	00088: DELTAP3    
+	00089: SHP[rp1,zp0] 
+	00090: MDAP[rd]   
+	00091: MIRP[srp0,md,rd,1] 
+	00092: DELTAP1    
+	00093: IP         
+	00094: MDAP[rd]   
+	00095: MIRP[srp0,md,rd,1] 
+	00096: DELTAP1    
+	00097: SHP[rp2,zp1] 
+	00098: MDAP[rd]   
+	00099: IUP[y]     
+	00100: IUP[x]     
+	00101: SVTCA[x-axis] 
+	00102: CALL       
+	00103: CALL       
+	00104: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel ( -1109,  1219)  ->  Abs ( -1109,  1219)
+	  1: Rel (    -1,   104)  ->  Abs ( -1110,  1323)
+	  2: Rel (    58,    62)  ->  Abs ( -1052,  1385)
+	  3: Rel (    57,    62)  ->  Abs (  -995,  1447)
+	  4: Rel (    89,     0)  ->  Abs (  -906,  1447)
+	  5: Rel (    62,     0)  ->  Abs (  -844,  1447)
+	  6: Rel (   107,   -54)  ->  Abs (  -737,  1393)
+	  7: Rel (    59,   -30)  ->  Abs (  -678,  1363)
+	  8: Rel (    35,     0)  ->  Abs (  -643,  1363)
+	  9: Rel (    32,     0)  ->  Abs (  -611,  1363)
+	 10: Rel (    34,    35)  ->  Abs (  -577,  1398)
+	 11: Rel (     7,    52)  ->  Abs (  -570,  1450)
+	 12: Rel (   130,     0)  ->  Abs (  -440,  1450)
+	 13: Rel (    -3,  -114)  ->  Abs (  -443,  1336)
+	 14: Rel (  -109,  -114)  ->  Abs (  -552,  1222)
+	 15: Rel (   -84,     0)  ->  Abs (  -636,  1222)
+	 16: Rel (   -63,     0)  ->  Abs (  -699,  1222)
+	 17: Rel (  -103,    56)  ->  Abs (  -802,  1278)
+	 18: Rel (   -67,    36)  ->  Abs (  -869,  1314)
+	 19: Rel (   -31,     0)  ->  Abs (  -900,  1314)
+	 20: Rel (   -34,     0)  ->  Abs (  -934,  1314)
+	 21: Rel (   -21,   -24)  ->  Abs (  -955,  1290)
+	 22: Rel (   -22,   -24)  ->  Abs (  -977,  1266)
+	 23: Rel (     1,   -47)  ->  Abs (  -976,  1219)
+
+	Glyph 1164: off = 0x00030268, len = 184
+	  numberOfContours:	1
+	  xMin:			-1174
+	  yMin:			1219
+	  xMax:			-504
+	  yMax:			1450
+
+	EndPoints
+	---------
+	  0:  23
+
+	  Length of Instructions:	105
+	00000: PUSHW[2]             14   -32 
+	00005: NPUSHB      (50):     9    17    52    17    32     9    17    52     2    32 
+	                             9    17    52     0     0   239    15     1    15    69 
+	                             8     8   239    19     1    19    69     4     4   223 
+	                            11     1    15    11   127    11     2    11    64     9 
+	                            14    52    11    12   118    11    11     0   118    23 
+	00057: PUSHW[1]            -64 
+	00060: PUSHB[4]             19    23    52    23 
+	00065: PUSHW[1]            -64 
+	00068: PUSHB[7]             13    14    52   111    23     1    23 
+	00076: MDAP[rd]   
+	00077: DELTAP1    
+	00078: CALL       
+	00079: CALL       
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: SHP[rp1,zp0] 
+	00082: MDAP[rd]   
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: SVTCA[y-axis] 
+	00085: MDAP[rd]   
+	00086: CALL       
+	00087: DELTAP1    
+	00088: DELTAP3    
+	00089: SHP[rp1,zp0] 
+	00090: MDAP[rd]   
+	00091: MIRP[srp0,md,rd,1] 
+	00092: DELTAP1    
+	00093: IP         
+	00094: MDAP[rd]   
+	00095: MIRP[srp0,md,rd,1] 
+	00096: DELTAP1    
+	00097: SHP[rp2,zp1] 
+	00098: MDAP[rd]   
+	00099: IUP[y]     
+	00100: IUP[x]     
+	00101: SVTCA[x-axis] 
+	00102: CALL       
+	00103: CALL       
+	00104: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel ( -1173,  1219)  ->  Abs ( -1173,  1219)
+	  1: Rel (    -1,   104)  ->  Abs ( -1174,  1323)
+	  2: Rel (    58,    62)  ->  Abs ( -1116,  1385)
+	  3: Rel (    57,    62)  ->  Abs ( -1059,  1447)
+	  4: Rel (    89,     0)  ->  Abs (  -970,  1447)
+	  5: Rel (    62,     0)  ->  Abs (  -908,  1447)
+	  6: Rel (   107,   -54)  ->  Abs (  -801,  1393)
+	  7: Rel (    59,   -30)  ->  Abs (  -742,  1363)
+	  8: Rel (    35,     0)  ->  Abs (  -707,  1363)
+	  9: Rel (    32,     0)  ->  Abs (  -675,  1363)
+	 10: Rel (    34,    35)  ->  Abs (  -641,  1398)
+	 11: Rel (     7,    52)  ->  Abs (  -634,  1450)
+	 12: Rel (   130,     0)  ->  Abs (  -504,  1450)
+	 13: Rel (    -3,  -114)  ->  Abs (  -507,  1336)
+	 14: Rel (  -109,  -114)  ->  Abs (  -616,  1222)
+	 15: Rel (   -84,     0)  ->  Abs (  -700,  1222)
+	 16: Rel (   -63,     0)  ->  Abs (  -763,  1222)
+	 17: Rel (  -103,    56)  ->  Abs (  -866,  1278)
+	 18: Rel (   -67,    36)  ->  Abs (  -933,  1314)
+	 19: Rel (   -31,     0)  ->  Abs (  -964,  1314)
+	 20: Rel (   -34,     0)  ->  Abs (  -998,  1314)
+	 21: Rel (   -21,   -24)  ->  Abs ( -1019,  1290)
+	 22: Rel (   -22,   -24)  ->  Abs ( -1041,  1266)
+	 23: Rel (     1,   -47)  ->  Abs ( -1040,  1219)
+
+	Glyph 1165: off = 0x00030320, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-783
+	  yMin:			-325
+	  xMax:			-578
+	  yMax:			-120
+
+	     0: Flags:		0x0217
+		Glyf Index:	1149
+		X WOffset:	-529
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1166: off = 0x00030332, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-899
+	  yMin:			-325
+	  xMax:			-694
+	  yMax:			-120
+
+	     0: Flags:		0x0217
+		Glyf Index:	1149
+		X WOffset:	-645
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1167: off = 0x00030344, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-1059
+	  yMin:			-325
+	  xMax:			-854
+	  yMax:			-120
+
+	     0: Flags:		0x0217
+		Glyf Index:	1149
+		X WOffset:	-805
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1168: off = 0x00030356, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-831
+	  yMin:			-325
+	  xMax:			-626
+	  yMax:			-120
+
+	     0: Flags:		0x0217
+		Glyf Index:	1149
+		X WOffset:	-577
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1169: off = 0x00030368, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-1128
+	  yMin:			-325
+	  xMax:			-923
+	  yMax:			-120
+
+	     0: Flags:		0x0217
+		Glyf Index:	1149
+		X WOffset:	-874
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1170: off = 0x0003037A, len = 110
+	  numberOfContours:	1
+	  xMin:			-534
+	  yMin:			1547
+	  xMax:			-158
+	  yMax:			1827
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	83
+	00000: PUSHB[6]              1    32    14    17    52     1 
+	00007: PUSHW[1]            -64 
+	00010: NPUSHB      (31):     9    10    52     1   135    31     2    47     2     2 
+	                            31     2    47     2   143     2   159     2     4   175 
+	                             2   191     2     2     2    64     9    16    52     2 
+	                             0 
+	00043: PUSHW[1]            595 
+	00046: PUSHB[8]              1   134    64     3   208     3     2     3 
+	00055: PUSHW[1]            608 
+	00058: PUSHB[6]            112     2   176     2     2     2 
+	00065: MDAP[rd]   
+	00066: DELTAP1    
+	00067: MIRP[nrp0,md,rd,1] 
+	00068: DELTAP1    
+	00069: MIRP[srp0,md,rd,1] 
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: SVTCA[y-axis] 
+	00072: MDAP[rd]   
+	00073: CALL       
+	00074: DELTAP1    
+	00075: DELTAP2    
+	00076: DELTAP3    
+	00077: MIRP[nrp0,md,rd,1] 
+	00078: CALL       
+	00079: IUP[y]     
+	00080: IUP[x]     
+	00081: SVTCA[x-axis] 
+	00082: CALL       
+
+	Flags
+	-----
+	  0:                              X-Short On
+	  1:  YDual                       X-Short On
+	  2:                              X-Short On
+	  3:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  -158,  1547)  ->  Abs (  -158,  1547)
+	  1: Rel (  -145,     0)  ->  Abs (  -303,  1547)
+	  2: Rel (  -231,   280)  ->  Abs (  -534,  1827)
+	  3: Rel (   241,     0)  ->  Abs (  -293,  1827)
+
+	Glyph 1171: off = 0x000303E8, len = 110
+	  numberOfContours:	1
+	  xMin:			-380
+	  yMin:			1547
+	  xMax:			-4
+	  yMax:			1827
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	84
+	00000: PUSHB[4]            153     1     1     2 
+	00005: PUSHW[1]            -32 
+	00008: PUSHB[4]             14    17    52     2 
+	00013: PUSHW[1]            -64 
+	00016: NPUSHB      (31):     9    10    52     2   135    31     1    47     1     2 
+	                            31     1    47     1   143     1   159     1     4   175 
+	                             1   191     1     2     1    64     9    16    52     1 
+	                             3 
+	00049: PUSHW[1]            595 
+	00052: PUSHB[8]              2   134    79     0   223     0     2     0 
+	00061: PUSHW[2]            608     1 
+	00066: MDAP[rd]   
+	00067: MIRP[nrp0,md,rd,1] 
+	00068: DELTAP1    
+	00069: MIRP[srp0,md,rd,1] 
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: SVTCA[y-axis] 
+	00072: MDAP[rd]   
+	00073: CALL       
+	00074: DELTAP1    
+	00075: DELTAP2    
+	00076: DELTAP3    
+	00077: MIRP[nrp0,md,rd,1] 
+	00078: CALL       
+	00079: IUP[y]     
+	00080: IUP[x]     
+	00081: SVTCA[x-axis] 
+	00082: CALL       
+	00083: DELTAP1    
+
+	Flags
+	-----
+	  0:                              X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:                              X-Short On
+	  3:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  -245,  1827)  ->  Abs (  -245,  1827)
+	  1: Rel (   241,     0)  ->  Abs (    -4,  1827)
+	  2: Rel (  -231,  -280)  ->  Abs (  -235,  1547)
+	  3: Rel (  -145,     0)  ->  Abs (  -380,  1547)
+
+	Glyph 1172: off = 0x00030456, len = 184
+	  numberOfContours:	1
+	  xMin:			-574
+	  yMin:			1219
+	  xMax:			96
+	  yMax:			1450
+
+	EndPoints
+	---------
+	  0:  23
+
+	  Length of Instructions:	105
+	00000: PUSHW[2]             14   -32 
+	00005: NPUSHB      (50):     9    17    52    17    32     9    17    52     2    32 
+	                             9    17    52     0     0   239    15     1    15    69 
+	                             8     8   239    19     1    19    69     4     4   223 
+	                            11     1    15    11   127    11     2    11    64     9 
+	                            14    52    11    12   118    11    11     0   118    23 
+	00057: PUSHW[1]            -64 
+	00060: PUSHB[4]             19    23    52    23 
+	00065: PUSHW[1]            -64 
+	00068: PUSHB[7]             13    14    52   111    23     1    23 
+	00076: MDAP[rd]   
+	00077: DELTAP1    
+	00078: CALL       
+	00079: CALL       
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: SHP[rp1,zp0] 
+	00082: MDAP[rd]   
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: SVTCA[y-axis] 
+	00085: MDAP[rd]   
+	00086: CALL       
+	00087: DELTAP1    
+	00088: DELTAP3    
+	00089: SHP[rp1,zp0] 
+	00090: MDAP[rd]   
+	00091: MIRP[srp0,md,rd,1] 
+	00092: DELTAP1    
+	00093: IP         
+	00094: MDAP[rd]   
+	00095: MIRP[srp0,md,rd,1] 
+	00096: DELTAP1    
+	00097: SHP[rp2,zp1] 
+	00098: MDAP[rd]   
+	00099: IUP[y]     
+	00100: IUP[x]     
+	00101: SVTCA[x-axis] 
+	00102: CALL       
+	00103: CALL       
+	00104: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  -573,  1219)  ->  Abs (  -573,  1219)
+	  1: Rel (    -1,   104)  ->  Abs (  -574,  1323)
+	  2: Rel (    58,    62)  ->  Abs (  -516,  1385)
+	  3: Rel (    57,    62)  ->  Abs (  -459,  1447)
+	  4: Rel (    89,     0)  ->  Abs (  -370,  1447)
+	  5: Rel (    62,     0)  ->  Abs (  -308,  1447)
+	  6: Rel (   107,   -54)  ->  Abs (  -201,  1393)
+	  7: Rel (    59,   -30)  ->  Abs (  -142,  1363)
+	  8: Rel (    35,     0)  ->  Abs (  -107,  1363)
+	  9: Rel (    32,     0)  ->  Abs (   -75,  1363)
+	 10: Rel (    34,    35)  ->  Abs (   -41,  1398)
+	 11: Rel (     7,    52)  ->  Abs (   -34,  1450)
+	 12: Rel (   130,     0)  ->  Abs (    96,  1450)
+	 13: Rel (    -3,  -114)  ->  Abs (    93,  1336)
+	 14: Rel (  -109,  -114)  ->  Abs (   -16,  1222)
+	 15: Rel (   -84,     0)  ->  Abs (  -100,  1222)
+	 16: Rel (   -63,     0)  ->  Abs (  -163,  1222)
+	 17: Rel (  -103,    56)  ->  Abs (  -266,  1278)
+	 18: Rel (   -67,    36)  ->  Abs (  -333,  1314)
+	 19: Rel (   -31,     0)  ->  Abs (  -364,  1314)
+	 20: Rel (   -34,     0)  ->  Abs (  -398,  1314)
+	 21: Rel (   -21,   -24)  ->  Abs (  -419,  1290)
+	 22: Rel (   -22,   -24)  ->  Abs (  -441,  1266)
+	 23: Rel (     1,   -47)  ->  Abs (  -440,  1219)
+
+	Glyph 1173: off = 0x0003050E, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-783
+	  yMin:			-325
+	  xMax:			-578
+	  yMax:			-120
+
+	     0: Flags:		0x0217
+		Glyf Index:	1149
+		X WOffset:	-529
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1174: off = 0x00030520, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-673
+	  yMin:			-325
+	  xMax:			-468
+	  yMax:			-120
+
+	     0: Flags:		0x0217
+		Glyf Index:	1149
+		X WOffset:	-419
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1175: off = 0x00030532, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-394
+	  yMin:			-325
+	  xMax:			-189
+	  yMax:			-120
+
+	     0: Flags:		0x0217
+		Glyf Index:	1149
+		X WOffset:	-140
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1176: off = 0x00030544, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-324
+	  yMin:			-325
+	  xMax:			-119
+	  yMax:			-120
+
+	     0: Flags:		0x0216
+		Glyf Index:	1149
+		X BOffset:	-70
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1177: off = 0x00030554, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-789
+	  yMin:			-325
+	  xMax:			-584
+	  yMax:			-120
+
+	     0: Flags:		0x0217
+		Glyf Index:	1149
+		X WOffset:	-535
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1178: off = 0x00030566, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-660
+	  yMin:			-325
+	  xMax:			-455
+	  yMax:			-120
+
+	     0: Flags:		0x0217
+		Glyf Index:	1149
+		X WOffset:	-406
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1179: off = 0x00030578, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-680
+	  yMin:			-325
+	  xMax:			-475
+	  yMax:			-120
+
+	     0: Flags:		0x0217
+		Glyf Index:	1149
+		X WOffset:	-426
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1180: off = 0x0003058A, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-880
+	  yMin:			-325
+	  xMax:			-675
+	  yMax:			-120
+
+	     0: Flags:		0x0217
+		Glyf Index:	1149
+		X WOffset:	-626
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1181: off = 0x0003059C, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-747
+	  yMin:			-325
+	  xMax:			-542
+	  yMax:			-120
+
+	     0: Flags:		0x0217
+		Glyf Index:	1149
+		X WOffset:	-493
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1182: off = 0x000305AE, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-980
+	  yMin:			-325
+	  xMax:			-775
+	  yMax:			-120
+
+	     0: Flags:		0x0217
+		Glyf Index:	1149
+		X WOffset:	-726
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1183: off = 0x000305C0, len = 174
+	  numberOfContours:	1
+	  xMin:			-1005
+	  yMin:			1660
+	  xMax:			-336
+	  yMax:			1835
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	110
+	00000: PUSHB[4]             75    14     1    11 
+	00005: PUSHW[1]            -32 
+	00008: NPUSHB      (11):    10    19    52     2    32    10    17    52     0     0 
+	                             7 
+	00021: PUSHW[1]            790 
+	00024: NPUSHB      (31):    64    12    64    94    53    12    64    79    83    52 
+	                            12    64    67    69    52    12    64    43    45    52 
+	                           111    12   127    12     2    15    12     1    12   128 
+	                            16 
+	00057: PUSHW[1]            790 
+	00060: PUSHB[3]              3     3     9 
+	00064: PUSHW[3]            791    10   790 
+	00071: PUSHB[3]              9     9     0 
+	00075: PUSHW[2]            790    18 
+	00080: MDAP[rd]   
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SHP[rp1,zp0] 
+	00083: MDAP[rd]   
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: SVTCA[y-axis] 
+	00086: RDTG       
+	00087: MIAP[rd+ci] 
+	00088: SHP[rp1,zp0] 
+	00089: RTG        
+	00090: MDAP[rd]   
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: SMD        
+	00093: MDRP[srp0,md,rd,1] 
+	00094: DELTAP1    
+	00095: DELTAP2    
+	00096: CALL       
+	00097: CALL       
+	00098: CALL       
+	00099: CALL       
+	00100: SMD        
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: SHP[rp1,zp0] 
+	00103: MDAP[rd]   
+	00104: IUP[y]     
+	00105: IUP[x]     
+	00106: SVTCA[x-axis] 
+	00107: CALL       
+	00108: CALL       
+	00109: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual                 X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel ( -1005,  1660)  ->  Abs ( -1005,  1660)
+	  1: Rel (     0,    82)  ->  Abs ( -1005,  1742)
+	  2: Rel (   112,    91)  ->  Abs (  -893,  1833)
+	  3: Rel (    91,     0)  ->  Abs (  -802,  1833)
+	  4: Rel (    62,     0)  ->  Abs (  -740,  1833)
+	  5: Rel (   107,   -44)  ->  Abs (  -633,  1789)
+	  6: Rel (    59,   -24)  ->  Abs (  -574,  1765)
+	  7: Rel (    68,     0)  ->  Abs (  -506,  1765)
+	  8: Rel (    61,     0)  ->  Abs (  -445,  1765)
+	  9: Rel (    12,    70)  ->  Abs (  -433,  1835)
+	 10: Rel (    97,     0)  ->  Abs (  -336,  1835)
+	 11: Rel (    -6,  -172)  ->  Abs (  -342,  1663)
+	 12: Rel (  -190,     0)  ->  Abs (  -532,  1663)
+	 13: Rel (   -63,     0)  ->  Abs (  -595,  1663)
+	 14: Rel (  -103,    44)  ->  Abs (  -698,  1707)
+	 15: Rel (   -67,    29)  ->  Abs (  -765,  1736)
+	 16: Rel (   -64,     0)  ->  Abs (  -829,  1736)
+	 17: Rel (   -81,     0)  ->  Abs (  -910,  1736)
+	 18: Rel (     2,   -76)  ->  Abs (  -908,  1660)
+
+	Glyph 1184: off = 0x0003066E, len = 172
+	  numberOfContours:	1
+	  xMin:			-1006
+	  yMin:			1609
+	  xMax:			-336
+	  yMax:			1840
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	107
+	00000: PUSHB[6]             14    32     9    17    52    11 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (65):     9    19    52     2    32     9    17    52     0     0 
+	                           239    12     1    12    69     7     7   239    16     1 
+	                            16    69     3     3    31     9   223     9     2    79 
+	                             9     1     9    64     9    16    52    63     9    79 
+	                             9   191     9     3     9    10   118     9     9     0 
+	                           118   128    18     1    64    18   208    18   224    18 
+	                             3    80    18     1    18 
+	00077: MDAP[rd]   
+	00078: DELTAP1    
+	00079: DELTAP1    
+	00080: DELTAP2    
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SHP[rp1,zp0] 
+	00083: MDAP[rd]   
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: SVTCA[y-axis] 
+	00086: MDAP[rd]   
+	00087: DELTAP1    
+	00088: CALL       
+	00089: DELTAP2    
+	00090: DELTAP3    
+	00091: SHP[rp1,zp0] 
+	00092: MDAP[rd]   
+	00093: MIRP[srp0,md,rd,1] 
+	00094: DELTAP1    
+	00095: IP         
+	00096: MDAP[rd]   
+	00097: MIRP[srp0,md,rd,1] 
+	00098: DELTAP1    
+	00099: SHP[rp2,zp1] 
+	00100: MDAP[rd]   
+	00101: IUP[y]     
+	00102: IUP[x]     
+	00103: SVTCA[x-axis] 
+	00104: CALL       
+	00105: CALL       
+	00106: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual                 X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel ( -1005,  1609)  ->  Abs ( -1005,  1609)
+	  1: Rel (    -1,   102)  ->  Abs ( -1006,  1711)
+	  2: Rel (   113,   126)  ->  Abs (  -893,  1837)
+	  3: Rel (    91,     0)  ->  Abs (  -802,  1837)
+	  4: Rel (    62,     0)  ->  Abs (  -740,  1837)
+	  5: Rel (   107,   -54)  ->  Abs (  -633,  1783)
+	  6: Rel (    59,   -30)  ->  Abs (  -574,  1753)
+	  7: Rel (    35,     0)  ->  Abs (  -539,  1753)
+	  8: Rel (    61,     0)  ->  Abs (  -478,  1753)
+	  9: Rel (    12,    87)  ->  Abs (  -466,  1840)
+	 10: Rel (   130,     0)  ->  Abs (  -336,  1840)
+	 11: Rel (    -6,  -228)  ->  Abs (  -342,  1612)
+	 12: Rel (  -190,     0)  ->  Abs (  -532,  1612)
+	 13: Rel (   -63,     0)  ->  Abs (  -595,  1612)
+	 14: Rel (  -103,    56)  ->  Abs (  -698,  1668)
+	 15: Rel (   -67,    36)  ->  Abs (  -765,  1704)
+	 16: Rel (   -31,     0)  ->  Abs (  -796,  1704)
+	 17: Rel (   -78,     0)  ->  Abs (  -874,  1704)
+	 18: Rel (     2,   -95)  ->  Abs (  -872,  1609)
+
+	Glyph 1185: off = 0x0003071A, len = 174
+	  numberOfContours:	1
+	  xMin:			-1130
+	  yMin:			1660
+	  xMax:			-460
+	  yMax:			1835
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	110
+	00000: PUSHB[4]             75    14     1    11 
+	00005: PUSHW[1]            -32 
+	00008: NPUSHB      (11):    10    19    52     2    32    10    17    52     0     0 
+	                             7 
+	00021: PUSHW[1]            790 
+	00024: NPUSHB      (31):    64    12    64    94    53    12    64    79    83    52 
+	                            12    64    67    69    52    12    64    43    45    52 
+	                           111    12   127    12     2    15    12     1    12   128 
+	                            16 
+	00057: PUSHW[1]            790 
+	00060: PUSHB[3]              3     3     9 
+	00064: PUSHW[3]            791    10   790 
+	00071: PUSHB[3]              9     9     0 
+	00075: PUSHW[2]            790    18 
+	00080: MDAP[rd]   
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SHP[rp1,zp0] 
+	00083: MDAP[rd]   
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: SVTCA[y-axis] 
+	00086: RDTG       
+	00087: MIAP[rd+ci] 
+	00088: SHP[rp1,zp0] 
+	00089: RTG        
+	00090: MDAP[rd]   
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: SMD        
+	00093: MDRP[srp0,md,rd,1] 
+	00094: DELTAP1    
+	00095: DELTAP2    
+	00096: CALL       
+	00097: CALL       
+	00098: CALL       
+	00099: CALL       
+	00100: SMD        
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: SHP[rp1,zp0] 
+	00103: MDAP[rd]   
+	00104: IUP[y]     
+	00105: IUP[x]     
+	00106: SVTCA[x-axis] 
+	00107: CALL       
+	00108: CALL       
+	00109: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual                 X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel ( -1129,  1660)  ->  Abs ( -1129,  1660)
+	  1: Rel (    -1,    82)  ->  Abs ( -1130,  1742)
+	  2: Rel (   113,    91)  ->  Abs ( -1017,  1833)
+	  3: Rel (    91,     0)  ->  Abs (  -926,  1833)
+	  4: Rel (    62,     0)  ->  Abs (  -864,  1833)
+	  5: Rel (   107,   -44)  ->  Abs (  -757,  1789)
+	  6: Rel (    59,   -24)  ->  Abs (  -698,  1765)
+	  7: Rel (    68,     0)  ->  Abs (  -630,  1765)
+	  8: Rel (    61,     0)  ->  Abs (  -569,  1765)
+	  9: Rel (    12,    70)  ->  Abs (  -557,  1835)
+	 10: Rel (    97,     0)  ->  Abs (  -460,  1835)
+	 11: Rel (    -6,  -172)  ->  Abs (  -466,  1663)
+	 12: Rel (  -190,     0)  ->  Abs (  -656,  1663)
+	 13: Rel (   -63,     0)  ->  Abs (  -719,  1663)
+	 14: Rel (  -103,    44)  ->  Abs (  -822,  1707)
+	 15: Rel (   -67,    29)  ->  Abs (  -889,  1736)
+	 16: Rel (   -67,     0)  ->  Abs (  -956,  1736)
+	 17: Rel (   -78,     0)  ->  Abs ( -1034,  1736)
+	 18: Rel (     2,   -76)  ->  Abs ( -1032,  1660)
+
+	Glyph 1186: off = 0x000307C8, len = 172
+	  numberOfContours:	1
+	  xMin:			-1130
+	  yMin:			1609
+	  xMax:			-460
+	  yMax:			1840
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	107
+	00000: PUSHB[6]             14    32     9    17    52    11 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (65):     9    19    52     2    32     9    17    52     0     0 
+	                           239    12     1    12    69     7     7   239    16     1 
+	                            16    69     3     3    31     9   223     9     2    79 
+	                             9     1     9    64     9    16    52    63     9    79 
+	                             9   191     9     3     9    10   118     9     9     0 
+	                           118   128    18     1    64    18   208    18   224    18 
+	                             3    80    18     1    18 
+	00077: MDAP[rd]   
+	00078: DELTAP1    
+	00079: DELTAP1    
+	00080: DELTAP2    
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SHP[rp1,zp0] 
+	00083: MDAP[rd]   
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: SVTCA[y-axis] 
+	00086: MDAP[rd]   
+	00087: DELTAP1    
+	00088: CALL       
+	00089: DELTAP2    
+	00090: DELTAP3    
+	00091: SHP[rp1,zp0] 
+	00092: MDAP[rd]   
+	00093: MIRP[srp0,md,rd,1] 
+	00094: DELTAP1    
+	00095: IP         
+	00096: MDAP[rd]   
+	00097: MIRP[srp0,md,rd,1] 
+	00098: DELTAP1    
+	00099: SHP[rp2,zp1] 
+	00100: MDAP[rd]   
+	00101: IUP[y]     
+	00102: IUP[x]     
+	00103: SVTCA[x-axis] 
+	00104: CALL       
+	00105: CALL       
+	00106: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual                 X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel ( -1129,  1609)  ->  Abs ( -1129,  1609)
+	  1: Rel (    -1,   102)  ->  Abs ( -1130,  1711)
+	  2: Rel (   113,   126)  ->  Abs ( -1017,  1837)
+	  3: Rel (    91,     0)  ->  Abs (  -926,  1837)
+	  4: Rel (    62,     0)  ->  Abs (  -864,  1837)
+	  5: Rel (   107,   -54)  ->  Abs (  -757,  1783)
+	  6: Rel (    59,   -30)  ->  Abs (  -698,  1753)
+	  7: Rel (    35,     0)  ->  Abs (  -663,  1753)
+	  8: Rel (    61,     0)  ->  Abs (  -602,  1753)
+	  9: Rel (    12,    87)  ->  Abs (  -590,  1840)
+	 10: Rel (   130,     0)  ->  Abs (  -460,  1840)
+	 11: Rel (    -6,  -228)  ->  Abs (  -466,  1612)
+	 12: Rel (  -190,     0)  ->  Abs (  -656,  1612)
+	 13: Rel (   -63,     0)  ->  Abs (  -719,  1612)
+	 14: Rel (  -103,    56)  ->  Abs (  -822,  1668)
+	 15: Rel (   -67,    36)  ->  Abs (  -889,  1704)
+	 16: Rel (   -31,     0)  ->  Abs (  -920,  1704)
+	 17: Rel (   -78,     0)  ->  Abs (  -998,  1704)
+	 18: Rel (     2,   -95)  ->  Abs (  -996,  1609)
+
+	Glyph 1187: off = 0x00030874, len = 152
+	  numberOfContours:	1
+	  xMin:			136
+	  yMin:			0
+	  xMax:			316
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	127
+	00000: NPUSHB      (64):    79     5   144     5   160     5   176     5   192     5 
+	                           223     5   240     5     7     0     5    31     5   112 
+	                             5   128     5   159     5   176     5   192     5   223 
+	                             5   224     5   255     5    10    31     5     1     1 
+	                             6     0    10     3    37     5    32    11    11     2 
+	                            85     0     6    12    12     2    85     0    10    11 
+	                            11     2    85     0 
+	00066: PUSHW[1]            -20 
+	00069: NPUSHB      (11):    10    10     2    85     0    20    11    11     6    85 
+	                             0 
+	00082: PUSHW[1]             -4 
+	00085: PUSHB[5]             12    13     6    85     0 
+	00091: PUSHW[1]            -18 
+	00094: NPUSHB      (12):    16    16     6    85     0     0    32     0   224     0 
+	                             3     0 
+	00108: MDAP[rd]   
+	00109: DELTAP1    
+	00110: CALL       
+	00111: CALL       
+	00112: CALL       
+	00113: CALL       
+	00114: CALL       
+	00115: CALL       
+	00116: CALL       
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: SVTCA[y-axis] 
+	00119: MIAP[rd+ci] 
+	00120: MIAP[rd+ci] 
+	00121: IUP[y]     
+	00122: IUP[x]     
+	00123: SVTCA[x-axis] 
+	00124: DELTAP1    
+	00125: DELTAP3    
+	00126: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   136,     0)  ->  Abs (   136,     0)
+	  1: Rel (     0,  1062)  ->  Abs (   136,  1062)
+	  2: Rel (   180,     0)  ->  Abs (   316,  1062)
+	  3: Rel (     0, -1062)  ->  Abs (   316,     0)
+
+	Glyph 1188: off = 0x0003090C, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			-325
+	  xMax:			1369
+	  yMax:			1466
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	820
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              2    16 
+	00003: PUSHW[1]            -64 
+	00006: PUSHB[4]             53    60    52    16 
+	00011: PUSHW[1]            -64 
+	00014: PUSHB[3]             18    23    52 
+	00018: PUSHW[1]            -20 
+	00021: PUSHB[5]             16    17     7     4    65 
+	00027: SVTCA[x-axis] 
+	00028: CALL       
+	00029: CALL       
+	00030: CALL       
+	00031: SHC[rp1,zp0] 
+
+	Glyph 1189: off = 0x00030946, len = 42
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-325
+	  xMax:			1052
+	  yMax:			1086
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	712
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2    31    57     1     0    57    58    47    55    65 
+	00012: SVTCA[x-axis] 
+	00013: CALL       
+	00014: DELTAP1    
+	00015: SHC[rp1,zp0] 
+
+	Glyph 1190: off = 0x00030970, len = 42
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1140
+		X WOffset:	940
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2   127    35     1     0    35    34     1     2    65 
+	00012: SVTCA[x-axis] 
+	00013: CALL       
+	00014: DELTAP1    
+	00015: SHC[rp1,zp0] 
+
+	Glyph 1191: off = 0x0003099A, len = 84
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1549
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1157
+		X WOffset:	820
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              2    76 
+	00003: PUSHW[1]            -64 
+	00006: PUSHB[5]             18    18     6    85    76 
+	00012: PUSHW[1]            -64 
+	00015: NPUSHB      (27):    14    16     6    85   144    76     1   112    76   128 
+	                            76     2    80    76    96    76   160    76   176    76 
+	                           224    76   240    76     6    76    28 
+	00044: PUSHW[1]            -54 
+	00047: PUSHB[2]             72    43 
+	00050: SVTCA[x-axis] 
+	00051: CALL       
+	00052: DELTAP1    
+	00053: DELTAP2    
+	00054: DELTAP3    
+	00055: CALL       
+	00056: CALL       
+	00057: SHC[rp1,zp0] 
+
+	Glyph 1192: off = 0x000309EE, len = 82
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1835
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	1148
+		X WOffset:	653
+		Y WOffset:	25
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1137
+		X WOffset:	991
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              3   208    25     1     0    25     1    25 
+	00009: PUSHW[1]            -64 
+	00012: NPUSHB      (22):    31    42    52    25    18     0    72    43     2     0 
+	                            17    20     1     2    65     2    17    64    25    40 
+	                            52    17 
+	00036: SVTCA[y-axis] 
+	00037: MDAP[rd]   
+	00038: CALL       
+	00039: SHC[rp1,zp0] 
+	00040: SVTCA[x-axis] 
+	00041: CALL       
+	00042: SHC[rp1,zp0] 
+	00043: CALL       
+	00044: CALL       
+	00045: DELTAP1    
+	00046: DELTAP2    
+	00047: SHC[rp1,zp0] 
+
+	Glyph 1193: off = 0x00030A40, len = 124
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1827
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	214
+		X WOffset:	222
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1171
+		X WOffset:	843
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              3    95    66     1    66 
+	00006: PUSHW[1]            -64 
+	00009: NPUSHB      (61):    23    25    52    66    59     0    72    43     2   159 
+	                            58     1    32    58    48    58   112    58   128    58 
+	                             4   144    58   160    58   176    58   224    58   240 
+	                            58     5    58    64    46    50    52     0    58    61 
+	                            28    28    65     2    31    62    47    62     2   240 
+	                            62     1    95    62     1    62    64     9    12    52 
+	                            62 
+	00072: SVTCA[y-axis] 
+	00073: MDAP[rd]   
+	00074: CALL       
+	00075: DELTAP1    
+	00076: DELTAP2    
+	00077: DELTAP3    
+	00078: SHC[rp1,zp0] 
+	00079: SVTCA[x-axis] 
+	00080: CALL       
+	00081: CALL       
+	00082: DELTAP1    
+	00083: DELTAP2    
+	00084: DELTAP3    
+	00085: SHC[rp1,zp0] 
+	00086: CALL       
+	00087: CALL       
+	00088: DELTAP1    
+	00089: SHC[rp1,zp0] 
+
+	Glyph 1194: off = 0x00030ABC, len = 74
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1835
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	1148
+		X WOffset:	653
+		Y WOffset:	25
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1134
+		X WOffset:	945
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (26):     3   223    22     1    15    22     1    22    19     0 
+	                            72    43     2     0    17    20     1     2    65     2 
+	                            17    64    25    40    52    17 
+	00028: SVTCA[y-axis] 
+	00029: MDAP[rd]   
+	00030: CALL       
+	00031: SHC[rp1,zp0] 
+	00032: SVTCA[x-axis] 
+	00033: CALL       
+	00034: SHC[rp1,zp0] 
+	00035: CALL       
+	00036: DELTAP1    
+	00037: DELTAP2    
+	00038: SHC[rp1,zp0] 
+
+	Glyph 1195: off = 0x00030B06, len = 124
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1827
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	214
+		X WOffset:	222
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1170
+		X WOffset:	813
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (69):     3    63    64    38    51    52    63    64    23    30 
+	                            52    63    60     0    72    43     2   159    58     1 
+	                            32    58    48    58   112    58   128    58     4   144 
+	                            58   160    58   176    58   224    58   240    58     5 
+	                            58    64    46    50    52     0    58    61    28    28 
+	                            65     2    31    62    47    62     2   240    62     1 
+	                            95    62     1    62    64     9    12    52    62 
+	00071: SVTCA[y-axis] 
+	00072: MDAP[rd]   
+	00073: CALL       
+	00074: DELTAP1    
+	00075: DELTAP2    
+	00076: DELTAP3    
+	00077: SHC[rp1,zp0] 
+	00078: SVTCA[x-axis] 
+	00079: CALL       
+	00080: CALL       
+	00081: DELTAP1    
+	00082: DELTAP2    
+	00083: DELTAP3    
+	00084: SHC[rp1,zp0] 
+	00085: CALL       
+	00086: CALL       
+	00087: CALL       
+	00088: SHC[rp1,zp0] 
+
+	Glyph 1196: off = 0x00030B82, len = 84
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	1148
+		X WOffset:	653
+		Y WOffset:	25
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1141
+		X WOffset:	980
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              3    41 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (29):    29    31    52   176    41     1     0    41     1     0 
+	                            41    40    18    19    65     2     0    17    20     1 
+	                             2    65     2    16    64    25    40    52    16 
+	00037: SVTCA[y-axis] 
+	00038: MDAP[rd]   
+	00039: CALL       
+	00040: SHC[rp1,zp0] 
+	00041: SVTCA[x-axis] 
+	00042: CALL       
+	00043: SHC[rp1,zp0] 
+	00044: CALL       
+	00045: DELTAP1    
+	00046: DELTAP2    
+	00047: CALL       
+	00048: SHC[rp1,zp0] 
+
+	Glyph 1197: off = 0x00030BD6, len = 132
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	214
+		X WOffset:	222
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1140
+		X WOffset:	840
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     3   128    83     1    79    83   127    83     2    83 
+	00012: PUSHW[1]            -64 
+	00015: NPUSHB      (62):    18    27    52     0    83    82    59    60    65     2 
+	                           159    58     1    32    58    48    58   112    58   128 
+	                            58     4   144    58   160    58   176    58   224    58 
+	                           240    58     5    58    64    46    50    52     0    58 
+	                            61    28    28    65     2    31    62    47    62     2 
+	                           240    62     1    95    62     1    62    64     9    12 
+	                            52    62 
+	00079: SVTCA[y-axis] 
+	00080: MDAP[rd]   
+	00081: CALL       
+	00082: DELTAP1    
+	00083: DELTAP2    
+	00084: DELTAP3    
+	00085: SHC[rp1,zp0] 
+	00086: SVTCA[x-axis] 
+	00087: CALL       
+	00088: CALL       
+	00089: DELTAP1    
+	00090: DELTAP2    
+	00091: DELTAP3    
+	00092: SHC[rp1,zp0] 
+	00093: CALL       
+	00094: CALL       
+	00095: DELTAP1    
+	00096: DELTAP2    
+	00097: SHC[rp1,zp0] 
+
+	Glyph 1198: off = 0x00030C5A, len = 82
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1835
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	1148
+		X WOffset:	653
+		Y WOffset:	25
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1183
+		X WOffset:	1340
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (34):     3    22    64    29    32    52    22    64    20    23 
+	                            52    16    22     1     0    22    32     1     2    65 
+	                             2     0    17    20     1     2    65     2    17    64 
+	                            25    40    52    17 
+	00036: SVTCA[y-axis] 
+	00037: MDAP[rd]   
+	00038: CALL       
+	00039: SHC[rp1,zp0] 
+	00040: SVTCA[x-axis] 
+	00041: CALL       
+	00042: SHC[rp1,zp0] 
+	00043: CALL       
+	00044: DELTAP1    
+	00045: CALL       
+	00046: CALL       
+	00047: SHC[rp1,zp0] 
+
+	Glyph 1199: off = 0x00030CAC, len = 118
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1778
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	214
+		X WOffset:	222
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1146
+		X WOffset:	1140
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (65):     3     0    63    79    63     2     0    63    73    58 
+	                            61    65     2   159    58     1    32    58    48    58 
+	                           112    58   128    58     4   144    58   160    58   176 
+	                            58   224    58   240    58     5    58    64    46    50 
+	                            52     0    58    61    28    28    65     2    31    62 
+	                            47    62     2   240    62     1    95    62     1    62 
+	                            64     9    12    52    62 
+	00067: SVTCA[y-axis] 
+	00068: MDAP[rd]   
+	00069: CALL       
+	00070: DELTAP1    
+	00071: DELTAP2    
+	00072: DELTAP3    
+	00073: SHC[rp1,zp0] 
+	00074: SVTCA[x-axis] 
+	00075: CALL       
+	00076: CALL       
+	00077: DELTAP1    
+	00078: DELTAP2    
+	00079: DELTAP3    
+	00080: SHC[rp1,zp0] 
+	00081: CALL       
+	00082: DELTAP1    
+	00083: SHC[rp1,zp0] 
+
+	Glyph 1200: off = 0x00030D22, len = 88
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			-325
+	  xMax:			1369
+	  yMax:			1640
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	1148
+		X WOffset:	653
+		Y WOffset:	25
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	820
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              3    23 
+	00003: PUSHW[1]            -64 
+	00006: PUSHB[4]             53    60    52    23 
+	00011: PUSHW[1]            -64 
+	00014: PUSHB[3]             18    23    52 
+	00018: PUSHW[1]            -20 
+	00021: NPUSHB      (19):    23    24     7     4    65     2     0    17    20     1 
+	                             2    65     2    17    64    10    40    52    17 
+	00042: SVTCA[y-axis] 
+	00043: MDAP[rd]   
+	00044: CALL       
+	00045: SHC[rp1,zp0] 
+	00046: SVTCA[x-axis] 
+	00047: CALL       
+	00048: SHC[rp1,zp0] 
+	00049: CALL       
+	00050: CALL       
+	00051: CALL       
+	00052: SHC[rp1,zp0] 
+
+	Glyph 1201: off = 0x00030D7A, len = 102
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-325
+	  xMax:			1052
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	214
+		X WOffset:	222
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	712
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (48):     3    31    64     1     0    64    65    47    55    65 
+	                             2   159    58     1    32    58    48    58   112    58 
+	                           128    58     4   144    58   160    58   176    58   224 
+	                            58   240    58     5    58    64    46    50    52     0 
+	                            58    61    28    28    65     2     1    62 
+	00050: PUSHW[2]            546    41 
+	00055: SVTCA[y-axis] 
+	00056: CALL       
+	00057: SVTCA[x-axis] 
+	00058: CALL       
+	00059: CALL       
+	00060: DELTAP1    
+	00061: DELTAP2    
+	00062: DELTAP3    
+	00063: SHC[rp1,zp0] 
+	00064: CALL       
+	00065: DELTAP1    
+	00066: SHC[rp1,zp0] 
+
+	Glyph 1202: off = 0x00030DE0, len = 86
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1835
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	1147
+		X WOffset:	683
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1137
+		X WOffset:	991
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              3    35 
+	00003: PUSHW[1]            -64 
+	00006: PUSHB[4]             65    66    52    35 
+	00011: PUSHW[1]            -64 
+	00014: NPUSHB      (24):    57    53   255    35     1    35    22    19    72    43 
+	                             2     0    17    27     1     2    65     2    32    64 
+	                            25    45    52    32 
+	00040: SVTCA[y-axis] 
+	00041: MDAP[rd]   
+	00042: CALL       
+	00043: SHC[rp1,zp0] 
+	00044: SVTCA[x-axis] 
+	00045: CALL       
+	00046: SHC[rp1,zp0] 
+	00047: CALL       
+	00048: DELTAP2    
+	00049: CALL       
+	00050: CALL       
+	00051: SHC[rp1,zp0] 
+
+	Glyph 1203: off = 0x00030E36, len = 90
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1827
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	217
+		X WOffset:	245
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1171
+		X WOffset:	840
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     3    96    72   112    72     2     0    72    91    72 
+	                             2    72 
+	00014: PUSHW[1]            -32 
+	00017: NPUSHB      (20):    15    17    52    72    67    24    72    43     2   207 
+	                            60     1    60    28     3   104    43     2     1    60 
+	00039: PUSHW[2]            546    41 
+	00044: SVTCA[y-axis] 
+	00045: CALL       
+	00046: SVTCA[x-axis] 
+	00047: CALL       
+	00048: DELTAP1    
+	00049: SHC[rp1,zp0] 
+	00050: CALL       
+	00051: CALL       
+	00052: DELTAP1    
+	00053: DELTAP2    
+	00054: SHC[rp1,zp0] 
+
+	Glyph 1204: off = 0x00030E90, len = 126
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1835
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	1147
+		X WOffset:	683
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1134
+		X WOffset:	945
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2    32    64    25    45    52    32 
+	00008: SVTCA[y-axis] 
+	00009: MDAP[rd]   
+	00010: CALL       
+	00011: SHC[rp1,zp0] 
+	00012: SVTCA[x-axis] 
+	00013: PUSHB[2]              6     2 
+	00016: RS         
+	00017: EQ         
+	00018: IF         
+	00019: NPUSHB      (14):     3    84    35    35    22    22    65     2     0    31 
+	                            31     1     2    65 
+	00035: CALL       
+	00036: SHC[rp1,zp0] 
+	00037: CALL       
+	00038: SHC[rp1,zp0] 
+	00039: ELSE       
+	00040: NPUSHB      (27):     3    35    64    56    57    52    35    64    41    49 
+	                            52    35    64     9    17    52    64    35   111    35 
+	                           223    35   239    35     4    35     2 
+	00069: PUSHW[1]            -11 
+	00072: NPUSHB       (9):    72    43     2     0    17    27     1     2    65 
+	00083: CALL       
+	00084: SHC[rp1,zp0] 
+	00085: CALL       
+	00086: DELTAP2    
+	00087: CALL       
+	00088: CALL       
+	00089: CALL       
+	00090: SHC[rp1,zp0] 
+	00091: EIF        
+
+	Glyph 1205: off = 0x00030F0E, len = 76
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1827
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	217
+		X WOffset:	245
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1170
+		X WOffset:	860
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              3    15    73    80    73     2    73    67 
+	00009: PUSHW[1]            -14 
+	00012: NPUSHB      (14):    72    43     2   207    60     1    60    28     3   104 
+	                            43     2     1    60 
+	00028: PUSHW[2]            546    41 
+	00033: SVTCA[y-axis] 
+	00034: CALL       
+	00035: SVTCA[x-axis] 
+	00036: CALL       
+	00037: DELTAP1    
+	00038: SHC[rp1,zp0] 
+	00039: CALL       
+	00040: DELTAP1    
+	00041: SHC[rp1,zp0] 
+
+	Glyph 1206: off = 0x00030F5A, len = 94
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	1147
+		X WOffset:	683
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1141
+		X WOffset:	980
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     3   176    54   192    54   208    54     3    54 
+	00011: PUSHW[1]            -64 
+	00014: PUSHB[4]             42    50    52    54 
+	00019: PUSHW[1]            -64 
+	00022: NPUSHB      (23):    33    40    52     0    54    53     1     2    65     2 
+	                             0    17    27     1     2    65     2    32    64    25 
+	                            45    52    32 
+	00047: SVTCA[y-axis] 
+	00048: MDAP[rd]   
+	00049: CALL       
+	00050: SHC[rp1,zp0] 
+	00051: SVTCA[x-axis] 
+	00052: CALL       
+	00053: SHC[rp1,zp0] 
+	00054: CALL       
+	00055: CALL       
+	00056: CALL       
+	00057: DELTAP3    
+	00058: SHC[rp1,zp0] 
+
+	Glyph 1207: off = 0x00030FB8, len = 100
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	217
+		X WOffset:	245
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1140
+		X WOffset:	860
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (48):     3    80    90    96    90   144    90   160    90     4 
+	                             0    90    16    90    48    90   112    90   128    90 
+	                             5     0    90   128    90   192    90   208    90     4 
+	                             0    90    89    28    28    65     2   207    60     1 
+	                            60    28     3   104    43     2     1    60 
+	00050: PUSHW[2]            546    41 
+	00055: SVTCA[y-axis] 
+	00056: CALL       
+	00057: SVTCA[x-axis] 
+	00058: CALL       
+	00059: DELTAP1    
+	00060: SHC[rp1,zp0] 
+	00061: CALL       
+	00062: DELTAP1    
+	00063: DELTAP2    
+	00064: DELTAP3    
+	00065: SHC[rp1,zp0] 
+
+	Glyph 1208: off = 0x0003101C, len = 78
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1835
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	1147
+		X WOffset:	683
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1183
+		X WOffset:	1360
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (31):     3   207    35   223    35   239    35     3    47    35 
+	                             1     0    35    45     1     2    65     2     0    17 
+	                            27     1     2    65     2    32    64    25    45    52 
+	                            32 
+	00033: SVTCA[y-axis] 
+	00034: MDAP[rd]   
+	00035: CALL       
+	00036: SHC[rp1,zp0] 
+	00037: SVTCA[x-axis] 
+	00038: CALL       
+	00039: SHC[rp1,zp0] 
+	00040: CALL       
+	00041: DELTAP1    
+	00042: DELTAP2    
+	00043: SHC[rp1,zp0] 
+
+	Glyph 1209: off = 0x0003106A, len = 78
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1778
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	217
+		X WOffset:	245
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1146
+		X WOffset:	1180
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              3    70 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (21):    10    12    52     0    70    80    63    57    65     2 
+	                           207    60     1    60    28     3   104    43     2     1 
+	                            60 
+	00029: PUSHW[2]            546    41 
+	00034: SVTCA[y-axis] 
+	00035: CALL       
+	00036: SVTCA[x-axis] 
+	00037: CALL       
+	00038: DELTAP1    
+	00039: SHC[rp1,zp0] 
+	00040: CALL       
+	00041: CALL       
+	00042: SHC[rp1,zp0] 
+
+	Glyph 1210: off = 0x000310B8, len = 88
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			-325
+	  xMax:			1369
+	  yMax:			1638
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	1147
+		X WOffset:	683
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	820
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              3    36 
+	00003: PUSHW[1]            -64 
+	00006: PUSHB[4]             53    60    52    36 
+	00011: PUSHW[1]            -64 
+	00014: PUSHB[3]             18    23    52 
+	00018: PUSHW[1]            -20 
+	00021: NPUSHB      (19):    36    37     7     4    65     2     0    17    27     1 
+	                             2    65     2    32    64    10    45    52    32 
+	00042: SVTCA[y-axis] 
+	00043: MDAP[rd]   
+	00044: CALL       
+	00045: SHC[rp1,zp0] 
+	00046: SVTCA[x-axis] 
+	00047: CALL       
+	00048: SHC[rp1,zp0] 
+	00049: CALL       
+	00050: CALL       
+	00051: CALL       
+	00052: SHC[rp1,zp0] 
+
+	Glyph 1211: off = 0x00031110, len = 72
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-325
+	  xMax:			1052
+	  yMax:			1464
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	217
+		X WOffset:	245
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	712
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (22):     3    31    71     1     0    71    72    47    55    65 
+	                             2   207    60     1    60    28     3   104    43     2 
+	                             1    60 
+	00024: PUSHW[2]            546    41 
+	00029: SVTCA[y-axis] 
+	00030: CALL       
+	00031: SVTCA[x-axis] 
+	00032: CALL       
+	00033: DELTAP1    
+	00034: SHC[rp1,zp0] 
+	00035: CALL       
+	00036: DELTAP1    
+	00037: SHC[rp1,zp0] 
+
+	Glyph 1212: off = 0x00031158, len = 42
+	  numberOfContours:	-1  (Composite)
+	  xMin:			162
+	  yMin:			-325
+	  xMax:			1256
+	  yMax:			1466
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	860
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1    32    13     1     0    13    14     0    11    65 
+	00012: SVTCA[x-axis] 
+	00013: CALL       
+	00014: DELTAP1    
+	00015: SHC[rp1,zp0] 
+
+	Glyph 1213: off = 0x00031182, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			75
+	  yMin:			-325
+	  xMax:			1054
+	  yMax:			1086
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	730
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              2    80    31    96    31     2 
+	00007: PUSHW[1]            -40 
+	00010: PUSHB[5]             31    32     4     4    65 
+	00016: SVTCA[x-axis] 
+	00017: CALL       
+	00018: DELTAP1    
+	00019: SHC[rp1,zp0] 
+
+	Glyph 1214: off = 0x000311B0, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			162
+	  yMin:			0
+	  xMax:			1256
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1140
+		X WOffset:	980
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    22    28     1     2    65 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1215: off = 0x000311D6, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			75
+	  yMin:			-24
+	  xMax:			1054
+	  yMax:			1549
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1157
+		X WOffset:	810
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     2     0    50    16    50     2   144    50   192    50 
+	                           208    50     3     0    50    49    10    10    65 
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: DELTAP1    
+	00024: DELTAP2    
+	00025: SHC[rp1,zp0] 
+
+	Glyph 1216: off = 0x0003120A, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			162
+	  yMin:			0
+	  xMax:			1256
+	  yMax:			1812
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	380
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    12    24     1     2    65     1     1    12 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1217: off = 0x0003123A, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			75
+	  yMin:			-24
+	  xMax:			1054
+	  yMax:			1450
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	240
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    30    42    10    10    65     2     1    30 
+	00012: PUSHW[2]            707    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1218: off = 0x0003126A, len = 82
+	  numberOfContours:	-1  (Composite)
+	  xMin:			162
+	  yMin:			0
+	  xMax:			1256
+	  yMax:			1835
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	1148
+		X WOffset:	683
+		Y WOffset:	25
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1137
+		X WOffset:	1021
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              2   208    22     1     0    22     1    22 
+	00009: PUSHW[1]            -64 
+	00012: NPUSHB      (22):    31    42    52    22    15     0    72    43     1     0 
+	                            14    17     1     2    65     1    14    64    25    40 
+	                            52    14 
+	00036: SVTCA[y-axis] 
+	00037: MDAP[rd]   
+	00038: CALL       
+	00039: SHC[rp1,zp0] 
+	00040: SVTCA[x-axis] 
+	00041: CALL       
+	00042: SHC[rp1,zp0] 
+	00043: CALL       
+	00044: CALL       
+	00045: DELTAP1    
+	00046: DELTAP2    
+	00047: SHC[rp1,zp0] 
+
+	Glyph 1219: off = 0x000312BC, len = 110
+	  numberOfContours:	-1  (Composite)
+	  xMin:			75
+	  yMin:			-24
+	  xMax:			1054
+	  yMax:			1827
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	214
+		X WOffset:	223
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1171
+		X WOffset:	844
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              3    95    40     1    40 
+	00006: PUSHW[1]            -64 
+	00009: NPUSHB      (47):    23    25    52    40    33     0    72    43     2    32 
+	                            64    59    53    32    64    45    50    52    15    32 
+	                           159    32     2     0    32    35    10    10    65     2 
+	                            31    32    47    32     2   240    32     1    95    32 
+	                             1    32    64     9    12    52    32 
+	00058: SVTCA[y-axis] 
+	00059: MDAP[rd]   
+	00060: CALL       
+	00061: DELTAP1    
+	00062: DELTAP2    
+	00063: DELTAP3    
+	00064: SHC[rp1,zp0] 
+	00065: SVTCA[x-axis] 
+	00066: CALL       
+	00067: DELTAP3    
+	00068: CALL       
+	00069: CALL       
+	00070: SHC[rp1,zp0] 
+	00071: CALL       
+	00072: CALL       
+	00073: DELTAP1    
+	00074: SHC[rp1,zp0] 
+
+	Glyph 1220: off = 0x0003132A, len = 86
+	  numberOfContours:	-1  (Composite)
+	  xMin:			162
+	  yMin:			0
+	  xMax:			1256
+	  yMax:			1835
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	1148
+		X WOffset:	683
+		Y WOffset:	25
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1134
+		X WOffset:	975
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (37):     2    19    64    58    53    15    19    31    19     2 
+	                           223    19   255    19     2    15    19     1    19    16 
+	                             0    72    43     1     0    14    17     1     2    65 
+	                             1    14    64    25    40    52    14 
+	00039: SVTCA[y-axis] 
+	00040: MDAP[rd]   
+	00041: CALL       
+	00042: SHC[rp1,zp0] 
+	00043: SVTCA[x-axis] 
+	00044: CALL       
+	00045: SHC[rp1,zp0] 
+	00046: CALL       
+	00047: DELTAP1    
+	00048: DELTAP2    
+	00049: DELTAP3    
+	00050: CALL       
+	00051: SHC[rp1,zp0] 
+
+	Glyph 1221: off = 0x00031380, len = 116
+	  numberOfContours:	-1  (Composite)
+	  xMin:			75
+	  yMin:			-24
+	  xMax:			1054
+	  yMax:			1827
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	214
+		X WOffset:	223
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1170
+		X WOffset:	814
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (61):     3    37    64    17    17     6    85    37    64    38 
+	                            51    52    37    64    23    30    52    37    34     0 
+	                            72    43     2    32    64    59    53    32    64    45 
+	                            50    52    15    32   159    32     2     0    32    35 
+	                            10    10    65     2    31    32    47    32     2   240 
+	                            32     1    95    32     1    32    64     9    12    52 
+	                            32 
+	00063: SVTCA[y-axis] 
+	00064: MDAP[rd]   
+	00065: CALL       
+	00066: DELTAP1    
+	00067: DELTAP2    
+	00068: DELTAP3    
+	00069: SHC[rp1,zp0] 
+	00070: SVTCA[x-axis] 
+	00071: CALL       
+	00072: DELTAP3    
+	00073: CALL       
+	00074: CALL       
+	00075: SHC[rp1,zp0] 
+	00076: CALL       
+	00077: CALL       
+	00078: CALL       
+	00079: CALL       
+	00080: SHC[rp1,zp0] 
+
+	Glyph 1222: off = 0x000313F4, len = 84
+	  numberOfContours:	-1  (Composite)
+	  xMin:			162
+	  yMin:			0
+	  xMax:			1256
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	1148
+		X WOffset:	683
+		Y WOffset:	25
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1141
+		X WOffset:	1000
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              2    38 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (29):    28    32    52   176    38     1     0    38     1     0 
+	                            38    37    15    16    65     1     0    14    17     1 
+	                             2    65     1    14    64    25    40    52    14 
+	00037: SVTCA[y-axis] 
+	00038: MDAP[rd]   
+	00039: CALL       
+	00040: SHC[rp1,zp0] 
+	00041: SVTCA[x-axis] 
+	00042: CALL       
+	00043: SHC[rp1,zp0] 
+	00044: CALL       
+	00045: DELTAP1    
+	00046: DELTAP2    
+	00047: CALL       
+	00048: SHC[rp1,zp0] 
+
+	Glyph 1223: off = 0x00031448, len = 116
+	  numberOfContours:	-1  (Composite)
+	  xMin:			75
+	  yMin:			-24
+	  xMax:			1054
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	214
+		X WOffset:	223
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1140
+		X WOffset:	840
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     3    79    57   127    57   239    57     3    57 
+	00011: PUSHW[1]            -64 
+	00014: NPUSHB      (48):    18    27    52     0    57    56    33    34    65     2 
+	                            32    64    59    53    32    64    45    50    52    15 
+	                            32   159    32     2     0    32    35    10    10    65 
+	                             2    31    32    47    32     2   240    32     1    95 
+	                            32     1    32    64     9    12    52    32 
+	00064: SVTCA[y-axis] 
+	00065: MDAP[rd]   
+	00066: CALL       
+	00067: DELTAP1    
+	00068: DELTAP2    
+	00069: DELTAP3    
+	00070: SHC[rp1,zp0] 
+	00071: SVTCA[x-axis] 
+	00072: CALL       
+	00073: DELTAP3    
+	00074: CALL       
+	00075: CALL       
+	00076: SHC[rp1,zp0] 
+	00077: CALL       
+	00078: CALL       
+	00079: DELTAP1    
+	00080: SHC[rp1,zp0] 
+
+	Glyph 1224: off = 0x000314BC, len = 70
+	  numberOfContours:	-1  (Composite)
+	  xMin:			162
+	  yMin:			0
+	  xMax:			1256
+	  yMax:			1835
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	1148
+		X WOffset:	683
+		Y WOffset:	25
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1183
+		X WOffset:	1360
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (24):     2   176    19     1     0    19    29    14    17    65 
+	                             1     0    14    17     1     2    65     1    14    64 
+	                            25    40    52    14 
+	00026: SVTCA[y-axis] 
+	00027: MDAP[rd]   
+	00028: CALL       
+	00029: SHC[rp1,zp0] 
+	00030: SVTCA[x-axis] 
+	00031: CALL       
+	00032: SHC[rp1,zp0] 
+	00033: CALL       
+	00034: DELTAP2    
+	00035: SHC[rp1,zp0] 
+
+	Glyph 1225: off = 0x00031502, len = 104
+	  numberOfContours:	-1  (Composite)
+	  xMin:			75
+	  yMin:			-24
+	  xMax:			1054
+	  yMax:			1778
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	214
+		X WOffset:	223
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1146
+		X WOffset:	1140
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (51):     3     0    37    79    37     2     0    37    47    32 
+	                            35    65     2    32    64    59    53    32    64    45 
+	                            50    52    15    32   159    32     2     0    32    35 
+	                            10    10    65     2    31    32    47    32     2   240 
+	                            32     1    95    32     1    32    64     9    12    52 
+	                            32 
+	00053: SVTCA[y-axis] 
+	00054: MDAP[rd]   
+	00055: CALL       
+	00056: DELTAP1    
+	00057: DELTAP2    
+	00058: DELTAP3    
+	00059: SHC[rp1,zp0] 
+	00060: SVTCA[x-axis] 
+	00061: CALL       
+	00062: DELTAP3    
+	00063: CALL       
+	00064: CALL       
+	00065: SHC[rp1,zp0] 
+	00066: CALL       
+	00067: DELTAP1    
+	00068: SHC[rp1,zp0] 
+
+	Glyph 1226: off = 0x0003156A, len = 70
+	  numberOfContours:	-1  (Composite)
+	  xMin:			162
+	  yMin:			-325
+	  xMax:			1256
+	  yMax:			1640
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	1148
+		X WOffset:	683
+		Y WOffset:	25
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	860
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (24):     2    32    20     1     0    20    21     0    11    65 
+	                             1     0    14    17     1     2    65     1    14    64 
+	                            10    40    52    14 
+	00026: SVTCA[y-axis] 
+	00027: MDAP[rd]   
+	00028: CALL       
+	00029: SHC[rp1,zp0] 
+	00030: SVTCA[x-axis] 
+	00031: CALL       
+	00032: SHC[rp1,zp0] 
+	00033: CALL       
+	00034: DELTAP1    
+	00035: SHC[rp1,zp0] 
+
+	Glyph 1227: off = 0x000315B0, len = 92
+	  numberOfContours:	-1  (Composite)
+	  xMin:			75
+	  yMin:			-325
+	  xMax:			1054
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	214
+		X WOffset:	223
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	730
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              3    80    38    96    38     2 
+	00007: PUSHW[1]            -40 
+	00010: NPUSHB      (29):    38    39     4     4    65     2    32    64    59    53 
+	                            32    64    45    50    52    15    32   159    32     2 
+	                             0    32    35    10    10    65     2     1    36 
+	00041: PUSHW[2]            546    41 
+	00046: SVTCA[y-axis] 
+	00047: CALL       
+	00048: SVTCA[x-axis] 
+	00049: CALL       
+	00050: DELTAP3    
+	00051: CALL       
+	00052: CALL       
+	00053: SHC[rp1,zp0] 
+	00054: CALL       
+	00055: DELTAP1    
+	00056: SHC[rp1,zp0] 
+
+	Glyph 1228: off = 0x0003160C, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			0
+	  xMax:			536
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1140
+		X WOffset:	570
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1    14 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (10):    16    16     6    85     0    14    20     1     2    65 
+	00018: SVTCA[x-axis] 
+	00019: CALL       
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1229: off = 0x0003163C, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			31
+	  yMin:			0
+	  xMax:			468
+	  yMax:			1549
+
+	     0: Flags:		0x0226
+		Glyf Index:	1187
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1157
+		X WOffset:	460
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[1]              1 
+	00002: SVTCA[x-axis] 
+	00003: PUSHB[2]              6     2 
+	00006: RS         
+	00007: EQ         
+	00008: IF         
+	00009: PUSHB[6]              0    24    23     1     2    65 
+	00016: CALL       
+	00017: ELSE       
+	00018: PUSHB[8]             79    24     1    24     1    34    72    43 
+	00027: CALL       
+	00028: DELTAP2    
+	00029: EIF        
+	00030: SHC[rp1,zp0] 
+
+	Glyph 1230: off = 0x00031676, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			186
+	  yMin:			-325
+	  xMax:			391
+	  yMax:			1466
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	440
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0     5     6     0     3    65 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1231: off = 0x0003169C, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			124
+	  yMin:			-325
+	  xMax:			329
+	  yMax:			1466
+
+	     0: Flags:		0x0226
+		Glyf Index:	76
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	378
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     2     9    64   109   111    52    79     9     1     0 
+	                             9    10     4     7    65 
+	00017: SVTCA[x-axis] 
+	00018: CALL       
+	00019: DELTAP2    
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1232: off = 0x000316CC, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-325
+	  xMax:			1501
+	  yMax:			1492
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	940
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2     0    29    30    11    11    65 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1233: off = 0x000316F2, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-325
+	  xMax:			1063
+	  yMax:			1086
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	710
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2     0    27    28    11    11    65 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1234: off = 0x00031718, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1501
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1140
+		X WOffset:	1080
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     2   112    48     1   144    48   176    48   192    48 
+	                             3     0    48    47     3     3    65 
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: DELTAP1    
+	00022: DELTAP2    
+	00023: SHC[rp1,zp0] 
+
+	Glyph 1235: off = 0x0003174A, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1063
+	  yMax:			1549
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1157
+		X WOffset:	810
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     2     0    46    16    46     2   144    46     1     0 
+	                            46    45     4     4    65 
+	00017: SVTCA[x-axis] 
+	00018: CALL       
+	00019: DELTAP1    
+	00020: DELTAP2    
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1236: off = 0x0003177A, len = 82
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1501
+	  yMax:			1835
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	1148
+		X WOffset:	796
+		Y WOffset:	25
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1137
+		X WOffset:	1134
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              3   208    38     1     0    38     1    38 
+	00009: PUSHW[1]            -64 
+	00012: NPUSHB      (22):    31    42    52    38    31     0    72    43     2     0 
+	                            30    33     0     7    65     2    30    64    25    40 
+	                            52    30 
+	00036: SVTCA[y-axis] 
+	00037: MDAP[rd]   
+	00038: CALL       
+	00039: SHC[rp1,zp0] 
+	00040: SVTCA[x-axis] 
+	00041: CALL       
+	00042: SHC[rp1,zp0] 
+	00043: CALL       
+	00044: CALL       
+	00045: DELTAP1    
+	00046: DELTAP2    
+	00047: SHC[rp1,zp0] 
+
+	Glyph 1237: off = 0x000317CC, len = 102
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1063
+	  yMax:			1827
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	214
+		X WOffset:	224
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1171
+		X WOffset:	845
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              3    95    36     1    36 
+	00006: PUSHW[1]            -64 
+	00009: NPUSHB      (41):    23    25    52    36    29     0    72    43     2    28 
+	                            64    46    50    52   159    28     1     0    28    31 
+	                             0     7    65     2    31    28    47    28     2   240 
+	                            28     1    95    28     1    28    64     9    12    52 
+	                            28 
+	00052: SVTCA[y-axis] 
+	00053: MDAP[rd]   
+	00054: CALL       
+	00055: DELTAP1    
+	00056: DELTAP2    
+	00057: DELTAP3    
+	00058: SHC[rp1,zp0] 
+	00059: SVTCA[x-axis] 
+	00060: CALL       
+	00061: DELTAP3    
+	00062: CALL       
+	00063: SHC[rp1,zp0] 
+	00064: CALL       
+	00065: CALL       
+	00066: DELTAP1    
+	00067: SHC[rp1,zp0] 
+
+	Glyph 1238: off = 0x00031832, len = 86
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1501
+	  yMax:			1835
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	1148
+		X WOffset:	796
+		Y WOffset:	25
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1134
+		X WOffset:	1088
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (37):     3    35    64    58    53    15    35    31    35     2 
+	                           223    35   255    35     2    15    35     1    35    32 
+	                             0    72    43     2     0    30    33     0     7    65 
+	                             2    30    64    25    40    52    30 
+	00039: SVTCA[y-axis] 
+	00040: MDAP[rd]   
+	00041: CALL       
+	00042: SHC[rp1,zp0] 
+	00043: SVTCA[x-axis] 
+	00044: CALL       
+	00045: SHC[rp1,zp0] 
+	00046: CALL       
+	00047: DELTAP1    
+	00048: DELTAP2    
+	00049: DELTAP3    
+	00050: CALL       
+	00051: SHC[rp1,zp0] 
+
+	Glyph 1239: off = 0x00031888, len = 102
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1063
+	  yMax:			1827
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	214
+		X WOffset:	224
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1170
+		X WOffset:	815
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (49):     3    33    64    38    51    52    33    64    23    30 
+	                            52    33    30     0    72    43     2    28    64    46 
+	                            50    52   159    28     1     0    28    31     0     7 
+	                            65     2    31    28    47    28     2   240    28     1 
+	                            95    28     1    28    64     9    12    52    28 
+	00051: SVTCA[y-axis] 
+	00052: MDAP[rd]   
+	00053: CALL       
+	00054: DELTAP1    
+	00055: DELTAP2    
+	00056: DELTAP3    
+	00057: SHC[rp1,zp0] 
+	00058: SVTCA[x-axis] 
+	00059: CALL       
+	00060: DELTAP3    
+	00061: CALL       
+	00062: SHC[rp1,zp0] 
+	00063: CALL       
+	00064: CALL       
+	00065: CALL       
+	00066: SHC[rp1,zp0] 
+
+	Glyph 1240: off = 0x000318EE, len = 84
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1501
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	1148
+		X WOffset:	796
+		Y WOffset:	25
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1141
+		X WOffset:	1120
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              3    54 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (29):    28    32    52   176    54     1     0    54     1     0 
+	                            54    53    30    33    65     2     0    30    33     0 
+	                             7    65     2    30    64    25    40    52    30 
+	00037: SVTCA[y-axis] 
+	00038: MDAP[rd]   
+	00039: CALL       
+	00040: SHC[rp1,zp0] 
+	00041: SVTCA[x-axis] 
+	00042: CALL       
+	00043: SHC[rp1,zp0] 
+	00044: CALL       
+	00045: DELTAP1    
+	00046: DELTAP2    
+	00047: CALL       
+	00048: SHC[rp1,zp0] 
+
+	Glyph 1241: off = 0x00031942, len = 110
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1063
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	214
+		X WOffset:	224
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1140
+		X WOffset:	840
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (11):     3    79    53   127    53   223    53   239    53     4 
+	                            53 
+	00013: PUSHW[1]            -64 
+	00016: NPUSHB      (42):    18    27    52     0    53    52    29    30    65     2 
+	                            28    64    46    50    52   159    28     1     0    28 
+	                            31     0     7    65     2    31    28    47    28     2 
+	                           240    28     1    95    28     1    28    64     9    12 
+	                            52    28 
+	00060: SVTCA[y-axis] 
+	00061: MDAP[rd]   
+	00062: CALL       
+	00063: DELTAP1    
+	00064: DELTAP2    
+	00065: DELTAP3    
+	00066: SHC[rp1,zp0] 
+	00067: SVTCA[x-axis] 
+	00068: CALL       
+	00069: DELTAP3    
+	00070: CALL       
+	00071: SHC[rp1,zp0] 
+	00072: CALL       
+	00073: CALL       
+	00074: DELTAP1    
+	00075: SHC[rp1,zp0] 
+
+	Glyph 1242: off = 0x000319B0, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1501
+	  yMax:			1835
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	1148
+		X WOffset:	796
+		Y WOffset:	25
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1183
+		X WOffset:	1480
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (21):     3     0    35    45    30    33    65     2     0    30 
+	                            33     0     7    65     2    29    64    25    40    52 
+	                            29 
+	00023: SVTCA[y-axis] 
+	00024: MDAP[rd]   
+	00025: CALL       
+	00026: SHC[rp1,zp0] 
+	00027: SVTCA[x-axis] 
+	00028: CALL       
+	00029: SHC[rp1,zp0] 
+	00030: CALL       
+	00031: SHC[rp1,zp0] 
+
+	Glyph 1243: off = 0x000319F2, len = 96
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1063
+	  yMax:			1778
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	214
+		X WOffset:	224
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1146
+		X WOffset:	1140
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (45):     3     0    33    79    33     2     0    33    43    28 
+	                            31    65     2    28    64    46    50    52   159    28 
+	                             1     0    28    31     0     7    65     2    31    28 
+	                            47    28     2   240    28     1    95    28     1    28 
+	                            64     9    12    52    28 
+	00047: SVTCA[y-axis] 
+	00048: MDAP[rd]   
+	00049: CALL       
+	00050: DELTAP1    
+	00051: DELTAP2    
+	00052: DELTAP3    
+	00053: SHC[rp1,zp0] 
+	00054: SVTCA[x-axis] 
+	00055: CALL       
+	00056: DELTAP3    
+	00057: CALL       
+	00058: SHC[rp1,zp0] 
+	00059: CALL       
+	00060: DELTAP1    
+	00061: SHC[rp1,zp0] 
+
+	Glyph 1244: off = 0x00031A52, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-325
+	  xMax:			1501
+	  yMax:			1640
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	1148
+		X WOffset:	796
+		Y WOffset:	25
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	940
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (21):     3     0    36    37    11    11    65     2     0    30 
+	                            33     0     7    65     2    30    64    10    40    52 
+	                            30 
+	00023: SVTCA[y-axis] 
+	00024: MDAP[rd]   
+	00025: CALL       
+	00026: SHC[rp1,zp0] 
+	00027: SVTCA[x-axis] 
+	00028: CALL       
+	00029: SHC[rp1,zp0] 
+	00030: CALL       
+	00031: SHC[rp1,zp0] 
+
+	Glyph 1245: off = 0x00031A94, len = 76
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-325
+	  xMax:			1063
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	214
+		X WOffset:	224
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	710
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (25):     3     0    34    35    11    11    65     2    28    64 
+	                            46    50    52   159    28     1     0    28    31     0 
+	                             7    65     2     1    32 
+	00027: PUSHW[2]            546    41 
+	00032: SVTCA[y-axis] 
+	00033: CALL       
+	00034: SVTCA[x-axis] 
+	00035: CALL       
+	00036: DELTAP3    
+	00037: CALL       
+	00038: SHC[rp1,zp0] 
+	00039: CALL       
+	00040: SHC[rp1,zp0] 
+
+	Glyph 1246: off = 0x00031AE0, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1708
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	1130
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	455
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     2     0    48     1   111    48   240    48     2    48 
+	                            37    25    72    43     2     1    45 
+	00019: PUSHW[2]            545    41 
+	00024: SVTCA[y-axis] 
+	00025: CALL       
+	00026: SVTCA[x-axis] 
+	00027: CALL       
+	00028: DELTAP1    
+	00029: DELTAP2    
+	00030: SHC[rp1,zp0] 
+
+	Glyph 1247: off = 0x00031B1A, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1280
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	1131
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	244
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     2     0    48     1    79    48    95    48   143    48 
+	                             3    48    37    49    72    43     2     1    45 
+	00021: PUSHW[2]            546    41 
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: DELTAP2    
+	00032: SHC[rp1,zp0] 
+
+	Glyph 1248: off = 0x00031B56, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1708
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	1130
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	451
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     2    15    46     1   255    46     1    46    37 
+	00011: PUSHW[1]            -30 
+	00014: PUSHB[5]             72    43     2     1    45 
+	00020: PUSHW[2]            545    41 
+	00025: SVTCA[y-axis] 
+	00026: CALL       
+	00027: SVTCA[x-axis] 
+	00028: CALL       
+	00029: DELTAP1    
+	00030: DELTAP2    
+	00031: SHC[rp1,zp0] 
+
+	Glyph 1249: off = 0x00031B90, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1280
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	1131
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	222
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     2    95    46   111    46     2    32    46    48    46 
+	                             2    46    37     0    72    43     2     1    45 
+	00021: PUSHW[2]            546    41 
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: DELTAP2    
+	00032: SHC[rp1,zp0] 
+
+	Glyph 1250: off = 0x00031BCC, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1708
+	  yMax:			1861
+
+	     0: Flags:		0x0226
+		Glyf Index:	1130
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1140
+		X WOffset:	1080
+		Y WOffset:	25
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     2    80    65     1   127    65   144    65   176    65 
+	                           192    65     4     0    65    64    37    37    65 
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: DELTAP1    
+	00024: DELTAP2    
+	00025: SHC[rp1,zp0] 
+
+	Glyph 1251: off = 0x00031C00, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1280
+	  yMax:			1549
+
+	     0: Flags:		0x0226
+		Glyf Index:	1131
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1157
+		X WOffset:	810
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     2     0    65     1   144    65   192    65   208    65 
+	                             3     0    65    64    37    37    65 
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: DELTAP1    
+	00022: DELTAP2    
+	00023: SHC[rp1,zp0] 
+
+	Glyph 1252: off = 0x00031C32, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1708
+	  yMax:			1787
+
+	     0: Flags:		0x0226
+		Glyf Index:	1130
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	459
+		Y WOffset:	337
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    45    57    37    37    65     2     1    45 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1253: off = 0x00031C62, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1280
+	  yMax:			1450
+
+	     0: Flags:		0x0226
+		Glyf Index:	1131
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	224
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    45    57    37    37    65     2     1    45 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1254: off = 0x00031C92, len = 42
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-325
+	  xMax:			1708
+	  yMax:			1492
+
+	     0: Flags:		0x0226
+		Glyf Index:	1130
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	940
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    46     1     0    46    47    29    29    65 
+	00012: SVTCA[x-axis] 
+	00013: CALL       
+	00014: DELTAP2    
+	00015: SHC[rp1,zp0] 
+
+	Glyph 1255: off = 0x00031CBC, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-325
+	  xMax:			1280
+	  yMax:			1088
+
+	     0: Flags:		0x0226
+		Glyf Index:	1131
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	710
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2     0    46    47    29    29    65 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1256: off = 0x00031CE2, len = 42
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-325
+	  xMax:			1314
+	  yMax:			1466
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	880
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1    79    22     1     0    22    23    17     6    65 
+	00012: SVTCA[x-axis] 
+	00013: CALL       
+	00014: DELTAP2    
+	00015: SHC[rp1,zp0] 
+
+	Glyph 1257: off = 0x00031D0C, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-325
+	  xMax:			992
+	  yMax:			1062
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	680
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     1    80    26    96    26   112    26     3     0    26 
+	                            27    12    21    65 
+	00016: SVTCA[x-axis] 
+	00017: CALL       
+	00018: DELTAP1    
+	00019: SHC[rp1,zp0] 
+
+	Glyph 1258: off = 0x00031D3A, len = 42
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1314
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1140
+		X WOffset:	1000
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1   208    31     1     0    31    37    12     0    65 
+	00012: SVTCA[x-axis] 
+	00013: CALL       
+	00014: DELTAP1    
+	00015: SHC[rp1,zp0] 
+
+	Glyph 1259: off = 0x00031D64, len = 76
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			992
+	  yMax:			1549
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1157
+		X WOffset:	795
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (28):     1    80    45   144    45   160    45   176    45     4 
+	                             0    45    16    45    80    45    96    45   112    45 
+	                           144    45   160    45   176    45     8    45 
+	00030: PUSHW[1]            -64 
+	00033: NPUSHB       (9):    23    26    52     0    45    44    11    22    65 
+	00044: SVTCA[x-axis] 
+	00045: CALL       
+	00046: CALL       
+	00047: DELTAP1    
+	00048: DELTAP2    
+	00049: SHC[rp1,zp0] 
+
+	Glyph 1260: off = 0x00031DB0, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1666
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	1132
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	392
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1    39 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (20):    57    53   112    39     1    47    39    95    39   143 
+	                            39     3    39    26    23    72    43     1     1    38 
+	00028: PUSHW[2]            545    41 
+	00033: SVTCA[y-axis] 
+	00034: CALL       
+	00035: SVTCA[x-axis] 
+	00036: CALL       
+	00037: DELTAP1    
+	00038: DELTAP3    
+	00039: CALL       
+	00040: SHC[rp1,zp0] 
+
+	Glyph 1261: off = 0x00031DF4, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			1309
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	1133
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	231
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     1    79    40   144    40     2    40    25    60    72 
+	                            43     1     1    37 
+	00016: PUSHW[2]            546    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP2    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 1262: off = 0x00031E2A, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1666
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	1132
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	389
+		Y WOffset:	362
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     1   127    41     1   111    41     1   159    41     1 
+	                            41    26     0    72    43     1     1    39 
+	00020: PUSHW[2]            545    41 
+	00025: SVTCA[y-axis] 
+	00026: CALL       
+	00027: SVTCA[x-axis] 
+	00028: CALL       
+	00029: DELTAP1    
+	00030: DELTAP2    
+	00031: DELTAP3    
+	00032: SHC[rp1,zp0] 
+
+	Glyph 1263: off = 0x00031E66, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			1309
+	  yMax:			1474
+
+	     0: Flags:		0x0226
+		Glyf Index:	1133
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	222
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1   224    38     1    38    25    12    72    43     1 
+	                             1    38 
+	00014: PUSHW[2]            546    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: DELTAP2    
+	00024: SHC[rp1,zp0] 
+
+	Glyph 1264: off = 0x00031E9A, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1666
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	1132
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1140
+		X WOffset:	1000
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     1    47    48   128    48   208    48     3     0    48 
+	                            54    20    31    65 
+	00016: SVTCA[x-axis] 
+	00017: CALL       
+	00018: DELTAP1    
+	00019: SHC[rp1,zp0] 
+
+	Glyph 1265: off = 0x00031EC8, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			1309
+	  yMax:			1549
+
+	     0: Flags:		0x0226
+		Glyf Index:	1133
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1157
+		X WOffset:	795
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1    57 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (16):    22    24     6    85    80    57   160    57     2   144 
+	                            57   160    57     2    57    25 
+	00024: PUSHW[1]            -25 
+	00027: PUSHB[2]             72    43 
+	00030: SVTCA[x-axis] 
+	00031: CALL       
+	00032: DELTAP1    
+	00033: DELTAP2    
+	00034: CALL       
+	00035: SHC[rp1,zp0] 
+
+	Glyph 1266: off = 0x00031F06, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1666
+	  yMax:			1787
+
+	     0: Flags:		0x0226
+		Glyf Index:	1132
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	409
+		Y WOffset:	337
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    38    50    20    31    65     1     1    38 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1267: off = 0x00031F36, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			1309
+	  yMax:			1450
+
+	     0: Flags:		0x0226
+		Glyf Index:	1133
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	230
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     1   239    37     1    37    64    83    84    52     0 
+	                            37    49    19    31    65     1     1    37 
+	00020: PUSHW[2]            546    41 
+	00025: SVTCA[y-axis] 
+	00026: CALL       
+	00027: SVTCA[x-axis] 
+	00028: CALL       
+	00029: CALL       
+	00030: DELTAP2    
+	00031: SHC[rp1,zp0] 
+
+	Glyph 1268: off = 0x00031F70, len = 42
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-325
+	  xMax:			1666
+	  yMax:			1466
+
+	     0: Flags:		0x0226
+		Glyf Index:	1132
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	880
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1    79    39     1     0    39    40    26    14    65 
+	00012: SVTCA[x-axis] 
+	00013: CALL       
+	00014: DELTAP2    
+	00015: SHC[rp1,zp0] 
+
+	Glyph 1269: off = 0x00031F9A, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-325
+	  xMax:			1309
+	  yMax:			1062
+
+	     0: Flags:		0x0226
+		Glyf Index:	1133
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	680
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     1    80    38    96    38   112    38     3     0    38 
+	                            39    21    29    65 
+	00016: SVTCA[x-axis] 
+	00017: CALL       
+	00018: DELTAP1    
+	00019: SHC[rp1,zp0] 
+
+	Glyph 1270: off = 0x00031FC8, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			6
+	  yMin:			-325
+	  xMax:			1350
+	  yMax:			1466
+
+	     0: Flags:		0x0226
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	820
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    14    15     0    12    65 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1271: off = 0x00031FEE, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			33
+	  yMin:			-431
+	  xMax:			1006
+	  yMax:			1062
+
+	     0: Flags:		0x0226
+		Glyf Index:	92
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1149
+		X WOffset:	940
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    28    28    18    18    65 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1272: off = 0x00032014, len = 44
+	  numberOfContours:	-1  (Composite)
+	  xMin:			6
+	  yMin:			0
+	  xMax:			1350
+	  yMax:			1836
+
+	     0: Flags:		0x0226
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1140
+		X WOffset:	950
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1   208    23   224    23     2     0    23    29     3 
+	                             9    65 
+	00014: SVTCA[x-axis] 
+	00015: CALL       
+	00016: DELTAP1    
+	00017: SHC[rp1,zp0] 
+
+	Glyph 1273: off = 0x00032040, len = 92
+	  numberOfContours:	-1  (Composite)
+	  xMin:			33
+	  yMin:			-431
+	  xMax:			1006
+	  yMax:			1549
+
+	     0: Flags:		0x0226
+		Glyf Index:	92
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1157
+		X WOffset:	760
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1    47 
+	00003: PUSHW[1]            -64 
+	00006: PUSHB[5]             24    24     6    85    47 
+	00012: PUSHW[1]            -64 
+	00015: PUSHB[5]             20    21     6    85    47 
+	00021: PUSHW[1]            -64 
+	00024: NPUSHB      (15):    15    17     6    85    31    47   112    47     2   144 
+	                            47   160    47     2    47 
+	00041: PUSHW[1]            -64 
+	00044: PUSHB[5]             43    48    52    47    15 
+	00050: PUSHW[1]            -55 
+	00053: PUSHB[2]             72    43 
+	00056: SVTCA[x-axis] 
+	00057: CALL       
+	00058: CALL       
+	00059: DELTAP1    
+	00060: DELTAP2    
+	00061: CALL       
+	00062: CALL       
+	00063: CALL       
+	00064: SHC[rp1,zp0] 
+
+	Glyph 1274: off = 0x0003209C, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			6
+	  yMin:			0
+	  xMax:			1350
+	  yMax:			1787
+
+	     0: Flags:		0x0226
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	360
+		Y WOffset:	337
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    13    25     3     9    65     1     1    13 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1275: off = 0x000320CC, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			33
+	  yMin:			-431
+	  xMax:			1006
+	  yMax:			1450
+
+	     0: Flags:		0x0226
+		Glyf Index:	92
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	190
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    27    39    12    18    65     1     1    27 
+	00012: PUSHW[2]            546    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1276: off = 0x000320FC, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1369
+	  yMax:			1825
+
+	     0: Flags:		0x0236
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	223
+		X WOffset:	310
+		Y WOffset:	351
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    20    17     1     2    65     2     1    19 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1277: off = 0x0003212C, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			74
+	  yMin:			-24
+	  xMax:			1052
+	  yMax:			1474
+
+	     0: Flags:		0x0236
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	223
+		X WOffset:	245
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     2    96    61     1   224    61     1     0    61    58 
+	                            28    28    65     2     1    60 
+	00018: PUSHW[2]            707    41 
+	00023: SVTCA[y-axis] 
+	00024: CALL       
+	00025: SVTCA[x-axis] 
+	00026: CALL       
+	00027: DELTAP1    
+	00028: DELTAP2    
+	00029: SHC[rp1,zp0] 
+
+	Glyph 1278: off = 0x00032164, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-30
+	  yMin:			0
+	  xMax:			603
+	  yMax:			1825
+
+	     0: Flags:		0x0236
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	223
+		X WOffset:	-70
+		Y WOffset:	351
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     1    32     9     1     0     9     6     1     2    65 
+	                             1     1     8 
+	00015: PUSHW[2]            545    41 
+	00020: SVTCA[y-axis] 
+	00021: CALL       
+	00022: SVTCA[x-axis] 
+	00023: CALL       
+	00024: DELTAP1    
+	00025: SHC[rp1,zp0] 
+
+	Glyph 1279: off = 0x00032198, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-80
+	  yMin:			0
+	  xMax:			553
+	  yMax:			1474
+
+	     0: Flags:		0x0236
+		Glyf Index:	1187
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	223
+		X BOffset:	-120
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0     9     6     1     2    65     1     1     8 
+	00012: PUSHW[2]            707    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1280: off = 0x000321C6, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1501
+	  yMax:			1825
+
+	     0: Flags:		0x0236
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	223
+		X WOffset:	450
+		Y WOffset:	351
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    33    30     3     3    65     2     1    32 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1281: off = 0x000321F6, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1063
+	  yMax:			1474
+
+	     0: Flags:		0x0236
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	223
+		X WOffset:	210
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    31    28     4     4    65     2     1    30 
+	00012: PUSHW[2]            707    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1282: off = 0x00032226, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1314
+	  yMax:			1825
+
+	     0: Flags:		0x0236
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	223
+		X WOffset:	400
+		Y WOffset:	351
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    26    23    11     1    65     1     1    25 
+	00012: PUSHW[2]            545    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1283: off = 0x00032256, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			992
+	  yMax:			1474
+
+	     0: Flags:		0x0236
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	223
+		X WOffset:	220
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    30    27    10    23    65     1     1    29 
+	00012: PUSHW[2]            707    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1284: off = 0x00032286, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1314
+	  yMax:			1843
+
+	     0: Flags:		0x0236
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1292
+		X WOffset:	750
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     3     2     1     0    30    25    11     1    65     3 
+	                             2     1    23 
+	00015: SVTCA[y-axis] 
+	00016: MDAP[rd]   
+	00017: SHC[rp1,zp0] 
+	00018: SHC[rp1,zp0] 
+	00019: SHC[rp1,zp0] 
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: SHC[rp1,zp0] 
+	00023: SHC[rp1,zp0] 
+	00024: SHC[rp1,zp0] 
+
+	Glyph 1285: off = 0x000322BA, len = 86
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			992
+	  yMax:			1745
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	142
+		X WOffset:	220
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	216
+		X WOffset:	220
+		Y WOffset:	370
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (32):     3     0    33    36    25    32    65     2     1   112 
+	                            25     1     0    25    31    17    17    65     3   192 
+	                            33     1    15    33    63    33     2    33     1     2 
+	                             2    32 
+	00034: PUSHW[2]            546    41 
+	00039: SVTCA[y-axis] 
+	00040: CALL       
+	00041: MDAP[rd]   
+	00042: DELTAP1    
+	00043: DELTAP1    
+	00044: SHC[rp1,zp0] 
+	00045: SVTCA[x-axis] 
+	00046: CALL       
+	00047: DELTAP1    
+	00048: SHC[rp1,zp0] 
+	00049: SHC[rp1,zp0] 
+	00050: CALL       
+	00051: SHC[rp1,zp0] 
+
+	Glyph 1286: off = 0x00032310, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1314
+	  yMax:			1844
+
+	     0: Flags:		0x0236
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1293
+		X WOffset:	750
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     3     2     1     0    30    25    11     1    65     3 
+	                             2     1    30 
+	00015: SVTCA[y-axis] 
+	00016: MDAP[rd]   
+	00017: SHC[rp1,zp0] 
+	00018: SHC[rp1,zp0] 
+	00019: SHC[rp1,zp0] 
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: SHC[rp1,zp0] 
+	00023: SHC[rp1,zp0] 
+	00024: SHC[rp1,zp0] 
+
+	Glyph 1287: off = 0x00032344, len = 96
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			992
+	  yMax:			1844
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	142
+		X WOffset:	220
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	231
+		Y WOffset:	370
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHW[2]              3   -16 
+	00005: NPUSHB      (18):    33    33    27    27    65     2     1   112    25     1 
+	                             0    25    31    17    17    65     3    33 
+	00025: PUSHW[1]            -64 
+	00028: NPUSHB      (13):    15    17    52    33    64    10    12    52    33     1 
+	                             2     2    25 
+	00043: PUSHW[2]            546    41 
+	00048: SVTCA[y-axis] 
+	00049: CALL       
+	00050: MDAP[rd]   
+	00051: CALL       
+	00052: CALL       
+	00053: SHC[rp1,zp0] 
+	00054: SVTCA[x-axis] 
+	00055: CALL       
+	00056: DELTAP1    
+	00057: SHC[rp1,zp0] 
+	00058: SHC[rp1,zp0] 
+	00059: CALL       
+	00060: SHC[rp1,zp0] 
+
+	Glyph 1288: off = 0x000323A4, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1314
+	  yMax:			1844
+
+	     0: Flags:		0x0236
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1294
+		X WOffset:	750
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     3     2     1     0    33    21    11     1    65     3 
+	                             2     1    33 
+	00015: SVTCA[y-axis] 
+	00016: MDAP[rd]   
+	00017: SHC[rp1,zp0] 
+	00018: SHC[rp1,zp0] 
+	00019: SHC[rp1,zp0] 
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: SHC[rp1,zp0] 
+	00023: SHC[rp1,zp0] 
+	00024: SHC[rp1,zp0] 
+
+	Glyph 1289: off = 0x000323D8, len = 88
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			992
+	  yMax:			1844
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	142
+		X WOffset:	220
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	220
+		Y WOffset:	370
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (34):     3     0    37    36    25    32    65     2     1   112 
+	                            25     1     0    25    31    17    17    65     3    96 
+	                            37   128    37     2    37    64    11    12    52    37 
+	                             1     2     2    25 
+	00036: PUSHW[2]            546    41 
+	00041: SVTCA[y-axis] 
+	00042: CALL       
+	00043: MDAP[rd]   
+	00044: CALL       
+	00045: DELTAP1    
+	00046: SHC[rp1,zp0] 
+	00047: SVTCA[x-axis] 
+	00048: CALL       
+	00049: DELTAP1    
+	00050: SHC[rp1,zp0] 
+	00051: SHC[rp1,zp0] 
+	00052: CALL       
+	00053: SHC[rp1,zp0] 
+
+	Glyph 1290: off = 0x00032430, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-25
+	  xMax:			1314
+	  yMax:			1844
+
+	     0: Flags:		0x0236
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1295
+		X WOffset:	750
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     3     2     1     0    30    21    11     1    65     3 
+	                             2     1    30 
+	00015: SVTCA[y-axis] 
+	00016: MDAP[rd]   
+	00017: SHC[rp1,zp0] 
+	00018: SHC[rp1,zp0] 
+	00019: SHC[rp1,zp0] 
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: SHC[rp1,zp0] 
+	00023: SHC[rp1,zp0] 
+	00024: SHC[rp1,zp0] 
+
+	Glyph 1291: off = 0x00032464, len = 92
+	  numberOfContours:	-1  (Composite)
+	  xMin:			131
+	  yMin:			-24
+	  xMax:			992
+	  yMax:			1844
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	142
+		X WOffset:	220
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	205
+		Y WOffset:	370
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (20):     3    16    33    33    30    30    65     2     1   112 
+	                            25     1     0    25    31    17    17    65     3    34 
+	00022: PUSHW[1]            -64 
+	00025: NPUSHB      (13):    15    17    52    34    64    10    12    52    34     1 
+	                             2     2    25 
+	00040: PUSHW[2]            546    41 
+	00045: SVTCA[y-axis] 
+	00046: CALL       
+	00047: MDAP[rd]   
+	00048: CALL       
+	00049: CALL       
+	00050: SHC[rp1,zp0] 
+	00051: SVTCA[x-axis] 
+	00052: CALL       
+	00053: DELTAP1    
+	00054: SHC[rp1,zp0] 
+	00055: SHC[rp1,zp0] 
+	00056: CALL       
+	00057: SHC[rp1,zp0] 
+
+	Glyph 1292: off = 0x000324C0, len = 158
+	  numberOfContours:	3
+	  xMin:			-258
+	  yMin:			1496
+	  xMax:			258
+	  yMax:			1843
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  11
+
+	  Length of Instructions:	108
+	00000: NPUSHB      (75):     2    10     8     3     7     5     8     8     4    64 
+	                            35    37    52     4    64    21    22    52     4    11 
+	                            15     6     1     6     0     2    64   136   137    52 
+	                             2    64    79   115    52     2    64    62    69    52 
+	                             2    64    46    51    52     2    64    36    41    52 
+	                            47     2     1     2    64    26    30    52   240     2 
+	                             1     2    64    18    20    52   127     2     1     2 
+	                            64     9    13    52     2 
+	00077: SVTCA[y-axis] 
+	00078: MDAP[rd]   
+	00079: CALL       
+	00080: DELTAP1    
+	00081: CALL       
+	00082: DELTAP1    
+	00083: CALL       
+	00084: DELTAP2    
+	00085: CALL       
+	00086: CALL       
+	00087: CALL       
+	00088: CALL       
+	00089: CALL       
+	00090: MDRP[srp0,md,rd,1] 
+	00091: MDRP[srp0,md,rd,2] 
+	00092: DELTAP1    
+	00093: ALIGNRP    
+	00094: MDRP[srp0,md,rd,1] 
+	00095: CALL       
+	00096: CALL       
+	00097: ALIGNRP    
+	00098: SVTCA[x-axis] 
+	00099: MDAP[rd]   
+	00100: MDRP[srp0,md,rd,2] 
+	00101: MDRP[srp0,md,rd,1] 
+	00102: ALIGNRP    
+	00103: SRP0       
+	00104: MDRP[srp0,md,rd,1] 
+	00105: ALIGNRP    
+	00106: IUP[y]     
+	00107: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual                       X-Short On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual                 X-Short On
+	  8:                      Y-Short         On
+	  9:  YDual                       X-Short On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   258,  1726)  ->  Abs (   258,  1726)
+	  1: Rel (  -516,     0)  ->  Abs (  -258,  1726)
+	  2: Rel (     0,   117)  ->  Abs (  -258,  1843)
+	  3: Rel (   516,     0)  ->  Abs (   258,  1843)
+	  4: Rel (     0,  -347)  ->  Abs (   258,  1496)
+	  5: Rel (  -135,     0)  ->  Abs (   123,  1496)
+	  6: Rel (     0,   147)  ->  Abs (   123,  1643)
+	  7: Rel (   135,     0)  ->  Abs (   258,  1643)
+	  8: Rel (  -381,  -147)  ->  Abs (  -123,  1496)
+	  9: Rel (  -135,     0)  ->  Abs (  -258,  1496)
+	 10: Rel (     0,   147)  ->  Abs (  -258,  1643)
+	 11: Rel (   135,     0)  ->  Abs (  -123,  1643)
+
+	Glyph 1293: off = 0x0003255E, len = 206
+	  numberOfContours:	3
+	  xMin:			-258
+	  yMin:			1496
+	  xMax:			258
+	  yMax:			1844
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  11
+
+	  Length of Instructions:	156
+	00000: PUSHB[4]              3     1     2     0 
+	00005: PUSHW[1]            -64 
+	00008: PUSHB[4]             21    22    52     0 
+	00013: PUSHW[1]            -64 
+	00016: NPUSHB      (37):    12    20    52     0     7     5    64    11    20    52 
+	                            63     5     1     5     2    64    11    28    52     2 
+	                            10     8     8     5    64    35    37    52     5    64 
+	                            21    22    52     5    10     7     1 
+	00055: PUSHW[1]            -64 
+	00058: NPUSHB      (57):    10    17    52     1     0    64   136   137    52     0 
+	                            64    79   115    52     0    64    62    69    52     0 
+	                            64    46    58    52    15     0     1     0    64    36 
+	                            37    52    47     0     1     0    64    26    30    52 
+	                           240     0     1     0    64    18    20    52   127     0 
+	                             1     0    64     9    13    52     0 
+	00117: SVTCA[y-axis] 
+	00118: MDAP[rd]   
+	00119: CALL       
+	00120: DELTAP1    
+	00121: CALL       
+	00122: DELTAP1    
+	00123: CALL       
+	00124: DELTAP2    
+	00125: CALL       
+	00126: DELTAP3    
+	00127: CALL       
+	00128: CALL       
+	00129: CALL       
+	00130: CALL       
+	00131: MDRP[srp0,md,rd,1] 
+	00132: CALL       
+	00133: MDRP[srp0,nmd,rd,2] 
+	00134: ALIGNRP    
+	00135: MDRP[srp0,md,rd,1] 
+	00136: CALL       
+	00137: CALL       
+	00138: ALIGNRP    
+	00139: SVTCA[x-axis] 
+	00140: MDAP[rd]   
+	00141: MDRP[nrp0,md,rd,1] 
+	00142: MDRP[nrp0,nmd,rd,2] 
+	00143: CALL       
+	00144: MDRP[srp0,md,rd,2] 
+	00145: DELTAP1    
+	00146: CALL       
+	00147: MDRP[srp0,md,rd,1] 
+	00148: MDRP[nrp0,nmd,rd,2] 
+	00149: CALL       
+	00150: CALL       
+	00151: SRP1       
+	00152: IP         
+	00153: IP         
+	00154: IUP[y]     
+	00155: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:                      Y-Short X-Short On
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:        XDual                 X-Short On
+	  5:  YDual                       X-Short On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual                 X-Short On
+	  8:                      Y-Short         On
+	  9:  YDual                       X-Short On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   253,  1844)  ->  Abs (   253,  1844)
+	  1: Rel (  -231,  -178)  ->  Abs (    22,  1666)
+	  2: Rel (  -130,     0)  ->  Abs (  -108,  1666)
+	  3: Rel (   135,   178)  ->  Abs (    27,  1844)
+	  4: Rel (   231,  -348)  ->  Abs (   258,  1496)
+	  5: Rel (  -135,     0)  ->  Abs (   123,  1496)
+	  6: Rel (     0,   147)  ->  Abs (   123,  1643)
+	  7: Rel (   135,     0)  ->  Abs (   258,  1643)
+	  8: Rel (  -381,  -147)  ->  Abs (  -123,  1496)
+	  9: Rel (  -135,     0)  ->  Abs (  -258,  1496)
+	 10: Rel (     0,   147)  ->  Abs (  -258,  1643)
+	 11: Rel (   135,     0)  ->  Abs (  -123,  1643)
+
+	Glyph 1294: off = 0x0003262C, len = 288
+	  numberOfContours:	3
+	  xMin:			-258
+	  yMin:			1496
+	  xMax:			258
+	  yMax:			1844
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  10
+	  2:  14
+
+	  Length of Instructions:	229
+	00000: PUSHB[3]              9    10     8 
+	00004: PUSHW[1]            -64 
+	00007: PUSHB[4]             48    52    52     8 
+	00012: PUSHW[1]           -100 
+	00015: PUSHB[8]             21    22    52     8     6     5     4     7 
+	00024: PUSHW[1]            -64 
+	00027: NPUSHB      (28):    35    37    52     7    64    11    22    52     7    13 
+	                            11    10    64    49    52    52    10   100    21    22 
+	                            52    10     4    64    35    37    52     4 
+	00057: PUSHW[1]            -64 
+	00060: NPUSHB      (20):    12    22    52     4     3     1    64    15    20    52 
+	                             1    64    11    14    52    63     1     1     1    11 
+	00082: PUSHW[1]            -64 
+	00085: NPUSHB      (25):    12    22    52    11    12     1    64    35    37    52 
+	                             1    64    21    22    52     1    14     3    64    43 
+	                            44    52     3     9     5 
+	00112: PUSHW[1]            -64 
+	00115: NPUSHB      (58):     9    17    52     5     4     8    64   136   137    52 
+	                             8    64    79   115    52     8    64    62    69    52 
+	                             8    64    46    58    52    15     8     1     8    64 
+	                            36    37    52    47     8     1     8    64    26    30 
+	                            52   240     8     1     8    64    18    20    52   127 
+	                             8     1     8    64     9    13    52     8 
+	00175: SVTCA[y-axis] 
+	00176: MDAP[rd]   
+	00177: CALL       
+	00178: DELTAP1    
+	00179: CALL       
+	00180: DELTAP1    
+	00181: CALL       
+	00182: DELTAP2    
+	00183: CALL       
+	00184: DELTAP3    
+	00185: CALL       
+	00186: CALL       
+	00187: CALL       
+	00188: CALL       
+	00189: ALIGNRP    
+	00190: MDRP[srp0,md,rd,1] 
+	00191: CALL       
+	00192: IP         
+	00193: MDRP[srp0,nmd,rd,2] 
+	00194: CALL       
+	00195: ALIGNRP    
+	00196: MDRP[srp0,md,rd,1] 
+	00197: CALL       
+	00198: CALL       
+	00199: ALIGNRP    
+	00200: SVTCA[x-axis] 
+	00201: MDAP[rd]   
+	00202: CALL       
+	00203: MDRP[srp0,md,rd,2] 
+	00204: DELTAP1    
+	00205: CALL       
+	00206: CALL       
+	00207: MDRP[srp0,md,rd,1] 
+	00208: MDRP[srp0,nmd,rd,2] 
+	00209: CALL       
+	00210: CALL       
+	00211: MDRP[nrp0,md,rd,1] 
+	00212: CALL       
+	00213: CALL       
+	00214: SRP0       
+	00215: MDRP[srp0,md,rd,1] 
+	00216: MDRP[srp0,nmd,rd,2] 
+	00217: CALL       
+	00218: CALL       
+	00219: SRP1       
+	00220: IP         
+	00221: IP         
+	00222: MDRP[nrp0,md,rd,1] 
+	00223: CALL       
+	00224: CALL       
+	00225: SRP1       
+	00226: IP         
+	00227: IUP[y]     
+	00228: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual               Y-Short X-Short On
+	  5:                      Y-Short X-Short On
+	  6:  YDual                       X-Short On
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:                              X-Short On
+	 12:  YDual                       X-Short On
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   258,  1496)  ->  Abs (   258,  1496)
+	  1: Rel (  -135,     0)  ->  Abs (   123,  1496)
+	  2: Rel (     0,   147)  ->  Abs (   123,  1643)
+	  3: Rel (   135,     0)  ->  Abs (   258,  1643)
+	  4: Rel (   -30,   201)  ->  Abs (   228,  1844)
+	  5: Rel (  -162,  -177)  ->  Abs (    66,  1667)
+	  6: Rel (  -138,     0)  ->  Abs (   -72,  1667)
+	  7: Rel (  -156,   177)  ->  Abs (  -228,  1844)
+	  8: Rel (   149,     0)  ->  Abs (   -79,  1844)
+	  9: Rel (    81,   -98)  ->  Abs (     2,  1746)
+	 10: Rel (    79,    98)  ->  Abs (    81,  1844)
+	 11: Rel (  -204,  -348)  ->  Abs (  -123,  1496)
+	 12: Rel (  -135,     0)  ->  Abs (  -258,  1496)
+	 13: Rel (     0,   147)  ->  Abs (  -258,  1643)
+	 14: Rel (   135,     0)  ->  Abs (  -123,  1643)
+
+	Glyph 1295: off = 0x0003274C, len = 200
+	  numberOfContours:	3
+	  xMin:			-258
+	  yMin:			1496
+	  xMax:			258
+	  yMax:			1844
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  11
+
+	  Length of Instructions:	150
+	00000: NPUSHB      (12):     5     7     4     6    64    12    22    52     6    10 
+	                             8     4 
+	00014: PUSHW[1]            -64 
+	00017: NPUSHB      (30):    11    28    52     4     3     1    64    11    20    52 
+	                            63     1     1     1     8     9     1    64    35    37 
+	                            52     1    64    21    22    52     1    11     3     5 
+	00049: PUSHW[1]            -64 
+	00052: NPUSHB      (57):    10    17    52     5     7    64   136   137    52     7 
+	                            64    79   115    52     7    64    62    69    52     7 
+	                            64    46    58    52    15     7     1     7    64    36 
+	                            37    52    47     7     1     7    64    26    30    52 
+	                           240     7     1     7    64    18    20    52   127     7 
+	                             1     7    64     9    13    52     7 
+	00111: SVTCA[y-axis] 
+	00112: MDAP[rd]   
+	00113: CALL       
+	00114: DELTAP1    
+	00115: CALL       
+	00116: DELTAP1    
+	00117: CALL       
+	00118: DELTAP2    
+	00119: CALL       
+	00120: DELTAP3    
+	00121: CALL       
+	00122: CALL       
+	00123: CALL       
+	00124: CALL       
+	00125: MDRP[srp0,md,rd,1] 
+	00126: CALL       
+	00127: MDRP[srp0,nmd,rd,2] 
+	00128: ALIGNRP    
+	00129: MDRP[srp0,md,rd,1] 
+	00130: CALL       
+	00131: CALL       
+	00132: ALIGNRP    
+	00133: SVTCA[x-axis] 
+	00134: MDAP[rd]   
+	00135: MDRP[srp0,md,rd,2] 
+	00136: DELTAP1    
+	00137: CALL       
+	00138: MDRP[nrp0,md,rd,1] 
+	00139: MDRP[nrp0,nmd,rd,2] 
+	00140: CALL       
+	00141: SRP0       
+	00142: MDRP[srp0,md,rd,1] 
+	00143: MDRP[nrp0,nmd,rd,2] 
+	00144: CALL       
+	00145: SRP1       
+	00146: IP         
+	00147: IP         
+	00148: IUP[y]     
+	00149: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual               Y-Short X-Short On
+	  5:  YDual                       X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual                 X-Short On
+	  8:                              X-Short On
+	  9:  YDual                       X-Short On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   258,  1496)  ->  Abs (   258,  1496)
+	  1: Rel (  -135,     0)  ->  Abs (   123,  1496)
+	  2: Rel (     0,   147)  ->  Abs (   123,  1643)
+	  3: Rel (   135,     0)  ->  Abs (   258,  1643)
+	  4: Rel (  -150,    23)  ->  Abs (   108,  1666)
+	  5: Rel (  -130,     0)  ->  Abs (   -22,  1666)
+	  6: Rel (  -231,   178)  ->  Abs (  -253,  1844)
+	  7: Rel (   226,     0)  ->  Abs (   -27,  1844)
+	  8: Rel (   -96,  -348)  ->  Abs (  -123,  1496)
+	  9: Rel (  -135,     0)  ->  Abs (  -258,  1496)
+	 10: Rel (     0,   147)  ->  Abs (  -258,  1643)
+	 11: Rel (   135,     0)  ->  Abs (  -123,  1643)
+
+	Glyph 1296: off = 0x00032814, len = 144
+	  numberOfContours:	1
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1109
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	90
+	00000: NPUSHB      (17):     3     3     5     0    15     1     5    32    11     9 
+	                             7    32    16    16     2    85     7 
+	00019: PUSHW[1]            -12 
+	00022: PUSHB[5]             15    15     2    85     7 
+	00028: PUSHW[1]            -10 
+	00031: PUSHB[5]             13    13     2    85     7 
+	00037: PUSHW[1]             -6 
+	00040: NPUSHB      (20):    12    12     2    85     7    93    14    10     2    30 
+	                             4     8     8     7     1    30    13     2     7     8 
+	00062: SVTCA[y-axis] 
+	00063: MIAP[rd+ci] 
+	00064: MIAP[rd+ci] 
+	00065: MIRP[nrp0,md,rd,1] 
+	00066: SRP1       
+	00067: IP         
+	00068: MDAP[rd]   
+	00069: MDRP[nrp0,nmd,nrd,0] 
+	00070: MIRP[srp0,md,rd,1] 
+	00071: MDRP[nrp0,nmd,nrd,0] 
+	00072: SVTCA[x-axis] 
+	00073: SRP0       
+	00074: MIRP[srp0,nmd,rd,2] 
+	00075: CALL       
+	00076: CALL       
+	00077: CALL       
+	00078: CALL       
+	00079: MDRP[nrp0,md,rd,2] 
+	00080: MDRP[nrp0,nmd,nrd,0] 
+	00081: MIRP[srp0,md,rd,1] 
+	00082: MDRP[nrp0,nmd,nrd,0] 
+	00083: SRP0       
+	00084: MDRP[nrp0,nmd,nrd,0] 
+	00085: SRP1       
+	00086: IP         
+	00087: MDAP[rd]   
+	00088: IUP[y]     
+	00089: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:        XDual         Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                       X-Short On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                         On
+	 13:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1109,  1293)  ->  Abs (  1109,  1293)
+	  1: Rel (  -754,     0)  ->  Abs (   355,  1293)
+	  2: Rel (     0,  -494)  ->  Abs (   355,   799)
+	  3: Rel (   401,     0)  ->  Abs (   756,   799)
+	  4: Rel (     0,  -132)  ->  Abs (   756,   667)
+	  5: Rel (  -401,     0)  ->  Abs (   355,   667)
+	  6: Rel (     0,  -667)  ->  Abs (   355,     0)
+	  7: Rel (  -194,     0)  ->  Abs (   161,     0)
+	  8: Rel (     0,   667)  ->  Abs (   161,   667)
+	  9: Rel (  -164,     0)  ->  Abs (    -3,   667)
+	 10: Rel (     0,   132)  ->  Abs (    -3,   799)
+	 11: Rel (   164,     0)  ->  Abs (   161,   799)
+	 12: Rel (     0,   667)  ->  Abs (   161,  1466)
+	 13: Rel (   948,     0)  ->  Abs (  1109,  1466)
+
+	Glyph 1297: off = 0x000328A4, len = 150
+	  numberOfContours:	1
+	  xMin:			12
+	  yMin:			0
+	  xMax:			747
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	98
+	00000: NPUSHB      (11):     3     3     5     0    15     2     5    37    11     9 
+	                             7 
+	00013: PUSHW[1]             -8 
+	00016: PUSHB[5]             16    17     2    85     7 
+	00022: PUSHW[1]             -6 
+	00025: NPUSHB      (24):    14    14     2    85     7     4    12    12     2    85 
+	                             7    10    11    11     2    85     7    78    14    10 
+	                             2    43     4     8 
+	00051: PUSHW[1]            -64 
+	00054: NPUSHB      (13):    16    19     2    85     8     8     7     1    43    13 
+	                             6     7    10 
+	00069: SVTCA[y-axis] 
+	00070: MIAP[rd+ci] 
+	00071: MIAP[rd+ci] 
+	00072: MIRP[nrp0,md,rd,1] 
+	00073: SRP1       
+	00074: IP         
+	00075: MDAP[rd]   
+	00076: CALL       
+	00077: MDRP[nrp0,nmd,nrd,0] 
+	00078: MIRP[srp0,md,rd,1] 
+	00079: MDRP[nrp0,nmd,nrd,0] 
+	00080: SVTCA[x-axis] 
+	00081: SRP0       
+	00082: MIRP[srp0,nmd,rd,2] 
+	00083: CALL       
+	00084: CALL       
+	00085: CALL       
+	00086: CALL       
+	00087: MDRP[nrp0,md,rd,2] 
+	00088: MDRP[nrp0,nmd,nrd,0] 
+	00089: MIRP[srp0,md,rd,1] 
+	00090: MDRP[nrp0,nmd,nrd,0] 
+	00091: SRP0       
+	00092: MDRP[nrp0,nmd,nrd,0] 
+	00093: SRP1       
+	00094: IP         
+	00095: MDAP[rd]   
+	00096: IUP[y]     
+	00097: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual XDual                 X-Short On
+	  4:        XDual         Y-Short         On
+	  5:  YDual                       X-Short On
+	  6:        XDual                         On
+	  7:  YDual                       X-Short On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                         On
+	 13:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   747,   913)  ->  Abs (   747,   913)
+	  1: Rel (  -431,     0)  ->  Abs (   316,   913)
+	  2: Rel (     0,  -267)  ->  Abs (   316,   646)
+	  3: Rel (   231,     0)  ->  Abs (   547,   646)
+	  4: Rel (     0,  -132)  ->  Abs (   547,   514)
+	  5: Rel (  -231,     0)  ->  Abs (   316,   514)
+	  6: Rel (     0,  -514)  ->  Abs (   316,     0)
+	  7: Rel (  -180,     0)  ->  Abs (   136,     0)
+	  8: Rel (     0,   514)  ->  Abs (   136,   514)
+	  9: Rel (  -124,     0)  ->  Abs (    12,   514)
+	 10: Rel (     0,   132)  ->  Abs (    12,   646)
+	 11: Rel (   124,     0)  ->  Abs (   136,   646)
+	 12: Rel (     0,   416)  ->  Abs (   136,  1062)
+	 13: Rel (   611,     0)  ->  Abs (   747,  1062)
+
+	Glyph 1298: off = 0x0003293A, len = 492
+	  numberOfContours:	1
+	  xMin:			7
+	  yMin:			-407
+	  xMax:			1883
+	  yMax:			1467
+
+	EndPoints
+	---------
+	  0:  70
+
+	  Length of Instructions:	275
+	00000: NPUSHB      (95):    56    49     1    55    36    71    36     2     8    20 
+	                            24    20     2    69    13     1    41     6    57     6 
+	                             2    36    38    38    32    25    27    20    25    25 
+	                            27    27    25    30    41    17    18    18    32    19 
+	                            20    20    19    19    20    20    22    19    41    10 
+	                            30    19    10     5     3     3    32    69    68    20 
+	                            69    69    68    66    68     8    69    49    47    47 
+	                            32    63    61    20    63    63    61    63    61    43 
+	                            54     2    32     0    69    43     8    32    10    12 
+	                            16    16     2    85    10 
+	00097: PUSHW[1]             -8 
+	00100: PUSHB[5]             15    15     2    85    10 
+	00106: PUSHW[1]             -2 
+	00109: PUSHB[5]             12    12     2    85    10 
+	00115: PUSHW[1]             -3 
+	00118: NPUSHB      (51):    15    15     6    85    10    38    47    49    36     4 
+	                            44    55    30    54    42    25    63    61    27     4 
+	                            11    30    30    31    42    20    68    70    44    66 
+	                            22    41    30    17     5     3     8    11    11    10 
+	                            42     2    69    70    30     3    19    18     1    10 
+	                             8 
+	00171: SVTCA[y-axis] 
+	00172: MIAP[rd+ci] 
+	00173: MDRP[nrp0,md,rd,2] 
+	00174: MDRP[nrp0,nmd,nrd,0] 
+	00175: MDRP[nrp0,nmd,nrd,0] 
+	00176: MDRP[srp0,nmd,nrd,0] 
+	00177: MIRP[srp0,md,rd,1] 
+	00178: MDRP[nrp0,nmd,nrd,0] 
+	00179: MIAP[rd+ci] 
+	00180: SRP2       
+	00181: IP         
+	00182: MDAP[rd]   
+	00183: MDRP[nrp0,nmd,nrd,0] 
+	00184: SRP1       
+	00185: IP         
+	00186: IP         
+	00187: MIRP[srp0,md,rd,1] 
+	00188: IP         
+	00189: IP         
+	00190: MDRP[nrp0,nmd,nrd,0] 
+	00191: SRP1       
+	00192: IP         
+	00193: IP         
+	00194: SRP0       
+	00195: MDRP[srp0,nmd,rd,0] 
+	00196: MIRP[nrp0,md,rd,1] 
+	00197: SRP1       
+	00198: SLOOP      
+	00199: IP         
+	00200: SRP0       
+	00201: MDRP[srp0,nmd,rd,0] 
+	00202: MIRP[nrp0,md,rd,1] 
+	00203: SRP2       
+	00204: SLOOP      
+	00205: IP         
+	00206: SVTCA[x-axis] 
+	00207: MDAP[rd]   
+	00208: CALL       
+	00209: CALL       
+	00210: CALL       
+	00211: CALL       
+	00212: MIRP[srp0,md,rd,1] 
+	00213: MDRP[nrp0,nmd,nrd,0] 
+	00214: MDRP[srp0,nmd,rd,0] 
+	00215: MDRP[srp0,md,rd,1] 
+	00216: MIRP[nrp0,md,rd,1] 
+	00217: MDRP[nrp0,nmd,rd,0] 
+	00218: SRP1       
+	00219: IP         
+	00220: IP         
+	00221: SDPVTL[1]  
+	00222: SRP0       
+	00223: CALL       
+	00224: RDTG       
+	00225: SRP0       
+	00226: MDRP[nrp0,nmd,rd,0] 
+	00227: SVTCA[x-axis] 
+	00228: SRP1       
+	00229: SRP2       
+	00230: IP         
+	00231: IP         
+	00232: SDPVTL[1]  
+	00233: RTG        
+	00234: SRP0       
+	00235: CALL       
+	00236: RDTG       
+	00237: SRP0       
+	00238: MDRP[nrp0,nmd,rd,0] 
+	00239: SVTCA[x-axis] 
+	00240: RTG        
+	00241: SRP0       
+	00242: MDRP[srp0,nmd,rd,0] 
+	00243: MDRP[nrp0,nmd,rd,2] 
+	00244: SRP0       
+	00245: MDRP[nrp0,nmd,nrd,0] 
+	00246: SRP1       
+	00247: IP         
+	00248: IP         
+	00249: SDPVTL[1]  
+	00250: SRP0       
+	00251: CALL       
+	00252: RDTG       
+	00253: SRP0       
+	00254: MDRP[nrp0,nmd,rd,0] 
+	00255: SVTCA[x-axis] 
+	00256: SRP1       
+	00257: SRP2       
+	00258: IP         
+	00259: IP         
+	00260: SDPVTL[1]  
+	00261: RTG        
+	00262: SRP0       
+	00263: CALL       
+	00264: RDTG       
+	00265: SRP0       
+	00266: MDRP[nrp0,nmd,rd,0] 
+	00267: IUP[y]     
+	00268: IUP[x]     
+	00269: SVTCA[x-axis] 
+	00270: DELTAP1    
+	00271: DELTAP1    
+	00272: DELTAP1    
+	00273: DELTAP1    
+	00274: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:                              X-Short On
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:        XDual                         On
+	 10:  YDual                       X-Short On
+	 11:        XDual                         On
+	 12:  YDual                       X-Short Off
+	 13:                      Y-Short X-Short On
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:                              X-Short On
+	 19:  YDual                       X-Short On
+	 20:                                      On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual               Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:                      Y-Short X-Short On
+	 30:                      Y-Short X-Short On
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short X-Short On
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short X-Short On
+	 38:        XDual         Y-Short X-Short Off
+	 39:        XDual         Y-Short X-Short On
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short X-Short On
+	 42:        XDual                         On
+	 43:  YDual XDual                 X-Short On
+	 44:        XDual                         On
+	 45:  YDual XDual                 X-Short Off
+	 46:  YDual XDual         Y-Short X-Short On
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short X-Short On
+	 49:  YDual XDual         Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short X-Short On
+	 51:  YDual XDual         Y-Short X-Short Off
+	 52:  YDual XDual                 X-Short On
+	 53:  YDual XDual                 X-Short Off
+	 54:        XDual         Y-Short X-Short On
+	 55:        XDual         Y-Short         On
+	 56:  YDual                       X-Short Off
+	 57:  YDual               Y-Short X-Short Off
+	 58:  YDual                       X-Short On
+	 59:  YDual                       X-Short Off
+	 60:                      Y-Short X-Short On
+	 61:                      Y-Short X-Short Off
+	 62:                      Y-Short X-Short On
+	 63:                      Y-Short X-Short Off
+	 64:                      Y-Short X-Short On
+	 65:                      Y-Short X-Short Off
+	 66:                      Y-Short X-Short On
+	 67:        XDual         Y-Short X-Short Off
+	 68:        XDual         Y-Short X-Short On
+	 69:        XDual                 X-Short On
+	 70:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1883,  -407)  ->  Abs (  1883,  -407)
+	  1: Rel (  -172,     0)  ->  Abs (  1711,  -407)
+	  2: Rel (     0,   407)  ->  Abs (  1711,     0)
+	  3: Rel (   -69,     0)  ->  Abs (  1642,     0)
+	  4: Rel (  -244,   398)  ->  Abs (  1398,   398)
+	  5: Rel (   -93,   152)  ->  Abs (  1305,   550)
+	  6: Rel (   -46,    46)  ->  Abs (  1259,   596)
+	  7: Rel (   -90,    90)  ->  Abs (  1169,   686)
+	  8: Rel (  -124,     0)  ->  Abs (  1045,   686)
+	  9: Rel (     0,  -686)  ->  Abs (  1045,     0)
+	 10: Rel (  -199,     0)  ->  Abs (   846,     0)
+	 11: Rel (     0,   686)  ->  Abs (   846,   686)
+	 12: Rel (   -96,     0)  ->  Abs (   750,   686)
+	 13: Rel (   -73,   -50)  ->  Abs (   677,   636)
+	 14: Rel (   -66,   -45)  ->  Abs (   611,   591)
+	 15: Rel (  -106,  -173)  ->  Abs (   505,   418)
+	 16: Rel (     1,     2)  ->  Abs (   506,   420)
+	 17: Rel (   -11,   -18)  ->  Abs (   495,   402)
+	 18: Rel (  -247,  -402)  ->  Abs (   248,     0)
+	 19: Rel (  -241,     0)  ->  Abs (     7,     0)
+	 20: Rel (   302,   488)  ->  Abs (   309,   488)
+	 21: Rel (   138,   223)  ->  Abs (   447,   711)
+	 22: Rel (   142,    39)  ->  Abs (   589,   750)
+	 23: Rel (  -100,    41)  ->  Abs (   489,   791)
+	 24: Rel (   -58,    84)  ->  Abs (   431,   875)
+	 25: Rel (   -36,    51)  ->  Abs (   395,   926)
+	 26: Rel (   -54,   136)  ->  Abs (   341,  1062)
+	 27: Rel (   -63,   157)  ->  Abs (   278,  1219)
+	 28: Rel (   -92,    82)  ->  Abs (   186,  1301)
+	 29: Rel (   -87,    -2)  ->  Abs (    99,  1299)
+	 30: Rel (   -78,    -2)  ->  Abs (    21,  1297)
+	 31: Rel (     0,   168)  ->  Abs (    21,  1465)
+	 32: Rel (    11,     2)  ->  Abs (    32,  1467)
+	 33: Rel (   101,     0)  ->  Abs (   133,  1467)
+	 34: Rel (   184,     0)  ->  Abs (   317,  1467)
+	 35: Rel (    93,  -138)  ->  Abs (   410,  1329)
+	 36: Rel (    41,   -60)  ->  Abs (   451,  1269)
+	 37: Rel (    62,  -146)  ->  Abs (   513,  1123)
+	 38: Rel (    77,  -180)  ->  Abs (   590,   943)
+	 39: Rel (    36,   -40)  ->  Abs (   626,   903)
+	 40: Rel (    68,   -77)  ->  Abs (   694,   826)
+	 41: Rel (   152,    -2)  ->  Abs (   846,   824)
+	 42: Rel (     0,   642)  ->  Abs (   846,  1466)
+	 43: Rel (   199,     0)  ->  Abs (  1045,  1466)
+	 44: Rel (     0,  -642)  ->  Abs (  1045,   824)
+	 45: Rel (   150,     0)  ->  Abs (  1195,   824)
+	 46: Rel (    70,    79)  ->  Abs (  1265,   903)
+	 47: Rel (    37,    42)  ->  Abs (  1302,   945)
+	 48: Rel (    76,   178)  ->  Abs (  1378,  1123)
+	 49: Rel (    62,   145)  ->  Abs (  1440,  1268)
+	 50: Rel (    39,    59)  ->  Abs (  1479,  1327)
+	 51: Rel (    93,   140)  ->  Abs (  1572,  1467)
+	 52: Rel (   179,     0)  ->  Abs (  1751,  1467)
+	 53: Rel (    95,     0)  ->  Abs (  1846,  1467)
+	 54: Rel (    23,    -2)  ->  Abs (  1869,  1465)
+	 55: Rel (     0,  -168)  ->  Abs (  1869,  1297)
+	 56: Rel (   -13,     0)  ->  Abs (  1856,  1297)
+	 57: Rel (   -51,     2)  ->  Abs (  1805,  1299)
+	 58: Rel (   -13,     0)  ->  Abs (  1792,  1299)
+	 59: Rel (  -103,     0)  ->  Abs (  1689,  1299)
+	 60: Rel (   -57,   -71)  ->  Abs (  1632,  1228)
+	 61: Rel (   -32,   -38)  ->  Abs (  1600,  1190)
+	 62: Rel (   -51,  -128)  ->  Abs (  1549,  1062)
+	 63: Rel (   -54,  -135)  ->  Abs (  1495,   927)
+	 64: Rel (   -35,   -51)  ->  Abs (  1460,   876)
+	 65: Rel (   -58,   -83)  ->  Abs (  1402,   793)
+	 66: Rel (  -100,   -43)  ->  Abs (  1302,   750)
+	 67: Rel (   141,   -39)  ->  Abs (  1443,   711)
+	 68: Rel (   138,  -223)  ->  Abs (  1581,   488)
+	 69: Rel (   195,  -315)  ->  Abs (  1776,   173)
+	 70: Rel (   107,     0)  ->  Abs (  1883,   173)
+
+	Glyph 1299: off = 0x00032B26, len = 508
+	  numberOfContours:	1
+	  xMin:			-5
+	  yMin:			-301
+	  xMax:			1360
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  66
+
+	  Length of Instructions:	305
+	00000: NPUSHB      (59):     7    35     1   104     6     1    36    38    38    12 
+	                            16    16     2    85    38    12    15    16     6    85 
+	                            38    37    23    25    20    23    23    25    25    23 
+	                            29    41    15    16    16    15    12    13     6    85 
+	                            16    37    17    18    20    17    17    18    18    20 
+	                            17    41    10    29    17    10    48    47    47 
+	00061: PUSHW[1]            -12 
+	00064: NPUSHB      (23):    15    16     6    85    47    37    59    57    20    59 
+	                            59    57    59    57    44    53     2    37    66    65 
+	                             5     3     3 
+	00089: PUSHW[1]            -15 
+	00092: NPUSHB      (25):    12    13     6    85     3    37    65    63    20    65 
+	                            63    63    62    44    65    44     9    37    10    14 
+	                            15    16     2    85    10 
+	00119: PUSHW[1]            -10 
+	00122: NPUSHB      (11):    14    14     2    85    10     8    13    13     2    85 
+	                            10 
+	00135: PUSHW[1]            -14 
+	00138: NPUSHB      (59):    11    11     2    85    10     9    16    16     6    85 
+	                            10    25    57    23    59     4     8    53    43    48 
+	                            36    38    47     4    44    52    42    29    43    30 
+	                            42    63    65    44    20    62    41    43     5    18 
+	                            15     3     3     8    11    11    10    42     6    17 
+	                            16    10    66    65    43     3     1    10    10 
+	00199: SVTCA[y-axis] 
+	00200: MIAP[rd+ci] 
+	00201: MDRP[nrp0,md,rd,2] 
+	00202: MDRP[srp0,nmd,nrd,0] 
+	00203: MIRP[srp0,md,rd,1] 
+	00204: MDRP[nrp0,nmd,nrd,0] 
+	00205: SRP0       
+	00206: MDRP[srp0,nmd,nrd,0] 
+	00207: MDRP[nrp0,nmd,nrd,0] 
+	00208: MIAP[rd+ci] 
+	00209: SRP2       
+	00210: IP         
+	00211: MDAP[rd]   
+	00212: MDRP[nrp0,nmd,nrd,0] 
+	00213: SRP1       
+	00214: SLOOP      
+	00215: IP         
+	00216: MIRP[srp0,md,rd,1] 
+	00217: IP         
+	00218: IP         
+	00219: MDRP[nrp0,nmd,nrd,0] 
+	00220: SRP1       
+	00221: IP         
+	00222: SRP0       
+	00223: MDRP[srp0,nmd,nrd,0] 
+	00224: MIRP[nrp0,md,rd,1] 
+	00225: SRP0       
+	00226: MDRP[srp0,nmd,nrd,0] 
+	00227: SRP1       
+	00228: SLOOP      
+	00229: IP         
+	00230: MIRP[nrp0,md,rd,1] 
+	00231: SRP1       
+	00232: SLOOP      
+	00233: IP         
+	00234: SVTCA[x-axis] 
+	00235: MDAP[rd]   
+	00236: CALL       
+	00237: CALL       
+	00238: CALL       
+	00239: CALL       
+	00240: CALL       
+	00241: MIRP[srp0,md,rd,1] 
+	00242: MDRP[nrp0,nmd,nrd,0] 
+	00243: MDRP[srp0,nmd,rd,0] 
+	00244: SRP1       
+	00245: IP         
+	00246: IP         
+	00247: SDPVTL[1]  
+	00248: CALL       
+	00249: CALL       
+	00250: RDTG       
+	00251: SRP0       
+	00252: MDRP[nrp0,nmd,rd,0] 
+	00253: SVTCA[x-axis] 
+	00254: RTG        
+	00255: SRP0       
+	00256: MDRP[srp0,md,rd,1] 
+	00257: MIRP[nrp0,md,rd,1] 
+	00258: MDRP[nrp0,nmd,rd,2] 
+	00259: SRP1       
+	00260: IP         
+	00261: IP         
+	00262: SDPVTL[1]  
+	00263: SRP0       
+	00264: CALL       
+	00265: CALL       
+	00266: RDTG       
+	00267: SRP0       
+	00268: MDRP[nrp0,nmd,rd,0] 
+	00269: SVTCA[x-axis] 
+	00270: RTG        
+	00271: SRP0       
+	00272: MDRP[srp0,nmd,rd,0] 
+	00273: MDRP[nrp0,nmd,rd,2] 
+	00274: SRP0       
+	00275: MDRP[nrp0,nmd,nrd,0] 
+	00276: SRP1       
+	00277: IP         
+	00278: IP         
+	00279: SDPVTL[1]  
+	00280: SRP0       
+	00281: CALL       
+	00282: CALL       
+	00283: RDTG       
+	00284: SRP0       
+	00285: MDRP[nrp0,nmd,rd,0] 
+	00286: SVTCA[x-axis] 
+	00287: SRP1       
+	00288: SRP2       
+	00289: IP         
+	00290: IP         
+	00291: SDPVTL[1]  
+	00292: RTG        
+	00293: SRP0       
+	00294: CALL       
+	00295: CALL       
+	00296: CALL       
+	00297: RDTG       
+	00298: SRP0       
+	00299: MDRP[nrp0,nmd,rd,0] 
+	00300: IUP[y]     
+	00301: IUP[x]     
+	00302: SVTCA[x-axis] 
+	00303: DELTAP1    
+	00304: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:                              X-Short On
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:        XDual                         On
+	 10:  YDual                       X-Short On
+	 11:        XDual                         On
+	 12:  YDual                       X-Short Off
+	 13:                      Y-Short X-Short On
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:                              X-Short On
+	 17:  YDual                       X-Short On
+	 18:        XDual                 X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:                      Y-Short X-Short On
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual         Y-Short X-Short On
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short X-Short On
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short X-Short On
+	 38:        XDual         Y-Short X-Short Off
+	 39:        XDual         Y-Short X-Short On
+	 40:        XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:        XDual                         On
+	 43:  YDual XDual                 X-Short On
+	 44:        XDual                         On
+	 45:  YDual XDual                 X-Short Off
+	 46:  YDual XDual         Y-Short X-Short On
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:        XDual                 X-Short Off
+	 49:  YDual XDual         Y-Short X-Short On
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short On
+	 53:        XDual         Y-Short         On
+	 54:  YDual               Y-Short X-Short On
+	 55:  YDual               Y-Short X-Short Off
+	 56:                      Y-Short X-Short On
+	 57:                      Y-Short X-Short Off
+	 58:                      Y-Short X-Short On
+	 59:                      Y-Short X-Short Off
+	 60:                      Y-Short X-Short On
+	 61:                      Y-Short X-Short Off
+	 62:                      Y-Short X-Short On
+	 63:        XDual         Y-Short X-Short Off
+	 64:        XDual         Y-Short X-Short On
+	 65:        XDual         Y-Short X-Short On
+	 66:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1360,  -301)  ->  Abs (  1360,  -301)
+	  1: Rel (  -148,     0)  ->  Abs (  1212,  -301)
+	  2: Rel (     0,   301)  ->  Abs (  1212,     0)
+	  3: Rel (   -34,     0)  ->  Abs (  1178,     0)
+	  4: Rel (  -193,   329)  ->  Abs (   985,   329)
+	  5: Rel (   -48,    81)  ->  Abs (   937,   410)
+	  6: Rel (   -34,    32)  ->  Abs (   903,   442)
+	  7: Rel (   -53,    49)  ->  Abs (   850,   491)
+	  8: Rel (   -73,     0)  ->  Abs (   777,   491)
+	  9: Rel (     0,  -491)  ->  Abs (   777,     0)
+	 10: Rel (  -184,     0)  ->  Abs (   593,     0)
+	 11: Rel (     0,   491)  ->  Abs (   593,   491)
+	 12: Rel (   -74,     0)  ->  Abs (   519,   491)
+	 13: Rel (   -52,   -48)  ->  Abs (   467,   443)
+	 14: Rel (   -32,   -31)  ->  Abs (   435,   412)
+	 15: Rel (   -49,   -83)  ->  Abs (   386,   329)
+	 16: Rel (  -193,  -329)  ->  Abs (   193,     0)
+	 17: Rel (  -198,     0)  ->  Abs (    -5,     0)
+	 18: Rel (   197,   329)  ->  Abs (   192,   329)
+	 19: Rel (   111,   185)  ->  Abs (   303,   514)
+	 20: Rel (   118,    31)  ->  Abs (   421,   545)
+	 21: Rel (   -90,    41)  ->  Abs (   331,   586)
+	 22: Rel (   -45,    76)  ->  Abs (   286,   662)
+	 23: Rel (   -17,    28)  ->  Abs (   269,   690)
+	 24: Rel (   -56,   143)  ->  Abs (   213,   833)
+	 25: Rel (   -20,    51)  ->  Abs (   193,   884)
+	 26: Rel (   -48,    30)  ->  Abs (   145,   914)
+	 27: Rel (   -56,     0)  ->  Abs (    89,   914)
+	 28: Rel (   -13,     0)  ->  Abs (    76,   914)
+	 29: Rel (   -40,    -1)  ->  Abs (    36,   913)
+	 30: Rel (     0,   149)  ->  Abs (    36,  1062)
+	 31: Rel (    25,     0)  ->  Abs (    61,  1062)
+	 32: Rel (   106,     0)  ->  Abs (   167,  1062)
+	 33: Rel (    41,   -12)  ->  Abs (   208,  1050)
+	 34: Rel (    57,   -17)  ->  Abs (   265,  1033)
+	 35: Rel (    46,   -75)  ->  Abs (   311,   958)
+	 36: Rel (    19,   -32)  ->  Abs (   330,   926)
+	 37: Rel (    41,   -98)  ->  Abs (   371,   828)
+	 38: Rel (    57,  -136)  ->  Abs (   428,   692)
+	 39: Rel (    17,   -23)  ->  Abs (   445,   669)
+	 40: Rel (    49,   -66)  ->  Abs (   494,   603)
+	 41: Rel (    99,     0)  ->  Abs (   593,   603)
+	 42: Rel (     0,   459)  ->  Abs (   593,  1062)
+	 43: Rel (   184,     0)  ->  Abs (   777,  1062)
+	 44: Rel (     0,  -459)  ->  Abs (   777,   603)
+	 45: Rel (   100,     0)  ->  Abs (   877,   603)
+	 46: Rel (    48,    65)  ->  Abs (   925,   668)
+	 47: Rel (    18,    24)  ->  Abs (   943,   692)
+	 48: Rel (   113,   270)  ->  Abs (  1056,   962)
+	 49: Rel (    37,    39)  ->  Abs (  1093,  1001)
+	 50: Rel (    58,    61)  ->  Abs (  1151,  1062)
+	 51: Rel (   118,     0)  ->  Abs (  1269,  1062)
+	 52: Rel (    66,     0)  ->  Abs (  1335,  1062)
+	 53: Rel (     0,  -149)  ->  Abs (  1335,   913)
+	 54: Rel (   -49,     1)  ->  Abs (  1286,   914)
+	 55: Rel (   -76,     2)  ->  Abs (  1210,   916)
+	 56: Rel (   -30,   -41)  ->  Abs (  1180,   875)
+	 57: Rel (   -11,   -14)  ->  Abs (  1169,   861)
+	 58: Rel (   -39,   -99)  ->  Abs (  1130,   762)
+	 59: Rel (   -37,   -95)  ->  Abs (  1093,   667)
+	 60: Rel (   -27,   -36)  ->  Abs (  1066,   631)
+	 61: Rel (   -38,   -50)  ->  Abs (  1028,   581)
+	 62: Rel (   -78,   -36)  ->  Abs (   950,   545)
+	 63: Rel (   117,   -31)  ->  Abs (  1067,   514)
+	 64: Rel (   111,  -185)  ->  Abs (  1178,   329)
+	 65: Rel (   109,  -181)  ->  Abs (  1287,   148)
+	 66: Rel (    73,     0)  ->  Abs (  1360,   148)
+
+	Glyph 1300: off = 0x00032D22, len = 376
+	  numberOfContours:	1
+	  xMin:			161
+	  yMin:			-407
+	  xMax:			1186
+	  yMax:			1467
+
+	EndPoints
+	---------
+	  0:  39
+
+	  Length of Instructions:	251
+	00000: NPUSHB      (15):    23    37     1   137    20     1     8    19     1   137 
+	                             6     1     5     3     3 
+	00017: PUSHW[1]            -12 
+	00020: NPUSHB      (47):    11    11     6    85     3    12    14    16     6    85 
+	                             3    32    38    36    20    38    38    36   103    36 
+	                             1    38    36    35     3     8    39    18    16    16 
+	                            32    32    30    20    32    32    30    55    30     1 
+	                            32    30    13    24     2    32    39 
+	00069: PUSHW[1]            -10 
+	00072: NPUSHB      (10):    11    11     2    85    39    41    13     8    32    10 
+	00084: PUSHW[1]            -26 
+	00087: PUSHB[5]             16    16     2    85    10 
+	00093: PUSHW[1]            -10 
+	00096: PUSHB[5]             15    15     2    85    10 
+	00102: PUSHW[1]            -10 
+	00105: PUSHB[5]             13    13     2    85    10 
+	00111: PUSHW[1]             -6 
+	00114: PUSHB[5]             12    12     2    85    10 
+	00120: PUSHW[1]             -8 
+	00123: PUSHB[5]             12    12     6    85    10 
+	00129: PUSHW[1]            -16 
+	00132: PUSHB[5]             13    13     6    85    10 
+	00138: PUSHW[1]            -12 
+	00141: NPUSHB      (35):    15    15     6    85    10    93    40    32    30     8 
+	                            27    30    16    18    13    21    12    36    38    35 
+	                            13    30     5     3     8     8     9    12     2    38 
+	                            30     3     1     9     8 
+	00178: SVTCA[y-axis] 
+	00179: MIAP[rd+ci] 
+	00180: MDRP[nrp0,md,rd,2] 
+	00181: MDRP[srp0,nmd,nrd,0] 
+	00182: MIRP[nrp0,md,rd,1] 
+	00183: MIAP[rd+ci] 
+	00184: SRP2       
+	00185: IP         
+	00186: MDAP[rd]   
+	00187: SRP2       
+	00188: IP         
+	00189: MIRP[nrp0,md,rd,1] 
+	00190: IP         
+	00191: SRP1       
+	00192: IP         
+	00193: SRP0       
+	00194: MDRP[srp0,nmd,rd,0] 
+	00195: SRP1       
+	00196: IP         
+	00197: IP         
+	00198: MIRP[nrp0,md,rd,1] 
+	00199: SRP1       
+	00200: IP         
+	00201: IP         
+	00202: SVTCA[x-axis] 
+	00203: SRP0       
+	00204: MIRP[srp0,nmd,rd,2] 
+	00205: CALL       
+	00206: CALL       
+	00207: CALL       
+	00208: CALL       
+	00209: CALL       
+	00210: CALL       
+	00211: CALL       
+	00212: MIRP[srp0,md,rd,1] 
+	00213: MDRP[nrp0,nmd,nrd,0] 
+	00214: SRP0       
+	00215: MDRP[srp0,nmd,rd,2] 
+	00216: CALL       
+	00217: MIRP[nrp0,md,rd,1] 
+	00218: MDRP[nrp0,nmd,rd,2] 
+	00219: SRP1       
+	00220: IP         
+	00221: IP         
+	00222: DELTAP1    
+	00223: SDPVTL[1]  
+	00224: SRP0       
+	00225: CALL       
+	00226: RDTG       
+	00227: SRP0       
+	00228: MDRP[nrp0,nmd,rd,0] 
+	00229: SVTCA[x-axis] 
+	00230: SRP1       
+	00231: SRP2       
+	00232: SLOOP      
+	00233: IP         
+	00234: DELTAP1    
+	00235: SDPVTL[1]  
+	00236: RTG        
+	00237: SRP0       
+	00238: CALL       
+	00239: CALL       
+	00240: CALL       
+	00241: RDTG       
+	00242: SRP0       
+	00243: MDRP[nrp0,nmd,rd,0] 
+	00244: IUP[y]     
+	00245: IUP[x]     
+	00246: SVTCA[x-axis] 
+	00247: DELTAP1    
+	00248: DELTAP1    
+	00249: DELTAP1    
+	00250: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:                              X-Short On
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:        XDual                         On
+	 10:  YDual                       X-Short On
+	 11:        XDual                         On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:  YDual XDual                 X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short On
+	 24:        XDual         Y-Short         On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:                      Y-Short X-Short On
+	 30:                      Y-Short X-Short Off
+	 31:                      Y-Short X-Short On
+	 32:                      Y-Short X-Short Off
+	 33:                      Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short On
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short X-Short On
+	 38:        XDual                 X-Short On
+	 39:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1186,  -407)  ->  Abs (  1186,  -407)
+	  1: Rel (  -172,     0)  ->  Abs (  1014,  -407)
+	  2: Rel (     0,   407)  ->  Abs (  1014,     0)
+	  3: Rel (   -69,     0)  ->  Abs (   945,     0)
+	  4: Rel (  -245,   398)  ->  Abs (   700,   398)
+	  5: Rel (   -92,   150)  ->  Abs (   608,   548)
+	  6: Rel (   -44,    46)  ->  Abs (   564,   594)
+	  7: Rel (   -90,    92)  ->  Abs (   474,   686)
+	  8: Rel (  -119,     0)  ->  Abs (   355,   686)
+	  9: Rel (     0,  -686)  ->  Abs (   355,     0)
+	 10: Rel (  -194,     0)  ->  Abs (   161,     0)
+	 11: Rel (     0,  1466)  ->  Abs (   161,  1466)
+	 12: Rel (   194,     0)  ->  Abs (   355,  1466)
+	 13: Rel (     0,  -642)  ->  Abs (   355,   824)
+	 14: Rel (   144,     0)  ->  Abs (   499,   824)
+	 15: Rel (    70,    82)  ->  Abs (   569,   906)
+	 16: Rel (    37,    43)  ->  Abs (   606,   949)
+	 17: Rel (    74,   174)  ->  Abs (   680,  1123)
+	 18: Rel (    62,   145)  ->  Abs (   742,  1268)
+	 19: Rel (    39,    59)  ->  Abs (   781,  1327)
+	 20: Rel (    93,   140)  ->  Abs (   874,  1467)
+	 21: Rel (   180,     0)  ->  Abs (  1054,  1467)
+	 22: Rel (   112,     0)  ->  Abs (  1166,  1467)
+	 23: Rel (     6,    -2)  ->  Abs (  1172,  1465)
+	 24: Rel (     0,  -168)  ->  Abs (  1172,  1297)
+	 25: Rel (   -13,     0)  ->  Abs (  1159,  1297)
+	 26: Rel (   -52,     2)  ->  Abs (  1107,  1299)
+	 27: Rel (   -13,     0)  ->  Abs (  1094,  1299)
+	 28: Rel (  -103,     0)  ->  Abs (   991,  1299)
+	 29: Rel (   -57,   -71)  ->  Abs (   934,  1228)
+	 30: Rel (   -32,   -39)  ->  Abs (   902,  1189)
+	 31: Rel (   -51,  -127)  ->  Abs (   851,  1062)
+	 32: Rel (   -55,  -139)  ->  Abs (   796,   923)
+	 33: Rel (   -34,   -49)  ->  Abs (   762,   874)
+	 34: Rel (   -57,   -83)  ->  Abs (   705,   791)
+	 35: Rel (  -101,   -41)  ->  Abs (   604,   750)
+	 36: Rel (   142,   -39)  ->  Abs (   746,   711)
+	 37: Rel (   138,  -223)  ->  Abs (   884,   488)
+	 38: Rel (   195,  -315)  ->  Abs (  1079,   173)
+	 39: Rel (   107,     0)  ->  Abs (  1186,   173)
+
+	Glyph 1301: off = 0x00032E9A, len = 380
+	  numberOfContours:	1
+	  xMin:			134
+	  yMin:			-301
+	  xMax:			886
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  38
+
+	  Length of Instructions:	255
+	00000: PUSHB[3]              5     3     3 
+	00004: PUSHW[1]            -18 
+	00007: NPUSHB      (24):    13    13     6    85     3    37    37    35    20    37 
+	                            37    35    70    35     1    34    35    37     3    38 
+	                             8    18    16    16 
+	00033: PUSHW[1]            -18 
+	00036: NPUSHB      (19):    15    16     6    85    16    37    31    29    20    31 
+	                            31    29    31    29    13    25     2    37    38 
+	00057: PUSHW[1]            -16 
+	00060: NPUSHB      (13):    10    10     2    85    32    38     1    38    40    13 
+	                             8    37    10 
+	00075: PUSHW[1]             -8 
+	00078: PUSHB[5]             16    16     2    85    10 
+	00084: PUSHW[1]             -6 
+	00087: NPUSHB      (17):    14    14     2    85    10     6    12    12     2    85 
+	                            10     6    11    11     2    85    10 
+	00106: PUSHW[1]            -16 
+	00109: PUSHB[5]             10    10     2    85    10 
+	00115: PUSHW[1]            -10 
+	00118: PUSHB[5]             16    16     6    85    10 
+	00124: PUSHW[1]            -18 
+	00127: PUSHB[5]             15    15     6    85    10 
+	00133: PUSHW[1]             -4 
+	00136: NPUSHB      (46):    13    13     6    85    10    10    12    12     6    85 
+	                             0    10    32    10     2    10    78    39    31    29 
+	                             8    25    43    16    18    13    24    12    35    37 
+	                            34    13    43     5     3     8     8     9    12     6 
+	                            37    43     3     1     9    10 
+	00184: SVTCA[y-axis] 
+	00185: MIAP[rd+ci] 
+	00186: MDRP[nrp0,md,rd,2] 
+	00187: MDRP[srp0,nmd,nrd,0] 
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: MIAP[rd+ci] 
+	00190: SRP2       
+	00191: IP         
+	00192: MDAP[rd]   
+	00193: SRP2       
+	00194: IP         
+	00195: MIRP[nrp0,md,rd,1] 
+	00196: IP         
+	00197: SRP1       
+	00198: IP         
+	00199: SRP0       
+	00200: MDRP[srp0,nmd,nrd,0] 
+	00201: SRP1       
+	00202: IP         
+	00203: IP         
+	00204: MIRP[nrp0,md,rd,1] 
+	00205: SRP1       
+	00206: IP         
+	00207: IP         
+	00208: SVTCA[x-axis] 
+	00209: SRP0       
+	00210: MIRP[srp0,nmd,rd,2] 
+	00211: DELTAP1    
+	00212: CALL       
+	00213: CALL       
+	00214: CALL       
+	00215: CALL       
+	00216: CALL       
+	00217: CALL       
+	00218: CALL       
+	00219: CALL       
+	00220: CALL       
+	00221: MIRP[srp0,md,rd,1] 
+	00222: MDRP[nrp0,nmd,nrd,0] 
+	00223: SRP0       
+	00224: MDRP[srp0,nmd,rd,2] 
+	00225: DELTAP1    
+	00226: CALL       
+	00227: MIRP[nrp0,md,rd,1] 
+	00228: MDRP[nrp0,nmd,rd,2] 
+	00229: SRP1       
+	00230: IP         
+	00231: IP         
+	00232: SDPVTL[1]  
+	00233: SRP0       
+	00234: CALL       
+	00235: CALL       
+	00236: RDTG       
+	00237: SRP0       
+	00238: MDRP[nrp0,nmd,rd,0] 
+	00239: SVTCA[x-axis] 
+	00240: SRP1       
+	00241: SRP2       
+	00242: SLOOP      
+	00243: IP         
+	00244: DELTAP1    
+	00245: SDPVTL[1]  
+	00246: RTG        
+	00247: SRP0       
+	00248: CALL       
+	00249: CALL       
+	00250: RDTG       
+	00251: SRP0       
+	00252: MDRP[nrp0,nmd,rd,0] 
+	00253: IUP[y]     
+	00254: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:                              X-Short On
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:        XDual                         On
+	 10:  YDual                       X-Short On
+	 11:        XDual                         On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:  YDual XDual                 X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short On
+	 25:        XDual         Y-Short         On
+	 26:  YDual               Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short Off
+	 28:                      Y-Short X-Short On
+	 29:                      Y-Short X-Short Off
+	 30:                      Y-Short X-Short On
+	 31:                      Y-Short X-Short Off
+	 32:                      Y-Short X-Short On
+	 33:                      Y-Short X-Short Off
+	 34:                      Y-Short X-Short On
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short X-Short On
+	 37:        XDual         Y-Short X-Short On
+	 38:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   886,  -301)  ->  Abs (   886,  -301)
+	  1: Rel (  -148,     0)  ->  Abs (   738,  -301)
+	  2: Rel (     0,   301)  ->  Abs (   738,     0)
+	  3: Rel (   -24,     0)  ->  Abs (   714,     0)
+	  4: Rel (  -192,   329)  ->  Abs (   522,   329)
+	  5: Rel (   -47,    81)  ->  Abs (   475,   410)
+	  6: Rel (   -35,    32)  ->  Abs (   440,   442)
+	  7: Rel (   -53,    49)  ->  Abs (   387,   491)
+	  8: Rel (   -73,     0)  ->  Abs (   314,   491)
+	  9: Rel (     0,  -491)  ->  Abs (   314,     0)
+	 10: Rel (  -180,     0)  ->  Abs (   134,     0)
+	 11: Rel (     0,  1062)  ->  Abs (   134,  1062)
+	 12: Rel (   180,     0)  ->  Abs (   314,  1062)
+	 13: Rel (     0,  -459)  ->  Abs (   314,   603)
+	 14: Rel (   100,     0)  ->  Abs (   414,   603)
+	 15: Rel (    48,    65)  ->  Abs (   462,   668)
+	 16: Rel (    16,    21)  ->  Abs (   478,   689)
+	 17: Rel (    58,   139)  ->  Abs (   536,   828)
+	 18: Rel (    40,    96)  ->  Abs (   576,   924)
+	 19: Rel (    20,    32)  ->  Abs (   596,   956)
+	 20: Rel (    44,    73)  ->  Abs (   640,  1029)
+	 21: Rel (    58,    19)  ->  Abs (   698,  1048)
+	 22: Rel (    43,    14)  ->  Abs (   741,  1062)
+	 23: Rel (    95,     0)  ->  Abs (   836,  1062)
+	 24: Rel (    36,     0)  ->  Abs (   872,  1062)
+	 25: Rel (     0,  -149)  ->  Abs (   872,   913)
+	 26: Rel (   -50,     1)  ->  Abs (   822,   914)
+	 27: Rel (   -75,     1)  ->  Abs (   747,   915)
+	 28: Rel (   -31,   -40)  ->  Abs (   716,   875)
+	 29: Rel (   -10,   -13)  ->  Abs (   706,   862)
+	 30: Rel (   -39,  -100)  ->  Abs (   667,   762)
+	 31: Rel (   -37,   -94)  ->  Abs (   630,   668)
+	 32: Rel (   -28,   -37)  ->  Abs (   602,   631)
+	 33: Rel (   -38,   -50)  ->  Abs (   564,   581)
+	 34: Rel (   -77,   -36)  ->  Abs (   487,   545)
+	 35: Rel (   117,   -31)  ->  Abs (   604,   514)
+	 36: Rel (   111,  -185)  ->  Abs (   715,   329)
+	 37: Rel (   109,  -181)  ->  Abs (   824,   148)
+	 38: Rel (    62,     0)  ->  Abs (   886,   148)
+
+	Glyph 1302: off = 0x00033016, len = 426
+	  numberOfContours:	1
+	  xMin:			161
+	  yMin:			0
+	  xMax:			1186
+	  yMax:			1467
+
+	EndPoints
+	---------
+	  0:  43
+
+	  Length of Instructions:	292
+	00000: PUSHB[7]              4    38     1    22    38    36    38 
+	00008: PUSHW[1]            -28 
+	00011: NPUSHB      (56):    13    16     6    85    38    32    20    22    20    20 
+	                            20    22    73    20    89    20   105    20     3   134 
+	                            36     1    20    36    30    18     5    42     1     3 
+	                             1    18    13    16     6    85     1    32     0    42 
+	                            20     0     0    42     3     0    41     5    10    11 
+	                            12     2    85     5    17     6 
+	00069: PUSHW[1]            -18 
+	00072: NPUSHB      (23):    16    16     2    85     6    10    11    12     2    85 
+	                             6     6     9    30    15     0     1     0    45    14 
+	                             9    32    11 
+	00097: PUSHW[1]            -26 
+	00100: PUSHB[5]             16    16     2    85    11 
+	00106: PUSHW[1]            -10 
+	00109: PUSHB[5]             15    15     2    85    11 
+	00115: PUSHW[1]            -10 
+	00118: PUSHB[5]             13    13     2    85    11 
+	00124: PUSHW[1]             -6 
+	00127: PUSHB[5]             12    12     2    85    11 
+	00133: PUSHW[1]             -8 
+	00136: PUSHB[5]             12    12     6    85    11 
+	00142: PUSHW[1]            -16 
+	00145: PUSHB[5]             13    13     6    85    11 
+	00151: PUSHW[1]            -12 
+	00154: NPUSHB      (49):    15    15     6    85    32    11     1    11    93    44 
+	                            38    36     9    33    30    22    14    27    13    42 
+	                             1    41     9    20    19    16     3    17    17    13 
+	                            14    30     9     7     4     3     3     9     6     9 
+	                             6     9    10    13     2     0     1    10     8 
+	00205: SVTCA[y-axis] 
+	00206: MIAP[rd+ci] 
+	00207: MDRP[srp0,nmd,nrd,0] 
+	00208: MDRP[nrp0,nmd,nrd,0] 
+	00209: MIAP[rd+ci] 
+	00210: SRP2       
+	00211: IP         
+	00212: IP         
+	00213: MDAP[rd]   
+	00214: MDAP[rd]   
+	00215: SRP2       
+	00216: SLOOP      
+	00217: IP         
+	00218: SRP0       
+	00219: MIRP[nrp0,md,rd,1] 
+	00220: SRP1       
+	00221: IP         
+	00222: MDAP[rd]   
+	00223: SLOOP      
+	00224: IP         
+	00225: SRP1       
+	00226: IP         
+	00227: SRP1       
+	00228: IP         
+	00229: SRP0       
+	00230: MDRP[srp0,nmd,rd,0] 
+	00231: SRP1       
+	00232: IP         
+	00233: MIRP[nrp0,md,rd,1] 
+	00234: SRP1       
+	00235: IP         
+	00236: IP         
+	00237: SVTCA[x-axis] 
+	00238: SRP0       
+	00239: MIRP[srp0,nmd,rd,2] 
+	00240: DELTAP1    
+	00241: CALL       
+	00242: CALL       
+	00243: CALL       
+	00244: CALL       
+	00245: CALL       
+	00246: CALL       
+	00247: CALL       
+	00248: MIRP[srp0,md,rd,1] 
+	00249: MDRP[nrp0,nmd,nrd,0] 
+	00250: SRP0       
+	00251: MDRP[srp0,nmd,rd,2] 
+	00252: DELTAP1    
+	00253: MDRP[nrp0,nmd,rd,2] 
+	00254: SRP1       
+	00255: IP         
+	00256: MDAP[rd]   
+	00257: CALL       
+	00258: CALL       
+	00259: MDRP[nrp0,nmd,nrd,0] 
+	00260: MDRP[nrp0,md,rd,1] 
+	00261: CALL       
+	00262: SHP[rp2,zp1] 
+	00263: SRP1       
+	00264: IP         
+	00265: SDPVTL[1]  
+	00266: SRP0       
+	00267: CALL       
+	00268: CALL       
+	00269: SDPVTL[1]  
+	00270: RDTG       
+	00271: MDRP[nrp0,nmd,rd,0] 
+	00272: SVTCA[x-axis] 
+	00273: SRP0       
+	00274: MDRP[nrp0,nmd,nrd,0] 
+	00275: SRP1       
+	00276: IP         
+	00277: IP         
+	00278: DELTAP1    
+	00279: DELTAP1    
+	00280: SDPVTL[1]  
+	00281: RTG        
+	00282: SRP0       
+	00283: CALL       
+	00284: CALL       
+	00285: SDPVTL[1]  
+	00286: RDTG       
+	00287: MDRP[nrp0,nmd,rd,0] 
+	00288: SVTCA[x-axis] 
+	00289: DELTAP1    
+	00290: IUP[y]     
+	00291: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:                              X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual               Y-Short X-Short On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+	 12:        XDual                         On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual                         On
+	 15:  YDual XDual                 X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:        XDual                         On
+	 18:  YDual XDual                 X-Short On
+	 19:        XDual                         On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short On
+	 30:        XDual         Y-Short         On
+	 31:  YDual                       X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:                      Y-Short X-Short On
+	 36:                      Y-Short X-Short Off
+	 37:                      Y-Short X-Short On
+	 38:                      Y-Short X-Short Off
+	 39:                      Y-Short X-Short On
+	 40:                      Y-Short X-Short Off
+	 41:                      Y-Short X-Short On
+	 42:        XDual         Y-Short X-Short Off
+	 43:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1186,     0)  ->  Abs (  1186,     0)
+	  1: Rel (  -241,     0)  ->  Abs (   945,     0)
+	  2: Rel (  -245,   398)  ->  Abs (   700,   398)
+	  3: Rel (   -58,    95)  ->  Abs (   642,   493)
+	  4: Rel (   -47,    60)  ->  Abs (   595,   553)
+	  5: Rel (     0,  -314)  ->  Abs (   595,   239)
+	  6: Rel (  -120,     0)  ->  Abs (   475,   239)
+	  7: Rel (     0,   423)  ->  Abs (   475,   662)
+	  8: Rel (   -51,    24)  ->  Abs (   424,   686)
+	  9: Rel (   -69,     0)  ->  Abs (   355,   686)
+	 10: Rel (     0,  -686)  ->  Abs (   355,     0)
+	 11: Rel (  -194,     0)  ->  Abs (   161,     0)
+	 12: Rel (     0,  1466)  ->  Abs (   161,  1466)
+	 13: Rel (   194,     0)  ->  Abs (   355,  1466)
+	 14: Rel (     0,  -642)  ->  Abs (   355,   824)
+	 15: Rel (    71,     0)  ->  Abs (   426,   824)
+	 16: Rel (    49,    15)  ->  Abs (   475,   839)
+	 17: Rel (     0,   403)  ->  Abs (   475,  1242)
+	 18: Rel (   120,     0)  ->  Abs (   595,  1242)
+	 19: Rel (     0,  -294)  ->  Abs (   595,   948)
+	 20: Rel (    38,    65)  ->  Abs (   633,  1013)
+	 21: Rel (    47,   110)  ->  Abs (   680,  1123)
+	 22: Rel (    55,   130)  ->  Abs (   735,  1253)
+	 23: Rel (    26,    42)  ->  Abs (   761,  1295)
+	 24: Rel (    54,    88)  ->  Abs (   815,  1383)
+	 25: Rel (    78,    44)  ->  Abs (   893,  1427)
+	 26: Rel (    72,    40)  ->  Abs (   965,  1467)
+	 27: Rel (    89,     0)  ->  Abs (  1054,  1467)
+	 28: Rel (   112,     0)  ->  Abs (  1166,  1467)
+	 29: Rel (     6,    -2)  ->  Abs (  1172,  1465)
+	 30: Rel (     0,  -168)  ->  Abs (  1172,  1297)
+	 31: Rel (   -13,     0)  ->  Abs (  1159,  1297)
+	 32: Rel (   -52,     2)  ->  Abs (  1107,  1299)
+	 33: Rel (   -13,     0)  ->  Abs (  1094,  1299)
+	 34: Rel (  -103,     0)  ->  Abs (   991,  1299)
+	 35: Rel (   -57,   -71)  ->  Abs (   934,  1228)
+	 36: Rel (   -32,   -39)  ->  Abs (   902,  1189)
+	 37: Rel (   -51,  -127)  ->  Abs (   851,  1062)
+	 38: Rel (   -55,  -139)  ->  Abs (   796,   923)
+	 39: Rel (   -34,   -49)  ->  Abs (   762,   874)
+	 40: Rel (   -57,   -83)  ->  Abs (   705,   791)
+	 41: Rel (  -101,   -41)  ->  Abs (   604,   750)
+	 42: Rel (   142,   -39)  ->  Abs (   746,   711)
+	 43: Rel (   138,  -223)  ->  Abs (   884,   488)
+
+	Glyph 1303: off = 0x000331C0, len = 434
+	  numberOfContours:	1
+	  xMin:			134
+	  yMin:			0
+	  xMax:			912
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  40
+
+	  Length of Instructions:	308
+	00000: PUSHB[7]            105    21     1    22    35    33    35 
+	00008: PUSHW[1]            -18 
+	00011: NPUSHB      (74):    13    17     6    85    35    37    20    22    20    20 
+	                            20    22   191    33     1   235    33     1   159    33 
+	                           223    33     2    20    33    29    19     5    39     1 
+	                             3     1     8    15    16     6    85     1    37     0 
+	                            39    20     0     0    39     3     0    38     5    16 
+	                             6     6    11    14     2    85     6     6     9   175 
+	                            29   191    29     2    29   207     0     1     0    42 
+	                            14     9    37    11 
+	00087: PUSHW[1]             -8 
+	00090: PUSHB[5]             16    16     2    85    11 
+	00096: PUSHW[1]             -6 
+	00099: NPUSHB      (17):    14    14     2    85    11     6    12    12     2    85 
+	                            11     6    11    11     2    85    11 
+	00118: PUSHW[1]            -10 
+	00121: PUSHB[5]             16    16     6    85    11 
+	00127: PUSHW[1]            -18 
+	00130: PUSHB[5]             15    15     6    85    11 
+	00136: PUSHW[1]             -4 
+	00139: NPUSHB      (59):    13    13     6    85    11    10    12    12     6    85 
+	                             0    11    32    11    48    11     3    11    78    41 
+	                            35    33     9    29    43    22    14    28    13    39 
+	                             0    38     9    20    19    16     3    17    17    13 
+	                            14    43     9     7     4     3     3     9     6     9 
+	                             6     9    10    13     6     0     1    10    10 
+	00200: SVTCA[y-axis] 
+	00201: MIAP[rd+ci] 
+	00202: MDRP[srp0,nmd,nrd,0] 
+	00203: MDRP[nrp0,nmd,nrd,0] 
+	00204: MIAP[rd+ci] 
+	00205: SRP2       
+	00206: IP         
+	00207: IP         
+	00208: MDAP[rd]   
+	00209: MDAP[rd]   
+	00210: SRP2       
+	00211: SLOOP      
+	00212: IP         
+	00213: SRP0       
+	00214: MIRP[nrp0,md,rd,1] 
+	00215: SRP1       
+	00216: IP         
+	00217: MDAP[rd]   
+	00218: SLOOP      
+	00219: IP         
+	00220: SRP1       
+	00221: IP         
+	00222: SRP1       
+	00223: IP         
+	00224: SRP0       
+	00225: MDRP[srp0,nmd,nrd,0] 
+	00226: SRP1       
+	00227: IP         
+	00228: MIRP[nrp0,md,rd,1] 
+	00229: SRP1       
+	00230: IP         
+	00231: IP         
+	00232: SVTCA[x-axis] 
+	00233: SRP0       
+	00234: MIRP[srp0,nmd,rd,2] 
+	00235: DELTAP1    
+	00236: CALL       
+	00237: CALL       
+	00238: CALL       
+	00239: CALL       
+	00240: CALL       
+	00241: CALL       
+	00242: CALL       
+	00243: CALL       
+	00244: MIRP[srp0,md,rd,1] 
+	00245: MDRP[nrp0,nmd,nrd,0] 
+	00246: SRP0       
+	00247: MDRP[srp0,nmd,rd,1] 
+	00248: DELTAP3    
+	00249: MDRP[nrp0,nmd,rd,2] 
+	00250: DELTAP3    
+	00251: SRP1       
+	00252: IP         
+	00253: MDAP[rd]   
+	00254: CALL       
+	00255: MDRP[nrp0,nmd,nrd,0] 
+	00256: MDRP[nrp0,md,rd,1] 
+	00257: SHP[rp2,zp1] 
+	00258: SRP1       
+	00259: IP         
+	00260: SDPVTL[1]  
+	00261: SRP0       
+	00262: CALL       
+	00263: CALL       
+	00264: SDPVTL[1]  
+	00265: RDTG       
+	00266: MDRP[nrp0,nmd,rd,0] 
+	00267: SVTCA[x-axis] 
+	00268: SRP0       
+	00269: MDRP[nrp0,nmd,nrd,0] 
+	00270: SRP1       
+	00271: IP         
+	00272: IP         
+	00273: DELTAP1    
+	00274: DELTAP1    
+	00275: DELTAP3    
+	00276: SDPVTL[1]  
+	00277: RTG        
+	00278: SRP0       
+	00279: CALL       
+	00280: CALL       
+	00281: SDPVTL[1]  
+	00282: RDTG       
+	00283: MDRP[nrp0,nmd,rd,0] 
+	00284: PUSHB[2]              6     2 
+	00287: RS         
+	00288: EQ         
+	00289: IF         
+	00290: NPUSHB       (9):    45     6    34    17    61     6    50    17     4 
+	00301: SVTCA[y-axis] 
+	00302: DELTAP1    
+	00303: EIF        
+	00304: IUP[y]     
+	00305: IUP[x]     
+	00306: SVTCA[x-axis] 
+	00307: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:                              X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual               Y-Short X-Short On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+	 12:        XDual                         On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual                         On
+	 15:  YDual XDual                 X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:        XDual                         On
+	 18:  YDual XDual                 X-Short On
+	 19:        XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short On
+	 29:        XDual         Y-Short         On
+	 30:  YDual               Y-Short X-Short On
+	 31:  YDual               Y-Short X-Short Off
+	 32:                      Y-Short X-Short On
+	 33:                      Y-Short X-Short Off
+	 34:                      Y-Short X-Short On
+	 35:                      Y-Short X-Short Off
+	 36:                      Y-Short X-Short On
+	 37:                      Y-Short X-Short Off
+	 38:                      Y-Short X-Short On
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   912,     0)  ->  Abs (   912,     0)
+	  1: Rel (  -198,     0)  ->  Abs (   714,     0)
+	  2: Rel (  -192,   329)  ->  Abs (   522,   329)
+	  3: Rel (   -14,    24)  ->  Abs (   508,   353)
+	  4: Rel (   -17,    25)  ->  Abs (   491,   378)
+	  5: Rel (     0,  -214)  ->  Abs (   491,   164)
+	  6: Rel (   -99,     0)  ->  Abs (   392,   164)
+	  7: Rel (     0,   311)  ->  Abs (   392,   475)
+	  8: Rel (   -35,    16)  ->  Abs (   357,   491)
+	  9: Rel (   -43,     0)  ->  Abs (   314,   491)
+	 10: Rel (     0,  -491)  ->  Abs (   314,     0)
+	 11: Rel (  -180,     0)  ->  Abs (   134,     0)
+	 12: Rel (     0,  1062)  ->  Abs (   134,  1062)
+	 13: Rel (   180,     0)  ->  Abs (   314,  1062)
+	 14: Rel (     0,  -459)  ->  Abs (   314,   603)
+	 15: Rel (    45,     0)  ->  Abs (   359,   603)
+	 16: Rel (    33,    10)  ->  Abs (   392,   613)
+	 17: Rel (     0,   324)  ->  Abs (   392,   937)
+	 18: Rel (    99,     0)  ->  Abs (   491,   937)
+	 19: Rel (     0,  -209)  ->  Abs (   491,   728)
+	 20: Rel (    21,    43)  ->  Abs (   512,   771)
+	 21: Rel (    24,    57)  ->  Abs (   536,   828)
+	 22: Rel (    40,    96)  ->  Abs (   576,   924)
+	 23: Rel (    20,    32)  ->  Abs (   596,   956)
+	 24: Rel (    44,    73)  ->  Abs (   640,  1029)
+	 25: Rel (    58,    19)  ->  Abs (   698,  1048)
+	 26: Rel (    43,    14)  ->  Abs (   741,  1062)
+	 27: Rel (    95,     0)  ->  Abs (   836,  1062)
+	 28: Rel (    36,     0)  ->  Abs (   872,  1062)
+	 29: Rel (     0,  -149)  ->  Abs (   872,   913)
+	 30: Rel (   -50,     1)  ->  Abs (   822,   914)
+	 31: Rel (   -75,     1)  ->  Abs (   747,   915)
+	 32: Rel (   -31,   -40)  ->  Abs (   716,   875)
+	 33: Rel (   -10,   -13)  ->  Abs (   706,   862)
+	 34: Rel (   -39,  -100)  ->  Abs (   667,   762)
+	 35: Rel (   -41,  -104)  ->  Abs (   626,   658)
+	 36: Rel (   -34,   -40)  ->  Abs (   592,   618)
+	 37: Rel (   -41,   -48)  ->  Abs (   551,   570)
+	 38: Rel (   -54,   -25)  ->  Abs (   497,   545)
+	 39: Rel (   106,   -28)  ->  Abs (   603,   517)
+	 40: Rel (   112,  -188)  ->  Abs (   715,   329)
+
+	Glyph 1304: off = 0x00033372, len = 232
+	  numberOfContours:	1
+	  xMin:			164
+	  yMin:			-407
+	  xMax:			1448
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	174
+	00000: NPUSHB      (20):    11     4    32    14     2    32     0    12    12    12 
+	                             2    85     0    10    12    13     6    85     0    14 
+	00022: PUSHW[1]            -18 
+	00025: PUSHB[5]             15    15     2    85    14 
+	00031: PUSHW[1]            -14 
+	00034: NPUSHB      (11):    13    13     2    85    14    16    12    12     2    85 
+	                            14 
+	00047: PUSHW[1]            -14 
+	00050: NPUSHB      (22):    11    11     6    85    14    10    15    15     6    85 
+	                            14    17    10     5    32     7    32    16    16     2 
+	                            85     7 
+	00074: PUSHW[1]            -10 
+	00077: PUSHB[5]             15    15     2    85     7 
+	00083: PUSHW[1]            -10 
+	00086: PUSHB[5]             13    13     2    85     7 
+	00092: PUSHW[1]             -6 
+	00095: PUSHB[5]             12    12     2    85     7 
+	00101: PUSHW[1]             -9 
+	00104: PUSHB[5]             12    13     6    85     7 
+	00110: PUSHW[1]            -14 
+	00113: NPUSHB      (21):    15    16     6    85     7    93    16    11    30     5 
+	                             5     6    12     9     2    14    30     3     1     6 
+	                             8 
+	00136: SVTCA[y-axis] 
+	00137: MIAP[rd+ci] 
+	00138: MDRP[nrp0,md,rd,2] 
+	00139: MDRP[srp0,nmd,nrd,0] 
+	00140: MIRP[nrp0,md,rd,1] 
+	00141: MIAP[rd+ci] 
+	00142: MDRP[nrp0,nmd,nrd,0] 
+	00143: SRP2       
+	00144: IP         
+	00145: MDAP[rd]   
+	00146: MIRP[nrp0,md,rd,1] 
+	00147: SVTCA[x-axis] 
+	00148: SRP0       
+	00149: MIRP[srp0,nmd,rd,2] 
+	00150: CALL       
+	00151: CALL       
+	00152: CALL       
+	00153: CALL       
+	00154: CALL       
+	00155: CALL       
+	00156: MIRP[srp0,md,rd,1] 
+	00157: MDRP[nrp0,nmd,nrd,0] 
+	00158: SRP0       
+	00159: MDRP[srp0,nmd,rd,0] 
+	00160: CALL       
+	00161: CALL       
+	00162: CALL       
+	00163: CALL       
+	00164: CALL       
+	00165: MDRP[srp0,md,rd,1] 
+	00166: CALL       
+	00167: CALL       
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: SRP0       
+	00170: MIRP[srp0,md,rd,1] 
+	00171: MDRP[nrp0,nmd,nrd,0] 
+	00172: IUP[y]     
+	00173: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:        XDual                         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                       X-Short On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual                         On
+	 11:  YDual                               On
+	 12:        XDual                         On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual                         On
+	 15:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1448,  -407)  ->  Abs (  1448,  -407)
+	  1: Rel (  -172,     0)  ->  Abs (  1276,  -407)
+	  2: Rel (     0,   407)  ->  Abs (  1276,     0)
+	  3: Rel (  -156,     0)  ->  Abs (  1120,     0)
+	  4: Rel (     0,   691)  ->  Abs (  1120,   691)
+	  5: Rel (  -762,     0)  ->  Abs (   358,   691)
+	  6: Rel (     0,  -691)  ->  Abs (   358,     0)
+	  7: Rel (  -194,     0)  ->  Abs (   164,     0)
+	  8: Rel (     0,  1466)  ->  Abs (   164,  1466)
+	  9: Rel (   194,     0)  ->  Abs (   358,  1466)
+	 10: Rel (     0,  -602)  ->  Abs (   358,   864)
+	 11: Rel (   762,     0)  ->  Abs (  1120,   864)
+	 12: Rel (     0,   602)  ->  Abs (  1120,  1466)
+	 13: Rel (   194,     0)  ->  Abs (  1314,  1466)
+	 14: Rel (     0, -1293)  ->  Abs (  1314,   173)
+	 15: Rel (   134,     0)  ->  Abs (  1448,   173)
+
+	Glyph 1305: off = 0x0003345A, len = 310
+	  numberOfContours:	1
+	  xMin:			136
+	  yMin:			-301
+	  xMax:			1111
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	251
+	00000: NPUSHB      (44):    11     3    37    14     2    37    17    64    11    11 
+	                             2    85     0    20    13    13     2    85     0    12 
+	                            11    11     2    85     0    12    15    15     6    85 
+	                             0    14    12    13     6    85     0    10    11    11 
+	                             6    85     0    14 
+	00046: PUSHW[1]             -6 
+	00049: PUSHB[5]             17    17     2    85    14 
+	00055: PUSHW[1]            -20 
+	00058: NPUSHB      (11):    16    16     2    85    14    20    14    14     2    85 
+	                            14 
+	00071: PUSHW[1]            -20 
+	00074: NPUSHB      (17):    13    13     2    85    14    10    12    12     2    85 
+	                            14    34    11    11     2    85    14 
+	00093: PUSHW[1]            -33 
+	00096: PUSHB[5]             16    16     6    85    14 
+	00102: PUSHW[1]            -10 
+	00105: PUSHB[5]             12    13     6    85    14 
+	00111: PUSHW[1]             -8 
+	00114: NPUSHB      (10):    11    11     6    85    14    17    10     5    37     7 
+	00126: PUSHW[1]            -10 
+	00129: PUSHB[5]             17    17     2    85     7 
+	00135: PUSHW[1]             -6 
+	00138: PUSHB[5]             16    16     2    85     7 
+	00144: PUSHW[1]             -6 
+	00147: NPUSHB      (17):    14    14     2    85     7     4    12    12     2    85 
+	                             7    10    11    11     2    85     7 
+	00166: PUSHW[1]            -13 
+	00169: NPUSHB      (32):    15    16     6    85     7    10    11    11     6    85 
+	                             0     7    32     7     2     7    78    16    11    43 
+	                             5     5     6    12     9     6    15    43     3     1 
+	                             6     8 
+	00203: SVTCA[y-axis] 
+	00204: MIAP[rd+ci] 
+	00205: MDRP[nrp0,md,rd,2] 
+	00206: MDRP[srp0,nmd,nrd,0] 
+	00207: MIRP[nrp0,md,rd,1] 
+	00208: MIAP[rd+ci] 
+	00209: MDRP[nrp0,nmd,nrd,0] 
+	00210: SRP2       
+	00211: IP         
+	00212: MDAP[rd]   
+	00213: MIRP[nrp0,md,rd,1] 
+	00214: SVTCA[x-axis] 
+	00215: SRP0       
+	00216: MIRP[srp0,nmd,rd,2] 
+	00217: DELTAP1    
+	00218: CALL       
+	00219: CALL       
+	00220: CALL       
+	00221: CALL       
+	00222: CALL       
+	00223: CALL       
+	00224: CALL       
+	00225: MIRP[srp0,md,rd,1] 
+	00226: MDRP[nrp0,nmd,nrd,0] 
+	00227: SRP0       
+	00228: MDRP[srp0,nmd,rd,0] 
+	00229: CALL       
+	00230: CALL       
+	00231: CALL       
+	00232: CALL       
+	00233: CALL       
+	00234: CALL       
+	00235: CALL       
+	00236: CALL       
+	00237: CALL       
+	00238: MDRP[srp0,md,rd,1] 
+	00239: CALL       
+	00240: CALL       
+	00241: CALL       
+	00242: CALL       
+	00243: CALL       
+	00244: CALL       
+	00245: MIRP[nrp0,md,rd,1] 
+	00246: SRP0       
+	00247: MIRP[srp0,md,rd,1] 
+	00248: MDRP[nrp0,nmd,nrd,0] 
+	00249: IUP[y]     
+	00250: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:        XDual                         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                       X-Short On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual                         On
+	 11:  YDual                               On
+	 12:        XDual                         On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual                         On
+	 15:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1111,  -301)  ->  Abs (  1111,  -301)
+	  1: Rel (  -148,     0)  ->  Abs (   963,  -301)
+	  2: Rel (     0,   301)  ->  Abs (   963,     0)
+	  3: Rel (  -148,     0)  ->  Abs (   815,     0)
+	  4: Rel (     0,   471)  ->  Abs (   815,   471)
+	  5: Rel (  -499,     0)  ->  Abs (   316,   471)
+	  6: Rel (     0,  -471)  ->  Abs (   316,     0)
+	  7: Rel (  -180,     0)  ->  Abs (   136,     0)
+	  8: Rel (     0,  1062)  ->  Abs (   136,  1062)
+	  9: Rel (   180,     0)  ->  Abs (   316,  1062)
+	 10: Rel (     0,  -442)  ->  Abs (   316,   620)
+	 11: Rel (   499,     0)  ->  Abs (   815,   620)
+	 12: Rel (     0,   442)  ->  Abs (   815,  1062)
+	 13: Rel (   180,     0)  ->  Abs (   995,  1062)
+	 14: Rel (     0,  -914)  ->  Abs (   995,   148)
+	 15: Rel (   116,     0)  ->  Abs (  1111,   148)
+
+	Glyph 1306: off = 0x00033590, len = 248
+	  numberOfContours:	1
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1133
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  12
+
+	  Length of Instructions:	186
+	00000: PUSHW[2]              9   -22 
+	00005: PUSHB[5]             13    16     2    85     9 
+	00011: PUSHW[1]            -12 
+	00014: NPUSHB      (58):    13    16     6    85     9    12    16    16     6    85 
+	                             9    12     9     6    12    32     0     1    20     0 
+	                             0     1     9     6     6    18    13    13     2    85 
+	                             6     8    12    13     6    85     6    32     5     4 
+	                            20     5     4   111     5     1     5     4     0     1 
+	                            32     4     4    16    16     2    85     4 
+	00074: PUSHW[1]            -28 
+	00077: PUSHB[5]             15    15     2    85     4 
+	00083: PUSHW[1]            -12 
+	00086: NPUSHB      (11):    13    13     2    85     4     6    12    12     2    85 
+	                             4 
+	00099: PUSHW[1]             -4 
+	00102: PUSHB[5]             12    13     6    85     4 
+	00108: PUSHW[1]             -6 
+	00111: NPUSHB      (24):    16    16     6    85     4     0    12     6     1     9 
+	                             6    38     4    54     4     2     4     4     3     5 
+	                             6     2     3     8 
+	00137: SVTCA[y-axis] 
+	00138: MIAP[rd+ci] 
+	00139: MIAP[rd+ci] 
+	00140: MDRP[nrp0,nmd,nrd,0] 
+	00141: SRP2       
+	00142: IP         
+	00143: MDAP[rd]   
+	00144: DELTAP1    
+	00145: SRP2       
+	00146: IP         
+	00147: MDRP[nrp0,nmd,nrd,0] 
+	00148: SRP0       
+	00149: MDRP[srp0,nmd,nrd,0] 
+	00150: MDRP[nrp0,nmd,nrd,0] 
+	00151: SVTCA[x-axis] 
+	00152: MDAP[rd]   
+	00153: CALL       
+	00154: CALL       
+	00155: CALL       
+	00156: CALL       
+	00157: CALL       
+	00158: CALL       
+	00159: MIRP[srp0,md,rd,1] 
+	00160: MDRP[nrp0,md,rd,1] 
+	00161: SRP0       
+	00162: MDRP[srp0,md,rd,1] 
+	00163: DELTAP1    
+	00164: SDPVTL[1]  
+	00165: CALL       
+	00166: CALL       
+	00167: CALL       
+	00168: RDTG       
+	00169: SRP0       
+	00170: MDRP[nrp0,nmd,rd,0] 
+	00171: SDPVTL[1]  
+	00172: RTG        
+	00173: SRP0       
+	00174: CALL       
+	00175: SFVTL[=p1,p2] 
+	00176: RDTG       
+	00177: SRP0       
+	00178: MDRP[nrp0,nmd,rd,0] 
+	00179: SVTCA[x-axis] 
+	00180: CALL       
+	00181: SVTCA[y-axis] 
+	00182: CALL       
+	00183: CALL       
+	00184: IUP[y]     
+	00185: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:        XDual                         On
+	  5:                                      On
+	  6:  YDual XDual                 X-Short On
+	  7:                                      On
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (  1133,  1466)  ->  Abs (  1133,  1466)
+	  1: Rel (  -476,  -840)  ->  Abs (   657,   626)
+	  2: Rel (     0,  -626)  ->  Abs (   657,     0)
+	  3: Rel (  -180,     0)  ->  Abs (   477,     0)
+	  4: Rel (     0,   626)  ->  Abs (   477,   626)
+	  5: Rel (  -480,   840)  ->  Abs (    -3,  1466)
+	  6: Rel (   200,     0)  ->  Abs (   197,  1466)
+	  7: Rel (   290,  -516)  ->  Abs (   487,   950)
+	  8: Rel (    48,   -85)  ->  Abs (   535,   865)
+	  9: Rel (    28,   -69)  ->  Abs (   563,   796)
+	 10: Rel (    25,    57)  ->  Abs (   588,   853)
+	 11: Rel (    57,   106)  ->  Abs (   645,   959)
+	 12: Rel (   274,   507)  ->  Abs (   919,  1466)
+
+	Glyph 1307: off = 0x00033688, len = 274
+	  numberOfContours:	1
+	  xMin:			20
+	  yMin:			-407
+	  xMax:			1005
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  12
+
+	  Length of Instructions:	214
+	00000: PUSHW[2]              9   -18 
+	00005: NPUSHB      (11):    15    17     2    85     9    10    13    13     2    85 
+	                             9 
+	00018: PUSHW[1]            -20 
+	00021: PUSHB[5]              9    11     2    85     9 
+	00027: PUSHW[1]            -12 
+	00030: NPUSHB      (61):    14    16     6    85     9    11    11    11     6    85 
+	                             9    12     9     6    12    15    15    15     6    85 
+	                            12    37     0     1    20     0     0     1     9     6 
+	                             6     4    11    11     6    85     6    15    13    13 
+	                             6    85     6    37     5     4    20     5     4     5 
+	                             4     0     1    37     4    18    17    17     2    85 
+	                             4 
+	00093: PUSHW[1]            -16 
+	00096: PUSHB[5]             16    16     2    85     4 
+	00102: PUSHW[1]             -8 
+	00105: NPUSHB      (17):    15    15     2    85     4    10    13    13     2    85 
+	                             4    10     9     9     2    85     4 
+	00124: PUSHW[1]             -4 
+	00127: PUSHB[5]             13    13     6    85     4 
+	00133: PUSHW[1]             -2 
+	00136: NPUSHB      (27):    16    16     6    85     4     9     4    12     5     0 
+	                             6     6     1    36     4    52     4    68     4   116 
+	                             4   132     4     5     4    10     2 
+	00165: SVTCA[y-axis] 
+	00166: MDAP[rd]   
+	00167: MIAP[rd+ci] 
+	00168: DELTAP1    
+	00169: MDRP[nrp0,nmd,nrd,0] 
+	00170: MIAP[rd+ci] 
+	00171: MDRP[nrp0,nmd,nrd,0] 
+	00172: MDRP[nrp0,nmd,nrd,0] 
+	00173: MDRP[nrp0,nmd,nrd,0] 
+	00174: SRP2       
+	00175: IP         
+	00176: SVTCA[x-axis] 
+	00177: MDAP[rd]   
+	00178: CALL       
+	00179: CALL       
+	00180: CALL       
+	00181: CALL       
+	00182: CALL       
+	00183: CALL       
+	00184: CALL       
+	00185: MIRP[srp0,md,rd,1] 
+	00186: MDRP[nrp0,md,rd,1] 
+	00187: SRP0       
+	00188: MDRP[srp0,md,rd,1] 
+	00189: SDPVTL[1]  
+	00190: CALL       
+	00191: CALL       
+	00192: CALL       
+	00193: RDTG       
+	00194: SRP0       
+	00195: MDRP[nrp0,nmd,rd,0] 
+	00196: SDPVTL[1]  
+	00197: RTG        
+	00198: SRP0       
+	00199: CALL       
+	00200: CALL       
+	00201: SFVTL[=p1,p2] 
+	00202: RDTG       
+	00203: SRP0       
+	00204: MDRP[nrp0,nmd,rd,0] 
+	00205: SVTCA[x-axis] 
+	00206: CALL       
+	00207: SVTCA[y-axis] 
+	00208: CALL       
+	00209: CALL       
+	00210: CALL       
+	00211: CALL       
+	00212: IUP[y]     
+	00213: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:        XDual                         On
+	  5:                                      On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                 X-Short On
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:        XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1005,  1062)  ->  Abs (  1005,  1062)
+	  1: Rel (  -402, -1062)  ->  Abs (   603,     0)
+	  2: Rel (     0,  -407)  ->  Abs (   603,  -407)
+	  3: Rel (  -180,     0)  ->  Abs (   423,  -407)
+	  4: Rel (     0,   407)  ->  Abs (   423,     0)
+	  5: Rel (  -403,  1062)  ->  Abs (    20,  1062)
+	  6: Rel (   194,     0)  ->  Abs (   214,  1062)
+	  7: Rel (   221,  -615)  ->  Abs (   435,   447)
+	  8: Rel (    46,  -127)  ->  Abs (   481,   320)
+	  9: Rel (    31,  -119)  ->  Abs (   512,   201)
+	 10: Rel (    29,   109)  ->  Abs (   541,   310)
+	 11: Rel (    49,   137)  ->  Abs (   590,   447)
+	 12: Rel (   221,   615)  ->  Abs (   811,  1062)
+
+	Glyph 1308: off = 0x0003379A, len = 286
+	  numberOfContours:	1
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1133
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	209
+	00000: PUSHW[2]             15   -22 
+	00005: PUSHB[5]             13    17     2    85    15 
+	00011: PUSHW[1]            -18 
+	00014: NPUSHB      (72):    15    16     6    85     1     0     4    15    18    15 
+	                            12    18     8    16    17     2    85    18     8    13 
+	                            16     6    85    18    32     0     4    20     0     0 
+	                             4    10    11     7    15    12    12    18    13    13 
+	                             2    85    12     4    12    13     6    85    12    32 
+	                            11     7    20    11     7     9    11     7     1     4 
+	                            18     2     0     4    32     7     4    16    16     2 
+	                            85     7 
+	00088: PUSHW[1]            -28 
+	00091: PUSHB[5]             15    15     2    85     7 
+	00097: PUSHW[1]            -12 
+	00100: NPUSHB      (11):    13    13     2    85     7     6    12    12     2    85 
+	                             7 
+	00113: PUSHW[1]             -4 
+	00116: PUSHB[5]             16    16     6    85     7 
+	00122: PUSHW[1]             -4 
+	00125: NPUSHB      (21):    12    13     6    85     7    15    12     2     9    30 
+	                             4     7     7     6    18    11     0    12     2     6 
+	                             8 
+	00148: SVTCA[y-axis] 
+	00149: MIAP[rd+ci] 
+	00150: MIAP[rd+ci] 
+	00151: MDRP[nrp0,nmd,nrd,0] 
+	00152: MDRP[nrp0,nmd,nrd,0] 
+	00153: MDRP[nrp0,nmd,nrd,0] 
+	00154: SRP2       
+	00155: IP         
+	00156: MDAP[rd]   
+	00157: MDRP[nrp0,nmd,nrd,0] 
+	00158: MIRP[srp0,md,rd,1] 
+	00159: MDRP[nrp0,nmd,nrd,0] 
+	00160: SRP2       
+	00161: IP         
+	00162: SVTCA[x-axis] 
+	00163: MDAP[rd]   
+	00164: CALL       
+	00165: CALL       
+	00166: CALL       
+	00167: CALL       
+	00168: CALL       
+	00169: CALL       
+	00170: MIRP[srp0,md,rd,1] 
+	00171: MDRP[srp0,md,rd,0] 
+	00172: MDRP[nrp0,nmd,rd,2] 
+	00173: SHP[rp1,zp0] 
+	00174: SRP2       
+	00175: IP         
+	00176: SRP0       
+	00177: MDRP[srp0,md,rd,0] 
+	00178: MDRP[nrp0,nmd,rd,2] 
+	00179: SDPVTL[1]  
+	00180: CALL       
+	00181: CALL       
+	00182: CALL       
+	00183: RDTG       
+	00184: SRP0       
+	00185: MDRP[nrp0,nmd,rd,0] 
+	00186: SVTCA[x-axis] 
+	00187: SRP1       
+	00188: SRP2       
+	00189: IP         
+	00190: SDPVTL[1]  
+	00191: RTG        
+	00192: SRP0       
+	00193: CALL       
+	00194: CALL       
+	00195: CALL       
+	00196: SFVTL[=p1,p2] 
+	00197: RDTG       
+	00198: SRP0       
+	00199: MDRP[nrp0,nmd,rd,0] 
+	00200: SVTCA[x-axis] 
+	00201: SRP1       
+	00202: SRP2       
+	00203: IP         
+	00204: SVTCA[y-axis] 
+	00205: CALL       
+	00206: CALL       
+	00207: IUP[y]     
+	00208: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+	  8:  YDual                               On
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual                               On
+	 11:                                      On
+	 12:  YDual XDual                 X-Short On
+	 13:                                      On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (  1133,  1466)  ->  Abs (  1133,  1466)
+	  1: Rel (  -405,  -711)  ->  Abs (   728,   755)
+	  2: Rel (   341,     0)  ->  Abs (  1069,   755)
+	  3: Rel (     0,  -148)  ->  Abs (  1069,   607)
+	  4: Rel (  -412,     0)  ->  Abs (   657,   607)
+	  5: Rel (     0,  -607)  ->  Abs (   657,     0)
+	  6: Rel (  -180,     0)  ->  Abs (   477,     0)
+	  7: Rel (     0,   607)  ->  Abs (   477,   607)
+	  8: Rel (  -415,     0)  ->  Abs (    62,   607)
+	  9: Rel (     0,   148)  ->  Abs (    62,   755)
+	 10: Rel (   341,     0)  ->  Abs (   403,   755)
+	 11: Rel (  -406,   711)  ->  Abs (    -3,  1466)
+	 12: Rel (   200,     0)  ->  Abs (   197,  1466)
+	 13: Rel (   290,  -516)  ->  Abs (   487,   950)
+	 14: Rel (    48,   -85)  ->  Abs (   535,   865)
+	 15: Rel (    28,   -69)  ->  Abs (   563,   796)
+	 16: Rel (    25,    57)  ->  Abs (   588,   853)
+	 17: Rel (    57,   106)  ->  Abs (   645,   959)
+	 18: Rel (   274,   507)  ->  Abs (   919,  1466)
+
+	Glyph 1309: off = 0x000338B8, len = 310
+	  numberOfContours:	1
+	  xMin:			20
+	  yMin:			-407
+	  xMax:			1005
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	234
+	00000: NPUSHB      (19):    38    13    70    13   118    13   134    13     4    38 
+	                            17    70    17   118    17   134    17     4    15 
+	00021: PUSHW[1]            -18 
+	00024: NPUSHB      (11):    15    17     2    85    15    10    13    13     2    85 
+	                            15 
+	00037: PUSHW[1]            -20 
+	00040: PUSHB[5]              9    11     2    85    15 
+	00046: PUSHW[1]            -30 
+	00049: NPUSHB      (71):    14    16     6    85    15    11    13    13     6    85 
+	                            15    11    11    11     6    85    15    18    15    12 
+	                            18    15    15    15     6    85    18    37     0     1 
+	                            20     0     0     1    15    12    12     4    11    11 
+	                             6    85    12    10    13    13     6    85    12    37 
+	                            11    10    20    11    10     9    11    10     2     0 
+	                             5     1    37     6    10    18    17    17     2    85 
+	                            10 
+	00122: PUSHW[1]            -16 
+	00125: PUSHB[5]             16    16     2    85    10 
+	00131: PUSHW[1]             -8 
+	00134: NPUSHB      (17):    15    15     2    85    10    10    13    13     2    85 
+	                            10    10     9     9     2    85    10 
+	00153: PUSHW[1]             -4 
+	00156: NPUSHB      (19):    13    13     6    85    10    15    10    18    11     0 
+	                            12     6     3     8    43     1    10    10     6 
+	00177: SVTCA[y-axis] 
+	00178: MDAP[rd]   
+	00179: MIAP[rd+ci] 
+	00180: MDRP[nrp0,nmd,nrd,0] 
+	00181: MIRP[srp0,md,rd,1] 
+	00182: MDRP[nrp0,nmd,nrd,0] 
+	00183: MIAP[rd+ci] 
+	00184: MDRP[nrp0,nmd,nrd,0] 
+	00185: MDRP[nrp0,nmd,nrd,0] 
+	00186: MDRP[nrp0,nmd,nrd,0] 
+	00187: SRP2       
+	00188: IP         
+	00189: SVTCA[x-axis] 
+	00190: MDAP[rd]   
+	00191: CALL       
+	00192: CALL       
+	00193: CALL       
+	00194: CALL       
+	00195: CALL       
+	00196: CALL       
+	00197: MDRP[nrp0,nmd,nrd,0] 
+	00198: MIRP[srp0,md,rd,1] 
+	00199: MDRP[nrp0,nmd,nrd,0] 
+	00200: MDRP[srp0,md,rd,1] 
+	00201: MDRP[nrp0,nmd,rd,2] 
+	00202: SRP0       
+	00203: MDRP[srp0,md,rd,1] 
+	00204: MDRP[nrp0,nmd,rd,2] 
+	00205: SDPVTL[1]  
+	00206: CALL       
+	00207: CALL       
+	00208: CALL       
+	00209: RDTG       
+	00210: SRP0       
+	00211: MDRP[nrp0,nmd,rd,0] 
+	00212: SDPVTL[1]  
+	00213: RTG        
+	00214: SRP0       
+	00215: CALL       
+	00216: CALL       
+	00217: SFVTL[=p1,p2] 
+	00218: RDTG       
+	00219: SRP0       
+	00220: MDRP[nrp0,nmd,rd,0] 
+	00221: SVTCA[x-axis] 
+	00222: CALL       
+	00223: CALL       
+	00224: SVTCA[y-axis] 
+	00225: CALL       
+	00226: CALL       
+	00227: CALL       
+	00228: CALL       
+	00229: IUP[y]     
+	00230: IUP[x]     
+	00231: SVTCA[y-axis] 
+	00232: DELTAP1    
+	00233: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+	  8:  YDual                               On
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual                               On
+	 11:                                      On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                 X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:        XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1005,  1062)  ->  Abs (  1005,  1062)
+	  1: Rel (  -402, -1062)  ->  Abs (   603,     0)
+	  2: Rel (   322,     0)  ->  Abs (   925,     0)
+	  3: Rel (     0,  -132)  ->  Abs (   925,  -132)
+	  4: Rel (  -322,     0)  ->  Abs (   603,  -132)
+	  5: Rel (     0,  -275)  ->  Abs (   603,  -407)
+	  6: Rel (  -180,     0)  ->  Abs (   423,  -407)
+	  7: Rel (     0,   275)  ->  Abs (   423,  -132)
+	  8: Rel (  -323,     0)  ->  Abs (   100,  -132)
+	  9: Rel (     0,   132)  ->  Abs (   100,     0)
+	 10: Rel (   323,     0)  ->  Abs (   423,     0)
+	 11: Rel (  -403,  1062)  ->  Abs (    20,  1062)
+	 12: Rel (   194,     0)  ->  Abs (   214,  1062)
+	 13: Rel (   221,  -615)  ->  Abs (   435,   447)
+	 14: Rel (    46,  -127)  ->  Abs (   481,   320)
+	 15: Rel (    31,  -119)  ->  Abs (   512,   201)
+	 16: Rel (    29,   109)  ->  Abs (   541,   310)
+	 17: Rel (    49,   137)  ->  Abs (   590,   447)
+	 18: Rel (   221,   615)  ->  Abs (   811,  1062)
+
+	Glyph 1310: off = 0x000339EE, len = 362
+	  numberOfContours:	1
+	  xMin:			9
+	  yMin:			-407
+	  xMax:			1353
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  23
+
+	  Length of Instructions:	264
+	00000: PUSHW[2]             16   -12 
+	00005: NPUSHB      (27):    11    11     2    85   105     3     1    68    21   116 
+	                            21   132    21     3    73    11     1    22    13     1 
+	                             6    14    12    17     2    85    16 
+	00034: PUSHW[1]            -14 
+	00037: PUSHB[5]             12    17     2    85    21 
+	00043: PUSHW[1]             -8 
+	00046: NPUSHB      (10):    12    17     2    85    11     8    12    17     2    85 
+	00058: PUSHB[2]              6     2 
+	00061: RS         
+	00062: EQ         
+	00063: IF         
+	00064: PUSHB[8]              2    32    23    23    10    25    24    16 
+	00073: PUSHW[1]            -24 
+	00076: NPUSHB      (21):    10    17    52     6    24    10    17    52     6    11 
+	                            21    16     4    10    12     3    10     8    19    12 
+	                             2 
+	00099: SVTCA[y-axis] 
+	00100: MIAP[rd+ci] 
+	00101: ALIGNRP    
+	00102: MIAP[rd+ci] 
+	00103: ALIGNRP    
+	00104: SRP1       
+	00105: SRP2       
+	00106: SLOOP      
+	00107: IP         
+	00108: CALL       
+	00109: CALL       
+	00110: SVTCA[x-axis] 
+	00111: SRP1       
+	00112: SRP2       
+	00113: IP         
+	00114: IP         
+	00115: MDAP[rd]   
+	00116: MIRP[nrp0,md,rd,1] 
+	00117: ELSE       
+	00118: NPUSHB      (48):     6     9    20     3    12    21     9    20    22    13 
+	                            16    10    19    22    13    11    10    19     3    12 
+	                            13     3    12     3    32    22    13    20    22    22 
+	                            13     2    32     0    22    20    19     9    20     9 
+	                            32    10    19    20    10    10    19    20 
+	00168: PUSHW[1]            -18 
+	00171: NPUSHB      (33):     9    12     2    85    20    16    10    12     4     9 
+	                            12     2    85    12    16    16    21    11     6     4 
+	                             9    20    19    12    13     2    22    30     3    10 
+	                             9     8     1 
+	00206: SVTCA[y-axis] 
+	00207: MDAP[rd]   
+	00208: MIAP[rd+ci] 
+	00209: MDRP[nrp0,nmd,nrd,0] 
+	00210: MDRP[srp0,nmd,nrd,0] 
+	00211: MIRP[nrp0,md,rd,1] 
+	00212: MIAP[rd+ci] 
+	00213: MDRP[nrp0,nmd,nrd,0] 
+	00214: MDRP[nrp0,nmd,nrd,0] 
+	00215: MDRP[nrp0,nmd,nrd,0] 
+	00216: SRP2       
+	00217: SLOOP      
+	00218: IP         
+	00219: SVTCA[x-axis] 
+	00220: MDAP[rd]   
+	00221: MDRP[srp0,md,rd,1] 
+	00222: CALL       
+	00223: MDRP[nrp0,nmd,rd,2] 
+	00224: SRP0       
+	00225: MDRP[nrp0,md,rd,1] 
+	00226: CALL       
+	00227: SDPVTL[1]  
+	00228: SRP0       
+	00229: CALL       
+	00230: SDPVTL[1]  
+	00231: RDTG       
+	00232: MDRP[nrp0,nmd,rd,0] 
+	00233: SVTCA[x-axis] 
+	00234: RTG        
+	00235: SRP0       
+	00236: MDRP[srp0,nmd,rd,2] 
+	00237: MDRP[srp0,md,rd,1] 
+	00238: MIRP[nrp0,md,rd,1] 
+	00239: SDPVTL[1]  
+	00240: SRP0       
+	00241: CALL       
+	00242: SDPVTL[1]  
+	00243: RDTG       
+	00244: MDRP[nrp0,nmd,rd,0] 
+	00245: ISECT      
+	00246: ISECT      
+	00247: ISECT      
+	00248: ISECT      
+	00249: EIF        
+	00250: CALL       
+	00251: CALL       
+	00252: SVTCA[y-axis] 
+	00253: CALL       
+	00254: CALL       
+	00255: IUP[y]     
+	00256: IUP[x]     
+	00257: SVTCA[x-axis] 
+	00258: DELTAP1    
+	00259: DELTAP1    
+	00260: DELTAP1    
+	00261: DELTAP1    
+	00262: SVTCA[y-axis] 
+	00263: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:                                      On
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:                      Y-Short X-Short On
+	  9:                                      On
+	 10:  YDual                       X-Short On
+	 11:                                      On
+	 12:                                      On
+	 13:  YDual XDual                 X-Short On
+	 14:                                      On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:                                      On
+	 20:  YDual XDual                 X-Short On
+	 21:                                      On
+	 22:                                      On
+	 23:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1353,  -407)  ->  Abs (  1353,  -407)
+	  1: Rel (  -172,     0)  ->  Abs (  1181,  -407)
+	  2: Rel (     0,   407)  ->  Abs (  1181,     0)
+	  3: Rel (   -68,     0)  ->  Abs (  1113,     0)
+	  4: Rel (  -369,   523)  ->  Abs (   744,   523)
+	  5: Rel (   -25,    36)  ->  Abs (   719,   559)
+	  6: Rel (   -39,    62)  ->  Abs (   680,   621)
+	  7: Rel (   -52,   -86)  ->  Abs (   628,   535)
+	  8: Rel (   -18,   -24)  ->  Abs (   610,   511)
+	  9: Rel (  -368,  -511)  ->  Abs (   242,     0)
+	 10: Rel (  -233,     0)  ->  Abs (     9,     0)
+	 11: Rel (   567,   764)  ->  Abs (   576,   764)
+	 12: Rel (  -500,   702)  ->  Abs (    76,  1466)
+	 13: Rel (   231,     0)  ->  Abs (   307,  1466)
+	 14: Rel (   266,  -376)  ->  Abs (   573,  1090)
+	 15: Rel (    84,  -119)  ->  Abs (   657,   971)
+	 16: Rel (    34,   -61)  ->  Abs (   691,   910)
+	 17: Rel (    45,    73)  ->  Abs (   736,   983)
+	 18: Rel (    71,    94)  ->  Abs (   807,  1077)
+	 19: Rel (   295,   389)  ->  Abs (  1102,  1466)
+	 20: Rel (   211,     0)  ->  Abs (  1313,  1466)
+	 21: Rel (  -515,  -691)  ->  Abs (   798,   775)
+	 22: Rel (   430,  -602)  ->  Abs (  1228,   173)
+	 23: Rel (   125,     0)  ->  Abs (  1353,   173)
+
+	Glyph 1311: off = 0x00033B58, len = 366
+	  numberOfContours:	1
+	  xMin:			15
+	  yMin:			-301
+	  xMax:			1009
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	284
+	00000: NPUSHB      (21):    38    17    70    17   134    17     3    38     4    70 
+	                             4     2    88     7     1    38    17    70    17     2 
+	                            12 
+	00023: PUSHW[1]            -20 
+	00026: NPUSHB      (11):    11    11     6    85     4    40    13    17     6    85 
+	                            12 
+	00039: PUSHW[1]            -40 
+	00042: NPUSHB      (40):    13    17     6    85    12    20    11    11     6    85 
+	                            12    10    13    13     6    85     4     5    16     3 
+	                             8    17     5    16    18     9    12     6    15    18 
+	                             9     7     6    15     3     8     3     9    18     9 
+	00084: PUSHW[1]             -8 
+	00087: NPUSHB      (15):    13    17     2    85     9    37     8     3    20     8 
+	                             8     3     2    37     0 
+	00104: PUSHW[1]             -3 
+	00107: NPUSHB      (29):    12    12     6    85     0    10    13    13     6    85 
+	                             0    12    15    16     6    85     0   149    18     1 
+	                            48    18     1    18    16    15     5    16     5 
+	00138: PUSHW[1]             -8 
+	00141: NPUSHB      (30):    13    17     2    85     5    37     6    15    20     6 
+	                             6    15    95    16   111    16   159    16     3    16 
+	                            12     6   160     8     1     8    17     7     4    12 
+	00173: PUSHW[1]            -10 
+	00176: PUSHB[5]             13    13     2    85    12 
+	00182: PUSHW[1]            -10 
+	00185: NPUSHB      (26):    10    10     2    85    32    12     1    12    12    17 
+	                             7     4     4     5    16    15     8     9     6    18 
+	                            43     3     6     5    10     1 
+	00213: SVTCA[y-axis] 
+	00214: MDAP[rd]   
+	00215: MIAP[rd+ci] 
+	00216: MDRP[nrp0,nmd,nrd,0] 
+	00217: MDRP[srp0,nmd,nrd,0] 
+	00218: MIRP[nrp0,md,rd,1] 
+	00219: MIAP[rd+ci] 
+	00220: MDRP[nrp0,nmd,nrd,0] 
+	00221: MDRP[nrp0,nmd,nrd,0] 
+	00222: MDRP[nrp0,nmd,nrd,0] 
+	00223: SRP2       
+	00224: SLOOP      
+	00225: IP         
+	00226: SVTCA[x-axis] 
+	00227: MDAP[rd]   
+	00228: DELTAP1    
+	00229: CALL       
+	00230: CALL       
+	00231: SHP[rp1,zp0] 
+	00232: SHP[rp1,zp0] 
+	00233: SHP[rp1,zp0] 
+	00234: MDRP[srp0,md,rd,1] 
+	00235: DELTAP1    
+	00236: MDRP[nrp0,nmd,rd,2] 
+	00237: SRP0       
+	00238: MDRP[nrp0,md,rd,1] 
+	00239: DELTAP1    
+	00240: SDPVTL[1]  
+	00241: SRP0       
+	00242: CALL       
+	00243: CALL       
+	00244: SDPVTL[1]  
+	00245: RDTG       
+	00246: MDRP[nrp0,nmd,rd,0] 
+	00247: SVTCA[x-axis] 
+	00248: RTG        
+	00249: SRP0       
+	00250: MDRP[srp0,nmd,rd,2] 
+	00251: DELTAP1    
+	00252: DELTAP1    
+	00253: MDRP[srp0,md,rd,1] 
+	00254: CALL       
+	00255: CALL       
+	00256: CALL       
+	00257: MIRP[nrp0,md,rd,1] 
+	00258: SDPVTL[1]  
+	00259: SRP0       
+	00260: CALL       
+	00261: CALL       
+	00262: SDPVTL[1]  
+	00263: RDTG       
+	00264: MDRP[nrp0,nmd,rd,0] 
+	00265: ISECT      
+	00266: ISECT      
+	00267: ISECT      
+	00268: ISECT      
+	00269: SVTCA[x-axis] 
+	00270: CALL       
+	00271: CALL       
+	00272: SVTCA[y-axis] 
+	00273: CALL       
+	00274: CALL       
+	00275: CALL       
+	00276: IUP[y]     
+	00277: IUP[x]     
+	00278: SVTCA[y-axis] 
+	00279: DELTAP1    
+	00280: DELTAP1    
+	00281: DELTAP1    
+	00282: SVTCA[x-axis] 
+	00283: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual                       X-Short On
+	  4:                                      On
+	  5:                                      On
+	  6:  YDual                       X-Short On
+	  7:                                      On
+	  8:                                      On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual         Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:                                      On
+	 18:                                      On
+	 19:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1009,  -301)  ->  Abs (  1009,  -301)
+	  1: Rel (  -148,     0)  ->  Abs (   861,  -301)
+	  2: Rel (     0,   301)  ->  Abs (   861,     0)
+	  3: Rel (   -73,     0)  ->  Abs (   788,     0)
+	  4: Rel (  -276,   419)  ->  Abs (   512,   419)
+	  5: Rel (  -279,  -419)  ->  Abs (   233,     0)
+	  6: Rel (  -218,     0)  ->  Abs (    15,     0)
+	  7: Rel (   388,   552)  ->  Abs (   403,   552)
+	  8: Rel (  -359,   510)  ->  Abs (    44,  1062)
+	  9: Rel (   225,     0)  ->  Abs (   269,  1062)
+	 10: Rel (   163,  -249)  ->  Abs (   432,   813)
+	 11: Rel (    42,   -64)  ->  Abs (   474,   749)
+	 12: Rel (    32,   -55)  ->  Abs (   506,   694)
+	 13: Rel (    35,    52)  ->  Abs (   541,   746)
+	 14: Rel (    46,    65)  ->  Abs (   587,   811)
+	 15: Rel (   179,   251)  ->  Abs (   766,  1062)
+	 16: Rel (   215,     0)  ->  Abs (   981,  1062)
+	 17: Rel (  -367,  -500)  ->  Abs (   614,   562)
+	 18: Rel (   292,  -414)  ->  Abs (   906,   148)
+	 19: Rel (   103,     0)  ->  Abs (  1009,   148)
+
+	Glyph 1312: off = 0x00033CC6, len = 406
+	  numberOfContours:	1
+	  xMin:			87
+	  yMin:			0
+	  xMax:			1204
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	312
+	00000: NPUSHB      (15):   100    20     1    69    20    85    20     2    54    20 
+	                             1    24     4    23     6 
+	00017: PUSHW[1]            -14 
+	00020: NPUSHB      (11):    16    16     2    85     6     4    13    13     2    85 
+	                             6 
+	00033: PUSHW[1]            -14 
+	00036: NPUSHB      (11):    12    12     2    85     6    14    16    16     6    85 
+	                             6 
+	00049: PUSHW[1]             -8 
+	00052: PUSHB[5]             15    15     6    85     6 
+	00058: PUSHW[1]            -14 
+	00061: NPUSHB      (11):    12    12     6    85     6     6    17    27    29    32 
+	                             1 
+	00074: PUSHW[1]             -8 
+	00077: PUSHB[5]             16    16     2    85     1 
+	00083: PUSHW[1]            -28 
+	00086: NPUSHB      (11):    15    15     2    85     1    30    13    13     2    85 
+	                             1 
+	00099: PUSHW[1]             -2 
+	00102: PUSHB[5]             12    12     2    85     1 
+	00108: PUSHW[1]            -24 
+	00111: NPUSHB      (23):    11    11     2    85     1    10    16    16     6    85 
+	                             1    18    15    15     6    85     1     8    13    13 
+	                             6    85     1 
+	00136: PUSHW[1]             -2 
+	00139: NPUSHB      (45):    12    12     6    85     1    14    11    11     6    85 
+	                             1    31    17    32    15    10    16    16     2    85 
+	                            15    20    15    15     2    85    15    22    13    13 
+	                             2    85    15    26    12    12     2    85    15    18 
+	                            11    11     2    85    15 
+	00186: PUSHW[1]            -20 
+	00189: NPUSHB      (17):    16    16     6    85    15    14    13    13     6    85 
+	                            15    24    12    12     6    85    15 
+	00208: PUSHW[1]             -4 
+	00211: NPUSHB      (33):    11    11     6    85     0    15     1    15    93    30 
+	                            24    24    28    27    25    22    21    30     9     7 
+	                             4     2     9     6     9     6     9     1    17    28 
+	                             2     1     8 
+	00246: SVTCA[y-axis] 
+	00247: MIAP[rd+ci] 
+	00248: MIAP[rd+ci] 
+	00249: MDRP[nrp0,nmd,nrd,0] 
+	00250: SRP2       
+	00251: IP         
+	00252: IP         
+	00253: MDAP[rd]   
+	00254: MDAP[rd]   
+	00255: SRP1       
+	00256: SHP[rp1,zp0] 
+	00257: SHP[rp1,zp0] 
+	00258: SHP[rp1,zp0] 
+	00259: SRP0       
+	00260: MIRP[nrp0,md,rd,1] 
+	00261: SHP[rp2,zp1] 
+	00262: SHP[rp2,zp1] 
+	00263: SHP[rp2,zp1] 
+	00264: SRP1       
+	00265: IP         
+	00266: MDAP[rd]   
+	00267: SVTCA[x-axis] 
+	00268: SRP0       
+	00269: MIRP[srp0,nmd,rd,2] 
+	00270: DELTAP1    
+	00271: CALL       
+	00272: CALL       
+	00273: CALL       
+	00274: CALL       
+	00275: CALL       
+	00276: CALL       
+	00277: CALL       
+	00278: CALL       
+	00279: CALL       
+	00280: MIRP[nrp0,md,rd,1] 
+	00281: SRP0       
+	00282: MDRP[srp0,nmd,rd,0] 
+	00283: CALL       
+	00284: CALL       
+	00285: CALL       
+	00286: CALL       
+	00287: CALL       
+	00288: CALL       
+	00289: CALL       
+	00290: CALL       
+	00291: CALL       
+	00292: CALL       
+	00293: MIRP[nrp0,md,rd,1] 
+	00294: MDRP[nrp0,nmd,nrd,0] 
+	00295: SRP1       
+	00296: IP         
+	00297: MDAP[rd]   
+	00298: CALL       
+	00299: CALL       
+	00300: CALL       
+	00301: CALL       
+	00302: CALL       
+	00303: CALL       
+	00304: MDRP[nrp0,nmd,nrd,0] 
+	00305: MDRP[srp0,md,rd,1] 
+	00306: MDRP[nrp0,nmd,nrd,0] 
+	00307: IUP[y]     
+	00308: IUP[x]     
+	00309: DELTAP1    
+	00310: DELTAP1    
+	00311: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:        XDual                         On
+	 17:  YDual XDual                 X-Short On
+	 18:        XDual                         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual                 X-Short On
+	 23:        XDual                         On
+	 24:  YDual XDual                 X-Short On
+	 25:        XDual                         On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:        XDual                         On
+	 29:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1204,     0)  ->  Abs (  1204,     0)
+	  1: Rel (  -194,     0)  ->  Abs (  1010,     0)
+	  2: Rel (     0,   591)  ->  Abs (  1010,   591)
+	  3: Rel (  -162,   -60)  ->  Abs (   848,   531)
+	  4: Rel (  -138,   -23)  ->  Abs (   710,   508)
+	  5: Rel (     0,  -279)  ->  Abs (   710,   229)
+	  6: Rel (  -120,     0)  ->  Abs (   590,   229)
+	  7: Rel (     0,   266)  ->  Abs (   590,   495)
+	  8: Rel (   -22,    -1)  ->  Abs (   568,   494)
+	  9: Rel (   -15,     0)  ->  Abs (   553,   494)
+	 10: Rel (  -138,     0)  ->  Abs (   415,   494)
+	 11: Rel (  -116,    62)  ->  Abs (   299,   556)
+	 12: Rel (  -128,    70)  ->  Abs (   171,   626)
+	 13: Rel (   -44,   121)  ->  Abs (   127,   747)
+	 14: Rel (   -40,   111)  ->  Abs (    87,   858)
+	 15: Rel (     0,   177)  ->  Abs (    87,  1035)
+	 16: Rel (     0,   431)  ->  Abs (    87,  1466)
+	 17: Rel (   194,     0)  ->  Abs (   281,  1466)
+	 18: Rel (     0,  -413)  ->  Abs (   281,  1053)
+	 19: Rel (     0,  -239)  ->  Abs (   281,   814)
+	 20: Rel (   177,  -153)  ->  Abs (   458,   661)
+	 21: Rel (   121,     1)  ->  Abs (   579,   662)
+	 22: Rel (    11,     0)  ->  Abs (   590,   662)
+	 23: Rel (     0,   450)  ->  Abs (   590,  1112)
+	 24: Rel (   120,     0)  ->  Abs (   710,  1112)
+	 25: Rel (     0,  -441)  ->  Abs (   710,   671)
+	 26: Rel (   145,    20)  ->  Abs (   855,   691)
+	 27: Rel (   155,    62)  ->  Abs (  1010,   753)
+	 28: Rel (     0,   713)  ->  Abs (  1010,  1466)
+	 29: Rel (   194,     0)  ->  Abs (  1204,  1466)
+
+	Glyph 1313: off = 0x00033E5C, len = 380
+	  numberOfContours:	1
+	  xMin:			69
+	  yMin:			0
+	  xMax:			931
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  30
+
+	  Length of Instructions:	284
+	00000: NPUSHB      (30):   116    21   132    21     2   101    21     1    25     4 
+	                            14    12    12     2    85     4    14    11    12     6 
+	                            85     4    24     6    10    15    16     2    85     6 
+	00032: PUSHW[1]            -10 
+	00035: PUSHB[5]             12    12     2    85     6 
+	00041: PUSHW[1]             -8 
+	00044: NPUSHB      (17):    11    12     6    85     6    14    15    15     6    85 
+	                             6     6    17    28    30    37     1 
+	00063: PUSHW[1]            -52 
+	00066: NPUSHB      (17):    16    16     2    85     1    32    15    15     2    85 
+	                             1     8    13    13     2    85     1 
+	00085: PUSHW[1]            -10 
+	00088: PUSHB[5]             10    11     2    85     1 
+	00094: PUSHW[1]             -8 
+	00097: PUSHB[5]             11    12     6    85     1 
+	00103: PUSHW[1]             -4 
+	00106: NPUSHB      (27):    13    13     6    85     1    14    15    15     6    85 
+	                             1    24    16    16     6    85    31     1     1     0 
+	                             1     1     1    32    17    37    14 
+	00135: PUSHW[1]            -32 
+	00138: NPUSHB      (17):    16    16     2    85    14    28    15    15     2    85 
+	                            14    22    13    13     2    85    14 
+	00157: PUSHW[1]             -4 
+	00160: NPUSHB      (58):    12    12     2    85    14    22    11    12     6    85 
+	                            14    24    13    13     6    85    14    24    15    15 
+	                             6    85    14    28    16    16     6    85    79    14 
+	                            95    14     2    14    31    25    25    23    29    16 
+	                            28    26    23    43     8     7     4     2     8     6 
+	                             8     6     8     1    16     6     1    10 
+	00220: SVTCA[y-axis] 
+	00221: MIAP[rd+ci] 
+	00222: MIAP[rd+ci] 
+	00223: SRP2       
+	00224: IP         
+	00225: IP         
+	00226: MDAP[rd]   
+	00227: MDAP[rd]   
+	00228: SRP1       
+	00229: SHP[rp1,zp0] 
+	00230: SHP[rp1,zp0] 
+	00231: SHP[rp1,zp0] 
+	00232: SRP0       
+	00233: MIRP[nrp0,md,rd,1] 
+	00234: SHP[rp2,zp1] 
+	00235: SHP[rp2,zp1] 
+	00236: SRP0       
+	00237: MDRP[nrp0,nmd,nrd,0] 
+	00238: SRP1       
+	00239: IP         
+	00240: MDAP[rd]   
+	00241: SVTCA[x-axis] 
+	00242: SRP0       
+	00243: MDRP[srp0,nmd,rd,2] 
+	00244: DELTAP1    
+	00245: CALL       
+	00246: CALL       
+	00247: CALL       
+	00248: CALL       
+	00249: CALL       
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+	00253: MIRP[nrp0,md,rd,1] 
+	00254: SRP0       
+	00255: MDRP[srp0,nmd,rd,0] 
+	00256: DELTAP1    
+	00257: DELTAP1    
+	00258: CALL       
+	00259: CALL       
+	00260: CALL       
+	00261: CALL       
+	00262: CALL       
+	00263: CALL       
+	00264: CALL       
+	00265: CALL       
+	00266: MIRP[nrp0,md,rd,1] 
+	00267: MDRP[nrp0,nmd,nrd,0] 
+	00268: SRP1       
+	00269: IP         
+	00270: MDAP[rd]   
+	00271: CALL       
+	00272: CALL       
+	00273: CALL       
+	00274: CALL       
+	00275: MDRP[nrp0,nmd,nrd,0] 
+	00276: MDRP[srp0,md,rd,1] 
+	00277: CALL       
+	00278: CALL       
+	00279: MDRP[nrp0,nmd,nrd,0] 
+	00280: IUP[y]     
+	00281: IUP[x]     
+	00282: DELTAP1    
+	00283: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                       X-Short On
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:        XDual                         On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short On
+	 24:        XDual                         On
+	 25:  YDual XDual                 X-Short On
+	 26:        XDual                         On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:        XDual                         On
+	 30:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   931,     0)  ->  Abs (   931,     0)
+	  1: Rel (  -180,     0)  ->  Abs (   751,     0)
+	  2: Rel (     0,   428)  ->  Abs (   751,   428)
+	  3: Rel (  -110,   -34)  ->  Abs (   641,   394)
+	  4: Rel (  -100,   -12)  ->  Abs (   541,   382)
+	  5: Rel (     0,  -214)  ->  Abs (   541,   168)
+	  6: Rel (   -99,     0)  ->  Abs (   442,   168)
+	  7: Rel (     0,   208)  ->  Abs (   442,   376)
+	  8: Rel (   -21,     0)  ->  Abs (   421,   376)
+	  9: Rel (   -89,     0)  ->  Abs (   332,   376)
+	 10: Rel (   -94,    55)  ->  Abs (   238,   431)
+	 11: Rel (  -100,    59)  ->  Abs (   138,   490)
+	 12: Rel (   -36,    98)  ->  Abs (   102,   588)
+	 13: Rel (   -33,    89)  ->  Abs (    69,   677)
+	 14: Rel (     0,   107)  ->  Abs (    69,   784)
+	 15: Rel (     0,   278)  ->  Abs (    69,  1062)
+	 16: Rel (   180,     0)  ->  Abs (   249,  1062)
+	 17: Rel (     0,  -201)  ->  Abs (   249,   861)
+	 18: Rel (     0,  -116)  ->  Abs (   249,   745)
+	 19: Rel (     9,   -43)  ->  Abs (   258,   702)
+	 20: Rel (    18,   -84)  ->  Abs (   276,   618)
+	 21: Rel (    63,   -47)  ->  Abs (   339,   571)
+	 22: Rel (    44,   -33)  ->  Abs (   383,   538)
+	 23: Rel (    59,    -8)  ->  Abs (   442,   530)
+	 24: Rel (     0,   277)  ->  Abs (   442,   807)
+	 25: Rel (    99,     0)  ->  Abs (   541,   807)
+	 26: Rel (     0,  -277)  ->  Abs (   541,   530)
+	 27: Rel (    87,    10)  ->  Abs (   628,   540)
+	 28: Rel (   123,    41)  ->  Abs (   751,   581)
+	 29: Rel (     0,   481)  ->  Abs (   751,  1062)
+	 30: Rel (   180,     0)  ->  Abs (   931,  1062)
+
+	Glyph 1314: off = 0x00033FD8, len = 272
+	  numberOfContours:	1
+	  xMin:			161
+	  yMin:			0
+	  xMax:			1278
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  21
+
+	  Length of Instructions:	199
+	00000: NPUSHB      (24):   103    19     1    91     4     1    74     4     1    21 
+	                            32     1    20    16    16     2    85     1     2    13 
+	                            13     2    85     1 
+	00026: PUSHW[1]            -32 
+	00029: PUSHB[5]             12    12     2    85     1 
+	00035: PUSHW[1]            -48 
+	00038: PUSHB[5]             11    11     6    85     1 
+	00044: PUSHW[1]            -30 
+	00047: PUSHB[5]             12    12     6    85     1 
+	00053: PUSHW[1]            -16 
+	00056: PUSHB[5]             13    13     6    85     1 
+	00062: PUSHW[1]            -16 
+	00065: PUSHB[5]             15    15     6    85     1 
+	00071: PUSHW[1]            -24 
+	00074: NPUSHB      (16):    16    16     6    85     1    23     9    13    32    11 
+	                            32    16    16     2    85    11 
+	00092: PUSHW[1]            -10 
+	00095: PUSHB[5]             15    15     2    85    11 
+	00101: PUSHW[1]            -10 
+	00104: PUSHB[5]             13    13     2    85    11 
+	00110: PUSHW[1]             -6 
+	00113: PUSHB[5]             12    12     2    85    11 
+	00119: PUSHW[1]             -8 
+	00122: PUSHB[5]             12    12     6    85    11 
+	00128: PUSHW[1]            -19 
+	00131: PUSHB[5]             13    13     6    85    11 
+	00137: PUSHW[1]            -29 
+	00140: NPUSHB      (19):    15    15     6    85    11    93    22     8     6    30 
+	                            13    15    15     9    12     2     1     9     8 
+	00161: SVTCA[y-axis] 
+	00162: MIAP[rd+ci] 
+	00163: MDRP[nrp0,nmd,nrd,0] 
+	00164: MIAP[rd+ci] 
+	00165: SRP2       
+	00166: IP         
+	00167: MDAP[rd]   
+	00168: SHP[rp1,zp0] 
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: SHP[rp2,zp1] 
+	00171: SVTCA[x-axis] 
+	00172: SRP0       
+	00173: MIRP[srp0,nmd,rd,2] 
+	00174: CALL       
+	00175: CALL       
+	00176: CALL       
+	00177: CALL       
+	00178: CALL       
+	00179: CALL       
+	00180: CALL       
+	00181: MIRP[srp0,md,rd,1] 
+	00182: MDRP[nrp0,nmd,nrd,0] 
+	00183: SRP0       
+	00184: MDRP[srp0,nmd,rd,0] 
+	00185: CALL       
+	00186: CALL       
+	00187: CALL       
+	00188: CALL       
+	00189: CALL       
+	00190: CALL       
+	00191: CALL       
+	00192: CALL       
+	00193: MIRP[nrp0,md,rd,1] 
+	00194: IUP[y]     
+	00195: IUP[x]     
+	00196: DELTAP1    
+	00197: DELTAP1    
+	00198: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual               Y-Short X-Short On
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:                      Y-Short X-Short On
+	  9:        XDual                         On
+	 10:  YDual                       X-Short On
+	 11:        XDual                         On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:  YDual               Y-Short         Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short On
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1278,     0)  ->  Abs (  1278,     0)
+	  1: Rel (  -194,     0)  ->  Abs (  1084,     0)
+	  2: Rel (     0,   413)  ->  Abs (  1084,   413)
+	  3: Rel (     0,   184)  ->  Abs (  1084,   597)
+	  4: Rel (   -56,    92)  ->  Abs (  1028,   689)
+	  5: Rel (   -71,   115)  ->  Abs (   957,   804)
+	  6: Rel (  -171,     0)  ->  Abs (   786,   804)
+	  7: Rel (  -205,     0)  ->  Abs (   581,   804)
+	  8: Rel (  -226,   -91)  ->  Abs (   355,   713)
+	  9: Rel (     0,  -713)  ->  Abs (   355,     0)
+	 10: Rel (  -194,     0)  ->  Abs (   161,     0)
+	 11: Rel (     0,  1466)  ->  Abs (   161,  1466)
+	 12: Rel (   194,     0)  ->  Abs (   355,  1466)
+	 13: Rel (     0,  -591)  ->  Abs (   355,   875)
+	 14: Rel (   261,    97)  ->  Abs (   616,   972)
+	 15: Rel (   196,     0)  ->  Abs (   812,   972)
+	 16: Rel (   139,     0)  ->  Abs (   951,   972)
+	 17: Rel (   115,   -62)  ->  Abs (  1066,   910)
+	 18: Rel (   129,   -69)  ->  Abs (  1195,   841)
+	 19: Rel (    44,  -122)  ->  Abs (  1239,   719)
+	 20: Rel (    39,  -109)  ->  Abs (  1278,   610)
+	 21: Rel (     0,  -179)  ->  Abs (  1278,   431)
+
+	Glyph 1315: off = 0x000340E8, len = 272
+	  numberOfContours:	1
+	  xMin:			136
+	  yMin:			0
+	  xMax:			998
+	  yMax:			1062
+
+	EndPoints
+	---------
+	  0:  23
+
+	  Length of Instructions:	195
+	00000: NPUSHB      (12):   139     6     1   122     6     1   104     6     1    23 
+	                            37     1 
+	00014: PUSHW[1]            -26 
+	00017: PUSHB[5]             16    16     2    85     1 
+	00023: PUSHW[1]            -22 
+	00026: NPUSHB      (11):    13    13     2    85     1     6    12    12     2    85 
+	                             1 
+	00039: PUSHW[1]            -14 
+	00042: PUSHB[5]             16    16     6    85     1 
+	00048: PUSHW[1]            -16 
+	00051: PUSHB[5]             15    15     6    85     1 
+	00057: PUSHW[1]            -32 
+	00060: PUSHB[5]             12    13     6    85     1 
+	00066: PUSHW[1]            -28 
+	00069: NPUSHB      (17):    11    11     6    85     0     1    32     1    48     1 
+	                             3     1    25    15    10    37    12 
+	00088: PUSHW[1]             -6 
+	00091: NPUSHB      (11):    16    16     2    85    12     6    12    12     2    85 
+	                            12 
+	00104: PUSHW[1]             -6 
+	00107: PUSHB[5]             16    16     6    85    12 
+	00113: PUSHW[1]            -12 
+	00116: PUSHB[5]             15    15     6    85    12 
+	00122: PUSHW[1]             -2 
+	00125: NPUSHB      (30):    13    13     6    85    12     8    12    12     6    85 
+	                             0    12    32    12     2    12    78    24    10     8 
+	                            43    15    17    17    11    14     6     1    11    10 
+	00157: SVTCA[y-axis] 
+	00158: MIAP[rd+ci] 
+	00159: MDRP[nrp0,nmd,nrd,0] 
+	00160: MIAP[rd+ci] 
+	00161: SRP2       
+	00162: IP         
+	00163: MDAP[rd]   
+	00164: SHP[rp1,zp0] 
+	00165: MIRP[nrp0,md,rd,1] 
+	00166: SHP[rp2,zp1] 
+	00167: SVTCA[x-axis] 
+	00168: SRP0       
+	00169: MIRP[srp0,nmd,rd,2] 
+	00170: DELTAP1    
+	00171: CALL       
+	00172: CALL       
+	00173: CALL       
+	00174: CALL       
+	00175: CALL       
+	00176: CALL       
+	00177: MIRP[srp0,md,rd,1] 
+	00178: MDRP[nrp0,nmd,nrd,0] 
+	00179: SRP0       
+	00180: MDRP[srp0,nmd,rd,0] 
+	00181: DELTAP1    
+	00182: CALL       
+	00183: CALL       
+	00184: CALL       
+	00185: CALL       
+	00186: CALL       
+	00187: CALL       
+	00188: CALL       
+	00189: MIRP[nrp0,md,rd,1] 
+	00190: IUP[y]     
+	00191: IUP[x]     
+	00192: DELTAP1    
+	00193: DELTAP1    
+	00194: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual               Y-Short X-Short On
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:        XDual                         On
+	 12:  YDual                       X-Short On
+	 13:        XDual                         On
+	 14:  YDual XDual                 X-Short On
+	 15:        XDual                         On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   998,     0)  ->  Abs (   998,     0)
+	  1: Rel (  -180,     0)  ->  Abs (   818,     0)
+	  2: Rel (     0,   201)  ->  Abs (   818,   201)
+	  3: Rel (     0,   120)  ->  Abs (   818,   321)
+	  4: Rel (    -8,    40)  ->  Abs (   810,   361)
+	  5: Rel (   -17,    83)  ->  Abs (   793,   444)
+	  6: Rel (   -65,    48)  ->  Abs (   728,   492)
+	  7: Rel (   -58,    43)  ->  Abs (   670,   535)
+	  8: Rel (   -90,     0)  ->  Abs (   580,   535)
+	  9: Rel (  -102,     0)  ->  Abs (   478,   535)
+	 10: Rel (  -162,   -54)  ->  Abs (   316,   481)
+	 11: Rel (     0,  -481)  ->  Abs (   316,     0)
+	 12: Rel (  -180,     0)  ->  Abs (   136,     0)
+	 13: Rel (     0,  1062)  ->  Abs (   136,  1062)
+	 14: Rel (   180,     0)  ->  Abs (   316,  1062)
+	 15: Rel (     0,  -428)  ->  Abs (   316,   634)
+	 16: Rel (   166,    52)  ->  Abs (   482,   686)
+	 17: Rel (   144,     0)  ->  Abs (   626,   686)
+	 18: Rel (   111,     0)  ->  Abs (   737,   686)
+	 19: Rel (    92,   -54)  ->  Abs (   829,   632)
+	 20: Rel (    99,   -58)  ->  Abs (   928,   574)
+	 21: Rel (    37,  -100)  ->  Abs (   965,   474)
+	 22: Rel (    33,   -89)  ->  Abs (   998,   385)
+	 23: Rel (     0,  -107)  ->  Abs (   998,   278)
+
+	Glyph 1316: off = 0x000341F8, len = 300
+	  numberOfContours:	2
+	  xMin:			99
+	  yMin:			-25
+	  xMax:			1456
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  26
+	  1:  33
+
+	  Length of Instructions:	181
+	00000: NPUSHB      (53):   138    32     1   109    32     1    92    32     1    26 
+	                            32    74    32     2    98    30     1    85    30     1 
+	                            68    30     1    21    30     1   134    29     1   119 
+	                            24     1    57    19    73    19     2   132    15     1 
+	                           118    15     1   106    12     1    25    12     1    10 
+	                            27    38     0 
+	00055: PUSHW[1]            -22 
+	00058: PUSHB[5]             15    15     2    85     0 
+	00064: PUSHW[1]            -20 
+	00067: PUSHB[5]             11    11     2    85     0 
+	00073: PUSHW[1]             -8 
+	00076: PUSHB[5]             12    12     6    85     0 
+	00082: PUSHW[1]            -21 
+	00085: PUSHB[5]             11    11     6    85     0 
+	00091: PUSHW[1]            -13 
+	00094: NPUSHB      (38):    13    13     6    85     0    92    35    16    38    17 
+	                            28    38    32     8     1     8    99    34    28    30 
+	                            17    16    47    16     1     9    16     9    16    31 
+	                            14    30    21     3    31    30     4     9 
+	00134: SVTCA[y-axis] 
+	00135: MIAP[rd+ci] 
+	00136: MIRP[nrp0,md,rd,1] 
+	00137: MIAP[rd+ci] 
+	00138: MIRP[nrp0,md,rd,1] 
+	00139: SRP1       
+	00140: IP         
+	00141: IP         
+	00142: MDAP[rd]   
+	00143: MDAP[rd]   
+	00144: DELTAP1    
+	00145: SRP1       
+	00146: SHP[rp1,zp0] 
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: SVTCA[x-axis] 
+	00149: SRP0       
+	00150: MIRP[srp0,nmd,rd,2] 
+	00151: DELTAP1    
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: MDRP[srp0,nmd,rd,0] 
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: SRP0       
+	00156: MIRP[srp0,nmd,rd,2] 
+	00157: CALL       
+	00158: CALL       
+	00159: CALL       
+	00160: CALL       
+	00161: CALL       
+	00162: MIRP[srp0,md,rd,1] 
+	00163: MDRP[nrp0,nmd,rd,1] 
+	00164: IUP[y]     
+	00165: IUP[x]     
+	00166: DELTAP1    
+	00167: DELTAP1    
+	00168: DELTAP1    
+	00169: DELTAP1    
+	00170: DELTAP1    
+	00171: DELTAP1    
+	00172: DELTAP1    
+	00173: DELTAP1    
+	00174: DELTAP1    
+	00175: DELTAP1    
+	00176: DELTAP1    
+	00177: DELTAP1    
+	00178: DELTAP1    
+	00179: DELTAP1    
+	00180: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                 X-Short Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                               On
+	  5:  YDual                               Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:        XDual                         On
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual                               On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                               Off
+	 16:                              X-Short On
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short On
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:                              X-Short On
+	 28:  YDual                               On
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual                 X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1449,   749)  ->  Abs (  1449,   749)
+	  1: Rel (     7,  -333)  ->  Abs (  1456,   416)
+	  2: Rel (  -165,  -217)  ->  Abs (  1291,   199)
+	  3: Rel (  -170,  -224)  ->  Abs (  1121,   -25)
+	  4: Rel (  -347,     0)  ->  Abs (   774,   -25)
+	  5: Rel (  -346,     0)  ->  Abs (   428,   -25)
+	  6: Rel (  -170,   224)  ->  Abs (   258,   199)
+	  7: Rel (  -159,   210)  ->  Abs (    99,   409)
+	  8: Rel (     0,   340)  ->  Abs (    99,   749)
+	  9: Rel (     0,    94)  ->  Abs (    99,   843)
+	 10: Rel (  1141,     0)  ->  Abs (  1240,   843)
+	 11: Rel (   -12,   220)  ->  Abs (  1228,  1063)
+	 12: Rel (  -117,   126)  ->  Abs (  1111,  1189)
+	 13: Rel (  -124,   132)  ->  Abs (   987,  1321)
+	 14: Rel (  -216,     0)  ->  Abs (   771,  1321)
+	 15: Rel (  -317,     0)  ->  Abs (   454,  1321)
+	 16: Rel (   -83,  -307)  ->  Abs (   371,  1014)
+	 17: Rel (  -190,    50)  ->  Abs (   181,  1064)
+	 18: Rel (    56,   208)  ->  Abs (   237,  1272)
+	 19: Rel (   160,   112)  ->  Abs (   397,  1384)
+	 20: Rel (   153,   107)  ->  Abs (   550,  1491)
+	 21: Rel (   220,     0)  ->  Abs (   770,  1491)
+	 22: Rel (   200,     0)  ->  Abs (   970,  1491)
+	 23: Rel (   159,   -98)  ->  Abs (  1129,  1393)
+	 24: Rel (   163,   -99)  ->  Abs (  1292,  1294)
+	 25: Rel (    82,  -180)  ->  Abs (  1374,  1114)
+	 26: Rel (    71,  -154)  ->  Abs (  1445,   960)
+	 27: Rel (  -197,  -290)  ->  Abs (  1248,   670)
+	 28: Rel (  -948,     0)  ->  Abs (   300,   670)
+	 29: Rel (    11,  -246)  ->  Abs (   311,   424)
+	 30: Rel (   252,  -286)  ->  Abs (   563,   138)
+	 31: Rel (   211,     0)  ->  Abs (   774,   138)
+	 32: Rel (   211,     0)  ->  Abs (   985,   138)
+	 33: Rel (   252,   286)  ->  Abs (  1237,   424)
+
+	Glyph 1317: off = 0x00034324, len = 316
+	  numberOfContours:	2
+	  xMin:			85
+	  yMin:			-24
+	  xMax:			1064
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  23
+	  1:  32
+
+	  Length of Instructions:	206
+	00000: NPUSHB      (45):    56    31    72    31     2    85    21   101    21     2 
+	                           138    19     1   121    19     1    92    19   108    19 
+	                             2    74    13     1    40    13    56    13     2   108 
+	                             6     1    91     6     1    99     3     1    85     3 
+	                             1    24    11    36     0 
+	00047: PUSHW[1]            -26 
+	00050: PUSHB[5]             15    15     2    85     0 
+	00056: PUSHW[1]            -22 
+	00059: PUSHB[5]             13    13     2    85     0 
+	00065: PUSHW[1]            -22 
+	00068: PUSHB[5]             11    11     2    85     0 
+	00074: PUSHW[1]            -18 
+	00077: PUSHB[5]             15    15     6    85     0 
+	00083: PUSHW[1]            -14 
+	00086: NPUSHB      (71):    11    13     6    85     0     7    34    17    36    18 
+	                            25    36    10    12    14    15     2    85    10    20 
+	                            12    13     2    85    10    28    11    13     6    85 
+	                            31    10    63    10    79    10     3    10    52    33 
+	                            25    43   159    11   175    11     2    18    17    15 
+	                            17    31    17   159    17   175    17     4    11    17 
+	                            11    17    29    15    28    20     7    29    28     4 
+	                            11 
+	00159: SVTCA[y-axis] 
+	00160: MIAP[rd+ci] 
+	00161: MIRP[nrp0,md,rd,1] 
+	00162: MIAP[rd+ci] 
+	00163: MIRP[nrp0,md,rd,1] 
+	00164: SRP1       
+	00165: IP         
+	00166: IP         
+	00167: MDAP[rd]   
+	00168: MDAP[rd]   
+	00169: DELTAP1    
+	00170: SRP1       
+	00171: SHP[rp1,zp0] 
+	00172: DELTAP1    
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: SVTCA[x-axis] 
+	00175: SRP0       
+	00176: MIRP[srp0,nmd,rd,2] 
+	00177: DELTAP1    
+	00178: CALL       
+	00179: CALL       
+	00180: CALL       
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: MDRP[srp0,nmd,rd,2] 
+	00183: MIRP[nrp0,md,rd,1] 
+	00184: SRP0       
+	00185: MIRP[srp0,md,rd,2] 
+	00186: CALL       
+	00187: CALL       
+	00188: CALL       
+	00189: CALL       
+	00190: CALL       
+	00191: MIRP[nrp0,md,rd,1] 
+	00192: SHP[rp2,zp1] 
+	00193: IUP[y]     
+	00194: IUP[x]     
+	00195: DELTAP1    
+	00196: DELTAP1    
+	00197: DELTAP1    
+	00198: DELTAP1    
+	00199: DELTAP1    
+	00200: DELTAP1    
+	00201: DELTAP1    
+	00202: DELTAP1    
+	00203: DELTAP1    
+	00204: DELTAP1    
+	00205: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual                               On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short On
+	 19:        XDual                 X-Short Off
+	 20:  YDual                               On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:                              X-Short On
+	 25:  YDual                               On
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1064,   540)  ->  Abs (  1064,   540)
+	  1: Rel (     0,  -246)  ->  Abs (  1064,   294)
+	  2: Rel (  -123,  -153)  ->  Abs (   941,   141)
+	  3: Rel (  -133,  -165)  ->  Abs (   808,   -24)
+	  4: Rel (  -240,     0)  ->  Abs (   568,   -24)
+	  5: Rel (  -234,     0)  ->  Abs (   334,   -24)
+	  6: Rel (  -130,   163)  ->  Abs (   204,   139)
+	  7: Rel (  -119,   150)  ->  Abs (    85,   289)
+	  8: Rel (     0,   240)  ->  Abs (    85,   529)
+	  9: Rel (     0,    16)  ->  Abs (    85,   545)
+	 10: Rel (     1,    32)  ->  Abs (    86,   577)
+	 11: Rel (   792,     0)  ->  Abs (   878,   577)
+	 12: Rel (    -9,   156)  ->  Abs (   869,   733)
+	 13: Rel (   -76,    96)  ->  Abs (   793,   829)
+	 14: Rel (   -86,   109)  ->  Abs (   707,   938)
+	 15: Rel (  -150,     0)  ->  Abs (   557,   938)
+	 16: Rel (  -202,     0)  ->  Abs (   355,   938)
+	 17: Rel (   -78,  -218)  ->  Abs (   277,   720)
+	 18: Rel (  -186,    23)  ->  Abs (    91,   743)
+	 19: Rel (    93,   343)  ->  Abs (   184,  1086)
+	 20: Rel (   374,     0)  ->  Abs (   558,  1086)
+	 21: Rel (   245,     0)  ->  Abs (   803,  1086)
+	 22: Rel (   134,  -152)  ->  Abs (   937,   934)
+	 23: Rel (   127,  -145)  ->  Abs (  1064,   789)
+	 24: Rel (  -196,  -360)  ->  Abs (   868,   429)
+	 25: Rel (  -593,     0)  ->  Abs (   275,   429)
+	 26: Rel (    12,  -134)  ->  Abs (   287,   295)
+	 27: Rel (    56,   -67)  ->  Abs (   343,   228)
+	 28: Rel (    86,  -104)  ->  Abs (   429,   124)
+	 29: Rel (   137,     0)  ->  Abs (   566,   124)
+	 30: Rel (   131,     0)  ->  Abs (   697,   124)
+	 31: Rel (    83,    88)  ->  Abs (   780,   212)
+	 32: Rel (    79,    84)  ->  Abs (   859,   296)
+
+	Glyph 1318: off = 0x00034460, len = 322
+	  numberOfContours:	3
+	  xMin:			96
+	  yMin:			-25
+	  xMax:			1498
+	  yMax:			1492
+
+	EndPoints
+	---------
+	  0:  17
+	  1:  26
+	  2:  35
+
+	  Length of Instructions:	199
+	00000: NPUSHB      (56):    89    34     1    26    34     1    22    30    86    30 
+	                             2   132    24     1   117    24     1    84    24     1 
+	                            22    24    70    24     2    86    23     1   138    20 
+	                             1   121    20     1    92    20     1    73    20     1 
+	                            26    20     1    89    16     1   120    12     1    89 
+	                             2     1    27    18    38     0 
+	00058: PUSHW[1]            -24 
+	00061: NPUSHB      (11):    16    16     2    85     0     8    15    15     2    85 
+	                             0 
+	00074: PUSHW[1]            -18 
+	00077: PUSHB[5]             13    13     2    85     0 
+	00083: PUSHW[1]            -16 
+	00086: PUSHB[5]             12    12     2    85     0 
+	00092: PUSHW[1]            -12 
+	00095: PUSHB[5]             13    13     6    85     0 
+	00101: PUSHW[1]             -6 
+	00104: NPUSHB      (47):    12    12     6    85     0    92    37    26    28    38 
+	                            10     6    12    12     6    85    32    10     1    10 
+	                            99    36    18    30    28    64    16    17     2    85 
+	                            28    64    13    14     2    85    28    28    32    22 
+	                            30    14     3    32    30     4     9 
+	00153: SVTCA[y-axis] 
+	00154: MIAP[rd+ci] 
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: MIAP[rd+ci] 
+	00157: MIRP[nrp0,md,rd,1] 
+	00158: SRP1       
+	00159: IP         
+	00160: MDAP[rd]   
+	00161: CALL       
+	00162: CALL       
+	00163: MIRP[nrp0,md,rd,1] 
+	00164: SVTCA[x-axis] 
+	00165: SRP0       
+	00166: MIRP[srp0,nmd,rd,2] 
+	00167: DELTAP1    
+	00168: CALL       
+	00169: MIRP[srp0,md,rd,1] 
+	00170: MDRP[nrp0,nmd,rd,1] 
+	00171: SRP0       
+	00172: MIRP[srp0,nmd,rd,2] 
+	00173: CALL       
+	00174: CALL       
+	00175: CALL       
+	00176: CALL       
+	00177: CALL       
+	00178: CALL       
+	00179: MIRP[srp0,md,rd,1] 
+	00180: MDRP[nrp0,nmd,nrd,0] 
+	00181: IUP[y]     
+	00182: IUP[x]     
+	00183: DELTAP1    
+	00184: DELTAP1    
+	00185: DELTAP1    
+	00186: DELTAP1    
+	00187: DELTAP1    
+	00188: DELTAP1    
+	00189: DELTAP1    
+	00190: DELTAP1    
+	00191: DELTAP1    
+	00192: DELTAP1    
+	00193: DELTAP1    
+	00194: DELTAP1    
+	00195: DELTAP1    
+	00196: DELTAP1    
+	00197: DELTAP1    
+	00198: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                               On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:        XDual                         Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual                               On
+	 15:  YDual                               Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual               Y-Short X-Short On
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short X-Short On
+	 27:                      Y-Short         On
+	 28:  YDual                               On
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short X-Short On
+	 31:        XDual         Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1498,   731)  ->  Abs (  1498,   731)
+	  1: Rel (     0,  -327)  ->  Abs (  1498,   404)
+	  2: Rel (  -185,  -209)  ->  Abs (  1313,   195)
+	  3: Rel (  -194,  -220)  ->  Abs (  1119,   -25)
+	  4: Rel (  -322,     0)  ->  Abs (   797,   -25)
+	  5: Rel (  -207,     0)  ->  Abs (   590,   -25)
+	  6: Rel (  -167,   103)  ->  Abs (   423,    78)
+	  7: Rel (  -174,   106)  ->  Abs (   249,   184)
+	  8: Rel (   -79,   186)  ->  Abs (   170,   370)
+	  9: Rel (   -74,   175)  ->  Abs (    96,   545)
+	 10: Rel (     0,   169)  ->  Abs (    96,   714)
+	 11: Rel (     0,   340)  ->  Abs (    96,  1054)
+	 12: Rel (   178,   212)  ->  Abs (   274,  1266)
+	 13: Rel (   191,   226)  ->  Abs (   465,  1492)
+	 14: Rel (   333,     0)  ->  Abs (   798,  1492)
+	 15: Rel (   325,     0)  ->  Abs (  1123,  1492)
+	 16: Rel (   192,  -221)  ->  Abs (  1315,  1271)
+	 17: Rel (   183,  -210)  ->  Abs (  1498,  1061)
+	 18: Rel (  -204,  -242)  ->  Abs (  1294,   819)
+	 19: Rel (   -19,   219)  ->  Abs (  1275,  1038)
+	 20: Rel (  -117,   131)  ->  Abs (  1158,  1169)
+	 21: Rel (  -140,   156)  ->  Abs (  1018,  1325)
+	 22: Rel (  -219,     0)  ->  Abs (   799,  1325)
+	 23: Rel (  -215,     0)  ->  Abs (   584,  1325)
+	 24: Rel (  -144,  -147)  ->  Abs (   440,  1178)
+	 25: Rel (  -118,  -120)  ->  Abs (   322,  1058)
+	 26: Rel (   -21,  -239)  ->  Abs (   301,   819)
+	 27: Rel (   993,  -172)  ->  Abs (  1294,   647)
+	 28: Rel (  -996,     0)  ->  Abs (   298,   647)
+	 29: Rel (    15,  -207)  ->  Abs (   313,   440)
+	 30: Rel (   119,  -139)  ->  Abs (   432,   301)
+	 31: Rel (   136,  -160)  ->  Abs (   568,   141)
+	 32: Rel (   228,     0)  ->  Abs (   796,   141)
+	 33: Rel (   219,     0)  ->  Abs (  1015,   141)
+	 34: Rel (   134,   147)  ->  Abs (  1149,   288)
+	 35: Rel (   126,   136)  ->  Abs (  1275,   424)
+
+	Glyph 1319: off = 0x000345A2, len = 388
+	  numberOfContours:	3
+	  xMin:			68
+	  yMin:			-24
+	  xMax:			1063
+	  yMax:			1086
+
+	EndPoints
+	---------
+	  0:  15
+	  1:  24
+	  2:  33
+
+	  Length of Instructions:	274
+	00000: NPUSHB      (68):    92    32   108    32     2    83    28    99    28     2 
+	                           100    22     1    85    22     1    55    22    71    22 
+	                             2    91    18   107    18     2    72    18     1    57 
+	                            18     1   105    14     1    88    14     1   102    10 
+	                             1   102     6     1    85     6     1    90     2   106 
+	                             2     2    16    25    36    35    64    13    13     2 
+	                            85    35    64    11    11     2    85     0 
+	00070: PUSHW[1]            -14 
+	00073: NPUSHB      (17):    15    15     2    85     0    18    13    13     2    85 
+	                             0    16    11    11     2    85     0 
+	00092: PUSHW[1]            -16 
+	00095: PUSHB[5]             11    11     6    85     0 
+	00101: PUSHW[1]            -25 
+	00104: PUSHB[5]             13    13     6    85     0 
+	00110: PUSHW[1]             -8 
+	00113: PUSHB[5]             15    15     6    85     0 
+	00119: PUSHW[1]            -22 
+	00122: NPUSHB      (47):    12    12     6    85     0    55    35    24    26    36 
+	                             8     8    14    15     2    85     8    32    13    13 
+	                             2    85     8    24    12    12     2    85     8    28 
+	                            11    11     2    85     8    18    11    11     6    85 
+	                             8    28    13    13     6    85     8 
+	00171: PUSHW[1]             -4 
+	00174: NPUSHB      (44):    15    15     6    85     8     4    16    16     6    85 
+	                             8    32    12    12     6    85    31     8    63     8 
+	                            79     8     3     8    52    34    16    43   144    26 
+	                           160    26     2    26    26    30    20    28    12     7 
+	                            30    28     4    11 
+	00220: SVTCA[y-axis] 
+	00221: MIAP[rd+ci] 
+	00222: MIRP[nrp0,md,rd,1] 
+	00223: MIAP[rd+ci] 
+	00224: MIRP[nrp0,md,rd,1] 
+	00225: SRP1       
+	00226: IP         
+	00227: MDAP[rd]   
+	00228: DELTAP1    
+	00229: MIRP[nrp0,md,rd,1] 
+	00230: SVTCA[x-axis] 
+	00231: SRP0       
+	00232: MIRP[srp0,nmd,rd,2] 
+	00233: DELTAP1    
+	00234: CALL       
+	00235: CALL       
+	00236: CALL       
+	00237: CALL       
+	00238: CALL       
+	00239: CALL       
+	00240: CALL       
+	00241: CALL       
+	00242: CALL       
+	00243: MIRP[srp0,md,rd,1] 
+	00244: MDRP[nrp0,nmd,rd,1] 
+	00245: SRP0       
+	00246: MIRP[srp0,nmd,rd,2] 
+	00247: CALL       
+	00248: CALL       
+	00249: CALL       
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+	00253: CALL       
+	00254: CALL       
+	00255: CALL       
+	00256: MIRP[srp0,md,rd,1] 
+	00257: MDRP[nrp0,nmd,rd,1] 
+	00258: IUP[y]     
+	00259: IUP[x]     
+	00260: DELTAP1    
+	00261: DELTAP1    
+	00262: DELTAP1    
+	00263: DELTAP1    
+	00264: DELTAP1    
+	00265: DELTAP1    
+	00266: DELTAP1    
+	00267: DELTAP1    
+	00268: DELTAP1    
+	00269: DELTAP1    
+	00270: DELTAP1    
+	00271: DELTAP1    
+	00272: DELTAP1    
+	00273: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:        XDual                         Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual               Y-Short X-Short On
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:                      Y-Short X-Short On
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short         On
+	 26:  YDual                               On
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short X-Short On
+	 29:        XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1063,   546)  ->  Abs (  1063,   546)
+	  1: Rel (     0,  -372)  ->  Abs (  1063,   174)
+	  2: Rel (  -240,  -133)  ->  Abs (   823,    41)
+	  3: Rel (  -117,   -65)  ->  Abs (   706,   -24)
+	  4: Rel (  -140,     0)  ->  Abs (   566,   -24)
+	  5: Rel (  -242,     0)  ->  Abs (   324,   -24)
+	  6: Rel (  -133,   159)  ->  Abs (   191,   135)
+	  7: Rel (  -123,   148)  ->  Abs (    68,   283)
+	  8: Rel (     0,   248)  ->  Abs (    68,   531)
+	  9: Rel (     0,   295)  ->  Abs (    68,   826)
+	 10: Rel (   164,   142)  ->  Abs (   232,   968)
+	 11: Rel (   137,   118)  ->  Abs (   369,  1086)
+	 12: Rel (   197,     0)  ->  Abs (   566,  1086)
+	 13: Rel (   235,     0)  ->  Abs (   801,  1086)
+	 14: Rel (   134,  -155)  ->  Abs (   935,   931)
+	 15: Rel (   128,  -147)  ->  Abs (  1063,   784)
+	 16: Rel (  -191,  -151)  ->  Abs (   872,   633)
+	 17: Rel (   -17,   129)  ->  Abs (   855,   762)
+	 18: Rel (   -66,    74)  ->  Abs (   789,   836)
+	 19: Rel (   -89,   101)  ->  Abs (   700,   937)
+	 20: Rel (  -134,     0)  ->  Abs (   566,   937)
+	 21: Rel (  -135,     0)  ->  Abs (   431,   937)
+	 22: Rel (   -89,  -101)  ->  Abs (   342,   836)
+	 23: Rel (   -66,   -74)  ->  Abs (   276,   762)
+	 24: Rel (   -17,  -129)  ->  Abs (   259,   633)
+	 25: Rel (   618,  -148)  ->  Abs (   877,   485)
+	 26: Rel (  -623,     0)  ->  Abs (   254,   485)
+	 27: Rel (     8,  -154)  ->  Abs (   262,   331)
+	 28: Rel (    73,   -97)  ->  Abs (   335,   234)
+	 29: Rel (    84,  -110)  ->  Abs (   419,   124)
+	 30: Rel (   147,     0)  ->  Abs (   566,   124)
+	 31: Rel (   147,     0)  ->  Abs (   713,   124)
+	 32: Rel (    83,   111)  ->  Abs (   796,   235)
+	 33: Rel (    72,    96)  ->  Abs (   868,   331)
+
diff --git a/lib/unstable/freetype/bug b/lib/unstable/freetype/bug
new file mode 100644
index 0000000..96ab62a
Binary files /dev/null and b/lib/unstable/freetype/bug differ
diff --git a/lib/unstable/freetype/bug.li b/lib/unstable/freetype/bug.li
new file mode 100644
index 0000000..a9ec008
--- /dev/null
+++ b/lib/unstable/freetype/bug.li
@@ -0,0 +1,34 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header	
+  
+  + name        := BUG;
+  - comment     :="A font viewer.";
+    
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Public
+  
+  + main <-
+  ( + bool:BOOLEAN;
+    bool := TRUE;
+    (bool).if {
+      bool := FALSE;
+    };
+  );    
+    
diff --git a/lib/unstable/freetype/cour.ttf b/lib/unstable/freetype/cour.ttf
new file mode 100644
index 0000000..2c99e08
Binary files /dev/null and b/lib/unstable/freetype/cour.ttf differ
diff --git a/lib/unstable/freetype/cour.txt b/lib/unstable/freetype/cour.txt
new file mode 100644
index 0000000..e954146
--- /dev/null
+++ b/lib/unstable/freetype/cour.txt
@@ -0,0 +1,165083 @@
+
+; TrueType v1.0 Dump Program - v1.8, Oct 29 2002, rrt, dra, gch, ddb, lcp, pml
+; Copyright (C) 1991 ZSoft Corporation. All rights reserved.
+; Portions Copyright (C) 1991-2001 Microsoft Corporation. All rights reserved.
+
+; Dumping file 'z:\isaac\freetype\cour.ttf'
+
+Offset Table
+------ -----
+  sfnt version:     1.0
+  numTables =        22
+  searchRange =     256
+  entrySelector =     4
+  rangeShift =       96
+
+ 0. 'DSIG' - chksm = 0x06E9A2E4, off = 0x00048B18, len =     5544
+ 1. 'EBDT' - chksm = 0xA9AB4C5C, off = 0x00046958, len =     1012
+ 2. 'EBLC' - chksm = 0x1D2BFD5C, off = 0x00046D4C, len =     1332
+ 3. 'GDEF' - chksm = 0xA4CCA50D, off = 0x00047280, len =      286
+ 4. 'GSUB' - chksm = 0x4C63757C, off = 0x000473A0, len =     3662
+ 5. 'OS/2' - chksm = 0x0D03304D, off = 0x000001E8, len =       86
+ 6. 'VDMX' - chksm = 0x32B24D27, off = 0x000042CC, len =     4500
+ 7. 'bdat' - chksm = 0xA9AB4C5C, off = 0x000481F0, len =     1012
+ 8. 'bloc' - chksm = 0x1D2BFD5C, off = 0x000485E4, len =     1332
+ 9. 'cmap' - chksm = 0x58CED95B, off = 0x000018EC, len =     5442
+10. 'cvt ' - chksm = 0xA5A561F1, off = 0x000064EC, len =     1922
+11. 'fpgm' - chksm = 0xB1123632, off = 0x00005F14, len =     1496
+12. 'gasp' - chksm = 0x002B0009, off = 0x00000240, len =       16
+13. 'glyf' - chksm = 0x1D89A994, off = 0x000076C4, len =   245894
+14. 'head' - chksm = 0xC4FB2978, off = 0x0000016C, len =       54
+15. 'hhea' - chksm = 0x0B7B023C, off = 0x000001A4, len =       36
+16. 'hmtx' - chksm = 0xD300AF59, off = 0x00006C70, len =     2642
+17. 'loca' - chksm = 0x0ADA78D6, off = 0x00002E30, len =     5276
+18. 'maxp' - chksm = 0x097C0C78, off = 0x000001C8, len =       32
+19. 'name' - chksm = 0x0BAE33CE, off = 0x00000250, len =     5788
+20. 'post' - chksm = 0x76EBA0C0, off = 0x0004374C, len =    12809
+21. 'prep' - chksm = 0xBCA08F1F, off = 0x00005460, len =     2737
+
+'head' Table - Font Header
+--------------------------
+Size = 54 bytes (expecting 54 bytes)
+  'head' version:      1.0
+  fontRevision:        2.9
+  checkSumAdjustment:  0x77A0537B
+  magicNumber:         0x5F0F3CF5
+  flags:               0x0809- baseline(y)=0 - int ppem 
+  unitsPerEm:          2048
+  created:             Wed Sep 26 03:24:33 1990
+  modified:            Thu Aug 24 01:19:03 2000
+  xMin:                -44
+  yMin:                -1392
+  xMax:                1306
+  yMax:                2091
+  macStyle bits:       0x0000
+  lowestRecPPEM:       9
+  fontDirectionHint:   1
+  indexToLocFormat:    1
+  glyphDataFormat:     0
+
+'hhea' Table - Horizontal Header
+--------------------------------
+Size = 36 bytes (expecting 36 bytes)
+	'hhea' version:         1.0
+	yAscender:            1705
+	yDescender:           -615
+	yLineGap:             0
+	advanceWidthMax:      1229
+	minLeftSideBearing:   -44
+	minRightSideBearing:  -46
+	xMaxExtent:           1275
+	horizCaretSlopeNum:   1
+	horizCaretSlopeDenom: 0
+	reserved0:            0
+	reserved1:            0
+	reserved2:            0
+	reserved3:            0
+	reserved4:            0
+	metricDataFormat:     0
+	numOf_LongHorMetrics: 3
+
+'maxp' Table - Maximum Profile
+------------------------------
+Size = 32 bytes (expecting 32 bytes)
+	'maxp' version:		  1.0
+	numGlyphs:		1318
+	maxPoints:		290
+	maxContours:		73
+	maxCompositePoints:	114
+	maxCompositeContours:	5
+	maxZones:		2
+	maxTwilightPoints:	16
+	maxStorage:		47
+	maxFunctionDefs:	85
+	maxInstructionDefs:	0
+	maxStackElements:	927
+	maxSizeOfInstructions:	2737
+	maxComponentElements:	3
+	maxComponentDepth:	2
+
+'name' Table - Naming Table
+---------------------------
+	Format:		0
+	Count:		70
+	stringOffset:	 846
+Size = 5788 bytes
+	  0. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		0
+	     Length:		254
+	     Offset:		0
+		Data:  0 54  0 79  0 70  0 65  0 66  >  .T.y.p.e.f
+		       0 61  0 63  0 65  0 20  0 A9  >  .a.c.e. .©
+		       0 20  0 54  0 68  0 65  0 20  >  . .T.h.e. 
+		       0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 43  >  .y.p.e. .C
+		       0 6F  0 72  0 70  0 6F  0 72  >  .o.r.p.o.r
+		       0 61  0 74  0 69  0 6F  0 6E  >  .a.t.i.o.n
+		       0 20  0 70  0 6C  0 63  0 2E  >  . .p.l.c..
+		       0 20  0 44  0 61  0 74  0 61  >  . .D.a.t.a
+		       0 20  0 A9  0 20  0 54  0 68  >  . .©. .T.h
+		       0 65  0 20  0 4D  0 6F  0 6E  >  .e. .M.o.n
+		       0 6F  0 74  0 79  0 70  0 65  >  .o.t.y.p.e
+		       0 20  0 43  0 6F  0 72  0 70  >  . .C.o.r.p
+		       0 6F  0 72  0 61  0 74  0 69  >  .o.r.a.t.i
+		       0 6F  0 6E  0 20  0 70  0 6C  >  .o.n. .p.l
+		       0 63  0 2F  0 54  0 79  0 70  >  .c./.T.y.p
+		       0 65  0 20  0 53  0 6F  0 6C  >  .e. .S.o.l
+		       0 75  0 74  0 69  0 6F  0 6E  >  .u.t.i.o.n
+		       0 73  0 20  0 49  0 6E  0 63  >  .s. .I.n.c
+		       0 2E  0 20  0 31  0 39  0 39  >  ... .1.9.9
+		       0 30  0 2D  0 31  0 39  0 39  >  .0.-.1.9.9
+		       0 34  0 2E  0 20  0 41  0 6C  >  .4... .A.l
+		       0 6C  0 20  0 52  0 69  0 67  >  .l. .R.i.g
+		       0 68  0 74  0 73  0 20  0 52  >  .h.t.s. .R
+		       0 65  0 73  0 65  0 72  0 76  >  .e.s.e.r.v
+		       0 65  0 64                    >  .e.d
+
+	  1. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		1
+	     Length:		22
+	     Offset:		272
+		Data:  0 43  0 6F  0 75  0 72  0 69  >  .C.o.u.r.i
+		       0 65  0 72  0 20  0 4E  0 65  >  .e.r. .N.e
+		       0 77                          >  .w
+
+	  2. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		2
+	     Length:		14
+	     Offset:		344
+		Data:  0 52  0 65  0 67  0 75  0 6C  >  .R.e.g.u.l
+		       0 61  0 72                    >  .a.r
+
+	  3. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		3
+	     Length:		90
+	     Offset:		254
+		Data:  0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 3A  0 43  >  .y.p.e.:.C
+		       0 6F  0 75  0 72  0 69  0 65  >  .o.u.r.i.e
+		       0 72  0 20  0 4E  0 65  0 77  >  .r. .N.e.w
+		       0 3A  0 76  0 65  0 72  0 73  >  .:.v.e.r.s
+		       0 69  0 6F  0 6E  0 20  0 32  >  .i.o.n. .2
+		       0 2E  0 39  0 30  0 20  0 28  >  ...9.0. .(
+		       0 4D  0 69  0 63  0 72  0 6F  >  .M.i.c.r.o
+		       0 73  0 6F  0 66  0 74  0 29  >  .s.o.f.t.)
+
+	  4. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		4
+	     Length:		22
+	     Offset:		272
+		Data:  0 43  0 6F  0 75  0 72  0 69  >  .C.o.u.r.i
+		       0 65  0 72  0 20  0 4E  0 65  >  .e.r. .N.e
+		       0 77                          >  .w
+
+	  5. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		5
+	     Length:		24
+	     Offset:		358
+		Data:  0 56  0 65  0 72  0 73  0 69  >  .V.e.r.s.i
+		       0 6F  0 6E  0 20  0 32  0 2E  >  .o.n. .2..
+		       0 39  0 30                    >  .9.0
+
+	  6. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		6
+	     Length:		28
+	     Offset:		382
+		Data:  0 43  0 6F  0 75  0 72  0 69  >  .C.o.u.r.i
+		       0 65  0 72  0 4E  0 65  0 77  >  .e.r.N.e.w
+		       0 50  0 53  0 4D  0 54        >  .P.S.M.T
+
+	  7. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		7
+	     Length:		166
+	     Offset:		410
+		Data:  0 43  0 6F  0 75  0 72  0 69  >  .C.o.u.r.i
+		       0 65  0 72 21 22  0 20  0 54  >  .e.r!". .T
+		       0 72  0 61  0 64  0 65  0 6D  >  .r.a.d.e.m
+		       0 61  0 72  0 6B  0 20  0 6F  >  .a.r.k. .o
+		       0 66  0 20  0 54  0 68  0 65  >  .f. .T.h.e
+		       0 20  0 4D  0 6F  0 6E  0 6F  >  . .M.o.n.o
+		       0 74  0 79  0 70  0 65  0 20  >  .t.y.p.e. 
+		       0 43  0 6F  0 72  0 70  0 6F  >  .C.o.r.p.o
+		       0 72  0 61  0 74  0 69  0 6F  >  .r.a.t.i.o
+		       0 6E  0 20  0 70  0 6C  0 63  >  .n. .p.l.c
+		       0 20  0 72  0 65  0 67  0 69  >  . .r.e.g.i
+		       0 73  0 74  0 65  0 72  0 65  >  .s.t.e.r.e
+		       0 64  0 20  0 69  0 6E  0 20  >  .d. .i.n. 
+		       0 63  0 65  0 72  0 74  0 61  >  .c.e.r.t.a
+		       0 69  0 6E  0 20  0 63  0 6F  >  .i.n. .c.o
+		       0 75  0 6E  0 74  0 72  0 69  >  .u.n.t.r.i
+		       0 65  0 73  0 2E              >  .e.s..
+
+	  8. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		8
+	     Length:		38
+	     Offset:		716
+		Data:  0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 54  >  .y.p.e. .T
+		       0 79  0 70  0 6F  0 67  0 72  >  .y.p.o.g.r
+		       0 61  0 70  0 68  0 79        >  .a.p.h.y
+
+	  9. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		9
+	     Length:		28
+	     Offset:		2292
+		Data:  0 48  0 6F  0 77  0 61  0 72  >  .H.o.w.a.r
+		       0 64  0 20  0 4B  0 65  0 74  >  .d. .K.e.t
+		       0 74  0 6C  0 65  0 72        >  .t.l.e.r
+
+	 10. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		10
+	     Length:		542
+	     Offset:		2320
+		Data:  0 44  0 65  0 73  0 69  0 67  >  .D.e.s.i.g
+		       0 6E  0 65  0 64  0 20  0 61  >  .n.e.d. .a
+		       0 73  0 20  0 61  0 20  0 74  >  .s. .a. .t
+		       0 79  0 70  0 65  0 77  0 72  >  .y.p.e.w.r
+		       0 69  0 74  0 65  0 72  0 20  >  .i.t.e.r. 
+		       0 66  0 61  0 63  0 65  0 20  >  .f.a.c.e. 
+		       0 66  0 6F  0 72  0 20  0 49  >  .f.o.r. .I
+		       0 42  0 4D  0 2C  0 20  0 43  >  .B.M.,. .C
+		       0 6F  0 75  0 72  0 69  0 65  >  .o.u.r.i.e
+		       0 72  0 20  0 77  0 61  0 73  >  .r. .w.a.s
+		       0 20  0 72  0 65  0 20  0 64  >  . .r.e. .d
+		       0 72  0 61  0 77  0 6E  0 20  >  .r.a.w.n. 
+		       0 62  0 79  0 20  0 41  0 64  >  .b.y. .A.d
+		       0 72  0 69  0 61  0 6E  0 20  >  .r.i.a.n. 
+		       0 46  0 72  0 75  0 74  0 69  >  .F.r.u.t.i
+		       0 67  0 65  0 72  0 20  0 66  >  .g.e.r. .f
+		       0 6F  0 72  0 20  0 49  0 42  >  .o.r. .I.B
+		       0 4D  0 20  0 53  0 65  0 6C  >  .M. .S.e.l
+		       0 65  0 63  0 74  0 72  0 69  >  .e.c.t.r.i
+		       0 63  0 20  0 73  0 65  0 72  >  .c. .s.e.r
+		       0 69  0 65  0 73  0 2E  0 20  >  .i.e.s... 
+		       0 20  0 41  0 20  0 74  0 79  >  . .A. .t.y
+		       0 70  0 69  0 63  0 61  0 6C  >  .p.i.c.a.l
+		       0 20  0 66  0 69  0 78  0 65  >  . .f.i.x.e
+		       0 64  0 20  0 70  0 69  0 74  >  .d. .p.i.t
+		       0 63  0 68  0 20  0 64  0 65  >  .c.h. .d.e
+		       0 73  0 69  0 67  0 6E  0 2C  >  .s.i.g.n.,
+		       0 20  0 6D  0 6F  0 6E  0 6F  >  . .m.o.n.o
+		       0 74  0 6F  0 6E  0 65  0 20  >  .t.o.n.e. 
+		       0 69  0 6E  0 20  0 77  0 65  >  .i.n. .w.e
+		       0 69  0 67  0 68  0 74  0 20  >  .i.g.h.t. 
+		       0 61  0 6E  0 64  0 20  0 73  >  .a.n.d. .s
+		       0 6C  0 61  0 62  0 20  0 73  >  .l.a.b. .s
+		       0 65  0 72  0 69  0 66  0 20  >  .e.r.i.f. 
+		       0 69  0 6E  0 20  0 63  0 6F  >  .i.n. .c.o
+		       0 6E  0 63  0 65  0 70  0 74  >  .n.c.e.p.t
+		       0 2E  0 20  0 20  0 55  0 73  >  ... . .U.s
+		       0 65  0 64  0 20  0 74  0 6F  >  .e.d. .t.o
+		       0 20  0 65  0 6D  0 75  0 6C  >  . .e.m.u.l
+		       0 61  0 74  0 65  0 20  0 74  >  .a.t.e. .t
+		       0 79  0 70  0 65  0 77  0 72  >  .y.p.e.w.r
+		       0 69  0 74  0 65  0 72  0 20  >  .i.t.e.r. 
+		       0 6F  0 75  0 74  0 70  0 75  >  .o.u.t.p.u
+		       0 74  0 20  0 66  0 6F  0 72  >  .t. .f.o.r
+		       0 20  0 72  0 65  0 70  0 6F  >  . .r.e.p.o
+		       0 72  0 74  0 73  0 2C  0 20  >  .r.t.s.,. 
+		       0 74  0 61  0 62  0 75  0 6C  >  .t.a.b.u.l
+		       0 61  0 72  0 20  0 77  0 6F  >  .a.r. .w.o
+		       0 72  0 6B  0 20  0 61  0 6E  >  .r.k. .a.n
+		       0 64  0 20  0 74  0 65  0 63  >  .d. .t.e.c
+		       0 68  0 6E  0 69  0 63  0 61  >  .h.n.i.c.a
+		       0 6C  0 20  0 64  0 6F  0 63  >  .l. .d.o.c
+		       0 75  0 6D  0 65  0 6E  0 74  >  .u.m.e.n.t
+		       0 61  0 74  0 69  0 6F  0 6E  >  .a.t.i.o.n
+		       0 2E                          >  ..
+
+	 11. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		11
+	     Length:		108
+	     Offset:		2862
+		Data:  0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 6D  0 6F  0 6E  0 6F  >  ...m.o.n.o
+		       0 74  0 79  0 70  0 65  0 2E  >  .t.y.p.e..
+		       0 63  0 6F  0 6D  0 2F  0 68  >  .c.o.m./.h
+		       0 74  0 6D  0 6C  0 2F  0 6D  >  .t.m.l./.m
+		       0 74  0 6E  0 61  0 6D  0 65  >  .t.n.a.m.e
+		       0 2F  0 6D  0 73  0 5F  0 63  >  ./.m.s._.c
+		       0 6F  0 75  0 72  0 69  0 65  >  .o.u.r.i.e
+		       0 72  0 6E  0 65  0 77  0 2E  >  .r.n.e.w..
+		       0 68  0 74  0 6D  0 6C        >  .h.t.m.l
+
+	 12. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		12
+	     Length:		102
+	     Offset:		2970
+		Data:  0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 6D  0 6F  0 6E  0 6F  >  ...m.o.n.o
+		       0 74  0 79  0 70  0 65  0 2E  >  .t.y.p.e..
+		       0 63  0 6F  0 6D  0 2F  0 68  >  .c.o.m./.h
+		       0 74  0 6D  0 6C  0 2F  0 6D  >  .t.m.l./.m
+		       0 74  0 6E  0 61  0 6D  0 65  >  .t.n.a.m.e
+		       0 2F  0 6D  0 73  0 5F  0 77  >  ./.m.s._.w
+		       0 65  0 6C  0 63  0 6F  0 6D  >  .e.l.c.o.m
+		       0 65  0 2E  0 68  0 74  0 6D  >  .e...h.t.m
+		       0 6C                          >  .l
+
+	 13. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		13
+	     Length:		1716
+	     Offset:		576
+		Data:  0 4E  0 4F  0 54  0 49  0 46  >  .N.O.T.I.F
+		       0 49  0 43  0 41  0 54  0 49  >  .I.C.A.T.I
+		       0 4F  0 4E  0 20  0 4F  0 46  >  .O.N. .O.F
+		       0 20  0 4C  0 49  0 43  0 45  >  . .L.I.C.E
+		       0 4E  0 53  0 45  0 20  0 41  >  .N.S.E. .A
+		       0 47  0 52  0 45  0 45  0 4D  >  .G.R.E.E.M
+		       0 45  0 4E  0 54  0  D  0  A  >  .E.N.T....
+		       0  D  0  A  0 54  0 68  0 69  >  .....T.h.i
+		       0 73  0 20  0 74  0 79  0 70  >  .s. .t.y.p
+		       0 65  0 66  0 61  0 63  0 65  >  .e.f.a.c.e
+		       0 20  0 69  0 73  0 20  0 74  >  . .i.s. .t
+		       0 68  0 65  0 20  0 70  0 72  >  .h.e. .p.r
+		       0 6F  0 70  0 65  0 72  0 74  >  .o.p.e.r.t
+		       0 79  0 20  0 6F  0 66  0 20  >  .y. .o.f. 
+		       0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 54  >  .y.p.e. .T
+		       0 79  0 70  0 6F  0 67  0 72  >  .y.p.o.g.r
+		       0 61  0 70  0 68  0 79  0 20  >  .a.p.h.y. 
+		       0 61  0 6E  0 64  0 20  0 69  >  .a.n.d. .i
+		       0 74  0 73  0 20  0 75  0 73  >  .t.s. .u.s
+		       0 65  0 20  0 62  0 79  0 20  >  .e. .b.y. 
+		       0 79  0 6F  0 75  0 20  0 69  >  .y.o.u. .i
+		       0 73  0 20  0 63  0 6F  0 76  >  .s. .c.o.v
+		       0 65  0 72  0 65  0 64  0 20  >  .e.r.e.d. 
+		       0 75  0 6E  0 64  0 65  0 72  >  .u.n.d.e.r
+		       0 20  0 74  0 68  0 65  0 20  >  . .t.h.e. 
+		       0 74  0 65  0 72  0 6D  0 73  >  .t.e.r.m.s
+		       0 20  0 6F  0 66  0 20  0 61  >  . .o.f. .a
+		       0 20  0 6C  0 69  0 63  0 65  >  . .l.i.c.e
+		       0 6E  0 73  0 65  0 20  0 61  >  .n.s.e. .a
+		       0 67  0 72  0 65  0 65  0 6D  >  .g.r.e.e.m
+		       0 65  0 6E  0 74  0 2E  0 20  >  .e.n.t... 
+		       0 59  0 6F  0 75  0 20  0 68  >  .Y.o.u. .h
+		       0 61  0 76  0 65  0 20  0 6F  >  .a.v.e. .o
+		       0 62  0 74  0 61  0 69  0 6E  >  .b.t.a.i.n
+		       0 65  0 64  0 20  0 74  0 68  >  .e.d. .t.h
+		       0 69  0 73  0 20  0 74  0 79  >  .i.s. .t.y
+		       0 70  0 65  0 66  0 61  0 63  >  .p.e.f.a.c
+		       0 65  0 20  0 73  0 6F  0 66  >  .e. .s.o.f
+		       0 74  0 77  0 61  0 72  0 65  >  .t.w.a.r.e
+		       0 20  0 65  0 69  0 74  0 68  >  . .e.i.t.h
+		       0 65  0 72  0 20  0 64  0 69  >  .e.r. .d.i
+		       0 72  0 65  0 63  0 74  0 6C  >  .r.e.c.t.l
+		       0 79  0 20  0 66  0 72  0 6F  >  .y. .f.r.o
+		       0 6D  0 20  0 4D  0 6F  0 6E  >  .m. .M.o.n
+		       0 6F  0 74  0 79  0 70  0 65  >  .o.t.y.p.e
+		       0 20  0 6F  0 72  0 20  0 74  >  . .o.r. .t
+		       0 6F  0 67  0 65  0 74  0 68  >  .o.g.e.t.h
+		       0 65  0 72  0 20  0 77  0 69  >  .e.r. .w.i
+		       0 74  0 68  0 20  0 73  0 6F  >  .t.h. .s.o
+		       0 66  0 74  0 77  0 61  0 72  >  .f.t.w.a.r
+		       0 65  0 20  0 64  0 69  0 73  >  .e. .d.i.s
+		       0 74  0 72  0 69  0 62  0 75  >  .t.r.i.b.u
+		       0 74  0 65  0 64  0 20  0 62  >  .t.e.d. .b
+		       0 79  0 20  0 6F  0 6E  0 65  >  .y. .o.n.e
+		       0 20  0 6F  0 66  0 20  0 4D  >  . .o.f. .M
+		       0 6F  0 6E  0 6F  0 74  0 79  >  .o.n.o.t.y
+		       0 70  0 65  0 27  0 73  0 20  >  .p.e.'.s. 
+		       0 6C  0 69  0 63  0 65  0 6E  >  .l.i.c.e.n
+		       0 73  0 65  0 65  0 73  0 2E  >  .s.e.e.s..
+		       0  D  0  A  0  D  0  A  0 54  >  .........T
+		       0 68  0 69  0 73  0 20  0 73  >  .h.i.s. .s
+		       0 6F  0 66  0 74  0 77  0 61  >  .o.f.t.w.a
+		       0 72  0 65  0 20  0 69  0 73  >  .r.e. .i.s
+		       0 20  0 61  0 20  0 76  0 61  >  . .a. .v.a
+		       0 6C  0 75  0 61  0 62  0 6C  >  .l.u.a.b.l
+		       0 65  0 20  0 61  0 73  0 73  >  .e. .a.s.s
+		       0 65  0 74  0 20  0 6F  0 66  >  .e.t. .o.f
+		       0 20  0 4D  0 6F  0 6E  0 6F  >  . .M.o.n.o
+		       0 74  0 79  0 70  0 65  0 2E  >  .t.y.p.e..
+		       0 20  0 55  0 6E  0 6C  0 65  >  . .U.n.l.e
+		       0 73  0 73  0 20  0 79  0 6F  >  .s.s. .y.o
+		       0 75  0 20  0 68  0 61  0 76  >  .u. .h.a.v
+		       0 65  0 20  0 65  0 6E  0 74  >  .e. .e.n.t
+		       0 65  0 72  0 65  0 64  0 20  >  .e.r.e.d. 
+		       0 69  0 6E  0 74  0 6F  0 20  >  .i.n.t.o. 
+		       0 61  0 20  0 73  0 70  0 65  >  .a. .s.p.e
+		       0 63  0 69  0 66  0 69  0 63  >  .c.i.f.i.c
+		       0 20  0 6C  0 69  0 63  0 65  >  . .l.i.c.e
+		       0 6E  0 73  0 65  0 20  0 61  >  .n.s.e. .a
+		       0 67  0 72  0 65  0 65  0 6D  >  .g.r.e.e.m
+		       0 65  0 6E  0 74  0 20  0 67  >  .e.n.t. .g
+		       0 72  0 61  0 6E  0 74  0 69  >  .r.a.n.t.i
+		       0 6E  0 67  0 20  0 79  0 6F  >  .n.g. .y.o
+		       0 75  0 20  0 61  0 64  0 64  >  .u. .a.d.d
+		       0 69  0 74  0 69  0 6F  0 6E  >  .i.t.i.o.n
+		       0 61  0 6C  0 20  0 72  0 69  >  .a.l. .r.i
+		       0 67  0 68  0 74  0 73  0 2C  >  .g.h.t.s.,
+		       0 20  0 79  0 6F  0 75  0 72  >  . .y.o.u.r
+		       0 20  0 75  0 73  0 65  0 20  >  . .u.s.e. 
+		       0 6F  0 66  0 20  0 74  0 68  >  .o.f. .t.h
+		       0 69  0 73  0 20  0 73  0 6F  >  .i.s. .s.o
+		       0 66  0 74  0 77  0 61  0 72  >  .f.t.w.a.r
+		       0 65  0 20  0 69  0 73  0 20  >  .e. .i.s. 
+		       0 6C  0 69  0 6D  0 69  0 74  >  .l.i.m.i.t
+		       0 65  0 64  0 20  0 74  0 6F  >  .e.d. .t.o
+		       0 20  0 79  0 6F  0 75  0 72  >  . .y.o.u.r
+		       0 20  0 77  0 6F  0 72  0 6B  >  . .w.o.r.k
+		       0 73  0 74  0 61  0 74  0 69  >  .s.t.a.t.i
+		       0 6F  0 6E  0 20  0 66  0 6F  >  .o.n. .f.o
+		       0 72  0 20  0 79  0 6F  0 75  >  .r. .y.o.u
+		       0 72  0 20  0 6F  0 77  0 6E  >  .r. .o.w.n
+		       0 20  0 70  0 75  0 62  0 6C  >  . .p.u.b.l
+		       0 69  0 73  0 68  0 69  0 6E  >  .i.s.h.i.n
+		       0 67  0 20  0 75  0 73  0 65  >  .g. .u.s.e
+		       0 2E  0 20  0 59  0 6F  0 75  >  ... .Y.o.u
+		       0 20  0 6D  0 61  0 79  0 20  >  . .m.a.y. 
+		       0 6E  0 6F  0 74  0 20  0 63  >  .n.o.t. .c
+		       0 6F  0 70  0 79  0 20  0 6F  >  .o.p.y. .o
+		       0 72  0 20  0 64  0 69  0 73  >  .r. .d.i.s
+		       0 74  0 72  0 69  0 62  0 75  >  .t.r.i.b.u
+		       0 74  0 65  0 20  0 74  0 68  >  .t.e. .t.h
+		       0 69  0 73  0 20  0 73  0 6F  >  .i.s. .s.o
+		       0 66  0 74  0 77  0 61  0 72  >  .f.t.w.a.r
+		       0 65  0 2E  0  D  0  A  0  D  >  .e........
+		       0  A  0 49  0 66  0 20  0 79  >  ...I.f. .y
+		       0 6F  0 75  0 20  0 68  0 61  >  .o.u. .h.a
+		       0 76  0 65  0 20  0 61  0 6E  >  .v.e. .a.n
+		       0 79  0 20  0 71  0 75  0 65  >  .y. .q.u.e
+		       0 73  0 74  0 69  0 6F  0 6E  >  .s.t.i.o.n
+		       0 20  0 63  0 6F  0 6E  0 63  >  . .c.o.n.c
+		       0 65  0 72  0 6E  0 69  0 6E  >  .e.r.n.i.n
+		       0 67  0 20  0 79  0 6F  0 75  >  .g. .y.o.u
+		       0 72  0 20  0 72  0 69  0 67  >  .r. .r.i.g
+		       0 68  0 74  0 73  0 20  0 79  >  .h.t.s. .y
+		       0 6F  0 75  0 20  0 73  0 68  >  .o.u. .s.h
+		       0 6F  0 75  0 6C  0 64  0 20  >  .o.u.l.d. 
+		       0 72  0 65  0 76  0 69  0 65  >  .r.e.v.i.e
+		       0 77  0 20  0 74  0 68  0 65  >  .w. .t.h.e
+		       0 20  0 6C  0 69  0 63  0 65  >  . .l.i.c.e
+		       0 6E  0 73  0 65  0 20  0 61  >  .n.s.e. .a
+		       0 67  0 72  0 65  0 65  0 6D  >  .g.r.e.e.m
+		       0 65  0 6E  0 74  0 20  0 79  >  .e.n.t. .y
+		       0 6F  0 75  0 20  0 72  0 65  >  .o.u. .r.e
+		       0 63  0 65  0 69  0 76  0 65  >  .c.e.i.v.e
+		       0 64  0 20  0 77  0 69  0 74  >  .d. .w.i.t
+		       0 68  0 20  0 74  0 68  0 65  >  .h. .t.h.e
+		       0 20  0 73  0 6F  0 66  0 74  >  . .s.o.f.t
+		       0 77  0 61  0 72  0 65  0 20  >  .w.a.r.e. 
+		       0 6F  0 72  0 20  0 63  0 6F  >  .o.r. .c.o
+		       0 6E  0 74  0 61  0 63  0 74  >  .n.t.a.c.t
+		       0 20  0 4D  0 6F  0 6E  0 6F  >  . .M.o.n.o
+		       0 74  0 79  0 70  0 65  0 20  >  .t.y.p.e. 
+		       0 66  0 6F  0 72  0 20  0 61  >  .f.o.r. .a
+		       0 20  0 63  0 6F  0 70  0 79  >  . .c.o.p.y
+		       0 20  0 6F  0 66  0 20  0 74  >  . .o.f. .t
+		       0 68  0 65  0 20  0 6C  0 69  >  .h.e. .l.i
+		       0 63  0 65  0 6E  0 73  0 65  >  .c.e.n.s.e
+		       0 20  0 61  0 67  0 72  0 65  >  . .a.g.r.e
+		       0 65  0 6D  0 65  0 6E  0 74  >  .e.m.e.n.t
+		       0 2E  0  D  0  A  0  D  0  A  >  ..........
+		       0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 63  >  .y.p.e. .c
+		       0 61  0 6E  0 20  0 62  0 65  >  .a.n. .b.e
+		       0 20  0 63  0 6F  0 6E  0 74  >  . .c.o.n.t
+		       0 61  0 63  0 74  0 65  0 64  >  .a.c.t.e.d
+		       0 20  0 61  0 74  0 3A  0  D  >  . .a.t.:..
+		       0  A  0  D  0  A  0 55  0 53  >  .......U.S
+		       0 41  0 20  0 2D  0 20  0 28  >  .A. .-. .(
+		       0 38  0 34  0 37  0 29  0 20  >  .8.4.7.). 
+		       0 37  0 31  0 38  0 2D  0 30  >  .7.1.8.-.0
+		       0 34  0 30  0 30  0  9  0  9  >  .4.0.0....
+		       0 55  0 4B  0 20  0 2D  0 20  >  .U.K. .-. 
+		       0 30  0 31  0 31  0 34  0 34  >  .0.1.1.4.4
+		       0 20  0 30  0 31  0 37  0 33  >  . .0.1.7.3
+		       0 37  0 20  0 37  0 36  0 35  >  .7. .7.6.5
+		       0 39  0 35  0 39  0  D  0  A  >  .9.5.9....
+		       0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 6D  0 6F  0 6E  0 6F  >  ...m.o.n.o
+		       0 74  0 79  0 70  0 65  0 2E  >  .t.y.p.e..
+		       0 63  0 6F  0 6D              >  .c.o.m
+
+	 14. Platform ID:	0
+	     Specific ID:	3
+	     Language ID:	0
+	     Name ID:		14
+	     Length:		92
+	     Offset:		3072
+		Data:  0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 6D  0 6F  0 6E  0 6F  >  ...m.o.n.o
+		       0 74  0 79  0 70  0 65  0 2E  >  .t.y.p.e..
+		       0 63  0 6F  0 6D  0 2F  0 68  >  .c.o.m./.h
+		       0 74  0 6D  0 6C  0 2F  0 74  >  .t.m.l./.t
+		       0 79  0 70  0 65  0 2F  0 6C  >  .y.p.e./.l
+		       0 69  0 63  0 65  0 6E  0 73  >  .i.c.e.n.s
+		       0 65  0 2E  0 68  0 74  0 6D  >  .e...h.t.m
+		       0 6C                          >  .l
+
+	 15. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		0
+	     Length:		127
+	     Offset:		3164
+		Data: 54 79 70 65 66 61 63 65 20 A9  >  Typeface ©
+		      20 54 68 65 20 4D 6F 6E 6F 74  >   The Monot
+		      79 70 65 20 43 6F 72 70 6F 72  >  ype Corpor
+		      61 74 69 6F 6E 20 70 6C 63 2E  >  ation plc.
+		      20 44 61 74 61 20 A9 20 54 68  >   Data © Th
+		      65 20 4D 6F 6E 6F 74 79 70 65  >  e Monotype
+		      20 43 6F 72 70 6F 72 61 74 69  >   Corporati
+		      6F 6E 20 70 6C 63 2F 54 79 70  >  on plc/Typ
+		      65 20 53 6F 6C 75 74 69 6F 6E  >  e Solution
+		      73 20 49 6E 63 2E 20 31 39 39  >  s Inc. 199
+		      30 2D 31 39 39 34 2E 20 41 6C  >  0-1994. Al
+		      6C 20 52 69 67 68 74 73 20 52  >  l Rights R
+		      65 73 65 72 76 65 64           >  eserved
+
+	 16. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		1
+	     Length:		11
+	     Offset:		3300
+		Data: 43 6F 75 72 69 65 72 20 4E 65  >  Courier Ne
+		      77                             >  w
+
+	 17. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		2
+	     Length:		7
+	     Offset:		3336
+		Data: 52 65 67 75 6C 61 72           >  Regular
+
+	 18. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		3
+	     Length:		45
+	     Offset:		3291
+		Data: 4D 6F 6E 6F 74 79 70 65 3A 43  >  Monotype:C
+		      6F 75 72 69 65 72 20 4E 65 77  >  ourier New
+		      3A 76 65 72 73 69 6F 6E 20 32  >  :version 2
+		      2E 39 30 20 28 4D 69 63 72 6F  >  .90 (Micro
+		      73 6F 66 74 29                 >  soft)
+
+	 19. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		4
+	     Length:		11
+	     Offset:		3300
+		Data: 43 6F 75 72 69 65 72 20 4E 65  >  Courier Ne
+		      77                             >  w
+
+	 20. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		5
+	     Length:		12
+	     Offset:		3343
+		Data: 56 65 72 73 69 6F 6E 20 32 2E  >  Version 2.
+		      39 30                          >  90
+
+	 21. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		6
+	     Length:		14
+	     Offset:		3355
+		Data: 43 6F 75 72 69 65 72 4E 65 77  >  CourierNew
+		      50 53 4D 54                    >  PSMT
+
+	 22. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		7
+	     Length:		83
+	     Offset:		3369
+		Data: 43 6F 75 72 69 65 72 AA 20 54  >  Courierª T
+		      72 61 64 65 6D 61 72 6B 20 6F  >  rademark o
+		      66 20 54 68 65 20 4D 6F 6E 6F  >  f The Mono
+		      74 79 70 65 20 43 6F 72 70 6F  >  type Corpo
+		      72 61 74 69 6F 6E 20 70 6C 63  >  ration plc
+		      20 72 65 67 69 73 74 65 72 65  >   registere
+		      64 20 69 6E 20 63 65 72 74 61  >  d in certa
+		      69 6E 20 63 6F 75 6E 74 72 69  >  in countri
+		      65 73 2E                       >  es.
+
+	 23. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		8
+	     Length:		19
+	     Offset:		3522
+		Data: 4D 6F 6E 6F 74 79 70 65 20 54  >  Monotype T
+		      79 70 6F 67 72 61 70 68 79     >  ypography
+
+	 24. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		9
+	     Length:		14
+	     Offset:		4310
+		Data: 48 6F 77 61 72 64 20 4B 65 74  >  Howard Ket
+		      74 6C 65 72                    >  tler
+
+	 25. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		10
+	     Length:		271
+	     Offset:		4324
+		Data: 44 65 73 69 67 6E 65 64 20 61  >  Designed a
+		      73 20 61 20 74 79 70 65 77 72  >  s a typewr
+		      69 74 65 72 20 66 61 63 65 20  >  iter face 
+		      66 6F 72 20 49 42 4D 2C 20 43  >  for IBM, C
+		      6F 75 72 69 65 72 20 77 61 73  >  ourier was
+		      20 72 65 20 64 72 61 77 6E 20  >   re drawn 
+		      62 79 20 41 64 72 69 61 6E 20  >  by Adrian 
+		      46 72 75 74 69 67 65 72 20 66  >  Frutiger f
+		      6F 72 20 49 42 4D 20 53 65 6C  >  or IBM Sel
+		      65 63 74 72 69 63 20 73 65 72  >  ectric ser
+		      69 65 73 2E 20 20 41 20 74 79  >  ies.  A ty
+		      70 69 63 61 6C 20 66 69 78 65  >  pical fixe
+		      64 20 70 69 74 63 68 20 64 65  >  d pitch de
+		      73 69 67 6E 2C 20 6D 6F 6E 6F  >  sign, mono
+		      74 6F 6E 65 20 69 6E 20 77 65  >  tone in we
+		      69 67 68 74 20 61 6E 64 20 73  >  ight and s
+		      6C 61 62 20 73 65 72 69 66 20  >  lab serif 
+		      69 6E 20 63 6F 6E 63 65 70 74  >  in concept
+		      2E 20 20 55 73 65 64 20 74 6F  >  .  Used to
+		      20 65 6D 75 6C 61 74 65 20 74  >   emulate t
+		      79 70 65 77 72 69 74 65 72 20  >  ypewriter 
+		      6F 75 74 70 75 74 20 66 6F 72  >  output for
+		      20 72 65 70 6F 72 74 73 2C 20  >   reports, 
+		      74 61 62 75 6C 61 72 20 77 6F  >  tabular wo
+		      72 6B 20 61 6E 64 20 74 65 63  >  rk and tec
+		      68 6E 69 63 61 6C 20 64 6F 63  >  hnical doc
+		      75 6D 65 6E 74 61 74 69 6F 6E  >  umentation
+		      2E                             >  .
+
+	 26. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		11
+	     Length:		54
+	     Offset:		4595
+		Data: 68 74 74 70 3A 2F 2F 77 77 77  >  http://www
+		      2E 6D 6F 6E 6F 74 79 70 65 2E  >  .monotype.
+		      63 6F 6D 2F 68 74 6D 6C 2F 6D  >  com/html/m
+		      74 6E 61 6D 65 2F 6D 73 5F 63  >  tname/ms_c
+		      6F 75 72 69 65 72 6E 65 77 2E  >  ouriernew.
+		      68 74 6D 6C                    >  html
+
+	 27. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		12
+	     Length:		51
+	     Offset:		4649
+		Data: 68 74 74 70 3A 2F 2F 77 77 77  >  http://www
+		      2E 6D 6F 6E 6F 74 79 70 65 2E  >  .monotype.
+		      63 6F 6D 2F 68 74 6D 6C 2F 6D  >  com/html/m
+		      74 6E 61 6D 65 2F 6D 73 5F 77  >  tname/ms_w
+		      65 6C 63 6F 6D 65 2E 68 74 6D  >  elcome.htm
+		      6C                             >  l
+
+	 28. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		13
+	     Length:		858
+	     Offset:		3452
+		Data: 4E 4F 54 49 46 49 43 41 54 49  >  NOTIFICATI
+		      4F 4E 20 4F 46 20 4C 49 43 45  >  ON OF LICE
+		      4E 53 45 20 41 47 52 45 45 4D  >  NSE AGREEM
+		      45 4E 54  D  A  D  A 54 68 69  >  ENT....Thi
+		      73 20 74 79 70 65 66 61 63 65  >  s typeface
+		      20 69 73 20 74 68 65 20 70 72  >   is the pr
+		      6F 70 65 72 74 79 20 6F 66 20  >  operty of 
+		      4D 6F 6E 6F 74 79 70 65 20 54  >  Monotype T
+		      79 70 6F 67 72 61 70 68 79 20  >  ypography 
+		      61 6E 64 20 69 74 73 20 75 73  >  and its us
+		      65 20 62 79 20 79 6F 75 20 69  >  e by you i
+		      73 20 63 6F 76 65 72 65 64 20  >  s covered 
+		      75 6E 64 65 72 20 74 68 65 20  >  under the 
+		      74 65 72 6D 73 20 6F 66 20 61  >  terms of a
+		      20 6C 69 63 65 6E 73 65 20 61  >   license a
+		      67 72 65 65 6D 65 6E 74 2E 20  >  greement. 
+		      59 6F 75 20 68 61 76 65 20 6F  >  You have o
+		      62 74 61 69 6E 65 64 20 74 68  >  btained th
+		      69 73 20 74 79 70 65 66 61 63  >  is typefac
+		      65 20 73 6F 66 74 77 61 72 65  >  e software
+		      20 65 69 74 68 65 72 20 64 69  >   either di
+		      72 65 63 74 6C 79 20 66 72 6F  >  rectly fro
+		      6D 20 4D 6F 6E 6F 74 79 70 65  >  m Monotype
+		      20 6F 72 20 74 6F 67 65 74 68  >   or togeth
+		      65 72 20 77 69 74 68 20 73 6F  >  er with so
+		      66 74 77 61 72 65 20 64 69 73  >  ftware dis
+		      74 72 69 62 75 74 65 64 20 62  >  tributed b
+		      79 20 6F 6E 65 20 6F 66 20 4D  >  y one of M
+		      6F 6E 6F 74 79 70 65 27 73 20  >  onotype's 
+		      6C 69 63 65 6E 73 65 65 73 2E  >  licensees.
+		       D  A  D  A 54 68 69 73 20 73  >  ....This s
+		      6F 66 74 77 61 72 65 20 69 73  >  oftware is
+		      20 61 20 76 61 6C 75 61 62 6C  >   a valuabl
+		      65 20 61 73 73 65 74 20 6F 66  >  e asset of
+		      20 4D 6F 6E 6F 74 79 70 65 2E  >   Monotype.
+		      20 55 6E 6C 65 73 73 20 79 6F  >   Unless yo
+		      75 20 68 61 76 65 20 65 6E 74  >  u have ent
+		      65 72 65 64 20 69 6E 74 6F 20  >  ered into 
+		      61 20 73 70 65 63 69 66 69 63  >  a specific
+		      20 6C 69 63 65 6E 73 65 20 61  >   license a
+		      67 72 65 65 6D 65 6E 74 20 67  >  greement g
+		      72 61 6E 74 69 6E 67 20 79 6F  >  ranting yo
+		      75 20 61 64 64 69 74 69 6F 6E  >  u addition
+		      61 6C 20 72 69 67 68 74 73 2C  >  al rights,
+		      20 79 6F 75 72 20 75 73 65 20  >   your use 
+		      6F 66 20 74 68 69 73 20 73 6F  >  of this so
+		      66 74 77 61 72 65 20 69 73 20  >  ftware is 
+		      6C 69 6D 69 74 65 64 20 74 6F  >  limited to
+		      20 79 6F 75 72 20 77 6F 72 6B  >   your work
+		      73 74 61 74 69 6F 6E 20 66 6F  >  station fo
+		      72 20 79 6F 75 72 20 6F 77 6E  >  r your own
+		      20 70 75 62 6C 69 73 68 69 6E  >   publishin
+		      67 20 75 73 65 2E 20 59 6F 75  >  g use. You
+		      20 6D 61 79 20 6E 6F 74 20 63  >   may not c
+		      6F 70 79 20 6F 72 20 64 69 73  >  opy or dis
+		      74 72 69 62 75 74 65 20 74 68  >  tribute th
+		      69 73 20 73 6F 66 74 77 61 72  >  is softwar
+		      65 2E  D  A  D  A 49 66 20 79  >  e.....If y
+		      6F 75 20 68 61 76 65 20 61 6E  >  ou have an
+		      79 20 71 75 65 73 74 69 6F 6E  >  y question
+		      20 63 6F 6E 63 65 72 6E 69 6E  >   concernin
+		      67 20 79 6F 75 72 20 72 69 67  >  g your rig
+		      68 74 73 20 79 6F 75 20 73 68  >  hts you sh
+		      6F 75 6C 64 20 72 65 76 69 65  >  ould revie
+		      77 20 74 68 65 20 6C 69 63 65  >  w the lice
+		      6E 73 65 20 61 67 72 65 65 6D  >  nse agreem
+		      65 6E 74 20 79 6F 75 20 72 65  >  ent you re
+		      63 65 69 76 65 64 20 77 69 74  >  ceived wit
+		      68 20 74 68 65 20 73 6F 66 74  >  h the soft
+		      77 61 72 65 20 6F 72 20 63 6F  >  ware or co
+		      6E 74 61 63 74 20 4D 6F 6E 6F  >  ntact Mono
+		      74 79 70 65 20 66 6F 72 20 61  >  type for a
+		      20 63 6F 70 79 20 6F 66 20 74  >   copy of t
+		      68 65 20 6C 69 63 65 6E 73 65  >  he license
+		      20 61 67 72 65 65 6D 65 6E 74  >   agreement
+		      2E  D  A  D  A 4D 6F 6E 6F 74  >  .....Monot
+		      79 70 65 20 63 61 6E 20 62 65  >  ype can be
+		      20 63 6F 6E 74 61 63 74 65 64  >   contacted
+		      20 61 74 3A  D  A  D  A 55 53  >   at:....US
+		      41 20 2D 20 28 38 34 37 29 20  >  A - (847) 
+		      37 31 38 2D 30 34 30 30  9  9  >  718-0400..
+		      55 4B 20 2D 20 30 31 31 34 34  >  UK - 01144
+		      20 30 31 37 33 37 20 37 36 35  >   01737 765
+		      39 35 39  D  A 68 74 74 70 3A  >  959..http:
+		      2F 2F 77 77 77 2E 6D 6F 6E 6F  >  //www.mono
+		      74 79 70 65 2E 63 6F 6D        >  type.com
+
+	 29. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		14
+	     Length:		46
+	     Offset:		4700
+		Data: 68 74 74 70 3A 2F 2F 77 77 77  >  http://www
+		      2E 6D 6F 6E 6F 74 79 70 65 2E  >  .monotype.
+		      63 6F 6D 2F 68 74 6D 6C 2F 74  >  com/html/t
+		      79 70 65 2F 6C 69 63 65 6E 73  >  ype/licens
+		      65 2E 68 74 6D 6C              >  e.html
+
+	 30. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1027
+	     Name ID:		2
+	     Length:		12
+	     Offset:		4746
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+	 31. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1029
+	     Name ID:		2
+	     Length:		16
+	     Offset:		4762
+		Data:  0 6F  0 62  0 79  1  D  0 65  >  .o.b.y...e
+		       0 6A  0 6E  0 E9              >  .j.n.é
+
+	 32. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1030
+	     Name ID:		2
+	     Length:		12
+	     Offset:		4778
+		Data:  0 6E  0 6F  0 72  0 6D  0 61  >  .n.o.r.m.a
+		       0 6C                          >  .l
+
+	 33. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1031
+	     Name ID:		2
+	     Length:		16
+	     Offset:		4790
+		Data:  0 53  0 74  0 61  0 6E  0 64  >  .S.t.a.n.d
+		       0 61  0 72  0 64              >  .a.r.d
+
+	 34. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1032
+	     Name ID:		2
+	     Length:		16
+	     Offset:		4806
+		Data:  3 9A  3 B1  3 BD  3 BF  3 BD  >  .š.±.½.¿.½
+		       3 B9  3 BA  3 AC              >  .¹.º.¬
+
+	 35. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		0
+	     Length:		254
+	     Offset:		0
+		Data:  0 54  0 79  0 70  0 65  0 66  >  .T.y.p.e.f
+		       0 61  0 63  0 65  0 20  0 A9  >  .a.c.e. .©
+		       0 20  0 54  0 68  0 65  0 20  >  . .T.h.e. 
+		       0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 43  >  .y.p.e. .C
+		       0 6F  0 72  0 70  0 6F  0 72  >  .o.r.p.o.r
+		       0 61  0 74  0 69  0 6F  0 6E  >  .a.t.i.o.n
+		       0 20  0 70  0 6C  0 63  0 2E  >  . .p.l.c..
+		       0 20  0 44  0 61  0 74  0 61  >  . .D.a.t.a
+		       0 20  0 A9  0 20  0 54  0 68  >  . .©. .T.h
+		       0 65  0 20  0 4D  0 6F  0 6E  >  .e. .M.o.n
+		       0 6F  0 74  0 79  0 70  0 65  >  .o.t.y.p.e
+		       0 20  0 43  0 6F  0 72  0 70  >  . .C.o.r.p
+		       0 6F  0 72  0 61  0 74  0 69  >  .o.r.a.t.i
+		       0 6F  0 6E  0 20  0 70  0 6C  >  .o.n. .p.l
+		       0 63  0 2F  0 54  0 79  0 70  >  .c./.T.y.p
+		       0 65  0 20  0 53  0 6F  0 6C  >  .e. .S.o.l
+		       0 75  0 74  0 69  0 6F  0 6E  >  .u.t.i.o.n
+		       0 73  0 20  0 49  0 6E  0 63  >  .s. .I.n.c
+		       0 2E  0 20  0 31  0 39  0 39  >  ... .1.9.9
+		       0 30  0 2D  0 31  0 39  0 39  >  .0.-.1.9.9
+		       0 34  0 2E  0 20  0 41  0 6C  >  .4... .A.l
+		       0 6C  0 20  0 52  0 69  0 67  >  .l. .R.i.g
+		       0 68  0 74  0 73  0 20  0 52  >  .h.t.s. .R
+		       0 65  0 73  0 65  0 72  0 76  >  .e.s.e.r.v
+		       0 65  0 64                    >  .e.d
+
+	 36. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		1
+	     Length:		22
+	     Offset:		272
+		Data:  0 43  0 6F  0 75  0 72  0 69  >  .C.o.u.r.i
+		       0 65  0 72  0 20  0 4E  0 65  >  .e.r. .N.e
+		       0 77                          >  .w
+
+	 37. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		2
+	     Length:		14
+	     Offset:		344
+		Data:  0 52  0 65  0 67  0 75  0 6C  >  .R.e.g.u.l
+		       0 61  0 72                    >  .a.r
+
+	 38. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		3
+	     Length:		90
+	     Offset:		254
+		Data:  0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 3A  0 43  >  .y.p.e.:.C
+		       0 6F  0 75  0 72  0 69  0 65  >  .o.u.r.i.e
+		       0 72  0 20  0 4E  0 65  0 77  >  .r. .N.e.w
+		       0 3A  0 76  0 65  0 72  0 73  >  .:.v.e.r.s
+		       0 69  0 6F  0 6E  0 20  0 32  >  .i.o.n. .2
+		       0 2E  0 39  0 30  0 20  0 28  >  ...9.0. .(
+		       0 4D  0 69  0 63  0 72  0 6F  >  .M.i.c.r.o
+		       0 73  0 6F  0 66  0 74  0 29  >  .s.o.f.t.)
+
+	 39. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		4
+	     Length:		22
+	     Offset:		272
+		Data:  0 43  0 6F  0 75  0 72  0 69  >  .C.o.u.r.i
+		       0 65  0 72  0 20  0 4E  0 65  >  .e.r. .N.e
+		       0 77                          >  .w
+
+	 40. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		5
+	     Length:		24
+	     Offset:		358
+		Data:  0 56  0 65  0 72  0 73  0 69  >  .V.e.r.s.i
+		       0 6F  0 6E  0 20  0 32  0 2E  >  .o.n. .2..
+		       0 39  0 30                    >  .9.0
+
+	 41. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		6
+	     Length:		28
+	     Offset:		382
+		Data:  0 43  0 6F  0 75  0 72  0 69  >  .C.o.u.r.i
+		       0 65  0 72  0 4E  0 65  0 77  >  .e.r.N.e.w
+		       0 50  0 53  0 4D  0 54        >  .P.S.M.T
+
+	 42. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		7
+	     Length:		166
+	     Offset:		410
+		Data:  0 43  0 6F  0 75  0 72  0 69  >  .C.o.u.r.i
+		       0 65  0 72 21 22  0 20  0 54  >  .e.r!". .T
+		       0 72  0 61  0 64  0 65  0 6D  >  .r.a.d.e.m
+		       0 61  0 72  0 6B  0 20  0 6F  >  .a.r.k. .o
+		       0 66  0 20  0 54  0 68  0 65  >  .f. .T.h.e
+		       0 20  0 4D  0 6F  0 6E  0 6F  >  . .M.o.n.o
+		       0 74  0 79  0 70  0 65  0 20  >  .t.y.p.e. 
+		       0 43  0 6F  0 72  0 70  0 6F  >  .C.o.r.p.o
+		       0 72  0 61  0 74  0 69  0 6F  >  .r.a.t.i.o
+		       0 6E  0 20  0 70  0 6C  0 63  >  .n. .p.l.c
+		       0 20  0 72  0 65  0 67  0 69  >  . .r.e.g.i
+		       0 73  0 74  0 65  0 72  0 65  >  .s.t.e.r.e
+		       0 64  0 20  0 69  0 6E  0 20  >  .d. .i.n. 
+		       0 63  0 65  0 72  0 74  0 61  >  .c.e.r.t.a
+		       0 69  0 6E  0 20  0 63  0 6F  >  .i.n. .c.o
+		       0 75  0 6E  0 74  0 72  0 69  >  .u.n.t.r.i
+		       0 65  0 73  0 2E              >  .e.s..
+
+	 43. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		8
+	     Length:		38
+	     Offset:		716
+		Data:  0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 54  >  .y.p.e. .T
+		       0 79  0 70  0 6F  0 67  0 72  >  .y.p.o.g.r
+		       0 61  0 70  0 68  0 79        >  .a.p.h.y
+
+	 44. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		9
+	     Length:		28
+	     Offset:		2292
+		Data:  0 48  0 6F  0 77  0 61  0 72  >  .H.o.w.a.r
+		       0 64  0 20  0 4B  0 65  0 74  >  .d. .K.e.t
+		       0 74  0 6C  0 65  0 72        >  .t.l.e.r
+
+	 45. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		10
+	     Length:		542
+	     Offset:		2320
+		Data:  0 44  0 65  0 73  0 69  0 67  >  .D.e.s.i.g
+		       0 6E  0 65  0 64  0 20  0 61  >  .n.e.d. .a
+		       0 73  0 20  0 61  0 20  0 74  >  .s. .a. .t
+		       0 79  0 70  0 65  0 77  0 72  >  .y.p.e.w.r
+		       0 69  0 74  0 65  0 72  0 20  >  .i.t.e.r. 
+		       0 66  0 61  0 63  0 65  0 20  >  .f.a.c.e. 
+		       0 66  0 6F  0 72  0 20  0 49  >  .f.o.r. .I
+		       0 42  0 4D  0 2C  0 20  0 43  >  .B.M.,. .C
+		       0 6F  0 75  0 72  0 69  0 65  >  .o.u.r.i.e
+		       0 72  0 20  0 77  0 61  0 73  >  .r. .w.a.s
+		       0 20  0 72  0 65  0 20  0 64  >  . .r.e. .d
+		       0 72  0 61  0 77  0 6E  0 20  >  .r.a.w.n. 
+		       0 62  0 79  0 20  0 41  0 64  >  .b.y. .A.d
+		       0 72  0 69  0 61  0 6E  0 20  >  .r.i.a.n. 
+		       0 46  0 72  0 75  0 74  0 69  >  .F.r.u.t.i
+		       0 67  0 65  0 72  0 20  0 66  >  .g.e.r. .f
+		       0 6F  0 72  0 20  0 49  0 42  >  .o.r. .I.B
+		       0 4D  0 20  0 53  0 65  0 6C  >  .M. .S.e.l
+		       0 65  0 63  0 74  0 72  0 69  >  .e.c.t.r.i
+		       0 63  0 20  0 73  0 65  0 72  >  .c. .s.e.r
+		       0 69  0 65  0 73  0 2E  0 20  >  .i.e.s... 
+		       0 20  0 41  0 20  0 74  0 79  >  . .A. .t.y
+		       0 70  0 69  0 63  0 61  0 6C  >  .p.i.c.a.l
+		       0 20  0 66  0 69  0 78  0 65  >  . .f.i.x.e
+		       0 64  0 20  0 70  0 69  0 74  >  .d. .p.i.t
+		       0 63  0 68  0 20  0 64  0 65  >  .c.h. .d.e
+		       0 73  0 69  0 67  0 6E  0 2C  >  .s.i.g.n.,
+		       0 20  0 6D  0 6F  0 6E  0 6F  >  . .m.o.n.o
+		       0 74  0 6F  0 6E  0 65  0 20  >  .t.o.n.e. 
+		       0 69  0 6E  0 20  0 77  0 65  >  .i.n. .w.e
+		       0 69  0 67  0 68  0 74  0 20  >  .i.g.h.t. 
+		       0 61  0 6E  0 64  0 20  0 73  >  .a.n.d. .s
+		       0 6C  0 61  0 62  0 20  0 73  >  .l.a.b. .s
+		       0 65  0 72  0 69  0 66  0 20  >  .e.r.i.f. 
+		       0 69  0 6E  0 20  0 63  0 6F  >  .i.n. .c.o
+		       0 6E  0 63  0 65  0 70  0 74  >  .n.c.e.p.t
+		       0 2E  0 20  0 20  0 55  0 73  >  ... . .U.s
+		       0 65  0 64  0 20  0 74  0 6F  >  .e.d. .t.o
+		       0 20  0 65  0 6D  0 75  0 6C  >  . .e.m.u.l
+		       0 61  0 74  0 65  0 20  0 74  >  .a.t.e. .t
+		       0 79  0 70  0 65  0 77  0 72  >  .y.p.e.w.r
+		       0 69  0 74  0 65  0 72  0 20  >  .i.t.e.r. 
+		       0 6F  0 75  0 74  0 70  0 75  >  .o.u.t.p.u
+		       0 74  0 20  0 66  0 6F  0 72  >  .t. .f.o.r
+		       0 20  0 72  0 65  0 70  0 6F  >  . .r.e.p.o
+		       0 72  0 74  0 73  0 2C  0 20  >  .r.t.s.,. 
+		       0 74  0 61  0 62  0 75  0 6C  >  .t.a.b.u.l
+		       0 61  0 72  0 20  0 77  0 6F  >  .a.r. .w.o
+		       0 72  0 6B  0 20  0 61  0 6E  >  .r.k. .a.n
+		       0 64  0 20  0 74  0 65  0 63  >  .d. .t.e.c
+		       0 68  0 6E  0 69  0 63  0 61  >  .h.n.i.c.a
+		       0 6C  0 20  0 64  0 6F  0 63  >  .l. .d.o.c
+		       0 75  0 6D  0 65  0 6E  0 74  >  .u.m.e.n.t
+		       0 61  0 74  0 69  0 6F  0 6E  >  .a.t.i.o.n
+		       0 2E                          >  ..
+
+	 46. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		11
+	     Length:		108
+	     Offset:		2862
+		Data:  0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 6D  0 6F  0 6E  0 6F  >  ...m.o.n.o
+		       0 74  0 79  0 70  0 65  0 2E  >  .t.y.p.e..
+		       0 63  0 6F  0 6D  0 2F  0 68  >  .c.o.m./.h
+		       0 74  0 6D  0 6C  0 2F  0 6D  >  .t.m.l./.m
+		       0 74  0 6E  0 61  0 6D  0 65  >  .t.n.a.m.e
+		       0 2F  0 6D  0 73  0 5F  0 63  >  ./.m.s._.c
+		       0 6F  0 75  0 72  0 69  0 65  >  .o.u.r.i.e
+		       0 72  0 6E  0 65  0 77  0 2E  >  .r.n.e.w..
+		       0 68  0 74  0 6D  0 6C        >  .h.t.m.l
+
+	 47. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		12
+	     Length:		102
+	     Offset:		2970
+		Data:  0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 6D  0 6F  0 6E  0 6F  >  ...m.o.n.o
+		       0 74  0 79  0 70  0 65  0 2E  >  .t.y.p.e..
+		       0 63  0 6F  0 6D  0 2F  0 68  >  .c.o.m./.h
+		       0 74  0 6D  0 6C  0 2F  0 6D  >  .t.m.l./.m
+		       0 74  0 6E  0 61  0 6D  0 65  >  .t.n.a.m.e
+		       0 2F  0 6D  0 73  0 5F  0 77  >  ./.m.s._.w
+		       0 65  0 6C  0 63  0 6F  0 6D  >  .e.l.c.o.m
+		       0 65  0 2E  0 68  0 74  0 6D  >  .e...h.t.m
+		       0 6C                          >  .l
+
+	 48. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		13
+	     Length:		1716
+	     Offset:		576
+		Data:  0 4E  0 4F  0 54  0 49  0 46  >  .N.O.T.I.F
+		       0 49  0 43  0 41  0 54  0 49  >  .I.C.A.T.I
+		       0 4F  0 4E  0 20  0 4F  0 46  >  .O.N. .O.F
+		       0 20  0 4C  0 49  0 43  0 45  >  . .L.I.C.E
+		       0 4E  0 53  0 45  0 20  0 41  >  .N.S.E. .A
+		       0 47  0 52  0 45  0 45  0 4D  >  .G.R.E.E.M
+		       0 45  0 4E  0 54  0  D  0  A  >  .E.N.T....
+		       0  D  0  A  0 54  0 68  0 69  >  .....T.h.i
+		       0 73  0 20  0 74  0 79  0 70  >  .s. .t.y.p
+		       0 65  0 66  0 61  0 63  0 65  >  .e.f.a.c.e
+		       0 20  0 69  0 73  0 20  0 74  >  . .i.s. .t
+		       0 68  0 65  0 20  0 70  0 72  >  .h.e. .p.r
+		       0 6F  0 70  0 65  0 72  0 74  >  .o.p.e.r.t
+		       0 79  0 20  0 6F  0 66  0 20  >  .y. .o.f. 
+		       0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 54  >  .y.p.e. .T
+		       0 79  0 70  0 6F  0 67  0 72  >  .y.p.o.g.r
+		       0 61  0 70  0 68  0 79  0 20  >  .a.p.h.y. 
+		       0 61  0 6E  0 64  0 20  0 69  >  .a.n.d. .i
+		       0 74  0 73  0 20  0 75  0 73  >  .t.s. .u.s
+		       0 65  0 20  0 62  0 79  0 20  >  .e. .b.y. 
+		       0 79  0 6F  0 75  0 20  0 69  >  .y.o.u. .i
+		       0 73  0 20  0 63  0 6F  0 76  >  .s. .c.o.v
+		       0 65  0 72  0 65  0 64  0 20  >  .e.r.e.d. 
+		       0 75  0 6E  0 64  0 65  0 72  >  .u.n.d.e.r
+		       0 20  0 74  0 68  0 65  0 20  >  . .t.h.e. 
+		       0 74  0 65  0 72  0 6D  0 73  >  .t.e.r.m.s
+		       0 20  0 6F  0 66  0 20  0 61  >  . .o.f. .a
+		       0 20  0 6C  0 69  0 63  0 65  >  . .l.i.c.e
+		       0 6E  0 73  0 65  0 20  0 61  >  .n.s.e. .a
+		       0 67  0 72  0 65  0 65  0 6D  >  .g.r.e.e.m
+		       0 65  0 6E  0 74  0 2E  0 20  >  .e.n.t... 
+		       0 59  0 6F  0 75  0 20  0 68  >  .Y.o.u. .h
+		       0 61  0 76  0 65  0 20  0 6F  >  .a.v.e. .o
+		       0 62  0 74  0 61  0 69  0 6E  >  .b.t.a.i.n
+		       0 65  0 64  0 20  0 74  0 68  >  .e.d. .t.h
+		       0 69  0 73  0 20  0 74  0 79  >  .i.s. .t.y
+		       0 70  0 65  0 66  0 61  0 63  >  .p.e.f.a.c
+		       0 65  0 20  0 73  0 6F  0 66  >  .e. .s.o.f
+		       0 74  0 77  0 61  0 72  0 65  >  .t.w.a.r.e
+		       0 20  0 65  0 69  0 74  0 68  >  . .e.i.t.h
+		       0 65  0 72  0 20  0 64  0 69  >  .e.r. .d.i
+		       0 72  0 65  0 63  0 74  0 6C  >  .r.e.c.t.l
+		       0 79  0 20  0 66  0 72  0 6F  >  .y. .f.r.o
+		       0 6D  0 20  0 4D  0 6F  0 6E  >  .m. .M.o.n
+		       0 6F  0 74  0 79  0 70  0 65  >  .o.t.y.p.e
+		       0 20  0 6F  0 72  0 20  0 74  >  . .o.r. .t
+		       0 6F  0 67  0 65  0 74  0 68  >  .o.g.e.t.h
+		       0 65  0 72  0 20  0 77  0 69  >  .e.r. .w.i
+		       0 74  0 68  0 20  0 73  0 6F  >  .t.h. .s.o
+		       0 66  0 74  0 77  0 61  0 72  >  .f.t.w.a.r
+		       0 65  0 20  0 64  0 69  0 73  >  .e. .d.i.s
+		       0 74  0 72  0 69  0 62  0 75  >  .t.r.i.b.u
+		       0 74  0 65  0 64  0 20  0 62  >  .t.e.d. .b
+		       0 79  0 20  0 6F  0 6E  0 65  >  .y. .o.n.e
+		       0 20  0 6F  0 66  0 20  0 4D  >  . .o.f. .M
+		       0 6F  0 6E  0 6F  0 74  0 79  >  .o.n.o.t.y
+		       0 70  0 65  0 27  0 73  0 20  >  .p.e.'.s. 
+		       0 6C  0 69  0 63  0 65  0 6E  >  .l.i.c.e.n
+		       0 73  0 65  0 65  0 73  0 2E  >  .s.e.e.s..
+		       0  D  0  A  0  D  0  A  0 54  >  .........T
+		       0 68  0 69  0 73  0 20  0 73  >  .h.i.s. .s
+		       0 6F  0 66  0 74  0 77  0 61  >  .o.f.t.w.a
+		       0 72  0 65  0 20  0 69  0 73  >  .r.e. .i.s
+		       0 20  0 61  0 20  0 76  0 61  >  . .a. .v.a
+		       0 6C  0 75  0 61  0 62  0 6C  >  .l.u.a.b.l
+		       0 65  0 20  0 61  0 73  0 73  >  .e. .a.s.s
+		       0 65  0 74  0 20  0 6F  0 66  >  .e.t. .o.f
+		       0 20  0 4D  0 6F  0 6E  0 6F  >  . .M.o.n.o
+		       0 74  0 79  0 70  0 65  0 2E  >  .t.y.p.e..
+		       0 20  0 55  0 6E  0 6C  0 65  >  . .U.n.l.e
+		       0 73  0 73  0 20  0 79  0 6F  >  .s.s. .y.o
+		       0 75  0 20  0 68  0 61  0 76  >  .u. .h.a.v
+		       0 65  0 20  0 65  0 6E  0 74  >  .e. .e.n.t
+		       0 65  0 72  0 65  0 64  0 20  >  .e.r.e.d. 
+		       0 69  0 6E  0 74  0 6F  0 20  >  .i.n.t.o. 
+		       0 61  0 20  0 73  0 70  0 65  >  .a. .s.p.e
+		       0 63  0 69  0 66  0 69  0 63  >  .c.i.f.i.c
+		       0 20  0 6C  0 69  0 63  0 65  >  . .l.i.c.e
+		       0 6E  0 73  0 65  0 20  0 61  >  .n.s.e. .a
+		       0 67  0 72  0 65  0 65  0 6D  >  .g.r.e.e.m
+		       0 65  0 6E  0 74  0 20  0 67  >  .e.n.t. .g
+		       0 72  0 61  0 6E  0 74  0 69  >  .r.a.n.t.i
+		       0 6E  0 67  0 20  0 79  0 6F  >  .n.g. .y.o
+		       0 75  0 20  0 61  0 64  0 64  >  .u. .a.d.d
+		       0 69  0 74  0 69  0 6F  0 6E  >  .i.t.i.o.n
+		       0 61  0 6C  0 20  0 72  0 69  >  .a.l. .r.i
+		       0 67  0 68  0 74  0 73  0 2C  >  .g.h.t.s.,
+		       0 20  0 79  0 6F  0 75  0 72  >  . .y.o.u.r
+		       0 20  0 75  0 73  0 65  0 20  >  . .u.s.e. 
+		       0 6F  0 66  0 20  0 74  0 68  >  .o.f. .t.h
+		       0 69  0 73  0 20  0 73  0 6F  >  .i.s. .s.o
+		       0 66  0 74  0 77  0 61  0 72  >  .f.t.w.a.r
+		       0 65  0 20  0 69  0 73  0 20  >  .e. .i.s. 
+		       0 6C  0 69  0 6D  0 69  0 74  >  .l.i.m.i.t
+		       0 65  0 64  0 20  0 74  0 6F  >  .e.d. .t.o
+		       0 20  0 79  0 6F  0 75  0 72  >  . .y.o.u.r
+		       0 20  0 77  0 6F  0 72  0 6B  >  . .w.o.r.k
+		       0 73  0 74  0 61  0 74  0 69  >  .s.t.a.t.i
+		       0 6F  0 6E  0 20  0 66  0 6F  >  .o.n. .f.o
+		       0 72  0 20  0 79  0 6F  0 75  >  .r. .y.o.u
+		       0 72  0 20  0 6F  0 77  0 6E  >  .r. .o.w.n
+		       0 20  0 70  0 75  0 62  0 6C  >  . .p.u.b.l
+		       0 69  0 73  0 68  0 69  0 6E  >  .i.s.h.i.n
+		       0 67  0 20  0 75  0 73  0 65  >  .g. .u.s.e
+		       0 2E  0 20  0 59  0 6F  0 75  >  ... .Y.o.u
+		       0 20  0 6D  0 61  0 79  0 20  >  . .m.a.y. 
+		       0 6E  0 6F  0 74  0 20  0 63  >  .n.o.t. .c
+		       0 6F  0 70  0 79  0 20  0 6F  >  .o.p.y. .o
+		       0 72  0 20  0 64  0 69  0 73  >  .r. .d.i.s
+		       0 74  0 72  0 69  0 62  0 75  >  .t.r.i.b.u
+		       0 74  0 65  0 20  0 74  0 68  >  .t.e. .t.h
+		       0 69  0 73  0 20  0 73  0 6F  >  .i.s. .s.o
+		       0 66  0 74  0 77  0 61  0 72  >  .f.t.w.a.r
+		       0 65  0 2E  0  D  0  A  0  D  >  .e........
+		       0  A  0 49  0 66  0 20  0 79  >  ...I.f. .y
+		       0 6F  0 75  0 20  0 68  0 61  >  .o.u. .h.a
+		       0 76  0 65  0 20  0 61  0 6E  >  .v.e. .a.n
+		       0 79  0 20  0 71  0 75  0 65  >  .y. .q.u.e
+		       0 73  0 74  0 69  0 6F  0 6E  >  .s.t.i.o.n
+		       0 20  0 63  0 6F  0 6E  0 63  >  . .c.o.n.c
+		       0 65  0 72  0 6E  0 69  0 6E  >  .e.r.n.i.n
+		       0 67  0 20  0 79  0 6F  0 75  >  .g. .y.o.u
+		       0 72  0 20  0 72  0 69  0 67  >  .r. .r.i.g
+		       0 68  0 74  0 73  0 20  0 79  >  .h.t.s. .y
+		       0 6F  0 75  0 20  0 73  0 68  >  .o.u. .s.h
+		       0 6F  0 75  0 6C  0 64  0 20  >  .o.u.l.d. 
+		       0 72  0 65  0 76  0 69  0 65  >  .r.e.v.i.e
+		       0 77  0 20  0 74  0 68  0 65  >  .w. .t.h.e
+		       0 20  0 6C  0 69  0 63  0 65  >  . .l.i.c.e
+		       0 6E  0 73  0 65  0 20  0 61  >  .n.s.e. .a
+		       0 67  0 72  0 65  0 65  0 6D  >  .g.r.e.e.m
+		       0 65  0 6E  0 74  0 20  0 79  >  .e.n.t. .y
+		       0 6F  0 75  0 20  0 72  0 65  >  .o.u. .r.e
+		       0 63  0 65  0 69  0 76  0 65  >  .c.e.i.v.e
+		       0 64  0 20  0 77  0 69  0 74  >  .d. .w.i.t
+		       0 68  0 20  0 74  0 68  0 65  >  .h. .t.h.e
+		       0 20  0 73  0 6F  0 66  0 74  >  . .s.o.f.t
+		       0 77  0 61  0 72  0 65  0 20  >  .w.a.r.e. 
+		       0 6F  0 72  0 20  0 63  0 6F  >  .o.r. .c.o
+		       0 6E  0 74  0 61  0 63  0 74  >  .n.t.a.c.t
+		       0 20  0 4D  0 6F  0 6E  0 6F  >  . .M.o.n.o
+		       0 74  0 79  0 70  0 65  0 20  >  .t.y.p.e. 
+		       0 66  0 6F  0 72  0 20  0 61  >  .f.o.r. .a
+		       0 20  0 63  0 6F  0 70  0 79  >  . .c.o.p.y
+		       0 20  0 6F  0 66  0 20  0 74  >  . .o.f. .t
+		       0 68  0 65  0 20  0 6C  0 69  >  .h.e. .l.i
+		       0 63  0 65  0 6E  0 73  0 65  >  .c.e.n.s.e
+		       0 20  0 61  0 67  0 72  0 65  >  . .a.g.r.e
+		       0 65  0 6D  0 65  0 6E  0 74  >  .e.m.e.n.t
+		       0 2E  0  D  0  A  0  D  0  A  >  ..........
+		       0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 63  >  .y.p.e. .c
+		       0 61  0 6E  0 20  0 62  0 65  >  .a.n. .b.e
+		       0 20  0 63  0 6F  0 6E  0 74  >  . .c.o.n.t
+		       0 61  0 63  0 74  0 65  0 64  >  .a.c.t.e.d
+		       0 20  0 61  0 74  0 3A  0  D  >  . .a.t.:..
+		       0  A  0  D  0  A  0 55  0 53  >  .......U.S
+		       0 41  0 20  0 2D  0 20  0 28  >  .A. .-. .(
+		       0 38  0 34  0 37  0 29  0 20  >  .8.4.7.). 
+		       0 37  0 31  0 38  0 2D  0 30  >  .7.1.8.-.0
+		       0 34  0 30  0 30  0  9  0  9  >  .4.0.0....
+		       0 55  0 4B  0 20  0 2D  0 20  >  .U.K. .-. 
+		       0 30  0 31  0 31  0 34  0 34  >  .0.1.1.4.4
+		       0 20  0 30  0 31  0 37  0 33  >  . .0.1.7.3
+		       0 37  0 20  0 37  0 36  0 35  >  .7. .7.6.5
+		       0 39  0 35  0 39  0  D  0  A  >  .9.5.9....
+		       0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 6D  0 6F  0 6E  0 6F  >  ...m.o.n.o
+		       0 74  0 79  0 70  0 65  0 2E  >  .t.y.p.e..
+		       0 63  0 6F  0 6D              >  .c.o.m
+
+	 49. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		14
+	     Length:		92
+	     Offset:		3072
+		Data:  0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 6D  0 6F  0 6E  0 6F  >  ...m.o.n.o
+		       0 74  0 79  0 70  0 65  0 2E  >  .t.y.p.e..
+		       0 63  0 6F  0 6D  0 2F  0 68  >  .c.o.m./.h
+		       0 74  0 6D  0 6C  0 2F  0 74  >  .t.m.l./.t
+		       0 79  0 70  0 65  0 2F  0 6C  >  .y.p.e./.l
+		       0 69  0 63  0 65  0 6E  0 73  >  .i.c.e.n.s
+		       0 65  0 2E  0 68  0 74  0 6D  >  .e...h.t.m
+		       0 6C                          >  .l
+
+	 50. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1034
+	     Name ID:		2
+	     Length:		12
+	     Offset:		4746
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+	 51. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1035
+	     Name ID:		2
+	     Length:		16
+	     Offset:		4822
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 61  0 6C  0 69              >  .a.l.i
+
+	 52. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1036
+	     Name ID:		2
+	     Length:		12
+	     Offset:		4746
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+	 53. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1038
+	     Name ID:		2
+	     Length:		12
+	     Offset:		4838
+		Data:  0 4E  0 6F  0 72  0 6D  0 E1  >  .N.o.r.m.á
+		       0 6C                          >  .l
+
+	 54. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1040
+	     Name ID:		2
+	     Length:		14
+	     Offset:		4854
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C  0 65                    >  .l.e
+
+	 55. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1043
+	     Name ID:		2
+	     Length:		18
+	     Offset:		4868
+		Data:  0 53  0 74  0 61  0 6E  0 64  >  .S.t.a.n.d
+		       0 61  0 61  0 72  0 64        >  .a.a.r.d
+
+	 56. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1044
+	     Name ID:		2
+	     Length:		12
+	     Offset:		4746
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+	 57. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1045
+	     Name ID:		2
+	     Length:		16
+	     Offset:		4746
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C  0 6E  0 79              >  .l.n.y
+
+	 58. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1046
+	     Name ID:		2
+	     Length:		12
+	     Offset:		4746
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+	 59. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1049
+	     Name ID:		2
+	     Length:		14
+	     Offset:		4886
+		Data:  4 1E  4 31  4 4B  4 47  4 3D  >  ...1.K.G.=
+		       4 4B  4 39                    >  .K.9
+
+	 60. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1051
+	     Name ID:		2
+	     Length:		16
+	     Offset:		4838
+		Data:  0 4E  0 6F  0 72  0 6D  0 E1  >  .N.o.r.m.á
+		       0 6C  0 6E  0 65              >  .l.n.e
+
+	 61. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1053
+	     Name ID:		2
+	     Length:		12
+	     Offset:		4746
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+	 62. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1055
+	     Name ID:		2
+	     Length:		12
+	     Offset:		4746
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+	 63. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1060
+	     Name ID:		2
+	     Length:		14
+	     Offset:		4900
+		Data:  0 4E  0 61  0 76  0 61  0 64  >  .N.a.v.a.d
+		       0 6E  0 6F                    >  .n.o
+
+	 64. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1066
+	     Name ID:		2
+	     Length:		14
+	     Offset:		4914
+		Data:  0 74  0 68  1 B0  1 A1  3  0  >  .t.h.°.¡..
+		       0 6E  0 67                    >  .n.g
+
+	 65. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1069
+	     Name ID:		2
+	     Length:		14
+	     Offset:		4928
+		Data:  0 41  0 72  0 72  0 75  0 6E  >  .A.r.r.u.n
+		       0 74  0 61                    >  .t.a
+
+	 66. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	2058
+	     Name ID:		2
+	     Length:		12
+	     Offset:		4746
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+	 67. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	2070
+	     Name ID:		2
+	     Length:		12
+	     Offset:		4746
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+	 68. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	3082
+	     Name ID:		2
+	     Length:		12
+	     Offset:		4746
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+	 69. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	3084
+	     Name ID:		2
+	     Length:		12
+	     Offset:		4746
+		Data:  0 4E  0 6F  0 72  0 6D  0 61  >  .N.o.r.m.a
+		       0 6C                          >  .l
+
+
+'OS/2' Table - OS/2 and Windows Metrics
+---------------------------------------
+Size = 86 bytes (expecting 86 bytes)
+  'OS/2' version:           1
+  xAvgCharWidth:            1229
+  usWeightClass:            400
+  usWidthClass:             5
+  fsType:                   0x0000
+  ySubscriptXSize:          1434
+  ySubscriptYSize:          1331
+  ySubscriptXOffset:        0
+  ySubscriptYOffset:        285
+  ySuperscriptXSize:        1434
+  ySuperscriptYSize:        1331
+  ySuperscriptXOffset:      0
+  ySuperscriptYOffset:      865
+  yStrikeoutSize:           102
+  yStrikeoutPosition:       530
+  sFamilyClass:             5    subclass = 5
+  PANOSE:                   2  7  3  9  2  2  5  2  4  4
+  Unicode Range 1( Bits 0 - 31 ): 00007A87
+  Unicode Range 2( Bits 32- 63 ): 80000000
+  Unicode Range 3( Bits 64- 95 ): 00000008
+  Unicode Range 4( Bits 96-127 ): 00000000
+  achVendID:                'Mono'
+  fsSelection:              0x0040
+  usFirstCharIndex:         0x0020
+  usLastCharIndex:          0xFFFC
+  sTypoAscender:            1255
+  sTypoDescender:           -386
+  sTypoLineGap:             0
+  usWinAscent:              1705
+  usWinDescent:             615
+  CodePage Range 1( Bits 0 - 31 ): 400001FF
+  CodePage Range 2( Bits 32- 63 ): FFFF0000
+
+'gasp' Table - Grid-fitting And Scan-conversion Procedure
+---------------------------------------------------------
+  'gasp' version:      0
+  numRanges:           3
+
+  gasp Range 0
+  rangeMaxPPEM:        8
+  rangeGaspBehavior:   0x0002- GASP_DOGRAY 
+
+  gasp Range 1
+  rangeMaxPPEM:        36
+  rangeGaspBehavior:   0x0001- GASP_GRIDFIT 
+
+  gasp Range 2
+  rangeMaxPPEM:        65535
+  rangeGaspBehavior:   0x0003- GASP_GRIDFIT - GASP_DOGRAY 
+
+
+'post' Table - PostScript Metrics
+---------------------------------
+Size = 12809 bytes
+	'post' version:	        2.0
+	italicAngle:	        0.0000
+	underlinePosition:	-477
+	underlineThickness:	84
+	isFixedPitch:		1
+	minMemType42:		0
+	maxMemType42:		0
+	minMemType1:		0
+	maxMemType1:		0
+
+	Format 2.0:  Non-Standard (for PostScript) TrueType Glyph Set.
+	numGlyphs:	1318
+	Glyf   0 -> Mac Glyph # 0, '.notdef'
+	Glyf   1 -> PSGlyf Name # 1, name= '.null'
+	Glyf   2 -> PSGlyf Name # 2, name= 'nonmarkingreturn'
+	Glyf   3 -> Mac Glyph # 3, 'space'
+	Glyf   4 -> Mac Glyph # 4, 'exclam'
+	Glyf   5 -> Mac Glyph # 5, 'quotedbl'
+	Glyf   6 -> Mac Glyph # 6, 'numbersign'
+	Glyf   7 -> Mac Glyph # 7, 'dollar'
+	Glyf   8 -> Mac Glyph # 8, 'percent'
+	Glyf   9 -> Mac Glyph # 9, 'ampersand'
+	Glyf  10 -> Mac Glyph # 10, 'quotesingle'
+	Glyf  11 -> Mac Glyph # 11, 'parenleft'
+	Glyf  12 -> Mac Glyph # 12, 'parenright'
+	Glyf  13 -> Mac Glyph # 13, 'asterisk'
+	Glyf  14 -> Mac Glyph # 14, 'plus'
+	Glyf  15 -> Mac Glyph # 15, 'comma'
+	Glyf  16 -> Mac Glyph # 16, 'hyphen'
+	Glyf  17 -> Mac Glyph # 17, 'period'
+	Glyf  18 -> Mac Glyph # 18, 'slash'
+	Glyf  19 -> Mac Glyph # 19, 'zero'
+	Glyf  20 -> Mac Glyph # 20, 'one'
+	Glyf  21 -> Mac Glyph # 21, 'two'
+	Glyf  22 -> Mac Glyph # 22, 'three'
+	Glyf  23 -> Mac Glyph # 23, 'four'
+	Glyf  24 -> Mac Glyph # 24, 'five'
+	Glyf  25 -> Mac Glyph # 25, 'six'
+	Glyf  26 -> Mac Glyph # 26, 'seven'
+	Glyf  27 -> Mac Glyph # 27, 'eight'
+	Glyf  28 -> Mac Glyph # 28, 'nine'
+	Glyf  29 -> Mac Glyph # 29, 'colon'
+	Glyf  30 -> Mac Glyph # 30, 'semicolon'
+	Glyf  31 -> Mac Glyph # 31, 'less'
+	Glyf  32 -> Mac Glyph # 32, 'equal'
+	Glyf  33 -> Mac Glyph # 33, 'greater'
+	Glyf  34 -> Mac Glyph # 34, 'question'
+	Glyf  35 -> Mac Glyph # 35, 'at'
+	Glyf  36 -> Mac Glyph # 36, 'A'
+	Glyf  37 -> Mac Glyph # 37, 'B'
+	Glyf  38 -> Mac Glyph # 38, 'C'
+	Glyf  39 -> Mac Glyph # 39, 'D'
+	Glyf  40 -> Mac Glyph # 40, 'E'
+	Glyf  41 -> Mac Glyph # 41, 'F'
+	Glyf  42 -> Mac Glyph # 42, 'G'
+	Glyf  43 -> Mac Glyph # 43, 'H'
+	Glyf  44 -> Mac Glyph # 44, 'I'
+	Glyf  45 -> Mac Glyph # 45, 'J'
+	Glyf  46 -> Mac Glyph # 46, 'K'
+	Glyf  47 -> Mac Glyph # 47, 'L'
+	Glyf  48 -> Mac Glyph # 48, 'M'
+	Glyf  49 -> Mac Glyph # 49, 'N'
+	Glyf  50 -> Mac Glyph # 50, 'O'
+	Glyf  51 -> Mac Glyph # 51, 'P'
+	Glyf  52 -> Mac Glyph # 52, 'Q'
+	Glyf  53 -> Mac Glyph # 53, 'R'
+	Glyf  54 -> Mac Glyph # 54, 'S'
+	Glyf  55 -> Mac Glyph # 55, 'T'
+	Glyf  56 -> Mac Glyph # 56, 'U'
+	Glyf  57 -> Mac Glyph # 57, 'V'
+	Glyf  58 -> Mac Glyph # 58, 'W'
+	Glyf  59 -> Mac Glyph # 59, 'X'
+	Glyf  60 -> Mac Glyph # 60, 'Y'
+	Glyf  61 -> Mac Glyph # 61, 'Z'
+	Glyf  62 -> Mac Glyph # 62, 'bracketleft'
+	Glyf  63 -> Mac Glyph # 63, 'backslash'
+	Glyf  64 -> Mac Glyph # 64, 'bracketright'
+	Glyf  65 -> Mac Glyph # 65, 'asciicircum'
+	Glyf  66 -> Mac Glyph # 66, 'underscore'
+	Glyf  67 -> Mac Glyph # 67, 'grave'
+	Glyf  68 -> Mac Glyph # 68, 'a'
+	Glyf  69 -> Mac Glyph # 69, 'b'
+	Glyf  70 -> Mac Glyph # 70, 'c'
+	Glyf  71 -> Mac Glyph # 71, 'd'
+	Glyf  72 -> Mac Glyph # 72, 'e'
+	Glyf  73 -> Mac Glyph # 73, 'f'
+	Glyf  74 -> Mac Glyph # 74, 'g'
+	Glyf  75 -> Mac Glyph # 75, 'h'
+	Glyf  76 -> Mac Glyph # 76, 'i'
+	Glyf  77 -> Mac Glyph # 77, 'j'
+	Glyf  78 -> Mac Glyph # 78, 'k'
+	Glyf  79 -> Mac Glyph # 79, 'l'
+	Glyf  80 -> Mac Glyph # 80, 'm'
+	Glyf  81 -> Mac Glyph # 81, 'n'
+	Glyf  82 -> Mac Glyph # 82, 'o'
+	Glyf  83 -> Mac Glyph # 83, 'p'
+	Glyf  84 -> Mac Glyph # 84, 'q'
+	Glyf  85 -> Mac Glyph # 85, 'r'
+	Glyf  86 -> Mac Glyph # 86, 's'
+	Glyf  87 -> Mac Glyph # 87, 't'
+	Glyf  88 -> Mac Glyph # 88, 'u'
+	Glyf  89 -> Mac Glyph # 89, 'v'
+	Glyf  90 -> Mac Glyph # 90, 'w'
+	Glyf  91 -> Mac Glyph # 91, 'x'
+	Glyf  92 -> Mac Glyph # 92, 'y'
+	Glyf  93 -> Mac Glyph # 93, 'z'
+	Glyf  94 -> Mac Glyph # 94, 'braceleft'
+	Glyf  95 -> Mac Glyph # 95, 'bar'
+	Glyf  96 -> Mac Glyph # 96, 'braceright'
+	Glyf  97 -> Mac Glyph # 97, 'asciitilde'
+	Glyf  98 -> Mac Glyph # 98, 'Adieresis'
+	Glyf  99 -> Mac Glyph # 99, 'Aring'
+	Glyf 100 -> Mac Glyph # 100, 'Ccedilla'
+	Glyf 101 -> Mac Glyph # 101, 'Eacute'
+	Glyf 102 -> Mac Glyph # 102, 'Ntilde'
+	Glyf 103 -> Mac Glyph # 103, 'Odieresis'
+	Glyf 104 -> Mac Glyph # 104, 'Udieresis'
+	Glyf 105 -> Mac Glyph # 105, 'aacute'
+	Glyf 106 -> Mac Glyph # 106, 'agrave'
+	Glyf 107 -> Mac Glyph # 107, 'acircumflex'
+	Glyf 108 -> Mac Glyph # 108, 'adieresis'
+	Glyf 109 -> Mac Glyph # 109, 'atilde'
+	Glyf 110 -> Mac Glyph # 110, 'aring'
+	Glyf 111 -> Mac Glyph # 111, 'ccedilla'
+	Glyf 112 -> Mac Glyph # 112, 'eacute'
+	Glyf 113 -> Mac Glyph # 113, 'egrave'
+	Glyf 114 -> Mac Glyph # 114, 'ecircumflex'
+	Glyf 115 -> Mac Glyph # 115, 'edieresis'
+	Glyf 116 -> Mac Glyph # 116, 'iacute'
+	Glyf 117 -> Mac Glyph # 117, 'igrave'
+	Glyf 118 -> Mac Glyph # 118, 'icircumflex'
+	Glyf 119 -> Mac Glyph # 119, 'idieresis'
+	Glyf 120 -> Mac Glyph # 120, 'ntilde'
+	Glyf 121 -> Mac Glyph # 121, 'oacute'
+	Glyf 122 -> Mac Glyph # 122, 'ograve'
+	Glyf 123 -> Mac Glyph # 123, 'ocircumflex'
+	Glyf 124 -> Mac Glyph # 124, 'odieresis'
+	Glyf 125 -> Mac Glyph # 125, 'otilde'
+	Glyf 126 -> Mac Glyph # 126, 'uacute'
+	Glyf 127 -> Mac Glyph # 127, 'ugrave'
+	Glyf 128 -> Mac Glyph # 128, 'ucircumflex'
+	Glyf 129 -> Mac Glyph # 129, 'udieresis'
+	Glyf 130 -> Mac Glyph # 130, 'dagger'
+	Glyf 131 -> Mac Glyph # 131, 'degree'
+	Glyf 132 -> Mac Glyph # 132, 'cent'
+	Glyf 133 -> Mac Glyph # 133, 'sterling'
+	Glyf 134 -> Mac Glyph # 134, 'section'
+	Glyf 135 -> Mac Glyph # 135, 'bullet'
+	Glyf 136 -> Mac Glyph # 136, 'paragraph'
+	Glyf 137 -> Mac Glyph # 137, 'germandbls'
+	Glyf 138 -> Mac Glyph # 138, 'registered'
+	Glyf 139 -> Mac Glyph # 139, 'copyright'
+	Glyf 140 -> Mac Glyph # 140, 'trademark'
+	Glyf 141 -> Mac Glyph # 141, 'acute'
+	Glyf 142 -> Mac Glyph # 142, 'dieresis'
+	Glyf 143 -> Mac Glyph # 143, 'notequal'
+	Glyf 144 -> Mac Glyph # 144, 'AE'
+	Glyf 145 -> Mac Glyph # 145, 'Oslash'
+	Glyf 146 -> Mac Glyph # 146, 'infinity'
+	Glyf 147 -> Mac Glyph # 147, 'plusminus'
+	Glyf 148 -> Mac Glyph # 148, 'lessequal'
+	Glyf 149 -> Mac Glyph # 149, 'greaterequal'
+	Glyf 150 -> Mac Glyph # 150, 'yen'
+	Glyf 151 -> PSGlyf Name # 3, name= 'mu1'
+	Glyf 152 -> Mac Glyph # 152, 'partialdiff'
+	Glyf 153 -> Mac Glyph # 153, 'summation'
+	Glyf 154 -> Mac Glyph # 154, 'product'
+	Glyf 155 -> PSGlyf Name # 4, name= 'pi1'
+	Glyf 156 -> Mac Glyph # 156, 'integral'
+	Glyf 157 -> Mac Glyph # 157, 'ordfeminine'
+	Glyf 158 -> Mac Glyph # 158, 'ordmasculine'
+	Glyf 159 -> PSGlyf Name # 5, name= 'Ohm'
+	Glyf 160 -> Mac Glyph # 160, 'ae'
+	Glyf 161 -> Mac Glyph # 161, 'oslash'
+	Glyf 162 -> Mac Glyph # 162, 'questiondown'
+	Glyf 163 -> Mac Glyph # 163, 'exclamdown'
+	Glyf 164 -> Mac Glyph # 164, 'logicalnot'
+	Glyf 165 -> Mac Glyph # 165, 'radical'
+	Glyf 166 -> Mac Glyph # 166, 'florin'
+	Glyf 167 -> Mac Glyph # 167, 'approxequal'
+	Glyf 168 -> Mac Glyph # 168, 'increment'
+	Glyf 169 -> Mac Glyph # 169, 'guillemotleft'
+	Glyf 170 -> Mac Glyph # 170, 'guillemotright'
+	Glyf 171 -> Mac Glyph # 171, 'ellipsis'
+	Glyf 172 -> Mac Glyph # 173, 'Agrave'
+	Glyf 173 -> Mac Glyph # 174, 'Atilde'
+	Glyf 174 -> Mac Glyph # 175, 'Otilde'
+	Glyf 175 -> Mac Glyph # 176, 'OE'
+	Glyf 176 -> Mac Glyph # 177, 'oe'
+	Glyf 177 -> Mac Glyph # 178, 'endash'
+	Glyf 178 -> Mac Glyph # 179, 'emdash'
+	Glyf 179 -> Mac Glyph # 180, 'quotedblleft'
+	Glyf 180 -> Mac Glyph # 181, 'quotedblright'
+	Glyf 181 -> Mac Glyph # 182, 'quoteleft'
+	Glyf 182 -> Mac Glyph # 183, 'quoteright'
+	Glyf 183 -> Mac Glyph # 184, 'divide'
+	Glyf 184 -> Mac Glyph # 185, 'lozenge'
+	Glyf 185 -> Mac Glyph # 186, 'ydieresis'
+	Glyf 186 -> Mac Glyph # 187, 'Ydieresis'
+	Glyf 187 -> Mac Glyph # 188, 'fraction'
+	Glyf 188 -> PSGlyf Name # 6, name= 'Euro'
+	Glyf 189 -> Mac Glyph # 190, 'guilsinglleft'
+	Glyf 190 -> Mac Glyph # 191, 'guilsinglright'
+	Glyf 191 -> Mac Glyph # 192, 'fi'
+	Glyf 192 -> Mac Glyph # 193, 'fl'
+	Glyf 193 -> Mac Glyph # 194, 'daggerdbl'
+	Glyf 194 -> Mac Glyph # 195, 'periodcentered'
+	Glyf 195 -> Mac Glyph # 196, 'quotesinglbase'
+	Glyf 196 -> Mac Glyph # 197, 'quotedblbase'
+	Glyf 197 -> Mac Glyph # 198, 'perthousand'
+	Glyf 198 -> Mac Glyph # 199, 'Acircumflex'
+	Glyf 199 -> Mac Glyph # 200, 'Ecircumflex'
+	Glyf 200 -> Mac Glyph # 201, 'Aacute'
+	Glyf 201 -> Mac Glyph # 202, 'Edieresis'
+	Glyf 202 -> Mac Glyph # 203, 'Egrave'
+	Glyf 203 -> Mac Glyph # 204, 'Iacute'
+	Glyf 204 -> Mac Glyph # 205, 'Icircumflex'
+	Glyf 205 -> Mac Glyph # 206, 'Idieresis'
+	Glyf 206 -> Mac Glyph # 207, 'Igrave'
+	Glyf 207 -> Mac Glyph # 208, 'Oacute'
+	Glyf 208 -> Mac Glyph # 209, 'Ocircumflex'
+	Glyf 209 -> Mac Glyph # 211, 'Ograve'
+	Glyf 210 -> Mac Glyph # 212, 'Uacute'
+	Glyf 211 -> Mac Glyph # 213, 'Ucircumflex'
+	Glyf 212 -> Mac Glyph # 214, 'Ugrave'
+	Glyf 213 -> Mac Glyph # 215, 'dotlessi'
+	Glyf 214 -> Mac Glyph # 216, 'circumflex'
+	Glyf 215 -> Mac Glyph # 217, 'tilde'
+	Glyf 216 -> Mac Glyph # 218, 'macron'
+	Glyf 217 -> Mac Glyph # 219, 'breve'
+	Glyf 218 -> Mac Glyph # 220, 'dotaccent'
+	Glyf 219 -> Mac Glyph # 221, 'ring'
+	Glyf 220 -> Mac Glyph # 222, 'cedilla'
+	Glyf 221 -> Mac Glyph # 223, 'hungarumlaut'
+	Glyf 222 -> Mac Glyph # 224, 'ogonek'
+	Glyf 223 -> Mac Glyph # 225, 'caron'
+	Glyf 224 -> Mac Glyph # 226, 'Lslash'
+	Glyf 225 -> Mac Glyph # 227, 'lslash'
+	Glyf 226 -> Mac Glyph # 228, 'Scaron'
+	Glyf 227 -> Mac Glyph # 229, 'scaron'
+	Glyf 228 -> Mac Glyph # 230, 'Zcaron'
+	Glyf 229 -> Mac Glyph # 231, 'zcaron'
+	Glyf 230 -> Mac Glyph # 232, 'brokenbar'
+	Glyf 231 -> Mac Glyph # 233, 'Eth'
+	Glyf 232 -> Mac Glyph # 234, 'eth'
+	Glyf 233 -> Mac Glyph # 235, 'Yacute'
+	Glyf 234 -> Mac Glyph # 236, 'yacute'
+	Glyf 235 -> Mac Glyph # 237, 'Thorn'
+	Glyf 236 -> Mac Glyph # 238, 'thorn'
+	Glyf 237 -> Mac Glyph # 239, 'minus'
+	Glyf 238 -> Mac Glyph # 240, 'multiply'
+	Glyf 239 -> Mac Glyph # 241, 'onesuperior'
+	Glyf 240 -> Mac Glyph # 242, 'twosuperior'
+	Glyf 241 -> Mac Glyph # 243, 'threesuperior'
+	Glyf 242 -> Mac Glyph # 244, 'onehalf'
+	Glyf 243 -> Mac Glyph # 245, 'onequarter'
+	Glyf 244 -> Mac Glyph # 246, 'threequarters'
+	Glyf 245 -> Mac Glyph # 247, 'franc'
+	Glyf 246 -> Mac Glyph # 248, 'Gbreve'
+	Glyf 247 -> Mac Glyph # 249, 'gbreve'
+	Glyf 248 -> Mac Glyph # 250, 'Idot'
+	Glyf 249 -> Mac Glyph # 251, 'Scedilla'
+	Glyf 250 -> Mac Glyph # 252, 'scedilla'
+	Glyf 251 -> Mac Glyph # 253, 'Cacute'
+	Glyf 252 -> Mac Glyph # 254, 'cacute'
+	Glyf 253 -> Mac Glyph # 255, 'Ccaron'
+	Glyf 254 -> Mac Glyph # 256, 'ccaron'
+	Glyf 255 -> PSGlyf Name # 7, name= 'dmacron'
+	Glyf 256 -> PSGlyf Name # 8, name= 'overscore'
+	Glyf 257 -> PSGlyf Name # 9, name= 'middot'
+	Glyf 258 -> PSGlyf Name # 10, name= 'Abreve'
+	Glyf 259 -> PSGlyf Name # 11, name= 'abreve'
+	Glyf 260 -> PSGlyf Name # 12, name= 'Aogonek'
+	Glyf 261 -> PSGlyf Name # 13, name= 'aogonek'
+	Glyf 262 -> PSGlyf Name # 14, name= 'Dcaron'
+	Glyf 263 -> PSGlyf Name # 15, name= 'dcaron'
+	Glyf 264 -> PSGlyf Name # 16, name= 'Dslash'
+	Glyf 265 -> PSGlyf Name # 17, name= 'Eogonek'
+	Glyf 266 -> PSGlyf Name # 18, name= 'eogonek'
+	Glyf 267 -> PSGlyf Name # 19, name= 'Ecaron'
+	Glyf 268 -> PSGlyf Name # 20, name= 'ecaron'
+	Glyf 269 -> PSGlyf Name # 21, name= 'Lacute'
+	Glyf 270 -> PSGlyf Name # 22, name= 'lacute'
+	Glyf 271 -> PSGlyf Name # 23, name= 'Lcaron'
+	Glyf 272 -> PSGlyf Name # 24, name= 'lcaron'
+	Glyf 273 -> PSGlyf Name # 25, name= 'Ldot'
+	Glyf 274 -> PSGlyf Name # 26, name= 'ldot'
+	Glyf 275 -> PSGlyf Name # 27, name= 'Nacute'
+	Glyf 276 -> PSGlyf Name # 28, name= 'nacute'
+	Glyf 277 -> PSGlyf Name # 29, name= 'Ncaron'
+	Glyf 278 -> PSGlyf Name # 30, name= 'ncaron'
+	Glyf 279 -> PSGlyf Name # 31, name= 'Odblacute'
+	Glyf 280 -> PSGlyf Name # 32, name= 'odblacute'
+	Glyf 281 -> PSGlyf Name # 33, name= 'Racute'
+	Glyf 282 -> PSGlyf Name # 34, name= 'racute'
+	Glyf 283 -> PSGlyf Name # 35, name= 'Rcaron'
+	Glyf 284 -> PSGlyf Name # 36, name= 'rcaron'
+	Glyf 285 -> PSGlyf Name # 37, name= 'Sacute'
+	Glyf 286 -> PSGlyf Name # 38, name= 'sacute'
+	Glyf 287 -> PSGlyf Name # 39, name= 'Tcedilla'
+	Glyf 288 -> PSGlyf Name # 40, name= 'tcedilla'
+	Glyf 289 -> PSGlyf Name # 41, name= 'Tcaron'
+	Glyf 290 -> PSGlyf Name # 42, name= 'tcaron'
+	Glyf 291 -> PSGlyf Name # 43, name= 'Uring'
+	Glyf 292 -> PSGlyf Name # 44, name= 'uring'
+	Glyf 293 -> PSGlyf Name # 45, name= 'Udblacute'
+	Glyf 294 -> PSGlyf Name # 46, name= 'udblacute'
+	Glyf 295 -> PSGlyf Name # 47, name= 'Zacute'
+	Glyf 296 -> PSGlyf Name # 48, name= 'zacute'
+	Glyf 297 -> PSGlyf Name # 49, name= 'Zdot'
+	Glyf 298 -> PSGlyf Name # 50, name= 'zdot'
+	Glyf 299 -> PSGlyf Name # 51, name= 'Gamma'
+	Glyf 300 -> PSGlyf Name # 52, name= 'Theta'
+	Glyf 301 -> PSGlyf Name # 53, name= 'Phi'
+	Glyf 302 -> PSGlyf Name # 54, name= 'alpha'
+	Glyf 303 -> PSGlyf Name # 55, name= 'delta'
+	Glyf 304 -> PSGlyf Name # 56, name= 'epsilon'
+	Glyf 305 -> PSGlyf Name # 57, name= 'sigma'
+	Glyf 306 -> PSGlyf Name # 58, name= 'tau'
+	Glyf 307 -> PSGlyf Name # 59, name= 'phi'
+	Glyf 308 -> PSGlyf Name # 60, name= 'underscoredbl'
+	Glyf 309 -> PSGlyf Name # 61, name= 'exclamdbl'
+	Glyf 310 -> PSGlyf Name # 62, name= 'nsuperior'
+	Glyf 311 -> PSGlyf Name # 63, name= 'peseta'
+	Glyf 312 -> PSGlyf Name # 64, name= 'arrowleft'
+	Glyf 313 -> PSGlyf Name # 65, name= 'arrowup'
+	Glyf 314 -> PSGlyf Name # 66, name= 'arrowright'
+	Glyf 315 -> PSGlyf Name # 67, name= 'arrowdown'
+	Glyf 316 -> PSGlyf Name # 68, name= 'arrowboth'
+	Glyf 317 -> PSGlyf Name # 69, name= 'arrowupdn'
+	Glyf 318 -> PSGlyf Name # 70, name= 'arrowupdnbse'
+	Glyf 319 -> PSGlyf Name # 71, name= 'orthogonal'
+	Glyf 320 -> PSGlyf Name # 72, name= 'intersection'
+	Glyf 321 -> PSGlyf Name # 73, name= 'equivalence'
+	Glyf 322 -> PSGlyf Name # 74, name= 'house'
+	Glyf 323 -> PSGlyf Name # 75, name= 'revlogicalnot'
+	Glyf 324 -> PSGlyf Name # 76, name= 'integraltp'
+	Glyf 325 -> PSGlyf Name # 77, name= 'integralbt'
+	Glyf 326 -> PSGlyf Name # 78, name= 'SF100000'
+	Glyf 327 -> PSGlyf Name # 79, name= 'SF110000'
+	Glyf 328 -> PSGlyf Name # 80, name= 'SF010000'
+	Glyf 329 -> PSGlyf Name # 81, name= 'SF030000'
+	Glyf 330 -> PSGlyf Name # 82, name= 'SF020000'
+	Glyf 331 -> PSGlyf Name # 83, name= 'SF040000'
+	Glyf 332 -> PSGlyf Name # 84, name= 'SF080000'
+	Glyf 333 -> PSGlyf Name # 85, name= 'SF090000'
+	Glyf 334 -> PSGlyf Name # 86, name= 'SF060000'
+	Glyf 335 -> PSGlyf Name # 87, name= 'SF070000'
+	Glyf 336 -> PSGlyf Name # 88, name= 'SF050000'
+	Glyf 337 -> PSGlyf Name # 89, name= 'SF430000'
+	Glyf 338 -> PSGlyf Name # 90, name= 'SF240000'
+	Glyf 339 -> PSGlyf Name # 91, name= 'SF510000'
+	Glyf 340 -> PSGlyf Name # 92, name= 'SF520000'
+	Glyf 341 -> PSGlyf Name # 93, name= 'SF390000'
+	Glyf 342 -> PSGlyf Name # 94, name= 'SF220000'
+	Glyf 343 -> PSGlyf Name # 95, name= 'SF210000'
+	Glyf 344 -> PSGlyf Name # 96, name= 'SF250000'
+	Glyf 345 -> PSGlyf Name # 97, name= 'SF500000'
+	Glyf 346 -> PSGlyf Name # 98, name= 'SF490000'
+	Glyf 347 -> PSGlyf Name # 99, name= 'SF380000'
+	Glyf 348 -> PSGlyf Name # 100, name= 'SF280000'
+	Glyf 349 -> PSGlyf Name # 101, name= 'SF270000'
+	Glyf 350 -> PSGlyf Name # 102, name= 'SF260000'
+	Glyf 351 -> PSGlyf Name # 103, name= 'SF360000'
+	Glyf 352 -> PSGlyf Name # 104, name= 'SF370000'
+	Glyf 353 -> PSGlyf Name # 105, name= 'SF420000'
+	Glyf 354 -> PSGlyf Name # 106, name= 'SF190000'
+	Glyf 355 -> PSGlyf Name # 107, name= 'SF200000'
+	Glyf 356 -> PSGlyf Name # 108, name= 'SF230000'
+	Glyf 357 -> PSGlyf Name # 109, name= 'SF470000'
+	Glyf 358 -> PSGlyf Name # 110, name= 'SF480000'
+	Glyf 359 -> PSGlyf Name # 111, name= 'SF410000'
+	Glyf 360 -> PSGlyf Name # 112, name= 'SF450000'
+	Glyf 361 -> PSGlyf Name # 113, name= 'SF460000'
+	Glyf 362 -> PSGlyf Name # 114, name= 'SF400000'
+	Glyf 363 -> PSGlyf Name # 115, name= 'SF540000'
+	Glyf 364 -> PSGlyf Name # 116, name= 'SF530000'
+	Glyf 365 -> PSGlyf Name # 117, name= 'SF440000'
+	Glyf 366 -> PSGlyf Name # 118, name= 'upblock'
+	Glyf 367 -> PSGlyf Name # 119, name= 'dnblock'
+	Glyf 368 -> PSGlyf Name # 120, name= 'block'
+	Glyf 369 -> PSGlyf Name # 121, name= 'lfblock'
+	Glyf 370 -> PSGlyf Name # 122, name= 'rtblock'
+	Glyf 371 -> PSGlyf Name # 123, name= 'ltshade'
+	Glyf 372 -> PSGlyf Name # 124, name= 'shade'
+	Glyf 373 -> PSGlyf Name # 125, name= 'dkshade'
+	Glyf 374 -> PSGlyf Name # 126, name= 'filledbox'
+	Glyf 375 -> PSGlyf Name # 127, name= 'filledrect'
+	Glyf 376 -> PSGlyf Name # 128, name= 'triagup'
+	Glyf 377 -> PSGlyf Name # 129, name= 'triagrt'
+	Glyf 378 -> PSGlyf Name # 130, name= 'triagdn'
+	Glyf 379 -> PSGlyf Name # 131, name= 'triaglf'
+	Glyf 380 -> PSGlyf Name # 132, name= 'circle'
+	Glyf 381 -> PSGlyf Name # 133, name= 'invbullet'
+	Glyf 382 -> PSGlyf Name # 134, name= 'invcircle'
+	Glyf 383 -> PSGlyf Name # 135, name= 'smileface'
+	Glyf 384 -> PSGlyf Name # 136, name= 'invsmileface'
+	Glyf 385 -> PSGlyf Name # 137, name= 'sun'
+	Glyf 386 -> PSGlyf Name # 138, name= 'female'
+	Glyf 387 -> PSGlyf Name # 139, name= 'male'
+	Glyf 388 -> PSGlyf Name # 140, name= 'spade'
+	Glyf 389 -> PSGlyf Name # 141, name= 'club'
+	Glyf 390 -> PSGlyf Name # 142, name= 'heart'
+	Glyf 391 -> PSGlyf Name # 143, name= 'diamond'
+	Glyf 392 -> PSGlyf Name # 144, name= 'musicalnote'
+	Glyf 393 -> PSGlyf Name # 145, name= 'musicalnotedbl'
+	Glyf 394 -> PSGlyf Name # 146, name= 'IJ'
+	Glyf 395 -> PSGlyf Name # 147, name= 'ij'
+	Glyf 396 -> PSGlyf Name # 148, name= 'napostrophe'
+	Glyf 397 -> PSGlyf Name # 149, name= 'minute'
+	Glyf 398 -> PSGlyf Name # 150, name= 'second'
+	Glyf 399 -> PSGlyf Name # 151, name= 'afii61248'
+	Glyf 400 -> PSGlyf Name # 152, name= 'afii61289'
+	Glyf 401 -> PSGlyf Name # 153, name= 'H22073'
+	Glyf 402 -> PSGlyf Name # 154, name= 'H18543'
+	Glyf 403 -> PSGlyf Name # 155, name= 'H18551'
+	Glyf 404 -> PSGlyf Name # 156, name= 'H18533'
+	Glyf 405 -> PSGlyf Name # 157, name= 'openbullet'
+	Glyf 406 -> PSGlyf Name # 158, name= 'Amacron'
+	Glyf 407 -> PSGlyf Name # 159, name= 'amacron'
+	Glyf 408 -> PSGlyf Name # 160, name= 'Ccircumflex'
+	Glyf 409 -> PSGlyf Name # 161, name= 'ccircumflex'
+	Glyf 410 -> PSGlyf Name # 162, name= 'Cdot'
+	Glyf 411 -> PSGlyf Name # 163, name= 'cdot'
+	Glyf 412 -> PSGlyf Name # 164, name= 'Emacron'
+	Glyf 413 -> PSGlyf Name # 165, name= 'emacron'
+	Glyf 414 -> PSGlyf Name # 166, name= 'Ebreve'
+	Glyf 415 -> PSGlyf Name # 167, name= 'ebreve'
+	Glyf 416 -> PSGlyf Name # 168, name= 'Edot'
+	Glyf 417 -> PSGlyf Name # 169, name= 'edot'
+	Glyf 418 -> PSGlyf Name # 170, name= 'Gcircumflex'
+	Glyf 419 -> PSGlyf Name # 171, name= 'gcircumflex'
+	Glyf 420 -> PSGlyf Name # 172, name= 'Gdot'
+	Glyf 421 -> PSGlyf Name # 173, name= 'gdot'
+	Glyf 422 -> PSGlyf Name # 174, name= 'Gcedilla'
+	Glyf 423 -> PSGlyf Name # 175, name= 'gcedilla'
+	Glyf 424 -> PSGlyf Name # 176, name= 'Hcircumflex'
+	Glyf 425 -> PSGlyf Name # 177, name= 'hcircumflex'
+	Glyf 426 -> PSGlyf Name # 178, name= 'Hbar'
+	Glyf 427 -> PSGlyf Name # 179, name= 'hbar'
+	Glyf 428 -> PSGlyf Name # 180, name= 'Itilde'
+	Glyf 429 -> PSGlyf Name # 181, name= 'itilde'
+	Glyf 430 -> PSGlyf Name # 182, name= 'Imacron'
+	Glyf 431 -> PSGlyf Name # 183, name= 'imacron'
+	Glyf 432 -> PSGlyf Name # 184, name= 'Ibreve'
+	Glyf 433 -> PSGlyf Name # 185, name= 'ibreve'
+	Glyf 434 -> PSGlyf Name # 186, name= 'Iogonek'
+	Glyf 435 -> PSGlyf Name # 187, name= 'iogonek'
+	Glyf 436 -> PSGlyf Name # 188, name= 'Jcircumflex'
+	Glyf 437 -> PSGlyf Name # 189, name= 'jcircumflex'
+	Glyf 438 -> PSGlyf Name # 190, name= 'Kcedilla'
+	Glyf 439 -> PSGlyf Name # 191, name= 'kcedilla'
+	Glyf 440 -> PSGlyf Name # 192, name= 'kgreenlandic'
+	Glyf 441 -> PSGlyf Name # 193, name= 'Lcedilla'
+	Glyf 442 -> PSGlyf Name # 194, name= 'lcedilla'
+	Glyf 443 -> PSGlyf Name # 195, name= 'Ncedilla'
+	Glyf 444 -> PSGlyf Name # 196, name= 'ncedilla'
+	Glyf 445 -> PSGlyf Name # 197, name= 'Eng'
+	Glyf 446 -> PSGlyf Name # 198, name= 'eng'
+	Glyf 447 -> PSGlyf Name # 199, name= 'Omacron'
+	Glyf 448 -> PSGlyf Name # 200, name= 'omacron'
+	Glyf 449 -> PSGlyf Name # 201, name= 'Obreve'
+	Glyf 450 -> PSGlyf Name # 202, name= 'obreve'
+	Glyf 451 -> PSGlyf Name # 203, name= 'Rcedilla'
+	Glyf 452 -> PSGlyf Name # 204, name= 'rcedilla'
+	Glyf 453 -> PSGlyf Name # 205, name= 'Scircumflex'
+	Glyf 454 -> PSGlyf Name # 206, name= 'scircumflex'
+	Glyf 455 -> PSGlyf Name # 207, name= 'Tbar'
+	Glyf 456 -> PSGlyf Name # 208, name= 'tbar'
+	Glyf 457 -> PSGlyf Name # 209, name= 'Utilde'
+	Glyf 458 -> PSGlyf Name # 210, name= 'utilde'
+	Glyf 459 -> PSGlyf Name # 211, name= 'Umacron'
+	Glyf 460 -> PSGlyf Name # 212, name= 'umacron'
+	Glyf 461 -> PSGlyf Name # 213, name= 'Ubreve'
+	Glyf 462 -> PSGlyf Name # 214, name= 'ubreve'
+	Glyf 463 -> PSGlyf Name # 215, name= 'Uogonek'
+	Glyf 464 -> PSGlyf Name # 216, name= 'uogonek'
+	Glyf 465 -> PSGlyf Name # 217, name= 'Wcircumflex'
+	Glyf 466 -> PSGlyf Name # 218, name= 'wcircumflex'
+	Glyf 467 -> PSGlyf Name # 219, name= 'Ycircumflex'
+	Glyf 468 -> PSGlyf Name # 220, name= 'ycircumflex'
+	Glyf 469 -> PSGlyf Name # 221, name= 'longs'
+	Glyf 470 -> PSGlyf Name # 222, name= 'Aringacute'
+	Glyf 471 -> PSGlyf Name # 223, name= 'aringacute'
+	Glyf 472 -> PSGlyf Name # 224, name= 'AEacute'
+	Glyf 473 -> PSGlyf Name # 225, name= 'aeacute'
+	Glyf 474 -> PSGlyf Name # 226, name= 'Oslashacute'
+	Glyf 475 -> PSGlyf Name # 227, name= 'oslashacute'
+	Glyf 476 -> PSGlyf Name # 228, name= 'anoteleia'
+	Glyf 477 -> PSGlyf Name # 229, name= 'Wgrave'
+	Glyf 478 -> PSGlyf Name # 230, name= 'wgrave'
+	Glyf 479 -> PSGlyf Name # 231, name= 'Wacute'
+	Glyf 480 -> PSGlyf Name # 232, name= 'wacute'
+	Glyf 481 -> PSGlyf Name # 233, name= 'Wdieresis'
+	Glyf 482 -> PSGlyf Name # 234, name= 'wdieresis'
+	Glyf 483 -> PSGlyf Name # 235, name= 'Ygrave'
+	Glyf 484 -> PSGlyf Name # 236, name= 'ygrave'
+	Glyf 485 -> PSGlyf Name # 237, name= 'quotereversed'
+	Glyf 486 -> PSGlyf Name # 238, name= 'radicalex'
+	Glyf 487 -> PSGlyf Name # 239, name= 'afii08941'
+	Glyf 488 -> PSGlyf Name # 240, name= 'estimated'
+	Glyf 489 -> PSGlyf Name # 241, name= 'oneeighth'
+	Glyf 490 -> PSGlyf Name # 242, name= 'threeeighths'
+	Glyf 491 -> PSGlyf Name # 243, name= 'fiveeighths'
+	Glyf 492 -> PSGlyf Name # 244, name= 'seveneighths'
+	Glyf 493 -> PSGlyf Name # 245, name= 'commaaccent'
+	Glyf 494 -> PSGlyf Name # 246, name= 'undercommaaccent'
+	Glyf 495 -> PSGlyf Name # 247, name= 'tonos'
+	Glyf 496 -> PSGlyf Name # 248, name= 'dieresistonos'
+	Glyf 497 -> PSGlyf Name # 249, name= 'Alphatonos'
+	Glyf 498 -> PSGlyf Name # 250, name= 'Epsilontonos'
+	Glyf 499 -> PSGlyf Name # 251, name= 'Etatonos'
+	Glyf 500 -> PSGlyf Name # 252, name= 'Iotatonos'
+	Glyf 501 -> PSGlyf Name # 253, name= 'Omicrontonos'
+	Glyf 502 -> PSGlyf Name # 254, name= 'Upsilontonos'
+	Glyf 503 -> PSGlyf Name # 255, name= 'Omegatonos'
+	Glyf 504 -> PSGlyf Name # 256, name= 'iotadieresistonos'
+	Glyf 505 -> PSGlyf Name # 257, name= 'Alpha'
+	Glyf 506 -> PSGlyf Name # 258, name= 'Beta'
+	Glyf 507 -> PSGlyf Name # 259, name= 'Delta'
+	Glyf 508 -> PSGlyf Name # 260, name= 'Epsilon'
+	Glyf 509 -> PSGlyf Name # 261, name= 'Zeta'
+	Glyf 510 -> PSGlyf Name # 262, name= 'Eta'
+	Glyf 511 -> PSGlyf Name # 263, name= 'Iota'
+	Glyf 512 -> PSGlyf Name # 264, name= 'Kappa'
+	Glyf 513 -> PSGlyf Name # 265, name= 'Lambda'
+	Glyf 514 -> PSGlyf Name # 266, name= 'Mu'
+	Glyf 515 -> PSGlyf Name # 267, name= 'Nu'
+	Glyf 516 -> PSGlyf Name # 268, name= 'Xi'
+	Glyf 517 -> PSGlyf Name # 269, name= 'Omicron'
+	Glyf 518 -> PSGlyf Name # 270, name= 'Pi'
+	Glyf 519 -> PSGlyf Name # 271, name= 'Rho'
+	Glyf 520 -> PSGlyf Name # 272, name= 'Sigma'
+	Glyf 521 -> PSGlyf Name # 273, name= 'Tau'
+	Glyf 522 -> PSGlyf Name # 274, name= 'Upsilon'
+	Glyf 523 -> PSGlyf Name # 275, name= 'Chi'
+	Glyf 524 -> PSGlyf Name # 276, name= 'Psi'
+	Glyf 525 -> Mac Glyph # 159, 'Omega'
+	Glyf 526 -> PSGlyf Name # 277, name= 'Iotadieresis'
+	Glyf 527 -> PSGlyf Name # 278, name= 'Upsilondieresis'
+	Glyf 528 -> PSGlyf Name # 279, name= 'alphatonos'
+	Glyf 529 -> PSGlyf Name # 280, name= 'epsilontonos'
+	Glyf 530 -> PSGlyf Name # 281, name= 'etatonos'
+	Glyf 531 -> PSGlyf Name # 282, name= 'iotatonos'
+	Glyf 532 -> PSGlyf Name # 283, name= 'upsilondieresistonos'
+	Glyf 533 -> PSGlyf Name # 284, name= 'beta'
+	Glyf 534 -> PSGlyf Name # 285, name= 'gamma'
+	Glyf 535 -> PSGlyf Name # 286, name= 'zeta'
+	Glyf 536 -> PSGlyf Name # 287, name= 'eta'
+	Glyf 537 -> PSGlyf Name # 288, name= 'theta'
+	Glyf 538 -> PSGlyf Name # 289, name= 'iota'
+	Glyf 539 -> PSGlyf Name # 290, name= 'kappa'
+	Glyf 540 -> PSGlyf Name # 291, name= 'lambda'
+	Glyf 541 -> Mac Glyph # 151, 'mu'
+	Glyf 542 -> PSGlyf Name # 292, name= 'nu'
+	Glyf 543 -> PSGlyf Name # 293, name= 'xi'
+	Glyf 544 -> PSGlyf Name # 294, name= 'omicron'
+	Glyf 545 -> PSGlyf Name # 295, name= 'rho'
+	Glyf 546 -> PSGlyf Name # 296, name= 'sigma1'
+	Glyf 547 -> PSGlyf Name # 297, name= 'upsilon'
+	Glyf 548 -> PSGlyf Name # 298, name= 'chi'
+	Glyf 549 -> PSGlyf Name # 299, name= 'psi'
+	Glyf 550 -> PSGlyf Name # 300, name= 'omega'
+	Glyf 551 -> PSGlyf Name # 301, name= 'iotadieresis'
+	Glyf 552 -> PSGlyf Name # 302, name= 'upsilondieresis'
+	Glyf 553 -> PSGlyf Name # 303, name= 'omicrontonos'
+	Glyf 554 -> PSGlyf Name # 304, name= 'upsilontonos'
+	Glyf 555 -> PSGlyf Name # 305, name= 'omegatonos'
+	Glyf 556 -> PSGlyf Name # 306, name= 'afii10023'
+	Glyf 557 -> PSGlyf Name # 307, name= 'afii10051'
+	Glyf 558 -> PSGlyf Name # 308, name= 'afii10052'
+	Glyf 559 -> PSGlyf Name # 309, name= 'afii10053'
+	Glyf 560 -> PSGlyf Name # 310, name= 'afii10054'
+	Glyf 561 -> PSGlyf Name # 311, name= 'afii10055'
+	Glyf 562 -> PSGlyf Name # 312, name= 'afii10056'
+	Glyf 563 -> PSGlyf Name # 313, name= 'afii10057'
+	Glyf 564 -> PSGlyf Name # 314, name= 'afii10058'
+	Glyf 565 -> PSGlyf Name # 315, name= 'afii10059'
+	Glyf 566 -> PSGlyf Name # 316, name= 'afii10060'
+	Glyf 567 -> PSGlyf Name # 317, name= 'afii10061'
+	Glyf 568 -> PSGlyf Name # 318, name= 'afii10062'
+	Glyf 569 -> PSGlyf Name # 319, name= 'afii10145'
+	Glyf 570 -> PSGlyf Name # 320, name= 'afii10017'
+	Glyf 571 -> PSGlyf Name # 321, name= 'afii10018'
+	Glyf 572 -> PSGlyf Name # 322, name= 'afii10019'
+	Glyf 573 -> PSGlyf Name # 323, name= 'afii10020'
+	Glyf 574 -> PSGlyf Name # 324, name= 'afii10021'
+	Glyf 575 -> PSGlyf Name # 325, name= 'afii10022'
+	Glyf 576 -> PSGlyf Name # 326, name= 'afii10024'
+	Glyf 577 -> PSGlyf Name # 327, name= 'afii10025'
+	Glyf 578 -> PSGlyf Name # 328, name= 'afii10026'
+	Glyf 579 -> PSGlyf Name # 329, name= 'afii10027'
+	Glyf 580 -> PSGlyf Name # 330, name= 'afii10028'
+	Glyf 581 -> PSGlyf Name # 331, name= 'afii10029'
+	Glyf 582 -> PSGlyf Name # 332, name= 'afii10030'
+	Glyf 583 -> PSGlyf Name # 333, name= 'afii10031'
+	Glyf 584 -> PSGlyf Name # 334, name= 'afii10032'
+	Glyf 585 -> PSGlyf Name # 335, name= 'afii10033'
+	Glyf 586 -> PSGlyf Name # 336, name= 'afii10034'
+	Glyf 587 -> PSGlyf Name # 337, name= 'afii10035'
+	Glyf 588 -> PSGlyf Name # 338, name= 'afii10036'
+	Glyf 589 -> PSGlyf Name # 339, name= 'afii10037'
+	Glyf 590 -> PSGlyf Name # 340, name= 'afii10038'
+	Glyf 591 -> PSGlyf Name # 341, name= 'afii10039'
+	Glyf 592 -> PSGlyf Name # 342, name= 'afii10040'
+	Glyf 593 -> PSGlyf Name # 343, name= 'afii10041'
+	Glyf 594 -> PSGlyf Name # 344, name= 'afii10042'
+	Glyf 595 -> PSGlyf Name # 345, name= 'afii10043'
+	Glyf 596 -> PSGlyf Name # 346, name= 'afii10044'
+	Glyf 597 -> PSGlyf Name # 347, name= 'afii10045'
+	Glyf 598 -> PSGlyf Name # 348, name= 'afii10046'
+	Glyf 599 -> PSGlyf Name # 349, name= 'afii10047'
+	Glyf 600 -> PSGlyf Name # 350, name= 'afii10048'
+	Glyf 601 -> PSGlyf Name # 351, name= 'afii10049'
+	Glyf 602 -> PSGlyf Name # 352, name= 'afii10065'
+	Glyf 603 -> PSGlyf Name # 353, name= 'afii10066'
+	Glyf 604 -> PSGlyf Name # 354, name= 'afii10067'
+	Glyf 605 -> PSGlyf Name # 355, name= 'afii10068'
+	Glyf 606 -> PSGlyf Name # 356, name= 'afii10069'
+	Glyf 607 -> PSGlyf Name # 357, name= 'afii10070'
+	Glyf 608 -> PSGlyf Name # 358, name= 'afii10072'
+	Glyf 609 -> PSGlyf Name # 359, name= 'afii10073'
+	Glyf 610 -> PSGlyf Name # 360, name= 'afii10074'
+	Glyf 611 -> PSGlyf Name # 361, name= 'afii10075'
+	Glyf 612 -> PSGlyf Name # 362, name= 'afii10076'
+	Glyf 613 -> PSGlyf Name # 363, name= 'afii10077'
+	Glyf 614 -> PSGlyf Name # 364, name= 'afii10078'
+	Glyf 615 -> PSGlyf Name # 365, name= 'afii10079'
+	Glyf 616 -> PSGlyf Name # 366, name= 'afii10080'
+	Glyf 617 -> PSGlyf Name # 367, name= 'afii10081'
+	Glyf 618 -> PSGlyf Name # 368, name= 'afii10082'
+	Glyf 619 -> PSGlyf Name # 369, name= 'afii10083'
+	Glyf 620 -> PSGlyf Name # 370, name= 'afii10084'
+	Glyf 621 -> PSGlyf Name # 371, name= 'afii10085'
+	Glyf 622 -> PSGlyf Name # 372, name= 'afii10086'
+	Glyf 623 -> PSGlyf Name # 373, name= 'afii10087'
+	Glyf 624 -> PSGlyf Name # 374, name= 'afii10088'
+	Glyf 625 -> PSGlyf Name # 375, name= 'afii10089'
+	Glyf 626 -> PSGlyf Name # 376, name= 'afii10090'
+	Glyf 627 -> PSGlyf Name # 377, name= 'afii10091'
+	Glyf 628 -> PSGlyf Name # 378, name= 'afii10092'
+	Glyf 629 -> PSGlyf Name # 379, name= 'afii10093'
+	Glyf 630 -> PSGlyf Name # 380, name= 'afii10094'
+	Glyf 631 -> PSGlyf Name # 381, name= 'afii10095'
+	Glyf 632 -> PSGlyf Name # 382, name= 'afii10096'
+	Glyf 633 -> PSGlyf Name # 383, name= 'afii10097'
+	Glyf 634 -> PSGlyf Name # 384, name= 'afii10071'
+	Glyf 635 -> PSGlyf Name # 385, name= 'afii10099'
+	Glyf 636 -> PSGlyf Name # 386, name= 'afii10100'
+	Glyf 637 -> PSGlyf Name # 387, name= 'afii10101'
+	Glyf 638 -> PSGlyf Name # 388, name= 'afii10102'
+	Glyf 639 -> PSGlyf Name # 389, name= 'afii10103'
+	Glyf 640 -> PSGlyf Name # 390, name= 'afii10104'
+	Glyf 641 -> PSGlyf Name # 391, name= 'afii10105'
+	Glyf 642 -> PSGlyf Name # 392, name= 'afii10106'
+	Glyf 643 -> PSGlyf Name # 393, name= 'afii10107'
+	Glyf 644 -> PSGlyf Name # 394, name= 'afii10108'
+	Glyf 645 -> PSGlyf Name # 395, name= 'afii10109'
+	Glyf 646 -> PSGlyf Name # 396, name= 'afii10110'
+	Glyf 647 -> PSGlyf Name # 397, name= 'afii10193'
+	Glyf 648 -> PSGlyf Name # 398, name= 'afii10050'
+	Glyf 649 -> PSGlyf Name # 399, name= 'afii10098'
+	Glyf 650 -> PSGlyf Name # 400, name= 'afii00208'
+	Glyf 651 -> PSGlyf Name # 401, name= 'afii61352'
+	Glyf 652 -> Mac Glyph # 155, 'pi'
+	Glyf 653 -> PSGlyf Name # 402, name= 'sheva'
+	Glyf 654 -> PSGlyf Name # 403, name= 'hatafsegol'
+	Glyf 655 -> PSGlyf Name # 404, name= 'hatafpatah'
+	Glyf 656 -> PSGlyf Name # 405, name= 'hatafqamats'
+	Glyf 657 -> PSGlyf Name # 406, name= 'hiriq'
+	Glyf 658 -> PSGlyf Name # 407, name= 'tsere'
+	Glyf 659 -> PSGlyf Name # 408, name= 'segol'
+	Glyf 660 -> PSGlyf Name # 409, name= 'patah'
+	Glyf 661 -> PSGlyf Name # 410, name= 'qamats'
+	Glyf 662 -> PSGlyf Name # 411, name= 'holam'
+	Glyf 663 -> PSGlyf Name # 412, name= 'qubuts'
+	Glyf 664 -> PSGlyf Name # 413, name= 'dagesh'
+	Glyf 665 -> PSGlyf Name # 414, name= 'meteg'
+	Glyf 666 -> PSGlyf Name # 415, name= 'maqaf'
+	Glyf 667 -> PSGlyf Name # 416, name= 'rafe'
+	Glyf 668 -> PSGlyf Name # 417, name= 'paseq'
+	Glyf 669 -> PSGlyf Name # 418, name= 'shindot'
+	Glyf 670 -> PSGlyf Name # 419, name= 'sindot'
+	Glyf 671 -> PSGlyf Name # 420, name= 'sofpasuq'
+	Glyf 672 -> PSGlyf Name # 421, name= 'alef'
+	Glyf 673 -> PSGlyf Name # 422, name= 'bet'
+	Glyf 674 -> PSGlyf Name # 423, name= 'gimel'
+	Glyf 675 -> PSGlyf Name # 424, name= 'dalet'
+	Glyf 676 -> PSGlyf Name # 425, name= 'he'
+	Glyf 677 -> PSGlyf Name # 426, name= 'vav'
+	Glyf 678 -> PSGlyf Name # 427, name= 'zayin'
+	Glyf 679 -> PSGlyf Name # 428, name= 'het'
+	Glyf 680 -> PSGlyf Name # 429, name= 'tet'
+	Glyf 681 -> PSGlyf Name # 430, name= 'yod'
+	Glyf 682 -> PSGlyf Name # 431, name= 'finalkaf'
+	Glyf 683 -> PSGlyf Name # 432, name= 'kaf'
+	Glyf 684 -> PSGlyf Name # 433, name= 'lamed'
+	Glyf 685 -> PSGlyf Name # 434, name= 'finalmem'
+	Glyf 686 -> PSGlyf Name # 435, name= 'mem'
+	Glyf 687 -> PSGlyf Name # 436, name= 'finalnun'
+	Glyf 688 -> PSGlyf Name # 437, name= 'nun'
+	Glyf 689 -> PSGlyf Name # 438, name= 'samekh'
+	Glyf 690 -> PSGlyf Name # 439, name= 'ayin'
+	Glyf 691 -> PSGlyf Name # 440, name= 'finalpe'
+	Glyf 692 -> PSGlyf Name # 441, name= 'pe'
+	Glyf 693 -> PSGlyf Name # 442, name= 'finaltsadi'
+	Glyf 694 -> PSGlyf Name # 443, name= 'tsadi'
+	Glyf 695 -> PSGlyf Name # 444, name= 'qof'
+	Glyf 696 -> PSGlyf Name # 445, name= 'resh'
+	Glyf 697 -> PSGlyf Name # 446, name= 'shin'
+	Glyf 698 -> PSGlyf Name # 447, name= 'tav'
+	Glyf 699 -> PSGlyf Name # 448, name= 'doublevav'
+	Glyf 700 -> PSGlyf Name # 449, name= 'vavyod'
+	Glyf 701 -> PSGlyf Name # 450, name= 'doubleyod'
+	Glyf 702 -> PSGlyf Name # 451, name= 'geresh'
+	Glyf 703 -> PSGlyf Name # 452, name= 'gershayim'
+	Glyf 704 -> PSGlyf Name # 453, name= 'newsheqelsign'
+	Glyf 705 -> PSGlyf Name # 454, name= 'vavshindot'
+	Glyf 706 -> PSGlyf Name # 455, name= 'finalkafsheva'
+	Glyf 707 -> PSGlyf Name # 456, name= 'finalkafqamats'
+	Glyf 708 -> PSGlyf Name # 457, name= 'lamedholam'
+	Glyf 709 -> PSGlyf Name # 458, name= 'lamedholamdagesh'
+	Glyf 710 -> PSGlyf Name # 459, name= 'altayin'
+	Glyf 711 -> PSGlyf Name # 460, name= 'shinshindot'
+	Glyf 712 -> PSGlyf Name # 461, name= 'shinsindot'
+	Glyf 713 -> PSGlyf Name # 462, name= 'shindageshshindot'
+	Glyf 714 -> PSGlyf Name # 463, name= 'shindageshsindot'
+	Glyf 715 -> PSGlyf Name # 464, name= 'alefpatah'
+	Glyf 716 -> PSGlyf Name # 465, name= 'alefqamats'
+	Glyf 717 -> PSGlyf Name # 466, name= 'alefmapiq'
+	Glyf 718 -> PSGlyf Name # 467, name= 'betdagesh'
+	Glyf 719 -> PSGlyf Name # 468, name= 'gimeldagesh'
+	Glyf 720 -> PSGlyf Name # 469, name= 'daletdagesh'
+	Glyf 721 -> PSGlyf Name # 470, name= 'hedagesh'
+	Glyf 722 -> PSGlyf Name # 471, name= 'vavdagesh'
+	Glyf 723 -> PSGlyf Name # 472, name= 'zayindagesh'
+	Glyf 724 -> PSGlyf Name # 473, name= 'tetdagesh'
+	Glyf 725 -> PSGlyf Name # 474, name= 'yoddagesh'
+	Glyf 726 -> PSGlyf Name # 475, name= 'finalkafdagesh'
+	Glyf 727 -> PSGlyf Name # 476, name= 'kafdagesh'
+	Glyf 728 -> PSGlyf Name # 477, name= 'lameddagesh'
+	Glyf 729 -> PSGlyf Name # 478, name= 'memdagesh'
+	Glyf 730 -> PSGlyf Name # 479, name= 'nundagesh'
+	Glyf 731 -> PSGlyf Name # 480, name= 'samekhdagesh'
+	Glyf 732 -> PSGlyf Name # 481, name= 'finalpedagesh'
+	Glyf 733 -> PSGlyf Name # 482, name= 'pedagesh'
+	Glyf 734 -> PSGlyf Name # 483, name= 'tsadidagesh'
+	Glyf 735 -> PSGlyf Name # 484, name= 'qofdagesh'
+	Glyf 736 -> PSGlyf Name # 485, name= 'reshdagesh'
+	Glyf 737 -> PSGlyf Name # 486, name= 'shindagesh'
+	Glyf 738 -> PSGlyf Name # 487, name= 'tavdages'
+	Glyf 739 -> PSGlyf Name # 488, name= 'vavholam'
+	Glyf 740 -> PSGlyf Name # 489, name= 'betrafe'
+	Glyf 741 -> PSGlyf Name # 490, name= 'kafrafe'
+	Glyf 742 -> PSGlyf Name # 491, name= 'perafe'
+	Glyf 743 -> PSGlyf Name # 492, name= 'aleflamed'
+	Glyf 744 -> PSGlyf Name # 493, name= 'zerowidthnonjoiner'
+	Glyf 745 -> PSGlyf Name # 494, name= 'zerowidthjoiner'
+	Glyf 746 -> PSGlyf Name # 495, name= 'lefttorightmark'
+	Glyf 747 -> PSGlyf Name # 496, name= 'righttoleftmark'
+	Glyf 748 -> PSGlyf Name # 497, name= 'afii57388'
+	Glyf 749 -> PSGlyf Name # 498, name= 'afii57403'
+	Glyf 750 -> PSGlyf Name # 499, name= 'afii57407'
+	Glyf 751 -> PSGlyf Name # 500, name= 'afii57409'
+	Glyf 752 -> PSGlyf Name # 501, name= 'afii57440'
+	Glyf 753 -> PSGlyf Name # 502, name= 'afii57451'
+	Glyf 754 -> PSGlyf Name # 503, name= 'afii57452'
+	Glyf 755 -> PSGlyf Name # 504, name= 'afii57453'
+	Glyf 756 -> PSGlyf Name # 505, name= 'afii57454'
+	Glyf 757 -> PSGlyf Name # 506, name= 'afii57455'
+	Glyf 758 -> PSGlyf Name # 507, name= 'afii57456'
+	Glyf 759 -> PSGlyf Name # 508, name= 'afii57457'
+	Glyf 760 -> PSGlyf Name # 509, name= 'afii57458'
+	Glyf 761 -> PSGlyf Name # 510, name= 'afii57392'
+	Glyf 762 -> PSGlyf Name # 511, name= 'afii57393'
+	Glyf 763 -> PSGlyf Name # 512, name= 'afii57394'
+	Glyf 764 -> PSGlyf Name # 513, name= 'afii57395'
+	Glyf 765 -> PSGlyf Name # 514, name= 'afii57396'
+	Glyf 766 -> PSGlyf Name # 515, name= 'afii57397'
+	Glyf 767 -> PSGlyf Name # 516, name= 'afii57398'
+	Glyf 768 -> PSGlyf Name # 517, name= 'afii57399'
+	Glyf 769 -> PSGlyf Name # 518, name= 'afii57400'
+	Glyf 770 -> PSGlyf Name # 519, name= 'afii57401'
+	Glyf 771 -> PSGlyf Name # 520, name= 'afii57381'
+	Glyf 772 -> PSGlyf Name # 521, name= 'afii57461'
+	Glyf 773 -> PSGlyf Name # 522, name= 'afii63167'
+	Glyf 774 -> PSGlyf Name # 523, name= 'afii57459'
+	Glyf 775 -> PSGlyf Name # 524, name= 'afii57543'
+	Glyf 776 -> PSGlyf Name # 525, name= 'afii57534'
+	Glyf 777 -> PSGlyf Name # 526, name= 'afii57494'
+	Glyf 778 -> PSGlyf Name # 527, name= 'afii62843'
+	Glyf 779 -> PSGlyf Name # 528, name= 'afii62844'
+	Glyf 780 -> PSGlyf Name # 529, name= 'afii62845'
+	Glyf 781 -> PSGlyf Name # 530, name= 'afii64240'
+	Glyf 782 -> PSGlyf Name # 531, name= 'afii64241'
+	Glyf 783 -> PSGlyf Name # 532, name= 'afii63954'
+	Glyf 784 -> PSGlyf Name # 533, name= 'afii57382'
+	Glyf 785 -> PSGlyf Name # 534, name= 'afii64242'
+	Glyf 786 -> PSGlyf Name # 535, name= 'afii62881'
+	Glyf 787 -> PSGlyf Name # 536, name= 'afii57504'
+	Glyf 788 -> PSGlyf Name # 537, name= 'afii57369'
+	Glyf 789 -> PSGlyf Name # 538, name= 'afii57370'
+	Glyf 790 -> PSGlyf Name # 539, name= 'afii57371'
+	Glyf 791 -> PSGlyf Name # 540, name= 'afii57372'
+	Glyf 792 -> PSGlyf Name # 541, name= 'afii57373'
+	Glyf 793 -> PSGlyf Name # 542, name= 'afii57374'
+	Glyf 794 -> PSGlyf Name # 543, name= 'afii57375'
+	Glyf 795 -> PSGlyf Name # 544, name= 'afii57391'
+	Glyf 796 -> PSGlyf Name # 545, name= 'afii57471'
+	Glyf 797 -> PSGlyf Name # 546, name= 'afii57460'
+	Glyf 798 -> PSGlyf Name # 547, name= 'afii52258'
+	Glyf 799 -> PSGlyf Name # 548, name= 'afii57506'
+	Glyf 800 -> PSGlyf Name # 549, name= 'afii62958'
+	Glyf 801 -> PSGlyf Name # 550, name= 'afii62956'
+	Glyf 802 -> PSGlyf Name # 551, name= 'afii52957'
+	Glyf 803 -> PSGlyf Name # 552, name= 'afii57505'
+	Glyf 804 -> PSGlyf Name # 553, name= 'afii62889'
+	Glyf 805 -> PSGlyf Name # 554, name= 'afii62887'
+	Glyf 806 -> PSGlyf Name # 555, name= 'afii62888'
+	Glyf 807 -> PSGlyf Name # 556, name= 'afii57507'
+	Glyf 808 -> PSGlyf Name # 557, name= 'afii62961'
+	Glyf 809 -> PSGlyf Name # 558, name= 'afii62959'
+	Glyf 810 -> PSGlyf Name # 559, name= 'afii62960'
+	Glyf 811 -> PSGlyf Name # 560, name= 'afii57508'
+	Glyf 812 -> PSGlyf Name # 561, name= 'afii62962'
+	Glyf 813 -> PSGlyf Name # 562, name= 'afii57567'
+	Glyf 814 -> PSGlyf Name # 563, name= 'afii62964'
+	Glyf 815 -> PSGlyf Name # 564, name= 'afii52305'
+	Glyf 816 -> PSGlyf Name # 565, name= 'afii52306'
+	Glyf 817 -> PSGlyf Name # 566, name= 'afii57509'
+	Glyf 818 -> PSGlyf Name # 567, name= 'afii62967'
+	Glyf 819 -> PSGlyf Name # 568, name= 'afii62965'
+	Glyf 820 -> PSGlyf Name # 569, name= 'afii62966'
+	Glyf 821 -> PSGlyf Name # 570, name= 'afii57555'
+	Glyf 822 -> PSGlyf Name # 571, name= 'afii52364'
+	Glyf 823 -> PSGlyf Name # 572, name= 'afii63753'
+	Glyf 824 -> PSGlyf Name # 573, name= 'afii63754'
+	Glyf 825 -> PSGlyf Name # 574, name= 'afii63759'
+	Glyf 826 -> PSGlyf Name # 575, name= 'afii63763'
+	Glyf 827 -> PSGlyf Name # 576, name= 'afii63795'
+	Glyf 828 -> PSGlyf Name # 577, name= 'afii62891'
+	Glyf 829 -> PSGlyf Name # 578, name= 'afii63808'
+	Glyf 830 -> PSGlyf Name # 579, name= 'afii62938'
+	Glyf 831 -> PSGlyf Name # 580, name= 'afii63810'
+	Glyf 832 -> PSGlyf Name # 581, name= 'afii62942'
+	Glyf 833 -> PSGlyf Name # 582, name= 'afii62947'
+	Glyf 834 -> PSGlyf Name # 583, name= 'afii63813'
+	Glyf 835 -> PSGlyf Name # 584, name= 'afii63823'
+	Glyf 836 -> PSGlyf Name # 585, name= 'afii63824'
+	Glyf 837 -> PSGlyf Name # 586, name= 'afii63833'
+	Glyf 838 -> PSGlyf Name # 587, name= 'afii63844'
+	Glyf 839 -> PSGlyf Name # 588, name= 'afii62882'
+	Glyf 840 -> PSGlyf Name # 589, name= 'afii62883'
+	Glyf 841 -> PSGlyf Name # 590, name= 'afii62884'
+	Glyf 842 -> PSGlyf Name # 591, name= 'afii62885'
+	Glyf 843 -> PSGlyf Name # 592, name= 'afii62886'
+	Glyf 844 -> PSGlyf Name # 593, name= 'afii63846'
+	Glyf 845 -> PSGlyf Name # 594, name= 'afii63849'
+	Glyf 846 -> PSGlyf Name # 595, name= 'afii63850'
+	Glyf 847 -> PSGlyf Name # 596, name= 'afii63851'
+	Glyf 848 -> PSGlyf Name # 597, name= 'afii63852'
+	Glyf 849 -> PSGlyf Name # 598, name= 'afii63855'
+	Glyf 850 -> PSGlyf Name # 599, name= 'afii63856'
+	Glyf 851 -> PSGlyf Name # 600, name= 'afii63761'
+	Glyf 852 -> PSGlyf Name # 601, name= 'afii63882'
+	Glyf 853 -> PSGlyf Name # 602, name= 'afii63825'
+	Glyf 854 -> PSGlyf Name # 603, name= 'afii63885'
+	Glyf 855 -> PSGlyf Name # 604, name= 'afii63888'
+	Glyf 856 -> PSGlyf Name # 605, name= 'afii63896'
+	Glyf 857 -> PSGlyf Name # 606, name= 'afii63897'
+	Glyf 858 -> PSGlyf Name # 607, name= 'afii63898'
+	Glyf 859 -> PSGlyf Name # 608, name= 'afii63899'
+	Glyf 860 -> PSGlyf Name # 609, name= 'afii63900'
+	Glyf 861 -> PSGlyf Name # 610, name= 'afii63901'
+	Glyf 862 -> PSGlyf Name # 611, name= 'afii63902'
+	Glyf 863 -> PSGlyf Name # 612, name= 'afii63903'
+	Glyf 864 -> PSGlyf Name # 613, name= 'afii63904'
+	Glyf 865 -> PSGlyf Name # 614, name= 'afii63905'
+	Glyf 866 -> PSGlyf Name # 615, name= 'afii63906'
+	Glyf 867 -> PSGlyf Name # 616, name= 'afii63908'
+	Glyf 868 -> PSGlyf Name # 617, name= 'afii63910'
+	Glyf 869 -> PSGlyf Name # 618, name= 'afii63912'
+	Glyf 870 -> PSGlyf Name # 619, name= 'afii62927'
+	Glyf 871 -> PSGlyf Name # 620, name= 'afii63941'
+	Glyf 872 -> PSGlyf Name # 621, name= 'afii62939'
+	Glyf 873 -> PSGlyf Name # 622, name= 'afii63943'
+	Glyf 874 -> PSGlyf Name # 623, name= 'afii62943'
+	Glyf 875 -> PSGlyf Name # 624, name= 'afii62946'
+	Glyf 876 -> PSGlyf Name # 625, name= 'afii63946'
+	Glyf 877 -> PSGlyf Name # 626, name= 'afii62951'
+	Glyf 878 -> PSGlyf Name # 627, name= 'afii63948'
+	Glyf 879 -> PSGlyf Name # 628, name= 'afii62953'
+	Glyf 880 -> PSGlyf Name # 629, name= 'afii63950'
+	Glyf 881 -> PSGlyf Name # 630, name= 'afii63951'
+	Glyf 882 -> PSGlyf Name # 631, name= 'afii63952'
+	Glyf 883 -> PSGlyf Name # 632, name= 'afii63953'
+	Glyf 884 -> PSGlyf Name # 633, name= 'afii63956'
+	Glyf 885 -> PSGlyf Name # 634, name= 'afii63958'
+	Glyf 886 -> PSGlyf Name # 635, name= 'afii63959'
+	Glyf 887 -> PSGlyf Name # 636, name= 'afii63960'
+	Glyf 888 -> PSGlyf Name # 637, name= 'afii63961'
+	Glyf 889 -> PSGlyf Name # 638, name= 'afii64046'
+	Glyf 890 -> PSGlyf Name # 639, name= 'afii64058'
+	Glyf 891 -> PSGlyf Name # 640, name= 'afii64059'
+	Glyf 892 -> PSGlyf Name # 641, name= 'afii64060'
+	Glyf 893 -> PSGlyf Name # 642, name= 'afii64061'
+	Glyf 894 -> PSGlyf Name # 643, name= 'afii62945'
+	Glyf 895 -> PSGlyf Name # 644, name= 'afii64184'
+	Glyf 896 -> PSGlyf Name # 645, name= 'afii52399'
+	Glyf 897 -> PSGlyf Name # 646, name= 'afii52400'
+	Glyf 898 -> PSGlyf Name # 647, name= 'afii62753'
+	Glyf 899 -> PSGlyf Name # 648, name= 'afii57411'
+	Glyf 900 -> PSGlyf Name # 649, name= 'afii62754'
+	Glyf 901 -> PSGlyf Name # 650, name= 'afii57412'
+	Glyf 902 -> PSGlyf Name # 651, name= 'afii62755'
+	Glyf 903 -> PSGlyf Name # 652, name= 'afii57413'
+	Glyf 904 -> PSGlyf Name # 653, name= 'afii62756'
+	Glyf 905 -> PSGlyf Name # 654, name= 'afii57414'
+	Glyf 906 -> PSGlyf Name # 655, name= 'afii62759'
+	Glyf 907 -> PSGlyf Name # 656, name= 'afii62757'
+	Glyf 908 -> PSGlyf Name # 657, name= 'afii62758'
+	Glyf 909 -> PSGlyf Name # 658, name= 'afii57415'
+	Glyf 910 -> PSGlyf Name # 659, name= 'afii62760'
+	Glyf 911 -> PSGlyf Name # 660, name= 'afii57416'
+	Glyf 912 -> PSGlyf Name # 661, name= 'afii62763'
+	Glyf 913 -> PSGlyf Name # 662, name= 'afii62761'
+	Glyf 914 -> PSGlyf Name # 663, name= 'afii62762'
+	Glyf 915 -> PSGlyf Name # 664, name= 'afii57417'
+	Glyf 916 -> PSGlyf Name # 665, name= 'afii62764'
+	Glyf 917 -> PSGlyf Name # 666, name= 'afii57418'
+	Glyf 918 -> PSGlyf Name # 667, name= 'afii62767'
+	Glyf 919 -> PSGlyf Name # 668, name= 'afii62765'
+	Glyf 920 -> PSGlyf Name # 669, name= 'afii62766'
+	Glyf 921 -> PSGlyf Name # 670, name= 'afii57419'
+	Glyf 922 -> PSGlyf Name # 671, name= 'afii62770'
+	Glyf 923 -> PSGlyf Name # 672, name= 'afii62768'
+	Glyf 924 -> PSGlyf Name # 673, name= 'afii62769'
+	Glyf 925 -> PSGlyf Name # 674, name= 'afii57420'
+	Glyf 926 -> PSGlyf Name # 675, name= 'afii62773'
+	Glyf 927 -> PSGlyf Name # 676, name= 'afii62771'
+	Glyf 928 -> PSGlyf Name # 677, name= 'afii62772'
+	Glyf 929 -> PSGlyf Name # 678, name= 'afii57421'
+	Glyf 930 -> PSGlyf Name # 679, name= 'afii62776'
+	Glyf 931 -> PSGlyf Name # 680, name= 'afii62774'
+	Glyf 932 -> PSGlyf Name # 681, name= 'afii62775'
+	Glyf 933 -> PSGlyf Name # 682, name= 'afii57422'
+	Glyf 934 -> PSGlyf Name # 683, name= 'afii62779'
+	Glyf 935 -> PSGlyf Name # 684, name= 'afii62777'
+	Glyf 936 -> PSGlyf Name # 685, name= 'afii62778'
+	Glyf 937 -> PSGlyf Name # 686, name= 'afii57423'
+	Glyf 938 -> PSGlyf Name # 687, name= 'afii62780'
+	Glyf 939 -> PSGlyf Name # 688, name= 'afii57424'
+	Glyf 940 -> PSGlyf Name # 689, name= 'afii62781'
+	Glyf 941 -> PSGlyf Name # 690, name= 'afii57425'
+	Glyf 942 -> PSGlyf Name # 691, name= 'afii62782'
+	Glyf 943 -> PSGlyf Name # 692, name= 'afii57426'
+	Glyf 944 -> PSGlyf Name # 693, name= 'afii62783'
+	Glyf 945 -> PSGlyf Name # 694, name= 'afii57427'
+	Glyf 946 -> PSGlyf Name # 695, name= 'afii62786'
+	Glyf 947 -> PSGlyf Name # 696, name= 'afii62784'
+	Glyf 948 -> PSGlyf Name # 697, name= 'afii62785'
+	Glyf 949 -> PSGlyf Name # 698, name= 'afii57428'
+	Glyf 950 -> PSGlyf Name # 699, name= 'afii62789'
+	Glyf 951 -> PSGlyf Name # 700, name= 'afii62787'
+	Glyf 952 -> PSGlyf Name # 701, name= 'afii62788'
+	Glyf 953 -> PSGlyf Name # 702, name= 'afii57429'
+	Glyf 954 -> PSGlyf Name # 703, name= 'afii62792'
+	Glyf 955 -> PSGlyf Name # 704, name= 'afii62790'
+	Glyf 956 -> PSGlyf Name # 705, name= 'afii62791'
+	Glyf 957 -> PSGlyf Name # 706, name= 'afii57430'
+	Glyf 958 -> PSGlyf Name # 707, name= 'afii62795'
+	Glyf 959 -> PSGlyf Name # 708, name= 'afii62793'
+	Glyf 960 -> PSGlyf Name # 709, name= 'afii62794'
+	Glyf 961 -> PSGlyf Name # 710, name= 'afii57431'
+	Glyf 962 -> PSGlyf Name # 711, name= 'afii62798'
+	Glyf 963 -> PSGlyf Name # 712, name= 'afii62796'
+	Glyf 964 -> PSGlyf Name # 713, name= 'afii62797'
+	Glyf 965 -> PSGlyf Name # 714, name= 'afii57432'
+	Glyf 966 -> PSGlyf Name # 715, name= 'afii62801'
+	Glyf 967 -> PSGlyf Name # 716, name= 'afii62799'
+	Glyf 968 -> PSGlyf Name # 717, name= 'afii62800'
+	Glyf 969 -> PSGlyf Name # 718, name= 'afii57433'
+	Glyf 970 -> PSGlyf Name # 719, name= 'afii62804'
+	Glyf 971 -> PSGlyf Name # 720, name= 'afii62802'
+	Glyf 972 -> PSGlyf Name # 721, name= 'afii62803'
+	Glyf 973 -> PSGlyf Name # 722, name= 'afii57434'
+	Glyf 974 -> PSGlyf Name # 723, name= 'afii62807'
+	Glyf 975 -> PSGlyf Name # 724, name= 'afii62805'
+	Glyf 976 -> PSGlyf Name # 725, name= 'afii62806'
+	Glyf 977 -> PSGlyf Name # 726, name= 'afii57441'
+	Glyf 978 -> PSGlyf Name # 727, name= 'afii62810'
+	Glyf 979 -> PSGlyf Name # 728, name= 'afii62808'
+	Glyf 980 -> PSGlyf Name # 729, name= 'afii62809'
+	Glyf 981 -> PSGlyf Name # 730, name= 'afii57442'
+	Glyf 982 -> PSGlyf Name # 731, name= 'afii62813'
+	Glyf 983 -> PSGlyf Name # 732, name= 'afii62811'
+	Glyf 984 -> PSGlyf Name # 733, name= 'afii62812'
+	Glyf 985 -> PSGlyf Name # 734, name= 'afii57443'
+	Glyf 986 -> PSGlyf Name # 735, name= 'afii62816'
+	Glyf 987 -> PSGlyf Name # 736, name= 'afii57410'
+	Glyf 988 -> PSGlyf Name # 737, name= 'afii62815'
+	Glyf 989 -> PSGlyf Name # 738, name= 'afii57444'
+	Glyf 990 -> PSGlyf Name # 739, name= 'afii62819'
+	Glyf 991 -> PSGlyf Name # 740, name= 'afii62817'
+	Glyf 992 -> PSGlyf Name # 741, name= 'afii62818'
+	Glyf 993 -> PSGlyf Name # 742, name= 'afii57445'
+	Glyf 994 -> PSGlyf Name # 743, name= 'afii62822'
+	Glyf 995 -> PSGlyf Name # 744, name= 'afii62820'
+	Glyf 996 -> PSGlyf Name # 745, name= 'afii62821'
+	Glyf 997 -> PSGlyf Name # 746, name= 'afii57446'
+	Glyf 998 -> PSGlyf Name # 747, name= 'afii62825'
+	Glyf 999 -> PSGlyf Name # 748, name= 'afii62823'
+	Glyf 1000 -> PSGlyf Name # 749, name= 'afii62824'
+	Glyf 1001 -> PSGlyf Name # 750, name= 'afii57447'
+	Glyf 1002 -> PSGlyf Name # 751, name= 'afii62828'
+	Glyf 1003 -> PSGlyf Name # 752, name= 'afii57470'
+	Glyf 1004 -> PSGlyf Name # 753, name= 'afii62827'
+	Glyf 1005 -> PSGlyf Name # 754, name= 'afii57448'
+	Glyf 1006 -> PSGlyf Name # 755, name= 'afii62829'
+	Glyf 1007 -> PSGlyf Name # 756, name= 'afii57449'
+	Glyf 1008 -> PSGlyf Name # 757, name= 'afii62830'
+	Glyf 1009 -> PSGlyf Name # 758, name= 'afii57450'
+	Glyf 1010 -> PSGlyf Name # 759, name= 'afii62833'
+	Glyf 1011 -> PSGlyf Name # 760, name= 'afii62831'
+	Glyf 1012 -> PSGlyf Name # 761, name= 'afii62832'
+	Glyf 1013 -> PSGlyf Name # 762, name= 'afii62834'
+	Glyf 1014 -> PSGlyf Name # 763, name= 'afii62835'
+	Glyf 1015 -> PSGlyf Name # 764, name= 'afii62836'
+	Glyf 1016 -> PSGlyf Name # 765, name= 'afii62837'
+	Glyf 1017 -> PSGlyf Name # 766, name= 'afii62838'
+	Glyf 1018 -> PSGlyf Name # 767, name= 'afii62839'
+	Glyf 1019 -> PSGlyf Name # 768, name= 'afii62840'
+	Glyf 1020 -> PSGlyf Name # 769, name= 'afii62841'
+	Glyf 1021 -> PSGlyf Name # 770, name= 'glyph1021'
+	Glyf 1022 -> PSGlyf Name # 771, name= 'afii57543-2'
+	Glyf 1023 -> PSGlyf Name # 772, name= 'afii57454-2'
+	Glyf 1024 -> PSGlyf Name # 773, name= 'afii57451-2'
+	Glyf 1025 -> PSGlyf Name # 774, name= 'glyph1025'
+	Glyf 1026 -> PSGlyf Name # 775, name= 'glyph1026'
+	Glyf 1027 -> PSGlyf Name # 776, name= 'afii57471-2'
+	Glyf 1028 -> PSGlyf Name # 777, name= 'afii57458-2'
+	Glyf 1029 -> PSGlyf Name # 778, name= 'afii57457-2'
+	Glyf 1030 -> PSGlyf Name # 779, name= 'afii57494-2'
+	Glyf 1031 -> PSGlyf Name # 780, name= 'afii57459-2'
+	Glyf 1032 -> PSGlyf Name # 781, name= 'afii57455-2'
+	Glyf 1033 -> PSGlyf Name # 782, name= 'afii57452-2'
+	Glyf 1034 -> PSGlyf Name # 783, name= 'glyph1034'
+	Glyf 1035 -> PSGlyf Name # 784, name= 'glyph1035'
+	Glyf 1036 -> PSGlyf Name # 785, name= 'glyph1036'
+	Glyf 1037 -> PSGlyf Name # 786, name= 'afii62884-2'
+	Glyf 1038 -> PSGlyf Name # 787, name= 'afii62881-2'
+	Glyf 1039 -> PSGlyf Name # 788, name= 'afii62886-2'
+	Glyf 1040 -> PSGlyf Name # 789, name= 'afii62883-2'
+	Glyf 1041 -> PSGlyf Name # 790, name= 'afii62885-2'
+	Glyf 1042 -> PSGlyf Name # 791, name= 'afii62882-2'
+	Glyf 1043 -> PSGlyf Name # 792, name= 'afii57504-2'
+	Glyf 1044 -> PSGlyf Name # 793, name= 'afii57456-2'
+	Glyf 1045 -> PSGlyf Name # 794, name= 'afii57453-2'
+	Glyf 1046 -> PSGlyf Name # 795, name= 'glyph1046'
+	Glyf 1047 -> PSGlyf Name # 796, name= 'glyph1047'
+	Glyf 1048 -> PSGlyf Name # 797, name= 'afii57543-3'
+	Glyf 1049 -> PSGlyf Name # 798, name= 'afii57454-3'
+	Glyf 1050 -> PSGlyf Name # 799, name= 'afii57451-3'
+	Glyf 1051 -> PSGlyf Name # 800, name= 'glyph1051'
+	Glyf 1052 -> PSGlyf Name # 801, name= 'glyph1052'
+	Glyf 1053 -> PSGlyf Name # 802, name= 'afii57471-3'
+	Glyf 1054 -> PSGlyf Name # 803, name= 'afii57458-3'
+	Glyf 1055 -> PSGlyf Name # 804, name= 'afii57457-3'
+	Glyf 1056 -> PSGlyf Name # 805, name= 'afii57494-3'
+	Glyf 1057 -> PSGlyf Name # 806, name= 'afii57459-3'
+	Glyf 1058 -> PSGlyf Name # 807, name= 'afii57455-3'
+	Glyf 1059 -> PSGlyf Name # 808, name= 'afii57452-3'
+	Glyf 1060 -> PSGlyf Name # 809, name= 'glyph1060'
+	Glyf 1061 -> PSGlyf Name # 810, name= 'glyph1061'
+	Glyf 1062 -> PSGlyf Name # 811, name= 'glyph1062'
+	Glyf 1063 -> PSGlyf Name # 812, name= 'afii62884-3'
+	Glyf 1064 -> PSGlyf Name # 813, name= 'afii62881-3'
+	Glyf 1065 -> PSGlyf Name # 814, name= 'afii62886-3'
+	Glyf 1066 -> PSGlyf Name # 815, name= 'afii62883-3'
+	Glyf 1067 -> PSGlyf Name # 816, name= 'afii62885-3'
+	Glyf 1068 -> PSGlyf Name # 817, name= 'afii62882-3'
+	Glyf 1069 -> PSGlyf Name # 818, name= 'afii57504-3'
+	Glyf 1070 -> PSGlyf Name # 819, name= 'afii57456-3'
+	Glyf 1071 -> PSGlyf Name # 820, name= 'afii57453-3'
+	Glyf 1072 -> PSGlyf Name # 821, name= 'glyph1072'
+	Glyf 1073 -> PSGlyf Name # 822, name= 'glyph1073'
+	Glyf 1074 -> PSGlyf Name # 823, name= 'afii57543-4'
+	Glyf 1075 -> PSGlyf Name # 824, name= 'afii57454-4'
+	Glyf 1076 -> PSGlyf Name # 825, name= 'afii57451-4'
+	Glyf 1077 -> PSGlyf Name # 826, name= 'glyph1077'
+	Glyf 1078 -> PSGlyf Name # 827, name= 'glyph1078'
+	Glyf 1079 -> PSGlyf Name # 828, name= 'afii57471-4'
+	Glyf 1080 -> PSGlyf Name # 829, name= 'afii57458-4'
+	Glyf 1081 -> PSGlyf Name # 830, name= 'afii57457-4'
+	Glyf 1082 -> PSGlyf Name # 831, name= 'afii57494-4'
+	Glyf 1083 -> PSGlyf Name # 832, name= 'afii57459-4'
+	Glyf 1084 -> PSGlyf Name # 833, name= 'afii57455-4'
+	Glyf 1085 -> PSGlyf Name # 834, name= 'afii57452-4'
+	Glyf 1086 -> PSGlyf Name # 835, name= 'glyph1086'
+	Glyf 1087 -> PSGlyf Name # 836, name= 'glyph1087'
+	Glyf 1088 -> PSGlyf Name # 837, name= 'glyph1088'
+	Glyf 1089 -> PSGlyf Name # 838, name= 'afii62884-4'
+	Glyf 1090 -> PSGlyf Name # 839, name= 'afii62881-4'
+	Glyf 1091 -> PSGlyf Name # 840, name= 'afii62886-4'
+	Glyf 1092 -> PSGlyf Name # 841, name= 'afii62883-4'
+	Glyf 1093 -> PSGlyf Name # 842, name= 'afii62885-4'
+	Glyf 1094 -> PSGlyf Name # 843, name= 'afii62882-4'
+	Glyf 1095 -> PSGlyf Name # 844, name= 'afii57504-4'
+	Glyf 1096 -> PSGlyf Name # 845, name= 'afii57456-4'
+	Glyf 1097 -> PSGlyf Name # 846, name= 'afii57453-4'
+	Glyf 1098 -> PSGlyf Name # 847, name= 'glyph1098'
+	Glyf 1099 -> PSGlyf Name # 848, name= 'glyph1099'
+	Glyf 1100 -> PSGlyf Name # 849, name= 'glyph1100'
+	Glyf 1101 -> PSGlyf Name # 850, name= 'glyph1101'
+	Glyf 1102 -> PSGlyf Name # 851, name= 'glyph1102'
+	Glyf 1103 -> PSGlyf Name # 852, name= 'glyph1103'
+	Glyf 1104 -> PSGlyf Name # 853, name= 'glyph1104'
+	Glyf 1105 -> PSGlyf Name # 854, name= 'glyph1105'
+	Glyf 1106 -> PSGlyf Name # 855, name= 'glyph1106'
+	Glyf 1107 -> PSGlyf Name # 856, name= 'glyph1107'
+	Glyf 1108 -> PSGlyf Name # 857, name= 'glyph1108'
+	Glyf 1109 -> PSGlyf Name # 858, name= 'glyph1109'
+	Glyf 1110 -> PSGlyf Name # 859, name= 'glyph1110'
+	Glyf 1111 -> PSGlyf Name # 860, name= 'glyph1111'
+	Glyf 1112 -> PSGlyf Name # 861, name= 'glyph1112'
+	Glyf 1113 -> PSGlyf Name # 862, name= 'glyph1113'
+	Glyf 1114 -> PSGlyf Name # 863, name= 'glyph1114'
+	Glyf 1115 -> PSGlyf Name # 864, name= 'glyph1115'
+	Glyf 1116 -> PSGlyf Name # 865, name= 'glyph1116'
+	Glyf 1117 -> PSGlyf Name # 866, name= 'glyph1117'
+	Glyf 1118 -> PSGlyf Name # 867, name= 'glyph1118'
+	Glyf 1119 -> PSGlyf Name # 868, name= 'glyph1119'
+	Glyf 1120 -> PSGlyf Name # 869, name= 'glyph1120'
+	Glyf 1121 -> PSGlyf Name # 870, name= 'glyph1121'
+	Glyf 1122 -> PSGlyf Name # 871, name= 'glyph1122'
+	Glyf 1123 -> PSGlyf Name # 872, name= 'glyph1123'
+	Glyf 1124 -> PSGlyf Name # 873, name= 'glyph1124'
+	Glyf 1125 -> PSGlyf Name # 874, name= 'glyph1125'
+	Glyf 1126 -> PSGlyf Name # 875, name= 'glyph1126'
+	Glyf 1127 -> Mac Glyph # 189, 'currency'
+	Glyf 1128 -> PSGlyf Name # 876, name= 'uniFFFC'
+	Glyf 1129 -> PSGlyf Name # 877, name= 'Ohorn'
+	Glyf 1130 -> PSGlyf Name # 878, name= 'ohorn'
+	Glyf 1131 -> PSGlyf Name # 879, name= 'Uhorn'
+	Glyf 1132 -> PSGlyf Name # 880, name= 'uhorn'
+	Glyf 1133 -> Mac Glyph # 0, '.notdef'
+	Glyf 1134 -> Mac Glyph # 0, '.notdef'
+	Glyf 1135 -> Mac Glyph # 0, '.notdef'
+	Glyf 1136 -> PSGlyf Name # 881, name= 'f006'
+	Glyf 1137 -> PSGlyf Name # 882, name= 'f007'
+	Glyf 1138 -> PSGlyf Name # 883, name= 'f009'
+	Glyf 1139 -> PSGlyf Name # 884, name= 'combininghookabove'
+	Glyf 1140 -> PSGlyf Name # 885, name= 'f010'
+	Glyf 1141 -> PSGlyf Name # 886, name= 'f013'
+	Glyf 1142 -> PSGlyf Name # 887, name= 'f011'
+	Glyf 1143 -> PSGlyf Name # 888, name= 'f01c'
+	Glyf 1144 -> PSGlyf Name # 889, name= 'f015'
+	Glyf 1145 -> PSGlyf Name # 890, name= 'combiningtildeaccent'
+	Glyf 1146 -> Mac Glyph # 0, '.notdef'
+	Glyf 1147 -> Mac Glyph # 0, '.notdef'
+	Glyf 1148 -> PSGlyf Name # 891, name= 'f02c'
+	Glyf 1149 -> PSGlyf Name # 892, name= 'dongsign'
+	Glyf 1150 -> PSGlyf Name # 893, name= 'onethird'
+	Glyf 1151 -> PSGlyf Name # 894, name= 'twothirds'
+	Glyf 1152 -> PSGlyf Name # 895, name= 'f008'
+	Glyf 1153 -> Mac Glyph # 0, '.notdef'
+	Glyf 1154 -> Mac Glyph # 0, '.notdef'
+	Glyf 1155 -> PSGlyf Name # 896, name= 'f00f'
+	Glyf 1156 -> PSGlyf Name # 897, name= 'f012'
+	Glyf 1157 -> PSGlyf Name # 898, name= 'f014'
+	Glyf 1158 -> PSGlyf Name # 899, name= 'f016'
+	Glyf 1159 -> PSGlyf Name # 900, name= 'f017'
+	Glyf 1160 -> PSGlyf Name # 901, name= 'f018'
+	Glyf 1161 -> PSGlyf Name # 902, name= 'f019'
+	Glyf 1162 -> PSGlyf Name # 903, name= 'f01a'
+	Glyf 1163 -> PSGlyf Name # 904, name= 'f01b'
+	Glyf 1164 -> PSGlyf Name # 905, name= 'f01e'
+	Glyf 1165 -> PSGlyf Name # 906, name= 'f01f'
+	Glyf 1166 -> PSGlyf Name # 907, name= 'f020'
+	Glyf 1167 -> PSGlyf Name # 908, name= 'f021'
+	Glyf 1168 -> PSGlyf Name # 909, name= 'f022'
+	Glyf 1169 -> PSGlyf Name # 910, name= 'combininggraveaccent'
+	Glyf 1170 -> PSGlyf Name # 911, name= 'combiningacuteaccent'
+	Glyf 1171 -> PSGlyf Name # 912, name= 'f01d'
+	Glyf 1172 -> PSGlyf Name # 913, name= 'combiningdotbelow'
+	Glyf 1173 -> PSGlyf Name # 914, name= 'f023'
+	Glyf 1174 -> PSGlyf Name # 915, name= 'f029'
+	Glyf 1175 -> PSGlyf Name # 916, name= 'f02a'
+	Glyf 1176 -> PSGlyf Name # 917, name= 'f02b'
+	Glyf 1177 -> PSGlyf Name # 918, name= 'f024'
+	Glyf 1178 -> PSGlyf Name # 919, name= 'f025'
+	Glyf 1179 -> PSGlyf Name # 920, name= 'f026'
+	Glyf 1180 -> PSGlyf Name # 921, name= 'f027'
+	Glyf 1181 -> PSGlyf Name # 922, name= 'f028'
+	Glyf 1182 -> PSGlyf Name # 923, name= 'f02d'
+	Glyf 1183 -> PSGlyf Name # 924, name= 'f02e'
+	Glyf 1184 -> PSGlyf Name # 925, name= 'f02f'
+	Glyf 1185 -> PSGlyf Name # 926, name= 'f030'
+	Glyf 1186 -> PSGlyf Name # 927, name= 'Adotbelow'
+	Glyf 1187 -> PSGlyf Name # 928, name= 'adotbelow'
+	Glyf 1188 -> PSGlyf Name # 929, name= 'Ahookabove'
+	Glyf 1189 -> PSGlyf Name # 930, name= 'ahookabove'
+	Glyf 1190 -> PSGlyf Name # 931, name= 'Acircumflexacute'
+	Glyf 1191 -> PSGlyf Name # 932, name= 'acircumflexacute'
+	Glyf 1192 -> PSGlyf Name # 933, name= 'Acircumflexgrave'
+	Glyf 1193 -> PSGlyf Name # 934, name= 'acircumflexgrave'
+	Glyf 1194 -> PSGlyf Name # 935, name= 'Acircumflexhookabove'
+	Glyf 1195 -> PSGlyf Name # 936, name= 'acircumflexhookabove'
+	Glyf 1196 -> PSGlyf Name # 937, name= 'Acircumflextilde'
+	Glyf 1197 -> PSGlyf Name # 938, name= 'acircumflextilde'
+	Glyf 1198 -> PSGlyf Name # 939, name= 'Acircumflexdotbelow'
+	Glyf 1199 -> PSGlyf Name # 940, name= 'acircumflexdotbelow'
+	Glyf 1200 -> PSGlyf Name # 941, name= 'Abreveacute'
+	Glyf 1201 -> PSGlyf Name # 942, name= 'abreveacute'
+	Glyf 1202 -> PSGlyf Name # 943, name= 'Abrevegrave'
+	Glyf 1203 -> PSGlyf Name # 944, name= 'abrevegrave'
+	Glyf 1204 -> PSGlyf Name # 945, name= 'Abrevehookabove'
+	Glyf 1205 -> PSGlyf Name # 946, name= 'abrevehookabove'
+	Glyf 1206 -> PSGlyf Name # 947, name= 'Abrevetilde'
+	Glyf 1207 -> PSGlyf Name # 948, name= 'abrevetilde'
+	Glyf 1208 -> PSGlyf Name # 949, name= 'Abrevedotbelow'
+	Glyf 1209 -> PSGlyf Name # 950, name= 'abrevedotbelow'
+	Glyf 1210 -> PSGlyf Name # 951, name= 'Edotbelow'
+	Glyf 1211 -> PSGlyf Name # 952, name= 'edotbelow'
+	Glyf 1212 -> PSGlyf Name # 953, name= 'Ehookabove'
+	Glyf 1213 -> PSGlyf Name # 954, name= 'ehookabove'
+	Glyf 1214 -> PSGlyf Name # 955, name= 'Etilde'
+	Glyf 1215 -> PSGlyf Name # 956, name= 'etilde'
+	Glyf 1216 -> PSGlyf Name # 957, name= 'Ecircumflexacute'
+	Glyf 1217 -> PSGlyf Name # 958, name= 'ecircumflexacute'
+	Glyf 1218 -> PSGlyf Name # 959, name= 'Ecircumflexgrave'
+	Glyf 1219 -> PSGlyf Name # 960, name= 'ecircumflexgrave'
+	Glyf 1220 -> PSGlyf Name # 961, name= 'Ecircumflexhookabove'
+	Glyf 1221 -> PSGlyf Name # 962, name= 'ecircumflexhookabove'
+	Glyf 1222 -> PSGlyf Name # 963, name= 'Ecircumflextilde'
+	Glyf 1223 -> PSGlyf Name # 964, name= 'ecircumflextilde'
+	Glyf 1224 -> PSGlyf Name # 965, name= 'Ecircumflexdotbelow'
+	Glyf 1225 -> PSGlyf Name # 966, name= 'ecircumflexdotbelow'
+	Glyf 1226 -> PSGlyf Name # 967, name= 'Ihookabove'
+	Glyf 1227 -> PSGlyf Name # 968, name= 'ihookabove'
+	Glyf 1228 -> PSGlyf Name # 969, name= 'Idotbelow'
+	Glyf 1229 -> PSGlyf Name # 970, name= 'idotbelow'
+	Glyf 1230 -> PSGlyf Name # 971, name= 'Odotbelow'
+	Glyf 1231 -> PSGlyf Name # 972, name= 'odotbelow'
+	Glyf 1232 -> PSGlyf Name # 973, name= 'Ohookabove'
+	Glyf 1233 -> PSGlyf Name # 974, name= 'ohookabove'
+	Glyf 1234 -> PSGlyf Name # 975, name= 'Ocircumflexacute'
+	Glyf 1235 -> PSGlyf Name # 976, name= 'ocircumflexacute'
+	Glyf 1236 -> PSGlyf Name # 977, name= 'Ocircumflexgrave'
+	Glyf 1237 -> PSGlyf Name # 978, name= 'ocircumflexgrave'
+	Glyf 1238 -> PSGlyf Name # 979, name= 'Ocircumflexhookabove'
+	Glyf 1239 -> PSGlyf Name # 980, name= 'ocircumflexhookabove'
+	Glyf 1240 -> PSGlyf Name # 981, name= 'Ocircumflextilde'
+	Glyf 1241 -> PSGlyf Name # 982, name= 'ocircumflextilde'
+	Glyf 1242 -> PSGlyf Name # 983, name= 'Ocircumflexdotbelow'
+	Glyf 1243 -> PSGlyf Name # 984, name= 'ocircumflexdotbelow'
+	Glyf 1244 -> PSGlyf Name # 985, name= 'Ohornacute'
+	Glyf 1245 -> PSGlyf Name # 986, name= 'ohornacute'
+	Glyf 1246 -> PSGlyf Name # 987, name= 'Ohorngrave'
+	Glyf 1247 -> PSGlyf Name # 988, name= 'ohorngrave'
+	Glyf 1248 -> PSGlyf Name # 989, name= 'Ohornhookabove'
+	Glyf 1249 -> PSGlyf Name # 990, name= 'ohornhookabove'
+	Glyf 1250 -> PSGlyf Name # 991, name= 'Ohorntilde'
+	Glyf 1251 -> PSGlyf Name # 992, name= 'ohorntilde'
+	Glyf 1252 -> PSGlyf Name # 993, name= 'Ohorndotbelow'
+	Glyf 1253 -> PSGlyf Name # 994, name= 'ohorndotbelow'
+	Glyf 1254 -> PSGlyf Name # 995, name= 'Udotbelow'
+	Glyf 1255 -> PSGlyf Name # 996, name= 'udotbelow'
+	Glyf 1256 -> PSGlyf Name # 997, name= 'Uhookabove'
+	Glyf 1257 -> PSGlyf Name # 998, name= 'uhookabove'
+	Glyf 1258 -> PSGlyf Name # 999, name= 'Uhornacute'
+	Glyf 1259 -> PSGlyf Name # 1000, name= 'uhornacute'
+	Glyf 1260 -> PSGlyf Name # 1001, name= 'Uhorngrave'
+	Glyf 1261 -> PSGlyf Name # 1002, name= 'uhorngrave'
+	Glyf 1262 -> PSGlyf Name # 1003, name= 'Uhornhookabove'
+	Glyf 1263 -> PSGlyf Name # 1004, name= 'uhornhookabove'
+	Glyf 1264 -> PSGlyf Name # 1005, name= 'Uhorntilde'
+	Glyf 1265 -> PSGlyf Name # 1006, name= 'uhorntilde'
+	Glyf 1266 -> PSGlyf Name # 1007, name= 'Uhorndotbelow'
+	Glyf 1267 -> PSGlyf Name # 1008, name= 'uhorndotbelow'
+	Glyf 1268 -> PSGlyf Name # 1009, name= 'Ydotbelow'
+	Glyf 1269 -> PSGlyf Name # 1010, name= 'ydotbelow'
+	Glyf 1270 -> PSGlyf Name # 1011, name= 'Yhookabove'
+	Glyf 1271 -> PSGlyf Name # 1012, name= 'yhookabove'
+	Glyf 1272 -> PSGlyf Name # 1013, name= 'Ytilde'
+	Glyf 1273 -> PSGlyf Name # 1014, name= 'ytilde'
+	Glyf 1274 -> PSGlyf Name # 1015, name= 'uni01CD'
+	Glyf 1275 -> PSGlyf Name # 1016, name= 'uni01CE'
+	Glyf 1276 -> PSGlyf Name # 1017, name= 'uni01CF'
+	Glyf 1277 -> PSGlyf Name # 1018, name= 'uni01D0'
+	Glyf 1278 -> PSGlyf Name # 1019, name= 'uni01D1'
+	Glyf 1279 -> PSGlyf Name # 1020, name= 'uni01D2'
+	Glyf 1280 -> PSGlyf Name # 1021, name= 'uni01D3'
+	Glyf 1281 -> PSGlyf Name # 1022, name= 'uni01D4'
+	Glyf 1282 -> PSGlyf Name # 1023, name= 'uni01D5'
+	Glyf 1283 -> PSGlyf Name # 1024, name= 'uni01D6'
+	Glyf 1284 -> PSGlyf Name # 1025, name= 'uni01D7'
+	Glyf 1285 -> PSGlyf Name # 1026, name= 'uni01D8'
+	Glyf 1286 -> PSGlyf Name # 1027, name= 'uni01D9'
+	Glyf 1287 -> PSGlyf Name # 1028, name= 'uni01DA'
+	Glyf 1288 -> PSGlyf Name # 1029, name= 'uni01DB'
+	Glyf 1289 -> PSGlyf Name # 1030, name= 'uni01DC'
+	Glyf 1290 -> Mac Glyph # 0, '.notdef'
+	Glyf 1291 -> Mac Glyph # 0, '.notdef'
+	Glyf 1292 -> Mac Glyph # 0, '.notdef'
+	Glyf 1293 -> Mac Glyph # 0, '.notdef'
+	Glyf 1294 -> PSGlyf Name # 1031, name= 'uni0492'
+	Glyf 1295 -> PSGlyf Name # 1032, name= 'uni0493'
+	Glyf 1296 -> PSGlyf Name # 1033, name= 'uni0496'
+	Glyf 1297 -> PSGlyf Name # 1034, name= 'uni0497'
+	Glyf 1298 -> PSGlyf Name # 1035, name= 'uni049a'
+	Glyf 1299 -> PSGlyf Name # 1036, name= 'uni049b'
+	Glyf 1300 -> PSGlyf Name # 1037, name= 'uni049c'
+	Glyf 1301 -> PSGlyf Name # 1038, name= 'uni049d'
+	Glyf 1302 -> PSGlyf Name # 1039, name= 'uni04a2'
+	Glyf 1303 -> PSGlyf Name # 1040, name= 'uni04a3'
+	Glyf 1304 -> PSGlyf Name # 1041, name= 'uni04ae'
+	Glyf 1305 -> PSGlyf Name # 1042, name= 'uni04af'
+	Glyf 1306 -> PSGlyf Name # 1043, name= 'uni04b0'
+	Glyf 1307 -> PSGlyf Name # 1044, name= 'uni04b1'
+	Glyf 1308 -> PSGlyf Name # 1045, name= 'uni04b2'
+	Glyf 1309 -> PSGlyf Name # 1046, name= 'uni04b3'
+	Glyf 1310 -> PSGlyf Name # 1047, name= 'uni04b8'
+	Glyf 1311 -> PSGlyf Name # 1048, name= 'uni04b9'
+	Glyf 1312 -> PSGlyf Name # 1049, name= 'uni04ba'
+	Glyf 1313 -> PSGlyf Name # 1050, name= 'uni04bb'
+	Glyf 1314 -> PSGlyf Name # 1051, name= 'uni018f'
+	Glyf 1315 -> PSGlyf Name # 1052, name= 'uni0259'
+	Glyf 1316 -> PSGlyf Name # 1053, name= 'uni04e8'
+	Glyf 1317 -> PSGlyf Name # 1054, name= 'uni04e9'
+
+	Full List of PSGlyf Names
+	-------------------------
+	PSGlyf Name #   1: .null
+	PSGlyf Name #   2: nonmarkingreturn
+	PSGlyf Name #   3: mu1
+	PSGlyf Name #   4: pi1
+	PSGlyf Name #   5: Ohm
+	PSGlyf Name #   6: Euro
+	PSGlyf Name #   7: dmacron
+	PSGlyf Name #   8: overscore
+	PSGlyf Name #   9: middot
+	PSGlyf Name #  10: Abreve
+	PSGlyf Name #  11: abreve
+	PSGlyf Name #  12: Aogonek
+	PSGlyf Name #  13: aogonek
+	PSGlyf Name #  14: Dcaron
+	PSGlyf Name #  15: dcaron
+	PSGlyf Name #  16: Dslash
+	PSGlyf Name #  17: Eogonek
+	PSGlyf Name #  18: eogonek
+	PSGlyf Name #  19: Ecaron
+	PSGlyf Name #  20: ecaron
+	PSGlyf Name #  21: Lacute
+	PSGlyf Name #  22: lacute
+	PSGlyf Name #  23: Lcaron
+	PSGlyf Name #  24: lcaron
+	PSGlyf Name #  25: Ldot
+	PSGlyf Name #  26: ldot
+	PSGlyf Name #  27: Nacute
+	PSGlyf Name #  28: nacute
+	PSGlyf Name #  29: Ncaron
+	PSGlyf Name #  30: ncaron
+	PSGlyf Name #  31: Odblacute
+	PSGlyf Name #  32: odblacute
+	PSGlyf Name #  33: Racute
+	PSGlyf Name #  34: racute
+	PSGlyf Name #  35: Rcaron
+	PSGlyf Name #  36: rcaron
+	PSGlyf Name #  37: Sacute
+	PSGlyf Name #  38: sacute
+	PSGlyf Name #  39: Tcedilla
+	PSGlyf Name #  40: tcedilla
+	PSGlyf Name #  41: Tcaron
+	PSGlyf Name #  42: tcaron
+	PSGlyf Name #  43: Uring
+	PSGlyf Name #  44: uring
+	PSGlyf Name #  45: Udblacute
+	PSGlyf Name #  46: udblacute
+	PSGlyf Name #  47: Zacute
+	PSGlyf Name #  48: zacute
+	PSGlyf Name #  49: Zdot
+	PSGlyf Name #  50: zdot
+	PSGlyf Name #  51: Gamma
+	PSGlyf Name #  52: Theta
+	PSGlyf Name #  53: Phi
+	PSGlyf Name #  54: alpha
+	PSGlyf Name #  55: delta
+	PSGlyf Name #  56: epsilon
+	PSGlyf Name #  57: sigma
+	PSGlyf Name #  58: tau
+	PSGlyf Name #  59: phi
+	PSGlyf Name #  60: underscoredbl
+	PSGlyf Name #  61: exclamdbl
+	PSGlyf Name #  62: nsuperior
+	PSGlyf Name #  63: peseta
+	PSGlyf Name #  64: arrowleft
+	PSGlyf Name #  65: arrowup
+	PSGlyf Name #  66: arrowright
+	PSGlyf Name #  67: arrowdown
+	PSGlyf Name #  68: arrowboth
+	PSGlyf Name #  69: arrowupdn
+	PSGlyf Name #  70: arrowupdnbse
+	PSGlyf Name #  71: orthogonal
+	PSGlyf Name #  72: intersection
+	PSGlyf Name #  73: equivalence
+	PSGlyf Name #  74: house
+	PSGlyf Name #  75: revlogicalnot
+	PSGlyf Name #  76: integraltp
+	PSGlyf Name #  77: integralbt
+	PSGlyf Name #  78: SF100000
+	PSGlyf Name #  79: SF110000
+	PSGlyf Name #  80: SF010000
+	PSGlyf Name #  81: SF030000
+	PSGlyf Name #  82: SF020000
+	PSGlyf Name #  83: SF040000
+	PSGlyf Name #  84: SF080000
+	PSGlyf Name #  85: SF090000
+	PSGlyf Name #  86: SF060000
+	PSGlyf Name #  87: SF070000
+	PSGlyf Name #  88: SF050000
+	PSGlyf Name #  89: SF430000
+	PSGlyf Name #  90: SF240000
+	PSGlyf Name #  91: SF510000
+	PSGlyf Name #  92: SF520000
+	PSGlyf Name #  93: SF390000
+	PSGlyf Name #  94: SF220000
+	PSGlyf Name #  95: SF210000
+	PSGlyf Name #  96: SF250000
+	PSGlyf Name #  97: SF500000
+	PSGlyf Name #  98: SF490000
+	PSGlyf Name #  99: SF380000
+	PSGlyf Name # 100: SF280000
+	PSGlyf Name # 101: SF270000
+	PSGlyf Name # 102: SF260000
+	PSGlyf Name # 103: SF360000
+	PSGlyf Name # 104: SF370000
+	PSGlyf Name # 105: SF420000
+	PSGlyf Name # 106: SF190000
+	PSGlyf Name # 107: SF200000
+	PSGlyf Name # 108: SF230000
+	PSGlyf Name # 109: SF470000
+	PSGlyf Name # 110: SF480000
+	PSGlyf Name # 111: SF410000
+	PSGlyf Name # 112: SF450000
+	PSGlyf Name # 113: SF460000
+	PSGlyf Name # 114: SF400000
+	PSGlyf Name # 115: SF540000
+	PSGlyf Name # 116: SF530000
+	PSGlyf Name # 117: SF440000
+	PSGlyf Name # 118: upblock
+	PSGlyf Name # 119: dnblock
+	PSGlyf Name # 120: block
+	PSGlyf Name # 121: lfblock
+	PSGlyf Name # 122: rtblock
+	PSGlyf Name # 123: ltshade
+	PSGlyf Name # 124: shade
+	PSGlyf Name # 125: dkshade
+	PSGlyf Name # 126: filledbox
+	PSGlyf Name # 127: filledrect
+	PSGlyf Name # 128: triagup
+	PSGlyf Name # 129: triagrt
+	PSGlyf Name # 130: triagdn
+	PSGlyf Name # 131: triaglf
+	PSGlyf Name # 132: circle
+	PSGlyf Name # 133: invbullet
+	PSGlyf Name # 134: invcircle
+	PSGlyf Name # 135: smileface
+	PSGlyf Name # 136: invsmileface
+	PSGlyf Name # 137: sun
+	PSGlyf Name # 138: female
+	PSGlyf Name # 139: male
+	PSGlyf Name # 140: spade
+	PSGlyf Name # 141: club
+	PSGlyf Name # 142: heart
+	PSGlyf Name # 143: diamond
+	PSGlyf Name # 144: musicalnote
+	PSGlyf Name # 145: musicalnotedbl
+	PSGlyf Name # 146: IJ
+	PSGlyf Name # 147: ij
+	PSGlyf Name # 148: napostrophe
+	PSGlyf Name # 149: minute
+	PSGlyf Name # 150: second
+	PSGlyf Name # 151: afii61248
+	PSGlyf Name # 152: afii61289
+	PSGlyf Name # 153: H22073
+	PSGlyf Name # 154: H18543
+	PSGlyf Name # 155: H18551
+	PSGlyf Name # 156: H18533
+	PSGlyf Name # 157: openbullet
+	PSGlyf Name # 158: Amacron
+	PSGlyf Name # 159: amacron
+	PSGlyf Name # 160: Ccircumflex
+	PSGlyf Name # 161: ccircumflex
+	PSGlyf Name # 162: Cdot
+	PSGlyf Name # 163: cdot
+	PSGlyf Name # 164: Emacron
+	PSGlyf Name # 165: emacron
+	PSGlyf Name # 166: Ebreve
+	PSGlyf Name # 167: ebreve
+	PSGlyf Name # 168: Edot
+	PSGlyf Name # 169: edot
+	PSGlyf Name # 170: Gcircumflex
+	PSGlyf Name # 171: gcircumflex
+	PSGlyf Name # 172: Gdot
+	PSGlyf Name # 173: gdot
+	PSGlyf Name # 174: Gcedilla
+	PSGlyf Name # 175: gcedilla
+	PSGlyf Name # 176: Hcircumflex
+	PSGlyf Name # 177: hcircumflex
+	PSGlyf Name # 178: Hbar
+	PSGlyf Name # 179: hbar
+	PSGlyf Name # 180: Itilde
+	PSGlyf Name # 181: itilde
+	PSGlyf Name # 182: Imacron
+	PSGlyf Name # 183: imacron
+	PSGlyf Name # 184: Ibreve
+	PSGlyf Name # 185: ibreve
+	PSGlyf Name # 186: Iogonek
+	PSGlyf Name # 187: iogonek
+	PSGlyf Name # 188: Jcircumflex
+	PSGlyf Name # 189: jcircumflex
+	PSGlyf Name # 190: Kcedilla
+	PSGlyf Name # 191: kcedilla
+	PSGlyf Name # 192: kgreenlandic
+	PSGlyf Name # 193: Lcedilla
+	PSGlyf Name # 194: lcedilla
+	PSGlyf Name # 195: Ncedilla
+	PSGlyf Name # 196: ncedilla
+	PSGlyf Name # 197: Eng
+	PSGlyf Name # 198: eng
+	PSGlyf Name # 199: Omacron
+	PSGlyf Name # 200: omacron
+	PSGlyf Name # 201: Obreve
+	PSGlyf Name # 202: obreve
+	PSGlyf Name # 203: Rcedilla
+	PSGlyf Name # 204: rcedilla
+	PSGlyf Name # 205: Scircumflex
+	PSGlyf Name # 206: scircumflex
+	PSGlyf Name # 207: Tbar
+	PSGlyf Name # 208: tbar
+	PSGlyf Name # 209: Utilde
+	PSGlyf Name # 210: utilde
+	PSGlyf Name # 211: Umacron
+	PSGlyf Name # 212: umacron
+	PSGlyf Name # 213: Ubreve
+	PSGlyf Name # 214: ubreve
+	PSGlyf Name # 215: Uogonek
+	PSGlyf Name # 216: uogonek
+	PSGlyf Name # 217: Wcircumflex
+	PSGlyf Name # 218: wcircumflex
+	PSGlyf Name # 219: Ycircumflex
+	PSGlyf Name # 220: ycircumflex
+	PSGlyf Name # 221: longs
+	PSGlyf Name # 222: Aringacute
+	PSGlyf Name # 223: aringacute
+	PSGlyf Name # 224: AEacute
+	PSGlyf Name # 225: aeacute
+	PSGlyf Name # 226: Oslashacute
+	PSGlyf Name # 227: oslashacute
+	PSGlyf Name # 228: anoteleia
+	PSGlyf Name # 229: Wgrave
+	PSGlyf Name # 230: wgrave
+	PSGlyf Name # 231: Wacute
+	PSGlyf Name # 232: wacute
+	PSGlyf Name # 233: Wdieresis
+	PSGlyf Name # 234: wdieresis
+	PSGlyf Name # 235: Ygrave
+	PSGlyf Name # 236: ygrave
+	PSGlyf Name # 237: quotereversed
+	PSGlyf Name # 238: radicalex
+	PSGlyf Name # 239: afii08941
+	PSGlyf Name # 240: estimated
+	PSGlyf Name # 241: oneeighth
+	PSGlyf Name # 242: threeeighths
+	PSGlyf Name # 243: fiveeighths
+	PSGlyf Name # 244: seveneighths
+	PSGlyf Name # 245: commaaccent
+	PSGlyf Name # 246: undercommaaccent
+	PSGlyf Name # 247: tonos
+	PSGlyf Name # 248: dieresistonos
+	PSGlyf Name # 249: Alphatonos
+	PSGlyf Name # 250: Epsilontonos
+	PSGlyf Name # 251: Etatonos
+	PSGlyf Name # 252: Iotatonos
+	PSGlyf Name # 253: Omicrontonos
+	PSGlyf Name # 254: Upsilontonos
+	PSGlyf Name # 255: Omegatonos
+	PSGlyf Name # 256: iotadieresistonos
+	PSGlyf Name # 257: Alpha
+	PSGlyf Name # 258: Beta
+	PSGlyf Name # 259: Delta
+	PSGlyf Name # 260: Epsilon
+	PSGlyf Name # 261: Zeta
+	PSGlyf Name # 262: Eta
+	PSGlyf Name # 263: Iota
+	PSGlyf Name # 264: Kappa
+	PSGlyf Name # 265: Lambda
+	PSGlyf Name # 266: Mu
+	PSGlyf Name # 267: Nu
+	PSGlyf Name # 268: Xi
+	PSGlyf Name # 269: Omicron
+	PSGlyf Name # 270: Pi
+	PSGlyf Name # 271: Rho
+	PSGlyf Name # 272: Sigma
+	PSGlyf Name # 273: Tau
+	PSGlyf Name # 274: Upsilon
+	PSGlyf Name # 275: Chi
+	PSGlyf Name # 276: Psi
+	PSGlyf Name # 277: Iotadieresis
+	PSGlyf Name # 278: Upsilondieresis
+	PSGlyf Name # 279: alphatonos
+	PSGlyf Name # 280: epsilontonos
+	PSGlyf Name # 281: etatonos
+	PSGlyf Name # 282: iotatonos
+	PSGlyf Name # 283: upsilondieresistonos
+	PSGlyf Name # 284: beta
+	PSGlyf Name # 285: gamma
+	PSGlyf Name # 286: zeta
+	PSGlyf Name # 287: eta
+	PSGlyf Name # 288: theta
+	PSGlyf Name # 289: iota
+	PSGlyf Name # 290: kappa
+	PSGlyf Name # 291: lambda
+	PSGlyf Name # 292: nu
+	PSGlyf Name # 293: xi
+	PSGlyf Name # 294: omicron
+	PSGlyf Name # 295: rho
+	PSGlyf Name # 296: sigma1
+	PSGlyf Name # 297: upsilon
+	PSGlyf Name # 298: chi
+	PSGlyf Name # 299: psi
+	PSGlyf Name # 300: omega
+	PSGlyf Name # 301: iotadieresis
+	PSGlyf Name # 302: upsilondieresis
+	PSGlyf Name # 303: omicrontonos
+	PSGlyf Name # 304: upsilontonos
+	PSGlyf Name # 305: omegatonos
+	PSGlyf Name # 306: afii10023
+	PSGlyf Name # 307: afii10051
+	PSGlyf Name # 308: afii10052
+	PSGlyf Name # 309: afii10053
+	PSGlyf Name # 310: afii10054
+	PSGlyf Name # 311: afii10055
+	PSGlyf Name # 312: afii10056
+	PSGlyf Name # 313: afii10057
+	PSGlyf Name # 314: afii10058
+	PSGlyf Name # 315: afii10059
+	PSGlyf Name # 316: afii10060
+	PSGlyf Name # 317: afii10061
+	PSGlyf Name # 318: afii10062
+	PSGlyf Name # 319: afii10145
+	PSGlyf Name # 320: afii10017
+	PSGlyf Name # 321: afii10018
+	PSGlyf Name # 322: afii10019
+	PSGlyf Name # 323: afii10020
+	PSGlyf Name # 324: afii10021
+	PSGlyf Name # 325: afii10022
+	PSGlyf Name # 326: afii10024
+	PSGlyf Name # 327: afii10025
+	PSGlyf Name # 328: afii10026
+	PSGlyf Name # 329: afii10027
+	PSGlyf Name # 330: afii10028
+	PSGlyf Name # 331: afii10029
+	PSGlyf Name # 332: afii10030
+	PSGlyf Name # 333: afii10031
+	PSGlyf Name # 334: afii10032
+	PSGlyf Name # 335: afii10033
+	PSGlyf Name # 336: afii10034
+	PSGlyf Name # 337: afii10035
+	PSGlyf Name # 338: afii10036
+	PSGlyf Name # 339: afii10037
+	PSGlyf Name # 340: afii10038
+	PSGlyf Name # 341: afii10039
+	PSGlyf Name # 342: afii10040
+	PSGlyf Name # 343: afii10041
+	PSGlyf Name # 344: afii10042
+	PSGlyf Name # 345: afii10043
+	PSGlyf Name # 346: afii10044
+	PSGlyf Name # 347: afii10045
+	PSGlyf Name # 348: afii10046
+	PSGlyf Name # 349: afii10047
+	PSGlyf Name # 350: afii10048
+	PSGlyf Name # 351: afii10049
+	PSGlyf Name # 352: afii10065
+	PSGlyf Name # 353: afii10066
+	PSGlyf Name # 354: afii10067
+	PSGlyf Name # 355: afii10068
+	PSGlyf Name # 356: afii10069
+	PSGlyf Name # 357: afii10070
+	PSGlyf Name # 358: afii10072
+	PSGlyf Name # 359: afii10073
+	PSGlyf Name # 360: afii10074
+	PSGlyf Name # 361: afii10075
+	PSGlyf Name # 362: afii10076
+	PSGlyf Name # 363: afii10077
+	PSGlyf Name # 364: afii10078
+	PSGlyf Name # 365: afii10079
+	PSGlyf Name # 366: afii10080
+	PSGlyf Name # 367: afii10081
+	PSGlyf Name # 368: afii10082
+	PSGlyf Name # 369: afii10083
+	PSGlyf Name # 370: afii10084
+	PSGlyf Name # 371: afii10085
+	PSGlyf Name # 372: afii10086
+	PSGlyf Name # 373: afii10087
+	PSGlyf Name # 374: afii10088
+	PSGlyf Name # 375: afii10089
+	PSGlyf Name # 376: afii10090
+	PSGlyf Name # 377: afii10091
+	PSGlyf Name # 378: afii10092
+	PSGlyf Name # 379: afii10093
+	PSGlyf Name # 380: afii10094
+	PSGlyf Name # 381: afii10095
+	PSGlyf Name # 382: afii10096
+	PSGlyf Name # 383: afii10097
+	PSGlyf Name # 384: afii10071
+	PSGlyf Name # 385: afii10099
+	PSGlyf Name # 386: afii10100
+	PSGlyf Name # 387: afii10101
+	PSGlyf Name # 388: afii10102
+	PSGlyf Name # 389: afii10103
+	PSGlyf Name # 390: afii10104
+	PSGlyf Name # 391: afii10105
+	PSGlyf Name # 392: afii10106
+	PSGlyf Name # 393: afii10107
+	PSGlyf Name # 394: afii10108
+	PSGlyf Name # 395: afii10109
+	PSGlyf Name # 396: afii10110
+	PSGlyf Name # 397: afii10193
+	PSGlyf Name # 398: afii10050
+	PSGlyf Name # 399: afii10098
+	PSGlyf Name # 400: afii00208
+	PSGlyf Name # 401: afii61352
+	PSGlyf Name # 402: sheva
+	PSGlyf Name # 403: hatafsegol
+	PSGlyf Name # 404: hatafpatah
+	PSGlyf Name # 405: hatafqamats
+	PSGlyf Name # 406: hiriq
+	PSGlyf Name # 407: tsere
+	PSGlyf Name # 408: segol
+	PSGlyf Name # 409: patah
+	PSGlyf Name # 410: qamats
+	PSGlyf Name # 411: holam
+	PSGlyf Name # 412: qubuts
+	PSGlyf Name # 413: dagesh
+	PSGlyf Name # 414: meteg
+	PSGlyf Name # 415: maqaf
+	PSGlyf Name # 416: rafe
+	PSGlyf Name # 417: paseq
+	PSGlyf Name # 418: shindot
+	PSGlyf Name # 419: sindot
+	PSGlyf Name # 420: sofpasuq
+	PSGlyf Name # 421: alef
+	PSGlyf Name # 422: bet
+	PSGlyf Name # 423: gimel
+	PSGlyf Name # 424: dalet
+	PSGlyf Name # 425: he
+	PSGlyf Name # 426: vav
+	PSGlyf Name # 427: zayin
+	PSGlyf Name # 428: het
+	PSGlyf Name # 429: tet
+	PSGlyf Name # 430: yod
+	PSGlyf Name # 431: finalkaf
+	PSGlyf Name # 432: kaf
+	PSGlyf Name # 433: lamed
+	PSGlyf Name # 434: finalmem
+	PSGlyf Name # 435: mem
+	PSGlyf Name # 436: finalnun
+	PSGlyf Name # 437: nun
+	PSGlyf Name # 438: samekh
+	PSGlyf Name # 439: ayin
+	PSGlyf Name # 440: finalpe
+	PSGlyf Name # 441: pe
+	PSGlyf Name # 442: finaltsadi
+	PSGlyf Name # 443: tsadi
+	PSGlyf Name # 444: qof
+	PSGlyf Name # 445: resh
+	PSGlyf Name # 446: shin
+	PSGlyf Name # 447: tav
+	PSGlyf Name # 448: doublevav
+	PSGlyf Name # 449: vavyod
+	PSGlyf Name # 450: doubleyod
+	PSGlyf Name # 451: geresh
+	PSGlyf Name # 452: gershayim
+	PSGlyf Name # 453: newsheqelsign
+	PSGlyf Name # 454: vavshindot
+	PSGlyf Name # 455: finalkafsheva
+	PSGlyf Name # 456: finalkafqamats
+	PSGlyf Name # 457: lamedholam
+	PSGlyf Name # 458: lamedholamdagesh
+	PSGlyf Name # 459: altayin
+	PSGlyf Name # 460: shinshindot
+	PSGlyf Name # 461: shinsindot
+	PSGlyf Name # 462: shindageshshindot
+	PSGlyf Name # 463: shindageshsindot
+	PSGlyf Name # 464: alefpatah
+	PSGlyf Name # 465: alefqamats
+	PSGlyf Name # 466: alefmapiq
+	PSGlyf Name # 467: betdagesh
+	PSGlyf Name # 468: gimeldagesh
+	PSGlyf Name # 469: daletdagesh
+	PSGlyf Name # 470: hedagesh
+	PSGlyf Name # 471: vavdagesh
+	PSGlyf Name # 472: zayindagesh
+	PSGlyf Name # 473: tetdagesh
+	PSGlyf Name # 474: yoddagesh
+	PSGlyf Name # 475: finalkafdagesh
+	PSGlyf Name # 476: kafdagesh
+	PSGlyf Name # 477: lameddagesh
+	PSGlyf Name # 478: memdagesh
+	PSGlyf Name # 479: nundagesh
+	PSGlyf Name # 480: samekhdagesh
+	PSGlyf Name # 481: finalpedagesh
+	PSGlyf Name # 482: pedagesh
+	PSGlyf Name # 483: tsadidagesh
+	PSGlyf Name # 484: qofdagesh
+	PSGlyf Name # 485: reshdagesh
+	PSGlyf Name # 486: shindagesh
+	PSGlyf Name # 487: tavdages
+	PSGlyf Name # 488: vavholam
+	PSGlyf Name # 489: betrafe
+	PSGlyf Name # 490: kafrafe
+	PSGlyf Name # 491: perafe
+	PSGlyf Name # 492: aleflamed
+	PSGlyf Name # 493: zerowidthnonjoiner
+	PSGlyf Name # 494: zerowidthjoiner
+	PSGlyf Name # 495: lefttorightmark
+	PSGlyf Name # 496: righttoleftmark
+	PSGlyf Name # 497: afii57388
+	PSGlyf Name # 498: afii57403
+	PSGlyf Name # 499: afii57407
+	PSGlyf Name # 500: afii57409
+	PSGlyf Name # 501: afii57440
+	PSGlyf Name # 502: afii57451
+	PSGlyf Name # 503: afii57452
+	PSGlyf Name # 504: afii57453
+	PSGlyf Name # 505: afii57454
+	PSGlyf Name # 506: afii57455
+	PSGlyf Name # 507: afii57456
+	PSGlyf Name # 508: afii57457
+	PSGlyf Name # 509: afii57458
+	PSGlyf Name # 510: afii57392
+	PSGlyf Name # 511: afii57393
+	PSGlyf Name # 512: afii57394
+	PSGlyf Name # 513: afii57395
+	PSGlyf Name # 514: afii57396
+	PSGlyf Name # 515: afii57397
+	PSGlyf Name # 516: afii57398
+	PSGlyf Name # 517: afii57399
+	PSGlyf Name # 518: afii57400
+	PSGlyf Name # 519: afii57401
+	PSGlyf Name # 520: afii57381
+	PSGlyf Name # 521: afii57461
+	PSGlyf Name # 522: afii63167
+	PSGlyf Name # 523: afii57459
+	PSGlyf Name # 524: afii57543
+	PSGlyf Name # 525: afii57534
+	PSGlyf Name # 526: afii57494
+	PSGlyf Name # 527: afii62843
+	PSGlyf Name # 528: afii62844
+	PSGlyf Name # 529: afii62845
+	PSGlyf Name # 530: afii64240
+	PSGlyf Name # 531: afii64241
+	PSGlyf Name # 532: afii63954
+	PSGlyf Name # 533: afii57382
+	PSGlyf Name # 534: afii64242
+	PSGlyf Name # 535: afii62881
+	PSGlyf Name # 536: afii57504
+	PSGlyf Name # 537: afii57369
+	PSGlyf Name # 538: afii57370
+	PSGlyf Name # 539: afii57371
+	PSGlyf Name # 540: afii57372
+	PSGlyf Name # 541: afii57373
+	PSGlyf Name # 542: afii57374
+	PSGlyf Name # 543: afii57375
+	PSGlyf Name # 544: afii57391
+	PSGlyf Name # 545: afii57471
+	PSGlyf Name # 546: afii57460
+	PSGlyf Name # 547: afii52258
+	PSGlyf Name # 548: afii57506
+	PSGlyf Name # 549: afii62958
+	PSGlyf Name # 550: afii62956
+	PSGlyf Name # 551: afii52957
+	PSGlyf Name # 552: afii57505
+	PSGlyf Name # 553: afii62889
+	PSGlyf Name # 554: afii62887
+	PSGlyf Name # 555: afii62888
+	PSGlyf Name # 556: afii57507
+	PSGlyf Name # 557: afii62961
+	PSGlyf Name # 558: afii62959
+	PSGlyf Name # 559: afii62960
+	PSGlyf Name # 560: afii57508
+	PSGlyf Name # 561: afii62962
+	PSGlyf Name # 562: afii57567
+	PSGlyf Name # 563: afii62964
+	PSGlyf Name # 564: afii52305
+	PSGlyf Name # 565: afii52306
+	PSGlyf Name # 566: afii57509
+	PSGlyf Name # 567: afii62967
+	PSGlyf Name # 568: afii62965
+	PSGlyf Name # 569: afii62966
+	PSGlyf Name # 570: afii57555
+	PSGlyf Name # 571: afii52364
+	PSGlyf Name # 572: afii63753
+	PSGlyf Name # 573: afii63754
+	PSGlyf Name # 574: afii63759
+	PSGlyf Name # 575: afii63763
+	PSGlyf Name # 576: afii63795
+	PSGlyf Name # 577: afii62891
+	PSGlyf Name # 578: afii63808
+	PSGlyf Name # 579: afii62938
+	PSGlyf Name # 580: afii63810
+	PSGlyf Name # 581: afii62942
+	PSGlyf Name # 582: afii62947
+	PSGlyf Name # 583: afii63813
+	PSGlyf Name # 584: afii63823
+	PSGlyf Name # 585: afii63824
+	PSGlyf Name # 586: afii63833
+	PSGlyf Name # 587: afii63844
+	PSGlyf Name # 588: afii62882
+	PSGlyf Name # 589: afii62883
+	PSGlyf Name # 590: afii62884
+	PSGlyf Name # 591: afii62885
+	PSGlyf Name # 592: afii62886
+	PSGlyf Name # 593: afii63846
+	PSGlyf Name # 594: afii63849
+	PSGlyf Name # 595: afii63850
+	PSGlyf Name # 596: afii63851
+	PSGlyf Name # 597: afii63852
+	PSGlyf Name # 598: afii63855
+	PSGlyf Name # 599: afii63856
+	PSGlyf Name # 600: afii63761
+	PSGlyf Name # 601: afii63882
+	PSGlyf Name # 602: afii63825
+	PSGlyf Name # 603: afii63885
+	PSGlyf Name # 604: afii63888
+	PSGlyf Name # 605: afii63896
+	PSGlyf Name # 606: afii63897
+	PSGlyf Name # 607: afii63898
+	PSGlyf Name # 608: afii63899
+	PSGlyf Name # 609: afii63900
+	PSGlyf Name # 610: afii63901
+	PSGlyf Name # 611: afii63902
+	PSGlyf Name # 612: afii63903
+	PSGlyf Name # 613: afii63904
+	PSGlyf Name # 614: afii63905
+	PSGlyf Name # 615: afii63906
+	PSGlyf Name # 616: afii63908
+	PSGlyf Name # 617: afii63910
+	PSGlyf Name # 618: afii63912
+	PSGlyf Name # 619: afii62927
+	PSGlyf Name # 620: afii63941
+	PSGlyf Name # 621: afii62939
+	PSGlyf Name # 622: afii63943
+	PSGlyf Name # 623: afii62943
+	PSGlyf Name # 624: afii62946
+	PSGlyf Name # 625: afii63946
+	PSGlyf Name # 626: afii62951
+	PSGlyf Name # 627: afii63948
+	PSGlyf Name # 628: afii62953
+	PSGlyf Name # 629: afii63950
+	PSGlyf Name # 630: afii63951
+	PSGlyf Name # 631: afii63952
+	PSGlyf Name # 632: afii63953
+	PSGlyf Name # 633: afii63956
+	PSGlyf Name # 634: afii63958
+	PSGlyf Name # 635: afii63959
+	PSGlyf Name # 636: afii63960
+	PSGlyf Name # 637: afii63961
+	PSGlyf Name # 638: afii64046
+	PSGlyf Name # 639: afii64058
+	PSGlyf Name # 640: afii64059
+	PSGlyf Name # 641: afii64060
+	PSGlyf Name # 642: afii64061
+	PSGlyf Name # 643: afii62945
+	PSGlyf Name # 644: afii64184
+	PSGlyf Name # 645: afii52399
+	PSGlyf Name # 646: afii52400
+	PSGlyf Name # 647: afii62753
+	PSGlyf Name # 648: afii57411
+	PSGlyf Name # 649: afii62754
+	PSGlyf Name # 650: afii57412
+	PSGlyf Name # 651: afii62755
+	PSGlyf Name # 652: afii57413
+	PSGlyf Name # 653: afii62756
+	PSGlyf Name # 654: afii57414
+	PSGlyf Name # 655: afii62759
+	PSGlyf Name # 656: afii62757
+	PSGlyf Name # 657: afii62758
+	PSGlyf Name # 658: afii57415
+	PSGlyf Name # 659: afii62760
+	PSGlyf Name # 660: afii57416
+	PSGlyf Name # 661: afii62763
+	PSGlyf Name # 662: afii62761
+	PSGlyf Name # 663: afii62762
+	PSGlyf Name # 664: afii57417
+	PSGlyf Name # 665: afii62764
+	PSGlyf Name # 666: afii57418
+	PSGlyf Name # 667: afii62767
+	PSGlyf Name # 668: afii62765
+	PSGlyf Name # 669: afii62766
+	PSGlyf Name # 670: afii57419
+	PSGlyf Name # 671: afii62770
+	PSGlyf Name # 672: afii62768
+	PSGlyf Name # 673: afii62769
+	PSGlyf Name # 674: afii57420
+	PSGlyf Name # 675: afii62773
+	PSGlyf Name # 676: afii62771
+	PSGlyf Name # 677: afii62772
+	PSGlyf Name # 678: afii57421
+	PSGlyf Name # 679: afii62776
+	PSGlyf Name # 680: afii62774
+	PSGlyf Name # 681: afii62775
+	PSGlyf Name # 682: afii57422
+	PSGlyf Name # 683: afii62779
+	PSGlyf Name # 684: afii62777
+	PSGlyf Name # 685: afii62778
+	PSGlyf Name # 686: afii57423
+	PSGlyf Name # 687: afii62780
+	PSGlyf Name # 688: afii57424
+	PSGlyf Name # 689: afii62781
+	PSGlyf Name # 690: afii57425
+	PSGlyf Name # 691: afii62782
+	PSGlyf Name # 692: afii57426
+	PSGlyf Name # 693: afii62783
+	PSGlyf Name # 694: afii57427
+	PSGlyf Name # 695: afii62786
+	PSGlyf Name # 696: afii62784
+	PSGlyf Name # 697: afii62785
+	PSGlyf Name # 698: afii57428
+	PSGlyf Name # 699: afii62789
+	PSGlyf Name # 700: afii62787
+	PSGlyf Name # 701: afii62788
+	PSGlyf Name # 702: afii57429
+	PSGlyf Name # 703: afii62792
+	PSGlyf Name # 704: afii62790
+	PSGlyf Name # 705: afii62791
+	PSGlyf Name # 706: afii57430
+	PSGlyf Name # 707: afii62795
+	PSGlyf Name # 708: afii62793
+	PSGlyf Name # 709: afii62794
+	PSGlyf Name # 710: afii57431
+	PSGlyf Name # 711: afii62798
+	PSGlyf Name # 712: afii62796
+	PSGlyf Name # 713: afii62797
+	PSGlyf Name # 714: afii57432
+	PSGlyf Name # 715: afii62801
+	PSGlyf Name # 716: afii62799
+	PSGlyf Name # 717: afii62800
+	PSGlyf Name # 718: afii57433
+	PSGlyf Name # 719: afii62804
+	PSGlyf Name # 720: afii62802
+	PSGlyf Name # 721: afii62803
+	PSGlyf Name # 722: afii57434
+	PSGlyf Name # 723: afii62807
+	PSGlyf Name # 724: afii62805
+	PSGlyf Name # 725: afii62806
+	PSGlyf Name # 726: afii57441
+	PSGlyf Name # 727: afii62810
+	PSGlyf Name # 728: afii62808
+	PSGlyf Name # 729: afii62809
+	PSGlyf Name # 730: afii57442
+	PSGlyf Name # 731: afii62813
+	PSGlyf Name # 732: afii62811
+	PSGlyf Name # 733: afii62812
+	PSGlyf Name # 734: afii57443
+	PSGlyf Name # 735: afii62816
+	PSGlyf Name # 736: afii57410
+	PSGlyf Name # 737: afii62815
+	PSGlyf Name # 738: afii57444
+	PSGlyf Name # 739: afii62819
+	PSGlyf Name # 740: afii62817
+	PSGlyf Name # 741: afii62818
+	PSGlyf Name # 742: afii57445
+	PSGlyf Name # 743: afii62822
+	PSGlyf Name # 744: afii62820
+	PSGlyf Name # 745: afii62821
+	PSGlyf Name # 746: afii57446
+	PSGlyf Name # 747: afii62825
+	PSGlyf Name # 748: afii62823
+	PSGlyf Name # 749: afii62824
+	PSGlyf Name # 750: afii57447
+	PSGlyf Name # 751: afii62828
+	PSGlyf Name # 752: afii57470
+	PSGlyf Name # 753: afii62827
+	PSGlyf Name # 754: afii57448
+	PSGlyf Name # 755: afii62829
+	PSGlyf Name # 756: afii57449
+	PSGlyf Name # 757: afii62830
+	PSGlyf Name # 758: afii57450
+	PSGlyf Name # 759: afii62833
+	PSGlyf Name # 760: afii62831
+	PSGlyf Name # 761: afii62832
+	PSGlyf Name # 762: afii62834
+	PSGlyf Name # 763: afii62835
+	PSGlyf Name # 764: afii62836
+	PSGlyf Name # 765: afii62837
+	PSGlyf Name # 766: afii62838
+	PSGlyf Name # 767: afii62839
+	PSGlyf Name # 768: afii62840
+	PSGlyf Name # 769: afii62841
+	PSGlyf Name # 770: glyph1021
+	PSGlyf Name # 771: afii57543-2
+	PSGlyf Name # 772: afii57454-2
+	PSGlyf Name # 773: afii57451-2
+	PSGlyf Name # 774: glyph1025
+	PSGlyf Name # 775: glyph1026
+	PSGlyf Name # 776: afii57471-2
+	PSGlyf Name # 777: afii57458-2
+	PSGlyf Name # 778: afii57457-2
+	PSGlyf Name # 779: afii57494-2
+	PSGlyf Name # 780: afii57459-2
+	PSGlyf Name # 781: afii57455-2
+	PSGlyf Name # 782: afii57452-2
+	PSGlyf Name # 783: glyph1034
+	PSGlyf Name # 784: glyph1035
+	PSGlyf Name # 785: glyph1036
+	PSGlyf Name # 786: afii62884-2
+	PSGlyf Name # 787: afii62881-2
+	PSGlyf Name # 788: afii62886-2
+	PSGlyf Name # 789: afii62883-2
+	PSGlyf Name # 790: afii62885-2
+	PSGlyf Name # 791: afii62882-2
+	PSGlyf Name # 792: afii57504-2
+	PSGlyf Name # 793: afii57456-2
+	PSGlyf Name # 794: afii57453-2
+	PSGlyf Name # 795: glyph1046
+	PSGlyf Name # 796: glyph1047
+	PSGlyf Name # 797: afii57543-3
+	PSGlyf Name # 798: afii57454-3
+	PSGlyf Name # 799: afii57451-3
+	PSGlyf Name # 800: glyph1051
+	PSGlyf Name # 801: glyph1052
+	PSGlyf Name # 802: afii57471-3
+	PSGlyf Name # 803: afii57458-3
+	PSGlyf Name # 804: afii57457-3
+	PSGlyf Name # 805: afii57494-3
+	PSGlyf Name # 806: afii57459-3
+	PSGlyf Name # 807: afii57455-3
+	PSGlyf Name # 808: afii57452-3
+	PSGlyf Name # 809: glyph1060
+	PSGlyf Name # 810: glyph1061
+	PSGlyf Name # 811: glyph1062
+	PSGlyf Name # 812: afii62884-3
+	PSGlyf Name # 813: afii62881-3
+	PSGlyf Name # 814: afii62886-3
+	PSGlyf Name # 815: afii62883-3
+	PSGlyf Name # 816: afii62885-3
+	PSGlyf Name # 817: afii62882-3
+	PSGlyf Name # 818: afii57504-3
+	PSGlyf Name # 819: afii57456-3
+	PSGlyf Name # 820: afii57453-3
+	PSGlyf Name # 821: glyph1072
+	PSGlyf Name # 822: glyph1073
+	PSGlyf Name # 823: afii57543-4
+	PSGlyf Name # 824: afii57454-4
+	PSGlyf Name # 825: afii57451-4
+	PSGlyf Name # 826: glyph1077
+	PSGlyf Name # 827: glyph1078
+	PSGlyf Name # 828: afii57471-4
+	PSGlyf Name # 829: afii57458-4
+	PSGlyf Name # 830: afii57457-4
+	PSGlyf Name # 831: afii57494-4
+	PSGlyf Name # 832: afii57459-4
+	PSGlyf Name # 833: afii57455-4
+	PSGlyf Name # 834: afii57452-4
+	PSGlyf Name # 835: glyph1086
+	PSGlyf Name # 836: glyph1087
+	PSGlyf Name # 837: glyph1088
+	PSGlyf Name # 838: afii62884-4
+	PSGlyf Name # 839: afii62881-4
+	PSGlyf Name # 840: afii62886-4
+	PSGlyf Name # 841: afii62883-4
+	PSGlyf Name # 842: afii62885-4
+	PSGlyf Name # 843: afii62882-4
+	PSGlyf Name # 844: afii57504-4
+	PSGlyf Name # 845: afii57456-4
+	PSGlyf Name # 846: afii57453-4
+	PSGlyf Name # 847: glyph1098
+	PSGlyf Name # 848: glyph1099
+	PSGlyf Name # 849: glyph1100
+	PSGlyf Name # 850: glyph1101
+	PSGlyf Name # 851: glyph1102
+	PSGlyf Name # 852: glyph1103
+	PSGlyf Name # 853: glyph1104
+	PSGlyf Name # 854: glyph1105
+	PSGlyf Name # 855: glyph1106
+	PSGlyf Name # 856: glyph1107
+	PSGlyf Name # 857: glyph1108
+	PSGlyf Name # 858: glyph1109
+	PSGlyf Name # 859: glyph1110
+	PSGlyf Name # 860: glyph1111
+	PSGlyf Name # 861: glyph1112
+	PSGlyf Name # 862: glyph1113
+	PSGlyf Name # 863: glyph1114
+	PSGlyf Name # 864: glyph1115
+	PSGlyf Name # 865: glyph1116
+	PSGlyf Name # 866: glyph1117
+	PSGlyf Name # 867: glyph1118
+	PSGlyf Name # 868: glyph1119
+	PSGlyf Name # 869: glyph1120
+	PSGlyf Name # 870: glyph1121
+	PSGlyf Name # 871: glyph1122
+	PSGlyf Name # 872: glyph1123
+	PSGlyf Name # 873: glyph1124
+	PSGlyf Name # 874: glyph1125
+	PSGlyf Name # 875: glyph1126
+	PSGlyf Name # 876: uniFFFC
+	PSGlyf Name # 877: Ohorn
+	PSGlyf Name # 878: ohorn
+	PSGlyf Name # 879: Uhorn
+	PSGlyf Name # 880: uhorn
+	PSGlyf Name # 881: f006
+	PSGlyf Name # 882: f007
+	PSGlyf Name # 883: f009
+	PSGlyf Name # 884: combininghookabove
+	PSGlyf Name # 885: f010
+	PSGlyf Name # 886: f013
+	PSGlyf Name # 887: f011
+	PSGlyf Name # 888: f01c
+	PSGlyf Name # 889: f015
+	PSGlyf Name # 890: combiningtildeaccent
+	PSGlyf Name # 891: f02c
+	PSGlyf Name # 892: dongsign
+	PSGlyf Name # 893: onethird
+	PSGlyf Name # 894: twothirds
+	PSGlyf Name # 895: f008
+	PSGlyf Name # 896: f00f
+	PSGlyf Name # 897: f012
+	PSGlyf Name # 898: f014
+	PSGlyf Name # 899: f016
+	PSGlyf Name # 900: f017
+	PSGlyf Name # 901: f018
+	PSGlyf Name # 902: f019
+	PSGlyf Name # 903: f01a
+	PSGlyf Name # 904: f01b
+	PSGlyf Name # 905: f01e
+	PSGlyf Name # 906: f01f
+	PSGlyf Name # 907: f020
+	PSGlyf Name # 908: f021
+	PSGlyf Name # 909: f022
+	PSGlyf Name # 910: combininggraveaccent
+	PSGlyf Name # 911: combiningacuteaccent
+	PSGlyf Name # 912: f01d
+	PSGlyf Name # 913: combiningdotbelow
+	PSGlyf Name # 914: f023
+	PSGlyf Name # 915: f029
+	PSGlyf Name # 916: f02a
+	PSGlyf Name # 917: f02b
+	PSGlyf Name # 918: f024
+	PSGlyf Name # 919: f025
+	PSGlyf Name # 920: f026
+	PSGlyf Name # 921: f027
+	PSGlyf Name # 922: f028
+	PSGlyf Name # 923: f02d
+	PSGlyf Name # 924: f02e
+	PSGlyf Name # 925: f02f
+	PSGlyf Name # 926: f030
+	PSGlyf Name # 927: Adotbelow
+	PSGlyf Name # 928: adotbelow
+	PSGlyf Name # 929: Ahookabove
+	PSGlyf Name # 930: ahookabove
+	PSGlyf Name # 931: Acircumflexacute
+	PSGlyf Name # 932: acircumflexacute
+	PSGlyf Name # 933: Acircumflexgrave
+	PSGlyf Name # 934: acircumflexgrave
+	PSGlyf Name # 935: Acircumflexhookabove
+	PSGlyf Name # 936: acircumflexhookabove
+	PSGlyf Name # 937: Acircumflextilde
+	PSGlyf Name # 938: acircumflextilde
+	PSGlyf Name # 939: Acircumflexdotbelow
+	PSGlyf Name # 940: acircumflexdotbelow
+	PSGlyf Name # 941: Abreveacute
+	PSGlyf Name # 942: abreveacute
+	PSGlyf Name # 943: Abrevegrave
+	PSGlyf Name # 944: abrevegrave
+	PSGlyf Name # 945: Abrevehookabove
+	PSGlyf Name # 946: abrevehookabove
+	PSGlyf Name # 947: Abrevetilde
+	PSGlyf Name # 948: abrevetilde
+	PSGlyf Name # 949: Abrevedotbelow
+	PSGlyf Name # 950: abrevedotbelow
+	PSGlyf Name # 951: Edotbelow
+	PSGlyf Name # 952: edotbelow
+	PSGlyf Name # 953: Ehookabove
+	PSGlyf Name # 954: ehookabove
+	PSGlyf Name # 955: Etilde
+	PSGlyf Name # 956: etilde
+	PSGlyf Name # 957: Ecircumflexacute
+	PSGlyf Name # 958: ecircumflexacute
+	PSGlyf Name # 959: Ecircumflexgrave
+	PSGlyf Name # 960: ecircumflexgrave
+	PSGlyf Name # 961: Ecircumflexhookabove
+	PSGlyf Name # 962: ecircumflexhookabove
+	PSGlyf Name # 963: Ecircumflextilde
+	PSGlyf Name # 964: ecircumflextilde
+	PSGlyf Name # 965: Ecircumflexdotbelow
+	PSGlyf Name # 966: ecircumflexdotbelow
+	PSGlyf Name # 967: Ihookabove
+	PSGlyf Name # 968: ihookabove
+	PSGlyf Name # 969: Idotbelow
+	PSGlyf Name # 970: idotbelow
+	PSGlyf Name # 971: Odotbelow
+	PSGlyf Name # 972: odotbelow
+	PSGlyf Name # 973: Ohookabove
+	PSGlyf Name # 974: ohookabove
+	PSGlyf Name # 975: Ocircumflexacute
+	PSGlyf Name # 976: ocircumflexacute
+	PSGlyf Name # 977: Ocircumflexgrave
+	PSGlyf Name # 978: ocircumflexgrave
+	PSGlyf Name # 979: Ocircumflexhookabove
+	PSGlyf Name # 980: ocircumflexhookabove
+	PSGlyf Name # 981: Ocircumflextilde
+	PSGlyf Name # 982: ocircumflextilde
+	PSGlyf Name # 983: Ocircumflexdotbelow
+	PSGlyf Name # 984: ocircumflexdotbelow
+	PSGlyf Name # 985: Ohornacute
+	PSGlyf Name # 986: ohornacute
+	PSGlyf Name # 987: Ohorngrave
+	PSGlyf Name # 988: ohorngrave
+	PSGlyf Name # 989: Ohornhookabove
+	PSGlyf Name # 990: ohornhookabove
+	PSGlyf Name # 991: Ohorntilde
+	PSGlyf Name # 992: ohorntilde
+	PSGlyf Name # 993: Ohorndotbelow
+	PSGlyf Name # 994: ohorndotbelow
+	PSGlyf Name # 995: Udotbelow
+	PSGlyf Name # 996: udotbelow
+	PSGlyf Name # 997: Uhookabove
+	PSGlyf Name # 998: uhookabove
+	PSGlyf Name # 999: Uhornacute
+	PSGlyf Name # 1000: uhornacute
+	PSGlyf Name # 1001: Uhorngrave
+	PSGlyf Name # 1002: uhorngrave
+	PSGlyf Name # 1003: Uhornhookabove
+	PSGlyf Name # 1004: uhornhookabove
+	PSGlyf Name # 1005: Uhorntilde
+	PSGlyf Name # 1006: uhorntilde
+	PSGlyf Name # 1007: Uhorndotbelow
+	PSGlyf Name # 1008: uhorndotbelow
+	PSGlyf Name # 1009: Ydotbelow
+	PSGlyf Name # 1010: ydotbelow
+	PSGlyf Name # 1011: Yhookabove
+	PSGlyf Name # 1012: yhookabove
+	PSGlyf Name # 1013: Ytilde
+	PSGlyf Name # 1014: ytilde
+	PSGlyf Name # 1015: uni01CD
+	PSGlyf Name # 1016: uni01CE
+	PSGlyf Name # 1017: uni01CF
+	PSGlyf Name # 1018: uni01D0
+	PSGlyf Name # 1019: uni01D1
+	PSGlyf Name # 1020: uni01D2
+	PSGlyf Name # 1021: uni01D3
+	PSGlyf Name # 1022: uni01D4
+	PSGlyf Name # 1023: uni01D5
+	PSGlyf Name # 1024: uni01D6
+	PSGlyf Name # 1025: uni01D7
+	PSGlyf Name # 1026: uni01D8
+	PSGlyf Name # 1027: uni01D9
+	PSGlyf Name # 1028: uni01DA
+	PSGlyf Name # 1029: uni01DB
+	PSGlyf Name # 1030: uni01DC
+	PSGlyf Name # 1031: uni0492
+	PSGlyf Name # 1032: uni0493
+	PSGlyf Name # 1033: uni0496
+	PSGlyf Name # 1034: uni0497
+	PSGlyf Name # 1035: uni049a
+	PSGlyf Name # 1036: uni049b
+	PSGlyf Name # 1037: uni049c
+	PSGlyf Name # 1038: uni049d
+	PSGlyf Name # 1039: uni04a2
+	PSGlyf Name # 1040: uni04a3
+	PSGlyf Name # 1041: uni04ae
+	PSGlyf Name # 1042: uni04af
+	PSGlyf Name # 1043: uni04b0
+	PSGlyf Name # 1044: uni04b1
+	PSGlyf Name # 1045: uni04b2
+	PSGlyf Name # 1046: uni04b3
+	PSGlyf Name # 1047: uni04b8
+	PSGlyf Name # 1048: uni04b9
+	PSGlyf Name # 1049: uni04ba
+	PSGlyf Name # 1050: uni04bb
+	PSGlyf Name # 1051: uni018f
+	PSGlyf Name # 1052: uni0259
+	PSGlyf Name # 1053: uni04e8
+	PSGlyf Name # 1054: uni04e9
+
+'cmap' Table - Character To Index Map
+-------------------------------------
+Size = 5442 bytes
+  'cmap' version:  0
+  numTables:       3
+  
+Subtable  1.   Platform ID:   0
+               Specific ID:   3
+               'cmap' Offset: 0x0000001C
+	      ->Format:	4 : Segment mapping to delta values
+		Length:		2576
+		Version:	0
+		segCount:	184  (X2 = 368)
+		searchRange:	256
+		entrySelector:	7
+		rangeShift:	112
+		Seg   1 : St = 0020, En = 007E, D =    -29, RO =     0, gId# = N/A
+		Seg   2 : St = 00A0, En = 017F, D =      0, RO =   366, gId# = 0
+		Seg   3 : St = 018F, En = 018F, D =    915, RO =     0, gId# = N/A
+		Seg   4 : St = 0192, En = 0192, D =   -236, RO =     0, gId# = N/A
+		Seg   5 : St = 01A0, En = 01A1, D =    713, RO =     0, gId# = N/A
+		Seg   6 : St = 01AF, En = 01B0, D =    700, RO =     0, gId# = N/A
+		Seg   7 : St = 01CD, En = 01DC, D =    813, RO =     0, gId# = N/A
+		Seg   8 : St = 01FA, En = 01FF, D =    -36, RO =     0, gId# = N/A
+		Seg   9 : St = 0259, En = 0259, D =    714, RO =     0, gId# = N/A
+		Seg  10 : St = 02C6, En = 02C7, D =      0, RO =   798, gId# = 224
+		Seg  11 : St = 02C9, En = 02C9, D =   -497, RO =     0, gId# = N/A
+		Seg  12 : St = 02D8, En = 02DD, D =      0, RO =   798, gId# = 226
+		Seg  13 : St = 0300, En = 0301, D =    401, RO =     0, gId# = N/A
+		Seg  14 : St = 0303, En = 0303, D =    374, RO =     0, gId# = N/A
+		Seg  15 : St = 0309, En = 0309, D =    362, RO =     0, gId# = N/A
+		Seg  16 : St = 0323, En = 0323, D =    369, RO =     0, gId# = N/A
+		Seg  17 : St = 037E, En = 037E, D =   -864, RO =     0, gId# = N/A
+		Seg  18 : St = 0384, En = 038A, D =      0, RO =   798, gId# = 232
+		Seg  19 : St = 038C, En = 038C, D =   -407, RO =     0, gId# = N/A
+		Seg  20 : St = 038E, En = 03A1, D =      0, RO =   808, gId# = 239
+		Seg  21 : St = 03A3, En = 03CE, D =      0, RO =   846, gId# = 259
+		Seg  22 : St = 0401, En = 040C, D =   -469, RO =     0, gId# = N/A
+		Seg  23 : St = 040E, En = 044F, D =   -470, RO =     0, gId# = N/A
+		Seg  24 : St = 0451, En = 045C, D =   -471, RO =     0, gId# = N/A
+		Seg  25 : St = 045E, En = 045F, D =   -472, RO =     0, gId# = N/A
+		Seg  26 : St = 0490, En = 0493, D =      0, RO =   924, gId# = 303
+		Seg  27 : St = 0496, En = 0497, D =    122, RO =     0, gId# = N/A
+		Seg  28 : St = 049A, En = 049D, D =    120, RO =     0, gId# = N/A
+		Seg  29 : St = 04A2, En = 04A3, D =    116, RO =     0, gId# = N/A
+		Seg  30 : St = 04AE, En = 04B3, D =    106, RO =     0, gId# = N/A
+		Seg  31 : St = 04B8, En = 04BB, D =    102, RO =     0, gId# = N/A
+		Seg  32 : St = 04D8, En = 04D9, D =     74, RO =     0, gId# = N/A
+		Seg  33 : St = 04E8, En = 04E9, D =     60, RO =     0, gId# = N/A
+		Seg  34 : St = 05B0, En = 05B9, D =   -803, RO =     0, gId# = N/A
+		Seg  35 : St = 05BB, En = 05C3, D =   -804, RO =     0, gId# = N/A
+		Seg  36 : St = 05D0, En = 05EA, D =   -816, RO =     0, gId# = N/A
+		Seg  37 : St = 05F0, En = 05F4, D =   -821, RO =     0, gId# = N/A
+		Seg  38 : St = 060C, En = 060C, D =   -800, RO =     0, gId# = N/A
+		Seg  39 : St = 061B, En = 061B, D =   -814, RO =     0, gId# = N/A
+		Seg  40 : St = 061F, En = 061F, D =   -817, RO =     0, gId# = N/A
+		Seg  41 : St = 0621, En = 063A, D =      0, RO =   902, gId# = 307
+		Seg  42 : St = 0640, En = 0652, D =      0, RO =   952, gId# = 333
+		Seg  43 : St = 0660, En = 066B, D =   -871, RO =     0, gId# = N/A
+		Seg  44 : St = 066D, En = 066D, D =   -872, RO =     0, gId# = N/A
+		Seg  45 : St = 0670, En = 0671, D =      0, RO =   984, gId# = 352
+		Seg  46 : St = 0674, En = 0674, D =   -877, RO =     0, gId# = N/A
+		Seg  47 : St = 067E, En = 067E, D =   -863, RO =     0, gId# = N/A
+		Seg  48 : St = 0686, En = 0686, D =   -863, RO =     0, gId# = N/A
+		Seg  49 : St = 0698, En = 0698, D =   -877, RO =     0, gId# = N/A
+		Seg  50 : St = 06A4, En = 06A4, D =   -897, RO =     0, gId# = N/A
+		Seg  51 : St = 06A9, En = 06A9, D =   -892, RO =     0, gId# = N/A
+		Seg  52 : St = 06AF, En = 06AF, D =   -894, RO =     0, gId# = N/A
+		Seg  53 : St = 06CC, En = 06CC, D =   -919, RO =     0, gId# = N/A
+		Seg  54 : St = 06D5, En = 06D5, D =   -973, RO =     0, gId# = N/A
+		Seg  55 : St = 06E4, En = 06E4, D =   -987, RO =     0, gId# = N/A
+		Seg  56 : St = 06F0, En = 06F9, D =      0, RO =   966, gId# = 354
+		Seg  57 : St = 1E80, En = 1E85, D =  -7331, RO =     0, gId# = N/A
+		Seg  58 : St = 1EA0, En = 1EF9, D =      0, RO =   982, gId# = 364
+		Seg  59 : St = 200C, En = 200F, D =  -7460, RO =     0, gId# = N/A
+		Seg  60 : St = 2013, En = 2015, D =      0, RO =  1158, gId# = 454
+		Seg  61 : St = 2017, En = 201E, D =      0, RO =  1162, gId# = 457
+		Seg  62 : St = 2020, En = 2022, D =      0, RO =  1176, gId# = 465
+		Seg  63 : St = 2026, En = 2026, D =  -8059, RO =     0, gId# = N/A
+		Seg  64 : St = 2030, En = 2030, D =  -8043, RO =     0, gId# = N/A
+		Seg  65 : St = 2032, En = 2033, D =  -7845, RO =     0, gId# = N/A
+		Seg  66 : St = 2039, En = 203A, D =  -8060, RO =     0, gId# = N/A
+		Seg  67 : St = 203C, En = 203C, D =  -7943, RO =     0, gId# = N/A
+		Seg  68 : St = 203E, En = 203E, D =  -7768, RO =     0, gId# = N/A
+		Seg  69 : St = 2044, En = 2044, D =  -8073, RO =     0, gId# = N/A
+		Seg  70 : St = 207F, En = 207F, D =  -8009, RO =     0, gId# = N/A
+		Seg  71 : St = 20A3, En = 20A4, D =      0, RO =  1164, gId# = 468
+		Seg  72 : St = 20A7, En = 20A7, D =  -8048, RO =     0, gId# = N/A
+		Seg  73 : St = 20AA, En = 20AC, D =      0, RO =  1164, gId# = 470
+		Seg  74 : St = 2105, En = 2105, D =  -8054, RO =     0, gId# = N/A
+		Seg  75 : St = 2113, En = 2113, D =  -8067, RO =     0, gId# = N/A
+		Seg  76 : St = 2116, En = 2116, D =  -7819, RO =     0, gId# = N/A
+		Seg  77 : St = 2122, En = 2122, D =  -8342, RO =     0, gId# = N/A
+		Seg  78 : St = 2126, En = 2126, D =  -8327, RO =     0, gId# = N/A
+		Seg  79 : St = 212E, En = 212E, D =  -8006, RO =     0, gId# = N/A
+		Seg  80 : St = 2153, En = 2154, D =  -7381, RO =     0, gId# = N/A
+		Seg  81 : St = 215B, En = 215E, D =  -8050, RO =     0, gId# = N/A
+		Seg  82 : St = 2190, En = 2195, D =  -8280, RO =     0, gId# = N/A
+		Seg  83 : St = 21A8, En = 21A8, D =  -8298, RO =     0, gId# = N/A
+		Seg  84 : St = 2202, En = 2202, D =  -8554, RO =     0, gId# = N/A
+		Seg  85 : St = 2206, En = 2206, D =  -8542, RO =     0, gId# = N/A
+		Seg  86 : St = 220F, En = 220F, D =  -8565, RO =     0, gId# = N/A
+		Seg  87 : St = 2211, En = 2212, D =      0, RO =  1142, gId# = 473
+		Seg  88 : St = 2215, En = 2215, D =  -8538, RO =     0, gId# = N/A
+		Seg  89 : St = 2219, En = 221A, D =      0, RO =  1142, gId# = 475
+		Seg  90 : St = 221E, En = 221F, D =      0, RO =  1144, gId# = 477
+		Seg  91 : St = 2229, En = 2229, D =  -8425, RO =     0, gId# = N/A
+		Seg  92 : St = 222B, En = 222B, D =  -8591, RO =     0, gId# = N/A
+		Seg  93 : St = 2248, En = 2248, D =  -8609, RO =     0, gId# = N/A
+		Seg  94 : St = 2260, En = 2261, D =      0, RO =  1140, gId# = 479
+		Seg  95 : St = 2264, En = 2265, D =  -8656, RO =     0, gId# = N/A
+		Seg  96 : St = 2302, En = 2302, D =  -8640, RO =     0, gId# = N/A
+		Seg  97 : St = 2310, En = 2310, D =  -8653, RO =     0, gId# = N/A
+		Seg  98 : St = 2320, En = 2321, D =  -8668, RO =     0, gId# = N/A
+		Seg  99 : St = 2500, En = 2500, D =  -9146, RO =     0, gId# = N/A
+		Seg 100 : St = 2502, En = 2502, D =  -9147, RO =     0, gId# = N/A
+		Seg 101 : St = 250C, En = 250C, D =  -9156, RO =     0, gId# = N/A
+		Seg 102 : St = 2510, En = 2510, D =  -9159, RO =     0, gId# = N/A
+		Seg 103 : St = 2514, En = 2514, D =  -9162, RO =     0, gId# = N/A
+		Seg 104 : St = 2518, En = 2518, D =  -9165, RO =     0, gId# = N/A
+		Seg 105 : St = 251C, En = 251C, D =  -9168, RO =     0, gId# = N/A
+		Seg 106 : St = 2524, En = 2524, D =  -9175, RO =     0, gId# = N/A
+		Seg 107 : St = 252C, En = 252C, D =  -9182, RO =     0, gId# = N/A
+		Seg 108 : St = 2534, En = 2534, D =  -9189, RO =     0, gId# = N/A
+		Seg 109 : St = 253C, En = 253C, D =  -9196, RO =     0, gId# = N/A
+		Seg 110 : St = 2550, En = 256C, D =  -9215, RO =     0, gId# = N/A
+		Seg 111 : St = 2580, En = 2580, D =  -9234, RO =     0, gId# = N/A
+		Seg 112 : St = 2584, En = 2584, D =  -9237, RO =     0, gId# = N/A
+		Seg 113 : St = 2588, En = 2588, D =  -9240, RO =     0, gId# = N/A
+		Seg 114 : St = 258C, En = 258C, D =  -9243, RO =     0, gId# = N/A
+		Seg 115 : St = 2590, En = 2593, D =  -9246, RO =     0, gId# = N/A
+		Seg 116 : St = 25A0, En = 25A1, D =      0, RO =  1100, gId# = 481
+		Seg 117 : St = 25AA, En = 25AC, D =      0, RO =  1102, gId# = 483
+		Seg 118 : St = 25B2, En = 25B2, D =  -9274, RO =     0, gId# = N/A
+		Seg 119 : St = 25BA, En = 25BA, D =  -9281, RO =     0, gId# = N/A
+		Seg 120 : St = 25BC, En = 25BC, D =  -9282, RO =     0, gId# = N/A
+		Seg 121 : St = 25C4, En = 25C4, D =  -9289, RO =     0, gId# = N/A
+		Seg 122 : St = 25CA, En = 25CB, D =      0, RO =  1098, gId# = 486
+		Seg 123 : St = 25CF, En = 25CF, D =  -9275, RO =     0, gId# = N/A
+		Seg 124 : St = 25D8, En = 25D9, D =  -9307, RO =     0, gId# = N/A
+		Seg 125 : St = 25E6, En = 25E6, D =  -9297, RO =     0, gId# = N/A
+		Seg 126 : St = 263A, En = 263C, D =  -9403, RO =     0, gId# = N/A
+		Seg 127 : St = 2640, En = 2640, D =  -9406, RO =     0, gId# = N/A
+		Seg 128 : St = 2642, En = 2642, D =  -9407, RO =     0, gId# = N/A
+		Seg 129 : St = 2660, En = 2660, D =  -9436, RO =     0, gId# = N/A
+		Seg 130 : St = 2663, En = 2663, D =  -9438, RO =     0, gId# = N/A
+		Seg 131 : St = 2665, En = 2666, D =  -9439, RO =     0, gId# = N/A
+		Seg 132 : St = 266A, En = 266B, D =  -9442, RO =     0, gId# = N/A
+		Seg 133 : St = E801, En = E805, D =   6848, RO =     0, gId# = N/A
+		Seg 134 : St = E811, En = E811, D =   6908, RO =     0, gId# = N/A
+		Seg 135 : St = E813, En = E813, D =   6907, RO =     0, gId# = N/A
+		Seg 136 : St = E815, En = E818, D =   6906, RO =     0, gId# = N/A
+		Seg 137 : St = E832, En = E83B, D =   6881, RO =     0, gId# = N/A
+		Seg 138 : St = F001, En = F002, D =   4286, RO =     0, gId# = N/A
+		Seg 139 : St = F004, En = F009, D =      0, RO =  1068, gId# = 488
+		Seg 140 : St = F00F, En = F030, D =      0, RO =  1078, gId# = 494
+		Seg 141 : St = FB01, En = FB02, D =   1470, RO =     0, gId# = N/A
+		Seg 142 : St = FB20, En = FB20, D =   1958, RO =     0, gId# = N/A
+		Seg 143 : St = FB2A, En = FB36, D =   1949, RO =     0, gId# = N/A
+		Seg 144 : St = FB38, En = FB3C, D =   1948, RO =     0, gId# = N/A
+		Seg 145 : St = FB3E, En = FB3E, D =   1947, RO =     0, gId# = N/A
+		Seg 146 : St = FB40, En = FB41, D =   1946, RO =     0, gId# = N/A
+		Seg 147 : St = FB43, En = FB44, D =   1945, RO =     0, gId# = N/A
+		Seg 148 : St = FB46, En = FB51, D =      0, RO =  1130, gId# = 528
+		Seg 149 : St = FB56, En = FB59, D =   1993, RO =     0, gId# = N/A
+		Seg 150 : St = FB6A, En = FB6D, D =   1977, RO =     0, gId# = N/A
+		Seg 151 : St = FB7A, En = FB7D, D =   1965, RO =     0, gId# = N/A
+		Seg 152 : St = FB8A, En = FB8B, D =   1953, RO =     0, gId# = N/A
+		Seg 153 : St = FB8E, En = FB95, D =   1951, RO =     0, gId# = N/A
+		Seg 154 : St = FBFC, En = FBFF, D =      0, RO =  1142, gId# = 540
+		Seg 155 : St = FC08, En = FC09, D =   1839, RO =     0, gId# = N/A
+		Seg 156 : St = FC0E, En = FC0E, D =   1835, RO =     0, gId# = N/A
+		Seg 157 : St = FC12, En = FC12, D =   1832, RO =     0, gId# = N/A
+		Seg 158 : St = FC31, En = FC32, D =   1802, RO =     0, gId# = N/A
+		Seg 159 : St = FC3F, En = FC44, D =   1790, RO =     0, gId# = N/A
+		Seg 160 : St = FC4E, En = FC4F, D =   1781, RO =     0, gId# = N/A
+		Seg 161 : St = FC58, En = FC59, D =   1773, RO =     0, gId# = N/A
+		Seg 162 : St = FC5E, En = FC62, D =   1769, RO =     0, gId# = N/A
+		Seg 163 : St = FC6A, En = FC6A, D =   1762, RO =     0, gId# = N/A
+		Seg 164 : St = FC6D, En = FC70, D =   1760, RO =     0, gId# = N/A
+		Seg 165 : St = FC73, En = FC75, D =   1758, RO =     0, gId# = N/A
+		Seg 166 : St = FC8E, En = FC8F, D =   1734, RO =     0, gId# = N/A
+		Seg 167 : St = FC91, En = FC91, D =   1733, RO =     0, gId# = N/A
+		Seg 168 : St = FC94, En = FC94, D =   1731, RO =     0, gId# = N/A
+		Seg 169 : St = FC9C, En = FCA6, D =   1724, RO =     0, gId# = N/A
+		Seg 170 : St = FCA8, En = FCA8, D =   1723, RO =     0, gId# = N/A
+		Seg 171 : St = FCAA, En = FCAA, D =   1722, RO =     0, gId# = N/A
+		Seg 172 : St = FCAC, En = FCAC, D =   1721, RO =     0, gId# = N/A
+		Seg 173 : St = FCB0, En = FCB0, D =   1718, RO =     0, gId# = N/A
+		Seg 174 : St = FCC9, En = FCD5, D =   1694, RO =     0, gId# = N/A
+		Seg 175 : St = FCD8, En = FCD8, D =   1692, RO =     0, gId# = N/A
+		Seg 176 : St = FCDA, En = FCDD, D =   1691, RO =     0, gId# = N/A
+		Seg 177 : St = FD30, En = FD30, D =   1609, RO =     0, gId# = N/A
+		Seg 178 : St = FD3C, En = FD3F, D =   1598, RO =     0, gId# = N/A
+		Seg 179 : St = FD88, En = FD88, D =   1526, RO =     0, gId# = N/A
+		Seg 180 : St = FDF2, En = FDF2, D =   1421, RO =     0, gId# = N/A
+		Seg 181 : St = FE80, En = FEFC, D =   1280, RO =     0, gId# = N/A
+		Seg 182 : St = FEFF, En = FEFF, D =   1278, RO =     0, gId# = N/A
+		Seg 183 : St = FFFC, En = FFFC, D =   1132, RO =     0, gId# = N/A
+		Seg 184 : St = FFFF, En = FFFF, D =      1, RO =     0, gId# = N/A
+		glyphIdArray[0] =    3 (Offset = 05D0)
+		glyphIdArray[1] =  163 (Offset = 05D2)
+		glyphIdArray[2] =  132 (Offset = 05D4)
+		glyphIdArray[3] =  133 (Offset = 05D6)
+		glyphIdArray[4] = 1127 (Offset = 05D8)
+		glyphIdArray[5] =  150 (Offset = 05DA)
+		glyphIdArray[6] =  230 (Offset = 05DC)
+		glyphIdArray[7] =  134 (Offset = 05DE)
+		glyphIdArray[8] =  142 (Offset = 05E0)
+		glyphIdArray[9] =  139 (Offset = 05E2)
+		glyphIdArray[10] =  157 (Offset = 05E4)
+		glyphIdArray[11] =  169 (Offset = 05E6)
+		glyphIdArray[12] =  164 (Offset = 05E8)
+		glyphIdArray[13] =   16 (Offset = 05EA)
+		glyphIdArray[14] =  138 (Offset = 05EC)
+		glyphIdArray[15] =  256 (Offset = 05EE)
+		glyphIdArray[16] =  131 (Offset = 05F0)
+		glyphIdArray[17] =  147 (Offset = 05F2)
+		glyphIdArray[18] =  240 (Offset = 05F4)
+		glyphIdArray[19] =  241 (Offset = 05F6)
+		glyphIdArray[20] =  141 (Offset = 05F8)
+		glyphIdArray[21] =  151 (Offset = 05FA)
+		glyphIdArray[22] =  136 (Offset = 05FC)
+		glyphIdArray[23] =  194 (Offset = 05FE)
+		glyphIdArray[24] =  220 (Offset = 0600)
+		glyphIdArray[25] =  239 (Offset = 0602)
+		glyphIdArray[26] =  158 (Offset = 0604)
+		glyphIdArray[27] =  170 (Offset = 0606)
+		glyphIdArray[28] =  243 (Offset = 0608)
+		glyphIdArray[29] =  242 (Offset = 060A)
+		glyphIdArray[30] =  244 (Offset = 060C)
+		glyphIdArray[31] =  162 (Offset = 060E)
+		glyphIdArray[32] =  172 (Offset = 0610)
+		glyphIdArray[33] =  200 (Offset = 0612)
+		glyphIdArray[34] =  198 (Offset = 0614)
+		glyphIdArray[35] =  173 (Offset = 0616)
+		glyphIdArray[36] =   98 (Offset = 0618)
+		glyphIdArray[37] =   99 (Offset = 061A)
+		glyphIdArray[38] =  144 (Offset = 061C)
+		glyphIdArray[39] =  100 (Offset = 061E)
+		glyphIdArray[40] =  202 (Offset = 0620)
+		glyphIdArray[41] =  101 (Offset = 0622)
+		glyphIdArray[42] =  199 (Offset = 0624)
+		glyphIdArray[43] =  201 (Offset = 0626)
+		glyphIdArray[44] =  206 (Offset = 0628)
+		glyphIdArray[45] =  203 (Offset = 062A)
+		glyphIdArray[46] =  204 (Offset = 062C)
+		glyphIdArray[47] =  205 (Offset = 062E)
+		glyphIdArray[48] =  231 (Offset = 0630)
+		glyphIdArray[49] =  102 (Offset = 0632)
+		glyphIdArray[50] =  209 (Offset = 0634)
+		glyphIdArray[51] =  207 (Offset = 0636)
+		glyphIdArray[52] =  208 (Offset = 0638)
+		glyphIdArray[53] =  174 (Offset = 063A)
+		glyphIdArray[54] =  103 (Offset = 063C)
+		glyphIdArray[55] =  238 (Offset = 063E)
+		glyphIdArray[56] =  145 (Offset = 0640)
+		glyphIdArray[57] =  212 (Offset = 0642)
+		glyphIdArray[58] =  210 (Offset = 0644)
+		glyphIdArray[59] =  211 (Offset = 0646)
+		glyphIdArray[60] =  104 (Offset = 0648)
+		glyphIdArray[61] =  233 (Offset = 064A)
+		glyphIdArray[62] =  235 (Offset = 064C)
+		glyphIdArray[63] =  137 (Offset = 064E)
+		glyphIdArray[64] =  106 (Offset = 0650)
+		glyphIdArray[65] =  105 (Offset = 0652)
+		glyphIdArray[66] =  107 (Offset = 0654)
+		glyphIdArray[67] =  109 (Offset = 0656)
+		glyphIdArray[68] =  108 (Offset = 0658)
+		glyphIdArray[69] =  110 (Offset = 065A)
+		glyphIdArray[70] =  160 (Offset = 065C)
+		glyphIdArray[71] =  111 (Offset = 065E)
+		glyphIdArray[72] =  113 (Offset = 0660)
+		glyphIdArray[73] =  112 (Offset = 0662)
+		glyphIdArray[74] =  114 (Offset = 0664)
+		glyphIdArray[75] =  115 (Offset = 0666)
+		glyphIdArray[76] =  117 (Offset = 0668)
+		glyphIdArray[77] =  116 (Offset = 066A)
+		glyphIdArray[78] =  118 (Offset = 066C)
+		glyphIdArray[79] =  119 (Offset = 066E)
+		glyphIdArray[80] =  232 (Offset = 0670)
+		glyphIdArray[81] =  120 (Offset = 0672)
+		glyphIdArray[82] =  122 (Offset = 0674)
+		glyphIdArray[83] =  121 (Offset = 0676)
+		glyphIdArray[84] =  123 (Offset = 0678)
+		glyphIdArray[85] =  125 (Offset = 067A)
+		glyphIdArray[86] =  124 (Offset = 067C)
+		glyphIdArray[87] =  183 (Offset = 067E)
+		glyphIdArray[88] =  161 (Offset = 0680)
+		glyphIdArray[89] =  127 (Offset = 0682)
+		glyphIdArray[90] =  126 (Offset = 0684)
+		glyphIdArray[91] =  128 (Offset = 0686)
+		glyphIdArray[92] =  129 (Offset = 0688)
+		glyphIdArray[93] =  234 (Offset = 068A)
+		glyphIdArray[94] =  236 (Offset = 068C)
+		glyphIdArray[95] =  185 (Offset = 068E)
+		glyphIdArray[96] =  406 (Offset = 0690)
+		glyphIdArray[97] =  407 (Offset = 0692)
+		glyphIdArray[98] =  258 (Offset = 0694)
+		glyphIdArray[99] =  259 (Offset = 0696)
+		glyphIdArray[100] =  260 (Offset = 0698)
+		glyphIdArray[101] =  261 (Offset = 069A)
+		glyphIdArray[102] =  251 (Offset = 069C)
+		glyphIdArray[103] =  252 (Offset = 069E)
+		glyphIdArray[104] =  408 (Offset = 06A0)
+		glyphIdArray[105] =  409 (Offset = 06A2)
+		glyphIdArray[106] =  410 (Offset = 06A4)
+		glyphIdArray[107] =  411 (Offset = 06A6)
+		glyphIdArray[108] =  253 (Offset = 06A8)
+		glyphIdArray[109] =  254 (Offset = 06AA)
+		glyphIdArray[110] =  262 (Offset = 06AC)
+		glyphIdArray[111] =  263 (Offset = 06AE)
+		glyphIdArray[112] =  264 (Offset = 06B0)
+		glyphIdArray[113] =  255 (Offset = 06B2)
+		glyphIdArray[114] =  412 (Offset = 06B4)
+		glyphIdArray[115] =  413 (Offset = 06B6)
+		glyphIdArray[116] =  414 (Offset = 06B8)
+		glyphIdArray[117] =  415 (Offset = 06BA)
+		glyphIdArray[118] =  416 (Offset = 06BC)
+		glyphIdArray[119] =  417 (Offset = 06BE)
+		glyphIdArray[120] =  265 (Offset = 06C0)
+		glyphIdArray[121] =  266 (Offset = 06C2)
+		glyphIdArray[122] =  267 (Offset = 06C4)
+		glyphIdArray[123] =  268 (Offset = 06C6)
+		glyphIdArray[124] =  418 (Offset = 06C8)
+		glyphIdArray[125] =  419 (Offset = 06CA)
+		glyphIdArray[126] =  246 (Offset = 06CC)
+		glyphIdArray[127] =  247 (Offset = 06CE)
+		glyphIdArray[128] =  420 (Offset = 06D0)
+		glyphIdArray[129] =  421 (Offset = 06D2)
+		glyphIdArray[130] =  422 (Offset = 06D4)
+		glyphIdArray[131] =  423 (Offset = 06D6)
+		glyphIdArray[132] =  424 (Offset = 06D8)
+		glyphIdArray[133] =  425 (Offset = 06DA)
+		glyphIdArray[134] =  426 (Offset = 06DC)
+		glyphIdArray[135] =  427 (Offset = 06DE)
+		glyphIdArray[136] =  428 (Offset = 06E0)
+		glyphIdArray[137] =  429 (Offset = 06E2)
+		glyphIdArray[138] =  430 (Offset = 06E4)
+		glyphIdArray[139] =  431 (Offset = 06E6)
+		glyphIdArray[140] =  432 (Offset = 06E8)
+		glyphIdArray[141] =  433 (Offset = 06EA)
+		glyphIdArray[142] =  434 (Offset = 06EC)
+		glyphIdArray[143] =  435 (Offset = 06EE)
+		glyphIdArray[144] =  248 (Offset = 06F0)
+		glyphIdArray[145] =  213 (Offset = 06F2)
+		glyphIdArray[146] =  394 (Offset = 06F4)
+		glyphIdArray[147] =  395 (Offset = 06F6)
+		glyphIdArray[148] =  436 (Offset = 06F8)
+		glyphIdArray[149] =  437 (Offset = 06FA)
+		glyphIdArray[150] =  438 (Offset = 06FC)
+		glyphIdArray[151] =  439 (Offset = 06FE)
+		glyphIdArray[152] =  440 (Offset = 0700)
+		glyphIdArray[153] =  269 (Offset = 0702)
+		glyphIdArray[154] =  270 (Offset = 0704)
+		glyphIdArray[155] =  441 (Offset = 0706)
+		glyphIdArray[156] =  442 (Offset = 0708)
+		glyphIdArray[157] =  271 (Offset = 070A)
+		glyphIdArray[158] =  272 (Offset = 070C)
+		glyphIdArray[159] =  273 (Offset = 070E)
+		glyphIdArray[160] =  274 (Offset = 0710)
+		glyphIdArray[161] =  224 (Offset = 0712)
+		glyphIdArray[162] =  225 (Offset = 0714)
+		glyphIdArray[163] =  275 (Offset = 0716)
+		glyphIdArray[164] =  276 (Offset = 0718)
+		glyphIdArray[165] =  443 (Offset = 071A)
+		glyphIdArray[166] =  444 (Offset = 071C)
+		glyphIdArray[167] =  277 (Offset = 071E)
+		glyphIdArray[168] =  278 (Offset = 0720)
+		glyphIdArray[169] =  396 (Offset = 0722)
+		glyphIdArray[170] =  445 (Offset = 0724)
+		glyphIdArray[171] =  446 (Offset = 0726)
+		glyphIdArray[172] =  447 (Offset = 0728)
+		glyphIdArray[173] =  448 (Offset = 072A)
+		glyphIdArray[174] =  449 (Offset = 072C)
+		glyphIdArray[175] =  450 (Offset = 072E)
+		glyphIdArray[176] =  279 (Offset = 0730)
+		glyphIdArray[177] =  280 (Offset = 0732)
+		glyphIdArray[178] =  175 (Offset = 0734)
+		glyphIdArray[179] =  176 (Offset = 0736)
+		glyphIdArray[180] =  281 (Offset = 0738)
+		glyphIdArray[181] =  282 (Offset = 073A)
+		glyphIdArray[182] =  451 (Offset = 073C)
+		glyphIdArray[183] =  452 (Offset = 073E)
+		glyphIdArray[184] =  283 (Offset = 0740)
+		glyphIdArray[185] =  284 (Offset = 0742)
+		glyphIdArray[186] =  285 (Offset = 0744)
+		glyphIdArray[187] =  286 (Offset = 0746)
+		glyphIdArray[188] =  453 (Offset = 0748)
+		glyphIdArray[189] =  454 (Offset = 074A)
+		glyphIdArray[190] =  249 (Offset = 074C)
+		glyphIdArray[191] =  250 (Offset = 074E)
+		glyphIdArray[192] =  226 (Offset = 0750)
+		glyphIdArray[193] =  227 (Offset = 0752)
+		glyphIdArray[194] =  287 (Offset = 0754)
+		glyphIdArray[195] =  288 (Offset = 0756)
+		glyphIdArray[196] =  289 (Offset = 0758)
+		glyphIdArray[197] =  290 (Offset = 075A)
+		glyphIdArray[198] =  455 (Offset = 075C)
+		glyphIdArray[199] =  456 (Offset = 075E)
+		glyphIdArray[200] =  457 (Offset = 0760)
+		glyphIdArray[201] =  458 (Offset = 0762)
+		glyphIdArray[202] =  459 (Offset = 0764)
+		glyphIdArray[203] =  460 (Offset = 0766)
+		glyphIdArray[204] =  461 (Offset = 0768)
+		glyphIdArray[205] =  462 (Offset = 076A)
+		glyphIdArray[206] =  291 (Offset = 076C)
+		glyphIdArray[207] =  292 (Offset = 076E)
+		glyphIdArray[208] =  293 (Offset = 0770)
+		glyphIdArray[209] =  294 (Offset = 0772)
+		glyphIdArray[210] =  463 (Offset = 0774)
+		glyphIdArray[211] =  464 (Offset = 0776)
+		glyphIdArray[212] =  465 (Offset = 0778)
+		glyphIdArray[213] =  466 (Offset = 077A)
+		glyphIdArray[214] =  467 (Offset = 077C)
+		glyphIdArray[215] =  468 (Offset = 077E)
+		glyphIdArray[216] =  186 (Offset = 0780)
+		glyphIdArray[217] =  295 (Offset = 0782)
+		glyphIdArray[218] =  296 (Offset = 0784)
+		glyphIdArray[219] =  297 (Offset = 0786)
+		glyphIdArray[220] =  298 (Offset = 0788)
+		glyphIdArray[221] =  228 (Offset = 078A)
+		glyphIdArray[222] =  229 (Offset = 078C)
+		glyphIdArray[223] =  469 (Offset = 078E)
+		glyphIdArray[224] =  214 (Offset = 0790)
+		glyphIdArray[225] =  223 (Offset = 0792)
+		glyphIdArray[226] =  217 (Offset = 0794)
+		glyphIdArray[227] =  218 (Offset = 0796)
+		glyphIdArray[228] =  219 (Offset = 0798)
+		glyphIdArray[229] =  222 (Offset = 079A)
+		glyphIdArray[230] =  215 (Offset = 079C)
+		glyphIdArray[231] =  221 (Offset = 079E)
+		glyphIdArray[232] =  495 (Offset = 07A0)
+		glyphIdArray[233] =  496 (Offset = 07A2)
+		glyphIdArray[234] =  497 (Offset = 07A4)
+		glyphIdArray[235] =  476 (Offset = 07A6)
+		glyphIdArray[236] =  498 (Offset = 07A8)
+		glyphIdArray[237] =  499 (Offset = 07AA)
+		glyphIdArray[238] =  500 (Offset = 07AC)
+		glyphIdArray[239] =  502 (Offset = 07AE)
+		glyphIdArray[240] =  503 (Offset = 07B0)
+		glyphIdArray[241] =  504 (Offset = 07B2)
+		glyphIdArray[242] =  505 (Offset = 07B4)
+		glyphIdArray[243] =  506 (Offset = 07B6)
+		glyphIdArray[244] =  299 (Offset = 07B8)
+		glyphIdArray[245] =  507 (Offset = 07BA)
+		glyphIdArray[246] =  508 (Offset = 07BC)
+		glyphIdArray[247] =  509 (Offset = 07BE)
+		glyphIdArray[248] =  510 (Offset = 07C0)
+		glyphIdArray[249] =  300 (Offset = 07C2)
+		glyphIdArray[250] =  511 (Offset = 07C4)
+		glyphIdArray[251] =  512 (Offset = 07C6)
+		glyphIdArray[252] =  513 (Offset = 07C8)
+		glyphIdArray[253] =  514 (Offset = 07CA)
+		glyphIdArray[254] =  515 (Offset = 07CC)
+		glyphIdArray[255] =  516 (Offset = 07CE)
+		glyphIdArray[256] =  517 (Offset = 07D0)
+		glyphIdArray[257] =  518 (Offset = 07D2)
+		glyphIdArray[258] =  519 (Offset = 07D4)
+		glyphIdArray[259] =  520 (Offset = 07D6)
+		glyphIdArray[260] =  521 (Offset = 07D8)
+		glyphIdArray[261] =  522 (Offset = 07DA)
+		glyphIdArray[262] =  301 (Offset = 07DC)
+		glyphIdArray[263] =  523 (Offset = 07DE)
+		glyphIdArray[264] =  524 (Offset = 07E0)
+		glyphIdArray[265] =  525 (Offset = 07E2)
+		glyphIdArray[266] =  526 (Offset = 07E4)
+		glyphIdArray[267] =  527 (Offset = 07E6)
+		glyphIdArray[268] =  528 (Offset = 07E8)
+		glyphIdArray[269] =  529 (Offset = 07EA)
+		glyphIdArray[270] =  530 (Offset = 07EC)
+		glyphIdArray[271] =  531 (Offset = 07EE)
+		glyphIdArray[272] =  532 (Offset = 07F0)
+		glyphIdArray[273] =  302 (Offset = 07F2)
+		glyphIdArray[274] =  533 (Offset = 07F4)
+		glyphIdArray[275] =  534 (Offset = 07F6)
+		glyphIdArray[276] =  303 (Offset = 07F8)
+		glyphIdArray[277] =  304 (Offset = 07FA)
+		glyphIdArray[278] =  535 (Offset = 07FC)
+		glyphIdArray[279] =  536 (Offset = 07FE)
+		glyphIdArray[280] =  537 (Offset = 0800)
+		glyphIdArray[281] =  538 (Offset = 0802)
+		glyphIdArray[282] =  539 (Offset = 0804)
+		glyphIdArray[283] =  540 (Offset = 0806)
+		glyphIdArray[284] =  541 (Offset = 0808)
+		glyphIdArray[285] =  542 (Offset = 080A)
+		glyphIdArray[286] =  543 (Offset = 080C)
+		glyphIdArray[287] =  544 (Offset = 080E)
+		glyphIdArray[288] =  652 (Offset = 0810)
+		glyphIdArray[289] =  545 (Offset = 0812)
+		glyphIdArray[290] =  546 (Offset = 0814)
+		glyphIdArray[291] =  305 (Offset = 0816)
+		glyphIdArray[292] =  306 (Offset = 0818)
+		glyphIdArray[293] =  547 (Offset = 081A)
+		glyphIdArray[294] =  307 (Offset = 081C)
+		glyphIdArray[295] =  548 (Offset = 081E)
+		glyphIdArray[296] =  549 (Offset = 0820)
+		glyphIdArray[297] =  550 (Offset = 0822)
+		glyphIdArray[298] =  551 (Offset = 0824)
+		glyphIdArray[299] =  552 (Offset = 0826)
+		glyphIdArray[300] =  553 (Offset = 0828)
+		glyphIdArray[301] =  554 (Offset = 082A)
+		glyphIdArray[302] =  555 (Offset = 082C)
+		glyphIdArray[303] =  648 (Offset = 082E)
+		glyphIdArray[304] =  649 (Offset = 0830)
+		glyphIdArray[305] = 1294 (Offset = 0832)
+		glyphIdArray[306] = 1295 (Offset = 0834)
+		glyphIdArray[307] =  751 (Offset = 0836)
+		glyphIdArray[308] =  897 (Offset = 0838)
+		glyphIdArray[309] =  899 (Offset = 083A)
+		glyphIdArray[310] =  901 (Offset = 083C)
+		glyphIdArray[311] =  903 (Offset = 083E)
+		glyphIdArray[312] =  905 (Offset = 0840)
+		glyphIdArray[313] =  909 (Offset = 0842)
+		glyphIdArray[314] =  911 (Offset = 0844)
+		glyphIdArray[315] =  915 (Offset = 0846)
+		glyphIdArray[316] =  917 (Offset = 0848)
+		glyphIdArray[317] =  921 (Offset = 084A)
+		glyphIdArray[318] =  925 (Offset = 084C)
+		glyphIdArray[319] =  929 (Offset = 084E)
+		glyphIdArray[320] =  933 (Offset = 0850)
+		glyphIdArray[321] =  937 (Offset = 0852)
+		glyphIdArray[322] =  939 (Offset = 0854)
+		glyphIdArray[323] =  941 (Offset = 0856)
+		glyphIdArray[324] =  943 (Offset = 0858)
+		glyphIdArray[325] =  945 (Offset = 085A)
+		glyphIdArray[326] =  949 (Offset = 085C)
+		glyphIdArray[327] =  953 (Offset = 085E)
+		glyphIdArray[328] =  957 (Offset = 0860)
+		glyphIdArray[329] =  961 (Offset = 0862)
+		glyphIdArray[330] =  965 (Offset = 0864)
+		glyphIdArray[331] =  969 (Offset = 0866)
+		glyphIdArray[332] =  973 (Offset = 0868)
+		glyphIdArray[333] =  752 (Offset = 086A)
+		glyphIdArray[334] =  977 (Offset = 086C)
+		glyphIdArray[335] =  981 (Offset = 086E)
+		glyphIdArray[336] =  985 (Offset = 0870)
+		glyphIdArray[337] =  989 (Offset = 0872)
+		glyphIdArray[338] =  993 (Offset = 0874)
+		glyphIdArray[339] =  997 (Offset = 0876)
+		glyphIdArray[340] = 1001 (Offset = 0878)
+		glyphIdArray[341] = 1005 (Offset = 087A)
+		glyphIdArray[342] = 1007 (Offset = 087C)
+		glyphIdArray[343] = 1009 (Offset = 087E)
+		glyphIdArray[344] =  753 (Offset = 0880)
+		glyphIdArray[345] =  754 (Offset = 0882)
+		glyphIdArray[346] =  755 (Offset = 0884)
+		glyphIdArray[347] =  756 (Offset = 0886)
+		glyphIdArray[348] =  757 (Offset = 0888)
+		glyphIdArray[349] =  758 (Offset = 088A)
+		glyphIdArray[350] =  759 (Offset = 088C)
+		glyphIdArray[351] =  760 (Offset = 088E)
+		glyphIdArray[352] =  774 (Offset = 0890)
+		glyphIdArray[353] =  797 (Offset = 0892)
+		glyphIdArray[354] =  761 (Offset = 0894)
+		glyphIdArray[355] =  762 (Offset = 0896)
+		glyphIdArray[356] =  763 (Offset = 0898)
+		glyphIdArray[357] =  764 (Offset = 089A)
+		glyphIdArray[358] =  778 (Offset = 089C)
+		glyphIdArray[359] =  779 (Offset = 089E)
+		glyphIdArray[360] =  780 (Offset = 08A0)
+		glyphIdArray[361] =  768 (Offset = 08A2)
+		glyphIdArray[362] =  769 (Offset = 08A4)
+		glyphIdArray[363] =  770 (Offset = 08A6)
+		glyphIdArray[364] = 1186 (Offset = 08A8)
+		glyphIdArray[365] = 1187 (Offset = 08AA)
+		glyphIdArray[366] = 1188 (Offset = 08AC)
+		glyphIdArray[367] = 1189 (Offset = 08AE)
+		glyphIdArray[368] = 1190 (Offset = 08B0)
+		glyphIdArray[369] = 1191 (Offset = 08B2)
+		glyphIdArray[370] = 1192 (Offset = 08B4)
+		glyphIdArray[371] = 1193 (Offset = 08B6)
+		glyphIdArray[372] = 1194 (Offset = 08B8)
+		glyphIdArray[373] = 1195 (Offset = 08BA)
+		glyphIdArray[374] = 1196 (Offset = 08BC)
+		glyphIdArray[375] = 1197 (Offset = 08BE)
+		glyphIdArray[376] = 1198 (Offset = 08C0)
+		glyphIdArray[377] = 1199 (Offset = 08C2)
+		glyphIdArray[378] = 1200 (Offset = 08C4)
+		glyphIdArray[379] = 1201 (Offset = 08C6)
+		glyphIdArray[380] = 1202 (Offset = 08C8)
+		glyphIdArray[381] = 1203 (Offset = 08CA)
+		glyphIdArray[382] = 1204 (Offset = 08CC)
+		glyphIdArray[383] = 1205 (Offset = 08CE)
+		glyphIdArray[384] = 1206 (Offset = 08D0)
+		glyphIdArray[385] = 1207 (Offset = 08D2)
+		glyphIdArray[386] = 1208 (Offset = 08D4)
+		glyphIdArray[387] = 1209 (Offset = 08D6)
+		glyphIdArray[388] = 1210 (Offset = 08D8)
+		glyphIdArray[389] = 1211 (Offset = 08DA)
+		glyphIdArray[390] = 1212 (Offset = 08DC)
+		glyphIdArray[391] = 1213 (Offset = 08DE)
+		glyphIdArray[392] = 1214 (Offset = 08E0)
+		glyphIdArray[393] = 1215 (Offset = 08E2)
+		glyphIdArray[394] = 1216 (Offset = 08E4)
+		glyphIdArray[395] = 1217 (Offset = 08E6)
+		glyphIdArray[396] = 1218 (Offset = 08E8)
+		glyphIdArray[397] = 1219 (Offset = 08EA)
+		glyphIdArray[398] = 1220 (Offset = 08EC)
+		glyphIdArray[399] = 1221 (Offset = 08EE)
+		glyphIdArray[400] = 1222 (Offset = 08F0)
+		glyphIdArray[401] = 1223 (Offset = 08F2)
+		glyphIdArray[402] = 1224 (Offset = 08F4)
+		glyphIdArray[403] = 1225 (Offset = 08F6)
+		glyphIdArray[404] = 1226 (Offset = 08F8)
+		glyphIdArray[405] = 1227 (Offset = 08FA)
+		glyphIdArray[406] = 1228 (Offset = 08FC)
+		glyphIdArray[407] = 1229 (Offset = 08FE)
+		glyphIdArray[408] = 1230 (Offset = 0900)
+		glyphIdArray[409] = 1231 (Offset = 0902)
+		glyphIdArray[410] = 1232 (Offset = 0904)
+		glyphIdArray[411] = 1233 (Offset = 0906)
+		glyphIdArray[412] = 1234 (Offset = 0908)
+		glyphIdArray[413] = 1235 (Offset = 090A)
+		glyphIdArray[414] = 1236 (Offset = 090C)
+		glyphIdArray[415] = 1237 (Offset = 090E)
+		glyphIdArray[416] = 1238 (Offset = 0910)
+		glyphIdArray[417] = 1239 (Offset = 0912)
+		glyphIdArray[418] = 1240 (Offset = 0914)
+		glyphIdArray[419] = 1241 (Offset = 0916)
+		glyphIdArray[420] = 1242 (Offset = 0918)
+		glyphIdArray[421] = 1243 (Offset = 091A)
+		glyphIdArray[422] = 1244 (Offset = 091C)
+		glyphIdArray[423] = 1245 (Offset = 091E)
+		glyphIdArray[424] = 1246 (Offset = 0920)
+		glyphIdArray[425] = 1247 (Offset = 0922)
+		glyphIdArray[426] = 1248 (Offset = 0924)
+		glyphIdArray[427] = 1249 (Offset = 0926)
+		glyphIdArray[428] = 1250 (Offset = 0928)
+		glyphIdArray[429] = 1251 (Offset = 092A)
+		glyphIdArray[430] = 1252 (Offset = 092C)
+		glyphIdArray[431] = 1253 (Offset = 092E)
+		glyphIdArray[432] = 1254 (Offset = 0930)
+		glyphIdArray[433] = 1255 (Offset = 0932)
+		glyphIdArray[434] = 1256 (Offset = 0934)
+		glyphIdArray[435] = 1257 (Offset = 0936)
+		glyphIdArray[436] = 1258 (Offset = 0938)
+		glyphIdArray[437] = 1259 (Offset = 093A)
+		glyphIdArray[438] = 1260 (Offset = 093C)
+		glyphIdArray[439] = 1261 (Offset = 093E)
+		glyphIdArray[440] = 1262 (Offset = 0940)
+		glyphIdArray[441] = 1263 (Offset = 0942)
+		glyphIdArray[442] = 1264 (Offset = 0944)
+		glyphIdArray[443] = 1265 (Offset = 0946)
+		glyphIdArray[444] = 1266 (Offset = 0948)
+		glyphIdArray[445] = 1267 (Offset = 094A)
+		glyphIdArray[446] =  483 (Offset = 094C)
+		glyphIdArray[447] =  484 (Offset = 094E)
+		glyphIdArray[448] = 1268 (Offset = 0950)
+		glyphIdArray[449] = 1269 (Offset = 0952)
+		glyphIdArray[450] = 1270 (Offset = 0954)
+		glyphIdArray[451] = 1271 (Offset = 0956)
+		glyphIdArray[452] = 1272 (Offset = 0958)
+		glyphIdArray[453] = 1273 (Offset = 095A)
+		glyphIdArray[454] =  177 (Offset = 095C)
+		glyphIdArray[455] =  178 (Offset = 095E)
+		glyphIdArray[456] =  650 (Offset = 0960)
+		glyphIdArray[457] =  308 (Offset = 0962)
+		glyphIdArray[458] =  181 (Offset = 0964)
+		glyphIdArray[459] =  182 (Offset = 0966)
+		glyphIdArray[460] =  195 (Offset = 0968)
+		glyphIdArray[461] =  485 (Offset = 096A)
+		glyphIdArray[462] =  179 (Offset = 096C)
+		glyphIdArray[463] =  180 (Offset = 096E)
+		glyphIdArray[464] =  196 (Offset = 0970)
+		glyphIdArray[465] =  130 (Offset = 0972)
+		glyphIdArray[466] =  193 (Offset = 0974)
+		glyphIdArray[467] =  135 (Offset = 0976)
+		glyphIdArray[468] =  245 (Offset = 0978)
+		glyphIdArray[469] =  487 (Offset = 097A)
+		glyphIdArray[470] =  704 (Offset = 097C)
+		glyphIdArray[471] = 1149 (Offset = 097E)
+		glyphIdArray[472] =  188 (Offset = 0980)
+		glyphIdArray[473] =  153 (Offset = 0982)
+		glyphIdArray[474] =  237 (Offset = 0984)
+		glyphIdArray[475] =  194 (Offset = 0986)
+		glyphIdArray[476] =  165 (Offset = 0988)
+		glyphIdArray[477] =  146 (Offset = 098A)
+		glyphIdArray[478] =  319 (Offset = 098C)
+		glyphIdArray[479] =  143 (Offset = 098E)
+		glyphIdArray[480] =  321 (Offset = 0990)
+		glyphIdArray[481] =  374 (Offset = 0992)
+		glyphIdArray[482] =  401 (Offset = 0994)
+		glyphIdArray[483] =  402 (Offset = 0996)
+		glyphIdArray[484] =  403 (Offset = 0998)
+		glyphIdArray[485] =  375 (Offset = 099A)
+		glyphIdArray[486] =  184 (Offset = 099C)
+		glyphIdArray[487] =  380 (Offset = 099E)
+		glyphIdArray[488] =  493 (Offset = 09A0)
+		glyphIdArray[489] =  494 (Offset = 09A2)
+		glyphIdArray[490] = 1136 (Offset = 09A4)
+		glyphIdArray[491] = 1137 (Offset = 09A6)
+		glyphIdArray[492] = 1152 (Offset = 09A8)
+		glyphIdArray[493] = 1138 (Offset = 09AA)
+		glyphIdArray[494] = 1155 (Offset = 09AC)
+		glyphIdArray[495] = 1140 (Offset = 09AE)
+		glyphIdArray[496] = 1142 (Offset = 09B0)
+		glyphIdArray[497] = 1156 (Offset = 09B2)
+		glyphIdArray[498] = 1141 (Offset = 09B4)
+		glyphIdArray[499] = 1157 (Offset = 09B6)
+		glyphIdArray[500] = 1144 (Offset = 09B8)
+		glyphIdArray[501] = 1158 (Offset = 09BA)
+		glyphIdArray[502] = 1159 (Offset = 09BC)
+		glyphIdArray[503] = 1160 (Offset = 09BE)
+		glyphIdArray[504] = 1161 (Offset = 09C0)
+		glyphIdArray[505] = 1162 (Offset = 09C2)
+		glyphIdArray[506] = 1163 (Offset = 09C4)
+		glyphIdArray[507] = 1143 (Offset = 09C6)
+		glyphIdArray[508] = 1171 (Offset = 09C8)
+		glyphIdArray[509] = 1164 (Offset = 09CA)
+		glyphIdArray[510] = 1165 (Offset = 09CC)
+		glyphIdArray[511] = 1166 (Offset = 09CE)
+		glyphIdArray[512] = 1167 (Offset = 09D0)
+		glyphIdArray[513] = 1168 (Offset = 09D2)
+		glyphIdArray[514] = 1173 (Offset = 09D4)
+		glyphIdArray[515] = 1177 (Offset = 09D6)
+		glyphIdArray[516] = 1178 (Offset = 09D8)
+		glyphIdArray[517] = 1179 (Offset = 09DA)
+		glyphIdArray[518] = 1180 (Offset = 09DC)
+		glyphIdArray[519] = 1181 (Offset = 09DE)
+		glyphIdArray[520] = 1174 (Offset = 09E0)
+		glyphIdArray[521] = 1175 (Offset = 09E2)
+		glyphIdArray[522] = 1176 (Offset = 09E4)
+		glyphIdArray[523] = 1148 (Offset = 09E6)
+		glyphIdArray[524] = 1182 (Offset = 09E8)
+		glyphIdArray[525] = 1183 (Offset = 09EA)
+		glyphIdArray[526] = 1184 (Offset = 09EC)
+		glyphIdArray[527] = 1185 (Offset = 09EE)
+		glyphIdArray[528] =  734 (Offset = 09F0)
+		glyphIdArray[529] =  735 (Offset = 09F2)
+		glyphIdArray[530] =  736 (Offset = 09F4)
+		glyphIdArray[531] =  737 (Offset = 09F6)
+		glyphIdArray[532] =  738 (Offset = 09F8)
+		glyphIdArray[533] =  739 (Offset = 09FA)
+		glyphIdArray[534] =  740 (Offset = 09FC)
+		glyphIdArray[535] =  741 (Offset = 09FE)
+		glyphIdArray[536] =  742 (Offset = 0A00)
+		glyphIdArray[537] =  743 (Offset = 0A02)
+		glyphIdArray[538] =  797 (Offset = 0A04)
+		glyphIdArray[539] =  798 (Offset = 0A06)
+		glyphIdArray[540] =  821 (Offset = 0A08)
+		glyphIdArray[541] =  822 (Offset = 0A0A)
+		glyphIdArray[542] = 1011 (Offset = 0A0C)
+		glyphIdArray[543] = 1012 (Offset = 0A0E)
+
+		Which Means:
+		   1. Char 0020 -> Index 3
+		      Char 0021 -> Index 4
+		      Char 0022 -> Index 5
+		      Char 0023 -> Index 6
+		      Char 0024 -> Index 7
+		      Char 0025 -> Index 8
+		      Char 0026 -> Index 9
+		      Char 0027 -> Index 10
+		      Char 0028 -> Index 11
+		      Char 0029 -> Index 12
+		      Char 002A -> Index 13
+		      Char 002B -> Index 14
+		      Char 002C -> Index 15
+		      Char 002D -> Index 16
+		      Char 002E -> Index 17
+		      Char 002F -> Index 18
+		      Char 0030 -> Index 19
+		      Char 0031 -> Index 20
+		      Char 0032 -> Index 21
+		      Char 0033 -> Index 22
+		      Char 0034 -> Index 23
+		      Char 0035 -> Index 24
+		      Char 0036 -> Index 25
+		      Char 0037 -> Index 26
+		      Char 0038 -> Index 27
+		      Char 0039 -> Index 28
+		      Char 003A -> Index 29
+		      Char 003B -> Index 30
+		      Char 003C -> Index 31
+		      Char 003D -> Index 32
+		      Char 003E -> Index 33
+		      Char 003F -> Index 34
+		      Char 0040 -> Index 35
+		      Char 0041 -> Index 36
+		      Char 0042 -> Index 37
+		      Char 0043 -> Index 38
+		      Char 0044 -> Index 39
+		      Char 0045 -> Index 40
+		      Char 0046 -> Index 41
+		      Char 0047 -> Index 42
+		      Char 0048 -> Index 43
+		      Char 0049 -> Index 44
+		      Char 004A -> Index 45
+		      Char 004B -> Index 46
+		      Char 004C -> Index 47
+		      Char 004D -> Index 48
+		      Char 004E -> Index 49
+		      Char 004F -> Index 50
+		      Char 0050 -> Index 51
+		      Char 0051 -> Index 52
+		      Char 0052 -> Index 53
+		      Char 0053 -> Index 54
+		      Char 0054 -> Index 55
+		      Char 0055 -> Index 56
+		      Char 0056 -> Index 57
+		      Char 0057 -> Index 58
+		      Char 0058 -> Index 59
+		      Char 0059 -> Index 60
+		      Char 005A -> Index 61
+		      Char 005B -> Index 62
+		      Char 005C -> Index 63
+		      Char 005D -> Index 64
+		      Char 005E -> Index 65
+		      Char 005F -> Index 66
+		      Char 0060 -> Index 67
+		      Char 0061 -> Index 68
+		      Char 0062 -> Index 69
+		      Char 0063 -> Index 70
+		      Char 0064 -> Index 71
+		      Char 0065 -> Index 72
+		      Char 0066 -> Index 73
+		      Char 0067 -> Index 74
+		      Char 0068 -> Index 75
+		      Char 0069 -> Index 76
+		      Char 006A -> Index 77
+		      Char 006B -> Index 78
+		      Char 006C -> Index 79
+		      Char 006D -> Index 80
+		      Char 006E -> Index 81
+		      Char 006F -> Index 82
+		      Char 0070 -> Index 83
+		      Char 0071 -> Index 84
+		      Char 0072 -> Index 85
+		      Char 0073 -> Index 86
+		      Char 0074 -> Index 87
+		      Char 0075 -> Index 88
+		      Char 0076 -> Index 89
+		      Char 0077 -> Index 90
+		      Char 0078 -> Index 91
+		      Char 0079 -> Index 92
+		      Char 007A -> Index 93
+		      Char 007B -> Index 94
+		      Char 007C -> Index 95
+		      Char 007D -> Index 96
+		      Char 007E -> Index 97
+		   2. Char 00A0 -> Index 3
+		      Char 00A1 -> Index 163
+		      Char 00A2 -> Index 132
+		      Char 00A3 -> Index 133
+		      Char 00A4 -> Index 1127
+		      Char 00A5 -> Index 150
+		      Char 00A6 -> Index 230
+		      Char 00A7 -> Index 134
+		      Char 00A8 -> Index 142
+		      Char 00A9 -> Index 139
+		      Char 00AA -> Index 157
+		      Char 00AB -> Index 169
+		      Char 00AC -> Index 164
+		      Char 00AD -> Index 16
+		      Char 00AE -> Index 138
+		      Char 00AF -> Index 256
+		      Char 00B0 -> Index 131
+		      Char 00B1 -> Index 147
+		      Char 00B2 -> Index 240
+		      Char 00B3 -> Index 241
+		      Char 00B4 -> Index 141
+		      Char 00B5 -> Index 151
+		      Char 00B6 -> Index 136
+		      Char 00B7 -> Index 194
+		      Char 00B8 -> Index 220
+		      Char 00B9 -> Index 239
+		      Char 00BA -> Index 158
+		      Char 00BB -> Index 170
+		      Char 00BC -> Index 243
+		      Char 00BD -> Index 242
+		      Char 00BE -> Index 244
+		      Char 00BF -> Index 162
+		      Char 00C0 -> Index 172
+		      Char 00C1 -> Index 200
+		      Char 00C2 -> Index 198
+		      Char 00C3 -> Index 173
+		      Char 00C4 -> Index 98
+		      Char 00C5 -> Index 99
+		      Char 00C6 -> Index 144
+		      Char 00C7 -> Index 100
+		      Char 00C8 -> Index 202
+		      Char 00C9 -> Index 101
+		      Char 00CA -> Index 199
+		      Char 00CB -> Index 201
+		      Char 00CC -> Index 206
+		      Char 00CD -> Index 203
+		      Char 00CE -> Index 204
+		      Char 00CF -> Index 205
+		      Char 00D0 -> Index 231
+		      Char 00D1 -> Index 102
+		      Char 00D2 -> Index 209
+		      Char 00D3 -> Index 207
+		      Char 00D4 -> Index 208
+		      Char 00D5 -> Index 174
+		      Char 00D6 -> Index 103
+		      Char 00D7 -> Index 238
+		      Char 00D8 -> Index 145
+		      Char 00D9 -> Index 212
+		      Char 00DA -> Index 210
+		      Char 00DB -> Index 211
+		      Char 00DC -> Index 104
+		      Char 00DD -> Index 233
+		      Char 00DE -> Index 235
+		      Char 00DF -> Index 137
+		      Char 00E0 -> Index 106
+		      Char 00E1 -> Index 105
+		      Char 00E2 -> Index 107
+		      Char 00E3 -> Index 109
+		      Char 00E4 -> Index 108
+		      Char 00E5 -> Index 110
+		      Char 00E6 -> Index 160
+		      Char 00E7 -> Index 111
+		      Char 00E8 -> Index 113
+		      Char 00E9 -> Index 112
+		      Char 00EA -> Index 114
+		      Char 00EB -> Index 115
+		      Char 00EC -> Index 117
+		      Char 00ED -> Index 116
+		      Char 00EE -> Index 118
+		      Char 00EF -> Index 119
+		      Char 00F0 -> Index 232
+		      Char 00F1 -> Index 120
+		      Char 00F2 -> Index 122
+		      Char 00F3 -> Index 121
+		      Char 00F4 -> Index 123
+		      Char 00F5 -> Index 125
+		      Char 00F6 -> Index 124
+		      Char 00F7 -> Index 183
+		      Char 00F8 -> Index 161
+		      Char 00F9 -> Index 127
+		      Char 00FA -> Index 126
+		      Char 00FB -> Index 128
+		      Char 00FC -> Index 129
+		      Char 00FD -> Index 234
+		      Char 00FE -> Index 236
+		      Char 00FF -> Index 185
+		      Char 0100 -> Index 406
+		      Char 0101 -> Index 407
+		      Char 0102 -> Index 258
+		      Char 0103 -> Index 259
+		      Char 0104 -> Index 260
+		      Char 0105 -> Index 261
+		      Char 0106 -> Index 251
+		      Char 0107 -> Index 252
+		      Char 0108 -> Index 408
+		      Char 0109 -> Index 409
+		      Char 010A -> Index 410
+		      Char 010B -> Index 411
+		      Char 010C -> Index 253
+		      Char 010D -> Index 254
+		      Char 010E -> Index 262
+		      Char 010F -> Index 263
+		      Char 0110 -> Index 264
+		      Char 0111 -> Index 255
+		      Char 0112 -> Index 412
+		      Char 0113 -> Index 413
+		      Char 0114 -> Index 414
+		      Char 0115 -> Index 415
+		      Char 0116 -> Index 416
+		      Char 0117 -> Index 417
+		      Char 0118 -> Index 265
+		      Char 0119 -> Index 266
+		      Char 011A -> Index 267
+		      Char 011B -> Index 268
+		      Char 011C -> Index 418
+		      Char 011D -> Index 419
+		      Char 011E -> Index 246
+		      Char 011F -> Index 247
+		      Char 0120 -> Index 420
+		      Char 0121 -> Index 421
+		      Char 0122 -> Index 422
+		      Char 0123 -> Index 423
+		      Char 0124 -> Index 424
+		      Char 0125 -> Index 425
+		      Char 0126 -> Index 426
+		      Char 0127 -> Index 427
+		      Char 0128 -> Index 428
+		      Char 0129 -> Index 429
+		      Char 012A -> Index 430
+		      Char 012B -> Index 431
+		      Char 012C -> Index 432
+		      Char 012D -> Index 433
+		      Char 012E -> Index 434
+		      Char 012F -> Index 435
+		      Char 0130 -> Index 248
+		      Char 0131 -> Index 213
+		      Char 0132 -> Index 394
+		      Char 0133 -> Index 395
+		      Char 0134 -> Index 436
+		      Char 0135 -> Index 437
+		      Char 0136 -> Index 438
+		      Char 0137 -> Index 439
+		      Char 0138 -> Index 440
+		      Char 0139 -> Index 269
+		      Char 013A -> Index 270
+		      Char 013B -> Index 441
+		      Char 013C -> Index 442
+		      Char 013D -> Index 271
+		      Char 013E -> Index 272
+		      Char 013F -> Index 273
+		      Char 0140 -> Index 274
+		      Char 0141 -> Index 224
+		      Char 0142 -> Index 225
+		      Char 0143 -> Index 275
+		      Char 0144 -> Index 276
+		      Char 0145 -> Index 443
+		      Char 0146 -> Index 444
+		      Char 0147 -> Index 277
+		      Char 0148 -> Index 278
+		      Char 0149 -> Index 396
+		      Char 014A -> Index 445
+		      Char 014B -> Index 446
+		      Char 014C -> Index 447
+		      Char 014D -> Index 448
+		      Char 014E -> Index 449
+		      Char 014F -> Index 450
+		      Char 0150 -> Index 279
+		      Char 0151 -> Index 280
+		      Char 0152 -> Index 175
+		      Char 0153 -> Index 176
+		      Char 0154 -> Index 281
+		      Char 0155 -> Index 282
+		      Char 0156 -> Index 451
+		      Char 0157 -> Index 452
+		      Char 0158 -> Index 283
+		      Char 0159 -> Index 284
+		      Char 015A -> Index 285
+		      Char 015B -> Index 286
+		      Char 015C -> Index 453
+		      Char 015D -> Index 454
+		      Char 015E -> Index 249
+		      Char 015F -> Index 250
+		      Char 0160 -> Index 226
+		      Char 0161 -> Index 227
+		      Char 0162 -> Index 287
+		      Char 0163 -> Index 288
+		      Char 0164 -> Index 289
+		      Char 0165 -> Index 290
+		      Char 0166 -> Index 455
+		      Char 0167 -> Index 456
+		      Char 0168 -> Index 457
+		      Char 0169 -> Index 458
+		      Char 016A -> Index 459
+		      Char 016B -> Index 460
+		      Char 016C -> Index 461
+		      Char 016D -> Index 462
+		      Char 016E -> Index 291
+		      Char 016F -> Index 292
+		      Char 0170 -> Index 293
+		      Char 0171 -> Index 294
+		      Char 0172 -> Index 463
+		      Char 0173 -> Index 464
+		      Char 0174 -> Index 465
+		      Char 0175 -> Index 466
+		      Char 0176 -> Index 467
+		      Char 0177 -> Index 468
+		      Char 0178 -> Index 186
+		      Char 0179 -> Index 295
+		      Char 017A -> Index 296
+		      Char 017B -> Index 297
+		      Char 017C -> Index 298
+		      Char 017D -> Index 228
+		      Char 017E -> Index 229
+		      Char 017F -> Index 469
+		   3. Char 018F -> Index 1314
+		   4. Char 0192 -> Index 166
+		   5. Char 01A0 -> Index 1129
+		      Char 01A1 -> Index 1130
+		   6. Char 01AF -> Index 1131
+		      Char 01B0 -> Index 1132
+		   7. Char 01CD -> Index 1274
+		      Char 01CE -> Index 1275
+		      Char 01CF -> Index 1276
+		      Char 01D0 -> Index 1277
+		      Char 01D1 -> Index 1278
+		      Char 01D2 -> Index 1279
+		      Char 01D3 -> Index 1280
+		      Char 01D4 -> Index 1281
+		      Char 01D5 -> Index 1282
+		      Char 01D6 -> Index 1283
+		      Char 01D7 -> Index 1284
+		      Char 01D8 -> Index 1285
+		      Char 01D9 -> Index 1286
+		      Char 01DA -> Index 1287
+		      Char 01DB -> Index 1288
+		      Char 01DC -> Index 1289
+		   8. Char 01FA -> Index 470
+		      Char 01FB -> Index 471
+		      Char 01FC -> Index 472
+		      Char 01FD -> Index 473
+		      Char 01FE -> Index 474
+		      Char 01FF -> Index 475
+		   9. Char 0259 -> Index 1315
+		  10. Char 02C6 -> Index 214
+		      Char 02C7 -> Index 223
+		  11. Char 02C9 -> Index 216
+		  12. Char 02D8 -> Index 217
+		      Char 02D9 -> Index 218
+		      Char 02DA -> Index 219
+		      Char 02DB -> Index 222
+		      Char 02DC -> Index 215
+		      Char 02DD -> Index 221
+		  13. Char 0300 -> Index 1169
+		      Char 0301 -> Index 1170
+		  14. Char 0303 -> Index 1145
+		  15. Char 0309 -> Index 1139
+		  16. Char 0323 -> Index 1172
+		  17. Char 037E -> Index 30
+		  18. Char 0384 -> Index 495
+		      Char 0385 -> Index 496
+		      Char 0386 -> Index 497
+		      Char 0387 -> Index 476
+		      Char 0388 -> Index 498
+		      Char 0389 -> Index 499
+		      Char 038A -> Index 500
+		  19. Char 038C -> Index 501
+		  20. Char 038E -> Index 502
+		      Char 038F -> Index 503
+		      Char 0390 -> Index 504
+		      Char 0391 -> Index 505
+		      Char 0392 -> Index 506
+		      Char 0393 -> Index 299
+		      Char 0394 -> Index 507
+		      Char 0395 -> Index 508
+		      Char 0396 -> Index 509
+		      Char 0397 -> Index 510
+		      Char 0398 -> Index 300
+		      Char 0399 -> Index 511
+		      Char 039A -> Index 512
+		      Char 039B -> Index 513
+		      Char 039C -> Index 514
+		      Char 039D -> Index 515
+		      Char 039E -> Index 516
+		      Char 039F -> Index 517
+		      Char 03A0 -> Index 518
+		      Char 03A1 -> Index 519
+		  21. Char 03A3 -> Index 520
+		      Char 03A4 -> Index 521
+		      Char 03A5 -> Index 522
+		      Char 03A6 -> Index 301
+		      Char 03A7 -> Index 523
+		      Char 03A8 -> Index 524
+		      Char 03A9 -> Index 525
+		      Char 03AA -> Index 526
+		      Char 03AB -> Index 527
+		      Char 03AC -> Index 528
+		      Char 03AD -> Index 529
+		      Char 03AE -> Index 530
+		      Char 03AF -> Index 531
+		      Char 03B0 -> Index 532
+		      Char 03B1 -> Index 302
+		      Char 03B2 -> Index 533
+		      Char 03B3 -> Index 534
+		      Char 03B4 -> Index 303
+		      Char 03B5 -> Index 304
+		      Char 03B6 -> Index 535
+		      Char 03B7 -> Index 536
+		      Char 03B8 -> Index 537
+		      Char 03B9 -> Index 538
+		      Char 03BA -> Index 539
+		      Char 03BB -> Index 540
+		      Char 03BC -> Index 541
+		      Char 03BD -> Index 542
+		      Char 03BE -> Index 543
+		      Char 03BF -> Index 544
+		      Char 03C0 -> Index 652
+		      Char 03C1 -> Index 545
+		      Char 03C2 -> Index 546
+		      Char 03C3 -> Index 305
+		      Char 03C4 -> Index 306
+		      Char 03C5 -> Index 547
+		      Char 03C6 -> Index 307
+		      Char 03C7 -> Index 548
+		      Char 03C8 -> Index 549
+		      Char 03C9 -> Index 550
+		      Char 03CA -> Index 551
+		      Char 03CB -> Index 552
+		      Char 03CC -> Index 553
+		      Char 03CD -> Index 554
+		      Char 03CE -> Index 555
+		  22. Char 0401 -> Index 556
+		      Char 0402 -> Index 557
+		      Char 0403 -> Index 558
+		      Char 0404 -> Index 559
+		      Char 0405 -> Index 560
+		      Char 0406 -> Index 561
+		      Char 0407 -> Index 562
+		      Char 0408 -> Index 563
+		      Char 0409 -> Index 564
+		      Char 040A -> Index 565
+		      Char 040B -> Index 566
+		      Char 040C -> Index 567
+		  23. Char 040E -> Index 568
+		      Char 040F -> Index 569
+		      Char 0410 -> Index 570
+		      Char 0411 -> Index 571
+		      Char 0412 -> Index 572
+		      Char 0413 -> Index 573
+		      Char 0414 -> Index 574
+		      Char 0415 -> Index 575
+		      Char 0416 -> Index 576
+		      Char 0417 -> Index 577
+		      Char 0418 -> Index 578
+		      Char 0419 -> Index 579
+		      Char 041A -> Index 580
+		      Char 041B -> Index 581
+		      Char 041C -> Index 582
+		      Char 041D -> Index 583
+		      Char 041E -> Index 584
+		      Char 041F -> Index 585
+		      Char 0420 -> Index 586
+		      Char 0421 -> Index 587
+		      Char 0422 -> Index 588
+		      Char 0423 -> Index 589
+		      Char 0424 -> Index 590
+		      Char 0425 -> Index 591
+		      Char 0426 -> Index 592
+		      Char 0427 -> Index 593
+		      Char 0428 -> Index 594
+		      Char 0429 -> Index 595
+		      Char 042A -> Index 596
+		      Char 042B -> Index 597
+		      Char 042C -> Index 598
+		      Char 042D -> Index 599
+		      Char 042E -> Index 600
+		      Char 042F -> Index 601
+		      Char 0430 -> Index 602
+		      Char 0431 -> Index 603
+		      Char 0432 -> Index 604
+		      Char 0433 -> Index 605
+		      Char 0434 -> Index 606
+		      Char 0435 -> Index 607
+		      Char 0436 -> Index 608
+		      Char 0437 -> Index 609
+		      Char 0438 -> Index 610
+		      Char 0439 -> Index 611
+		      Char 043A -> Index 612
+		      Char 043B -> Index 613
+		      Char 043C -> Index 614
+		      Char 043D -> Index 615
+		      Char 043E -> Index 616
+		      Char 043F -> Index 617
+		      Char 0440 -> Index 618
+		      Char 0441 -> Index 619
+		      Char 0442 -> Index 620
+		      Char 0443 -> Index 621
+		      Char 0444 -> Index 622
+		      Char 0445 -> Index 623
+		      Char 0446 -> Index 624
+		      Char 0447 -> Index 625
+		      Char 0448 -> Index 626
+		      Char 0449 -> Index 627
+		      Char 044A -> Index 628
+		      Char 044B -> Index 629
+		      Char 044C -> Index 630
+		      Char 044D -> Index 631
+		      Char 044E -> Index 632
+		      Char 044F -> Index 633
+		  24. Char 0451 -> Index 634
+		      Char 0452 -> Index 635
+		      Char 0453 -> Index 636
+		      Char 0454 -> Index 637
+		      Char 0455 -> Index 638
+		      Char 0456 -> Index 639
+		      Char 0457 -> Index 640
+		      Char 0458 -> Index 641
+		      Char 0459 -> Index 642
+		      Char 045A -> Index 643
+		      Char 045B -> Index 644
+		      Char 045C -> Index 645
+		  25. Char 045E -> Index 646
+		      Char 045F -> Index 647
+		  26. Char 0490 -> Index 648
+		      Char 0491 -> Index 649
+		      Char 0492 -> Index 1294
+		      Char 0493 -> Index 1295
+		  27. Char 0496 -> Index 1296
+		      Char 0497 -> Index 1297
+		  28. Char 049A -> Index 1298
+		      Char 049B -> Index 1299
+		      Char 049C -> Index 1300
+		      Char 049D -> Index 1301
+		  29. Char 04A2 -> Index 1302
+		      Char 04A3 -> Index 1303
+		  30. Char 04AE -> Index 1304
+		      Char 04AF -> Index 1305
+		      Char 04B0 -> Index 1306
+		      Char 04B1 -> Index 1307
+		      Char 04B2 -> Index 1308
+		      Char 04B3 -> Index 1309
+		  31. Char 04B8 -> Index 1310
+		      Char 04B9 -> Index 1311
+		      Char 04BA -> Index 1312
+		      Char 04BB -> Index 1313
+		  32. Char 04D8 -> Index 1314
+		      Char 04D9 -> Index 1315
+		  33. Char 04E8 -> Index 1316
+		      Char 04E9 -> Index 1317
+		  34. Char 05B0 -> Index 653
+		      Char 05B1 -> Index 654
+		      Char 05B2 -> Index 655
+		      Char 05B3 -> Index 656
+		      Char 05B4 -> Index 657
+		      Char 05B5 -> Index 658
+		      Char 05B6 -> Index 659
+		      Char 05B7 -> Index 660
+		      Char 05B8 -> Index 661
+		      Char 05B9 -> Index 662
+		  35. Char 05BB -> Index 663
+		      Char 05BC -> Index 664
+		      Char 05BD -> Index 665
+		      Char 05BE -> Index 666
+		      Char 05BF -> Index 667
+		      Char 05C0 -> Index 668
+		      Char 05C1 -> Index 669
+		      Char 05C2 -> Index 670
+		      Char 05C3 -> Index 671
+		  36. Char 05D0 -> Index 672
+		      Char 05D1 -> Index 673
+		      Char 05D2 -> Index 674
+		      Char 05D3 -> Index 675
+		      Char 05D4 -> Index 676
+		      Char 05D5 -> Index 677
+		      Char 05D6 -> Index 678
+		      Char 05D7 -> Index 679
+		      Char 05D8 -> Index 680
+		      Char 05D9 -> Index 681
+		      Char 05DA -> Index 682
+		      Char 05DB -> Index 683
+		      Char 05DC -> Index 684
+		      Char 05DD -> Index 685
+		      Char 05DE -> Index 686
+		      Char 05DF -> Index 687
+		      Char 05E0 -> Index 688
+		      Char 05E1 -> Index 689
+		      Char 05E2 -> Index 690
+		      Char 05E3 -> Index 691
+		      Char 05E4 -> Index 692
+		      Char 05E5 -> Index 693
+		      Char 05E6 -> Index 694
+		      Char 05E7 -> Index 695
+		      Char 05E8 -> Index 696
+		      Char 05E9 -> Index 697
+		      Char 05EA -> Index 698
+		  37. Char 05F0 -> Index 699
+		      Char 05F1 -> Index 700
+		      Char 05F2 -> Index 701
+		      Char 05F3 -> Index 702
+		      Char 05F4 -> Index 703
+		  38. Char 060C -> Index 748
+		  39. Char 061B -> Index 749
+		  40. Char 061F -> Index 750
+		  41. Char 0621 -> Index 751
+		      Char 0622 -> Index 897
+		      Char 0623 -> Index 899
+		      Char 0624 -> Index 901
+		      Char 0625 -> Index 903
+		      Char 0626 -> Index 905
+		      Char 0627 -> Index 909
+		      Char 0628 -> Index 911
+		      Char 0629 -> Index 915
+		      Char 062A -> Index 917
+		      Char 062B -> Index 921
+		      Char 062C -> Index 925
+		      Char 062D -> Index 929
+		      Char 062E -> Index 933
+		      Char 062F -> Index 937
+		      Char 0630 -> Index 939
+		      Char 0631 -> Index 941
+		      Char 0632 -> Index 943
+		      Char 0633 -> Index 945
+		      Char 0634 -> Index 949
+		      Char 0635 -> Index 953
+		      Char 0636 -> Index 957
+		      Char 0637 -> Index 961
+		      Char 0638 -> Index 965
+		      Char 0639 -> Index 969
+		      Char 063A -> Index 973
+		  42. Char 0640 -> Index 752
+		      Char 0641 -> Index 977
+		      Char 0642 -> Index 981
+		      Char 0643 -> Index 985
+		      Char 0644 -> Index 989
+		      Char 0645 -> Index 993
+		      Char 0646 -> Index 997
+		      Char 0647 -> Index 1001
+		      Char 0648 -> Index 1005
+		      Char 0649 -> Index 1007
+		      Char 064A -> Index 1009
+		      Char 064B -> Index 753
+		      Char 064C -> Index 754
+		      Char 064D -> Index 755
+		      Char 064E -> Index 756
+		      Char 064F -> Index 757
+		      Char 0650 -> Index 758
+		      Char 0651 -> Index 759
+		      Char 0652 -> Index 760
+		  43. Char 0660 -> Index 761
+		      Char 0661 -> Index 762
+		      Char 0662 -> Index 763
+		      Char 0663 -> Index 764
+		      Char 0664 -> Index 765
+		      Char 0665 -> Index 766
+		      Char 0666 -> Index 767
+		      Char 0667 -> Index 768
+		      Char 0668 -> Index 769
+		      Char 0669 -> Index 770
+		      Char 066A -> Index 771
+		      Char 066B -> Index 772
+		  44. Char 066D -> Index 773
+		  45. Char 0670 -> Index 774
+		      Char 0671 -> Index 797
+		  46. Char 0674 -> Index 775
+		  47. Char 067E -> Index 799
+		  48. Char 0686 -> Index 807
+		  49. Char 0698 -> Index 811
+		  50. Char 06A4 -> Index 803
+		  51. Char 06A9 -> Index 813
+		  52. Char 06AF -> Index 817
+		  53. Char 06CC -> Index 821
+		  54. Char 06D5 -> Index 776
+		  55. Char 06E4 -> Index 777
+		  56. Char 06F0 -> Index 761
+		      Char 06F1 -> Index 762
+		      Char 06F2 -> Index 763
+		      Char 06F3 -> Index 764
+		      Char 06F4 -> Index 778
+		      Char 06F5 -> Index 779
+		      Char 06F6 -> Index 780
+		      Char 06F7 -> Index 768
+		      Char 06F8 -> Index 769
+		      Char 06F9 -> Index 770
+		  57. Char 1E80 -> Index 477
+		      Char 1E81 -> Index 478
+		      Char 1E82 -> Index 479
+		      Char 1E83 -> Index 480
+		      Char 1E84 -> Index 481
+		      Char 1E85 -> Index 482
+		  58. Char 1EA0 -> Index 1186
+		      Char 1EA1 -> Index 1187
+		      Char 1EA2 -> Index 1188
+		      Char 1EA3 -> Index 1189
+		      Char 1EA4 -> Index 1190
+		      Char 1EA5 -> Index 1191
+		      Char 1EA6 -> Index 1192
+		      Char 1EA7 -> Index 1193
+		      Char 1EA8 -> Index 1194
+		      Char 1EA9 -> Index 1195
+		      Char 1EAA -> Index 1196
+		      Char 1EAB -> Index 1197
+		      Char 1EAC -> Index 1198
+		      Char 1EAD -> Index 1199
+		      Char 1EAE -> Index 1200
+		      Char 1EAF -> Index 1201
+		      Char 1EB0 -> Index 1202
+		      Char 1EB1 -> Index 1203
+		      Char 1EB2 -> Index 1204
+		      Char 1EB3 -> Index 1205
+		      Char 1EB4 -> Index 1206
+		      Char 1EB5 -> Index 1207
+		      Char 1EB6 -> Index 1208
+		      Char 1EB7 -> Index 1209
+		      Char 1EB8 -> Index 1210
+		      Char 1EB9 -> Index 1211
+		      Char 1EBA -> Index 1212
+		      Char 1EBB -> Index 1213
+		      Char 1EBC -> Index 1214
+		      Char 1EBD -> Index 1215
+		      Char 1EBE -> Index 1216
+		      Char 1EBF -> Index 1217
+		      Char 1EC0 -> Index 1218
+		      Char 1EC1 -> Index 1219
+		      Char 1EC2 -> Index 1220
+		      Char 1EC3 -> Index 1221
+		      Char 1EC4 -> Index 1222
+		      Char 1EC5 -> Index 1223
+		      Char 1EC6 -> Index 1224
+		      Char 1EC7 -> Index 1225
+		      Char 1EC8 -> Index 1226
+		      Char 1EC9 -> Index 1227
+		      Char 1ECA -> Index 1228
+		      Char 1ECB -> Index 1229
+		      Char 1ECC -> Index 1230
+		      Char 1ECD -> Index 1231
+		      Char 1ECE -> Index 1232
+		      Char 1ECF -> Index 1233
+		      Char 1ED0 -> Index 1234
+		      Char 1ED1 -> Index 1235
+		      Char 1ED2 -> Index 1236
+		      Char 1ED3 -> Index 1237
+		      Char 1ED4 -> Index 1238
+		      Char 1ED5 -> Index 1239
+		      Char 1ED6 -> Index 1240
+		      Char 1ED7 -> Index 1241
+		      Char 1ED8 -> Index 1242
+		      Char 1ED9 -> Index 1243
+		      Char 1EDA -> Index 1244
+		      Char 1EDB -> Index 1245
+		      Char 1EDC -> Index 1246
+		      Char 1EDD -> Index 1247
+		      Char 1EDE -> Index 1248
+		      Char 1EDF -> Index 1249
+		      Char 1EE0 -> Index 1250
+		      Char 1EE1 -> Index 1251
+		      Char 1EE2 -> Index 1252
+		      Char 1EE3 -> Index 1253
+		      Char 1EE4 -> Index 1254
+		      Char 1EE5 -> Index 1255
+		      Char 1EE6 -> Index 1256
+		      Char 1EE7 -> Index 1257
+		      Char 1EE8 -> Index 1258
+		      Char 1EE9 -> Index 1259
+		      Char 1EEA -> Index 1260
+		      Char 1EEB -> Index 1261
+		      Char 1EEC -> Index 1262
+		      Char 1EED -> Index 1263
+		      Char 1EEE -> Index 1264
+		      Char 1EEF -> Index 1265
+		      Char 1EF0 -> Index 1266
+		      Char 1EF1 -> Index 1267
+		      Char 1EF2 -> Index 483
+		      Char 1EF3 -> Index 484
+		      Char 1EF4 -> Index 1268
+		      Char 1EF5 -> Index 1269
+		      Char 1EF6 -> Index 1270
+		      Char 1EF7 -> Index 1271
+		      Char 1EF8 -> Index 1272
+		      Char 1EF9 -> Index 1273
+		  59. Char 200C -> Index 744
+		      Char 200D -> Index 745
+		      Char 200E -> Index 746
+		      Char 200F -> Index 747
+		  60. Char 2013 -> Index 177
+		      Char 2014 -> Index 178
+		      Char 2015 -> Index 650
+		  61. Char 2017 -> Index 308
+		      Char 2018 -> Index 181
+		      Char 2019 -> Index 182
+		      Char 201A -> Index 195
+		      Char 201B -> Index 485
+		      Char 201C -> Index 179
+		      Char 201D -> Index 180
+		      Char 201E -> Index 196
+		  62. Char 2020 -> Index 130
+		      Char 2021 -> Index 193
+		      Char 2022 -> Index 135
+		  63. Char 2026 -> Index 171
+		  64. Char 2030 -> Index 197
+		  65. Char 2032 -> Index 397
+		      Char 2033 -> Index 398
+		  66. Char 2039 -> Index 189
+		      Char 203A -> Index 190
+		  67. Char 203C -> Index 309
+		  68. Char 203E -> Index 486
+		  69. Char 2044 -> Index 187
+		  70. Char 207F -> Index 310
+		  71. Char 20A3 -> Index 245
+		      Char 20A4 -> Index 487
+		  72. Char 20A7 -> Index 311
+		  73. Char 20AA -> Index 704
+		      Char 20AB -> Index 1149
+		      Char 20AC -> Index 188
+		  74. Char 2105 -> Index 399
+		  75. Char 2113 -> Index 400
+		  76. Char 2116 -> Index 651
+		  77. Char 2122 -> Index 140
+		  78. Char 2126 -> Index 159
+		  79. Char 212E -> Index 488
+		  80. Char 2153 -> Index 1150
+		      Char 2154 -> Index 1151
+		  81. Char 215B -> Index 489
+		      Char 215C -> Index 490
+		      Char 215D -> Index 491
+		      Char 215E -> Index 492
+		  82. Char 2190 -> Index 312
+		      Char 2191 -> Index 313
+		      Char 2192 -> Index 314
+		      Char 2193 -> Index 315
+		      Char 2194 -> Index 316
+		      Char 2195 -> Index 317
+		  83. Char 21A8 -> Index 318
+		  84. Char 2202 -> Index 152
+		  85. Char 2206 -> Index 168
+		  86. Char 220F -> Index 154
+		  87. Char 2211 -> Index 153
+		      Char 2212 -> Index 237
+		  88. Char 2215 -> Index 187
+		  89. Char 2219 -> Index 194
+		      Char 221A -> Index 165
+		  90. Char 221E -> Index 146
+		      Char 221F -> Index 319
+		  91. Char 2229 -> Index 320
+		  92. Char 222B -> Index 156
+		  93. Char 2248 -> Index 167
+		  94. Char 2260 -> Index 143
+		      Char 2261 -> Index 321
+		  95. Char 2264 -> Index 148
+		      Char 2265 -> Index 149
+		  96. Char 2302 -> Index 322
+		  97. Char 2310 -> Index 323
+		  98. Char 2320 -> Index 324
+		      Char 2321 -> Index 325
+		  99. Char 2500 -> Index 326
+		 100. Char 2502 -> Index 327
+		 101. Char 250C -> Index 328
+		 102. Char 2510 -> Index 329
+		 103. Char 2514 -> Index 330
+		 104. Char 2518 -> Index 331
+		 105. Char 251C -> Index 332
+		 106. Char 2524 -> Index 333
+		 107. Char 252C -> Index 334
+		 108. Char 2534 -> Index 335
+		 109. Char 253C -> Index 336
+		 110. Char 2550 -> Index 337
+		      Char 2551 -> Index 338
+		      Char 2552 -> Index 339
+		      Char 2553 -> Index 340
+		      Char 2554 -> Index 341
+		      Char 2555 -> Index 342
+		      Char 2556 -> Index 343
+		      Char 2557 -> Index 344
+		      Char 2558 -> Index 345
+		      Char 2559 -> Index 346
+		      Char 255A -> Index 347
+		      Char 255B -> Index 348
+		      Char 255C -> Index 349
+		      Char 255D -> Index 350
+		      Char 255E -> Index 351
+		      Char 255F -> Index 352
+		      Char 2560 -> Index 353
+		      Char 2561 -> Index 354
+		      Char 2562 -> Index 355
+		      Char 2563 -> Index 356
+		      Char 2564 -> Index 357
+		      Char 2565 -> Index 358
+		      Char 2566 -> Index 359
+		      Char 2567 -> Index 360
+		      Char 2568 -> Index 361
+		      Char 2569 -> Index 362
+		      Char 256A -> Index 363
+		      Char 256B -> Index 364
+		      Char 256C -> Index 365
+		 111. Char 2580 -> Index 366
+		 112. Char 2584 -> Index 367
+		 113. Char 2588 -> Index 368
+		 114. Char 258C -> Index 369
+		 115. Char 2590 -> Index 370
+		      Char 2591 -> Index 371
+		      Char 2592 -> Index 372
+		      Char 2593 -> Index 373
+		 116. Char 25A0 -> Index 374
+		      Char 25A1 -> Index 401
+		 117. Char 25AA -> Index 402
+		      Char 25AB -> Index 403
+		      Char 25AC -> Index 375
+		 118. Char 25B2 -> Index 376
+		 119. Char 25BA -> Index 377
+		 120. Char 25BC -> Index 378
+		 121. Char 25C4 -> Index 379
+		 122. Char 25CA -> Index 184
+		      Char 25CB -> Index 380
+		 123. Char 25CF -> Index 404
+		 124. Char 25D8 -> Index 381
+		      Char 25D9 -> Index 382
+		 125. Char 25E6 -> Index 405
+		 126. Char 263A -> Index 383
+		      Char 263B -> Index 384
+		      Char 263C -> Index 385
+		 127. Char 2640 -> Index 386
+		 128. Char 2642 -> Index 387
+		 129. Char 2660 -> Index 388
+		 130. Char 2663 -> Index 389
+		 131. Char 2665 -> Index 390
+		      Char 2666 -> Index 391
+		 132. Char 266A -> Index 392
+		      Char 266B -> Index 393
+		 133. Char E801 -> Index 705
+		      Char E802 -> Index 706
+		      Char E803 -> Index 707
+		      Char E804 -> Index 708
+		      Char E805 -> Index 709
+		 134. Char E811 -> Index 781
+		 135. Char E813 -> Index 782
+		 136. Char E815 -> Index 783
+		      Char E816 -> Index 784
+		      Char E817 -> Index 785
+		      Char E818 -> Index 786
+		 137. Char E832 -> Index 787
+		      Char E833 -> Index 788
+		      Char E834 -> Index 789
+		      Char E835 -> Index 790
+		      Char E836 -> Index 791
+		      Char E837 -> Index 792
+		      Char E838 -> Index 793
+		      Char E839 -> Index 794
+		      Char E83A -> Index 795
+		      Char E83B -> Index 796
+		 138. Char F001 -> Index 191
+		      Char F002 -> Index 192
+		 139. Char F004 -> Index 493
+		      Char F005 -> Index 494
+		      Char F006 -> Index 1136
+		      Char F007 -> Index 1137
+		      Char F008 -> Index 1152
+		      Char F009 -> Index 1138
+		 140. Char F00F -> Index 1155
+		      Char F010 -> Index 1140
+		      Char F011 -> Index 1142
+		      Char F012 -> Index 1156
+		      Char F013 -> Index 1141
+		      Char F014 -> Index 1157
+		      Char F015 -> Index 1144
+		      Char F016 -> Index 1158
+		      Char F017 -> Index 1159
+		      Char F018 -> Index 1160
+		      Char F019 -> Index 1161
+		      Char F01A -> Index 1162
+		      Char F01B -> Index 1163
+		      Char F01C -> Index 1143
+		      Char F01D -> Index 1171
+		      Char F01E -> Index 1164
+		      Char F01F -> Index 1165
+		      Char F020 -> Index 1166
+		      Char F021 -> Index 1167
+		      Char F022 -> Index 1168
+		      Char F023 -> Index 1173
+		      Char F024 -> Index 1177
+		      Char F025 -> Index 1178
+		      Char F026 -> Index 1179
+		      Char F027 -> Index 1180
+		      Char F028 -> Index 1181
+		      Char F029 -> Index 1174
+		      Char F02A -> Index 1175
+		      Char F02B -> Index 1176
+		      Char F02C -> Index 1148
+		      Char F02D -> Index 1182
+		      Char F02E -> Index 1183
+		      Char F02F -> Index 1184
+		      Char F030 -> Index 1185
+		 141. Char FB01 -> Index 191
+		      Char FB02 -> Index 192
+		 142. Char FB20 -> Index 710
+		 143. Char FB2A -> Index 711
+		      Char FB2B -> Index 712
+		      Char FB2C -> Index 713
+		      Char FB2D -> Index 714
+		      Char FB2E -> Index 715
+		      Char FB2F -> Index 716
+		      Char FB30 -> Index 717
+		      Char FB31 -> Index 718
+		      Char FB32 -> Index 719
+		      Char FB33 -> Index 720
+		      Char FB34 -> Index 721
+		      Char FB35 -> Index 722
+		      Char FB36 -> Index 723
+		 144. Char FB38 -> Index 724
+		      Char FB39 -> Index 725
+		      Char FB3A -> Index 726
+		      Char FB3B -> Index 727
+		      Char FB3C -> Index 728
+		 145. Char FB3E -> Index 729
+		 146. Char FB40 -> Index 730
+		      Char FB41 -> Index 731
+		 147. Char FB43 -> Index 732
+		      Char FB44 -> Index 733
+		 148. Char FB46 -> Index 734
+		      Char FB47 -> Index 735
+		      Char FB48 -> Index 736
+		      Char FB49 -> Index 737
+		      Char FB4A -> Index 738
+		      Char FB4B -> Index 739
+		      Char FB4C -> Index 740
+		      Char FB4D -> Index 741
+		      Char FB4E -> Index 742
+		      Char FB4F -> Index 743
+		      Char FB50 -> Index 797
+		      Char FB51 -> Index 798
+		 149. Char FB56 -> Index 799
+		      Char FB57 -> Index 800
+		      Char FB58 -> Index 801
+		      Char FB59 -> Index 802
+		 150. Char FB6A -> Index 803
+		      Char FB6B -> Index 804
+		      Char FB6C -> Index 805
+		      Char FB6D -> Index 806
+		 151. Char FB7A -> Index 807
+		      Char FB7B -> Index 808
+		      Char FB7C -> Index 809
+		      Char FB7D -> Index 810
+		 152. Char FB8A -> Index 811
+		      Char FB8B -> Index 812
+		 153. Char FB8E -> Index 813
+		      Char FB8F -> Index 814
+		      Char FB90 -> Index 815
+		      Char FB91 -> Index 816
+		      Char FB92 -> Index 817
+		      Char FB93 -> Index 818
+		      Char FB94 -> Index 819
+		      Char FB95 -> Index 820
+		 154. Char FBFC -> Index 821
+		      Char FBFD -> Index 822
+		      Char FBFE -> Index 1011
+		      Char FBFF -> Index 1012
+		 155. Char FC08 -> Index 823
+		      Char FC09 -> Index 824
+		 156. Char FC0E -> Index 825
+		 157. Char FC12 -> Index 826
+		 158. Char FC31 -> Index 827
+		      Char FC32 -> Index 828
+		 159. Char FC3F -> Index 829
+		      Char FC40 -> Index 830
+		      Char FC41 -> Index 831
+		      Char FC42 -> Index 832
+		      Char FC43 -> Index 833
+		      Char FC44 -> Index 834
+		 160. Char FC4E -> Index 835
+		      Char FC4F -> Index 836
+		 161. Char FC58 -> Index 837
+		      Char FC59 -> Index 838
+		 162. Char FC5E -> Index 839
+		      Char FC5F -> Index 840
+		      Char FC60 -> Index 841
+		      Char FC61 -> Index 842
+		      Char FC62 -> Index 843
+		 163. Char FC6A -> Index 844
+		 164. Char FC6D -> Index 845
+		      Char FC6E -> Index 846
+		      Char FC6F -> Index 847
+		      Char FC70 -> Index 848
+		 165. Char FC73 -> Index 849
+		      Char FC74 -> Index 850
+		      Char FC75 -> Index 851
+		 166. Char FC8E -> Index 852
+		      Char FC8F -> Index 853
+		 167. Char FC91 -> Index 854
+		 168. Char FC94 -> Index 855
+		 169. Char FC9C -> Index 856
+		      Char FC9D -> Index 857
+		      Char FC9E -> Index 858
+		      Char FC9F -> Index 859
+		      Char FCA0 -> Index 860
+		      Char FCA1 -> Index 861
+		      Char FCA2 -> Index 862
+		      Char FCA3 -> Index 863
+		      Char FCA4 -> Index 864
+		      Char FCA5 -> Index 865
+		      Char FCA6 -> Index 866
+		 170. Char FCA8 -> Index 867
+		 171. Char FCAA -> Index 868
+		 172. Char FCAC -> Index 869
+		 173. Char FCB0 -> Index 870
+		 174. Char FCC9 -> Index 871
+		      Char FCCA -> Index 872
+		      Char FCCB -> Index 873
+		      Char FCCC -> Index 874
+		      Char FCCD -> Index 875
+		      Char FCCE -> Index 876
+		      Char FCCF -> Index 877
+		      Char FCD0 -> Index 878
+		      Char FCD1 -> Index 879
+		      Char FCD2 -> Index 880
+		      Char FCD3 -> Index 881
+		      Char FCD4 -> Index 882
+		      Char FCD5 -> Index 883
+		 175. Char FCD8 -> Index 884
+		 176. Char FCDA -> Index 885
+		      Char FCDB -> Index 886
+		      Char FCDC -> Index 887
+		      Char FCDD -> Index 888
+		 177. Char FD30 -> Index 889
+		 178. Char FD3C -> Index 890
+		      Char FD3D -> Index 891
+		      Char FD3E -> Index 892
+		      Char FD3F -> Index 893
+		 179. Char FD88 -> Index 894
+		 180. Char FDF2 -> Index 895
+		 181. Char FE80 -> Index 896
+		      Char FE81 -> Index 897
+		      Char FE82 -> Index 898
+		      Char FE83 -> Index 899
+		      Char FE84 -> Index 900
+		      Char FE85 -> Index 901
+		      Char FE86 -> Index 902
+		      Char FE87 -> Index 903
+		      Char FE88 -> Index 904
+		      Char FE89 -> Index 905
+		      Char FE8A -> Index 906
+		      Char FE8B -> Index 907
+		      Char FE8C -> Index 908
+		      Char FE8D -> Index 909
+		      Char FE8E -> Index 910
+		      Char FE8F -> Index 911
+		      Char FE90 -> Index 912
+		      Char FE91 -> Index 913
+		      Char FE92 -> Index 914
+		      Char FE93 -> Index 915
+		      Char FE94 -> Index 916
+		      Char FE95 -> Index 917
+		      Char FE96 -> Index 918
+		      Char FE97 -> Index 919
+		      Char FE98 -> Index 920
+		      Char FE99 -> Index 921
+		      Char FE9A -> Index 922
+		      Char FE9B -> Index 923
+		      Char FE9C -> Index 924
+		      Char FE9D -> Index 925
+		      Char FE9E -> Index 926
+		      Char FE9F -> Index 927
+		      Char FEA0 -> Index 928
+		      Char FEA1 -> Index 929
+		      Char FEA2 -> Index 930
+		      Char FEA3 -> Index 931
+		      Char FEA4 -> Index 932
+		      Char FEA5 -> Index 933
+		      Char FEA6 -> Index 934
+		      Char FEA7 -> Index 935
+		      Char FEA8 -> Index 936
+		      Char FEA9 -> Index 937
+		      Char FEAA -> Index 938
+		      Char FEAB -> Index 939
+		      Char FEAC -> Index 940
+		      Char FEAD -> Index 941
+		      Char FEAE -> Index 942
+		      Char FEAF -> Index 943
+		      Char FEB0 -> Index 944
+		      Char FEB1 -> Index 945
+		      Char FEB2 -> Index 946
+		      Char FEB3 -> Index 947
+		      Char FEB4 -> Index 948
+		      Char FEB5 -> Index 949
+		      Char FEB6 -> Index 950
+		      Char FEB7 -> Index 951
+		      Char FEB8 -> Index 952
+		      Char FEB9 -> Index 953
+		      Char FEBA -> Index 954
+		      Char FEBB -> Index 955
+		      Char FEBC -> Index 956
+		      Char FEBD -> Index 957
+		      Char FEBE -> Index 958
+		      Char FEBF -> Index 959
+		      Char FEC0 -> Index 960
+		      Char FEC1 -> Index 961
+		      Char FEC2 -> Index 962
+		      Char FEC3 -> Index 963
+		      Char FEC4 -> Index 964
+		      Char FEC5 -> Index 965
+		      Char FEC6 -> Index 966
+		      Char FEC7 -> Index 967
+		      Char FEC8 -> Index 968
+		      Char FEC9 -> Index 969
+		      Char FECA -> Index 970
+		      Char FECB -> Index 971
+		      Char FECC -> Index 972
+		      Char FECD -> Index 973
+		      Char FECE -> Index 974
+		      Char FECF -> Index 975
+		      Char FED0 -> Index 976
+		      Char FED1 -> Index 977
+		      Char FED2 -> Index 978
+		      Char FED3 -> Index 979
+		      Char FED4 -> Index 980
+		      Char FED5 -> Index 981
+		      Char FED6 -> Index 982
+		      Char FED7 -> Index 983
+		      Char FED8 -> Index 984
+		      Char FED9 -> Index 985
+		      Char FEDA -> Index 986
+		      Char FEDB -> Index 987
+		      Char FEDC -> Index 988
+		      Char FEDD -> Index 989
+		      Char FEDE -> Index 990
+		      Char FEDF -> Index 991
+		      Char FEE0 -> Index 992
+		      Char FEE1 -> Index 993
+		      Char FEE2 -> Index 994
+		      Char FEE3 -> Index 995
+		      Char FEE4 -> Index 996
+		      Char FEE5 -> Index 997
+		      Char FEE6 -> Index 998
+		      Char FEE7 -> Index 999
+		      Char FEE8 -> Index 1000
+		      Char FEE9 -> Index 1001
+		      Char FEEA -> Index 1002
+		      Char FEEB -> Index 1003
+		      Char FEEC -> Index 1004
+		      Char FEED -> Index 1005
+		      Char FEEE -> Index 1006
+		      Char FEEF -> Index 1007
+		      Char FEF0 -> Index 1008
+		      Char FEF1 -> Index 1009
+		      Char FEF2 -> Index 1010
+		      Char FEF3 -> Index 1011
+		      Char FEF4 -> Index 1012
+		      Char FEF5 -> Index 1013
+		      Char FEF6 -> Index 1014
+		      Char FEF7 -> Index 1015
+		      Char FEF8 -> Index 1016
+		      Char FEF9 -> Index 1017
+		      Char FEFA -> Index 1018
+		      Char FEFB -> Index 1019
+		      Char FEFC -> Index 1020
+		 182. Char FEFF -> Index 1021
+		 183. Char FFFC -> Index 1128
+  
+Subtable  2.   Platform ID:   1
+               Specific ID:   0
+               'cmap' Offset: 0x00000A2C
+	      ->Format:	0 : Byte encoding table
+		Length:		262
+		Version:	0
+
+		Char   0 -> Index 1
+		Char   1 -> Index 0
+		Char   2 -> Index 0
+		Char   3 -> Index 0
+		Char   4 -> Index 0
+		Char   5 -> Index 0
+		Char   6 -> Index 0
+		Char   7 -> Index 0
+		Char   8 -> Index 1
+		Char   9 -> Index 2
+		Char  10 -> Index 0
+		Char  11 -> Index 0
+		Char  12 -> Index 0
+		Char  13 -> Index 2
+		Char  14 -> Index 0
+		Char  15 -> Index 0
+		Char  16 -> Index 0
+		Char  17 -> Index 0
+		Char  18 -> Index 0
+		Char  19 -> Index 0
+		Char  20 -> Index 0
+		Char  21 -> Index 0
+		Char  22 -> Index 0
+		Char  23 -> Index 0
+		Char  24 -> Index 0
+		Char  25 -> Index 0
+		Char  26 -> Index 0
+		Char  27 -> Index 0
+		Char  28 -> Index 0
+		Char  29 -> Index 1
+		Char  30 -> Index 0
+		Char  31 -> Index 0
+		Char  32 -> Index 3
+		Char  33 -> Index 4
+		Char  34 -> Index 5
+		Char  35 -> Index 6
+		Char  36 -> Index 7
+		Char  37 -> Index 8
+		Char  38 -> Index 9
+		Char  39 -> Index 10
+		Char  40 -> Index 11
+		Char  41 -> Index 12
+		Char  42 -> Index 13
+		Char  43 -> Index 14
+		Char  44 -> Index 15
+		Char  45 -> Index 16
+		Char  46 -> Index 17
+		Char  47 -> Index 18
+		Char  48 -> Index 19
+		Char  49 -> Index 20
+		Char  50 -> Index 21
+		Char  51 -> Index 22
+		Char  52 -> Index 23
+		Char  53 -> Index 24
+		Char  54 -> Index 25
+		Char  55 -> Index 26
+		Char  56 -> Index 27
+		Char  57 -> Index 28
+		Char  58 -> Index 29
+		Char  59 -> Index 30
+		Char  60 -> Index 31
+		Char  61 -> Index 32
+		Char  62 -> Index 33
+		Char  63 -> Index 34
+		Char  64 -> Index 35
+		Char  65 -> Index 36
+		Char  66 -> Index 37
+		Char  67 -> Index 38
+		Char  68 -> Index 39
+		Char  69 -> Index 40
+		Char  70 -> Index 41
+		Char  71 -> Index 42
+		Char  72 -> Index 43
+		Char  73 -> Index 44
+		Char  74 -> Index 45
+		Char  75 -> Index 46
+		Char  76 -> Index 47
+		Char  77 -> Index 48
+		Char  78 -> Index 49
+		Char  79 -> Index 50
+		Char  80 -> Index 51
+		Char  81 -> Index 52
+		Char  82 -> Index 53
+		Char  83 -> Index 54
+		Char  84 -> Index 55
+		Char  85 -> Index 56
+		Char  86 -> Index 57
+		Char  87 -> Index 58
+		Char  88 -> Index 59
+		Char  89 -> Index 60
+		Char  90 -> Index 61
+		Char  91 -> Index 62
+		Char  92 -> Index 63
+		Char  93 -> Index 64
+		Char  94 -> Index 65
+		Char  95 -> Index 66
+		Char  96 -> Index 67
+		Char  97 -> Index 68
+		Char  98 -> Index 69
+		Char  99 -> Index 70
+		Char 100 -> Index 71
+		Char 101 -> Index 72
+		Char 102 -> Index 73
+		Char 103 -> Index 74
+		Char 104 -> Index 75
+		Char 105 -> Index 76
+		Char 106 -> Index 77
+		Char 107 -> Index 78
+		Char 108 -> Index 79
+		Char 109 -> Index 80
+		Char 110 -> Index 81
+		Char 111 -> Index 82
+		Char 112 -> Index 83
+		Char 113 -> Index 84
+		Char 114 -> Index 85
+		Char 115 -> Index 86
+		Char 116 -> Index 87
+		Char 117 -> Index 88
+		Char 118 -> Index 89
+		Char 119 -> Index 90
+		Char 120 -> Index 91
+		Char 121 -> Index 92
+		Char 122 -> Index 93
+		Char 123 -> Index 94
+		Char 124 -> Index 95
+		Char 125 -> Index 96
+		Char 126 -> Index 97
+		Char 127 -> Index 0
+		Char 128 -> Index 98
+		Char 129 -> Index 99
+		Char 130 -> Index 100
+		Char 131 -> Index 101
+		Char 132 -> Index 102
+		Char 133 -> Index 103
+		Char 134 -> Index 104
+		Char 135 -> Index 105
+		Char 136 -> Index 106
+		Char 137 -> Index 107
+		Char 138 -> Index 108
+		Char 139 -> Index 109
+		Char 140 -> Index 110
+		Char 141 -> Index 111
+		Char 142 -> Index 112
+		Char 143 -> Index 113
+		Char 144 -> Index 114
+		Char 145 -> Index 115
+		Char 146 -> Index 116
+		Char 147 -> Index 117
+		Char 148 -> Index 118
+		Char 149 -> Index 119
+		Char 150 -> Index 120
+		Char 151 -> Index 121
+		Char 152 -> Index 122
+		Char 153 -> Index 123
+		Char 154 -> Index 124
+		Char 155 -> Index 125
+		Char 156 -> Index 126
+		Char 157 -> Index 127
+		Char 158 -> Index 128
+		Char 159 -> Index 129
+		Char 160 -> Index 130
+		Char 161 -> Index 131
+		Char 162 -> Index 132
+		Char 163 -> Index 133
+		Char 164 -> Index 134
+		Char 165 -> Index 135
+		Char 166 -> Index 136
+		Char 167 -> Index 137
+		Char 168 -> Index 138
+		Char 169 -> Index 139
+		Char 170 -> Index 140
+		Char 171 -> Index 141
+		Char 172 -> Index 142
+		Char 173 -> Index 143
+		Char 174 -> Index 144
+		Char 175 -> Index 145
+		Char 176 -> Index 146
+		Char 177 -> Index 147
+		Char 178 -> Index 148
+		Char 179 -> Index 149
+		Char 180 -> Index 150
+		Char 181 -> Index 151
+		Char 182 -> Index 152
+		Char 183 -> Index 153
+		Char 184 -> Index 154
+		Char 185 -> Index 155
+		Char 186 -> Index 156
+		Char 187 -> Index 157
+		Char 188 -> Index 158
+		Char 189 -> Index 159
+		Char 190 -> Index 160
+		Char 191 -> Index 161
+		Char 192 -> Index 162
+		Char 193 -> Index 163
+		Char 194 -> Index 164
+		Char 195 -> Index 165
+		Char 196 -> Index 166
+		Char 197 -> Index 167
+		Char 198 -> Index 168
+		Char 199 -> Index 169
+		Char 200 -> Index 170
+		Char 201 -> Index 171
+		Char 202 -> Index 3
+		Char 203 -> Index 172
+		Char 204 -> Index 173
+		Char 205 -> Index 174
+		Char 206 -> Index 175
+		Char 207 -> Index 176
+		Char 208 -> Index 177
+		Char 209 -> Index 178
+		Char 210 -> Index 179
+		Char 211 -> Index 180
+		Char 212 -> Index 181
+		Char 213 -> Index 182
+		Char 214 -> Index 183
+		Char 215 -> Index 184
+		Char 216 -> Index 185
+		Char 217 -> Index 186
+		Char 218 -> Index 187
+		Char 219 -> Index 188
+		Char 220 -> Index 189
+		Char 221 -> Index 190
+		Char 222 -> Index 191
+		Char 223 -> Index 192
+		Char 224 -> Index 193
+		Char 225 -> Index 194
+		Char 226 -> Index 195
+		Char 227 -> Index 196
+		Char 228 -> Index 197
+		Char 229 -> Index 198
+		Char 230 -> Index 199
+		Char 231 -> Index 200
+		Char 232 -> Index 201
+		Char 233 -> Index 202
+		Char 234 -> Index 203
+		Char 235 -> Index 204
+		Char 236 -> Index 205
+		Char 237 -> Index 206
+		Char 238 -> Index 207
+		Char 239 -> Index 208
+		Char 240 -> Index 0
+		Char 241 -> Index 209
+		Char 242 -> Index 210
+		Char 243 -> Index 211
+		Char 244 -> Index 212
+		Char 245 -> Index 213
+		Char 246 -> Index 214
+		Char 247 -> Index 215
+		Char 248 -> Index 216
+		Char 249 -> Index 217
+		Char 250 -> Index 218
+		Char 251 -> Index 219
+		Char 252 -> Index 220
+		Char 253 -> Index 221
+		Char 254 -> Index 222
+		Char 255 -> Index 223
+  
+Subtable  3.   Platform ID:   3
+               Specific ID:   1
+               'cmap' Offset: 0x00000B32
+	      ->Format:	4 : Segment mapping to delta values
+		Length:		2576
+		Version:	0
+		segCount:	184  (X2 = 368)
+		searchRange:	256
+		entrySelector:	7
+		rangeShift:	112
+		Seg   1 : St = 0020, En = 007E, D =    -29, RO =     0, gId# = N/A
+		Seg   2 : St = 00A0, En = 017F, D =      0, RO =   366, gId# = 0
+		Seg   3 : St = 018F, En = 018F, D =    915, RO =     0, gId# = N/A
+		Seg   4 : St = 0192, En = 0192, D =   -236, RO =     0, gId# = N/A
+		Seg   5 : St = 01A0, En = 01A1, D =    713, RO =     0, gId# = N/A
+		Seg   6 : St = 01AF, En = 01B0, D =    700, RO =     0, gId# = N/A
+		Seg   7 : St = 01CD, En = 01DC, D =    813, RO =     0, gId# = N/A
+		Seg   8 : St = 01FA, En = 01FF, D =    -36, RO =     0, gId# = N/A
+		Seg   9 : St = 0259, En = 0259, D =    714, RO =     0, gId# = N/A
+		Seg  10 : St = 02C6, En = 02C7, D =      0, RO =   798, gId# = 224
+		Seg  11 : St = 02C9, En = 02C9, D =   -497, RO =     0, gId# = N/A
+		Seg  12 : St = 02D8, En = 02DD, D =      0, RO =   798, gId# = 226
+		Seg  13 : St = 0300, En = 0301, D =    401, RO =     0, gId# = N/A
+		Seg  14 : St = 0303, En = 0303, D =    374, RO =     0, gId# = N/A
+		Seg  15 : St = 0309, En = 0309, D =    362, RO =     0, gId# = N/A
+		Seg  16 : St = 0323, En = 0323, D =    369, RO =     0, gId# = N/A
+		Seg  17 : St = 037E, En = 037E, D =   -864, RO =     0, gId# = N/A
+		Seg  18 : St = 0384, En = 038A, D =      0, RO =   798, gId# = 232
+		Seg  19 : St = 038C, En = 038C, D =   -407, RO =     0, gId# = N/A
+		Seg  20 : St = 038E, En = 03A1, D =      0, RO =   808, gId# = 239
+		Seg  21 : St = 03A3, En = 03CE, D =      0, RO =   846, gId# = 259
+		Seg  22 : St = 0401, En = 040C, D =   -469, RO =     0, gId# = N/A
+		Seg  23 : St = 040E, En = 044F, D =   -470, RO =     0, gId# = N/A
+		Seg  24 : St = 0451, En = 045C, D =   -471, RO =     0, gId# = N/A
+		Seg  25 : St = 045E, En = 045F, D =   -472, RO =     0, gId# = N/A
+		Seg  26 : St = 0490, En = 0493, D =      0, RO =   924, gId# = 303
+		Seg  27 : St = 0496, En = 0497, D =    122, RO =     0, gId# = N/A
+		Seg  28 : St = 049A, En = 049D, D =    120, RO =     0, gId# = N/A
+		Seg  29 : St = 04A2, En = 04A3, D =    116, RO =     0, gId# = N/A
+		Seg  30 : St = 04AE, En = 04B3, D =    106, RO =     0, gId# = N/A
+		Seg  31 : St = 04B8, En = 04BB, D =    102, RO =     0, gId# = N/A
+		Seg  32 : St = 04D8, En = 04D9, D =     74, RO =     0, gId# = N/A
+		Seg  33 : St = 04E8, En = 04E9, D =     60, RO =     0, gId# = N/A
+		Seg  34 : St = 05B0, En = 05B9, D =   -803, RO =     0, gId# = N/A
+		Seg  35 : St = 05BB, En = 05C3, D =   -804, RO =     0, gId# = N/A
+		Seg  36 : St = 05D0, En = 05EA, D =   -816, RO =     0, gId# = N/A
+		Seg  37 : St = 05F0, En = 05F4, D =   -821, RO =     0, gId# = N/A
+		Seg  38 : St = 060C, En = 060C, D =   -800, RO =     0, gId# = N/A
+		Seg  39 : St = 061B, En = 061B, D =   -814, RO =     0, gId# = N/A
+		Seg  40 : St = 061F, En = 061F, D =   -817, RO =     0, gId# = N/A
+		Seg  41 : St = 0621, En = 063A, D =      0, RO =   902, gId# = 307
+		Seg  42 : St = 0640, En = 0652, D =      0, RO =   952, gId# = 333
+		Seg  43 : St = 0660, En = 066B, D =   -871, RO =     0, gId# = N/A
+		Seg  44 : St = 066D, En = 066D, D =   -872, RO =     0, gId# = N/A
+		Seg  45 : St = 0670, En = 0671, D =      0, RO =   984, gId# = 352
+		Seg  46 : St = 0674, En = 0674, D =   -877, RO =     0, gId# = N/A
+		Seg  47 : St = 067E, En = 067E, D =   -863, RO =     0, gId# = N/A
+		Seg  48 : St = 0686, En = 0686, D =   -863, RO =     0, gId# = N/A
+		Seg  49 : St = 0698, En = 0698, D =   -877, RO =     0, gId# = N/A
+		Seg  50 : St = 06A4, En = 06A4, D =   -897, RO =     0, gId# = N/A
+		Seg  51 : St = 06A9, En = 06A9, D =   -892, RO =     0, gId# = N/A
+		Seg  52 : St = 06AF, En = 06AF, D =   -894, RO =     0, gId# = N/A
+		Seg  53 : St = 06CC, En = 06CC, D =   -919, RO =     0, gId# = N/A
+		Seg  54 : St = 06D5, En = 06D5, D =   -973, RO =     0, gId# = N/A
+		Seg  55 : St = 06E4, En = 06E4, D =   -987, RO =     0, gId# = N/A
+		Seg  56 : St = 06F0, En = 06F9, D =      0, RO =   966, gId# = 354
+		Seg  57 : St = 1E80, En = 1E85, D =  -7331, RO =     0, gId# = N/A
+		Seg  58 : St = 1EA0, En = 1EF9, D =      0, RO =   982, gId# = 364
+		Seg  59 : St = 200C, En = 200F, D =  -7460, RO =     0, gId# = N/A
+		Seg  60 : St = 2013, En = 2015, D =      0, RO =  1158, gId# = 454
+		Seg  61 : St = 2017, En = 201E, D =      0, RO =  1162, gId# = 457
+		Seg  62 : St = 2020, En = 2022, D =      0, RO =  1176, gId# = 465
+		Seg  63 : St = 2026, En = 2026, D =  -8059, RO =     0, gId# = N/A
+		Seg  64 : St = 2030, En = 2030, D =  -8043, RO =     0, gId# = N/A
+		Seg  65 : St = 2032, En = 2033, D =  -7845, RO =     0, gId# = N/A
+		Seg  66 : St = 2039, En = 203A, D =  -8060, RO =     0, gId# = N/A
+		Seg  67 : St = 203C, En = 203C, D =  -7943, RO =     0, gId# = N/A
+		Seg  68 : St = 203E, En = 203E, D =  -7768, RO =     0, gId# = N/A
+		Seg  69 : St = 2044, En = 2044, D =  -8073, RO =     0, gId# = N/A
+		Seg  70 : St = 207F, En = 207F, D =  -8009, RO =     0, gId# = N/A
+		Seg  71 : St = 20A3, En = 20A4, D =      0, RO =  1164, gId# = 468
+		Seg  72 : St = 20A7, En = 20A7, D =  -8048, RO =     0, gId# = N/A
+		Seg  73 : St = 20AA, En = 20AC, D =      0, RO =  1164, gId# = 470
+		Seg  74 : St = 2105, En = 2105, D =  -8054, RO =     0, gId# = N/A
+		Seg  75 : St = 2113, En = 2113, D =  -8067, RO =     0, gId# = N/A
+		Seg  76 : St = 2116, En = 2116, D =  -7819, RO =     0, gId# = N/A
+		Seg  77 : St = 2122, En = 2122, D =  -8342, RO =     0, gId# = N/A
+		Seg  78 : St = 2126, En = 2126, D =  -8327, RO =     0, gId# = N/A
+		Seg  79 : St = 212E, En = 212E, D =  -8006, RO =     0, gId# = N/A
+		Seg  80 : St = 2153, En = 2154, D =  -7381, RO =     0, gId# = N/A
+		Seg  81 : St = 215B, En = 215E, D =  -8050, RO =     0, gId# = N/A
+		Seg  82 : St = 2190, En = 2195, D =  -8280, RO =     0, gId# = N/A
+		Seg  83 : St = 21A8, En = 21A8, D =  -8298, RO =     0, gId# = N/A
+		Seg  84 : St = 2202, En = 2202, D =  -8554, RO =     0, gId# = N/A
+		Seg  85 : St = 2206, En = 2206, D =  -8542, RO =     0, gId# = N/A
+		Seg  86 : St = 220F, En = 220F, D =  -8565, RO =     0, gId# = N/A
+		Seg  87 : St = 2211, En = 2212, D =      0, RO =  1142, gId# = 473
+		Seg  88 : St = 2215, En = 2215, D =  -8538, RO =     0, gId# = N/A
+		Seg  89 : St = 2219, En = 221A, D =      0, RO =  1142, gId# = 475
+		Seg  90 : St = 221E, En = 221F, D =      0, RO =  1144, gId# = 477
+		Seg  91 : St = 2229, En = 2229, D =  -8425, RO =     0, gId# = N/A
+		Seg  92 : St = 222B, En = 222B, D =  -8591, RO =     0, gId# = N/A
+		Seg  93 : St = 2248, En = 2248, D =  -8609, RO =     0, gId# = N/A
+		Seg  94 : St = 2260, En = 2261, D =      0, RO =  1140, gId# = 479
+		Seg  95 : St = 2264, En = 2265, D =  -8656, RO =     0, gId# = N/A
+		Seg  96 : St = 2302, En = 2302, D =  -8640, RO =     0, gId# = N/A
+		Seg  97 : St = 2310, En = 2310, D =  -8653, RO =     0, gId# = N/A
+		Seg  98 : St = 2320, En = 2321, D =  -8668, RO =     0, gId# = N/A
+		Seg  99 : St = 2500, En = 2500, D =  -9146, RO =     0, gId# = N/A
+		Seg 100 : St = 2502, En = 2502, D =  -9147, RO =     0, gId# = N/A
+		Seg 101 : St = 250C, En = 250C, D =  -9156, RO =     0, gId# = N/A
+		Seg 102 : St = 2510, En = 2510, D =  -9159, RO =     0, gId# = N/A
+		Seg 103 : St = 2514, En = 2514, D =  -9162, RO =     0, gId# = N/A
+		Seg 104 : St = 2518, En = 2518, D =  -9165, RO =     0, gId# = N/A
+		Seg 105 : St = 251C, En = 251C, D =  -9168, RO =     0, gId# = N/A
+		Seg 106 : St = 2524, En = 2524, D =  -9175, RO =     0, gId# = N/A
+		Seg 107 : St = 252C, En = 252C, D =  -9182, RO =     0, gId# = N/A
+		Seg 108 : St = 2534, En = 2534, D =  -9189, RO =     0, gId# = N/A
+		Seg 109 : St = 253C, En = 253C, D =  -9196, RO =     0, gId# = N/A
+		Seg 110 : St = 2550, En = 256C, D =  -9215, RO =     0, gId# = N/A
+		Seg 111 : St = 2580, En = 2580, D =  -9234, RO =     0, gId# = N/A
+		Seg 112 : St = 2584, En = 2584, D =  -9237, RO =     0, gId# = N/A
+		Seg 113 : St = 2588, En = 2588, D =  -9240, RO =     0, gId# = N/A
+		Seg 114 : St = 258C, En = 258C, D =  -9243, RO =     0, gId# = N/A
+		Seg 115 : St = 2590, En = 2593, D =  -9246, RO =     0, gId# = N/A
+		Seg 116 : St = 25A0, En = 25A1, D =      0, RO =  1100, gId# = 481
+		Seg 117 : St = 25AA, En = 25AC, D =      0, RO =  1102, gId# = 483
+		Seg 118 : St = 25B2, En = 25B2, D =  -9274, RO =     0, gId# = N/A
+		Seg 119 : St = 25BA, En = 25BA, D =  -9281, RO =     0, gId# = N/A
+		Seg 120 : St = 25BC, En = 25BC, D =  -9282, RO =     0, gId# = N/A
+		Seg 121 : St = 25C4, En = 25C4, D =  -9289, RO =     0, gId# = N/A
+		Seg 122 : St = 25CA, En = 25CB, D =      0, RO =  1098, gId# = 486
+		Seg 123 : St = 25CF, En = 25CF, D =  -9275, RO =     0, gId# = N/A
+		Seg 124 : St = 25D8, En = 25D9, D =  -9307, RO =     0, gId# = N/A
+		Seg 125 : St = 25E6, En = 25E6, D =  -9297, RO =     0, gId# = N/A
+		Seg 126 : St = 263A, En = 263C, D =  -9403, RO =     0, gId# = N/A
+		Seg 127 : St = 2640, En = 2640, D =  -9406, RO =     0, gId# = N/A
+		Seg 128 : St = 2642, En = 2642, D =  -9407, RO =     0, gId# = N/A
+		Seg 129 : St = 2660, En = 2660, D =  -9436, RO =     0, gId# = N/A
+		Seg 130 : St = 2663, En = 2663, D =  -9438, RO =     0, gId# = N/A
+		Seg 131 : St = 2665, En = 2666, D =  -9439, RO =     0, gId# = N/A
+		Seg 132 : St = 266A, En = 266B, D =  -9442, RO =     0, gId# = N/A
+		Seg 133 : St = E801, En = E805, D =   6848, RO =     0, gId# = N/A
+		Seg 134 : St = E811, En = E811, D =   6908, RO =     0, gId# = N/A
+		Seg 135 : St = E813, En = E813, D =   6907, RO =     0, gId# = N/A
+		Seg 136 : St = E815, En = E818, D =   6906, RO =     0, gId# = N/A
+		Seg 137 : St = E832, En = E83B, D =   6881, RO =     0, gId# = N/A
+		Seg 138 : St = F001, En = F002, D =   4286, RO =     0, gId# = N/A
+		Seg 139 : St = F004, En = F009, D =      0, RO =  1068, gId# = 488
+		Seg 140 : St = F00F, En = F030, D =      0, RO =  1078, gId# = 494
+		Seg 141 : St = FB01, En = FB02, D =   1470, RO =     0, gId# = N/A
+		Seg 142 : St = FB20, En = FB20, D =   1958, RO =     0, gId# = N/A
+		Seg 143 : St = FB2A, En = FB36, D =   1949, RO =     0, gId# = N/A
+		Seg 144 : St = FB38, En = FB3C, D =   1948, RO =     0, gId# = N/A
+		Seg 145 : St = FB3E, En = FB3E, D =   1947, RO =     0, gId# = N/A
+		Seg 146 : St = FB40, En = FB41, D =   1946, RO =     0, gId# = N/A
+		Seg 147 : St = FB43, En = FB44, D =   1945, RO =     0, gId# = N/A
+		Seg 148 : St = FB46, En = FB51, D =      0, RO =  1130, gId# = 528
+		Seg 149 : St = FB56, En = FB59, D =   1993, RO =     0, gId# = N/A
+		Seg 150 : St = FB6A, En = FB6D, D =   1977, RO =     0, gId# = N/A
+		Seg 151 : St = FB7A, En = FB7D, D =   1965, RO =     0, gId# = N/A
+		Seg 152 : St = FB8A, En = FB8B, D =   1953, RO =     0, gId# = N/A
+		Seg 153 : St = FB8E, En = FB95, D =   1951, RO =     0, gId# = N/A
+		Seg 154 : St = FBFC, En = FBFF, D =      0, RO =  1142, gId# = 540
+		Seg 155 : St = FC08, En = FC09, D =   1839, RO =     0, gId# = N/A
+		Seg 156 : St = FC0E, En = FC0E, D =   1835, RO =     0, gId# = N/A
+		Seg 157 : St = FC12, En = FC12, D =   1832, RO =     0, gId# = N/A
+		Seg 158 : St = FC31, En = FC32, D =   1802, RO =     0, gId# = N/A
+		Seg 159 : St = FC3F, En = FC44, D =   1790, RO =     0, gId# = N/A
+		Seg 160 : St = FC4E, En = FC4F, D =   1781, RO =     0, gId# = N/A
+		Seg 161 : St = FC58, En = FC59, D =   1773, RO =     0, gId# = N/A
+		Seg 162 : St = FC5E, En = FC62, D =   1769, RO =     0, gId# = N/A
+		Seg 163 : St = FC6A, En = FC6A, D =   1762, RO =     0, gId# = N/A
+		Seg 164 : St = FC6D, En = FC70, D =   1760, RO =     0, gId# = N/A
+		Seg 165 : St = FC73, En = FC75, D =   1758, RO =     0, gId# = N/A
+		Seg 166 : St = FC8E, En = FC8F, D =   1734, RO =     0, gId# = N/A
+		Seg 167 : St = FC91, En = FC91, D =   1733, RO =     0, gId# = N/A
+		Seg 168 : St = FC94, En = FC94, D =   1731, RO =     0, gId# = N/A
+		Seg 169 : St = FC9C, En = FCA6, D =   1724, RO =     0, gId# = N/A
+		Seg 170 : St = FCA8, En = FCA8, D =   1723, RO =     0, gId# = N/A
+		Seg 171 : St = FCAA, En = FCAA, D =   1722, RO =     0, gId# = N/A
+		Seg 172 : St = FCAC, En = FCAC, D =   1721, RO =     0, gId# = N/A
+		Seg 173 : St = FCB0, En = FCB0, D =   1718, RO =     0, gId# = N/A
+		Seg 174 : St = FCC9, En = FCD5, D =   1694, RO =     0, gId# = N/A
+		Seg 175 : St = FCD8, En = FCD8, D =   1692, RO =     0, gId# = N/A
+		Seg 176 : St = FCDA, En = FCDD, D =   1691, RO =     0, gId# = N/A
+		Seg 177 : St = FD30, En = FD30, D =   1609, RO =     0, gId# = N/A
+		Seg 178 : St = FD3C, En = FD3F, D =   1598, RO =     0, gId# = N/A
+		Seg 179 : St = FD88, En = FD88, D =   1526, RO =     0, gId# = N/A
+		Seg 180 : St = FDF2, En = FDF2, D =   1421, RO =     0, gId# = N/A
+		Seg 181 : St = FE80, En = FEFC, D =   1280, RO =     0, gId# = N/A
+		Seg 182 : St = FEFF, En = FEFF, D =   1278, RO =     0, gId# = N/A
+		Seg 183 : St = FFFC, En = FFFC, D =   1132, RO =     0, gId# = N/A
+		Seg 184 : St = FFFF, En = FFFF, D =      1, RO =     0, gId# = N/A
+		glyphIdArray[0] =    3 (Offset = 05D0)
+		glyphIdArray[1] =  163 (Offset = 05D2)
+		glyphIdArray[2] =  132 (Offset = 05D4)
+		glyphIdArray[3] =  133 (Offset = 05D6)
+		glyphIdArray[4] = 1127 (Offset = 05D8)
+		glyphIdArray[5] =  150 (Offset = 05DA)
+		glyphIdArray[6] =  230 (Offset = 05DC)
+		glyphIdArray[7] =  134 (Offset = 05DE)
+		glyphIdArray[8] =  142 (Offset = 05E0)
+		glyphIdArray[9] =  139 (Offset = 05E2)
+		glyphIdArray[10] =  157 (Offset = 05E4)
+		glyphIdArray[11] =  169 (Offset = 05E6)
+		glyphIdArray[12] =  164 (Offset = 05E8)
+		glyphIdArray[13] =   16 (Offset = 05EA)
+		glyphIdArray[14] =  138 (Offset = 05EC)
+		glyphIdArray[15] =  256 (Offset = 05EE)
+		glyphIdArray[16] =  131 (Offset = 05F0)
+		glyphIdArray[17] =  147 (Offset = 05F2)
+		glyphIdArray[18] =  240 (Offset = 05F4)
+		glyphIdArray[19] =  241 (Offset = 05F6)
+		glyphIdArray[20] =  141 (Offset = 05F8)
+		glyphIdArray[21] =  151 (Offset = 05FA)
+		glyphIdArray[22] =  136 (Offset = 05FC)
+		glyphIdArray[23] =  194 (Offset = 05FE)
+		glyphIdArray[24] =  220 (Offset = 0600)
+		glyphIdArray[25] =  239 (Offset = 0602)
+		glyphIdArray[26] =  158 (Offset = 0604)
+		glyphIdArray[27] =  170 (Offset = 0606)
+		glyphIdArray[28] =  243 (Offset = 0608)
+		glyphIdArray[29] =  242 (Offset = 060A)
+		glyphIdArray[30] =  244 (Offset = 060C)
+		glyphIdArray[31] =  162 (Offset = 060E)
+		glyphIdArray[32] =  172 (Offset = 0610)
+		glyphIdArray[33] =  200 (Offset = 0612)
+		glyphIdArray[34] =  198 (Offset = 0614)
+		glyphIdArray[35] =  173 (Offset = 0616)
+		glyphIdArray[36] =   98 (Offset = 0618)
+		glyphIdArray[37] =   99 (Offset = 061A)
+		glyphIdArray[38] =  144 (Offset = 061C)
+		glyphIdArray[39] =  100 (Offset = 061E)
+		glyphIdArray[40] =  202 (Offset = 0620)
+		glyphIdArray[41] =  101 (Offset = 0622)
+		glyphIdArray[42] =  199 (Offset = 0624)
+		glyphIdArray[43] =  201 (Offset = 0626)
+		glyphIdArray[44] =  206 (Offset = 0628)
+		glyphIdArray[45] =  203 (Offset = 062A)
+		glyphIdArray[46] =  204 (Offset = 062C)
+		glyphIdArray[47] =  205 (Offset = 062E)
+		glyphIdArray[48] =  231 (Offset = 0630)
+		glyphIdArray[49] =  102 (Offset = 0632)
+		glyphIdArray[50] =  209 (Offset = 0634)
+		glyphIdArray[51] =  207 (Offset = 0636)
+		glyphIdArray[52] =  208 (Offset = 0638)
+		glyphIdArray[53] =  174 (Offset = 063A)
+		glyphIdArray[54] =  103 (Offset = 063C)
+		glyphIdArray[55] =  238 (Offset = 063E)
+		glyphIdArray[56] =  145 (Offset = 0640)
+		glyphIdArray[57] =  212 (Offset = 0642)
+		glyphIdArray[58] =  210 (Offset = 0644)
+		glyphIdArray[59] =  211 (Offset = 0646)
+		glyphIdArray[60] =  104 (Offset = 0648)
+		glyphIdArray[61] =  233 (Offset = 064A)
+		glyphIdArray[62] =  235 (Offset = 064C)
+		glyphIdArray[63] =  137 (Offset = 064E)
+		glyphIdArray[64] =  106 (Offset = 0650)
+		glyphIdArray[65] =  105 (Offset = 0652)
+		glyphIdArray[66] =  107 (Offset = 0654)
+		glyphIdArray[67] =  109 (Offset = 0656)
+		glyphIdArray[68] =  108 (Offset = 0658)
+		glyphIdArray[69] =  110 (Offset = 065A)
+		glyphIdArray[70] =  160 (Offset = 065C)
+		glyphIdArray[71] =  111 (Offset = 065E)
+		glyphIdArray[72] =  113 (Offset = 0660)
+		glyphIdArray[73] =  112 (Offset = 0662)
+		glyphIdArray[74] =  114 (Offset = 0664)
+		glyphIdArray[75] =  115 (Offset = 0666)
+		glyphIdArray[76] =  117 (Offset = 0668)
+		glyphIdArray[77] =  116 (Offset = 066A)
+		glyphIdArray[78] =  118 (Offset = 066C)
+		glyphIdArray[79] =  119 (Offset = 066E)
+		glyphIdArray[80] =  232 (Offset = 0670)
+		glyphIdArray[81] =  120 (Offset = 0672)
+		glyphIdArray[82] =  122 (Offset = 0674)
+		glyphIdArray[83] =  121 (Offset = 0676)
+		glyphIdArray[84] =  123 (Offset = 0678)
+		glyphIdArray[85] =  125 (Offset = 067A)
+		glyphIdArray[86] =  124 (Offset = 067C)
+		glyphIdArray[87] =  183 (Offset = 067E)
+		glyphIdArray[88] =  161 (Offset = 0680)
+		glyphIdArray[89] =  127 (Offset = 0682)
+		glyphIdArray[90] =  126 (Offset = 0684)
+		glyphIdArray[91] =  128 (Offset = 0686)
+		glyphIdArray[92] =  129 (Offset = 0688)
+		glyphIdArray[93] =  234 (Offset = 068A)
+		glyphIdArray[94] =  236 (Offset = 068C)
+		glyphIdArray[95] =  185 (Offset = 068E)
+		glyphIdArray[96] =  406 (Offset = 0690)
+		glyphIdArray[97] =  407 (Offset = 0692)
+		glyphIdArray[98] =  258 (Offset = 0694)
+		glyphIdArray[99] =  259 (Offset = 0696)
+		glyphIdArray[100] =  260 (Offset = 0698)
+		glyphIdArray[101] =  261 (Offset = 069A)
+		glyphIdArray[102] =  251 (Offset = 069C)
+		glyphIdArray[103] =  252 (Offset = 069E)
+		glyphIdArray[104] =  408 (Offset = 06A0)
+		glyphIdArray[105] =  409 (Offset = 06A2)
+		glyphIdArray[106] =  410 (Offset = 06A4)
+		glyphIdArray[107] =  411 (Offset = 06A6)
+		glyphIdArray[108] =  253 (Offset = 06A8)
+		glyphIdArray[109] =  254 (Offset = 06AA)
+		glyphIdArray[110] =  262 (Offset = 06AC)
+		glyphIdArray[111] =  263 (Offset = 06AE)
+		glyphIdArray[112] =  264 (Offset = 06B0)
+		glyphIdArray[113] =  255 (Offset = 06B2)
+		glyphIdArray[114] =  412 (Offset = 06B4)
+		glyphIdArray[115] =  413 (Offset = 06B6)
+		glyphIdArray[116] =  414 (Offset = 06B8)
+		glyphIdArray[117] =  415 (Offset = 06BA)
+		glyphIdArray[118] =  416 (Offset = 06BC)
+		glyphIdArray[119] =  417 (Offset = 06BE)
+		glyphIdArray[120] =  265 (Offset = 06C0)
+		glyphIdArray[121] =  266 (Offset = 06C2)
+		glyphIdArray[122] =  267 (Offset = 06C4)
+		glyphIdArray[123] =  268 (Offset = 06C6)
+		glyphIdArray[124] =  418 (Offset = 06C8)
+		glyphIdArray[125] =  419 (Offset = 06CA)
+		glyphIdArray[126] =  246 (Offset = 06CC)
+		glyphIdArray[127] =  247 (Offset = 06CE)
+		glyphIdArray[128] =  420 (Offset = 06D0)
+		glyphIdArray[129] =  421 (Offset = 06D2)
+		glyphIdArray[130] =  422 (Offset = 06D4)
+		glyphIdArray[131] =  423 (Offset = 06D6)
+		glyphIdArray[132] =  424 (Offset = 06D8)
+		glyphIdArray[133] =  425 (Offset = 06DA)
+		glyphIdArray[134] =  426 (Offset = 06DC)
+		glyphIdArray[135] =  427 (Offset = 06DE)
+		glyphIdArray[136] =  428 (Offset = 06E0)
+		glyphIdArray[137] =  429 (Offset = 06E2)
+		glyphIdArray[138] =  430 (Offset = 06E4)
+		glyphIdArray[139] =  431 (Offset = 06E6)
+		glyphIdArray[140] =  432 (Offset = 06E8)
+		glyphIdArray[141] =  433 (Offset = 06EA)
+		glyphIdArray[142] =  434 (Offset = 06EC)
+		glyphIdArray[143] =  435 (Offset = 06EE)
+		glyphIdArray[144] =  248 (Offset = 06F0)
+		glyphIdArray[145] =  213 (Offset = 06F2)
+		glyphIdArray[146] =  394 (Offset = 06F4)
+		glyphIdArray[147] =  395 (Offset = 06F6)
+		glyphIdArray[148] =  436 (Offset = 06F8)
+		glyphIdArray[149] =  437 (Offset = 06FA)
+		glyphIdArray[150] =  438 (Offset = 06FC)
+		glyphIdArray[151] =  439 (Offset = 06FE)
+		glyphIdArray[152] =  440 (Offset = 0700)
+		glyphIdArray[153] =  269 (Offset = 0702)
+		glyphIdArray[154] =  270 (Offset = 0704)
+		glyphIdArray[155] =  441 (Offset = 0706)
+		glyphIdArray[156] =  442 (Offset = 0708)
+		glyphIdArray[157] =  271 (Offset = 070A)
+		glyphIdArray[158] =  272 (Offset = 070C)
+		glyphIdArray[159] =  273 (Offset = 070E)
+		glyphIdArray[160] =  274 (Offset = 0710)
+		glyphIdArray[161] =  224 (Offset = 0712)
+		glyphIdArray[162] =  225 (Offset = 0714)
+		glyphIdArray[163] =  275 (Offset = 0716)
+		glyphIdArray[164] =  276 (Offset = 0718)
+		glyphIdArray[165] =  443 (Offset = 071A)
+		glyphIdArray[166] =  444 (Offset = 071C)
+		glyphIdArray[167] =  277 (Offset = 071E)
+		glyphIdArray[168] =  278 (Offset = 0720)
+		glyphIdArray[169] =  396 (Offset = 0722)
+		glyphIdArray[170] =  445 (Offset = 0724)
+		glyphIdArray[171] =  446 (Offset = 0726)
+		glyphIdArray[172] =  447 (Offset = 0728)
+		glyphIdArray[173] =  448 (Offset = 072A)
+		glyphIdArray[174] =  449 (Offset = 072C)
+		glyphIdArray[175] =  450 (Offset = 072E)
+		glyphIdArray[176] =  279 (Offset = 0730)
+		glyphIdArray[177] =  280 (Offset = 0732)
+		glyphIdArray[178] =  175 (Offset = 0734)
+		glyphIdArray[179] =  176 (Offset = 0736)
+		glyphIdArray[180] =  281 (Offset = 0738)
+		glyphIdArray[181] =  282 (Offset = 073A)
+		glyphIdArray[182] =  451 (Offset = 073C)
+		glyphIdArray[183] =  452 (Offset = 073E)
+		glyphIdArray[184] =  283 (Offset = 0740)
+		glyphIdArray[185] =  284 (Offset = 0742)
+		glyphIdArray[186] =  285 (Offset = 0744)
+		glyphIdArray[187] =  286 (Offset = 0746)
+		glyphIdArray[188] =  453 (Offset = 0748)
+		glyphIdArray[189] =  454 (Offset = 074A)
+		glyphIdArray[190] =  249 (Offset = 074C)
+		glyphIdArray[191] =  250 (Offset = 074E)
+		glyphIdArray[192] =  226 (Offset = 0750)
+		glyphIdArray[193] =  227 (Offset = 0752)
+		glyphIdArray[194] =  287 (Offset = 0754)
+		glyphIdArray[195] =  288 (Offset = 0756)
+		glyphIdArray[196] =  289 (Offset = 0758)
+		glyphIdArray[197] =  290 (Offset = 075A)
+		glyphIdArray[198] =  455 (Offset = 075C)
+		glyphIdArray[199] =  456 (Offset = 075E)
+		glyphIdArray[200] =  457 (Offset = 0760)
+		glyphIdArray[201] =  458 (Offset = 0762)
+		glyphIdArray[202] =  459 (Offset = 0764)
+		glyphIdArray[203] =  460 (Offset = 0766)
+		glyphIdArray[204] =  461 (Offset = 0768)
+		glyphIdArray[205] =  462 (Offset = 076A)
+		glyphIdArray[206] =  291 (Offset = 076C)
+		glyphIdArray[207] =  292 (Offset = 076E)
+		glyphIdArray[208] =  293 (Offset = 0770)
+		glyphIdArray[209] =  294 (Offset = 0772)
+		glyphIdArray[210] =  463 (Offset = 0774)
+		glyphIdArray[211] =  464 (Offset = 0776)
+		glyphIdArray[212] =  465 (Offset = 0778)
+		glyphIdArray[213] =  466 (Offset = 077A)
+		glyphIdArray[214] =  467 (Offset = 077C)
+		glyphIdArray[215] =  468 (Offset = 077E)
+		glyphIdArray[216] =  186 (Offset = 0780)
+		glyphIdArray[217] =  295 (Offset = 0782)
+		glyphIdArray[218] =  296 (Offset = 0784)
+		glyphIdArray[219] =  297 (Offset = 0786)
+		glyphIdArray[220] =  298 (Offset = 0788)
+		glyphIdArray[221] =  228 (Offset = 078A)
+		glyphIdArray[222] =  229 (Offset = 078C)
+		glyphIdArray[223] =  469 (Offset = 078E)
+		glyphIdArray[224] =  214 (Offset = 0790)
+		glyphIdArray[225] =  223 (Offset = 0792)
+		glyphIdArray[226] =  217 (Offset = 0794)
+		glyphIdArray[227] =  218 (Offset = 0796)
+		glyphIdArray[228] =  219 (Offset = 0798)
+		glyphIdArray[229] =  222 (Offset = 079A)
+		glyphIdArray[230] =  215 (Offset = 079C)
+		glyphIdArray[231] =  221 (Offset = 079E)
+		glyphIdArray[232] =  495 (Offset = 07A0)
+		glyphIdArray[233] =  496 (Offset = 07A2)
+		glyphIdArray[234] =  497 (Offset = 07A4)
+		glyphIdArray[235] =  476 (Offset = 07A6)
+		glyphIdArray[236] =  498 (Offset = 07A8)
+		glyphIdArray[237] =  499 (Offset = 07AA)
+		glyphIdArray[238] =  500 (Offset = 07AC)
+		glyphIdArray[239] =  502 (Offset = 07AE)
+		glyphIdArray[240] =  503 (Offset = 07B0)
+		glyphIdArray[241] =  504 (Offset = 07B2)
+		glyphIdArray[242] =  505 (Offset = 07B4)
+		glyphIdArray[243] =  506 (Offset = 07B6)
+		glyphIdArray[244] =  299 (Offset = 07B8)
+		glyphIdArray[245] =  507 (Offset = 07BA)
+		glyphIdArray[246] =  508 (Offset = 07BC)
+		glyphIdArray[247] =  509 (Offset = 07BE)
+		glyphIdArray[248] =  510 (Offset = 07C0)
+		glyphIdArray[249] =  300 (Offset = 07C2)
+		glyphIdArray[250] =  511 (Offset = 07C4)
+		glyphIdArray[251] =  512 (Offset = 07C6)
+		glyphIdArray[252] =  513 (Offset = 07C8)
+		glyphIdArray[253] =  514 (Offset = 07CA)
+		glyphIdArray[254] =  515 (Offset = 07CC)
+		glyphIdArray[255] =  516 (Offset = 07CE)
+		glyphIdArray[256] =  517 (Offset = 07D0)
+		glyphIdArray[257] =  518 (Offset = 07D2)
+		glyphIdArray[258] =  519 (Offset = 07D4)
+		glyphIdArray[259] =  520 (Offset = 07D6)
+		glyphIdArray[260] =  521 (Offset = 07D8)
+		glyphIdArray[261] =  522 (Offset = 07DA)
+		glyphIdArray[262] =  301 (Offset = 07DC)
+		glyphIdArray[263] =  523 (Offset = 07DE)
+		glyphIdArray[264] =  524 (Offset = 07E0)
+		glyphIdArray[265] =  525 (Offset = 07E2)
+		glyphIdArray[266] =  526 (Offset = 07E4)
+		glyphIdArray[267] =  527 (Offset = 07E6)
+		glyphIdArray[268] =  528 (Offset = 07E8)
+		glyphIdArray[269] =  529 (Offset = 07EA)
+		glyphIdArray[270] =  530 (Offset = 07EC)
+		glyphIdArray[271] =  531 (Offset = 07EE)
+		glyphIdArray[272] =  532 (Offset = 07F0)
+		glyphIdArray[273] =  302 (Offset = 07F2)
+		glyphIdArray[274] =  533 (Offset = 07F4)
+		glyphIdArray[275] =  534 (Offset = 07F6)
+		glyphIdArray[276] =  303 (Offset = 07F8)
+		glyphIdArray[277] =  304 (Offset = 07FA)
+		glyphIdArray[278] =  535 (Offset = 07FC)
+		glyphIdArray[279] =  536 (Offset = 07FE)
+		glyphIdArray[280] =  537 (Offset = 0800)
+		glyphIdArray[281] =  538 (Offset = 0802)
+		glyphIdArray[282] =  539 (Offset = 0804)
+		glyphIdArray[283] =  540 (Offset = 0806)
+		glyphIdArray[284] =  541 (Offset = 0808)
+		glyphIdArray[285] =  542 (Offset = 080A)
+		glyphIdArray[286] =  543 (Offset = 080C)
+		glyphIdArray[287] =  544 (Offset = 080E)
+		glyphIdArray[288] =  652 (Offset = 0810)
+		glyphIdArray[289] =  545 (Offset = 0812)
+		glyphIdArray[290] =  546 (Offset = 0814)
+		glyphIdArray[291] =  305 (Offset = 0816)
+		glyphIdArray[292] =  306 (Offset = 0818)
+		glyphIdArray[293] =  547 (Offset = 081A)
+		glyphIdArray[294] =  307 (Offset = 081C)
+		glyphIdArray[295] =  548 (Offset = 081E)
+		glyphIdArray[296] =  549 (Offset = 0820)
+		glyphIdArray[297] =  550 (Offset = 0822)
+		glyphIdArray[298] =  551 (Offset = 0824)
+		glyphIdArray[299] =  552 (Offset = 0826)
+		glyphIdArray[300] =  553 (Offset = 0828)
+		glyphIdArray[301] =  554 (Offset = 082A)
+		glyphIdArray[302] =  555 (Offset = 082C)
+		glyphIdArray[303] =  648 (Offset = 082E)
+		glyphIdArray[304] =  649 (Offset = 0830)
+		glyphIdArray[305] = 1294 (Offset = 0832)
+		glyphIdArray[306] = 1295 (Offset = 0834)
+		glyphIdArray[307] =  751 (Offset = 0836)
+		glyphIdArray[308] =  897 (Offset = 0838)
+		glyphIdArray[309] =  899 (Offset = 083A)
+		glyphIdArray[310] =  901 (Offset = 083C)
+		glyphIdArray[311] =  903 (Offset = 083E)
+		glyphIdArray[312] =  905 (Offset = 0840)
+		glyphIdArray[313] =  909 (Offset = 0842)
+		glyphIdArray[314] =  911 (Offset = 0844)
+		glyphIdArray[315] =  915 (Offset = 0846)
+		glyphIdArray[316] =  917 (Offset = 0848)
+		glyphIdArray[317] =  921 (Offset = 084A)
+		glyphIdArray[318] =  925 (Offset = 084C)
+		glyphIdArray[319] =  929 (Offset = 084E)
+		glyphIdArray[320] =  933 (Offset = 0850)
+		glyphIdArray[321] =  937 (Offset = 0852)
+		glyphIdArray[322] =  939 (Offset = 0854)
+		glyphIdArray[323] =  941 (Offset = 0856)
+		glyphIdArray[324] =  943 (Offset = 0858)
+		glyphIdArray[325] =  945 (Offset = 085A)
+		glyphIdArray[326] =  949 (Offset = 085C)
+		glyphIdArray[327] =  953 (Offset = 085E)
+		glyphIdArray[328] =  957 (Offset = 0860)
+		glyphIdArray[329] =  961 (Offset = 0862)
+		glyphIdArray[330] =  965 (Offset = 0864)
+		glyphIdArray[331] =  969 (Offset = 0866)
+		glyphIdArray[332] =  973 (Offset = 0868)
+		glyphIdArray[333] =  752 (Offset = 086A)
+		glyphIdArray[334] =  977 (Offset = 086C)
+		glyphIdArray[335] =  981 (Offset = 086E)
+		glyphIdArray[336] =  985 (Offset = 0870)
+		glyphIdArray[337] =  989 (Offset = 0872)
+		glyphIdArray[338] =  993 (Offset = 0874)
+		glyphIdArray[339] =  997 (Offset = 0876)
+		glyphIdArray[340] = 1001 (Offset = 0878)
+		glyphIdArray[341] = 1005 (Offset = 087A)
+		glyphIdArray[342] = 1007 (Offset = 087C)
+		glyphIdArray[343] = 1009 (Offset = 087E)
+		glyphIdArray[344] =  753 (Offset = 0880)
+		glyphIdArray[345] =  754 (Offset = 0882)
+		glyphIdArray[346] =  755 (Offset = 0884)
+		glyphIdArray[347] =  756 (Offset = 0886)
+		glyphIdArray[348] =  757 (Offset = 0888)
+		glyphIdArray[349] =  758 (Offset = 088A)
+		glyphIdArray[350] =  759 (Offset = 088C)
+		glyphIdArray[351] =  760 (Offset = 088E)
+		glyphIdArray[352] =  774 (Offset = 0890)
+		glyphIdArray[353] =  797 (Offset = 0892)
+		glyphIdArray[354] =  761 (Offset = 0894)
+		glyphIdArray[355] =  762 (Offset = 0896)
+		glyphIdArray[356] =  763 (Offset = 0898)
+		glyphIdArray[357] =  764 (Offset = 089A)
+		glyphIdArray[358] =  778 (Offset = 089C)
+		glyphIdArray[359] =  779 (Offset = 089E)
+		glyphIdArray[360] =  780 (Offset = 08A0)
+		glyphIdArray[361] =  768 (Offset = 08A2)
+		glyphIdArray[362] =  769 (Offset = 08A4)
+		glyphIdArray[363] =  770 (Offset = 08A6)
+		glyphIdArray[364] = 1186 (Offset = 08A8)
+		glyphIdArray[365] = 1187 (Offset = 08AA)
+		glyphIdArray[366] = 1188 (Offset = 08AC)
+		glyphIdArray[367] = 1189 (Offset = 08AE)
+		glyphIdArray[368] = 1190 (Offset = 08B0)
+		glyphIdArray[369] = 1191 (Offset = 08B2)
+		glyphIdArray[370] = 1192 (Offset = 08B4)
+		glyphIdArray[371] = 1193 (Offset = 08B6)
+		glyphIdArray[372] = 1194 (Offset = 08B8)
+		glyphIdArray[373] = 1195 (Offset = 08BA)
+		glyphIdArray[374] = 1196 (Offset = 08BC)
+		glyphIdArray[375] = 1197 (Offset = 08BE)
+		glyphIdArray[376] = 1198 (Offset = 08C0)
+		glyphIdArray[377] = 1199 (Offset = 08C2)
+		glyphIdArray[378] = 1200 (Offset = 08C4)
+		glyphIdArray[379] = 1201 (Offset = 08C6)
+		glyphIdArray[380] = 1202 (Offset = 08C8)
+		glyphIdArray[381] = 1203 (Offset = 08CA)
+		glyphIdArray[382] = 1204 (Offset = 08CC)
+		glyphIdArray[383] = 1205 (Offset = 08CE)
+		glyphIdArray[384] = 1206 (Offset = 08D0)
+		glyphIdArray[385] = 1207 (Offset = 08D2)
+		glyphIdArray[386] = 1208 (Offset = 08D4)
+		glyphIdArray[387] = 1209 (Offset = 08D6)
+		glyphIdArray[388] = 1210 (Offset = 08D8)
+		glyphIdArray[389] = 1211 (Offset = 08DA)
+		glyphIdArray[390] = 1212 (Offset = 08DC)
+		glyphIdArray[391] = 1213 (Offset = 08DE)
+		glyphIdArray[392] = 1214 (Offset = 08E0)
+		glyphIdArray[393] = 1215 (Offset = 08E2)
+		glyphIdArray[394] = 1216 (Offset = 08E4)
+		glyphIdArray[395] = 1217 (Offset = 08E6)
+		glyphIdArray[396] = 1218 (Offset = 08E8)
+		glyphIdArray[397] = 1219 (Offset = 08EA)
+		glyphIdArray[398] = 1220 (Offset = 08EC)
+		glyphIdArray[399] = 1221 (Offset = 08EE)
+		glyphIdArray[400] = 1222 (Offset = 08F0)
+		glyphIdArray[401] = 1223 (Offset = 08F2)
+		glyphIdArray[402] = 1224 (Offset = 08F4)
+		glyphIdArray[403] = 1225 (Offset = 08F6)
+		glyphIdArray[404] = 1226 (Offset = 08F8)
+		glyphIdArray[405] = 1227 (Offset = 08FA)
+		glyphIdArray[406] = 1228 (Offset = 08FC)
+		glyphIdArray[407] = 1229 (Offset = 08FE)
+		glyphIdArray[408] = 1230 (Offset = 0900)
+		glyphIdArray[409] = 1231 (Offset = 0902)
+		glyphIdArray[410] = 1232 (Offset = 0904)
+		glyphIdArray[411] = 1233 (Offset = 0906)
+		glyphIdArray[412] = 1234 (Offset = 0908)
+		glyphIdArray[413] = 1235 (Offset = 090A)
+		glyphIdArray[414] = 1236 (Offset = 090C)
+		glyphIdArray[415] = 1237 (Offset = 090E)
+		glyphIdArray[416] = 1238 (Offset = 0910)
+		glyphIdArray[417] = 1239 (Offset = 0912)
+		glyphIdArray[418] = 1240 (Offset = 0914)
+		glyphIdArray[419] = 1241 (Offset = 0916)
+		glyphIdArray[420] = 1242 (Offset = 0918)
+		glyphIdArray[421] = 1243 (Offset = 091A)
+		glyphIdArray[422] = 1244 (Offset = 091C)
+		glyphIdArray[423] = 1245 (Offset = 091E)
+		glyphIdArray[424] = 1246 (Offset = 0920)
+		glyphIdArray[425] = 1247 (Offset = 0922)
+		glyphIdArray[426] = 1248 (Offset = 0924)
+		glyphIdArray[427] = 1249 (Offset = 0926)
+		glyphIdArray[428] = 1250 (Offset = 0928)
+		glyphIdArray[429] = 1251 (Offset = 092A)
+		glyphIdArray[430] = 1252 (Offset = 092C)
+		glyphIdArray[431] = 1253 (Offset = 092E)
+		glyphIdArray[432] = 1254 (Offset = 0930)
+		glyphIdArray[433] = 1255 (Offset = 0932)
+		glyphIdArray[434] = 1256 (Offset = 0934)
+		glyphIdArray[435] = 1257 (Offset = 0936)
+		glyphIdArray[436] = 1258 (Offset = 0938)
+		glyphIdArray[437] = 1259 (Offset = 093A)
+		glyphIdArray[438] = 1260 (Offset = 093C)
+		glyphIdArray[439] = 1261 (Offset = 093E)
+		glyphIdArray[440] = 1262 (Offset = 0940)
+		glyphIdArray[441] = 1263 (Offset = 0942)
+		glyphIdArray[442] = 1264 (Offset = 0944)
+		glyphIdArray[443] = 1265 (Offset = 0946)
+		glyphIdArray[444] = 1266 (Offset = 0948)
+		glyphIdArray[445] = 1267 (Offset = 094A)
+		glyphIdArray[446] =  483 (Offset = 094C)
+		glyphIdArray[447] =  484 (Offset = 094E)
+		glyphIdArray[448] = 1268 (Offset = 0950)
+		glyphIdArray[449] = 1269 (Offset = 0952)
+		glyphIdArray[450] = 1270 (Offset = 0954)
+		glyphIdArray[451] = 1271 (Offset = 0956)
+		glyphIdArray[452] = 1272 (Offset = 0958)
+		glyphIdArray[453] = 1273 (Offset = 095A)
+		glyphIdArray[454] =  177 (Offset = 095C)
+		glyphIdArray[455] =  178 (Offset = 095E)
+		glyphIdArray[456] =  650 (Offset = 0960)
+		glyphIdArray[457] =  308 (Offset = 0962)
+		glyphIdArray[458] =  181 (Offset = 0964)
+		glyphIdArray[459] =  182 (Offset = 0966)
+		glyphIdArray[460] =  195 (Offset = 0968)
+		glyphIdArray[461] =  485 (Offset = 096A)
+		glyphIdArray[462] =  179 (Offset = 096C)
+		glyphIdArray[463] =  180 (Offset = 096E)
+		glyphIdArray[464] =  196 (Offset = 0970)
+		glyphIdArray[465] =  130 (Offset = 0972)
+		glyphIdArray[466] =  193 (Offset = 0974)
+		glyphIdArray[467] =  135 (Offset = 0976)
+		glyphIdArray[468] =  245 (Offset = 0978)
+		glyphIdArray[469] =  487 (Offset = 097A)
+		glyphIdArray[470] =  704 (Offset = 097C)
+		glyphIdArray[471] = 1149 (Offset = 097E)
+		glyphIdArray[472] =  188 (Offset = 0980)
+		glyphIdArray[473] =  153 (Offset = 0982)
+		glyphIdArray[474] =  237 (Offset = 0984)
+		glyphIdArray[475] =  194 (Offset = 0986)
+		glyphIdArray[476] =  165 (Offset = 0988)
+		glyphIdArray[477] =  146 (Offset = 098A)
+		glyphIdArray[478] =  319 (Offset = 098C)
+		glyphIdArray[479] =  143 (Offset = 098E)
+		glyphIdArray[480] =  321 (Offset = 0990)
+		glyphIdArray[481] =  374 (Offset = 0992)
+		glyphIdArray[482] =  401 (Offset = 0994)
+		glyphIdArray[483] =  402 (Offset = 0996)
+		glyphIdArray[484] =  403 (Offset = 0998)
+		glyphIdArray[485] =  375 (Offset = 099A)
+		glyphIdArray[486] =  184 (Offset = 099C)
+		glyphIdArray[487] =  380 (Offset = 099E)
+		glyphIdArray[488] =  493 (Offset = 09A0)
+		glyphIdArray[489] =  494 (Offset = 09A2)
+		glyphIdArray[490] = 1136 (Offset = 09A4)
+		glyphIdArray[491] = 1137 (Offset = 09A6)
+		glyphIdArray[492] = 1152 (Offset = 09A8)
+		glyphIdArray[493] = 1138 (Offset = 09AA)
+		glyphIdArray[494] = 1155 (Offset = 09AC)
+		glyphIdArray[495] = 1140 (Offset = 09AE)
+		glyphIdArray[496] = 1142 (Offset = 09B0)
+		glyphIdArray[497] = 1156 (Offset = 09B2)
+		glyphIdArray[498] = 1141 (Offset = 09B4)
+		glyphIdArray[499] = 1157 (Offset = 09B6)
+		glyphIdArray[500] = 1144 (Offset = 09B8)
+		glyphIdArray[501] = 1158 (Offset = 09BA)
+		glyphIdArray[502] = 1159 (Offset = 09BC)
+		glyphIdArray[503] = 1160 (Offset = 09BE)
+		glyphIdArray[504] = 1161 (Offset = 09C0)
+		glyphIdArray[505] = 1162 (Offset = 09C2)
+		glyphIdArray[506] = 1163 (Offset = 09C4)
+		glyphIdArray[507] = 1143 (Offset = 09C6)
+		glyphIdArray[508] = 1171 (Offset = 09C8)
+		glyphIdArray[509] = 1164 (Offset = 09CA)
+		glyphIdArray[510] = 1165 (Offset = 09CC)
+		glyphIdArray[511] = 1166 (Offset = 09CE)
+		glyphIdArray[512] = 1167 (Offset = 09D0)
+		glyphIdArray[513] = 1168 (Offset = 09D2)
+		glyphIdArray[514] = 1173 (Offset = 09D4)
+		glyphIdArray[515] = 1177 (Offset = 09D6)
+		glyphIdArray[516] = 1178 (Offset = 09D8)
+		glyphIdArray[517] = 1179 (Offset = 09DA)
+		glyphIdArray[518] = 1180 (Offset = 09DC)
+		glyphIdArray[519] = 1181 (Offset = 09DE)
+		glyphIdArray[520] = 1174 (Offset = 09E0)
+		glyphIdArray[521] = 1175 (Offset = 09E2)
+		glyphIdArray[522] = 1176 (Offset = 09E4)
+		glyphIdArray[523] = 1148 (Offset = 09E6)
+		glyphIdArray[524] = 1182 (Offset = 09E8)
+		glyphIdArray[525] = 1183 (Offset = 09EA)
+		glyphIdArray[526] = 1184 (Offset = 09EC)
+		glyphIdArray[527] = 1185 (Offset = 09EE)
+		glyphIdArray[528] =  734 (Offset = 09F0)
+		glyphIdArray[529] =  735 (Offset = 09F2)
+		glyphIdArray[530] =  736 (Offset = 09F4)
+		glyphIdArray[531] =  737 (Offset = 09F6)
+		glyphIdArray[532] =  738 (Offset = 09F8)
+		glyphIdArray[533] =  739 (Offset = 09FA)
+		glyphIdArray[534] =  740 (Offset = 09FC)
+		glyphIdArray[535] =  741 (Offset = 09FE)
+		glyphIdArray[536] =  742 (Offset = 0A00)
+		glyphIdArray[537] =  743 (Offset = 0A02)
+		glyphIdArray[538] =  797 (Offset = 0A04)
+		glyphIdArray[539] =  798 (Offset = 0A06)
+		glyphIdArray[540] =  821 (Offset = 0A08)
+		glyphIdArray[541] =  822 (Offset = 0A0A)
+		glyphIdArray[542] = 1011 (Offset = 0A0C)
+		glyphIdArray[543] = 1012 (Offset = 0A0E)
+
+		Which Means:
+		   1. Char 0020 -> Index 3
+		      Char 0021 -> Index 4
+		      Char 0022 -> Index 5
+		      Char 0023 -> Index 6
+		      Char 0024 -> Index 7
+		      Char 0025 -> Index 8
+		      Char 0026 -> Index 9
+		      Char 0027 -> Index 10
+		      Char 0028 -> Index 11
+		      Char 0029 -> Index 12
+		      Char 002A -> Index 13
+		      Char 002B -> Index 14
+		      Char 002C -> Index 15
+		      Char 002D -> Index 16
+		      Char 002E -> Index 17
+		      Char 002F -> Index 18
+		      Char 0030 -> Index 19
+		      Char 0031 -> Index 20
+		      Char 0032 -> Index 21
+		      Char 0033 -> Index 22
+		      Char 0034 -> Index 23
+		      Char 0035 -> Index 24
+		      Char 0036 -> Index 25
+		      Char 0037 -> Index 26
+		      Char 0038 -> Index 27
+		      Char 0039 -> Index 28
+		      Char 003A -> Index 29
+		      Char 003B -> Index 30
+		      Char 003C -> Index 31
+		      Char 003D -> Index 32
+		      Char 003E -> Index 33
+		      Char 003F -> Index 34
+		      Char 0040 -> Index 35
+		      Char 0041 -> Index 36
+		      Char 0042 -> Index 37
+		      Char 0043 -> Index 38
+		      Char 0044 -> Index 39
+		      Char 0045 -> Index 40
+		      Char 0046 -> Index 41
+		      Char 0047 -> Index 42
+		      Char 0048 -> Index 43
+		      Char 0049 -> Index 44
+		      Char 004A -> Index 45
+		      Char 004B -> Index 46
+		      Char 004C -> Index 47
+		      Char 004D -> Index 48
+		      Char 004E -> Index 49
+		      Char 004F -> Index 50
+		      Char 0050 -> Index 51
+		      Char 0051 -> Index 52
+		      Char 0052 -> Index 53
+		      Char 0053 -> Index 54
+		      Char 0054 -> Index 55
+		      Char 0055 -> Index 56
+		      Char 0056 -> Index 57
+		      Char 0057 -> Index 58
+		      Char 0058 -> Index 59
+		      Char 0059 -> Index 60
+		      Char 005A -> Index 61
+		      Char 005B -> Index 62
+		      Char 005C -> Index 63
+		      Char 005D -> Index 64
+		      Char 005E -> Index 65
+		      Char 005F -> Index 66
+		      Char 0060 -> Index 67
+		      Char 0061 -> Index 68
+		      Char 0062 -> Index 69
+		      Char 0063 -> Index 70
+		      Char 0064 -> Index 71
+		      Char 0065 -> Index 72
+		      Char 0066 -> Index 73
+		      Char 0067 -> Index 74
+		      Char 0068 -> Index 75
+		      Char 0069 -> Index 76
+		      Char 006A -> Index 77
+		      Char 006B -> Index 78
+		      Char 006C -> Index 79
+		      Char 006D -> Index 80
+		      Char 006E -> Index 81
+		      Char 006F -> Index 82
+		      Char 0070 -> Index 83
+		      Char 0071 -> Index 84
+		      Char 0072 -> Index 85
+		      Char 0073 -> Index 86
+		      Char 0074 -> Index 87
+		      Char 0075 -> Index 88
+		      Char 0076 -> Index 89
+		      Char 0077 -> Index 90
+		      Char 0078 -> Index 91
+		      Char 0079 -> Index 92
+		      Char 007A -> Index 93
+		      Char 007B -> Index 94
+		      Char 007C -> Index 95
+		      Char 007D -> Index 96
+		      Char 007E -> Index 97
+		   2. Char 00A0 -> Index 3
+		      Char 00A1 -> Index 163
+		      Char 00A2 -> Index 132
+		      Char 00A3 -> Index 133
+		      Char 00A4 -> Index 1127
+		      Char 00A5 -> Index 150
+		      Char 00A6 -> Index 230
+		      Char 00A7 -> Index 134
+		      Char 00A8 -> Index 142
+		      Char 00A9 -> Index 139
+		      Char 00AA -> Index 157
+		      Char 00AB -> Index 169
+		      Char 00AC -> Index 164
+		      Char 00AD -> Index 16
+		      Char 00AE -> Index 138
+		      Char 00AF -> Index 256
+		      Char 00B0 -> Index 131
+		      Char 00B1 -> Index 147
+		      Char 00B2 -> Index 240
+		      Char 00B3 -> Index 241
+		      Char 00B4 -> Index 141
+		      Char 00B5 -> Index 151
+		      Char 00B6 -> Index 136
+		      Char 00B7 -> Index 194
+		      Char 00B8 -> Index 220
+		      Char 00B9 -> Index 239
+		      Char 00BA -> Index 158
+		      Char 00BB -> Index 170
+		      Char 00BC -> Index 243
+		      Char 00BD -> Index 242
+		      Char 00BE -> Index 244
+		      Char 00BF -> Index 162
+		      Char 00C0 -> Index 172
+		      Char 00C1 -> Index 200
+		      Char 00C2 -> Index 198
+		      Char 00C3 -> Index 173
+		      Char 00C4 -> Index 98
+		      Char 00C5 -> Index 99
+		      Char 00C6 -> Index 144
+		      Char 00C7 -> Index 100
+		      Char 00C8 -> Index 202
+		      Char 00C9 -> Index 101
+		      Char 00CA -> Index 199
+		      Char 00CB -> Index 201
+		      Char 00CC -> Index 206
+		      Char 00CD -> Index 203
+		      Char 00CE -> Index 204
+		      Char 00CF -> Index 205
+		      Char 00D0 -> Index 231
+		      Char 00D1 -> Index 102
+		      Char 00D2 -> Index 209
+		      Char 00D3 -> Index 207
+		      Char 00D4 -> Index 208
+		      Char 00D5 -> Index 174
+		      Char 00D6 -> Index 103
+		      Char 00D7 -> Index 238
+		      Char 00D8 -> Index 145
+		      Char 00D9 -> Index 212
+		      Char 00DA -> Index 210
+		      Char 00DB -> Index 211
+		      Char 00DC -> Index 104
+		      Char 00DD -> Index 233
+		      Char 00DE -> Index 235
+		      Char 00DF -> Index 137
+		      Char 00E0 -> Index 106
+		      Char 00E1 -> Index 105
+		      Char 00E2 -> Index 107
+		      Char 00E3 -> Index 109
+		      Char 00E4 -> Index 108
+		      Char 00E5 -> Index 110
+		      Char 00E6 -> Index 160
+		      Char 00E7 -> Index 111
+		      Char 00E8 -> Index 113
+		      Char 00E9 -> Index 112
+		      Char 00EA -> Index 114
+		      Char 00EB -> Index 115
+		      Char 00EC -> Index 117
+		      Char 00ED -> Index 116
+		      Char 00EE -> Index 118
+		      Char 00EF -> Index 119
+		      Char 00F0 -> Index 232
+		      Char 00F1 -> Index 120
+		      Char 00F2 -> Index 122
+		      Char 00F3 -> Index 121
+		      Char 00F4 -> Index 123
+		      Char 00F5 -> Index 125
+		      Char 00F6 -> Index 124
+		      Char 00F7 -> Index 183
+		      Char 00F8 -> Index 161
+		      Char 00F9 -> Index 127
+		      Char 00FA -> Index 126
+		      Char 00FB -> Index 128
+		      Char 00FC -> Index 129
+		      Char 00FD -> Index 234
+		      Char 00FE -> Index 236
+		      Char 00FF -> Index 185
+		      Char 0100 -> Index 406
+		      Char 0101 -> Index 407
+		      Char 0102 -> Index 258
+		      Char 0103 -> Index 259
+		      Char 0104 -> Index 260
+		      Char 0105 -> Index 261
+		      Char 0106 -> Index 251
+		      Char 0107 -> Index 252
+		      Char 0108 -> Index 408
+		      Char 0109 -> Index 409
+		      Char 010A -> Index 410
+		      Char 010B -> Index 411
+		      Char 010C -> Index 253
+		      Char 010D -> Index 254
+		      Char 010E -> Index 262
+		      Char 010F -> Index 263
+		      Char 0110 -> Index 264
+		      Char 0111 -> Index 255
+		      Char 0112 -> Index 412
+		      Char 0113 -> Index 413
+		      Char 0114 -> Index 414
+		      Char 0115 -> Index 415
+		      Char 0116 -> Index 416
+		      Char 0117 -> Index 417
+		      Char 0118 -> Index 265
+		      Char 0119 -> Index 266
+		      Char 011A -> Index 267
+		      Char 011B -> Index 268
+		      Char 011C -> Index 418
+		      Char 011D -> Index 419
+		      Char 011E -> Index 246
+		      Char 011F -> Index 247
+		      Char 0120 -> Index 420
+		      Char 0121 -> Index 421
+		      Char 0122 -> Index 422
+		      Char 0123 -> Index 423
+		      Char 0124 -> Index 424
+		      Char 0125 -> Index 425
+		      Char 0126 -> Index 426
+		      Char 0127 -> Index 427
+		      Char 0128 -> Index 428
+		      Char 0129 -> Index 429
+		      Char 012A -> Index 430
+		      Char 012B -> Index 431
+		      Char 012C -> Index 432
+		      Char 012D -> Index 433
+		      Char 012E -> Index 434
+		      Char 012F -> Index 435
+		      Char 0130 -> Index 248
+		      Char 0131 -> Index 213
+		      Char 0132 -> Index 394
+		      Char 0133 -> Index 395
+		      Char 0134 -> Index 436
+		      Char 0135 -> Index 437
+		      Char 0136 -> Index 438
+		      Char 0137 -> Index 439
+		      Char 0138 -> Index 440
+		      Char 0139 -> Index 269
+		      Char 013A -> Index 270
+		      Char 013B -> Index 441
+		      Char 013C -> Index 442
+		      Char 013D -> Index 271
+		      Char 013E -> Index 272
+		      Char 013F -> Index 273
+		      Char 0140 -> Index 274
+		      Char 0141 -> Index 224
+		      Char 0142 -> Index 225
+		      Char 0143 -> Index 275
+		      Char 0144 -> Index 276
+		      Char 0145 -> Index 443
+		      Char 0146 -> Index 444
+		      Char 0147 -> Index 277
+		      Char 0148 -> Index 278
+		      Char 0149 -> Index 396
+		      Char 014A -> Index 445
+		      Char 014B -> Index 446
+		      Char 014C -> Index 447
+		      Char 014D -> Index 448
+		      Char 014E -> Index 449
+		      Char 014F -> Index 450
+		      Char 0150 -> Index 279
+		      Char 0151 -> Index 280
+		      Char 0152 -> Index 175
+		      Char 0153 -> Index 176
+		      Char 0154 -> Index 281
+		      Char 0155 -> Index 282
+		      Char 0156 -> Index 451
+		      Char 0157 -> Index 452
+		      Char 0158 -> Index 283
+		      Char 0159 -> Index 284
+		      Char 015A -> Index 285
+		      Char 015B -> Index 286
+		      Char 015C -> Index 453
+		      Char 015D -> Index 454
+		      Char 015E -> Index 249
+		      Char 015F -> Index 250
+		      Char 0160 -> Index 226
+		      Char 0161 -> Index 227
+		      Char 0162 -> Index 287
+		      Char 0163 -> Index 288
+		      Char 0164 -> Index 289
+		      Char 0165 -> Index 290
+		      Char 0166 -> Index 455
+		      Char 0167 -> Index 456
+		      Char 0168 -> Index 457
+		      Char 0169 -> Index 458
+		      Char 016A -> Index 459
+		      Char 016B -> Index 460
+		      Char 016C -> Index 461
+		      Char 016D -> Index 462
+		      Char 016E -> Index 291
+		      Char 016F -> Index 292
+		      Char 0170 -> Index 293
+		      Char 0171 -> Index 294
+		      Char 0172 -> Index 463
+		      Char 0173 -> Index 464
+		      Char 0174 -> Index 465
+		      Char 0175 -> Index 466
+		      Char 0176 -> Index 467
+		      Char 0177 -> Index 468
+		      Char 0178 -> Index 186
+		      Char 0179 -> Index 295
+		      Char 017A -> Index 296
+		      Char 017B -> Index 297
+		      Char 017C -> Index 298
+		      Char 017D -> Index 228
+		      Char 017E -> Index 229
+		      Char 017F -> Index 469
+		   3. Char 018F -> Index 1314
+		   4. Char 0192 -> Index 166
+		   5. Char 01A0 -> Index 1129
+		      Char 01A1 -> Index 1130
+		   6. Char 01AF -> Index 1131
+		      Char 01B0 -> Index 1132
+		   7. Char 01CD -> Index 1274
+		      Char 01CE -> Index 1275
+		      Char 01CF -> Index 1276
+		      Char 01D0 -> Index 1277
+		      Char 01D1 -> Index 1278
+		      Char 01D2 -> Index 1279
+		      Char 01D3 -> Index 1280
+		      Char 01D4 -> Index 1281
+		      Char 01D5 -> Index 1282
+		      Char 01D6 -> Index 1283
+		      Char 01D7 -> Index 1284
+		      Char 01D8 -> Index 1285
+		      Char 01D9 -> Index 1286
+		      Char 01DA -> Index 1287
+		      Char 01DB -> Index 1288
+		      Char 01DC -> Index 1289
+		   8. Char 01FA -> Index 470
+		      Char 01FB -> Index 471
+		      Char 01FC -> Index 472
+		      Char 01FD -> Index 473
+		      Char 01FE -> Index 474
+		      Char 01FF -> Index 475
+		   9. Char 0259 -> Index 1315
+		  10. Char 02C6 -> Index 214
+		      Char 02C7 -> Index 223
+		  11. Char 02C9 -> Index 216
+		  12. Char 02D8 -> Index 217
+		      Char 02D9 -> Index 218
+		      Char 02DA -> Index 219
+		      Char 02DB -> Index 222
+		      Char 02DC -> Index 215
+		      Char 02DD -> Index 221
+		  13. Char 0300 -> Index 1169
+		      Char 0301 -> Index 1170
+		  14. Char 0303 -> Index 1145
+		  15. Char 0309 -> Index 1139
+		  16. Char 0323 -> Index 1172
+		  17. Char 037E -> Index 30
+		  18. Char 0384 -> Index 495
+		      Char 0385 -> Index 496
+		      Char 0386 -> Index 497
+		      Char 0387 -> Index 476
+		      Char 0388 -> Index 498
+		      Char 0389 -> Index 499
+		      Char 038A -> Index 500
+		  19. Char 038C -> Index 501
+		  20. Char 038E -> Index 502
+		      Char 038F -> Index 503
+		      Char 0390 -> Index 504
+		      Char 0391 -> Index 505
+		      Char 0392 -> Index 506
+		      Char 0393 -> Index 299
+		      Char 0394 -> Index 507
+		      Char 0395 -> Index 508
+		      Char 0396 -> Index 509
+		      Char 0397 -> Index 510
+		      Char 0398 -> Index 300
+		      Char 0399 -> Index 511
+		      Char 039A -> Index 512
+		      Char 039B -> Index 513
+		      Char 039C -> Index 514
+		      Char 039D -> Index 515
+		      Char 039E -> Index 516
+		      Char 039F -> Index 517
+		      Char 03A0 -> Index 518
+		      Char 03A1 -> Index 519
+		  21. Char 03A3 -> Index 520
+		      Char 03A4 -> Index 521
+		      Char 03A5 -> Index 522
+		      Char 03A6 -> Index 301
+		      Char 03A7 -> Index 523
+		      Char 03A8 -> Index 524
+		      Char 03A9 -> Index 525
+		      Char 03AA -> Index 526
+		      Char 03AB -> Index 527
+		      Char 03AC -> Index 528
+		      Char 03AD -> Index 529
+		      Char 03AE -> Index 530
+		      Char 03AF -> Index 531
+		      Char 03B0 -> Index 532
+		      Char 03B1 -> Index 302
+		      Char 03B2 -> Index 533
+		      Char 03B3 -> Index 534
+		      Char 03B4 -> Index 303
+		      Char 03B5 -> Index 304
+		      Char 03B6 -> Index 535
+		      Char 03B7 -> Index 536
+		      Char 03B8 -> Index 537
+		      Char 03B9 -> Index 538
+		      Char 03BA -> Index 539
+		      Char 03BB -> Index 540
+		      Char 03BC -> Index 541
+		      Char 03BD -> Index 542
+		      Char 03BE -> Index 543
+		      Char 03BF -> Index 544
+		      Char 03C0 -> Index 652
+		      Char 03C1 -> Index 545
+		      Char 03C2 -> Index 546
+		      Char 03C3 -> Index 305
+		      Char 03C4 -> Index 306
+		      Char 03C5 -> Index 547
+		      Char 03C6 -> Index 307
+		      Char 03C7 -> Index 548
+		      Char 03C8 -> Index 549
+		      Char 03C9 -> Index 550
+		      Char 03CA -> Index 551
+		      Char 03CB -> Index 552
+		      Char 03CC -> Index 553
+		      Char 03CD -> Index 554
+		      Char 03CE -> Index 555
+		  22. Char 0401 -> Index 556
+		      Char 0402 -> Index 557
+		      Char 0403 -> Index 558
+		      Char 0404 -> Index 559
+		      Char 0405 -> Index 560
+		      Char 0406 -> Index 561
+		      Char 0407 -> Index 562
+		      Char 0408 -> Index 563
+		      Char 0409 -> Index 564
+		      Char 040A -> Index 565
+		      Char 040B -> Index 566
+		      Char 040C -> Index 567
+		  23. Char 040E -> Index 568
+		      Char 040F -> Index 569
+		      Char 0410 -> Index 570
+		      Char 0411 -> Index 571
+		      Char 0412 -> Index 572
+		      Char 0413 -> Index 573
+		      Char 0414 -> Index 574
+		      Char 0415 -> Index 575
+		      Char 0416 -> Index 576
+		      Char 0417 -> Index 577
+		      Char 0418 -> Index 578
+		      Char 0419 -> Index 579
+		      Char 041A -> Index 580
+		      Char 041B -> Index 581
+		      Char 041C -> Index 582
+		      Char 041D -> Index 583
+		      Char 041E -> Index 584
+		      Char 041F -> Index 585
+		      Char 0420 -> Index 586
+		      Char 0421 -> Index 587
+		      Char 0422 -> Index 588
+		      Char 0423 -> Index 589
+		      Char 0424 -> Index 590
+		      Char 0425 -> Index 591
+		      Char 0426 -> Index 592
+		      Char 0427 -> Index 593
+		      Char 0428 -> Index 594
+		      Char 0429 -> Index 595
+		      Char 042A -> Index 596
+		      Char 042B -> Index 597
+		      Char 042C -> Index 598
+		      Char 042D -> Index 599
+		      Char 042E -> Index 600
+		      Char 042F -> Index 601
+		      Char 0430 -> Index 602
+		      Char 0431 -> Index 603
+		      Char 0432 -> Index 604
+		      Char 0433 -> Index 605
+		      Char 0434 -> Index 606
+		      Char 0435 -> Index 607
+		      Char 0436 -> Index 608
+		      Char 0437 -> Index 609
+		      Char 0438 -> Index 610
+		      Char 0439 -> Index 611
+		      Char 043A -> Index 612
+		      Char 043B -> Index 613
+		      Char 043C -> Index 614
+		      Char 043D -> Index 615
+		      Char 043E -> Index 616
+		      Char 043F -> Index 617
+		      Char 0440 -> Index 618
+		      Char 0441 -> Index 619
+		      Char 0442 -> Index 620
+		      Char 0443 -> Index 621
+		      Char 0444 -> Index 622
+		      Char 0445 -> Index 623
+		      Char 0446 -> Index 624
+		      Char 0447 -> Index 625
+		      Char 0448 -> Index 626
+		      Char 0449 -> Index 627
+		      Char 044A -> Index 628
+		      Char 044B -> Index 629
+		      Char 044C -> Index 630
+		      Char 044D -> Index 631
+		      Char 044E -> Index 632
+		      Char 044F -> Index 633
+		  24. Char 0451 -> Index 634
+		      Char 0452 -> Index 635
+		      Char 0453 -> Index 636
+		      Char 0454 -> Index 637
+		      Char 0455 -> Index 638
+		      Char 0456 -> Index 639
+		      Char 0457 -> Index 640
+		      Char 0458 -> Index 641
+		      Char 0459 -> Index 642
+		      Char 045A -> Index 643
+		      Char 045B -> Index 644
+		      Char 045C -> Index 645
+		  25. Char 045E -> Index 646
+		      Char 045F -> Index 647
+		  26. Char 0490 -> Index 648
+		      Char 0491 -> Index 649
+		      Char 0492 -> Index 1294
+		      Char 0493 -> Index 1295
+		  27. Char 0496 -> Index 1296
+		      Char 0497 -> Index 1297
+		  28. Char 049A -> Index 1298
+		      Char 049B -> Index 1299
+		      Char 049C -> Index 1300
+		      Char 049D -> Index 1301
+		  29. Char 04A2 -> Index 1302
+		      Char 04A3 -> Index 1303
+		  30. Char 04AE -> Index 1304
+		      Char 04AF -> Index 1305
+		      Char 04B0 -> Index 1306
+		      Char 04B1 -> Index 1307
+		      Char 04B2 -> Index 1308
+		      Char 04B3 -> Index 1309
+		  31. Char 04B8 -> Index 1310
+		      Char 04B9 -> Index 1311
+		      Char 04BA -> Index 1312
+		      Char 04BB -> Index 1313
+		  32. Char 04D8 -> Index 1314
+		      Char 04D9 -> Index 1315
+		  33. Char 04E8 -> Index 1316
+		      Char 04E9 -> Index 1317
+		  34. Char 05B0 -> Index 653
+		      Char 05B1 -> Index 654
+		      Char 05B2 -> Index 655
+		      Char 05B3 -> Index 656
+		      Char 05B4 -> Index 657
+		      Char 05B5 -> Index 658
+		      Char 05B6 -> Index 659
+		      Char 05B7 -> Index 660
+		      Char 05B8 -> Index 661
+		      Char 05B9 -> Index 662
+		  35. Char 05BB -> Index 663
+		      Char 05BC -> Index 664
+		      Char 05BD -> Index 665
+		      Char 05BE -> Index 666
+		      Char 05BF -> Index 667
+		      Char 05C0 -> Index 668
+		      Char 05C1 -> Index 669
+		      Char 05C2 -> Index 670
+		      Char 05C3 -> Index 671
+		  36. Char 05D0 -> Index 672
+		      Char 05D1 -> Index 673
+		      Char 05D2 -> Index 674
+		      Char 05D3 -> Index 675
+		      Char 05D4 -> Index 676
+		      Char 05D5 -> Index 677
+		      Char 05D6 -> Index 678
+		      Char 05D7 -> Index 679
+		      Char 05D8 -> Index 680
+		      Char 05D9 -> Index 681
+		      Char 05DA -> Index 682
+		      Char 05DB -> Index 683
+		      Char 05DC -> Index 684
+		      Char 05DD -> Index 685
+		      Char 05DE -> Index 686
+		      Char 05DF -> Index 687
+		      Char 05E0 -> Index 688
+		      Char 05E1 -> Index 689
+		      Char 05E2 -> Index 690
+		      Char 05E3 -> Index 691
+		      Char 05E4 -> Index 692
+		      Char 05E5 -> Index 693
+		      Char 05E6 -> Index 694
+		      Char 05E7 -> Index 695
+		      Char 05E8 -> Index 696
+		      Char 05E9 -> Index 697
+		      Char 05EA -> Index 698
+		  37. Char 05F0 -> Index 699
+		      Char 05F1 -> Index 700
+		      Char 05F2 -> Index 701
+		      Char 05F3 -> Index 702
+		      Char 05F4 -> Index 703
+		  38. Char 060C -> Index 748
+		  39. Char 061B -> Index 749
+		  40. Char 061F -> Index 750
+		  41. Char 0621 -> Index 751
+		      Char 0622 -> Index 897
+		      Char 0623 -> Index 899
+		      Char 0624 -> Index 901
+		      Char 0625 -> Index 903
+		      Char 0626 -> Index 905
+		      Char 0627 -> Index 909
+		      Char 0628 -> Index 911
+		      Char 0629 -> Index 915
+		      Char 062A -> Index 917
+		      Char 062B -> Index 921
+		      Char 062C -> Index 925
+		      Char 062D -> Index 929
+		      Char 062E -> Index 933
+		      Char 062F -> Index 937
+		      Char 0630 -> Index 939
+		      Char 0631 -> Index 941
+		      Char 0632 -> Index 943
+		      Char 0633 -> Index 945
+		      Char 0634 -> Index 949
+		      Char 0635 -> Index 953
+		      Char 0636 -> Index 957
+		      Char 0637 -> Index 961
+		      Char 0638 -> Index 965
+		      Char 0639 -> Index 969
+		      Char 063A -> Index 973
+		  42. Char 0640 -> Index 752
+		      Char 0641 -> Index 977
+		      Char 0642 -> Index 981
+		      Char 0643 -> Index 985
+		      Char 0644 -> Index 989
+		      Char 0645 -> Index 993
+		      Char 0646 -> Index 997
+		      Char 0647 -> Index 1001
+		      Char 0648 -> Index 1005
+		      Char 0649 -> Index 1007
+		      Char 064A -> Index 1009
+		      Char 064B -> Index 753
+		      Char 064C -> Index 754
+		      Char 064D -> Index 755
+		      Char 064E -> Index 756
+		      Char 064F -> Index 757
+		      Char 0650 -> Index 758
+		      Char 0651 -> Index 759
+		      Char 0652 -> Index 760
+		  43. Char 0660 -> Index 761
+		      Char 0661 -> Index 762
+		      Char 0662 -> Index 763
+		      Char 0663 -> Index 764
+		      Char 0664 -> Index 765
+		      Char 0665 -> Index 766
+		      Char 0666 -> Index 767
+		      Char 0667 -> Index 768
+		      Char 0668 -> Index 769
+		      Char 0669 -> Index 770
+		      Char 066A -> Index 771
+		      Char 066B -> Index 772
+		  44. Char 066D -> Index 773
+		  45. Char 0670 -> Index 774
+		      Char 0671 -> Index 797
+		  46. Char 0674 -> Index 775
+		  47. Char 067E -> Index 799
+		  48. Char 0686 -> Index 807
+		  49. Char 0698 -> Index 811
+		  50. Char 06A4 -> Index 803
+		  51. Char 06A9 -> Index 813
+		  52. Char 06AF -> Index 817
+		  53. Char 06CC -> Index 821
+		  54. Char 06D5 -> Index 776
+		  55. Char 06E4 -> Index 777
+		  56. Char 06F0 -> Index 761
+		      Char 06F1 -> Index 762
+		      Char 06F2 -> Index 763
+		      Char 06F3 -> Index 764
+		      Char 06F4 -> Index 778
+		      Char 06F5 -> Index 779
+		      Char 06F6 -> Index 780
+		      Char 06F7 -> Index 768
+		      Char 06F8 -> Index 769
+		      Char 06F9 -> Index 770
+		  57. Char 1E80 -> Index 477
+		      Char 1E81 -> Index 478
+		      Char 1E82 -> Index 479
+		      Char 1E83 -> Index 480
+		      Char 1E84 -> Index 481
+		      Char 1E85 -> Index 482
+		  58. Char 1EA0 -> Index 1186
+		      Char 1EA1 -> Index 1187
+		      Char 1EA2 -> Index 1188
+		      Char 1EA3 -> Index 1189
+		      Char 1EA4 -> Index 1190
+		      Char 1EA5 -> Index 1191
+		      Char 1EA6 -> Index 1192
+		      Char 1EA7 -> Index 1193
+		      Char 1EA8 -> Index 1194
+		      Char 1EA9 -> Index 1195
+		      Char 1EAA -> Index 1196
+		      Char 1EAB -> Index 1197
+		      Char 1EAC -> Index 1198
+		      Char 1EAD -> Index 1199
+		      Char 1EAE -> Index 1200
+		      Char 1EAF -> Index 1201
+		      Char 1EB0 -> Index 1202
+		      Char 1EB1 -> Index 1203
+		      Char 1EB2 -> Index 1204
+		      Char 1EB3 -> Index 1205
+		      Char 1EB4 -> Index 1206
+		      Char 1EB5 -> Index 1207
+		      Char 1EB6 -> Index 1208
+		      Char 1EB7 -> Index 1209
+		      Char 1EB8 -> Index 1210
+		      Char 1EB9 -> Index 1211
+		      Char 1EBA -> Index 1212
+		      Char 1EBB -> Index 1213
+		      Char 1EBC -> Index 1214
+		      Char 1EBD -> Index 1215
+		      Char 1EBE -> Index 1216
+		      Char 1EBF -> Index 1217
+		      Char 1EC0 -> Index 1218
+		      Char 1EC1 -> Index 1219
+		      Char 1EC2 -> Index 1220
+		      Char 1EC3 -> Index 1221
+		      Char 1EC4 -> Index 1222
+		      Char 1EC5 -> Index 1223
+		      Char 1EC6 -> Index 1224
+		      Char 1EC7 -> Index 1225
+		      Char 1EC8 -> Index 1226
+		      Char 1EC9 -> Index 1227
+		      Char 1ECA -> Index 1228
+		      Char 1ECB -> Index 1229
+		      Char 1ECC -> Index 1230
+		      Char 1ECD -> Index 1231
+		      Char 1ECE -> Index 1232
+		      Char 1ECF -> Index 1233
+		      Char 1ED0 -> Index 1234
+		      Char 1ED1 -> Index 1235
+		      Char 1ED2 -> Index 1236
+		      Char 1ED3 -> Index 1237
+		      Char 1ED4 -> Index 1238
+		      Char 1ED5 -> Index 1239
+		      Char 1ED6 -> Index 1240
+		      Char 1ED7 -> Index 1241
+		      Char 1ED8 -> Index 1242
+		      Char 1ED9 -> Index 1243
+		      Char 1EDA -> Index 1244
+		      Char 1EDB -> Index 1245
+		      Char 1EDC -> Index 1246
+		      Char 1EDD -> Index 1247
+		      Char 1EDE -> Index 1248
+		      Char 1EDF -> Index 1249
+		      Char 1EE0 -> Index 1250
+		      Char 1EE1 -> Index 1251
+		      Char 1EE2 -> Index 1252
+		      Char 1EE3 -> Index 1253
+		      Char 1EE4 -> Index 1254
+		      Char 1EE5 -> Index 1255
+		      Char 1EE6 -> Index 1256
+		      Char 1EE7 -> Index 1257
+		      Char 1EE8 -> Index 1258
+		      Char 1EE9 -> Index 1259
+		      Char 1EEA -> Index 1260
+		      Char 1EEB -> Index 1261
+		      Char 1EEC -> Index 1262
+		      Char 1EED -> Index 1263
+		      Char 1EEE -> Index 1264
+		      Char 1EEF -> Index 1265
+		      Char 1EF0 -> Index 1266
+		      Char 1EF1 -> Index 1267
+		      Char 1EF2 -> Index 483
+		      Char 1EF3 -> Index 484
+		      Char 1EF4 -> Index 1268
+		      Char 1EF5 -> Index 1269
+		      Char 1EF6 -> Index 1270
+		      Char 1EF7 -> Index 1271
+		      Char 1EF8 -> Index 1272
+		      Char 1EF9 -> Index 1273
+		  59. Char 200C -> Index 744
+		      Char 200D -> Index 745
+		      Char 200E -> Index 746
+		      Char 200F -> Index 747
+		  60. Char 2013 -> Index 177
+		      Char 2014 -> Index 178
+		      Char 2015 -> Index 650
+		  61. Char 2017 -> Index 308
+		      Char 2018 -> Index 181
+		      Char 2019 -> Index 182
+		      Char 201A -> Index 195
+		      Char 201B -> Index 485
+		      Char 201C -> Index 179
+		      Char 201D -> Index 180
+		      Char 201E -> Index 196
+		  62. Char 2020 -> Index 130
+		      Char 2021 -> Index 193
+		      Char 2022 -> Index 135
+		  63. Char 2026 -> Index 171
+		  64. Char 2030 -> Index 197
+		  65. Char 2032 -> Index 397
+		      Char 2033 -> Index 398
+		  66. Char 2039 -> Index 189
+		      Char 203A -> Index 190
+		  67. Char 203C -> Index 309
+		  68. Char 203E -> Index 486
+		  69. Char 2044 -> Index 187
+		  70. Char 207F -> Index 310
+		  71. Char 20A3 -> Index 245
+		      Char 20A4 -> Index 487
+		  72. Char 20A7 -> Index 311
+		  73. Char 20AA -> Index 704
+		      Char 20AB -> Index 1149
+		      Char 20AC -> Index 188
+		  74. Char 2105 -> Index 399
+		  75. Char 2113 -> Index 400
+		  76. Char 2116 -> Index 651
+		  77. Char 2122 -> Index 140
+		  78. Char 2126 -> Index 159
+		  79. Char 212E -> Index 488
+		  80. Char 2153 -> Index 1150
+		      Char 2154 -> Index 1151
+		  81. Char 215B -> Index 489
+		      Char 215C -> Index 490
+		      Char 215D -> Index 491
+		      Char 215E -> Index 492
+		  82. Char 2190 -> Index 312
+		      Char 2191 -> Index 313
+		      Char 2192 -> Index 314
+		      Char 2193 -> Index 315
+		      Char 2194 -> Index 316
+		      Char 2195 -> Index 317
+		  83. Char 21A8 -> Index 318
+		  84. Char 2202 -> Index 152
+		  85. Char 2206 -> Index 168
+		  86. Char 220F -> Index 154
+		  87. Char 2211 -> Index 153
+		      Char 2212 -> Index 237
+		  88. Char 2215 -> Index 187
+		  89. Char 2219 -> Index 194
+		      Char 221A -> Index 165
+		  90. Char 221E -> Index 146
+		      Char 221F -> Index 319
+		  91. Char 2229 -> Index 320
+		  92. Char 222B -> Index 156
+		  93. Char 2248 -> Index 167
+		  94. Char 2260 -> Index 143
+		      Char 2261 -> Index 321
+		  95. Char 2264 -> Index 148
+		      Char 2265 -> Index 149
+		  96. Char 2302 -> Index 322
+		  97. Char 2310 -> Index 323
+		  98. Char 2320 -> Index 324
+		      Char 2321 -> Index 325
+		  99. Char 2500 -> Index 326
+		 100. Char 2502 -> Index 327
+		 101. Char 250C -> Index 328
+		 102. Char 2510 -> Index 329
+		 103. Char 2514 -> Index 330
+		 104. Char 2518 -> Index 331
+		 105. Char 251C -> Index 332
+		 106. Char 2524 -> Index 333
+		 107. Char 252C -> Index 334
+		 108. Char 2534 -> Index 335
+		 109. Char 253C -> Index 336
+		 110. Char 2550 -> Index 337
+		      Char 2551 -> Index 338
+		      Char 2552 -> Index 339
+		      Char 2553 -> Index 340
+		      Char 2554 -> Index 341
+		      Char 2555 -> Index 342
+		      Char 2556 -> Index 343
+		      Char 2557 -> Index 344
+		      Char 2558 -> Index 345
+		      Char 2559 -> Index 346
+		      Char 255A -> Index 347
+		      Char 255B -> Index 348
+		      Char 255C -> Index 349
+		      Char 255D -> Index 350
+		      Char 255E -> Index 351
+		      Char 255F -> Index 352
+		      Char 2560 -> Index 353
+		      Char 2561 -> Index 354
+		      Char 2562 -> Index 355
+		      Char 2563 -> Index 356
+		      Char 2564 -> Index 357
+		      Char 2565 -> Index 358
+		      Char 2566 -> Index 359
+		      Char 2567 -> Index 360
+		      Char 2568 -> Index 361
+		      Char 2569 -> Index 362
+		      Char 256A -> Index 363
+		      Char 256B -> Index 364
+		      Char 256C -> Index 365
+		 111. Char 2580 -> Index 366
+		 112. Char 2584 -> Index 367
+		 113. Char 2588 -> Index 368
+		 114. Char 258C -> Index 369
+		 115. Char 2590 -> Index 370
+		      Char 2591 -> Index 371
+		      Char 2592 -> Index 372
+		      Char 2593 -> Index 373
+		 116. Char 25A0 -> Index 374
+		      Char 25A1 -> Index 401
+		 117. Char 25AA -> Index 402
+		      Char 25AB -> Index 403
+		      Char 25AC -> Index 375
+		 118. Char 25B2 -> Index 376
+		 119. Char 25BA -> Index 377
+		 120. Char 25BC -> Index 378
+		 121. Char 25C4 -> Index 379
+		 122. Char 25CA -> Index 184
+		      Char 25CB -> Index 380
+		 123. Char 25CF -> Index 404
+		 124. Char 25D8 -> Index 381
+		      Char 25D9 -> Index 382
+		 125. Char 25E6 -> Index 405
+		 126. Char 263A -> Index 383
+		      Char 263B -> Index 384
+		      Char 263C -> Index 385
+		 127. Char 2640 -> Index 386
+		 128. Char 2642 -> Index 387
+		 129. Char 2660 -> Index 388
+		 130. Char 2663 -> Index 389
+		 131. Char 2665 -> Index 390
+		      Char 2666 -> Index 391
+		 132. Char 266A -> Index 392
+		      Char 266B -> Index 393
+		 133. Char E801 -> Index 705
+		      Char E802 -> Index 706
+		      Char E803 -> Index 707
+		      Char E804 -> Index 708
+		      Char E805 -> Index 709
+		 134. Char E811 -> Index 781
+		 135. Char E813 -> Index 782
+		 136. Char E815 -> Index 783
+		      Char E816 -> Index 784
+		      Char E817 -> Index 785
+		      Char E818 -> Index 786
+		 137. Char E832 -> Index 787
+		      Char E833 -> Index 788
+		      Char E834 -> Index 789
+		      Char E835 -> Index 790
+		      Char E836 -> Index 791
+		      Char E837 -> Index 792
+		      Char E838 -> Index 793
+		      Char E839 -> Index 794
+		      Char E83A -> Index 795
+		      Char E83B -> Index 796
+		 138. Char F001 -> Index 191
+		      Char F002 -> Index 192
+		 139. Char F004 -> Index 493
+		      Char F005 -> Index 494
+		      Char F006 -> Index 1136
+		      Char F007 -> Index 1137
+		      Char F008 -> Index 1152
+		      Char F009 -> Index 1138
+		 140. Char F00F -> Index 1155
+		      Char F010 -> Index 1140
+		      Char F011 -> Index 1142
+		      Char F012 -> Index 1156
+		      Char F013 -> Index 1141
+		      Char F014 -> Index 1157
+		      Char F015 -> Index 1144
+		      Char F016 -> Index 1158
+		      Char F017 -> Index 1159
+		      Char F018 -> Index 1160
+		      Char F019 -> Index 1161
+		      Char F01A -> Index 1162
+		      Char F01B -> Index 1163
+		      Char F01C -> Index 1143
+		      Char F01D -> Index 1171
+		      Char F01E -> Index 1164
+		      Char F01F -> Index 1165
+		      Char F020 -> Index 1166
+		      Char F021 -> Index 1167
+		      Char F022 -> Index 1168
+		      Char F023 -> Index 1173
+		      Char F024 -> Index 1177
+		      Char F025 -> Index 1178
+		      Char F026 -> Index 1179
+		      Char F027 -> Index 1180
+		      Char F028 -> Index 1181
+		      Char F029 -> Index 1174
+		      Char F02A -> Index 1175
+		      Char F02B -> Index 1176
+		      Char F02C -> Index 1148
+		      Char F02D -> Index 1182
+		      Char F02E -> Index 1183
+		      Char F02F -> Index 1184
+		      Char F030 -> Index 1185
+		 141. Char FB01 -> Index 191
+		      Char FB02 -> Index 192
+		 142. Char FB20 -> Index 710
+		 143. Char FB2A -> Index 711
+		      Char FB2B -> Index 712
+		      Char FB2C -> Index 713
+		      Char FB2D -> Index 714
+		      Char FB2E -> Index 715
+		      Char FB2F -> Index 716
+		      Char FB30 -> Index 717
+		      Char FB31 -> Index 718
+		      Char FB32 -> Index 719
+		      Char FB33 -> Index 720
+		      Char FB34 -> Index 721
+		      Char FB35 -> Index 722
+		      Char FB36 -> Index 723
+		 144. Char FB38 -> Index 724
+		      Char FB39 -> Index 725
+		      Char FB3A -> Index 726
+		      Char FB3B -> Index 727
+		      Char FB3C -> Index 728
+		 145. Char FB3E -> Index 729
+		 146. Char FB40 -> Index 730
+		      Char FB41 -> Index 731
+		 147. Char FB43 -> Index 732
+		      Char FB44 -> Index 733
+		 148. Char FB46 -> Index 734
+		      Char FB47 -> Index 735
+		      Char FB48 -> Index 736
+		      Char FB49 -> Index 737
+		      Char FB4A -> Index 738
+		      Char FB4B -> Index 739
+		      Char FB4C -> Index 740
+		      Char FB4D -> Index 741
+		      Char FB4E -> Index 742
+		      Char FB4F -> Index 743
+		      Char FB50 -> Index 797
+		      Char FB51 -> Index 798
+		 149. Char FB56 -> Index 799
+		      Char FB57 -> Index 800
+		      Char FB58 -> Index 801
+		      Char FB59 -> Index 802
+		 150. Char FB6A -> Index 803
+		      Char FB6B -> Index 804
+		      Char FB6C -> Index 805
+		      Char FB6D -> Index 806
+		 151. Char FB7A -> Index 807
+		      Char FB7B -> Index 808
+		      Char FB7C -> Index 809
+		      Char FB7D -> Index 810
+		 152. Char FB8A -> Index 811
+		      Char FB8B -> Index 812
+		 153. Char FB8E -> Index 813
+		      Char FB8F -> Index 814
+		      Char FB90 -> Index 815
+		      Char FB91 -> Index 816
+		      Char FB92 -> Index 817
+		      Char FB93 -> Index 818
+		      Char FB94 -> Index 819
+		      Char FB95 -> Index 820
+		 154. Char FBFC -> Index 821
+		      Char FBFD -> Index 822
+		      Char FBFE -> Index 1011
+		      Char FBFF -> Index 1012
+		 155. Char FC08 -> Index 823
+		      Char FC09 -> Index 824
+		 156. Char FC0E -> Index 825
+		 157. Char FC12 -> Index 826
+		 158. Char FC31 -> Index 827
+		      Char FC32 -> Index 828
+		 159. Char FC3F -> Index 829
+		      Char FC40 -> Index 830
+		      Char FC41 -> Index 831
+		      Char FC42 -> Index 832
+		      Char FC43 -> Index 833
+		      Char FC44 -> Index 834
+		 160. Char FC4E -> Index 835
+		      Char FC4F -> Index 836
+		 161. Char FC58 -> Index 837
+		      Char FC59 -> Index 838
+		 162. Char FC5E -> Index 839
+		      Char FC5F -> Index 840
+		      Char FC60 -> Index 841
+		      Char FC61 -> Index 842
+		      Char FC62 -> Index 843
+		 163. Char FC6A -> Index 844
+		 164. Char FC6D -> Index 845
+		      Char FC6E -> Index 846
+		      Char FC6F -> Index 847
+		      Char FC70 -> Index 848
+		 165. Char FC73 -> Index 849
+		      Char FC74 -> Index 850
+		      Char FC75 -> Index 851
+		 166. Char FC8E -> Index 852
+		      Char FC8F -> Index 853
+		 167. Char FC91 -> Index 854
+		 168. Char FC94 -> Index 855
+		 169. Char FC9C -> Index 856
+		      Char FC9D -> Index 857
+		      Char FC9E -> Index 858
+		      Char FC9F -> Index 859
+		      Char FCA0 -> Index 860
+		      Char FCA1 -> Index 861
+		      Char FCA2 -> Index 862
+		      Char FCA3 -> Index 863
+		      Char FCA4 -> Index 864
+		      Char FCA5 -> Index 865
+		      Char FCA6 -> Index 866
+		 170. Char FCA8 -> Index 867
+		 171. Char FCAA -> Index 868
+		 172. Char FCAC -> Index 869
+		 173. Char FCB0 -> Index 870
+		 174. Char FCC9 -> Index 871
+		      Char FCCA -> Index 872
+		      Char FCCB -> Index 873
+		      Char FCCC -> Index 874
+		      Char FCCD -> Index 875
+		      Char FCCE -> Index 876
+		      Char FCCF -> Index 877
+		      Char FCD0 -> Index 878
+		      Char FCD1 -> Index 879
+		      Char FCD2 -> Index 880
+		      Char FCD3 -> Index 881
+		      Char FCD4 -> Index 882
+		      Char FCD5 -> Index 883
+		 175. Char FCD8 -> Index 884
+		 176. Char FCDA -> Index 885
+		      Char FCDB -> Index 886
+		      Char FCDC -> Index 887
+		      Char FCDD -> Index 888
+		 177. Char FD30 -> Index 889
+		 178. Char FD3C -> Index 890
+		      Char FD3D -> Index 891
+		      Char FD3E -> Index 892
+		      Char FD3F -> Index 893
+		 179. Char FD88 -> Index 894
+		 180. Char FDF2 -> Index 895
+		 181. Char FE80 -> Index 896
+		      Char FE81 -> Index 897
+		      Char FE82 -> Index 898
+		      Char FE83 -> Index 899
+		      Char FE84 -> Index 900
+		      Char FE85 -> Index 901
+		      Char FE86 -> Index 902
+		      Char FE87 -> Index 903
+		      Char FE88 -> Index 904
+		      Char FE89 -> Index 905
+		      Char FE8A -> Index 906
+		      Char FE8B -> Index 907
+		      Char FE8C -> Index 908
+		      Char FE8D -> Index 909
+		      Char FE8E -> Index 910
+		      Char FE8F -> Index 911
+		      Char FE90 -> Index 912
+		      Char FE91 -> Index 913
+		      Char FE92 -> Index 914
+		      Char FE93 -> Index 915
+		      Char FE94 -> Index 916
+		      Char FE95 -> Index 917
+		      Char FE96 -> Index 918
+		      Char FE97 -> Index 919
+		      Char FE98 -> Index 920
+		      Char FE99 -> Index 921
+		      Char FE9A -> Index 922
+		      Char FE9B -> Index 923
+		      Char FE9C -> Index 924
+		      Char FE9D -> Index 925
+		      Char FE9E -> Index 926
+		      Char FE9F -> Index 927
+		      Char FEA0 -> Index 928
+		      Char FEA1 -> Index 929
+		      Char FEA2 -> Index 930
+		      Char FEA3 -> Index 931
+		      Char FEA4 -> Index 932
+		      Char FEA5 -> Index 933
+		      Char FEA6 -> Index 934
+		      Char FEA7 -> Index 935
+		      Char FEA8 -> Index 936
+		      Char FEA9 -> Index 937
+		      Char FEAA -> Index 938
+		      Char FEAB -> Index 939
+		      Char FEAC -> Index 940
+		      Char FEAD -> Index 941
+		      Char FEAE -> Index 942
+		      Char FEAF -> Index 943
+		      Char FEB0 -> Index 944
+		      Char FEB1 -> Index 945
+		      Char FEB2 -> Index 946
+		      Char FEB3 -> Index 947
+		      Char FEB4 -> Index 948
+		      Char FEB5 -> Index 949
+		      Char FEB6 -> Index 950
+		      Char FEB7 -> Index 951
+		      Char FEB8 -> Index 952
+		      Char FEB9 -> Index 953
+		      Char FEBA -> Index 954
+		      Char FEBB -> Index 955
+		      Char FEBC -> Index 956
+		      Char FEBD -> Index 957
+		      Char FEBE -> Index 958
+		      Char FEBF -> Index 959
+		      Char FEC0 -> Index 960
+		      Char FEC1 -> Index 961
+		      Char FEC2 -> Index 962
+		      Char FEC3 -> Index 963
+		      Char FEC4 -> Index 964
+		      Char FEC5 -> Index 965
+		      Char FEC6 -> Index 966
+		      Char FEC7 -> Index 967
+		      Char FEC8 -> Index 968
+		      Char FEC9 -> Index 969
+		      Char FECA -> Index 970
+		      Char FECB -> Index 971
+		      Char FECC -> Index 972
+		      Char FECD -> Index 973
+		      Char FECE -> Index 974
+		      Char FECF -> Index 975
+		      Char FED0 -> Index 976
+		      Char FED1 -> Index 977
+		      Char FED2 -> Index 978
+		      Char FED3 -> Index 979
+		      Char FED4 -> Index 980
+		      Char FED5 -> Index 981
+		      Char FED6 -> Index 982
+		      Char FED7 -> Index 983
+		      Char FED8 -> Index 984
+		      Char FED9 -> Index 985
+		      Char FEDA -> Index 986
+		      Char FEDB -> Index 987
+		      Char FEDC -> Index 988
+		      Char FEDD -> Index 989
+		      Char FEDE -> Index 990
+		      Char FEDF -> Index 991
+		      Char FEE0 -> Index 992
+		      Char FEE1 -> Index 993
+		      Char FEE2 -> Index 994
+		      Char FEE3 -> Index 995
+		      Char FEE4 -> Index 996
+		      Char FEE5 -> Index 997
+		      Char FEE6 -> Index 998
+		      Char FEE7 -> Index 999
+		      Char FEE8 -> Index 1000
+		      Char FEE9 -> Index 1001
+		      Char FEEA -> Index 1002
+		      Char FEEB -> Index 1003
+		      Char FEEC -> Index 1004
+		      Char FEED -> Index 1005
+		      Char FEEE -> Index 1006
+		      Char FEEF -> Index 1007
+		      Char FEF0 -> Index 1008
+		      Char FEF1 -> Index 1009
+		      Char FEF2 -> Index 1010
+		      Char FEF3 -> Index 1011
+		      Char FEF4 -> Index 1012
+		      Char FEF5 -> Index 1013
+		      Char FEF6 -> Index 1014
+		      Char FEF7 -> Index 1015
+		      Char FEF8 -> Index 1016
+		      Char FEF9 -> Index 1017
+		      Char FEFA -> Index 1018
+		      Char FEFB -> Index 1019
+		      Char FEFC -> Index 1020
+		 182. Char FEFF -> Index 1021
+		 183. Char FFFC -> Index 1128
+
+'cvt ' Table - Control Value Table
+----------------------------------
+Size = 1922 bytes, 961 entries
+	Values
+	------
+	   0: 1255
+	   1: 0
+	   2: 1170
+	   3: 27
+	   4: 1255
+	   5: 30
+	   6: 866
+	   7: 30
+	   8: 0
+	   9: -33
+	  10: 0
+	  11: -33
+	  12: 0
+	  13: -30
+	  14: -386
+	  15: 0
+	  16: 1255
+	  17: 0
+	  18: -259
+	  19: -1
+	  20: 727
+	  21: 0
+	  22: 84
+	  23: 0
+	  24: 84
+	  25: 0
+	  26: 0
+	  27: 0
+	  28: 0
+	  29: 84
+	  30: 84
+	  31: 149
+	  32: 84
+	  33: 84
+	  34: 84
+	  35: 333
+	  36: 84
+	  37: 84
+	  38: 84
+	  39: 100
+	  40: 212
+	  41: 109
+	  42: 145
+	  43: 151
+	  44: 84
+	  45: 307
+	  46: 462
+	  47: 169
+	  48: 64
+	  49: 15
+	  50: 84
+	  51: 212
+	  52: 3
+	  53: 256
+	  54: 344
+	  55: 60
+	  56: 147
+	  57: 119
+	  58: 213
+	  59: 85
+	  60: -15
+	  61: 84
+	  62: 33
+	  63: 163
+	  64: 239
+	  65: 44
+	  66: 57
+	  67: 104
+	  68: -2
+	  69: 17
+	  70: 127
+	  71: 254
+	  72: 381
+	  73: 163
+	  74: 258
+	  75: 2
+	  76: 15
+	  77: 56
+	  78: 211
+	  79: 101
+	  80: 144
+	  81: 572
+	  82: 811
+	  83: 1259
+	  84: 1
+	  85: 42
+	  86: 304
+	  87: 939
+	  88: 386
+	  89: 45
+	  90: 60
+	  91: 84
+	  92: 150
+	  93: 23
+	  94: 207
+	  95: 344
+	  96: 42
+	  97: -246
+	  98: 60
+	  99: 179
+	 100: 541
+	 101: 572
+	 102: 2
+	 103: 84
+	 104: 203
+	 105: 863
+	 106: 2092
+	 107: -208
+	 108: -14
+	 109: 448
+	 110: 1225
+	 111: -158
+	 112: 162
+	 113: 316
+	 114: 726
+	 115: 1198
+	 116: 204
+	 117: 237
+	 118: 290
+	 119: 1024
+	 120: -381
+	 121: -117
+	 122: -101
+	 123: -100
+	 124: 14
+	 125: 244
+	 126: 797
+	 127: -573
+	 128: -207
+	 129: -147
+	 130: 84
+	 131: 85
+	 132: 96
+	 133: 117
+	 134: 124
+	 135: 127
+	 136: 128
+	 137: 158
+	 138: 205
+	 139: 345
+	 140: 573
+	 141: 703
+	 142: -119
+	 143: 17
+	 144: 88
+	 145: 101
+	 146: 127
+	 147: 183
+	 148: 203
+	 149: 299
+	 150: 1024
+	 151: 1120
+	 152: 18
+	 153: 82
+	 154: 85
+	 155: 132
+	 156: 152
+	 157: 185
+	 158: 190
+	 159: 207
+	 160: 216
+	 161: 229
+	 162: 257
+	 163: 271
+	 164: 296
+	 165: 384
+	 166: 467
+	 167: 468
+	 168: 1280
+	 169: -572
+	 170: -316
+	 171: -183
+	 172: -158
+	 173: -145
+	 174: 69
+	 175: 78
+	 176: 80
+	 177: 128
+	 178: 271
+	 179: 285
+	 180: 293
+	 181: 321
+	 182: 602
+	 183: 858
+	 184: 941
+	 185: 983
+	 186: -541
+	 187: -288
+	 188: -226
+	 189: 17
+	 190: 84
+	 191: 118
+	 192: 120
+	 193: 123
+	 194: 143
+	 195: 144
+	 196: 171
+	 197: 215
+	 198: 217
+	 199: 219
+	 200: 259
+	 201: 522
+	 202: 596
+	 203: 597
+	 204: 941
+	 205: 27
+	 206: 61
+	 207: 90
+	 208: 98
+	 209: 145
+	 210: 147
+	 211: 158
+	 212: 169
+	 213: 201
+	 214: 223
+	 215: 264
+	 216: 308
+	 217: 314
+	 218: 320
+	 219: 390
+	 220: 428
+	 221: 630
+	 222: 1027
+	 223: -572
+	 224: 3
+	 225: 4
+	 226: 21
+	 227: 57
+	 228: 72
+	 229: 84
+	 230: 100
+	 231: 145
+	 232: 155
+	 233: 163
+	 234: 165
+	 235: 175
+	 236: 196
+	 237: 208
+	 238: 209
+	 239: 215
+	 240: 241
+	 241: 254
+	 242: 259
+	 243: 281
+	 244: 299
+	 245: 341
+	 246: 348
+	 247: 381
+	 248: 389
+	 249: 398
+	 250: 404
+	 251: 421
+	 252: 428
+	 253: 430
+	 254: 491
+	 255: 517
+	 256: 728
+	 257: 771
+	 258: 897
+	 259: 1222
+	 260: 1259
+	 261: -298
+	 262: -246
+	 263: -102
+	 264: -87
+	 265: 27
+	 266: 27
+	 267: 28
+	 268: 32
+	 269: 41
+	 270: 44
+	 271: 56
+	 272: 76
+	 273: 109
+	 274: 205
+	 275: 234
+	 276: 296
+	 277: 298
+	 278: 300
+	 279: 319
+	 280: 466
+	 281: 555
+	 282: 556
+	 283: 769
+	 284: 1036
+	 285: -514
+	 286: -461
+	 287: -185
+	 288: -129
+	 289: -59
+	 290: -41
+	 291: 35
+	 292: 39
+	 293: 56
+	 294: 61
+	 295: 68
+	 296: 69
+	 297: 77
+	 298: 87
+	 299: 98
+	 300: 121
+	 301: 131
+	 302: 187
+	 303: 198
+	 304: 205
+	 305: 205
+	 306: 206
+	 307: 230
+	 308: 247
+	 309: 257
+	 310: 259
+	 311: 266
+	 312: 274
+	 313: 285
+	 314: 288
+	 315: 291
+	 316: 338
+	 317: 339
+	 318: 373
+	 319: 428
+	 320: 429
+	 321: 495
+	 322: 509
+	 323: 534
+	 324: 541
+	 325: 568
+	 326: 620
+	 327: 690
+	 328: 724
+	 329: 811
+	 330: 973
+	 331: 1111
+	 332: 1198
+	 333: -588
+	 334: -491
+	 335: -334
+	 336: -273
+	 337: -257
+	 338: -85
+	 339: -80
+	 340: -61
+	 341: -52
+	 342: 2
+	 343: 84
+	 344: 54
+	 345: 56
+	 346: 67
+	 347: 85
+	 348: 93
+	 349: 112
+	 350: 115
+	 351: 124
+	 352: 127
+	 353: 181
+	 354: 187
+	 355: 197
+	 356: 228
+	 357: 233
+	 358: 245
+	 359: 257
+	 360: 262
+	 361: 287
+	 362: 296
+	 363: 328
+	 364: 331
+	 365: 341
+	 366: 408
+	 367: 428
+	 368: 479
+	 369: 508
+	 370: 512
+	 371: 520
+	 372: 638
+	 373: 684
+	 374: 767
+	 375: 829
+	 376: 912
+	 377: 969
+	 378: 1049
+	 379: 1176
+	 380: -434
+	 381: -403
+	 382: -360
+	 383: -333
+	 384: -204
+	 385: -179
+	 386: 1
+	 387: 3
+	 388: 5
+	 389: 25
+	 390: 52
+	 391: 52
+	 392: 58
+	 393: 60
+	 394: 85
+	 395: 89
+	 396: 115
+	 397: 130
+	 398: 145
+	 399: 163
+	 400: 170
+	 401: 171
+	 402: 179
+	 403: 204
+	 404: 214
+	 405: 238
+	 406: 280
+	 407: 286
+	 408: 304
+	 409: 329
+	 410: 342
+	 411: 344
+	 412: 352
+	 413: 360
+	 414: 367
+	 415: 368
+	 416: 369
+	 417: 379
+	 418: 380
+	 419: 389
+	 420: 425
+	 421: 436
+	 422: 443
+	 423: 470
+	 424: 475
+	 425: 494
+	 426: 516
+	 427: 518
+	 428: 533
+	 429: 555
+	 430: 555
+	 431: 611
+	 432: 642
+	 433: 659
+	 434: 692
+	 435: 708
+	 436: 726
+	 437: 740
+	 438: 768
+	 439: 851
+	 440: 856
+	 441: 881
+	 442: 891
+	 443: 915
+	 444: 948
+	 445: 976
+	 446: 1000
+	 447: 1040
+	 448: 1068
+	 449: 1072
+	 450: 1101
+	 451: 1120
+	 452: 1145
+	 453: 1146
+	 454: 1280
+	 455: 1283
+	 456: 1558
+	 457: 2252
+	 458: -1001
+	 459: -915
+	 460: -670
+	 461: -614
+	 462: -573
+	 463: -466
+	 464: -444
+	 465: -405
+	 466: -373
+	 467: -319
+	 468: -298
+	 469: -286
+	 470: -245
+	 471: -65
+	 472: -27
+	 473: 6
+	 474: 48
+	 475: 60
+	 476: 89
+	 477: 103
+	 478: 115
+	 479: 125
+	 480: 127
+	 481: 134
+	 482: 142
+	 483: 159
+	 484: 169
+	 485: 170
+	 486: 214
+	 487: 225
+	 488: 231
+	 489: 235
+	 490: 241
+	 491: 242
+	 492: 245
+	 493: 259
+	 494: 265
+	 495: 282
+	 496: 286
+	 497: 287
+	 498: 300
+	 499: 319
+	 500: 323
+	 501: 329
+	 502: 333
+	 503: 342
+	 504: 343
+	 505: 345
+	 506: 358
+	 507: 358
+	 508: 360
+	 509: 362
+	 510: 373
+	 511: 384
+	 512: 427
+	 513: 434
+	 514: 444
+	 515: 448
+	 516: 449
+	 517: 457
+	 518: 459
+	 519: 466
+	 520: 476
+	 521: 495
+	 522: 513
+	 523: 533
+	 524: 558
+	 525: 558
+	 526: 571
+	 527: 573
+	 528: 597
+	 529: 614
+	 530: 642
+	 531: 666
+	 532: 683
+	 533: 688
+	 534: 729
+	 535: 729
+	 536: 757
+	 537: 761
+	 538: 806
+	 539: 812
+	 540: 818
+	 541: 819
+	 542: 830
+	 543: 864
+	 544: 881
+	 545: 903
+	 546: 904
+	 547: 915
+	 548: 919
+	 549: 988
+	 550: 997
+	 551: 1026
+	 552: 1045
+	 553: 1073
+	 554: 1107
+	 555: 1151
+	 556: 1223
+	 557: 1283
+	 558: 1380
+	 559: 1430
+	 560: 1435
+	 561: 1476
+	 562: 1480
+	 563: 1514
+	 564: 1552
+	 565: 1627
+	 566: 84
+	 567: 84
+	 568: 84
+	 569: 84
+	 570: 0
+	 571: 0
+	 572: 0
+	 573: 0
+	 574: 0
+	 575: 0
+	 576: 972
+	 577: 705
+	 578: 1086
+	 579: 876
+	 580: 160
+	 581: 80
+	 582: 515
+	 583: 1002
+	 584: 722
+	 585: 572
+	 586: 381
+	 587: 763
+	 588: 423
+	 589: 541
+	 590: 449
+	 591: 757
+	 592: 541
+	 593: 848
+	 594: 848
+	 595: 579
+	 596: 571
+	 597: 2
+	 598: 443
+	 599: 72
+	 600: 109
+	 601: 20
+	 602: 1947
+	 603: 1569
+	 604: 1569
+	 605: 532
+	 606: 16
+	 607: 1888
+	 608: 0
+	 609: 0
+	 610: 665
+	 611: 557
+	 612: 855
+	 613: 1062
+	 614: 780
+	 615: 116
+	 616: 80
+	 617: 0
+	 618: 602
+	 619: 646
+	 620: 608
+	 621: 166
+	 622: 444
+	 623: 251
+	 624: 584
+	 625: 338
+	 626: 374
+	 627: 973
+	 628: 672
+	 629: 607
+	 630: 923
+	 631: 1170
+	 632: 1086
+	 633: 471
+	 634: 127
+	 635: 705
+	 636: 1024
+	 637: 525
+	 638: 502
+	 639: 65
+	 640: 65
+	 641: 318
+	 642: 425
+	 643: 467
+	 644: 113
+	 645: 726
+	 646: 557
+	 647: 943
+	 648: 1230
+	 649: 0
+	 650: 0
+	 651: 1288
+	 652: 1020
+	 653: 1389
+	 654: 525
+	 655: -121
+	 656: 1255
+	 657: 1282
+	 658: 978
+	 659: 0
+	 660: 1085
+	 661: 258
+	 662: 970
+	 663: 346
+	 664: 493
+	 665: 336
+	 666: 534
+	 667: 449
+	 668: 315
+	 669: 654
+	 670: 35
+	 671: 346
+	 672: 272
+	 673: 493
+	 674: 35
+	 675: 329
+	 676: 57
+	 677: 217
+	 678: 77
+	 679: 185
+	 680: 343
+	 681: 56
+	 682: 1248
+	 683: 908
+	 684: 586
+	 685: 731
+	 686: 57
+	 687: 108
+	 688: 147
+	 689: 449
+	 690: 972
+	 691: 699
+	 692: 108
+	 693: 699
+	 694: 418
+	 695: 242
+	 696: 56
+	 697: 254
+	 698: 370
+	 699: 336
+	 700: 412
+	 701: 817
+	 702: 126
+	 703: 369
+	 704: 84
+	 705: 57
+	 706: 106
+	 707: 660
+	 708: 34
+	 709: 624
+	 710: 546
+	 711: 124
+	 712: 85
+	 713: 243
+	 714: 386
+	 715: 277
+	 716: 215
+	 717: 251
+	 718: 427
+	 719: 292
+	 720: 614
+	 721: 4
+	 722: 781
+	 723: 611
+	 724: 212
+	 725: 601
+	 726: 60
+	 727: 208
+	 728: 274
+	 729: 558
+	 730: 382
+	 731: 52
+	 732: 109
+	 733: 139
+	 734: 394
+	 735: 44
+	 736: 509
+	 737: 448
+	 738: 204
+	 739: 657
+	 740: 54
+	 741: 357
+	 742: 958
+	 743: -999
+	 744: -728
+	 745: 513
+	 746: -787
+	 747: 433
+	 748: 840
+	 749: 177
+	 750: 507
+	 751: 1225
+	 752: 1225
+	 753: 516
+	 754: 251
+	 755: 449
+	 756: 541
+	 757: 304
+	 758: 264
+	 759: 320
+	 760: 225
+	 761: 163
+	 762: 155
+	 763: 85
+	 764: 198
+	 765: 33
+	 766: 806
+	 767: 169
+	 768: 56
+	 769: 5
+	 770: 556
+	 771: 3
+	 772: 93
+	 773: 96
+	 774: 76
+	 775: 17
+	 776: 757
+	 777: 380
+	 778: 620
+	 779: 105
+	 780: 408
+	 781: 1001
+	 782: 421
+	 783: 577
+	 784: 79
+	 785: 101
+	 786: 883
+	 787: 582
+	 788: 406
+	 789: -267
+	 790: 1089
+	 791: 819
+	 792: 65
+	 793: 186
+	 794: 281
+	 795: 323
+	 796: 1593
+	 797: 2048
+	 798: 1340
+	 799: 1309
+	 800: 1076
+	 801: 1045
+	 802: 1255
+	 803: 62
+	 804: 103
+	 805: 103
+	 806: 0
+	 807: 1640
+	 808: 1247
+	 809: 1410
+	 810: 103
+	 811: 103
+	 812: 979
+	 813: 1012
+	 814: -167
+	 815: -223
+	 816: -417
+	 817: 1294
+	 818: -292
+	 819: 122
+	 820: 217
+	 821: 72
+	 822: 219
+	 823: 395
+	 824: 179
+	 825: 72
+	 826: 218
+	 827: 278
+	 828: 350
+	 829: 337
+	 830: 1279
+	 831: 587
+	 832: 1279
+	 833: -170
+	 834: 171
+	 835: 687
+	 836: 1244
+	 837: -233
+	 838: 268
+	 839: 289
+	 840: 209
+	 841: -208
+	 842: 329
+	 843: -331
+	 844: 316
+	 845: 292
+	 846: -224
+	 847: 369
+	 848: -245
+	 849: 337
+	 850: 134
+	 851: 94
+	 852: 1705
+	 853: -615
+	 854: 1163
+	 855: 1157
+	 856: 1141
+	 857: 1148
+	 858: 0
+	 859: -5
+	 860: 123
+	 861: 134
+	 862: 146
+	 863: 154
+	 864: 194
+	 865: 213
+	 866: 164
+	 867: 30
+	 868: 39
+	 869: 57
+	 870: 76
+	 871: 84
+	 872: 92
+	 873: 98
+	 874: 105
+	 875: 45
+	 876: 48
+	 877: 50
+	 878: 53
+	 879: 56
+	 880: 62
+	 881: 66
+	 882: 68
+	 883: 73
+	 884: 76
+	 885: 80
+	 886: 86
+	 887: 90
+	 888: 96
+	 889: 100
+	 890: 102
+	 891: 110
+	 892: 113
+	 893: 120
+	 894: 157
+	 895: 172
+	 896: 177
+	 897: 64
+	 898: 75
+	 899: 85
+	 900: 94
+	 901: 98
+	 902: 102
+	 903: 106
+	 904: 113
+	 905: 115
+	 906: 119
+	 907: 123
+	 908: 126
+	 909: 130
+	 910: 135
+	 911: 140
+	 912: 145
+	 913: 150
+	 914: 166
+	 915: 209
+	 916: 682
+	 917: 671
+	 918: 801
+	 919: 648
+	 920: 709
+	 921: 630
+	 922: 617
+	 923: 218
+	 924: 218
+	 925: 967
+	 926: 832
+	 927: 342
+	 928: 212
+	 929: 1161
+	 930: 1151
+	 931: 83
+	 932: 36
+	 933: 81
+	 934: 275
+	 935: 105
+	 936: 55
+	 937: 60
+	 938: 31
+	 939: 140
+	 940: 140
+	 941: -45
+	 942: 90
+	 943: 41
+	 944: 27
+	 945: 271
+	 946: 308
+	 947: 127
+	 948: 84
+	 949: 84
+	 950: -21
+	 951: -42
+	 952: -88
+	 953: -561
+	 954: 166
+	 955: 166
+	 956: 146
+	 957: 146
+	 958: 1602
+	 959: 235
+	 960: 1603
+
+'prep' Table - Control Value Program
+------------------------------------
+Size = 2737 bytes
+	00000: PUSHW[3]             84   -64   960 
+	00007: PUSHB[3]             85    51    64 
+	00011: PUSHW[1]            960 
+	00014: PUSHB[3]             58    51    64 
+	00018: PUSHW[1]            960 
+	00021: PUSHB[4]             14    36    50   128 
+	00026: PUSHW[1]            960 
+	00029: PUSHB[4]             11    13    50   128 
+	00034: PUSHW[1]            960 
+	00037: PUSHB[3]              9    51    63 
+	00041: NPUSHW      (47):   960   112   960   175   960   207   960     4    95   960 
+	                           127   960   175   960     3    31   960    63   960    95 
+	                           960   143   960     4   160   955   176   955   192   955 
+	                           208   955     4   160   954   176   954   192   954   208 
+	                           954     4    63   952     1   951   950 
+	00137: PUSHB[3]             36    31    64 
+	00141: PUSHW[1]            948 
+	00144: PUSHB[4]             25    36    50   239 
+	00149: NPUSHW      (26):   947   255   947     2   913   907    33    31   862   907 
+	                            33    31   863   907    33    31   911   907    42    31 
+	                           912   907    42    31   909   907 
+	00203: PUSHB[3]             59    31    15 
+	00207: NPUSHW       (9):   907     1   239   907   255   907     2   -64   924 
+	00227: PUSHB[3]             71    79    50 
+	00231: PUSHW[2]            -64   924 
+	00236: PUSHB[3]             55    60    50 
+	00240: PUSHW[2]            -64   923 
+	00245: PUSHB[3]             71    79    50 
+	00249: PUSHW[2]            -64   923 
+	00254: PUSHB[4]             55    60    50    31 
+	00259: NPUSHW      (25):   924   176   924   192   924   208   924     4   239   924 
+	                             1    31   923   176   923   192   923   208   923     4 
+	                           239   923     1   -64   924 
+	00311: PUSHB[3]             33    41    50 
+	00315: PUSHW[2]            -64   923 
+	00320: PUSHB[3]             33    41    50 
+	00324: PUSHW[2]            -64   924 
+	00329: PUSHB[3]             15    22    50 
+	00333: PUSHW[2]            -64   923 
+	00338: PUSHB[3]             15    22    50 
+	00342: NPUSHW      (10):   857   854    50    31   856   854    50    31   855   854 
+	00364: PUSHB[3]             50    31   191 
+	00368: NPUSHW      (96):   853     1   175   853     1   160   852     1   143   852 
+	                             1    95   852     1    79   852     1   127   853     1 
+	                           127   852     1   111   853     1   111   852     1    63 
+	                           853     1    63   852     1    63   852     1    47   852 
+	                             1    47   852     1    31   852     1    15   852     1 
+	                           850   851    41    31   849   842    41    31   848   837 
+	                            37    31   847   842    37    31   846   841    37    31 
+	                           845   839    37    31   844   842    24    31   843   837 
+	                            18    31   842   838    24    31   841   837    68    31 
+	                           840   838    68    31   839   838 
+	00562: PUSHB[3]             68    31    48 
+	00566: NPUSHW     (112):   838    95   837     2    15   836    31   836    47   836 
+	                            63   836     4    15   836   143   836   160   836   223 
+	                           836     4    95   836   127   836   207   836     3    47 
+	                           836     1   836   836   835   835   833   833    15   832 
+	                            31   832    47   832     3   832   832   831   831   830 
+	                           830    15   829     1   829   829    64   828     1    31 
+	                           828    47   828    63   828    79   828    95   828   192 
+	                           828   208   828     7   828   828    32   821    48   821 
+	                            64   821    80   821    96   821     5    15   812    47 
+	                           812   143   812     3   812   813    36    31   801   652 
+	                            20    31   800   652    20    31   799   651    30    31 
+	                           798   651 
+	00792: PUSHB[3]             30    31    64 
+	00796: NPUSHW       (9):   692    80   692    96   692   112   692   128   692 
+	00816: PUSHB[3]              5    18    15 
+	00820: NPUSHW      (20):   651    31   651    47   651    79   651    95   651   127 
+	                           651   159   651   175   651     8    63   651    79   651 
+	00862: NPUSHB      (11):     2    63     2    63     3    79     2    79     3     4 
+	                            64 
+	00875: PUSHW[1]            809 
+	00878: PUSHB[4]             60    60    50    64 
+	00883: PUSHW[1]            809 
+	00886: PUSHB[4]             51    54    50    64 
+	00891: PUSHW[1]            809 
+	00894: PUSHB[4]             28    29    50    64 
+	00899: PUSHW[1]            809 
+	00902: PUSHB[4]             12    26    50    15 
+	00907: NPUSHW     (114):   809   127   809   159   809     3    15   809    47   809 
+	                            63   809     3    15   809    31   809     2   175   807 
+	                           191   807   207   807   223   807     4    15   807    79 
+	                           807    95   807   143   807   159   807   175   807     6 
+	                           191   807   239   807   255   807     3   111   807   127 
+	                           807   143   807   159   807   175   807     5    15   807 
+	                            31   807    47   807    79   807    95   807     5    15 
+	                           808    47   808    95   808   127   808   175   808     5 
+	                           223   808     1    15   807    15   808    80   808   143 
+	                           808   191   808     5   223   802     1   143   802     1 
+	                            63   802    79   802     2    47   802    63   802     2 
+	                            15   802    31   802 
+	01137: PUSHB[3]              2     9    15 
+	01141: PUSHW[1]            651 
+	01144: PUSHB[3]              1    58    15 
+	01148: NPUSHW      (55):   652    79   652     2    15   653    47   653    63   653 
+	                             3    47   651     1    47   652    63   652    79   652 
+	                           143   652   175   652     5   953   953   809   809   807 
+	                           807   808   808   802   802   801   801   800   800   799 
+	                           799   798   798   656   656   655   655   654   654   653 
+	                           653   652   652   651   651 
+	01260: NPUSHB      (20):   175    43   191    43     2    95    53   111    53   127 
+	                            53   143    53   159    53   175    53   191    53     7 
+	01282: PUSHW[4]            609   609   608   608 
+	01291: NPUSHB      (10):     0    22    22     0     0     0    18    17     8    26 
+	01303: NPUSHW      (16):   516    92    13   506    92    13   429    92    13   370 
+	                            92    13   320    92    13   279 
+	01337: NPUSHB      (26):    92    13   228    92    13   200    92    13   153    92 
+	                            13   149    92    13    88    92    13    78    92    13 
+	                            70    92    13    47    92    13 
+	01365: PUSHW[1]            354 
+	01368: NPUSHB      (23):    43    13   219    43    13   144    43    13    86    43 
+	                            13    54    43    13    53    43    13    51    43    13 
+	                            41    43    13 
+	01393: NPUSHW      (17):   345   343    13   190   343    13    66   343    13    50 
+	                           343    13    34   343    13    29   343 
+	01429: PUSHB[3]             13     0     9 
+	01433: PUSHW[5]            347    33  2049    31   295 
+	01444: PUSHB[5]             33   129    31   229    33 
+	01450: PUSHW[1]           1025 
+	01453: PUSHB[3]             31   131    33 
+	01457: PUSHW[1]           2049 
+	01460: PUSHB[3]             31   130    33 
+	01464: PUSHW[1]           1025 
+	01467: PUSHB[3]             31    91    33 
+	01471: PUSHW[1]           1025 
+	01474: PUSHB[3]             31    59    33 
+	01478: PUSHW[1]           2049 
+	01481: PUSHB[7]             31    48    33   103    31    44    33 
+	01489: PUSHW[1]           1025 
+	01492: PUSHB[3]             31    38    33 
+	01496: PUSHW[1]           1025 
+	01499: PUSHB[3]             31    36    33 
+	01503: PUSHW[6]           1025    31    85   428     7   299 
+	01516: NPUSHB      (44):     7   201     7    95     7    64     7    57     7    46 
+	                             7    45     7    40     7    39     7    35     7    31 
+	                             7    20     8    18     8    16     8    14     8    12 
+	                             8    10     8     8     8     6     8     4     8     2 
+	                             8     0     8    20 
+	01562: PUSHW[1]            -32 
+	01565: NPUSHB      (43):     0     0     1     0    20     6    16     0     0     1 
+	                             0     6     4     0     0     1     0     4    16     0 
+	                             0     1     0    16     2     0     0     1     0     2 
+	                             0     0     0     1     0     0     2     1     8     2 
+	                             0    74     0 
+	01610: PUSHB[1]             19 
+	01612: SPVTCA[x-axis] 
+	01613: MPPEM      
+	01614: SPVTCA[y-axis] 
+	01615: MPPEM      
+	01616: GTEQ       
+	01617: WS         
+	01618: SVTCA[x-axis] 
+	01619: MPPEM      
+	01620: PUSHB[1]            192 
+	01622: MUL        
+	01623: SVTCA[y-axis] 
+	01624: MPPEM      
+	01625: DIV        
+	01626: DUP        
+	01627: PUSHB[1]            246 
+	01629: GTEQ       
+	01630: SWAP       
+	01631: PUSHW[1]            266 
+	01634: LTEQ       
+	01635: AND        
+	01636: PUSHB[1]              5 
+	01638: SWAP       
+	01639: WS         
+	01640: SVTCA[x-axis] 
+	01641: PUSHB[1]             18 
+	01643: MPPEM      
+	01644: SVTCA[y-axis] 
+	01645: MPPEM      
+	01646: EQ         
+	01647: WS         
+	01648: RTG        
+	01649: PUSHB[1]             55 
+	01651: CALL       
+	01652: MPPEM      
+	01653: PUSHW[1]           2047 
+	01656: GT         
+	01657: PUSHB[1]             56 
+	01659: CALL       
+	01660: MPPEM      
+	01661: PUSHB[1]              9 
+	01663: LT         
+	01664: OR         
+	01665: IF         
+	01666: PUSHB[2]              1     1 
+	01669: INSTCTRL   
+	01670: EIF        
+	01671: PUSHB[1]             56 
+	01673: CALL       
+	01674: PUSHB[1]              2 
+	01676: GETINFO    
+	01677: PUSHW[1]            256 
+	01680: EQ         
+	01681: IF         
+	01682: PUSHW[1]            511 
+	01685: PUSHB[2]              1     1 
+	01688: INSTCTRL   
+	01689: SCANCTRL   
+	01690: ELSE       
+	01691: PUSHB[1]             18 
+	01693: RS         
+	01694: IF         
+	01695: PUSHW[2]              1   300 
+	01700: SCANCTRL   
+	01701: SCANTYPE   
+	01702: ELSE       
+	01703: PUSHW[2]              1   300 
+	01708: SCANCTRL   
+	01709: SCANTYPE   
+	01710: EIF        
+	01711: EIF        
+	01712: MPPEM      
+	01713: PUSHB[1]              9 
+	01715: LT         
+	01716: IF         
+	01717: PUSHB[2]              4     1 
+	01720: SCANTYPE   
+	01721: SCANTYPE   
+	01722: EIF        
+	01723: SVTCA[y-axis] 
+	01724: SZPS       
+	01725: SROUND     
+	01726: MIAP[rd+ci] 
+	01727: RTG        
+	01728: MIAP[rd+ci] 
+	01729: SRP2       
+	01730: MIAP[nrd+nci] 
+	01731: SRP1       
+	01732: IP         
+	01733: GC[cur p]  
+	01734: WCVTP      
+	01735: MIAP[nrd+nci] 
+	01736: SRP1       
+	01737: IP         
+	01738: GC[cur p]  
+	01739: WCVTP      
+	01740: MIAP[nrd+nci] 
+	01741: SRP1       
+	01742: IP         
+	01743: GC[cur p]  
+	01744: WCVTP      
+	01745: MIAP[nrd+nci] 
+	01746: SRP1       
+	01747: IP         
+	01748: GC[cur p]  
+	01749: WCVTP      
+	01750: MIAP[nrd+nci] 
+	01751: SRP1       
+	01752: IP         
+	01753: GC[cur p]  
+	01754: ADD        
+	01755: WCVTP      
+	01756: MIAP[nrd+nci] 
+	01757: SRP1       
+	01758: IP         
+	01759: GC[cur p]  
+	01760: ADD        
+	01761: WCVTP      
+	01762: CALL       
+	01763: CALL       
+	01764: CALL       
+	01765: CALL       
+	01766: CALL       
+	01767: CALL       
+	01768: CALL       
+	01769: CALL       
+	01770: CALL       
+	01771: CALL       
+	01772: CALL       
+	01773: RTG        
+	01774: CALL       
+	01775: CALL       
+	01776: CALL       
+	01777: CALL       
+	01778: CALL       
+	01779: CALL       
+	01780: CALL       
+	01781: CALL       
+	01782: CALL       
+	01783: CALL       
+	01784: CALL       
+	01785: CALL       
+	01786: RTG        
+	01787: PUSHB[1]             55 
+	01789: CALL       
+	01790: SCVTCI     
+	01791: PUSHB[1]            150 
+	01793: MPPEM      
+	01794: GTEQ       
+	01795: IF         
+	01796: PUSHB[1]            170 
+	01798: SCVTCI     
+	01799: EIF        
+	01800: PUSHB[1]             50 
+	01802: MPPEM      
+	01803: GTEQ       
+	01804: IF         
+	01805: PUSHB[1]            255 
+	01807: SCVTCI     
+	01808: EIF        
+	01809: MPPEM      
+	01810: PUSHW[1]           1025 
+	01813: GTEQ       
+	01814: DUP        
+	01815: NOT        
+	01816: IF         
+	01817: PUSHW[2]            568   566 
+	01822: RCVT       
+	01823: WCVTP      
+	01824: PUSHW[2]            567   566 
+	01829: RCVT       
+	01830: WCVTP      
+	01831: EIF        
+	01832: IF         
+	01833: PUSHW[2]           2688   568 
+	01838: RCVT       
+	01839: GT         
+	01840: IF         
+	01841: PUSHW[2]            568  2688 
+	01846: WCVTP      
+	01847: EIF        
+	01848: EIF        
+	01849: MPPEM      
+	01850: PUSHW[1]           1025 
+	01853: GTEQ       
+	01854: DUP        
+	01855: NOT        
+	01856: IF         
+	01857: PUSHW[2]             32   568 
+	01862: RCVT       
+	01863: WCVTP      
+	01864: PUSHW[2]             33   568 
+	01869: RCVT       
+	01870: WCVTP      
+	01871: EIF        
+	01872: IF         
+	01873: PUSHW[2]           2688    32 
+	01878: RCVT       
+	01879: GT         
+	01880: IF         
+	01881: PUSHW[2]             32  2688 
+	01886: WCVTP      
+	01887: EIF        
+	01888: EIF        
+	01889: MPPEM      
+	01890: PUSHW[1]           1025 
+	01893: GTEQ       
+	01894: DUP        
+	01895: NOT        
+	01896: IF         
+	01897: PUSHW[2]             30   567 
+	01902: RCVT       
+	01903: WCVTP      
+	01904: PUSHW[2]             37   567 
+	01909: RCVT       
+	01910: WCVTP      
+	01911: EIF        
+	01912: IF         
+	01913: PUSHW[2]           2688    30 
+	01918: RCVT       
+	01919: GT         
+	01920: IF         
+	01921: PUSHW[2]             30  2688 
+	01926: WCVTP      
+	01927: EIF        
+	01928: EIF        
+	01929: MPPEM      
+	01930: PUSHW[1]           1025 
+	01933: GTEQ       
+	01934: DUP        
+	01935: NOT        
+	01936: IF         
+	01937: PUSHB[2]             61    33 
+	01940: RCVT       
+	01941: WCVTP      
+	01942: PUSHB[2]             33    33 
+	01945: RCVT       
+	01946: WCVTP      
+	01947: EIF        
+	01948: IF         
+	01949: PUSHW[2]           2688    61 
+	01954: RCVT       
+	01955: GT         
+	01956: IF         
+	01957: PUSHW[2]             61  2688 
+	01962: WCVTP      
+	01963: EIF        
+	01964: EIF        
+	01965: MPPEM      
+	01966: PUSHW[1]           1025 
+	01969: GTEQ       
+	01970: DUP        
+	01971: NOT        
+	01972: IF         
+	01973: PUSHB[2]            103    33 
+	01976: RCVT       
+	01977: WCVTP      
+	01978: PUSHB[2]             33    33 
+	01981: RCVT       
+	01982: WCVTP      
+	01983: EIF        
+	01984: IF         
+	01985: PUSHW[2]           2688   103 
+	01990: RCVT       
+	01991: GT         
+	01992: IF         
+	01993: PUSHW[2]            103  2688 
+	01998: WCVTP      
+	01999: EIF        
+	02000: EIF        
+	02001: MPPEM      
+	02002: PUSHW[1]            769 
+	02005: GTEQ       
+	02006: DUP        
+	02007: NOT        
+	02008: IF         
+	02009: PUSHB[2]             33    33 
+	02012: RCVT       
+	02013: WCVTP      
+	02014: PUSHB[2]             33    33 
+	02017: RCVT       
+	02018: WCVTP      
+	02019: EIF        
+	02020: IF         
+	02021: PUSHW[2]           2016    33 
+	02026: RCVT       
+	02027: GT         
+	02028: IF         
+	02029: PUSHW[2]             33  2016 
+	02034: WCVTP      
+	02035: EIF        
+	02036: EIF        
+	02037: MPPEM      
+	02038: PUSHW[1]            769 
+	02041: GTEQ       
+	02042: DUP        
+	02043: NOT        
+	02044: IF         
+	02045: PUSHB[2]             33    33 
+	02048: RCVT       
+	02049: WCVTP      
+	02050: PUSHB[2]             30    33 
+	02053: RCVT       
+	02054: WCVTP      
+	02055: EIF        
+	02056: IF         
+	02057: PUSHW[2]           2016    33 
+	02062: RCVT       
+	02063: GT         
+	02064: IF         
+	02065: PUSHW[2]             33  2016 
+	02070: WCVTP      
+	02071: EIF        
+	02072: EIF        
+	02073: MPPEM      
+	02074: PUSHW[1]            769 
+	02077: GTEQ       
+	02078: DUP        
+	02079: NOT        
+	02080: IF         
+	02081: PUSHB[2]             33    33 
+	02084: RCVT       
+	02085: WCVTP      
+	02086: PUSHB[2]             37    33 
+	02089: RCVT       
+	02090: WCVTP      
+	02091: EIF        
+	02092: IF         
+	02093: PUSHW[2]           2016    33 
+	02098: RCVT       
+	02099: GT         
+	02100: IF         
+	02101: PUSHW[2]             33  2016 
+	02106: WCVTP      
+	02107: EIF        
+	02108: EIF        
+	02109: CALL       
+	02110: CALL       
+	02111: CALL       
+	02112: CALL       
+	02113: CALL       
+	02114: CALL       
+	02115: CALL       
+	02116: CALL       
+	02117: CALL       
+	02118: CALL       
+	02119: CALL       
+	02120: NEG        
+	02121: WS         
+	02122: CALL       
+	02123: CALL       
+	02124: CALL       
+	02125: CALL       
+	02126: CALL       
+	02127: CALL       
+	02128: CALL       
+	02129: CALL       
+	02130: CALL       
+	02131: CALL       
+	02132: CALL       
+	02133: CALL       
+	02134: CALL       
+	02135: CALL       
+	02136: CALL       
+	02137: CALL       
+	02138: CALL       
+	02139: CALL       
+	02140: CALL       
+	02141: CALL       
+	02142: CALL       
+	02143: CALL       
+	02144: CALL       
+	02145: CALL       
+	02146: CALL       
+	02147: CALL       
+	02148: CALL       
+	02149: CALL       
+	02150: SVTCA[x-axis] 
+	02151: PUSHW[2]             74   470 
+	02156: PUSHB[2]             67   122 
+	02159: RCVT       
+	02160: NEG        
+	02161: SWAP       
+	02162: RCVT       
+	02163: ADD        
+	02164: SWAP       
+	02165: RCVT       
+	02166: NEG        
+	02167: ADD        
+	02168: SWAP       
+	02169: RCVT       
+	02170: ADD        
+	02171: PUSHB[1]            139 
+	02173: SROUND     
+	02174: ROUND[Gray] 
+	02175: RTG        
+	02176: PUSHB[1]            128 
+	02178: DIV        
+	02179: DUP        
+	02180: DUP        
+	02181: PUSHW[2]             67   470 
+	02186: RCVT       
+	02187: NEG        
+	02188: SWAP       
+	02189: RCVT       
+	02190: DUP        
+	02191: PUSHB[1]              3 
+	02193: MINDEX     
+	02194: ADD        
+	02195: DIV        
+	02196: MUL        
+	02197: ROUND[Gray] 
+	02198: DUP        
+	02199: PUSHB[1]              3 
+	02201: MINDEX     
+	02202: SUB        
+	02203: NEG        
+	02204: PUSHW[1]            470 
+	02207: SWAP       
+	02208: NEG        
+	02209: WCVTP      
+	02210: PUSHB[1]             67 
+	02212: SWAP       
+	02213: WCVTP      
+	02214: DUP        
+	02215: PUSHB[2]             74   122 
+	02218: RCVT       
+	02219: NEG        
+	02220: SWAP       
+	02221: RCVT       
+	02222: DUP        
+	02223: PUSHB[1]              3 
+	02225: MINDEX     
+	02226: ADD        
+	02227: DIV        
+	02228: MUL        
+	02229: ROUND[Gray] 
+	02230: DUP        
+	02231: PUSHB[1]              3 
+	02233: MINDEX     
+	02234: SUB        
+	02235: NEG        
+	02236: PUSHB[1]            122 
+	02238: SWAP       
+	02239: NEG        
+	02240: WCVTP      
+	02241: PUSHB[1]             74 
+	02243: SWAP       
+	02244: WCVTP      
+	02245: PUSHB[2]              0   122 
+	02248: RCVT       
+	02249: EQ         
+	02250: IF         
+	02251: PUSHB[2]            122    64 
+	02254: NEG        
+	02255: WCVTP      
+	02256: PUSHB[3]             74    64    74 
+	02260: RCVT       
+	02261: SWAP       
+	02262: SUB        
+	02263: WCVTP      
+	02264: EIF        
+	02265: PUSHB[4]             71    97    42   173 
+	02270: RCVT       
+	02271: NEG        
+	02272: SWAP       
+	02273: RCVT       
+	02274: ADD        
+	02275: SWAP       
+	02276: RCVT       
+	02277: NEG        
+	02278: ADD        
+	02279: SWAP       
+	02280: RCVT       
+	02281: ADD        
+	02282: PUSHB[1]            137 
+	02284: SROUND     
+	02285: ROUND[Gray] 
+	02286: RTG        
+	02287: PUSHB[1]            128 
+	02289: DIV        
+	02290: DUP        
+	02291: DUP        
+	02292: PUSHB[2]             42    97 
+	02295: RCVT       
+	02296: NEG        
+	02297: SWAP       
+	02298: RCVT       
+	02299: DUP        
+	02300: PUSHB[1]              3 
+	02302: MINDEX     
+	02303: ADD        
+	02304: DIV        
+	02305: MUL        
+	02306: ROUND[Gray] 
+	02307: DUP        
+	02308: PUSHB[1]              3 
+	02310: MINDEX     
+	02311: SUB        
+	02312: NEG        
+	02313: PUSHB[1]             97 
+	02315: SWAP       
+	02316: NEG        
+	02317: WCVTP      
+	02318: PUSHB[1]             42 
+	02320: SWAP       
+	02321: WCVTP      
+	02322: DUP        
+	02323: PUSHB[2]             71   173 
+	02326: RCVT       
+	02327: NEG        
+	02328: SWAP       
+	02329: RCVT       
+	02330: DUP        
+	02331: PUSHB[1]              3 
+	02333: MINDEX     
+	02334: ADD        
+	02335: DIV        
+	02336: MUL        
+	02337: ROUND[Gray] 
+	02338: DUP        
+	02339: PUSHB[1]              3 
+	02341: MINDEX     
+	02342: SUB        
+	02343: NEG        
+	02344: PUSHB[1]            173 
+	02346: SWAP       
+	02347: NEG        
+	02348: WCVTP      
+	02349: PUSHB[1]             71 
+	02351: SWAP       
+	02352: WCVTP      
+	02353: PUSHB[2]              0   173 
+	02356: RCVT       
+	02357: EQ         
+	02358: IF         
+	02359: PUSHB[2]            173    64 
+	02362: NEG        
+	02363: WCVTP      
+	02364: PUSHB[3]             71    64    71 
+	02368: RCVT       
+	02369: SWAP       
+	02370: SUB        
+	02371: WCVTP      
+	02372: EIF        
+	02373: MPPEM      
+	02374: GTEQ       
+	02375: WS         
+	02376: SVTCA[x-axis] 
+	02377: MPPEM      
+	02378: LT         
+	02379: IF         
+	02380: PUSHB[2]              8     0 
+	02383: WS         
+	02384: EIF        
+	02385: RS         
+	02386: NOT        
+	02387: IF         
+	02388: PUSHB[2]              8     0 
+	02391: WS         
+	02392: EIF        
+	02393: PUSHB[4]              2    11    10    18 
+	02398: RS         
+	02399: IF         
+	02400: ADD        
+	02401: ELSE       
+	02402: POP        
+	02403: EIF        
+	02404: WS         
+	02405: SZPS       
+	02406: SRP0       
+	02407: WCVTF      
+	02408: MIAP[nrd+nci] 
+	02409: PUSHB[1]             18 
+	02411: RS         
+	02412: IF         
+	02413: PUSHW[2]          15137  6270 
+	02418: ELSE       
+	02419: PUSHW[3]           1024   424    11 
+	02426: CALL       
+	02427: EIF        
+	02428: PUSHB[1]             12 
+	02430: SWAP       
+	02431: WS         
+	02432: PUSHB[1]             13 
+	02434: SWAP       
+	02435: WS         
+	02436: PUSHB[1]             18 
+	02438: RS         
+	02439: IF         
+	02440: PUSHW[2]          11585 11585 
+	02445: ELSE       
+	02446: PUSHW[3]           1024  1024    11 
+	02453: CALL       
+	02454: EIF        
+	02455: PUSHB[1]             14 
+	02457: SWAP       
+	02458: WS         
+	02459: PUSHB[1]             15 
+	02461: SWAP       
+	02462: WS         
+	02463: PUSHB[1]             18 
+	02465: RS         
+	02466: IF         
+	02467: PUSHW[2]           6270 15137 
+	02472: ELSE       
+	02473: PUSHW[3]            424  1024    11 
+	02480: CALL       
+	02481: EIF        
+	02482: PUSHB[1]             16 
+	02484: SWAP       
+	02485: WS         
+	02486: PUSHB[1]             17 
+	02488: SWAP       
+	02489: WS         
+	02490: SVTCA[y-axis] 
+	02491: RTG        
+	02492: RCVT       
+	02493: ROUND[Black] 
+	02494: WCVTP      
+	02495: RCVT       
+	02496: ROUND[Black] 
+	02497: WCVTP      
+	02498: DELTAC1    
+	02499: DELTAC1    
+	02500: RTG        
+	02501: RCVT       
+	02502: ROUND[Black] 
+	02503: WCVTP      
+	02504: RCVT       
+	02505: ROUND[Black] 
+	02506: WCVTP      
+	02507: RCVT       
+	02508: ROUND[Black] 
+	02509: WCVTP      
+	02510: RCVT       
+	02511: ROUND[Black] 
+	02512: WCVTP      
+	02513: RCVT       
+	02514: ROUND[Black] 
+	02515: WCVTP      
+	02516: RCVT       
+	02517: ROUND[Black] 
+	02518: WCVTP      
+	02519: RCVT       
+	02520: ROUND[Black] 
+	02521: WCVTP      
+	02522: RCVT       
+	02523: ROUND[Black] 
+	02524: WCVTP      
+	02525: RCVT       
+	02526: ROUND[Black] 
+	02527: WCVTP      
+	02528: RCVT       
+	02529: ROUND[Black] 
+	02530: WCVTP      
+	02531: RCVT       
+	02532: ROUND[Black] 
+	02533: WCVTP      
+	02534: RCVT       
+	02535: ROUND[Black] 
+	02536: WCVTP      
+	02537: RCVT       
+	02538: ROUND[Black] 
+	02539: WCVTP      
+	02540: RCVT       
+	02541: ROUND[Black] 
+	02542: WCVTP      
+	02543: RCVT       
+	02544: ROUND[Black] 
+	02545: WCVTP      
+	02546: DELTAC1    
+	02547: DELTAC1    
+	02548: DELTAC1    
+	02549: DELTAC2    
+	02550: SDB        
+	02551: DELTAC1    
+	02552: SDB        
+	02553: DELTAC1    
+	02554: DELTAC1    
+	02555: DELTAC1    
+	02556: DELTAC1    
+	02557: DELTAC2    
+	02558: DELTAC1    
+	02559: DELTAC1    
+	02560: DELTAC2    
+	02561: DELTAC1    
+	02562: DELTAC1    
+	02563: DELTAC1    
+	02564: DELTAC2    
+	02565: DELTAC3    
+	02566: DELTAC1    
+	02567: DELTAC1    
+	02568: DELTAC2    
+	02569: CALL       
+	02570: CALL       
+	02571: CALL       
+	02572: CALL       
+	02573: SVTCA[y-axis] 
+	02574: DELTAC1    
+	02575: SVTCA[y-axis] 
+	02576: DELTAC1    
+	02577: DELTAC2    
+	02578: SVTCA[y-axis] 
+	02579: RS         
+	02580: NOT        
+	02581: IF         
+	02582: NPUSHW      (12):    31   651    31   653     2    15   651    15   652    15 
+	                           653     3 
+	02608: DELTAC1    
+	02609: DELTAC1    
+	02610: EIF        
+	02611: DELTAC2    
+	02612: SVTCA[y-axis] 
+	02613: CALL       
+	02614: CALL       
+	02615: CALL       
+	02616: CALL       
+	02617: CALL       
+	02618: DELTAC1    
+	02619: DELTAC3    
+	02620: SVTCA[y-axis] 
+	02621: RCVT       
+	02622: ROUND[Black] 
+	02623: WCVTP      
+	02624: DELTAC1    
+	02625: DELTAC2    
+	02626: RCVT       
+	02627: ROUND[Black] 
+	02628: WCVTP      
+	02629: DELTAC1    
+	02630: RCVT       
+	02631: ROUND[Black] 
+	02632: WCVTP      
+	02633: RCVT       
+	02634: ROUND[Black] 
+	02635: WCVTP      
+	02636: RCVT       
+	02637: ROUND[Black] 
+	02638: WCVTP      
+	02639: DELTAC1    
+	02640: RCVT       
+	02641: ROUND[Black] 
+	02642: WCVTP      
+	02643: RCVT       
+	02644: ROUND[Black] 
+	02645: WCVTP      
+	02646: RCVT       
+	02647: ROUND[Black] 
+	02648: WCVTP      
+	02649: DELTAC3    
+	02650: DELTAC2    
+	02651: DELTAC1    
+	02652: DELTAC1    
+	02653: SVTCA[x-axis] 
+	02654: DELTAC1    
+	02655: CALL       
+	02656: CALL       
+	02657: CALL       
+	02658: CALL       
+	02659: CALL       
+	02660: CALL       
+	02661: CALL       
+	02662: CALL       
+	02663: CALL       
+	02664: CALL       
+	02665: CALL       
+	02666: CALL       
+	02667: SVTCA[y-axis] 
+	02668: DELTAC1    
+	02669: DELTAC1    
+	02670: DELTAC1    
+	02671: DELTAC1    
+	02672: DELTAC1    
+	02673: DELTAC1    
+	02674: DELTAC1    
+	02675: DELTAC1    
+	02676: DELTAC1    
+	02677: DELTAC1    
+	02678: DELTAC1    
+	02679: DELTAC1    
+	02680: DELTAC1    
+	02681: DELTAC1    
+	02682: DELTAC1    
+	02683: DELTAC1    
+	02684: DELTAC1    
+	02685: CALL       
+	02686: CALL       
+	02687: CALL       
+	02688: SVTCA[x-axis] 
+	02689: CALL       
+	02690: SVTCA[y-axis] 
+	02691: CALL       
+	02692: SVTCA[x-axis] 
+	02693: CALL       
+	02694: SVTCA[y-axis] 
+	02695: CALL       
+	02696: SVTCA[x-axis] 
+	02697: DELTAC1    
+	02698: DELTAC3    
+	02699: SVTCA[y-axis] 
+	02700: DELTAC1    
+	02701: DELTAC3    
+	02702: SVTCA[x-axis] 
+	02703: CALL       
+	02704: CALL       
+	02705: SVTCA[y-axis] 
+	02706: CALL       
+	02707: CALL       
+	02708: SVTCA[y-axis] 
+	02709: DELTAC1    
+	02710: DELTAC3    
+	02711: CALL       
+	02712: CALL       
+	02713: CALL       
+	02714: CALL       
+	02715: CALL       
+	02716: CALL       
+	02717: SVTCA[x-axis] 
+	02718: DELTAC1    
+	02719: SVTCA[x-axis] 
+	02720: CALL       
+	02721: SVTCA[x-axis] 
+	02722: CALL       
+	02723: DELTAC1    
+	02724: SVTCA[x-axis] 
+	02725: DELTAC1    
+	02726: SVTCA[y-axis] 
+	02727: DELTAC1    
+	02728: DELTAC1    
+	02729: DELTAC2    
+	02730: DELTAC3    
+	02731: CALL       
+	02732: CALL       
+	02733: CALL       
+	02734: CALL       
+	02735: CALL       
+	02736: CALL       
+
+
+'fpgm' Table - Font Program
+---------------------------
+Size = 1496 bytes
+	00000: NPUSHB      (65):    84    64    63    62    61    60    59    58    57    56 
+	                            55    53    52    51    50    49    48    47    46    45 
+	                            44    43    42    41    40    39    38    37    36    35 
+	                            34    33    32    31    30    29    28    27    26    25 
+	                            24    23    22    21    20    19    18    17    16    15 
+	                            14    13    12    11    10     9     8     7     6     5 
+	                             4     3     2     1     0 
+	00067: FDEF       
+	00068: RCVT       
+	00069: SWAP       
+	00070: GC[cur p]  
+	00071: ADD        
+	00072: DUP        
+	00073: PUSHB[1]             38 
+	00075: ADD        
+	00076: PUSHB[1]              4 
+	00078: MINDEX     
+	00079: SWAP       
+	00080: SCFS       
+	00081: SCFS       
+	00082: ENDF       
+	00083: FDEF       
+	00084: RCVT       
+	00085: SWAP       
+	00086: GC[cur p]  
+	00087: SWAP       
+	00088: SUB        
+	00089: DUP        
+	00090: PUSHB[1]             38 
+	00092: SUB        
+	00093: PUSHB[1]              4 
+	00095: MINDEX     
+	00096: SWAP       
+	00097: SCFS       
+	00098: SCFS       
+	00099: ENDF       
+	00100: FDEF       
+	00101: RCVT       
+	00102: SWAP       
+	00103: GC[cur p]  
+	00104: ADD        
+	00105: PUSHB[1]             32 
+	00107: SUB        
+	00108: DUP        
+	00109: PUSHB[1]             70 
+	00111: ADD        
+	00112: PUSHB[1]              4 
+	00114: MINDEX     
+	00115: SWAP       
+	00116: SCFS       
+	00117: SCFS       
+	00118: ENDF       
+	00119: FDEF       
+	00120: RCVT       
+	00121: SWAP       
+	00122: GC[cur p]  
+	00123: SWAP       
+	00124: SUB        
+	00125: PUSHB[1]             32 
+	00127: ADD        
+	00128: DUP        
+	00129: PUSHB[1]             38 
+	00131: SUB        
+	00132: PUSHB[1]             32 
+	00134: SUB        
+	00135: PUSHB[1]              4 
+	00137: MINDEX     
+	00138: SWAP       
+	00139: SCFS       
+	00140: SCFS       
+	00141: ENDF       
+	00142: FDEF       
+	00143: RCVT       
+	00144: SWAP       
+	00145: GC[cur p]  
+	00146: ADD        
+	00147: PUSHB[1]             64 
+	00149: SUB        
+	00150: DUP        
+	00151: PUSHB[1]            102 
+	00153: ADD        
+	00154: PUSHB[1]              4 
+	00156: MINDEX     
+	00157: SWAP       
+	00158: SCFS       
+	00159: SCFS       
+	00160: ENDF       
+	00161: FDEF       
+	00162: RCVT       
+	00163: SWAP       
+	00164: GC[cur p]  
+	00165: SWAP       
+	00166: SUB        
+	00167: PUSHB[1]             64 
+	00169: ADD        
+	00170: DUP        
+	00171: PUSHB[1]             38 
+	00173: SUB        
+	00174: PUSHB[1]             64 
+	00176: SUB        
+	00177: PUSHB[1]              4 
+	00179: MINDEX     
+	00180: SWAP       
+	00181: SCFS       
+	00182: SCFS       
+	00183: ENDF       
+	00184: FDEF       
+	00185: SVTCA[x-axis] 
+	00186: SRP0       
+	00187: DUP        
+	00188: ALIGNRP    
+	00189: SVTCA[y-axis] 
+	00190: ALIGNRP    
+	00191: ENDF       
+	00192: FDEF       
+	00193: DUP        
+	00194: RCVT       
+	00195: SWAP       
+	00196: DUP        
+	00197: PUSHB[1]            205 
+	00199: WCVTP      
+	00200: SWAP       
+	00201: DUP        
+	00202: PUSHW[1]            346 
+	00205: LTEQ       
+	00206: IF         
+	00207: SWAP       
+	00208: DUP        
+	00209: PUSHB[1]            141 
+	00211: WCVTP      
+	00212: SWAP       
+	00213: EIF        
+	00214: DUP        
+	00215: PUSHB[1]            237 
+	00217: LTEQ       
+	00218: IF         
+	00219: SWAP       
+	00220: DUP        
+	00221: PUSHB[1]             77 
+	00223: WCVTP      
+	00224: SWAP       
+	00225: EIF        
+	00226: DUP        
+	00227: PUSHB[1]            144 
+	00229: LTEQ       
+	00230: IF         
+	00231: SWAP       
+	00232: DUP        
+	00233: PUSHB[1]             13 
+	00235: WCVTP      
+	00236: SWAP       
+	00237: EIF        
+	00238: POP        
+	00239: POP        
+	00240: ENDF       
+	00241: FDEF       
+	00242: DUP        
+	00243: DUP        
+	00244: RCVT       
+	00245: RTG        
+	00246: ROUND[Gray] 
+	00247: WCVTP      
+	00248: DUP        
+	00249: PUSHB[1]              1 
+	00251: ADD        
+	00252: DUP        
+	00253: RCVT       
+	00254: PUSHB[1]             70 
+	00256: SROUND     
+	00257: ROUND[Gray] 
+	00258: ROLL       
+	00259: RCVT       
+	00260: ADD        
+	00261: WCVTP      
+	00262: ENDF       
+	00263: FDEF       
+	00264: SVTCA[x-axis] 
+	00265: PUSHB[2]             11    10 
+	00268: RS         
+	00269: SWAP       
+	00270: RS         
+	00271: NEG        
+	00272: SPVFS      
+	00273: ENDF       
+	00274: FDEF       
+	00275: SVTCA[y-axis] 
+	00276: PUSHB[2]             10    11 
+	00279: RS         
+	00280: SWAP       
+	00281: RS         
+	00282: SFVFS      
+	00283: ENDF       
+	00284: FDEF       
+	00285: SVTCA[y-axis] 
+	00286: PUSHB[1]             23 
+	00288: SWAP       
+	00289: WCVTF      
+	00290: PUSHB[2]              1    23 
+	00293: MIAP[nrd+nci] 
+	00294: SVTCA[x-axis] 
+	00295: PUSHB[1]             23 
+	00297: SWAP       
+	00298: WCVTF      
+	00299: PUSHB[2]              2    23 
+	00302: RCVT       
+	00303: MSIRP[nrp] 
+	00304: PUSHB[2]              2     0 
+	00307: SFVTL[=p1,p2] 
+	00308: GFV        
+	00309: ENDF       
+	00310: FDEF       
+	00311: RCVT       
+	00312: PUSHB[1]             26 
+	00314: SWAP       
+	00315: WCVTP      
+	00316: RCVT       
+	00317: PUSHB[1]             25 
+	00319: SWAP       
+	00320: WCVTP      
+	00321: ENDF       
+	00322: FDEF       
+	00323: DUP        
+	00324: RCVT       
+	00325: PUSHB[1]              3 
+	00327: CINDEX     
+	00328: RCVT       
+	00329: SUB        
+	00330: ABS        
+	00331: PUSHB[1]             80 
+	00333: LTEQ       
+	00334: IF         
+	00335: RCVT       
+	00336: WCVTP      
+	00337: ELSE       
+	00338: POP        
+	00339: POP        
+	00340: EIF        
+	00341: ENDF       
+	00342: FDEF       
+	00343: PUSHB[1]              1 
+	00345: RS         
+	00346: MUL        
+	00347: SWAP       
+	00348: DIV        
+	00349: PUSHB[1]              0 
+	00351: SWAP       
+	00352: WS         
+	00353: PUSHB[1]             15 
+	00355: CALL       
+	00356: ENDF       
+	00357: FDEF       
+	00358: DUP        
+	00359: RCVT       
+	00360: PUSHB[1]              0 
+	00362: RS         
+	00363: ADD        
+	00364: WCVTP      
+	00365: ENDF       
+	00366: FDEF       
+	00367: SVTCA[x-axis] 
+	00368: PUSHB[1]              6 
+	00370: RS         
+	00371: PUSHB[1]              7 
+	00373: RS         
+	00374: NEG        
+	00375: SPVFS      
+	00376: ENDF       
+	00377: FDEF       
+	00378: DUP        
+	00379: ROUND[Black] 
+	00380: PUSHB[1]             64 
+	00382: SUB        
+	00383: PUSHB[1]              0 
+	00385: MAX        
+	00386: DUP        
+	00387: PUSHB[2]             44   192 
+	00390: ROLL       
+	00391: MIN        
+	00392: PUSHW[1]           4096 
+	00395: DIV        
+	00396: ADD        
+	00397: CALL       
+	00398: GPV        
+	00399: ABS        
+	00400: SWAP       
+	00401: ABS        
+	00402: SUB        
+	00403: NOT        
+	00404: IF         
+	00405: PUSHB[1]              3 
+	00407: SUB        
+	00408: EIF        
+	00409: ENDF       
+	00410: FDEF       
+	00411: RCVT       
+	00412: PUSHB[1]             17 
+	00414: CALL       
+	00415: PUSHB[1]             23 
+	00417: SWAP       
+	00418: WCVTP      
+	00419: PUSHB[1]             23 
+	00421: ROFF       
+	00422: MIRP[nrp0,nmd,rd,0] 
+	00423: RTG        
+	00424: ENDF       
+	00425: FDEF       
+	00426: RCVT       
+	00427: PUSHB[1]             17 
+	00429: CALL       
+	00430: PUSHB[1]             23 
+	00432: SWAP       
+	00433: WCVTP      
+	00434: ENDF       
+	00435: FDEF       
+	00436: PUSHB[1]             18 
+	00438: RS         
+	00439: IF         
+	00440: SDPVTL[1]  
+	00441: RCVT       
+	00442: PUSHB[1]             17 
+	00444: CALL       
+	00445: PUSHB[1]             23 
+	00447: SWAP       
+	00448: WCVTP      
+	00449: PUSHB[1]             23 
+	00451: ROFF       
+	00452: MIRP[nrp0,nmd,rd,0] 
+	00453: ELSE       
+	00454: SPVTCA[x-axis] 
+	00455: ROLL       
+	00456: RCVT       
+	00457: RTG        
+	00458: ROUND[Black] 
+	00459: DUP        
+	00460: PUSHB[1]             23 
+	00462: SWAP       
+	00463: WCVTP      
+	00464: ROLL       
+	00465: ROLL       
+	00466: SDPVTL[1]  
+	00467: DUP        
+	00468: PUSHB[1]            160 
+	00470: LTEQ       
+	00471: IF         
+	00472: PUSHB[1]             17 
+	00474: CALL       
+	00475: PUSHB[1]             23 
+	00477: SWAP       
+	00478: WCVTP      
+	00479: PUSHB[1]             23 
+	00481: ROFF       
+	00482: MIRP[nrp0,nmd,rd,0] 
+	00483: ELSE       
+	00484: POP        
+	00485: PUSHB[1]             23 
+	00487: ROFF       
+	00488: MIRP[nrp0,nmd,rd,0] 
+	00489: EIF        
+	00490: EIF        
+	00491: RTG        
+	00492: ENDF       
+	00493: FDEF       
+	00494: ENDF       
+	00495: FDEF       
+	00496: PUSHB[1]              2 
+	00498: CINDEX     
+	00499: GC[cur p]  
+	00500: ADD        
+	00501: ROLL       
+	00502: GC[cur p]  
+	00503: PUSHB[1]             64 
+	00505: SUB        
+	00506: MIN        
+	00507: SCFS       
+	00508: ENDF       
+	00509: FDEF       
+	00510: MPPEM      
+	00511: GTEQ       
+	00512: DUP        
+	00513: NOT        
+	00514: IF         
+	00515: PUSHB[1]              2 
+	00517: SCANCTRL   
+	00518: EIF        
+	00519: IF         
+	00520: PUSHB[1]              1 
+	00522: SCANCTRL   
+	00523: EIF        
+	00524: ENDF       
+	00525: FDEF       
+	00526: DUP        
+	00527: PUSHB[1]              3 
+	00529: CINDEX     
+	00530: RCVT       
+	00531: PUSHB[1]             25 
+	00533: SWAP       
+	00534: WCVTP      
+	00535: RCVT       
+	00536: PUSHB[1]             26 
+	00538: SWAP       
+	00539: WCVTP      
+	00540: RCVT       
+	00541: NEG        
+	00542: SWAP       
+	00543: RCVT       
+	00544: DUP        
+	00545: PUSHB[1]              3 
+	00547: CINDEX     
+	00548: ADD        
+	00549: ROUND[White] 
+	00550: DUP        
+	00551: PUSHB[1]              9 
+	00553: SWAP       
+	00554: WS         
+	00555: SWAP       
+	00556: ROUND[Gray] 
+	00557: ROLL       
+	00558: ROUND[White] 
+	00559: ADD        
+	00560: SUB        
+	00561: DUP        
+	00562: PUSHB[1]             26 
+	00564: ROLL       
+	00565: PUSHB[1]              0 
+	00567: GT         
+	00568: JROF       
+	00569: POP        
+	00570: PUSHB[3]             26    26    64 
+	00574: PUSHW[2]            -32    26 
+	00579: RCVT       
+	00580: DUP        
+	00581: ROLL       
+	00582: EQ         
+	00583: IF         
+	00584: SWAP       
+	00585: POP        
+	00586: PUSHB[1]             63 
+	00588: ELSE       
+	00589: SWAP       
+	00590: EIF        
+	00591: SUB        
+	00592: WCVTP      
+	00593: JMPR       
+	00594: PUSHB[2]             20     0 
+	00597: ROLL       
+	00598: GT         
+	00599: JROF       
+	00600: PUSHB[4]             25    64    32    25 
+	00605: RCVT       
+	00606: DUP        
+	00607: ROLL       
+	00608: EQ         
+	00609: IF         
+	00610: SWAP       
+	00611: POP        
+	00612: PUSHB[1]             63 
+	00614: ELSE       
+	00615: SWAP       
+	00616: EIF        
+	00617: SUB        
+	00618: WCVTP      
+	00619: ENDF       
+	00620: FDEF       
+	00621: PUSHB[2]             16    17 
+	00624: RS         
+	00625: SWAP       
+	00626: RS         
+	00627: SFVFS      
+	00628: ENDF       
+	00629: FDEF       
+	00630: PUSHB[2]             14    15 
+	00633: RS         
+	00634: SWAP       
+	00635: RS         
+	00636: SFVFS      
+	00637: ENDF       
+	00638: FDEF       
+	00639: PUSHB[2]             12    13 
+	00642: RS         
+	00643: SWAP       
+	00644: RS         
+	00645: SFVFS      
+	00646: ENDF       
+	00647: FDEF       
+	00648: PUSHB[2]             12    13 
+	00651: RS         
+	00652: SWAP       
+	00653: RS         
+	00654: NEG        
+	00655: SFVFS      
+	00656: ENDF       
+	00657: FDEF       
+	00658: PUSHB[2]             14    15 
+	00661: RS         
+	00662: SWAP       
+	00663: RS         
+	00664: NEG        
+	00665: SFVFS      
+	00666: ENDF       
+	00667: FDEF       
+	00668: PUSHB[2]             16    17 
+	00671: RS         
+	00672: SWAP       
+	00673: RS         
+	00674: NEG        
+	00675: SFVFS      
+	00676: ENDF       
+	00677: FDEF       
+	00678: MPPEM      
+	00679: GT         
+	00680: IF         
+	00681: RCVT       
+	00682: WCVTP      
+	00683: ELSE       
+	00684: POP        
+	00685: POP        
+	00686: EIF        
+	00687: ENDF       
+	00688: FDEF       
+	00689: SVTCA[x-axis] 
+	00690: DUP        
+	00691: PUSHB[1]              3 
+	00693: CINDEX     
+	00694: SWAP       
+	00695: MD[cur]    
+	00696: PUSHB[1]             64 
+	00698: ADD        
+	00699: PUSHB[1]             32 
+	00701: MUL        
+	00702: DUP        
+	00703: PUSHB[1]              0 
+	00705: GT         
+	00706: IF         
+	00707: SWAP       
+	00708: PUSHB[1]              2 
+	00710: CINDEX     
+	00711: SHPIX      
+	00712: SWAP       
+	00713: PUSHB[1]              2 
+	00715: CINDEX     
+	00716: NEG        
+	00717: SHPIX      
+	00718: SVTCA[y-axis] 
+	00719: ROLL       
+	00720: MUL        
+	00721: SHPIX      
+	00722: ELSE       
+	00723: POP        
+	00724: POP        
+	00725: POP        
+	00726: POP        
+	00727: POP        
+	00728: EIF        
+	00729: SVTCA[x-axis] 
+	00730: ENDF       
+	00731: FDEF       
+	00732: MPPEM      
+	00733: PUSHB[1]            100 
+	00735: LTEQ       
+	00736: IF         
+	00737: RCVT       
+	00738: ROUND[Black] 
+	00739: PUSHB[1]              9 
+	00741: RS         
+	00742: ADD        
+	00743: ROLL       
+	00744: SRP0       
+	00745: MSIRP[nrp] 
+	00746: ELSE       
+	00747: POP        
+	00748: POP        
+	00749: POP        
+	00750: EIF        
+	00751: ENDF       
+	00752: FDEF       
+	00753: SVTCA[x-axis] 
+	00754: PUSHB[1]              5 
+	00756: CINDEX     
+	00757: SRP0       
+	00758: SWAP       
+	00759: DUP        
+	00760: ROLL       
+	00761: MIRP[srp0,nmd,rd,1] 
+	00762: SVTCA[y-axis] 
+	00763: PUSHB[1]              1 
+	00765: ADD        
+	00766: SWAP       
+	00767: MIRP[nrp0,md,rd,1] 
+	00768: MIRP[nrp0,md,rd,0] 
+	00769: ENDF       
+	00770: FDEF       
+	00771: SVTCA[x-axis] 
+	00772: PUSHB[1]              5 
+	00774: CINDEX     
+	00775: SRP0       
+	00776: SWAP       
+	00777: DUP        
+	00778: ROLL       
+	00779: MIRP[srp0,nmd,rd,1] 
+	00780: SVTCA[y-axis] 
+	00781: PUSHB[1]              1 
+	00783: SUB        
+	00784: SWAP       
+	00785: MIRP[nrp0,md,rd,1] 
+	00786: MIRP[nrp0,md,rd,0] 
+	00787: ENDF       
+	00788: FDEF       
+	00789: SVTCA[x-axis] 
+	00790: PUSHB[1]              6 
+	00792: CINDEX     
+	00793: SRP0       
+	00794: MIRP[srp0,nmd,rd,1] 
+	00795: SVTCA[y-axis] 
+	00796: MIRP[nrp0,md,rd,1] 
+	00797: MIRP[nrp0,md,rd,0] 
+	00798: ENDF       
+	00799: FDEF       
+	00800: DUP        
+	00801: PUSHB[1]              1 
+	00803: ADD        
+	00804: SVTCA[x-axis] 
+	00805: SRP0       
+	00806: DUP        
+	00807: ALIGNRP    
+	00808: SVTCA[y-axis] 
+	00809: ALIGNRP    
+	00810: ENDF       
+	00811: FDEF       
+	00812: DUP        
+	00813: PUSHB[1]              1 
+	00815: SUB        
+	00816: SVTCA[x-axis] 
+	00817: SRP0       
+	00818: DUP        
+	00819: ALIGNRP    
+	00820: SVTCA[y-axis] 
+	00821: ALIGNRP    
+	00822: ENDF       
+	00823: FDEF       
+	00824: PUSHB[1]             43 
+	00826: CALL       
+	00827: PUSHB[1]             42 
+	00829: LOOPCALL   
+	00830: ENDF       
+	00831: FDEF       
+	00832: SVTCA[y-axis] 
+	00833: PUSHB[1]              7 
+	00835: RS         
+	00836: PUSHB[1]              6 
+	00838: RS         
+	00839: SFVFS      
+	00840: ENDF       
+	00841: FDEF       
+	00842: MIAP[nrd+nci] 
+	00843: PUSHB[1]             42 
+	00845: LOOPCALL   
+	00846: ENDF       
+	00847: FDEF       
+	00848: SHC[rp1,zp0] 
+	00849: ENDF       
+	00850: FDEF       
+	00851: SROUND     
+	00852: PUSHW[1]            617 
+	00855: SWAP       
+	00856: WCVTF      
+	00857: SRP0       
+	00858: DUP        
+	00859: PUSHW[1]            617 
+	00862: RCVT       
+	00863: DUP        
+	00864: PUSHB[1]              0 
+	00866: LT         
+	00867: IF         
+	00868: PUSHB[1]              1 
+	00870: SUB        
+	00871: EIF        
+	00872: MSIRP[nrp] 
+	00873: MDAP[rd]   
+	00874: RTG        
+	00875: ENDF       
+	00876: FDEF       
+	00877: POP        
+	00878: POP        
+	00879: GPV        
+	00880: ABS        
+	00881: SWAP       
+	00882: ABS        
+	00883: MAX        
+	00884: PUSHW[1]          16384 
+	00887: DIV        
+	00888: ENDF       
+	00889: FDEF       
+	00890: POP        
+	00891: PUSHB[1]            128 
+	00893: LTEQ       
+	00894: IF         
+	00895: GPV        
+	00896: ABS        
+	00897: SWAP       
+	00898: ABS        
+	00899: MAX        
+	00900: PUSHW[1]           8192 
+	00903: DIV        
+	00904: ELSE       
+	00905: PUSHB[3]              0    64    47 
+	00909: CALL       
+	00910: EIF        
+	00911: PUSHB[1]              2 
+	00913: ADD        
+	00914: ENDF       
+	00915: FDEF       
+	00916: POP        
+	00917: PUSHB[1]            192 
+	00919: LTEQ       
+	00920: IF         
+	00921: GPV        
+	00922: ABS        
+	00923: SWAP       
+	00924: ABS        
+	00925: MAX        
+	00926: PUSHW[1]           5461 
+	00929: DIV        
+	00930: ELSE       
+	00931: PUSHB[3]              0   128    47 
+	00935: CALL       
+	00936: EIF        
+	00937: PUSHB[1]              2 
+	00939: ADD        
+	00940: ENDF       
+	00941: FDEF       
+	00942: GPV        
+	00943: ABS        
+	00944: SWAP       
+	00945: ABS        
+	00946: MAX        
+	00947: PUSHW[1]          16384 
+	00950: DIV        
+	00951: ADD        
+	00952: SWAP       
+	00953: POP        
+	00954: ENDF       
+	00955: FDEF       
+	00956: PUSHB[5]              0     1     0     0     0 
+	00962: SZP2       
+	00963: PUSHB[1]              8 
+	00965: MINDEX     
+	00966: PUSHB[1]              8 
+	00968: MINDEX     
+	00969: PUSHB[1]              8 
+	00971: MINDEX     
+	00972: PUSHB[1]              8 
+	00974: MINDEX     
+	00975: ISECT      
+	00976: SRP0       
+	00977: SZPS       
+	00978: SZP0       
+	00979: RCVT       
+	00980: ROUND[Gray] 
+	00981: MSIRP[nrp] 
+	00982: PUSHB[1]              1 
+	00984: SZPS       
+	00985: ENDF       
+	00986: FDEF       
+	00987: PUSHB[5]              0     1     0     0     0 
+	00993: SZP2       
+	00994: PUSHB[1]              8 
+	00996: MINDEX     
+	00997: PUSHB[1]              8 
+	00999: MINDEX     
+	01000: PUSHB[1]              8 
+	01002: MINDEX     
+	01003: PUSHB[1]              8 
+	01005: MINDEX     
+	01006: ISECT      
+	01007: SRP0       
+	01008: SZPS       
+	01009: SZP0       
+	01010: RCVT       
+	01011: ROUND[Gray] 
+	01012: NEG        
+	01013: MSIRP[nrp] 
+	01014: PUSHB[1]              1 
+	01016: SZPS       
+	01017: ENDF       
+	01018: FDEF       
+	01019: MPPEM      
+	01020: GTEQ       
+	01021: SWAP       
+	01022: MPPEM      
+	01023: LTEQ       
+	01024: AND        
+	01025: IF         
+	01026: DUP        
+	01027: RCVT       
+	01028: ROLL       
+	01029: ADD        
+	01030: WCVTP      
+	01031: ELSE       
+	01032: POP        
+	01033: POP        
+	01034: EIF        
+	01035: ENDF       
+	01036: FDEF       
+	01037: MPPEM      
+	01038: EQ         
+	01039: IF         
+	01040: DUP        
+	01041: RCVT       
+	01042: ROLL       
+	01043: ADD        
+	01044: WCVTP      
+	01045: ELSE       
+	01046: POP        
+	01047: POP        
+	01048: EIF        
+	01049: ENDF       
+	01050: FDEF       
+	01051: MPPEM      
+	01052: GTEQ       
+	01053: SWAP       
+	01054: MPPEM      
+	01055: LTEQ       
+	01056: AND        
+	01057: IF         
+	01058: SHPIX      
+	01059: ELSE       
+	01060: POP        
+	01061: POP        
+	01062: EIF        
+	01063: ENDF       
+	01064: FDEF       
+	01065: MPPEM      
+	01066: EQ         
+	01067: IF         
+	01068: SHPIX      
+	01069: ELSE       
+	01070: POP        
+	01071: POP        
+	01072: EIF        
+	01073: ENDF       
+	01074: FDEF       
+	01075: PUSHB[1]             19 
+	01077: RS         
+	01078: IF         
+	01079: SPVTCA[x-axis] 
+	01080: ELSE       
+	01081: SPVTCA[y-axis] 
+	01082: EIF        
+	01083: ENDF       
+	01084: FDEF       
+	01085: PUSHB[1]             19 
+	01087: RS         
+	01088: IF         
+	01089: SPVTCA[y-axis] 
+	01090: ELSE       
+	01091: SPVTCA[x-axis] 
+	01092: EIF        
+	01093: ENDF       
+	01094: FDEF       
+	01095: MPPEM      
+	01096: EQ         
+	01097: PUSHB[1]             18 
+	01099: RS         
+	01100: NOT        
+	01101: AND        
+	01102: IF         
+	01103: SHPIX      
+	01104: ELSE       
+	01105: POP        
+	01106: POP        
+	01107: EIF        
+	01108: ENDF       
+	01109: FDEF       
+	01110: PUSHB[1]             18 
+	01112: RS         
+	01113: NOT        
+	01114: IF         
+	01115: GPV        
+	01116: PUSHB[1]              4 
+	01118: CINDEX     
+	01119: PUSHB[1]              4 
+	01121: CINDEX     
+	01122: SPVTL[=p1,p2] 
+	01123: GPV        
+	01124: ABS        
+	01125: SWAP       
+	01126: ABS        
+	01127: SUB        
+	01128: ABS        
+	01129: PUSHW[1]           1800 
+	01132: LTEQ       
+	01133: IF         
+	01134: PUSHB[1]              4 
+	01136: CINDEX     
+	01137: PUSHB[1]              4 
+	01139: CINDEX     
+	01140: SVTCA[x-axis] 
+	01141: DUP        
+	01142: GC[cur p]  
+	01143: PUSHB[1]             16 
+	01145: ADD        
+	01146: SCFS       
+	01147: DUP        
+	01148: GC[cur p]  
+	01149: PUSHB[1]             16 
+	01151: ADD        
+	01152: SCFS       
+	01153: EIF        
+	01154: SPVFS      
+	01155: POP        
+	01156: POP        
+	01157: ELSE       
+	01158: POP        
+	01159: POP        
+	01160: EIF        
+	01161: ENDF       
+	01162: FDEF       
+	01163: PUSHB[1]             18 
+	01165: RS         
+	01166: NOT        
+	01167: IF         
+	01168: GPV        
+	01169: PUSHB[1]              4 
+	01171: CINDEX     
+	01172: PUSHB[1]              4 
+	01174: CINDEX     
+	01175: SPVTL[=p1,p2] 
+	01176: GPV        
+	01177: ABS        
+	01178: SWAP       
+	01179: ABS        
+	01180: SUB        
+	01181: ABS        
+	01182: PUSHW[1]           1800 
+	01185: LTEQ       
+	01186: IF         
+	01187: PUSHB[1]              4 
+	01189: CINDEX     
+	01190: PUSHB[1]              4 
+	01192: CINDEX     
+	01193: SVTCA[x-axis] 
+	01194: DUP        
+	01195: GC[cur p]  
+	01196: PUSHW[1]            -16 
+	01199: ADD        
+	01200: SCFS       
+	01201: DUP        
+	01202: GC[cur p]  
+	01203: PUSHW[1]            -16 
+	01206: ADD        
+	01207: SCFS       
+	01208: EIF        
+	01209: SPVFS      
+	01210: POP        
+	01211: POP        
+	01212: ELSE       
+	01213: POP        
+	01214: POP        
+	01215: EIF        
+	01216: ENDF       
+	01217: FDEF       
+	01218: MPPEM      
+	01219: GTEQ       
+	01220: SWAP       
+	01221: MPPEM      
+	01222: LTEQ       
+	01223: AND        
+	01224: IF         
+	01225: PUSHB[1]             58 
+	01227: CALL       
+	01228: ELSE       
+	01229: POP        
+	01230: POP        
+	01231: EIF        
+	01232: ENDF       
+	01233: FDEF       
+	01234: MPPEM      
+	01235: GTEQ       
+	01236: SWAP       
+	01237: MPPEM      
+	01238: LTEQ       
+	01239: AND        
+	01240: IF         
+	01241: PUSHB[1]             59 
+	01243: CALL       
+	01244: ELSE       
+	01245: POP        
+	01246: POP        
+	01247: EIF        
+	01248: ENDF       
+	01249: FDEF       
+	01250: MPPEM      
+	01251: GTEQ       
+	01252: SWAP       
+	01253: MPPEM      
+	01254: LTEQ       
+	01255: AND        
+	01256: PUSHB[1]             18 
+	01258: RS         
+	01259: NOT        
+	01260: AND        
+	01261: IF         
+	01262: SHPIX      
+	01263: ELSE       
+	01264: POP        
+	01265: POP        
+	01266: EIF        
+	01267: ENDF       
+	01268: FDEF       
+	01269: GPV        
+	01270: ROLL       
+	01271: SPVTCA[x-axis] 
+	01272: MPPEM      
+	01273: EQ         
+	01274: PUSHB[1]              4 
+	01276: MINDEX     
+	01277: SPVTCA[y-axis] 
+	01278: MPPEM      
+	01279: EQ         
+	01280: AND        
+	01281: ROLL       
+	01282: ROLL       
+	01283: SPVFS      
+	01284: PUSHB[1]             18 
+	01286: RS         
+	01287: NOT        
+	01288: AND        
+	01289: IF         
+	01290: SHPIX      
+	01291: ELSE       
+	01292: POP        
+	01293: POP        
+	01294: EIF        
+	01295: ENDF       
+	01296: FDEF       
+	01297: GC[cur p]  
+	01298: SWAP       
+	01299: GC[cur p]  
+	01300: ADD        
+	01301: ROLL       
+	01302: ROLL       
+	01303: GC[cur p]  
+	01304: SWAP       
+	01305: DUP        
+	01306: GC[cur p]  
+	01307: ROLL       
+	01308: ADD        
+	01309: ROLL       
+	01310: SUB        
+	01311: PUSHW[1]           -128 
+	01314: DIV        
+	01315: SWAP       
+	01316: DUP        
+	01317: SRP0       
+	01318: SWAP       
+	01319: ROLL       
+	01320: PUSHW[2]            806   806 
+	01325: ROLL       
+	01326: WCVTF      
+	01327: RCVT       
+	01328: ADD        
+	01329: DUP        
+	01330: PUSHB[1]              0 
+	01332: LT         
+	01333: IF         
+	01334: PUSHB[1]              1 
+	01336: SUB        
+	01337: PUSHW[1]            -70 
+	01340: MAX        
+	01341: ELSE       
+	01342: PUSHB[1]             70 
+	01344: MIN        
+	01345: EIF        
+	01346: PUSHB[1]             16 
+	01348: ADD        
+	01349: ROUND[Gray] 
+	01350: SVTCA[x-axis] 
+	01351: MSIRP[nrp] 
+	01352: ENDF       
+	01353: FDEF       
+	01354: PUSHB[2]              2     0 
+	01357: WS         
+	01358: PUSHB[2]             35     1 
+	01361: GETINFO    
+	01362: LTEQ       
+	01363: PUSHB[2]             64     1 
+	01366: GETINFO    
+	01367: GTEQ       
+	01368: AND        
+	01369: IF         
+	01370: PUSHW[2]           4096    32 
+	01375: GETINFO    
+	01376: EQ         
+	01377: IF         
+	01378: PUSHB[3]              2     1     2 
+	01382: RS         
+	01383: ADD        
+	01384: WS         
+	01385: EIF        
+	01386: PUSHB[2]             36     1 
+	01389: GETINFO    
+	01390: LTEQ       
+	01391: IF         
+	01392: PUSHW[2]           8192    64 
+	01397: GETINFO    
+	01398: EQ         
+	01399: IF         
+	01400: PUSHB[3]              2     2     2 
+	01404: RS         
+	01405: ADD        
+	01406: WS         
+	01407: EIF        
+	01408: PUSHB[2]             36     1 
+	01411: GETINFO    
+	01412: EQ         
+	01413: IF         
+	01414: PUSHB[3]              2    32     2 
+	01418: RS         
+	01419: ADD        
+	01420: WS         
+	01421: SVTCA[y-axis] 
+	01422: MPPEM      
+	01423: SVTCA[x-axis] 
+	01424: MPPEM      
+	01425: GT         
+	01426: IF         
+	01427: PUSHB[3]              2     8     2 
+	01431: RS         
+	01432: ADD        
+	01433: WS         
+	01434: EIF        
+	01435: ELSE       
+	01436: PUSHW[2]          16384   128 
+	01441: GETINFO    
+	01442: EQ         
+	01443: IF         
+	01444: PUSHB[3]              2     4     2 
+	01448: RS         
+	01449: ADD        
+	01450: WS         
+	01451: EIF        
+	01452: PUSHW[2]          16384   128 
+	01457: MUL        
+	01458: PUSHW[1]            256 
+	01461: GETINFO    
+	01462: EQ         
+	01463: IF         
+	01464: PUSHB[3]              2     8     2 
+	01468: RS         
+	01469: ADD        
+	01470: WS         
+	01471: EIF        
+	01472: PUSHW[2]          16384   256 
+	01477: MUL        
+	01478: PUSHW[1]            512 
+	01481: GETINFO    
+	01482: EQ         
+	01483: IF         
+	01484: PUSHB[3]              2    16     2 
+	01488: RS         
+	01489: ADD        
+	01490: WS         
+	01491: EIF        
+	01492: EIF        
+	01493: EIF        
+	01494: EIF        
+	01495: ENDF       
+
+
+'hmtx' Table - Horizontal Metrics
+---------------------------------
+Size = 2642 bytes, 3 entries
+	  0. advWid: 1229, LSdBear: 103
+	  1. advWid:    0, LSdBear: 0
+	  2. advWid: 1229, LSdBear: 0
+	LSdBear   3: 0
+	LSdBear   4: 491
+	LSdBear   5: 266
+	LSdBear   6: 187
+	LSdBear   7: 228
+	LSdBear   8: 187
+	LSdBear   9: 254
+	LSdBear  10: 481
+	LSdBear  11: 605
+	LSdBear  12: 301
+	LSdBear  13: 226
+	LSdBear  14: 144
+	LSdBear  15: 299
+	LSdBear  16: 186
+	LSdBear  17: 461
+	LSdBear  18: 230
+	LSdBear  19: 229
+	LSdBear  20: 228
+	LSdBear  21: 171
+	LSdBear  22: 195
+	LSdBear  23: 214
+	LSdBear  24: 196
+	LSdBear  25: 274
+	LSdBear  26: 211
+	LSdBear  27: 231
+	LSdBear  28: 275
+	LSdBear  29: 461
+	LSdBear  30: 312
+	LSdBear  31: 98
+	LSdBear  32: 101
+	LSdBear  33: 148
+	LSdBear  34: 275
+	LSdBear  35: 215
+	LSdBear  36: 17
+	LSdBear  37: 87
+	LSdBear  38: 127
+	LSdBear  39: 158
+	LSdBear  40: 88
+	LSdBear  41: 159
+	LSdBear  42: 128
+	LSdBear  43: 107
+	LSdBear  44: 229
+	LSdBear  45: 171
+	LSdBear  46: 89
+	LSdBear  47: 128
+	LSdBear  48: 24
+	LSdBear  49: 46
+	LSdBear  50: 104
+	LSdBear  51: 179
+	LSdBear  52: 104
+	LSdBear  53: 88
+	LSdBear  54: 185
+	LSdBear  55: 143
+	LSdBear  56: 83
+	LSdBear  57: 16
+	LSdBear  58: 37
+	LSdBear  59: 80
+	LSdBear  60: 99
+	LSdBear  61: 213
+	LSdBear  62: 573
+	LSdBear  63: 227
+	LSdBear  64: 316
+	LSdBear  65: 228
+	LSdBear  66: 0
+	LSdBear  67: 444
+	LSdBear  68: 144
+	LSdBear  69: 45
+	LSdBear  70: 171
+	LSdBear  71: 126
+	LSdBear  72: 128
+	LSdBear  73: 215
+	LSdBear  74: 125
+	LSdBear  75: 85
+	LSdBear  76: 189
+	LSdBear  77: 180
+	LSdBear  78: 191
+	LSdBear  79: 187
+	LSdBear  80: 21
+	LSdBear  81: 108
+	LSdBear  82: 145
+	LSdBear  83: 45
+	LSdBear  84: 128
+	LSdBear  85: 171
+	LSdBear  86: 207
+	LSdBear  87: 146
+	LSdBear  88: 91
+	LSdBear  89: 59
+	LSdBear  90: 56
+	LSdBear  91: 101
+	LSdBear  92: 149
+	LSdBear  93: 237
+	LSdBear  94: 405
+	LSdBear  95: 572
+	LSdBear  96: 404
+	LSdBear  97: 187
+	LSdBear  98: 17
+	LSdBear  99: 17
+	LSdBear 100: 127
+	LSdBear 101: 88
+	LSdBear 102: 46
+	LSdBear 103: 104
+	LSdBear 104: 83
+	LSdBear 105: 144
+	LSdBear 106: 144
+	LSdBear 107: 144
+	LSdBear 108: 144
+	LSdBear 109: 144
+	LSdBear 110: 144
+	LSdBear 111: 171
+	LSdBear 112: 128
+	LSdBear 113: 128
+	LSdBear 114: 128
+	LSdBear 115: 128
+	LSdBear 116: 186
+	LSdBear 117: 186
+	LSdBear 118: 186
+	LSdBear 119: 186
+	LSdBear 120: 108
+	LSdBear 121: 145
+	LSdBear 122: 145
+	LSdBear 123: 145
+	LSdBear 124: 145
+	LSdBear 125: 145
+	LSdBear 126: 91
+	LSdBear 127: 91
+	LSdBear 128: 91
+	LSdBear 129: 91
+	LSdBear 130: 252
+	LSdBear 131: 337
+	LSdBear 132: 228
+	LSdBear 133: 124
+	LSdBear 134: 143
+	LSdBear 135: 367
+	LSdBear 136: 171
+	LSdBear 137: 89
+	LSdBear 138: 0
+	LSdBear 139: 0
+	LSdBear 140: 4
+	LSdBear 141: 443
+	LSdBear 142: 319
+	LSdBear 143: 101
+	LSdBear 144: 18
+	LSdBear 145: 80
+	LSdBear 146: 109
+	LSdBear 147: 144
+	LSdBear 148: 98
+	LSdBear 149: 148
+	LSdBear 150: 98
+	LSdBear 151: 90
+	LSdBear 152: 176
+	LSdBear 153: 43
+	LSdBear 154: 54
+	LSdBear 155: 167
+	LSdBear 156: 225
+	LSdBear 157: 296
+	LSdBear 158: 294
+	LSdBear 159: 61
+	LSdBear 160: 16
+	LSdBear 161: 112
+	LSdBear 162: 230
+	LSdBear 163: 491
+	LSdBear 164: 24
+	LSdBear 165: 137
+	LSdBear 166: 177
+	LSdBear 167: 187
+	LSdBear 168: 83
+	LSdBear 169: 99
+	LSdBear 170: 127
+	LSdBear 171: 101
+	LSdBear 172: 17
+	LSdBear 173: 17
+	LSdBear 174: 104
+	LSdBear 175: 17
+	LSdBear 176: 18
+	LSdBear 177: 145
+	LSdBear 178: -15
+	LSdBear 179: 179
+	LSdBear 180: 219
+	LSdBear 181: 509
+	LSdBear 182: 293
+	LSdBear 183: 144
+	LSdBear 184: 155
+	LSdBear 185: 149
+	LSdBear 186: 99
+	LSdBear 187: 103
+	LSdBear 188: 7
+	LSdBear 189: 107
+	LSdBear 190: 596
+	LSdBear 191: 14
+	LSdBear 192: 19
+	LSdBear 193: 251
+	LSdBear 194: 461
+	LSdBear 195: 299
+	LSdBear 196: 224
+	LSdBear 197: 61
+	LSdBear 198: 17
+	LSdBear 199: 88
+	LSdBear 200: 17
+	LSdBear 201: 88
+	LSdBear 202: 88
+	LSdBear 203: 229
+	LSdBear 204: 229
+	LSdBear 205: 229
+	LSdBear 206: 229
+	LSdBear 207: 0
+	LSdBear 208: 104
+	LSdBear 209: 0
+	LSdBear 210: 83
+	LSdBear 211: 83
+	LSdBear 212: 83
+	LSdBear 213: 186
+	LSdBear 214: 316
+	LSdBear 215: 296
+	LSdBear 216: 316
+	LSdBear 217: 314
+	LSdBear 218: 512
+	LSdBear 219: 433
+	LSdBear 220: 442
+	LSdBear 221: 315
+	LSdBear 222: 468
+	LSdBear 223: 316
+	LSdBear 224: 86
+	LSdBear 225: 187
+	LSdBear 226: 185
+	LSdBear 227: 207
+	LSdBear 228: 213
+	LSdBear 229: 237
+	LSdBear 230: 572
+	LSdBear 231: -3
+	LSdBear 232: 129
+	LSdBear 233: 99
+	LSdBear 234: 149
+	LSdBear 235: 179
+	LSdBear 236: 45
+	LSdBear 237: 144
+	LSdBear 238: 270
+	LSdBear 239: 374
+	LSdBear 240: 341
+	LSdBear 241: 355
+	LSdBear 242: 0
+	LSdBear 243: 0
+	LSdBear 244: 0
+	LSdBear 245: 159
+	LSdBear 246: 128
+	LSdBear 247: 125
+	LSdBear 248: 229
+	LSdBear 249: 185
+	LSdBear 250: 207
+	LSdBear 251: 127
+	LSdBear 252: 171
+	LSdBear 253: 127
+	LSdBear 254: 171
+	LSdBear 255: 126
+	LSdBear 256: -27
+	LSdBear 257: 708
+	LSdBear 258: 17
+	LSdBear 259: 144
+	LSdBear 260: 17
+	LSdBear 261: 144
+	LSdBear 262: 158
+	LSdBear 263: 126
+	LSdBear 264: -3
+	LSdBear 265: 88
+	LSdBear 266: 128
+	LSdBear 267: 88
+	LSdBear 268: 128
+	LSdBear 269: 128
+	LSdBear 270: 187
+	LSdBear 271: 128
+	LSdBear 272: 187
+	LSdBear 273: 128
+	LSdBear 274: 187
+	LSdBear 275: 46
+	LSdBear 276: 108
+	LSdBear 277: 46
+	LSdBear 278: 108
+	LSdBear 279: 104
+	LSdBear 280: 145
+	LSdBear 281: 88
+	LSdBear 282: 171
+	LSdBear 283: 88
+	LSdBear 284: 171
+	LSdBear 285: 185
+	LSdBear 286: 207
+	LSdBear 287: 143
+	LSdBear 288: 146
+	LSdBear 289: 143
+	LSdBear 290: 146
+	LSdBear 291: 83
+	LSdBear 292: 91
+	LSdBear 293: 83
+	LSdBear 294: 91
+	LSdBear 295: 213
+	LSdBear 296: 237
+	LSdBear 297: 213
+	LSdBear 298: 237
+	LSdBear 299: 127
+	LSdBear 300: 103
+	LSdBear 301: 90
+	LSdBear 302: 98
+	LSdBear 303: 181
+	LSdBear 304: 283
+	LSdBear 305: 152
+	LSdBear 306: 208
+	LSdBear 307: 123
+	LSdBear 308: -27
+	LSdBear 309: 274
+	LSdBear 310: 283
+	LSdBear 311: 14
+	LSdBear 312: 2
+	LSdBear 313: 381
+	LSdBear 314: 2
+	LSdBear 315: 381
+	LSdBear 316: 2
+	LSdBear 317: 381
+	LSdBear 318: 381
+	LSdBear 319: 2
+	LSdBear 320: 169
+	LSdBear 321: 101
+	LSdBear 322: 153
+	LSdBear 323: 144
+	LSdBear 324: 541
+	LSdBear 325: 256
+	LSdBear 326: 0
+	LSdBear 327: 541
+	LSdBear 328: 541
+	LSdBear 329: 0
+	LSdBear 330: 541
+	LSdBear 331: 0
+	LSdBear 332: 541
+	LSdBear 333: 0
+	LSdBear 334: 0
+	LSdBear 335: 0
+	LSdBear 336: 0
+	LSdBear 337: 0
+	LSdBear 338: 381
+	LSdBear 339: 541
+	LSdBear 340: 381
+	LSdBear 341: 381
+	LSdBear 342: 0
+	LSdBear 343: 0
+	LSdBear 344: 0
+	LSdBear 345: 541
+	LSdBear 346: 381
+	LSdBear 347: 381
+	LSdBear 348: 0
+	LSdBear 349: 0
+	LSdBear 350: 0
+	LSdBear 351: 541
+	LSdBear 352: 381
+	LSdBear 353: 381
+	LSdBear 354: 0
+	LSdBear 355: 0
+	LSdBear 356: 0
+	LSdBear 357: 0
+	LSdBear 358: 0
+	LSdBear 359: 0
+	LSdBear 360: 0
+	LSdBear 361: 0
+	LSdBear 362: 0
+	LSdBear 363: 0
+	LSdBear 364: 0
+	LSdBear 365: 0
+	LSdBear 366: 0
+	LSdBear 367: 0
+	LSdBear 368: 0
+	LSdBear 369: 0
+	LSdBear 370: 615
+	LSdBear 371: 0
+	LSdBear 372: 0
+	LSdBear 373: 0
+	LSdBear 374: 2
+	LSdBear 375: 2
+	LSdBear 376: 15
+	LSdBear 377: 2
+	LSdBear 378: 15
+	LSdBear 379: 2
+	LSdBear 380: 174
+	LSdBear 381: 124
+	LSdBear 382: 38
+	LSdBear 383: 3
+	LSdBear 384: 3
+	LSdBear 385: 2
+	LSdBear 386: 321
+	LSdBear 387: 184
+	LSdBear 388: 128
+	LSdBear 389: 2
+	LSdBear 390: 108
+	LSdBear 391: 159
+	LSdBear 392: 271
+	LSdBear 393: 90
+	LSdBear 394: 9
+	LSdBear 395: 19
+	LSdBear 396: -13
+	LSdBear 397: 513
+	LSdBear 398: 302
+	LSdBear 399: 187
+	LSdBear 400: 321
+	LSdBear 401: 2
+	LSdBear 402: 361
+	LSdBear 403: 361
+	LSdBear 404: 174
+	LSdBear 405: 367
+	LSdBear 406: 17
+	LSdBear 407: 144
+	LSdBear 408: 127
+	LSdBear 409: 171
+	LSdBear 410: 127
+	LSdBear 411: 171
+	LSdBear 412: 88
+	LSdBear 413: 128
+	LSdBear 414: 88
+	LSdBear 415: 128
+	LSdBear 416: 88
+	LSdBear 417: 128
+	LSdBear 418: 128
+	LSdBear 419: 125
+	LSdBear 420: 128
+	LSdBear 421: 125
+	LSdBear 422: 128
+	LSdBear 423: 125
+	LSdBear 424: 107
+	LSdBear 425: 85
+	LSdBear 426: 107
+	LSdBear 427: 62
+	LSdBear 428: 229
+	LSdBear 429: 189
+	LSdBear 430: 229
+	LSdBear 431: 189
+	LSdBear 432: 229
+	LSdBear 433: 189
+	LSdBear 434: 229
+	LSdBear 435: 189
+	LSdBear 436: 171
+	LSdBear 437: 180
+	LSdBear 438: 89
+	LSdBear 439: 191
+	LSdBear 440: 146
+	LSdBear 441: 128
+	LSdBear 442: 187
+	LSdBear 443: 46
+	LSdBear 444: 108
+	LSdBear 445: 128
+	LSdBear 446: 108
+	LSdBear 447: 0
+	LSdBear 448: 145
+	LSdBear 449: 0
+	LSdBear 450: 145
+	LSdBear 451: 88
+	LSdBear 452: 171
+	LSdBear 453: 185
+	LSdBear 454: 207
+	LSdBear 455: 143
+	LSdBear 456: 122
+	LSdBear 457: 83
+	LSdBear 458: 91
+	LSdBear 459: 83
+	LSdBear 460: 91
+	LSdBear 461: 83
+	LSdBear 462: 91
+	LSdBear 463: 83
+	LSdBear 464: 91
+	LSdBear 465: 37
+	LSdBear 466: 56
+	LSdBear 467: 99
+	LSdBear 468: 149
+	LSdBear 469: 215
+	LSdBear 470: 17
+	LSdBear 471: 144
+	LSdBear 472: 18
+	LSdBear 473: 16
+	LSdBear 474: 80
+	LSdBear 475: 112
+	LSdBear 476: 461
+	LSdBear 477: 37
+	LSdBear 478: 56
+	LSdBear 479: 37
+	LSdBear 480: 56
+	LSdBear 481: 37
+	LSdBear 482: 56
+	LSdBear 483: 99
+	LSdBear 484: 149
+	LSdBear 485: 509
+	LSdBear 486: 316
+	LSdBear 487: 136
+	LSdBear 488: 90
+	LSdBear 489: 12
+	LSdBear 490: 17
+	LSdBear 491: 11
+	LSdBear 492: 27
+	LSdBear 493: 520
+	LSdBear 494: 468
+	LSdBear 495: 443
+	LSdBear 496: 264
+	LSdBear 497: 64
+	LSdBear 498: -4
+	LSdBear 499: 19
+	LSdBear 500: 65
+	LSdBear 501: -10
+	LSdBear 502: 42
+	LSdBear 503: -44
+	LSdBear 504: 242
+	LSdBear 505: 17
+	LSdBear 506: 87
+	LSdBear 507: 101
+	LSdBear 508: 88
+	LSdBear 509: 213
+	LSdBear 510: 107
+	LSdBear 511: 229
+	LSdBear 512: 89
+	LSdBear 513: 15
+	LSdBear 514: 24
+	LSdBear 515: 46
+	LSdBear 516: 147
+	LSdBear 517: 104
+	LSdBear 518: 100
+	LSdBear 519: 179
+	LSdBear 520: 196
+	LSdBear 521: 143
+	LSdBear 522: 99
+	LSdBear 523: 80
+	LSdBear 524: 29
+	LSdBear 525: 60
+	LSdBear 526: 229
+	LSdBear 527: 100
+	LSdBear 528: 98
+	LSdBear 529: 283
+	LSdBear 530: 139
+	LSdBear 531: 443
+	LSdBear 532: 87
+	LSdBear 533: 260
+	LSdBear 534: 70
+	LSdBear 535: 342
+	LSdBear 536: 139
+	LSdBear 537: 179
+	LSdBear 538: 527
+	LSdBear 539: 158
+	LSdBear 540: 65
+	LSdBear 541: 84
+	LSdBear 542: 74
+	LSdBear 543: 325
+	LSdBear 544: 145
+	LSdBear 545: 202
+	LSdBear 546: 207
+	LSdBear 547: 87
+	LSdBear 548: 153
+	LSdBear 549: 69
+	LSdBear 550: 117
+	LSdBear 551: 296
+	LSdBear 552: 87
+	LSdBear 553: 145
+	LSdBear 554: 87
+	LSdBear 555: 117
+	LSdBear 556: 88
+	LSdBear 557: 17
+	LSdBear 558: 127
+	LSdBear 559: 127
+	LSdBear 560: 185
+	LSdBear 561: 229
+	LSdBear 562: 229
+	LSdBear 563: 171
+	LSdBear 564: 35
+	LSdBear 565: 0
+	LSdBear 566: 17
+	LSdBear 567: 119
+	LSdBear 568: 44
+	LSdBear 569: 100
+	LSdBear 570: 17
+	LSdBear 571: 87
+	LSdBear 572: 87
+	LSdBear 573: 127
+	LSdBear 574: 74
+	LSdBear 575: 88
+	LSdBear 576: -5
+	LSdBear 577: 114
+	LSdBear 578: 40
+	LSdBear 579: 40
+	LSdBear 580: 119
+	LSdBear 581: 35
+	LSdBear 582: 24
+	LSdBear 583: 107
+	LSdBear 584: 104
+	LSdBear 585: 100
+	LSdBear 586: 179
+	LSdBear 587: 127
+	LSdBear 588: 143
+	LSdBear 589: 44
+	LSdBear 590: 99
+	LSdBear 591: 80
+	LSdBear 592: 89
+	LSdBear 593: 41
+	LSdBear 594: 4
+	LSdBear 595: 4
+	LSdBear 596: 2
+	LSdBear 597: 2
+	LSdBear 598: 87
+	LSdBear 599: 129
+	LSdBear 600: 22
+	LSdBear 601: 15
+	LSdBear 602: 144
+	LSdBear 603: 128
+	LSdBear 604: 123
+	LSdBear 605: 152
+	LSdBear 606: 90
+	LSdBear 607: 128
+	LSdBear 608: 20
+	LSdBear 609: 144
+	LSdBear 610: 58
+	LSdBear 611: 58
+	LSdBear 612: 120
+	LSdBear 613: 51
+	LSdBear 614: 31
+	LSdBear 615: 107
+	LSdBear 616: 145
+	LSdBear 617: 107
+	LSdBear 618: 45
+	LSdBear 619: 171
+	LSdBear 620: 166
+	LSdBear 621: 60
+	LSdBear 622: 119
+	LSdBear 623: 101
+	LSdBear 624: 77
+	LSdBear 625: 70
+	LSdBear 626: 33
+	LSdBear 627: 33
+	LSdBear 628: 75
+	LSdBear 629: 24
+	LSdBear 630: 166
+	LSdBear 631: 130
+	LSdBear 632: 36
+	LSdBear 633: 131
+	LSdBear 634: 128
+	LSdBear 635: 142
+	LSdBear 636: 152
+	LSdBear 637: 171
+	LSdBear 638: 207
+	LSdBear 639: 189
+	LSdBear 640: 186
+	LSdBear 641: 180
+	LSdBear 642: 51
+	LSdBear 643: -18
+	LSdBear 644: 62
+	LSdBear 645: 120
+	LSdBear 646: 60
+	LSdBear 647: 107
+	LSdBear 648: 127
+	LSdBear 649: 152
+	LSdBear 650: 43
+	LSdBear 651: 49
+	LSdBear 652: 104
+	LSdBear 653: 549
+	LSdBear 654: 330
+	LSdBear 655: 329
+	LSdBear 656: 329
+	LSdBear 657: 548
+	LSdBear 658: 439
+	LSdBear 659: 439
+	LSdBear 660: 408
+	LSdBear 661: 408
+	LSdBear 662: 548
+	LSdBear 663: 331
+	LSdBear 664: 548
+	LSdBear 665: 566
+	LSdBear 666: 181
+	LSdBear 667: 408
+	LSdBear 668: 572
+	LSdBear 669: 907
+	LSdBear 670: 185
+	LSdBear 671: 460
+	LSdBear 672: 208
+	LSdBear 673: 158
+	LSdBear 674: 277
+	LSdBear 675: 163
+	LSdBear 676: 160
+	LSdBear 677: 375
+	LSdBear 678: 329
+	LSdBear 679: 146
+	LSdBear 680: 104
+	LSdBear 681: 371
+	LSdBear 682: 149
+	LSdBear 683: 180
+	LSdBear 684: 192
+	LSdBear 685: 109
+	LSdBear 686: 133
+	LSdBear 687: 374
+	LSdBear 688: 284
+	LSdBear 689: 79
+	LSdBear 690: 192
+	LSdBear 691: 242
+	LSdBear 692: 250
+	LSdBear 693: 222
+	LSdBear 694: 162
+	LSdBear 695: 197
+	LSdBear 696: 172
+	LSdBear 697: 204
+	LSdBear 698: 160
+	LSdBear 699: 122
+	LSdBear 700: 133
+	LSdBear 701: 133
+	LSdBear 702: 447
+	LSdBear 703: 247
+	LSdBear 704: 91
+	LSdBear 705: 232
+	LSdBear 706: 149
+	LSdBear 707: 149
+	LSdBear 708: 0
+	LSdBear 709: 0
+	LSdBear 710: 192
+	LSdBear 711: 204
+	LSdBear 712: 185
+	LSdBear 713: 204
+	LSdBear 714: 185
+	LSdBear 715: 208
+	LSdBear 716: 208
+	LSdBear 717: 208
+	LSdBear 718: 158
+	LSdBear 719: 277
+	LSdBear 720: 163
+	LSdBear 721: 160
+	LSdBear 722: 357
+	LSdBear 723: 312
+	LSdBear 724: 104
+	LSdBear 725: 371
+	LSdBear 726: 149
+	LSdBear 727: 180
+	LSdBear 728: 192
+	LSdBear 729: 133
+	LSdBear 730: 284
+	LSdBear 731: 79
+	LSdBear 732: 242
+	LSdBear 733: 250
+	LSdBear 734: 162
+	LSdBear 735: 197
+	LSdBear 736: 172
+	LSdBear 737: 204
+	LSdBear 738: 160
+	LSdBear 739: 375
+	LSdBear 740: 158
+	LSdBear 741: 180
+	LSdBear 742: 250
+	LSdBear 743: 172
+	LSdBear 744: 579
+	LSdBear 745: 396
+	LSdBear 746: 352
+	LSdBear 747: 292
+	LSdBear 748: 455
+	LSdBear 749: 455
+	LSdBear 750: 251
+	LSdBear 751: 513
+	LSdBear 752: 0
+	LSdBear 753: 476
+	LSdBear 754: 407
+	LSdBear 755: 476
+	LSdBear 756: 476
+	LSdBear 757: 419
+	LSdBear 758: 476
+	LSdBear 759: 458
+	LSdBear 760: 475
+	LSdBear 761: 473
+	LSdBear 762: 356
+	LSdBear 763: 319
+	LSdBear 764: 244
+	LSdBear 765: 383
+	LSdBear 766: 340
+	LSdBear 767: 311
+	LSdBear 768: 264
+	LSdBear 769: 263
+	LSdBear 770: 295
+	LSdBear 771: 150
+	LSdBear 772: 455
+	LSdBear 773: 230
+	LSdBear 774: 586
+	LSdBear 775: 465
+	LSdBear 776: 499
+	LSdBear 777: 269
+	LSdBear 778: 295
+	LSdBear 779: 273
+	LSdBear 780: 325
+	LSdBear 781: 0
+	LSdBear 782: 0
+	LSdBear 783: 0
+	LSdBear 784: 0
+	LSdBear 785: 0
+	LSdBear 786: 458
+	LSdBear 787: 515
+	LSdBear 788: 513
+	LSdBear 789: 515
+	LSdBear 790: 418
+	LSdBear 791: 420
+	LSdBear 792: 427
+	LSdBear 793: 365
+	LSdBear 794: 338
+	LSdBear 795: 0
+	LSdBear 796: 412
+	LSdBear 797: 354
+	LSdBear 798: 352
+	LSdBear 799: 37
+	LSdBear 800: 37
+	LSdBear 801: 0
+	LSdBear 802: 0
+	LSdBear 803: 11
+	LSdBear 804: 6
+	LSdBear 805: 0
+	LSdBear 806: 0
+	LSdBear 807: 272
+	LSdBear 808: 158
+	LSdBear 809: 0
+	LSdBear 810: 0
+	LSdBear 811: 144
+	LSdBear 812: 101
+	LSdBear 813: 3
+	LSdBear 814: 3
+	LSdBear 815: 0
+	LSdBear 816: 0
+	LSdBear 817: 10
+	LSdBear 818: 10
+	LSdBear 819: 0
+	LSdBear 820: 0
+	LSdBear 821: 170
+	LSdBear 822: 112
+	LSdBear 823: 240
+	LSdBear 824: 151
+	LSdBear 825: 240
+	LSdBear 826: 240
+	LSdBear 827: 158
+	LSdBear 828: 158
+	LSdBear 829: 191
+	LSdBear 830: 191
+	LSdBear 831: 191
+	LSdBear 832: 319
+	LSdBear 833: 144
+	LSdBear 834: 144
+	LSdBear 835: 240
+	LSdBear 836: 151
+	LSdBear 837: 240
+	LSdBear 838: 151
+	LSdBear 839: 387
+	LSdBear 840: 469
+	LSdBear 841: 455
+	LSdBear 842: 424
+	LSdBear 843: 458
+	LSdBear 844: 0
+	LSdBear 845: 29
+	LSdBear 846: 43
+	LSdBear 847: 43
+	LSdBear 848: 0
+	LSdBear 849: 29
+	LSdBear 850: 43
+	LSdBear 851: 43
+	LSdBear 852: 43
+	LSdBear 853: 43
+	LSdBear 854: 0
+	LSdBear 855: 29
+	LSdBear 856: 0
+	LSdBear 857: 0
+	LSdBear 858: 0
+	LSdBear 859: 0
+	LSdBear 860: 0
+	LSdBear 861: 0
+	LSdBear 862: 0
+	LSdBear 863: 0
+	LSdBear 864: 0
+	LSdBear 865: 0
+	LSdBear 866: 0
+	LSdBear 867: 0
+	LSdBear 868: 0
+	LSdBear 869: 0
+	LSdBear 870: 0
+	LSdBear 871: 0
+	LSdBear 872: 0
+	LSdBear 873: 0
+	LSdBear 874: 0
+	LSdBear 875: 0
+	LSdBear 876: 0
+	LSdBear 877: 0
+	LSdBear 878: 0
+	LSdBear 879: 0
+	LSdBear 880: 0
+	LSdBear 881: 0
+	LSdBear 882: 0
+	LSdBear 883: 0
+	LSdBear 884: 0
+	LSdBear 885: 0
+	LSdBear 886: 0
+	LSdBear 887: 0
+	LSdBear 888: 0
+	LSdBear 889: 0
+	LSdBear 890: 412
+	LSdBear 891: 412
+	LSdBear 892: 605
+	LSdBear 893: 301
+	LSdBear 894: 0
+	LSdBear 895: 20
+	LSdBear 896: 513
+	LSdBear 897: 266
+	LSdBear 898: 203
+	LSdBear 899: 407
+	LSdBear 900: 407
+	LSdBear 901: 196
+	LSdBear 902: 192
+	LSdBear 903: 444
+	LSdBear 904: 504
+	LSdBear 905: 170
+	LSdBear 906: 112
+	LSdBear 907: 0
+	LSdBear 908: 0
+	LSdBear 909: 512
+	LSdBear 910: 504
+	LSdBear 911: 37
+	LSdBear 912: 37
+	LSdBear 913: 0
+	LSdBear 914: 0
+	LSdBear 915: 456
+	LSdBear 916: 388
+	LSdBear 917: 37
+	LSdBear 918: 37
+	LSdBear 919: 0
+	LSdBear 920: 0
+	LSdBear 921: 37
+	LSdBear 922: 37
+	LSdBear 923: 0
+	LSdBear 924: 0
+	LSdBear 925: 272
+	LSdBear 926: 158
+	LSdBear 927: 0
+	LSdBear 928: 0
+	LSdBear 929: 272
+	LSdBear 930: 158
+	LSdBear 931: 0
+	LSdBear 932: 0
+	LSdBear 933: 272
+	LSdBear 934: 158
+	LSdBear 935: 0
+	LSdBear 936: 0
+	LSdBear 937: 414
+	LSdBear 938: 337
+	LSdBear 939: 414
+	LSdBear 940: 337
+	LSdBear 941: 144
+	LSdBear 942: 101
+	LSdBear 943: 144
+	LSdBear 944: 101
+	LSdBear 945: 6
+	LSdBear 946: 6
+	LSdBear 947: 0
+	LSdBear 948: 0
+	LSdBear 949: 6
+	LSdBear 950: 6
+	LSdBear 951: 0
+	LSdBear 952: 0
+	LSdBear 953: 0
+	LSdBear 954: 0
+	LSdBear 955: 0
+	LSdBear 956: 0
+	LSdBear 957: 0
+	LSdBear 958: 0
+	LSdBear 959: 0
+	LSdBear 960: 0
+	LSdBear 961: 12
+	LSdBear 962: 10
+	LSdBear 963: 0
+	LSdBear 964: 0
+	LSdBear 965: 12
+	LSdBear 966: 10
+	LSdBear 967: 0
+	LSdBear 968: 0
+	LSdBear 969: 282
+	LSdBear 970: 284
+	LSdBear 971: 0
+	LSdBear 972: 0
+	LSdBear 973: 282
+	LSdBear 974: 284
+	LSdBear 975: 0
+	LSdBear 976: 0
+	LSdBear 977: 11
+	LSdBear 978: 6
+	LSdBear 979: 0
+	LSdBear 980: 0
+	LSdBear 981: 166
+	LSdBear 982: 214
+	LSdBear 983: 0
+	LSdBear 984: 0
+	LSdBear 985: 180
+	LSdBear 986: 56
+	LSdBear 987: 0
+	LSdBear 988: 0
+	LSdBear 989: 264
+	LSdBear 990: 113
+	LSdBear 991: 0
+	LSdBear 992: 0
+	LSdBear 993: 434
+	LSdBear 994: 434
+	LSdBear 995: 0
+	LSdBear 996: 0
+	LSdBear 997: 254
+	LSdBear 998: 142
+	LSdBear 999: 0
+	LSdBear 1000: 0
+	LSdBear 1001: 499
+	LSdBear 1002: 388
+	LSdBear 1003: 0
+	LSdBear 1004: 0
+	LSdBear 1005: 196
+	LSdBear 1006: 192
+	LSdBear 1007: 170
+	LSdBear 1008: 112
+	LSdBear 1009: 170
+	LSdBear 1010: 118
+	LSdBear 1011: 0
+	LSdBear 1012: 0
+	LSdBear 1013: 103
+	LSdBear 1014: 153
+	LSdBear 1015: 130
+	LSdBear 1016: 161
+	LSdBear 1017: 156
+	LSdBear 1018: 215
+	LSdBear 1019: 156
+	LSdBear 1020: 215
+	LSdBear 1021: 537
+	LSdBear 1022: 465
+	LSdBear 1023: 476
+	LSdBear 1024: 476
+	LSdBear 1025: 97
+	LSdBear 1026: 76
+	LSdBear 1027: 412
+	LSdBear 1028: 475
+	LSdBear 1029: 458
+	LSdBear 1030: 269
+	LSdBear 1031: 586
+	LSdBear 1032: 419
+	LSdBear 1033: 407
+	LSdBear 1034: 93
+	LSdBear 1035: 32
+	LSdBear 1036: 5
+	LSdBear 1037: 455
+	LSdBear 1038: 458
+	LSdBear 1039: 458
+	LSdBear 1040: 469
+	LSdBear 1041: 424
+	LSdBear 1042: 387
+	LSdBear 1043: 475
+	LSdBear 1044: 434
+	LSdBear 1045: 434
+	LSdBear 1046: 156
+	LSdBear 1047: 156
+	LSdBear 1048: 490
+	LSdBear 1049: 501
+	LSdBear 1050: 501
+	LSdBear 1051: 117
+	LSdBear 1052: 107
+	LSdBear 1053: 437
+	LSdBear 1054: 500
+	LSdBear 1055: 483
+	LSdBear 1056: 294
+	LSdBear 1057: 611
+	LSdBear 1058: 444
+	LSdBear 1059: 432
+	LSdBear 1060: 127
+	LSdBear 1061: 65
+	LSdBear 1062: 38
+	LSdBear 1063: 480
+	LSdBear 1064: 483
+	LSdBear 1065: 483
+	LSdBear 1066: 494
+	LSdBear 1067: 449
+	LSdBear 1068: 412
+	LSdBear 1069: 455
+	LSdBear 1070: 414
+	LSdBear 1071: 414
+	LSdBear 1072: 215
+	LSdBear 1073: 215
+	LSdBear 1074: 195
+	LSdBear 1075: 206
+	LSdBear 1076: 205
+	LSdBear 1077: 362
+	LSdBear 1078: 372
+	LSdBear 1079: 142
+	LSdBear 1080: 205
+	LSdBear 1081: 188
+	LSdBear 1082: 0
+	LSdBear 1083: 316
+	LSdBear 1084: 149
+	LSdBear 1085: 137
+	LSdBear 1086: 383
+	LSdBear 1087: 273
+	LSdBear 1088: 238
+	LSdBear 1089: 185
+	LSdBear 1090: 188
+	LSdBear 1091: 188
+	LSdBear 1092: 199
+	LSdBear 1093: 154
+	LSdBear 1094: 117
+	LSdBear 1095: 390
+	LSdBear 1096: 349
+	LSdBear 1097: 349
+	LSdBear 1098: 446
+	LSdBear 1099: 446
+	LSdBear 1100: 444
+	LSdBear 1101: 410
+	LSdBear 1102: 479
+	LSdBear 1103: 0
+	LSdBear 1104: 37
+	LSdBear 1105: 37
+	LSdBear 1106: 0
+	LSdBear 1107: 0
+	LSdBear 1108: 11
+	LSdBear 1109: 6
+	LSdBear 1110: 0
+	LSdBear 1111: 0
+	LSdBear 1112: 240
+	LSdBear 1113: 151
+	LSdBear 1114: 158
+	LSdBear 1115: 0
+	LSdBear 1116: 29
+	LSdBear 1117: 43
+	LSdBear 1118: 0
+	LSdBear 1119: 0
+	LSdBear 1120: 327
+	LSdBear 1121: 327
+	LSdBear 1122: 344
+	LSdBear 1123: 243
+	LSdBear 1124: 218
+	LSdBear 1125: 504
+	LSdBear 1126: 504
+	LSdBear 1127: 206
+	LSdBear 1128: 0
+	LSdBear 1129: 104
+	LSdBear 1130: 145
+	LSdBear 1131: 83
+	LSdBear 1132: 91
+	LSdBear 1133: 449
+	LSdBear 1134: 409
+	LSdBear 1135: 408
+	LSdBear 1136: 452
+	LSdBear 1137: 459
+	LSdBear 1138: 448
+	LSdBear 1139: 443
+	LSdBear 1140: 453
+	LSdBear 1141: 427
+	LSdBear 1142: 441
+	LSdBear 1143: 299
+	LSdBear 1144: 292
+	LSdBear 1145: 280
+	LSdBear 1146: 350
+	LSdBear 1147: 324
+	LSdBear 1148: 893
+	LSdBear 1149: 200
+	LSdBear 1150: 0
+	LSdBear 1151: 0
+	LSdBear 1152: 415
+	LSdBear 1153: 445
+	LSdBear 1154: 421
+	LSdBear 1155: 451
+	LSdBear 1156: 439
+	LSdBear 1157: 439
+	LSdBear 1158: 299
+	LSdBear 1159: 299
+	LSdBear 1160: 299
+	LSdBear 1161: 296
+	LSdBear 1162: 296
+	LSdBear 1163: 296
+	LSdBear 1164: 511
+	LSdBear 1165: 511
+	LSdBear 1166: 511
+	LSdBear 1167: 511
+	LSdBear 1168: 511
+	LSdBear 1169: 452
+	LSdBear 1170: 424
+	LSdBear 1171: 296
+	LSdBear 1172: 511
+	LSdBear 1173: 511
+	LSdBear 1174: 511
+	LSdBear 1175: 511
+	LSdBear 1176: 511
+	LSdBear 1177: 511
+	LSdBear 1178: 511
+	LSdBear 1179: 511
+	LSdBear 1180: 511
+	LSdBear 1181: 511
+	LSdBear 1182: 322
+	LSdBear 1183: 299
+	LSdBear 1184: 322
+	LSdBear 1185: 299
+	LSdBear 1186: 17
+	LSdBear 1187: 144
+	LSdBear 1188: 17
+	LSdBear 1189: 144
+	LSdBear 1190: 17
+	LSdBear 1191: 144
+	LSdBear 1192: 17
+	LSdBear 1193: 144
+	LSdBear 1194: 17
+	LSdBear 1195: 144
+	LSdBear 1196: 17
+	LSdBear 1197: 144
+	LSdBear 1198: 17
+	LSdBear 1199: 144
+	LSdBear 1200: 17
+	LSdBear 1201: 144
+	LSdBear 1202: 17
+	LSdBear 1203: 144
+	LSdBear 1204: 17
+	LSdBear 1205: 144
+	LSdBear 1206: 17
+	LSdBear 1207: 144
+	LSdBear 1208: 17
+	LSdBear 1209: 144
+	LSdBear 1210: 88
+	LSdBear 1211: 128
+	LSdBear 1212: 88
+	LSdBear 1213: 128
+	LSdBear 1214: 88
+	LSdBear 1215: 128
+	LSdBear 1216: 88
+	LSdBear 1217: 128
+	LSdBear 1218: 88
+	LSdBear 1219: 128
+	LSdBear 1220: 88
+	LSdBear 1221: 128
+	LSdBear 1222: 88
+	LSdBear 1223: 128
+	LSdBear 1224: 88
+	LSdBear 1225: 128
+	LSdBear 1226: 229
+	LSdBear 1227: 186
+	LSdBear 1228: 229
+	LSdBear 1229: 189
+	LSdBear 1230: 104
+	LSdBear 1231: 145
+	LSdBear 1232: 104
+	LSdBear 1233: 145
+	LSdBear 1234: 104
+	LSdBear 1235: 145
+	LSdBear 1236: 104
+	LSdBear 1237: 145
+	LSdBear 1238: 104
+	LSdBear 1239: 145
+	LSdBear 1240: 104
+	LSdBear 1241: 145
+	LSdBear 1242: 104
+	LSdBear 1243: 145
+	LSdBear 1244: 104
+	LSdBear 1245: 145
+	LSdBear 1246: 104
+	LSdBear 1247: 145
+	LSdBear 1248: 104
+	LSdBear 1249: 145
+	LSdBear 1250: 104
+	LSdBear 1251: 145
+	LSdBear 1252: 104
+	LSdBear 1253: 145
+	LSdBear 1254: 83
+	LSdBear 1255: 91
+	LSdBear 1256: 83
+	LSdBear 1257: 91
+	LSdBear 1258: 83
+	LSdBear 1259: 91
+	LSdBear 1260: 83
+	LSdBear 1261: 91
+	LSdBear 1262: 83
+	LSdBear 1263: 91
+	LSdBear 1264: 83
+	LSdBear 1265: 91
+	LSdBear 1266: 83
+	LSdBear 1267: 91
+	LSdBear 1268: 99
+	LSdBear 1269: 149
+	LSdBear 1270: 99
+	LSdBear 1271: 149
+	LSdBear 1272: 99
+	LSdBear 1273: 149
+	LSdBear 1274: 17
+	LSdBear 1275: 144
+	LSdBear 1276: 229
+	LSdBear 1277: 186
+	LSdBear 1278: 104
+	LSdBear 1279: 145
+	LSdBear 1280: 83
+	LSdBear 1281: 91
+	LSdBear 1282: 83
+	LSdBear 1283: 91
+	LSdBear 1284: 83
+	LSdBear 1285: 91
+	LSdBear 1286: 83
+	LSdBear 1287: 91
+	LSdBear 1288: 83
+	LSdBear 1289: 91
+	LSdBear 1290: 303
+	LSdBear 1291: 276
+	LSdBear 1292: 245
+	LSdBear 1293: 276
+	LSdBear 1294: 127
+	LSdBear 1295: 152
+	LSdBear 1296: -5
+	LSdBear 1297: 20
+	LSdBear 1298: 119
+	LSdBear 1299: 120
+	LSdBear 1300: 119
+	LSdBear 1301: 120
+	LSdBear 1302: 107
+	LSdBear 1303: 107
+	LSdBear 1304: 98
+	LSdBear 1305: 149
+	LSdBear 1306: 98
+	LSdBear 1307: 149
+	LSdBear 1308: 80
+	LSdBear 1309: 101
+	LSdBear 1310: 41
+	LSdBear 1311: 70
+	LSdBear 1312: 107
+	LSdBear 1313: 108
+	LSdBear 1314: 66
+	LSdBear 1315: 128
+	LSdBear 1316: 104
+	LSdBear 1317: 145
+
+'VDMX' Table - Precomputed Vertical Device Metrics
+--------------------------------------------------
+  Version:                 0
+  Number of Hgt Records:   3
+  Number of Ratio Records: 3
+
+    Ratio Record #1
+	CharSetId     1
+	xRatio        1
+	yStartRatio   1
+	yEndRatio     1
+	Record Offset 24 (group #1)
+
+
+    Ratio Record #2
+	CharSetId     1
+	xRatio        5
+	yStartRatio   3
+	yEndRatio     3
+	Record Offset 1516 (group #2)
+
+
+    Ratio Record #3
+	CharSetId     1
+	xRatio        2
+	yStartRatio   1
+	yEndRatio     1
+	Record Offset 3008 (group #3)
+
+   VDMX Height Record Groups
+   -------------------------
+   1.	Number of Hgt Records  248
+	Starting Y Pel Height  8
+	Ending Y Pel Height    255
+
+	     1. Pel Height= 8
+	        yMax=       6
+	        yMin=       -2
+
+	     2. Pel Height= 9
+	        yMax=       9
+	        yMin=       -3
+
+	     3. Pel Height= 10
+	        yMax=       9
+	        yMin=       -3
+
+	     4. Pel Height= 11
+	        yMax=       11
+	        yMin=       -3
+
+	     5. Pel Height= 12
+	        yMax=       12
+	        yMin=       -3
+
+	     6. Pel Height= 13
+	        yMax=       12
+	        yMin=       -4
+
+	     7. Pel Height= 14
+	        yMax=       13
+	        yMin=       -4
+
+	     8. Pel Height= 15
+	        yMax=       13
+	        yMin=       -4
+
+	     9. Pel Height= 16
+	        yMax=       14
+	        yMin=       -4
+
+	    10. Pel Height= 17
+	        yMax=       15
+	        yMin=       -5
+
+	    11. Pel Height= 18
+	        yMax=       15
+	        yMin=       -5
+
+	    12. Pel Height= 19
+	        yMax=       16
+	        yMin=       -5
+
+	    13. Pel Height= 20
+	        yMax=       17
+	        yMin=       -5
+
+	    14. Pel Height= 21
+	        yMax=       17
+	        yMin=       -6
+
+	    15. Pel Height= 22
+	        yMax=       18
+	        yMin=       -6
+
+	    16. Pel Height= 23
+	        yMax=       19
+	        yMin=       -6
+
+	    17. Pel Height= 24
+	        yMax=       20
+	        yMin=       -7
+
+	    18. Pel Height= 25
+	        yMax=       22
+	        yMin=       -7
+
+	    19. Pel Height= 26
+	        yMax=       22
+	        yMin=       -7
+
+	    20. Pel Height= 27
+	        yMax=       23
+	        yMin=       -7
+
+	    21. Pel Height= 28
+	        yMax=       23
+	        yMin=       -8
+
+	    22. Pel Height= 29
+	        yMax=       24
+	        yMin=       -8
+
+	    23. Pel Height= 30
+	        yMax=       25
+	        yMin=       -8
+
+	    24. Pel Height= 31
+	        yMax=       25
+	        yMin=       -8
+
+	    25. Pel Height= 32
+	        yMax=       27
+	        yMin=       -9
+
+	    26. Pel Height= 33
+	        yMax=       27
+	        yMin=       -9
+
+	    27. Pel Height= 34
+	        yMax=       28
+	        yMin=       -9
+
+	    28. Pel Height= 35
+	        yMax=       29
+	        yMin=       -10
+
+	    29. Pel Height= 36
+	        yMax=       29
+	        yMin=       -10
+
+	    30. Pel Height= 37
+	        yMax=       29
+	        yMin=       -10
+
+	    31. Pel Height= 38
+	        yMax=       30
+	        yMin=       -10
+
+	    32. Pel Height= 39
+	        yMax=       31
+	        yMin=       -11
+
+	    33. Pel Height= 40
+	        yMax=       31
+	        yMin=       -11
+
+	    34. Pel Height= 41
+	        yMax=       33
+	        yMin=       -11
+
+	    35. Pel Height= 42
+	        yMax=       33
+	        yMin=       -12
+
+	    36. Pel Height= 43
+	        yMax=       34
+	        yMin=       -12
+
+	    37. Pel Height= 44
+	        yMax=       35
+	        yMin=       -12
+
+	    38. Pel Height= 45
+	        yMax=       35
+	        yMin=       -12
+
+	    39. Pel Height= 46
+	        yMax=       36
+	        yMin=       -13
+
+	    40. Pel Height= 47
+	        yMax=       37
+	        yMin=       -13
+
+	    41. Pel Height= 48
+	        yMax=       37
+	        yMin=       -13
+
+	    42. Pel Height= 49
+	        yMax=       38
+	        yMin=       -13
+
+	    43. Pel Height= 50
+	        yMax=       39
+	        yMin=       -14
+
+	    44. Pel Height= 51
+	        yMax=       42
+	        yMin=       -14
+
+	    45. Pel Height= 52
+	        yMax=       43
+	        yMin=       -14
+
+	    46. Pel Height= 53
+	        yMax=       43
+	        yMin=       -15
+
+	    47. Pel Height= 54
+	        yMax=       44
+	        yMin=       -15
+
+	    48. Pel Height= 55
+	        yMax=       45
+	        yMin=       -15
+
+	    49. Pel Height= 56
+	        yMax=       45
+	        yMin=       -15
+
+	    50. Pel Height= 57
+	        yMax=       46
+	        yMin=       -16
+
+	    51. Pel Height= 58
+	        yMax=       46
+	        yMin=       -16
+
+	    52. Pel Height= 59
+	        yMax=       47
+	        yMin=       -16
+
+	    53. Pel Height= 60
+	        yMax=       49
+	        yMin=       -16
+
+	    54. Pel Height= 61
+	        yMax=       49
+	        yMin=       -17
+
+	    55. Pel Height= 62
+	        yMax=       50
+	        yMin=       -17
+
+	    56. Pel Height= 63
+	        yMax=       51
+	        yMin=       -17
+
+	    57. Pel Height= 64
+	        yMax=       51
+	        yMin=       -18
+
+	    58. Pel Height= 65
+	        yMax=       52
+	        yMin=       -18
+
+	    59. Pel Height= 66
+	        yMax=       53
+	        yMin=       -18
+
+	    60. Pel Height= 67
+	        yMax=       53
+	        yMin=       -18
+
+	    61. Pel Height= 68
+	        yMax=       54
+	        yMin=       -19
+
+	    62. Pel Height= 69
+	        yMax=       55
+	        yMin=       -19
+
+	    63. Pel Height= 70
+	        yMax=       56
+	        yMin=       -19
+
+	    64. Pel Height= 71
+	        yMax=       57
+	        yMin=       -19
+
+	    65. Pel Height= 72
+	        yMax=       57
+	        yMin=       -20
+
+	    66. Pel Height= 73
+	        yMax=       58
+	        yMin=       -20
+
+	    67. Pel Height= 74
+	        yMax=       59
+	        yMin=       -20
+
+	    68. Pel Height= 75
+	        yMax=       59
+	        yMin=       -21
+
+	    69. Pel Height= 76
+	        yMax=       60
+	        yMin=       -21
+
+	    70. Pel Height= 77
+	        yMax=       60
+	        yMin=       -21
+
+	    71. Pel Height= 78
+	        yMax=       62
+	        yMin=       -21
+
+	    72. Pel Height= 79
+	        yMax=       63
+	        yMin=       -22
+
+	    73. Pel Height= 80
+	        yMax=       63
+	        yMin=       -22
+
+	    74. Pel Height= 81
+	        yMax=       64
+	        yMin=       -22
+
+	    75. Pel Height= 82
+	        yMax=       65
+	        yMin=       -22
+
+	    76. Pel Height= 83
+	        yMax=       65
+	        yMin=       -23
+
+	    77. Pel Height= 84
+	        yMax=       66
+	        yMin=       -23
+
+	    78. Pel Height= 85
+	        yMax=       66
+	        yMin=       -23
+
+	    79. Pel Height= 86
+	        yMax=       69
+	        yMin=       -24
+
+	    80. Pel Height= 87
+	        yMax=       71
+	        yMin=       -24
+
+	    81. Pel Height= 88
+	        yMax=       71
+	        yMin=       -24
+
+	    82. Pel Height= 89
+	        yMax=       72
+	        yMin=       -24
+
+	    83. Pel Height= 90
+	        yMax=       73
+	        yMin=       -25
+
+	    84. Pel Height= 91
+	        yMax=       73
+	        yMin=       -25
+
+	    85. Pel Height= 92
+	        yMax=       74
+	        yMin=       -25
+
+	    86. Pel Height= 93
+	        yMax=       74
+	        yMin=       -25
+
+	    87. Pel Height= 94
+	        yMax=       75
+	        yMin=       -26
+
+	    88. Pel Height= 95
+	        yMax=       76
+	        yMin=       -26
+
+	    89. Pel Height= 96
+	        yMax=       77
+	        yMin=       -26
+
+	    90. Pel Height= 97
+	        yMax=       78
+	        yMin=       -27
+
+	    91. Pel Height= 98
+	        yMax=       79
+	        yMin=       -27
+
+	    92. Pel Height= 99
+	        yMax=       79
+	        yMin=       -27
+
+	    93. Pel Height= 100
+	        yMax=       80
+	        yMin=       -27
+
+	    94. Pel Height= 101
+	        yMax=       81
+	        yMin=       -28
+
+	    95. Pel Height= 102
+	        yMax=       81
+	        yMin=       -28
+
+	    96. Pel Height= 103
+	        yMax=       82
+	        yMin=       -28
+
+	    97. Pel Height= 104
+	        yMax=       82
+	        yMin=       -28
+
+	    98. Pel Height= 105
+	        yMax=       84
+	        yMin=       -29
+
+	    99. Pel Height= 106
+	        yMax=       85
+	        yMin=       -29
+
+	   100. Pel Height= 107
+	        yMax=       85
+	        yMin=       -29
+
+	   101. Pel Height= 108
+	        yMax=       86
+	        yMin=       -30
+
+	   102. Pel Height= 109
+	        yMax=       87
+	        yMin=       -30
+
+	   103. Pel Height= 110
+	        yMax=       87
+	        yMin=       -30
+
+	   104. Pel Height= 111
+	        yMax=       88
+	        yMin=       -30
+
+	   105. Pel Height= 112
+	        yMax=       88
+	        yMin=       -31
+
+	   106. Pel Height= 113
+	        yMax=       89
+	        yMin=       -31
+
+	   107. Pel Height= 114
+	        yMax=       91
+	        yMin=       -31
+
+	   108. Pel Height= 115
+	        yMax=       91
+	        yMin=       -32
+
+	   109. Pel Height= 116
+	        yMax=       92
+	        yMin=       -32
+
+	   110. Pel Height= 117
+	        yMax=       93
+	        yMin=       -32
+
+	   111. Pel Height= 118
+	        yMax=       93
+	        yMin=       -32
+
+	   112. Pel Height= 119
+	        yMax=       94
+	        yMin=       -33
+
+	   113. Pel Height= 120
+	        yMax=       96
+	        yMin=       -33
+
+	   114. Pel Height= 121
+	        yMax=       97
+	        yMin=       -33
+
+	   115. Pel Height= 122
+	        yMax=       98
+	        yMin=       -33
+
+	   116. Pel Height= 123
+	        yMax=       99
+	        yMin=       -34
+
+	   117. Pel Height= 124
+	        yMax=       100
+	        yMin=       -34
+
+	   118. Pel Height= 125
+	        yMax=       101
+	        yMin=       -34
+
+	   119. Pel Height= 126
+	        yMax=       101
+	        yMin=       -35
+
+	   120. Pel Height= 127
+	        yMax=       102
+	        yMin=       -35
+
+	   121. Pel Height= 128
+	        yMax=       103
+	        yMin=       -35
+
+	   122. Pel Height= 129
+	        yMax=       103
+	        yMin=       -35
+
+	   123. Pel Height= 130
+	        yMax=       104
+	        yMin=       -36
+
+	   124. Pel Height= 131
+	        yMax=       104
+	        yMin=       -36
+
+	   125. Pel Height= 132
+	        yMax=       106
+	        yMin=       -36
+
+	   126. Pel Height= 133
+	        yMax=       107
+	        yMin=       -36
+
+	   127. Pel Height= 134
+	        yMax=       107
+	        yMin=       -37
+
+	   128. Pel Height= 135
+	        yMax=       108
+	        yMin=       -37
+
+	   129. Pel Height= 136
+	        yMax=       109
+	        yMin=       -37
+
+	   130. Pel Height= 137
+	        yMax=       109
+	        yMin=       -38
+
+	   131. Pel Height= 138
+	        yMax=       110
+	        yMin=       -38
+
+	   132. Pel Height= 139
+	        yMax=       110
+	        yMin=       -38
+
+	   133. Pel Height= 140
+	        yMax=       111
+	        yMin=       -38
+
+	   134. Pel Height= 141
+	        yMax=       112
+	        yMin=       -39
+
+	   135. Pel Height= 142
+	        yMax=       113
+	        yMin=       -39
+
+	   136. Pel Height= 143
+	        yMax=       114
+	        yMin=       -39
+
+	   137. Pel Height= 144
+	        yMax=       115
+	        yMin=       -39
+
+	   138. Pel Height= 145
+	        yMax=       115
+	        yMin=       -40
+
+	   139. Pel Height= 146
+	        yMax=       116
+	        yMin=       -40
+
+	   140. Pel Height= 147
+	        yMax=       116
+	        yMin=       -40
+
+	   141. Pel Height= 148
+	        yMax=       117
+	        yMin=       -41
+
+	   142. Pel Height= 149
+	        yMax=       118
+	        yMin=       -41
+
+	   143. Pel Height= 150
+	        yMax=       118
+	        yMin=       -41
+
+	   144. Pel Height= 151
+	        yMax=       120
+	        yMin=       -41
+
+	   145. Pel Height= 152
+	        yMax=       121
+	        yMin=       -42
+
+	   146. Pel Height= 153
+	        yMax=       121
+	        yMin=       -42
+
+	   147. Pel Height= 154
+	        yMax=       124
+	        yMin=       -42
+
+	   148. Pel Height= 155
+	        yMax=       124
+	        yMin=       -42
+
+	   149. Pel Height= 156
+	        yMax=       125
+	        yMin=       -43
+
+	   150. Pel Height= 157
+	        yMax=       126
+	        yMin=       -43
+
+	   151. Pel Height= 158
+	        yMax=       126
+	        yMin=       -43
+
+	   152. Pel Height= 159
+	        yMax=       127
+	        yMin=       -44
+
+	   153. Pel Height= 160
+	        yMax=       129
+	        yMin=       -44
+
+	   154. Pel Height= 161
+	        yMax=       129
+	        yMin=       -44
+
+	   155. Pel Height= 162
+	        yMax=       130
+	        yMin=       -44
+
+	   156. Pel Height= 163
+	        yMax=       131
+	        yMin=       -45
+
+	   157. Pel Height= 164
+	        yMax=       131
+	        yMin=       -45
+
+	   158. Pel Height= 165
+	        yMax=       132
+	        yMin=       -45
+
+	   159. Pel Height= 166
+	        yMax=       132
+	        yMin=       -45
+
+	   160. Pel Height= 167
+	        yMax=       133
+	        yMin=       -46
+
+	   161. Pel Height= 168
+	        yMax=       134
+	        yMin=       -46
+
+	   162. Pel Height= 169
+	        yMax=       135
+	        yMin=       -46
+
+	   163. Pel Height= 170
+	        yMax=       136
+	        yMin=       -47
+
+	   164. Pel Height= 171
+	        yMax=       137
+	        yMin=       -47
+
+	   165. Pel Height= 172
+	        yMax=       137
+	        yMin=       -47
+
+	   166. Pel Height= 173
+	        yMax=       138
+	        yMin=       -47
+
+	   167. Pel Height= 174
+	        yMax=       138
+	        yMin=       -48
+
+	   168. Pel Height= 175
+	        yMax=       139
+	        yMin=       -48
+
+	   169. Pel Height= 176
+	        yMax=       140
+	        yMin=       -48
+
+	   170. Pel Height= 177
+	        yMax=       140
+	        yMin=       -48
+
+	   171. Pel Height= 178
+	        yMax=       142
+	        yMin=       -49
+
+	   172. Pel Height= 179
+	        yMax=       143
+	        yMin=       -49
+
+	   173. Pel Height= 180
+	        yMax=       143
+	        yMin=       -49
+
+	   174. Pel Height= 181
+	        yMax=       144
+	        yMin=       -50
+
+	   175. Pel Height= 182
+	        yMax=       144
+	        yMin=       -50
+
+	   176. Pel Height= 183
+	        yMax=       145
+	        yMin=       -50
+
+	   177. Pel Height= 184
+	        yMax=       146
+	        yMin=       -50
+
+	   178. Pel Height= 185
+	        yMax=       146
+	        yMin=       -51
+
+	   179. Pel Height= 186
+	        yMax=       147
+	        yMin=       -51
+
+	   180. Pel Height= 187
+	        yMax=       149
+	        yMin=       -51
+
+	   181. Pel Height= 188
+	        yMax=       151
+	        yMin=       -52
+
+	   182. Pel Height= 189
+	        yMax=       152
+	        yMin=       -52
+
+	   183. Pel Height= 190
+	        yMax=       153
+	        yMin=       -52
+
+	   184. Pel Height= 191
+	        yMax=       153
+	        yMin=       -52
+
+	   185. Pel Height= 192
+	        yMax=       154
+	        yMin=       -53
+
+	   186. Pel Height= 193
+	        yMax=       154
+	        yMin=       -53
+
+	   187. Pel Height= 194
+	        yMax=       155
+	        yMin=       -53
+
+	   188. Pel Height= 195
+	        yMax=       156
+	        yMin=       -53
+
+	   189. Pel Height= 196
+	        yMax=       157
+	        yMin=       -54
+
+	   190. Pel Height= 197
+	        yMax=       158
+	        yMin=       -54
+
+	   191. Pel Height= 198
+	        yMax=       159
+	        yMin=       -54
+
+	   192. Pel Height= 199
+	        yMax=       159
+	        yMin=       -55
+
+	   193. Pel Height= 200
+	        yMax=       160
+	        yMin=       -55
+
+	   194. Pel Height= 201
+	        yMax=       160
+	        yMin=       -55
+
+	   195. Pel Height= 202
+	        yMax=       161
+	        yMin=       -55
+
+	   196. Pel Height= 203
+	        yMax=       162
+	        yMin=       -56
+
+	   197. Pel Height= 204
+	        yMax=       162
+	        yMin=       -56
+
+	   198. Pel Height= 205
+	        yMax=       164
+	        yMin=       -56
+
+	   199. Pel Height= 206
+	        yMax=       165
+	        yMin=       -56
+
+	   200. Pel Height= 207
+	        yMax=       165
+	        yMin=       -57
+
+	   201. Pel Height= 208
+	        yMax=       166
+	        yMin=       -57
+
+	   202. Pel Height= 209
+	        yMax=       166
+	        yMin=       -57
+
+	   203. Pel Height= 210
+	        yMax=       167
+	        yMin=       -58
+
+	   204. Pel Height= 211
+	        yMax=       168
+	        yMin=       -58
+
+	   205. Pel Height= 212
+	        yMax=       168
+	        yMin=       -58
+
+	   206. Pel Height= 213
+	        yMax=       169
+	        yMin=       -58
+
+	   207. Pel Height= 214
+	        yMax=       171
+	        yMin=       -59
+
+	   208. Pel Height= 215
+	        yMax=       171
+	        yMin=       -59
+
+	   209. Pel Height= 216
+	        yMax=       172
+	        yMin=       -59
+
+	   210. Pel Height= 217
+	        yMax=       172
+	        yMin=       -59
+
+	   211. Pel Height= 218
+	        yMax=       173
+	        yMin=       -60
+
+	   212. Pel Height= 219
+	        yMax=       174
+	        yMin=       -60
+
+	   213. Pel Height= 220
+	        yMax=       174
+	        yMin=       -60
+
+	   214. Pel Height= 221
+	        yMax=       175
+	        yMin=       -61
+
+	   215. Pel Height= 222
+	        yMax=       178
+	        yMin=       -61
+
+	   216. Pel Height= 223
+	        yMax=       179
+	        yMin=       -61
+
+	   217. Pel Height= 224
+	        yMax=       180
+	        yMin=       -61
+
+	   218. Pel Height= 225
+	        yMax=       181
+	        yMin=       -62
+
+	   219. Pel Height= 226
+	        yMax=       181
+	        yMin=       -62
+
+	   220. Pel Height= 227
+	        yMax=       182
+	        yMin=       -62
+
+	   221. Pel Height= 228
+	        yMax=       182
+	        yMin=       -62
+
+	   222. Pel Height= 229
+	        yMax=       183
+	        yMin=       -63
+
+	   223. Pel Height= 230
+	        yMax=       184
+	        yMin=       -63
+
+	   224. Pel Height= 231
+	        yMax=       184
+	        yMin=       -63
+
+	   225. Pel Height= 232
+	        yMax=       185
+	        yMin=       -64
+
+	   226. Pel Height= 233
+	        yMax=       187
+	        yMin=       -64
+
+	   227. Pel Height= 234
+	        yMax=       187
+	        yMin=       -64
+
+	   228. Pel Height= 235
+	        yMax=       188
+	        yMin=       -64
+
+	   229. Pel Height= 236
+	        yMax=       188
+	        yMin=       -65
+
+	   230. Pel Height= 237
+	        yMax=       189
+	        yMin=       -65
+
+	   231. Pel Height= 238
+	        yMax=       190
+	        yMin=       -65
+
+	   232. Pel Height= 239
+	        yMax=       190
+	        yMin=       -65
+
+	   233. Pel Height= 240
+	        yMax=       191
+	        yMin=       -66
+
+	   234. Pel Height= 241
+	        yMax=       192
+	        yMin=       -66
+
+	   235. Pel Height= 242
+	        yMax=       193
+	        yMin=       -66
+
+	   236. Pel Height= 243
+	        yMax=       194
+	        yMin=       -67
+
+	   237. Pel Height= 244
+	        yMax=       194
+	        yMin=       -67
+
+	   238. Pel Height= 245
+	        yMax=       195
+	        yMin=       -67
+
+	   239. Pel Height= 246
+	        yMax=       196
+	        yMin=       -67
+
+	   240. Pel Height= 247
+	        yMax=       196
+	        yMin=       -68
+
+	   241. Pel Height= 248
+	        yMax=       197
+	        yMin=       -68
+
+	   242. Pel Height= 249
+	        yMax=       200
+	        yMin=       -68
+
+	   243. Pel Height= 250
+	        yMax=       200
+	        yMin=       -68
+
+	   244. Pel Height= 251
+	        yMax=       201
+	        yMin=       -69
+
+	   245. Pel Height= 252
+	        yMax=       201
+	        yMin=       -69
+
+	   246. Pel Height= 253
+	        yMax=       202
+	        yMin=       -69
+
+	   247. Pel Height= 254
+	        yMax=       203
+	        yMin=       -70
+
+	   248. Pel Height= 255
+	        yMax=       203
+	        yMin=       -70
+
+
+   2.	Number of Hgt Records  248
+	Starting Y Pel Height  8
+	Ending Y Pel Height    255
+
+	     1. Pel Height= 8
+	        yMax=       6
+	        yMin=       -2
+
+	     2. Pel Height= 9
+	        yMax=       10
+	        yMin=       -3
+
+	     3. Pel Height= 10
+	        yMax=       10
+	        yMin=       -3
+
+	     4. Pel Height= 11
+	        yMax=       11
+	        yMin=       -3
+
+	     5. Pel Height= 12
+	        yMax=       12
+	        yMin=       -3
+
+	     6. Pel Height= 13
+	        yMax=       12
+	        yMin=       -4
+
+	     7. Pel Height= 14
+	        yMax=       13
+	        yMin=       -4
+
+	     8. Pel Height= 15
+	        yMax=       13
+	        yMin=       -4
+
+	     9. Pel Height= 16
+	        yMax=       14
+	        yMin=       -4
+
+	    10. Pel Height= 17
+	        yMax=       15
+	        yMin=       -5
+
+	    11. Pel Height= 18
+	        yMax=       15
+	        yMin=       -5
+
+	    12. Pel Height= 19
+	        yMax=       16
+	        yMin=       -5
+
+	    13. Pel Height= 20
+	        yMax=       17
+	        yMin=       -5
+
+	    14. Pel Height= 21
+	        yMax=       17
+	        yMin=       -6
+
+	    15. Pel Height= 22
+	        yMax=       18
+	        yMin=       -6
+
+	    16. Pel Height= 23
+	        yMax=       19
+	        yMin=       -6
+
+	    17. Pel Height= 24
+	        yMax=       20
+	        yMin=       -7
+
+	    18. Pel Height= 25
+	        yMax=       22
+	        yMin=       -7
+
+	    19. Pel Height= 26
+	        yMax=       22
+	        yMin=       -7
+
+	    20. Pel Height= 27
+	        yMax=       23
+	        yMin=       -7
+
+	    21. Pel Height= 28
+	        yMax=       23
+	        yMin=       -8
+
+	    22. Pel Height= 29
+	        yMax=       24
+	        yMin=       -8
+
+	    23. Pel Height= 30
+	        yMax=       25
+	        yMin=       -8
+
+	    24. Pel Height= 31
+	        yMax=       25
+	        yMin=       -8
+
+	    25. Pel Height= 32
+	        yMax=       27
+	        yMin=       -9
+
+	    26. Pel Height= 33
+	        yMax=       27
+	        yMin=       -9
+
+	    27. Pel Height= 34
+	        yMax=       28
+	        yMin=       -9
+
+	    28. Pel Height= 35
+	        yMax=       29
+	        yMin=       -10
+
+	    29. Pel Height= 36
+	        yMax=       29
+	        yMin=       -10
+
+	    30. Pel Height= 37
+	        yMax=       29
+	        yMin=       -10
+
+	    31. Pel Height= 38
+	        yMax=       30
+	        yMin=       -10
+
+	    32. Pel Height= 39
+	        yMax=       31
+	        yMin=       -11
+
+	    33. Pel Height= 40
+	        yMax=       31
+	        yMin=       -11
+
+	    34. Pel Height= 41
+	        yMax=       33
+	        yMin=       -11
+
+	    35. Pel Height= 42
+	        yMax=       33
+	        yMin=       -12
+
+	    36. Pel Height= 43
+	        yMax=       34
+	        yMin=       -12
+
+	    37. Pel Height= 44
+	        yMax=       35
+	        yMin=       -12
+
+	    38. Pel Height= 45
+	        yMax=       35
+	        yMin=       -12
+
+	    39. Pel Height= 46
+	        yMax=       36
+	        yMin=       -13
+
+	    40. Pel Height= 47
+	        yMax=       37
+	        yMin=       -13
+
+	    41. Pel Height= 48
+	        yMax=       37
+	        yMin=       -13
+
+	    42. Pel Height= 49
+	        yMax=       38
+	        yMin=       -13
+
+	    43. Pel Height= 50
+	        yMax=       39
+	        yMin=       -14
+
+	    44. Pel Height= 51
+	        yMax=       40
+	        yMin=       -14
+
+	    45. Pel Height= 52
+	        yMax=       43
+	        yMin=       -14
+
+	    46. Pel Height= 53
+	        yMax=       43
+	        yMin=       -15
+
+	    47. Pel Height= 54
+	        yMax=       44
+	        yMin=       -15
+
+	    48. Pel Height= 55
+	        yMax=       45
+	        yMin=       -15
+
+	    49. Pel Height= 56
+	        yMax=       45
+	        yMin=       -15
+
+	    50. Pel Height= 57
+	        yMax=       46
+	        yMin=       -16
+
+	    51. Pel Height= 58
+	        yMax=       46
+	        yMin=       -16
+
+	    52. Pel Height= 59
+	        yMax=       47
+	        yMin=       -16
+
+	    53. Pel Height= 60
+	        yMax=       49
+	        yMin=       -16
+
+	    54. Pel Height= 61
+	        yMax=       49
+	        yMin=       -17
+
+	    55. Pel Height= 62
+	        yMax=       50
+	        yMin=       -17
+
+	    56. Pel Height= 63
+	        yMax=       51
+	        yMin=       -17
+
+	    57. Pel Height= 64
+	        yMax=       51
+	        yMin=       -18
+
+	    58. Pel Height= 65
+	        yMax=       52
+	        yMin=       -18
+
+	    59. Pel Height= 66
+	        yMax=       53
+	        yMin=       -18
+
+	    60. Pel Height= 67
+	        yMax=       53
+	        yMin=       -18
+
+	    61. Pel Height= 68
+	        yMax=       54
+	        yMin=       -19
+
+	    62. Pel Height= 69
+	        yMax=       55
+	        yMin=       -19
+
+	    63. Pel Height= 70
+	        yMax=       56
+	        yMin=       -19
+
+	    64. Pel Height= 71
+	        yMax=       57
+	        yMin=       -19
+
+	    65. Pel Height= 72
+	        yMax=       57
+	        yMin=       -20
+
+	    66. Pel Height= 73
+	        yMax=       58
+	        yMin=       -20
+
+	    67. Pel Height= 74
+	        yMax=       59
+	        yMin=       -20
+
+	    68. Pel Height= 75
+	        yMax=       59
+	        yMin=       -21
+
+	    69. Pel Height= 76
+	        yMax=       60
+	        yMin=       -21
+
+	    70. Pel Height= 77
+	        yMax=       60
+	        yMin=       -21
+
+	    71. Pel Height= 78
+	        yMax=       62
+	        yMin=       -21
+
+	    72. Pel Height= 79
+	        yMax=       63
+	        yMin=       -22
+
+	    73. Pel Height= 80
+	        yMax=       63
+	        yMin=       -22
+
+	    74. Pel Height= 81
+	        yMax=       64
+	        yMin=       -22
+
+	    75. Pel Height= 82
+	        yMax=       65
+	        yMin=       -22
+
+	    76. Pel Height= 83
+	        yMax=       65
+	        yMin=       -23
+
+	    77. Pel Height= 84
+	        yMax=       66
+	        yMin=       -23
+
+	    78. Pel Height= 85
+	        yMax=       66
+	        yMin=       -23
+
+	    79. Pel Height= 86
+	        yMax=       69
+	        yMin=       -24
+
+	    80. Pel Height= 87
+	        yMax=       71
+	        yMin=       -24
+
+	    81. Pel Height= 88
+	        yMax=       71
+	        yMin=       -24
+
+	    82. Pel Height= 89
+	        yMax=       72
+	        yMin=       -24
+
+	    83. Pel Height= 90
+	        yMax=       73
+	        yMin=       -25
+
+	    84. Pel Height= 91
+	        yMax=       73
+	        yMin=       -25
+
+	    85. Pel Height= 92
+	        yMax=       74
+	        yMin=       -25
+
+	    86. Pel Height= 93
+	        yMax=       74
+	        yMin=       -25
+
+	    87. Pel Height= 94
+	        yMax=       75
+	        yMin=       -26
+
+	    88. Pel Height= 95
+	        yMax=       76
+	        yMin=       -26
+
+	    89. Pel Height= 96
+	        yMax=       77
+	        yMin=       -26
+
+	    90. Pel Height= 97
+	        yMax=       78
+	        yMin=       -27
+
+	    91. Pel Height= 98
+	        yMax=       79
+	        yMin=       -27
+
+	    92. Pel Height= 99
+	        yMax=       79
+	        yMin=       -27
+
+	    93. Pel Height= 100
+	        yMax=       80
+	        yMin=       -27
+
+	    94. Pel Height= 101
+	        yMax=       81
+	        yMin=       -28
+
+	    95. Pel Height= 102
+	        yMax=       81
+	        yMin=       -28
+
+	    96. Pel Height= 103
+	        yMax=       82
+	        yMin=       -28
+
+	    97. Pel Height= 104
+	        yMax=       82
+	        yMin=       -28
+
+	    98. Pel Height= 105
+	        yMax=       84
+	        yMin=       -29
+
+	    99. Pel Height= 106
+	        yMax=       85
+	        yMin=       -29
+
+	   100. Pel Height= 107
+	        yMax=       85
+	        yMin=       -29
+
+	   101. Pel Height= 108
+	        yMax=       86
+	        yMin=       -30
+
+	   102. Pel Height= 109
+	        yMax=       87
+	        yMin=       -30
+
+	   103. Pel Height= 110
+	        yMax=       87
+	        yMin=       -30
+
+	   104. Pel Height= 111
+	        yMax=       88
+	        yMin=       -30
+
+	   105. Pel Height= 112
+	        yMax=       88
+	        yMin=       -31
+
+	   106. Pel Height= 113
+	        yMax=       89
+	        yMin=       -31
+
+	   107. Pel Height= 114
+	        yMax=       91
+	        yMin=       -31
+
+	   108. Pel Height= 115
+	        yMax=       91
+	        yMin=       -32
+
+	   109. Pel Height= 116
+	        yMax=       92
+	        yMin=       -32
+
+	   110. Pel Height= 117
+	        yMax=       93
+	        yMin=       -32
+
+	   111. Pel Height= 118
+	        yMax=       93
+	        yMin=       -32
+
+	   112. Pel Height= 119
+	        yMax=       94
+	        yMin=       -33
+
+	   113. Pel Height= 120
+	        yMax=       96
+	        yMin=       -33
+
+	   114. Pel Height= 121
+	        yMax=       97
+	        yMin=       -33
+
+	   115. Pel Height= 122
+	        yMax=       98
+	        yMin=       -33
+
+	   116. Pel Height= 123
+	        yMax=       99
+	        yMin=       -34
+
+	   117. Pel Height= 124
+	        yMax=       100
+	        yMin=       -34
+
+	   118. Pel Height= 125
+	        yMax=       101
+	        yMin=       -34
+
+	   119. Pel Height= 126
+	        yMax=       101
+	        yMin=       -35
+
+	   120. Pel Height= 127
+	        yMax=       102
+	        yMin=       -35
+
+	   121. Pel Height= 128
+	        yMax=       103
+	        yMin=       -35
+
+	   122. Pel Height= 129
+	        yMax=       103
+	        yMin=       -35
+
+	   123. Pel Height= 130
+	        yMax=       104
+	        yMin=       -36
+
+	   124. Pel Height= 131
+	        yMax=       104
+	        yMin=       -36
+
+	   125. Pel Height= 132
+	        yMax=       106
+	        yMin=       -36
+
+	   126. Pel Height= 133
+	        yMax=       107
+	        yMin=       -36
+
+	   127. Pel Height= 134
+	        yMax=       107
+	        yMin=       -37
+
+	   128. Pel Height= 135
+	        yMax=       108
+	        yMin=       -37
+
+	   129. Pel Height= 136
+	        yMax=       109
+	        yMin=       -37
+
+	   130. Pel Height= 137
+	        yMax=       109
+	        yMin=       -38
+
+	   131. Pel Height= 138
+	        yMax=       110
+	        yMin=       -38
+
+	   132. Pel Height= 139
+	        yMax=       110
+	        yMin=       -38
+
+	   133. Pel Height= 140
+	        yMax=       111
+	        yMin=       -38
+
+	   134. Pel Height= 141
+	        yMax=       112
+	        yMin=       -39
+
+	   135. Pel Height= 142
+	        yMax=       113
+	        yMin=       -39
+
+	   136. Pel Height= 143
+	        yMax=       114
+	        yMin=       -39
+
+	   137. Pel Height= 144
+	        yMax=       115
+	        yMin=       -39
+
+	   138. Pel Height= 145
+	        yMax=       115
+	        yMin=       -40
+
+	   139. Pel Height= 146
+	        yMax=       116
+	        yMin=       -40
+
+	   140. Pel Height= 147
+	        yMax=       116
+	        yMin=       -40
+
+	   141. Pel Height= 148
+	        yMax=       117
+	        yMin=       -41
+
+	   142. Pel Height= 149
+	        yMax=       118
+	        yMin=       -41
+
+	   143. Pel Height= 150
+	        yMax=       118
+	        yMin=       -41
+
+	   144. Pel Height= 151
+	        yMax=       120
+	        yMin=       -41
+
+	   145. Pel Height= 152
+	        yMax=       121
+	        yMin=       -42
+
+	   146. Pel Height= 153
+	        yMax=       121
+	        yMin=       -42
+
+	   147. Pel Height= 154
+	        yMax=       124
+	        yMin=       -42
+
+	   148. Pel Height= 155
+	        yMax=       124
+	        yMin=       -42
+
+	   149. Pel Height= 156
+	        yMax=       125
+	        yMin=       -43
+
+	   150. Pel Height= 157
+	        yMax=       126
+	        yMin=       -43
+
+	   151. Pel Height= 158
+	        yMax=       126
+	        yMin=       -43
+
+	   152. Pel Height= 159
+	        yMax=       127
+	        yMin=       -44
+
+	   153. Pel Height= 160
+	        yMax=       129
+	        yMin=       -44
+
+	   154. Pel Height= 161
+	        yMax=       129
+	        yMin=       -44
+
+	   155. Pel Height= 162
+	        yMax=       130
+	        yMin=       -44
+
+	   156. Pel Height= 163
+	        yMax=       131
+	        yMin=       -45
+
+	   157. Pel Height= 164
+	        yMax=       131
+	        yMin=       -45
+
+	   158. Pel Height= 165
+	        yMax=       132
+	        yMin=       -45
+
+	   159. Pel Height= 166
+	        yMax=       132
+	        yMin=       -45
+
+	   160. Pel Height= 167
+	        yMax=       133
+	        yMin=       -46
+
+	   161. Pel Height= 168
+	        yMax=       134
+	        yMin=       -46
+
+	   162. Pel Height= 169
+	        yMax=       135
+	        yMin=       -46
+
+	   163. Pel Height= 170
+	        yMax=       136
+	        yMin=       -47
+
+	   164. Pel Height= 171
+	        yMax=       137
+	        yMin=       -47
+
+	   165. Pel Height= 172
+	        yMax=       137
+	        yMin=       -47
+
+	   166. Pel Height= 173
+	        yMax=       138
+	        yMin=       -47
+
+	   167. Pel Height= 174
+	        yMax=       138
+	        yMin=       -48
+
+	   168. Pel Height= 175
+	        yMax=       139
+	        yMin=       -48
+
+	   169. Pel Height= 176
+	        yMax=       140
+	        yMin=       -48
+
+	   170. Pel Height= 177
+	        yMax=       140
+	        yMin=       -48
+
+	   171. Pel Height= 178
+	        yMax=       142
+	        yMin=       -49
+
+	   172. Pel Height= 179
+	        yMax=       143
+	        yMin=       -49
+
+	   173. Pel Height= 180
+	        yMax=       143
+	        yMin=       -49
+
+	   174. Pel Height= 181
+	        yMax=       144
+	        yMin=       -50
+
+	   175. Pel Height= 182
+	        yMax=       144
+	        yMin=       -50
+
+	   176. Pel Height= 183
+	        yMax=       145
+	        yMin=       -50
+
+	   177. Pel Height= 184
+	        yMax=       146
+	        yMin=       -50
+
+	   178. Pel Height= 185
+	        yMax=       146
+	        yMin=       -51
+
+	   179. Pel Height= 186
+	        yMax=       147
+	        yMin=       -51
+
+	   180. Pel Height= 187
+	        yMax=       149
+	        yMin=       -51
+
+	   181. Pel Height= 188
+	        yMax=       151
+	        yMin=       -52
+
+	   182. Pel Height= 189
+	        yMax=       152
+	        yMin=       -52
+
+	   183. Pel Height= 190
+	        yMax=       152
+	        yMin=       -52
+
+	   184. Pel Height= 191
+	        yMax=       153
+	        yMin=       -52
+
+	   185. Pel Height= 192
+	        yMax=       154
+	        yMin=       -53
+
+	   186. Pel Height= 193
+	        yMax=       154
+	        yMin=       -53
+
+	   187. Pel Height= 194
+	        yMax=       155
+	        yMin=       -53
+
+	   188. Pel Height= 195
+	        yMax=       156
+	        yMin=       -53
+
+	   189. Pel Height= 196
+	        yMax=       157
+	        yMin=       -54
+
+	   190. Pel Height= 197
+	        yMax=       158
+	        yMin=       -54
+
+	   191. Pel Height= 198
+	        yMax=       159
+	        yMin=       -54
+
+	   192. Pel Height= 199
+	        yMax=       159
+	        yMin=       -55
+
+	   193. Pel Height= 200
+	        yMax=       160
+	        yMin=       -55
+
+	   194. Pel Height= 201
+	        yMax=       160
+	        yMin=       -55
+
+	   195. Pel Height= 202
+	        yMax=       161
+	        yMin=       -55
+
+	   196. Pel Height= 203
+	        yMax=       162
+	        yMin=       -56
+
+	   197. Pel Height= 204
+	        yMax=       162
+	        yMin=       -56
+
+	   198. Pel Height= 205
+	        yMax=       164
+	        yMin=       -56
+
+	   199. Pel Height= 206
+	        yMax=       165
+	        yMin=       -56
+
+	   200. Pel Height= 207
+	        yMax=       165
+	        yMin=       -57
+
+	   201. Pel Height= 208
+	        yMax=       166
+	        yMin=       -57
+
+	   202. Pel Height= 209
+	        yMax=       166
+	        yMin=       -57
+
+	   203. Pel Height= 210
+	        yMax=       167
+	        yMin=       -58
+
+	   204. Pel Height= 211
+	        yMax=       168
+	        yMin=       -58
+
+	   205. Pel Height= 212
+	        yMax=       168
+	        yMin=       -58
+
+	   206. Pel Height= 213
+	        yMax=       169
+	        yMin=       -58
+
+	   207. Pel Height= 214
+	        yMax=       171
+	        yMin=       -59
+
+	   208. Pel Height= 215
+	        yMax=       171
+	        yMin=       -59
+
+	   209. Pel Height= 216
+	        yMax=       172
+	        yMin=       -59
+
+	   210. Pel Height= 217
+	        yMax=       172
+	        yMin=       -59
+
+	   211. Pel Height= 218
+	        yMax=       173
+	        yMin=       -60
+
+	   212. Pel Height= 219
+	        yMax=       174
+	        yMin=       -60
+
+	   213. Pel Height= 220
+	        yMax=       174
+	        yMin=       -60
+
+	   214. Pel Height= 221
+	        yMax=       175
+	        yMin=       -61
+
+	   215. Pel Height= 222
+	        yMax=       178
+	        yMin=       -61
+
+	   216. Pel Height= 223
+	        yMax=       179
+	        yMin=       -61
+
+	   217. Pel Height= 224
+	        yMax=       180
+	        yMin=       -61
+
+	   218. Pel Height= 225
+	        yMax=       181
+	        yMin=       -62
+
+	   219. Pel Height= 226
+	        yMax=       181
+	        yMin=       -62
+
+	   220. Pel Height= 227
+	        yMax=       182
+	        yMin=       -62
+
+	   221. Pel Height= 228
+	        yMax=       182
+	        yMin=       -62
+
+	   222. Pel Height= 229
+	        yMax=       183
+	        yMin=       -63
+
+	   223. Pel Height= 230
+	        yMax=       184
+	        yMin=       -63
+
+	   224. Pel Height= 231
+	        yMax=       184
+	        yMin=       -63
+
+	   225. Pel Height= 232
+	        yMax=       185
+	        yMin=       -64
+
+	   226. Pel Height= 233
+	        yMax=       187
+	        yMin=       -64
+
+	   227. Pel Height= 234
+	        yMax=       187
+	        yMin=       -64
+
+	   228. Pel Height= 235
+	        yMax=       188
+	        yMin=       -64
+
+	   229. Pel Height= 236
+	        yMax=       188
+	        yMin=       -65
+
+	   230. Pel Height= 237
+	        yMax=       189
+	        yMin=       -65
+
+	   231. Pel Height= 238
+	        yMax=       190
+	        yMin=       -65
+
+	   232. Pel Height= 239
+	        yMax=       190
+	        yMin=       -65
+
+	   233. Pel Height= 240
+	        yMax=       191
+	        yMin=       -66
+
+	   234. Pel Height= 241
+	        yMax=       192
+	        yMin=       -66
+
+	   235. Pel Height= 242
+	        yMax=       193
+	        yMin=       -66
+
+	   236. Pel Height= 243
+	        yMax=       194
+	        yMin=       -67
+
+	   237. Pel Height= 244
+	        yMax=       194
+	        yMin=       -67
+
+	   238. Pel Height= 245
+	        yMax=       195
+	        yMin=       -67
+
+	   239. Pel Height= 246
+	        yMax=       196
+	        yMin=       -67
+
+	   240. Pel Height= 247
+	        yMax=       196
+	        yMin=       -68
+
+	   241. Pel Height= 248
+	        yMax=       197
+	        yMin=       -68
+
+	   242. Pel Height= 249
+	        yMax=       200
+	        yMin=       -68
+
+	   243. Pel Height= 250
+	        yMax=       200
+	        yMin=       -68
+
+	   244. Pel Height= 251
+	        yMax=       201
+	        yMin=       -69
+
+	   245. Pel Height= 252
+	        yMax=       201
+	        yMin=       -69
+
+	   246. Pel Height= 253
+	        yMax=       202
+	        yMin=       -69
+
+	   247. Pel Height= 254
+	        yMax=       203
+	        yMin=       -70
+
+	   248. Pel Height= 255
+	        yMax=       203
+	        yMin=       -70
+
+
+   3.	Number of Hgt Records  248
+	Starting Y Pel Height  8
+	Ending Y Pel Height    255
+
+	     1. Pel Height= 8
+	        yMax=       6
+	        yMin=       -2
+
+	     2. Pel Height= 9
+	        yMax=       10
+	        yMin=       -3
+
+	     3. Pel Height= 10
+	        yMax=       10
+	        yMin=       -3
+
+	     4. Pel Height= 11
+	        yMax=       11
+	        yMin=       -3
+
+	     5. Pel Height= 12
+	        yMax=       12
+	        yMin=       -3
+
+	     6. Pel Height= 13
+	        yMax=       12
+	        yMin=       -4
+
+	     7. Pel Height= 14
+	        yMax=       13
+	        yMin=       -4
+
+	     8. Pel Height= 15
+	        yMax=       13
+	        yMin=       -4
+
+	     9. Pel Height= 16
+	        yMax=       14
+	        yMin=       -4
+
+	    10. Pel Height= 17
+	        yMax=       15
+	        yMin=       -5
+
+	    11. Pel Height= 18
+	        yMax=       15
+	        yMin=       -5
+
+	    12. Pel Height= 19
+	        yMax=       16
+	        yMin=       -5
+
+	    13. Pel Height= 20
+	        yMax=       17
+	        yMin=       -5
+
+	    14. Pel Height= 21
+	        yMax=       17
+	        yMin=       -6
+
+	    15. Pel Height= 22
+	        yMax=       18
+	        yMin=       -6
+
+	    16. Pel Height= 23
+	        yMax=       19
+	        yMin=       -6
+
+	    17. Pel Height= 24
+	        yMax=       20
+	        yMin=       -7
+
+	    18. Pel Height= 25
+	        yMax=       22
+	        yMin=       -7
+
+	    19. Pel Height= 26
+	        yMax=       22
+	        yMin=       -7
+
+	    20. Pel Height= 27
+	        yMax=       23
+	        yMin=       -7
+
+	    21. Pel Height= 28
+	        yMax=       23
+	        yMin=       -8
+
+	    22. Pel Height= 29
+	        yMax=       24
+	        yMin=       -8
+
+	    23. Pel Height= 30
+	        yMax=       25
+	        yMin=       -8
+
+	    24. Pel Height= 31
+	        yMax=       25
+	        yMin=       -8
+
+	    25. Pel Height= 32
+	        yMax=       27
+	        yMin=       -9
+
+	    26. Pel Height= 33
+	        yMax=       27
+	        yMin=       -9
+
+	    27. Pel Height= 34
+	        yMax=       28
+	        yMin=       -9
+
+	    28. Pel Height= 35
+	        yMax=       29
+	        yMin=       -10
+
+	    29. Pel Height= 36
+	        yMax=       29
+	        yMin=       -10
+
+	    30. Pel Height= 37
+	        yMax=       29
+	        yMin=       -10
+
+	    31. Pel Height= 38
+	        yMax=       30
+	        yMin=       -10
+
+	    32. Pel Height= 39
+	        yMax=       31
+	        yMin=       -11
+
+	    33. Pel Height= 40
+	        yMax=       31
+	        yMin=       -11
+
+	    34. Pel Height= 41
+	        yMax=       33
+	        yMin=       -11
+
+	    35. Pel Height= 42
+	        yMax=       33
+	        yMin=       -12
+
+	    36. Pel Height= 43
+	        yMax=       34
+	        yMin=       -12
+
+	    37. Pel Height= 44
+	        yMax=       35
+	        yMin=       -12
+
+	    38. Pel Height= 45
+	        yMax=       35
+	        yMin=       -12
+
+	    39. Pel Height= 46
+	        yMax=       36
+	        yMin=       -13
+
+	    40. Pel Height= 47
+	        yMax=       37
+	        yMin=       -13
+
+	    41. Pel Height= 48
+	        yMax=       37
+	        yMin=       -13
+
+	    42. Pel Height= 49
+	        yMax=       38
+	        yMin=       -13
+
+	    43. Pel Height= 50
+	        yMax=       39
+	        yMin=       -14
+
+	    44. Pel Height= 51
+	        yMax=       42
+	        yMin=       -14
+
+	    45. Pel Height= 52
+	        yMax=       43
+	        yMin=       -14
+
+	    46. Pel Height= 53
+	        yMax=       43
+	        yMin=       -15
+
+	    47. Pel Height= 54
+	        yMax=       44
+	        yMin=       -15
+
+	    48. Pel Height= 55
+	        yMax=       45
+	        yMin=       -15
+
+	    49. Pel Height= 56
+	        yMax=       45
+	        yMin=       -15
+
+	    50. Pel Height= 57
+	        yMax=       46
+	        yMin=       -16
+
+	    51. Pel Height= 58
+	        yMax=       46
+	        yMin=       -16
+
+	    52. Pel Height= 59
+	        yMax=       47
+	        yMin=       -16
+
+	    53. Pel Height= 60
+	        yMax=       49
+	        yMin=       -16
+
+	    54. Pel Height= 61
+	        yMax=       49
+	        yMin=       -17
+
+	    55. Pel Height= 62
+	        yMax=       50
+	        yMin=       -17
+
+	    56. Pel Height= 63
+	        yMax=       51
+	        yMin=       -17
+
+	    57. Pel Height= 64
+	        yMax=       51
+	        yMin=       -18
+
+	    58. Pel Height= 65
+	        yMax=       52
+	        yMin=       -18
+
+	    59. Pel Height= 66
+	        yMax=       53
+	        yMin=       -18
+
+	    60. Pel Height= 67
+	        yMax=       53
+	        yMin=       -18
+
+	    61. Pel Height= 68
+	        yMax=       54
+	        yMin=       -19
+
+	    62. Pel Height= 69
+	        yMax=       55
+	        yMin=       -19
+
+	    63. Pel Height= 70
+	        yMax=       56
+	        yMin=       -19
+
+	    64. Pel Height= 71
+	        yMax=       57
+	        yMin=       -19
+
+	    65. Pel Height= 72
+	        yMax=       57
+	        yMin=       -20
+
+	    66. Pel Height= 73
+	        yMax=       58
+	        yMin=       -20
+
+	    67. Pel Height= 74
+	        yMax=       59
+	        yMin=       -20
+
+	    68. Pel Height= 75
+	        yMax=       59
+	        yMin=       -21
+
+	    69. Pel Height= 76
+	        yMax=       60
+	        yMin=       -21
+
+	    70. Pel Height= 77
+	        yMax=       60
+	        yMin=       -21
+
+	    71. Pel Height= 78
+	        yMax=       62
+	        yMin=       -21
+
+	    72. Pel Height= 79
+	        yMax=       63
+	        yMin=       -22
+
+	    73. Pel Height= 80
+	        yMax=       63
+	        yMin=       -22
+
+	    74. Pel Height= 81
+	        yMax=       64
+	        yMin=       -22
+
+	    75. Pel Height= 82
+	        yMax=       65
+	        yMin=       -22
+
+	    76. Pel Height= 83
+	        yMax=       65
+	        yMin=       -23
+
+	    77. Pel Height= 84
+	        yMax=       66
+	        yMin=       -23
+
+	    78. Pel Height= 85
+	        yMax=       68
+	        yMin=       -23
+
+	    79. Pel Height= 86
+	        yMax=       69
+	        yMin=       -24
+
+	    80. Pel Height= 87
+	        yMax=       71
+	        yMin=       -24
+
+	    81. Pel Height= 88
+	        yMax=       71
+	        yMin=       -24
+
+	    82. Pel Height= 89
+	        yMax=       72
+	        yMin=       -24
+
+	    83. Pel Height= 90
+	        yMax=       73
+	        yMin=       -25
+
+	    84. Pel Height= 91
+	        yMax=       73
+	        yMin=       -25
+
+	    85. Pel Height= 92
+	        yMax=       74
+	        yMin=       -25
+
+	    86. Pel Height= 93
+	        yMax=       75
+	        yMin=       -25
+
+	    87. Pel Height= 94
+	        yMax=       75
+	        yMin=       -26
+
+	    88. Pel Height= 95
+	        yMax=       76
+	        yMin=       -26
+
+	    89. Pel Height= 96
+	        yMax=       77
+	        yMin=       -26
+
+	    90. Pel Height= 97
+	        yMax=       78
+	        yMin=       -27
+
+	    91. Pel Height= 98
+	        yMax=       79
+	        yMin=       -27
+
+	    92. Pel Height= 99
+	        yMax=       79
+	        yMin=       -27
+
+	    93. Pel Height= 100
+	        yMax=       80
+	        yMin=       -27
+
+	    94. Pel Height= 101
+	        yMax=       81
+	        yMin=       -28
+
+	    95. Pel Height= 102
+	        yMax=       81
+	        yMin=       -28
+
+	    96. Pel Height= 103
+	        yMax=       82
+	        yMin=       -28
+
+	    97. Pel Height= 104
+	        yMax=       82
+	        yMin=       -28
+
+	    98. Pel Height= 105
+	        yMax=       84
+	        yMin=       -29
+
+	    99. Pel Height= 106
+	        yMax=       85
+	        yMin=       -29
+
+	   100. Pel Height= 107
+	        yMax=       85
+	        yMin=       -29
+
+	   101. Pel Height= 108
+	        yMax=       86
+	        yMin=       -30
+
+	   102. Pel Height= 109
+	        yMax=       87
+	        yMin=       -30
+
+	   103. Pel Height= 110
+	        yMax=       87
+	        yMin=       -30
+
+	   104. Pel Height= 111
+	        yMax=       88
+	        yMin=       -30
+
+	   105. Pel Height= 112
+	        yMax=       88
+	        yMin=       -31
+
+	   106. Pel Height= 113
+	        yMax=       89
+	        yMin=       -31
+
+	   107. Pel Height= 114
+	        yMax=       91
+	        yMin=       -31
+
+	   108. Pel Height= 115
+	        yMax=       91
+	        yMin=       -32
+
+	   109. Pel Height= 116
+	        yMax=       92
+	        yMin=       -32
+
+	   110. Pel Height= 117
+	        yMax=       93
+	        yMin=       -32
+
+	   111. Pel Height= 118
+	        yMax=       93
+	        yMin=       -32
+
+	   112. Pel Height= 119
+	        yMax=       94
+	        yMin=       -33
+
+	   113. Pel Height= 120
+	        yMax=       96
+	        yMin=       -33
+
+	   114. Pel Height= 121
+	        yMax=       97
+	        yMin=       -33
+
+	   115. Pel Height= 122
+	        yMax=       98
+	        yMin=       -33
+
+	   116. Pel Height= 123
+	        yMax=       99
+	        yMin=       -34
+
+	   117. Pel Height= 124
+	        yMax=       100
+	        yMin=       -34
+
+	   118. Pel Height= 125
+	        yMax=       101
+	        yMin=       -34
+
+	   119. Pel Height= 126
+	        yMax=       101
+	        yMin=       -35
+
+	   120. Pel Height= 127
+	        yMax=       102
+	        yMin=       -35
+
+	   121. Pel Height= 128
+	        yMax=       103
+	        yMin=       -35
+
+	   122. Pel Height= 129
+	        yMax=       103
+	        yMin=       -35
+
+	   123. Pel Height= 130
+	        yMax=       104
+	        yMin=       -36
+
+	   124. Pel Height= 131
+	        yMax=       104
+	        yMin=       -36
+
+	   125. Pel Height= 132
+	        yMax=       106
+	        yMin=       -36
+
+	   126. Pel Height= 133
+	        yMax=       107
+	        yMin=       -36
+
+	   127. Pel Height= 134
+	        yMax=       107
+	        yMin=       -37
+
+	   128. Pel Height= 135
+	        yMax=       108
+	        yMin=       -37
+
+	   129. Pel Height= 136
+	        yMax=       109
+	        yMin=       -37
+
+	   130. Pel Height= 137
+	        yMax=       109
+	        yMin=       -38
+
+	   131. Pel Height= 138
+	        yMax=       110
+	        yMin=       -38
+
+	   132. Pel Height= 139
+	        yMax=       110
+	        yMin=       -38
+
+	   133. Pel Height= 140
+	        yMax=       111
+	        yMin=       -38
+
+	   134. Pel Height= 141
+	        yMax=       113
+	        yMin=       -39
+
+	   135. Pel Height= 142
+	        yMax=       113
+	        yMin=       -39
+
+	   136. Pel Height= 143
+	        yMax=       114
+	        yMin=       -39
+
+	   137. Pel Height= 144
+	        yMax=       115
+	        yMin=       -39
+
+	   138. Pel Height= 145
+	        yMax=       115
+	        yMin=       -40
+
+	   139. Pel Height= 146
+	        yMax=       116
+	        yMin=       -40
+
+	   140. Pel Height= 147
+	        yMax=       116
+	        yMin=       -40
+
+	   141. Pel Height= 148
+	        yMax=       117
+	        yMin=       -41
+
+	   142. Pel Height= 149
+	        yMax=       118
+	        yMin=       -41
+
+	   143. Pel Height= 150
+	        yMax=       118
+	        yMin=       -41
+
+	   144. Pel Height= 151
+	        yMax=       120
+	        yMin=       -41
+
+	   145. Pel Height= 152
+	        yMax=       121
+	        yMin=       -42
+
+	   146. Pel Height= 153
+	        yMax=       121
+	        yMin=       -42
+
+	   147. Pel Height= 154
+	        yMax=       124
+	        yMin=       -42
+
+	   148. Pel Height= 155
+	        yMax=       124
+	        yMin=       -42
+
+	   149. Pel Height= 156
+	        yMax=       125
+	        yMin=       -43
+
+	   150. Pel Height= 157
+	        yMax=       126
+	        yMin=       -43
+
+	   151. Pel Height= 158
+	        yMax=       126
+	        yMin=       -43
+
+	   152. Pel Height= 159
+	        yMax=       127
+	        yMin=       -44
+
+	   153. Pel Height= 160
+	        yMax=       129
+	        yMin=       -44
+
+	   154. Pel Height= 161
+	        yMax=       129
+	        yMin=       -44
+
+	   155. Pel Height= 162
+	        yMax=       130
+	        yMin=       -44
+
+	   156. Pel Height= 163
+	        yMax=       131
+	        yMin=       -45
+
+	   157. Pel Height= 164
+	        yMax=       131
+	        yMin=       -45
+
+	   158. Pel Height= 165
+	        yMax=       132
+	        yMin=       -45
+
+	   159. Pel Height= 166
+	        yMax=       132
+	        yMin=       -45
+
+	   160. Pel Height= 167
+	        yMax=       133
+	        yMin=       -46
+
+	   161. Pel Height= 168
+	        yMax=       134
+	        yMin=       -46
+
+	   162. Pel Height= 169
+	        yMax=       135
+	        yMin=       -46
+
+	   163. Pel Height= 170
+	        yMax=       136
+	        yMin=       -47
+
+	   164. Pel Height= 171
+	        yMax=       137
+	        yMin=       -47
+
+	   165. Pel Height= 172
+	        yMax=       137
+	        yMin=       -47
+
+	   166. Pel Height= 173
+	        yMax=       138
+	        yMin=       -47
+
+	   167. Pel Height= 174
+	        yMax=       138
+	        yMin=       -48
+
+	   168. Pel Height= 175
+	        yMax=       139
+	        yMin=       -48
+
+	   169. Pel Height= 176
+	        yMax=       140
+	        yMin=       -48
+
+	   170. Pel Height= 177
+	        yMax=       140
+	        yMin=       -48
+
+	   171. Pel Height= 178
+	        yMax=       142
+	        yMin=       -49
+
+	   172. Pel Height= 179
+	        yMax=       143
+	        yMin=       -49
+
+	   173. Pel Height= 180
+	        yMax=       143
+	        yMin=       -49
+
+	   174. Pel Height= 181
+	        yMax=       144
+	        yMin=       -50
+
+	   175. Pel Height= 182
+	        yMax=       144
+	        yMin=       -50
+
+	   176. Pel Height= 183
+	        yMax=       145
+	        yMin=       -50
+
+	   177. Pel Height= 184
+	        yMax=       146
+	        yMin=       -50
+
+	   178. Pel Height= 185
+	        yMax=       146
+	        yMin=       -51
+
+	   179. Pel Height= 186
+	        yMax=       147
+	        yMin=       -51
+
+	   180. Pel Height= 187
+	        yMax=       149
+	        yMin=       -51
+
+	   181. Pel Height= 188
+	        yMax=       151
+	        yMin=       -52
+
+	   182. Pel Height= 189
+	        yMax=       152
+	        yMin=       -52
+
+	   183. Pel Height= 190
+	        yMax=       153
+	        yMin=       -52
+
+	   184. Pel Height= 191
+	        yMax=       153
+	        yMin=       -52
+
+	   185. Pel Height= 192
+	        yMax=       154
+	        yMin=       -53
+
+	   186. Pel Height= 193
+	        yMax=       154
+	        yMin=       -53
+
+	   187. Pel Height= 194
+	        yMax=       155
+	        yMin=       -53
+
+	   188. Pel Height= 195
+	        yMax=       156
+	        yMin=       -53
+
+	   189. Pel Height= 196
+	        yMax=       157
+	        yMin=       -54
+
+	   190. Pel Height= 197
+	        yMax=       158
+	        yMin=       -54
+
+	   191. Pel Height= 198
+	        yMax=       159
+	        yMin=       -54
+
+	   192. Pel Height= 199
+	        yMax=       159
+	        yMin=       -55
+
+	   193. Pel Height= 200
+	        yMax=       160
+	        yMin=       -55
+
+	   194. Pel Height= 201
+	        yMax=       160
+	        yMin=       -55
+
+	   195. Pel Height= 202
+	        yMax=       161
+	        yMin=       -55
+
+	   196. Pel Height= 203
+	        yMax=       162
+	        yMin=       -56
+
+	   197. Pel Height= 204
+	        yMax=       162
+	        yMin=       -56
+
+	   198. Pel Height= 205
+	        yMax=       164
+	        yMin=       -56
+
+	   199. Pel Height= 206
+	        yMax=       165
+	        yMin=       -56
+
+	   200. Pel Height= 207
+	        yMax=       165
+	        yMin=       -57
+
+	   201. Pel Height= 208
+	        yMax=       166
+	        yMin=       -57
+
+	   202. Pel Height= 209
+	        yMax=       166
+	        yMin=       -57
+
+	   203. Pel Height= 210
+	        yMax=       167
+	        yMin=       -58
+
+	   204. Pel Height= 211
+	        yMax=       168
+	        yMin=       -58
+
+	   205. Pel Height= 212
+	        yMax=       168
+	        yMin=       -58
+
+	   206. Pel Height= 213
+	        yMax=       169
+	        yMin=       -58
+
+	   207. Pel Height= 214
+	        yMax=       171
+	        yMin=       -59
+
+	   208. Pel Height= 215
+	        yMax=       171
+	        yMin=       -59
+
+	   209. Pel Height= 216
+	        yMax=       172
+	        yMin=       -59
+
+	   210. Pel Height= 217
+	        yMax=       172
+	        yMin=       -59
+
+	   211. Pel Height= 218
+	        yMax=       173
+	        yMin=       -60
+
+	   212. Pel Height= 219
+	        yMax=       174
+	        yMin=       -60
+
+	   213. Pel Height= 220
+	        yMax=       174
+	        yMin=       -60
+
+	   214. Pel Height= 221
+	        yMax=       175
+	        yMin=       -61
+
+	   215. Pel Height= 222
+	        yMax=       178
+	        yMin=       -61
+
+	   216. Pel Height= 223
+	        yMax=       179
+	        yMin=       -61
+
+	   217. Pel Height= 224
+	        yMax=       180
+	        yMin=       -61
+
+	   218. Pel Height= 225
+	        yMax=       181
+	        yMin=       -62
+
+	   219. Pel Height= 226
+	        yMax=       181
+	        yMin=       -62
+
+	   220. Pel Height= 227
+	        yMax=       182
+	        yMin=       -62
+
+	   221. Pel Height= 228
+	        yMax=       182
+	        yMin=       -62
+
+	   222. Pel Height= 229
+	        yMax=       183
+	        yMin=       -63
+
+	   223. Pel Height= 230
+	        yMax=       184
+	        yMin=       -63
+
+	   224. Pel Height= 231
+	        yMax=       184
+	        yMin=       -63
+
+	   225. Pel Height= 232
+	        yMax=       186
+	        yMin=       -64
+
+	   226. Pel Height= 233
+	        yMax=       187
+	        yMin=       -64
+
+	   227. Pel Height= 234
+	        yMax=       187
+	        yMin=       -64
+
+	   228. Pel Height= 235
+	        yMax=       188
+	        yMin=       -64
+
+	   229. Pel Height= 236
+	        yMax=       188
+	        yMin=       -65
+
+	   230. Pel Height= 237
+	        yMax=       189
+	        yMin=       -65
+
+	   231. Pel Height= 238
+	        yMax=       190
+	        yMin=       -65
+
+	   232. Pel Height= 239
+	        yMax=       190
+	        yMin=       -65
+
+	   233. Pel Height= 240
+	        yMax=       191
+	        yMin=       -66
+
+	   234. Pel Height= 241
+	        yMax=       192
+	        yMin=       -66
+
+	   235. Pel Height= 242
+	        yMax=       193
+	        yMin=       -66
+
+	   236. Pel Height= 243
+	        yMax=       194
+	        yMin=       -67
+
+	   237. Pel Height= 244
+	        yMax=       194
+	        yMin=       -67
+
+	   238. Pel Height= 245
+	        yMax=       195
+	        yMin=       -67
+
+	   239. Pel Height= 246
+	        yMax=       196
+	        yMin=       -67
+
+	   240. Pel Height= 247
+	        yMax=       196
+	        yMin=       -68
+
+	   241. Pel Height= 248
+	        yMax=       197
+	        yMin=       -68
+
+	   242. Pel Height= 249
+	        yMax=       200
+	        yMin=       -68
+
+	   243. Pel Height= 250
+	        yMax=       200
+	        yMin=       -68
+
+	   244. Pel Height= 251
+	        yMax=       201
+	        yMin=       -69
+
+	   245. Pel Height= 252
+	        yMax=       201
+	        yMin=       -69
+
+	   246. Pel Height= 253
+	        yMax=       202
+	        yMin=       -69
+
+	   247. Pel Height= 254
+	        yMax=       203
+	        yMin=       -70
+
+	   248. Pel Height= 255
+	        yMax=       203
+	        yMin=       -70
+
+
+
+
+'EBLC' Table - Embedded Bitmap Location Table
+---------------------------------------------
+          Version:  2.0
+  Number of Sizes:  18
+
+Strike 1
+=========
+     Index Array Offset:  0x00000368
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:    3
+              Descender:    1
+              Max Width:    2
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    3
+           Max After BL:   -1
+  Vertical Line Metrics
+               Ascender:    3
+              Descender:    1
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:     4
+                 ppem Y:     4
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x00000004
+      Glyph:   371   Offset:  0x00000004
+      Glyph:   372   Offset:  0x0000000a
+      Glyph:   373   Offset:  0x00000010
+                Last Offset:  0x00000016
+
+
+Strike 2
+=========
+     Index Array Offset:  0x00000380
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:    4
+              Descender:    2
+              Max Width:    3
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    4
+           Max After BL:   -2
+  Vertical Line Metrics
+               Ascender:    4
+              Descender:    2
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:     5
+                 ppem Y:     5
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x00000016
+      Glyph:   371   Offset:  0x00000016
+      Glyph:   372   Offset:  0x0000001c
+      Glyph:   373   Offset:  0x00000024
+                Last Offset:  0x0000002c
+
+
+Strike 3
+=========
+     Index Array Offset:  0x00000398
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:    5
+              Descender:    2
+              Max Width:    4
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    5
+           Max After BL:   -2
+  Vertical Line Metrics
+               Ascender:    5
+              Descender:    2
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:     6
+                 ppem Y:     6
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x0000002c
+      Glyph:   371   Offset:  0x0000002c
+      Glyph:   372   Offset:  0x00000034
+      Glyph:   373   Offset:  0x0000003c
+                Last Offset:  0x00000045
+
+
+Strike 4
+=========
+     Index Array Offset:  0x000003b0
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:    6
+              Descender:    2
+              Max Width:    4
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    6
+           Max After BL:   -2
+  Vertical Line Metrics
+               Ascender:    6
+              Descender:    2
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:     7
+                 ppem Y:     7
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x00000045
+      Glyph:   371   Offset:  0x00000045
+      Glyph:   372   Offset:  0x0000004d
+      Glyph:   373   Offset:  0x00000056
+                Last Offset:  0x0000005f
+
+
+Strike 5
+=========
+     Index Array Offset:  0x000003c8
+   Size of Index Tables:  0x0000001c
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:    6
+              Descender:    2
+              Max Width:    5
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    6
+           Max After BL:   -2
+  Vertical Line Metrics
+               Ascender:    6
+              Descender:    2
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:     8
+                 ppem Y:     8
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     2
+               Image Format:     5
+     Image Data Offset Base:  0x0000005f
+              imageSize:  0x00000005
+                 Height:    8
+                  Width:    5
+         Hori Bearing X:    0
+         Hori Bearing Y:    6
+         Hori Advance W:    5
+         Vert Bearing X:   -2
+         Vert Bearing Y:   -4
+         Vert Advance W:    0
+      Glyph:   371   Offset:  0x0000005f
+      Glyph:   372   Offset:  0x00000064
+      Glyph:   373   Offset:  0x00000069
+
+
+Strike 6
+=========
+     Index Array Offset:  0x000003e4
+   Size of Index Tables:  0x0000001c
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:    9
+              Descender:    3
+              Max Width:    5
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    9
+           Max After BL:   -3
+  Vertical Line Metrics
+               Ascender:    9
+              Descender:    3
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:     9
+                 ppem Y:     9
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     2
+               Image Format:     5
+     Image Data Offset Base:  0x0000006e
+              imageSize:  0x00000008
+                 Height:   12
+                  Width:    5
+         Hori Bearing X:    0
+         Hori Bearing Y:    9
+         Hori Advance W:    5
+         Vert Bearing X:   -2
+         Vert Bearing Y:   -6
+         Vert Advance W:    0
+      Glyph:   371   Offset:  0x0000006e
+      Glyph:   372   Offset:  0x00000076
+      Glyph:   373   Offset:  0x0000007e
+
+
+Strike 7
+=========
+     Index Array Offset:  0x00000400
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:    9
+              Descender:    3
+              Max Width:    6
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    9
+           Max After BL:   -3
+  Vertical Line Metrics
+               Ascender:    9
+              Descender:    3
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    10
+                 ppem Y:    10
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x00000086
+      Glyph:   371   Offset:  0x00000086
+      Glyph:   372   Offset:  0x00000091
+      Glyph:   373   Offset:  0x0000009f
+                Last Offset:  0x000000ad
+
+
+Strike 8
+=========
+     Index Array Offset:  0x00000418
+   Size of Index Tables:  0x0000001c
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   11
+              Descender:    3
+              Max Width:    7
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   11
+           Max After BL:   -3
+  Vertical Line Metrics
+               Ascender:   11
+              Descender:    3
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    11
+                 ppem Y:    11
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     2
+               Image Format:     5
+     Image Data Offset Base:  0x000000ad
+              imageSize:  0x0000000d
+                 Height:   14
+                  Width:    7
+         Hori Bearing X:    0
+         Hori Bearing Y:   11
+         Hori Advance W:    7
+         Vert Bearing X:   -3
+         Vert Bearing Y:   -7
+         Vert Advance W:    0
+      Glyph:   371   Offset:  0x000000ad
+      Glyph:   372   Offset:  0x000000ba
+      Glyph:   373   Offset:  0x000000c7
+
+
+Strike 9
+=========
+     Index Array Offset:  0x00000434
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   11
+              Descender:    4
+              Max Width:    7
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   11
+           Max After BL:   -4
+  Vertical Line Metrics
+               Ascender:   11
+              Descender:    4
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    12
+                 ppem Y:    12
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x000000d4
+      Glyph:   371   Offset:  0x000000d4
+      Glyph:   372   Offset:  0x000000e5
+      Glyph:   373   Offset:  0x000000f8
+                Last Offset:  0x0000010b
+
+
+Strike 10
+=========
+     Index Array Offset:  0x0000044c
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   12
+              Descender:    4
+              Max Width:    8
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   12
+           Max After BL:   -4
+  Vertical Line Metrics
+               Ascender:   12
+              Descender:    4
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    13
+                 ppem Y:    13
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x0000010b
+      Glyph:   371   Offset:  0x0000010b
+      Glyph:   372   Offset:  0x0000011e
+      Glyph:   373   Offset:  0x00000133
+                Last Offset:  0x00000148
+
+
+Strike 11
+=========
+     Index Array Offset:  0x00000464
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   13
+              Descender:    4
+              Max Width:    8
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   13
+           Max After BL:   -4
+  Vertical Line Metrics
+               Ascender:   13
+              Descender:    4
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    14
+                 ppem Y:    14
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x00000148
+      Glyph:   371   Offset:  0x00000148
+      Glyph:   372   Offset:  0x0000015c
+      Glyph:   373   Offset:  0x00000172
+                Last Offset:  0x00000188
+
+
+Strike 12
+=========
+     Index Array Offset:  0x0000047c
+   Size of Index Tables:  0x0000001c
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   12
+              Descender:    5
+              Max Width:    9
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   12
+           Max After BL:   -5
+  Vertical Line Metrics
+               Ascender:   12
+              Descender:    5
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    15
+                 ppem Y:    15
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     2
+               Image Format:     5
+     Image Data Offset Base:  0x00000188
+              imageSize:  0x00000014
+                 Height:   17
+                  Width:    9
+         Hori Bearing X:    0
+         Hori Bearing Y:   12
+         Hori Advance W:    9
+         Vert Bearing X:   -4
+         Vert Bearing Y:   -9
+         Vert Advance W:    0
+      Glyph:   371   Offset:  0x00000188
+      Glyph:   372   Offset:  0x0000019c
+      Glyph:   373   Offset:  0x000001b0
+
+
+Strike 13
+=========
+     Index Array Offset:  0x00000498
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   13
+              Descender:    5
+              Max Width:   10
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   13
+           Max After BL:   -5
+  Vertical Line Metrics
+               Ascender:   13
+              Descender:    5
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    16
+                 ppem Y:    16
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x000001c4
+      Glyph:   371   Offset:  0x000001c4
+      Glyph:   372   Offset:  0x000001de
+      Glyph:   373   Offset:  0x000001fa
+                Last Offset:  0x00000216
+
+
+Strike 14
+=========
+     Index Array Offset:  0x000004b0
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   15
+              Descender:    5
+              Max Width:   10
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   15
+           Max After BL:   -5
+  Vertical Line Metrics
+               Ascender:   15
+              Descender:    5
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    17
+                 ppem Y:    17
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x00000216
+      Glyph:   371   Offset:  0x00000216
+      Glyph:   372   Offset:  0x00000232
+      Glyph:   373   Offset:  0x00000250
+                Last Offset:  0x0000026e
+
+
+Strike 15
+=========
+     Index Array Offset:  0x000004c8
+   Size of Index Tables:  0x0000001c
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   15
+              Descender:    5
+              Max Width:   11
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   15
+           Max After BL:   -5
+  Vertical Line Metrics
+               Ascender:   15
+              Descender:    5
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    18
+                 ppem Y:    18
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     2
+               Image Format:     5
+     Image Data Offset Base:  0x0000026e
+              imageSize:  0x0000001c
+                 Height:   20
+                  Width:   11
+         Hori Bearing X:    0
+         Hori Bearing Y:   15
+         Hori Advance W:   11
+         Vert Bearing X:   -5
+         Vert Bearing Y:  -10
+         Vert Advance W:    0
+      Glyph:   371   Offset:  0x0000026e
+      Glyph:   372   Offset:  0x0000028a
+      Glyph:   373   Offset:  0x000002a6
+
+
+Strike 16
+=========
+     Index Array Offset:  0x000004e4
+   Size of Index Tables:  0x0000001c
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   14
+              Descender:    6
+              Max Width:   11
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   14
+           Max After BL:   -6
+  Vertical Line Metrics
+               Ascender:   14
+              Descender:    6
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    19
+                 ppem Y:    19
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     2
+               Image Format:     5
+     Image Data Offset Base:  0x000002c2
+              imageSize:  0x0000001c
+                 Height:   20
+                  Width:   11
+         Hori Bearing X:    0
+         Hori Bearing Y:   14
+         Hori Advance W:   11
+         Vert Bearing X:   -5
+         Vert Bearing Y:  -10
+         Vert Advance W:    0
+      Glyph:   371   Offset:  0x000002c2
+      Glyph:   372   Offset:  0x000002de
+      Glyph:   373   Offset:  0x000002fa
+
+
+Strike 17
+=========
+     Index Array Offset:  0x00000500
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   16
+              Descender:    6
+              Max Width:   12
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   16
+           Max After BL:   -6
+  Vertical Line Metrics
+               Ascender:   16
+              Descender:    6
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    20
+                 ppem Y:    20
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x00000316
+      Glyph:   371   Offset:  0x00000316
+      Glyph:   372   Offset:  0x00000336
+      Glyph:   373   Offset:  0x0000035c
+                Last Offset:  0x00000382
+
+
+Strike 18
+=========
+     Index Array Offset:  0x00000518
+   Size of Index Tables:  0x0000001c
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   17
+              Descender:    6
+              Max Width:   13
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   17
+           Max After BL:   -6
+  Vertical Line Metrics
+               Ascender:   17
+              Descender:    6
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    21
+                 ppem Y:    21
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     2
+               Image Format:     5
+     Image Data Offset Base:  0x00000382
+              imageSize:  0x00000026
+                 Height:   23
+                  Width:   13
+         Hori Bearing X:    0
+         Hori Bearing Y:   17
+         Hori Advance W:   13
+         Vert Bearing X:   -6
+         Vert Bearing Y:  -12
+         Vert Advance W:    0
+      Glyph:   371   Offset:  0x00000382
+      Glyph:   372   Offset:  0x000003a8
+      Glyph:   373   Offset:  0x000003ce
+
+
+
+
+'EBDT' Table - Embedded Bitmap Data Table
+-----------------------------------------
+          Version:  2.0
+
+Strike 1   Size = 4
+----------------------
+Glyph   371  Metrics:  H:03 W:01 X:01 Y:03 A:02
+               Image:  A0
+Glyph   372  Metrics:  H:04 W:02 X:00 Y:03 A:02
+               Image:  66
+Glyph   373  Metrics:  H:04 W:02 X:00 Y:03 A:02
+               Image:  77
+
+
+Strike 2   Size = 5
+----------------------
+Glyph   371  Metrics:  H:05 W:01 X:01 Y:04 A:03
+               Image:  A8
+Glyph   372  Metrics:  H:06 W:03 X:00 Y:04 A:03
+               Image:  55 55 40
+Glyph   373  Metrics:  H:06 W:03 X:00 Y:04 A:03
+               Image:  5D 75 C0
+
+
+Strike 3   Size = 6
+----------------------
+Glyph   371  Metrics:  H:06 W:03 X:01 Y:05 A:04
+               Image:  80 C0 40
+Glyph   372  Metrics:  H:07 W:03 X:01 Y:05 A:04
+               Image:  30 C3 08
+Glyph   373  Metrics:  H:07 W:04 X:00 Y:05 A:04
+               Image:  5A 5A 5A 50
+
+
+Strike 4   Size = 7
+----------------------
+Glyph   371  Metrics:  H:08 W:03 X:01 Y:06 A:04
+               Image:  30 C3 0C
+Glyph   372  Metrics:  H:08 W:04 X:00 Y:06 A:04
+               Image:  5A 5A 5A 5A
+Glyph   373  Metrics:  H:08 W:04 X:00 Y:06 A:04
+               Image:  5F 5F 5F 5F
+
+
+Strike 5   Size = 8
+----------------------
+Glyph   371  Metrics:  H:08 W:05 X:00 Y:06 A:05 x:FE y:FC a:00
+               Image:  89 22 48 92 24
+Glyph   372  Metrics:  H:08 W:05 X:00 Y:06 A:05 x:FE y:FC a:00
+               Image:  AA AA AA AA AA
+Glyph   373  Metrics:  H:08 W:05 X:00 Y:06 A:05 x:FE y:FC a:00
+               Image:  2F CB F2 FC BF
+
+
+Strike 6   Size = 9
+----------------------
+Glyph   371  Metrics:  H:0C W:05 X:00 Y:09 A:05 x:FE y:FA a:00
+               Image:  89 22 48 92 24 89 22 40
+Glyph   372  Metrics:  H:0C W:05 X:00 Y:09 A:05 x:FE y:FA a:00
+               Image:  AA AA AA AA AA AA AA A0
+Glyph   373  Metrics:  H:0C W:05 X:00 Y:09 A:05 x:FE y:FA a:00
+               Image:  57 D5 F5 7D 5F 57 D5 F0
+
+
+Strike 7   Size = 10
+----------------------
+Glyph   371  Metrics:  H:0b W:04 X:01 Y:09 A:06
+               Image:  90 90 90 90 90 90
+Glyph   372  Metrics:  H:0c W:06 X:00 Y:09 A:06
+               Image:  56 A5 6A 56 A5 6A 56 A5 6A
+Glyph   373  Metrics:  H:0c W:06 X:00 Y:09 A:06
+               Image:  57 F5 7F 57 F5 7F 57 F5 7F
+
+
+Strike 8   Size = 11
+----------------------
+Glyph   371  Metrics:  H:0E W:07 X:00 Y:0B A:07 x:FD y:F9 a:00
+               Image:  54 02 A8 05 40 2A 80 54 02 A8 05 40 00
+Glyph   372  Metrics:  H:0E W:07 X:00 Y:0B A:07 x:FD y:F9 a:00
+               Image:  55 55 55 55 55 55 55 55 55 55 55 55 40
+Glyph   373  Metrics:  H:0E W:07 X:00 Y:0B A:07 x:FD y:F9 a:00
+               Image:  55 FD 57 F5 5F D5 7F 55 FD 57 F5 5F C0
+
+
+Strike 9   Size = 12
+----------------------
+Glyph   371  Metrics:  H:0d W:07 X:00 Y:0b A:07
+               Image:  54 00 05 50 00 15 00 01 54 00 05 40
+Glyph   372  Metrics:  H:0f W:07 X:00 Y:0b A:07
+               Image:  54 AA AA AA AA AA AA AA AA AA AA AA AA 80
+Glyph   373  Metrics:  H:0f W:07 X:00 Y:0b A:07
+               Image:  2A 57 F9 5F E5 7F 95 FE 57 F9 5F E5 7F 80
+
+
+Strike 10   Size = 13
+----------------------
+Glyph   371  Metrics:  H:10 W:07 X:01 Y:0c A:08
+               Image:  23 10 8C 42 31 08 C4 23 10 8C 42 31 08 C4
+Glyph   372  Metrics:  H:10 W:08 X:00 Y:0c A:08
+               Image:  55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA
+Glyph   373  Metrics:  H:10 W:08 X:00 Y:0c A:08
+               Image:  55 FF 55 FF 55 FF 55 FF 55 FF 55 FF 55 FF 55 FF
+
+
+Strike 11   Size = 14
+----------------------
+Glyph   371  Metrics:  H:11 W:07 X:01 Y:0d A:08
+               Image:  23 10 8C 42 31 08 C4 23 10 8C 42 31 08 C4 22
+Glyph   372  Metrics:  H:11 W:08 X:00 Y:0d A:08
+               Image:  55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA
+                       55
+Glyph   373  Metrics:  H:11 W:08 X:00 Y:0d A:08
+               Image:  55 55 FF 55 FF 55 FF 55 FF 55 FF 55 FF 55 FF 55
+                       FF
+
+
+Strike 12   Size = 15
+----------------------
+Glyph   371  Metrics:  H:11 W:09 X:00 Y:0C A:09 x:FC y:F7 a:00
+               Image:  88 91 22 24 48 89 12 22 44 88 91 22 24 48 89 12
+                       22 44 88 80
+Glyph   372  Metrics:  H:11 W:09 X:00 Y:0C A:09 x:FC y:F7 a:00
+               Image:  55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55
+                       55 55 55 00
+Glyph   373  Metrics:  H:11 W:09 X:00 Y:0C A:09 x:FC y:F7 a:00
+               Image:  2A 95 7F E5 5F F9 57 FE 55 FF 95 7F E5 5F F9 57
+                       FE 55 FF 80
+
+
+Strike 13   Size = 16
+----------------------
+Glyph   371  Metrics:  H:12 W:09 X:01 Y:0d A:0a
+               Image:  22 44 48 91 12 24 44 89 11 22 44 48 91 12 24 44
+                       89 11 22 44 40
+Glyph   372  Metrics:  H:12 W:0a X:00 Y:0d A:0a
+               Image:  AA 95 5A A9 55 AA 95 5A A9 55 AA 95 5A A9 55 AA
+                       95 5A A9 55 AA 95 50
+Glyph   373  Metrics:  H:12 W:0a X:00 Y:0d A:0a
+               Image:  55 7F F5 57 FF 55 7F F5 57 FF 55 7F F5 57 FF 55
+                       7F F5 57 FF 55 7F F0
+
+
+Strike 14   Size = 17
+----------------------
+Glyph   371  Metrics:  H:14 W:09 X:01 Y:0f A:0a
+               Image:  88 91 22 24 48 89 12 22 44 88 91 22 24 48 89 12
+                       22 44 88 91 22 24 40
+Glyph   372  Metrics:  H:14 W:0a X:00 Y:0f A:0a
+               Image:  55 6A A5 56 AA 55 6A A5 56 AA 55 6A A5 56 AA 55
+                       6A A5 56 AA 55 6A A5 56 AA
+Glyph   373  Metrics:  H:14 W:0a X:00 Y:0f A:0a
+               Image:  55 7F F5 57 FF 55 7F F5 57 FF 55 7F F5 57 FF 55
+                       7F F5 57 FF 55 7F F5 57 FF
+
+
+Strike 15   Size = 18
+----------------------
+Glyph   371  Metrics:  H:14 W:0B X:00 Y:0F A:0B x:FB y:F6 a:00
+               Image:  88 84 46 22 11 18 88 44 62 21 11 88 84 46 22 11
+                       18 88 44 62 21 11 88 84 46 22 11 10
+Glyph   372  Metrics:  H:14 W:0B X:00 Y:0F A:0B x:FB y:F6 a:00
+               Image:  55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55
+                       55 55 55 55 55 55 55 55 55 55 55 50
+Glyph   373  Metrics:  H:14 W:0B X:00 Y:0F A:0B x:FB y:F6 a:00
+               Image:  2A BF FC AA FF F2 AB FF CA AF FF 2A BF FC AA FF
+                       F2 AB FF CA AF FF 2A BF FC AA FF F0
+
+
+Strike 16   Size = 19
+----------------------
+Glyph   371  Metrics:  H:14 W:0B X:00 Y:0E A:0B x:FB y:F6 a:00
+               Image:  88 84 46 22 11 18 88 44 62 21 11 88 84 46 22 11
+                       18 88 44 62 21 11 88 84 46 22 11 10
+Glyph   372  Metrics:  H:14 W:0B X:00 Y:0E A:0B x:FB y:F6 a:00
+               Image:  55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55
+                       55 55 55 55 55 55 55 55 55 55 55 50
+Glyph   373  Metrics:  H:14 W:0B X:00 Y:0E A:0B x:FB y:F6 a:00
+               Image:  2A BF FC AA FF F2 AB FF CA AF FF 2A BF FC AA FF
+                       F2 AB FF CA AF FF 2A BF FC AA FF F0
+
+
+Strike 17   Size = 20
+----------------------
+Glyph   371  Metrics:  H:15 W:0a X:01 Y:10 A:0c
+               Image:  92 40 09 24 00 92 40 09 24 00 92 40 09 24 00 92
+                       40 09 24 00 92 40 09 24 00 92 40
+Glyph   372  Metrics:  H:16 W:0c X:00 Y:10 A:0c
+               Image:  55 5A AA 55 5A AA 55 5A AA 55 5A AA 55 5A AA 55
+                       5A AA 55 5A AA 55 5A AA 55 5A AA 55 5A AA 55 5A
+                       AA
+Glyph   373  Metrics:  H:16 W:0c X:00 Y:10 A:0c
+               Image:  55 5F FF 55 5F FF 55 5F FF 55 5F FF 55 5F FF 55
+                       5F FF 55 5F FF 55 5F FF 55 5F FF 55 5F FF 55 5F
+                       FF
+
+
+Strike 18   Size = 21
+----------------------
+Glyph   371  Metrics:  H:17 W:0D X:00 Y:11 A:0D x:FA y:F4 a:00
+               Image:  88 89 11 22 22 44 48 88 91 12 22 24 44 88 89 11
+                       22 22 44 48 88 91 12 22 24 44 88 89 11 22 22 44
+                       48 88 91 12 22 20
+Glyph   372  Metrics:  H:17 W:0D X:00 Y:11 A:0D x:FA y:F4 a:00
+               Image:  55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55
+                       55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55
+                       55 55 55 55 55 40
+Glyph   373  Metrics:  H:17 W:0D X:00 Y:11 A:0D x:FA y:F4 a:00
+               Image:  2A A9 55 7F FE 55 5F FF 95 57 FF E5 55 FF F9 55
+                       7F FE 55 5F FF 95 57 FF E5 55 FF F9 55 7F FE 55
+                       5F FF 95 57 FF E0
+
+
+
+
+'bloc' Table - Embedded Bitmap Location Table
+---------------------------------------------
+          Version:  2.0
+  Number of Sizes:  18
+
+Strike 1
+=========
+     Index Array Offset:  0x00000368
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:    3
+              Descender:    1
+              Max Width:    2
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    3
+           Max After BL:   -1
+  Vertical Line Metrics
+               Ascender:    3
+              Descender:    1
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:     4
+                 ppem Y:     4
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x00000004
+      Glyph:   371   Offset:  0x00000004
+      Glyph:   372   Offset:  0x0000000a
+      Glyph:   373   Offset:  0x00000010
+                Last Offset:  0x00000016
+
+
+Strike 2
+=========
+     Index Array Offset:  0x00000380
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:    4
+              Descender:    2
+              Max Width:    3
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    4
+           Max After BL:   -2
+  Vertical Line Metrics
+               Ascender:    4
+              Descender:    2
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:     5
+                 ppem Y:     5
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x00000016
+      Glyph:   371   Offset:  0x00000016
+      Glyph:   372   Offset:  0x0000001c
+      Glyph:   373   Offset:  0x00000024
+                Last Offset:  0x0000002c
+
+
+Strike 3
+=========
+     Index Array Offset:  0x00000398
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:    5
+              Descender:    2
+              Max Width:    4
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    5
+           Max After BL:   -2
+  Vertical Line Metrics
+               Ascender:    5
+              Descender:    2
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:     6
+                 ppem Y:     6
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x0000002c
+      Glyph:   371   Offset:  0x0000002c
+      Glyph:   372   Offset:  0x00000034
+      Glyph:   373   Offset:  0x0000003c
+                Last Offset:  0x00000045
+
+
+Strike 4
+=========
+     Index Array Offset:  0x000003b0
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:    6
+              Descender:    2
+              Max Width:    4
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    6
+           Max After BL:   -2
+  Vertical Line Metrics
+               Ascender:    6
+              Descender:    2
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:     7
+                 ppem Y:     7
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x00000045
+      Glyph:   371   Offset:  0x00000045
+      Glyph:   372   Offset:  0x0000004d
+      Glyph:   373   Offset:  0x00000056
+                Last Offset:  0x0000005f
+
+
+Strike 5
+=========
+     Index Array Offset:  0x000003c8
+   Size of Index Tables:  0x0000001c
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:    6
+              Descender:    2
+              Max Width:    5
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    6
+           Max After BL:   -2
+  Vertical Line Metrics
+               Ascender:    6
+              Descender:    2
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:     8
+                 ppem Y:     8
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     2
+               Image Format:     5
+     Image Data Offset Base:  0x0000005f
+              imageSize:  0x00000005
+                 Height:    8
+                  Width:    5
+         Hori Bearing X:    0
+         Hori Bearing Y:    6
+         Hori Advance W:    5
+         Vert Bearing X:   -2
+         Vert Bearing Y:   -4
+         Vert Advance W:    0
+      Glyph:   371   Offset:  0x0000005f
+      Glyph:   372   Offset:  0x00000064
+      Glyph:   373   Offset:  0x00000069
+
+
+Strike 6
+=========
+     Index Array Offset:  0x000003e4
+   Size of Index Tables:  0x0000001c
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:    9
+              Descender:    3
+              Max Width:    5
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    9
+           Max After BL:   -3
+  Vertical Line Metrics
+               Ascender:    9
+              Descender:    3
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:     9
+                 ppem Y:     9
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     2
+               Image Format:     5
+     Image Data Offset Base:  0x0000006e
+              imageSize:  0x00000008
+                 Height:   12
+                  Width:    5
+         Hori Bearing X:    0
+         Hori Bearing Y:    9
+         Hori Advance W:    5
+         Vert Bearing X:   -2
+         Vert Bearing Y:   -6
+         Vert Advance W:    0
+      Glyph:   371   Offset:  0x0000006e
+      Glyph:   372   Offset:  0x00000076
+      Glyph:   373   Offset:  0x0000007e
+
+
+Strike 7
+=========
+     Index Array Offset:  0x00000400
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:    9
+              Descender:    3
+              Max Width:    6
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    9
+           Max After BL:   -3
+  Vertical Line Metrics
+               Ascender:    9
+              Descender:    3
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    10
+                 ppem Y:    10
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x00000086
+      Glyph:   371   Offset:  0x00000086
+      Glyph:   372   Offset:  0x00000091
+      Glyph:   373   Offset:  0x0000009f
+                Last Offset:  0x000000ad
+
+
+Strike 8
+=========
+     Index Array Offset:  0x00000418
+   Size of Index Tables:  0x0000001c
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   11
+              Descender:    3
+              Max Width:    7
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   11
+           Max After BL:   -3
+  Vertical Line Metrics
+               Ascender:   11
+              Descender:    3
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    11
+                 ppem Y:    11
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     2
+               Image Format:     5
+     Image Data Offset Base:  0x000000ad
+              imageSize:  0x0000000d
+                 Height:   14
+                  Width:    7
+         Hori Bearing X:    0
+         Hori Bearing Y:   11
+         Hori Advance W:    7
+         Vert Bearing X:   -3
+         Vert Bearing Y:   -7
+         Vert Advance W:    0
+      Glyph:   371   Offset:  0x000000ad
+      Glyph:   372   Offset:  0x000000ba
+      Glyph:   373   Offset:  0x000000c7
+
+
+Strike 9
+=========
+     Index Array Offset:  0x00000434
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   11
+              Descender:    4
+              Max Width:    7
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   11
+           Max After BL:   -4
+  Vertical Line Metrics
+               Ascender:   11
+              Descender:    4
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    12
+                 ppem Y:    12
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x000000d4
+      Glyph:   371   Offset:  0x000000d4
+      Glyph:   372   Offset:  0x000000e5
+      Glyph:   373   Offset:  0x000000f8
+                Last Offset:  0x0000010b
+
+
+Strike 10
+=========
+     Index Array Offset:  0x0000044c
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   12
+              Descender:    4
+              Max Width:    8
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   12
+           Max After BL:   -4
+  Vertical Line Metrics
+               Ascender:   12
+              Descender:    4
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    13
+                 ppem Y:    13
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x0000010b
+      Glyph:   371   Offset:  0x0000010b
+      Glyph:   372   Offset:  0x0000011e
+      Glyph:   373   Offset:  0x00000133
+                Last Offset:  0x00000148
+
+
+Strike 11
+=========
+     Index Array Offset:  0x00000464
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   13
+              Descender:    4
+              Max Width:    8
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   13
+           Max After BL:   -4
+  Vertical Line Metrics
+               Ascender:   13
+              Descender:    4
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    14
+                 ppem Y:    14
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x00000148
+      Glyph:   371   Offset:  0x00000148
+      Glyph:   372   Offset:  0x0000015c
+      Glyph:   373   Offset:  0x00000172
+                Last Offset:  0x00000188
+
+
+Strike 12
+=========
+     Index Array Offset:  0x0000047c
+   Size of Index Tables:  0x0000001c
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   12
+              Descender:    5
+              Max Width:    9
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   12
+           Max After BL:   -5
+  Vertical Line Metrics
+               Ascender:   12
+              Descender:    5
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    15
+                 ppem Y:    15
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     2
+               Image Format:     5
+     Image Data Offset Base:  0x00000188
+              imageSize:  0x00000014
+                 Height:   17
+                  Width:    9
+         Hori Bearing X:    0
+         Hori Bearing Y:   12
+         Hori Advance W:    9
+         Vert Bearing X:   -4
+         Vert Bearing Y:   -9
+         Vert Advance W:    0
+      Glyph:   371   Offset:  0x00000188
+      Glyph:   372   Offset:  0x0000019c
+      Glyph:   373   Offset:  0x000001b0
+
+
+Strike 13
+=========
+     Index Array Offset:  0x00000498
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   13
+              Descender:    5
+              Max Width:   10
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   13
+           Max After BL:   -5
+  Vertical Line Metrics
+               Ascender:   13
+              Descender:    5
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    16
+                 ppem Y:    16
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x000001c4
+      Glyph:   371   Offset:  0x000001c4
+      Glyph:   372   Offset:  0x000001de
+      Glyph:   373   Offset:  0x000001fa
+                Last Offset:  0x00000216
+
+
+Strike 14
+=========
+     Index Array Offset:  0x000004b0
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   15
+              Descender:    5
+              Max Width:   10
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   15
+           Max After BL:   -5
+  Vertical Line Metrics
+               Ascender:   15
+              Descender:    5
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    17
+                 ppem Y:    17
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x00000216
+      Glyph:   371   Offset:  0x00000216
+      Glyph:   372   Offset:  0x00000232
+      Glyph:   373   Offset:  0x00000250
+                Last Offset:  0x0000026e
+
+
+Strike 15
+=========
+     Index Array Offset:  0x000004c8
+   Size of Index Tables:  0x0000001c
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   15
+              Descender:    5
+              Max Width:   11
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   15
+           Max After BL:   -5
+  Vertical Line Metrics
+               Ascender:   15
+              Descender:    5
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    18
+                 ppem Y:    18
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     2
+               Image Format:     5
+     Image Data Offset Base:  0x0000026e
+              imageSize:  0x0000001c
+                 Height:   20
+                  Width:   11
+         Hori Bearing X:    0
+         Hori Bearing Y:   15
+         Hori Advance W:   11
+         Vert Bearing X:   -5
+         Vert Bearing Y:  -10
+         Vert Advance W:    0
+      Glyph:   371   Offset:  0x0000026e
+      Glyph:   372   Offset:  0x0000028a
+      Glyph:   373   Offset:  0x000002a6
+
+
+Strike 16
+=========
+     Index Array Offset:  0x000004e4
+   Size of Index Tables:  0x0000001c
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   14
+              Descender:    6
+              Max Width:   11
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   14
+           Max After BL:   -6
+  Vertical Line Metrics
+               Ascender:   14
+              Descender:    6
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    19
+                 ppem Y:    19
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     2
+               Image Format:     5
+     Image Data Offset Base:  0x000002c2
+              imageSize:  0x0000001c
+                 Height:   20
+                  Width:   11
+         Hori Bearing X:    0
+         Hori Bearing Y:   14
+         Hori Advance W:   11
+         Vert Bearing X:   -5
+         Vert Bearing Y:  -10
+         Vert Advance W:    0
+      Glyph:   371   Offset:  0x000002c2
+      Glyph:   372   Offset:  0x000002de
+      Glyph:   373   Offset:  0x000002fa
+
+
+Strike 17
+=========
+     Index Array Offset:  0x00000500
+   Size of Index Tables:  0x00000018
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   16
+              Descender:    6
+              Max Width:   12
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   16
+           Max After BL:   -6
+  Vertical Line Metrics
+               Ascender:   16
+              Descender:    6
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    20
+                 ppem Y:    20
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     3
+               Image Format:     2
+     Image Data Offset Base:  0x00000316
+      Glyph:   371   Offset:  0x00000316
+      Glyph:   372   Offset:  0x00000336
+      Glyph:   373   Offset:  0x0000035c
+                Last Offset:  0x00000382
+
+
+Strike 18
+=========
+     Index Array Offset:  0x00000518
+   Size of Index Tables:  0x0000001c
+ Number of Index Tables:  1
+ Color Reference Offset:  0x00000000
+Horizontal Line Metrics
+               Ascender:   17
+              Descender:    6
+              Max Width:   13
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:   17
+           Max After BL:   -6
+  Vertical Line Metrics
+               Ascender:   17
+              Descender:    6
+              Max Width:    0
+            Caret Numer:    0
+            Caret Denom:    0
+           Caret Offset:    0
+            Min Orig SB:    0
+             Min Adv SB:    0
+           Max Befor BL:    0
+           Max After BL:    0
+    End of Line Metrics
+      Start Glyph Index:   371
+        End Glyph Index:   373
+                 ppem X:    21
+                 ppem Y:    21
+              Bit Depth:     1
+                  Flags:  0x01
+
+        Index Sub Table 1
+        ------------------
+          First Glyph Index:   371
+           Last Glyph Index:   373
+               Index Format:     2
+               Image Format:     5
+     Image Data Offset Base:  0x00000382
+              imageSize:  0x00000026
+                 Height:   23
+                  Width:   13
+         Hori Bearing X:    0
+         Hori Bearing Y:   17
+         Hori Advance W:   13
+         Vert Bearing X:   -6
+         Vert Bearing Y:  -12
+         Vert Advance W:    0
+      Glyph:   371   Offset:  0x00000382
+      Glyph:   372   Offset:  0x000003a8
+      Glyph:   373   Offset:  0x000003ce
+
+
+
+
+'bdat' Table - Embedded Bitmap Data Table
+-----------------------------------------
+          Version:  2.0
+
+Strike 1   Size = 4
+----------------------
+Glyph   371  Metrics:  H:03 W:01 X:01 Y:03 A:02
+               Image:  A0
+Glyph   372  Metrics:  H:04 W:02 X:00 Y:03 A:02
+               Image:  66
+Glyph   373  Metrics:  H:04 W:02 X:00 Y:03 A:02
+               Image:  77
+
+
+Strike 2   Size = 5
+----------------------
+Glyph   371  Metrics:  H:05 W:01 X:01 Y:04 A:03
+               Image:  A8
+Glyph   372  Metrics:  H:06 W:03 X:00 Y:04 A:03
+               Image:  55 55 40
+Glyph   373  Metrics:  H:06 W:03 X:00 Y:04 A:03
+               Image:  5D 75 C0
+
+
+Strike 3   Size = 6
+----------------------
+Glyph   371  Metrics:  H:06 W:03 X:01 Y:05 A:04
+               Image:  80 C0 40
+Glyph   372  Metrics:  H:07 W:03 X:01 Y:05 A:04
+               Image:  30 C3 08
+Glyph   373  Metrics:  H:07 W:04 X:00 Y:05 A:04
+               Image:  5A 5A 5A 50
+
+
+Strike 4   Size = 7
+----------------------
+Glyph   371  Metrics:  H:08 W:03 X:01 Y:06 A:04
+               Image:  30 C3 0C
+Glyph   372  Metrics:  H:08 W:04 X:00 Y:06 A:04
+               Image:  5A 5A 5A 5A
+Glyph   373  Metrics:  H:08 W:04 X:00 Y:06 A:04
+               Image:  5F 5F 5F 5F
+
+
+Strike 5   Size = 8
+----------------------
+Glyph   371  Metrics:  H:08 W:05 X:00 Y:06 A:05 x:FE y:FC a:00
+               Image:  89 22 48 92 24
+Glyph   372  Metrics:  H:08 W:05 X:00 Y:06 A:05 x:FE y:FC a:00
+               Image:  AA AA AA AA AA
+Glyph   373  Metrics:  H:08 W:05 X:00 Y:06 A:05 x:FE y:FC a:00
+               Image:  2F CB F2 FC BF
+
+
+Strike 6   Size = 9
+----------------------
+Glyph   371  Metrics:  H:0C W:05 X:00 Y:09 A:05 x:FE y:FA a:00
+               Image:  89 22 48 92 24 89 22 40
+Glyph   372  Metrics:  H:0C W:05 X:00 Y:09 A:05 x:FE y:FA a:00
+               Image:  AA AA AA AA AA AA AA A0
+Glyph   373  Metrics:  H:0C W:05 X:00 Y:09 A:05 x:FE y:FA a:00
+               Image:  57 D5 F5 7D 5F 57 D5 F0
+
+
+Strike 7   Size = 10
+----------------------
+Glyph   371  Metrics:  H:0b W:04 X:01 Y:09 A:06
+               Image:  90 90 90 90 90 90
+Glyph   372  Metrics:  H:0c W:06 X:00 Y:09 A:06
+               Image:  56 A5 6A 56 A5 6A 56 A5 6A
+Glyph   373  Metrics:  H:0c W:06 X:00 Y:09 A:06
+               Image:  57 F5 7F 57 F5 7F 57 F5 7F
+
+
+Strike 8   Size = 11
+----------------------
+Glyph   371  Metrics:  H:0E W:07 X:00 Y:0B A:07 x:FD y:F9 a:00
+               Image:  54 02 A8 05 40 2A 80 54 02 A8 05 40 00
+Glyph   372  Metrics:  H:0E W:07 X:00 Y:0B A:07 x:FD y:F9 a:00
+               Image:  55 55 55 55 55 55 55 55 55 55 55 55 40
+Glyph   373  Metrics:  H:0E W:07 X:00 Y:0B A:07 x:FD y:F9 a:00
+               Image:  55 FD 57 F5 5F D5 7F 55 FD 57 F5 5F C0
+
+
+Strike 9   Size = 12
+----------------------
+Glyph   371  Metrics:  H:0d W:07 X:00 Y:0b A:07
+               Image:  54 00 05 50 00 15 00 01 54 00 05 40
+Glyph   372  Metrics:  H:0f W:07 X:00 Y:0b A:07
+               Image:  54 AA AA AA AA AA AA AA AA AA AA AA AA 80
+Glyph   373  Metrics:  H:0f W:07 X:00 Y:0b A:07
+               Image:  2A 57 F9 5F E5 7F 95 FE 57 F9 5F E5 7F 80
+
+
+Strike 10   Size = 13
+----------------------
+Glyph   371  Metrics:  H:10 W:07 X:01 Y:0c A:08
+               Image:  23 10 8C 42 31 08 C4 23 10 8C 42 31 08 C4
+Glyph   372  Metrics:  H:10 W:08 X:00 Y:0c A:08
+               Image:  55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA
+Glyph   373  Metrics:  H:10 W:08 X:00 Y:0c A:08
+               Image:  55 FF 55 FF 55 FF 55 FF 55 FF 55 FF 55 FF 55 FF
+
+
+Strike 11   Size = 14
+----------------------
+Glyph   371  Metrics:  H:11 W:07 X:01 Y:0d A:08
+               Image:  23 10 8C 42 31 08 C4 23 10 8C 42 31 08 C4 22
+Glyph   372  Metrics:  H:11 W:08 X:00 Y:0d A:08
+               Image:  55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA
+                       55
+Glyph   373  Metrics:  H:11 W:08 X:00 Y:0d A:08
+               Image:  55 55 FF 55 FF 55 FF 55 FF 55 FF 55 FF 55 FF 55
+                       FF
+
+
+Strike 12   Size = 15
+----------------------
+Glyph   371  Metrics:  H:11 W:09 X:00 Y:0C A:09 x:FC y:F7 a:00
+               Image:  88 91 22 24 48 89 12 22 44 88 91 22 24 48 89 12
+                       22 44 88 80
+Glyph   372  Metrics:  H:11 W:09 X:00 Y:0C A:09 x:FC y:F7 a:00
+               Image:  55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55
+                       55 55 55 00
+Glyph   373  Metrics:  H:11 W:09 X:00 Y:0C A:09 x:FC y:F7 a:00
+               Image:  2A 95 7F E5 5F F9 57 FE 55 FF 95 7F E5 5F F9 57
+                       FE 55 FF 80
+
+
+Strike 13   Size = 16
+----------------------
+Glyph   371  Metrics:  H:12 W:09 X:01 Y:0d A:0a
+               Image:  22 44 48 91 12 24 44 89 11 22 44 48 91 12 24 44
+                       89 11 22 44 40
+Glyph   372  Metrics:  H:12 W:0a X:00 Y:0d A:0a
+               Image:  AA 95 5A A9 55 AA 95 5A A9 55 AA 95 5A A9 55 AA
+                       95 5A A9 55 AA 95 50
+Glyph   373  Metrics:  H:12 W:0a X:00 Y:0d A:0a
+               Image:  55 7F F5 57 FF 55 7F F5 57 FF 55 7F F5 57 FF 55
+                       7F F5 57 FF 55 7F F0
+
+
+Strike 14   Size = 17
+----------------------
+Glyph   371  Metrics:  H:14 W:09 X:01 Y:0f A:0a
+               Image:  88 91 22 24 48 89 12 22 44 88 91 22 24 48 89 12
+                       22 44 88 91 22 24 40
+Glyph   372  Metrics:  H:14 W:0a X:00 Y:0f A:0a
+               Image:  55 6A A5 56 AA 55 6A A5 56 AA 55 6A A5 56 AA 55
+                       6A A5 56 AA 55 6A A5 56 AA
+Glyph   373  Metrics:  H:14 W:0a X:00 Y:0f A:0a
+               Image:  55 7F F5 57 FF 55 7F F5 57 FF 55 7F F5 57 FF 55
+                       7F F5 57 FF 55 7F F5 57 FF
+
+
+Strike 15   Size = 18
+----------------------
+Glyph   371  Metrics:  H:14 W:0B X:00 Y:0F A:0B x:FB y:F6 a:00
+               Image:  88 84 46 22 11 18 88 44 62 21 11 88 84 46 22 11
+                       18 88 44 62 21 11 88 84 46 22 11 10
+Glyph   372  Metrics:  H:14 W:0B X:00 Y:0F A:0B x:FB y:F6 a:00
+               Image:  55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55
+                       55 55 55 55 55 55 55 55 55 55 55 50
+Glyph   373  Metrics:  H:14 W:0B X:00 Y:0F A:0B x:FB y:F6 a:00
+               Image:  2A BF FC AA FF F2 AB FF CA AF FF 2A BF FC AA FF
+                       F2 AB FF CA AF FF 2A BF FC AA FF F0
+
+
+Strike 16   Size = 19
+----------------------
+Glyph   371  Metrics:  H:14 W:0B X:00 Y:0E A:0B x:FB y:F6 a:00
+               Image:  88 84 46 22 11 18 88 44 62 21 11 88 84 46 22 11
+                       18 88 44 62 21 11 88 84 46 22 11 10
+Glyph   372  Metrics:  H:14 W:0B X:00 Y:0E A:0B x:FB y:F6 a:00
+               Image:  55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55
+                       55 55 55 55 55 55 55 55 55 55 55 50
+Glyph   373  Metrics:  H:14 W:0B X:00 Y:0E A:0B x:FB y:F6 a:00
+               Image:  2A BF FC AA FF F2 AB FF CA AF FF 2A BF FC AA FF
+                       F2 AB FF CA AF FF 2A BF FC AA FF F0
+
+
+Strike 17   Size = 20
+----------------------
+Glyph   371  Metrics:  H:15 W:0a X:01 Y:10 A:0c
+               Image:  92 40 09 24 00 92 40 09 24 00 92 40 09 24 00 92
+                       40 09 24 00 92 40 09 24 00 92 40
+Glyph   372  Metrics:  H:16 W:0c X:00 Y:10 A:0c
+               Image:  55 5A AA 55 5A AA 55 5A AA 55 5A AA 55 5A AA 55
+                       5A AA 55 5A AA 55 5A AA 55 5A AA 55 5A AA 55 5A
+                       AA
+Glyph   373  Metrics:  H:16 W:0c X:00 Y:10 A:0c
+               Image:  55 5F FF 55 5F FF 55 5F FF 55 5F FF 55 5F FF 55
+                       5F FF 55 5F FF 55 5F FF 55 5F FF 55 5F FF 55 5F
+                       FF
+
+
+Strike 18   Size = 21
+----------------------
+Glyph   371  Metrics:  H:17 W:0D X:00 Y:11 A:0D x:FA y:F4 a:00
+               Image:  88 89 11 22 22 44 48 88 91 12 22 24 44 88 89 11
+                       22 22 44 48 88 91 12 22 24 44 88 89 11 22 22 44
+                       48 88 91 12 22 20
+Glyph   372  Metrics:  H:17 W:0D X:00 Y:11 A:0D x:FA y:F4 a:00
+               Image:  55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55
+                       55 55 55 55 55 55 55 55 55 55 55 55 55 55 55 55
+                       55 55 55 55 55 40
+Glyph   373  Metrics:  H:17 W:0D X:00 Y:11 A:0D x:FA y:F4 a:00
+               Image:  2A A9 55 7F FE 55 5F FF 95 57 FF E5 55 FF F9 55
+                       7F FE 55 5F FF 95 57 FF E5 55 FF F9 55 7F FE 55
+                       5F FF 95 57 FF E0
+
+
+
+; 'GSUB' Table - Glyph Substitution
+; -------------------------------------
+
+GSUBHeader GSUBHeaderT0000  
+0X00010000            
+ScriptListT000a       
+FeatureListT0026      
+LookupListT006a       
+
+ScriptList ScriptListT000a  
+1                     
+                      ; ScriptRecord[0]
+'arab'                
+ScriptT0012           
+
+Script ScriptT0012  
+LangSysT0016          
+0                     
+
+LangSys LangSysT0016  
+NULL                  
+0XFFFF                
+5                     
+0                     
+1                     
+2                     
+3                     
+4                     
+
+FeatureList FeatureListT0026  
+5                     
+                      ; FeatureRecord[0]
+'init'                
+FeatureT0046          
+                      ; FeatureRecord[1]
+'medi'                
+FeatureT004c          
+                      ; FeatureRecord[2]
+'fina'                
+FeatureT0052          
+                      ; FeatureRecord[3]
+'liga'                
+FeatureT0058          
+                      ; FeatureRecord[4]
+'mset'                
+FeatureT0062          
+
+Feature FeatureT0046  
+NULL                  
+1                     
+0                     
+
+Feature FeatureT004c  
+NULL                  
+1                     
+1                     
+
+Feature FeatureT0052  
+NULL                  
+1                     
+2                     
+
+Feature FeatureT0058  
+NULL                  
+3                     
+3                     
+4                     
+5                     
+
+Feature FeatureT0062  
+NULL                  
+2                     
+6                     
+10                    
+
+LookupList LookupListT006a  
+14                    
+LookupT0088           
+LookupT0132           
+LookupT01b8           
+LookupT028e           
+LookupT0584           
+LookupT0610           
+LookupT08e2           
+LookupT0afc           
+LookupT0b2a           
+LookupT0b58           
+LookupT0baa           
+LookupT0e08           
+LookupT0e1c           
+LookupT0e30           
+
+Lookup LookupT0088  
+1                     
+1                     
+1                     
+SingleSubstFormat2T0090 
+
+SingleSubstFormat2 SingleSubstFormat2T0090  
+2                     
+CoverageFormat1T00e2  
+38                    
+801                   
+805                   
+809                   
+815                   
+819                   
+1011                  
+859                   
+864                   
+866                   
+871                   
+872                   
+873                   
+874                   
+883                   
+888                   
+907                   
+913                   
+919                   
+923                   
+927                   
+931                   
+935                   
+947                   
+951                   
+955                   
+959                   
+963                   
+967                   
+971                   
+975                   
+979                   
+983                   
+987                   
+991                   
+995                   
+999                   
+1003                  
+1011                  
+
+CoverageFormat1 CoverageFormat1T00e2  
+1                     
+38                    
+799                   
+803                   
+807                   
+813                   
+817                   
+821                   
+823                   
+825                   
+826                   
+829                   
+830                   
+831                   
+832                   
+835                   
+837                   
+905                   
+911                   
+917                   
+921                   
+925                   
+929                   
+933                   
+945                   
+949                   
+953                   
+957                   
+961                   
+965                   
+969                   
+973                   
+977                   
+981                   
+985                   
+989                   
+993                   
+997                   
+1001                  
+1009                  
+
+Lookup LookupT0132  
+1                     
+1                     
+1                     
+SingleSubstFormat2T013a 
+
+SingleSubstFormat2 SingleSubstFormat2T013a  
+2                     
+CoverageFormat1T017a  
+29                    
+802                   
+806                   
+810                   
+816                   
+820                   
+1012                  
+908                   
+914                   
+920                   
+924                   
+928                   
+932                   
+936                   
+948                   
+952                   
+956                   
+960                   
+964                   
+968                   
+972                   
+976                   
+980                   
+984                   
+988                   
+992                   
+996                   
+1000                  
+1004                  
+1012                  
+
+CoverageFormat1 CoverageFormat1T017a  
+1                     
+29                    
+799                   
+803                   
+807                   
+813                   
+817                   
+821                   
+905                   
+911                   
+917                   
+921                   
+925                   
+929                   
+933                   
+945                   
+949                   
+953                   
+957                   
+961                   
+965                   
+969                   
+973                   
+977                   
+981                   
+985                   
+989                   
+993                   
+997                   
+1001                  
+1009                  
+
+Lookup LookupT01b8  
+1                     
+1                     
+1                     
+SingleSubstFormat2T01c0 
+
+SingleSubstFormat2 SingleSubstFormat2T01c0  
+2                     
+CoverageFormat1T0228  
+49                    
+798                   
+800                   
+804                   
+808                   
+812                   
+814                   
+818                   
+822                   
+846                   
+852                   
+898                   
+900                   
+902                   
+904                   
+906                   
+910                   
+912                   
+916                   
+918                   
+922                   
+926                   
+930                   
+934                   
+938                   
+940                   
+942                   
+944                   
+946                   
+950                   
+954                   
+958                   
+962                   
+966                   
+970                   
+974                   
+978                   
+982                   
+986                   
+990                   
+994                   
+998                   
+1002                  
+1006                  
+1008                  
+1010                  
+1014                  
+1016                  
+1018                  
+1020                  
+
+CoverageFormat1 CoverageFormat1T0228  
+1                     
+49                    
+797                   
+799                   
+803                   
+807                   
+811                   
+813                   
+817                   
+821                   
+824                   
+836                   
+897                   
+899                   
+901                   
+903                   
+905                   
+909                   
+911                   
+915                   
+917                   
+921                   
+925                   
+929                   
+933                   
+937                   
+939                   
+941                   
+943                   
+945                   
+949                   
+953                   
+957                   
+961                   
+965                   
+969                   
+973                   
+977                   
+981                   
+985                   
+989                   
+993                   
+997                   
+1001                  
+1005                  
+1007                  
+1009                  
+1013                  
+1015                  
+1017                  
+1019                  
+
+Lookup LookupT028e  
+4                     
+9                     
+1                     
+LigatureSubstFormat1T0296 
+
+LigatureSubstFormat1 LigatureSubstFormat1T0296  
+1                     
+CoverageFormat1T0556  
+21                    
+LigatureSetT02c6      
+LigatureSetT02d0      
+LigatureSetT02da      
+LigatureSetT0314      
+LigatureSetT0336      
+LigatureSetT0368      
+LigatureSetT038a      
+LigatureSetT039c      
+LigatureSetT03a6      
+LigatureSetT03b0      
+LigatureSetT03ba      
+LigatureSetT03c4      
+LigatureSetT03ce      
+LigatureSetT03e0      
+LigatureSetT0478      
+LigatureSetT049a      
+LigatureSetT04bc      
+LigatureSetT04f6      
+LigatureSetT0508      
+LigatureSetT0512      
+LigatureSetT0544      
+
+LigatureSet LigatureSetT02c6  
+1                     
+LigatureT02ca         
+
+Ligature LigatureT02ca  
+782                   
+2                     
+1004                  
+
+LigatureSet LigatureSetT02d0  
+1                     
+LigatureT02d4         
+
+Ligature LigatureT02d4  
+785                   
+2                     
+996                   
+
+LigatureSet LigatureSetT02da  
+7                     
+LigatureT02ea         
+LigatureT02f0         
+LigatureT02f6         
+LigatureT02fc         
+LigatureT0302         
+LigatureT0308         
+LigatureT030e         
+
+Ligature LigatureT02ea  
+823                   
+2                     
+994                   
+
+Ligature LigatureT02f0  
+824                   
+2                     
+1008                  
+
+Ligature LigatureT02f6  
+856                   
+2                     
+928                   
+
+Ligature LigatureT02fc  
+857                   
+2                     
+932                   
+
+Ligature LigatureT0302  
+858                   
+2                     
+936                   
+
+Ligature LigatureT0308  
+859                   
+2                     
+996                   
+
+Ligature LigatureT030e  
+860                   
+2                     
+1004                  
+
+LigatureSet LigatureSetT0314  
+4                     
+LigatureT031e         
+LigatureT0324         
+LigatureT032a         
+LigatureT0330         
+
+Ligature LigatureT031e  
+844                   
+2                     
+942                   
+
+Ligature LigatureT0324  
+845                   
+2                     
+998                   
+
+Ligature LigatureT032a  
+846                   
+2                     
+1008                  
+
+Ligature LigatureT0330  
+847                   
+2                     
+1010                  
+
+LigatureSet LigatureSetT0336  
+6                     
+LigatureT0344         
+LigatureT034a         
+LigatureT0350         
+LigatureT0356         
+LigatureT035c         
+LigatureT0362         
+
+Ligature LigatureT0344  
+825                   
+2                     
+994                   
+
+Ligature LigatureT034a  
+861                   
+2                     
+928                   
+
+Ligature LigatureT0350  
+862                   
+2                     
+932                   
+
+Ligature LigatureT0356  
+863                   
+2                     
+936                   
+
+Ligature LigatureT035c  
+864                   
+2                     
+996                   
+
+Ligature LigatureT0362  
+865                   
+2                     
+1004                  
+
+LigatureSet LigatureSetT0368  
+4                     
+LigatureT0372         
+LigatureT0378         
+LigatureT037e         
+LigatureT0384         
+
+Ligature LigatureT0372  
+848                   
+2                     
+942                   
+
+Ligature LigatureT0378  
+849                   
+2                     
+998                   
+
+Ligature LigatureT037e  
+850                   
+2                     
+1008                  
+
+Ligature LigatureT0384  
+851                   
+2                     
+1010                  
+
+LigatureSet LigatureSetT038a  
+2                     
+LigatureT0390         
+LigatureT0396         
+
+Ligature LigatureT0390  
+826                   
+2                     
+994                   
+
+Ligature LigatureT0396  
+866                   
+2                     
+996                   
+
+LigatureSet LigatureSetT039c  
+1                     
+LigatureT03a0         
+
+Ligature LigatureT03a0  
+867                   
+2                     
+996                   
+
+LigatureSet LigatureSetT03a6  
+1                     
+LigatureT03aa         
+
+Ligature LigatureT03aa  
+868                   
+2                     
+996                   
+
+LigatureSet LigatureSetT03b0  
+1                     
+LigatureT03b4         
+
+Ligature LigatureT03b4  
+869                   
+2                     
+996                   
+
+LigatureSet LigatureSetT03ba  
+1                     
+LigatureT03be         
+
+Ligature LigatureT03be  
+870                   
+2                     
+996                   
+
+LigatureSet LigatureSetT03c4  
+1                     
+LigatureT03c8         
+
+Ligature LigatureT03c8  
+889                   
+2                     
+996                   
+
+LigatureSet LigatureSetT03ce  
+2                     
+LigatureT03d4         
+LigatureT03da         
+
+Ligature LigatureT03d4  
+827                   
+2                     
+1008                  
+
+Ligature LigatureT03da  
+828                   
+2                     
+1010                  
+
+LigatureSet LigatureSetT03e0  
+18                    
+LigatureT0406         
+LigatureT040e         
+LigatureT0416         
+LigatureT041e         
+LigatureT0424         
+LigatureT042a         
+LigatureT0430         
+LigatureT0436         
+LigatureT043c         
+LigatureT0442         
+LigatureT0448         
+LigatureT044e         
+LigatureT0454         
+LigatureT045a         
+LigatureT0460         
+LigatureT0466         
+LigatureT046c         
+LigatureT0472         
+
+Ligature LigatureT0406  
+781                   
+3                     
+996                   
+928                   
+
+Ligature LigatureT040e  
+894                   
+3                     
+996                   
+932                   
+
+Ligature LigatureT0416  
+895                   
+3                     
+992                   
+1002                  
+
+Ligature LigatureT041e  
+829                   
+2                     
+926                   
+
+Ligature LigatureT0424  
+830                   
+2                     
+930                   
+
+Ligature LigatureT042a  
+831                   
+2                     
+934                   
+
+Ligature LigatureT0430  
+832                   
+2                     
+994                   
+
+Ligature LigatureT0436  
+833                   
+2                     
+1008                  
+
+Ligature LigatureT043c  
+834                   
+2                     
+1010                  
+
+Ligature LigatureT0442  
+871                   
+2                     
+928                   
+
+Ligature LigatureT0448  
+872                   
+2                     
+932                   
+
+Ligature LigatureT044e  
+873                   
+2                     
+936                   
+
+Ligature LigatureT0454  
+874                   
+2                     
+996                   
+
+Ligature LigatureT045a  
+875                   
+2                     
+1004                  
+
+Ligature LigatureT0460  
+1013                  
+2                     
+898                   
+
+Ligature LigatureT0466  
+1015                  
+2                     
+900                   
+
+Ligature LigatureT046c  
+1017                  
+2                     
+904                   
+
+Ligature LigatureT0472  
+1019                  
+2                     
+910                   
+
+LigatureSet LigatureSetT0478  
+4                     
+LigatureT0482         
+LigatureT0488         
+LigatureT048e         
+LigatureT0494         
+
+Ligature LigatureT0482  
+1014                  
+2                     
+898                   
+
+Ligature LigatureT0488  
+1016                  
+2                     
+900                   
+
+Ligature LigatureT048e  
+1018                  
+2                     
+904                   
+
+Ligature LigatureT0494  
+1020                  
+2                     
+910                   
+
+LigatureSet LigatureSetT049a  
+4                     
+LigatureT04a4         
+LigatureT04aa         
+LigatureT04b0         
+LigatureT04b6         
+
+Ligature LigatureT04a4  
+876                   
+2                     
+928                   
+
+Ligature LigatureT04aa  
+877                   
+2                     
+932                   
+
+Ligature LigatureT04b0  
+878                   
+2                     
+936                   
+
+Ligature LigatureT04b6  
+879                   
+2                     
+996                   
+
+LigatureSet LigatureSetT04bc  
+7                     
+LigatureT04cc         
+LigatureT04d2         
+LigatureT04d8         
+LigatureT04de         
+LigatureT04e4         
+LigatureT04ea         
+LigatureT04f0         
+
+Ligature LigatureT04cc  
+783                   
+2                     
+1004                  
+
+Ligature LigatureT04d2  
+835                   
+2                     
+994                   
+
+Ligature LigatureT04d8  
+836                   
+2                     
+1008                  
+
+Ligature LigatureT04de  
+880                   
+2                     
+928                   
+
+Ligature LigatureT04e4  
+881                   
+2                     
+932                   
+
+Ligature LigatureT04ea  
+882                   
+2                     
+936                   
+
+Ligature LigatureT04f0  
+883                   
+2                     
+996                   
+
+LigatureSet LigatureSetT04f6  
+2                     
+LigatureT04fc         
+LigatureT0502         
+
+Ligature LigatureT04fc  
+852                   
+2                     
+1008                  
+
+Ligature LigatureT0502  
+853                   
+2                     
+1010                  
+
+LigatureSet LigatureSetT0508  
+1                     
+LigatureT050c         
+
+Ligature LigatureT050c  
+884                   
+2                     
+996                   
+
+LigatureSet LigatureSetT0512  
+6                     
+LigatureT0520         
+LigatureT0526         
+LigatureT052c         
+LigatureT0532         
+LigatureT0538         
+LigatureT053e         
+
+Ligature LigatureT0520  
+837                   
+2                     
+994                   
+
+Ligature LigatureT0526  
+838                   
+2                     
+1008                  
+
+Ligature LigatureT052c  
+885                   
+2                     
+928                   
+
+Ligature LigatureT0532  
+886                   
+2                     
+932                   
+
+Ligature LigatureT0538  
+887                   
+2                     
+936                   
+
+Ligature LigatureT053e  
+888                   
+2                     
+996                   
+
+LigatureSet LigatureSetT0544  
+2                     
+LigatureT054a         
+LigatureT0550         
+
+Ligature LigatureT054a  
+854                   
+2                     
+942                   
+
+Ligature LigatureT0550  
+855                   
+2                     
+998                   
+
+CoverageFormat1 CoverageFormat1T0556  
+1                     
+21                    
+801                   
+809                   
+913                   
+914                   
+919                   
+920                   
+923                   
+927                   
+931                   
+935                   
+947                   
+951                   
+979                   
+991                   
+992                   
+995                   
+999                   
+1000                  
+1003                  
+1011                  
+1012                  
+
+Lookup LookupT0584  
+4                     
+7                     
+1                     
+LigatureSubstFormat1T058c 
+
+LigatureSubstFormat1 LigatureSubstFormat1T058c  
+1                     
+CoverageFormat1T0606  
+3                     
+LigatureSetT0598      
+LigatureSetT05ca      
+LigatureSetT05f4      
+
+LigatureSet LigatureSetT0598  
+6                     
+LigatureT05a6         
+LigatureT05ac         
+LigatureT05b2         
+LigatureT05b8         
+LigatureT05be         
+LigatureT05c4         
+
+Ligature LigatureT05a6  
+786                   
+2                     
+753                   
+
+Ligature LigatureT05ac  
+839                   
+2                     
+754                   
+
+Ligature LigatureT05b2  
+840                   
+2                     
+755                   
+
+Ligature LigatureT05b8  
+841                   
+2                     
+756                   
+
+Ligature LigatureT05be  
+842                   
+2                     
+757                   
+
+Ligature LigatureT05c4  
+843                   
+2                     
+758                   
+
+LigatureSet LigatureSetT05ca  
+5                     
+LigatureT05d6         
+LigatureT05dc         
+LigatureT05e2         
+LigatureT05e8         
+LigatureT05ee         
+
+Ligature LigatureT05d6  
+790                   
+2                     
+756                   
+
+Ligature LigatureT05dc  
+791                   
+2                     
+753                   
+
+Ligature LigatureT05e2  
+792                   
+2                     
+760                   
+
+Ligature LigatureT05e8  
+793                   
+2                     
+757                   
+
+Ligature LigatureT05ee  
+794                   
+2                     
+754                   
+
+LigatureSet LigatureSetT05f4  
+2                     
+LigatureT05fa         
+LigatureT0600         
+
+Ligature LigatureT05fa  
+788                   
+2                     
+758                   
+
+Ligature LigatureT0600  
+789                   
+2                     
+755                   
+
+CoverageFormat1 CoverageFormat1T0606  
+1                     
+3                     
+759                   
+775                   
+787                   
+
+Lookup LookupT0610  
+4                     
+1                     
+1                     
+LigatureSubstFormat1T0618 
+
+LigatureSubstFormat1 LigatureSubstFormat1T0618  
+1                     
+CoverageFormat1T08be  
+16                    
+LigatureSetT063e      
+LigatureSetT0668      
+LigatureSetT0692      
+LigatureSetT06a4      
+LigatureSetT06b6      
+LigatureSetT0718      
+LigatureSetT077a      
+LigatureSetT0784      
+LigatureSetT078e      
+LigatureSetT0798      
+LigatureSetT07a2      
+LigatureSetT07cc      
+LigatureSetT07f6      
+LigatureSetT0808      
+LigatureSetT081a      
+LigatureSetT086c      
+
+LigatureSet LigatureSetT063e  
+5                     
+LigatureT064a         
+LigatureT0650         
+LigatureT0656         
+LigatureT065c         
+LigatureT0662         
+
+Ligature LigatureT064a  
+1077                  
+2                     
+756                   
+
+Ligature LigatureT0650  
+1078                  
+2                     
+753                   
+
+Ligature LigatureT0656  
+1086                  
+2                     
+760                   
+
+Ligature LigatureT065c  
+1087                  
+2                     
+757                   
+
+Ligature LigatureT0662  
+1088                  
+2                     
+754                   
+
+LigatureSet LigatureSetT0668  
+5                     
+LigatureT0674         
+LigatureT067a         
+LigatureT0680         
+LigatureT0686         
+LigatureT068c         
+
+Ligature LigatureT0674  
+1120                  
+2                     
+756                   
+
+Ligature LigatureT067a  
+1121                  
+2                     
+753                   
+
+Ligature LigatureT0680  
+1122                  
+2                     
+760                   
+
+Ligature LigatureT0686  
+1123                  
+2                     
+757                   
+
+Ligature LigatureT068c  
+1124                  
+2                     
+754                   
+
+LigatureSet LigatureSetT0692  
+2                     
+LigatureT0698         
+LigatureT069e         
+
+Ligature LigatureT0698  
+1098                  
+2                     
+758                   
+
+Ligature LigatureT069e  
+1099                  
+2                     
+755                   
+
+LigatureSet LigatureSetT06a4  
+2                     
+LigatureT06aa         
+LigatureT06b0         
+
+Ligature LigatureT06aa  
+1125                  
+2                     
+758                   
+
+Ligature LigatureT06b0  
+1126                  
+2                     
+755                   
+
+LigatureSet LigatureSetT06b6  
+12                    
+LigatureT06d0         
+LigatureT06d6         
+LigatureT06dc         
+LigatureT06e2         
+LigatureT06e8         
+LigatureT06ee         
+LigatureT06f4         
+LigatureT06fa         
+LigatureT0700         
+LigatureT0706         
+LigatureT070c         
+LigatureT0712         
+
+Ligature LigatureT06d0  
+1077                  
+2                     
+790                   
+
+Ligature LigatureT06d6  
+1078                  
+2                     
+791                   
+
+Ligature LigatureT06dc  
+1086                  
+2                     
+792                   
+
+Ligature LigatureT06e2  
+1087                  
+2                     
+793                   
+
+Ligature LigatureT06e8  
+1088                  
+2                     
+794                   
+
+Ligature LigatureT06ee  
+1098                  
+2                     
+788                   
+
+Ligature LigatureT06f4  
+1099                  
+2                     
+789                   
+
+Ligature LigatureT06fa  
+797                   
+2                     
+796                   
+
+Ligature LigatureT0700  
+891                   
+2                     
+753                   
+
+Ligature LigatureT0706  
+897                   
+2                     
+777                   
+
+Ligature LigatureT070c  
+899                   
+2                     
+775                   
+
+Ligature LigatureT0712  
+903                   
+2                     
+787                   
+
+LigatureSet LigatureSetT0718  
+12                    
+LigatureT0732         
+LigatureT0738         
+LigatureT073e         
+LigatureT0744         
+LigatureT074a         
+LigatureT0750         
+LigatureT0756         
+LigatureT075c         
+LigatureT0762         
+LigatureT0768         
+LigatureT076e         
+LigatureT0774         
+
+Ligature LigatureT0732  
+1120                  
+2                     
+790                   
+
+Ligature LigatureT0738  
+1121                  
+2                     
+791                   
+
+Ligature LigatureT073e  
+1122                  
+2                     
+792                   
+
+Ligature LigatureT0744  
+1123                  
+2                     
+793                   
+
+Ligature LigatureT074a  
+1124                  
+2                     
+794                   
+
+Ligature LigatureT0750  
+1125                  
+2                     
+788                   
+
+Ligature LigatureT0756  
+1126                  
+2                     
+789                   
+
+Ligature LigatureT075c  
+798                   
+2                     
+796                   
+
+Ligature LigatureT0762  
+890                   
+2                     
+753                   
+
+Ligature LigatureT0768  
+898                   
+2                     
+777                   
+
+Ligature LigatureT076e  
+900                   
+2                     
+775                   
+
+Ligature LigatureT0774  
+904                   
+2                     
+787                   
+
+LigatureSet LigatureSetT077a  
+1                     
+LigatureT077e         
+
+Ligature LigatureT077e  
+901                   
+2                     
+775                   
+
+LigatureSet LigatureSetT0784  
+1                     
+LigatureT0788         
+
+Ligature LigatureT0788  
+902                   
+2                     
+775                   
+
+LigatureSet LigatureSetT078e  
+1                     
+LigatureT0792         
+
+Ligature LigatureT0792  
+905                   
+2                     
+775                   
+
+LigatureSet LigatureSetT0798  
+1                     
+LigatureT079c         
+
+Ligature LigatureT079c  
+906                   
+2                     
+775                   
+
+LigatureSet LigatureSetT07a2  
+5                     
+LigatureT07ae         
+LigatureT07b4         
+LigatureT07ba         
+LigatureT07c0         
+LigatureT07c6         
+
+Ligature LigatureT07ae  
+1025                  
+2                     
+756                   
+
+Ligature LigatureT07b4  
+1026                  
+2                     
+753                   
+
+Ligature LigatureT07ba  
+1034                  
+2                     
+760                   
+
+Ligature LigatureT07c0  
+1035                  
+2                     
+757                   
+
+Ligature LigatureT07c6  
+1036                  
+2                     
+754                   
+
+LigatureSet LigatureSetT07cc  
+5                     
+LigatureT07d8         
+LigatureT07de         
+LigatureT07e4         
+LigatureT07ea         
+LigatureT07f0         
+
+Ligature LigatureT07d8  
+1051                  
+2                     
+756                   
+
+Ligature LigatureT07de  
+1052                  
+2                     
+753                   
+
+Ligature LigatureT07e4  
+1060                  
+2                     
+760                   
+
+Ligature LigatureT07ea  
+1061                  
+2                     
+757                   
+
+Ligature LigatureT07f0  
+1062                  
+2                     
+754                   
+
+LigatureSet LigatureSetT07f6  
+2                     
+LigatureT07fc         
+LigatureT0802         
+
+Ligature LigatureT07fc  
+1046                  
+2                     
+758                   
+
+Ligature LigatureT0802  
+1047                  
+2                     
+755                   
+
+LigatureSet LigatureSetT0808  
+2                     
+LigatureT080e         
+LigatureT0814         
+
+Ligature LigatureT080e  
+1072                  
+2                     
+758                   
+
+Ligature LigatureT0814  
+1073                  
+2                     
+755                   
+
+LigatureSet LigatureSetT081a  
+10                    
+LigatureT0830         
+LigatureT0836         
+LigatureT083c         
+LigatureT0842         
+LigatureT0848         
+LigatureT084e         
+LigatureT0854         
+LigatureT085a         
+LigatureT0860         
+LigatureT0866         
+
+Ligature LigatureT0830  
+1025                  
+2                     
+790                   
+
+Ligature LigatureT0836  
+1026                  
+2                     
+791                   
+
+Ligature LigatureT083c  
+1034                  
+2                     
+792                   
+
+Ligature LigatureT0842  
+1035                  
+2                     
+793                   
+
+Ligature LigatureT0848  
+1036                  
+2                     
+794                   
+
+Ligature LigatureT084e  
+1046                  
+2                     
+788                   
+
+Ligature LigatureT0854  
+1047                  
+2                     
+789                   
+
+Ligature LigatureT085a  
+1013                  
+2                     
+777                   
+
+Ligature LigatureT0860  
+1015                  
+2                     
+775                   
+
+Ligature LigatureT0866  
+1017                  
+2                     
+787                   
+
+LigatureSet LigatureSetT086c  
+10                    
+LigatureT0882         
+LigatureT0888         
+LigatureT088e         
+LigatureT0894         
+LigatureT089a         
+LigatureT08a0         
+LigatureT08a6         
+LigatureT08ac         
+LigatureT08b2         
+LigatureT08b8         
+
+Ligature LigatureT0882  
+1051                  
+2                     
+790                   
+
+Ligature LigatureT0888  
+1052                  
+2                     
+791                   
+
+Ligature LigatureT088e  
+1060                  
+2                     
+792                   
+
+Ligature LigatureT0894  
+1061                  
+2                     
+793                   
+
+Ligature LigatureT089a  
+1062                  
+2                     
+794                   
+
+Ligature LigatureT08a0  
+1072                  
+2                     
+788                   
+
+Ligature LigatureT08a6  
+1073                  
+2                     
+789                   
+
+Ligature LigatureT08ac  
+1014                  
+2                     
+777                   
+
+Ligature LigatureT08b2  
+1016                  
+2                     
+775                   
+
+Ligature LigatureT08b8  
+1018                  
+2                     
+787                   
+
+CoverageFormat1 CoverageFormat1T08be  
+1                     
+16                    
+899                   
+900                   
+903                   
+904                   
+909                   
+910                   
+1005                  
+1006                  
+1009                  
+1010                  
+1015                  
+1016                  
+1017                  
+1018                  
+1019                  
+1020                  
+
+Lookup LookupT08e2  
+5                     
+1                     
+1                     
+ContextSubstFormat2T08ea 
+
+ContextSubstFormat2 ContextSubstFormat2T08ea  
+2                     
+CoverageFormat1T0926  
+ClassDefFormat2T09ea  
+5                     
+NULL                  
+NULL                  
+SubClassSetT08fc      
+SubClassSetT090a      
+SubClassSetT0918      
+
+SubClassSet SubClassSetT08fc  
+1                     
+SubClassRuleT0900     
+
+SubClassRule SubClassRuleT0900  
+2                     
+1                     
+1                     
+                      ; SubstLookupRecord[0]
+1                     
+7                     
+
+SubClassSet SubClassSetT090a  
+1                     
+SubClassRuleT090e     
+
+SubClassRule SubClassRuleT090e  
+2                     
+1                     
+1                     
+                      ; SubstLookupRecord[0]
+1                     
+8                     
+
+SubClassSet SubClassSetT0918  
+1                     
+SubClassRuleT091c     
+
+SubClassRule SubClassRuleT091c  
+2                     
+1                     
+1                     
+                      ; SubstLookupRecord[0]
+1                     
+9                     
+
+CoverageFormat1 CoverageFormat1T0926  
+1                     
+96                    
+776                   
+782                   
+799                   
+800                   
+801                   
+802                   
+807                   
+808                   
+809                   
+810                   
+821                   
+822                   
+823                   
+824                   
+837                   
+838                   
+844                   
+846                   
+847                   
+850                   
+851                   
+852                   
+853                   
+854                   
+859                   
+860                   
+865                   
+876                   
+877                   
+878                   
+879                   
+888                   
+896                   
+901                   
+902                   
+906                   
+911                   
+912                   
+913                   
+914                   
+917                   
+918                   
+925                   
+926                   
+927                   
+928                   
+929                   
+930                   
+931                   
+932                   
+937                   
+938                   
+941                   
+942                   
+945                   
+946                   
+947                   
+948                   
+953                   
+954                   
+955                   
+956                   
+957                   
+958                   
+959                   
+960                   
+969                   
+970                   
+971                   
+972                   
+978                   
+982                   
+993                   
+994                   
+995                   
+996                   
+1001                  
+1002                  
+1003                  
+1004                  
+1005                  
+1006                  
+1007                  
+1008                  
+1009                  
+1010                  
+1011                  
+1012                  
+1013                  
+1014                  
+1015                  
+1016                  
+1017                  
+1018                  
+1019                  
+1020                  
+
+ClassDefFormat2 ClassDefFormat2T09ea  
+2                     
+45                    
+                      ; ClassRangeRecord[0]
+753                   
+754                   
+1                     
+                      ; ClassRangeRecord[1]
+756                   
+757                   
+1                     
+                      ; ClassRangeRecord[2]
+759                   
+760                   
+1                     
+                      ; ClassRangeRecord[3]
+774                   
+775                   
+1                     
+                      ; ClassRangeRecord[4]
+776                   
+776                   
+3                     
+                      ; ClassRangeRecord[5]
+777                   
+777                   
+1                     
+                      ; ClassRangeRecord[6]
+782                   
+782                   
+2                     
+                      ; ClassRangeRecord[7]
+786                   
+786                   
+1                     
+                      ; ClassRangeRecord[8]
+790                   
+794                   
+1                     
+                      ; ClassRangeRecord[9]
+796                   
+796                   
+1                     
+                      ; ClassRangeRecord[10]
+799                   
+802                   
+3                     
+                      ; ClassRangeRecord[11]
+807                   
+807                   
+3                     
+                      ; ClassRangeRecord[12]
+808                   
+810                   
+2                     
+                      ; ClassRangeRecord[13]
+821                   
+822                   
+3                     
+                      ; ClassRangeRecord[14]
+823                   
+824                   
+2                     
+                      ; ClassRangeRecord[15]
+837                   
+838                   
+2                     
+                      ; ClassRangeRecord[16]
+839                   
+843                   
+1                     
+                      ; ClassRangeRecord[17]
+844                   
+844                   
+3                     
+                      ; ClassRangeRecord[18]
+846                   
+847                   
+3                     
+                      ; ClassRangeRecord[19]
+850                   
+854                   
+2                     
+                      ; ClassRangeRecord[20]
+859                   
+860                   
+2                     
+                      ; ClassRangeRecord[21]
+865                   
+865                   
+2                     
+                      ; ClassRangeRecord[22]
+876                   
+879                   
+2                     
+                      ; ClassRangeRecord[23]
+888                   
+888                   
+2                     
+                      ; ClassRangeRecord[24]
+896                   
+896                   
+3                     
+                      ; ClassRangeRecord[25]
+901                   
+902                   
+2                     
+                      ; ClassRangeRecord[26]
+906                   
+906                   
+3                     
+                      ; ClassRangeRecord[27]
+911                   
+914                   
+3                     
+                      ; ClassRangeRecord[28]
+917                   
+918                   
+2                     
+                      ; ClassRangeRecord[29]
+925                   
+925                   
+3                     
+                      ; ClassRangeRecord[30]
+926                   
+928                   
+2                     
+                      ; ClassRangeRecord[31]
+929                   
+929                   
+3                     
+                      ; ClassRangeRecord[32]
+930                   
+932                   
+2                     
+                      ; ClassRangeRecord[33]
+937                   
+938                   
+2                     
+                      ; ClassRangeRecord[34]
+941                   
+942                   
+2                     
+                      ; ClassRangeRecord[35]
+945                   
+948                   
+3                     
+                      ; ClassRangeRecord[36]
+953                   
+956                   
+3                     
+                      ; ClassRangeRecord[37]
+957                   
+960                   
+2                     
+                      ; ClassRangeRecord[38]
+969                   
+972                   
+2                     
+                      ; ClassRangeRecord[39]
+978                   
+978                   
+2                     
+                      ; ClassRangeRecord[40]
+982                   
+982                   
+2                     
+                      ; ClassRangeRecord[41]
+993                   
+996                   
+3                     
+                      ; ClassRangeRecord[42]
+1001                  
+1004                  
+2                     
+                      ; ClassRangeRecord[43]
+1005                  
+1012                  
+3                     
+                      ; ClassRangeRecord[44]
+1013                  
+1020                  
+4                     
+
+Lookup LookupT0afc  
+1                     
+1                     
+1                     
+SingleSubstFormat2T0b04 
+
+SingleSubstFormat2 SingleSubstFormat2T0b04  
+2                     
+CoverageFormat1T0b86  
+16                    
+1024                  
+1033                  
+1023                  
+1032                  
+1029                  
+1028                  
+1031                  
+1022                  
+1030                  
+1038                  
+1027                  
+1042                  
+1040                  
+1037                  
+1041                  
+1039                  
+
+Lookup LookupT0b2a  
+1                     
+1                     
+1                     
+SingleSubstFormat2T0b32 
+
+SingleSubstFormat2 SingleSubstFormat2T0b32  
+2                     
+CoverageFormat1T0b86  
+16                    
+1050                  
+1059                  
+1049                  
+1058                  
+1055                  
+1054                  
+1057                  
+1048                  
+1056                  
+1064                  
+1053                  
+1068                  
+1066                  
+1063                  
+1067                  
+1065                  
+
+Lookup LookupT0b58  
+1                     
+1                     
+1                     
+SingleSubstFormat2T0b60 
+
+SingleSubstFormat2 SingleSubstFormat2T0b60  
+2                     
+CoverageFormat1T0b86  
+16                    
+1076                  
+1085                  
+1075                  
+1084                  
+1081                  
+1080                  
+1083                  
+1074                  
+1082                  
+1090                  
+1079                  
+1094                  
+1092                  
+1089                  
+1093                  
+1091                  
+
+CoverageFormat1 CoverageFormat1T0b86  
+1                     
+16                    
+753                   
+754                   
+756                   
+757                   
+759                   
+760                   
+774                   
+775                   
+777                   
+786                   
+796                   
+839                   
+840                   
+841                   
+842                   
+843                   
+
+Lookup LookupT0baa  
+5                     
+1                     
+1                     
+ContextSubstFormat2T0bb2 
+
+ContextSubstFormat2 ContextSubstFormat2T0bb2  
+2                     
+CoverageFormat1T0bee  
+ClassDefFormat2T0cde  
+5                     
+NULL                  
+NULL                  
+SubClassSetT0bc4      
+SubClassSetT0bd2      
+SubClassSetT0be0      
+
+SubClassSet SubClassSetT0bc4  
+1                     
+SubClassRuleT0bc8     
+
+SubClassRule SubClassRuleT0bc8  
+2                     
+1                     
+1                     
+                      ; SubstLookupRecord[0]
+1                     
+11                    
+
+SubClassSet SubClassSetT0bd2  
+1                     
+SubClassRuleT0bd6     
+
+SubClassRule SubClassRuleT0bd6  
+2                     
+1                     
+1                     
+                      ; SubstLookupRecord[0]
+1                     
+12                    
+
+SubClassSet SubClassSetT0be0  
+1                     
+SubClassRuleT0be4     
+
+SubClassRule SubClassRuleT0be4  
+2                     
+1                     
+1                     
+                      ; SubstLookupRecord[0]
+1                     
+13                    
+
+CoverageFormat1 CoverageFormat1T0bee  
+1                     
+118                   
+781                   
+782                   
+783                   
+785                   
+799                   
+800                   
+801                   
+802                   
+807                   
+808                   
+809                   
+810                   
+811                   
+812                   
+821                   
+822                   
+823                   
+824                   
+825                   
+826                   
+827                   
+828                   
+829                   
+830                   
+831                   
+832                   
+833                   
+834                   
+835                   
+836                   
+837                   
+838                   
+844                   
+845                   
+846                   
+847                   
+848                   
+849                   
+850                   
+851                   
+852                   
+853                   
+854                   
+855                   
+856                   
+857                   
+858                   
+859                   
+860                   
+861                   
+865                   
+871                   
+875                   
+876                   
+880                   
+885                   
+886                   
+887                   
+888                   
+901                   
+902                   
+903                   
+904                   
+905                   
+906                   
+911                   
+912                   
+913                   
+914                   
+925                   
+926                   
+927                   
+928                   
+929                   
+930                   
+933                   
+934                   
+941                   
+942                   
+943                   
+944                   
+945                   
+946                   
+949                   
+950                   
+953                   
+954                   
+957                   
+958                   
+969                   
+970                   
+973                   
+974                   
+981                   
+982                   
+989                   
+990                   
+993                   
+994                   
+997                   
+998                   
+1004                  
+1005                  
+1006                  
+1007                  
+1008                  
+1009                  
+1010                  
+1011                  
+1012                  
+1013                  
+1014                  
+1015                  
+1016                  
+1017                  
+1018                  
+1019                  
+1020                  
+
+ClassDefFormat2 ClassDefFormat2T0cde  
+2                     
+49                    
+                      ; ClassRangeRecord[0]
+755                   
+755                   
+1                     
+                      ; ClassRangeRecord[1]
+758                   
+758                   
+1                     
+                      ; ClassRangeRecord[2]
+781                   
+781                   
+2                     
+                      ; ClassRangeRecord[3]
+782                   
+782                   
+3                     
+                      ; ClassRangeRecord[4]
+783                   
+783                   
+2                     
+                      ; ClassRangeRecord[5]
+785                   
+785                   
+2                     
+                      ; ClassRangeRecord[6]
+787                   
+789                   
+1                     
+                      ; ClassRangeRecord[7]
+799                   
+802                   
+3                     
+                      ; ClassRangeRecord[8]
+807                   
+810                   
+3                     
+                      ; ClassRangeRecord[9]
+811                   
+812                   
+2                     
+                      ; ClassRangeRecord[10]
+821                   
+822                   
+2                     
+                      ; ClassRangeRecord[11]
+823                   
+826                   
+3                     
+                      ; ClassRangeRecord[12]
+827                   
+827                   
+2                     
+                      ; ClassRangeRecord[13]
+828                   
+832                   
+3                     
+                      ; ClassRangeRecord[14]
+833                   
+833                   
+2                     
+                      ; ClassRangeRecord[15]
+834                   
+835                   
+3                     
+                      ; ClassRangeRecord[16]
+836                   
+836                   
+2                     
+                      ; ClassRangeRecord[17]
+837                   
+838                   
+3                     
+                      ; ClassRangeRecord[18]
+844                   
+846                   
+2                     
+                      ; ClassRangeRecord[19]
+847                   
+847                   
+3                     
+                      ; ClassRangeRecord[20]
+848                   
+849                   
+2                     
+                      ; ClassRangeRecord[21]
+850                   
+853                   
+3                     
+                      ; ClassRangeRecord[22]
+854                   
+861                   
+2                     
+                      ; ClassRangeRecord[23]
+865                   
+865                   
+2                     
+                      ; ClassRangeRecord[24]
+871                   
+871                   
+2                     
+                      ; ClassRangeRecord[25]
+875                   
+876                   
+2                     
+                      ; ClassRangeRecord[26]
+880                   
+880                   
+2                     
+                      ; ClassRangeRecord[27]
+885                   
+888                   
+2                     
+                      ; ClassRangeRecord[28]
+901                   
+905                   
+2                     
+                      ; ClassRangeRecord[29]
+906                   
+906                   
+3                     
+                      ; ClassRangeRecord[30]
+911                   
+914                   
+2                     
+                      ; ClassRangeRecord[31]
+925                   
+926                   
+3                     
+                      ; ClassRangeRecord[32]
+927                   
+928                   
+2                     
+                      ; ClassRangeRecord[33]
+929                   
+930                   
+3                     
+                      ; ClassRangeRecord[34]
+933                   
+934                   
+3                     
+                      ; ClassRangeRecord[35]
+941                   
+946                   
+2                     
+                      ; ClassRangeRecord[36]
+949                   
+950                   
+2                     
+                      ; ClassRangeRecord[37]
+953                   
+954                   
+2                     
+                      ; ClassRangeRecord[38]
+957                   
+958                   
+2                     
+                      ; ClassRangeRecord[39]
+969                   
+970                   
+3                     
+                      ; ClassRangeRecord[40]
+973                   
+974                   
+3                     
+                      ; ClassRangeRecord[41]
+981                   
+982                   
+2                     
+                      ; ClassRangeRecord[42]
+989                   
+990                   
+2                     
+                      ; ClassRangeRecord[43]
+993                   
+994                   
+3                     
+                      ; ClassRangeRecord[44]
+997                   
+998                   
+2                     
+                      ; ClassRangeRecord[45]
+1004                  
+1007                  
+2                     
+                      ; ClassRangeRecord[46]
+1008                  
+1010                  
+3                     
+                      ; ClassRangeRecord[47]
+1011                  
+1012                  
+2                     
+                      ; ClassRangeRecord[48]
+1013                  
+1020                  
+4                     
+
+Lookup LookupT0e08  
+1                     
+1                     
+1                     
+SingleSubstFormat2T0e10 
+
+SingleSubstFormat2 SingleSubstFormat2T0e10  
+2                     
+CoverageFormat1T0e44  
+3                     
+1045                  
+1044                  
+1043                  
+
+Lookup LookupT0e1c  
+1                     
+1                     
+1                     
+SingleSubstFormat2T0e24 
+
+SingleSubstFormat2 SingleSubstFormat2T0e24  
+2                     
+CoverageFormat1T0e44  
+3                     
+1071                  
+1070                  
+1069                  
+
+Lookup LookupT0e30  
+1                     
+1                     
+1                     
+SingleSubstFormat2T0e38 
+
+SingleSubstFormat2 SingleSubstFormat2T0e38  
+2                     
+CoverageFormat1T0e44  
+3                     
+1097                  
+1096                  
+1095                  
+
+CoverageFormat1 CoverageFormat1T0e44  
+1                     
+3                     
+755                   
+758                   
+787                   
+
+; 'GDEF' Table - Glyph Definition
+;-------------------------------------
+
+GDEFHeader GDEFHeaderT0000  
+0X00010000            
+ClassDefFormat2T000c  
+NULL                  
+NULL                  
+NULL                  ; AttachClassDef (1.2)
+
+ClassDefFormat2 ClassDefFormat2T000c  
+2                     
+45                    
+                      ; ClassRangeRecord[0]
+744                   
+752                   
+1                     
+                      ; ClassRangeRecord[1]
+753                   
+760                   
+3                     
+                      ; ClassRangeRecord[2]
+761                   
+773                   
+1                     
+                      ; ClassRangeRecord[3]
+774                   
+775                   
+3                     
+                      ; ClassRangeRecord[4]
+776                   
+776                   
+1                     
+                      ; ClassRangeRecord[5]
+777                   
+777                   
+3                     
+                      ; ClassRangeRecord[6]
+778                   
+780                   
+1                     
+                      ; ClassRangeRecord[7]
+781                   
+783                   
+2                     
+                      ; ClassRangeRecord[8]
+784                   
+784                   
+1                     
+                      ; ClassRangeRecord[9]
+785                   
+785                   
+2                     
+                      ; ClassRangeRecord[10]
+786                   
+794                   
+3                     
+                      ; ClassRangeRecord[11]
+795                   
+795                   
+1                     
+                      ; ClassRangeRecord[12]
+796                   
+796                   
+3                     
+                      ; ClassRangeRecord[13]
+797                   
+798                   
+2                     
+                      ; ClassRangeRecord[14]
+799                   
+822                   
+1                     
+                      ; ClassRangeRecord[15]
+823                   
+838                   
+2                     
+                      ; ClassRangeRecord[16]
+839                   
+843                   
+3                     
+                      ; ClassRangeRecord[17]
+844                   
+891                   
+2                     
+                      ; ClassRangeRecord[18]
+892                   
+893                   
+1                     
+                      ; ClassRangeRecord[19]
+894                   
+895                   
+2                     
+                      ; ClassRangeRecord[20]
+896                   
+896                   
+1                     
+                      ; ClassRangeRecord[21]
+897                   
+908                   
+2                     
+                      ; ClassRangeRecord[22]
+909                   
+1012                  
+1                     
+                      ; ClassRangeRecord[23]
+1013                  
+1020                  
+2                     
+                      ; ClassRangeRecord[24]
+1021                  
+1021                  
+1                     
+                      ; ClassRangeRecord[25]
+1022                  
+1024                  
+3                     
+                      ; ClassRangeRecord[26]
+1025                  
+1026                  
+2                     
+                      ; ClassRangeRecord[27]
+1027                  
+1033                  
+3                     
+                      ; ClassRangeRecord[28]
+1034                  
+1036                  
+2                     
+                      ; ClassRangeRecord[29]
+1037                  
+1045                  
+3                     
+                      ; ClassRangeRecord[30]
+1046                  
+1047                  
+2                     
+                      ; ClassRangeRecord[31]
+1048                  
+1050                  
+3                     
+                      ; ClassRangeRecord[32]
+1051                  
+1052                  
+2                     
+                      ; ClassRangeRecord[33]
+1053                  
+1059                  
+3                     
+                      ; ClassRangeRecord[34]
+1060                  
+1062                  
+2                     
+                      ; ClassRangeRecord[35]
+1063                  
+1071                  
+3                     
+                      ; ClassRangeRecord[36]
+1072                  
+1073                  
+2                     
+                      ; ClassRangeRecord[37]
+1074                  
+1076                  
+3                     
+                      ; ClassRangeRecord[38]
+1077                  
+1078                  
+2                     
+                      ; ClassRangeRecord[39]
+1079                  
+1085                  
+3                     
+                      ; ClassRangeRecord[40]
+1086                  
+1088                  
+2                     
+                      ; ClassRangeRecord[41]
+1089                  
+1097                  
+3                     
+                      ; ClassRangeRecord[42]
+1098                  
+1099                  
+2                     
+                      ; ClassRangeRecord[43]
+1100                  
+1119                  
+1                     
+                      ; ClassRangeRecord[44]
+1120                  
+1126                  
+2                     
+
+'DSIG' Table - Digital Signature
+-------------------------------------
+Size = 5544 bytes
+  'DSIG' version:  1
+  numSigs:       1
+  Flags:			0001
+
+'loca' Table - Index To Location Table
+--------------------------------------
+Size = 5276 bytes, 1319 entries
+	Idx   0 -> glyfOff 0x00000000
+	Idx   1 -> glyfOff 0x00000070* No contours *
+	Idx   2 -> glyfOff 0x00000070* No contours *
+	Idx   3 -> glyfOff 0x00000070* No contours *
+	Idx   4 -> glyfOff 0x00000070
+	Idx   5 -> glyfOff 0x00000124
+	Idx   6 -> glyfOff 0x000001CC
+	Idx   7 -> glyfOff 0x000003F4
+	Idx   8 -> glyfOff 0x00000648
+	Idx   9 -> glyfOff 0x0000084E
+	Idx  10 -> glyfOff 0x00000A00
+	Idx  11 -> glyfOff 0x00000A54
+	Idx  12 -> glyfOff 0x00000B02
+	Idx  13 -> glyfOff 0x00000BB0
+	Idx  14 -> glyfOff 0x00000D6E
+	Idx  15 -> glyfOff 0x00000E2A
+	Idx  16 -> glyfOff 0x00000E8A
+	Idx  17 -> glyfOff 0x00000EBE
+	Idx  18 -> glyfOff 0x00000F0A
+	Idx  19 -> glyfOff 0x00000FB6
+	Idx  20 -> glyfOff 0x000011F8
+	Idx  21 -> glyfOff 0x00001302
+	Idx  22 -> glyfOff 0x000014A4
+	Idx  23 -> glyfOff 0x00001652
+	Idx  24 -> glyfOff 0x0000178C
+	Idx  25 -> glyfOff 0x000018EA
+	Idx  26 -> glyfOff 0x00001B22
+	Idx  27 -> glyfOff 0x00001BEA
+	Idx  28 -> glyfOff 0x00001E02
+	Idx  29 -> glyfOff 0x00001FEA
+	Idx  30 -> glyfOff 0x00002070
+	Idx  31 -> glyfOff 0x0000211C
+	Idx  32 -> glyfOff 0x000021E2
+	Idx  33 -> glyfOff 0x00002272
+	Idx  34 -> glyfOff 0x0000233C
+	Idx  35 -> glyfOff 0x00002488
+	Idx  36 -> glyfOff 0x000026B2
+	Idx  37 -> glyfOff 0x000028F6
+	Idx  38 -> glyfOff 0x00002AF2
+	Idx  39 -> glyfOff 0x00002C72
+	Idx  40 -> glyfOff 0x00002E02
+	Idx  41 -> glyfOff 0x00002FA8
+	Idx  42 -> glyfOff 0x0000312C
+	Idx  43 -> glyfOff 0x000032FE
+	Idx  44 -> glyfOff 0x00003572
+	Idx  45 -> glyfOff 0x000036AA
+	Idx  46 -> glyfOff 0x00003810
+	Idx  47 -> glyfOff 0x00003B2E
+	Idx  48 -> glyfOff 0x00003BFE
+	Idx  49 -> glyfOff 0x00003EC4
+	Idx  50 -> glyfOff 0x000040B2
+	Idx  51 -> glyfOff 0x0000430E
+	Idx  52 -> glyfOff 0x00004486
+	Idx  53 -> glyfOff 0x00004704
+	Idx  54 -> glyfOff 0x00004944
+	Idx  55 -> glyfOff 0x00004ADC
+	Idx  56 -> glyfOff 0x00004BD4
+	Idx  57 -> glyfOff 0x00004D7E
+	Idx  58 -> glyfOff 0x00004F5A
+	Idx  59 -> glyfOff 0x000052C4
+	Idx  60 -> glyfOff 0x000055B8
+	Idx  61 -> glyfOff 0x000057E4
+	Idx  62 -> glyfOff 0x00005956
+	Idx  63 -> glyfOff 0x000059D8
+	Idx  64 -> glyfOff 0x00005A60
+	Idx  65 -> glyfOff 0x00005ADA
+	Idx  66 -> glyfOff 0x00005BA2
+	Idx  67 -> glyfOff 0x00005BE2
+	Idx  68 -> glyfOff 0x00005C3E
+	Idx  69 -> glyfOff 0x00005E3A
+	Idx  70 -> glyfOff 0x00005FD8
+	Idx  71 -> glyfOff 0x00006146
+	Idx  72 -> glyfOff 0x000062A2
+	Idx  73 -> glyfOff 0x000063E0
+	Idx  74 -> glyfOff 0x0000653C
+	Idx  75 -> glyfOff 0x000066EC
+	Idx  76 -> glyfOff 0x000068FA
+	Idx  77 -> glyfOff 0x000069D4
+	Idx  78 -> glyfOff 0x00006AD2
+	Idx  79 -> glyfOff 0x00006E24
+	Idx  80 -> glyfOff 0x00006ED0
+	Idx  81 -> glyfOff 0x000071B6
+	Idx  82 -> glyfOff 0x000073D8
+	Idx  83 -> glyfOff 0x00007574
+	Idx  84 -> glyfOff 0x00007730
+	Idx  85 -> glyfOff 0x00007904
+	Idx  86 -> glyfOff 0x00007A96
+	Idx  87 -> glyfOff 0x00007D46
+	Idx  88 -> glyfOff 0x00007E8E
+	Idx  89 -> glyfOff 0x00008012
+	Idx  90 -> glyfOff 0x000081DC
+	Idx  91 -> glyfOff 0x00008582
+	Idx  92 -> glyfOff 0x000088D8
+	Idx  93 -> glyfOff 0x00008B26
+	Idx  94 -> glyfOff 0x00008C5E
+	Idx  95 -> glyfOff 0x00008D8A
+	Idx  96 -> glyfOff 0x00008DE0
+	Idx  97 -> glyfOff 0x00008F4A
+	Idx  98 -> glyfOff 0x00009036
+	Idx  99 -> glyfOff 0x00009080
+	Idx 100 -> glyfOff 0x000090CC
+	Idx 101 -> glyfOff 0x000090FA
+	Idx 102 -> glyfOff 0x00009130
+	Idx 103 -> glyfOff 0x00009172
+	Idx 104 -> glyfOff 0x000091A6
+	Idx 105 -> glyfOff 0x000091E2
+	Idx 106 -> glyfOff 0x00009214
+	Idx 107 -> glyfOff 0x0000924E
+	Idx 108 -> glyfOff 0x0000928C
+	Idx 109 -> glyfOff 0x000092CC
+	Idx 110 -> glyfOff 0x0000930C
+	Idx 111 -> glyfOff 0x0000935C
+	Idx 112 -> glyfOff 0x0000938C
+	Idx 113 -> glyfOff 0x000093C4
+	Idx 114 -> glyfOff 0x000093F8
+	Idx 115 -> glyfOff 0x00009428
+	Idx 116 -> glyfOff 0x0000945A
+	Idx 117 -> glyfOff 0x0000948A
+	Idx 118 -> glyfOff 0x000094B8
+	Idx 119 -> glyfOff 0x000094E8
+	Idx 120 -> glyfOff 0x00009518
+	Idx 121 -> glyfOff 0x00009556
+	Idx 122 -> glyfOff 0x0000958E
+	Idx 123 -> glyfOff 0x000095C4
+	Idx 124 -> glyfOff 0x000095F4
+	Idx 125 -> glyfOff 0x0000962C
+	Idx 126 -> glyfOff 0x00009668
+	Idx 127 -> glyfOff 0x0000969A
+	Idx 128 -> glyfOff 0x000096CA
+	Idx 129 -> glyfOff 0x000096FA
+	Idx 130 -> glyfOff 0x0000972C
+	Idx 131 -> glyfOff 0x000097E0
+	Idx 132 -> glyfOff 0x00009878
+	Idx 133 -> glyfOff 0x000099E4
+	Idx 134 -> glyfOff 0x00009B8E
+	Idx 135 -> glyfOff 0x00009D6E
+	Idx 136 -> glyfOff 0x00009DCE
+	Idx 137 -> glyfOff 0x00009F6E
+	Idx 138 -> glyfOff 0x0000A120
+	Idx 139 -> glyfOff 0x0000A370
+	Idx 140 -> glyfOff 0x0000A54A
+	Idx 141 -> glyfOff 0x0000A7EA
+	Idx 142 -> glyfOff 0x0000A84A
+	Idx 143 -> glyfOff 0x0000A8CA
+	Idx 144 -> glyfOff 0x0000A9FC
+	Idx 145 -> glyfOff 0x0000ACF0
+	Idx 146 -> glyfOff 0x0000AECE
+	Idx 147 -> glyfOff 0x0000B01A
+	Idx 148 -> glyfOff 0x0000B12A
+	Idx 149 -> glyfOff 0x0000B242
+	Idx 150 -> glyfOff 0x0000B35C
+	Idx 151 -> glyfOff 0x0000B60C
+	Idx 152 -> glyfOff 0x0000B704
+	Idx 153 -> glyfOff 0x0000B7DC
+	Idx 154 -> glyfOff 0x0000B8F2
+	Idx 155 -> glyfOff 0x0000B9EC
+	Idx 156 -> glyfOff 0x0000BB44
+	Idx 157 -> glyfOff 0x0000BC9E
+	Idx 158 -> glyfOff 0x0000BDBE
+	Idx 159 -> glyfOff 0x0000BECA
+	Idx 160 -> glyfOff 0x0000C032
+	Idx 161 -> glyfOff 0x0000C2D2
+	Idx 162 -> glyfOff 0x0000C45A
+	Idx 163 -> glyfOff 0x0000C592
+	Idx 164 -> glyfOff 0x0000C646
+	Idx 165 -> glyfOff 0x0000C6BA
+	Idx 166 -> glyfOff 0x0000C75C
+	Idx 167 -> glyfOff 0x0000C87A
+	Idx 168 -> glyfOff 0x0000CA5C
+	Idx 169 -> glyfOff 0x0000CAFC
+	Idx 170 -> glyfOff 0x0000CC70
+	Idx 171 -> glyfOff 0x0000CDB2
+	Idx 172 -> glyfOff 0x0000CE86
+	Idx 173 -> glyfOff 0x0000CEC0
+	Idx 174 -> glyfOff 0x0000CF02
+	Idx 175 -> glyfOff 0x0000CF32
+	Idx 176 -> glyfOff 0x0000D0CE
+	Idx 177 -> glyfOff 0x0000D336
+	Idx 178 -> glyfOff 0x0000D384
+	Idx 179 -> glyfOff 0x0000D3D2
+	Idx 180 -> glyfOff 0x0000D45C
+	Idx 181 -> glyfOff 0x0000D4E6
+	Idx 182 -> glyfOff 0x0000D54C
+	Idx 183 -> glyfOff 0x0000D5B2
+	Idx 184 -> glyfOff 0x0000D698
+	Idx 185 -> glyfOff 0x0000D740
+	Idx 186 -> glyfOff 0x0000D77A
+	Idx 187 -> glyfOff 0x0000D7AE
+	Idx 188 -> glyfOff 0x0000D7FA
+	Idx 189 -> glyfOff 0x0000D9C0
+	Idx 190 -> glyfOff 0x0000DA46
+	Idx 191 -> glyfOff 0x0000DACC
+	Idx 192 -> glyfOff 0x0000DCA8
+	Idx 193 -> glyfOff 0x0000DE66
+	Idx 194 -> glyfOff 0x0000DF78
+	Idx 195 -> glyfOff 0x0000DFCA
+	Idx 196 -> glyfOff 0x0000E01C
+	Idx 197 -> glyfOff 0x0000E0B0
+	Idx 198 -> glyfOff 0x0000E332
+	Idx 199 -> glyfOff 0x0000E384
+	Idx 200 -> glyfOff 0x0000E3C4
+	Idx 201 -> glyfOff 0x0000E3F8
+	Idx 202 -> glyfOff 0x0000E43E
+	Idx 203 -> glyfOff 0x0000E472
+	Idx 204 -> glyfOff 0x0000E4A8
+	Idx 205 -> glyfOff 0x0000E4DA
+	Idx 206 -> glyfOff 0x0000E512
+	Idx 207 -> glyfOff 0x0000E550
+	Idx 208 -> glyfOff 0x0000E580
+	Idx 209 -> glyfOff 0x0000E5B0
+	Idx 210 -> glyfOff 0x0000E5C8
+	Idx 211 -> glyfOff 0x0000E5FC
+	Idx 212 -> glyfOff 0x0000E632
+	Idx 213 -> glyfOff 0x0000E67A
+	Idx 214 -> glyfOff 0x0000E72A
+	Idx 215 -> glyfOff 0x0000E7CA
+	Idx 216 -> glyfOff 0x0000E894
+	Idx 217 -> glyfOff 0x0000E8E6
+	Idx 218 -> glyfOff 0x0000E95C
+	Idx 219 -> glyfOff 0x0000E9A8
+	Idx 220 -> glyfOff 0x0000EA46
+	Idx 221 -> glyfOff 0x0000EB1A
+	Idx 222 -> glyfOff 0x0000EC0C
+	Idx 223 -> glyfOff 0x0000ECBA
+	Idx 224 -> glyfOff 0x0000ED60
+	Idx 225 -> glyfOff 0x0000EF52
+	Idx 226 -> glyfOff 0x0000F0D6
+	Idx 227 -> glyfOff 0x0000F110
+	Idx 228 -> glyfOff 0x0000F146
+	Idx 229 -> glyfOff 0x0000F17C
+	Idx 230 -> glyfOff 0x0000F1BA
+	Idx 231 -> glyfOff 0x0000F2AA
+	Idx 232 -> glyfOff 0x0000F454
+	Idx 233 -> glyfOff 0x0000F61C
+	Idx 234 -> glyfOff 0x0000F650
+	Idx 235 -> glyfOff 0x0000F684
+	Idx 236 -> glyfOff 0x0000F816
+	Idx 237 -> glyfOff 0x0000F95C
+	Idx 238 -> glyfOff 0x0000F9DA
+	Idx 239 -> glyfOff 0x0000FB30
+	Idx 240 -> glyfOff 0x0000FC2A
+	Idx 241 -> glyfOff 0x0000FD72
+	Idx 242 -> glyfOff 0x0000FE8C
+	Idx 243 -> glyfOff 0x00010046
+	Idx 244 -> glyfOff 0x00010296
+	Idx 245 -> glyfOff 0x000104E8
+	Idx 246 -> glyfOff 0x0001063C
+	Idx 247 -> glyfOff 0x00010670
+	Idx 248 -> glyfOff 0x000106A6
+	Idx 249 -> glyfOff 0x000106D8
+	Idx 250 -> glyfOff 0x00010708
+	Idx 251 -> glyfOff 0x00010736
+	Idx 252 -> glyfOff 0x0001076A
+	Idx 253 -> glyfOff 0x0001079C
+	Idx 254 -> glyfOff 0x000107D2
+	Idx 255 -> glyfOff 0x00010806
+	Idx 256 -> glyfOff 0x000109FE
+	Idx 257 -> glyfOff 0x00010A4E
+	Idx 258 -> glyfOff 0x00010A98
+	Idx 259 -> glyfOff 0x00010AD2
+	Idx 260 -> glyfOff 0x00010B0E
+	Idx 261 -> glyfOff 0x00010B62
+	Idx 262 -> glyfOff 0x00010BB4
+	Idx 263 -> glyfOff 0x00010BF4
+	Idx 264 -> glyfOff 0x00010D9C
+	Idx 265 -> glyfOff 0x00010DAC
+	Idx 266 -> glyfOff 0x00010E00
+	Idx 267 -> glyfOff 0x00010E84
+	Idx 268 -> glyfOff 0x00010EC4
+	Idx 269 -> glyfOff 0x00010EF4
+	Idx 270 -> glyfOff 0x00010F26
+	Idx 271 -> glyfOff 0x00010F58
+	Idx 272 -> glyfOff 0x00010F90
+	Idx 273 -> glyfOff 0x00010FD2
+	Idx 274 -> glyfOff 0x0001100A
+	Idx 275 -> glyfOff 0x00011044
+	Idx 276 -> glyfOff 0x00011078
+	Idx 277 -> glyfOff 0x000110AE
+	Idx 278 -> glyfOff 0x000110F2
+	Idx 279 -> glyfOff 0x0001112C
+	Idx 280 -> glyfOff 0x00011160
+	Idx 281 -> glyfOff 0x0001119A
+	Idx 282 -> glyfOff 0x000111CC
+	Idx 283 -> glyfOff 0x000111FC
+	Idx 284 -> glyfOff 0x0001123E
+	Idx 285 -> glyfOff 0x0001126E
+	Idx 286 -> glyfOff 0x000112A2
+	Idx 287 -> glyfOff 0x000112D4
+	Idx 288 -> glyfOff 0x00011304
+	Idx 289 -> glyfOff 0x00011332
+	Idx 290 -> glyfOff 0x00011364
+	Idx 291 -> glyfOff 0x00011508
+	Idx 292 -> glyfOff 0x0001154A
+	Idx 293 -> glyfOff 0x00011584
+	Idx 294 -> glyfOff 0x000115B8
+	Idx 295 -> glyfOff 0x000115F2
+	Idx 296 -> glyfOff 0x00011622
+	Idx 297 -> glyfOff 0x0001165A
+	Idx 298 -> glyfOff 0x0001168E
+	Idx 299 -> glyfOff 0x000116C4
+	Idx 300 -> glyfOff 0x000117BE
+	Idx 301 -> glyfOff 0x00011968
+	Idx 302 -> glyfOff 0x00011B16
+	Idx 303 -> glyfOff 0x00011C94
+	Idx 304 -> glyfOff 0x00011DC8
+	Idx 305 -> glyfOff 0x00011F34
+	Idx 306 -> glyfOff 0x00012012
+	Idx 307 -> glyfOff 0x000120B8
+	Idx 308 -> glyfOff 0x00012234
+	Idx 309 -> glyfOff 0x000122BA
+	Idx 310 -> glyfOff 0x000122F6
+	Idx 311 -> glyfOff 0x00012452
+	Idx 312 -> glyfOff 0x00012728
+	Idx 313 -> glyfOff 0x000127CC
+	Idx 314 -> glyfOff 0x00012880
+	Idx 315 -> glyfOff 0x00012922
+	Idx 316 -> glyfOff 0x000129C4
+	Idx 317 -> glyfOff 0x00012AAC
+	Idx 318 -> glyfOff 0x00012B8E
+	Idx 319 -> glyfOff 0x00012C94
+	Idx 320 -> glyfOff 0x00012CE2
+	Idx 321 -> glyfOff 0x00012D86
+	Idx 322 -> glyfOff 0x00012E54
+	Idx 323 -> glyfOff 0x00012ED0
+	Idx 324 -> glyfOff 0x00012F38
+	Idx 325 -> glyfOff 0x00012FA0
+	Idx 326 -> glyfOff 0x00013010
+	Idx 327 -> glyfOff 0x0001303A
+	Idx 328 -> glyfOff 0x0001306A
+	Idx 329 -> glyfOff 0x000130A2
+	Idx 330 -> glyfOff 0x000130DA
+	Idx 331 -> glyfOff 0x00013112
+	Idx 332 -> glyfOff 0x0001314A
+	Idx 333 -> glyfOff 0x00013190
+	Idx 334 -> glyfOff 0x000131D8
+	Idx 335 -> glyfOff 0x0001321A
+	Idx 336 -> glyfOff 0x0001325E
+	Idx 337 -> glyfOff 0x000132BE
+	Idx 338 -> glyfOff 0x00013304
+	Idx 339 -> glyfOff 0x00013358
+	Idx 340 -> glyfOff 0x000133AA
+	Idx 341 -> glyfOff 0x00013402
+	Idx 342 -> glyfOff 0x0001346E
+	Idx 343 -> glyfOff 0x000134C0
+	Idx 344 -> glyfOff 0x00013518
+	Idx 345 -> glyfOff 0x00013584
+	Idx 346 -> glyfOff 0x000135D6
+	Idx 347 -> glyfOff 0x00013630
+	Idx 348 -> glyfOff 0x0001369C
+	Idx 349 -> glyfOff 0x000136F0
+	Idx 350 -> glyfOff 0x00013748
+	Idx 351 -> glyfOff 0x000137B4
+	Idx 352 -> glyfOff 0x00013814
+	Idx 353 -> glyfOff 0x0001387E
+	Idx 354 -> glyfOff 0x00013906
+	Idx 355 -> glyfOff 0x00013968
+	Idx 356 -> glyfOff 0x000139D2
+	Idx 357 -> glyfOff 0x00013A5E
+	Idx 358 -> glyfOff 0x00013AC2
+	Idx 359 -> glyfOff 0x00013B24
+	Idx 360 -> glyfOff 0x00013BA8
+	Idx 361 -> glyfOff 0x00013C06
+	Idx 362 -> glyfOff 0x00013C6A
+	Idx 363 -> glyfOff 0x00013CEE
+	Idx 364 -> glyfOff 0x00013D80
+	Idx 365 -> glyfOff 0x00013E1A
+	Idx 366 -> glyfOff 0x00013EDA
+	Idx 367 -> glyfOff 0x00013F06
+	Idx 368 -> glyfOff 0x00013F32
+	Idx 369 -> glyfOff 0x00013F60
+	Idx 370 -> glyfOff 0x00013F8E
+	Idx 371 -> glyfOff 0x00013FBE
+	Idx 372 -> glyfOff 0x00014410
+	Idx 373 -> glyfOff 0x00014C9C
+	Idx 374 -> glyfOff 0x000154DE
+	Idx 375 -> glyfOff 0x00015508
+	Idx 376 -> glyfOff 0x00015540
+	Idx 377 -> glyfOff 0x00015584
+	Idx 378 -> glyfOff 0x000155C0
+	Idx 379 -> glyfOff 0x0001560E
+	Idx 380 -> glyfOff 0x0001564A
+	Idx 381 -> glyfOff 0x00015724
+	Idx 382 -> glyfOff 0x00015792
+	Idx 383 -> glyfOff 0x00015878
+	Idx 384 -> glyfOff 0x000159D4
+	Idx 385 -> glyfOff 0x00015AD6
+	Idx 386 -> glyfOff 0x00015C7E
+	Idx 387 -> glyfOff 0x00015D96
+	Idx 388 -> glyfOff 0x00015F48
+	Idx 389 -> glyfOff 0x00016078
+	Idx 390 -> glyfOff 0x000161D8
+	Idx 391 -> glyfOff 0x00016284
+	Idx 392 -> glyfOff 0x000162FE
+	Idx 393 -> glyfOff 0x000163C0
+	Idx 394 -> glyfOff 0x000164D8
+	Idx 395 -> glyfOff 0x00016740
+	Idx 396 -> glyfOff 0x0001692E
+	Idx 397 -> glyfOff 0x0001695A
+	Idx 398 -> glyfOff 0x000169B0
+	Idx 399 -> glyfOff 0x000169E4
+	Idx 400 -> glyfOff 0x00016B98
+	Idx 401 -> glyfOff 0x00016CA8
+	Idx 402 -> glyfOff 0x00016CD2
+	Idx 403 -> glyfOff 0x00016CEE
+	Idx 404 -> glyfOff 0x00016D5C
+	Idx 405 -> glyfOff 0x00016D94
+	Idx 406 -> glyfOff 0x00016E0E
+	Idx 407 -> glyfOff 0x00016E42
+	Idx 408 -> glyfOff 0x00016E76
+	Idx 409 -> glyfOff 0x00016EB4
+	Idx 410 -> glyfOff 0x00016EEE
+	Idx 411 -> glyfOff 0x00016F22
+	Idx 412 -> glyfOff 0x00016F56
+	Idx 413 -> glyfOff 0x00016F88
+	Idx 414 -> glyfOff 0x00016FC0
+	Idx 415 -> glyfOff 0x00017008
+	Idx 416 -> glyfOff 0x0001703C
+	Idx 417 -> glyfOff 0x00017074
+	Idx 418 -> glyfOff 0x000170A8
+	Idx 419 -> glyfOff 0x000170EA
+	Idx 420 -> glyfOff 0x0001711E
+	Idx 421 -> glyfOff 0x00017154
+	Idx 422 -> glyfOff 0x0001718C
+	Idx 423 -> glyfOff 0x000171B6
+	Idx 424 -> glyfOff 0x000171EC
+	Idx 425 -> glyfOff 0x0001722C
+	Idx 426 -> glyfOff 0x0001742A
+	Idx 427 -> glyfOff 0x000176CA
+	Idx 428 -> glyfOff 0x000178DC
+	Idx 429 -> glyfOff 0x0001790E
+	Idx 430 -> glyfOff 0x00017942
+	Idx 431 -> glyfOff 0x00017978
+	Idx 432 -> glyfOff 0x000179AC
+	Idx 433 -> glyfOff 0x000179E2
+	Idx 434 -> glyfOff 0x00017A12
+	Idx 435 -> glyfOff 0x00017B84
+	Idx 436 -> glyfOff 0x00017CDA
+	Idx 437 -> glyfOff 0x00017D14
+	Idx 438 -> glyfOff 0x00017E18
+	Idx 439 -> glyfOff 0x00017E42
+	Idx 440 -> glyfOff 0x00017E66
+	Idx 441 -> glyfOff 0x00018008
+	Idx 442 -> glyfOff 0x0001802C
+	Idx 443 -> glyfOff 0x00018050
+	Idx 444 -> glyfOff 0x00018074
+	Idx 445 -> glyfOff 0x000180A4
+	Idx 446 -> glyfOff 0x0001820E
+	Idx 447 -> glyfOff 0x000183BA
+	Idx 448 -> glyfOff 0x000183D2
+	Idx 449 -> glyfOff 0x00018406
+	Idx 450 -> glyfOff 0x0001841E
+	Idx 451 -> glyfOff 0x0001844E
+	Idx 452 -> glyfOff 0x00018472
+	Idx 453 -> glyfOff 0x00018496
+	Idx 454 -> glyfOff 0x000184CC
+	Idx 455 -> glyfOff 0x00018500
+	Idx 456 -> glyfOff 0x0001869E
+	Idx 457 -> glyfOff 0x0001881C
+	Idx 458 -> glyfOff 0x00018852
+	Idx 459 -> glyfOff 0x00018888
+	Idx 460 -> glyfOff 0x000188BA
+	Idx 461 -> glyfOff 0x000188EE
+	Idx 462 -> glyfOff 0x0001891E
+	Idx 463 -> glyfOff 0x0001894E
+	Idx 464 -> glyfOff 0x00018B36
+	Idx 465 -> glyfOff 0x00018CF6
+	Idx 466 -> glyfOff 0x00018D2E
+	Idx 467 -> glyfOff 0x00018D64
+	Idx 468 -> glyfOff 0x00018DA0
+	Idx 469 -> glyfOff 0x00018DD0
+	Idx 470 -> glyfOff 0x00018EFE
+	Idx 471 -> glyfOff 0x00018F50
+	Idx 472 -> glyfOff 0x00018FA6
+	Idx 473 -> glyfOff 0x00018FD6
+	Idx 474 -> glyfOff 0x00019004
+	Idx 475 -> glyfOff 0x00019034
+	Idx 476 -> glyfOff 0x00019062
+	Idx 477 -> glyfOff 0x00019072
+	Idx 478 -> glyfOff 0x000190AA
+	Idx 479 -> glyfOff 0x000190E2
+	Idx 480 -> glyfOff 0x00019112
+	Idx 481 -> glyfOff 0x00019140
+	Idx 482 -> glyfOff 0x00019174
+	Idx 483 -> glyfOff 0x000191A6
+	Idx 484 -> glyfOff 0x000191DE
+	Idx 485 -> glyfOff 0x00019214
+	Idx 486 -> glyfOff 0x00019224
+	Idx 487 -> glyfOff 0x00019234
+	Idx 488 -> glyfOff 0x000193BE
+	Idx 489 -> glyfOff 0x00019498
+	Idx 490 -> glyfOff 0x00019714
+	Idx 491 -> glyfOff 0x000199F2
+	Idx 492 -> glyfOff 0x00019C8C
+	Idx 493 -> glyfOff 0x00019EE2
+	Idx 494 -> glyfOff 0x00019F6C
+	Idx 495 -> glyfOff 0x0001A000
+	Idx 496 -> glyfOff 0x0001A010
+	Idx 497 -> glyfOff 0x0001A0E0
+	Idx 498 -> glyfOff 0x0001A344
+	Idx 499 -> glyfOff 0x0001A56A
+	Idx 500 -> glyfOff 0x0001A7F2
+	Idx 501 -> glyfOff 0x0001A920
+	Idx 502 -> glyfOff 0x0001AA62
+	Idx 503 -> glyfOff 0x0001AC4C
+	Idx 504 -> glyfOff 0x0001AE16
+	Idx 505 -> glyfOff 0x0001AE4C
+	Idx 506 -> glyfOff 0x0001AE5C
+	Idx 507 -> glyfOff 0x0001AE6C
+	Idx 508 -> glyfOff 0x0001AF20
+	Idx 509 -> glyfOff 0x0001AF30
+	Idx 510 -> glyfOff 0x0001AF40
+	Idx 511 -> glyfOff 0x0001AF50
+	Idx 512 -> glyfOff 0x0001AF60
+	Idx 513 -> glyfOff 0x0001AF70
+	Idx 514 -> glyfOff 0x0001B12C
+	Idx 515 -> glyfOff 0x0001B13C
+	Idx 516 -> glyfOff 0x0001B14C
+	Idx 517 -> glyfOff 0x0001B314
+	Idx 518 -> glyfOff 0x0001B324
+	Idx 519 -> glyfOff 0x0001B4B6
+	Idx 520 -> glyfOff 0x0001B4C6
+	Idx 521 -> glyfOff 0x0001B5FE
+	Idx 522 -> glyfOff 0x0001B60E
+	Idx 523 -> glyfOff 0x0001B61E
+	Idx 524 -> glyfOff 0x0001B62E
+	Idx 525 -> glyfOff 0x0001B854
+	Idx 526 -> glyfOff 0x0001B9EA
+	Idx 527 -> glyfOff 0x0001BA22
+	Idx 528 -> glyfOff 0x0001BA60
+	Idx 529 -> glyfOff 0x0001BA8E
+	Idx 530 -> glyfOff 0x0001BAC2
+	Idx 531 -> glyfOff 0x0001BAF6
+	Idx 532 -> glyfOff 0x0001BB2A
+	Idx 533 -> glyfOff 0x0001BB6C
+	Idx 534 -> glyfOff 0x0001BC8C
+	Idx 535 -> glyfOff 0x0001BDB0
+	Idx 536 -> glyfOff 0x0001BEB2
+	Idx 537 -> glyfOff 0x0001C024
+	Idx 538 -> glyfOff 0x0001C142
+	Idx 539 -> glyfOff 0x0001C1AA
+	Idx 540 -> glyfOff 0x0001C3D2
+	Idx 541 -> glyfOff 0x0001C582
+	Idx 542 -> glyfOff 0x0001C6D6
+	Idx 543 -> glyfOff 0x0001C7C6
+	Idx 544 -> glyfOff 0x0001C968
+	Idx 545 -> glyfOff 0x0001C978
+	Idx 546 -> glyfOff 0x0001CA3C
+	Idx 547 -> glyfOff 0x0001CB5C
+	Idx 548 -> glyfOff 0x0001CCAE
+	Idx 549 -> glyfOff 0x0001CE50
+	Idx 550 -> glyfOff 0x0001CF86
+	Idx 551 -> glyfOff 0x0001D0C0
+	Idx 552 -> glyfOff 0x0001D102
+	Idx 553 -> glyfOff 0x0001D144
+	Idx 554 -> glyfOff 0x0001D178
+	Idx 555 -> glyfOff 0x0001D1A6
+	Idx 556 -> glyfOff 0x0001D1E0
+	Idx 557 -> glyfOff 0x0001D230
+	Idx 558 -> glyfOff 0x0001D3BA
+	Idx 559 -> glyfOff 0x0001D3EC
+	Idx 560 -> glyfOff 0x0001D542
+	Idx 561 -> glyfOff 0x0001D552
+	Idx 562 -> glyfOff 0x0001D562
+	Idx 563 -> glyfOff 0x0001D5A4
+	Idx 564 -> glyfOff 0x0001D5B4
+	Idx 565 -> glyfOff 0x0001D74A
+	Idx 566 -> glyfOff 0x0001D9C0
+	Idx 567 -> glyfOff 0x0001DBA8
+	Idx 568 -> glyfOff 0x0001DBE8
+	Idx 569 -> glyfOff 0x0001DC38
+	Idx 570 -> glyfOff 0x0001DDF0
+	Idx 571 -> glyfOff 0x0001DE00
+	Idx 572 -> glyfOff 0x0001DF26
+	Idx 573 -> glyfOff 0x0001DF36
+	Idx 574 -> glyfOff 0x0001E04C
+	Idx 575 -> glyfOff 0x0001E186
+	Idx 576 -> glyfOff 0x0001E196
+	Idx 577 -> glyfOff 0x0001E5AA
+	Idx 578 -> glyfOff 0x0001E730
+	Idx 579 -> glyfOff 0x0001E8E4
+	Idx 580 -> glyfOff 0x0001E92A
+	Idx 581 -> glyfOff 0x0001EB56
+	Idx 582 -> glyfOff 0x0001ECBE
+	Idx 583 -> glyfOff 0x0001ECCE
+	Idx 584 -> glyfOff 0x0001ECDE
+	Idx 585 -> glyfOff 0x0001ECEE
+	Idx 586 -> glyfOff 0x0001EE80
+	Idx 587 -> glyfOff 0x0001EE90
+	Idx 588 -> glyfOff 0x0001EEA0
+	Idx 589 -> glyfOff 0x0001EEB0
+	Idx 590 -> glyfOff 0x0001F08C
+	Idx 591 -> glyfOff 0x0001F244
+	Idx 592 -> glyfOff 0x0001F254
+	Idx 593 -> glyfOff 0x0001F3CA
+	Idx 594 -> glyfOff 0x0001F58C
+	Idx 595 -> glyfOff 0x0001F8AA
+	Idx 596 -> glyfOff 0x0001FBAE
+	Idx 597 -> glyfOff 0x0001FCD6
+	Idx 598 -> glyfOff 0x0001FF1C
+	Idx 599 -> glyfOff 0x00020050
+	Idx 600 -> glyfOff 0x00020082
+	Idx 601 -> glyfOff 0x00020256
+	Idx 602 -> glyfOff 0x00020296
+	Idx 603 -> glyfOff 0x000202A6
+	Idx 604 -> glyfOff 0x000203CC
+	Idx 605 -> glyfOff 0x00020516
+	Idx 606 -> glyfOff 0x00020626
+	Idx 607 -> glyfOff 0x0002077A
+	Idx 608 -> glyfOff 0x0002078A
+	Idx 609 -> glyfOff 0x00020B06
+	Idx 610 -> glyfOff 0x00020C58
+	Idx 611 -> glyfOff 0x00020E30
+	Idx 612 -> glyfOff 0x00020E72
+	Idx 613 -> glyfOff 0x00021080
+	Idx 614 -> glyfOff 0x000211E0
+	Idx 615 -> glyfOff 0x00021456
+	Idx 616 -> glyfOff 0x00021662
+	Idx 617 -> glyfOff 0x00021672
+	Idx 618 -> glyfOff 0x000217F8
+	Idx 619 -> glyfOff 0x00021808
+	Idx 620 -> glyfOff 0x00021818
+	Idx 621 -> glyfOff 0x000218EE
+	Idx 622 -> glyfOff 0x00021AC4
+	Idx 623 -> glyfOff 0x00021C74
+	Idx 624 -> glyfOff 0x00021C84
+	Idx 625 -> glyfOff 0x00021E1A
+	Idx 626 -> glyfOff 0x00021FF2
+	Idx 627 -> glyfOff 0x00022252
+	Idx 628 -> glyfOff 0x000224AA
+	Idx 629 -> glyfOff 0x000225DA
+	Idx 630 -> glyfOff 0x00022806
+	Idx 631 -> glyfOff 0x00022940
+	Idx 632 -> glyfOff 0x00022974
+	Idx 633 -> glyfOff 0x00022B56
+	Idx 634 -> glyfOff 0x00022D24
+	Idx 635 -> glyfOff 0x00022D56
+	Idx 636 -> glyfOff 0x00022F46
+	Idx 637 -> glyfOff 0x00022F76
+	Idx 638 -> glyfOff 0x0002309A
+	Idx 639 -> glyfOff 0x000230AA
+	Idx 640 -> glyfOff 0x000230BA
+	Idx 641 -> glyfOff 0x000230F4
+	Idx 642 -> glyfOff 0x00023104
+	Idx 643 -> glyfOff 0x00023290
+	Idx 644 -> glyfOff 0x000234FA
+	Idx 645 -> glyfOff 0x000236EA
+	Idx 646 -> glyfOff 0x00023724
+	Idx 647 -> glyfOff 0x00023762
+	Idx 648 -> glyfOff 0x000238FA
+	Idx 649 -> glyfOff 0x000239E6
+	Idx 650 -> glyfOff 0x00023AD0
+	Idx 651 -> glyfOff 0x00023B04
+	Idx 652 -> glyfOff 0x00023D82
+	Idx 653 -> glyfOff 0x00023F42
+	Idx 654 -> glyfOff 0x00023FA2
+	Idx 655 -> glyfOff 0x000240A4
+	Idx 656 -> glyfOff 0x00024142
+	Idx 657 -> glyfOff 0x000241F8
+	Idx 658 -> glyfOff 0x00024236
+	Idx 659 -> glyfOff 0x000242AA
+	Idx 660 -> glyfOff 0x00024354
+	Idx 661 -> glyfOff 0x00024398
+	Idx 662 -> glyfOff 0x000243F8
+	Idx 663 -> glyfOff 0x00024442
+	Idx 664 -> glyfOff 0x000244D2
+	Idx 665 -> glyfOff 0x00024516
+	Idx 666 -> glyfOff 0x0002455C
+	Idx 667 -> glyfOff 0x00024598
+	Idx 668 -> glyfOff 0x000245E8
+	Idx 669 -> glyfOff 0x00024630
+	Idx 670 -> glyfOff 0x00024668
+	Idx 671 -> glyfOff 0x000246A0
+	Idx 672 -> glyfOff 0x00024716
+	Idx 673 -> glyfOff 0x00024882
+	Idx 674 -> glyfOff 0x000248FA
+	Idx 675 -> glyfOff 0x000249D4
+	Idx 676 -> glyfOff 0x00024A40
+	Idx 677 -> glyfOff 0x00024AC4
+	Idx 678 -> glyfOff 0x00024B16
+	Idx 679 -> glyfOff 0x00024B8E
+	Idx 680 -> glyfOff 0x00024C1A
+	Idx 681 -> glyfOff 0x00024CF6
+	Idx 682 -> glyfOff 0x00024D42
+	Idx 683 -> glyfOff 0x00024DC0
+	Idx 684 -> glyfOff 0x00024E56
+	Idx 685 -> glyfOff 0x00024F44
+	Idx 686 -> glyfOff 0x00024FDC
+	Idx 687 -> glyfOff 0x000250D0
+	Idx 688 -> glyfOff 0x00025138
+	Idx 689 -> glyfOff 0x00025194
+	Idx 690 -> glyfOff 0x00025250
+	Idx 691 -> glyfOff 0x00025314
+	Idx 692 -> glyfOff 0x000253C4
+	Idx 693 -> glyfOff 0x0002548A
+	Idx 694 -> glyfOff 0x0002554E
+	Idx 695 -> glyfOff 0x00025664
+	Idx 696 -> glyfOff 0x00025746
+	Idx 697 -> glyfOff 0x000257A6
+	Idx 698 -> glyfOff 0x0002588E
+	Idx 699 -> glyfOff 0x00025920
+	Idx 700 -> glyfOff 0x000259B6
+	Idx 701 -> glyfOff 0x00025A4A
+	Idx 702 -> glyfOff 0x00025AE0
+	Idx 703 -> glyfOff 0x00025B2C
+	Idx 704 -> glyfOff 0x00025BBE
+	Idx 705 -> glyfOff 0x00025CB0
+	Idx 706 -> glyfOff 0x00025D28
+	Idx 707 -> glyfOff 0x00025D7A
+	Idx 708 -> glyfOff 0x00025DCC
+	Idx 709 -> glyfOff 0x00025E12
+	Idx 710 -> glyfOff 0x00025E9E
+	Idx 711 -> glyfOff 0x00025F5A
+	Idx 712 -> glyfOff 0x00025F8A
+	Idx 713 -> glyfOff 0x00025FBA
+	Idx 714 -> glyfOff 0x00025FEA
+	Idx 715 -> glyfOff 0x0002601A
+	Idx 716 -> glyfOff 0x0002603E
+	Idx 717 -> glyfOff 0x00026062
+	Idx 718 -> glyfOff 0x00026218
+	Idx 719 -> glyfOff 0x00026244
+	Idx 720 -> glyfOff 0x00026274
+	Idx 721 -> glyfOff 0x000262A2
+	Idx 722 -> glyfOff 0x000262C6
+	Idx 723 -> glyfOff 0x000262FA
+	Idx 724 -> glyfOff 0x00026334
+	Idx 725 -> glyfOff 0x0002645A
+	Idx 726 -> glyfOff 0x000264D4
+	Idx 727 -> glyfOff 0x00026506
+	Idx 728 -> glyfOff 0x0002652E
+	Idx 729 -> glyfOff 0x0002658A
+	Idx 730 -> glyfOff 0x000265AE
+	Idx 731 -> glyfOff 0x000265DC
+	Idx 732 -> glyfOff 0x000266DA
+	Idx 733 -> glyfOff 0x000267DA
+	Idx 734 -> glyfOff 0x000268D0
+	Idx 735 -> glyfOff 0x00026A46
+	Idx 736 -> glyfOff 0x00026B92
+	Idx 737 -> glyfOff 0x00026BBC
+	Idx 738 -> glyfOff 0x00026CD8
+	Idx 739 -> glyfOff 0x00026D0A
+	Idx 740 -> glyfOff 0x00026D2E
+	Idx 741 -> glyfOff 0x00026D5C
+	Idx 742 -> glyfOff 0x00026D8A
+	Idx 743 -> glyfOff 0x00026DBC
+	Idx 744 -> glyfOff 0x00026F00
+	Idx 745 -> glyfOff 0x00026F3C
+	Idx 746 -> glyfOff 0x00027088
+	Idx 747 -> glyfOff 0x0002714A
+	Idx 748 -> glyfOff 0x000271FE
+	Idx 749 -> glyfOff 0x00027296
+	Idx 750 -> glyfOff 0x00027376
+	Idx 751 -> glyfOff 0x00027484
+	Idx 752 -> glyfOff 0x00027566
+	Idx 753 -> glyfOff 0x00027594
+	Idx 754 -> glyfOff 0x00027656
+	Idx 755 -> glyfOff 0x000277F8
+	Idx 756 -> glyfOff 0x0002783A
+	Idx 757 -> glyfOff 0x000278A2
+	Idx 758 -> glyfOff 0x00027996
+	Idx 759 -> glyfOff 0x000279BE
+	Idx 760 -> glyfOff 0x00027ABE
+	Idx 761 -> glyfOff 0x00027B94
+	Idx 762 -> glyfOff 0x00027C14
+	Idx 763 -> glyfOff 0x00027C92
+	Idx 764 -> glyfOff 0x00027D70
+	Idx 765 -> glyfOff 0x00027E98
+	Idx 766 -> glyfOff 0x00027FAE
+	Idx 767 -> glyfOff 0x00028054
+	Idx 768 -> glyfOff 0x0002810E
+	Idx 769 -> glyfOff 0x000281C6
+	Idx 770 -> glyfOff 0x0002826A
+	Idx 771 -> glyfOff 0x00028334
+	Idx 772 -> glyfOff 0x0002840E
+	Idx 773 -> glyfOff 0x00028494
+	Idx 774 -> glyfOff 0x00028578
+	Idx 775 -> glyfOff 0x000285D8
+	Idx 776 -> glyfOff 0x00028708
+	Idx 777 -> glyfOff 0x000287D8
+	Idx 778 -> glyfOff 0x0002886A
+	Idx 779 -> glyfOff 0x00028988
+	Idx 780 -> glyfOff 0x00028A8A
+	Idx 781 -> glyfOff 0x00028B8C
+	Idx 782 -> glyfOff 0x00028BA4
+	Idx 783 -> glyfOff 0x00028BD8
+	Idx 784 -> glyfOff 0x00028BFE
+	Idx 785 -> glyfOff 0x00028F4E
+	Idx 786 -> glyfOff 0x00028FAE
+	Idx 787 -> glyfOff 0x0002904A
+	Idx 788 -> glyfOff 0x0002906A
+	Idx 789 -> glyfOff 0x000291FC
+	Idx 790 -> glyfOff 0x000293EE
+	Idx 791 -> glyfOff 0x0002959A
+	Idx 792 -> glyfOff 0x0002978E
+	Idx 793 -> glyfOff 0x00029976
+	Idx 794 -> glyfOff 0x000299D4
+	Idx 795 -> glyfOff 0x00029CAC
+	Idx 796 -> glyfOff 0x00029CBC
+	Idx 797 -> glyfOff 0x00029D9C
+	Idx 798 -> glyfOff 0x00029DDA
+	Idx 799 -> glyfOff 0x00029E10
+	Idx 800 -> glyfOff 0x00029E36
+	Idx 801 -> glyfOff 0x00029E4C
+	Idx 802 -> glyfOff 0x00029E80
+	Idx 803 -> glyfOff 0x00029E96
+	Idx 804 -> glyfOff 0x00029EEA
+	Idx 805 -> glyfOff 0x00029F44
+	Idx 806 -> glyfOff 0x00029F9A
+	Idx 807 -> glyfOff 0x00029FEC
+	Idx 808 -> glyfOff 0x0002A048
+	Idx 809 -> glyfOff 0x0002A278
+	Idx 810 -> glyfOff 0x0002A28E
+	Idx 811 -> glyfOff 0x0002A2B4
+	Idx 812 -> glyfOff 0x0002A2E8
+	Idx 813 -> glyfOff 0x0002A324
+	Idx 814 -> glyfOff 0x0002A542
+	Idx 815 -> glyfOff 0x0002A784
+	Idx 816 -> glyfOff 0x0002A8B2
+	Idx 817 -> glyfOff 0x0002A9D8
+	Idx 818 -> glyfOff 0x0002AB68
+	Idx 819 -> glyfOff 0x0002AD20
+	Idx 820 -> glyfOff 0x0002AE76
+	Idx 821 -> glyfOff 0x0002AFEA
+	Idx 822 -> glyfOff 0x0002B0F2
+	Idx 823 -> glyfOff 0x0002B212
+	Idx 824 -> glyfOff 0x0002B22A
+	Idx 825 -> glyfOff 0x0002B262
+	Idx 826 -> glyfOff 0x0002B29C
+	Idx 827 -> glyfOff 0x0002B2CA
+	Idx 828 -> glyfOff 0x0002B30C
+	Idx 829 -> glyfOff 0x0002B370
+	Idx 830 -> glyfOff 0x0002B3B4
+	Idx 831 -> glyfOff 0x0002B52C
+	Idx 832 -> glyfOff 0x0002B584
+	Idx 833 -> glyfOff 0x0002B704
+	Idx 834 -> glyfOff 0x0002B83C
+	Idx 835 -> glyfOff 0x0002B878
+	Idx 836 -> glyfOff 0x0002B8A4
+	Idx 837 -> glyfOff 0x0002B8D8
+	Idx 838 -> glyfOff 0x0002B90A
+	Idx 839 -> glyfOff 0x0002B94C
+	Idx 840 -> glyfOff 0x0002BBEA
+	Idx 841 -> glyfOff 0x0002BDB6
+	Idx 842 -> glyfOff 0x0002BF16
+	Idx 843 -> glyfOff 0x0002C100
+	Idx 844 -> glyfOff 0x0002C25A
+	Idx 845 -> glyfOff 0x0002C280
+	Idx 846 -> glyfOff 0x0002C2B8
+	Idx 847 -> glyfOff 0x0002C2E8
+	Idx 848 -> glyfOff 0x0002C520
+	Idx 849 -> glyfOff 0x0002C54C
+	Idx 850 -> glyfOff 0x0002C5B2
+	Idx 851 -> glyfOff 0x0002C60C
+	Idx 852 -> glyfOff 0x0002C898
+	Idx 853 -> glyfOff 0x0002C8C2
+	Idx 854 -> glyfOff 0x0002CB00
+	Idx 855 -> glyfOff 0x0002CB58
+	Idx 856 -> glyfOff 0x0002CB94
+	Idx 857 -> glyfOff 0x0002CBB4
+	Idx 858 -> glyfOff 0x0002CBCC
+	Idx 859 -> glyfOff 0x0002CC0C
+	Idx 860 -> glyfOff 0x0002CC30
+	Idx 861 -> glyfOff 0x0002CC68
+	Idx 862 -> glyfOff 0x0002CCB6
+	Idx 863 -> glyfOff 0x0002CCFC
+	Idx 864 -> glyfOff 0x0002CD5C
+	Idx 865 -> glyfOff 0x0002CDBC
+	Idx 866 -> glyfOff 0x0002CDEC
+	Idx 867 -> glyfOff 0x0002CE30
+	Idx 868 -> glyfOff 0x0002CE6A
+	Idx 869 -> glyfOff 0x0002CFC2
+	Idx 870 -> glyfOff 0x0002CFFA
+	Idx 871 -> glyfOff 0x0002D18A
+	Idx 872 -> glyfOff 0x0002D1A2
+	Idx 873 -> glyfOff 0x0002D2C4
+	Idx 874 -> glyfOff 0x0002D2F0
+	Idx 875 -> glyfOff 0x0002D3AA
+	Idx 876 -> glyfOff 0x0002D5B6
+	Idx 877 -> glyfOff 0x0002D5DC
+	Idx 878 -> glyfOff 0x0002D6EE
+	Idx 879 -> glyfOff 0x0002D738
+	Idx 880 -> glyfOff 0x0002D80A
+	Idx 881 -> glyfOff 0x0002D83E
+	Idx 882 -> glyfOff 0x0002D86A
+	Idx 883 -> glyfOff 0x0002D8AE
+	Idx 884 -> glyfOff 0x0002D8DE
+	Idx 885 -> glyfOff 0x0002DAAC
+	Idx 886 -> glyfOff 0x0002DB34
+	Idx 887 -> glyfOff 0x0002DB8C
+	Idx 888 -> glyfOff 0x0002DC00
+	Idx 889 -> glyfOff 0x0002DC2C
+	Idx 890 -> glyfOff 0x0002DC82
+	Idx 891 -> glyfOff 0x0002DCB8
+	Idx 892 -> glyfOff 0x0002DCFA
+	Idx 893 -> glyfOff 0x0002DD74
+	Idx 894 -> glyfOff 0x0002DDF4
+	Idx 895 -> glyfOff 0x0002DF56
+	Idx 896 -> glyfOff 0x0002E1C2
+	Idx 897 -> glyfOff 0x0002E1D2
+	Idx 898 -> glyfOff 0x0002E20C
+	Idx 899 -> glyfOff 0x0002E254
+	Idx 900 -> glyfOff 0x0002E284
+	Idx 901 -> glyfOff 0x0002E2B0
+	Idx 902 -> glyfOff 0x0002E2F6
+	Idx 903 -> glyfOff 0x0002E33C
+	Idx 904 -> glyfOff 0x0002E386
+	Idx 905 -> glyfOff 0x0002E3C6
+	Idx 906 -> glyfOff 0x0002E3F8
+	Idx 907 -> glyfOff 0x0002E418
+	Idx 908 -> glyfOff 0x0002E44E
+	Idx 909 -> glyfOff 0x0002E490
+	Idx 910 -> glyfOff 0x0002E504
+	Idx 911 -> glyfOff 0x0002E59A
+	Idx 912 -> glyfOff 0x0002E5B2
+	Idx 913 -> glyfOff 0x0002E5CA
+	Idx 914 -> glyfOff 0x0002E5E2
+	Idx 915 -> glyfOff 0x0002E5FA
+	Idx 916 -> glyfOff 0x0002E648
+	Idx 917 -> glyfOff 0x0002E692
+	Idx 918 -> glyfOff 0x0002E6BA
+	Idx 919 -> glyfOff 0x0002E6EE
+	Idx 920 -> glyfOff 0x0002E72A
+	Idx 921 -> glyfOff 0x0002E768
+	Idx 922 -> glyfOff 0x0002E78C
+	Idx 923 -> glyfOff 0x0002E7BC
+	Idx 924 -> glyfOff 0x0002E800
+	Idx 925 -> glyfOff 0x0002E834
+	Idx 926 -> glyfOff 0x0002E88E
+	Idx 927 -> glyfOff 0x0002E8E2
+	Idx 928 -> glyfOff 0x0002E8FA
+	Idx 929 -> glyfOff 0x0002E912
+	Idx 930 -> glyfOff 0x0002EA0C
+	Idx 931 -> glyfOff 0x0002EB8C
+	Idx 932 -> glyfOff 0x0002EC60
+	Idx 933 -> glyfOff 0x0002ED98
+	Idx 934 -> glyfOff 0x0002EDC6
+	Idx 935 -> glyfOff 0x0002EDF4
+	Idx 936 -> glyfOff 0x0002EE0C
+	Idx 937 -> glyfOff 0x0002EE34
+	Idx 938 -> glyfOff 0x0002EEE8
+	Idx 939 -> glyfOff 0x0002EF8E
+	Idx 940 -> glyfOff 0x0002EFC2
+	Idx 941 -> glyfOff 0x0002EFEC
+	Idx 942 -> glyfOff 0x0002F09C
+	Idx 943 -> glyfOff 0x0002F17E
+	Idx 944 -> glyfOff 0x0002F1AC
+	Idx 945 -> glyfOff 0x0002F1D0
+	Idx 946 -> glyfOff 0x0002F364
+	Idx 947 -> glyfOff 0x0002F4E4
+	Idx 948 -> glyfOff 0x0002F62A
+	Idx 949 -> glyfOff 0x0002F77E
+	Idx 950 -> glyfOff 0x0002F7AE
+	Idx 951 -> glyfOff 0x0002F7DE
+	Idx 952 -> glyfOff 0x0002F812
+	Idx 953 -> glyfOff 0x0002F846
+	Idx 954 -> glyfOff 0x0002F980
+	Idx 955 -> glyfOff 0x0002FB06
+	Idx 956 -> glyfOff 0x0002FC08
+	Idx 957 -> glyfOff 0x0002FD4E
+	Idx 958 -> glyfOff 0x0002FD7E
+	Idx 959 -> glyfOff 0x0002FDB6
+	Idx 960 -> glyfOff 0x0002FDE2
+	Idx 961 -> glyfOff 0x0002FE0E
+	Idx 962 -> glyfOff 0x0002FEFE
+	Idx 963 -> glyfOff 0x0003001E
+	Idx 964 -> glyfOff 0x0003010C
+	Idx 965 -> glyfOff 0x0003022C
+	Idx 966 -> glyfOff 0x00030276
+	Idx 967 -> glyfOff 0x000302BE
+	Idx 968 -> glyfOff 0x000302FE
+	Idx 969 -> glyfOff 0x00030340
+	Idx 970 -> glyfOff 0x00030490
+	Idx 971 -> glyfOff 0x000305E8
+	Idx 972 -> glyfOff 0x000306DA
+	Idx 973 -> glyfOff 0x000307F0
+	Idx 974 -> glyfOff 0x0003081E
+	Idx 975 -> glyfOff 0x00030862
+	Idx 976 -> glyfOff 0x00030898
+	Idx 977 -> glyfOff 0x000308D4
+	Idx 978 -> glyfOff 0x0003090C
+	Idx 979 -> glyfOff 0x00030948
+	Idx 980 -> glyfOff 0x0003098A
+	Idx 981 -> glyfOff 0x000309D0
+	Idx 982 -> glyfOff 0x00030B4C
+	Idx 983 -> glyfOff 0x00030D00
+	Idx 984 -> glyfOff 0x00030D54
+	Idx 985 -> glyfOff 0x00030DA6
+	Idx 986 -> glyfOff 0x00030F42
+	Idx 987 -> glyfOff 0x00031104
+	Idx 988 -> glyfOff 0x00031114
+	Idx 989 -> glyfOff 0x00031124
+	Idx 990 -> glyfOff 0x0003120A
+	Idx 991 -> glyfOff 0x0003130A
+	Idx 992 -> glyfOff 0x00031388
+	Idx 993 -> glyfOff 0x00031454
+	Idx 994 -> glyfOff 0x00031554
+	Idx 995 -> glyfOff 0x00031564
+	Idx 996 -> glyfOff 0x00031634
+	Idx 997 -> glyfOff 0x0003171E
+	Idx 998 -> glyfOff 0x0003182A
+	Idx 999 -> glyfOff 0x00031956
+	Idx 1000 -> glyfOff 0x00031988
+	Idx 1001 -> glyfOff 0x000319BC
+	Idx 1002 -> glyfOff 0x000319CC
+	Idx 1003 -> glyfOff 0x00031AB6
+	Idx 1004 -> glyfOff 0x00031C1E
+	Idx 1005 -> glyfOff 0x00031DE4
+	Idx 1006 -> glyfOff 0x00031EF2
+	Idx 1007 -> glyfOff 0x0003201A
+	Idx 1008 -> glyfOff 0x0003202A
+	Idx 1009 -> glyfOff 0x0003203A
+	Idx 1010 -> glyfOff 0x00032074
+	Idx 1011 -> glyfOff 0x00032250
+	Idx 1012 -> glyfOff 0x00032290
+	Idx 1013 -> glyfOff 0x000322C8
+	Idx 1014 -> glyfOff 0x000322F6
+	Idx 1015 -> glyfOff 0x00032332
+	Idx 1016 -> glyfOff 0x00032366
+	Idx 1017 -> glyfOff 0x00032398
+	Idx 1018 -> glyfOff 0x000323D0
+	Idx 1019 -> glyfOff 0x00032408
+	Idx 1020 -> glyfOff 0x0003253E
+	Idx 1021 -> glyfOff 0x00032660
+	Idx 1022 -> glyfOff 0x000326A0
+	Idx 1023 -> glyfOff 0x000326B2
+	Idx 1024 -> glyfOff 0x000326C4
+	Idx 1025 -> glyfOff 0x000326D6
+	Idx 1026 -> glyfOff 0x0003270C
+	Idx 1027 -> glyfOff 0x00032744
+	Idx 1028 -> glyfOff 0x00032756
+	Idx 1029 -> glyfOff 0x00032768
+	Idx 1030 -> glyfOff 0x0003277A
+	Idx 1031 -> glyfOff 0x0003278C
+	Idx 1032 -> glyfOff 0x000327AA
+	Idx 1033 -> glyfOff 0x000327C8
+	Idx 1034 -> glyfOff 0x000327E8
+	Idx 1035 -> glyfOff 0x00032826
+	Idx 1036 -> glyfOff 0x0003286C
+	Idx 1037 -> glyfOff 0x000328DC
+	Idx 1038 -> glyfOff 0x000328EE
+	Idx 1039 -> glyfOff 0x00032900
+	Idx 1040 -> glyfOff 0x00032912
+	Idx 1041 -> glyfOff 0x00032924
+	Idx 1042 -> glyfOff 0x00032936
+	Idx 1043 -> glyfOff 0x00032948
+	Idx 1044 -> glyfOff 0x0003295A
+	Idx 1045 -> glyfOff 0x0003296C
+	Idx 1046 -> glyfOff 0x0003297E
+	Idx 1047 -> glyfOff 0x000329B2
+	Idx 1048 -> glyfOff 0x000329EA
+	Idx 1049 -> glyfOff 0x000329FC
+	Idx 1050 -> glyfOff 0x00032A0E
+	Idx 1051 -> glyfOff 0x00032A20
+	Idx 1052 -> glyfOff 0x00032A54
+	Idx 1053 -> glyfOff 0x00032A98
+	Idx 1054 -> glyfOff 0x00032AB6
+	Idx 1055 -> glyfOff 0x00032AC8
+	Idx 1056 -> glyfOff 0x00032ADA
+	Idx 1057 -> glyfOff 0x00032AEC
+	Idx 1058 -> glyfOff 0x00032B0A
+	Idx 1059 -> glyfOff 0x00032B1C
+	Idx 1060 -> glyfOff 0x00032B2E
+	Idx 1061 -> glyfOff 0x00032B64
+	Idx 1062 -> glyfOff 0x00032B9A
+	Idx 1063 -> glyfOff 0x00032BF2
+	Idx 1064 -> glyfOff 0x00032C12
+	Idx 1065 -> glyfOff 0x00032C24
+	Idx 1066 -> glyfOff 0x00032C36
+	Idx 1067 -> glyfOff 0x00032C48
+	Idx 1068 -> glyfOff 0x00032C5A
+	Idx 1069 -> glyfOff 0x00032C6C
+	Idx 1070 -> glyfOff 0x00032C7E
+	Idx 1071 -> glyfOff 0x00032CA8
+	Idx 1072 -> glyfOff 0x00032CBA
+	Idx 1073 -> glyfOff 0x00032CF8
+	Idx 1074 -> glyfOff 0x00032D3C
+	Idx 1075 -> glyfOff 0x00032D56
+	Idx 1076 -> glyfOff 0x00032D68
+	Idx 1077 -> glyfOff 0x00032D7A
+	Idx 1078 -> glyfOff 0x00032F5E
+	Idx 1079 -> glyfOff 0x000331AE
+	Idx 1080 -> glyfOff 0x000331C0
+	Idx 1081 -> glyfOff 0x000331D2
+	Idx 1082 -> glyfOff 0x000331E4
+	Idx 1083 -> glyfOff 0x000331F6
+	Idx 1084 -> glyfOff 0x00033208
+	Idx 1085 -> glyfOff 0x0003321A
+	Idx 1086 -> glyfOff 0x0003322C
+	Idx 1087 -> glyfOff 0x0003347C
+	Idx 1088 -> glyfOff 0x000336EE
+	Idx 1089 -> glyfOff 0x00033A1C
+	Idx 1090 -> glyfOff 0x00033A2E
+	Idx 1091 -> glyfOff 0x00033A40
+	Idx 1092 -> glyfOff 0x00033A52
+	Idx 1093 -> glyfOff 0x00033A64
+	Idx 1094 -> glyfOff 0x00033A76
+	Idx 1095 -> glyfOff 0x00033AA4
+	Idx 1096 -> glyfOff 0x00033AC4
+	Idx 1097 -> glyfOff 0x00033AF2
+	Idx 1098 -> glyfOff 0x00033B34
+	Idx 1099 -> glyfOff 0x00033B66
+	Idx 1100 -> glyfOff 0x00033B9A
+	Idx 1101 -> glyfOff 0x00033C3E
+	Idx 1102 -> glyfOff 0x00033D18
+	Idx 1103 -> glyfOff 0x00033DD8
+	Idx 1104 -> glyfOff 0x00033FF6
+	Idx 1105 -> glyfOff 0x000340DC
+	Idx 1106 -> glyfOff 0x000341D8
+	Idx 1107 -> glyfOff 0x0003426C
+	Idx 1108 -> glyfOff 0x00034320
+	Idx 1109 -> glyfOff 0x0003446A
+	Idx 1110 -> glyfOff 0x000345B0
+	Idx 1111 -> glyfOff 0x000346BC
+	Idx 1112 -> glyfOff 0x000347CE
+	Idx 1113 -> glyfOff 0x00034922
+	Idx 1114 -> glyfOff 0x00034A38
+	Idx 1115 -> glyfOff 0x00034BE4
+	Idx 1116 -> glyfOff 0x00034D3C
+	Idx 1117 -> glyfOff 0x00034E78
+	Idx 1118 -> glyfOff 0x00034FD4
+	Idx 1119 -> glyfOff 0x00035100
+	Idx 1120 -> glyfOff 0x000351E4
+	Idx 1121 -> glyfOff 0x000353F4
+	Idx 1122 -> glyfOff 0x00035654
+	Idx 1123 -> glyfOff 0x000358D0
+	Idx 1124 -> glyfOff 0x00035B6E
+	Idx 1125 -> glyfOff 0x00035EB8
+	Idx 1126 -> glyfOff 0x00035ECE
+	Idx 1127 -> glyfOff 0x00035EE4
+	Idx 1128 -> glyfOff 0x00036084
+	Idx 1129 -> glyfOff 0x00036316
+	Idx 1130 -> glyfOff 0x00036540
+	Idx 1131 -> glyfOff 0x000366CA
+	Idx 1132 -> glyfOff 0x0003683E
+	Idx 1133 -> glyfOff 0x000369BE
+	Idx 1134 -> glyfOff 0x00036A2E
+	Idx 1135 -> glyfOff 0x00036A9E
+	Idx 1136 -> glyfOff 0x00036B12
+	Idx 1137 -> glyfOff 0x00036B86
+	Idx 1138 -> glyfOff 0x00036BFA
+	Idx 1139 -> glyfOff 0x00036C64
+	Idx 1140 -> glyfOff 0x00036D1C
+	Idx 1141 -> glyfOff 0x00036DD0
+	Idx 1142 -> glyfOff 0x00036E82
+	Idx 1143 -> glyfOff 0x00036F36
+	Idx 1144 -> glyfOff 0x00036FF0
+	Idx 1145 -> glyfOff 0x000370AA
+	Idx 1146 -> glyfOff 0x0003716C
+	Idx 1147 -> glyfOff 0x00037212
+	Idx 1148 -> glyfOff 0x0003729E
+	Idx 1149 -> glyfOff 0x000372DC
+	Idx 1150 -> glyfOff 0x0003746A
+	Idx 1151 -> glyfOff 0x00037516
+	Idx 1152 -> glyfOff 0x000375E0
+	Idx 1153 -> glyfOff 0x00037648
+	Idx 1154 -> glyfOff 0x000376B0
+	Idx 1155 -> glyfOff 0x00037720
+	Idx 1156 -> glyfOff 0x00037790
+	Idx 1157 -> glyfOff 0x00037848
+	Idx 1158 -> glyfOff 0x00037900
+	Idx 1159 -> glyfOff 0x000379BA
+	Idx 1160 -> glyfOff 0x00037A74
+	Idx 1161 -> glyfOff 0x00037B2E
+	Idx 1162 -> glyfOff 0x00037BEC
+	Idx 1163 -> glyfOff 0x00037CAA
+	Idx 1164 -> glyfOff 0x00037D68
+	Idx 1165 -> glyfOff 0x00037D7A
+	Idx 1166 -> glyfOff 0x00037D8C
+	Idx 1167 -> glyfOff 0x00037D9E
+	Idx 1168 -> glyfOff 0x00037DB0
+	Idx 1169 -> glyfOff 0x00037DC2
+	Idx 1170 -> glyfOff 0x00037E36
+	Idx 1171 -> glyfOff 0x00037EA0
+	Idx 1172 -> glyfOff 0x00037F5E
+	Idx 1173 -> glyfOff 0x00037F70
+	Idx 1174 -> glyfOff 0x00037F82
+	Idx 1175 -> glyfOff 0x00037F94
+	Idx 1176 -> glyfOff 0x00037FA6
+	Idx 1177 -> glyfOff 0x00037FB8
+	Idx 1178 -> glyfOff 0x00037FCA
+	Idx 1179 -> glyfOff 0x00037FDC
+	Idx 1180 -> glyfOff 0x00037FEE
+	Idx 1181 -> glyfOff 0x00038000
+	Idx 1182 -> glyfOff 0x00038012
+	Idx 1183 -> glyfOff 0x000380CC
+	Idx 1184 -> glyfOff 0x00038186
+	Idx 1185 -> glyfOff 0x00038240
+	Idx 1186 -> glyfOff 0x000382FA
+	Idx 1187 -> glyfOff 0x00038324
+	Idx 1188 -> glyfOff 0x0003834A
+	Idx 1189 -> glyfOff 0x00038388
+	Idx 1190 -> glyfOff 0x000383B4
+	Idx 1191 -> glyfOff 0x0003841A
+	Idx 1192 -> glyfOff 0x00038474
+	Idx 1193 -> glyfOff 0x000384DC
+	Idx 1194 -> glyfOff 0x0003853A
+	Idx 1195 -> glyfOff 0x00038590
+	Idx 1196 -> glyfOff 0x000385DE
+	Idx 1197 -> glyfOff 0x00038634
+	Idx 1198 -> glyfOff 0x00038682
+	Idx 1199 -> glyfOff 0x000386E4
+	Idx 1200 -> glyfOff 0x00038734
+	Idx 1201 -> glyfOff 0x00038798
+	Idx 1202 -> glyfOff 0x000387F6
+	Idx 1203 -> glyfOff 0x00038858
+	Idx 1204 -> glyfOff 0x000388A8
+	Idx 1205 -> glyfOff 0x00038910
+	Idx 1206 -> glyfOff 0x00038982
+	Idx 1207 -> glyfOff 0x000389E0
+	Idx 1208 -> glyfOff 0x00038A2C
+	Idx 1209 -> glyfOff 0x00038A92
+	Idx 1210 -> glyfOff 0x00038AE0
+	Idx 1211 -> glyfOff 0x00038B0E
+	Idx 1212 -> glyfOff 0x00038B36
+	Idx 1213 -> glyfOff 0x00038B5E
+	Idx 1214 -> glyfOff 0x00038B82
+	Idx 1215 -> glyfOff 0x00038BBC
+	Idx 1216 -> glyfOff 0x00038BEA
+	Idx 1217 -> glyfOff 0x00038C2E
+	Idx 1218 -> glyfOff 0x00038C7A
+	Idx 1219 -> glyfOff 0x00038CC0
+	Idx 1220 -> glyfOff 0x00038D10
+	Idx 1221 -> glyfOff 0x00038D44
+	Idx 1222 -> glyfOff 0x00038D84
+	Idx 1223 -> glyfOff 0x00038DB8
+	Idx 1224 -> glyfOff 0x00038DF8
+	Idx 1225 -> glyfOff 0x00038E40
+	Idx 1226 -> glyfOff 0x00038E84
+	Idx 1227 -> glyfOff 0x00038EA8
+	Idx 1228 -> glyfOff 0x00038ECC
+	Idx 1229 -> glyfOff 0x00038EF2
+	Idx 1230 -> glyfOff 0x00038F18
+	Idx 1231 -> glyfOff 0x00038F3E
+	Idx 1232 -> glyfOff 0x00038F64
+	Idx 1233 -> glyfOff 0x00038F88
+	Idx 1234 -> glyfOff 0x00038FAC
+	Idx 1235 -> glyfOff 0x00038FF2
+	Idx 1236 -> glyfOff 0x0003903E
+	Idx 1237 -> glyfOff 0x00039084
+	Idx 1238 -> glyfOff 0x000390D4
+	Idx 1239 -> glyfOff 0x00039108
+	Idx 1240 -> glyfOff 0x0003914C
+	Idx 1241 -> glyfOff 0x00039180
+	Idx 1242 -> glyfOff 0x000391C0
+	Idx 1243 -> glyfOff 0x00039200
+	Idx 1244 -> glyfOff 0x00039242
+	Idx 1245 -> glyfOff 0x00039274
+	Idx 1246 -> glyfOff 0x000392A2
+	Idx 1247 -> glyfOff 0x000392D8
+	Idx 1248 -> glyfOff 0x0003930A
+	Idx 1249 -> glyfOff 0x0003932E
+	Idx 1250 -> glyfOff 0x00039352
+	Idx 1251 -> glyfOff 0x00039382
+	Idx 1252 -> glyfOff 0x000393B0
+	Idx 1253 -> glyfOff 0x000393DC
+	Idx 1254 -> glyfOff 0x00039402
+	Idx 1255 -> glyfOff 0x00039428
+	Idx 1256 -> glyfOff 0x0003944E
+	Idx 1257 -> glyfOff 0x00039478
+	Idx 1258 -> glyfOff 0x000394B4
+	Idx 1259 -> glyfOff 0x000394E4
+	Idx 1260 -> glyfOff 0x00039512
+	Idx 1261 -> glyfOff 0x00039556
+	Idx 1262 -> glyfOff 0x00039584
+	Idx 1263 -> glyfOff 0x000395AE
+	Idx 1264 -> glyfOff 0x000395E6
+	Idx 1265 -> glyfOff 0x00039616
+	Idx 1266 -> glyfOff 0x00039644
+	Idx 1267 -> glyfOff 0x0003966A
+	Idx 1268 -> glyfOff 0x00039690
+	Idx 1269 -> glyfOff 0x000396B6
+	Idx 1270 -> glyfOff 0x000396DA
+	Idx 1271 -> glyfOff 0x000396FE
+	Idx 1272 -> glyfOff 0x00039724
+	Idx 1273 -> glyfOff 0x00039754
+	Idx 1274 -> glyfOff 0x00039782
+	Idx 1275 -> glyfOff 0x000397BE
+	Idx 1276 -> glyfOff 0x000397F8
+	Idx 1277 -> glyfOff 0x00039828
+	Idx 1278 -> glyfOff 0x00039858
+	Idx 1279 -> glyfOff 0x00039888
+	Idx 1280 -> glyfOff 0x000398B6
+	Idx 1281 -> glyfOff 0x000398E6
+	Idx 1282 -> glyfOff 0x0003993C
+	Idx 1283 -> glyfOff 0x00039962
+	Idx 1284 -> glyfOff 0x000399D2
+	Idx 1285 -> glyfOff 0x000399F4
+	Idx 1286 -> glyfOff 0x00039A84
+	Idx 1287 -> glyfOff 0x00039AAE
+	Idx 1288 -> glyfOff 0x00039B38
+	Idx 1289 -> glyfOff 0x00039B4E
+	Idx 1290 -> glyfOff 0x00039BE8
+	Idx 1291 -> glyfOff 0x00039D66
+	Idx 1292 -> glyfOff 0x00039F5E
+	Idx 1293 -> glyfOff 0x0003A0FE
+	Idx 1294 -> glyfOff 0x0003A2F8
+	Idx 1295 -> glyfOff 0x0003A3C0
+	Idx 1296 -> glyfOff 0x0003A482
+	Idx 1297 -> glyfOff 0x0003A6DE
+	Idx 1298 -> glyfOff 0x0003A922
+	Idx 1299 -> glyfOff 0x0003AA86
+	Idx 1300 -> glyfOff 0x0003ABEC
+	Idx 1301 -> glyfOff 0x0003AD76
+	Idx 1302 -> glyfOff 0x0003AF0E
+	Idx 1303 -> glyfOff 0x0003B00C
+	Idx 1304 -> glyfOff 0x0003B100
+	Idx 1305 -> glyfOff 0x0003B1DE
+	Idx 1306 -> glyfOff 0x0003B2C4
+	Idx 1307 -> glyfOff 0x0003B3D2
+	Idx 1308 -> glyfOff 0x0003B4EE
+	Idx 1309 -> glyfOff 0x0003B626
+	Idx 1310 -> glyfOff 0x0003B7CE
+	Idx 1311 -> glyfOff 0x0003B978
+	Idx 1312 -> glyfOff 0x0003BAAC
+	Idx 1313 -> glyfOff 0x0003BB8A
+	Idx 1314 -> glyfOff 0x0003BC64
+	Idx 1315 -> glyfOff 0x0003BD78
+	Idx 1316 -> glyfOff 0x0003BE56
+	Idx 1317 -> glyfOff 0x0003BF84
+	           Ends at 0x0003C086
+
+'glyf' Table - Glyph Data
+-------------------------
+Size = 245894 bytes, 1318 entries
+	Glyph   0: off = 0x00000000, len = 112
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1280
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	70
+	00000: PUSHB[2]              6     7 
+	00003: PUSHW[1]            268 
+	00006: PUSHB[5]              2     1     0     5     4 
+	00012: PUSHW[1]            268 
+	00015: PUSHB[5]              3     0    10     6     5 
+	00021: PUSHW[1]            268 
+	00024: PUSHB[7]              3     3     2    26     9     7     4 
+	00032: PUSHW[1]            268 
+	00035: PUSHB[7]              1     0    25     8    79   123    24 
+	00043: CALL       
+	00044: FLIPOFF    
+	00045: SRP0       
+	00046: MIRP[srp0,nmd,rd,0] 
+	00047: ALIGNRP    
+	00048: FLIPON     
+	00049: MIRP[srp0,md,rd,1] 
+	00050: ALIGNRP    
+	00051: FLIPOFF    
+	00052: SRP0       
+	00053: MIRP[srp0,nmd,rd,2] 
+	00054: ALIGNRP    
+	00055: FLIPON     
+	00056: SRP0       
+	00057: MIRP[srp0,md,rd,1] 
+	00058: ALIGNRP    
+	00059: SVTCA[y-axis] 
+	00060: MIAP[rd+ci] 
+	00061: ALIGNRP    
+	00062: MIRP[srp0,md,rd,1] 
+	00063: ALIGNRP    
+	00064: MIAP[rd+ci] 
+	00065: ALIGNRP    
+	00066: MIRP[srp0,md,rd,1] 
+	00067: ALIGNRP    
+	00068: IUP[y]     
+	00069: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1280)  ->  Abs (   256,  1280)
+	  2: Rel (  1024,     0)  ->  Abs (  1280,  1280)
+	  3: Rel (     0, -1280)  ->  Abs (  1280,     0)
+	  4: Rel (  -992,    32)  ->  Abs (   288,    32)
+	  5: Rel (   960,     0)  ->  Abs (  1248,    32)
+	  6: Rel (     0,  1216)  ->  Abs (  1248,  1248)
+	  7: Rel (  -960,     0)  ->  Abs (   288,  1248)
+
+	Glyph   1: off = 0x00000070, len = 0
+
+	Glyph   2: off = 0x00000070, len = 0
+
+	Glyph   3: off = 0x00000070, len = 0
+
+	Glyph   4: off = 0x00000070, len = 180
+	  numberOfContours:	2
+	  xMin:			491
+	  yMin:			-30
+	  xMax:			738
+	  yMax:			1285
+
+	EndPoints
+	---------
+	  0:  17
+	  1:  31
+
+	  Length of Instructions:	79
+	00000: NPUSHB      (15):   214    11   229    11     2     8     7    10     0    16 
+	                             1    19   116    26     4 
+	00017: PUSHW[1]            439 
+	00020: NPUSHB      (19):    13     0    26    11    22   174    16    62     1    10 
+	                            62    29   174     1    91     0     7     1     7 
+	00041: PUSHW[5]            585    32   254   334    24 
+	00052: CALL       
+	00053: SRP0       
+	00054: MIRP[srp0,nmd,rd,2] 
+	00055: DELTAP1    
+	00056: MIRP[nrp0,md,rd,1] 
+	00057: MIRP[nrp0,nmd,rd,0] 
+	00058: MIRP[nrp0,nmd,rd,0] 
+	00059: SRP0       
+	00060: MIRP[nrp0,nmd,rd,0] 
+	00061: MIRP[nrp0,nmd,rd,0] 
+	00062: SVTCA[y-axis] 
+	00063: MIAP[rd+ci] 
+	00064: MIAP[rd+ci] 
+	00065: MIRP[nrp0,md,rd,1] 
+	00066: SRP0       
+	00067: MIRP[nrp0,md,rd,1] 
+	00068: SVTCA[x-axis] 
+	00069: SRP1       
+	00070: SRP2       
+	00071: IP         
+	00072: SRP1       
+	00073: SRP2       
+	00074: IP         
+	00075: IUP[y]     
+	00076: IUP[x]     
+	00077: SVTCA[x-axis] 
+	00078: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                              X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:                              X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                              X-Short On
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   695,  1170)  ->  Abs (   695,  1170)
+	  1: Rel (   -38,  -678)  ->  Abs (   657,   492)
+	  2: Rel (    -2,   -32)  ->  Abs (   655,   460)
+	  3: Rel (   -23,   -26)  ->  Abs (   632,   434)
+	  4: Rel (   -17,     0)  ->  Abs (   615,   434)
+	  5: Rel (   -18,     0)  ->  Abs (   597,   434)
+	  6: Rel (   -23,    26)  ->  Abs (   574,   460)
+	  7: Rel (    -2,    32)  ->  Abs (   572,   492)
+	  8: Rel (   -37,   678)  ->  Abs (   535,  1170)
+	  9: Rel (    -2,    24)  ->  Abs (   533,  1194)
+	 10: Rel (     0,    11)  ->  Abs (   533,  1205)
+	 11: Rel (     0,    34)  ->  Abs (   533,  1239)
+	 12: Rel (    47,    46)  ->  Abs (   580,  1285)
+	 13: Rel (    35,     0)  ->  Abs (   615,  1285)
+	 14: Rel (    35,     0)  ->  Abs (   650,  1285)
+	 15: Rel (    46,   -46)  ->  Abs (   696,  1239)
+	 16: Rel (     0,   -35)  ->  Abs (   696,  1204)
+	 17: Rel (     0,   -10)  ->  Abs (   696,  1194)
+	 18: Rel (  -101, -1016)  ->  Abs (   595,   178)
+	 19: Rel (    39,     0)  ->  Abs (   634,   178)
+	 20: Rel (    43,     0)  ->  Abs (   677,   178)
+	 21: Rel (    61,   -61)  ->  Abs (   738,   117)
+	 22: Rel (     0,   -43)  ->  Abs (   738,    74)
+	 23: Rel (     0,   -44)  ->  Abs (   738,    30)
+	 24: Rel (   -62,   -60)  ->  Abs (   676,   -30)
+	 25: Rel (   -42,     0)  ->  Abs (   634,   -30)
+	 26: Rel (   -39,     0)  ->  Abs (   595,   -30)
+	 27: Rel (   -43,     0)  ->  Abs (   552,   -30)
+	 28: Rel (   -61,    61)  ->  Abs (   491,    31)
+	 29: Rel (     0,    42)  ->  Abs (   491,    73)
+	 30: Rel (     0,    45)  ->  Abs (   491,   118)
+	 31: Rel (    62,    60)  ->  Abs (   553,   178)
+
+	Glyph   5: off = 0x00000124, len = 168
+	  numberOfContours:	2
+	  xMin:			266
+	  yMin:			679
+	  xMax:			961
+	  yMax:			1234
+
+	EndPoints
+	---------
+	  0:  8
+	  1:  17
+
+	  Length of Instructions:	96
+	00000: PUSHB[2]             14     5 
+	00003: PUSHW[1]            646 
+	00006: NPUSHB      (10):     1    10     9     9     0     1     0    10   215     9 
+	00018: PUSHW[3]            676    11   702 
+	00025: NPUSHB      (12):    32    17   191    17   207    17   223    17   239    17 
+	                             5    17 
+	00039: PUSHW[3]            278     2   702 
+	00046: PUSHB[4]              8     1   215     0 
+	00051: PUSHW[1]            676 
+	00054: PUSHB[6]             48     8   111     8     2     8 
+	00061: PUSHW[5]            665    18   241   336    24 
+	00072: CALL       
+	00073: SRP0       
+	00074: MIRP[srp0,nmd,rd,2] 
+	00075: DELTAP1    
+	00076: MIRP[srp0,nmd,rd,0] 
+	00077: MIRP[nrp0,md,rd,1] 
+	00078: SRP0       
+	00079: MIRP[srp0,md,rd,1] 
+	00080: MIRP[srp0,nmd,rd,2] 
+	00081: DELTAP1    
+	00082: MIRP[nrp0,md,rd,1] 
+	00083: MIRP[srp0,nmd,rd,0] 
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: SVTCA[y-axis] 
+	00086: MIAP[rd+ci] 
+	00087: ALIGNRP    
+	00088: ALIGNRP    
+	00089: SRP0       
+	00090: ALIGNRP    
+	00091: SRP0       
+	00092: MIRP[srp0,nmd,rd,0] 
+	00093: ALIGNRP    
+	00094: IUP[y]     
+	00095: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:                              X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:                                      On
+	 10:  YDual                               On
+	 11:                              X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   266,  1234)  ->  Abs (   266,  1234)
+	  1: Rel (   266,     0)  ->  Abs (   532,  1234)
+	  2: Rel (   -70,  -486)  ->  Abs (   462,   748)
+	  3: Rel (    -6,   -38)  ->  Abs (   456,   710)
+	  4: Rel (   -32,   -31)  ->  Abs (   424,   679)
+	  5: Rel (   -25,     0)  ->  Abs (   399,   679)
+	  6: Rel (   -25,     0)  ->  Abs (   374,   679)
+	  7: Rel (   -32,    31)  ->  Abs (   342,   710)
+	  8: Rel (    -6,    38)  ->  Abs (   336,   748)
+	  9: Rel (   359,   486)  ->  Abs (   695,  1234)
+	 10: Rel (   266,     0)  ->  Abs (   961,  1234)
+	 11: Rel (   -70,  -486)  ->  Abs (   891,   748)
+	 12: Rel (    -6,   -38)  ->  Abs (   885,   710)
+	 13: Rel (   -32,   -31)  ->  Abs (   853,   679)
+	 14: Rel (   -24,     0)  ->  Abs (   829,   679)
+	 15: Rel (   -26,     0)  ->  Abs (   803,   679)
+	 16: Rel (   -32,    31)  ->  Abs (   771,   710)
+	 17: Rel (    -5,    38)  ->  Abs (   766,   748)
+
+	Glyph   6: off = 0x000001CC, len = 552
+	  numberOfContours:	2
+	  xMin:			187
+	  yMin:			-130
+	  xMax:			1041
+	  yMax:			1346
+
+	EndPoints
+	---------
+	  0:  71
+	  1:  75
+
+	  Length of Instructions:	331
+	00000: NPUSHB      (51):    80    19    80    28   159    20   159    27   175    20 
+	                           175    26   175    27     7    71     0    72    38    37 
+	                            73    65    64    55    44    45    54    91    73    64 
+	                            19    53    73   182    49    59    49     2     1    75 
+	                            35    36    74     8     9    18    29    28    19    91 
+	                            74 
+	00053: PUSHW[1]            -64 
+	00056: PUSHB[3]             34    53    74 
+	00060: PUSHW[1]            -64 
+	00063: PUSHB[3]             36    53    74 
+	00067: PUSHW[1]            -64 
+	00070: PUSHB[3]             29    53    74 
+	00074: PUSHW[1]            -64 
+	00077: PUSHB[7]             23    53    74   182    23    13    23 
+	00085: PUSHB[2]              6     2 
+	00088: RS         
+	00089: EQ         
+	00090: IF         
+	00091: ELSE       
+	00092: NPUSHB      (61):     5   160     1    68   160    64    41   160    45    32 
+	                           160    36     1    91    75     0    91    72    64    91 
+	                            55    63    91    56    62    55    52    72    52    75 
+	                            52    18    10    91    17     9    91    17    62    18 
+	                            64    42   150    52    18    64    34    53    18    64 
+	                            22    58    52    18    64    15    53    95    18     1 
+	                            18 
+	00155: PUSHW[1]            592 
+	00158: NPUSHB      (45):    77    46    91    53    45    91    54    37    91    73 
+	                            36    91    74    53    62    54    52    73    52    80 
+	                            74     1    74    52    19    27    91    20   144    24 
+	                           160    24     2    28    91    80    20   144    20   160 
+	                            20     3    20    62    19 
+	00205: PUSHW[1]            -64 
+	00208: NPUSHB      (11):    42   150    52    16    19   144    19   160    19     3 
+	                            19 
+	00221: PUSHW[5]            753    76   241   337    24 
+	00232: CALL       
+	00233: SRP0       
+	00234: MIRP[srp0,nmd,rd,0] 
+	00235: DELTAP1    
+	00236: CALL       
+	00237: MIRP[nrp0,md,rd,0] 
+	00238: DELTAP1    
+	00239: MIRP[nrp0,md,rd,1] 
+	00240: DELTAP1    
+	00241: SRP0       
+	00242: MIRP[nrp0,md,rd,1] 
+	00243: SRP0       
+	00244: MIRP[srp0,nmd,rd,0] 
+	00245: DELTAP1    
+	00246: MIRP[srp0,nmd,rd,0] 
+	00247: MIRP[srp0,nmd,rd,0] 
+	00248: MIRP[nrp0,md,rd,0] 
+	00249: SRP0       
+	00250: MIRP[nrp0,md,rd,1] 
+	00251: SRP0       
+	00252: MIRP[nrp0,md,rd,1] 
+	00253: SRP0       
+	00254: MIRP[nrp0,md,rd,1] 
+	00255: SRP0       
+	00256: MIRP[nrp0,md,rd,1] 
+	00257: SRP0       
+	00258: MIRP[srp0,nmd,rd,0] 
+	00259: DELTAP1    
+	00260: CALL       
+	00261: CALL       
+	00262: CALL       
+	00263: CALL       
+	00264: MIRP[nrp0,md,rd,0] 
+	00265: MIRP[nrp0,md,rd,1] 
+	00266: SRP0       
+	00267: MIRP[nrp0,md,rd,1] 
+	00268: SRP0       
+	00269: MIRP[srp0,nmd,rd,0] 
+	00270: MIRP[srp0,nmd,rd,0] 
+	00271: MIRP[srp0,nmd,rd,0] 
+	00272: MIRP[srp0,md,rd,0] 
+	00273: MIRP[nrp0,md,rd,1] 
+	00274: SRP0       
+	00275: MIRP[nrp0,md,rd,1] 
+	00276: SRP0       
+	00277: MIRP[nrp0,md,rd,1] 
+	00278: SRP0       
+	00279: MIRP[nrp0,md,rd,1] 
+	00280: SRP0       
+	00281: MIRP[nrp0,nmd,rd,0] 
+	00282: SRP0       
+	00283: MIRP[nrp0,nmd,rd,0] 
+	00284: SRP0       
+	00285: MIRP[nrp0,nmd,rd,0] 
+	00286: SRP0       
+	00287: MIRP[nrp0,nmd,rd,0] 
+	00288: EIF        
+	00289: SVTCA[y-axis] 
+	00290: MDAP[rd]   
+	00291: MDAP[rd]   
+	00292: SRP0       
+	00293: MIRP[srp0,md,rd,1] 
+	00294: CALL       
+	00295: CALL       
+	00296: CALL       
+	00297: CALL       
+	00298: MIRP[srp0,md,rd,1] 
+	00299: ALIGNRP    
+	00300: ALIGNRP    
+	00301: ALIGNRP    
+	00302: ALIGNRP    
+	00303: ALIGNRP    
+	00304: SRP0       
+	00305: ALIGNRP    
+	00306: ALIGNRP    
+	00307: ALIGNRP    
+	00308: ALIGNRP    
+	00309: ALIGNRP    
+	00310: MDAP[rd]   
+	00311: MDAP[rd]   
+	00312: SRP0       
+	00313: MIRP[srp0,md,rd,1] 
+	00314: CALL       
+	00315: MIRP[srp0,md,rd,1] 
+	00316: ALIGNRP    
+	00317: ALIGNRP    
+	00318: ALIGNRP    
+	00319: ALIGNRP    
+	00320: ALIGNRP    
+	00321: SRP0       
+	00322: ALIGNRP    
+	00323: ALIGNRP    
+	00324: ALIGNRP    
+	00325: ALIGNRP    
+	00326: ALIGNRP    
+	00327: IUP[y]     
+	00328: IUP[x]     
+	00329: SVTCA[x-axis] 
+	00330: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                              X-Short On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short On
+	 10:                              X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         On
+	 18:        XDual                 X-Short On
+	 19:  YDual                       X-Short On
+	 20:                              X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:                      Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:        XDual                 X-Short On
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short On
+	 37:        XDual                 X-Short On
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short Off
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short On
+	 46:        XDual                 X-Short On
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:        XDual         Y-Short X-Short On
+	 51:        XDual         Y-Short X-Short Off
+	 52:        XDual         Y-Short         On
+	 53:                      Y-Short X-Short On
+	 54:                              X-Short On
+	 55:  YDual XDual                 X-Short On
+	 56:        XDual                 X-Short On
+	 57:  YDual XDual         Y-Short X-Short Off
+	 58:  YDual XDual         Y-Short X-Short Off
+	 59:  YDual XDual                 X-Short On
+	 60:        XDual         Y-Short X-Short On
+	 61:        XDual         Y-Short X-Short Off
+	 62:        XDual         Y-Short         On
+	 63:                      Y-Short X-Short On
+	 64:                              X-Short On
+	 65:  YDual XDual                 X-Short On
+	 66:  YDual XDual                 X-Short Off
+	 67:        XDual         Y-Short X-Short Off
+	 68:        XDual         Y-Short         On
+	 69:        XDual         Y-Short         Off
+	 70:                      Y-Short X-Short Off
+	 71:  YDual                       X-Short On
+	 72:  YDual                               On
+	 73:  YDual                       X-Short On
+	 74:                              X-Short On
+	 75:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   800,   740)  ->  Abs (   800,   740)
+	  1: Rel (   -18,  -264)  ->  Abs (   782,   476)
+	  2: Rel (   161,     0)  ->  Abs (   943,   476)
+	  3: Rel (    30,     0)  ->  Abs (   973,   476)
+	  4: Rel (    26,   -23)  ->  Abs (   999,   453)
+	  5: Rel (     0,   -19)  ->  Abs (   999,   434)
+	  6: Rel (     0,   -19)  ->  Abs (   999,   415)
+	  7: Rel (   -26,   -23)  ->  Abs (   973,   392)
+	  8: Rel (   -30,     0)  ->  Abs (   943,   392)
+	  9: Rel (  -167,     0)  ->  Abs (   776,   392)
+	 10: Rel (   -33,  -468)  ->  Abs (   743,   -76)
+	 11: Rel (    -2,   -30)  ->  Abs (   741,  -106)
+	 12: Rel (   -23,   -24)  ->  Abs (   718,  -130)
+	 13: Rel (   -17,     0)  ->  Abs (   701,  -130)
+	 14: Rel (   -17,     4)  ->  Abs (   684,  -126)
+	 15: Rel (   -25,    15)  ->  Abs (   659,  -111)
+	 16: Rel (     0,    26)  ->  Abs (   659,   -85)
+	 17: Rel (     0,    15)  ->  Abs (   659,   -70)
+	 18: Rel (    33,   462)  ->  Abs (   692,   392)
+	 19: Rel (  -190,     0)  ->  Abs (   502,   392)
+	 20: Rel (   -32,  -468)  ->  Abs (   470,   -76)
+	 21: Rel (    -2,   -30)  ->  Abs (   468,  -106)
+	 22: Rel (   -24,   -24)  ->  Abs (   444,  -130)
+	 23: Rel (   -16,     0)  ->  Abs (   428,  -130)
+	 24: Rel (   -18,     4)  ->  Abs (   410,  -126)
+	 25: Rel (   -25,    15)  ->  Abs (   385,  -111)
+	 26: Rel (     0,    26)  ->  Abs (   385,   -85)
+	 27: Rel (     1,    15)  ->  Abs (   386,   -70)
+	 28: Rel (    32,   462)  ->  Abs (   418,   392)
+	 29: Rel (  -175,     0)  ->  Abs (   243,   392)
+	 30: Rel (   -30,     0)  ->  Abs (   213,   392)
+	 31: Rel (   -26,    23)  ->  Abs (   187,   415)
+	 32: Rel (     0,    19)  ->  Abs (   187,   434)
+	 33: Rel (     0,    19)  ->  Abs (   187,   453)
+	 34: Rel (    26,    23)  ->  Abs (   213,   476)
+	 35: Rel (    30,     0)  ->  Abs (   243,   476)
+	 36: Rel (   181,     0)  ->  Abs (   424,   476)
+	 37: Rel (    18,   264)  ->  Abs (   442,   740)
+	 38: Rel (  -156,     0)  ->  Abs (   286,   740)
+	 39: Rel (   -31,     0)  ->  Abs (   255,   740)
+	 40: Rel (   -26,    23)  ->  Abs (   229,   763)
+	 41: Rel (     0,    19)  ->  Abs (   229,   782)
+	 42: Rel (     0,    19)  ->  Abs (   229,   801)
+	 43: Rel (    26,    23)  ->  Abs (   255,   824)
+	 44: Rel (    31,     0)  ->  Abs (   286,   824)
+	 45: Rel (   162,     0)  ->  Abs (   448,   824)
+	 46: Rel (    33,   468)  ->  Abs (   481,  1292)
+	 47: Rel (     2,    29)  ->  Abs (   483,  1321)
+	 48: Rel (    24,    25)  ->  Abs (   507,  1346)
+	 49: Rel (    16,     0)  ->  Abs (   523,  1346)
+	 50: Rel (    18,    -4)  ->  Abs (   541,  1342)
+	 51: Rel (    25,   -16)  ->  Abs (   566,  1326)
+	 52: Rel (     0,   -24)  ->  Abs (   566,  1302)
+	 53: Rel (    -1,   -16)  ->  Abs (   565,  1286)
+	 54: Rel (   -32,  -462)  ->  Abs (   533,   824)
+	 55: Rel (   189,     0)  ->  Abs (   722,   824)
+	 56: Rel (    33,   468)  ->  Abs (   755,  1292)
+	 57: Rel (     2,    29)  ->  Abs (   757,  1321)
+	 58: Rel (    23,    25)  ->  Abs (   780,  1346)
+	 59: Rel (    17,     0)  ->  Abs (   797,  1346)
+	 60: Rel (    17,    -4)  ->  Abs (   814,  1342)
+	 61: Rel (    26,   -16)  ->  Abs (   840,  1326)
+	 62: Rel (     0,   -24)  ->  Abs (   840,  1302)
+	 63: Rel (    -1,   -16)  ->  Abs (   839,  1286)
+	 64: Rel (   -33,  -462)  ->  Abs (   806,   824)
+	 65: Rel (   179,     0)  ->  Abs (   985,   824)
+	 66: Rel (    30,     0)  ->  Abs (  1015,   824)
+	 67: Rel (    26,   -23)  ->  Abs (  1041,   801)
+	 68: Rel (     0,   -19)  ->  Abs (  1041,   782)
+	 69: Rel (     0,   -19)  ->  Abs (  1041,   763)
+	 70: Rel (   -26,   -23)  ->  Abs (  1015,   740)
+	 71: Rel (   -30,     0)  ->  Abs (   985,   740)
+	 72: Rel (  -269,     0)  ->  Abs (   716,   740)
+	 73: Rel (  -189,     0)  ->  Abs (   527,   740)
+	 74: Rel (   -19,  -264)  ->  Abs (   508,   476)
+	 75: Rel (   190,     0)  ->  Abs (   698,   476)
+
+	Glyph   7: off = 0x000003F4, len = 596
+	  numberOfContours:	1
+	  xMin:			228
+	  yMin:			-191
+	  xMax:			1000
+	  yMax:			1361
+
+	EndPoints
+	---------
+	  0:  84
+
+	  Length of Instructions:	362
+	00000: NPUSHB      (50):    34    34    12    16    63    74    35    74    36   120 
+	                            35   121    36   191     0   219    26     6    85    34 
+	                           132    34   181    34   181    36     4    88     8    32 
+	                            33    34    35    36    37    38     7    39    31    80 
+	                            79    78    77    76    75    74     7    73    82    63 
+	00052: PUSHW[1]            715 
+	00055: PUSHB[3]             56   225    70 
+	00059: PUSHW[1]            347 
+	00062: PUSHB[3]             50    50    42 
+	00066: NPUSHW      (12):   641    46    21   713    14   269     8     0   483     4 
+	                            28   347 
+	00092: PUSHB[5]              8   191     0     1     0 
+	00098: PUSHW[7]            483     4    24   347    18    11   347 
+	00113: PUSHB[3]             17    17    18 
+	00117: PUSHW[1]            269 
+	00120: PUSHB[4]             39    50   103    42 
+	00125: PUSHW[1]            718 
+	00128: PUSHB[7]             59    73    61    39    26    86    52 
+	00136: NPUSHW      (10):   347    67   347    59   269    82     0   347     8   641 
+	00158: PUSHB[3]             31    61    82 
+	00162: PUSHW[6]            623    85   161   262    24   356 
+	00175: SCANCTRL   
+	00176: CALL       
+	00177: SRP0       
+	00178: MIRP[srp0,nmd,rd,2] 
+	00179: MIRP[srp0,md,rd,1] 
+	00180: MIRP[srp0,nmd,rd,0] 
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: SRP0       
+	00183: MIRP[srp0,nmd,rd,0] 
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: MIRP[nrp0,md,rd,1] 
+	00186: FLIPOFF    
+	00187: SRP0       
+	00188: MIRP[srp0,nmd,rd,2] 
+	00189: FLIPON     
+	00190: MIRP[nrp0,md,rd,1] 
+	00191: SRP0       
+	00192: MIRP[srp0,md,rd,1] 
+	00193: MIRP[nrp0,md,rd,1] 
+	00194: SRP0       
+	00195: MIRP[srp0,nmd,rd,0] 
+	00196: ALIGNRP    
+	00197: SRP0       
+	00198: MIRP[nrp0,md,rd,1] 
+	00199: SRP0       
+	00200: MIRP[nrp0,md,rd,1] 
+	00201: SVTCA[y-axis] 
+	00202: MDAP[rd]   
+	00203: MIRP[srp0,nmd,rd,0] 
+	00204: DELTAP1    
+	00205: ALIGNRP    
+	00206: MIRP[nrp0,md,rd,1] 
+	00207: SRP0       
+	00208: MIRP[nrp0,nmd,rd,0] 
+	00209: SRP0       
+	00210: MIRP[srp0,nmd,rd,0] 
+	00211: MIRP[nrp0,md,rd,1] 
+	00212: MDAP[rd]   
+	00213: MIRP[srp0,nmd,rd,0] 
+	00214: ALIGNRP    
+	00215: SRP0       
+	00216: MIRP[nrp0,md,rd,1] 
+	00217: MIRP[srp0,nmd,rd,0] 
+	00218: MIRP[nrp0,md,rd,1] 
+	00219: SRP1       
+	00220: SRP2       
+	00221: SLOOP      
+	00222: IP         
+	00223: SRP1       
+	00224: SRP2       
+	00225: SLOOP      
+	00226: IP         
+	00227: IUP[y]     
+	00228: IUP[x]     
+	00229: RS         
+	00230: JROF       
+	00231: NPUSHB      (60):    71    84    29    41    37    37    75    38    29    84 
+	                            31    64     0    33    80    31    64     0    76    36 
+	                            73    64     1    71    41    73    64     1    30    83 
+	                            28    64     1    84     0    32    81    34    64     0 
+	                            33    34    80    79    74    38    77    64     1    36 
+	                            35    76    77    72    40    70    64     0    41    42 
+	00293: SRP0       
+	00294: ALIGNRP    
+	00295: CALL       
+	00296: SRP0       
+	00297: ALIGNRP    
+	00298: SRP0       
+	00299: ALIGNRP    
+	00300: CALL       
+	00301: SRP0       
+	00302: ALIGNRP    
+	00303: SRP0       
+	00304: ALIGNRP    
+	00305: CALL       
+	00306: SRP0       
+	00307: ALIGNRP    
+	00308: CALL       
+	00309: SVTCA[x-axis] 
+	00310: CALL       
+	00311: CALL       
+	00312: CALL       
+	00313: CALL       
+	00314: CALL       
+	00315: CALL       
+	00316: FLIPRGON   
+	00317: FLIPRGON   
+	00318: SVTCA[x-axis] 
+	00319: MPPEM      
+	00320: PUSHB[1]             11 
+	00322: GTEQ       
+	00323: MPPEM      
+	00324: PUSHB[1]             37 
+	00326: LTEQ       
+	00327: AND        
+	00328: IF         
+	00329: PUSHB[5]             71    30    75    20    69 
+	00335: PUSHW[7]            -32    33   -20    29   -20    30   -20 
+	00350: SHPIX      
+	00351: SHPIX      
+	00352: SHPIX      
+	00353: SHPIX      
+	00354: SHPIX      
+	00355: SHPIX      
+	00356: EIF        
+	00357: SVTCA[y-axis] 
+	00358: DELTAP2    
+	00359: DELTAP1    
+	00360: SVTCA[y-axis] 
+	00361: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short         Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual               Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:                      Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:        XDual         Y-Short X-Short On
+	 34:        XDual         Y-Short X-Short Off
+	 35:                      Y-Short         Off
+	 36:        XDual         Y-Short X-Short On
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:                      Y-Short X-Short Off
+	 42:                      Y-Short X-Short On
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:                      Y-Short X-Short Off
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:  YDual               Y-Short X-Short Off
+	 49:  YDual XDual         Y-Short         On
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual               Y-Short X-Short Off
+	 52:  YDual               Y-Short X-Short On
+	 53:        XDual         Y-Short         Off
+	 54:                      Y-Short X-Short Off
+	 55:                      Y-Short X-Short Off
+	 56:  YDual                       X-Short On
+	 57:  YDual                       X-Short Off
+	 58:  YDual               Y-Short X-Short Off
+	 59:  YDual XDual         Y-Short         On
+	 60:  YDual XDual         Y-Short         On
+	 61:  YDual XDual         Y-Short         Off
+	 62:  YDual XDual         Y-Short X-Short Off
+	 63:  YDual XDual                 X-Short On
+	 64:  YDual XDual                 X-Short Off
+	 65:        XDual         Y-Short X-Short On
+	 66:        XDual         Y-Short X-Short Off
+	 67:        XDual         Y-Short X-Short On
+	 68:        XDual         Y-Short X-Short Off
+	 69:        XDual         Y-Short X-Short Off
+	 70:  YDual XDual                 X-Short On
+	 71:  YDual XDual                 X-Short Off
+	 72:  YDual XDual         Y-Short X-Short Off
+	 73:  YDual XDual         Y-Short         On
+	 74:  YDual XDual         Y-Short         Off
+	 75:  YDual               Y-Short X-Short Off
+	 76:  YDual               Y-Short X-Short On
+	 77:  YDual               Y-Short X-Short Off
+	 78:  YDual               Y-Short X-Short On
+	 79:  YDual               Y-Short X-Short Off
+	 80:  YDual               Y-Short X-Short On
+	 81:  YDual               Y-Short X-Short Off
+	 82:  YDual XDual         Y-Short         On
+	 83:  YDual XDual         Y-Short         Off
+	 84:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   571,  1198)  ->  Abs (   571,  1198)
+	  1: Rel (     0,   106)  ->  Abs (   571,  1304)
+	  2: Rel (     0,    31)  ->  Abs (   571,  1335)
+	  3: Rel (    23,    26)  ->  Abs (   594,  1361)
+	  4: Rel (    19,     0)  ->  Abs (   613,  1361)
+	  5: Rel (    19,     0)  ->  Abs (   632,  1361)
+	  6: Rel (    23,   -26)  ->  Abs (   655,  1335)
+	  7: Rel (     0,   -31)  ->  Abs (   655,  1304)
+	  8: Rel (     0,  -106)  ->  Abs (   655,  1198)
+	  9: Rel (    68,    -6)  ->  Abs (   723,  1192)
+	 10: Rel (    88,   -31)  ->  Abs (   811,  1161)
+	 11: Rel (    60,   -40)  ->  Abs (   871,  1121)
+	 12: Rel (     1,    25)  ->  Abs (   872,  1146)
+	 13: Rel (    24,    24)  ->  Abs (   896,  1170)
+	 14: Rel (    17,     0)  ->  Abs (   913,  1170)
+	 15: Rel (    19,     0)  ->  Abs (   932,  1170)
+	 16: Rel (    24,   -26)  ->  Abs (   956,  1144)
+	 17: Rel (     0,   -30)  ->  Abs (   956,  1114)
+	 18: Rel (     0,  -125)  ->  Abs (   956,   989)
+	 19: Rel (     0,   -30)  ->  Abs (   956,   959)
+	 20: Rel (   -24,   -26)  ->  Abs (   932,   933)
+	 21: Rel (   -19,     0)  ->  Abs (   913,   933)
+	 22: Rel (   -16,     0)  ->  Abs (   897,   933)
+	 23: Rel (   -22,    21)  ->  Abs (   875,   954)
+	 24: Rel (    -4,    25)  ->  Abs (   871,   979)
+	 25: Rel (    -6,    47)  ->  Abs (   865,  1026)
+	 26: Rel (   -56,    38)  ->  Abs (   809,  1064)
+	 27: Rel (   -82,    54)  ->  Abs (   727,  1118)
+	 28: Rel (  -111,     0)  ->  Abs (   616,  1118)
+	 29: Rel (  -113,     0)  ->  Abs (   503,  1118)
+	 30: Rel (  -147,  -132)  ->  Abs (   356,   986)
+	 31: Rel (     0,   -83)  ->  Abs (   356,   903)
+	 32: Rel (     0,   -83)  ->  Abs (   356,   820)
+	 33: Rel (    65,   -44)  ->  Abs (   421,   776)
+	 34: Rel (    49,   -34)  ->  Abs (   470,   742)
+	 35: Rel (   315,   -59)  ->  Abs (   785,   683)
+	 36: Rel (    56,   -26)  ->  Abs (   841,   657)
+	 37: Rel (    80,   -35)  ->  Abs (   921,   622)
+	 38: Rel (    79,  -120)  ->  Abs (  1000,   502)
+	 39: Rel (     0,   -85)  ->  Abs (  1000,   417)
+	 40: Rel (     0,  -114)  ->  Abs (  1000,   303)
+	 41: Rel (  -178,  -173)  ->  Abs (   822,   130)
+	 42: Rel (  -167,   -17)  ->  Abs (   655,   113)
+	 43: Rel (     0,  -247)  ->  Abs (   655,  -134)
+	 44: Rel (     0,   -31)  ->  Abs (   655,  -165)
+	 45: Rel (   -23,   -26)  ->  Abs (   632,  -191)
+	 46: Rel (   -19,     0)  ->  Abs (   613,  -191)
+	 47: Rel (   -19,     0)  ->  Abs (   594,  -191)
+	 48: Rel (   -23,    26)  ->  Abs (   571,  -165)
+	 49: Rel (     0,    31)  ->  Abs (   571,  -134)
+	 50: Rel (     0,   247)  ->  Abs (   571,   113)
+	 51: Rel (  -154,    10)  ->  Abs (   417,   123)
+	 52: Rel (  -105,    90)  ->  Abs (   312,   213)
+	 53: Rel (     0,   -44)  ->  Abs (   312,   169)
+	 54: Rel (    -7,   -19)  ->  Abs (   305,   150)
+	 55: Rel (   -22,   -15)  ->  Abs (   283,   135)
+	 56: Rel (   -13,     0)  ->  Abs (   270,   135)
+	 57: Rel (   -18,     0)  ->  Abs (   252,   135)
+	 58: Rel (   -24,    26)  ->  Abs (   228,   161)
+	 59: Rel (     0,    30)  ->  Abs (   228,   191)
+	 60: Rel (     0,   164)  ->  Abs (   228,   355)
+	 61: Rel (     0,    30)  ->  Abs (   228,   385)
+	 62: Rel (    23,    27)  ->  Abs (   251,   412)
+	 63: Rel (    19,     0)  ->  Abs (   270,   412)
+	 64: Rel (    18,     0)  ->  Abs (   288,   412)
+	 65: Rel (    13,   -13)  ->  Abs (   301,   399)
+	 66: Rel (     9,    -9)  ->  Abs (   310,   390)
+	 67: Rel (     2,   -31)  ->  Abs (   312,   359)
+	 68: Rel (     6,   -53)  ->  Abs (   318,   306)
+	 69: Rel (   159,  -111)  ->  Abs (   477,   195)
+	 70: Rel (   136,     0)  ->  Abs (   613,   195)
+	 71: Rel (   141,     0)  ->  Abs (   754,   195)
+	 72: Rel (   162,   134)  ->  Abs (   916,   329)
+	 73: Rel (     0,    89)  ->  Abs (   916,   418)
+	 74: Rel (     0,    59)  ->  Abs (   916,   477)
+	 75: Rel (   -60,    84)  ->  Abs (   856,   561)
+	 76: Rel (   -64,    27)  ->  Abs (   792,   588)
+	 77: Rel (   -42,    17)  ->  Abs (   750,   605)
+	 78: Rel (  -134,    25)  ->  Abs (   616,   630)
+	 79: Rel (  -194,    38)  ->  Abs (   422,   668)
+	 80: Rel (   -75,    60)  ->  Abs (   347,   728)
+	 81: Rel (   -76,    60)  ->  Abs (   271,   788)
+	 82: Rel (     0,   116)  ->  Abs (   271,   904)
+	 83: Rel (     0,   108)  ->  Abs (   271,  1012)
+	 84: Rel (   164,   170)  ->  Abs (   435,  1182)
+
+	Glyph   8: off = 0x00000648, len = 518
+	  numberOfContours:	5
+	  xMin:			187
+	  yMin:			-24
+	  xMax:			1044
+	  yMax:			1275
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+	  2:  43
+	  3:  55
+	  4:  67
+
+	  Length of Instructions:	322
+	00000: NPUSHB      (75):   200    25     1     6    34     1   107     8    29    28 
+	                            27    26    25    24    43    42    41     9    31    32 
+	                            33    34    35    36    37    38    39     9    40    30 
+	                            24    77    31    35   223    35     2    35    35    53 
+	                             3    34    77    16    25   208    25     2    25    25 
+	                             3    59    55    53   255    65    55    47    21    55 
+	                             3   255    15    55     9    12    55    15     0     1 
+	                             0   255    18    55     6 
+	00077: PUSHW[1]            487 
+	00080: NPUSHB      (16):    68    30    62     6    40    62    56    55    15    44 
+	                             1    44   255    62    55    50 
+	00098: PUSHW[1]            755 
+	00101: PUSHB[8]             68     9     0    47    11    99   171    24 
+	00110: CALL       
+	00111: SVTCA[y-axis] 
+	00112: MIAP[rd+ci] 
+	00113: MIAP[rd+ci] 
+	00114: SVTCA[x-axis] 
+	00115: SRP0       
+	00116: MIRP[srp0,nmd,rd,2] 
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: MIRP[srp0,md,rd,1] 
+	00119: DELTAP1    
+	00120: MIRP[nrp0,md,rd,1] 
+	00121: MIRP[nrp0,nmd,rd,0] 
+	00122: SRP0       
+	00123: MIRP[nrp0,nmd,rd,0] 
+	00124: SRP0       
+	00125: MIRP[srp0,nmd,rd,2] 
+	00126: MIRP[nrp0,md,rd,1] 
+	00127: MIRP[srp0,md,rd,1] 
+	00128: DELTAP1    
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: SVTCA[y-axis] 
+	00131: SRP0       
+	00132: MIRP[nrp0,md,rd,1] 
+	00133: MIRP[srp0,md,rd,1] 
+	00134: MIRP[nrp0,md,rd,1] 
+	00135: SRP0       
+	00136: MIRP[nrp0,md,rd,1] 
+	00137: MIRP[srp0,md,rd,1] 
+	00138: MIRP[nrp0,md,rd,1] 
+	00139: SRP2       
+	00140: IP         
+	00141: MDAP[rd]   
+	00142: DELTAP1    
+	00143: MIRP[nrp0,md,rd,1] 
+	00144: SRP1       
+	00145: SRP2       
+	00146: IP         
+	00147: MDAP[rd]   
+	00148: DELTAP1    
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: SVTCA[x-axis] 
+	00151: SRP1       
+	00152: SRP2       
+	00153: SLOOP      
+	00154: IP         
+	00155: SLOOP      
+	00156: IP         
+	00157: IUP[y]     
+	00158: IUP[x]     
+	00159: RS         
+	00160: JROF       
+	00161: NPUSHB      (84):    45    67     1    23    60    52    62    40     0    58 
+	                            54    56    40     1    64    48    62    40     0    66 
+	                            46    56    40     1    16     8    18    40     0    14 
+	                            10    12    40     1    20     4    18    40     0    22 
+	                             2    12    40     1    61    51    59    40     1    57 
+	                            55    59    40     1    63    49    65    40     0    67 
+	                            45    65    40     0    17     7    15    40     1    13 
+	                            11    15    40     1    19     5    21    40     0    23 
+	                             1    21    40     0 
+	00247: SVTCA[y-axis] 
+	00248: CALL       
+	00249: CALL       
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+	00253: CALL       
+	00254: CALL       
+	00255: CALL       
+	00256: SVTCA[x-axis] 
+	00257: CALL       
+	00258: CALL       
+	00259: CALL       
+	00260: CALL       
+	00261: CALL       
+	00262: CALL       
+	00263: CALL       
+	00264: CALL       
+	00265: FLIPRGON   
+	00266: FLIPRGON   
+	00267: SVTCA[x-axis] 
+	00268: MPPEM      
+	00269: PUSHB[1]             22 
+	00271: GTEQ       
+	00272: MPPEM      
+	00273: PUSHB[1]             37 
+	00275: LTEQ       
+	00276: AND        
+	00277: IF         
+	00278: NPUSHB       (9):    66    28    58    28    22    28    14    28    60 
+	00289: NPUSHW       (9):   -28    63   -20    64   -28    16   -28    20   -28 
+	00309: SHPIX      
+	00310: SHPIX      
+	00311: SHPIX      
+	00312: SHPIX      
+	00313: SHPIX      
+	00314: SHPIX      
+	00315: SHPIX      
+	00316: SHPIX      
+	00317: SHPIX      
+	00318: EIF        
+	00319: SVTCA[y-axis] 
+	00320: DELTAP2    
+	00321: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:                      Y-Short         On
+	 25:                      Y-Short         On
+	 26:                      Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual               Y-Short         On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:                      Y-Short X-Short On
+	 43:                      Y-Short X-Short Off
+	 44:                              X-Short On
+	 45:        XDual         Y-Short         Off
+	 46:                      Y-Short X-Short Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short Off
+	 49:  YDual               Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual                 X-Short On
+	 54:  YDual XDual                 X-Short Off
+	 55:        XDual         Y-Short X-Short Off
+	 56:                      Y-Short X-Short On
+	 57:  YDual XDual         Y-Short         Off
+	 58:  YDual               Y-Short X-Short Off
+	 59:  YDual                       X-Short On
+	 60:  YDual                       X-Short Off
+	 61:                      Y-Short X-Short Off
+	 62:        XDual         Y-Short         On
+	 63:        XDual         Y-Short         Off
+	 64:        XDual         Y-Short X-Short Off
+	 65:  YDual XDual                 X-Short On
+	 66:  YDual XDual                 X-Short Off
+	 67:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   742,  1016)  ->  Abs (   742,  1016)
+	  1: Rel (     0,  -108)  ->  Abs (   742,   908)
+	  2: Rel (  -151,  -152)  ->  Abs (   591,   756)
+	  3: Rel (  -105,     0)  ->  Abs (   486,   756)
+	  4: Rel (  -106,     0)  ->  Abs (   380,   756)
+	  5: Rel (  -150,   152)  ->  Abs (   230,   908)
+	  6: Rel (     0,   108)  ->  Abs (   230,  1016)
+	  7: Rel (     0,   108)  ->  Abs (   230,  1124)
+	  8: Rel (   150,   151)  ->  Abs (   380,  1275)
+	  9: Rel (   106,     0)  ->  Abs (   486,  1275)
+	 10: Rel (   106,     0)  ->  Abs (   592,  1275)
+	 11: Rel (   150,  -151)  ->  Abs (   742,  1124)
+	 12: Rel (   -60,  -108)  ->  Abs (   682,  1016)
+	 13: Rel (     0,    83)  ->  Abs (   682,  1099)
+	 14: Rel (  -115,   116)  ->  Abs (   567,  1215)
+	 15: Rel (   -81,     0)  ->  Abs (   486,  1215)
+	 16: Rel (   -81,     0)  ->  Abs (   405,  1215)
+	 17: Rel (  -115,  -116)  ->  Abs (   290,  1099)
+	 18: Rel (     0,   -83)  ->  Abs (   290,  1016)
+	 19: Rel (     0,   -83)  ->  Abs (   290,   933)
+	 20: Rel (   115,  -116)  ->  Abs (   405,   817)
+	 21: Rel (    81,     0)  ->  Abs (   486,   817)
+	 22: Rel (    81,     0)  ->  Abs (   567,   817)
+	 23: Rel (   115,   116)  ->  Abs (   682,   933)
+	 24: Rel (   332,  -208)  ->  Abs (  1014,   725)
+	 25: Rel (  -778,  -253)  ->  Abs (   236,   472)
+	 26: Rel (   -14,    -4)  ->  Abs (   222,   468)
+	 27: Rel (    -7,     0)  ->  Abs (   215,   468)
+	 28: Rel (   -11,     0)  ->  Abs (   204,   468)
+	 29: Rel (   -17,    18)  ->  Abs (   187,   486)
+	 30: Rel (     0,    12)  ->  Abs (   187,   498)
+	 31: Rel (     0,    10)  ->  Abs (   187,   508)
+	 32: Rel (     7,    10)  ->  Abs (   194,   518)
+	 33: Rel (     5,     6)  ->  Abs (   199,   524)
+	 34: Rel (    18,     6)  ->  Abs (   217,   530)
+	 35: Rel (   778,   253)  ->  Abs (   995,   783)
+	 36: Rel (    14,     4)  ->  Abs (  1009,   787)
+	 37: Rel (     8,     0)  ->  Abs (  1017,   787)
+	 38: Rel (    10,     0)  ->  Abs (  1027,   787)
+	 39: Rel (    17,   -18)  ->  Abs (  1044,   769)
+	 40: Rel (     0,   -12)  ->  Abs (  1044,   757)
+	 41: Rel (     0,   -10)  ->  Abs (  1044,   747)
+	 42: Rel (    -7,   -10)  ->  Abs (  1037,   737)
+	 43: Rel (    -5,    -6)  ->  Abs (  1032,   731)
+	 44: Rel (   -31,  -496)  ->  Abs (  1001,   235)
+	 45: Rel (     0,  -108)  ->  Abs (  1001,   127)
+	 46: Rel (  -151,  -151)  ->  Abs (   850,   -24)
+	 47: Rel (  -106,     0)  ->  Abs (   744,   -24)
+	 48: Rel (  -105,     0)  ->  Abs (   639,   -24)
+	 49: Rel (  -151,   152)  ->  Abs (   488,   128)
+	 50: Rel (     0,   107)  ->  Abs (   488,   235)
+	 51: Rel (     0,   108)  ->  Abs (   488,   343)
+	 52: Rel (   150,   152)  ->  Abs (   638,   495)
+	 53: Rel (   106,     0)  ->  Abs (   744,   495)
+	 54: Rel (   106,     0)  ->  Abs (   850,   495)
+	 55: Rel (   151,  -152)  ->  Abs (  1001,   343)
+	 56: Rel (   -61,  -108)  ->  Abs (   940,   235)
+	 57: Rel (     0,    84)  ->  Abs (   940,   319)
+	 58: Rel (  -115,   115)  ->  Abs (   825,   434)
+	 59: Rel (   -81,     0)  ->  Abs (   744,   434)
+	 60: Rel (   -81,     0)  ->  Abs (   663,   434)
+	 61: Rel (  -115,  -116)  ->  Abs (   548,   318)
+	 62: Rel (     0,   -83)  ->  Abs (   548,   235)
+	 63: Rel (     0,   -82)  ->  Abs (   548,   153)
+	 64: Rel (   115,  -117)  ->  Abs (   663,    36)
+	 65: Rel (    81,     0)  ->  Abs (   744,    36)
+	 66: Rel (    81,     0)  ->  Abs (   825,    36)
+	 67: Rel (   115,   116)  ->  Abs (   940,   152)
+
+	Glyph   9: off = 0x0000084E, len = 434
+	  numberOfContours:	2
+	  xMin:			254
+	  yMin:			-33
+	  xMax:			1022
+	  yMax:			1078
+
+	EndPoints
+	---------
+	  0:  56
+	  1:  65
+
+	  Length of Instructions:	246
+	00000: NPUSHB      (58):   124     7   124     9   124    57   202     1   204    32 
+	                             5    59    42    86    48   103    35   103    47   123 
+	                             7   132    62   137    65   169     7   162    62   195 
+	                            62    10    36    47    41    64    53    47    58    64 
+	                            93    38    85    58     6    36    48    49    49    35 
+	                            57    65     1     0     0     9    56    50 
+	00060: PUSHW[1]            696 
+	00063: NPUSHB      (49):    53    53   155    49    53    53    50    49    50    56 
+	                            49    35    35    49    49    36     0     9    20     0 
+	                             0     9    65    36     1    48     4     9    35    57 
+	                             3    42     6    65    36     1    48     4     9    35 
+	                            57     3    15     3    46    91    39    39    38 
+	00114: PUSHW[1]            282 
+	00117: PUSHB[5]             30    44    64    15    36 
+	00123: PUSHW[4]            399    32     1   773 
+	00132: NPUSHB      (23):    56     0    10    63    44     3    11    42    53    26 
+	                            67    33    91    12   177    60    44     6    25    66 
+	                           241   188    24 
+	00157: PUSHW[1]            292 
+	00160: SCANCTRL   
+	00161: CALL       
+	00162: FLIPOFF    
+	00163: SRP0       
+	00164: MIRP[srp0,nmd,rd,0] 
+	00165: FLIPON     
+	00166: MIRP[nrp0,md,rd,1] 
+	00167: MIRP[srp0,nmd,rd,0] 
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: FLIPOFF    
+	00170: SRP0       
+	00171: MIRP[srp0,nmd,rd,2] 
+	00172: ALIGNRP    
+	00173: SVTCA[y-axis] 
+	00174: MIAP[rd+ci] 
+	00175: FLIPON     
+	00176: MIRP[nrp0,md,rd,1] 
+	00177: MIAP[rd+ci] 
+	00178: ALIGNRP    
+	00179: MIRP[srp0,nmd,rd,0] 
+	00180: SMD        
+	00181: RTHG       
+	00182: MIRP[nrp0,md,rd,1] 
+	00183: RTG        
+	00184: MDAP[rd]   
+	00185: SMD        
+	00186: MIRP[nrp0,md,rd,1] 
+	00187: MIRP[srp0,nmd,rd,0] 
+	00188: ALIGNRP    
+	00189: SRP0       
+	00190: MIRP[nrp0,md,rd,1] 
+	00191: SRP1       
+	00192: SRP2       
+	00193: SLOOP      
+	00194: IP         
+	00195: SLOOP      
+	00196: IP         
+	00197: SVTCA[x-axis] 
+	00198: SRP1       
+	00199: SRP2       
+	00200: SLOOP      
+	00201: IP         
+	00202: SLOOP      
+	00203: IP         
+	00204: SDPVTL[1]  
+	00205: MDAP[nrd]  
+	00206: CALL       
+	00207: SFVTPV     
+	00208: RDTG       
+	00209: SRP0       
+	00210: MDRP[nrp0,nmd,rd,0] 
+	00211: RTG        
+	00212: SVTCA[y-axis] 
+	00213: SFVTL[=p1,p2] 
+	00214: SRP0       
+	00215: MIRP[srp0,md,rd,1] 
+	00216: RTDG       
+	00217: SRP2       
+	00218: IP         
+	00219: MDAP[rd]   
+	00220: RTG        
+	00221: SVTCA[x-axis] 
+	00222: SRP0       
+	00223: MIRP[srp0,nmd,nrd,1] 
+	00224: MDAP[rd]   
+	00225: MIRP[srp0,nmd,rd,0] 
+	00226: MDRP[nrp0,nmd,rd,0] 
+	00227: SDPVTL[1]  
+	00228: SFVTPV     
+	00229: RDTG       
+	00230: SRP0       
+	00231: MDRP[nrp0,nmd,rd,0] 
+	00232: MDRP[nrp0,nmd,rd,0] 
+	00233: MDRP[nrp0,nmd,rd,0] 
+	00234: SDPVTL[1]  
+	00235: SFVTPV     
+	00236: SRP0       
+	00237: MDRP[nrp0,nmd,rd,0] 
+	00238: ALIGNRP    
+	00239: IUP[y]     
+	00240: IUP[x]     
+	00241: SVTCA[x-axis] 
+	00242: DELTAP2    
+	00243: DELTAP1    
+	00244: SVTCA[y-axis] 
+	00245: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual               Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short X-Short On
+	 27:                      Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:                      Y-Short X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:        XDual         Y-Short X-Short On
+	 36:        XDual                 X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:                      Y-Short X-Short Off
+	 45:                      Y-Short X-Short Off
+	 46:  YDual                       X-Short On
+	 47:                      Y-Short X-Short Off
+	 48:                      Y-Short X-Short On
+	 49:        XDual         Y-Short X-Short On
+	 50:  YDual XDual                 X-Short On
+	 51:  YDual XDual                 X-Short Off
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short         On
+	 54:        XDual         Y-Short         Off
+	 55:                      Y-Short X-Short Off
+	 56:  YDual                       X-Short On
+	 57:                                      On
+	 58:                      Y-Short X-Short Off
+	 59:                      Y-Short X-Short Off
+	 60:        XDual         Y-Short         On
+	 61:        XDual         Y-Short         Off
+	 62:        XDual         Y-Short X-Short Off
+	 63:  YDual XDual                 X-Short On
+	 64:  YDual XDual                 X-Short Off
+	 65:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   852,     0)  ->  Abs (   852,     0)
+	  1: Rel (   -64,    99)  ->  Abs (   788,    99)
+	  2: Rel (   -90,  -132)  ->  Abs (   698,   -33)
+	  3: Rel (  -142,     0)  ->  Abs (   556,   -33)
+	  4: Rel (  -120,     0)  ->  Abs (   436,   -33)
+	  5: Rel (  -182,   190)  ->  Abs (   254,   157)
+	  6: Rel (     0,   137)  ->  Abs (   254,   294)
+	  7: Rel (     0,   106)  ->  Abs (   254,   400)
+	  8: Rel (   123,   164)  ->  Abs (   377,   564)
+	  9: Rel (   108,    32)  ->  Abs (   485,   596)
+	 10: Rel (   -74,   119)  ->  Abs (   411,   715)
+	 11: Rel (   -29,    75)  ->  Abs (   382,   790)
+	 12: Rel (     0,    40)  ->  Abs (   382,   830)
+	 13: Rel (     0,    99)  ->  Abs (   382,   929)
+	 14: Rel (   150,   149)  ->  Abs (   532,  1078)
+	 15: Rel (   105,     0)  ->  Abs (   637,  1078)
+	 16: Rel (    34,     0)  ->  Abs (   671,  1078)
+	 17: Rel (    68,   -20)  ->  Abs (   739,  1058)
+	 18: Rel (    34,   -21)  ->  Abs (   773,  1037)
+	 19: Rel (    43,    22)  ->  Abs (   816,  1059)
+	 20: Rel (    10,     0)  ->  Abs (   826,  1059)
+	 21: Rel (    17,     0)  ->  Abs (   843,  1059)
+	 22: Rel (    25,   -25)  ->  Abs (   868,  1034)
+	 23: Rel (     0,   -18)  ->  Abs (   868,  1016)
+	 24: Rel (     0,   -12)  ->  Abs (   868,  1004)
+	 25: Rel (   -14,   -20)  ->  Abs (   854,   984)
+	 26: Rel (   -21,   -11)  ->  Abs (   833,   973)
+	 27: Rel (   -65,   -35)  ->  Abs (   768,   938)
+	 28: Rel (   -31,    28)  ->  Abs (   737,   966)
+	 29: Rel (   -65,    27)  ->  Abs (   672,   993)
+	 30: Rel (   -34,     0)  ->  Abs (   638,   993)
+	 31: Rel (   -69,     0)  ->  Abs (   569,   993)
+	 32: Rel (  -103,  -102)  ->  Abs (   466,   891)
+	 33: Rel (     0,   -63)  ->  Abs (   466,   828)
+	 34: Rel (     0,   -65)  ->  Abs (   466,   763)
+	 35: Rel (    90,  -143)  ->  Abs (   556,   620)
+	 36: Rel (   232,  -369)  ->  Abs (   788,   251)
+	 37: Rel (    61,   115)  ->  Abs (   849,   366)
+	 38: Rel (    35,   151)  ->  Abs (   884,   517)
+	 39: Rel (    82,     0)  ->  Abs (   966,   517)
+	 40: Rel (    30,     0)  ->  Abs (   996,   517)
+	 41: Rel (    26,   -24)  ->  Abs (  1022,   493)
+	 42: Rel (     0,   -18)  ->  Abs (  1022,   475)
+	 43: Rel (     0,   -13)  ->  Abs (  1022,   462)
+	 44: Rel (   -15,   -22)  ->  Abs (  1007,   440)
+	 45: Rel (   -20,    -8)  ->  Abs (   987,   432)
+	 46: Rel (   -39,     0)  ->  Abs (   948,   432)
+	 47: Rel (   -48,  -169)  ->  Abs (   900,   263)
+	 48: Rel (   -62,   -93)  ->  Abs (   838,   170)
+	 49: Rel (    57,   -86)  ->  Abs (   895,    84)
+	 50: Rel (    71,     0)  ->  Abs (   966,    84)
+	 51: Rel (    30,     0)  ->  Abs (   996,    84)
+	 52: Rel (    26,   -23)  ->  Abs (  1022,    61)
+	 53: Rel (     0,   -19)  ->  Abs (  1022,    42)
+	 54: Rel (     0,   -18)  ->  Abs (  1022,    24)
+	 55: Rel (   -26,   -24)  ->  Abs (   996,     0)
+	 56: Rel (   -30,     0)  ->  Abs (   966,     0)
+	 57: Rel (  -445,   522)  ->  Abs (   521,   522)
+	 58: Rel (   -84,   -20)  ->  Abs (   437,   502)
+	 59: Rel (   -99,  -123)  ->  Abs (   338,   379)
+	 60: Rel (     0,   -85)  ->  Abs (   338,   294)
+	 61: Rel (     0,  -101)  ->  Abs (   338,   193)
+	 62: Rel (   133,  -142)  ->  Abs (   471,    51)
+	 63: Rel (    83,     0)  ->  Abs (   554,    51)
+	 64: Rel (   112,     0)  ->  Abs (   666,    51)
+	 65: Rel (    73,   126)  ->  Abs (   739,   177)
+
+	Glyph  10: off = 0x00000A00, len = 84
+	  numberOfContours:	1
+	  xMin:			481
+	  yMin:			655
+	  xMax:			747
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  8
+
+	  Length of Instructions:	41
+	00000: NPUSHB      (16):     5   182     0     0     1   174     2   146     0   174 
+	                           143     8   255     8     2     8 
+	00018: PUSHW[5]            589     9   254   334    24 
+	00029: CALL       
+	00030: SRP0       
+	00031: MIRP[srp0,nmd,rd,2] 
+	00032: DELTAP1    
+	00033: MIRP[nrp0,nmd,rd,0] 
+	00034: MIRP[srp0,md,rd,1] 
+	00035: MIRP[nrp0,nmd,rd,0] 
+	00036: SVTCA[y-axis] 
+	00037: MIAP[rd+ci] 
+	00038: MIRP[nrp0,md,rd,1] 
+	00039: IUP[y]     
+	00040: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:                              X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   481,  1255)  ->  Abs (   481,  1255)
+	  1: Rel (   266,     0)  ->  Abs (   747,  1255)
+	  2: Rel (   -70,  -525)  ->  Abs (   677,   730)
+	  3: Rel (    -6,   -42)  ->  Abs (   671,   688)
+	  4: Rel (   -33,   -33)  ->  Abs (   638,   655)
+	  5: Rel (   -24,     0)  ->  Abs (   614,   655)
+	  6: Rel (   -25,     0)  ->  Abs (   589,   655)
+	  7: Rel (   -32,    33)  ->  Abs (   557,   688)
+	  8: Rel (    -6,    42)  ->  Abs (   551,   730)
+
+	Glyph  11: off = 0x00000A54, len = 174
+	  numberOfContours:	1
+	  xMin:			605
+	  yMin:			-260
+	  xMax:			943
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  27
+
+	  Length of Instructions:	80
+	00000: NPUSHB      (39):    41    12    42    16     2     5    23    14    19    10 
+	                            18    22     6     6     5    16    23    22    19    21 
+	                            62    19     5    77     9     9    19   160    14    36 
+	                             0     0    16     0     2     0    25    28   202 
+	00041: PUSHW[3]            261    24   281 
+	00048: SCANCTRL   
+	00049: CALL       
+	00050: FLIPOFF    
+	00051: SRP0       
+	00052: MIRP[srp0,nmd,rd,0] 
+	00053: DELTAP1    
+	00054: FLIPON     
+	00055: MIRP[srp0,md,rd,1] 
+	00056: MIRP[srp0,nmd,rd,0] 
+	00057: ALIGNRP    
+	00058: SRP0       
+	00059: MIRP[nrp0,md,rd,1] 
+	00060: SRP0       
+	00061: MIRP[nrp0,nmd,rd,0] 
+	00062: SVTCA[y-axis] 
+	00063: MIAP[rd+ci] 
+	00064: ALIGNRP    
+	00065: MIAP[rd+ci] 
+	00066: ALIGNRP    
+	00067: SRP1       
+	00068: SRP2       
+	00069: IP         
+	00070: IP         
+	00071: SVTCA[x-axis] 
+	00072: SRP1       
+	00073: SRP2       
+	00074: IP         
+	00075: IP         
+	00076: IUP[y]     
+	00077: IUP[x]     
+	00078: SVTCA[x-axis] 
+	00079: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         Off
+	  2:        XDual                 X-Short Off
+	  3:        XDual                 X-Short Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:                              X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:        XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short On
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:                              X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   605,   498)  ->  Abs (   605,   498)
+	  1: Rel (     0,   115)  ->  Abs (   605,   613)
+	  2: Rel (    60,   258)  ->  Abs (   665,   871)
+	  3: Rel (   170,   338)  ->  Abs (   835,  1209)
+	  4: Rel (    39,    35)  ->  Abs (   874,  1244)
+	  5: Rel (    12,    11)  ->  Abs (   886,  1255)
+	  6: Rel (    14,     0)  ->  Abs (   900,  1255)
+	  7: Rel (    18,     0)  ->  Abs (   918,  1255)
+	  8: Rel (    25,   -24)  ->  Abs (   943,  1231)
+	  9: Rel (     0,   -17)  ->  Abs (   943,  1214)
+	 10: Rel (     0,   -10)  ->  Abs (   943,  1204)
+	 11: Rel (    -7,   -12)  ->  Abs (   936,  1192)
+	 12: Rel (  -110,  -202)  ->  Abs (   826,   990)
+	 13: Rel (   -94,  -328)  ->  Abs (   732,   662)
+	 14: Rel (     0,  -164)  ->  Abs (   732,   498)
+	 15: Rel (     0,  -165)  ->  Abs (   732,   333)
+	 16: Rel (    94,  -328)  ->  Abs (   826,     5)
+	 17: Rel (   110,  -201)  ->  Abs (   936,  -196)
+	 18: Rel (     7,   -12)  ->  Abs (   943,  -208)
+	 19: Rel (     0,   -10)  ->  Abs (   943,  -218)
+	 20: Rel (     0,   -17)  ->  Abs (   943,  -235)
+	 21: Rel (   -25,   -25)  ->  Abs (   918,  -260)
+	 22: Rel (   -18,     0)  ->  Abs (   900,  -260)
+	 23: Rel (   -14,     0)  ->  Abs (   886,  -260)
+	 24: Rel (   -12,    11)  ->  Abs (   874,  -249)
+	 25: Rel (   -37,    34)  ->  Abs (   837,  -215)
+	 26: Rel (  -168,   330)  ->  Abs (   669,   115)
+	 27: Rel (   -64,   254)  ->  Abs (   605,   369)
+
+	Glyph  12: off = 0x00000B02, len = 174
+	  numberOfContours:	1
+	  xMin:			301
+	  yMin:			-260
+	  xMax:			639
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  27
+
+	  Length of Instructions:	80
+	00000: NPUSHB      (41):     9     2     9    26    25     2    25    26     4     5 
+	                            23    14    19     9    18     6    23    22    16     5 
+	                             6    19     5    77    10    10    21    62    19   160 
+	                            14    36    15     0    31     0     2     0    26    29 
+	                           164 
+	00043: PUSHW[3]            333    24   281 
+	00050: SCANCTRL   
+	00051: CALL       
+	00052: FLIPOFF    
+	00053: SRP0       
+	00054: MIRP[srp0,nmd,rd,2] 
+	00055: DELTAP1    
+	00056: FLIPON     
+	00057: MIRP[srp0,md,rd,1] 
+	00058: MIRP[srp0,nmd,rd,0] 
+	00059: MIRP[nrp0,nmd,rd,0] 
+	00060: ALIGNRP    
+	00061: SRP0       
+	00062: MIRP[nrp0,md,rd,1] 
+	00063: SVTCA[y-axis] 
+	00064: MIAP[rd+ci] 
+	00065: ALIGNRP    
+	00066: MIAP[rd+ci] 
+	00067: ALIGNRP    
+	00068: SRP2       
+	00069: IP         
+	00070: IP         
+	00071: SVTCA[x-axis] 
+	00072: SRP1       
+	00073: SRP2       
+	00074: IP         
+	00075: IP         
+	00076: IUP[y]     
+	00077: IUP[x]     
+	00078: SVTCA[x-axis] 
+	00079: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                              X-Short Off
+	  3:                              X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:        XDual                 X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:                              X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   639,   497)  ->  Abs (   639,   497)
+	  1: Rel (     0,  -115)  ->  Abs (   639,   382)
+	  2: Rel (   -60,  -257)  ->  Abs (   579,   125)
+	  3: Rel (  -170,  -339)  ->  Abs (   409,  -214)
+	  4: Rel (   -39,   -34)  ->  Abs (   370,  -248)
+	  5: Rel (   -12,   -12)  ->  Abs (   358,  -260)
+	  6: Rel (   -14,     0)  ->  Abs (   344,  -260)
+	  7: Rel (   -18,     0)  ->  Abs (   326,  -260)
+	  8: Rel (   -25,    25)  ->  Abs (   301,  -235)
+	  9: Rel (     0,    17)  ->  Abs (   301,  -218)
+	 10: Rel (     0,    10)  ->  Abs (   301,  -208)
+	 11: Rel (     7,    12)  ->  Abs (   308,  -196)
+	 12: Rel (   110,   201)  ->  Abs (   418,     5)
+	 13: Rel (    94,   328)  ->  Abs (   512,   333)
+	 14: Rel (     0,   164)  ->  Abs (   512,   497)
+	 15: Rel (     0,   165)  ->  Abs (   512,   662)
+	 16: Rel (   -94,   328)  ->  Abs (   418,   990)
+	 17: Rel (  -110,   202)  ->  Abs (   308,  1192)
+	 18: Rel (    -7,    12)  ->  Abs (   301,  1204)
+	 19: Rel (     0,    10)  ->  Abs (   301,  1214)
+	 20: Rel (     0,    17)  ->  Abs (   301,  1231)
+	 21: Rel (    25,    24)  ->  Abs (   326,  1255)
+	 22: Rel (    18,     0)  ->  Abs (   344,  1255)
+	 23: Rel (    14,     0)  ->  Abs (   358,  1255)
+	 24: Rel (    12,   -11)  ->  Abs (   370,  1244)
+	 25: Rel (    37,   -34)  ->  Abs (   407,  1210)
+	 26: Rel (   168,  -330)  ->  Abs (   575,   880)
+	 27: Rel (    64,  -254)  ->  Abs (   639,   626)
+
+	Glyph  13: off = 0x00000BB0, len = 446
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			519
+	  xMax:			769
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  45
+
+	  Length of Instructions:	308
+	00000: NPUSHB     (131):    20    28    16    35    64    28   245    26   248    36 
+	                             5    67    25   135    19   128    20     3    31    27 
+	                            31    36    76    36     3    42    36    96    13   100 
+	                            19   109    36   204    23   243    18   244    27   240 
+	                            36     8    44    42    34     3     0    40    10    20 
+	                            14     8    20    33    18    44    42    39    15    10 
+	                             5     4    37     0    45    45    36    37    36    20 
+	                            37    37    36    36    35    36    37    35    36    28 
+	                            27    20    28    28    27    27    26    27    28    26 
+	                            36    19    18    20    19    19    18     9     8     8 
+	                            36    18    17    20    18    18    17    45    37    36 
+	                            35    28     5     0    40    26    19    18    17     9 
+	                             5    14     8    36     0    18     9    45     4     0 
+	                            37 
+	00133: PUSHW[1]            771 
+	00136: NPUSHB      (18):    17     7    18    91     8     8     0     7    36    77 
+	                            27    32    18   189     0    14     1    14 
+	00156: PUSHW[1]            410 
+	00159: NPUSHB      (15):     8    64    27    77    18    32     7     8    36     0 
+	                             4   249    40     1     0 
+	00176: PUSHW[1]            317 
+	00179: NPUSHB      (11):    79    40   111    40     2    40    25    46   199   188 
+	                            24 
+	00192: PUSHW[1]            292 
+	00195: SCANCTRL   
+	00196: CALL       
+	00197: FLIPOFF    
+	00198: SRP0       
+	00199: MIRP[srp0,nmd,rd,0] 
+	00200: DELTAP1    
+	00201: FLIPON     
+	00202: MIRP[srp0,nmd,rd,0] 
+	00203: ALIGNRP    
+	00204: SRP0       
+	00205: MIRP[nrp0,md,rd,1] 
+	00206: SRP0       
+	00207: MIRP[srp0,md,rd,1] 
+	00208: ALIGNRP    
+	00209: SMD        
+	00210: RTHG       
+	00211: SRP0       
+	00212: MIRP[nrp0,md,rd,1] 
+	00213: SMD        
+	00214: RTG        
+	00215: SRP0       
+	00216: MIRP[nrp0,md,rd,1] 
+	00217: DELTAP1    
+	00218: MIRP[nrp0,md,rd,1] 
+	00219: SMD        
+	00220: RTHG       
+	00221: SRP0       
+	00222: MIRP[nrp0,md,rd,1] 
+	00223: RTG        
+	00224: SVTCA[y-axis] 
+	00225: MIAP[rd+ci] 
+	00226: ALIGNRP    
+	00227: RTHG       
+	00228: SRP0       
+	00229: MIRP[nrp0,md,rd,1] 
+	00230: RTG        
+	00231: MIAP[rd+ci] 
+	00232: MIRP[nrp0,nmd,rd,0] 
+	00233: MIAP[rd+ci] 
+	00234: IP         
+	00235: IP         
+	00236: SRP1       
+	00237: SRP2       
+	00238: IP         
+	00239: SVTCA[x-axis] 
+	00240: SRP1       
+	00241: SRP2       
+	00242: SLOOP      
+	00243: IP         
+	00244: SRP1       
+	00245: SRP2       
+	00246: SLOOP      
+	00247: IP         
+	00248: SFVTCA[y-axis] 
+	00249: SDPVTL[1]  
+	00250: MDAP[nrd]  
+	00251: CALL       
+	00252: SFVTPV     
+	00253: RDTG       
+	00254: SRP0       
+	00255: MDRP[nrp0,nmd,rd,0] 
+	00256: SDPVTL[1]  
+	00257: SFVTPV     
+	00258: MDAP[nrd]  
+	00259: RTG        
+	00260: CALL       
+	00261: SFVTL[=p1,p2] 
+	00262: RDTG       
+	00263: SRP0       
+	00264: MDRP[nrp0,nmd,rd,0] 
+	00265: SDPVTL[1]  
+	00266: SFVTPV     
+	00267: MDAP[nrd]  
+	00268: RTG        
+	00269: CALL       
+	00270: SFVTL[=p1,p2] 
+	00271: RDTG       
+	00272: SRP0       
+	00273: MDRP[nrp0,nmd,rd,0] 
+	00274: SDPVTL[1]  
+	00275: SFVTPV     
+	00276: MDAP[nrd]  
+	00277: RTG        
+	00278: CALL       
+	00279: SFVTCA[y-axis] 
+	00280: RDTG       
+	00281: SRP0       
+	00282: MDRP[nrp0,nmd,rd,0] 
+	00283: SVTCA[y-axis] 
+	00284: SRP1       
+	00285: SRP2       
+	00286: SLOOP      
+	00287: IP         
+	00288: SRP1       
+	00289: SHP[rp1,zp0] 
+	00290: SHP[rp1,zp0] 
+	00291: SVTCA[x-axis] 
+	00292: SRP1       
+	00293: SRP2       
+	00294: IP         
+	00295: IP         
+	00296: SRP1       
+	00297: SRP2       
+	00298: SLOOP      
+	00299: IP         
+	00300: IUP[y]     
+	00301: IUP[x]     
+	00302: SVTCA[x-axis] 
+	00303: DELTAP1    
+	00304: DELTAP1    
+	00305: SVTCA[y-axis] 
+	00306: DELTAP2    
+	00307: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual         Y-Short         Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual                         On
+	  9:  YDual               Y-Short         On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short         On
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short On
+	 28:                      Y-Short X-Short On
+	 29:                      Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual               Y-Short         On
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   342,   911)  ->  Abs (   342,   911)
+	  1: Rel (     0,   287)  ->  Abs (   342,  1198)
+	  2: Rel (     0,    31)  ->  Abs (   342,  1229)
+	  3: Rel (    24,    26)  ->  Abs (   366,  1255)
+	  4: Rel (    19,     0)  ->  Abs (   385,  1255)
+	  5: Rel (    18,     0)  ->  Abs (   403,  1255)
+	  6: Rel (    24,   -26)  ->  Abs (   427,  1229)
+	  7: Rel (     0,   -31)  ->  Abs (   427,  1198)
+	  8: Rel (     0,  -287)  ->  Abs (   427,   911)
+	  9: Rel (   273,    89)  ->  Abs (   700,  1000)
+	 10: Rel (    19,     6)  ->  Abs (   719,  1006)
+	 11: Rel (    10,     0)  ->  Abs (   729,  1006)
+	 12: Rel (    16,     0)  ->  Abs (   745,  1006)
+	 13: Rel (    24,   -25)  ->  Abs (   769,   981)
+	 14: Rel (     0,   -17)  ->  Abs (   769,   964)
+	 15: Rel (     0,   -15)  ->  Abs (   769,   949)
+	 16: Rel (   -17,   -22)  ->  Abs (   752,   927)
+	 17: Rel (   -26,    -8)  ->  Abs (   726,   919)
+	 18: Rel (  -273,   -89)  ->  Abs (   453,   830)
+	 19: Rel (   169,  -232)  ->  Abs (   622,   598)
+	 20: Rel (    16,   -23)  ->  Abs (   638,   575)
+	 21: Rel (     0,   -13)  ->  Abs (   638,   562)
+	 22: Rel (     0,   -18)  ->  Abs (   638,   544)
+	 23: Rel (   -25,   -25)  ->  Abs (   613,   519)
+	 24: Rel (   -17,     0)  ->  Abs (   596,   519)
+	 25: Rel (   -22,     0)  ->  Abs (   574,   519)
+	 26: Rel (   -21,    29)  ->  Abs (   553,   548)
+	 27: Rel (  -169,   233)  ->  Abs (   384,   781)
+	 28: Rel (  -169,  -233)  ->  Abs (   215,   548)
+	 29: Rel (   -21,   -29)  ->  Abs (   194,   519)
+	 30: Rel (   -21,     0)  ->  Abs (   173,   519)
+	 31: Rel (   -18,     0)  ->  Abs (   155,   519)
+	 32: Rel (   -25,    25)  ->  Abs (   130,   544)
+	 33: Rel (     0,    18)  ->  Abs (   130,   562)
+	 34: Rel (     0,    13)  ->  Abs (   130,   575)
+	 35: Rel (    17,    23)  ->  Abs (   147,   598)
+	 36: Rel (   169,   232)  ->  Abs (   316,   830)
+	 37: Rel (  -274,    90)  ->  Abs (    42,   920)
+	 38: Rel (   -25,     8)  ->  Abs (    17,   928)
+	 39: Rel (   -17,    21)  ->  Abs (     0,   949)
+	 40: Rel (     0,    15)  ->  Abs (     0,   964)
+	 41: Rel (     0,    17)  ->  Abs (     0,   981)
+	 42: Rel (    24,    25)  ->  Abs (    24,  1006)
+	 43: Rel (    15,     0)  ->  Abs (    39,  1006)
+	 44: Rel (    11,     0)  ->  Abs (    50,  1006)
+	 45: Rel (    19,    -6)  ->  Abs (    69,  1000)
+
+	Glyph  14: off = 0x00000D6E, len = 188
+	  numberOfContours:	1
+	  xMin:			144
+	  yMin:			67
+	  xMax:			1085
+	  yMax:			1101
+
+	EndPoints
+	---------
+	  0:  31
+
+	  Length of Instructions:	91
+	00000: NPUSHB      (49):    25    91    31    31     0     0     8    20   167    16 
+	                            91     4   167     8    15    91     9     9     8    28 
+	                           220     0    91     8    23    91    17    17    24    91 
+	                            16    16     8     1    91     7     7     8   220    48 
+	                            12     1    12    25    32     8    80   129    24 
+	00051: CALL       
+	00052: SVTCA[y-axis] 
+	00053: MDAP[rd]   
+	00054: SVTCA[x-axis] 
+	00055: FLIPOFF    
+	00056: SRP0       
+	00057: MIRP[srp0,nmd,rd,0] 
+	00058: DELTAP1    
+	00059: FLIPON     
+	00060: MIRP[srp0,nmd,rd,0] 
+	00061: ALIGNRP    
+	00062: SRP0       
+	00063: MIRP[nrp0,md,rd,1] 
+	00064: SRP0       
+	00065: ALIGNRP    
+	00066: SRP0       
+	00067: MIRP[nrp0,md,rd,1] 
+	00068: ALIGNRP    
+	00069: SRP0       
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: SRP0       
+	00072: MIRP[srp0,md,rd,1] 
+	00073: MIRP[nrp0,nmd,rd,0] 
+	00074: SVTCA[y-axis] 
+	00075: SRP0       
+	00076: ALIGNRP    
+	00077: SRP0       
+	00078: MIRP[nrp0,md,rd,1] 
+	00079: SRP0       
+	00080: MIRP[nrp0,nmd,rd,0] 
+	00081: MIRP[srp0,md,rd,1] 
+	00082: MIRP[nrp0,nmd,rd,0] 
+	00083: SRP0       
+	00084: ALIGNRP    
+	00085: SRP0       
+	00086: ALIGNRP    
+	00087: SRP0       
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: IUP[y]     
+	00090: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:        XDual                         On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual                               On
+	 17:        XDual                         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual                         On
+	 25:  YDual                               On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:                      Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   657,   543)  ->  Abs (   657,   543)
+	  1: Rel (     0,  -420)  ->  Abs (   657,   123)
+	  2: Rel (     0,   -30)  ->  Abs (   657,    93)
+	  3: Rel (   -24,   -26)  ->  Abs (   633,    67)
+	  4: Rel (   -19,     0)  ->  Abs (   614,    67)
+	  5: Rel (   -18,     0)  ->  Abs (   596,    67)
+	  6: Rel (   -24,    26)  ->  Abs (   572,    93)
+	  7: Rel (     0,    30)  ->  Abs (   572,   123)
+	  8: Rel (     0,   420)  ->  Abs (   572,   543)
+	  9: Rel (  -372,     0)  ->  Abs (   200,   543)
+	 10: Rel (   -30,     0)  ->  Abs (   170,   543)
+	 11: Rel (   -26,    23)  ->  Abs (   144,   566)
+	 12: Rel (     0,    19)  ->  Abs (   144,   585)
+	 13: Rel (     0,    19)  ->  Abs (   144,   604)
+	 14: Rel (    26,    23)  ->  Abs (   170,   627)
+	 15: Rel (    30,     0)  ->  Abs (   200,   627)
+	 16: Rel (   372,     0)  ->  Abs (   572,   627)
+	 17: Rel (     0,   418)  ->  Abs (   572,  1045)
+	 18: Rel (     0,    30)  ->  Abs (   572,  1075)
+	 19: Rel (    24,    26)  ->  Abs (   596,  1101)
+	 20: Rel (    19,     0)  ->  Abs (   615,  1101)
+	 21: Rel (    18,     0)  ->  Abs (   633,  1101)
+	 22: Rel (    24,   -26)  ->  Abs (   657,  1075)
+	 23: Rel (     0,   -30)  ->  Abs (   657,  1045)
+	 24: Rel (     0,  -418)  ->  Abs (   657,   627)
+	 25: Rel (   372,     0)  ->  Abs (  1029,   627)
+	 26: Rel (    30,     0)  ->  Abs (  1059,   627)
+	 27: Rel (    26,   -23)  ->  Abs (  1085,   604)
+	 28: Rel (     0,   -19)  ->  Abs (  1085,   585)
+	 29: Rel (     0,   -19)  ->  Abs (  1085,   566)
+	 30: Rel (   -26,   -23)  ->  Abs (  1059,   543)
+	 31: Rel (   -30,     0)  ->  Abs (  1029,   543)
+
+	Glyph  15: off = 0x00000E2A, len = 96
+	  numberOfContours:	1
+	  xMin:			299
+	  yMin:			-300
+	  xMax:			721
+	  yMax:			302
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	51
+	00000: NPUSHB      (24):   194     0   210     0   224     0   240     0     4     0 
+	                           182     4     1   243     2   193     0   210    15     7 
+	                            31     7     2     7 
+	00026: PUSHW[5]            408    10   109   285    24 
+	00037: CALL       
+	00038: SRP0       
+	00039: MIRP[srp0,nmd,rd,2] 
+	00040: DELTAP1    
+	00041: MIRP[nrp0,nmd,rd,0] 
+	00042: MIRP[srp0,md,rd,1] 
+	00043: MIRP[nrp0,nmd,rd,0] 
+	00044: SVTCA[y-axis] 
+	00045: MDAP[rd]   
+	00046: MIRP[nrp0,md,rd,1] 
+	00047: IUP[y]     
+	00048: IUP[x]     
+	00049: SVTCA[x-axis] 
+	00050: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:                                      On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   448,   302)  ->  Abs (   448,   302)
+	  1: Rel (   273,     0)  ->  Abs (   721,   302)
+	  2: Rel (  -297,  -552)  ->  Abs (   424,  -250)
+	  3: Rel (   -27,   -50)  ->  Abs (   397,  -300)
+	  4: Rel (   -38,     0)  ->  Abs (   359,  -300)
+	  5: Rel (   -25,     0)  ->  Abs (   334,  -300)
+	  6: Rel (   -35,    35)  ->  Abs (   299,  -265)
+	  7: Rel (     0,    25)  ->  Abs (   299,  -240)
+	  8: Rel (     0,    10)  ->  Abs (   299,  -230)
+	  9: Rel (     3,    12)  ->  Abs (   302,  -218)
+
+	Glyph  16: off = 0x00000E8A, len = 52
+	  numberOfContours:	1
+	  xMin:			186
+	  yMin:			519
+	  xMax:			1043
+	  yMax:			639
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	26
+	00000: NPUSHB      (12):     0   192     2     0    26     5     2    25     4    99 
+	                           171    24 
+	00014: CALL       
+	00015: FLIPOFF    
+	00016: SRP0       
+	00017: MIRP[nrp0,nmd,rd,0] 
+	00018: SRP0       
+	00019: MIRP[nrp0,nmd,rd,2] 
+	00020: SVTCA[y-axis] 
+	00021: MDAP[rd]   
+	00022: FLIPON     
+	00023: MIRP[nrp0,md,rd,1] 
+	00024: IUP[y]     
+	00025: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1043,   639)  ->  Abs (  1043,   639)
+	  1: Rel (     0,  -120)  ->  Abs (  1043,   519)
+	  2: Rel (  -857,     0)  ->  Abs (   186,   519)
+	  3: Rel (     0,   120)  ->  Abs (   186,   639)
+
+	Glyph  17: off = 0x00000EBE, len = 76
+	  numberOfContours:	1
+	  xMin:			461
+	  yMin:			-30
+	  xMax:			769
+	  yMax:			241
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	28
+	00000: NPUSHB      (10):     1   178     8    11     4   216    11    25    14   109 
+	00012: PUSHW[2]            286    24 
+	00017: CALL       
+	00018: FLIPOFF    
+	00019: SRP0       
+	00020: MIRP[srp0,nmd,rd,0] 
+	00021: FLIPON     
+	00022: MIRP[nrp0,md,rd,1] 
+	00023: SVTCA[y-axis] 
+	00024: MIAP[rd+ci] 
+	00025: MIRP[nrp0,md,rd,1] 
+	00026: IUP[y]     
+	00027: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   597,   241)  ->  Abs (   597,   241)
+	  1: Rel (    36,     0)  ->  Abs (   633,   241)
+	  2: Rel (    56,     0)  ->  Abs (   689,   241)
+	  3: Rel (    80,   -79)  ->  Abs (   769,   162)
+	  4: Rel (     0,   -56)  ->  Abs (   769,   106)
+	  5: Rel (     0,   -58)  ->  Abs (   769,    48)
+	  6: Rel (   -81,   -78)  ->  Abs (   688,   -30)
+	  7: Rel (   -55,     0)  ->  Abs (   633,   -30)
+	  8: Rel (   -36,     0)  ->  Abs (   597,   -30)
+	  9: Rel (   -56,     0)  ->  Abs (   541,   -30)
+	 10: Rel (   -80,    79)  ->  Abs (   461,    49)
+	 11: Rel (     0,    56)  ->  Abs (   461,   105)
+	 12: Rel (     0,    58)  ->  Abs (   461,   163)
+	 13: Rel (    81,    78)  ->  Abs (   542,   241)
+
+	Glyph  18: off = 0x00000F0A, len = 172
+	  numberOfContours:	1
+	  xMin:			230
+	  yMin:			-169
+	  xMax:			1002
+	  yMax:			1389
+
+	EndPoints
+	---------
+	  0:  16
+
+	  Length of Instructions:	109
+	00000: NPUSHB      (58):     9     9    22     1    25     9     3    56     0    57 
+	                             9    70     1    73     9    91     9   107     9   118 
+	                             1   120     9   137     8   137     9   150     1   153 
+	                             9   165     1   169     9   182     0   182     1   199 
+	                             1   201     9   214     1   230     1   233     9   246 
+	                             1   248     9    23    11     9     1    11 
+	00060: PUSHW[1]            456 
+	00063: PUSHB[6]              3    11    62     0    91     9 
+	00070: PUSHW[1]            434 
+	00073: NPUSHB      (10):     1    91     8   189    47     3     1     3   215    17 
+	00085: PUSHW[1]            443 
+	00088: PUSHB[2]            188    24 
+	00091: CALL       
+	00092: SRP0       
+	00093: MIRP[srp0,nmd,rd,0] 
+	00094: DELTAP1    
+	00095: MIRP[srp0,md,rd,1] 
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: MIRP[srp0,nmd,rd,0] 
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: MIRP[nrp0,nmd,rd,0] 
+	00100: SVTCA[y-axis] 
+	00101: MDAP[rd]   
+	00102: MIRP[nrp0,md,rd,1] 
+	00103: IUP[y]     
+	00104: IUP[x]     
+	00105: SVTCA[x-axis] 
+	00106: DELTAP2    
+	00107: DELTAP1    
+	00108: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:                                      On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   992,  1316)  ->  Abs (   992,  1316)
+	  1: Rel (  -676, -1448)  ->  Abs (   316,  -132)
+	  2: Rel (   -17,   -37)  ->  Abs (   299,  -169)
+	  3: Rel (   -27,     0)  ->  Abs (   272,  -169)
+	  4: Rel (   -17,     0)  ->  Abs (   255,  -169)
+	  5: Rel (   -25,    25)  ->  Abs (   230,  -144)
+	  6: Rel (     0,    15)  ->  Abs (   230,  -129)
+	  7: Rel (     0,    12)  ->  Abs (   230,  -117)
+	  8: Rel (    10,    21)  ->  Abs (   240,   -96)
+	  9: Rel (   675,  1448)  ->  Abs (   915,  1352)
+	 10: Rel (    11,    23)  ->  Abs (   926,  1375)
+	 11: Rel (    20,    14)  ->  Abs (   946,  1389)
+	 12: Rel (    14,     0)  ->  Abs (   960,  1389)
+	 13: Rel (    17,     0)  ->  Abs (   977,  1389)
+	 14: Rel (    25,   -25)  ->  Abs (  1002,  1364)
+	 15: Rel (     0,   -15)  ->  Abs (  1002,  1349)
+	 16: Rel (     0,   -11)  ->  Abs (  1002,  1338)
+
+	Glyph  19: off = 0x00000FB6, len = 578
+	  numberOfContours:	2
+	  xMin:			229
+	  yMin:			-30
+	  xMax:			1000
+	  yMax:			1285
+
+	EndPoints
+	---------
+	  0:  25
+	  1:  47
+
+	  Length of Instructions:	429
+	00000: PUSHB[4]             18     2    10    35 
+	00005: PUSHW[3]            -14     3   -12 
+	00012: PUSHB[3]             45     8    41 
+	00016: NPUSHW       (9):   -14    40   -12    39    -9    22    -9    21    -9 
+	00036: PUSHB[7]             28    14     9    14     8    14     2 
+	00044: PUSHW[3]             -8    16   -14 
+	00051: PUSHB[3]             29    14    45 
+	00055: PUSHW[3]            -14    42   -14 
+	00062: NPUSHB      (35):    41     5    28    14    31    14    34    18   109     8 
+	                            30    28    18     0    46     1    39     5    13    34 
+	                            35    14    33    61    18    44    61     5    18     5 
+	                             5    13    26    61     0 
+	00099: PUSHW[1]            716 
+	00102: PUSHB[7]             49    36    61    14    25    48   161 
+	00110: PUSHW[3]            262    24   300 
+	00117: SCANCTRL   
+	00118: CALL       
+	00119: FLIPOFF    
+	00120: SRP0       
+	00121: MIRP[srp0,nmd,rd,0] 
+	00122: FLIPON     
+	00123: MIRP[nrp0,md,rd,1] 
+	00124: SRP0       
+	00125: MIRP[srp0,nmd,rd,2] 
+	00126: MIRP[nrp0,md,rd,1] 
+	00127: SVTCA[y-axis] 
+	00128: MIAP[rd+ci] 
+	00129: MIAP[rd+ci] 
+	00130: SRP0       
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: SRP0       
+	00133: MIRP[nrp0,md,rd,1] 
+	00134: SRP2       
+	00135: IP         
+	00136: IP         
+	00137: SRP1       
+	00138: SRP2       
+	00139: IP         
+	00140: SRP1       
+	00141: IP         
+	00142: SRP1       
+	00143: SRP2       
+	00144: IP         
+	00145: IP         
+	00146: IUP[y]     
+	00147: IUP[x]     
+	00148: RS         
+	00149: JROF       
+	00150: NPUSHB      (90):     2    46    16    38    24    25    23    25    22    25 
+	                            21    25    20    25     5     6    28    27    29    27 
+	                            30    27    31    27     4     6    39    38    40    38 
+	                            41    38    42    38     4     6    11    12    10    12 
+	                             9    12     8    12     7    12     5     6     3    38 
+	                            34    17    36    64     0    32    19    26    64     1 
+	                            43     6    37    64     0    45     4    47    64     1 
+	                            35    15    33    64     1    27    25    33    64     1 
+	                            38    12    44    64     0    46     2    44    64     0 
+	00242: CALL       
+	00243: CALL       
+	00244: CALL       
+	00245: CALL       
+	00246: SVTCA[x-axis] 
+	00247: CALL       
+	00248: CALL       
+	00249: CALL       
+	00250: CALL       
+	00251: CALL       
+	00252: LOOPCALL   
+	00253: LOOPCALL   
+	00254: LOOPCALL   
+	00255: LOOPCALL   
+	00256: CALL       
+	00257: FLIPRGON   
+	00258: SVTCA[y-axis] 
+	00259: SHPIX      
+	00260: SHPIX      
+	00261: SHPIX      
+	00262: SHPIX      
+	00263: SHPIX      
+	00264: SHPIX      
+	00265: SHPIX      
+	00266: SHPIX      
+	00267: SVTCA[x-axis] 
+	00268: SHPIX      
+	00269: SHPIX      
+	00270: SHPIX      
+	00271: SHPIX      
+	00272: SHPIX      
+	00273: SHPIX      
+	00274: SHPIX      
+	00275: SHPIX      
+	00276: SHPIX      
+	00277: SHPIX      
+	00278: SHPIX      
+	00279: SHPIX      
+	00280: SHPIX      
+	00281: RS         
+	00282: NOT        
+	00283: IF         
+	00284: NPUSHB      (21):    17    30    19    25    63    20    30    17    23    63 
+	                            17    30    17    23    63    22    30    30    18    63 
+	                            34 
+	00307: PUSHW[1]             -5 
+	00310: NPUSHB      (64):    30    18    63    39    20    28    17    63    39    20 
+	                            27    16    63    39    20    25    15    63    39    20 
+	                            23    14    63    35    20    23    14    63    39    20 
+	                            22    13    63    35    20    22    13    63     3    20 
+	                            30    18    63     3    30    18    11    63    45    10 
+	                            18    11    63    22    30    18    11    63    29    20 
+	                            25    33    63    34 
+	00376: PUSHW[1]            -20 
+	00379: NPUSHB      (23):    25    33    63    15    20    23    31    63    35    20 
+	                            23    31    63     2    10    16    17    62    23    10 
+	                            16    17    62 
+	00404: SVTCA[x-axis] 
+	00405: CALL       
+	00406: CALL       
+	00407: CALL       
+	00408: CALL       
+	00409: CALL       
+	00410: CALL       
+	00411: CALL       
+	00412: CALL       
+	00413: CALL       
+	00414: CALL       
+	00415: CALL       
+	00416: CALL       
+	00417: CALL       
+	00418: CALL       
+	00419: CALL       
+	00420: CALL       
+	00421: CALL       
+	00422: CALL       
+	00423: CALL       
+	00424: SVTCA[y-axis] 
+	00425: CALL       
+	00426: CALL       
+	00427: CALL       
+	00428: EIF        
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:        XDual                         Off
+	  3:                      Y-Short X-Short On
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         On
+	 15:        XDual                         Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:                      Y-Short X-Short On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual               Y-Short X-Short On
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:                              X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short X-Short On
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short X-Short On
+	 43:        XDual         Y-Short X-Short Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short Off
+	 46:        XDual                 X-Short Off
+	 47:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1000,   731)  ->  Abs (  1000,   731)
+	  1: Rel (     0,  -208)  ->  Abs (  1000,   523)
+	  2: Rel (     0,  -271)  ->  Abs (  1000,   252)
+	  3: Rel (  -129,  -158)  ->  Abs (   871,    94)
+	  4: Rel (  -101,  -124)  ->  Abs (   770,   -30)
+	  5: Rel (  -154,     0)  ->  Abs (   616,   -30)
+	  6: Rel (   -74,     0)  ->  Abs (   542,   -30)
+	  7: Rel (  -131,    59)  ->  Abs (   411,    29)
+	  8: Rel (   -46,    53)  ->  Abs (   365,    82)
+	  9: Rel (   -29,    33)  ->  Abs (   336,   115)
+	 10: Rel (   -69,   146)  ->  Abs (   267,   261)
+	 11: Rel (   -15,    61)  ->  Abs (   252,   322)
+	 12: Rel (   -23,    86)  ->  Abs (   229,   408)
+	 13: Rel (     0,   115)  ->  Abs (   229,   523)
+	 14: Rel (     0,   208)  ->  Abs (   229,   731)
+	 15: Rel (     0,   272)  ->  Abs (   229,  1003)
+	 16: Rel (   129,   158)  ->  Abs (   358,  1161)
+	 17: Rel (   101,   124)  ->  Abs (   459,  1285)
+	 18: Rel (   154,     0)  ->  Abs (   613,  1285)
+	 19: Rel (    75,     0)  ->  Abs (   688,  1285)
+	 20: Rel (   130,   -59)  ->  Abs (   818,  1226)
+	 21: Rel (    46,   -53)  ->  Abs (   864,  1173)
+	 22: Rel (    30,   -34)  ->  Abs (   894,  1139)
+	 23: Rel (    68,  -146)  ->  Abs (   962,   993)
+	 24: Rel (    16,   -60)  ->  Abs (   978,   933)
+	 25: Rel (    22,   -86)  ->  Abs (  1000,   847)
+	 26: Rel (   -84,  -127)  ->  Abs (   916,   720)
+	 27: Rel (     0,   119)  ->  Abs (   916,   839)
+	 28: Rel (   -67,   205)  ->  Abs (   849,  1044)
+	 29: Rel (   -42,    61)  ->  Abs (   807,  1105)
+	 30: Rel (   -25,    35)  ->  Abs (   782,  1140)
+	 31: Rel (   -40,    25)  ->  Abs (   742,  1165)
+	 32: Rel (   -57,    35)  ->  Abs (   685,  1200)
+	 33: Rel (   -71,     0)  ->  Abs (   614,  1200)
+	 34: Rel (  -141,     0)  ->  Abs (   473,  1200)
+	 35: Rel (  -160,  -288)  ->  Abs (   313,   912)
+	 36: Rel (     0,  -192)  ->  Abs (   313,   720)
+	 37: Rel (     0,  -185)  ->  Abs (   313,   535)
+	 38: Rel (     0,  -119)  ->  Abs (   313,   416)
+	 39: Rel (    67,  -206)  ->  Abs (   380,   210)
+	 40: Rel (    43,   -61)  ->  Abs (   423,   149)
+	 41: Rel (    24,   -34)  ->  Abs (   447,   115)
+	 42: Rel (    40,   -25)  ->  Abs (   487,    90)
+	 43: Rel (    57,   -36)  ->  Abs (   544,    54)
+	 44: Rel (    72,     0)  ->  Abs (   616,    54)
+	 45: Rel (   140,     0)  ->  Abs (   756,    54)
+	 46: Rel (   160,   289)  ->  Abs (   916,   343)
+	 47: Rel (     0,   192)  ->  Abs (   916,   535)
+
+	Glyph  20: off = 0x000011F8, len = 266
+	  numberOfContours:	1
+	  xMin:			228
+	  yMin:			0
+	  xMax:			1000
+	  yMax:			1272
+
+	EndPoints
+	---------
+	  0:  27
+
+	  Length of Instructions:	177
+	00000: PUSHB[3]             18     8    27 
+	00004: PUSHW[1]             -8 
+	00007: NPUSHB      (15):    17     6     0     8     9    27    64    27    80    18 
+	                            80    27     4     9    15 
+	00024: PUSHW[3]            681    12   411 
+	00031: NPUSHB       (9):    16    12    12    15    16   190     9     8     2 
+	00042: PUSHW[3]            681     5   411 
+	00049: NPUSHB      (18):     1     5     5     2     1   190     8    25    24    23 
+	                            22    21    20    19     7    18    27    20 
+	00069: PUSHW[3]            727    17   615 
+	00076: PUSHB[8]              0     5     9     8    12    25     2    20 
+	00085: PUSHW[4]            641    17    23   718 
+	00094: NPUSHB      (10):     0   103    17    17     1   103     0    16     1    16 
+	00106: PUSHW[6]            624    28   161   462    24   300 
+	00119: SCANCTRL   
+	00120: CALL       
+	00121: SRP0       
+	00122: MIRP[srp0,nmd,rd,2] 
+	00123: DELTAP1    
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: ALIGNRP    
+	00126: SRP0       
+	00127: MIRP[srp0,md,rd,1] 
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: SRP0       
+	00130: MIRP[srp0,nmd,rd,0] 
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: SVTCA[y-axis] 
+	00133: MIAP[rd+ci] 
+	00134: ALIGNRP    
+	00135: MIAP[rd+ci] 
+	00136: MIRP[nrp0,md,rd,1] 
+	00137: MIRP[nrp0,md,rd,1] 
+	00138: SVTCA[x-axis] 
+	00139: SRP1       
+	00140: SRP2       
+	00141: SLOOP      
+	00142: IP         
+	00143: SVTCA[y-axis] 
+	00144: SRP0       
+	00145: MIRP[srp0,md,rd,1] 
+	00146: RTDG       
+	00147: SRP2       
+	00148: IP         
+	00149: MDAP[rd]   
+	00150: RTG        
+	00151: SVTCA[x-axis] 
+	00152: SRP0       
+	00153: MIRP[srp0,nmd,rd,1] 
+	00154: MIRP[srp0,nmd,rd,0] 
+	00155: MDRP[nrp0,nmd,rd,0] 
+	00156: SVTCA[y-axis] 
+	00157: SRP0       
+	00158: MIRP[srp0,md,rd,1] 
+	00159: RTDG       
+	00160: SRP2       
+	00161: IP         
+	00162: MDAP[rd]   
+	00163: RTG        
+	00164: SVTCA[x-axis] 
+	00165: SRP0       
+	00166: MIRP[srp0,nmd,rd,1] 
+	00167: MIRP[srp0,nmd,rd,0] 
+	00168: MDRP[nrp0,nmd,rd,0] 
+	00169: IUP[y]     
+	00170: IUP[x]     
+	00171: SVTCA[y-axis] 
+	00172: DELTAP1    
+	00173: SHPIX      
+	00174: SHPIX      
+	00175: SHPIX      
+	00176: SHPIX      
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual                               On
+	 17:        XDual                         On
+	 18:                      Y-Short         On
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   656,  1272)  ->  Abs (   656,  1272)
+	  1: Rel (     0, -1188)  ->  Abs (   656,    84)
+	  2: Rel (   288,     0)  ->  Abs (   944,    84)
+	  3: Rel (    30,     0)  ->  Abs (   974,    84)
+	  4: Rel (    26,   -23)  ->  Abs (  1000,    61)
+	  5: Rel (     0,   -19)  ->  Abs (  1000,    42)
+	  6: Rel (     0,   -18)  ->  Abs (  1000,    24)
+	  7: Rel (   -26,   -24)  ->  Abs (   974,     0)
+	  8: Rel (   -30,     0)  ->  Abs (   944,     0)
+	  9: Rel (  -660,     0)  ->  Abs (   284,     0)
+	 10: Rel (   -30,     0)  ->  Abs (   254,     0)
+	 11: Rel (   -26,    24)  ->  Abs (   228,    24)
+	 12: Rel (     0,    18)  ->  Abs (   228,    42)
+	 13: Rel (     0,    19)  ->  Abs (   228,    61)
+	 14: Rel (    26,    23)  ->  Abs (   254,    84)
+	 15: Rel (    30,     0)  ->  Abs (   284,    84)
+	 16: Rel (   288,     0)  ->  Abs (   572,    84)
+	 17: Rel (     0,  1072)  ->  Abs (   572,  1156)
+	 18: Rel (  -274,   -86)  ->  Abs (   298,  1070)
+	 19: Rel (   -20,    -6)  ->  Abs (   278,  1064)
+	 20: Rel (    -9,     0)  ->  Abs (   269,  1064)
+	 21: Rel (   -15,     0)  ->  Abs (   254,  1064)
+	 22: Rel (   -25,    25)  ->  Abs (   229,  1089)
+	 23: Rel (     0,    17)  ->  Abs (   229,  1106)
+	 24: Rel (     0,    15)  ->  Abs (   229,  1121)
+	 25: Rel (    10,    13)  ->  Abs (   239,  1134)
+	 26: Rel (     8,     8)  ->  Abs (   247,  1142)
+	 27: Rel (    25,     9)  ->  Abs (   272,  1151)
+
+	Glyph  21: off = 0x00001302, len = 418
+	  numberOfContours:	1
+	  xMin:			171
+	  yMin:			0
+	  xMax:			983
+	  yMax:			1285
+
+	EndPoints
+	---------
+	  0:  43
+
+	  Length of Instructions:	288
+	00000: PUSHB[2]              6     2 
+	00003: RS         
+	00004: EQ         
+	00005: IF         
+	00006: PUSHB[8]             27    11    43     5     4    20     0     0 
+	00015: PUSHW[1]            347 
+	00018: PUSHB[6]             10    12    20    61    34     5 
+	00025: SVTCA[y-axis] 
+	00026: MIAP[rd+ci] 
+	00027: MIRP[nrp0,md,rd,1] 
+	00028: MIAP[rd+ci] 
+	00029: MIRP[srp0,md,rd,1] 
+	00030: SRP1       
+	00031: SRP2       
+	00032: SLOOP      
+	00033: IP         
+	00034: IUP[y]     
+	00035: IUP[x]     
+	00036: ELSE       
+	00037: PUSHW[2]             22   -34 
+	00042: NPUSHB      (44):    27    36    52    72    15   122    14   134    39   134 
+	                            40   134    41   166    40   166    41   187    12   180 
+	                            42     9    13    18    10    22    53    12    56    42 
+	                             4    41    35    42    30    43    20    39    30    40 
+	                            35    12    20    11 
+	00088: PUSHW[1]            -20 
+	00091: NPUSHB      (13):   234    18   237    22   250    18   253    22     4    40 
+	                             8     8     2 
+	00106: PUSHW[3]            681     5   476 
+	00113: PUSHB[8]              1     5     5     2     1   190     8     5 
+	00122: PUSHW[6]            484     9    11   269     1   347 
+	00135: PUSHB[5]              9     9    10    12    26 
+	00141: PUSHW[1]            505 
+	00144: PUSHB[5]             20    61    34     5     0 
+	00150: PUSHW[4]            347    11     2   347 
+	00159: PUSHB[5]              8   225    17    61    37 
+	00165: NPUSHW      (13):   623    45    23   347    30   269    11   621    44   401 
+	                           262    24   300 
+	00193: SCANCTRL   
+	00194: CALL       
+	00195: SRP0       
+	00196: MIRP[srp0,nmd,rd,2] 
+	00197: MIRP[srp0,nmd,rd,0] 
+	00198: MIRP[nrp0,md,rd,1] 
+	00199: SRP0       
+	00200: MIRP[srp0,nmd,rd,2] 
+	00201: MIRP[nrp0,md,rd,1] 
+	00202: MIRP[srp0,nmd,rd,0] 
+	00203: MIRP[nrp0,md,rd,1] 
+	00204: SRP0       
+	00205: MIRP[nrp0,md,rd,1] 
+	00206: SVTCA[y-axis] 
+	00207: MIAP[rd+ci] 
+	00208: MIRP[nrp0,md,rd,1] 
+	00209: MIRP[nrp0,md,rd,1] 
+	00210: MIAP[rd+ci] 
+	00211: ALIGNRP    
+	00212: SRP0       
+	00213: MIRP[srp0,md,rd,1] 
+	00214: MIRP[nrp0,nmd,rd,0] 
+	00215: SRP0       
+	00216: MIRP[nrp0,md,rd,1] 
+	00217: SVTCA[x-axis] 
+	00218: SRP0       
+	00219: MIRP[srp0,md,rd,1] 
+	00220: RTDG       
+	00221: SRP2       
+	00222: IP         
+	00223: MDAP[rd]   
+	00224: RTG        
+	00225: SVTCA[y-axis] 
+	00226: SRP0       
+	00227: MIRP[srp0,nmd,rd,1] 
+	00228: MIRP[srp0,nmd,rd,0] 
+	00229: MDRP[nrp0,nmd,rd,0] 
+	00230: IUP[y]     
+	00231: IUP[x]     
+	00232: RS         
+	00233: JROF       
+	00234: NPUSHB      (28):    31    36    18    24    22    37    32    38    21    33 
+	                            24    64     0    19    35    17    64     1    23    31 
+	                            20    64     1    18    36    20    64     1 
+	00264: CALL       
+	00265: CALL       
+	00266: SVTCA[x-axis] 
+	00267: CALL       
+	00268: CALL       
+	00269: CALL       
+	00270: CALL       
+	00271: FLIPRGON   
+	00272: FLIPRGON   
+	00273: SVTCA[y-axis] 
+	00274: DELTAP1    
+	00275: SHPIX      
+	00276: SHPIX      
+	00277: SHPIX      
+	00278: SHPIX      
+	00279: SHPIX      
+	00280: SHPIX      
+	00281: SHPIX      
+	00282: SVTCA[y-axis] 
+	00283: DELTAP2    
+	00284: SVTCA[x-axis] 
+	00285: DELTAP2    
+	00286: CALL       
+	00287: EIF        
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         On
+	 10:  YDual                               On
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual               Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short X-Short On
+	 24:                      Y-Short X-Short Off
+	 25:                      Y-Short X-Short On
+	 26:                      Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:                      Y-Short X-Short Off
+	 40:                      Y-Short X-Short Off
+	 41:                      Y-Short X-Short On
+	 42:                                      Off
+	 43:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   253,    84)  ->  Abs (   253,    84)
+	  1: Rel (   645,     0)  ->  Abs (   898,    84)
+	  2: Rel (     0,    33)  ->  Abs (   898,   117)
+	  3: Rel (     0,    30)  ->  Abs (   898,   147)
+	  4: Rel (    24,    26)  ->  Abs (   922,   173)
+	  5: Rel (    19,     0)  ->  Abs (   941,   173)
+	  6: Rel (    18,     0)  ->  Abs (   959,   173)
+	  7: Rel (    24,   -26)  ->  Abs (   983,   147)
+	  8: Rel (     0,   -30)  ->  Abs (   983,   117)
+	  9: Rel (     0,  -117)  ->  Abs (   983,     0)
+	 10: Rel (  -812,     0)  ->  Abs (   171,     0)
+	 11: Rel (     0,   124)  ->  Abs (   171,   124)
+	 12: Rel (   256,   230)  ->  Abs (   427,   354)
+	 13: Rel (   242,   238)  ->  Abs (   669,   592)
+	 14: Rel (   113,   111)  ->  Abs (   782,   703)
+	 15: Rel (    84,   104)  ->  Abs (   866,   807)
+	 16: Rel (    31,    79)  ->  Abs (   897,   886)
+	 17: Rel (     0,    40)  ->  Abs (   897,   926)
+	 18: Rel (     0,   108)  ->  Abs (   897,  1034)
+	 19: Rel (  -174,   166)  ->  Abs (   723,  1200)
+	 20: Rel (  -123,     0)  ->  Abs (   600,  1200)
+	 21: Rel (  -110,     0)  ->  Abs (   490,  1200)
+	 22: Rel (  -170,  -126)  ->  Abs (   320,  1074)
+	 23: Rel (   -25,   -93)  ->  Abs (   295,   981)
+	 24: Rel (    -6,   -24)  ->  Abs (   289,   957)
+	 25: Rel (    -9,    -7)  ->  Abs (   280,   950)
+	 26: Rel (   -12,   -10)  ->  Abs (   268,   940)
+	 27: Rel (   -16,     0)  ->  Abs (   252,   940)
+	 28: Rel (   -17,     0)  ->  Abs (   235,   940)
+	 29: Rel (   -23,    23)  ->  Abs (   212,   963)
+	 30: Rel (     0,    16)  ->  Abs (   212,   979)
+	 31: Rel (     0,    48)  ->  Abs (   212,  1027)
+	 32: Rel (   105,   164)  ->  Abs (   317,  1191)
+	 33: Rel (   185,    94)  ->  Abs (   502,  1285)
+	 34: Rel (    97,     0)  ->  Abs (   599,  1285)
+	 35: Rel (   157,     0)  ->  Abs (   756,  1285)
+	 36: Rel (   226,  -218)  ->  Abs (   982,  1067)
+	 37: Rel (     0,  -138)  ->  Abs (   982,   929)
+	 38: Rel (     0,   -58)  ->  Abs (   982,   871)
+	 39: Rel (   -38,   -97)  ->  Abs (   944,   774)
+	 40: Rel (   -91,  -115)  ->  Abs (   853,   659)
+	 41: Rel (  -118,  -116)  ->  Abs (   735,   543)
+	 42: Rel (  -296,  -292)  ->  Abs (   439,   251)
+	 43: Rel (  -186,  -161)  ->  Abs (   253,    90)
+
+	Glyph  22: off = 0x000014A4, len = 430
+	  numberOfContours:	1
+	  xMin:			195
+	  yMin:			-30
+	  xMax:			1025
+	  yMax:			1285
+
+	EndPoints
+	---------
+	  0:  56
+
+	  Length of Instructions:	273
+	00000: PUSHB[4]            108    56     1     0 
+	00005: PUSHW[1]            -14 
+	00008: NPUSHB      (51):    50    50    53    17    58    36    73    36    74    37 
+	                            67    56   114     0     6   127    33   134    56   149 
+	                             4   147    53   150    56   165    53   166    56   185 
+	                            19   186    23   203    19   203    20   205    23   219 
+	                            19   221    23   236    19   250    23   255    47    17 
+	                             0 
+	00061: PUSHW[1]            -14 
+	00064: PUSHB[6]             20    34    27    36    52    17 
+	00071: PUSHW[1]            -34 
+	00074: NPUSHB      (28):    27    36    52    41     8    15    11    43    40    17 
+	                             3    47    33    30    26    24     0     5    35    28 
+	                             0    25    30    32    40    38    44    25 
+	00104: PUSHW[1]            347 
+	00107: PUSHB[4]             32    32    18    44 
+	00112: PUSHW[1]            397 
+	00115: PUSHB[4]             38    61    51    14 
+	00120: PUSHW[1]            397 
+	00123: PUSHB[6]             18    61     6    35    61    54 
+	00130: PUSHW[1]            269 
+	00133: NPUSHB      (10):    21    61     3    28    28    57     3    26    58    47 
+	00145: PUSHW[3]            269    28   641 
+	00152: PUSHB[8]             11    25    57    51     5     6    13   236 
+	00161: PUSHW[3]            384    24   300 
+	00168: SCANCTRL   
+	00169: CALL       
+	00170: SVTCA[y-axis] 
+	00171: MIAP[rd+ci] 
+	00172: MIAP[rd+ci] 
+	00173: SVTCA[x-axis] 
+	00174: FLIPOFF    
+	00175: SRP0       
+	00176: MIRP[srp0,nmd,rd,0] 
+	00177: FLIPON     
+	00178: MIRP[nrp0,nmd,rd,0] 
+	00179: MIRP[nrp0,nmd,rd,0] 
+	00180: FLIPOFF    
+	00181: SRP0       
+	00182: MIRP[nrp0,nmd,rd,2] 
+	00183: SRP2       
+	00184: IP         
+	00185: MDAP[rd]   
+	00186: FLIPON     
+	00187: SRP0       
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: MIRP[srp0,nmd,rd,0] 
+	00190: MIRP[nrp0,md,rd,1] 
+	00191: SVTCA[y-axis] 
+	00192: SRP0       
+	00193: MIRP[srp0,md,rd,1] 
+	00194: MIRP[nrp0,nmd,rd,0] 
+	00195: SRP0       
+	00196: MIRP[srp0,md,rd,1] 
+	00197: MIRP[nrp0,nmd,rd,0] 
+	00198: SRP2       
+	00199: IP         
+	00200: MDAP[rd]   
+	00201: MIRP[nrp0,md,rd,1] 
+	00202: SRP1       
+	00203: SRP2       
+	00204: IP         
+	00205: SRP2       
+	00206: IP         
+	00207: SRP1       
+	00208: IP         
+	00209: SVTCA[x-axis] 
+	00210: SRP1       
+	00211: SRP2       
+	00212: SLOOP      
+	00213: IP         
+	00214: SRP2       
+	00215: SLOOP      
+	00216: IP         
+	00217: SRP1       
+	00218: IP         
+	00219: IUP[y]     
+	00220: IUP[x]     
+	00221: RS         
+	00222: JROF       
+	00223: NPUSHB      (28):    52    53    36    37    19    20     4     5    37    52 
+	                            35    64     1    19     5    21    64     1    36    53 
+	                            38    64     1    20     4    18    64     0 
+	00253: SVTCA[y-axis] 
+	00254: CALL       
+	00255: CALL       
+	00256: SVTCA[x-axis] 
+	00257: CALL       
+	00258: CALL       
+	00259: FLIPRGON   
+	00260: FLIPRGON   
+	00261: FLIPRGON   
+	00262: FLIPRGON   
+	00263: SVTCA[x-axis] 
+	00264: CALL       
+	00265: CALL       
+	00266: SHPIX      
+	00267: DELTAP1    
+	00268: DELTAP2    
+	00269: SHPIX      
+	00270: SVTCA[y-axis] 
+	00271: SHPIX      
+	00272: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:        XDual         Y-Short X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short Off
+	 40:                      Y-Short X-Short Off
+	 41:                      Y-Short X-Short On
+	 42:                      Y-Short X-Short Off
+	 43:                      Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short Off
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual XDual         Y-Short X-Short On
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short Off
+	 53:        XDual         Y-Short X-Short Off
+	 54:        XDual         Y-Short         On
+	 55:        XDual         Y-Short         Off
+	 56:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   787,   683)  ->  Abs (   787,   683)
+	  1: Rel (   116,   -52)  ->  Abs (   903,   631)
+	  2: Rel (   122,  -181)  ->  Abs (  1025,   450)
+	  3: Rel (     0,   -98)  ->  Abs (  1025,   352)
+	  4: Rel (     0,  -151)  ->  Abs (  1025,   201)
+	  5: Rel (  -245,  -231)  ->  Abs (   780,   -30)
+	  6: Rel (  -184,     0)  ->  Abs (   596,   -30)
+	  7: Rel (  -108,     0)  ->  Abs (   488,   -30)
+	  8: Rel (  -232,    92)  ->  Abs (   256,    62)
+	  9: Rel (   -46,    48)  ->  Abs (   210,   110)
+	 10: Rel (   -15,    16)  ->  Abs (   195,   126)
+	 11: Rel (     0,    18)  ->  Abs (   195,   144)
+	 12: Rel (     0,    16)  ->  Abs (   195,   160)
+	 13: Rel (    23,    24)  ->  Abs (   218,   184)
+	 14: Rel (    16,     0)  ->  Abs (   234,   184)
+	 15: Rel (    16,     0)  ->  Abs (   250,   184)
+	 16: Rel (    20,   -15)  ->  Abs (   270,   169)
+	 17: Rel (   155,  -115)  ->  Abs (   425,    54)
+	 18: Rel (   173,     0)  ->  Abs (   598,    54)
+	 19: Rel (   146,     0)  ->  Abs (   744,    54)
+	 20: Rel (   197,   183)  ->  Abs (   941,   237)
+	 21: Rel (     0,   112)  ->  Abs (   941,   349)
+	 22: Rel (     0,    75)  ->  Abs (   941,   424)
+	 23: Rel (   -97,   144)  ->  Abs (   844,   568)
+	 24: Rel (  -182,    83)  ->  Abs (   662,   651)
+	 25: Rel (   -93,     0)  ->  Abs (   569,   651)
+	 26: Rel (   -30,     0)  ->  Abs (   539,   651)
+	 27: Rel (   -26,    23)  ->  Abs (   513,   674)
+	 28: Rel (     0,    19)  ->  Abs (   513,   693)
+	 29: Rel (     0,    18)  ->  Abs (   513,   711)
+	 30: Rel (    25,    24)  ->  Abs (   538,   735)
+	 31: Rel (    25,     0)  ->  Abs (   563,   735)
+	 32: Rel (    72,    -1)  ->  Abs (   635,   734)
+	 33: Rel (   113,     0)  ->  Abs (   748,   734)
+	 34: Rel (   147,   138)  ->  Abs (   895,   872)
+	 35: Rel (     0,    91)  ->  Abs (   895,   963)
+	 36: Rel (     0,    94)  ->  Abs (   895,  1057)
+	 37: Rel (  -154,   144)  ->  Abs (   741,  1201)
+	 38: Rel (  -124,     0)  ->  Abs (   617,  1201)
+	 39: Rel (   -87,     0)  ->  Abs (   530,  1201)
+	 40: Rel (  -146,   -60)  ->  Abs (   384,  1141)
+	 41: Rel (   -44,   -52)  ->  Abs (   340,  1089)
+	 42: Rel (   -16,   -20)  ->  Abs (   324,  1069)
+	 43: Rel (   -17,    -9)  ->  Abs (   307,  1060)
+	 44: Rel (   -11,     0)  ->  Abs (   296,  1060)
+	 45: Rel (   -17,     0)  ->  Abs (   279,  1060)
+	 46: Rel (   -24,    23)  ->  Abs (   255,  1083)
+	 47: Rel (     0,    16)  ->  Abs (   255,  1099)
+	 48: Rel (     0,    40)  ->  Abs (   255,  1139)
+	 49: Rel (    87,    61)  ->  Abs (   342,  1200)
+	 50: Rel (   121,    85)  ->  Abs (   463,  1285)
+	 51: Rel (   154,     0)  ->  Abs (   617,  1285)
+	 52: Rel (   159,     0)  ->  Abs (   776,  1285)
+	 53: Rel (   204,  -191)  ->  Abs (   980,  1094)
+	 54: Rel (     0,  -132)  ->  Abs (   980,   962)
+	 55: Rel (     0,   -84)  ->  Abs (   980,   878)
+	 56: Rel (   -98,  -150)  ->  Abs (   882,   728)
+
+	Glyph  23: off = 0x00001652, len = 314
+	  numberOfContours:	2
+	  xMin:			214
+	  yMin:			0
+	  xMax:			983
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  29
+	  1:  33
+
+	  Length of Instructions:	209
+	00000: NPUSHB      (13):     0     3     0    32     2    30    33     5    29    31 
+	                            28    22    25 
+	00015: PUSHW[1]            486 
+	00018: PUSHB[7]             29    29   190    22    15    21    18 
+	00026: PUSHW[1]            352 
+	00029: NPUSHB      (18):    14    14   190    21    32    33    33   103     2     3 
+	                            20     2     2     3     2    33    31    32 
+	00049: PUSHW[1]            347 
+	00052: PUSHB[8]              3     3     4     5    33    30    13    30 
+	00061: PUSHW[1]            347 
+	00064: PUSHB[3]              0    14     0 
+	00068: PUSHW[1]            754 
+	00071: PUSHB[3]             29    29    28 
+	00075: PUSHW[4]            347    22    15   347 
+	00084: PUSHB[3]             22    21     3 
+	00088: PUSHW[1]            643 
+	00091: NPUSHB      (15):     1     5    14   103    29    29    31     0    15    30 
+	                             1     0    30     1    30 
+	00108: PUSHW[3]            622    33   347 
+	00115: NPUSHB      (11):     0     1     1     1    25    34     4     4    21    12 
+	                           161 
+	00128: PUSHW[3]            466    24   292 
+	00135: SCANCTRL   
+	00136: CALL       
+	00137: SVTCA[y-axis] 
+	00138: MIAP[rd+ci] 
+	00139: MIAP[rd+ci] 
+	00140: SVTCA[x-axis] 
+	00141: FLIPOFF    
+	00142: SRP0       
+	00143: MIRP[srp0,nmd,rd,0] 
+	00144: DELTAP2    
+	00145: FLIPON     
+	00146: MIRP[srp0,md,rd,1] 
+	00147: MIRP[srp0,nmd,rd,2] 
+	00148: DELTAP1    
+	00149: DELTAP2    
+	00150: ALIGNRP    
+	00151: ALIGNRP    
+	00152: ALIGNRP    
+	00153: SRP0       
+	00154: MIRP[srp0,md,rd,1] 
+	00155: ALIGNRP    
+	00156: SRP0       
+	00157: MIRP[nrp0,nmd,rd,0] 
+	00158: SVTCA[y-axis] 
+	00159: SRP0       
+	00160: ALIGNRP    
+	00161: MIRP[nrp0,md,rd,1] 
+	00162: SRP0       
+	00163: MIRP[srp0,md,rd,1] 
+	00164: ALIGNRP    
+	00165: SRP0       
+	00166: MIRP[nrp0,md,rd,2] 
+	00167: ALIGNRP    
+	00168: SRP0       
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: ALIGNRP    
+	00171: SRP0       
+	00172: ALIGNRP    
+	00173: ALIGNRP    
+	00174: SRP0       
+	00175: ALIGNRP    
+	00176: SRP0       
+	00177: MIRP[srp0,md,rd,1] 
+	00178: ALIGNRP    
+	00179: SRP1       
+	00180: IP         
+	00181: SFVTCA[x-axis] 
+	00182: SDPVTL[1]  
+	00183: MDAP[nrd]  
+	00184: CALL       
+	00185: RDTG       
+	00186: SRP0       
+	00187: MDRP[nrp0,nmd,rd,0] 
+	00188: RTG        
+	00189: SVTCA[y-axis] 
+	00190: SRP0       
+	00191: MIRP[nrp0,md,rd,1] 
+	00192: SVTCA[x-axis] 
+	00193: SRP0       
+	00194: MIRP[srp0,nmd,rd,1] 
+	00195: MDRP[srp0,nmd,rd,0] 
+	00196: ALIGNRP    
+	00197: SVTCA[y-axis] 
+	00198: SRP0       
+	00199: MIRP[nrp0,md,rd,1] 
+	00200: SVTCA[x-axis] 
+	00201: SRP0       
+	00202: MIRP[srp0,nmd,rd,1] 
+	00203: MDRP[srp0,nmd,rd,0] 
+	00204: ALIGNRP    
+	00205: ISECT      
+	00206: IUP[y]     
+	00207: IUP[x]     
+	00208: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:                                      On
+	  4:  YDual XDual                 X-Short On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short On
+	 14:        XDual                         On
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                               On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short On
+	 30:        XDual                         On
+	 31:        XDual                         On
+	 32:  YDual                       X-Short On
+	 33:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   771,   351)  ->  Abs (   771,   351)
+	  1: Rel (  -557,     0)  ->  Abs (   214,   351)
+	  2: Rel (     0,    97)  ->  Abs (   214,   448)
+	  3: Rel (   467,   807)  ->  Abs (   681,  1255)
+	  4: Rel (   175,     0)  ->  Abs (   856,  1255)
+	  5: Rel (     0,  -820)  ->  Abs (   856,   435)
+	  6: Rel (    70,     0)  ->  Abs (   926,   435)
+	  7: Rel (    31,     0)  ->  Abs (   957,   435)
+	  8: Rel (    26,   -23)  ->  Abs (   983,   412)
+	  9: Rel (     0,   -19)  ->  Abs (   983,   393)
+	 10: Rel (     0,   -18)  ->  Abs (   983,   375)
+	 11: Rel (   -26,   -24)  ->  Abs (   957,   351)
+	 12: Rel (   -31,     0)  ->  Abs (   926,   351)
+	 13: Rel (   -70,     0)  ->  Abs (   856,   351)
+	 14: Rel (     0,  -267)  ->  Abs (   856,    84)
+	 15: Rel (    70,     0)  ->  Abs (   926,    84)
+	 16: Rel (    31,     0)  ->  Abs (   957,    84)
+	 17: Rel (    26,   -23)  ->  Abs (   983,    61)
+	 18: Rel (     0,   -19)  ->  Abs (   983,    42)
+	 19: Rel (     0,   -18)  ->  Abs (   983,    24)
+	 20: Rel (   -26,   -24)  ->  Abs (   957,     0)
+	 21: Rel (   -31,     0)  ->  Abs (   926,     0)
+	 22: Rel (  -312,     0)  ->  Abs (   614,     0)
+	 23: Rel (   -31,     0)  ->  Abs (   583,     0)
+	 24: Rel (   -26,    24)  ->  Abs (   557,    24)
+	 25: Rel (     0,    18)  ->  Abs (   557,    42)
+	 26: Rel (     0,    19)  ->  Abs (   557,    61)
+	 27: Rel (    26,    23)  ->  Abs (   583,    84)
+	 28: Rel (    31,     0)  ->  Abs (   614,    84)
+	 29: Rel (   157,     0)  ->  Abs (   771,    84)
+	 30: Rel (     0,   351)  ->  Abs (   771,   435)
+	 31: Rel (     0,   735)  ->  Abs (   771,  1170)
+	 32: Rel (   -44,     0)  ->  Abs (   727,  1170)
+	 33: Rel (  -425,  -735)  ->  Abs (   302,   435)
+
+	Glyph  24: off = 0x0000178C, len = 350
+	  numberOfContours:	1
+	  xMin:			196
+	  yMin:			-30
+	  xMax:			1025
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  44
+
+	  Length of Instructions:	222
+	00000: NPUSHB      (34):    11    27     9    28    34     9    41    25    58    24 
+	                             5    45    41    76    41    95    41   110    41   152 
+	                            41   201    25   219    24   235    24     8    25    34 
+	                            27    36    52    22 
+	00036: PUSHW[1]            -34 
+	00039: NPUSHB      (19):    27    36    52    27    32    35     8    20    16    32 
+	                            36    22    31    26     1    31    29    33     0 
+	00060: PUSHW[6]            347    37     1   347    33   484 
+	00073: NPUSHB       (9):    29    61     4     4    10     0    38    37    19 
+	00084: PUSHW[1]            483 
+	00087: NPUSHB       (9):    23    61    10    26    61    16     7     1     7 
+	00098: PUSHW[3]            645    41   620 
+	00105: PUSHB[6]             37     0     1   103    37    36 
+	00112: PUSHW[1]            477 
+	00115: PUSHB[8]             16    25    45    37     4    10    13   236 
+	00124: PUSHW[3]            384    24   292 
+	00131: SCANCTRL   
+	00132: CALL       
+	00133: SVTCA[y-axis] 
+	00134: MIAP[rd+ci] 
+	00135: MIAP[rd+ci] 
+	00136: SVTCA[x-axis] 
+	00137: FLIPOFF    
+	00138: SRP0       
+	00139: MIRP[srp0,nmd,rd,0] 
+	00140: FLIPON     
+	00141: MIRP[srp0,nmd,rd,0] 
+	00142: ALIGNRP    
+	00143: MIRP[srp0,md,rd,1] 
+	00144: ALIGNRP    
+	00145: SRP0       
+	00146: MIRP[nrp0,md,rd,1] 
+	00147: MIRP[srp0,md,rd,1] 
+	00148: DELTAP1    
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: SVTCA[y-axis] 
+	00151: SRP0       
+	00152: MIRP[srp0,md,rd,1] 
+	00153: MIRP[nrp0,nmd,rd,0] 
+	00154: SRP0       
+	00155: ALIGNRP    
+	00156: SRP1       
+	00157: SRP2       
+	00158: IP         
+	00159: MDAP[rd]   
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: MIRP[srp0,md,rd,1] 
+	00162: MIRP[nrp0,md,rd,1] 
+	00163: SRP0       
+	00164: MIRP[nrp0,md,rd,1] 
+	00165: SRP1       
+	00166: SRP2       
+	00167: IP         
+	00168: SVTCA[x-axis] 
+	00169: SRP1       
+	00170: SRP2       
+	00171: IP         
+	00172: IP         
+	00173: SRP2       
+	00174: IP         
+	00175: SRP1       
+	00176: IP         
+	00177: IUP[y]     
+	00178: IUP[x]     
+	00179: RS         
+	00180: JROF       
+	00181: NPUSHB      (24):    24    28     5     9    28     5    26    64     1    24 
+	                             9    26    64     1    27     6    29    64     1    25 
+	                             8    23    64     0 
+	00207: SVTCA[y-axis] 
+	00208: CALL       
+	00209: CALL       
+	00210: SVTCA[x-axis] 
+	00211: CALL       
+	00212: CALL       
+	00213: FLIPRGON   
+	00214: FLIPRGON   
+	00215: SVTCA[y-axis] 
+	00216: SHPIX      
+	00217: SVTCA[x-axis] 
+	00218: CALL       
+	00219: CALL       
+	00220: DELTAP1    
+	00221: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:                      Y-Short X-Short On
+	 32:                      Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:        XDual                         On
+	 38:  YDual                               On
+	 39:  YDual XDual                 X-Short Off
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:        XDual         Y-Short         Off
+	 43:                      Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   383,  1170)  ->  Abs (   383,  1170)
+	  1: Rel (     0,  -411)  ->  Abs (   383,   759)
+	  2: Rel (    74,    31)  ->  Abs (   457,   790)
+	  3: Rel (   136,    31)  ->  Abs (   593,   821)
+	  4: Rel (    61,     0)  ->  Abs (   654,   821)
+	  5: Rel (   158,     0)  ->  Abs (   812,   821)
+	  6: Rel (   213,  -222)  ->  Abs (  1025,   599)
+	  7: Rel (     0,  -181)  ->  Abs (  1025,   418)
+	  8: Rel (     0,  -200)  ->  Abs (  1025,   218)
+	  9: Rel (  -240,  -248)  ->  Abs (   785,   -30)
+	 10: Rel (  -180,     0)  ->  Abs (   605,   -30)
+	 11: Rel (  -119,     0)  ->  Abs (   486,   -30)
+	 12: Rel (  -110,    53)  ->  Abs (   376,    23)
+	 13: Rel (   -78,    37)  ->  Abs (   298,    60)
+	 14: Rel (   -64,    55)  ->  Abs (   234,   115)
+	 15: Rel (   -38,    33)  ->  Abs (   196,   148)
+	 16: Rel (     0,    22)  ->  Abs (   196,   170)
+	 17: Rel (     0,    18)  ->  Abs (   196,   188)
+	 18: Rel (    24,    25)  ->  Abs (   220,   213)
+	 19: Rel (    16,     0)  ->  Abs (   236,   213)
+	 20: Rel (    17,     0)  ->  Abs (   253,   213)
+	 21: Rel (    19,   -18)  ->  Abs (   272,   195)
+	 22: Rel (   151,  -141)  ->  Abs (   423,    54)
+	 23: Rel (   178,     0)  ->  Abs (   601,    54)
+	 24: Rel (   147,     0)  ->  Abs (   748,    54)
+	 25: Rel (   192,   201)  ->  Abs (   940,   255)
+	 26: Rel (     0,   167)  ->  Abs (   940,   422)
+	 27: Rel (     0,   142)  ->  Abs (   940,   564)
+	 28: Rel (  -166,   173)  ->  Abs (   774,   737)
+	 29: Rel (  -128,     0)  ->  Abs (   646,   737)
+	 30: Rel (  -131,     0)  ->  Abs (   515,   737)
+	 31: Rel (  -131,   -69)  ->  Abs (   384,   668)
+	 32: Rel (   -32,   -16)  ->  Abs (   352,   652)
+	 33: Rel (   -13,     0)  ->  Abs (   339,   652)
+	 34: Rel (   -18,     0)  ->  Abs (   321,   652)
+	 35: Rel (   -22,    24)  ->  Abs (   299,   676)
+	 36: Rel (     0,    22)  ->  Abs (   299,   698)
+	 37: Rel (     0,   557)  ->  Abs (   299,  1255)
+	 38: Rel (   586,     0)  ->  Abs (   885,  1255)
+	 39: Rel (    30,     0)  ->  Abs (   915,  1255)
+	 40: Rel (    26,   -24)  ->  Abs (   941,  1231)
+	 41: Rel (     0,   -19)  ->  Abs (   941,  1212)
+	 42: Rel (     0,   -18)  ->  Abs (   941,  1194)
+	 43: Rel (   -26,   -24)  ->  Abs (   915,  1170)
+	 44: Rel (   -30,     0)  ->  Abs (   885,  1170)
+
+	Glyph  25: off = 0x000018EA, len = 568
+	  numberOfContours:	2
+	  xMin:			274
+	  yMin:			-30
+	  xMax:			1050
+	  yMax:			1285
+
+	EndPoints
+	---------
+	  0:  35
+	  1:  48
+
+	  Length of Instructions:	426
+	00000: NPUSHB      (12):    46    34    20    36    52    34    30    43    30    33 
+	                            30    38 
+	00014: PUSHW[3]            -10     0   -30 
+	00021: NPUSHB      (14):    53     4    59     8    67     4    75     8    85     4 
+	                            90     8     6    37 
+	00037: PUSHW[1]            -34 
+	00040: PUSHB[4]             27    36    52    32 
+	00045: PUSHW[1]            -34 
+	00048: PUSHB[4]             27    36    52    34 
+	00053: PUSHW[1]            -34 
+	00056: PUSHB[4]             27    35    52    36 
+	00061: PUSHW[1]            -44 
+	00064: NPUSHB      (10):    27    36    52    41    30    43    30    36     8    13 
+	00076: PUSHW[1]            -30 
+	00079: NPUSHB     (127):     4     4     4     8    20     4    20     8    38     4 
+	                            38     8    42    19    58    19    75    19    91    19 
+	                           106    19   121    19   136    19   133    36   187    19 
+	                           181    36   218    11   218    18   235    13    19    11 
+	                             1     5     8     7    32     6    38    25    15    36 
+	                            32    37    33   101    32    99    33   121    33   121 
+	                            40   115    47   112    48   179    34   187    42   214 
+	                            12   226    10   230    12    18    90     8    35    15 
+	                            33    16    17    18    32    19    20    31    21    30 
+	                            22    29    23    25    16    24    13    34     0    36 
+	                            13    12    37    11    38    10     1    48    47     2 
+	                            46    44     4    40     8    41     7    43    42     5 
+	                            23     6    14    13    36    49     0 
+	00208: PUSHW[1]            677 
+	00211: PUSHB[6]             45    61     3     3     9    27 
+	00218: PUSHW[1]            478 
+	00221: NPUSHB      (22):    31    61    20     5    39    61     9    13    24   225 
+	                             6    61     0    42    16    42    32    42    48    42 
+	                             4    42 
+	00245: PUSHW[6]            717    50    36   292    12   678 
+	00258: PUSHB[8]             34    61    48    14     1    14    25    49 
+	00267: PUSHW[4]            312   385    24   300 
+	00276: SCANCTRL   
+	00277: CALL       
+	00278: FLIPOFF    
+	00279: SRP0       
+	00280: MIRP[srp0,nmd,rd,0] 
+	00281: DELTAP1    
+	00282: FLIPON     
+	00283: MIRP[nrp0,md,rd,1] 
+	00284: MIRP[srp0,nmd,rd,0] 
+	00285: MIRP[nrp0,md,rd,1] 
+	00286: SRP0       
+	00287: MIRP[srp0,md,rd,1] 
+	00288: DELTAP1    
+	00289: MIRP[srp0,md,rd,1] 
+	00290: MIRP[nrp0,nmd,rd,0] 
+	00291: SVTCA[y-axis] 
+	00292: MIAP[rd+ci] 
+	00293: MIRP[nrp0,md,rd,1] 
+	00294: MIAP[rd+ci] 
+	00295: MIRP[nrp0,md,rd,1] 
+	00296: MIRP[nrp0,md,rd,1] 
+	00297: SRP2       
+	00298: IP         
+	00299: MDAP[rd]   
+	00300: MIRP[nrp0,md,rd,1] 
+	00301: MIRP[nrp0,nmd,rd,0] 
+	00302: SVTCA[x-axis] 
+	00303: SRP1       
+	00304: SRP2       
+	00305: IP         
+	00306: SRP1       
+	00307: SRP2       
+	00308: SLOOP      
+	00309: IP         
+	00310: SRP1       
+	00311: SRP2       
+	00312: SLOOP      
+	00313: IP         
+	00314: IUP[y]     
+	00315: IUP[x]     
+	00316: RS         
+	00317: JROF       
+	00318: NPUSHB      (28):    37    44    32    33     4    19    16    15    17    15 
+	                            18    15     3     6    12    13    11    13     2     6 
+	                            44     4    42    64     1    32    19    34 
+	00348: PUSHW[1]            428 
+	00351: NPUSHB      (21):     0    38    10    36    64     0    37    36    40     8 
+	                            42    64     1    43     5    45    64     1    33    15 
+	                            31 
+	00374: PUSHW[1]            428 
+	00377: NPUSHB      (11):     1    37    13    39    64     0    41     7    39    64 
+	                             0 
+	00390: SVTCA[y-axis] 
+	00391: CALL       
+	00392: CALL       
+	00393: CALL       
+	00394: CALL       
+	00395: SVTCA[x-axis] 
+	00396: CALL       
+	00397: SRP0       
+	00398: ALIGNRP    
+	00399: CALL       
+	00400: CALL       
+	00401: CALL       
+	00402: LOOPCALL   
+	00403: LOOPCALL   
+	00404: FLIPRGON   
+	00405: FLIPRGON   
+	00406: FLIPRGON   
+	00407: SVTCA[x-axis] 
+	00408: DELTAP2    
+	00409: DELTAP1    
+	00410: SHPIX      
+	00411: SHPIX      
+	00412: SHPIX      
+	00413: SHPIX      
+	00414: CALL       
+	00415: CALL       
+	00416: CALL       
+	00417: CALL       
+	00418: SVTCA[y-axis] 
+	00419: DELTAP1    
+	00420: SHPIX      
+	00421: SHPIX      
+	00422: SHPIX      
+	00423: SHPIX      
+	00424: SHPIX      
+	00425: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:                                      Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:        XDual         Y-Short X-Short On
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short X-Short Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual               Y-Short X-Short Off
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short Off
+	 47:                      Y-Short X-Short On
+	 48:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   364,   531)  ->  Abs (   364,   531)
+	  1: Rel (    78,   115)  ->  Abs (   442,   646)
+	  2: Rel (   165,   110)  ->  Abs (   607,   756)
+	  3: Rel (   101,     0)  ->  Abs (   708,   756)
+	  4: Rel (   134,     0)  ->  Abs (   842,   756)
+	  5: Rel (   208,  -223)  ->  Abs (  1050,   533)
+	  6: Rel (     0,  -164)  ->  Abs (  1050,   369)
+	  7: Rel (     0,  -150)  ->  Abs (  1050,   219)
+	  8: Rel (  -190,  -249)  ->  Abs (   860,   -30)
+	  9: Rel (  -167,     0)  ->  Abs (   693,   -30)
+	 10: Rel (  -109,     0)  ->  Abs (   584,   -30)
+	 11: Rel (  -189,   134)  ->  Abs (   395,   104)
+	 12: Rel (   -54,   139)  ->  Abs (   341,   243)
+	 13: Rel (   -67,   173)  ->  Abs (   274,   416)
+	 14: Rel (     0,   210)  ->  Abs (   274,   626)
+	 15: Rel (     0,   158)  ->  Abs (   274,   784)
+	 16: Rel (    63,   136)  ->  Abs (   337,   920)
+	 17: Rel (    48,   105)  ->  Abs (   385,  1025)
+	 18: Rel (   160,   159)  ->  Abs (   545,  1184)
+	 19: Rel (   213,   101)  ->  Abs (   758,  1285)
+	 20: Rel (   124,     0)  ->  Abs (   882,  1285)
+	 21: Rel (    84,     0)  ->  Abs (   966,  1285)
+	 22: Rel (    56,   -34)  ->  Abs (  1022,  1251)
+	 23: Rel (    24,   -15)  ->  Abs (  1046,  1236)
+	 24: Rel (     0,   -25)  ->  Abs (  1046,  1211)
+	 25: Rel (     0,   -18)  ->  Abs (  1046,  1193)
+	 26: Rel (   -22,   -23)  ->  Abs (  1024,  1170)
+	 27: Rel (   -17,     0)  ->  Abs (  1007,  1170)
+	 28: Rel (   -13,     0)  ->  Abs (   994,  1170)
+	 29: Rel (   -18,    10)  ->  Abs (   976,  1180)
+	 30: Rel (   -41,    20)  ->  Abs (   935,  1200)
+	 31: Rel (   -61,     0)  ->  Abs (   874,  1200)
+	 32: Rel (  -195,     0)  ->  Abs (   679,  1200)
+	 33: Rel (  -321,  -335)  ->  Abs (   358,   865)
+	 34: Rel (     0,  -231)  ->  Abs (   358,   634)
+	 35: Rel (     0,   -33)  ->  Abs (   358,   601)
+	 36: Rel (    25,  -209)  ->  Abs (   383,   392)
+	 37: Rel (    38,  -182)  ->  Abs (   421,   210)
+	 38: Rel (   163,  -156)  ->  Abs (   584,    54)
+	 39: Rel (   111,     0)  ->  Abs (   695,    54)
+	 40: Rel (   112,     0)  ->  Abs (   807,    54)
+	 41: Rel (   159,   175)  ->  Abs (   966,   229)
+	 42: Rel (     0,   140)  ->  Abs (   966,   369)
+	 43: Rel (     0,   131)  ->  Abs (   966,   500)
+	 44: Rel (  -160,   172)  ->  Abs (   806,   672)
+	 45: Rel (  -101,     0)  ->  Abs (   705,   672)
+	 46: Rel (   -97,     0)  ->  Abs (   608,   672)
+	 47: Rel (   -90,   -83)  ->  Abs (   518,   589)
+	 48: Rel (   -60,   -55)  ->  Abs (   458,   534)
+
+	Glyph  26: off = 0x00001B22, len = 200
+	  numberOfContours:	1
+	  xMin:			211
+	  yMin:			-2
+	  xMax:			982
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  21
+
+	  Length of Instructions:	128
+	00000: PUSHB[2]              9     3 
+	00003: PUSHW[3]            681     6   352 
+	00010: NPUSHB      (42):     2     6     6     3     2   190     9    12    13    13 
+	                           103    21     0    20    21    21     0    21     9     0 
+	                             1    12    23    11    21    12     0     3    16     1 
+	                             2   103    11    10    17    15    16    10     4    16 
+	                            12    11 
+	00054: PUSHW[3]            347     1   680 
+	00061: PUSHB[5]             23     9    25    22   236 
+	00067: PUSHW[3]            262    24   300 
+	00074: SCANCTRL   
+	00075: CALL       
+	00076: FLIPOFF    
+	00077: SRP0       
+	00078: MIRP[nrp0,nmd,rd,0] 
+	00079: FLIPON     
+	00080: SRP0       
+	00081: MIRP[srp0,nmd,rd,0] 
+	00082: MIRP[nrp0,md,rd,1] 
+	00083: SVTCA[y-axis] 
+	00084: MIAP[rd+ci] 
+	00085: MIAP[rd+ci] 
+	00086: SRP0       
+	00087: ALIGNRP    
+	00088: ALIGNRP    
+	00089: SRP0       
+	00090: ALIGNRP    
+	00091: MIRP[srp0,md,rd,1] 
+	00092: ALIGNRP    
+	00093: SRP1       
+	00094: SLOOP      
+	00095: IP         
+	00096: SVTCA[x-axis] 
+	00097: SRP1       
+	00098: SRP2       
+	00099: IP         
+	00100: SRP2       
+	00101: IP         
+	00102: SRP1       
+	00103: IP         
+	00104: SDPVTL[1]  
+	00105: SFVTPV     
+	00106: MDAP[nrd]  
+	00107: CALL       
+	00108: SFVTPV     
+	00109: RDTG       
+	00110: SRP0       
+	00111: MDRP[nrp0,nmd,rd,0] 
+	00112: RTG        
+	00113: SVTCA[x-axis] 
+	00114: SRP0       
+	00115: MIRP[srp0,md,rd,1] 
+	00116: RTDG       
+	00117: SRP2       
+	00118: IP         
+	00119: MDAP[rd]   
+	00120: RTG        
+	00121: SVTCA[y-axis] 
+	00122: SRP0       
+	00123: MIRP[srp0,nmd,rd,1] 
+	00124: MIRP[srp0,nmd,rd,0] 
+	00125: MDRP[nrp0,nmd,rd,0] 
+	00126: IUP[y]     
+	00127: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual                               On
+	 12:        XDual         Y-Short         On
+	 13:                                      On
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   897,  1132)  ->  Abs (   897,  1132)
+	  1: Rel (     0,    38)  ->  Abs (   897,  1170)
+	  2: Rel (  -602,     0)  ->  Abs (   295,  1170)
+	  3: Rel (     0,   -74)  ->  Abs (   295,  1096)
+	  4: Rel (     0,   -30)  ->  Abs (   295,  1066)
+	  5: Rel (   -23,   -26)  ->  Abs (   272,  1040)
+	  6: Rel (   -19,     0)  ->  Abs (   253,  1040)
+	  7: Rel (   -18,     0)  ->  Abs (   235,  1040)
+	  8: Rel (   -24,    26)  ->  Abs (   211,  1066)
+	  9: Rel (     0,    30)  ->  Abs (   211,  1096)
+	 10: Rel (     0,   159)  ->  Abs (   211,  1255)
+	 11: Rel (   771,     0)  ->  Abs (   982,  1255)
+	 12: Rel (     0,  -134)  ->  Abs (   982,  1121)
+	 13: Rel (  -338, -1080)  ->  Abs (   644,    41)
+	 14: Rel (    -8,   -26)  ->  Abs (   636,    15)
+	 15: Rel (   -22,   -17)  ->  Abs (   614,    -2)
+	 16: Rel (   -14,     0)  ->  Abs (   600,    -2)
+	 17: Rel (   -18,     0)  ->  Abs (   582,    -2)
+	 18: Rel (   -24,    24)  ->  Abs (   558,    22)
+	 19: Rel (     0,    16)  ->  Abs (   558,    38)
+	 20: Rel (     0,    10)  ->  Abs (   558,    48)
+	 21: Rel (     6,    18)  ->  Abs (   564,    66)
+
+	Glyph  27: off = 0x00001BEA, len = 536
+	  numberOfContours:	3
+	  xMin:			231
+	  yMin:			-30
+	  xMax:			999
+	  yMax:			1285
+
+	EndPoints
+	---------
+	  0:  25
+	  1:  37
+	  2:  49
+
+	  Length of Instructions:	391
+	00000: NPUSHB      (68):    18   167    34   202     0   238     0   238    12     4 
+	                            26     4    29    21    43    45    87    43   101     2 
+	                             5    11    14     4    24    27    14    20    24   138 
+	                            24   148     1   154     8   154    11   147    39   159 
+	                            43   156    45   169     1   163    39   181     2   191 
+	                            10   186    12   186    43   205    10   202    43    19 
+	                           121     1   165    33     2    49    20    45 
+	00070: PUSHW[1]            -20 
+	00073: PUSHB[3]             28    35    30 
+	00077: PUSHW[1]            -35 
+	00080: PUSHB[3]             48    35    46 
+	00084: PUSHW[3]            -35    21    -8 
+	00091: PUSHB[5]             17     8    40    40    36 
+	00097: PUSHW[1]            -35 
+	00100: PUSHB[3]             42    40    34 
+	00104: PUSHW[3]            -20    37   -22 
+	00111: PUSHB[3]             39    34    33 
+	00115: PUSHW[1]            -20 
+	00118: NPUSHB      (18):    43    40    64     8    35    61    41    41     6    29 
+	                            61    19     5    47    61     6    13    35 
+	00138: PUSHW[1]            473 
+	00141: NPUSHB      (16):    41    41    22    16    38    61     3   225    26    61 
+	                            63    22    79    22     2    22 
+	00159: PUSHW[1]            493 
+	00162: NPUSHB      (11):    51    32    61    16   225    44    61     9    25    50 
+	                           161 
+	00175: PUSHW[3]            262    24   300 
+	00182: SCANCTRL   
+	00183: CALL       
+	00184: FLIPOFF    
+	00185: SRP0       
+	00186: MIRP[srp0,nmd,rd,0] 
+	00187: FLIPON     
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: MIRP[srp0,nmd,rd,0] 
+	00190: MIRP[nrp0,md,rd,1] 
+	00191: SRP0       
+	00192: MIRP[srp0,nmd,rd,0] 
+	00193: DELTAP1    
+	00194: MIRP[nrp0,md,rd,1] 
+	00195: MIRP[srp0,nmd,rd,0] 
+	00196: MIRP[nrp0,md,rd,1] 
+	00197: SRP1       
+	00198: SRP2       
+	00199: IP         
+	00200: MDAP[rd]   
+	00201: MIRP[nrp0,nmd,rd,2] 
+	00202: SVTCA[y-axis] 
+	00203: MIAP[rd+ci] 
+	00204: MIRP[nrp0,md,rd,1] 
+	00205: MIAP[rd+ci] 
+	00206: MIRP[nrp0,md,rd,1] 
+	00207: SRP2       
+	00208: IP         
+	00209: MDAP[rd]   
+	00210: MIRP[nrp0,md,rd,1] 
+	00211: IUP[y]     
+	00212: IUP[x]     
+	00213: RS         
+	00214: JROF       
+	00215: NPUSHB      (48):    45    49    27    31    17    21     4     8    30    18 
+	                            32    64     0    28    20    26    64     1    46     7 
+	                            44    64     0    48     5    38    64     1    31    17 
+	                            29    64     1    27    21    29    64     1    45     8 
+	                            47    64     0    49     4    47    64     0 
+	00265: CALL       
+	00266: CALL       
+	00267: CALL       
+	00268: CALL       
+	00269: SVTCA[x-axis] 
+	00270: CALL       
+	00271: CALL       
+	00272: CALL       
+	00273: CALL       
+	00274: FLIPRGON   
+	00275: FLIPRGON   
+	00276: FLIPRGON   
+	00277: FLIPRGON   
+	00278: SVTCA[y-axis] 
+	00279: SHPIX      
+	00280: SHPIX      
+	00281: SHPIX      
+	00282: SHPIX      
+	00283: SHPIX      
+	00284: SHPIX      
+	00285: SHPIX      
+	00286: SHPIX      
+	00287: SVTCA[x-axis] 
+	00288: SHPIX      
+	00289: SHPIX      
+	00290: SHPIX      
+	00291: SHPIX      
+	00292: SHPIX      
+	00293: SHPIX      
+	00294: SHPIX      
+	00295: SHPIX      
+	00296: SVTCA[y-axis] 
+	00297: DELTAP1    
+	00298: SVTCA[x-axis] 
+	00299: DELTAP1    
+	00300: DELTAP2    
+	00301: SVTCA[y-axis] 
+	00302: DELTAP2    
+	00303: RS         
+	00304: NOT        
+	00305: IF         
+	00306: PUSHW[2]             43   -24 
+	00311: PUSHB[4]             30    18    63    33 
+	00316: PUSHW[1]            -24 
+	00319: PUSHB[4]             23    14    63    33 
+	00324: PUSHW[1]            -24 
+	00327: NPUSHB      (48):    22    13    63     5    24    23    14    63     5    24 
+	                            22    13    63     1    24    23    14    63     1    24 
+	                            22    13    63     5    24    20    12    63    21    24 
+	                            30    18    63    21    24    23    14    63    21    24 
+	                            22    13    63    21    24    20    12    63 
+	00377: SVTCA[x-axis] 
+	00378: CALL       
+	00379: CALL       
+	00380: CALL       
+	00381: CALL       
+	00382: CALL       
+	00383: CALL       
+	00384: CALL       
+	00385: CALL       
+	00386: CALL       
+	00387: CALL       
+	00388: CALL       
+	00389: CALL       
+	00390: EIF        
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:                      Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:        XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:        XDual                 X-Short On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:                      Y-Short X-Short Off
+	 44:        XDual         Y-Short         On
+	 45:        XDual         Y-Short         Off
+	 46:        XDual         Y-Short X-Short Off
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short Off
+	 49:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   787,   651)  ->  Abs (   787,   651)
+	  1: Rel (   105,   -51)  ->  Abs (   892,   600)
+	  2: Rel (   107,  -167)  ->  Abs (   999,   433)
+	  3: Rel (     0,   -96)  ->  Abs (   999,   337)
+	  4: Rel (     0,  -149)  ->  Abs (   999,   188)
+	  5: Rel (  -224,  -218)  ->  Abs (   775,   -30)
+	  6: Rel (  -160,     0)  ->  Abs (   615,   -30)
+	  7: Rel (  -160,     0)  ->  Abs (   455,   -30)
+	  8: Rel (  -224,   218)  ->  Abs (   231,   188)
+	  9: Rel (     0,   149)  ->  Abs (   231,   337)
+	 10: Rel (     0,    95)  ->  Abs (   231,   432)
+	 11: Rel (   107,   167)  ->  Abs (   338,   599)
+	 12: Rel (   106,    52)  ->  Abs (   444,   651)
+	 13: Rel (   -92,    53)  ->  Abs (   352,   704)
+	 14: Rel (   -42,    57)  ->  Abs (   310,   761)
+	 15: Rel (   -58,    81)  ->  Abs (   252,   842)
+	 16: Rel (     0,    98)  ->  Abs (   252,   940)
+	 17: Rel (     0,   138)  ->  Abs (   252,  1078)
+	 18: Rel (   213,   207)  ->  Abs (   465,  1285)
+	 19: Rel (   150,     0)  ->  Abs (   615,  1285)
+	 20: Rel (   151,     0)  ->  Abs (   766,  1285)
+	 21: Rel (   212,  -207)  ->  Abs (   978,  1078)
+	 22: Rel (     0,  -138)  ->  Abs (   978,   940)
+	 23: Rel (     0,   -98)  ->  Abs (   978,   842)
+	 24: Rel (   -58,   -80)  ->  Abs (   920,   762)
+	 25: Rel (   -41,   -58)  ->  Abs (   879,   704)
+	 26: Rel (    13,   233)  ->  Abs (   892,   937)
+	 27: Rel (     0,   108)  ->  Abs (   892,  1045)
+	 28: Rel (  -161,   155)  ->  Abs (   731,  1200)
+	 29: Rel (  -117,     0)  ->  Abs (   614,  1200)
+	 30: Rel (  -116,     0)  ->  Abs (   498,  1200)
+	 31: Rel (  -161,  -156)  ->  Abs (   337,  1044)
+	 32: Rel (     0,  -106)  ->  Abs (   337,   938)
+	 33: Rel (     0,   -98)  ->  Abs (   337,   840)
+	 34: Rel (   159,  -147)  ->  Abs (   496,   693)
+	 35: Rel (   118,     0)  ->  Abs (   614,   693)
+	 36: Rel (   119,     0)  ->  Abs (   733,   693)
+	 37: Rel (   159,   147)  ->  Abs (   892,   840)
+	 38: Rel (    23,  -505)  ->  Abs (   915,   335)
+	 39: Rel (     0,   111)  ->  Abs (   915,   446)
+	 40: Rel (  -172,   164)  ->  Abs (   743,   610)
+	 41: Rel (  -128,     0)  ->  Abs (   615,   610)
+	 42: Rel (  -128,     0)  ->  Abs (   487,   610)
+	 43: Rel (  -172,  -164)  ->  Abs (   315,   446)
+	 44: Rel (     0,  -110)  ->  Abs (   315,   336)
+	 45: Rel (     0,  -114)  ->  Abs (   315,   222)
+	 46: Rel (   173,  -168)  ->  Abs (   488,    54)
+	 47: Rel (   127,     0)  ->  Abs (   615,    54)
+	 48: Rel (   127,     0)  ->  Abs (   742,    54)
+	 49: Rel (   173,   168)  ->  Abs (   915,   222)
+
+	Glyph  28: off = 0x00001E02, len = 488
+	  numberOfContours:	2
+	  xMin:			275
+	  yMin:			-30
+	  xMax:			1047
+	  yMax:			1285
+
+	EndPoints
+	---------
+	  0:  37
+	  1:  51
+
+	  Length of Instructions:	336
+	00000: NPUSHB      (45):     7     8     4    42     7    43     0    46   170    36 
+	                           186    36     6    38    34    20    36    52    35    44 
+	                            20    36    52    14    24    20    36    52    13    14 
+	                            30    50    52    12    34    30    50    52    50    22 
+	                            51    44    39    44    21 
+	00047: PUSHW[1]            -14 
+	00050: NPUSHB      (15):    91    49   229    18   249    35   243    42   244    46 
+	                             5   191     0     1    49 
+	00067: PUSHW[1]            -34 
+	00070: PUSHB[4]             20    36    52    35 
+	00075: PUSHW[1]            -22 
+	00078: PUSHB[3]             39    22    34 
+	00082: PUSHW[3]            -22    50   -24 
+	00089: NPUSHB      (45):    30    50    52     6    20   181    49   196    49   211 
+	                            49     4    94     8    13    36     0    38    14    12 
+	                            39    11    40     9    42     8    12     7    14    12 
+	                            39    13    38     0    38    14    13     4    15    36 
+	                            41    61    10     5     0 
+	00136: PUSHW[1]            677 
+	00139: NPUSHB      (10):    47    61     3     3    10    33    61    22    13    38 
+	00151: PUSHW[3]            292    13   678 
+	00158: NPUSHB      (10):    36    61    15    26    53    26   225     7    61    44 
+	00170: PUSHW[6]            680    52   312   385    24   300 
+	00183: SCANCTRL   
+	00184: CALL       
+	00185: SRP0       
+	00186: MIRP[srp0,nmd,rd,0] 
+	00187: MIRP[srp0,md,rd,1] 
+	00188: MIRP[nrp0,nmd,rd,0] 
+	00189: FLIPOFF    
+	00190: SRP0       
+	00191: MIRP[srp0,nmd,rd,2] 
+	00192: FLIPON     
+	00193: MIRP[nrp0,md,rd,1] 
+	00194: MIRP[srp0,nmd,rd,0] 
+	00195: MIRP[nrp0,nmd,rd,1] 
+	00196: SVTCA[y-axis] 
+	00197: MIAP[rd+ci] 
+	00198: MIRP[nrp0,md,rd,1] 
+	00199: SRP2       
+	00200: IP         
+	00201: MDAP[rd]   
+	00202: MIRP[nrp0,md,rd,1] 
+	00203: MIRP[nrp0,nmd,rd,0] 
+	00204: MIAP[rd+ci] 
+	00205: MIRP[nrp0,md,rd,1] 
+	00206: SVTCA[x-axis] 
+	00207: SRP1       
+	00208: SRP2       
+	00209: SLOOP      
+	00210: IP         
+	00211: SRP1       
+	00212: SRP2       
+	00213: IP         
+	00214: IP         
+	00215: SRP1       
+	00216: SRP2       
+	00217: SLOOP      
+	00218: IP         
+	00219: IUP[y]     
+	00220: IUP[x]     
+	00221: RS         
+	00222: JROF       
+	00223: NPUSHB      (39):    39    46    34    35     4    21    13    14    12    14 
+	                             2     6    17    16    18    16    19    16    20    16 
+	                             4     6     5    37    42     9    44    64     0    40 
+	                            11    38    64     1    39    38    34    21    36 
+	00264: PUSHW[1]            428 
+	00267: NPUSHB      (19):     1    46     4    44    64     0    43     8    41    64 
+	                             1    39    14    41    64     1    35    16    33 
+	00288: PUSHW[1]            428 
+	00291: PUSHB[6]              0    45     6    47    64     0 
+	00298: SVTCA[y-axis] 
+	00299: CALL       
+	00300: CALL       
+	00301: CALL       
+	00302: CALL       
+	00303: SVTCA[x-axis] 
+	00304: CALL       
+	00305: CALL       
+	00306: SRP0       
+	00307: ALIGNRP    
+	00308: CALL       
+	00309: CALL       
+	00310: CALL       
+	00311: LOOPCALL   
+	00312: LOOPCALL   
+	00313: FLIPRGON   
+	00314: FLIPRGON   
+	00315: FLIPRGON   
+	00316: SVTCA[y-axis] 
+	00317: DELTAP1    
+	00318: CALL       
+	00319: SHPIX      
+	00320: SHPIX      
+	00321: SHPIX      
+	00322: CALL       
+	00323: DELTAP2    
+	00324: SVTCA[x-axis] 
+	00325: DELTAP1    
+	00326: SHPIX      
+	00327: SHPIX      
+	00328: SHPIX      
+	00329: SHPIX      
+	00330: CALL       
+	00331: CALL       
+	00332: CALL       
+	00333: CALL       
+	00334: CALL       
+	00335: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short X-Short On
+	 32:        XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:                                      Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual               Y-Short X-Short On
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:                      Y-Short X-Short Off
+	 44:        XDual         Y-Short         On
+	 45:        XDual         Y-Short         Off
+	 46:        XDual         Y-Short X-Short Off
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short Off
+	 49:  YDual XDual         Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short X-Short On
+	 51:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   959,   710)  ->  Abs (   959,   710)
+	  1: Rel (   -65,  -115)  ->  Abs (   894,   595)
+	  2: Rel (  -179,  -116)  ->  Abs (   715,   479)
+	  3: Rel (   -94,     0)  ->  Abs (   621,   479)
+	  4: Rel (   -87,     0)  ->  Abs (   534,   479)
+	  5: Rel (  -163,   100)  ->  Abs (   371,   579)
+	  6: Rel (   -96,   193)  ->  Abs (   275,   772)
+	  7: Rel (     0,   106)  ->  Abs (   275,   878)
+	  8: Rel (     0,   154)  ->  Abs (   275,  1032)
+	  9: Rel (   191,   253)  ->  Abs (   466,  1285)
+	 10: Rel (   160,     0)  ->  Abs (   626,  1285)
+	 11: Rel (   114,     0)  ->  Abs (   740,  1285)
+	 12: Rel (   188,  -142)  ->  Abs (   928,  1143)
+	 13: Rel (    52,  -135)  ->  Abs (   980,  1008)
+	 14: Rel (    67,  -173)  ->  Abs (  1047,   835)
+	 15: Rel (     0,  -229)  ->  Abs (  1047,   606)
+	 16: Rel (     0,  -178)  ->  Abs (  1047,   428)
+	 17: Rel (   -57,  -118)  ->  Abs (   990,   310)
+	 18: Rel (   -38,   -80)  ->  Abs (   952,   230)
+	 19: Rel (  -147,  -150)  ->  Abs (   805,    80)
+	 20: Rel (   -92,   -47)  ->  Abs (   713,    33)
+	 21: Rel (  -126,   -63)  ->  Abs (   587,   -30)
+	 22: Rel (  -136,     0)  ->  Abs (   451,   -30)
+	 23: Rel (   -90,     0)  ->  Abs (   361,   -30)
+	 24: Rel (   -57,    34)  ->  Abs (   304,     4)
+	 25: Rel (   -26,    16)  ->  Abs (   278,    20)
+	 26: Rel (     0,    24)  ->  Abs (   278,    44)
+	 27: Rel (     0,    17)  ->  Abs (   278,    61)
+	 28: Rel (    24,    23)  ->  Abs (   302,    84)
+	 29: Rel (    17,     0)  ->  Abs (   319,    84)
+	 30: Rel (    12,     0)  ->  Abs (   331,    84)
+	 31: Rel (    23,   -11)  ->  Abs (   354,    73)
+	 32: Rel (    39,   -19)  ->  Abs (   393,    54)
+	 33: Rel (    51,     0)  ->  Abs (   444,    54)
+	 34: Rel (   213,     0)  ->  Abs (   657,    54)
+	 35: Rel (   306,   307)  ->  Abs (   963,   361)
+	 36: Rel (     0,   231)  ->  Abs (   963,   592)
+	 37: Rel (     0,    42)  ->  Abs (   963,   634)
+	 38: Rel (   -20,   216)  ->  Abs (   943,   850)
+	 39: Rel (   -53,   203)  ->  Abs (   890,  1053)
+	 40: Rel (  -157,   147)  ->  Abs (   733,  1200)
+	 41: Rel (  -105,     0)  ->  Abs (   628,  1200)
+	 42: Rel (  -107,     0)  ->  Abs (   521,  1200)
+	 43: Rel (  -162,  -180)  ->  Abs (   359,  1020)
+	 44: Rel (     0,  -141)  ->  Abs (   359,   879)
+	 45: Rel (     0,  -137)  ->  Abs (   359,   742)
+	 46: Rel (   162,  -179)  ->  Abs (   521,   563)
+	 47: Rel (   102,     0)  ->  Abs (   623,   563)
+	 48: Rel (    59,     0)  ->  Abs (   682,   563)
+	 49: Rel (   115,    64)  ->  Abs (   797,   627)
+	 50: Rel (    51,    64)  ->  Abs (   848,   691)
+	 51: Rel (    33,    43)  ->  Abs (   881,   734)
+
+	Glyph  29: off = 0x00001FEA, len = 134
+	  numberOfContours:	2
+	  xMin:			461
+	  yMin:			-30
+	  xMax:			769
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  27
+
+	  Length of Instructions:	49
+	00000: NPUSHB       (9):    15   178    22    11     8   178     0     6    18 
+	00011: PUSHW[4]            278    25     4   278 
+	00020: PUSHB[6]             11    11    25    25    28   109 
+	00027: PUSHW[2]            286    24 
+	00032: CALL       
+	00033: FLIPOFF    
+	00034: SRP0       
+	00035: MIRP[srp0,nmd,rd,0] 
+	00036: ALIGNRP    
+	00037: FLIPON     
+	00038: SRP0       
+	00039: MIRP[nrp0,md,rd,1] 
+	00040: SRP0       
+	00041: MIRP[nrp0,md,rd,1] 
+	00042: SVTCA[y-axis] 
+	00043: MIAP[rd+ci] 
+	00044: MIRP[nrp0,md,rd,1] 
+	00045: MIAP[rd+ci] 
+	00046: MIRP[nrp0,md,rd,1] 
+	00047: IUP[y]     
+	00048: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:        XDual                 X-Short On
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   597,   866)  ->  Abs (   597,   866)
+	  1: Rel (    36,     0)  ->  Abs (   633,   866)
+	  2: Rel (    56,     0)  ->  Abs (   689,   866)
+	  3: Rel (    80,   -80)  ->  Abs (   769,   786)
+	  4: Rel (     0,   -55)  ->  Abs (   769,   731)
+	  5: Rel (     0,   -59)  ->  Abs (   769,   672)
+	  6: Rel (   -81,   -78)  ->  Abs (   688,   594)
+	  7: Rel (   -55,     0)  ->  Abs (   633,   594)
+	  8: Rel (   -36,     0)  ->  Abs (   597,   594)
+	  9: Rel (   -56,     0)  ->  Abs (   541,   594)
+	 10: Rel (   -80,    80)  ->  Abs (   461,   674)
+	 11: Rel (     0,    55)  ->  Abs (   461,   729)
+	 12: Rel (     0,    59)  ->  Abs (   461,   788)
+	 13: Rel (    81,    78)  ->  Abs (   542,   866)
+	 14: Rel (    55,  -625)  ->  Abs (   597,   241)
+	 15: Rel (    36,     0)  ->  Abs (   633,   241)
+	 16: Rel (    56,     0)  ->  Abs (   689,   241)
+	 17: Rel (    80,   -79)  ->  Abs (   769,   162)
+	 18: Rel (     0,   -56)  ->  Abs (   769,   106)
+	 19: Rel (     0,   -58)  ->  Abs (   769,    48)
+	 20: Rel (   -81,   -78)  ->  Abs (   688,   -30)
+	 21: Rel (   -55,     0)  ->  Abs (   633,   -30)
+	 22: Rel (   -36,     0)  ->  Abs (   597,   -30)
+	 23: Rel (   -56,     0)  ->  Abs (   541,   -30)
+	 24: Rel (   -80,    79)  ->  Abs (   461,    49)
+	 25: Rel (     0,    56)  ->  Abs (   461,   105)
+	 26: Rel (     0,    58)  ->  Abs (   461,   163)
+	 27: Rel (    81,    78)  ->  Abs (   542,   241)
+
+	Glyph  30: off = 0x00002070, len = 172
+	  numberOfContours:	2
+	  xMin:			312
+	  yMin:			-214
+	  xMax:			768
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  24
+
+	  Length of Instructions:	88
+	00000: NPUSHB      (17):   192    14   208    14   216    16   224    14   233    16 
+	                           240    14   249    16     7    23    19 
+	00019: PUSHW[1]            426 
+	00022: PUSHB[4]             48    15     1    15 
+	00027: PUSHW[1]            282 
+	00030: NPUSHB       (9):     8   178     0    15   243    16   193    22     4 
+	00041: PUSHW[1]            278 
+	00044: NPUSHB      (13):    11    52    14   210    15    22     1    22   218    25 
+	                             0     6   109 
+	00059: PUSHW[2]            286    24 
+	00064: CALL       
+	00065: SVTCA[y-axis] 
+	00066: MIAP[rd+ci] 
+	00067: SVTCA[x-axis] 
+	00068: SRP0       
+	00069: MIRP[srp0,nmd,rd,0] 
+	00070: DELTAP1    
+	00071: MIRP[srp0,nmd,rd,0] 
+	00072: MIRP[srp0,nmd,rd,0] 
+	00073: MIRP[nrp0,md,rd,1] 
+	00074: SRP0       
+	00075: MIRP[srp0,md,rd,1] 
+	00076: MIRP[nrp0,nmd,rd,0] 
+	00077: SVTCA[y-axis] 
+	00078: SRP0       
+	00079: MIRP[nrp0,md,rd,1] 
+	00080: MIRP[srp0,nmd,rd,0] 
+	00081: DELTAP1    
+	00082: MIRP[srp0,nmd,rd,0] 
+	00083: IP         
+	00084: IUP[y]     
+	00085: IUP[x]     
+	00086: SVTCA[x-axis] 
+	00087: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:                              X-Short On
+	 15:  YDual                               On
+	 16:                                      On
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   596,   866)  ->  Abs (   596,   866)
+	  1: Rel (    37,     0)  ->  Abs (   633,   866)
+	  2: Rel (    56,     0)  ->  Abs (   689,   866)
+	  3: Rel (    79,   -80)  ->  Abs (   768,   786)
+	  4: Rel (     0,   -55)  ->  Abs (   768,   731)
+	  5: Rel (     0,   -59)  ->  Abs (   768,   672)
+	  6: Rel (   -80,   -78)  ->  Abs (   688,   594)
+	  7: Rel (   -55,     0)  ->  Abs (   633,   594)
+	  8: Rel (   -37,     0)  ->  Abs (   596,   594)
+	  9: Rel (   -56,     0)  ->  Abs (   540,   594)
+	 10: Rel (   -79,    80)  ->  Abs (   461,   674)
+	 11: Rel (     0,    55)  ->  Abs (   461,   729)
+	 12: Rel (     0,    59)  ->  Abs (   461,   788)
+	 13: Rel (    81,    78)  ->  Abs (   542,   866)
+	 14: Rel (   -92,  -564)  ->  Abs (   450,   302)
+	 15: Rel (   264,     0)  ->  Abs (   714,   302)
+	 16: Rel (  -283,  -464)  ->  Abs (   431,  -162)
+	 17: Rel (   -21,   -34)  ->  Abs (   410,  -196)
+	 18: Rel (   -25,   -18)  ->  Abs (   385,  -214)
+	 19: Rel (   -17,     0)  ->  Abs (   368,  -214)
+	 20: Rel (   -24,     0)  ->  Abs (   344,  -214)
+	 21: Rel (   -32,    30)  ->  Abs (   312,  -184)
+	 22: Rel (     0,    21)  ->  Abs (   312,  -163)
+	 23: Rel (     0,    12)  ->  Abs (   312,  -151)
+	 24: Rel (     6,    19)  ->  Abs (   318,  -132)
+
+	Glyph  31: off = 0x0000211C, len = 198
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			65
+	  xMax:			983
+	  yMax:			1101
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	131
+	00000: NPUSHB      (30):   177     6     1     8     9     9    36     0     1    20 
+	                             0     9    10     0     1    10     9     9    36     0 
+	                            17    20     0     9     8     0    17     8    91     1 
+	00032: PUSHW[1]            426 
+	00035: PUSHB[4]              0    10    91    17 
+	00040: NPUSHW       (9):   426    10   444    12   662    17   683     8   444 
+	00060: PUSHB[3]              6   185     1 
+	00064: PUSHW[1]            683 
+	00067: NPUSHB      (10):    47     0     1     0    25    18     0    79   129    24 
+	00079: PUSHW[1]            291 
+	00082: SCANCTRL   
+	00083: CALL       
+	00084: SVTCA[y-axis] 
+	00085: RTHG       
+	00086: MDAP[rd]   
+	00087: SVTCA[x-axis] 
+	00088: RTG        
+	00089: FLIPOFF    
+	00090: SRP0       
+	00091: MIRP[srp0,nmd,rd,0] 
+	00092: DELTAP1    
+	00093: FLIPON     
+	00094: MIRP[nrp0,nmd,rd,0] 
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: MIRP[nrp0,nmd,rd,0] 
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: SVTCA[y-axis] 
+	00101: RTHG       
+	00102: MIRP[srp0,nmd,rd,0] 
+	00103: RTG        
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: RTHG       
+	00106: SRP0       
+	00107: MIRP[srp0,nmd,rd,0] 
+	00108: RTG        
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: SDPVTL[1]  
+	00111: SFVTL[=p1,p2] 
+	00112: MDAP[nrd]  
+	00113: CALL       
+	00114: SFVTPV     
+	00115: RDTG       
+	00116: SRP0       
+	00117: MDRP[nrp0,nmd,rd,0] 
+	00118: SDPVTL[1]  
+	00119: SFVTL[=p1,p2] 
+	00120: MDAP[nrd]  
+	00121: RTG        
+	00122: CALL       
+	00123: SFVTPV     
+	00124: RDTG       
+	00125: SRP0       
+	00126: MDRP[nrp0,nmd,rd,0] 
+	00127: IUP[y]     
+	00128: IUP[x]     
+	00129: SVTCA[x-axis] 
+	00130: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                         On
+	  1:                                      On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short On
+	  9:                                      On
+	 10:                                      On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (     0,   583)  ->  Abs (     0,   583)
+	  1: Rel (   908,   506)  ->  Abs (   908,  1089)
+	  2: Rel (    22,    12)  ->  Abs (   930,  1101)
+	  3: Rel (    11,     0)  ->  Abs (   941,  1101)
+	  4: Rel (    17,     0)  ->  Abs (   958,  1101)
+	  5: Rel (    25,   -25)  ->  Abs (   983,  1076)
+	  6: Rel (     0,   -17)  ->  Abs (   983,  1059)
+	  7: Rel (     0,   -25)  ->  Abs (   983,  1034)
+	  8: Rel (   -34,   -19)  ->  Abs (   949,  1015)
+	  9: Rel (  -778,  -432)  ->  Abs (   171,   583)
+	 10: Rel (   777,  -432)  ->  Abs (   948,   151)
+	 11: Rel (    34,   -19)  ->  Abs (   982,   132)
+	 12: Rel (     0,   -25)  ->  Abs (   982,   107)
+	 13: Rel (     0,   -17)  ->  Abs (   982,    90)
+	 14: Rel (   -25,   -25)  ->  Abs (   957,    65)
+	 15: Rel (   -17,     0)  ->  Abs (   940,    65)
+	 16: Rel (   -11,     0)  ->  Abs (   929,    65)
+	 17: Rel (   -22,    12)  ->  Abs (   907,    77)
+
+	Glyph  32: off = 0x000021E2, len = 144
+	  numberOfContours:	2
+	  xMin:			101
+	  yMin:			394
+	  xMax:			1129
+	  yMax:			780
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  27
+
+	  Length of Instructions:	55
+	00000: PUSHB[3]              7    36     1 
+	00004: PUSHW[1]            760 
+	00007: NPUSHB      (27):    21    36    15    11    25    26    29     4    79    18 
+	                             1    79    18     1    15    18    47    18    63    18 
+	                             3    18    25    28    79   123    24 
+	00036: CALL       
+	00037: FLIPOFF    
+	00038: SRP0       
+	00039: MIRP[srp0,nmd,rd,0] 
+	00040: DELTAP1    
+	00041: DELTAP1    
+	00042: DELTAP2    
+	00043: ALIGNRP    
+	00044: SRP0       
+	00045: MIRP[srp0,nmd,rd,2] 
+	00046: ALIGNRP    
+	00047: SVTCA[y-axis] 
+	00048: MDAP[rd]   
+	00049: FLIPON     
+	00050: MIRP[srp0,md,rd,1] 
+	00051: MIRP[srp0,nmd,rd,2] 
+	00052: MIRP[nrp0,md,rd,1] 
+	00053: IUP[y]     
+	00054: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual                               On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+	 14:                              X-Short On
+	 15:  YDual                               On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual                               On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1073,   695)  ->  Abs (  1073,   695)
+	  1: Rel (  -916,     0)  ->  Abs (   157,   695)
+	  2: Rel (   -30,     0)  ->  Abs (   127,   695)
+	  3: Rel (   -26,    24)  ->  Abs (   101,   719)
+	  4: Rel (     0,    19)  ->  Abs (   101,   738)
+	  5: Rel (     0,    18)  ->  Abs (   101,   756)
+	  6: Rel (    26,    24)  ->  Abs (   127,   780)
+	  7: Rel (    30,     0)  ->  Abs (   157,   780)
+	  8: Rel (   916,     0)  ->  Abs (  1073,   780)
+	  9: Rel (    30,     0)  ->  Abs (  1103,   780)
+	 10: Rel (    26,   -24)  ->  Abs (  1129,   756)
+	 11: Rel (     0,   -19)  ->  Abs (  1129,   737)
+	 12: Rel (     0,   -18)  ->  Abs (  1129,   719)
+	 13: Rel (   -26,   -24)  ->  Abs (  1103,   695)
+	 14: Rel (   -30,  -301)  ->  Abs (  1073,   394)
+	 15: Rel (  -916,     0)  ->  Abs (   157,   394)
+	 16: Rel (   -30,     0)  ->  Abs (   127,   394)
+	 17: Rel (   -26,    23)  ->  Abs (   101,   417)
+	 18: Rel (     0,    19)  ->  Abs (   101,   436)
+	 19: Rel (     0,    19)  ->  Abs (   101,   455)
+	 20: Rel (    26,    23)  ->  Abs (   127,   478)
+	 21: Rel (    30,     0)  ->  Abs (   157,   478)
+	 22: Rel (   916,     0)  ->  Abs (  1073,   478)
+	 23: Rel (    30,     0)  ->  Abs (  1103,   478)
+	 24: Rel (    26,   -23)  ->  Abs (  1129,   455)
+	 25: Rel (     0,   -19)  ->  Abs (  1129,   436)
+	 26: Rel (     0,   -19)  ->  Abs (  1129,   417)
+	 27: Rel (   -26,   -23)  ->  Abs (  1103,   394)
+
+	Glyph  33: off = 0x00002272, len = 202
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			65
+	  xMax:			983
+	  yMax:			1101
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	134
+	00000: NPUSHB      (34):   191     6   209    12   242    12     3    10     9     9 
+	                            36     0    17    20     0     9     8     0    17     8 
+	                             9     9    36     0     1    20     0     9    10     0 
+	                             1    10    91    17 
+	00036: PUSHW[1]            426 
+	00039: PUSHB[4]              0     8    91     1 
+	00044: NPUSHW      (11):   426    12   662    10   444    17   683     8   444     1 
+	                           683 
+	00068: NPUSHB      (12):     0   185    47     6     1     6    25    18     0    80 
+	                           123    24 
+	00082: PUSHW[1]            289 
+	00085: SCANCTRL   
+	00086: CALL       
+	00087: SVTCA[y-axis] 
+	00088: RTHG       
+	00089: MDAP[rd]   
+	00090: SVTCA[x-axis] 
+	00091: RTG        
+	00092: FLIPOFF    
+	00093: SRP0       
+	00094: MIRP[srp0,nmd,rd,0] 
+	00095: DELTAP1    
+	00096: FLIPON     
+	00097: MIRP[srp0,md,rd,1] 
+	00098: MIRP[nrp0,nmd,rd,0] 
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: MIRP[nrp0,nmd,rd,0] 
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: MIRP[nrp0,md,rd,1] 
+	00103: SVTCA[y-axis] 
+	00104: RTHG       
+	00105: MIRP[srp0,nmd,rd,0] 
+	00106: RTG        
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: RTHG       
+	00109: SRP0       
+	00110: MIRP[srp0,nmd,rd,0] 
+	00111: RTG        
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: SDPVTL[1]  
+	00114: SFVTL[=p1,p2] 
+	00115: MDAP[nrd]  
+	00116: CALL       
+	00117: SFVTPV     
+	00118: RDTG       
+	00119: SRP0       
+	00120: MDRP[nrp0,nmd,rd,0] 
+	00121: SDPVTL[1]  
+	00122: SFVTL[=p1,p2] 
+	00123: MDAP[nrd]  
+	00124: RTG        
+	00125: CALL       
+	00126: SFVTPV     
+	00127: RDTG       
+	00128: SRP0       
+	00129: MDRP[nrp0,nmd,rd,0] 
+	00130: IUP[y]     
+	00131: IUP[x]     
+	00132: SVTCA[x-axis] 
+	00133: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:                                      On
+	 10:                                      On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   983,   583)  ->  Abs (   983,   583)
+	  1: Rel (  -908,  -506)  ->  Abs (    75,    77)
+	  2: Rel (   -22,   -12)  ->  Abs (    53,    65)
+	  3: Rel (   -11,     0)  ->  Abs (    42,    65)
+	  4: Rel (   -17,     0)  ->  Abs (    25,    65)
+	  5: Rel (   -25,    25)  ->  Abs (     0,    90)
+	  6: Rel (     0,    17)  ->  Abs (     0,   107)
+	  7: Rel (     0,    25)  ->  Abs (     0,   132)
+	  8: Rel (    34,    19)  ->  Abs (    34,   151)
+	  9: Rel (   778,   432)  ->  Abs (   812,   583)
+	 10: Rel (  -777,   432)  ->  Abs (    35,  1015)
+	 11: Rel (   -34,    19)  ->  Abs (     1,  1034)
+	 12: Rel (     0,    25)  ->  Abs (     1,  1059)
+	 13: Rel (     0,    17)  ->  Abs (     1,  1076)
+	 14: Rel (    25,    25)  ->  Abs (    26,  1101)
+	 15: Rel (    17,     0)  ->  Abs (    43,  1101)
+	 16: Rel (    11,     0)  ->  Abs (    54,  1101)
+	 17: Rel (    22,   -12)  ->  Abs (    76,  1089)
+
+	Glyph  34: off = 0x0000233C, len = 332
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			-30
+	  xMax:			728
+	  yMax:			1200
+
+	EndPoints
+	---------
+	  0:  35
+	  1:  49
+
+	  Length of Instructions:	190
+	00000: NPUSHB      (65):    68     8     1   157    14   158    17     2    13    14 
+	                           159    10   155    13     3    39     9    37    35   130 
+	                            35   175    14     4    45     8     8     0    35     3 
+	                            80     4     1     4    18    26    15    22    37   116 
+	                            44    11    22   160    15    44    15    30    47    30 
+	                             2    30     4     4    44    30     1    91    80     7 
+	                             1     7     7     8    40 
+	00067: PUSHW[1]            315 
+	00070: NPUSHB      (19):    47   132     8     8    50    51    12    44    33    26 
+	                            51    19    91    24    25    50   163   188    24 
+	00091: PUSHW[1]            356 
+	00094: SCANCTRL   
+	00095: CALL       
+	00096: FLIPOFF    
+	00097: SRP0       
+	00098: MIRP[srp0,nmd,rd,0] 
+	00099: FLIPON     
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: FLIPOFF    
+	00102: SRP0       
+	00103: MIRP[srp0,nmd,rd,2] 
+	00104: FLIPON     
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: SRP1       
+	00107: SRP2       
+	00108: IP         
+	00109: MDAP[rd]   
+	00110: MIRP[srp0,nmd,rd,0] 
+	00111: MIRP[nrp0,md,rd,1] 
+	00112: SRP0       
+	00113: ALIGNRP    
+	00114: SRP0       
+	00115: DELTAP1    
+	00116: MIRP[nrp0,md,rd,1] 
+	00117: SVTCA[y-axis] 
+	00118: SRP1       
+	00119: SRP2       
+	00120: IP         
+	00121: MDAP[rd]   
+	00122: MDAP[rd]   
+	00123: DELTAP1    
+	00124: MIRP[srp0,md,rd,1] 
+	00125: MIRP[nrp0,nmd,rd,0] 
+	00126: MIAP[rd+ci] 
+	00127: MIRP[nrp0,md,rd,1] 
+	00128: SRP1       
+	00129: SRP2       
+	00130: IP         
+	00131: IP         
+	00132: SRP2       
+	00133: DELTAP1    
+	00134: SLOOP      
+	00135: IP         
+	00136: IUP[y]     
+	00137: IUP[x]     
+	00138: RS         
+	00139: JROF       
+	00140: NPUSHB      (30):    27    32    13    17    28    38    16    29    18    39 
+	                             0    17    18    27    26    14    31    12    40     1 
+	                            17    27    15    39     1    13    32    15    40     1 
+	00172: CALL       
+	00173: CALL       
+	00174: SVTCA[x-axis] 
+	00175: CALL       
+	00176: SRP0       
+	00177: ALIGNRP    
+	00178: SRP0       
+	00179: ALIGNRP    
+	00180: CALL       
+	00181: CALL       
+	00182: FLIPRGON   
+	00183: FLIPRGON   
+	00184: SVTCA[x-axis] 
+	00185: DELTAP1    
+	00186: DELTAP2    
+	00187: SVTCA[y-axis] 
+	00188: DELTAP2    
+	00189: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:        XDual         Y-Short         Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:        XDual         Y-Short X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:                      Y-Short X-Short Off
+	 36:                                      On
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:                      Y-Short X-Short Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short Off
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   385,   514)  ->  Abs (   385,   514)
+	  1: Rel (     0,   -85)  ->  Abs (   385,   429)
+	  2: Rel (     0,   -30)  ->  Abs (   385,   399)
+	  3: Rel (   -24,   -26)  ->  Abs (   361,   373)
+	  4: Rel (   -18,     0)  ->  Abs (   343,   373)
+	  5: Rel (   -19,     0)  ->  Abs (   324,   373)
+	  6: Rel (   -24,    26)  ->  Abs (   300,   399)
+	  7: Rel (     0,    30)  ->  Abs (   300,   429)
+	  8: Rel (     0,   141)  ->  Abs (   300,   570)
+	  9: Rel (   219,    81)  ->  Abs (   519,   651)
+	 10: Rel (    80,    81)  ->  Abs (   599,   732)
+	 11: Rel (    45,    45)  ->  Abs (   644,   777)
+	 12: Rel (     0,    68)  ->  Abs (   644,   845)
+	 13: Rel (     0,   112)  ->  Abs (   644,   957)
+	 14: Rel (  -163,   159)  ->  Abs (   481,  1116)
+	 15: Rel (  -130,     0)  ->  Abs (   351,  1116)
+	 16: Rel (   -66,     0)  ->  Abs (   285,  1116)
+	 17: Rel (  -117,   -30)  ->  Abs (   168,  1086)
+	 18: Rel (   -84,   -41)  ->  Abs (    84,  1045)
+	 19: Rel (     0,   -86)  ->  Abs (    84,   959)
+	 20: Rel (     0,   -30)  ->  Abs (    84,   929)
+	 21: Rel (   -23,   -26)  ->  Abs (    61,   903)
+	 22: Rel (   -19,     0)  ->  Abs (    42,   903)
+	 23: Rel (   -18,     0)  ->  Abs (    24,   903)
+	 24: Rel (   -24,    26)  ->  Abs (     0,   929)
+	 25: Rel (     0,    30)  ->  Abs (     0,   959)
+	 26: Rel (     0,   141)  ->  Abs (     0,  1100)
+	 27: Rel (   156,    69)  ->  Abs (   156,  1169)
+	 28: Rel (    46,    12)  ->  Abs (   202,  1181)
+	 29: Rel (    78,    19)  ->  Abs (   280,  1200)
+	 30: Rel (    78,     0)  ->  Abs (   358,  1200)
+	 31: Rel (   167,     0)  ->  Abs (   525,  1200)
+	 32: Rel (   203,  -200)  ->  Abs (   728,  1000)
+	 33: Rel (     0,  -153)  ->  Abs (   728,   847)
+	 34: Rel (     0,   -94)  ->  Abs (   728,   753)
+	 35: Rel (  -121,  -145)  ->  Abs (   607,   608)
+	 36: Rel (  -308,  -430)  ->  Abs (   299,   178)
+	 37: Rel (    84,     0)  ->  Abs (   383,   178)
+	 38: Rel (    44,     0)  ->  Abs (   427,   178)
+	 39: Rel (    61,   -61)  ->  Abs (   488,   117)
+	 40: Rel (     0,   -43)  ->  Abs (   488,    74)
+	 41: Rel (     0,   -44)  ->  Abs (   488,    30)
+	 42: Rel (   -63,   -60)  ->  Abs (   425,   -30)
+	 43: Rel (   -42,     0)  ->  Abs (   383,   -30)
+	 44: Rel (   -84,     0)  ->  Abs (   299,   -30)
+	 45: Rel (   -43,     0)  ->  Abs (   256,   -30)
+	 46: Rel (   -61,    61)  ->  Abs (   195,    31)
+	 47: Rel (     0,    42)  ->  Abs (   195,    73)
+	 48: Rel (     0,    45)  ->  Abs (   195,   118)
+	 49: Rel (    62,    60)  ->  Abs (   257,   178)
+
+	Glyph  35: off = 0x00002488, len = 554
+	  numberOfContours:	2
+	  xMin:			215
+	  yMin:			-130
+	  xMax:			983
+	  yMax:			1297
+
+	EndPoints
+	---------
+	  0:  61
+	  1:  71
+
+	  Length of Instructions:	349
+	00000: PUSHW[2]             16   -64 
+	00005: PUSHB[4]             28    30    52    18 
+	00010: PUSHW[1]            -64 
+	00013: NPUSHB       (9):    18    30    52    13    64    18    30    52    63 
+	00024: PUSHW[1]            -64 
+	00027: PUSHB[4]             18    30    52    19 
+	00032: PUSHW[1]            -64 
+	00035: PUSHB[4]             18    30    52    24 
+	00040: PUSHW[1]            -64 
+	00043: PUSHB[4]             18    24    52    67 
+	00048: PUSHW[1]            -64 
+	00051: NPUSHB      (23):    18    24    52   186     8   188    64     2    18    16 
+	                            47    13    35    16     3   104     8    32    29     1 
+	                            61    54    57 
+	00076: PUSHW[1]            270 
+	00079: NPUSHB      (10):    54    54    50    61     1     4    71    62    68    29 
+	00091: PUSHW[1]            773 
+	00094: NPUSHB       (9):    25    49    44    14   220    62    91    10    61 
+	00105: PUSHW[1]            771 
+	00108: NPUSHB      (17):     4    44    68    68    25    10     6    36    44    25 
+	                            11    32   174    57    62    54    32 
+	00127: PUSHW[1]            326 
+	00130: NPUSHB      (13):    22    10    62    53    54    36    62    71    36     0 
+	                            54     1    54 
+	00145: PUSHW[1]            415 
+	00148: PUSHB[3]             65    44     7 
+	00152: PUSHW[1]            303 
+	00155: NPUSHB      (11):    22    21    36    45    22    36    45    80    44     1 
+	                            44 
+	00168: PUSHW[5]            487    72   199   261    24 
+	00179: CALL       
+	00180: SRP0       
+	00181: MIRP[srp0,nmd,rd,2] 
+	00182: DELTAP1    
+	00183: ALIGNRP    
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: SRP0       
+	00186: MIRP[nrp0,md,rd,1] 
+	00187: SRP0       
+	00188: MIRP[srp0,nmd,rd,2] 
+	00189: MIRP[srp0,md,rd,1] 
+	00190: MIRP[srp0,nmd,rd,0] 
+	00191: DELTAP1    
+	00192: MIRP[srp0,md,rd,1] 
+	00193: ALIGNRP    
+	00194: MIRP[srp0,md,rd,1] 
+	00195: ALIGNRP    
+	00196: SRP0       
+	00197: ALIGNRP    
+	00198: SRP0       
+	00199: MIRP[nrp0,nmd,rd,0] 
+	00200: SRP0       
+	00201: MIRP[srp0,nmd,rd,0] 
+	00202: MIRP[nrp0,nmd,rd,0] 
+	00203: SVTCA[y-axis] 
+	00204: MIAP[rd+ci] 
+	00205: MIRP[nrp0,md,rd,1] 
+	00206: MIAP[rd+ci] 
+	00207: SRP2       
+	00208: IP         
+	00209: MDAP[rd]   
+	00210: MIRP[srp0,md,rd,1] 
+	00211: MIRP[nrp0,nmd,rd,0] 
+	00212: SRP0       
+	00213: MIRP[srp0,md,rd,1] 
+	00214: MIRP[srp0,nmd,rd,0] 
+	00215: MIRP[nrp0,md,rd,1] 
+	00216: SRP0       
+	00217: MIRP[nrp0,nmd,rd,0] 
+	00218: SRP1       
+	00219: SRP2       
+	00220: IP         
+	00221: SRP2       
+	00222: IP         
+	00223: SRP0       
+	00224: MIRP[nrp0,md,rd,1] 
+	00225: SVTCA[x-axis] 
+	00226: SRP0       
+	00227: MIRP[srp0,nmd,rd,1] 
+	00228: SRP0       
+	00229: ALIGNRP    
+	00230: SVTCA[y-axis] 
+	00231: DELTAP1    
+	00232: IUP[y]     
+	00233: IUP[x]     
+	00234: RS         
+	00235: JROF       
+	00236: NPUSHB      (82):    63    67    37    52     5    24    42    43    41    43 
+	                            40    43    39    43    38    43     5     6    19    20 
+	                            18    20    17    20    16    20     4     6    47    38 
+	                            51    37    63     9    65    40     0    24    37    22 
+	                            95     0    15    48    21    95     0    13    50    11 
+	                            40     1    67     5    65    40     0    64     8    62 
+	                            40     1    23    43    25    95     0    20    46    14 
+	                            95     1    12    52    14    40     1    66     6    68 
+	                            40     0 
+	00320: SVTCA[y-axis] 
+	00321: CALL       
+	00322: CALL       
+	00323: CALL       
+	00324: CALL       
+	00325: CALL       
+	00326: SVTCA[x-axis] 
+	00327: CALL       
+	00328: CALL       
+	00329: CALL       
+	00330: CALL       
+	00331: CALL       
+	00332: CALL       
+	00333: CALL       
+	00334: LOOPCALL   
+	00335: LOOPCALL   
+	00336: FLIPRGON   
+	00337: FLIPRGON   
+	00338: FLIPRGON   
+	00339: SVTCA[x-axis] 
+	00340: DELTAP2    
+	00341: DELTAP1    
+	00342: CALL       
+	00343: CALL       
+	00344: CALL       
+	00345: CALL       
+	00346: CALL       
+	00347: CALL       
+	00348: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual                         On
+	 23:        XDual         Y-Short         Off
+	 24:        XDual                 X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:                      Y-Short X-Short On
+	 35:                      Y-Short X-Short Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual               Y-Short X-Short On
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual               Y-Short X-Short On
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:        XDual                         On
+	 46:        XDual                         Off
+	 47:  YDual XDual         Y-Short X-Short On
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:        XDual         Y-Short X-Short Off
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short         On
+	 54:        XDual                         On
+	 55:        XDual         Y-Short X-Short Off
+	 56:        XDual         Y-Short X-Short Off
+	 57:        XDual         Y-Short         On
+	 58:        XDual         Y-Short         Off
+	 59:                      Y-Short X-Short Off
+	 60:                      Y-Short X-Short Off
+	 61:  YDual                       X-Short On
+	 62:                              X-Short On
+	 63:                      Y-Short X-Short Off
+	 64:                      Y-Short X-Short Off
+	 65:        XDual         Y-Short         On
+	 66:        XDual         Y-Short         Off
+	 67:        XDual         Y-Short X-Short Off
+	 68:  YDual XDual                 X-Short On
+	 69:  YDual XDual                 X-Short Off
+	 70:  YDual XDual         Y-Short X-Short Off
+	 71:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   859,   302)  ->  Abs (   859,   302)
+	  1: Rel (     0,    11)  ->  Abs (   859,   313)
+	  2: Rel (   -25,    -4)  ->  Abs (   834,   309)
+	  3: Rel (   -42,    -4)  ->  Abs (   792,   305)
+	  4: Rel (   -18,     0)  ->  Abs (   774,   305)
+	  5: Rel (  -123,     0)  ->  Abs (   651,   305)
+	  6: Rel (  -157,   152)  ->  Abs (   494,   457)
+	  7: Rel (     0,   108)  ->  Abs (   494,   565)
+	  8: Rel (     0,   123)  ->  Abs (   494,   688)
+	  9: Rel (   195,   177)  ->  Abs (   689,   865)
+	 10: Rel (   170,     0)  ->  Abs (   859,   865)
+	 11: Rel (     0,    97)  ->  Abs (   859,   962)
+	 12: Rel (     0,   110)  ->  Abs (   859,  1072)
+	 13: Rel (  -136,   140)  ->  Abs (   723,  1212)
+	 14: Rel (  -102,     0)  ->  Abs (   621,  1212)
+	 15: Rel (   -71,     0)  ->  Abs (   550,  1212)
+	 16: Rel (   -63,   -36)  ->  Abs (   487,  1176)
+	 17: Rel (   -43,   -25)  ->  Abs (   444,  1151)
+	 18: Rel (   -28,   -36)  ->  Abs (   416,  1115)
+	 19: Rel (   -48,   -63)  ->  Abs (   368,  1052)
+	 20: Rel (   -69,  -177)  ->  Abs (   299,   875)
+	 21: Rel (     0,  -131)  ->  Abs (   299,   744)
+	 22: Rel (     0,  -331)  ->  Abs (   299,   413)
+	 23: Rel (     0,  -194)  ->  Abs (   299,   219)
+	 24: Rel (   179,  -265)  ->  Abs (   478,   -46)
+	 25: Rel (   152,     0)  ->  Abs (   630,   -46)
+	 26: Rel (   150,     0)  ->  Abs (   780,   -46)
+	 27: Rel (    75,    71)  ->  Abs (   855,    25)
+	 28: Rel (    17,    16)  ->  Abs (   872,    41)
+	 29: Rel (    16,     0)  ->  Abs (   888,    41)
+	 30: Rel (    17,     0)  ->  Abs (   905,    41)
+	 31: Rel (    24,   -24)  ->  Abs (   929,    17)
+	 32: Rel (     0,   -16)  ->  Abs (   929,     1)
+	 33: Rel (     0,   -32)  ->  Abs (   929,   -31)
+	 34: Rel (   -60,   -38)  ->  Abs (   869,   -69)
+	 35: Rel (   -96,   -61)  ->  Abs (   773,  -130)
+	 36: Rel (  -155,     0)  ->  Abs (   618,  -130)
+	 37: Rel (   -80,     0)  ->  Abs (   538,  -130)
+	 38: Rel (  -133,    59)  ->  Abs (   405,   -71)
+	 39: Rel (   -45,    52)  ->  Abs (   360,   -19)
+	 40: Rel (   -28,    31)  ->  Abs (   332,    12)
+	 41: Rel (   -78,   150)  ->  Abs (   254,   162)
+	 42: Rel (   -16,    58)  ->  Abs (   238,   220)
+	 43: Rel (   -23,    81)  ->  Abs (   215,   301)
+	 44: Rel (     0,   112)  ->  Abs (   215,   413)
+	 45: Rel (     0,   336)  ->  Abs (   215,   749)
+	 46: Rel (     0,   256)  ->  Abs (   215,  1005)
+	 47: Rel (   136,   162)  ->  Abs (   351,  1167)
+	 48: Rel (   108,   130)  ->  Abs (   459,  1297)
+	 49: Rel (   158,     0)  ->  Abs (   617,  1297)
+	 50: Rel (    82,     0)  ->  Abs (   699,  1297)
+	 51: Rel (   138,   -69)  ->  Abs (   837,  1228)
+	 52: Rel (   106,  -161)  ->  Abs (   943,  1067)
+	 53: Rel (     0,  -105)  ->  Abs (   943,   962)
+	 54: Rel (     0,  -576)  ->  Abs (   943,   386)
+	 55: Rel (    20,    -2)  ->  Abs (   963,   384)
+	 56: Rel (    20,   -22)  ->  Abs (   983,   362)
+	 57: Rel (     0,   -17)  ->  Abs (   983,   345)
+	 58: Rel (     0,   -13)  ->  Abs (   983,   332)
+	 59: Rel (   -13,   -21)  ->  Abs (   970,   311)
+	 60: Rel (   -19,    -9)  ->  Abs (   951,   302)
+	 61: Rel (   -24,     0)  ->  Abs (   927,   302)
+	 62: Rel (   -68,   480)  ->  Abs (   859,   782)
+	 63: Rel (  -132,    -1)  ->  Abs (   727,   781)
+	 64: Rel (  -149,  -130)  ->  Abs (   578,   651)
+	 65: Rel (     0,   -84)  ->  Abs (   578,   567)
+	 66: Rel (     0,   -76)  ->  Abs (   578,   491)
+	 67: Rel (   109,  -102)  ->  Abs (   687,   389)
+	 68: Rel (    98,     0)  ->  Abs (   785,   389)
+	 69: Rel (    17,     0)  ->  Abs (   802,   389)
+	 70: Rel (    37,     5)  ->  Abs (   839,   394)
+	 71: Rel (    20,     4)  ->  Abs (   859,   398)
+
+	Glyph  36: off = 0x000026B2, len = 580
+	  numberOfContours:	2
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  42
+	  1:  46
+
+	  Length of Instructions:	438
+	00000: NPUSHB      (43):    54    17    57    18    57    27    62    44    55    45 
+	                            71    18    73    26    76    44    70    45    80    18 
+	                            80    22    95    26    95    44    80    45   248    42 
+	                            15    43     0    42    42    44    46     1     2     2 
+	                            45    10    16 
+	00045: PUSHW[1]            676 
+	00048: NPUSHB      (22):    13   143    13   159    13     2   223    13     1    13 
+	                            41    17    13    13    16    17    29    10    17    18 
+	                            35    41 
+	00072: PUSHW[1]            676 
+	00075: NPUSHB      (14):    38    38    51    42    38    38    41    42    29    35 
+	                            42    44     9     3 
+	00091: PUSHW[1]            676 
+	00094: NPUSHB      (14):     6     6    51     2     6     6     3     2    29     9 
+	                             2    45    25    19 
+	00110: PUSHW[1]            676 
+	00113: NPUSHB      (14):    22    22    86    18    22    22    19    18    29    25 
+	                            18    17    34    28 
+	00129: PUSHW[1]            676 
+	00132: NPUSHB      (72):    31     0    31   128    31   144    31     3   208    31 
+	                             1    31    41    27    31    31    28    27    29    34 
+	                            27    26    26    44    42    42    30    27    26    20 
+	                            27    27    26    18    17    17    30     2    45    20 
+	                             2     2    45    36    35    35    10     9     8     0 
+	                             1    30    43    15    46    31    46     2    46    46 
+	                             9    25    45    44    38    26    19    38    26    25 
+	                             2    26 
+	00206: PUSHW[3]            344    44   318 
+	00213: NPUSHB      (20):    42    38    27    64    15     9    63     0    17     1 
+	                            15    27    31    27   224    27   240    27     4    27 
+	00235: PUSHW[1]            300 
+	00238: PUSHB[7]             48     2    38    17    45    38    18 
+	00246: PUSHW[3]            318    17   -64 
+	00253: PUSHB[4]             17    10    63    17 
+	00258: PUSHW[1]            -64 
+	00261: NPUSHB      (16):    15     9    63    15    17     1     0    17    79    17 
+	                           239    17   255    17     4    17 
+	00279: PUSHW[1]            300 
+	00282: PUSHB[4]             47    69   108    24 
+	00287: PUSHW[1]            300 
+	00290: SCANCTRL   
+	00291: CALL       
+	00292: SRP0       
+	00293: MIRP[srp0,nmd,rd,2] 
+	00294: DELTAP1    
+	00295: DELTAP2    
+	00296: SVTCA[x-axis] 
+	00297: CALL       
+	00298: CALL       
+	00299: MIRP[srp0,nmd,rd,0] 
+	00300: MIRP[nrp0,md,rd,1] 
+	00301: SRP0       
+	00302: MIRP[nrp0,md,rd,1] 
+	00303: SRP0       
+	00304: MIRP[srp0,nmd,rd,2] 
+	00305: DELTAP1    
+	00306: DELTAP2    
+	00307: SVTCA[x-axis] 
+	00308: CALL       
+	00309: MIRP[srp0,md,rd,1] 
+	00310: MIRP[srp0,nmd,rd,0] 
+	00311: MIRP[nrp0,md,rd,1] 
+	00312: SVTCA[y-axis] 
+	00313: MIAP[rd+ci] 
+	00314: ALIGNRP    
+	00315: MIRP[nrp0,md,rd,1] 
+	00316: SRP0       
+	00317: MIRP[srp0,md,rd,1] 
+	00318: ALIGNRP    
+	00319: SRP1       
+	00320: SRP2       
+	00321: IP         
+	00322: MDAP[rd]   
+	00323: DELTAP1    
+	00324: ALIGNRP    
+	00325: MIRP[srp0,md,rd,1] 
+	00326: ALIGNRP    
+	00327: MIAP[rd+ci] 
+	00328: ALIGNRP    
+	00329: ALIGNRP    
+	00330: SRP0       
+	00331: ALIGNRP    
+	00332: SDPVTL[1]  
+	00333: SFVTCA[x-axis] 
+	00334: MDAP[nrd]  
+	00335: CALL       
+	00336: RDTG       
+	00337: SRP0       
+	00338: MDRP[nrp0,nmd,rd,0] 
+	00339: SDPVTL[1]  
+	00340: MDAP[nrd]  
+	00341: RTG        
+	00342: CALL       
+	00343: SDPVTL[1]  
+	00344: RDTG       
+	00345: MDRP[nrp0,nmd,rd,0] 
+	00346: RTG        
+	00347: SVTCA[y-axis] 
+	00348: SFVTL[=p1,p2] 
+	00349: SRP0       
+	00350: MIRP[srp0,md,rd,1] 
+	00351: RTDG       
+	00352: SRP2       
+	00353: IP         
+	00354: MDAP[rd]   
+	00355: RTG        
+	00356: SVTCA[x-axis] 
+	00357: SRP0       
+	00358: MIRP[srp0,nmd,nrd,1] 
+	00359: DELTAP1    
+	00360: DELTAP2    
+	00361: MDAP[rd]   
+	00362: MIRP[srp0,nmd,rd,0] 
+	00363: MDRP[nrp0,nmd,rd,0] 
+	00364: SVTCA[y-axis] 
+	00365: SFVTL[=p1,p2] 
+	00366: SRP0       
+	00367: MIRP[srp0,md,rd,1] 
+	00368: RTDG       
+	00369: SRP2       
+	00370: IP         
+	00371: MDAP[rd]   
+	00372: RTG        
+	00373: SVTCA[x-axis] 
+	00374: SRP0       
+	00375: MIRP[srp0,nmd,nrd,1] 
+	00376: MDAP[rd]   
+	00377: MIRP[srp0,nmd,rd,0] 
+	00378: MDRP[nrp0,nmd,rd,0] 
+	00379: SVTCA[y-axis] 
+	00380: SFVTL[=p1,p2] 
+	00381: SRP0       
+	00382: MIRP[srp0,md,rd,1] 
+	00383: RTDG       
+	00384: SRP2       
+	00385: IP         
+	00386: MDAP[rd]   
+	00387: RTG        
+	00388: SVTCA[x-axis] 
+	00389: SRP0       
+	00390: MIRP[srp0,nmd,nrd,1] 
+	00391: MDAP[rd]   
+	00392: MIRP[srp0,nmd,rd,0] 
+	00393: MDRP[nrp0,nmd,rd,0] 
+	00394: SVTCA[y-axis] 
+	00395: SFVTL[=p1,p2] 
+	00396: SRP0       
+	00397: MIRP[srp0,md,rd,1] 
+	00398: RTDG       
+	00399: SRP2       
+	00400: IP         
+	00401: MDAP[rd]   
+	00402: RTG        
+	00403: SVTCA[x-axis] 
+	00404: SRP0       
+	00405: MIRP[srp0,nmd,nrd,1] 
+	00406: MDAP[rd]   
+	00407: MIRP[srp0,nmd,rd,0] 
+	00408: MDRP[nrp0,nmd,rd,0] 
+	00409: SVTCA[y-axis] 
+	00410: SFVTL[=p1,p2] 
+	00411: SRP0       
+	00412: MIRP[srp0,md,rd,1] 
+	00413: RTDG       
+	00414: SRP2       
+	00415: IP         
+	00416: MDAP[rd]   
+	00417: RTG        
+	00418: SVTCA[x-axis] 
+	00419: SRP0       
+	00420: MIRP[srp0,nmd,nrd,1] 
+	00421: DELTAP1    
+	00422: DELTAP2    
+	00423: MDAP[rd]   
+	00424: MIRP[srp0,nmd,rd,0] 
+	00425: MDRP[nrp0,nmd,rd,0] 
+	00426: SPVTL[p1,p2] 
+	00427: SRP0       
+	00428: ALIGNRP    
+	00429: ALIGNRP    
+	00430: SPVTL[p1,p2] 
+	00431: SRP0       
+	00432: ALIGNRP    
+	00433: ALIGNRP    
+	00434: IUP[y]     
+	00435: IUP[x]     
+	00436: SVTCA[x-axis] 
+	00437: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:                              X-Short On
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                               On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short On
+	 18:                                      On
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual                               On
+	 27:                                      On
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                               On
+	 36:  YDual                       X-Short Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short On
+	 43:                              X-Short On
+	 44:                              X-Short On
+	 45:  YDual                       X-Short On
+	 46:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   891,   391)  ->  Abs (   891,   391)
+	  1: Rel (  -552,     0)  ->  Abs (   339,   391)
+	  2: Rel (  -113,  -307)  ->  Abs (   226,    84)
+	  3: Rel (   161,     0)  ->  Abs (   387,    84)
+	  4: Rel (    30,     0)  ->  Abs (   417,    84)
+	  5: Rel (    26,   -23)  ->  Abs (   443,    61)
+	  6: Rel (     0,   -19)  ->  Abs (   443,    42)
+	  7: Rel (     0,   -18)  ->  Abs (   443,    24)
+	  8: Rel (   -26,   -24)  ->  Abs (   417,     0)
+	  9: Rel (   -30,     0)  ->  Abs (   387,     0)
+	 10: Rel (  -314,     0)  ->  Abs (    73,     0)
+	 11: Rel (   -30,     0)  ->  Abs (    43,     0)
+	 12: Rel (   -26,    24)  ->  Abs (    17,    24)
+	 13: Rel (     0,    18)  ->  Abs (    17,    42)
+	 14: Rel (     0,    19)  ->  Abs (    17,    61)
+	 15: Rel (    26,    23)  ->  Abs (    43,    84)
+	 16: Rel (    30,     0)  ->  Abs (    73,    84)
+	 17: Rel (    65,     0)  ->  Abs (   138,    84)
+	 18: Rel (   371,  1002)  ->  Abs (   509,  1086)
+	 19: Rel (  -248,     0)  ->  Abs (   261,  1086)
+	 20: Rel (   -30,     0)  ->  Abs (   231,  1086)
+	 21: Rel (   -26,    23)  ->  Abs (   205,  1109)
+	 22: Rel (     0,    19)  ->  Abs (   205,  1128)
+	 23: Rel (     0,    19)  ->  Abs (   205,  1147)
+	 24: Rel (    26,    23)  ->  Abs (   231,  1170)
+	 25: Rel (    30,     0)  ->  Abs (   261,  1170)
+	 26: Rel (   423,     0)  ->  Abs (   684,  1170)
+	 27: Rel (   410, -1086)  ->  Abs (  1094,    84)
+	 28: Rel (    65,     0)  ->  Abs (  1159,    84)
+	 29: Rel (    30,     0)  ->  Abs (  1189,    84)
+	 30: Rel (    26,   -23)  ->  Abs (  1215,    61)
+	 31: Rel (     0,   -19)  ->  Abs (  1215,    42)
+	 32: Rel (     0,   -18)  ->  Abs (  1215,    24)
+	 33: Rel (   -26,   -24)  ->  Abs (  1189,     0)
+	 34: Rel (   -30,     0)  ->  Abs (  1159,     0)
+	 35: Rel (  -313,     0)  ->  Abs (   846,     0)
+	 36: Rel (   -31,     0)  ->  Abs (   815,     0)
+	 37: Rel (   -26,    24)  ->  Abs (   789,    24)
+	 38: Rel (     0,    18)  ->  Abs (   789,    42)
+	 39: Rel (     0,    19)  ->  Abs (   789,    61)
+	 40: Rel (    26,    23)  ->  Abs (   815,    84)
+	 41: Rel (    31,     0)  ->  Abs (   846,    84)
+	 42: Rel (   160,     0)  ->  Abs (  1006,    84)
+	 43: Rel (  -147,   391)  ->  Abs (   859,   475)
+	 44: Rel (  -232,   611)  ->  Abs (   627,  1086)
+	 45: Rel (   -31,     0)  ->  Abs (   596,  1086)
+	 46: Rel (  -225,  -611)  ->  Abs (   371,   475)
+
+	Glyph  37: off = 0x000028F6, len = 508
+	  numberOfContours:	3
+	  xMin:			87
+	  yMin:			0
+	  xMax:			1113
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  28
+	  1:  39
+	  2:  50
+
+	  Length of Instructions:	358
+	00000: NPUSHB     (189):   175    42   171    43   198    10   197    11   215    10 
+	                             5   143    42   138    43   157    32   155    37   159 
+	                            43   174    37     6   123    36   127    37   115    43 
+	                           117    45   143    10   143    20   139    36   143    37 
+	                             8    85    16   101    16   127    10   112    16   112 
+	                            17   112    18   112    19     7    74    32    77    33 
+	                            73    36    75    43   134    14     5    50    15    59 
+	                            32    58    33    58    37    63    42    59    43    69 
+	                            15    71    16     8     9    47    25    32    28    33 
+	                            27    37    27    42    27    47    35    15    42    43 
+	                             8   121    16   188    36   199    47     3    70    32 
+	                            73    37   118    32   134    32   138    48   149    32 
+	                           165    32   181    32     8    44     8    28    22    25 
+	                            43     0     0    29    22     2     8     5    43     1 
+	                             1    29     8    48    32    14     3    35    40    14 
+	                            50    32    39    29    41    38    22    39    38     8 
+	                            30    29    30    49    50    50    22     8     2    22 
+	                             8    35    37    15    12    31    12    47    12    63 
+	                            12    79    12    95    12   111    12     7    12 
+	00191: PUSHW[1]            387 
+	00194: NPUSHB      (41):    45    37     0    17    16    17     2    15    17   144 
+	                            17   192    17   208    17   224    17   240    17     6 
+	                            17    26    52    39    40    30     1     0     0    16 
+	                             0     2   240     0     1     0    25    51    74   121 
+	                            24 
+	00237: PUSHW[1]            300 
+	00240: SCANCTRL   
+	00241: CALL       
+	00242: FLIPOFF    
+	00243: SRP0       
+	00244: MIRP[srp0,nmd,rd,0] 
+	00245: DELTAP1    
+	00246: DELTAP2    
+	00247: ALIGNRP    
+	00248: FLIPON     
+	00249: MIRP[srp0,md,rd,1] 
+	00250: ALIGNRP    
+	00251: FLIPOFF    
+	00252: SRP0       
+	00253: MIRP[srp0,nmd,rd,2] 
+	00254: DELTAP1    
+	00255: DELTAP2    
+	00256: FLIPON     
+	00257: MIRP[srp0,md,rd,1] 
+	00258: MIRP[srp0,nmd,rd,2] 
+	00259: DELTAP1    
+	00260: MIRP[nrp0,md,rd,1] 
+	00261: SVTCA[y-axis] 
+	00262: MIAP[rd+ci] 
+	00263: MIAP[rd+ci] 
+	00264: SRP2       
+	00265: IP         
+	00266: MDAP[rd]   
+	00267: ALIGNRP    
+	00268: MIRP[srp0,md,rd,1] 
+	00269: ALIGNRP    
+	00270: SRP0       
+	00271: MIRP[nrp0,md,rd,1] 
+	00272: SRP0       
+	00273: MIRP[nrp0,md,rd,1] 
+	00274: SRP1       
+	00275: SRP2       
+	00276: IP         
+	00277: SRP2       
+	00278: IP         
+	00279: SVTCA[x-axis] 
+	00280: SRP1       
+	00281: SRP2       
+	00282: SLOOP      
+	00283: IP         
+	00284: SVTCA[y-axis] 
+	00285: SRP0       
+	00286: MIRP[nrp0,md,rd,1] 
+	00287: SVTCA[x-axis] 
+	00288: SRP0       
+	00289: MIRP[srp0,nmd,rd,1] 
+	00290: MDRP[srp0,nmd,rd,0] 
+	00291: ALIGNRP    
+	00292: SVTCA[y-axis] 
+	00293: SRP0       
+	00294: MIRP[nrp0,md,rd,1] 
+	00295: SVTCA[x-axis] 
+	00296: SRP0       
+	00297: MIRP[srp0,nmd,rd,1] 
+	00298: MDRP[srp0,nmd,rd,0] 
+	00299: ALIGNRP    
+	00300: IUP[y]     
+	00301: IUP[x]     
+	00302: RS         
+	00303: JROF       
+	00304: NPUSHB      (30):    36    44    18    20    10    11    19    38    43    37 
+	                            42    20    45    45     1    37    10    35    45     1 
+	                            44    18    41    45     0    36    11    38    45     1 
+	00336: SVTCA[y-axis] 
+	00337: CALL       
+	00338: CALL       
+	00339: SVTCA[x-axis] 
+	00340: CALL       
+	00341: CALL       
+	00342: CALL       
+	00343: CALL       
+	00344: FLIPRGON   
+	00345: FLIPRGON   
+	00346: FLIPRGON   
+	00347: SVTCA[y-axis] 
+	00348: DELTAP2    
+	00349: DELTAP1    
+	00350: SVTCA[x-axis] 
+	00351: DELTAP2    
+	00352: DELTAP2    
+	00353: DELTAP2    
+	00354: DELTAP1    
+	00355: DELTAP1    
+	00356: DELTAP1    
+	00357: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual                               On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                               On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:        XDual                 X-Short On
+	 30:  YDual                               On
+	 31:  YDual XDual                 X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                               On
+	 40:        XDual                         On
+	 41:  YDual                               On
+	 42:  YDual XDual                 X-Short Off
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual               Y-Short X-Short Off
+	 48:  YDual               Y-Short X-Short Off
+	 49:  YDual                       X-Short On
+	 50:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,    84)  ->  Abs (   256,    84)
+	  1: Rel (     0,  1002)  ->  Abs (   256,  1086)
+	  2: Rel (  -113,     0)  ->  Abs (   143,  1086)
+	  3: Rel (   -30,     0)  ->  Abs (   113,  1086)
+	  4: Rel (   -26,    23)  ->  Abs (    87,  1109)
+	  5: Rel (     0,    19)  ->  Abs (    87,  1128)
+	  6: Rel (     0,    19)  ->  Abs (    87,  1147)
+	  7: Rel (    26,    23)  ->  Abs (   113,  1170)
+	  8: Rel (    30,     0)  ->  Abs (   143,  1170)
+	  9: Rel (   528,     0)  ->  Abs (   671,  1170)
+	 10: Rel (   157,     0)  ->  Abs (   828,  1170)
+	 11: Rel (   197,  -181)  ->  Abs (  1025,   989)
+	 12: Rel (     0,  -122)  ->  Abs (  1025,   867)
+	 13: Rel (     0,  -154)  ->  Abs (  1025,   713)
+	 14: Rel (  -165,   -95)  ->  Abs (   860,   618)
+	 15: Rel (   131,   -47)  ->  Abs (   991,   571)
+	 16: Rel (   122,  -156)  ->  Abs (  1113,   415)
+	 17: Rel (     0,   -94)  ->  Abs (  1113,   321)
+	 18: Rel (     0,   -84)  ->  Abs (  1113,   237)
+	 19: Rel (   -80,  -139)  ->  Abs (  1033,    98)
+	 20: Rel (  -165,   -98)  ->  Abs (   868,     0)
+	 21: Rel (   -97,     0)  ->  Abs (   771,     0)
+	 22: Rel (  -628,     0)  ->  Abs (   143,     0)
+	 23: Rel (   -30,     0)  ->  Abs (   113,     0)
+	 24: Rel (   -26,    24)  ->  Abs (    87,    24)
+	 25: Rel (     0,    18)  ->  Abs (    87,    42)
+	 26: Rel (     0,    19)  ->  Abs (    87,    61)
+	 27: Rel (    26,    23)  ->  Abs (   113,    84)
+	 28: Rel (    30,     0)  ->  Abs (   143,    84)
+	 29: Rel (   197,   566)  ->  Abs (   340,   650)
+	 30: Rel (   297,     0)  ->  Abs (   637,   650)
+	 31: Rel (    95,     0)  ->  Abs (   732,   650)
+	 32: Rel (    79,    35)  ->  Abs (   811,   685)
+	 33: Rel (    61,    28)  ->  Abs (   872,   713)
+	 34: Rel (    68,   106)  ->  Abs (   940,   819)
+	 35: Rel (     0,    55)  ->  Abs (   940,   874)
+	 36: Rel (     0,    79)  ->  Abs (   940,   953)
+	 37: Rel (  -148,   133)  ->  Abs (   792,  1086)
+	 38: Rel (  -119,     0)  ->  Abs (   673,  1086)
+	 39: Rel (  -333,     0)  ->  Abs (   340,  1086)
+	 40: Rel (     0, -1002)  ->  Abs (   340,    84)
+	 41: Rel (   425,     0)  ->  Abs (   765,    84)
+	 42: Rel (    81,     0)  ->  Abs (   846,    84)
+	 43: Rel (   120,    72)  ->  Abs (   966,   156)
+	 44: Rel (    62,   106)  ->  Abs (  1028,   262)
+	 45: Rel (     0,    57)  ->  Abs (  1028,   319)
+	 46: Rel (     0,    64)  ->  Abs (  1028,   383)
+	 47: Rel (   -89,   120)  ->  Abs (   939,   503)
+	 48: Rel (  -158,    62)  ->  Abs (   781,   565)
+	 49: Rel (  -139,     0)  ->  Abs (   642,   565)
+	 50: Rel (  -302,     0)  ->  Abs (   340,   565)
+
+	Glyph  38: off = 0x00002AF2, len = 384
+	  numberOfContours:	1
+	  xMin:			127
+	  yMin:			-33
+	  xMax:			1100
+	  yMax:			1197
+
+	EndPoints
+	---------
+	  0:  56
+
+	  Length of Instructions:	223
+	00000: NPUSHB     (120):    45    20     1    47     0    63     0    79     0     3 
+	                             5    22    21    22    86    23   101    20   100    22 
+	                           105    46   112    20   115    22   112    24   180    23 
+	                            10    55    28    54    48    74    22    74    54    91 
+	                            23    91    53   106    23   104    53   133    28   153 
+	                            47    10    51    49    15    32    27    34     1     0 
+	                             3     8    14    22    23    55    50    32    35    30 
+	                            15    13     0     3    18    11    35   180    43    18 
+	                            37    55    11   139     4    30    37    43    55     3 
+	                             4     2    43     9    14    38     8    96    33    38 
+	                            38    26    58    27    38    15    49    31    49    47 
+	                            49    63    49     4    49    25    57   135   121    24 
+	00122: PUSHW[1]            300 
+	00125: SCANCTRL   
+	00126: CALL       
+	00127: FLIPOFF    
+	00128: SRP0       
+	00129: MIRP[srp0,nmd,rd,0] 
+	00130: DELTAP1    
+	00131: FLIPON     
+	00132: MIRP[nrp0,md,rd,1] 
+	00133: FLIPOFF    
+	00134: SRP0       
+	00135: MIRP[srp0,nmd,rd,2] 
+	00136: FLIPON     
+	00137: MIRP[srp0,md,rd,1] 
+	00138: MIRP[srp0,md,rd,1] 
+	00139: MIRP[nrp0,md,rd,1] 
+	00140: SVTCA[y-axis] 
+	00141: MIAP[rd+ci] 
+	00142: MIAP[rd+ci] 
+	00143: MIAP[rd+ci] 
+	00144: SRP0       
+	00145: MIRP[nrp0,md,rd,1] 
+	00146: SRP0       
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: SRP0       
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: SRP0       
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: SRP1       
+	00153: SRP2       
+	00154: SLOOP      
+	00155: IP         
+	00156: SRP1       
+	00157: SRP2       
+	00158: IP         
+	00159: SRP1       
+	00160: SRP2       
+	00161: IP         
+	00162: IP         
+	00163: SVTCA[x-axis] 
+	00164: SRP1       
+	00165: SRP2       
+	00166: SLOOP      
+	00167: IP         
+	00168: SRP2       
+	00169: IP         
+	00170: IP         
+	00171: SRP1       
+	00172: IP         
+	00173: IUP[y]     
+	00174: IUP[x]     
+	00175: SVTCA[y-axis] 
+	00176: MPPEM      
+	00177: PUSHB[1]             11 
+	00179: GTEQ       
+	00180: MPPEM      
+	00181: PUSHB[1]             36 
+	00183: LTEQ       
+	00184: AND        
+	00185: IF         
+	00186: PUSHW[2]             28   -20 
+	00191: PUSHB[3]             17    20     0 
+	00195: PUSHW[3]            -20    29   -20 
+	00202: PUSHB[6]             22    22    23    28    24    22 
+	00209: SHPIX      
+	00210: SHPIX      
+	00211: SHPIX      
+	00212: SHPIX      
+	00213: SHPIX      
+	00214: SHPIX      
+	00215: SHPIX      
+	00216: EIF        
+	00217: SVTCA[x-axis] 
+	00218: DELTAP1    
+	00219: DELTAP2    
+	00220: SVTCA[y-axis] 
+	00221: DELTAP1    
+	00222: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short         Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:                      Y-Short X-Short On
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:                                      Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:                      Y-Short X-Short On
+	 41:                      Y-Short X-Short Off
+	 42:                      Y-Short X-Short Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short Off
+	 45:  YDual               Y-Short X-Short On
+	 46:  YDual       Rep-  3 Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         Off
+	 53:        XDual                 X-Short Off
+	 54:  YDual XDual         Y-Short X-Short Off
+	 55:  YDual XDual                 X-Short On
+	 56:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   984,  1055)  ->  Abs (   984,  1055)
+	  1: Rel (     0,    59)  ->  Abs (   984,  1114)
+	  2: Rel (     0,    30)  ->  Abs (   984,  1144)
+	  3: Rel (    23,    26)  ->  Abs (  1007,  1170)
+	  4: Rel (    19,     0)  ->  Abs (  1026,  1170)
+	  5: Rel (    19,     0)  ->  Abs (  1045,  1170)
+	  6: Rel (    23,   -26)  ->  Abs (  1068,  1144)
+	  7: Rel (     0,   -30)  ->  Abs (  1068,  1114)
+	  8: Rel (     0,  -233)  ->  Abs (  1068,   881)
+	  9: Rel (     0,   -31)  ->  Abs (  1068,   850)
+	 10: Rel (   -23,   -26)  ->  Abs (  1045,   824)
+	 11: Rel (   -19,     0)  ->  Abs (  1026,   824)
+	 12: Rel (   -17,     0)  ->  Abs (  1009,   824)
+	 13: Rel (   -23,    24)  ->  Abs (   986,   848)
+	 14: Rel (    -2,    27)  ->  Abs (   984,   875)
+	 15: Rel (    -5,    84)  ->  Abs (   979,   959)
+	 16: Rel (   -86,    65)  ->  Abs (   893,  1024)
+	 17: Rel (  -116,    89)  ->  Abs (   777,  1113)
+	 18: Rel (  -148,     0)  ->  Abs (   629,  1113)
+	 19: Rel (   -97,     0)  ->  Abs (   532,  1113)
+	 20: Rel (   -86,   -43)  ->  Abs (   446,  1070)
+	 21: Rel (   -64,   -31)  ->  Abs (   382,  1039)
+	 22: Rel (   -38,   -45)  ->  Abs (   344,   994)
+	 23: Rel (   -66,   -78)  ->  Abs (   278,   916)
+	 24: Rel (   -39,   -95)  ->  Abs (   239,   821)
+	 25: Rel (   -28,   -70)  ->  Abs (   211,   751)
+	 26: Rel (     0,   -88)  ->  Abs (   211,   663)
+	 27: Rel (     0,  -147)  ->  Abs (   211,   516)
+	 28: Rel (     0,  -188)  ->  Abs (   211,   328)
+	 29: Rel (   272,  -277)  ->  Abs (   483,    51)
+	 30: Rel (   180,     0)  ->  Abs (   663,    51)
+	 31: Rel (   108,     0)  ->  Abs (   771,    51)
+	 32: Rel (   171,    94)  ->  Abs (   942,   145)
+	 33: Rel (    80,    95)  ->  Abs (  1022,   240)
+	 34: Rel (    17,    21)  ->  Abs (  1039,   261)
+	 35: Rel (    21,     0)  ->  Abs (  1060,   261)
+	 36: Rel (    18,     0)  ->  Abs (  1078,   261)
+	 37: Rel (    22,   -22)  ->  Abs (  1100,   239)
+	 38: Rel (     0,   -17)  ->  Abs (  1100,   222)
+	 39: Rel (     0,   -23)  ->  Abs (  1100,   199)
+	 40: Rel (   -43,   -47)  ->  Abs (  1057,   152)
+	 41: Rel (   -82,   -92)  ->  Abs (   975,    60)
+	 42: Rel (  -205,   -93)  ->  Abs (   770,   -33)
+	 43: Rel (  -105,     0)  ->  Abs (   665,   -33)
+	 44: Rel (   -91,     0)  ->  Abs (   574,   -33)
+	 45: Rel (   -94,    35)  ->  Abs (   480,     2)
+	 46: Rel (   -72,    27)  ->  Abs (   408,    29)
+	 47: Rel (   -94,    72)  ->  Abs (   314,   101)
+	 48: Rel (  -137,   171)  ->  Abs (   177,   272)
+	 49: Rel (   -50,   145)  ->  Abs (   127,   417)
+	 50: Rel (     0,    87)  ->  Abs (   127,   504)
+	 51: Rel (     0,   171)  ->  Abs (   127,   675)
+	 52: Rel (     0,   124)  ->  Abs (   127,   799)
+	 53: Rel (   133,   259)  ->  Abs (   260,  1058)
+	 54: Rel (   231,   139)  ->  Abs (   491,  1197)
+	 55: Rel (   135,     0)  ->  Abs (   626,  1197)
+	 56: Rel (   208,     0)  ->  Abs (   834,  1197)
+
+	Glyph  39: off = 0x00002C72, len = 400
+	  numberOfContours:	2
+	  xMin:			158
+	  yMin:			0
+	  xMax:			1142
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  29
+	  1:  44
+
+	  Length of Instructions:	268
+	00000: NPUSHB      (33):   142    10   137    11   136    18   137    19   137    20 
+	                           140    21   143    31   143    32   138    33   141    39 
+	                           138    41   143    42    12    11    40     1    39    32 
+	                            41    28    33 
+	00035: PUSHW[1]            -32 
+	00038: NPUSHB       (9):   153    39   181    33     2    67     8    23    29 
+	00049: PUSHW[1]            676 
+	00052: NPUSHB      (11):    26    41     0    26    26    29     0    29    23     8 
+	                             2 
+	00065: PUSHW[1]            676 
+	00068: NPUSHB      (53):     5    41     1     5     5     2     1    29     8    17 
+	                            46    15    31    30    22    22    29    30    23     8 
+	                            43    30     9     9     2    30     8     2    36    38 
+	                            15    15     1    15    15    32    15     2    15    26 
+	                            46    44    30    30     1    32     0    79     0     2 
+	                             0    25    45 
+	00123: PUSHW[4]            313   264    24   300 
+	00132: SCANCTRL   
+	00133: CALL       
+	00134: FLIPOFF    
+	00135: SRP0       
+	00136: MIRP[srp0,nmd,rd,0] 
+	00137: DELTAP1    
+	00138: ALIGNRP    
+	00139: FLIPON     
+	00140: MIRP[srp0,md,rd,1] 
+	00141: ALIGNRP    
+	00142: FLIPOFF    
+	00143: SRP0       
+	00144: MIRP[srp0,nmd,rd,2] 
+	00145: DELTAP1    
+	00146: DELTAP2    
+	00147: FLIPON     
+	00148: MIRP[nrp0,md,rd,1] 
+	00149: SVTCA[y-axis] 
+	00150: MIAP[rd+ci] 
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: ALIGNRP    
+	00153: SRP0       
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: MIAP[rd+ci] 
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: ALIGNRP    
+	00158: SRP0       
+	00159: MIRP[nrp0,md,rd,1] 
+	00160: SVTCA[x-axis] 
+	00161: SRP1       
+	00162: SRP2       
+	00163: IP         
+	00164: SVTCA[y-axis] 
+	00165: SRP0       
+	00166: MIRP[srp0,md,rd,1] 
+	00167: RTDG       
+	00168: SRP2       
+	00169: IP         
+	00170: MDAP[rd]   
+	00171: RTG        
+	00172: SVTCA[x-axis] 
+	00173: SRP0       
+	00174: MIRP[srp0,nmd,rd,1] 
+	00175: MIRP[srp0,nmd,rd,0] 
+	00176: MDRP[nrp0,nmd,rd,0] 
+	00177: SVTCA[y-axis] 
+	00178: SRP0       
+	00179: MIRP[srp0,md,rd,1] 
+	00180: RTDG       
+	00181: SRP2       
+	00182: IP         
+	00183: MDAP[rd]   
+	00184: RTG        
+	00185: SVTCA[x-axis] 
+	00186: SRP0       
+	00187: MIRP[srp0,nmd,rd,1] 
+	00188: MIRP[srp0,nmd,rd,0] 
+	00189: MDRP[nrp0,nmd,rd,0] 
+	00190: IUP[y]     
+	00191: IUP[x]     
+	00192: RS         
+	00193: JROF       
+	00194: NPUSHB      (52):    32    42    10    21    14    15    13    15    12    15 
+	                            11    15     4     6    38    37    39    37    40    37 
+	                            41    37     4     6    19    18    20    18     2     6 
+	                            33    37    42    10    36    46     1    32    21    35 
+	                            46     1    37    15    43    46     1    34    18    31 
+	                            46     0 
+	00248: SVTCA[y-axis] 
+	00249: CALL       
+	00250: CALL       
+	00251: SVTCA[x-axis] 
+	00252: CALL       
+	00253: CALL       
+	00254: CALL       
+	00255: LOOPCALL   
+	00256: LOOPCALL   
+	00257: LOOPCALL   
+	00258: FLIPRGON   
+	00259: FLIPRGON   
+	00260: SVTCA[y-axis] 
+	00261: DELTAP1    
+	00262: SHPIX      
+	00263: SHPIX      
+	00264: SHPIX      
+	00265: SVTCA[x-axis] 
+	00266: DELTAP2    
+	00267: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual                               On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                               On
+	 24:  YDual                       X-Short Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual                               On
+	 32:  YDual XDual                 X-Short Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual               Y-Short X-Short On
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual               Y-Short X-Short On
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   285,    84)  ->  Abs (   285,    84)
+	  1: Rel (     0,  1002)  ->  Abs (   285,  1086)
+	  2: Rel (   -71,     0)  ->  Abs (   214,  1086)
+	  3: Rel (   -30,     0)  ->  Abs (   184,  1086)
+	  4: Rel (   -26,    23)  ->  Abs (   158,  1109)
+	  5: Rel (     0,    19)  ->  Abs (   158,  1128)
+	  6: Rel (     0,    19)  ->  Abs (   158,  1147)
+	  7: Rel (    26,    23)  ->  Abs (   184,  1170)
+	  8: Rel (    30,     0)  ->  Abs (   214,  1170)
+	  9: Rel (   452,     0)  ->  Abs (   666,  1170)
+	 10: Rel (   106,     0)  ->  Abs (   772,  1170)
+	 11: Rel (   175,   -88)  ->  Abs (   947,  1082)
+	 12: Rel (    46,   -56)  ->  Abs (   993,  1026)
+	 13: Rel (    79,   -95)  ->  Abs (  1072,   931)
+	 14: Rel (    41,  -106)  ->  Abs (  1113,   825)
+	 15: Rel (    29,   -77)  ->  Abs (  1142,   748)
+	 16: Rel (     0,  -105)  ->  Abs (  1142,   643)
+	 17: Rel (     0,  -116)  ->  Abs (  1142,   527)
+	 18: Rel (     0,  -129)  ->  Abs (  1142,   398)
+	 19: Rel (  -114,  -242)  ->  Abs (  1028,   156)
+	 20: Rel (  -133,   -90)  ->  Abs (   895,    66)
+	 21: Rel (   -99,   -66)  ->  Abs (   796,     0)
+	 22: Rel (  -130,     0)  ->  Abs (   666,     0)
+	 23: Rel (  -452,     0)  ->  Abs (   214,     0)
+	 24: Rel (   -30,     0)  ->  Abs (   184,     0)
+	 25: Rel (   -26,    24)  ->  Abs (   158,    24)
+	 26: Rel (     0,    18)  ->  Abs (   158,    42)
+	 27: Rel (     0,    19)  ->  Abs (   158,    61)
+	 28: Rel (    26,    23)  ->  Abs (   184,    84)
+	 29: Rel (    30,     0)  ->  Abs (   214,    84)
+	 30: Rel (   155,     0)  ->  Abs (   369,    84)
+	 31: Rel (   305,     0)  ->  Abs (   674,    84)
+	 32: Rel (   106,     0)  ->  Abs (   780,    84)
+	 33: Rel (   185,   138)  ->  Abs (   965,   222)
+	 34: Rel (    93,   193)  ->  Abs (  1058,   415)
+	 35: Rel (     0,    94)  ->  Abs (  1058,   509)
+	 36: Rel (     0,   152)  ->  Abs (  1058,   661)
+	 37: Rel (     0,    78)  ->  Abs (  1058,   739)
+	 38: Rel (   -25,    61)  ->  Abs (  1033,   800)
+	 39: Rel (   -36,    89)  ->  Abs (   997,   889)
+	 40: Rel (   -66,    80)  ->  Abs (   931,   969)
+	 41: Rel (   -36,    44)  ->  Abs (   895,  1013)
+	 42: Rel (  -140,    73)  ->  Abs (   755,  1086)
+	 43: Rel (   -81,     0)  ->  Abs (   674,  1086)
+	 44: Rel (  -305,     0)  ->  Abs (   369,  1086)
+
+	Glyph  40: off = 0x00002E02, len = 422
+	  numberOfContours:	1
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  53
+
+	  Length of Instructions:	274
+	00000: NPUSHB      (26):    95    31   111     6   127     6     3    17    11    14 
+	                            43    18    18    29    11    34    28    31    53    35 
+	                            35    29    28     3     9     6 
+	00028: PUSHW[1]            -64 
+	00031: PUSHB[4]             15    30    63     6 
+	00036: PUSHW[1]            -64 
+	00039: NPUSHB      (44):    15    25    63     6    86     2     2    29     9    20 
+	                            26    23    43    19    19    29    26    52    46    15 
+	                            49    31    49     2    49    43    53    53    29    46 
+	                            39    45     0    42    16    42     2    42    43    38 
+	                            38    29    45    31 
+	00085: PUSHW[1]            364 
+	00088: NPUSHB      (60):    26     2     1    38    11    35    36    38    26    53 
+	                             0    38    37    30     0     0    11    26     2    11 
+	                             8    34    38    15    28     1   239    28   255    28 
+	                             2    28    65     3    38     0     9     1    80     9 
+	                           160     9   208     9   224     9   240     9     5     9 
+	                            53    38    38    46     0    45    16    45     2    45 
+	00150: PUSHW[1]            318 
+	00153: NPUSHB      (22):    37    37    36     0     1    30     9    82    19    47 
+	                            18   239    18   240    18     3    18    25    54    74 
+	                           111    24 
+	00177: CALL       
+	00178: FLIPOFF    
+	00179: SRP0       
+	00180: MIRP[srp0,nmd,rd,0] 
+	00181: DELTAP1    
+	00182: ALIGNRP    
+	00183: FLIPON     
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: MIRP[srp0,md,rd,1] 
+	00186: ALIGNRP    
+	00187: ALIGNRP    
+	00188: ALIGNRP    
+	00189: SRP0       
+	00190: MIRP[srp0,nmd,rd,0] 
+	00191: DELTAP1    
+	00192: ALIGNRP    
+	00193: MIRP[srp0,md,rd,1] 
+	00194: ALIGNRP    
+	00195: SRP0       
+	00196: DELTAP1    
+	00197: DELTAP2    
+	00198: MIRP[nrp0,md,rd,1] 
+	00199: MIRP[srp0,nmd,rd,0] 
+	00200: DELTAP1    
+	00201: DELTAP2    
+	00202: MIRP[nrp0,md,rd,1] 
+	00203: SVTCA[y-axis] 
+	00204: MIAP[rd+ci] 
+	00205: MIAP[rd+ci] 
+	00206: SRP2       
+	00207: IP         
+	00208: MDAP[rd]   
+	00209: MIRP[srp0,md,rd,1] 
+	00210: ALIGNRP    
+	00211: SRP0       
+	00212: ALIGNRP    
+	00213: SRP0       
+	00214: MIRP[srp0,md,rd,1] 
+	00215: ALIGNRP    
+	00216: SRP0       
+	00217: MIRP[srp0,md,rd,1] 
+	00218: ALIGNRP    
+	00219: SRP0       
+	00220: MIRP[nrp0,md,rd,1] 
+	00221: SVTCA[x-axis] 
+	00222: SRP0       
+	00223: MIRP[nrp0,md,rd,1] 
+	00224: SVTCA[y-axis] 
+	00225: SRP0       
+	00226: MIRP[srp0,nmd,rd,1] 
+	00227: DELTAP1    
+	00228: MDRP[srp0,nmd,rd,0] 
+	00229: ALIGNRP    
+	00230: SVTCA[x-axis] 
+	00231: SRP0       
+	00232: MIRP[nrp0,md,rd,1] 
+	00233: SVTCA[y-axis] 
+	00234: SRP0       
+	00235: MIRP[srp0,nmd,rd,1] 
+	00236: DELTAP1    
+	00237: MDRP[srp0,nmd,rd,0] 
+	00238: ALIGNRP    
+	00239: SRP0       
+	00240: MIRP[nrp0,md,rd,1] 
+	00241: SVTCA[x-axis] 
+	00242: SRP0       
+	00243: MIRP[srp0,nmd,rd,1] 
+	00244: MDRP[srp0,nmd,rd,0] 
+	00245: ALIGNRP    
+	00246: SRP0       
+	00247: MIRP[nrp0,md,rd,1] 
+	00248: SVTCA[y-axis] 
+	00249: SRP0       
+	00250: MIRP[srp0,nmd,rd,1] 
+	00251: CALL       
+	00252: CALL       
+	00253: MDRP[srp0,nmd,rd,0] 
+	00254: ALIGNRP    
+	00255: SVTCA[x-axis] 
+	00256: SRP0       
+	00257: MIRP[nrp0,md,rd,1] 
+	00258: SVTCA[y-axis] 
+	00259: SRP0       
+	00260: MIRP[srp0,nmd,rd,1] 
+	00261: MDRP[srp0,nmd,rd,0] 
+	00262: ALIGNRP    
+	00263: SRP0       
+	00264: MIRP[nrp0,md,rd,1] 
+	00265: SVTCA[x-axis] 
+	00266: SRP0       
+	00267: MIRP[srp0,nmd,rd,1] 
+	00268: MDRP[srp0,nmd,rd,0] 
+	00269: ALIGNRP    
+	00270: IUP[y]     
+	00271: IUP[x]     
+	00272: SVTCA[y-axis] 
+	00273: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual                         On
+	 11:  YDual                               On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short On
+	 19:        XDual                         On
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual                               On
+	 28:        XDual                         On
+	 29:        XDual         Y-Short         Off
+	 30:                      Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual                               On
+	 37:        XDual                         On
+	 38:  YDual                               On
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:        XDual         Y-Short X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:        XDual                         On
+	 47:        XDual         Y-Short         Off
+	 48:                      Y-Short X-Short Off
+	 49:  YDual                       X-Short On
+	 50:  YDual                       X-Short Off
+	 51:  YDual               Y-Short X-Short Off
+	 52:  YDual XDual         Y-Short         On
+	 53:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   341,   565)  ->  Abs (   341,   565)
+	  1: Rel (     0,  -481)  ->  Abs (   341,    84)
+	  2: Rel (   646,     0)  ->  Abs (   987,    84)
+	  3: Rel (     0,   248)  ->  Abs (   987,   332)
+	  4: Rel (     0,    30)  ->  Abs (   987,   362)
+	  5: Rel (    23,    26)  ->  Abs (  1010,   388)
+	  6: Rel (    19,     0)  ->  Abs (  1029,   388)
+	  7: Rel (    19,     0)  ->  Abs (  1048,   388)
+	  8: Rel (    23,   -26)  ->  Abs (  1071,   362)
+	  9: Rel (     0,   -30)  ->  Abs (  1071,   332)
+	 10: Rel (     0,  -332)  ->  Abs (  1071,     0)
+	 11: Rel (  -927,     0)  ->  Abs (   144,     0)
+	 12: Rel (   -30,     0)  ->  Abs (   114,     0)
+	 13: Rel (   -26,    24)  ->  Abs (    88,    24)
+	 14: Rel (     0,    18)  ->  Abs (    88,    42)
+	 15: Rel (     0,    19)  ->  Abs (    88,    61)
+	 16: Rel (    26,    23)  ->  Abs (   114,    84)
+	 17: Rel (    30,     0)  ->  Abs (   144,    84)
+	 18: Rel (   113,     0)  ->  Abs (   257,    84)
+	 19: Rel (     0,  1002)  ->  Abs (   257,  1086)
+	 20: Rel (  -113,     0)  ->  Abs (   144,  1086)
+	 21: Rel (   -30,     0)  ->  Abs (   114,  1086)
+	 22: Rel (   -26,    23)  ->  Abs (    88,  1109)
+	 23: Rel (     0,    19)  ->  Abs (    88,  1128)
+	 24: Rel (     0,    19)  ->  Abs (    88,  1147)
+	 25: Rel (    26,    23)  ->  Abs (   114,  1170)
+	 26: Rel (    30,     0)  ->  Abs (   144,  1170)
+	 27: Rel (   883,     0)  ->  Abs (  1027,  1170)
+	 28: Rel (     0,  -289)  ->  Abs (  1027,   881)
+	 29: Rel (     0,   -30)  ->  Abs (  1027,   851)
+	 30: Rel (   -23,   -26)  ->  Abs (  1004,   825)
+	 31: Rel (   -19,     0)  ->  Abs (   985,   825)
+	 32: Rel (   -19,     0)  ->  Abs (   966,   825)
+	 33: Rel (   -23,    26)  ->  Abs (   943,   851)
+	 34: Rel (     0,    30)  ->  Abs (   943,   881)
+	 35: Rel (     0,   205)  ->  Abs (   943,  1086)
+	 36: Rel (  -602,     0)  ->  Abs (   341,  1086)
+	 37: Rel (     0,  -437)  ->  Abs (   341,   649)
+	 38: Rel (   301,     0)  ->  Abs (   642,   649)
+	 39: Rel (     0,    95)  ->  Abs (   642,   744)
+	 40: Rel (     0,    30)  ->  Abs (   642,   774)
+	 41: Rel (    24,    26)  ->  Abs (   666,   800)
+	 42: Rel (    19,     0)  ->  Abs (   685,   800)
+	 43: Rel (    18,     0)  ->  Abs (   703,   800)
+	 44: Rel (    24,   -26)  ->  Abs (   727,   774)
+	 45: Rel (     0,   -30)  ->  Abs (   727,   744)
+	 46: Rel (     0,  -274)  ->  Abs (   727,   470)
+	 47: Rel (     0,   -30)  ->  Abs (   727,   440)
+	 48: Rel (   -24,   -26)  ->  Abs (   703,   414)
+	 49: Rel (   -18,     0)  ->  Abs (   685,   414)
+	 50: Rel (   -19,     0)  ->  Abs (   666,   414)
+	 51: Rel (   -24,    26)  ->  Abs (   642,   440)
+	 52: Rel (     0,    30)  ->  Abs (   642,   470)
+	 53: Rel (     0,    95)  ->  Abs (   642,   565)
+
+	Glyph  41: off = 0x00002FA8, len = 388
+	  numberOfContours:	1
+	  xMin:			159
+	  yMin:			0
+	  xMax:			1140
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  52
+
+	  Length of Instructions:	241
+	00000: NPUSHB      (94):    96     5     1    15     9    12    43    16    16    29 
+	                             9    33    27    30    53    34    34    29    27    51 
+	                            45    15    48    31    48     2    48    43    52    52 
+	                            29    45     2     8     5    54     1     1    29     8 
+	                            18    25    21    43    17    17    29    25    38    44 
+	                             0    41    16    41     2    41    43    37    37    29 
+	                            44    34    35    38    25    52     0    37    36    38 
+	                             0     0    25     2     1    38     9    25     2     9 
+	                             8    52    37    45    37    38     0    44    16    44 
+	                            80    44     3    44 
+	00096: PUSHW[1]            318 
+	00099: NPUSHB      (44):    36    36    35     0     1    38    16    34    38     0 
+	                            27    32    27     2    80    27   160    27   208    27 
+	                           224    27   240    27     5    27    82    17    32    16 
+	                             1     0    16   128    16   144    16   240    16     4 
+	                            16    25    53   246 
+	00145: PUSHW[2]            264    24 
+	00150: CALL       
+	00151: FLIPOFF    
+	00152: SRP0       
+	00153: MIRP[srp0,nmd,rd,0] 
+	00154: DELTAP1    
+	00155: DELTAP2    
+	00156: ALIGNRP    
+	00157: FLIPON     
+	00158: MIRP[srp0,md,rd,1] 
+	00159: DELTAP1    
+	00160: DELTAP2    
+	00161: MIRP[nrp0,md,rd,1] 
+	00162: SRP0       
+	00163: MIRP[srp0,md,rd,1] 
+	00164: ALIGNRP    
+	00165: ALIGNRP    
+	00166: ALIGNRP    
+	00167: SRP0       
+	00168: MIRP[srp0,nmd,rd,0] 
+	00169: DELTAP1    
+	00170: MIRP[nrp0,md,rd,1] 
+	00171: ALIGNRP    
+	00172: SRP0       
+	00173: ALIGNRP    
+	00174: SVTCA[y-axis] 
+	00175: MIAP[rd+ci] 
+	00176: MIAP[rd+ci] 
+	00177: SRP0       
+	00178: MIRP[srp0,md,rd,1] 
+	00179: ALIGNRP    
+	00180: SRP2       
+	00181: IP         
+	00182: MDAP[rd]   
+	00183: MIRP[srp0,md,rd,1] 
+	00184: ALIGNRP    
+	00185: SRP0       
+	00186: ALIGNRP    
+	00187: SRP0       
+	00188: MIRP[srp0,md,rd,1] 
+	00189: ALIGNRP    
+	00190: SVTCA[x-axis] 
+	00191: SRP0       
+	00192: MIRP[nrp0,md,rd,1] 
+	00193: SVTCA[y-axis] 
+	00194: SRP0       
+	00195: MIRP[srp0,nmd,rd,1] 
+	00196: DELTAP1    
+	00197: MDRP[srp0,nmd,rd,0] 
+	00198: ALIGNRP    
+	00199: SRP0       
+	00200: MIRP[nrp0,md,rd,1] 
+	00201: SVTCA[x-axis] 
+	00202: SRP0       
+	00203: MIRP[srp0,nmd,rd,1] 
+	00204: MDRP[srp0,nmd,rd,0] 
+	00205: ALIGNRP    
+	00206: SVTCA[y-axis] 
+	00207: SRP0       
+	00208: MIRP[nrp0,md,rd,1] 
+	00209: SVTCA[x-axis] 
+	00210: SRP0       
+	00211: MIRP[srp0,nmd,rd,1] 
+	00212: MDRP[srp0,nmd,rd,0] 
+	00213: ALIGNRP    
+	00214: SRP0       
+	00215: MIRP[nrp0,md,rd,1] 
+	00216: SVTCA[y-axis] 
+	00217: SRP0       
+	00218: MIRP[srp0,nmd,rd,1] 
+	00219: DELTAP1    
+	00220: MDRP[srp0,nmd,rd,0] 
+	00221: ALIGNRP    
+	00222: SVTCA[x-axis] 
+	00223: SRP0       
+	00224: MIRP[nrp0,md,rd,1] 
+	00225: SVTCA[y-axis] 
+	00226: SRP0       
+	00227: MIRP[srp0,nmd,rd,1] 
+	00228: MDRP[srp0,nmd,rd,0] 
+	00229: ALIGNRP    
+	00230: SRP0       
+	00231: MIRP[nrp0,md,rd,1] 
+	00232: SVTCA[x-axis] 
+	00233: SRP0       
+	00234: MIRP[srp0,nmd,rd,1] 
+	00235: MDRP[srp0,nmd,rd,0] 
+	00236: ALIGNRP    
+	00237: IUP[y]     
+	00238: IUP[x]     
+	00239: SVTCA[x-axis] 
+	00240: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual                               On
+	 27:        XDual                         On
+	 28:        XDual         Y-Short         Off
+	 29:                      Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual                               On
+	 36:        XDual                         On
+	 37:  YDual                               On
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:        XDual         Y-Short X-Short Off
+	 44:        XDual         Y-Short         On
+	 45:        XDual                         On
+	 46:        XDual         Y-Short         Off
+	 47:                      Y-Short X-Short Off
+	 48:  YDual                       X-Short On
+	 49:  YDual                       X-Short Off
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   412,   565)  ->  Abs (   412,   565)
+	  1: Rel (     0,  -481)  ->  Abs (   412,    84)
+	  2: Rel (   288,     0)  ->  Abs (   700,    84)
+	  3: Rel (    30,     0)  ->  Abs (   730,    84)
+	  4: Rel (    26,   -23)  ->  Abs (   756,    61)
+	  5: Rel (     0,   -19)  ->  Abs (   756,    42)
+	  6: Rel (     0,   -18)  ->  Abs (   756,    24)
+	  7: Rel (   -26,   -24)  ->  Abs (   730,     0)
+	  8: Rel (   -30,     0)  ->  Abs (   700,     0)
+	  9: Rel (  -485,     0)  ->  Abs (   215,     0)
+	 10: Rel (   -30,     0)  ->  Abs (   185,     0)
+	 11: Rel (   -26,    24)  ->  Abs (   159,    24)
+	 12: Rel (     0,    18)  ->  Abs (   159,    42)
+	 13: Rel (     0,    19)  ->  Abs (   159,    61)
+	 14: Rel (    26,    23)  ->  Abs (   185,    84)
+	 15: Rel (    30,     0)  ->  Abs (   215,    84)
+	 16: Rel (   113,     0)  ->  Abs (   328,    84)
+	 17: Rel (     0,  1002)  ->  Abs (   328,  1086)
+	 18: Rel (  -113,     0)  ->  Abs (   215,  1086)
+	 19: Rel (   -30,     0)  ->  Abs (   185,  1086)
+	 20: Rel (   -26,    23)  ->  Abs (   159,  1109)
+	 21: Rel (     0,    19)  ->  Abs (   159,  1128)
+	 22: Rel (     0,    19)  ->  Abs (   159,  1147)
+	 23: Rel (    15,    13)  ->  Abs (   174,  1160)
+	 24: Rel (    11,    10)  ->  Abs (   185,  1170)
+	 25: Rel (    30,     0)  ->  Abs (   215,  1170)
+	 26: Rel (   925,     0)  ->  Abs (  1140,  1170)
+	 27: Rel (     0,  -289)  ->  Abs (  1140,   881)
+	 28: Rel (     0,   -30)  ->  Abs (  1140,   851)
+	 29: Rel (   -24,   -26)  ->  Abs (  1116,   825)
+	 30: Rel (   -18,     0)  ->  Abs (  1098,   825)
+	 31: Rel (   -19,     0)  ->  Abs (  1079,   825)
+	 32: Rel (   -24,    26)  ->  Abs (  1055,   851)
+	 33: Rel (     0,    30)  ->  Abs (  1055,   881)
+	 34: Rel (     0,   205)  ->  Abs (  1055,  1086)
+	 35: Rel (  -643,     0)  ->  Abs (   412,  1086)
+	 36: Rel (     0,  -437)  ->  Abs (   412,   649)
+	 37: Rel (   301,     0)  ->  Abs (   713,   649)
+	 38: Rel (     0,    95)  ->  Abs (   713,   744)
+	 39: Rel (     0,    30)  ->  Abs (   713,   774)
+	 40: Rel (    24,    26)  ->  Abs (   737,   800)
+	 41: Rel (    19,     0)  ->  Abs (   756,   800)
+	 42: Rel (    18,     0)  ->  Abs (   774,   800)
+	 43: Rel (    24,   -26)  ->  Abs (   798,   774)
+	 44: Rel (     0,   -30)  ->  Abs (   798,   744)
+	 45: Rel (     0,  -274)  ->  Abs (   798,   470)
+	 46: Rel (     0,   -30)  ->  Abs (   798,   440)
+	 47: Rel (   -24,   -26)  ->  Abs (   774,   414)
+	 48: Rel (   -18,     0)  ->  Abs (   756,   414)
+	 49: Rel (   -19,     0)  ->  Abs (   737,   414)
+	 50: Rel (   -24,    26)  ->  Abs (   713,   440)
+	 51: Rel (     0,    30)  ->  Abs (   713,   470)
+	 52: Rel (     0,    95)  ->  Abs (   713,   565)
+
+	Glyph  42: off = 0x0000312C, len = 466
+	  numberOfContours:	1
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1157
+	  yMax:			1197
+
+	EndPoints
+	---------
+	  0:  60
+
+	  Length of Instructions:	294
+	00000: NPUSHB      (56):   140    32   154    32     2    47    16    63    16    79 
+	                            16     3    73    12    70    36    86    11    93    12 
+	                            86    36   166    11   166    36   188     6   186    12 
+	                             9     4    35    23    35    38    12    39    35    38 
+	                            36    54    36     6    54     0    57   144     0    57 
+	                            57     0    29    54    53    47 
+	00058: PUSHW[1]            676 
+	00061: NPUSHB      (51):    15    50     1    50    54    46    50    50    47    46 
+	                            29    53    10     8    31    39    16    45    19     1 
+	                            30    23    24    62     0     1    45    54    42    31 
+	                            29    16     3    33    27    60    38    54    47    38 
+	                            54   102    53    53     4    19    33    37    14     3 
+	                            27 
+	00114: PUSHW[1]            361 
+	00117: NPUSHB      (32):    20    20    19     2    42    37     4     9    30   102 
+	                            46    46    45    30     1     1     0    26    62    39 
+	                            38    15     8    31     8     2     8    25    61   135 
+	                           111    24 
+	00151: PUSHW[1]            300 
+	00154: SCANCTRL   
+	00155: CALL       
+	00156: FLIPOFF    
+	00157: SRP0       
+	00158: MIRP[srp0,nmd,rd,0] 
+	00159: DELTAP1    
+	00160: FLIPON     
+	00161: MIRP[nrp0,md,rd,1] 
+	00162: FLIPOFF    
+	00163: SRP0       
+	00164: MIRP[srp0,nmd,rd,2] 
+	00165: ALIGNRP    
+	00166: FLIPON     
+	00167: SRP0       
+	00168: MIRP[srp0,md,rd,1] 
+	00169: ALIGNRP    
+	00170: SRP0       
+	00171: MIRP[nrp0,nmd,rd,0] 
+	00172: SVTCA[y-axis] 
+	00173: MIAP[rd+ci] 
+	00174: MIRP[nrp0,md,rd,1] 
+	00175: MIAP[rd+ci] 
+	00176: ALIGNRP    
+	00177: SRP0       
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: MIAP[rd+ci] 
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: SRP1       
+	00182: SRP2       
+	00183: IP         
+	00184: MDAP[rd]   
+	00185: MIRP[nrp0,nmd,rd,0] 
+	00186: MIRP[nrp0,md,rd,1] 
+	00187: SRP0       
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: SRP1       
+	00190: SRP2       
+	00191: SLOOP      
+	00192: IP         
+	00193: SRP1       
+	00194: SRP2       
+	00195: IP         
+	00196: IP         
+	00197: SVTCA[x-axis] 
+	00198: SRP1       
+	00199: SRP2       
+	00200: IP         
+	00201: IP         
+	00202: SRP1       
+	00203: SRP2       
+	00204: IP         
+	00205: SRP2       
+	00206: IP         
+	00207: SRP1       
+	00208: IP         
+	00209: SRP2       
+	00210: IP         
+	00211: SVTCA[y-axis] 
+	00212: SRP0       
+	00213: MIRP[srp0,md,rd,1] 
+	00214: RTDG       
+	00215: SRP2       
+	00216: IP         
+	00217: MDAP[rd]   
+	00218: RTG        
+	00219: SVTCA[x-axis] 
+	00220: SRP0       
+	00221: MIRP[srp0,nmd,rd,1] 
+	00222: DELTAP1    
+	00223: MIRP[srp0,nmd,rd,0] 
+	00224: MDRP[nrp0,nmd,rd,0] 
+	00225: SVTCA[y-axis] 
+	00226: SRP0       
+	00227: MIRP[srp0,md,rd,1] 
+	00228: RTDG       
+	00229: IP         
+	00230: MDAP[rd]   
+	00231: RTG        
+	00232: SVTCA[x-axis] 
+	00233: SRP0       
+	00234: MIRP[srp0,nmd,rd,1] 
+	00235: SRP0       
+	00236: MDRP[nrp0,nmd,rd,0] 
+	00237: IUP[y]     
+	00238: IUP[x]     
+	00239: SVTCA[y-axis] 
+	00240: MPPEM      
+	00241: PUSHB[1]             11 
+	00243: GTEQ       
+	00244: MPPEM      
+	00245: PUSHB[1]             36 
+	00247: LTEQ       
+	00248: AND        
+	00249: IF         
+	00250: NPUSHW      (10):    16   -20     5   -12    44   -22    41   -22    40   -22 
+	00272: PUSHB[6]             36    22    34    22    35    22 
+	00279: SHPIX      
+	00280: SHPIX      
+	00281: SHPIX      
+	00282: SHPIX      
+	00283: SHPIX      
+	00284: SHPIX      
+	00285: SHPIX      
+	00286: SHPIX      
+	00287: EIF        
+	00288: SVTCA[x-axis] 
+	00289: DELTAP2    
+	00290: DELTAP1    
+	00291: SVTCA[y-axis] 
+	00292: DELTAP1    
+	00293: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual       Rep-  2 Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:        XDual                 X-Short Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual               Y-Short X-Short On
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:                      Y-Short X-Short Off
+	 36:                      Y-Short X-Short On
+	 37:                      Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:                      Y-Short         Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short X-Short On
+	 46:        XDual                         On
+	 47:  YDual                               On
+	 48:  YDual                       X-Short Off
+	 49:  YDual               Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual                 X-Short On
+	 54:                      Y-Short         On
+	 55:  YDual XDual                 X-Short Off
+	 56:        XDual         Y-Short X-Short Off
+	 57:        XDual         Y-Short         On
+	 58:        XDual         Y-Short         Off
+	 59:                      Y-Short X-Short Off
+	 60:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1071,   434)  ->  Abs (  1071,   434)
+	  1: Rel (     0,  -360)  ->  Abs (  1071,    74)
+	  2: Rel (   -96,   -53)  ->  Abs (   975,    21)
+	  3: Rel (  -191,   -54)  ->  Abs (   784,   -33)
+	  4: Rel (   -95,     0)  ->  Abs (   689,   -33)
+	  5: Rel (  -135,     0)  ->  Abs (   554,   -33)
+	  6: Rel (  -205,    80)  ->  Abs (   349,    47)
+	  7: Rel (  -142,   144)  ->  Abs (   207,   191)
+	  8: Rel (   -79,   178)  ->  Abs (   128,   369)
+	  9: Rel (     0,   137)  ->  Abs (   128,   506)
+	 10: Rel (     0,   154)  ->  Abs (   128,   660)
+	 11: Rel (     0,   138)  ->  Abs (   128,   798)
+	 12: Rel (   137,   261)  ->  Abs (   265,  1059)
+	 13: Rel (   238,   138)  ->  Abs (   503,  1197)
+	 14: Rel (   140,     0)  ->  Abs (   643,  1197)
+	 15: Rel (   203,     0)  ->  Abs (   846,  1197)
+	 16: Rel (   140,  -111)  ->  Abs (   986,  1086)
+	 17: Rel (     0,    49)  ->  Abs (   986,  1135)
+	 18: Rel (     7,    20)  ->  Abs (   993,  1155)
+	 19: Rel (    22,    15)  ->  Abs (  1015,  1170)
+	 20: Rel (    14,     0)  ->  Abs (  1029,  1170)
+	 21: Rel (    18,     0)  ->  Abs (  1047,  1170)
+	 22: Rel (    24,   -26)  ->  Abs (  1071,  1144)
+	 23: Rel (     0,   -30)  ->  Abs (  1071,  1114)
+	 24: Rel (     0,  -190)  ->  Abs (  1071,   924)
+	 25: Rel (     0,   -31)  ->  Abs (  1071,   893)
+	 26: Rel (   -24,   -25)  ->  Abs (  1047,   868)
+	 27: Rel (   -18,     0)  ->  Abs (  1029,   868)
+	 28: Rel (   -17,     0)  ->  Abs (  1012,   868)
+	 29: Rel (   -23,    23)  ->  Abs (   989,   891)
+	 30: Rel (    -1,    29)  ->  Abs (   988,   920)
+	 31: Rel (    -6,    85)  ->  Abs (   982,  1005)
+	 32: Rel (  -209,   108)  ->  Abs (   773,  1113)
+	 33: Rel (  -123,     0)  ->  Abs (   650,  1113)
+	 34: Rel (  -116,     0)  ->  Abs (   534,  1113)
+	 35: Rel (  -187,  -101)  ->  Abs (   347,  1012)
+	 36: Rel (   -81,  -142)  ->  Abs (   266,   870)
+	 37: Rel (   -54,   -93)  ->  Abs (   212,   777)
+	 38: Rel (     0,  -118)  ->  Abs (   212,   659)
+	 39: Rel (     0,  -153)  ->  Abs (   212,   506)
+	 40: Rel (     0,  -209)  ->  Abs (   212,   297)
+	 41: Rel (   256,  -246)  ->  Abs (   468,    51)
+	 42: Rel (   225,     0)  ->  Abs (   693,    51)
+	 43: Rel (    76,     0)  ->  Abs (   769,    51)
+	 44: Rel (   130,    32)  ->  Abs (   899,    83)
+	 45: Rel (    87,    40)  ->  Abs (   986,   123)
+	 46: Rel (     0,   311)  ->  Abs (   986,   434)
+	 47: Rel (  -289,     0)  ->  Abs (   697,   434)
+	 48: Rel (   -30,     0)  ->  Abs (   667,   434)
+	 49: Rel (   -26,    23)  ->  Abs (   641,   457)
+	 50: Rel (     0,    19)  ->  Abs (   641,   476)
+	 51: Rel (     0,    19)  ->  Abs (   641,   495)
+	 52: Rel (    26,    24)  ->  Abs (   667,   519)
+	 53: Rel (    30,     0)  ->  Abs (   697,   519)
+	 54: Rel (   404,    -1)  ->  Abs (  1101,   518)
+	 55: Rel (    30,     0)  ->  Abs (  1131,   518)
+	 56: Rel (    26,   -23)  ->  Abs (  1157,   495)
+	 57: Rel (     0,   -19)  ->  Abs (  1157,   476)
+	 58: Rel (     0,   -13)  ->  Abs (  1157,   463)
+	 59: Rel (   -16,   -22)  ->  Abs (  1141,   441)
+	 60: Rel (   -20,    -7)  ->  Abs (  1121,   434)
+
+	Glyph  43: off = 0x000032FE, len = 628
+	  numberOfContours:	1
+	  xMin:			107
+	  yMin:			0
+	  xMax:			1135
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  67
+
+	  Length of Instructions:	450
+	00000: NPUSHB      (12):    18   161    22   174    47   179    22   191    47     4 
+	                            10    16 
+	00014: PUSHW[1]            676 
+	00017: NPUSHB      (11):    13    43    17    13    13    16    17    29    10    26 
+	                            32 
+	00030: PUSHW[1]            676 
+	00033: NPUSHB      (14):    16    29     1    29    43    33    29    29    32    33 
+	                            29    26    44    50 
+	00049: PUSHW[1]            676 
+	00052: NPUSHB      (14):     0    47     1    47    41    51    47    47    50    51 
+	                            29    44    60    66 
+	00068: PUSHW[1]            676 
+	00071: NPUSHB      (16):    15    63    31    63     2    63    43    67    63    63 
+	                            66    67    29    60     9     3 
+	00089: PUSHW[1]            676 
+	00092: NPUSHB      (11):     6    43     2     6     6     3     2    29     9    25 
+	                            19 
+	00105: PUSHW[1]            676 
+	00108: NPUSHB      (11):    22    41    18    22    22    19    18    29    25    43 
+	                            37 
+	00121: PUSHW[1]            676 
+	00124: NPUSHB      (14):    15    40     1    40    43    36    40    40    37    36 
+	                            29    43    59    53 
+	00140: PUSHW[1]            676 
+	00143: NPUSHB      (67):     0    56     1    56    43    52    56    56    53    52 
+	                            29    59    35    34    30     0     1     1     9    25 
+	                            50    38    44    44    43    32    38    26    37    38 
+	                            43    43    26    19    38    26    25     2    60    59 
+	                            59    10    10     9     8    51    30    36    52    30 
+	                            36    67    64    28    31    52   159    67   175    67 
+	                             2   143    67   223    67     2    67 
+	00212: PUSHW[1]            699 
+	00215: NPUSHB      (27):    69    18    30    33    33    17    30    48     2    64 
+	                             2   144     2     3    79     2   208     2     2    15 
+	                             2    95     2   111     2     3     2 
+	00244: PUSHW[5]            699    68    74   470    24 
+	00255: CALL       
+	00256: SRP0       
+	00257: MIRP[srp0,nmd,rd,0] 
+	00258: DELTAP1    
+	00259: DELTAP1    
+	00260: DELTAP2    
+	00261: MIRP[nrp0,md,rd,1] 
+	00262: ALIGNRP    
+	00263: SRP0       
+	00264: MIRP[nrp0,md,rd,1] 
+	00265: SRP0       
+	00266: MIRP[srp0,nmd,rd,0] 
+	00267: DELTAP1    
+	00268: DELTAP2    
+	00269: CALL       
+	00270: ALIGNRP    
+	00271: MIRP[nrp0,md,rd,1] 
+	00272: SRP0       
+	00273: MIRP[nrp0,md,rd,1] 
+	00274: SVTCA[y-axis] 
+	00275: MIAP[rd+ci] 
+	00276: ALIGNRP    
+	00277: SRP0       
+	00278: ALIGNRP    
+	00279: SRP0       
+	00280: ALIGNRP    
+	00281: MIAP[rd+ci] 
+	00282: ALIGNRP    
+	00283: MIRP[nrp0,md,rd,1] 
+	00284: SRP0       
+	00285: ALIGNRP    
+	00286: SRP0       
+	00287: MIRP[nrp0,md,rd,1] 
+	00288: SRP0       
+	00289: MIRP[nrp0,md,rd,1] 
+	00290: SRP0       
+	00291: ALIGNRP    
+	00292: SRP0       
+	00293: MIRP[nrp0,md,rd,1] 
+	00294: SRP1       
+	00295: SRP2       
+	00296: IP         
+	00297: MDAP[rd]   
+	00298: ALIGNRP    
+	00299: MIRP[srp0,md,rd,1] 
+	00300: ALIGNRP    
+	00301: SRP0       
+	00302: MIRP[srp0,md,rd,1] 
+	00303: RTDG       
+	00304: SRP2       
+	00305: IP         
+	00306: MDAP[rd]   
+	00307: RTG        
+	00308: SVTCA[x-axis] 
+	00309: SRP0       
+	00310: MIRP[srp0,nmd,rd,1] 
+	00311: DELTAP1    
+	00312: MIRP[srp0,nmd,rd,0] 
+	00313: MDRP[nrp0,nmd,rd,0] 
+	00314: SVTCA[y-axis] 
+	00315: SRP0       
+	00316: MIRP[srp0,md,rd,1] 
+	00317: RTDG       
+	00318: SRP2       
+	00319: IP         
+	00320: MDAP[rd]   
+	00321: RTG        
+	00322: SVTCA[x-axis] 
+	00323: SRP0       
+	00324: MIRP[srp0,nmd,rd,1] 
+	00325: DELTAP1    
+	00326: MIRP[srp0,nmd,rd,0] 
+	00327: MDRP[nrp0,nmd,rd,0] 
+	00328: SVTCA[y-axis] 
+	00329: SRP0       
+	00330: MIRP[srp0,md,rd,1] 
+	00331: RTDG       
+	00332: SRP2       
+	00333: IP         
+	00334: MDAP[rd]   
+	00335: RTG        
+	00336: SVTCA[x-axis] 
+	00337: SRP0       
+	00338: MIRP[srp0,nmd,rd,1] 
+	00339: MIRP[srp0,nmd,rd,0] 
+	00340: MDRP[nrp0,nmd,rd,0] 
+	00341: SVTCA[y-axis] 
+	00342: SRP0       
+	00343: MIRP[srp0,md,rd,1] 
+	00344: RTDG       
+	00345: SRP2       
+	00346: IP         
+	00347: MDAP[rd]   
+	00348: RTG        
+	00349: SVTCA[x-axis] 
+	00350: SRP0       
+	00351: MIRP[srp0,nmd,rd,1] 
+	00352: MIRP[srp0,nmd,rd,0] 
+	00353: MDRP[nrp0,nmd,rd,0] 
+	00354: SVTCA[y-axis] 
+	00355: SRP0       
+	00356: MIRP[srp0,md,rd,1] 
+	00357: RTDG       
+	00358: SRP2       
+	00359: IP         
+	00360: MDAP[rd]   
+	00361: RTG        
+	00362: SVTCA[x-axis] 
+	00363: SRP0       
+	00364: MIRP[srp0,nmd,rd,1] 
+	00365: DELTAP1    
+	00366: MIRP[srp0,nmd,rd,0] 
+	00367: MDRP[nrp0,nmd,rd,0] 
+	00368: SVTCA[y-axis] 
+	00369: SRP0       
+	00370: MIRP[srp0,md,rd,1] 
+	00371: RTDG       
+	00372: SRP2       
+	00373: IP         
+	00374: MDAP[rd]   
+	00375: RTG        
+	00376: SVTCA[x-axis] 
+	00377: SRP0       
+	00378: MIRP[srp0,nmd,rd,1] 
+	00379: DELTAP1    
+	00380: MIRP[srp0,nmd,rd,0] 
+	00381: MDRP[nrp0,nmd,rd,0] 
+	00382: SVTCA[y-axis] 
+	00383: SRP0       
+	00384: MIRP[srp0,md,rd,1] 
+	00385: RTDG       
+	00386: SRP2       
+	00387: IP         
+	00388: MDAP[rd]   
+	00389: RTG        
+	00390: SVTCA[x-axis] 
+	00391: SRP0       
+	00392: MIRP[srp0,nmd,rd,1] 
+	00393: DELTAP1    
+	00394: MIRP[srp0,nmd,rd,0] 
+	00395: MDRP[nrp0,nmd,rd,0] 
+	00396: SVTCA[y-axis] 
+	00397: SRP0       
+	00398: MIRP[srp0,md,rd,1] 
+	00399: RTDG       
+	00400: SRP2       
+	00401: IP         
+	00402: MDAP[rd]   
+	00403: RTG        
+	00404: SVTCA[x-axis] 
+	00405: SRP0       
+	00406: MIRP[srp0,nmd,rd,1] 
+	00407: MIRP[srp0,nmd,rd,0] 
+	00408: MDRP[nrp0,nmd,rd,0] 
+	00409: IUP[y]     
+	00410: IUP[x]     
+	00411: SVTCA[x-axis] 
+	00412: DELTAP1    
+	00413: SVTCA[x-axis] 
+	00414: RS         
+	00415: NOT        
+	00416: IF         
+	00417: PUSHW[2]             47   -64 
+	00422: NPUSHB       (9):    15    20    63    22    64    15    20    63    47 
+	00433: PUSHW[1]            -64 
+	00436: PUSHB[8]             14    19    63    22    64    14    19    63 
+	00445: CALL       
+	00446: CALL       
+	00447: CALL       
+	00448: CALL       
+	00449: EIF        
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                               On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short On
+	 18:        XDual                         On
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:                      Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short On
+	 34:        XDual                         On
+	 35:  YDual                               On
+	 36:        XDual                         On
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short Off
+	 46:        XDual         Y-Short X-Short Off
+	 47:        XDual         Y-Short         On
+	 48:        XDual         Y-Short         Off
+	 49:                      Y-Short X-Short Off
+	 50:  YDual                       X-Short On
+	 51:  YDual                       X-Short On
+	 52:        XDual                         On
+	 53:  YDual XDual                 X-Short On
+	 54:  YDual XDual                 X-Short Off
+	 55:        XDual         Y-Short X-Short Off
+	 56:        XDual         Y-Short         On
+	 57:        XDual         Y-Short         Off
+	 58:                      Y-Short X-Short Off
+	 59:  YDual                       X-Short On
+	 60:  YDual                               On
+	 61:  YDual                       X-Short Off
+	 62:  YDual               Y-Short X-Short Off
+	 63:  YDual XDual         Y-Short         On
+	 64:  YDual XDual         Y-Short         Off
+	 65:  YDual XDual         Y-Short X-Short Off
+	 66:  YDual XDual                 X-Short On
+	 67:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   899,   566)  ->  Abs (   899,   566)
+	  1: Rel (  -557,     0)  ->  Abs (   342,   566)
+	  2: Rel (     0,  -482)  ->  Abs (   342,    84)
+	  3: Rel (   113,     0)  ->  Abs (   455,    84)
+	  4: Rel (    30,     0)  ->  Abs (   485,    84)
+	  5: Rel (    26,   -23)  ->  Abs (   511,    61)
+	  6: Rel (     0,   -19)  ->  Abs (   511,    42)
+	  7: Rel (     0,   -18)  ->  Abs (   511,    24)
+	  8: Rel (   -26,   -24)  ->  Abs (   485,     0)
+	  9: Rel (   -30,     0)  ->  Abs (   455,     0)
+	 10: Rel (  -292,     0)  ->  Abs (   163,     0)
+	 11: Rel (   -30,     0)  ->  Abs (   133,     0)
+	 12: Rel (   -26,    24)  ->  Abs (   107,    24)
+	 13: Rel (     0,    18)  ->  Abs (   107,    42)
+	 14: Rel (     0,    19)  ->  Abs (   107,    61)
+	 15: Rel (    26,    23)  ->  Abs (   133,    84)
+	 16: Rel (    30,     0)  ->  Abs (   163,    84)
+	 17: Rel (    95,     0)  ->  Abs (   258,    84)
+	 18: Rel (     0,  1002)  ->  Abs (   258,  1086)
+	 19: Rel (   -52,     0)  ->  Abs (   206,  1086)
+	 20: Rel (   -31,     0)  ->  Abs (   175,  1086)
+	 21: Rel (   -26,    23)  ->  Abs (   149,  1109)
+	 22: Rel (     0,    19)  ->  Abs (   149,  1128)
+	 23: Rel (     0,    19)  ->  Abs (   149,  1147)
+	 24: Rel (    26,    23)  ->  Abs (   175,  1170)
+	 25: Rel (    31,     0)  ->  Abs (   206,  1170)
+	 26: Rel (   249,     0)  ->  Abs (   455,  1170)
+	 27: Rel (    30,     0)  ->  Abs (   485,  1170)
+	 28: Rel (    26,   -23)  ->  Abs (   511,  1147)
+	 29: Rel (     0,   -19)  ->  Abs (   511,  1128)
+	 30: Rel (     0,   -19)  ->  Abs (   511,  1109)
+	 31: Rel (   -26,   -23)  ->  Abs (   485,  1086)
+	 32: Rel (   -30,     0)  ->  Abs (   455,  1086)
+	 33: Rel (  -113,     0)  ->  Abs (   342,  1086)
+	 34: Rel (     0,  -436)  ->  Abs (   342,   650)
+	 35: Rel (   557,     0)  ->  Abs (   899,   650)
+	 36: Rel (     0,   436)  ->  Abs (   899,  1086)
+	 37: Rel (  -112,     0)  ->  Abs (   787,  1086)
+	 38: Rel (   -30,     0)  ->  Abs (   757,  1086)
+	 39: Rel (   -26,    23)  ->  Abs (   731,  1109)
+	 40: Rel (     0,    19)  ->  Abs (   731,  1128)
+	 41: Rel (     0,    19)  ->  Abs (   731,  1147)
+	 42: Rel (    25,    23)  ->  Abs (   756,  1170)
+	 43: Rel (    31,     0)  ->  Abs (   787,  1170)
+	 44: Rel (   249,     0)  ->  Abs (  1036,  1170)
+	 45: Rel (    31,     0)  ->  Abs (  1067,  1170)
+	 46: Rel (    26,   -23)  ->  Abs (  1093,  1147)
+	 47: Rel (     0,   -19)  ->  Abs (  1093,  1128)
+	 48: Rel (     0,   -19)  ->  Abs (  1093,  1109)
+	 49: Rel (   -26,   -23)  ->  Abs (  1067,  1086)
+	 50: Rel (   -31,     0)  ->  Abs (  1036,  1086)
+	 51: Rel (   -52,     0)  ->  Abs (   984,  1086)
+	 52: Rel (     0, -1002)  ->  Abs (   984,    84)
+	 53: Rel (    95,     0)  ->  Abs (  1079,    84)
+	 54: Rel (    30,     0)  ->  Abs (  1109,    84)
+	 55: Rel (    26,   -23)  ->  Abs (  1135,    61)
+	 56: Rel (     0,   -19)  ->  Abs (  1135,    42)
+	 57: Rel (     0,   -18)  ->  Abs (  1135,    24)
+	 58: Rel (   -26,   -24)  ->  Abs (  1109,     0)
+	 59: Rel (   -30,     0)  ->  Abs (  1079,     0)
+	 60: Rel (  -292,     0)  ->  Abs (   787,     0)
+	 61: Rel (   -30,     0)  ->  Abs (   757,     0)
+	 62: Rel (   -26,    24)  ->  Abs (   731,    24)
+	 63: Rel (     0,    18)  ->  Abs (   731,    42)
+	 64: Rel (     0,    19)  ->  Abs (   731,    61)
+	 65: Rel (    25,    23)  ->  Abs (   756,    84)
+	 66: Rel (    31,     0)  ->  Abs (   787,    84)
+	 67: Rel (   112,     0)  ->  Abs (   899,    84)
+
+	Glyph  44: off = 0x00003572, len = 312
+	  numberOfContours:	1
+	  xMin:			229
+	  yMin:			0
+	  xMax:			1001
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  31
+
+	  Length of Instructions:	215
+	00000: NPUSHB      (45):    47     4    46     5    35    12    32    13    32    20 
+	                            32    21    47    28    47    30    62     5    51    12 
+	                            48    20    48    21    63    28    63    30    78     5 
+	                            67    12    64    20    64    21    75    28    79    29 
+	                            79    30    21     9    15 
+	00047: PUSHW[1]            676 
+	00050: NPUSHB      (11):    12    54    16    12    12    15    16    29     9    25 
+	                            31 
+	00063: PUSHW[1]            676 
+	00066: NPUSHB      (11):    28    54     0    28    28    31     0    29    25     8 
+	                             2 
+	00079: PUSHW[1]            676 
+	00082: NPUSHB      (11):     5    54     1     5     5     2     1    29     8    24 
+	                            18 
+	00095: PUSHW[1]            676 
+	00098: NPUSHB      (39):    21    54    17    21    21    18    17    29    24    31 
+	                            38    25    18    38    25    24     2     2    38     8 
+	                            15    38     9     9     8     8     0     1    30    17 
+	                            79    16     1    16    25    32   140   223    24 
+	00139: CALL       
+	00140: FLIPOFF    
+	00141: SRP0       
+	00142: MIRP[srp0,nmd,rd,0] 
+	00143: DELTAP1    
+	00144: ALIGNRP    
+	00145: FLIPON     
+	00146: MIRP[srp0,md,rd,1] 
+	00147: ALIGNRP    
+	00148: SVTCA[y-axis] 
+	00149: MIAP[rd+ci] 
+	00150: ALIGNRP    
+	00151: SRP0       
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: SRP0       
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: MIAP[rd+ci] 
+	00156: ALIGNRP    
+	00157: MIRP[nrp0,md,rd,1] 
+	00158: SRP0       
+	00159: MIRP[nrp0,md,rd,1] 
+	00160: SRP0       
+	00161: MIRP[srp0,md,rd,1] 
+	00162: RTDG       
+	00163: SRP2       
+	00164: IP         
+	00165: MDAP[rd]   
+	00166: RTG        
+	00167: SVTCA[x-axis] 
+	00168: SRP0       
+	00169: MIRP[srp0,nmd,rd,1] 
+	00170: MIRP[srp0,nmd,rd,0] 
+	00171: MDRP[nrp0,nmd,rd,0] 
+	00172: SVTCA[y-axis] 
+	00173: SRP0       
+	00174: MIRP[srp0,md,rd,1] 
+	00175: RTDG       
+	00176: SRP2       
+	00177: IP         
+	00178: MDAP[rd]   
+	00179: RTG        
+	00180: SVTCA[x-axis] 
+	00181: SRP0       
+	00182: MIRP[srp0,nmd,rd,1] 
+	00183: MIRP[srp0,nmd,rd,0] 
+	00184: MDRP[nrp0,nmd,rd,0] 
+	00185: SVTCA[y-axis] 
+	00186: SRP0       
+	00187: MIRP[srp0,md,rd,1] 
+	00188: RTDG       
+	00189: SRP2       
+	00190: IP         
+	00191: MDAP[rd]   
+	00192: RTG        
+	00193: SVTCA[x-axis] 
+	00194: SRP0       
+	00195: MIRP[srp0,nmd,rd,1] 
+	00196: MIRP[srp0,nmd,rd,0] 
+	00197: MDRP[nrp0,nmd,rd,0] 
+	00198: SVTCA[y-axis] 
+	00199: SRP0       
+	00200: MIRP[srp0,md,rd,1] 
+	00201: RTDG       
+	00202: SRP2       
+	00203: IP         
+	00204: MDAP[rd]   
+	00205: RTG        
+	00206: SVTCA[x-axis] 
+	00207: SRP0       
+	00208: MIRP[srp0,nmd,rd,1] 
+	00209: MIRP[srp0,nmd,rd,0] 
+	00210: MDRP[nrp0,nmd,rd,0] 
+	00211: IUP[y]     
+	00212: IUP[x]     
+	00213: SVTCA[x-axis] 
+	00214: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual                               On
+	 17:        XDual                         On
+	 18:  YDual                               On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual                               On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:                      Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   657,  1086)  ->  Abs (   657,  1086)
+	  1: Rel (     0, -1002)  ->  Abs (   657,    84)
+	  2: Rel (   288,     0)  ->  Abs (   945,    84)
+	  3: Rel (    30,     0)  ->  Abs (   975,    84)
+	  4: Rel (    26,   -23)  ->  Abs (  1001,    61)
+	  5: Rel (     0,   -19)  ->  Abs (  1001,    42)
+	  6: Rel (     0,   -18)  ->  Abs (  1001,    24)
+	  7: Rel (   -26,   -24)  ->  Abs (   975,     0)
+	  8: Rel (   -30,     0)  ->  Abs (   945,     0)
+	  9: Rel (  -660,     0)  ->  Abs (   285,     0)
+	 10: Rel (   -30,     0)  ->  Abs (   255,     0)
+	 11: Rel (   -26,    24)  ->  Abs (   229,    24)
+	 12: Rel (     0,    18)  ->  Abs (   229,    42)
+	 13: Rel (     0,    19)  ->  Abs (   229,    61)
+	 14: Rel (    26,    23)  ->  Abs (   255,    84)
+	 15: Rel (    30,     0)  ->  Abs (   285,    84)
+	 16: Rel (   288,     0)  ->  Abs (   573,    84)
+	 17: Rel (     0,  1002)  ->  Abs (   573,  1086)
+	 18: Rel (  -288,     0)  ->  Abs (   285,  1086)
+	 19: Rel (   -30,     0)  ->  Abs (   255,  1086)
+	 20: Rel (   -26,    23)  ->  Abs (   229,  1109)
+	 21: Rel (     0,    19)  ->  Abs (   229,  1128)
+	 22: Rel (     0,    19)  ->  Abs (   229,  1147)
+	 23: Rel (    26,    23)  ->  Abs (   255,  1170)
+	 24: Rel (    30,     0)  ->  Abs (   285,  1170)
+	 25: Rel (   660,     0)  ->  Abs (   945,  1170)
+	 26: Rel (    30,     0)  ->  Abs (   975,  1170)
+	 27: Rel (    26,   -23)  ->  Abs (  1001,  1147)
+	 28: Rel (     0,   -19)  ->  Abs (  1001,  1128)
+	 29: Rel (     0,   -19)  ->  Abs (  1001,  1109)
+	 30: Rel (   -26,   -23)  ->  Abs (   975,  1086)
+	 31: Rel (   -30,     0)  ->  Abs (   945,  1086)
+
+	Glyph  45: off = 0x000036AA, len = 358
+	  numberOfContours:	1
+	  xMin:			171
+	  yMin:			-33
+	  xMax:			1199
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  38
+
+	  Length of Instructions:	242
+	00000: NPUSHB     (124):   126     3   127    19   122    20   137     2   140     3 
+	                           143    19   138    20   248    22     8     9     2    11 
+	                            20    11    21     3   154     2   157     7   170     7 
+	                           231    16   229    20   229    22     6     4    16   102 
+	                            16   182    16   182    20     4    50     8    38    32 
+	                            35    53     0     0    29    32    25    31    28   219 
+	                            24    24    29    31     7    15    18    11    11     4 
+	                            32    31     2    18    37     4     9    24    23    30 
+	                             1     1     0    64    13    17    63     0    64    12 
+	                            16    63   224     0     1   128     0     1     0    26 
+	                            40    15   102    14    30     8     8     7    64    13 
+	                            17    63     7    64    12    16    63   128     7     1 
+	                             7    25    39   157 
+	00126: PUSHW[2]            469    24 
+	00131: CALL       
+	00132: FLIPOFF    
+	00133: SRP0       
+	00134: MIRP[srp0,nmd,rd,0] 
+	00135: DELTAP1    
+	00136: SVTCA[x-axis] 
+	00137: CALL       
+	00138: CALL       
+	00139: ALIGNRP    
+	00140: FLIPON     
+	00141: SRP0       
+	00142: MIRP[srp0,md,rd,1] 
+	00143: MIRP[nrp0,nmd,rd,0] 
+	00144: FLIPOFF    
+	00145: SRP0       
+	00146: MIRP[srp0,nmd,rd,2] 
+	00147: DELTAP1    
+	00148: DELTAP2    
+	00149: SVTCA[x-axis] 
+	00150: CALL       
+	00151: CALL       
+	00152: ALIGNRP    
+	00153: FLIPON     
+	00154: SRP0       
+	00155: MIRP[srp0,md,rd,1] 
+	00156: ALIGNRP    
+	00157: SVTCA[y-axis] 
+	00158: MIAP[rd+ci] 
+	00159: MIRP[nrp0,md,rd,1] 
+	00160: MIAP[rd+ci] 
+	00161: ALIGNRP    
+	00162: SRP2       
+	00163: IP         
+	00164: MDAP[rd]   
+	00165: SRP2       
+	00166: IP         
+	00167: IP         
+	00168: SRP0       
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: SVTCA[x-axis] 
+	00171: SRP0       
+	00172: MIRP[srp0,nmd,rd,1] 
+	00173: MDRP[srp0,nmd,rd,0] 
+	00174: ALIGNRP    
+	00175: SVTCA[y-axis] 
+	00176: SRP0       
+	00177: MIRP[nrp0,md,rd,1] 
+	00178: SVTCA[x-axis] 
+	00179: SRP0       
+	00180: MIRP[srp0,nmd,rd,1] 
+	00181: MDRP[srp0,nmd,rd,0] 
+	00182: ALIGNRP    
+	00183: IUP[y]     
+	00184: IUP[x]     
+	00185: RS         
+	00186: JROF       
+	00187: NPUSHB      (34):    16    22     2     6    21    22    20    22     2     6 
+	                            17     5    15    57     0    16    15     6     7    19 
+	                             3    23    45     1    16     6    18    57     0    22 
+	                             2    18    45     0 
+	00223: SVTCA[y-axis] 
+	00224: CALL       
+	00225: CALL       
+	00226: SVTCA[x-axis] 
+	00227: CALL       
+	00228: SRP0       
+	00229: ALIGNRP    
+	00230: SRP0       
+	00231: ALIGNRP    
+	00232: CALL       
+	00233: LOOPCALL   
+	00234: FLIPRGON   
+	00235: FLIPRGON   
+	00236: SVTCA[y-axis] 
+	00237: DELTAP2    
+	00238: DELTAP1    
+	00239: SVTCA[x-axis] 
+	00240: DELTAP2    
+	00241: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:        XDual                         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:                              X-Short On
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:        XDual                         On
+	 25:  YDual                               On
+	 26:  YDual                       X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual                               On
+	 33:  YDual XDual                 X-Short Off
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:                      Y-Short X-Short Off
+	 38:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   943,  1086)  ->  Abs (   943,  1086)
+	  1: Rel (     0,  -742)  ->  Abs (   943,   344)
+	  2: Rel (     0,  -153)  ->  Abs (   943,   191)
+	  3: Rel (  -228,  -224)  ->  Abs (   715,   -33)
+	  4: Rel (  -158,     0)  ->  Abs (   557,   -33)
+	  5: Rel (   -95,     0)  ->  Abs (   462,   -33)
+	  6: Rel (  -183,    87)  ->  Abs (   279,    54)
+	  7: Rel (  -108,    99)  ->  Abs (   171,   153)
+	  8: Rel (     0,   310)  ->  Abs (   171,   463)
+	  9: Rel (     0,    30)  ->  Abs (   171,   493)
+	 10: Rel (    24,    26)  ->  Abs (   195,   519)
+	 11: Rel (    18,     0)  ->  Abs (   213,   519)
+	 12: Rel (    19,     0)  ->  Abs (   232,   519)
+	 13: Rel (    24,   -26)  ->  Abs (   256,   493)
+	 14: Rel (     0,   -30)  ->  Abs (   256,   463)
+	 15: Rel (    -1,  -270)  ->  Abs (   255,   193)
+	 16: Rel (    77,   -71)  ->  Abs (   332,   122)
+	 17: Rel (   151,   -71)  ->  Abs (   483,    51)
+	 18: Rel (    74,     0)  ->  Abs (   557,    51)
+	 19: Rel (    82,     0)  ->  Abs (   639,    51)
+	 20: Rel (    73,    40)  ->  Abs (   712,    91)
+	 21: Rel (    55,    30)  ->  Abs (   767,   121)
+	 22: Rel (    91,   142)  ->  Abs (   858,   263)
+	 23: Rel (     0,    81)  ->  Abs (   858,   344)
+	 24: Rel (     0,   742)  ->  Abs (   858,  1086)
+	 25: Rel (  -329,     0)  ->  Abs (   529,  1086)
+	 26: Rel (   -31,     0)  ->  Abs (   498,  1086)
+	 27: Rel (   -26,    23)  ->  Abs (   472,  1109)
+	 28: Rel (     0,    19)  ->  Abs (   472,  1128)
+	 29: Rel (     0,    19)  ->  Abs (   472,  1147)
+	 30: Rel (    26,    23)  ->  Abs (   498,  1170)
+	 31: Rel (    31,     0)  ->  Abs (   529,  1170)
+	 32: Rel (   614,     0)  ->  Abs (  1143,  1170)
+	 33: Rel (    30,     0)  ->  Abs (  1173,  1170)
+	 34: Rel (    26,   -23)  ->  Abs (  1199,  1147)
+	 35: Rel (     0,   -19)  ->  Abs (  1199,  1128)
+	 36: Rel (     0,   -19)  ->  Abs (  1199,  1109)
+	 37: Rel (   -26,   -23)  ->  Abs (  1173,  1086)
+	 38: Rel (   -30,     0)  ->  Abs (  1143,  1086)
+
+	Glyph  46: off = 0x00003810, len = 798
+	  numberOfContours:	1
+	  xMin:			89
+	  yMin:			0
+	  xMax:			1177
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  66
+
+	  Length of Instructions:	612
+	00000: NPUSHB      (93):    24    45    24    54    26    65    36    51    53    51 
+	                            55    54    71    33    91    65   103    33   108    65 
+	                           119    33   124    65   138    64   138    65   153    64 
+	                           155    65   175    65   187    65   203    51    19    15 
+	                             0    54    51    69    51    87    52     4    15    34 
+	                            43    54    70    52    65    53    86    49   196    63 
+	                           195    64   192    65     8    27    34    27    49   105 
+	                            34   105    49   148    52   175    45   169    54   232 
+	                            34   249    45   249    54    10    50    66     0     0 
+	                            49     9    15 
+	00095: PUSHW[1]            676 
+	00098: NPUSHB      (11):    12    43    16    12    12    15    16    29     9    25 
+	                            31 
+	00111: PUSHW[1]            676 
+	00114: NPUSHB      (14):     0    28     1    28    51    32    28    28    31    32 
+	                            29    25    42    48 
+	00130: PUSHW[1]            676 
+	00133: NPUSHB      (22):    32    45   144    45     2    48    45     1    45    45 
+	                           144    49    45    45    48    49    29    42    49     0 
+	                             8     2 
+	00157: PUSHW[1]            676 
+	00160: NPUSHB      (14):     0     5     1     5    51     1     5     5     2     1 
+	                            29     8    24    18 
+	00176: PUSHW[1]            676 
+	00179: NPUSHB      (11):    21    43    17    21    21    18    17    29    24    41 
+	                            35 
+	00192: PUSHW[1]            676 
+	00195: NPUSHB      (80):    38    15    38    31    38    48    38     3    38    43 
+	                            34    38    38    35    34    29    41    34    33    65 
+	                            52    64    54     4    63    66    34    49     0    18 
+	                             0    30    33    34    20    33    33    34     0    33 
+	                            49    34     4    32     1    48    38    42    35    38 
+	                            42    41    41    25    49    34    34    32    31    38 
+	                            25    25    18    38    24     2    56    55    38    62 
+	                            63    63     8     8    16    38    64     9     8     0 
+	00277: PUSHW[1]            634 
+	00280: PUSHB[5]             33    33    24     9    50 
+	00286: PUSHW[1]            344 
+	00289: PUSHB[8]             32    66    66    49     0    66    38    50 
+	00298: PUSHW[3]            424    34   634 
+	00305: NPUSHB      (23):    64    80    49    96    49   112    49     3     0    49 
+	                            64    49    80    49     3   224    49   240    49     2 
+	                            49    65    55 
+	00330: PUSHW[4]            344    32    63   310 
+	00339: NPUSHB      (17):    68    33    32     0     1    30    17     0    16     1 
+	                           240    16     1    16    25    67    74 
+	00358: PUSHW[3]            340    24   300 
+	00365: SCANCTRL   
+	00366: CALL       
+	00367: FLIPOFF    
+	00368: SRP0       
+	00369: MIRP[srp0,nmd,rd,0] 
+	00370: DELTAP1    
+	00371: DELTAP2    
+	00372: ALIGNRP    
+	00373: FLIPON     
+	00374: MIRP[srp0,md,rd,1] 
+	00375: ALIGNRP    
+	00376: ALIGNRP    
+	00377: ALIGNRP    
+	00378: RTHG       
+	00379: SRP0       
+	00380: MIRP[srp0,nmd,rd,0] 
+	00381: SMD        
+	00382: MIRP[srp0,md,rd,1] 
+	00383: RTG        
+	00384: MIRP[srp0,nmd,rd,0] 
+	00385: DELTAP1    
+	00386: DELTAP2    
+	00387: DELTAP2    
+	00388: SMD        
+	00389: MIRP[nrp0,md,rd,1] 
+	00390: MIRP[srp0,nmd,rd,0] 
+	00391: MIRP[nrp0,md,rd,1] 
+	00392: SVTCA[y-axis] 
+	00393: SRP1       
+	00394: SRP2       
+	00395: IP         
+	00396: MDAP[rd]   
+	00397: SMD        
+	00398: RTHG       
+	00399: MIRP[nrp0,md,rd,1] 
+	00400: SRP1       
+	00401: SRP2       
+	00402: IP         
+	00403: MDAP[rd]   
+	00404: MIRP[nrp0,md,rd,1] 
+	00405: RTG        
+	00406: MIAP[rd+ci] 
+	00407: SMD        
+	00408: MIRP[nrp0,md,rd,1] 
+	00409: ALIGNRP    
+	00410: SRP0       
+	00411: ALIGNRP    
+	00412: SRP0       
+	00413: ALIGNRP    
+	00414: MIRP[srp0,md,rd,1] 
+	00415: ALIGNRP    
+	00416: MIAP[rd+ci] 
+	00417: MIRP[nrp0,md,rd,1] 
+	00418: ALIGNRP    
+	00419: SRP0       
+	00420: MIRP[nrp0,md,rd,1] 
+	00421: SRP0       
+	00422: ALIGNRP    
+	00423: SRP0       
+	00424: ALIGNRP    
+	00425: SRP0       
+	00426: ALIGNRP    
+	00427: SRP0       
+	00428: ALIGNRP    
+	00429: MIRP[nrp0,md,rd,1] 
+	00430: SRP0       
+	00431: MIRP[nrp0,md,rd,1] 
+	00432: SRP1       
+	00433: SRP2       
+	00434: SLOOP      
+	00435: IP         
+	00436: SDPVTL[1]  
+	00437: MDAP[nrd]  
+	00438: CALL       
+	00439: RS         
+	00440: NOT        
+	00441: IF         
+	00442: NPUSHB      (25):     0    64    30    60    63     0    64    28    55    63 
+	                             0    64    25    50    63     0    64    23    45    63 
+	                             0    64    20    40    63 
+	00469: SVTCA[y-axis] 
+	00470: CALL       
+	00471: CALL       
+	00472: CALL       
+	00473: CALL       
+	00474: CALL       
+	00475: EIF        
+	00476: SDPVTL[1]  
+	00477: SFVTCA[x-axis] 
+	00478: RDTG       
+	00479: MDRP[nrp0,nmd,rd,0] 
+	00480: SVTCA[y-axis] 
+	00481: SRP1       
+	00482: SRP2       
+	00483: SLOOP      
+	00484: IP         
+	00485: RTG        
+	00486: SFVTL[=p1,p2] 
+	00487: SRP0       
+	00488: MIRP[srp0,md,rd,1] 
+	00489: RTDG       
+	00490: SRP2       
+	00491: IP         
+	00492: MDAP[rd]   
+	00493: RTG        
+	00494: SVTCA[x-axis] 
+	00495: SRP0       
+	00496: MIRP[srp0,nmd,nrd,1] 
+	00497: DELTAP1    
+	00498: MDAP[rd]   
+	00499: MIRP[srp0,nmd,rd,0] 
+	00500: MDRP[nrp0,nmd,rd,0] 
+	00501: SVTCA[y-axis] 
+	00502: SRP0       
+	00503: MIRP[srp0,md,rd,1] 
+	00504: RTDG       
+	00505: SRP2       
+	00506: IP         
+	00507: MDAP[rd]   
+	00508: RTG        
+	00509: SVTCA[x-axis] 
+	00510: SRP0       
+	00511: MIRP[srp0,nmd,rd,1] 
+	00512: MIRP[srp0,nmd,rd,0] 
+	00513: MDRP[nrp0,nmd,rd,0] 
+	00514: SVTCA[y-axis] 
+	00515: SRP0       
+	00516: MIRP[srp0,md,rd,1] 
+	00517: RTDG       
+	00518: SRP2       
+	00519: IP         
+	00520: MDAP[rd]   
+	00521: RTG        
+	00522: SVTCA[x-axis] 
+	00523: SRP0       
+	00524: MIRP[srp0,nmd,rd,1] 
+	00525: DELTAP1    
+	00526: MIRP[srp0,nmd,rd,0] 
+	00527: MDRP[nrp0,nmd,rd,0] 
+	00528: SVTCA[y-axis] 
+	00529: SFVTL[=p1,p2] 
+	00530: SRP0       
+	00531: MIRP[srp0,md,rd,1] 
+	00532: RTDG       
+	00533: SRP2       
+	00534: IP         
+	00535: MDAP[rd]   
+	00536: RTG        
+	00537: SVTCA[x-axis] 
+	00538: SRP0       
+	00539: MIRP[srp0,nmd,nrd,1] 
+	00540: MDAP[rd]   
+	00541: DELTAP1    
+	00542: DELTAP2    
+	00543: MIRP[srp0,nmd,rd,0] 
+	00544: MDRP[nrp0,nmd,rd,0] 
+	00545: SVTCA[y-axis] 
+	00546: SRP0       
+	00547: MIRP[srp0,md,rd,1] 
+	00548: RTDG       
+	00549: SRP2       
+	00550: IP         
+	00551: MDAP[rd]   
+	00552: RTG        
+	00553: SVTCA[x-axis] 
+	00554: SRP0       
+	00555: MIRP[srp0,nmd,rd,1] 
+	00556: DELTAP1    
+	00557: MIRP[srp0,nmd,rd,0] 
+	00558: MDRP[nrp0,nmd,rd,0] 
+	00559: SVTCA[y-axis] 
+	00560: SRP0       
+	00561: MIRP[srp0,md,rd,1] 
+	00562: RTDG       
+	00563: SRP2       
+	00564: IP         
+	00565: MDAP[rd]   
+	00566: RTG        
+	00567: SVTCA[x-axis] 
+	00568: SRP0       
+	00569: MIRP[srp0,nmd,rd,1] 
+	00570: MIRP[srp0,nmd,rd,0] 
+	00571: MDRP[nrp0,nmd,rd,0] 
+	00572: SPVTL[p1,p2] 
+	00573: SFVTPV     
+	00574: SRP0       
+	00575: ALIGNRP    
+	00576: ALIGNRP    
+	00577: PUSHB[2]              6     2 
+	00580: RS         
+	00581: EQ         
+	00582: IF         
+	00583: PUSHW[2]             34   -32 
+	00588: PUSHB[4]             25    36    52    33 
+	00593: PUSHW[1]            -32 
+	00596: PUSHB[3]             25    36    52 
+	00600: SVTCA[y-axis] 
+	00601: CALL       
+	00602: CALL       
+	00603: EIF        
+	00604: IUP[y]     
+	00605: IUP[x]     
+	00606: SVTCA[x-axis] 
+	00607: DELTAP1    
+	00608: DELTAP2    
+	00609: SVTCA[y-axis] 
+	00610: DELTAP1    
+	00611: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual                               On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:                      Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short On
+	 33:        XDual                         On
+	 34:                                      On
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:        XDual         Y-Short X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         Off
+	 47:                      Y-Short X-Short Off
+	 48:  YDual                       X-Short On
+	 49:  YDual                       X-Short On
+	 50:                                      On
+	 51:        XDual         Y-Short X-Short Off
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short X-Short On
+	 54:        XDual         Y-Short X-Short Off
+	 55:        XDual         Y-Short X-Short On
+	 56:  YDual XDual                 X-Short On
+	 57:  YDual XDual                 X-Short Off
+	 58:        XDual         Y-Short X-Short Off
+	 59:        XDual         Y-Short         On
+	 60:        XDual         Y-Short         Off
+	 61:                      Y-Short X-Short Off
+	 62:  YDual                       X-Short On
+	 63:  YDual                       X-Short On
+	 64:                              X-Short Off
+	 65:  YDual               Y-Short X-Short Off
+	 66:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   342,   458)  ->  Abs (   342,   458)
+	  1: Rel (     0,  -374)  ->  Abs (   342,    84)
+	  2: Rel (   155,     0)  ->  Abs (   497,    84)
+	  3: Rel (    31,     0)  ->  Abs (   528,    84)
+	  4: Rel (    26,   -23)  ->  Abs (   554,    61)
+	  5: Rel (     0,   -19)  ->  Abs (   554,    42)
+	  6: Rel (     0,   -18)  ->  Abs (   554,    24)
+	  7: Rel (   -26,   -24)  ->  Abs (   528,     0)
+	  8: Rel (   -31,     0)  ->  Abs (   497,     0)
+	  9: Rel (  -352,     0)  ->  Abs (   145,     0)
+	 10: Rel (   -30,     0)  ->  Abs (   115,     0)
+	 11: Rel (   -26,    24)  ->  Abs (    89,    24)
+	 12: Rel (     0,    18)  ->  Abs (    89,    42)
+	 13: Rel (     0,    19)  ->  Abs (    89,    61)
+	 14: Rel (    26,    23)  ->  Abs (   115,    84)
+	 15: Rel (    30,     0)  ->  Abs (   145,    84)
+	 16: Rel (   113,     0)  ->  Abs (   258,    84)
+	 17: Rel (     0,  1002)  ->  Abs (   258,  1086)
+	 18: Rel (  -113,     0)  ->  Abs (   145,  1086)
+	 19: Rel (   -30,     0)  ->  Abs (   115,  1086)
+	 20: Rel (   -26,    23)  ->  Abs (    89,  1109)
+	 21: Rel (     0,    19)  ->  Abs (    89,  1128)
+	 22: Rel (     0,    19)  ->  Abs (    89,  1147)
+	 23: Rel (    26,    23)  ->  Abs (   115,  1170)
+	 24: Rel (    30,     0)  ->  Abs (   145,  1170)
+	 25: Rel (   352,     0)  ->  Abs (   497,  1170)
+	 26: Rel (    31,     0)  ->  Abs (   528,  1170)
+	 27: Rel (    26,   -23)  ->  Abs (   554,  1147)
+	 28: Rel (     0,   -19)  ->  Abs (   554,  1128)
+	 29: Rel (     0,   -19)  ->  Abs (   554,  1109)
+	 30: Rel (   -26,   -23)  ->  Abs (   528,  1086)
+	 31: Rel (   -31,     0)  ->  Abs (   497,  1086)
+	 32: Rel (  -155,     0)  ->  Abs (   342,  1086)
+	 33: Rel (     0,  -517)  ->  Abs (   342,   569)
+	 34: Rel (   580,   517)  ->  Abs (   922,  1086)
+	 35: Rel (   -92,     0)  ->  Abs (   830,  1086)
+	 36: Rel (   -31,     0)  ->  Abs (   799,  1086)
+	 37: Rel (   -26,    23)  ->  Abs (   773,  1109)
+	 38: Rel (     0,    19)  ->  Abs (   773,  1128)
+	 39: Rel (     0,    19)  ->  Abs (   773,  1147)
+	 40: Rel (    26,    23)  ->  Abs (   799,  1170)
+	 41: Rel (    31,     0)  ->  Abs (   830,  1170)
+	 42: Rel (   247,     0)  ->  Abs (  1077,  1170)
+	 43: Rel (    30,     0)  ->  Abs (  1107,  1170)
+	 44: Rel (    26,   -23)  ->  Abs (  1133,  1147)
+	 45: Rel (     0,   -19)  ->  Abs (  1133,  1128)
+	 46: Rel (     0,   -19)  ->  Abs (  1133,  1109)
+	 47: Rel (   -26,   -23)  ->  Abs (  1107,  1086)
+	 48: Rel (   -30,     0)  ->  Abs (  1077,  1086)
+	 49: Rel (   -34,     0)  ->  Abs (  1043,  1086)
+	 50: Rel (  -462,  -413)  ->  Abs (   581,   673)
+	 51: Rel (   103,   -42)  ->  Abs (   684,   631)
+	 52: Rel (   136,  -126)  ->  Abs (   820,   505)
+	 53: Rel (    63,  -116)  ->  Abs (   883,   389)
+	 54: Rel (    36,   -65)  ->  Abs (   919,   324)
+	 55: Rel (    96,  -240)  ->  Abs (  1015,    84)
+	 56: Rel (   105,     0)  ->  Abs (  1120,    84)
+	 57: Rel (    31,     0)  ->  Abs (  1151,    84)
+	 58: Rel (    26,   -23)  ->  Abs (  1177,    61)
+	 59: Rel (     0,   -19)  ->  Abs (  1177,    42)
+	 60: Rel (     0,   -18)  ->  Abs (  1177,    24)
+	 61: Rel (   -26,   -24)  ->  Abs (  1151,     0)
+	 62: Rel (   -31,     0)  ->  Abs (  1120,     0)
+	 63: Rel (  -162,     0)  ->  Abs (   958,     0)
+	 64: Rel (  -132,   361)  ->  Abs (   826,   361)
+	 65: Rel (  -180,   207)  ->  Abs (   646,   568)
+	 66: Rel (  -135,    42)  ->  Abs (   511,   610)
+
+	Glyph  47: off = 0x00003B2E, len = 208
+	  numberOfContours:	1
+	  xMin:			128
+	  yMin:			0
+	  xMax:			1112
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  33
+
+	  Length of Instructions:	108
+	00000: NPUSHB      (56):    17    11    14    53    18    18    29    11    33    27 
+	                            30    53     0     0    29    27     3     9     6   219 
+	                             2     2    29     9    20    26    23    53    19    19 
+	                            29    26     2    38    11    27    26     2    11     8 
+	                            15     9     1     9    26    35     0     1    30    19 
+	                            18    25    34   165   121    24 
+	00058: CALL       
+	00059: FLIPOFF    
+	00060: SRP0       
+	00061: MIRP[srp0,nmd,rd,0] 
+	00062: ALIGNRP    
+	00063: FLIPON     
+	00064: MIRP[srp0,md,rd,1] 
+	00065: ALIGNRP    
+	00066: FLIPOFF    
+	00067: SRP0       
+	00068: MIRP[nrp0,nmd,rd,2] 
+	00069: DELTAP1    
+	00070: SVTCA[y-axis] 
+	00071: MIAP[rd+ci] 
+	00072: MIAP[rd+ci] 
+	00073: ALIGNRP    
+	00074: FLIPON     
+	00075: SRP0       
+	00076: MIRP[nrp0,md,rd,1] 
+	00077: SRP0       
+	00078: MIRP[nrp0,md,rd,1] 
+	00079: SVTCA[x-axis] 
+	00080: SRP0       
+	00081: MIRP[srp0,nmd,rd,1] 
+	00082: MDRP[srp0,nmd,rd,0] 
+	00083: ALIGNRP    
+	00084: SRP0       
+	00085: MIRP[nrp0,md,rd,1] 
+	00086: SVTCA[y-axis] 
+	00087: SRP0       
+	00088: MIRP[srp0,nmd,rd,1] 
+	00089: MDRP[srp0,nmd,rd,0] 
+	00090: ALIGNRP    
+	00091: SRP0       
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: SVTCA[x-axis] 
+	00094: SRP0       
+	00095: MIRP[srp0,nmd,rd,1] 
+	00096: MDRP[srp0,nmd,rd,0] 
+	00097: ALIGNRP    
+	00098: SVTCA[y-axis] 
+	00099: SRP0       
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: SVTCA[x-axis] 
+	00102: SRP0       
+	00103: MIRP[srp0,nmd,rd,1] 
+	00104: MDRP[srp0,nmd,rd,0] 
+	00105: ALIGNRP    
+	00106: IUP[y]     
+	00107: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual                         On
+	 11:  YDual                               On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short On
+	 19:        XDual                         On
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual                               On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   469,  1086)  ->  Abs (   469,  1086)
+	  1: Rel (     0, -1002)  ->  Abs (   469,    84)
+	  2: Rel (   558,     0)  ->  Abs (  1027,    84)
+	  3: Rel (     0,   334)  ->  Abs (  1027,   418)
+	  4: Rel (     0,    30)  ->  Abs (  1027,   448)
+	  5: Rel (    24,    26)  ->  Abs (  1051,   474)
+	  6: Rel (    19,     0)  ->  Abs (  1070,   474)
+	  7: Rel (    18,     0)  ->  Abs (  1088,   474)
+	  8: Rel (    24,   -25)  ->  Abs (  1112,   449)
+	  9: Rel (     0,   -31)  ->  Abs (  1112,   418)
+	 10: Rel (     0,  -418)  ->  Abs (  1112,     0)
+	 11: Rel (  -928,     0)  ->  Abs (   184,     0)
+	 12: Rel (   -30,     0)  ->  Abs (   154,     0)
+	 13: Rel (   -26,    24)  ->  Abs (   128,    24)
+	 14: Rel (     0,    18)  ->  Abs (   128,    42)
+	 15: Rel (     0,    19)  ->  Abs (   128,    61)
+	 16: Rel (    26,    23)  ->  Abs (   154,    84)
+	 17: Rel (    30,     0)  ->  Abs (   184,    84)
+	 18: Rel (   200,     0)  ->  Abs (   384,    84)
+	 19: Rel (     0,  1002)  ->  Abs (   384,  1086)
+	 20: Rel (  -200,     0)  ->  Abs (   184,  1086)
+	 21: Rel (   -30,     0)  ->  Abs (   154,  1086)
+	 22: Rel (   -26,    23)  ->  Abs (   128,  1109)
+	 23: Rel (     0,    19)  ->  Abs (   128,  1128)
+	 24: Rel (     0,    19)  ->  Abs (   128,  1147)
+	 25: Rel (    26,    23)  ->  Abs (   154,  1170)
+	 26: Rel (    30,     0)  ->  Abs (   184,  1170)
+	 27: Rel (   485,     0)  ->  Abs (   669,  1170)
+	 28: Rel (    30,     0)  ->  Abs (   699,  1170)
+	 29: Rel (    26,   -23)  ->  Abs (   725,  1147)
+	 30: Rel (     0,   -19)  ->  Abs (   725,  1128)
+	 31: Rel (     0,   -19)  ->  Abs (   725,  1109)
+	 32: Rel (   -26,   -23)  ->  Abs (   699,  1086)
+	 33: Rel (   -30,     0)  ->  Abs (   669,  1086)
+
+	Glyph  48: off = 0x00003BFE, len = 710
+	  numberOfContours:	1
+	  xMin:			24
+	  yMin:			0
+	  xMax:			1216
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  56
+
+	  Length of Instructions:	551
+	00000: NPUSHB      (58):   226    29   230    30     2    70     0    74    56   192 
+	                             0   208     0   211     1   216    28   209    29   246 
+	                             0   246     1   246    29    10    37     0    39    29 
+	                            39    30    38    56    71    28    87    28   168    30 
+	                           185    30   212     0   212     1   212    29   234     1 
+	                           232    29    13    88    30     1    12    18 
+	00060: PUSHW[1]            676 
+	00063: NPUSHB      (19):   159    15     1    15    15    31    15     2    15    41 
+	                            19    15    15    18    19    29    12    31    37 
+	00084: PUSHW[1]            676 
+	00087: NPUSHB      (16):     0    34    80    34     2    34    41    38    34    34 
+	                            37    38    29    31    47    53 
+	00105: PUSHW[1]            676 
+	00108: NPUSHB      (11):    50    51    54    50    50    53    54    29    47    11 
+	                             5 
+	00121: PUSHW[1]            676 
+	00124: NPUSHB      (11):     8    51     4     8     8     5     4    29    11    27 
+	                            21 
+	00137: PUSHW[1]            676 
+	00140: NPUSHB      (19):   159    24     1    15    24    31    24     2    24    41 
+	                            20    24    24    21    20    29    27    46    40 
+	00161: PUSHW[1]            676 
+	00164: NPUSHB      (14):     0    43    80    43     2    43    41    39    43    43 
+	                            40    39    29    46 
+	00180: PUSHW[1]           -117 
+	00183: NPUSHB      (28):    29     1     0    32    28    29    29    30     1     2 
+	                            20     1    29    30     1     2    30    56     0     0 
+	                            30    29    30    20    29    29    30     0 
+	00213: PUSHW[1]            541 
+	00216: NPUSHB      (11):    30    37    38    31    31    30    30    28    29    38 
+	                             1 
+	00229: PUSHW[1]            541 
+	00232: NPUSHB      (74):    28    28    27    56    55     2     3    21    38    27 
+	                             2    46    47    39    54    38    47    47    11    11 
+	                            12     4    19    38    12     8    38    39    56    56 
+	                            29    30    30    29    55    54    30    39    64     0 
+	                           207     1    31    39    95    39   111    39   175    39 
+	                           191    39     5    39    64    39    41    52    39    64 
+	                            18    53    15    39   143    39   208    39   224    39 
+	                           240    39     5    39 
+	00308: PUSHW[1]            737 
+	00311: NPUSHB      (21):    29    31     1    95     1     2   143     1   207     1 
+	                             2     1     1     4    28    28     4     2     2     4 
+	                            29 
+	00334: PUSHW[1]            633 
+	00337: NPUSHB      (22):    19    32     3     4    20     4    30    79    19   207 
+	                            19   223    19   239    19     4    19    25    57   194 
+	                           111    24 
+	00361: CALL       
+	00362: FLIPOFF    
+	00363: SRP0       
+	00364: MIRP[srp0,nmd,rd,0] 
+	00365: DELTAP1    
+	00366: FLIPON     
+	00367: MIRP[nrp0,md,rd,1] 
+	00368: ALIGNRP    
+	00369: SRP0       
+	00370: ALIGNRP    
+	00371: SMD        
+	00372: RTHG       
+	00373: SRP0       
+	00374: MIRP[nrp0,md,rd,1] 
+	00375: RTG        
+	00376: SRP1       
+	00377: IP         
+	00378: MDAP[rd]   
+	00379: SRP1       
+	00380: IP         
+	00381: MDAP[rd]   
+	00382: SRP1       
+	00383: IP         
+	00384: MDAP[rd]   
+	00385: DELTAP1    
+	00386: DELTAP2    
+	00387: RTHG       
+	00388: SRP0       
+	00389: MIRP[nrp0,md,rd,1] 
+	00390: DELTAP1    
+	00391: CALL       
+	00392: CALL       
+	00393: DELTAP2    
+	00394: RTG        
+	00395: SRP0       
+	00396: MIRP[nrp0,nmd,rd,2] 
+	00397: SMD        
+	00398: SRP0       
+	00399: MIRP[srp0,md,rd,1] 
+	00400: ALIGNRP    
+	00401: SRP1       
+	00402: IP         
+	00403: MDAP[rd]   
+	00404: SRP1       
+	00405: IP         
+	00406: MDAP[rd]   
+	00407: SRP0       
+	00408: ALIGNRP    
+	00409: SVTCA[y-axis] 
+	00410: MIAP[rd+ci] 
+	00411: MIRP[srp0,md,rd,1] 
+	00412: ALIGNRP    
+	00413: SRP0       
+	00414: ALIGNRP    
+	00415: SRP0       
+	00416: ALIGNRP    
+	00417: SRP0       
+	00418: MIRP[srp0,md,rd,1] 
+	00419: ALIGNRP    
+	00420: SRP0       
+	00421: ALIGNRP    
+	00422: MIAP[rd+ci] 
+	00423: MIRP[srp0,md,rd,1] 
+	00424: ALIGNRP    
+	00425: ALIGNRP    
+	00426: ALIGNRP    
+	00427: ALIGNRP    
+	00428: SRP0       
+	00429: ALIGNRP    
+	00430: SRP0       
+	00431: MIRP[srp0,md,rd,1] 
+	00432: MIRP[nrp0,md,rd,1] 
+	00433: SRP0       
+	00434: ALIGNRP    
+	00435: SRP0       
+	00436: ALIGNRP    
+	00437: SRP0       
+	00438: MIRP[nrp0,md,rd,1] 
+	00439: SRP0       
+	00440: MIRP[nrp0,md,rd,1] 
+	00441: SDPVTL[1]  
+	00442: SFVTCA[x-axis] 
+	00443: MDAP[nrd]  
+	00444: CALL       
+	00445: SDPVTL[1]  
+	00446: RDTG       
+	00447: MDRP[nrp0,nmd,rd,0] 
+	00448: SDPVTL[1]  
+	00449: SFVTL[=p1,p2] 
+	00450: MDAP[nrd]  
+	00451: RTG        
+	00452: CALL       
+	00453: SFVTCA[x-axis] 
+	00454: RDTG       
+	00455: SRP0       
+	00456: MDRP[nrp0,nmd,rd,0] 
+	00457: CALL       
+	00458: RTG        
+	00459: SVTCA[y-axis] 
+	00460: SRP0       
+	00461: MIRP[srp0,md,rd,1] 
+	00462: RTDG       
+	00463: SRP2       
+	00464: IP         
+	00465: MDAP[rd]   
+	00466: RTG        
+	00467: SVTCA[x-axis] 
+	00468: SRP0       
+	00469: MIRP[srp0,nmd,rd,1] 
+	00470: DELTAP1    
+	00471: MIRP[srp0,nmd,rd,0] 
+	00472: MDRP[nrp0,nmd,rd,0] 
+	00473: SVTCA[y-axis] 
+	00474: SRP0       
+	00475: MIRP[srp0,md,rd,1] 
+	00476: RTDG       
+	00477: SRP2       
+	00478: IP         
+	00479: MDAP[rd]   
+	00480: RTG        
+	00481: SVTCA[x-axis] 
+	00482: SRP0       
+	00483: MIRP[srp0,nmd,rd,1] 
+	00484: DELTAP1    
+	00485: DELTAP2    
+	00486: MIRP[srp0,nmd,rd,0] 
+	00487: MDRP[nrp0,nmd,rd,0] 
+	00488: SVTCA[y-axis] 
+	00489: SRP0       
+	00490: MIRP[srp0,md,rd,1] 
+	00491: RTDG       
+	00492: SRP2       
+	00493: IP         
+	00494: MDAP[rd]   
+	00495: RTG        
+	00496: SVTCA[x-axis] 
+	00497: SRP0       
+	00498: MIRP[srp0,nmd,rd,1] 
+	00499: MIRP[srp0,nmd,rd,0] 
+	00500: MDRP[nrp0,nmd,rd,0] 
+	00501: SVTCA[y-axis] 
+	00502: SRP0       
+	00503: MIRP[srp0,md,rd,1] 
+	00504: RTDG       
+	00505: SRP2       
+	00506: IP         
+	00507: MDAP[rd]   
+	00508: RTG        
+	00509: SVTCA[x-axis] 
+	00510: SRP0       
+	00511: MIRP[srp0,nmd,rd,1] 
+	00512: MIRP[srp0,nmd,rd,0] 
+	00513: MDRP[nrp0,nmd,rd,0] 
+	00514: SVTCA[y-axis] 
+	00515: SRP0       
+	00516: MIRP[srp0,md,rd,1] 
+	00517: RTDG       
+	00518: SRP2       
+	00519: IP         
+	00520: MDAP[rd]   
+	00521: RTG        
+	00522: SVTCA[x-axis] 
+	00523: SRP0       
+	00524: MIRP[srp0,nmd,rd,1] 
+	00525: DELTAP1    
+	00526: MIRP[srp0,nmd,rd,0] 
+	00527: MDRP[nrp0,nmd,rd,0] 
+	00528: SVTCA[y-axis] 
+	00529: SRP0       
+	00530: MIRP[srp0,md,rd,1] 
+	00531: RTDG       
+	00532: SRP2       
+	00533: IP         
+	00534: MDAP[rd]   
+	00535: RTG        
+	00536: SVTCA[x-axis] 
+	00537: SRP0       
+	00538: MIRP[srp0,nmd,rd,1] 
+	00539: DELTAP1    
+	00540: DELTAP2    
+	00541: MIRP[srp0,nmd,rd,0] 
+	00542: MDRP[nrp0,nmd,rd,0] 
+	00543: IUP[y]     
+	00544: IUP[x]     
+	00545: SVTCA[x-axis] 
+	00546: DELTAP3    
+	00547: DELTAP2    
+	00548: DELTAP1    
+	00549: SVTCA[y-axis] 
+	00550: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:                                      On
+	  3:  YDual                       X-Short On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                               On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short On
+	 20:        XDual                         On
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short On
+	 29:                                      On
+	 30:                                      On
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:                      Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short On
+	 39:        XDual                         On
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:        XDual         Y-Short X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:                      Y-Short X-Short Off
+	 46:  YDual                       X-Short On
+	 47:  YDual                               On
+	 48:  YDual                       X-Short Off
+	 49:  YDual               Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual                 X-Short On
+	 54:  YDual XDual                 X-Short On
+	 55:        XDual                         On
+	 56:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   670,   351)  ->  Abs (   670,   351)
+	  1: Rel (   -96,     0)  ->  Abs (   574,   351)
+	  2: Rel (  -323,   735)  ->  Abs (   251,  1086)
+	  3: Rel (   -16,     0)  ->  Abs (   235,  1086)
+	  4: Rel (     0, -1002)  ->  Abs (   235,    84)
+	  5: Rel (   155,     0)  ->  Abs (   390,    84)
+	  6: Rel (    30,     0)  ->  Abs (   420,    84)
+	  7: Rel (    26,   -23)  ->  Abs (   446,    61)
+	  8: Rel (     0,   -19)  ->  Abs (   446,    42)
+	  9: Rel (     0,   -18)  ->  Abs (   446,    24)
+	 10: Rel (   -26,   -24)  ->  Abs (   420,     0)
+	 11: Rel (   -30,     0)  ->  Abs (   390,     0)
+	 12: Rel (  -310,     0)  ->  Abs (    80,     0)
+	 13: Rel (   -30,     0)  ->  Abs (    50,     0)
+	 14: Rel (   -26,    24)  ->  Abs (    24,    24)
+	 15: Rel (     0,    18)  ->  Abs (    24,    42)
+	 16: Rel (     0,    19)  ->  Abs (    24,    61)
+	 17: Rel (    26,    23)  ->  Abs (    50,    84)
+	 18: Rel (    30,     0)  ->  Abs (    80,    84)
+	 19: Rel (    71,     0)  ->  Abs (   151,    84)
+	 20: Rel (     0,  1002)  ->  Abs (   151,  1086)
+	 21: Rel (   -53,     0)  ->  Abs (    98,  1086)
+	 22: Rel (   -30,     0)  ->  Abs (    68,  1086)
+	 23: Rel (   -26,    23)  ->  Abs (    42,  1109)
+	 24: Rel (     0,    19)  ->  Abs (    42,  1128)
+	 25: Rel (     0,    19)  ->  Abs (    42,  1147)
+	 26: Rel (    26,    23)  ->  Abs (    68,  1170)
+	 27: Rel (    30,     0)  ->  Abs (    98,  1170)
+	 28: Rel (   206,     0)  ->  Abs (   304,  1170)
+	 29: Rel (   318,  -724)  ->  Abs (   622,   446)
+	 30: Rel (   313,   724)  ->  Abs (   935,  1170)
+	 31: Rel (   206,     0)  ->  Abs (  1141,  1170)
+	 32: Rel (    31,     0)  ->  Abs (  1172,  1170)
+	 33: Rel (    26,   -23)  ->  Abs (  1198,  1147)
+	 34: Rel (     0,   -19)  ->  Abs (  1198,  1128)
+	 35: Rel (     0,   -19)  ->  Abs (  1198,  1109)
+	 36: Rel (   -26,   -23)  ->  Abs (  1172,  1086)
+	 37: Rel (   -31,     0)  ->  Abs (  1141,  1086)
+	 38: Rel (   -52,     0)  ->  Abs (  1089,  1086)
+	 39: Rel (     0, -1002)  ->  Abs (  1089,    84)
+	 40: Rel (    70,     0)  ->  Abs (  1159,    84)
+	 41: Rel (    31,     0)  ->  Abs (  1190,    84)
+	 42: Rel (    26,   -23)  ->  Abs (  1216,    61)
+	 43: Rel (     0,   -19)  ->  Abs (  1216,    42)
+	 44: Rel (     0,   -18)  ->  Abs (  1216,    24)
+	 45: Rel (   -26,   -24)  ->  Abs (  1190,     0)
+	 46: Rel (   -31,     0)  ->  Abs (  1159,     0)
+	 47: Rel (  -309,     0)  ->  Abs (   850,     0)
+	 48: Rel (   -30,     0)  ->  Abs (   820,     0)
+	 49: Rel (   -27,    24)  ->  Abs (   793,    24)
+	 50: Rel (     0,    18)  ->  Abs (   793,    42)
+	 51: Rel (     0,    19)  ->  Abs (   793,    61)
+	 52: Rel (    26,    23)  ->  Abs (   819,    84)
+	 53: Rel (    31,     0)  ->  Abs (   850,    84)
+	 54: Rel (   155,     0)  ->  Abs (  1005,    84)
+	 55: Rel (     0,  1002)  ->  Abs (  1005,  1086)
+	 56: Rel (   -18,     0)  ->  Abs (   987,  1086)
+
+	Glyph  49: off = 0x00003EC4, len = 494
+	  numberOfContours:	1
+	  xMin:			46
+	  yMin:			0
+	  xMax:			1153
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  44
+
+	  Length of Instructions:	367
+	00000: NPUSHB      (22):     8     2     1     9    28    25    28     2   199     2 
+	                             1    11     1     6    27    27     1    22    27     4 
+	                            11    17 
+	00024: PUSHW[1]            676 
+	00027: NPUSHB      (11):    14    41    18    14    14    17    18    29    11    37 
+	                            43 
+	00040: PUSHW[1]            676 
+	00043: NPUSHB      (14):     0    40     1    40    41    44    40    40    43    44 
+	                            29    37    10     4 
+	00059: PUSHW[1]            676 
+	00062: NPUSHB      (11):     7    51     3     7     7     4     3    29    10    26 
+	                            20 
+	00075: PUSHW[1]            676 
+	00078: NPUSHB      (11):    23    43    19    23    23    20    19    29    26    36 
+	                            30 
+	00091: PUSHW[1]            676 
+	00094: NPUSHB      (34):    33    51    29    33    33    30    29    29    36    27 
+	                             2     1    18     1    30    28    27    20    28    28 
+	                            27     1    27     0    19    43    38    37    37    30 
+	                            38    36    36     2 
+	00130: PUSHW[1]            634 
+	00133: PUSHB[7]             27    20    38    27    26     2    28 
+	00141: PUSHW[1]            634 
+	00144: NPUSHB      (10):     1    11    10    10     1     8    29    28    30     1 
+	00156: PUSHW[1]            300 
+	00159: NPUSHB      (27):     0     0    44    64    37    53    15    44    79    44 
+	                            95    44   111    44   143    44   223    44     6    44 
+	                            26    46     2     3    30    18    27 
+	00188: PUSHW[1]            634 
+	00191: NPUSHB      (19):    18    95    19   111    19   143    19   240    19     4 
+	                            15    19     1    19    25    45    58   107    24 
+	00212: PUSHW[1]            300 
+	00215: SCANCTRL   
+	00216: CALL       
+	00217: FLIPOFF    
+	00218: SRP0       
+	00219: MIRP[srp0,nmd,rd,0] 
+	00220: DELTAP2    
+	00221: DELTAP1    
+	00222: ALIGNRP    
+	00223: FLIPON     
+	00224: MIRP[nrp0,md,rd,1] 
+	00225: SRP0       
+	00226: MIRP[srp0,md,rd,1] 
+	00227: ALIGNRP    
+	00228: FLIPOFF    
+	00229: SRP0       
+	00230: MIRP[srp0,nmd,rd,2] 
+	00231: DELTAP1    
+	00232: CALL       
+	00233: ALIGNRP    
+	00234: FLIPON     
+	00235: SRP0       
+	00236: MIRP[nrp0,nmd,rd,2] 
+	00237: MIRP[srp0,md,rd,1] 
+	00238: ALIGNRP    
+	00239: SVTCA[y-axis] 
+	00240: MIAP[rd+ci] 
+	00241: ALIGNRP    
+	00242: SRP0       
+	00243: ALIGNRP    
+	00244: SRP0       
+	00245: MIRP[nrp0,md,rd,1] 
+	00246: MIAP[rd+ci] 
+	00247: ALIGNRP    
+	00248: MIRP[nrp0,md,rd,1] 
+	00249: SRP0       
+	00250: MIRP[nrp0,md,rd,1] 
+	00251: ALIGNRP    
+	00252: SRP0       
+	00253: MIRP[nrp0,md,rd,1] 
+	00254: ALIGNRP    
+	00255: SRP0       
+	00256: MIRP[nrp0,md,rd,1] 
+	00257: SVTCA[x-axis] 
+	00258: SRP1       
+	00259: SRP2       
+	00260: IP         
+	00261: IP         
+	00262: SDPVTL[1]  
+	00263: MDAP[nrd]  
+	00264: CALL       
+	00265: RS         
+	00266: NOT        
+	00267: IF         
+	00268: NPUSHB      (15):     1     8    20    40    63     1    20    17    28    63 
+	                             1    20    16    27    63 
+	00285: SVTCA[x-axis] 
+	00286: CALL       
+	00287: CALL       
+	00288: CALL       
+	00289: EIF        
+	00290: SDPVTL[1]  
+	00291: RDTG       
+	00292: MDRP[nrp0,nmd,rd,0] 
+	00293: RTG        
+	00294: SVTCA[y-axis] 
+	00295: SRP0       
+	00296: MIRP[srp0,md,rd,1] 
+	00297: RTDG       
+	00298: SRP2       
+	00299: IP         
+	00300: MDAP[rd]   
+	00301: RTG        
+	00302: SVTCA[x-axis] 
+	00303: SRP0       
+	00304: MIRP[srp0,nmd,rd,1] 
+	00305: MIRP[srp0,nmd,rd,0] 
+	00306: MDRP[nrp0,nmd,rd,0] 
+	00307: SVTCA[y-axis] 
+	00308: SRP0       
+	00309: MIRP[srp0,md,rd,1] 
+	00310: RTDG       
+	00311: SRP2       
+	00312: IP         
+	00313: MDAP[rd]   
+	00314: RTG        
+	00315: SVTCA[x-axis] 
+	00316: SRP0       
+	00317: MIRP[srp0,nmd,rd,1] 
+	00318: MIRP[srp0,nmd,rd,0] 
+	00319: MDRP[nrp0,nmd,rd,0] 
+	00320: SVTCA[y-axis] 
+	00321: SRP0       
+	00322: MIRP[srp0,md,rd,1] 
+	00323: RTDG       
+	00324: SRP2       
+	00325: IP         
+	00326: MDAP[rd]   
+	00327: RTG        
+	00328: SVTCA[x-axis] 
+	00329: SRP0       
+	00330: MIRP[srp0,nmd,rd,1] 
+	00331: MIRP[srp0,nmd,rd,0] 
+	00332: MDRP[nrp0,nmd,rd,0] 
+	00333: SVTCA[y-axis] 
+	00334: SRP0       
+	00335: MIRP[srp0,md,rd,1] 
+	00336: RTDG       
+	00337: SRP2       
+	00338: IP         
+	00339: MDAP[rd]   
+	00340: RTG        
+	00341: SVTCA[x-axis] 
+	00342: SRP0       
+	00343: MIRP[srp0,nmd,rd,1] 
+	00344: DELTAP1    
+	00345: MIRP[srp0,nmd,rd,0] 
+	00346: MDRP[nrp0,nmd,rd,0] 
+	00347: SVTCA[y-axis] 
+	00348: SRP0       
+	00349: MIRP[srp0,md,rd,1] 
+	00350: RTDG       
+	00351: SRP2       
+	00352: IP         
+	00353: MDAP[rd]   
+	00354: RTG        
+	00355: SVTCA[x-axis] 
+	00356: SRP0       
+	00357: MIRP[srp0,nmd,rd,1] 
+	00358: MIRP[srp0,nmd,rd,0] 
+	00359: MDRP[nrp0,nmd,rd,0] 
+	00360: IUP[y]     
+	00361: IUP[x]     
+	00362: DELTAP1    
+	00363: DELTAP2    
+	00364: SVTCA[y-axis] 
+	00365: DELTAP1    
+	00366: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:                                      On
+	  3:        XDual                         On
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                               On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short On
+	 19:        XDual                         On
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short On
+	 28:                                      On
+	 29:        XDual                         On
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual                               On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:                      Y-Short X-Short Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1026,     0)  ->  Abs (  1026,     0)
+	  1: Rel (  -108,     0)  ->  Abs (   918,     0)
+	  2: Rel (  -619,  1047)  ->  Abs (   299,  1047)
+	  3: Rel (     0,  -963)  ->  Abs (   299,    84)
+	  4: Rel (   155,     0)  ->  Abs (   454,    84)
+	  5: Rel (    31,     0)  ->  Abs (   485,    84)
+	  6: Rel (    26,   -23)  ->  Abs (   511,    61)
+	  7: Rel (     0,   -19)  ->  Abs (   511,    42)
+	  8: Rel (     0,   -18)  ->  Abs (   511,    24)
+	  9: Rel (   -26,   -24)  ->  Abs (   485,     0)
+	 10: Rel (   -31,     0)  ->  Abs (   454,     0)
+	 11: Rel (  -309,     0)  ->  Abs (   145,     0)
+	 12: Rel (   -31,     0)  ->  Abs (   114,     0)
+	 13: Rel (   -26,    24)  ->  Abs (    88,    24)
+	 14: Rel (     0,    18)  ->  Abs (    88,    42)
+	 15: Rel (     0,    19)  ->  Abs (    88,    61)
+	 16: Rel (    26,    23)  ->  Abs (   114,    84)
+	 17: Rel (    31,     0)  ->  Abs (   145,    84)
+	 18: Rel (    70,     0)  ->  Abs (   215,    84)
+	 19: Rel (     0,  1002)  ->  Abs (   215,  1086)
+	 20: Rel (  -113,     0)  ->  Abs (   102,  1086)
+	 21: Rel (   -30,     0)  ->  Abs (    72,  1086)
+	 22: Rel (   -26,    23)  ->  Abs (    46,  1109)
+	 23: Rel (     0,    19)  ->  Abs (    46,  1128)
+	 24: Rel (     0,    19)  ->  Abs (    46,  1147)
+	 25: Rel (    26,    23)  ->  Abs (    72,  1170)
+	 26: Rel (    30,     0)  ->  Abs (   102,  1170)
+	 27: Rel (   220,     0)  ->  Abs (   322,  1170)
+	 28: Rel (   620, -1049)  ->  Abs (   942,   121)
+	 29: Rel (     0,   965)  ->  Abs (   942,  1086)
+	 30: Rel (  -155,     0)  ->  Abs (   787,  1086)
+	 31: Rel (   -30,     0)  ->  Abs (   757,  1086)
+	 32: Rel (   -26,    23)  ->  Abs (   731,  1109)
+	 33: Rel (     0,    19)  ->  Abs (   731,  1128)
+	 34: Rel (     0,    19)  ->  Abs (   731,  1147)
+	 35: Rel (    25,    23)  ->  Abs (   756,  1170)
+	 36: Rel (    31,     0)  ->  Abs (   787,  1170)
+	 37: Rel (   310,     0)  ->  Abs (  1097,  1170)
+	 38: Rel (    30,     0)  ->  Abs (  1127,  1170)
+	 39: Rel (    26,   -23)  ->  Abs (  1153,  1147)
+	 40: Rel (     0,   -19)  ->  Abs (  1153,  1128)
+	 41: Rel (     0,   -19)  ->  Abs (  1153,  1109)
+	 42: Rel (   -26,   -23)  ->  Abs (  1127,  1086)
+	 43: Rel (   -30,     0)  ->  Abs (  1097,  1086)
+	 44: Rel (   -71,     0)  ->  Abs (  1026,  1086)
+
+	Glyph  50: off = 0x000040B2, len = 604
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			-33
+	  xMax:			1024
+	  yMax:			1197
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  25
+
+	  Length of Instructions:	508
+	00000: NPUSHB     (255):   201    15   197    25     2    18   230    22   230    24 
+	                           249    16   249    18   244    22   244    25     6   199 
+	                            22   217    16   217    18   214    22   215    24   233 
+	                            16   233    18     7    26    16    26    18    21    22 
+	                            22    24     4   199    18   250    15   246    19     3 
+	                           157     9   149    12   164     2   169     5   169     9 
+	                           164    12   202     6   202     8     8   131     2   140 
+	                             5   141     8   128    12   137    19   137    21   148 
+	                             2   155     5     8    55     6    55     8    51     9 
+	                            60    12    58    16    51    18    51    22    58    24 
+	                             8    42     2    43    12    47    16    37    18    37 
+	                            22    47    24    59     2     7   188    15   191    16 
+	                           178    18   178    19   178    21   176    22   191    24 
+	                           186    25     8   173    15   174    16   165    18   162 
+	                            19   163    21   164    22   175    24   170    25     8 
+	                            87    19    81    22    93    24   159    16   149    19 
+	                           147    22   156    24   153    25     8    69    19    69 
+	                            21    69    22    74    24    76    25    90    15    90 
+	                            16    82    18     8    41    24    58    15    54    19 
+	                            55    21    57    24    78    15    74    16    69    18 
+	                             8    11     6    10     8    27     6    27     8    41 
+	                            15    39    19    39    21     7     6    21    25     1 
+	                             4     8    19    15    13     4     0     7    23    37 
+	                             4     9    17    37    10     3    14    37     0     0 
+	                            16     0    32     0    48     0   160     0     5     0 
+	                           119    20    37     7    25 
+	00257: PUSHB[4]             26    67   122    24 
+	00262: CALL       
+	00263: FLIPOFF    
+	00264: SRP0       
+	00265: MIRP[srp0,nmd,rd,0] 
+	00266: FLIPON     
+	00267: MIRP[nrp0,md,rd,1] 
+	00268: MIRP[srp0,md,rd,1] 
+	00269: DELTAP1    
+	00270: MIRP[nrp0,md,rd,1] 
+	00271: SVTCA[y-axis] 
+	00272: MIAP[rd+ci] 
+	00273: MIRP[nrp0,md,rd,1] 
+	00274: MIAP[rd+ci] 
+	00275: MIRP[nrp0,md,rd,1] 
+	00276: SVTCA[x-axis] 
+	00277: SRP1       
+	00278: SRP2       
+	00279: SLOOP      
+	00280: IP         
+	00281: SLOOP      
+	00282: IP         
+	00283: IUP[y]     
+	00284: IUP[x]     
+	00285: SVTCA[x-axis] 
+	00286: DELTAP2    
+	00287: DELTAP2    
+	00288: DELTAP2    
+	00289: DELTAP2    
+	00290: DELTAP2    
+	00291: DELTAP2    
+	00292: DELTAP1    
+	00293: DELTAP1    
+	00294: DELTAP1    
+	00295: DELTAP1    
+	00296: DELTAP1    
+	00297: SVTCA[y-axis] 
+	00298: DELTAP2    
+	00299: DELTAP1    
+	00300: DELTAP1    
+	00301: RS         
+	00302: NOT        
+	00303: IF         
+	00304: PUSHB[6]             22    10    28    17    63    18 
+	00311: PUSHW[1]            -10 
+	00314: PUSHB[4]             28    17    63    16 
+	00319: PUSHW[1]             -8 
+	00322: PUSHB[4]             18    24    63    22 
+	00327: PUSHW[1]             -8 
+	00330: NPUSHB      (14):    20    27    63    22    24    22    29    63    24    24 
+	                            22    29    63     9 
+	00346: PUSHW[1]            -32 
+	00349: PUSHB[4]             15    25    63    22 
+	00354: PUSHW[1]            -22 
+	00357: PUSHB[4]             15    25    63     5 
+	00362: PUSHW[1]            -42 
+	00365: PUSHB[4]             15    25    63    22 
+	00370: PUSHW[1]            -22 
+	00373: PUSHB[4]             11    18    63     5 
+	00378: PUSHW[1]            -62 
+	00381: PUSHB[4]             11    18    63     9 
+	00386: PUSHW[1]            -62 
+	00389: PUSHB[4]             11    18    63    19 
+	00394: PUSHW[1]            -62 
+	00397: PUSHB[4]             13    17    63    21 
+	00402: PUSHW[1]            -32 
+	00405: PUSHB[4]             13    17    63    21 
+	00410: PUSHW[1]            -12 
+	00413: NPUSHB      (14):    12    16    63    21    32    13    18    62    19    30 
+	                            13    18    62     1 
+	00429: PUSHW[1]            -24 
+	00432: PUSHB[4]             19    25    63    13 
+	00437: PUSHW[1]            -24 
+	00440: PUSHB[4]             19    25    63     2 
+	00445: PUSHW[1]            -24 
+	00448: PUSHB[4]             16    21    63    12 
+	00453: PUSHW[1]            -24 
+	00456: PUSHB[4]             16    21    63    24 
+	00461: PUSHW[1]            -14 
+	00464: NPUSHB      (13):    17    19    62     1    14    17    19    62    12    34 
+	                            17    19    62 
+	00479: SVTCA[x-axis] 
+	00480: CALL       
+	00481: CALL       
+	00482: CALL       
+	00483: CALL       
+	00484: CALL       
+	00485: CALL       
+	00486: CALL       
+	00487: CALL       
+	00488: CALL       
+	00489: CALL       
+	00490: CALL       
+	00491: CALL       
+	00492: CALL       
+	00493: CALL       
+	00494: CALL       
+	00495: CALL       
+	00496: CALL       
+	00497: CALL       
+	00498: SVTCA[y-axis] 
+	00499: CALL       
+	00500: CALL       
+	00501: CALL       
+	00502: CALL       
+	00503: CALL       
+	00504: CALL       
+	00505: EIF        
+	00506: SVTCA[y-axis] 
+	00507: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                              X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                                      Off
+	  7:        XDual                         On
+	  8:        XDual                         Off
+	  9:                                      Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual                 X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:  YDual XDual         Y-Short         Off
+	 16:                              X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:                              X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:                                      Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1024,   582)  ->  Abs (  1024,   582)
+	  1: Rel (     0,  -168)  ->  Abs (  1024,   414)
+	  2: Rel (  -136,  -287)  ->  Abs (   888,   127)
+	  3: Rel (  -239,  -160)  ->  Abs (   649,   -33)
+	  4: Rel (  -137,     0)  ->  Abs (   512,   -33)
+	  5: Rel (  -203,     0)  ->  Abs (   309,   -33)
+	  6: Rel (  -309,   345)  ->  Abs (     0,   312)
+	  7: Rel (     0,   270)  ->  Abs (     0,   582)
+	  8: Rel (     0,   271)  ->  Abs (     0,   853)
+	  9: Rel (   309,   344)  ->  Abs (   309,  1197)
+	 10: Rel (   203,     0)  ->  Abs (   512,  1197)
+	 11: Rel (   137,     0)  ->  Abs (   649,  1197)
+	 12: Rel (   238,  -160)  ->  Abs (   887,  1037)
+	 13: Rel (   137,  -286)  ->  Abs (  1024,   751)
+	 14: Rel (   -85,  -169)  ->  Abs (   939,   582)
+	 15: Rel (     0,   205)  ->  Abs (   939,   787)
+	 16: Rel (  -238,   326)  ->  Abs (   701,  1113)
+	 17: Rel (  -189,     0)  ->  Abs (   512,  1113)
+	 18: Rel (  -177,     0)  ->  Abs (   335,  1113)
+	 19: Rel (  -251,  -311)  ->  Abs (    84,   802)
+	 20: Rel (     0,  -220)  ->  Abs (    84,   582)
+	 21: Rel (     0,  -234)  ->  Abs (    84,   348)
+	 22: Rel (   263,  -297)  ->  Abs (   347,    51)
+	 23: Rel (   165,     0)  ->  Abs (   512,    51)
+	 24: Rel (   189,     0)  ->  Abs (   701,    51)
+	 25: Rel (   238,   325)  ->  Abs (   939,   376)
+
+	Glyph  51: off = 0x0000430E, len = 376
+	  numberOfContours:	2
+	  xMin:			179
+	  yMin:			0
+	  xMax:			1115
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  35
+	  1:  45
+
+	  Length of Instructions:	240
+	00000: NPUSHB      (24):     4    26     4    27     7    30     0    31    19    27 
+	                            18    31    37    27    53    27    69    27   185    43 
+	                            10    42    18    39 
+	00026: PUSHW[1]            -18 
+	00029: NPUSHB      (16):   117    26   132    26     2    39     8    42     8   147 
+	                            26   149    31     2     9    15 
+	00047: PUSHW[1]            676 
+	00050: NPUSHB      (11):    12    43    16    12    12    15    16    29     9     8 
+	                             2 
+	00063: PUSHW[1]            676 
+	00066: NPUSHB      (11):     5    54     1     5     5     2     1    29     8    24 
+	                            18 
+	00079: PUSHW[1]            676 
+	00082: NPUSHB      (49):    21    43    17    21    21    18    17    29    24    44 
+	                            18    38    25    24     2    35     0    30    37    18 
+	                            15    36    63    36     2    36    36    24     9     8 
+	                             8    41    37    15    28     1    28    26    47    45 
+	                             1    30    17    16    25    46   246   121    24 
+	00133: PUSHW[1]            300 
+	00136: SCANCTRL   
+	00137: CALL       
+	00138: FLIPOFF    
+	00139: SRP0       
+	00140: MIRP[srp0,nmd,rd,0] 
+	00141: ALIGNRP    
+	00142: FLIPON     
+	00143: MIRP[srp0,md,rd,1] 
+	00144: ALIGNRP    
+	00145: FLIPOFF    
+	00146: SRP0       
+	00147: MIRP[srp0,nmd,rd,2] 
+	00148: DELTAP1    
+	00149: FLIPON     
+	00150: MIRP[nrp0,md,rd,1] 
+	00151: SVTCA[y-axis] 
+	00152: MIAP[rd+ci] 
+	00153: ALIGNRP    
+	00154: SRP2       
+	00155: IP         
+	00156: MDAP[rd]   
+	00157: DELTAP1    
+	00158: SVTCA[y-axis] 
+	00159: RS         
+	00160: NOT        
+	00161: IF         
+	00162: NPUSHB      (15):    36    64    11    18    63    36    64     9    15    63 
+	                            36    64    11    15    63 
+	00179: CALL       
+	00180: CALL       
+	00181: CALL       
+	00182: EIF        
+	00183: ALIGNRP    
+	00184: MIRP[srp0,md,rd,1] 
+	00185: ALIGNRP    
+	00186: MIAP[rd+ci] 
+	00187: ALIGNRP    
+	00188: MIRP[srp0,md,rd,1] 
+	00189: ALIGNRP    
+	00190: SRP0       
+	00191: MIRP[srp0,md,rd,1] 
+	00192: RTDG       
+	00193: SRP2       
+	00194: IP         
+	00195: MDAP[rd]   
+	00196: RTG        
+	00197: SVTCA[x-axis] 
+	00198: SRP0       
+	00199: MIRP[srp0,nmd,rd,1] 
+	00200: MIRP[srp0,nmd,rd,0] 
+	00201: MDRP[nrp0,nmd,rd,0] 
+	00202: SVTCA[y-axis] 
+	00203: SRP0       
+	00204: MIRP[srp0,md,rd,1] 
+	00205: RTDG       
+	00206: SRP2       
+	00207: IP         
+	00208: MDAP[rd]   
+	00209: RTG        
+	00210: SVTCA[x-axis] 
+	00211: SRP0       
+	00212: MIRP[srp0,nmd,rd,1] 
+	00213: MIRP[srp0,nmd,rd,0] 
+	00214: MDRP[nrp0,nmd,rd,0] 
+	00215: SVTCA[y-axis] 
+	00216: SRP0       
+	00217: MIRP[srp0,md,rd,1] 
+	00218: RTDG       
+	00219: SRP2       
+	00220: IP         
+	00221: MDAP[rd]   
+	00222: RTG        
+	00223: SVTCA[x-axis] 
+	00224: SRP0       
+	00225: MIRP[srp0,nmd,rd,1] 
+	00226: MIRP[srp0,nmd,rd,0] 
+	00227: MDRP[nrp0,nmd,rd,0] 
+	00228: IUP[y]     
+	00229: IUP[x]     
+	00230: SVTCA[x-axis] 
+	00231: DELTAP1    
+	00232: SHPIX      
+	00233: SHPIX      
+	00234: SVTCA[y-axis] 
+	00235: DELTAP2    
+	00236: SHPIX      
+	00237: SHPIX      
+	00238: SVTCA[x-axis] 
+	00239: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual                               On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:                      Y-Short X-Short Off
+	 31:                      Y-Short X-Short On
+	 32:                      Y-Short X-Short Off
+	 33:                      Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual               Y-Short         On
+	 37:  YDual                               On
+	 38:  YDual XDual                 X-Short Off
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   432,   480)  ->  Abs (   432,   480)
+	  1: Rel (     0,  -396)  ->  Abs (   432,    84)
+	  2: Rel (   288,     0)  ->  Abs (   720,    84)
+	  3: Rel (    30,     0)  ->  Abs (   750,    84)
+	  4: Rel (    26,   -23)  ->  Abs (   776,    61)
+	  5: Rel (     0,   -19)  ->  Abs (   776,    42)
+	  6: Rel (     0,   -18)  ->  Abs (   776,    24)
+	  7: Rel (   -26,   -24)  ->  Abs (   750,     0)
+	  8: Rel (   -30,     0)  ->  Abs (   720,     0)
+	  9: Rel (  -485,     0)  ->  Abs (   235,     0)
+	 10: Rel (   -30,     0)  ->  Abs (   205,     0)
+	 11: Rel (   -26,    24)  ->  Abs (   179,    24)
+	 12: Rel (     0,    18)  ->  Abs (   179,    42)
+	 13: Rel (     0,    19)  ->  Abs (   179,    61)
+	 14: Rel (    26,    23)  ->  Abs (   205,    84)
+	 15: Rel (    30,     0)  ->  Abs (   235,    84)
+	 16: Rel (   113,     0)  ->  Abs (   348,    84)
+	 17: Rel (     0,  1002)  ->  Abs (   348,  1086)
+	 18: Rel (  -113,     0)  ->  Abs (   235,  1086)
+	 19: Rel (   -30,     0)  ->  Abs (   205,  1086)
+	 20: Rel (   -26,    23)  ->  Abs (   179,  1109)
+	 21: Rel (     0,    19)  ->  Abs (   179,  1128)
+	 22: Rel (     0,    19)  ->  Abs (   179,  1147)
+	 23: Rel (    26,    23)  ->  Abs (   205,  1170)
+	 24: Rel (    30,     0)  ->  Abs (   235,  1170)
+	 25: Rel (   488,     0)  ->  Abs (   723,  1170)
+	 26: Rel (   173,     0)  ->  Abs (   896,  1170)
+	 27: Rel (   219,  -204)  ->  Abs (  1115,   966)
+	 28: Rel (     0,  -137)  ->  Abs (  1115,   829)
+	 29: Rel (     0,   -81)  ->  Abs (  1115,   748)
+	 30: Rel (   -71,  -130)  ->  Abs (  1044,   618)
+	 31: Rel (   -50,   -37)  ->  Abs (   994,   581)
+	 32: Rel (   -75,   -56)  ->  Abs (   919,   525)
+	 33: Rel (   -80,   -26)  ->  Abs (   839,   499)
+	 34: Rel (   -58,   -19)  ->  Abs (   781,   480)
+	 35: Rel (   -86,     0)  ->  Abs (   695,   480)
+	 36: Rel (  -263,    84)  ->  Abs (   432,   564)
+	 37: Rel (   268,     0)  ->  Abs (   700,   564)
+	 38: Rel (    93,     0)  ->  Abs (   793,   564)
+	 39: Rel (   163,    83)  ->  Abs (   956,   647)
+	 40: Rel (    75,   120)  ->  Abs (  1031,   767)
+	 41: Rel (     0,    62)  ->  Abs (  1031,   829)
+	 42: Rel (     0,    99)  ->  Abs (  1031,   928)
+	 43: Rel (  -170,   158)  ->  Abs (   861,  1086)
+	 44: Rel (  -130,     0)  ->  Abs (   731,  1086)
+	 45: Rel (  -299,     0)  ->  Abs (   432,  1086)
+
+	Glyph  52: off = 0x00004486, len = 638
+	  numberOfContours:	2
+	  xMin:			104
+	  yMin:			-239
+	  xMax:			1128
+	  yMax:			1197
+
+	EndPoints
+	---------
+	  0:  46
+	  1:  58
+
+	  Length of Instructions:	457
+	00000: NPUSHB      (95):   135    43   134    48   138    52   151    43   153    52 
+	                           168    40   166    42   164    46     8    18   106    49 
+	                           105    51     2    10    39     3    43    27    39    20 
+	                            43    20    45    38     0    74    48    67    52    67 
+	                            54    73    57    75    58    93    36    90    37    86 
+	                            39    93    48    83    51    85    52    87    55    91 
+	                            57    92    58   100    43   100    49   103    52    96 
+	                            55   174    48   163    52   160    55   189    48   182 
+	                            51   178    52   176    55   185    58   198    43   198 
+	                            48    34    48    12    55 
+	00097: PUSHW[1]             -8 
+	00100: PUSHB[7]             58    10    48     8    36    12    55 
+	00108: PUSHW[1]            -12 
+	00111: PUSHB[3]             49     8    51 
+	00115: PUSHW[1]            -12 
+	00118: NPUSHB      (89):    43    12    39     8    41    45    41    57    53    40 
+	                            63    42    58    45    58    57    73    36    71    43 
+	                           141    36   139    39   131    43   132    46   132    48 
+	                           137    54   155    36   155    39   147    43   144    46 
+	                           149    48   153    54   165     0   166    43   211    43 
+	                           233    57   250    48   246    52   246    54   250    58 
+	                            28    54    55    57    58     4    52    51    48     3 
+	                            44    38    34     1     0     0    30    35    34    20 
+	                            35    35    34    29   102    20    37     7     1 
+	00209: PUSHW[1]            342 
+	00212: PUSHB[3]             11   102     7 
+	00216: PUSHW[1]            393 
+	00219: NPUSHB      (19):     3    37    23    56    38     0     9    50    37    41 
+	                            23    41     3    35     9    14   102    44     0 
+	00240: PUSHW[1]            349 
+	00243: PUSHB[3]              1   237    32 
+	00247: PUSHW[1]            300 
+	00250: NPUSHB      (24):    53    47    37     0    44    16    44    32    44    48 
+	                            44   160    44     5    44   119    53    37    38    25 
+	                            59    67   122    24 
+	00276: PUSHW[1]            300 
+	00279: SCANCTRL   
+	00280: CALL       
+	00281: FLIPOFF    
+	00282: SRP0       
+	00283: MIRP[srp0,nmd,rd,0] 
+	00284: FLIPON     
+	00285: MIRP[nrp0,md,rd,1] 
+	00286: MIRP[srp0,md,rd,1] 
+	00287: DELTAP1    
+	00288: MIRP[nrp0,md,rd,1] 
+	00289: SRP0       
+	00290: MIRP[srp0,nmd,rd,2] 
+	00291: MIRP[srp0,md,rd,1] 
+	00292: MIRP[nrp0,nmd,rd,0] 
+	00293: SRP0       
+	00294: MIRP[nrp0,nmd,rd,0] 
+	00295: SVTCA[y-axis] 
+	00296: MIAP[rd+ci] 
+	00297: MIAP[rd+ci] 
+	00298: MDAP[rd]   
+	00299: SRP0       
+	00300: MIRP[nrp0,md,rd,1] 
+	00301: MIAP[rd+ci] 
+	00302: MIRP[nrp0,md,rd,1] 
+	00303: SRP0       
+	00304: MIRP[srp0,md,rd,1] 
+	00305: MIRP[nrp0,nmd,rd,0] 
+	00306: PUSHB[2]              6     2 
+	00309: RS         
+	00310: EQ         
+	00311: IF         
+	00312: PUSHW[2]              7   -64 
+	00317: PUSHB[3]              9    16    52 
+	00321: CALL       
+	00322: EIF        
+	00323: MIRP[nrp0,nmd,rd,0] 
+	00324: RTHG       
+	00325: MIRP[nrp0,nmd,rd,1] 
+	00326: RTG        
+	00327: SRP0       
+	00328: MIRP[srp0,md,rd,1] 
+	00329: MIRP[nrp0,nmd,rd,0] 
+	00330: SDPVTL[1]  
+	00331: SFVTCA[x-axis] 
+	00332: MDAP[nrd]  
+	00333: CALL       
+	00334: SDPVTL[1]  
+	00335: SFVTPV     
+	00336: RDTG       
+	00337: MDRP[nrp0,nmd,rd,0] 
+	00338: SVTCA[x-axis] 
+	00339: SRP1       
+	00340: SRP2       
+	00341: SLOOP      
+	00342: IP         
+	00343: SLOOP      
+	00344: IP         
+	00345: IUP[y]     
+	00346: IUP[x]     
+	00347: SVTCA[x-axis] 
+	00348: DELTAP1    
+	00349: SHPIX      
+	00350: SHPIX      
+	00351: SHPIX      
+	00352: SHPIX      
+	00353: SHPIX      
+	00354: SHPIX      
+	00355: SHPIX      
+	00356: SHPIX      
+	00357: SHPIX      
+	00358: SHPIX      
+	00359: SVTCA[x-axis] 
+	00360: DELTAP2    
+	00361: SVTCA[y-axis] 
+	00362: DELTAP2    
+	00363: RS         
+	00364: NOT        
+	00365: IF         
+	00366: NPUSHB      (70):    35    60    25    15    63    46   100    30    18    63 
+	                            43    40    30    18    63    46    10    28    17    63 
+	                            54    30    28    17    63    52    30    28    17    63 
+	                            54    20    27    16    63    52    20    27    16    63 
+	                            54    30    25    15    63    54    20    23    14    63 
+	                            52    20    23    14    63    54    20    22    13    63 
+	                            52    20    22    13    63    43    20    13    17    63 
+	00438: SVTCA[x-axis] 
+	00439: CALL       
+	00440: CALL       
+	00441: CALL       
+	00442: CALL       
+	00443: CALL       
+	00444: CALL       
+	00445: CALL       
+	00446: CALL       
+	00447: CALL       
+	00448: CALL       
+	00449: CALL       
+	00450: CALL       
+	00451: CALL       
+	00452: SVTCA[y-axis] 
+	00453: CALL       
+	00454: EIF        
+	00455: SVTCA[x-axis] 
+	00456: DELTAP1    
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:                      Y-Short X-Short On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:                      Y-Short X-Short On
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short On
+	 28:                      Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual               Y-Short X-Short Off
+	 37:                              X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:        XDual                         Off
+	 40:                                      Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:                                      Off
+	 44:        XDual                         On
+	 45:        XDual                         Off
+	 46:                                      Off
+	 47:        XDual                 X-Short On
+	 48:  YDual XDual         Y-Short         Off
+	 49:                              X-Short Off
+	 50:  YDual                       X-Short On
+	 51:  YDual                       X-Short Off
+	 52:                              X-Short Off
+	 53:        XDual         Y-Short         On
+	 54:        XDual         Y-Short         Off
+	 55:                                      Off
+	 56:  YDual XDual                 X-Short On
+	 57:  YDual XDual                 X-Short Off
+	 58:        XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   626,   -33)  ->  Abs (   626,   -33)
+	  1: Rel (  -112,   -84)  ->  Abs (   514,  -117)
+	  2: Rel (    83,    17)  ->  Abs (   597,  -100)
+	  3: Rel (    54,     0)  ->  Abs (   651,  -100)
+	  4: Rel (    88,     0)  ->  Abs (   739,  -100)
+	  5: Rel (    85,   -32)  ->  Abs (   824,  -132)
+	  6: Rel (    60,   -23)  ->  Abs (   884,  -155)
+	  7: Rel (    33,     0)  ->  Abs (   917,  -155)
+	  8: Rel (    58,     0)  ->  Abs (   975,  -155)
+	  9: Rel (    71,    47)  ->  Abs (  1046,  -108)
+	 10: Rel (    28,    18)  ->  Abs (  1074,   -90)
+	 11: Rel (    12,     0)  ->  Abs (  1086,   -90)
+	 12: Rel (    18,     0)  ->  Abs (  1104,   -90)
+	 13: Rel (    23,   -23)  ->  Abs (  1127,  -113)
+	 14: Rel (     0,   -19)  ->  Abs (  1127,  -132)
+	 15: Rel (     0,   -15)  ->  Abs (  1127,  -147)
+	 16: Rel (   -10,   -11)  ->  Abs (  1117,  -158)
+	 17: Rel (   -21,   -24)  ->  Abs (  1096,  -182)
+	 18: Rel (   -74,   -32)  ->  Abs (  1022,  -214)
+	 19: Rel (   -56,   -25)  ->  Abs (   966,  -239)
+	 20: Rel (   -54,     0)  ->  Abs (   912,  -239)
+	 21: Rel (   -42,     0)  ->  Abs (   870,  -239)
+	 22: Rel (  -148,    54)  ->  Abs (   722,  -185)
+	 23: Rel (   -69,     0)  ->  Abs (   653,  -185)
+	 24: Rel (   -49,     0)  ->  Abs (   604,  -185)
+	 25: Rel (   -72,   -12)  ->  Abs (   532,  -197)
+	 26: Rel (  -101,   -17)  ->  Abs (   431,  -214)
+	 27: Rel (   -61,   -17)  ->  Abs (   370,  -231)
+	 28: Rel (   -20,    -5)  ->  Abs (   350,  -236)
+	 29: Rel (    -9,     0)  ->  Abs (   341,  -236)
+	 30: Rel (   -17,     0)  ->  Abs (   324,  -236)
+	 31: Rel (   -24,    24)  ->  Abs (   300,  -212)
+	 32: Rel (     0,    20)  ->  Abs (   300,  -192)
+	 33: Rel (     0,    20)  ->  Abs (   300,  -172)
+	 34: Rel (    23,    16)  ->  Abs (   323,  -156)
+	 35: Rel (   187,   135)  ->  Abs (   510,   -21)
+	 36: Rel (  -167,    41)  ->  Abs (   343,    20)
+	 37: Rel (  -239,   330)  ->  Abs (   104,   350)
+	 38: Rel (     0,   232)  ->  Abs (   104,   582)
+	 39: Rel (     0,   271)  ->  Abs (   104,   853)
+	 40: Rel (   309,   344)  ->  Abs (   413,  1197)
+	 41: Rel (   203,     0)  ->  Abs (   616,  1197)
+	 42: Rel (   203,     0)  ->  Abs (   819,  1197)
+	 43: Rel (   309,  -344)  ->  Abs (  1128,   853)
+	 44: Rel (     0,  -271)  ->  Abs (  1128,   582)
+	 45: Rel (     0,  -267)  ->  Abs (  1128,   315)
+	 46: Rel (  -304,  -345)  ->  Abs (   824,   -30)
+	 47: Rel (   219,   612)  ->  Abs (  1043,   582)
+	 48: Rel (     0,   205)  ->  Abs (  1043,   787)
+	 49: Rel (  -238,   326)  ->  Abs (   805,  1113)
+	 50: Rel (  -189,     0)  ->  Abs (   616,  1113)
+	 51: Rel (  -177,     0)  ->  Abs (   439,  1113)
+	 52: Rel (  -251,  -311)  ->  Abs (   188,   802)
+	 53: Rel (     0,  -220)  ->  Abs (   188,   582)
+	 54: Rel (     0,  -234)  ->  Abs (   188,   348)
+	 55: Rel (   263,  -297)  ->  Abs (   451,    51)
+	 56: Rel (   165,     0)  ->  Abs (   616,    51)
+	 57: Rel (   189,     0)  ->  Abs (   805,    51)
+	 58: Rel (   238,   325)  ->  Abs (  1043,   376)
+
+	Glyph  53: off = 0x00004704, len = 576
+	  numberOfContours:	2
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1214
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  45
+	  1:  55
+
+	  Length of Instructions:	417
+	00000: PUSHW[2]             33   -60 
+	00005: NPUSHB      (78):    32    33    62    43    20    23    24    62    91    53 
+	                           102    49   117    49     3     7    43    58    49    74 
+	                            49    90    26    88    49   116    32   116    44   120 
+	                            53   141    53   165    42   170    49   207    38   213 
+	                            31   211    32   223    38   213    45   239    38    17 
+	                            15    38     9    49    69    31    70    33   120    44 
+	                           133    31   138    44   145    31   162    31   171    44 
+	                           200    32   201    33   230    43    13    30 
+	00085: PUSHW[4]             -8     9    15   676 
+	00094: NPUSHB      (11):    12    43    16    12    12    15    16    29     9     8 
+	                             2 
+	00107: PUSHW[1]            676 
+	00110: NPUSHB      (11):     5    51     1     5     5     2     1    29     8    24 
+	                            18 
+	00123: PUSHW[1]            676 
+	00126: NPUSHB      (59):    21    43    17    21    21    18    17    29    24    44 
+	                            31    32    42    43    33     6    34    45    44    35 
+	                            31    46     0    54    38    25    25    18    38    24 
+	                             2    45     0    30    47    46    64    11    18    63 
+	                            46    64    11    15    63    46    46     8    24    41 
+	                            35    38    42    42     9     9     8     8    31 
+	00187: PUSHW[3]            634    45   672 
+	00194: NPUSHB      (13):     0     0    55     1    30    16    51    37    28     0 
+	                            38     1    38 
+	00209: PUSHW[1]            349 
+	00212: PUSHB[6]            127    28   143    28     2    28 
+	00219: PUSHW[1]            296 
+	00222: NPUSHB      (13):     0    34     1    80    34   160    34   208    34   240 
+	                            34     4    34 
+	00237: PUSHW[1]            541 
+	00240: NPUSHB      (15):    17    64    16     1    47    16   240    16     2    16 
+	                            25    56    74   108    24 
+	00257: PUSHW[1]            300 
+	00260: SCANCTRL   
+	00261: CALL       
+	00262: FLIPOFF    
+	00263: SRP0       
+	00264: MIRP[srp0,nmd,rd,0] 
+	00265: DELTAP1    
+	00266: DELTAP2    
+	00267: ALIGNRP    
+	00268: FLIPON     
+	00269: MIRP[srp0,md,rd,1] 
+	00270: DELTAP1    
+	00271: DELTAP2    
+	00272: MIRP[nrp0,nmd,rd,0] 
+	00273: DELTAP1    
+	00274: MIRP[nrp0,nmd,rd,0] 
+	00275: DELTAP1    
+	00276: SRP0       
+	00277: MIRP[nrp0,md,rd,1] 
+	00278: SRP0       
+	00279: MIRP[srp0,md,rd,1] 
+	00280: ALIGNRP    
+	00281: ALIGNRP    
+	00282: SRP0       
+	00283: MIRP[srp0,nmd,rd,2] 
+	00284: MIRP[nrp0,md,rd,1] 
+	00285: SVTCA[y-axis] 
+	00286: MIAP[rd+ci] 
+	00287: ALIGNRP    
+	00288: SRP0       
+	00289: ALIGNRP    
+	00290: SRP0       
+	00291: MIRP[nrp0,md,rd,1] 
+	00292: ALIGNRP    
+	00293: SRP1       
+	00294: SRP2       
+	00295: IP         
+	00296: MDAP[rd]   
+	00297: SVTCA[y-axis] 
+	00298: CALL       
+	00299: CALL       
+	00300: ALIGNRP    
+	00301: MIRP[srp0,md,rd,1] 
+	00302: ALIGNRP    
+	00303: MIAP[rd+ci] 
+	00304: MIRP[nrp0,md,rd,1] 
+	00305: ALIGNRP    
+	00306: SRP0       
+	00307: MIRP[nrp0,md,rd,1] 
+	00308: SRP1       
+	00309: SRP2       
+	00310: IP         
+	00311: SRP2       
+	00312: IP         
+	00313: SVTCA[x-axis] 
+	00314: SRP1       
+	00315: SRP2       
+	00316: SLOOP      
+	00317: IP         
+	00318: SVTCA[y-axis] 
+	00319: SRP0       
+	00320: MIRP[srp0,md,rd,1] 
+	00321: RTDG       
+	00322: SRP2       
+	00323: IP         
+	00324: MDAP[rd]   
+	00325: RTG        
+	00326: SVTCA[x-axis] 
+	00327: SRP0       
+	00328: MIRP[srp0,nmd,rd,1] 
+	00329: MIRP[srp0,nmd,rd,0] 
+	00330: MDRP[nrp0,nmd,rd,0] 
+	00331: SVTCA[y-axis] 
+	00332: SRP0       
+	00333: MIRP[srp0,md,rd,1] 
+	00334: RTDG       
+	00335: SRP2       
+	00336: IP         
+	00337: MDAP[rd]   
+	00338: RTG        
+	00339: SVTCA[x-axis] 
+	00340: SRP0       
+	00341: MIRP[srp0,nmd,rd,1] 
+	00342: MIRP[srp0,nmd,rd,0] 
+	00343: MDRP[nrp0,nmd,rd,0] 
+	00344: SVTCA[y-axis] 
+	00345: SRP0       
+	00346: MIRP[srp0,md,rd,1] 
+	00347: RTDG       
+	00348: SRP2       
+	00349: IP         
+	00350: MDAP[rd]   
+	00351: RTG        
+	00352: SVTCA[x-axis] 
+	00353: SRP0       
+	00354: MIRP[srp0,nmd,rd,1] 
+	00355: MIRP[srp0,nmd,rd,0] 
+	00356: MDRP[nrp0,nmd,rd,0] 
+	00357: IUP[y]     
+	00358: IUP[x]     
+	00359: SVTCA[x-axis] 
+	00360: SHPIX      
+	00361: SVTCA[y-axis] 
+	00362: MPPEM      
+	00363: PUSHB[1]             18 
+	00365: GTEQ       
+	00366: MPPEM      
+	00367: PUSHB[1]             36 
+	00369: LTEQ       
+	00370: AND        
+	00371: IF         
+	00372: PUSHB[3]             31    12    32 
+	00376: PUSHW[3]            -12    33   -12 
+	00383: PUSHB[5]             43    12    53    22    31 
+	00389: PUSHW[1]            -10 
+	00392: PUSHB[3]             52    32    49 
+	00396: PUSHW[1]            -22 
+	00399: SHPIX      
+	00400: SHPIX      
+	00401: SHPIX      
+	00402: SHPIX      
+	00403: SHPIX      
+	00404: SHPIX      
+	00405: SHPIX      
+	00406: SVTCA[y-axis] 
+	00407: SHPIX      
+	00408: EIF        
+	00409: SVTCA[x-axis] 
+	00410: DELTAP2    
+	00411: DELTAP1    
+	00412: SVTCA[y-axis] 
+	00413: DELTAP1    
+	00414: SVTCA[x-axis] 
+	00415: CALL       
+	00416: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual                               On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:                      Y-Short X-Short Off
+	 31:                      Y-Short X-Short On
+	 32:        XDual         Y-Short X-Short Off
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short X-Short On
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:                      Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short On
+	 43:                              X-Short Off
+	 44:  YDual               Y-Short X-Short Off
+	 45:  YDual               Y-Short X-Short On
+	 46:  YDual               Y-Short         On
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short Off
+	 49:  YDual XDual         Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         Off
+	 53:  YDual               Y-Short X-Short Off
+	 54:  YDual                       X-Short On
+	 55:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   341,   522)  ->  Abs (   341,   522)
+	  1: Rel (     0,  -438)  ->  Abs (   341,    84)
+	  2: Rel (   155,     0)  ->  Abs (   496,    84)
+	  3: Rel (    31,     0)  ->  Abs (   527,    84)
+	  4: Rel (    26,   -23)  ->  Abs (   553,    61)
+	  5: Rel (     0,   -19)  ->  Abs (   553,    42)
+	  6: Rel (     0,   -18)  ->  Abs (   553,    24)
+	  7: Rel (   -26,   -24)  ->  Abs (   527,     0)
+	  8: Rel (   -31,     0)  ->  Abs (   496,     0)
+	  9: Rel (  -352,     0)  ->  Abs (   144,     0)
+	 10: Rel (   -30,     0)  ->  Abs (   114,     0)
+	 11: Rel (   -26,    24)  ->  Abs (    88,    24)
+	 12: Rel (     0,    18)  ->  Abs (    88,    42)
+	 13: Rel (     0,    19)  ->  Abs (    88,    61)
+	 14: Rel (    26,    23)  ->  Abs (   114,    84)
+	 15: Rel (    30,     0)  ->  Abs (   144,    84)
+	 16: Rel (   113,     0)  ->  Abs (   257,    84)
+	 17: Rel (     0,  1002)  ->  Abs (   257,  1086)
+	 18: Rel (  -113,     0)  ->  Abs (   144,  1086)
+	 19: Rel (   -30,     0)  ->  Abs (   114,  1086)
+	 20: Rel (   -26,    23)  ->  Abs (    88,  1109)
+	 21: Rel (     0,    19)  ->  Abs (    88,  1128)
+	 22: Rel (     0,    19)  ->  Abs (    88,  1147)
+	 23: Rel (    26,    23)  ->  Abs (   114,  1170)
+	 24: Rel (    30,     0)  ->  Abs (   144,  1170)
+	 25: Rel (   508,     0)  ->  Abs (   652,  1170)
+	 26: Rel (   157,     0)  ->  Abs (   809,  1170)
+	 27: Rel (   215,  -199)  ->  Abs (  1024,   971)
+	 28: Rel (     0,  -125)  ->  Abs (  1024,   846)
+	 29: Rel (     0,   -90)  ->  Abs (  1024,   756)
+	 30: Rel (  -133,  -159)  ->  Abs (   891,   597)
+	 31: Rel (  -156,   -53)  ->  Abs (   735,   544)
+	 32: Rel (    90,   -62)  ->  Abs (   825,   482)
+	 33: Rel (   128,  -156)  ->  Abs (   953,   326)
+	 34: Rel (   141,  -242)  ->  Abs (  1094,    84)
+	 35: Rel (    64,     0)  ->  Abs (  1158,    84)
+	 36: Rel (    30,     0)  ->  Abs (  1188,    84)
+	 37: Rel (    26,   -23)  ->  Abs (  1214,    61)
+	 38: Rel (     0,   -19)  ->  Abs (  1214,    42)
+	 39: Rel (     0,   -18)  ->  Abs (  1214,    24)
+	 40: Rel (   -26,   -24)  ->  Abs (  1188,     0)
+	 41: Rel (   -30,     0)  ->  Abs (  1158,     0)
+	 42: Rel (  -112,     0)  ->  Abs (  1046,     0)
+	 43: Rel (  -156,   279)  ->  Abs (   890,   279)
+	 44: Rel (  -171,   190)  ->  Abs (   719,   469)
+	 45: Rel (  -111,    53)  ->  Abs (   608,   522)
+	 46: Rel (  -267,    84)  ->  Abs (   341,   606)
+	 47: Rel (   229,     0)  ->  Abs (   570,   606)
+	 48: Rel (   110,     0)  ->  Abs (   680,   606)
+	 49: Rel (   179,    80)  ->  Abs (   859,   686)
+	 50: Rel (    81,   108)  ->  Abs (   940,   794)
+	 51: Rel (     0,    56)  ->  Abs (   940,   850)
+	 52: Rel (     0,    84)  ->  Abs (   940,   934)
+	 53: Rel (  -169,   152)  ->  Abs (   771,  1086)
+	 54: Rel (  -121,     0)  ->  Abs (   650,  1086)
+	 55: Rel (  -309,     0)  ->  Abs (   341,  1086)
+
+	Glyph  54: off = 0x00004944, len = 408
+	  numberOfContours:	1
+	  xMin:			185
+	  yMin:			-33
+	  xMax:			1044
+	  yMax:			1197
+
+	EndPoints
+	---------
+	  0:  68
+
+	  Length of Instructions:	219
+	00000: NPUSHB      (42):    61    51    76    27    79    51    93    51   119    22 
+	                           134    22   135    26   137    27   140    57   153    66 
+	                            10    73    32    70    65     2   145    31   162    31 
+	                           169    65   168    66   213    23   230    23   245    23 
+	                             7    27 
+	00044: PUSHW[1]            -10 
+	00047: PUSHB[3]             19    24    54 
+	00051: PUSHW[1]            -34 
+	00054: NPUSHB      (89):    43    64    41    61    59    26    24    15     5    20 
+	                             0     1    55    14    50    48    35     3    46    52 
+	                            15    13     0     3    17    11    25    38    60    60 
+	                            52    17    37    67    11   139     4    46   139    39 
+	                            52    37    33    67     3     4     2    39     8    33 
+	                             9    14    38     8    96    55    37    95    30   111 
+	                            30     2    30    26    70    20    37    64    49    38 
+	                            35    38    64    65   111    41   127    41   143    41 
+	                           159    41   175    41     5    41    25    69   157 
+	00145: PUSHW[3]            287    24   300 
+	00152: SCANCTRL   
+	00153: CALL       
+	00154: FLIPOFF    
+	00155: SRP0       
+	00156: MIRP[srp0,nmd,rd,0] 
+	00157: DELTAP1    
+	00158: FLIPON     
+	00159: MIRP[nrp0,nmd,rd,0] 
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: MIRP[nrp0,md,rd,1] 
+	00162: SRP0       
+	00163: MIRP[nrp0,md,rd,1] 
+	00164: FLIPOFF    
+	00165: SRP0       
+	00166: MIRP[srp0,nmd,rd,2] 
+	00167: DELTAP1    
+	00168: FLIPON     
+	00169: MIRP[srp0,md,rd,1] 
+	00170: MIRP[srp0,md,rd,1] 
+	00171: MIRP[nrp0,md,rd,1] 
+	00172: SVTCA[y-axis] 
+	00173: MIAP[rd+ci] 
+	00174: MIAP[rd+ci] 
+	00175: MIAP[rd+ci] 
+	00176: MIAP[rd+ci] 
+	00177: SRP0       
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: SRP0       
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: SRP0       
+	00182: MIRP[nrp0,md,rd,1] 
+	00183: SRP0       
+	00184: MIRP[srp0,md,rd,1] 
+	00185: SRP1       
+	00186: IP         
+	00187: MDAP[rd]   
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: SRP1       
+	00190: SRP2       
+	00191: SLOOP      
+	00192: IP         
+	00193: SRP1       
+	00194: SRP2       
+	00195: SLOOP      
+	00196: IP         
+	00197: SVTCA[x-axis] 
+	00198: SRP1       
+	00199: SRP2       
+	00200: IP         
+	00201: IP         
+	00202: SRP2       
+	00203: SLOOP      
+	00204: IP         
+	00205: SRP1       
+	00206: SRP2       
+	00207: IP         
+	00208: IUP[y]     
+	00209: IUP[x]     
+	00210: SVTCA[y-axis] 
+	00211: SHPIX      
+	00212: SHPIX      
+	00213: SHPIX      
+	00214: SVTCA[x-axis] 
+	00215: DELTAP1    
+	00216: SVTCA[y-axis] 
+	00217: DELTAP2    
+	00218: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short         Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:                      Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:        XDual Rep-  2 Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual               Y-Short X-Short On
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:        XDual         Y-Short X-Short Off
+	 49:        XDual         Y-Short X-Short On
+	 50:        XDual         Y-Short X-Short Off
+	 51:        XDual         Y-Short X-Short Off
+	 52:  YDual XDual                 X-Short On
+	 53:  YDual XDual                 X-Short Off
+	 54:  YDual XDual         Y-Short X-Short Off
+	 55:  YDual XDual         Y-Short         On
+	 56:  YDual XDual         Y-Short         Off
+	 57:  YDual               Y-Short X-Short Off
+	 58:  YDual               Y-Short X-Short On
+	 59:  YDual               Y-Short X-Short Off
+	 60:  YDual               Y-Short X-Short On
+	 61:  YDual               Y-Short X-Short Off
+	 62:  YDual               Y-Short X-Short On
+	 63:  YDual               Y-Short X-Short Off
+	 64:  YDual XDual         Y-Short         On
+	 65:  YDual XDual         Y-Short         Off
+	 66:  YDual XDual         Y-Short X-Short Off
+	 67:  YDual XDual                 X-Short On
+	 68:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   915,  1086)  ->  Abs (   915,  1086)
+	  1: Rel (     0,    28)  ->  Abs (   915,  1114)
+	  2: Rel (     0,    30)  ->  Abs (   915,  1144)
+	  3: Rel (    23,    26)  ->  Abs (   938,  1170)
+	  4: Rel (    19,     0)  ->  Abs (   957,  1170)
+	  5: Rel (    19,     0)  ->  Abs (   976,  1170)
+	  6: Rel (    23,   -26)  ->  Abs (   999,  1144)
+	  7: Rel (     0,   -30)  ->  Abs (   999,  1114)
+	  8: Rel (     0,  -214)  ->  Abs (   999,   900)
+	  9: Rel (     0,   -30)  ->  Abs (   999,   870)
+	 10: Rel (   -23,   -26)  ->  Abs (   976,   844)
+	 11: Rel (   -19,     0)  ->  Abs (   957,   844)
+	 12: Rel (   -18,     0)  ->  Abs (   939,   844)
+	 13: Rel (   -23,    24)  ->  Abs (   916,   868)
+	 14: Rel (    -1,    27)  ->  Abs (   915,   895)
+	 15: Rel (    -5,    84)  ->  Abs (   910,   979)
+	 16: Rel (  -163,   134)  ->  Abs (   747,  1113)
+	 17: Rel (  -132,     0)  ->  Abs (   615,  1113)
+	 18: Rel (  -139,     0)  ->  Abs (   476,  1113)
+	 19: Rel (  -164,  -143)  ->  Abs (   312,   970)
+	 20: Rel (     0,   -97)  ->  Abs (   312,   873)
+	 21: Rel (     0,   -50)  ->  Abs (   312,   823)
+	 22: Rel (    46,   -82)  ->  Abs (   358,   741)
+	 23: Rel (    76,   -51)  ->  Abs (   434,   690)
+	 24: Rel (    96,   -31)  ->  Abs (   530,   659)
+	 25: Rel (   102,   -17)  ->  Abs (   632,   642)
+	 26: Rel (   171,   -28)  ->  Abs (   803,   614)
+	 27: Rel (    65,   -29)  ->  Abs (   868,   585)
+	 28: Rel (    87,   -39)  ->  Abs (   955,   546)
+	 29: Rel (    89,  -138)  ->  Abs (  1044,   408)
+	 30: Rel (     0,   -94)  ->  Abs (  1044,   314)
+	 31: Rel (     0,  -144)  ->  Abs (  1044,   170)
+	 32: Rel (  -230,  -203)  ->  Abs (   814,   -33)
+	 33: Rel (  -195,     0)  ->  Abs (   619,   -33)
+	 34: Rel (  -219,     0)  ->  Abs (   400,   -33)
+	 35: Rel (  -131,   137)  ->  Abs (   269,   104)
+	 36: Rel (     0,   -48)  ->  Abs (   269,    56)
+	 37: Rel (     0,   -30)  ->  Abs (   269,    26)
+	 38: Rel (   -23,   -26)  ->  Abs (   246,     0)
+	 39: Rel (   -19,     0)  ->  Abs (   227,     0)
+	 40: Rel (   -18,     0)  ->  Abs (   209,     0)
+	 41: Rel (   -24,    26)  ->  Abs (   185,    26)
+	 42: Rel (     0,    30)  ->  Abs (   185,    56)
+	 43: Rel (     0,   232)  ->  Abs (   185,   288)
+	 44: Rel (     0,    31)  ->  Abs (   185,   319)
+	 45: Rel (    23,    26)  ->  Abs (   208,   345)
+	 46: Rel (    19,     0)  ->  Abs (   227,   345)
+	 47: Rel (    18,     0)  ->  Abs (   245,   345)
+	 48: Rel (    23,   -24)  ->  Abs (   268,   321)
+	 49: Rel (     1,   -27)  ->  Abs (   269,   294)
+	 50: Rel (     5,   -92)  ->  Abs (   274,   202)
+	 51: Rel (   187,  -151)  ->  Abs (   461,    51)
+	 52: Rel (   158,     0)  ->  Abs (   619,    51)
+	 53: Rel (   158,     0)  ->  Abs (   777,    51)
+	 54: Rel (   183,   158)  ->  Abs (   960,   209)
+	 55: Rel (     0,   108)  ->  Abs (   960,   317)
+	 56: Rel (     0,    66)  ->  Abs (   960,   383)
+	 57: Rel (   -70,   103)  ->  Abs (   890,   486)
+	 58: Rel (   -69,    30)  ->  Abs (   821,   516)
+	 59: Rel (   -48,    21)  ->  Abs (   773,   537)
+	 60: Rel (  -152,    26)  ->  Abs (   621,   563)
+	 61: Rel (  -209,    35)  ->  Abs (   412,   598)
+	 62: Rel (   -92,    72)  ->  Abs (   320,   670)
+	 63: Rel (   -92,    72)  ->  Abs (   228,   742)
+	 64: Rel (     0,   133)  ->  Abs (   228,   875)
+	 65: Rel (     0,   132)  ->  Abs (   228,  1007)
+	 66: Rel (   211,   190)  ->  Abs (   439,  1197)
+	 67: Rel (   173,     0)  ->  Abs (   612,  1197)
+	 68: Rel (   176,     0)  ->  Abs (   788,  1197)
+
+	Glyph  55: off = 0x00004ADC, len = 248
+	  numberOfContours:	1
+	  xMin:			143
+	  yMin:			0
+	  xMax:			1084
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  35
+
+	  Length of Instructions:	142
+	00000: NPUSHB      (42):    15     9    12    53    16    16    29     9    34    28 
+	                            31    54    35    35    29    28     2     8     5    53 
+	                             1     1    29     8    19    25    22    54    18    18 
+	                            29    25    35    18    30    27    26     2     9     8 
+	                             8    25 
+	00044: PUSHW[1]            367 
+	00047: PUSHB[7]             16    16    17    30     0     0     1 
+	00055: PUSHW[1]            367 
+	00058: NPUSHB      (32):    16    28    47    28    96    28   207    28     4    15 
+	                            28    63    28    79    28    95    28   112    28   143 
+	                            28   175    28   223    28     8    28   233    37   194 
+	                           111    24 
+	00092: CALL       
+	00093: SRP0       
+	00094: MIRP[srp0,nmd,rd,2] 
+	00095: DELTAP1    
+	00096: DELTAP2    
+	00097: MIRP[srp0,nmd,rd,0] 
+	00098: ALIGNRP    
+	00099: SRP0       
+	00100: MIRP[srp0,md,rd,1] 
+	00101: ALIGNRP    
+	00102: SRP0       
+	00103: MIRP[nrp0,nmd,rd,0] 
+	00104: SVTCA[y-axis] 
+	00105: MIAP[rd+ci] 
+	00106: ALIGNRP    
+	00107: MIAP[rd+ci] 
+	00108: ALIGNRP    
+	00109: MIRP[srp0,md,rd,1] 
+	00110: ALIGNRP    
+	00111: SVTCA[x-axis] 
+	00112: SRP0       
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: SVTCA[y-axis] 
+	00115: SRP0       
+	00116: MIRP[srp0,nmd,rd,1] 
+	00117: MDRP[srp0,nmd,rd,0] 
+	00118: ALIGNRP    
+	00119: SRP0       
+	00120: MIRP[nrp0,md,rd,1] 
+	00121: SVTCA[x-axis] 
+	00122: SRP0       
+	00123: MIRP[srp0,nmd,rd,1] 
+	00124: MDRP[srp0,nmd,rd,0] 
+	00125: ALIGNRP    
+	00126: SRP0       
+	00127: MIRP[nrp0,md,rd,1] 
+	00128: SVTCA[y-axis] 
+	00129: SRP0       
+	00130: MIRP[srp0,nmd,rd,1] 
+	00131: MDRP[srp0,nmd,rd,0] 
+	00132: ALIGNRP    
+	00133: SRP0       
+	00134: MIRP[nrp0,md,rd,1] 
+	00135: SVTCA[x-axis] 
+	00136: SRP0       
+	00137: MIRP[srp0,nmd,rd,1] 
+	00138: MDRP[srp0,nmd,rd,0] 
+	00139: ALIGNRP    
+	00140: IUP[y]     
+	00141: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:  YDual                               On
+	 19:        XDual                         On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:        XDual                         On
+	 27:  YDual                               On
+	 28:        XDual                         On
+	 29:        XDual         Y-Short         Off
+	 30:                      Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   656,  1086)  ->  Abs (   656,  1086)
+	  1: Rel (     0, -1002)  ->  Abs (   656,    84)
+	  2: Rel (   218,     0)  ->  Abs (   874,    84)
+	  3: Rel (    30,     0)  ->  Abs (   904,    84)
+	  4: Rel (    26,   -23)  ->  Abs (   930,    61)
+	  5: Rel (     0,   -19)  ->  Abs (   930,    42)
+	  6: Rel (     0,   -18)  ->  Abs (   930,    24)
+	  7: Rel (   -26,   -24)  ->  Abs (   904,     0)
+	  8: Rel (   -30,     0)  ->  Abs (   874,     0)
+	  9: Rel (  -521,     0)  ->  Abs (   353,     0)
+	 10: Rel (   -30,     0)  ->  Abs (   323,     0)
+	 11: Rel (   -26,    24)  ->  Abs (   297,    24)
+	 12: Rel (     0,    18)  ->  Abs (   297,    42)
+	 13: Rel (     0,    19)  ->  Abs (   297,    61)
+	 14: Rel (    26,    23)  ->  Abs (   323,    84)
+	 15: Rel (    30,     0)  ->  Abs (   353,    84)
+	 16: Rel (   218,     0)  ->  Abs (   571,    84)
+	 17: Rel (     0,  1002)  ->  Abs (   571,  1086)
+	 18: Rel (  -344,     0)  ->  Abs (   227,  1086)
+	 19: Rel (     0,  -291)  ->  Abs (   227,   795)
+	 20: Rel (     0,   -31)  ->  Abs (   227,   764)
+	 21: Rel (   -23,   -26)  ->  Abs (   204,   738)
+	 22: Rel (   -19,     0)  ->  Abs (   185,   738)
+	 23: Rel (   -18,     0)  ->  Abs (   167,   738)
+	 24: Rel (   -24,    26)  ->  Abs (   143,   764)
+	 25: Rel (     0,    31)  ->  Abs (   143,   795)
+	 26: Rel (     0,   375)  ->  Abs (   143,  1170)
+	 27: Rel (   941,     0)  ->  Abs (  1084,  1170)
+	 28: Rel (     0,  -375)  ->  Abs (  1084,   795)
+	 29: Rel (     0,   -31)  ->  Abs (  1084,   764)
+	 30: Rel (   -23,   -26)  ->  Abs (  1061,   738)
+	 31: Rel (   -19,     0)  ->  Abs (  1042,   738)
+	 32: Rel (   -19,     0)  ->  Abs (  1023,   738)
+	 33: Rel (   -23,    26)  ->  Abs (  1000,   764)
+	 34: Rel (     0,    31)  ->  Abs (  1000,   795)
+	 35: Rel (     0,   291)  ->  Abs (  1000,  1086)
+
+	Glyph  56: off = 0x00004BD4, len = 426
+	  numberOfContours:	1
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1148
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  48
+
+	  Length of Instructions:	290
+	00000: PUSHW[4]             28    -8    31    -8 
+	00009: PUSHB[3]             31    16    28 
+	00013: PUSHW[3]             -8    27    -8 
+	00020: NPUSHB      (34):   119    27   228     6   230    28   234    31   249     2 
+	                           245     6   245    27   248    31   251    32     9    11 
+	                             2     4     6     1    27    11    31   133    27   155 
+	                             6     6    18    24 
+	00056: PUSHW[1]            676 
+	00059: NPUSHB      (16):     0    21    16    21     2    21    51    25    21    21 
+	                            24    25    29    18    42    48 
+	00077: PUSHW[1]            676 
+	00080: NPUSHB      (14):     0    45     1    45    41     0    45    45    48     0 
+	                            29    42    17    10 
+	00096: PUSHW[1]            676 
+	00099: NPUSHB      (11):    13    41     9    13    13    10     9    29    17    41 
+	                            35 
+	00112: PUSHW[1]            676 
+	00115: NPUSHB      (71):    38    51    34    38    38    35    34    29    41    48 
+	                            38    42    42    35    38    41    41    24    38    18 
+	                            10    38    18    17     2    29    37     4     9    34 
+	                            33    30     1     1   111     0   143     0     2    15 
+	                             0    79     0    95     0     3     0    26    50    25 
+	                            26    30     8     8    79     9    95     9   111     9 
+	                           127     9   143     9     5     9    25    49    58   107 
+	                            24 
+	00188: PUSHW[1]            300 
+	00191: SCANCTRL   
+	00192: CALL       
+	00193: FLIPOFF    
+	00194: SRP0       
+	00195: MIRP[srp0,nmd,rd,0] 
+	00196: DELTAP1    
+	00197: ALIGNRP    
+	00198: FLIPON     
+	00199: SRP0       
+	00200: MIRP[srp0,md,rd,1] 
+	00201: ALIGNRP    
+	00202: FLIPOFF    
+	00203: SRP0       
+	00204: MIRP[srp0,nmd,rd,2] 
+	00205: DELTAP1    
+	00206: DELTAP1    
+	00207: ALIGNRP    
+	00208: FLIPON     
+	00209: SRP0       
+	00210: MIRP[srp0,md,rd,1] 
+	00211: ALIGNRP    
+	00212: SVTCA[y-axis] 
+	00213: MIAP[rd+ci] 
+	00214: MIRP[nrp0,md,rd,1] 
+	00215: MIAP[rd+ci] 
+	00216: ALIGNRP    
+	00217: MIRP[nrp0,md,rd,1] 
+	00218: SRP0       
+	00219: MIRP[nrp0,md,rd,1] 
+	00220: ALIGNRP    
+	00221: SRP0       
+	00222: MIRP[nrp0,md,rd,1] 
+	00223: ALIGNRP    
+	00224: SRP0       
+	00225: MIRP[nrp0,md,rd,1] 
+	00226: SRP0       
+	00227: MIRP[srp0,md,rd,1] 
+	00228: RTDG       
+	00229: SRP2       
+	00230: IP         
+	00231: MDAP[rd]   
+	00232: RTG        
+	00233: SVTCA[x-axis] 
+	00234: SRP0       
+	00235: MIRP[srp0,nmd,rd,1] 
+	00236: MIRP[srp0,nmd,rd,0] 
+	00237: MDRP[nrp0,nmd,rd,0] 
+	00238: SVTCA[y-axis] 
+	00239: SRP0       
+	00240: MIRP[srp0,md,rd,1] 
+	00241: RTDG       
+	00242: SRP2       
+	00243: IP         
+	00244: MDAP[rd]   
+	00245: RTG        
+	00246: SVTCA[x-axis] 
+	00247: SRP0       
+	00248: MIRP[srp0,nmd,rd,1] 
+	00249: MIRP[srp0,nmd,rd,0] 
+	00250: MDRP[nrp0,nmd,rd,0] 
+	00251: SVTCA[y-axis] 
+	00252: SRP0       
+	00253: MIRP[srp0,md,rd,1] 
+	00254: RTDG       
+	00255: SRP2       
+	00256: IP         
+	00257: MDAP[rd]   
+	00258: RTG        
+	00259: SVTCA[x-axis] 
+	00260: SRP0       
+	00261: MIRP[srp0,nmd,rd,1] 
+	00262: DELTAP1    
+	00263: MIRP[srp0,nmd,rd,0] 
+	00264: MDRP[nrp0,nmd,rd,0] 
+	00265: SVTCA[y-axis] 
+	00266: SRP0       
+	00267: MIRP[srp0,md,rd,1] 
+	00268: RTDG       
+	00269: SRP2       
+	00270: IP         
+	00271: MDAP[rd]   
+	00272: RTG        
+	00273: SVTCA[x-axis] 
+	00274: SRP0       
+	00275: MIRP[srp0,nmd,rd,1] 
+	00276: DELTAP1    
+	00277: MIRP[srp0,nmd,rd,0] 
+	00278: MDRP[nrp0,nmd,rd,0] 
+	00279: IUP[y]     
+	00280: IUP[x]     
+	00281: SVTCA[x-axis] 
+	00282: DELTAP2    
+	00283: DELTAP1    
+	00284: SHPIX      
+	00285: SHPIX      
+	00286: SHPIX      
+	00287: SVTCA[y-axis] 
+	00288: SHPIX      
+	00289: SHPIX      
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:        XDual                         On
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual                               On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short On
+	 26:        XDual                         On
+	 27:        XDual         Y-Short         Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:        XDual                         On
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual                               On
+	 43:  YDual XDual                 X-Short Off
+	 44:        XDual         Y-Short X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         Off
+	 47:                      Y-Short X-Short Off
+	 48:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1021,  1086)  ->  Abs (  1021,  1086)
+	  1: Rel (     0,  -702)  ->  Abs (  1021,   384)
+	  2: Rel (     0,  -177)  ->  Abs (  1021,   207)
+	  3: Rel (  -236,  -240)  ->  Abs (   785,   -33)
+	  4: Rel (  -167,     0)  ->  Abs (   618,   -33)
+	  5: Rel (  -112,     0)  ->  Abs (   506,   -33)
+	  6: Rel (  -174,    98)  ->  Abs (   332,    65)
+	  7: Rel (  -122,   199)  ->  Abs (   210,   264)
+	  8: Rel (     0,   120)  ->  Abs (   210,   384)
+	  9: Rel (     0,   702)  ->  Abs (   210,  1086)
+	 10: Rel (   -71,     0)  ->  Abs (   139,  1086)
+	 11: Rel (   -30,     0)  ->  Abs (   109,  1086)
+	 12: Rel (   -26,    23)  ->  Abs (    83,  1109)
+	 13: Rel (     0,    19)  ->  Abs (    83,  1128)
+	 14: Rel (     0,    19)  ->  Abs (    83,  1147)
+	 15: Rel (    14,    13)  ->  Abs (    97,  1160)
+	 16: Rel (    12,    10)  ->  Abs (   109,  1170)
+	 17: Rel (    30,     0)  ->  Abs (   139,  1170)
+	 18: Rel (   310,     0)  ->  Abs (   449,  1170)
+	 19: Rel (    30,     0)  ->  Abs (   479,  1170)
+	 20: Rel (    26,   -23)  ->  Abs (   505,  1147)
+	 21: Rel (     0,   -19)  ->  Abs (   505,  1128)
+	 22: Rel (     0,   -19)  ->  Abs (   505,  1109)
+	 23: Rel (   -26,   -23)  ->  Abs (   479,  1086)
+	 24: Rel (   -30,     0)  ->  Abs (   449,  1086)
+	 25: Rel (  -155,     0)  ->  Abs (   294,  1086)
+	 26: Rel (     0,  -702)  ->  Abs (   294,   384)
+	 27: Rel (     0,  -139)  ->  Abs (   294,   245)
+	 28: Rel (   190,  -194)  ->  Abs (   484,    51)
+	 29: Rel (   130,     0)  ->  Abs (   614,    51)
+	 30: Rel (    83,     0)  ->  Abs (   697,    51)
+	 31: Rel (   137,    76)  ->  Abs (   834,   127)
+	 32: Rel (   103,   158)  ->  Abs (   937,   285)
+	 33: Rel (     0,    99)  ->  Abs (   937,   384)
+	 34: Rel (     0,   702)  ->  Abs (   937,  1086)
+	 35: Rel (  -155,     0)  ->  Abs (   782,  1086)
+	 36: Rel (   -30,     0)  ->  Abs (   752,  1086)
+	 37: Rel (   -26,    23)  ->  Abs (   726,  1109)
+	 38: Rel (     0,    19)  ->  Abs (   726,  1128)
+	 39: Rel (     0,    19)  ->  Abs (   726,  1147)
+	 40: Rel (    26,    23)  ->  Abs (   752,  1170)
+	 41: Rel (    30,     0)  ->  Abs (   782,  1170)
+	 42: Rel (   310,     0)  ->  Abs (  1092,  1170)
+	 43: Rel (    30,     0)  ->  Abs (  1122,  1170)
+	 44: Rel (    26,   -23)  ->  Abs (  1148,  1147)
+	 45: Rel (     0,   -19)  ->  Abs (  1148,  1128)
+	 46: Rel (     0,   -19)  ->  Abs (  1148,  1109)
+	 47: Rel (   -26,   -23)  ->  Abs (  1122,  1086)
+	 48: Rel (   -30,     0)  ->  Abs (  1092,  1086)
+
+	Glyph  57: off = 0x00004D7E, len = 476
+	  numberOfContours:	1
+	  xMin:			16
+	  yMin:			0
+	  xMax:			1214
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  43
+
+	  Length of Instructions:	345
+	00000: NPUSHB      (28):     7     0     7    24    48     0    76    24    74    43 
+	                            96    29   146    16   208    29   249    24   249    43 
+	                            10   168     0   168    29     2    12    20 
+	00030: PUSHW[1]            676 
+	00033: NPUSHB      (14):    16    16    51    21    16    16    20    21    29    12 
+	                            21    22    34    42 
+	00049: PUSHW[1]            676 
+	00052: NPUSHB      (28):     0    38   112    38     2     0    38    16    38    96 
+	                            38   208    38     4    38    38    41    43    38    38 
+	                            42    43    29    34    43     0    11     3 
+	00082: PUSHW[1]            676 
+	00085: NPUSHB      (24):   111     7     1    15     7    31     7   111     7     3 
+	                             7     7    41     2     7     7     3     2    29    11 
+	                             2     1    33    25 
+	00111: PUSHW[1]            676 
+	00114: NPUSHB      (73):    29    29    51    24    29    29    25    24    29    33 
+	                            24    23    21     2     1     1    30    22    21    20 
+	                            22    22    21    24    43     0     0    30    23    24 
+	                            20    23    23    24    23    22    42    38    34    25 
+	                            38    33    20    38    12     3    38    11    34    33 
+	                            33    12    12    11     2     0     1     8     0    43 
+	                             1    43    38    48    24    80    24   176    24   240 
+	                            24     4    24 
+	00189: PUSHW[1]            318 
+	00192: NPUSHB      (11):    23     2    38    47    21    95    21   191    21     3 
+	                            21 
+	00205: PUSHW[1]            318 
+	00208: PUSHB[4]            255    23     1    23 
+	00213: PUSHW[3]            387    22   720 
+	00220: PUSHB[4]             44    69   108    24 
+	00225: PUSHW[1]            356 
+	00228: SCANCTRL   
+	00229: CALL       
+	00230: SRP0       
+	00231: MIRP[srp0,nmd,rd,0] 
+	00232: MIRP[nrp0,nmd,rd,2] 
+	00233: DELTAP1    
+	00234: MIRP[srp0,nmd,rd,0] 
+	00235: DELTAP1    
+	00236: MIRP[nrp0,md,rd,1] 
+	00237: SRP0       
+	00238: MIRP[srp0,nmd,rd,0] 
+	00239: DELTAP1    
+	00240: MIRP[nrp0,md,rd,1] 
+	00241: DELTAP1    
+	00242: SVTCA[y-axis] 
+	00243: MIAP[rd+ci] 
+	00244: ALIGNRP    
+	00245: MIAP[rd+ci] 
+	00246: ALIGNRP    
+	00247: SRP0       
+	00248: ALIGNRP    
+	00249: SRP0       
+	00250: ALIGNRP    
+	00251: SRP0       
+	00252: MIRP[nrp0,md,rd,1] 
+	00253: SRP0       
+	00254: MIRP[nrp0,md,rd,1] 
+	00255: SRP0       
+	00256: MIRP[nrp0,md,rd,1] 
+	00257: SRP0       
+	00258: MIRP[nrp0,md,rd,1] 
+	00259: MDAP[rd]   
+	00260: MDAP[rd]   
+	00261: SDPVTL[1]  
+	00262: SFVTCA[x-axis] 
+	00263: MDAP[nrd]  
+	00264: CALL       
+	00265: SDPVTL[1]  
+	00266: RDTG       
+	00267: MDRP[nrp0,nmd,rd,0] 
+	00268: SDPVTL[1]  
+	00269: MDAP[nrd]  
+	00270: RTG        
+	00271: CALL       
+	00272: SDPVTL[1]  
+	00273: RDTG       
+	00274: MDRP[nrp0,nmd,rd,0] 
+	00275: RTG        
+	00276: SVTCA[y-axis] 
+	00277: SFVTL[=p1,p2] 
+	00278: SRP0       
+	00279: MIRP[srp0,md,rd,1] 
+	00280: RTDG       
+	00281: SRP2       
+	00282: IP         
+	00283: MDAP[rd]   
+	00284: RTG        
+	00285: SVTCA[x-axis] 
+	00286: SRP0       
+	00287: MIRP[srp0,nmd,nrd,1] 
+	00288: MDAP[rd]   
+	00289: MIRP[srp0,nmd,rd,0] 
+	00290: MDRP[nrp0,nmd,rd,0] 
+	00291: SVTCA[y-axis] 
+	00292: SFVTL[=p1,p2] 
+	00293: SRP0       
+	00294: MIRP[srp0,md,rd,1] 
+	00295: RTDG       
+	00296: SRP2       
+	00297: IP         
+	00298: MDAP[rd]   
+	00299: RTG        
+	00300: SVTCA[x-axis] 
+	00301: SRP0       
+	00302: MIRP[srp0,nmd,nrd,1] 
+	00303: MDAP[rd]   
+	00304: DELTAP1    
+	00305: DELTAP2    
+	00306: MIRP[srp0,nmd,rd,0] 
+	00307: MDRP[nrp0,nmd,rd,0] 
+	00308: SVTCA[y-axis] 
+	00309: SFVTL[=p1,p2] 
+	00310: SRP0       
+	00311: MIRP[srp0,md,rd,1] 
+	00312: RTDG       
+	00313: SRP2       
+	00314: IP         
+	00315: MDAP[rd]   
+	00316: RTG        
+	00317: SVTCA[x-axis] 
+	00318: SRP0       
+	00319: MIRP[srp0,nmd,nrd,1] 
+	00320: MDAP[rd]   
+	00321: DELTAP1    
+	00322: DELTAP2    
+	00323: MIRP[srp0,nmd,rd,0] 
+	00324: MDRP[nrp0,nmd,rd,0] 
+	00325: SVTCA[y-axis] 
+	00326: SFVTL[=p1,p2] 
+	00327: SRP0       
+	00328: MIRP[srp0,md,rd,1] 
+	00329: RTDG       
+	00330: SRP2       
+	00331: IP         
+	00332: MDAP[rd]   
+	00333: RTG        
+	00334: SVTCA[x-axis] 
+	00335: SRP0       
+	00336: MIRP[srp0,nmd,nrd,1] 
+	00337: MDAP[rd]   
+	00338: MIRP[srp0,nmd,rd,0] 
+	00339: MDRP[nrp0,nmd,rd,0] 
+	00340: IUP[y]     
+	00341: IUP[x]     
+	00342: SVTCA[x-axis] 
+	00343: DELTAP2    
+	00344: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:                                      On
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual                               On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short On
+	 22:                                      On
+	 23:  YDual XDual                 X-Short On
+	 24:                                      On
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual                               On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:                      Y-Short X-Short Off
+	 41:                      Y-Short X-Short Off
+	 42:  YDual                       X-Short On
+	 43:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   677,     0)  ->  Abs (   677,     0)
+	  1: Rel (  -117,     0)  ->  Abs (   560,     0)
+	  2: Rel (  -423,  1086)  ->  Abs (   137,  1086)
+	  3: Rel (   -65,     0)  ->  Abs (    72,  1086)
+	  4: Rel (   -23,     0)  ->  Abs (    49,  1086)
+	  5: Rel (   -20,     9)  ->  Abs (    29,  1095)
+	  6: Rel (   -13,    21)  ->  Abs (    16,  1116)
+	  7: Rel (     0,    12)  ->  Abs (    16,  1128)
+	  8: Rel (     0,    12)  ->  Abs (    16,  1140)
+	  9: Rel (    13,    21)  ->  Abs (    29,  1161)
+	 10: Rel (    20,     9)  ->  Abs (    49,  1170)
+	 11: Rel (    23,     0)  ->  Abs (    72,  1170)
+	 12: Rel (   313,     0)  ->  Abs (   385,  1170)
+	 13: Rel (    24,     0)  ->  Abs (   409,  1170)
+	 14: Rel (    19,    -9)  ->  Abs (   428,  1161)
+	 15: Rel (    13,   -21)  ->  Abs (   441,  1140)
+	 16: Rel (     0,   -12)  ->  Abs (   441,  1128)
+	 17: Rel (     0,   -12)  ->  Abs (   441,  1116)
+	 18: Rel (   -14,   -21)  ->  Abs (   427,  1095)
+	 19: Rel (   -19,    -9)  ->  Abs (   408,  1086)
+	 20: Rel (   -23,     0)  ->  Abs (   385,  1086)
+	 21: Rel (  -161,     0)  ->  Abs (   224,  1086)
+	 22: Rel (   390, -1002)  ->  Abs (   614,    84)
+	 23: Rel (     6,     0)  ->  Abs (   620,    84)
+	 24: Rel (   385,  1002)  ->  Abs (  1005,  1086)
+	 25: Rel (  -160,     0)  ->  Abs (   845,  1086)
+	 26: Rel (   -24,     0)  ->  Abs (   821,  1086)
+	 27: Rel (   -20,     9)  ->  Abs (   801,  1095)
+	 28: Rel (   -13,    21)  ->  Abs (   788,  1116)
+	 29: Rel (     0,    12)  ->  Abs (   788,  1128)
+	 30: Rel (     0,    12)  ->  Abs (   788,  1140)
+	 31: Rel (    14,    21)  ->  Abs (   802,  1161)
+	 32: Rel (    19,     9)  ->  Abs (   821,  1170)
+	 33: Rel (    24,     0)  ->  Abs (   845,  1170)
+	 34: Rel (   312,     0)  ->  Abs (  1157,  1170)
+	 35: Rel (    24,     0)  ->  Abs (  1181,  1170)
+	 36: Rel (    20,    -9)  ->  Abs (  1201,  1161)
+	 37: Rel (    13,   -21)  ->  Abs (  1214,  1140)
+	 38: Rel (     0,   -12)  ->  Abs (  1214,  1128)
+	 39: Rel (     0,   -12)  ->  Abs (  1214,  1116)
+	 40: Rel (   -14,   -21)  ->  Abs (  1200,  1095)
+	 41: Rel (   -19,    -9)  ->  Abs (  1181,  1086)
+	 42: Rel (   -24,     0)  ->  Abs (  1157,  1086)
+	 43: Rel (   -64,     0)  ->  Abs (  1093,  1086)
+
+	Glyph  58: off = 0x00004F5A, len = 874
+	  numberOfContours:	1
+	  xMin:			37
+	  yMin:			0
+	  xMax:			1188
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  40
+
+	  Length of Instructions:	753
+	00000: PUSHB[2]              6     2 
+	00003: RS         
+	00004: EQ         
+	00005: IF         
+	00006: NPUSHB      (24):    21    24     2    22    23     5     6     4     1     4 
+	                             8    40    26    20     6    38    32    12     2     9 
+	                            36     2    21    41 
+	00032: SVTCA[x-axis] 
+	00033: SRP1       
+	00034: SRP2       
+	00035: SLOOP      
+	00036: IP         
+	00037: SVTCA[y-axis] 
+	00038: MIAP[rd+ci] 
+	00039: ALIGNRP    
+	00040: MIRP[srp0,md,rd,1] 
+	00041: ALIGNRP    
+	00042: ALIGNRP    
+	00043: ALIGNRP    
+	00044: MIAP[rd+ci] 
+	00045: ALIGNRP    
+	00046: SRP1       
+	00047: SRP2       
+	00048: SLOOP      
+	00049: IP         
+	00050: IUP[y]     
+	00051: IUP[x]     
+	00052: ELSE       
+	00053: NPUSHB      (83):   111    26   111    27   111    28   111    29   136    22 
+	                           134    23   192     5   192    20   232    22     9    96 
+	                            16    96    17    96    18    96    19     4   207     2 
+	                             1    16    22    16    23    64    22    64    23     4 
+	                            24     2    27    23    30    25    31    29    30    40 
+	                            41    23    54     2    54    22    49    23    70     2 
+	                            70    22    65    23    89     1    91    22    88    23 
+	                           136    23   168    23   201     2   200    22   218    23 
+	                            20    13    19 
+	00138: PUSHW[1]            676 
+	00141: NPUSHB      (17):    16    80    16     1    16    53    20    16    16    19 
+	                            20    29    13    20    21    33    39 
+	00160: PUSHW[1]            676 
+	00163: NPUSHB      (30):    36    32    36   112    36     2     0    36    16    36 
+	                            80    36   192    36   208    36     5    36   144    40 
+	                            36    36    39    40    29    33    40     0    12     6 
+	00195: PUSHW[1]            676 
+	00198: NPUSHB      (30):     9    15     9    31     9     2    15     9   191     9 
+	                           223     9   239     9   255     9     5     9   144     5 
+	                             9     9     6     5    29    12     5     4    32    26 
+	00230: PUSHW[1]            676 
+	00233: NPUSHB      (20):    29    95    29     1    29    53    25    29    29    26 
+	                            25    29    32    25    24     0     2    22    23    32 
+	00255: PUSHW[1]           -262 
+	00258: NPUSHB      (52):    21     4     3    32    20     5     4     4    30    21 
+	                            20    20    21    21    20    40     0     0    30    24 
+	                            25    20    24    24    25     2     1     2     3     1 
+	                            30    24    23    20    24    24    23     2     3     2 
+	                             1     3    30    21    22    20    21    21    22     2 
+	                            38    23 
+	00312: PUSHW[1]            630 
+	00315: NPUSHB      (30):    24    38     0     1     1     3    21    38     3     4 
+	                             8    39    38    33    26    38    33    26    38    32 
+	                            32    19    38    13     6    38    13    12     2     1 
+	00347: PUSHW[7]            300     0    24   349    25     0   349 
+	00362: NPUSHB      (50):   207    25     1    31    25     1    25    64    42    53 
+	                            25    64    52    54    52    25   128    47    53    25 
+	                            64    35    36    52    25    64    38    39    52    25 
+	                            38    64    15    40    31    40    95    40   127    40 
+	                           143    40   159    40   207    40   239    40     8    40 
+	00414: PUSHW[4]            633     2    23   300 
+	00423: NPUSHB      (23):    22    64    42    53    22    64    47    53    22    64 
+	                            52    54    52    22    64    26    53    15    22   239 
+	                            22     2    22 
+	00448: PUSHW[1]            344 
+	00451: PUSHB[5]              2    64    38    53     2 
+	00457: PUSHW[1]            633 
+	00460: PUSHB[3]              5    32    21 
+	00464: PUSHW[6]            349    20     3   300     4   301 
+	00477: NPUSHB      (21):    31    20     1   192    20     1    20    38    16     5 
+	                             1     0     5    79     5   143     5   207     5     4 
+	                             5 
+	00500: PUSHW[6]            300    41    69   340    24   356 
+	00513: SCANCTRL   
+	00514: CALL       
+	00515: SRP0       
+	00516: MIRP[srp0,nmd,rd,2] 
+	00517: DELTAP1    
+	00518: DELTAP2    
+	00519: MIRP[nrp0,md,rd,1] 
+	00520: DELTAP1    
+	00521: DELTAP2    
+	00522: MIRP[srp0,nmd,rd,0] 
+	00523: MIRP[nrp0,md,rd,2] 
+	00524: RTHG       
+	00525: SRP0       
+	00526: MIRP[nrp0,nmd,rd,0] 
+	00527: SMD        
+	00528: SRP0       
+	00529: MIRP[srp0,md,rd,1] 
+	00530: CALL       
+	00531: MIRP[srp0,md,rd,1] 
+	00532: DELTAP2    
+	00533: CALL       
+	00534: CALL       
+	00535: CALL       
+	00536: CALL       
+	00537: RTG        
+	00538: MIRP[nrp0,nmd,rd,2] 
+	00539: RTHG       
+	00540: SRP0       
+	00541: MIRP[srp0,md,rd,1] 
+	00542: DELTAP2    
+	00543: SMD        
+	00544: RTG        
+	00545: MIRP[nrp0,md,rd,1] 
+	00546: CALL       
+	00547: CALL       
+	00548: CALL       
+	00549: CALL       
+	00550: CALL       
+	00551: DELTAP2    
+	00552: DELTAP1    
+	00553: MIRP[nrp0,nmd,rd,0] 
+	00554: RTHG       
+	00555: SRP0       
+	00556: MIRP[nrp0,nmd,rd,0] 
+	00557: RTG        
+	00558: SRP0       
+	00559: MIRP[nrp0,md,rd,2] 
+	00560: SVTCA[y-axis] 
+	00561: MIAP[rd+ci] 
+	00562: ALIGNRP    
+	00563: MIRP[nrp0,md,rd,1] 
+	00564: SRP0       
+	00565: MIRP[nrp0,md,rd,1] 
+	00566: ALIGNRP    
+	00567: SRP0       
+	00568: MIRP[nrp0,md,rd,1] 
+	00569: ALIGNRP    
+	00570: MIRP[nrp0,md,rd,1] 
+	00571: SRP0       
+	00572: MIRP[nrp0,md,rd,1] 
+	00573: MIAP[rd+ci] 
+	00574: ALIGNRP    
+	00575: MIRP[nrp0,md,rd,1] 
+	00576: SRP0       
+	00577: ALIGNRP    
+	00578: SRP0       
+	00579: ALIGNRP    
+	00580: MIRP[nrp0,md,rd,1] 
+	00581: MIRP[srp0,md,rd,1] 
+	00582: MIRP[nrp0,md,rd,1] 
+	00583: SDPVTL[1]  
+	00584: SFVTCA[x-axis] 
+	00585: MDAP[nrd]  
+	00586: CALL       
+	00587: SFVTL[=p1,p2] 
+	00588: RDTG       
+	00589: SRP0       
+	00590: MDRP[nrp0,nmd,rd,0] 
+	00591: SDPVTL[1]  
+	00592: SFVTCA[x-axis] 
+	00593: MDAP[nrd]  
+	00594: RTG        
+	00595: CALL       
+	00596: SFVTL[=p1,p2] 
+	00597: RDTG       
+	00598: SRP0       
+	00599: MDRP[nrp0,nmd,rd,0] 
+	00600: SDPVTL[1]  
+	00601: SFVTCA[x-axis] 
+	00602: MDAP[nrd]  
+	00603: RTG        
+	00604: CALL       
+	00605: RDTG       
+	00606: SRP0       
+	00607: MDRP[nrp0,nmd,rd,0] 
+	00608: SDPVTL[1]  
+	00609: MDAP[nrd]  
+	00610: RTG        
+	00611: CALL       
+	00612: SDPVTL[1]  
+	00613: RDTG       
+	00614: MDRP[nrp0,nmd,rd,0] 
+	00615: CALL       
+	00616: CALL       
+	00617: RTG        
+	00618: SVTCA[y-axis] 
+	00619: SFVTL[=p1,p2] 
+	00620: SRP0       
+	00621: MIRP[srp0,md,rd,1] 
+	00622: RTDG       
+	00623: SRP2       
+	00624: IP         
+	00625: MDAP[rd]   
+	00626: RTG        
+	00627: SVTCA[x-axis] 
+	00628: SRP0       
+	00629: MIRP[srp0,nmd,nrd,1] 
+	00630: DELTAP1    
+	00631: MDAP[rd]   
+	00632: MIRP[srp0,nmd,rd,0] 
+	00633: MDRP[nrp0,nmd,rd,0] 
+	00634: SVTCA[y-axis] 
+	00635: SFVTL[=p1,p2] 
+	00636: SRP0       
+	00637: MIRP[srp0,md,rd,1] 
+	00638: RTDG       
+	00639: SRP2       
+	00640: IP         
+	00641: MDAP[rd]   
+	00642: RTG        
+	00643: SVTCA[x-axis] 
+	00644: SRP0       
+	00645: MIRP[srp0,nmd,nrd,1] 
+	00646: DELTAP1    
+	00647: DELTAP2    
+	00648: MDAP[rd]   
+	00649: MIRP[srp0,nmd,rd,0] 
+	00650: MDRP[nrp0,nmd,rd,0] 
+	00651: SVTCA[y-axis] 
+	00652: SFVTL[=p1,p2] 
+	00653: SRP0       
+	00654: MIRP[srp0,md,rd,1] 
+	00655: RTDG       
+	00656: SRP2       
+	00657: IP         
+	00658: MDAP[rd]   
+	00659: RTG        
+	00660: SVTCA[x-axis] 
+	00661: SRP0       
+	00662: MIRP[srp0,nmd,nrd,1] 
+	00663: DELTAP1    
+	00664: DELTAP2    
+	00665: MDAP[rd]   
+	00666: MIRP[srp0,nmd,rd,0] 
+	00667: MDRP[nrp0,nmd,rd,0] 
+	00668: SVTCA[y-axis] 
+	00669: SFVTL[=p1,p2] 
+	00670: SRP0       
+	00671: MIRP[srp0,md,rd,1] 
+	00672: RTDG       
+	00673: SRP2       
+	00674: IP         
+	00675: MDAP[rd]   
+	00676: RTG        
+	00677: SVTCA[x-axis] 
+	00678: SRP0       
+	00679: MIRP[srp0,nmd,nrd,1] 
+	00680: DELTAP1    
+	00681: MDAP[rd]   
+	00682: MIRP[srp0,nmd,rd,0] 
+	00683: MDRP[nrp0,nmd,rd,0] 
+	00684: IUP[y]     
+	00685: IUP[x]     
+	00686: SVTCA[x-axis] 
+	00687: MPPEM      
+	00688: PUSHB[1]             38 
+	00690: GTEQ       
+	00691: MPPEM      
+	00692: PUSHB[1]             42 
+	00694: LTEQ       
+	00695: AND        
+	00696: IF         
+	00697: PUSHB[8]              2   128     2    26    23    26    22    26 
+	00706: SHPIX      
+	00707: SHPIX      
+	00708: SHPIX      
+	00709: SVTCA[y-axis] 
+	00710: SHPIX      
+	00711: EIF        
+	00712: SVTCA[x-axis] 
+	00713: MPPEM      
+	00714: PUSHB[1]             26 
+	00716: GTEQ       
+	00717: MPPEM      
+	00718: PUSHB[1]             36 
+	00720: LTEQ       
+	00721: AND        
+	00722: IF         
+	00723: PUSHW[2]              2   -20 
+	00728: PUSHB[3]              2     8    23 
+	00732: PUSHW[1]            -16 
+	00735: PUSHB[2]             22    16 
+	00738: SHPIX      
+	00739: SHPIX      
+	00740: SHPIX      
+	00741: SVTCA[y-axis] 
+	00742: SHPIX      
+	00743: EIF        
+	00744: SVTCA[x-axis] 
+	00745: DELTAP2    
+	00746: SVTCA[y-axis] 
+	00747: DELTAP1    
+	00748: DELTAP2    
+	00749: SVTCA[x-axis] 
+	00750: DELTAP1    
+	00751: DELTAP1    
+	00752: EIF        
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:                              X-Short On
+	  3:                              X-Short On
+	  4:  YDual                       X-Short On
+	  5:                              X-Short On
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual                               On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short On
+	 21:        XDual                 X-Short On
+	 22:        XDual                 X-Short On
+	 23:  YDual XDual                 X-Short On
+	 24:        XDual                 X-Short On
+	 25:        XDual                 X-Short On
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual                               On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   983,     0)  ->  Abs (   983,     0)
+	  1: Rel (  -132,     0)  ->  Abs (   851,     0)
+	  2: Rel (  -238,   831)  ->  Abs (   613,   831)
+	  3: Rel (  -233,  -831)  ->  Abs (   380,     0)
+	  4: Rel (  -132,     0)  ->  Abs (   248,     0)
+	  5: Rel (  -124,  1086)  ->  Abs (   124,  1086)
+	  6: Rel (   -31,     0)  ->  Abs (    93,  1086)
+	  7: Rel (   -30,     0)  ->  Abs (    63,  1086)
+	  8: Rel (   -26,    23)  ->  Abs (    37,  1109)
+	  9: Rel (     0,    19)  ->  Abs (    37,  1128)
+	 10: Rel (     0,    19)  ->  Abs (    37,  1147)
+	 11: Rel (    26,    23)  ->  Abs (    63,  1170)
+	 12: Rel (    30,     0)  ->  Abs (    93,  1170)
+	 13: Rel (   312,     0)  ->  Abs (   405,  1170)
+	 14: Rel (    31,     0)  ->  Abs (   436,  1170)
+	 15: Rel (    26,   -23)  ->  Abs (   462,  1147)
+	 16: Rel (     0,   -19)  ->  Abs (   462,  1128)
+	 17: Rel (     0,   -19)  ->  Abs (   462,  1109)
+	 18: Rel (   -26,   -23)  ->  Abs (   436,  1086)
+	 19: Rel (   -31,     0)  ->  Abs (   405,  1086)
+	 20: Rel (  -196,     0)  ->  Abs (   209,  1086)
+	 21: Rel (   111,  -990)  ->  Abs (   320,    96)
+	 22: Rel (   227,   815)  ->  Abs (   547,   911)
+	 23: Rel (   129,     0)  ->  Abs (   676,   911)
+	 24: Rel (   233,  -815)  ->  Abs (   909,    96)
+	 25: Rel (   109,   990)  ->  Abs (  1018,  1086)
+	 26: Rel (  -197,     0)  ->  Abs (   821,  1086)
+	 27: Rel (   -30,     0)  ->  Abs (   791,  1086)
+	 28: Rel (   -26,    23)  ->  Abs (   765,  1109)
+	 29: Rel (     0,    19)  ->  Abs (   765,  1128)
+	 30: Rel (     0,    19)  ->  Abs (   765,  1147)
+	 31: Rel (    26,    23)  ->  Abs (   791,  1170)
+	 32: Rel (    30,     0)  ->  Abs (   821,  1170)
+	 33: Rel (   310,     0)  ->  Abs (  1131,  1170)
+	 34: Rel (    31,     0)  ->  Abs (  1162,  1170)
+	 35: Rel (    26,   -23)  ->  Abs (  1188,  1147)
+	 36: Rel (     0,   -19)  ->  Abs (  1188,  1128)
+	 37: Rel (     0,   -19)  ->  Abs (  1188,  1109)
+	 38: Rel (   -26,   -23)  ->  Abs (  1162,  1086)
+	 39: Rel (   -31,     0)  ->  Abs (  1131,  1086)
+	 40: Rel (   -31,     0)  ->  Abs (  1100,  1086)
+
+	Glyph  59: off = 0x000052C4, len = 756
+	  numberOfContours:	1
+	  xMin:			80
+	  yMin:			0
+	  xMax:			1152
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  67
+
+	  Length of Instructions:	563
+	00000: NPUSHB     (149):    18    53     1    58    33    56    35    53    67    64 
+	                            12    79    22    79    46    65    56    81    12    95 
+	                            22    93    46    81    56    97    12   110    22   110 
+	                            46    97    56   158    46   144    56   167    34   184 
+	                            18   184    33   184    52   184    67   200    18   200 
+	                            33   200    52   200    67   216     0   236    52   239 
+	                            63   237    67   247     0   241     1   241    16    34 
+	                            24     0     1     0    50     1    18    67    17    18 
+	                            67    35    16    34    35    16    33    52    51    50 
+	                             1    33    52    52    67    18    18    18    30    33 
+	                            52    20    33    33    52    50    35    16    18    16 
+	                            30     1    50    20     1     1    50     2    38     1 
+	                            38    16    38    15    38    10    19    38    18    38 
+	                            33    38    32    38    26    66    38    67    38    52 
+	                            38    53    38    59    49    38    50    38    32 
+	00151: PUSHW[1]            632 
+	00154: NPUSHB      (28):    35    38    42    10     8    26     8    59     2    42 
+	                             2   239    52     1    52    38    67    67    63    56 
+	                            56    63    35    35    46    46    39    67 
+	00184: PUSHW[1]            296 
+	00187: NPUSHB      (18):    63    65     5    16    38     1     1     5    12    12 
+	                             5    29    29    12    22    22    29     1 
+	00207: PUSHW[1]            296 
+	00210: NPUSHB      (17):    15     5    47     5    63     5    79     5    95     5 
+	                             5     5    26    69    50    38    35 
+	00229: PUSHW[1]            296 
+	00232: PUSHB[6]             39   102    29    18    38    33 
+	00239: PUSHW[1]            296 
+	00242: NPUSHB      (10):    79    29    95    29   111    29     3    29    25    68 
+	00254: PUSHW[4]            294   264    24   277 
+	00263: SCANCTRL   
+	00264: CALL       
+	00265: FLIPOFF    
+	00266: SRP0       
+	00267: MIRP[srp0,nmd,rd,0] 
+	00268: DELTAP1    
+	00269: RTHG       
+	00270: FLIPON     
+	00271: MIRP[srp0,nmd,rd,0] 
+	00272: RTG        
+	00273: MIRP[nrp0,md,rd,1] 
+	00274: SRP0       
+	00275: MIRP[srp0,nmd,rd,0] 
+	00276: RTHG       
+	00277: MIRP[srp0,nmd,rd,0] 
+	00278: RTG        
+	00279: MIRP[nrp0,md,rd,1] 
+	00280: FLIPOFF    
+	00281: SRP0       
+	00282: MIRP[srp0,nmd,rd,2] 
+	00283: DELTAP1    
+	00284: RTHG       
+	00285: FLIPON     
+	00286: MIRP[nrp0,nmd,rd,0] 
+	00287: RTG        
+	00288: SRP2       
+	00289: IP         
+	00290: MDAP[rd]   
+	00291: SRP1       
+	00292: IP         
+	00293: MDAP[rd]   
+	00294: SRP1       
+	00295: IP         
+	00296: MDAP[rd]   
+	00297: RTHG       
+	00298: SRP2       
+	00299: IP         
+	00300: MDAP[rd]   
+	00301: RTG        
+	00302: MIRP[nrp0,md,rd,1] 
+	00303: SRP0       
+	00304: MIRP[srp0,nmd,rd,0] 
+	00305: RTHG       
+	00306: MIRP[nrp0,nmd,rd,0] 
+	00307: RTG        
+	00308: SRP2       
+	00309: IP         
+	00310: MDAP[rd]   
+	00311: RTHG       
+	00312: IP         
+	00313: MDAP[rd]   
+	00314: RTG        
+	00315: SRP1       
+	00316: IP         
+	00317: MDAP[rd]   
+	00318: RTHG       
+	00319: SRP2       
+	00320: IP         
+	00321: MDAP[rd]   
+	00322: RTG        
+	00323: MIRP[nrp0,md,rd,1] 
+	00324: DELTAP1    
+	00325: SVTCA[y-axis] 
+	00326: MIAP[rd+ci] 
+	00327: MIAP[rd+ci] 
+	00328: MIAP[rd+ci] 
+	00329: MIAP[rd+ci] 
+	00330: SRP0       
+	00331: MIRP[nrp0,md,rd,1] 
+	00332: MIRP[nrp0,nmd,rd,0] 
+	00333: MIRP[nrp0,md,rd,1] 
+	00334: MIRP[nrp0,md,rd,1] 
+	00335: SRP0       
+	00336: MIRP[nrp0,md,rd,1] 
+	00337: MIRP[nrp0,md,rd,1] 
+	00338: MIRP[nrp0,md,rd,1] 
+	00339: MIRP[nrp0,md,rd,1] 
+	00340: SRP0       
+	00341: MIRP[nrp0,md,rd,1] 
+	00342: MIRP[nrp0,md,rd,1] 
+	00343: MIRP[nrp0,md,rd,1] 
+	00344: MIRP[nrp0,md,rd,1] 
+	00345: SRP0       
+	00346: MIRP[nrp0,md,rd,1] 
+	00347: MIRP[nrp0,md,rd,1] 
+	00348: MIRP[nrp0,md,rd,1] 
+	00349: MIRP[nrp0,md,rd,1] 
+	00350: SDPVTL[1]  
+	00351: SFVTCA[x-axis] 
+	00352: MDAP[nrd]  
+	00353: CALL       
+	00354: RS         
+	00355: NOT        
+	00356: IF         
+	00357: NPUSHB      (30):    16    64    25    50    63    16    64    23    45    63 
+	                            16    64    20    40    63    16    34    18    30    63 
+	                            16    14    13    22    63    16    14    12    20    63 
+	00389: SVTCA[x-axis] 
+	00390: CALL       
+	00391: CALL       
+	00392: CALL       
+	00393: CALL       
+	00394: CALL       
+	00395: CALL       
+	00396: EIF        
+	00397: SDPVTL[1]  
+	00398: RDTG       
+	00399: MDRP[nrp0,nmd,rd,0] 
+	00400: SDPVTL[1]  
+	00401: MDAP[nrd]  
+	00402: RTG        
+	00403: CALL       
+	00404: RS         
+	00405: NOT        
+	00406: IF         
+	00407: PUSHW[2]             18   -44 
+	00412: PUSHB[4]             25    50    63    18 
+	00417: PUSHW[1]            -44 
+	00420: PUSHB[4]             23    45    63    18 
+	00425: PUSHW[1]            -44 
+	00428: PUSHB[4]             20    40    63    18 
+	00433: PUSHW[1]            -24 
+	00436: PUSHB[4]             18    30    63    18 
+	00441: PUSHW[1]            -44 
+	00444: PUSHB[4]             13    22    63    18 
+	00449: PUSHW[1]            -44 
+	00452: PUSHB[3]             12    20    63 
+	00456: SVTCA[x-axis] 
+	00457: CALL       
+	00458: CALL       
+	00459: CALL       
+	00460: CALL       
+	00461: CALL       
+	00462: CALL       
+	00463: EIF        
+	00464: SDPVTL[1]  
+	00465: RDTG       
+	00466: MDRP[nrp0,nmd,rd,0] 
+	00467: ISECT      
+	00468: ISECT      
+	00469: ISECT      
+	00470: ISECT      
+	00471: IUP[y]     
+	00472: IUP[x]     
+	00473: SVTCA[x-axis] 
+	00474: DELTAP2    
+	00475: DELTAP1    
+	00476: RS         
+	00477: NOT        
+	00478: IF         
+	00479: PUSHW[2]             51   -15 
+	00484: NPUSHB      (19):    14    23    63    17    15    17    28    63    17     5 
+	                            21    28    63    17     5    16    21    63     1 
+	00505: PUSHW[1]            -24 
+	00508: NPUSHB      (19):    17    28    63    33    24    14    23    63    67    24 
+	                            14    23    63    16    24    15    20    63    18 
+	00529: PUSHW[1]            -24 
+	00532: PUSHB[4]             15    20    63    50 
+	00537: PUSHW[1]            -24 
+	00540: PUSHB[8]             15    20    63    17    14    23    24    62 
+	00549: SVTCA[x-axis] 
+	00550: CALL       
+	00551: CALL       
+	00552: CALL       
+	00553: CALL       
+	00554: CALL       
+	00555: CALL       
+	00556: CALL       
+	00557: SVTCA[y-axis] 
+	00558: CALL       
+	00559: CALL       
+	00560: CALL       
+	00561: CALL       
+	00562: EIF        
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:                                      On
+	 18:                                      On
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                               On
+	 27:  YDual                       X-Short Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:                                      On
+	 35:                                      On
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:        XDual         Y-Short X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual         Y-Short         Off
+	 48:                      Y-Short X-Short Off
+	 49:  YDual                       X-Short On
+	 50:  YDual                       X-Short On
+	 51:                                      On
+	 52:                                      On
+	 53:  YDual                       X-Short On
+	 54:  YDual                       X-Short Off
+	 55:  YDual               Y-Short X-Short Off
+	 56:  YDual XDual         Y-Short         On
+	 57:  YDual XDual         Y-Short         Off
+	 58:  YDual XDual         Y-Short X-Short Off
+	 59:  YDual XDual                 X-Short On
+	 60:  YDual XDual                 X-Short On
+	 61:  YDual XDual                 X-Short Off
+	 62:        XDual         Y-Short X-Short Off
+	 63:        XDual         Y-Short         On
+	 64:        XDual         Y-Short         Off
+	 65:                      Y-Short X-Short Off
+	 66:  YDual                       X-Short On
+	 67:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   665,   599)  ->  Abs (   665,   599)
+	  1: Rel (   399,  -515)  ->  Abs (  1064,    84)
+	  2: Rel (    32,     0)  ->  Abs (  1096,    84)
+	  3: Rel (    30,     0)  ->  Abs (  1126,    84)
+	  4: Rel (    26,   -23)  ->  Abs (  1152,    61)
+	  5: Rel (     0,   -19)  ->  Abs (  1152,    42)
+	  6: Rel (     0,   -18)  ->  Abs (  1152,    24)
+	  7: Rel (   -26,   -24)  ->  Abs (  1126,     0)
+	  8: Rel (   -30,     0)  ->  Abs (  1096,     0)
+	  9: Rel (  -270,     0)  ->  Abs (   826,     0)
+	 10: Rel (   -30,     0)  ->  Abs (   796,     0)
+	 11: Rel (   -26,    24)  ->  Abs (   770,    24)
+	 12: Rel (     0,    18)  ->  Abs (   770,    42)
+	 13: Rel (     0,    19)  ->  Abs (   770,    61)
+	 14: Rel (    26,    23)  ->  Abs (   796,    84)
+	 15: Rel (    30,     0)  ->  Abs (   826,    84)
+	 16: Rel (   134,     0)  ->  Abs (   960,    84)
+	 17: Rel (  -347,   446)  ->  Abs (   613,   530)
+	 18: Rel (  -343,  -446)  ->  Abs (   270,    84)
+	 19: Rel (   134,     0)  ->  Abs (   404,    84)
+	 20: Rel (    30,     0)  ->  Abs (   434,    84)
+	 21: Rel (    26,   -23)  ->  Abs (   460,    61)
+	 22: Rel (     0,   -19)  ->  Abs (   460,    42)
+	 23: Rel (     0,   -18)  ->  Abs (   460,    24)
+	 24: Rel (   -26,   -24)  ->  Abs (   434,     0)
+	 25: Rel (   -30,     0)  ->  Abs (   404,     0)
+	 26: Rel (  -268,     0)  ->  Abs (   136,     0)
+	 27: Rel (   -30,     0)  ->  Abs (   106,     0)
+	 28: Rel (   -26,    24)  ->  Abs (    80,    24)
+	 29: Rel (     0,    18)  ->  Abs (    80,    42)
+	 30: Rel (     0,    14)  ->  Abs (    80,    56)
+	 31: Rel (    16,    22)  ->  Abs (    96,    78)
+	 32: Rel (    20,     6)  ->  Abs (   116,    84)
+	 33: Rel (    51,     0)  ->  Abs (   167,    84)
+	 34: Rel (   394,   515)  ->  Abs (   561,   599)
+	 35: Rel (  -376,   487)  ->  Abs (   185,  1086)
+	 36: Rel (   -31,     0)  ->  Abs (   154,  1086)
+	 37: Rel (   -30,     0)  ->  Abs (   124,  1086)
+	 38: Rel (   -26,    23)  ->  Abs (    98,  1109)
+	 39: Rel (     0,    19)  ->  Abs (    98,  1128)
+	 40: Rel (     0,    19)  ->  Abs (    98,  1147)
+	 41: Rel (    26,    23)  ->  Abs (   124,  1170)
+	 42: Rel (    30,     0)  ->  Abs (   154,  1170)
+	 43: Rel (   229,     0)  ->  Abs (   383,  1170)
+	 44: Rel (    31,     0)  ->  Abs (   414,  1170)
+	 45: Rel (    26,   -23)  ->  Abs (   440,  1147)
+	 46: Rel (     0,   -19)  ->  Abs (   440,  1128)
+	 47: Rel (     0,   -19)  ->  Abs (   440,  1109)
+	 48: Rel (   -26,   -23)  ->  Abs (   414,  1086)
+	 49: Rel (   -31,     0)  ->  Abs (   383,  1086)
+	 50: Rel (   -94,     0)  ->  Abs (   289,  1086)
+	 51: Rel (   324,  -419)  ->  Abs (   613,   667)
+	 52: Rel (   322,   419)  ->  Abs (   935,  1086)
+	 53: Rel (   -94,     0)  ->  Abs (   841,  1086)
+	 54: Rel (   -31,     0)  ->  Abs (   810,  1086)
+	 55: Rel (   -26,    23)  ->  Abs (   784,  1109)
+	 56: Rel (     0,    19)  ->  Abs (   784,  1128)
+	 57: Rel (     0,    19)  ->  Abs (   784,  1147)
+	 58: Rel (    26,    23)  ->  Abs (   810,  1170)
+	 59: Rel (    31,     0)  ->  Abs (   841,  1170)
+	 60: Rel (   230,     0)  ->  Abs (  1071,  1170)
+	 61: Rel (    30,     0)  ->  Abs (  1101,  1170)
+	 62: Rel (    26,   -23)  ->  Abs (  1127,  1147)
+	 63: Rel (     0,   -19)  ->  Abs (  1127,  1128)
+	 64: Rel (     0,   -19)  ->  Abs (  1127,  1109)
+	 65: Rel (   -26,   -23)  ->  Abs (  1101,  1086)
+	 66: Rel (   -30,     0)  ->  Abs (  1071,  1086)
+	 67: Rel (   -32,     0)  ->  Abs (  1039,  1086)
+
+	Glyph  60: off = 0x000055B8, len = 556
+	  numberOfContours:	1
+	  xMin:			99
+	  yMin:			0
+	  xMax:			1128
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  50
+
+	  Length of Instructions:	412
+	00000: PUSHW[2]             34   -25 
+	00005: PUSHB[4]             23    31    63    34 
+	00010: PUSHW[1]            -25 
+	00013: NPUSHB      (53):    19    25    63   182    34     1     9    35     9    50 
+	                            25    35    25    50   105    35   105    50     6    90 
+	                            18    94    22    95    29    90    33     4     8    33 
+	                           100    34   148    34   165    34     4   247    33   248 
+	                            35     2     6    33     9    35    21    33    25    35 
+	                             4     9    15 
+	00068: PUSHW[1]            676 
+	00071: NPUSHB      (11):    12    53    16    12    12    15    16    29     9    26 
+	                            32 
+	00084: PUSHW[1]            676 
+	00087: NPUSHB      (13):    29    43    33    29    29    32    33    29    26    33 
+	                            34    43    49 
+	00102: PUSHW[1]            676 
+	00105: PUSHB[4]             16    46     1    46 
+	00110: PUSHW[1]            706 
+	00113: NPUSHB      (11):    50    46    46    49    50    29    43    50     0     8 
+	                             2 
+	00126: PUSHW[1]            676 
+	00129: NPUSHB      (11):     5    53     1     5     5     2     1    29     8    25 
+	                            19 
+	00142: PUSHW[3]            676    22   706 
+	00149: NPUSHB      (11):    18    22    22    19    18    29    25    18    17    42 
+	                            36 
+	00162: PUSHW[1]            676 
+	00165: NPUSHB      (51):    39    43    35    39    39    36    35    29    42    35 
+	                            34    34     1    16    34    17     0     3    25     9 
+	                            50    35    19    49    38    43    36    38    43    42 
+	                            32    38    42    26    33    18    18    19    38    26 
+	                            25     2     9     8     8    35    38    80    50     1 
+	                            50 
+	00218: PUSHW[1]            703 
+	00221: PUSHB[6]              0     0     1    38    17    16 
+	00228: PUSHW[1]            703 
+	00231: NPUSHB      (15):    33    38     0    18    79    18   143    18     3    18 
+	                            25    51    58   107    24 
+	00248: PUSHW[1]            300 
+	00251: SCANCTRL   
+	00252: CALL       
+	00253: FLIPOFF    
+	00254: SRP0       
+	00255: MIRP[srp0,nmd,rd,0] 
+	00256: DELTAP1    
+	00257: FLIPON     
+	00258: MIRP[nrp0,md,rd,1] 
+	00259: MIRP[srp0,nmd,rd,0] 
+	00260: ALIGNRP    
+	00261: MIRP[srp0,md,rd,1] 
+	00262: ALIGNRP    
+	00263: SRP0       
+	00264: MIRP[srp0,nmd,rd,0] 
+	00265: DELTAP1    
+	00266: MIRP[nrp0,md,rd,1] 
+	00267: SVTCA[y-axis] 
+	00268: MIAP[rd+ci] 
+	00269: ALIGNRP    
+	00270: MIAP[rd+ci] 
+	00271: ALIGNRP    
+	00272: MIRP[srp0,md,rd,1] 
+	00273: ALIGNRP    
+	00274: SRP0       
+	00275: ALIGNRP    
+	00276: SRP0       
+	00277: ALIGNRP    
+	00278: MIRP[nrp0,md,rd,1] 
+	00279: SRP0       
+	00280: ALIGNRP    
+	00281: MIRP[nrp0,md,rd,1] 
+	00282: SRP0       
+	00283: MIRP[nrp0,md,rd,1] 
+	00284: SRP0       
+	00285: ALIGNRP    
+	00286: ALIGNRP    
+	00287: SRP1       
+	00288: SRP2       
+	00289: SLOOP      
+	00290: IP         
+	00291: SVTCA[x-axis] 
+	00292: SRP1       
+	00293: SRP2       
+	00294: IP         
+	00295: SVTCA[y-axis] 
+	00296: SFVTL[=p1,p2] 
+	00297: SRP0       
+	00298: MIRP[srp0,md,rd,1] 
+	00299: RTDG       
+	00300: SRP2       
+	00301: IP         
+	00302: MDAP[rd]   
+	00303: RTG        
+	00304: SVTCA[x-axis] 
+	00305: SRP0       
+	00306: MIRP[srp0,nmd,rd,1] 
+	00307: MIRP[srp0,nmd,rd,0] 
+	00308: MDRP[nrp0,nmd,rd,0] 
+	00309: SVTCA[y-axis] 
+	00310: SFVTL[=p1,p2] 
+	00311: SRP0       
+	00312: MIRP[srp0,md,rd,1] 
+	00313: RTDG       
+	00314: SRP2       
+	00315: IP         
+	00316: MDAP[rd]   
+	00317: RTG        
+	00318: SVTCA[x-axis] 
+	00319: SRP0       
+	00320: MIRP[srp0,nmd,rd,1] 
+	00321: MIRP[srp0,nmd,rd,0] 
+	00322: MDRP[nrp0,nmd,rd,0] 
+	00323: SVTCA[y-axis] 
+	00324: SRP0       
+	00325: MIRP[srp0,md,rd,1] 
+	00326: RTDG       
+	00327: SRP2       
+	00328: IP         
+	00329: MDAP[rd]   
+	00330: RTG        
+	00331: SVTCA[x-axis] 
+	00332: SRP0       
+	00333: MIRP[srp0,nmd,rd,1] 
+	00334: MIRP[srp0,nmd,rd,0] 
+	00335: MDRP[nrp0,nmd,rd,0] 
+	00336: SVTCA[y-axis] 
+	00337: SFVTL[=p1,p2] 
+	00338: SRP0       
+	00339: MIRP[srp0,md,rd,1] 
+	00340: RTDG       
+	00341: SRP2       
+	00342: IP         
+	00343: MDAP[rd]   
+	00344: RTG        
+	00345: SVTCA[x-axis] 
+	00346: SRP0       
+	00347: MIRP[srp0,nmd,rd,1] 
+	00348: DELTAP1    
+	00349: MIRP[srp0,nmd,rd,0] 
+	00350: MDRP[nrp0,nmd,rd,0] 
+	00351: SVTCA[y-axis] 
+	00352: SFVTL[=p1,p2] 
+	00353: SRP0       
+	00354: MIRP[srp0,md,rd,1] 
+	00355: RTDG       
+	00356: SRP2       
+	00357: IP         
+	00358: MDAP[rd]   
+	00359: RTG        
+	00360: SVTCA[x-axis] 
+	00361: SRP0       
+	00362: MIRP[srp0,nmd,rd,1] 
+	00363: MIRP[srp0,nmd,rd,0] 
+	00364: MDRP[nrp0,nmd,rd,0] 
+	00365: SVTCA[y-axis] 
+	00366: SRP0       
+	00367: MIRP[srp0,md,rd,1] 
+	00368: RTDG       
+	00369: SRP2       
+	00370: IP         
+	00371: MDAP[rd]   
+	00372: RTG        
+	00373: SVTCA[x-axis] 
+	00374: SRP0       
+	00375: MIRP[srp0,nmd,rd,1] 
+	00376: MIRP[srp0,nmd,rd,0] 
+	00377: MDRP[nrp0,nmd,rd,0] 
+	00378: IUP[y]     
+	00379: IUP[x]     
+	00380: SVTCA[x-axis] 
+	00381: DELTAP2    
+	00382: DELTAP1    
+	00383: SVTCA[y-axis] 
+	00384: DELTAP2    
+	00385: SVTCA[y-axis] 
+	00386: MPPEM      
+	00387: PUSHB[1]             25 
+	00389: GTEQ       
+	00390: MPPEM      
+	00391: PUSHB[1]             37 
+	00393: LTEQ       
+	00394: AND        
+	00395: IF         
+	00396: PUSHB[4]              0    24    17    24 
+	00401: SHPIX      
+	00402: SHPIX      
+	00403: EIF        
+	00404: SVTCA[x-axis] 
+	00405: DELTAP1    
+	00406: DELTAP2    
+	00407: SVTCA[y-axis] 
+	00408: DELTAP2    
+	00409: SVTCA[y-axis] 
+	00410: CALL       
+	00411: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:                                      On
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:                      Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short On
+	 34:                                      On
+	 35:                                      On
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:        XDual         Y-Short X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual         Y-Short         Off
+	 48:                      Y-Short X-Short Off
+	 49:  YDual                       X-Short On
+	 50:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   659,   528)  ->  Abs (   659,   528)
+	  1: Rel (     0,  -444)  ->  Abs (   659,    84)
+	  2: Rel (   218,     0)  ->  Abs (   877,    84)
+	  3: Rel (    30,     0)  ->  Abs (   907,    84)
+	  4: Rel (    26,   -23)  ->  Abs (   933,    61)
+	  5: Rel (     0,   -19)  ->  Abs (   933,    42)
+	  6: Rel (     0,   -18)  ->  Abs (   933,    24)
+	  7: Rel (   -26,   -24)  ->  Abs (   907,     0)
+	  8: Rel (   -30,     0)  ->  Abs (   877,     0)
+	  9: Rel (  -521,     0)  ->  Abs (   356,     0)
+	 10: Rel (   -30,     0)  ->  Abs (   326,     0)
+	 11: Rel (   -26,    24)  ->  Abs (   300,    24)
+	 12: Rel (     0,    18)  ->  Abs (   300,    42)
+	 13: Rel (     0,    19)  ->  Abs (   300,    61)
+	 14: Rel (    25,    23)  ->  Abs (   325,    84)
+	 15: Rel (    31,     0)  ->  Abs (   356,    84)
+	 16: Rel (   218,     0)  ->  Abs (   574,    84)
+	 17: Rel (     0,   444)  ->  Abs (   574,   528)
+	 18: Rel (  -369,   558)  ->  Abs (   205,  1086)
+	 19: Rel (   -50,     0)  ->  Abs (   155,  1086)
+	 20: Rel (   -30,     0)  ->  Abs (   125,  1086)
+	 21: Rel (   -26,    23)  ->  Abs (    99,  1109)
+	 22: Rel (     0,    19)  ->  Abs (    99,  1128)
+	 23: Rel (     0,    19)  ->  Abs (    99,  1147)
+	 24: Rel (    26,    23)  ->  Abs (   125,  1170)
+	 25: Rel (    30,     0)  ->  Abs (   155,  1170)
+	 26: Rel (   231,     0)  ->  Abs (   386,  1170)
+	 27: Rel (    30,     0)  ->  Abs (   416,  1170)
+	 28: Rel (    26,   -23)  ->  Abs (   442,  1147)
+	 29: Rel (     0,   -19)  ->  Abs (   442,  1128)
+	 30: Rel (     0,   -19)  ->  Abs (   442,  1109)
+	 31: Rel (   -26,   -23)  ->  Abs (   416,  1086)
+	 32: Rel (   -30,     0)  ->  Abs (   386,  1086)
+	 33: Rel (   -83,     0)  ->  Abs (   303,  1086)
+	 34: Rel (   314,  -473)  ->  Abs (   617,   613)
+	 35: Rel (   307,   473)  ->  Abs (   924,  1086)
+	 36: Rel (   -82,     0)  ->  Abs (   842,  1086)
+	 37: Rel (   -31,     0)  ->  Abs (   811,  1086)
+	 38: Rel (   -26,    23)  ->  Abs (   785,  1109)
+	 39: Rel (     0,    19)  ->  Abs (   785,  1128)
+	 40: Rel (     0,    19)  ->  Abs (   785,  1147)
+	 41: Rel (    26,    23)  ->  Abs (   811,  1170)
+	 42: Rel (    31,     0)  ->  Abs (   842,  1170)
+	 43: Rel (   230,     0)  ->  Abs (  1072,  1170)
+	 44: Rel (    30,     0)  ->  Abs (  1102,  1170)
+	 45: Rel (    26,   -23)  ->  Abs (  1128,  1147)
+	 46: Rel (     0,   -19)  ->  Abs (  1128,  1128)
+	 47: Rel (     0,   -19)  ->  Abs (  1128,  1109)
+	 48: Rel (   -26,   -23)  ->  Abs (  1102,  1086)
+	 49: Rel (   -30,     0)  ->  Abs (  1072,  1086)
+	 50: Rel (   -50,     0)  ->  Abs (  1022,  1086)
+
+	Glyph  61: off = 0x000057E4, len = 370
+	  numberOfContours:	1
+	  xMin:			213
+	  yMin:			0
+	  xMax:			1022
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	287
+	00000: NPUSHB      (57):   121     3     1    18    97     9    97    21    96    22 
+	                           112    10   113    11   112    22     6   184     3   232 
+	                             2   232    15     3     8     2    15     3     8    15 
+	                            31     3    23    15    40     2    47     3    56     2 
+	                            63     3    79     3   127     3   119    15   118    16 
+	                           137     2   136     3    15    12     6 
+	00059: PUSHW[1]            676 
+	00062: NPUSHB      (11):     9    86     5     9     9     6     5    29    12    25 
+	                            19 
+	00075: PUSHW[1]            676 
+	00078: NPUSHB      (42):    22    54    18    22    22    19    18    29    25    16 
+	                            15     2     3    17     4     5    30    14    13     2 
+	                            18    17    30     0     1     8    15    64    32    53 
+	                            15    64    29    53    15    64    25    28    52    15 
+	                            38     4 
+	00122: PUSHW[1]            634 
+	00125: NPUSHB      (35):    25    15     0    79     0    95     0   111     0     4 
+	                             0    26    27    17    38    12    65    32     1     1 
+	                            79     1   111     1   127     1   240     1     4     1 
+	                            25    26    58   107    24 
+	00162: CALL       
+	00163: FLIPOFF    
+	00164: SRP0       
+	00165: MIRP[srp0,nmd,rd,0] 
+	00166: DELTAP1    
+	00167: DELTAP2    
+	00168: FLIPON     
+	00169: MIRP[nrp0,nmd,rd,0] 
+	00170: MIRP[nrp0,md,rd,1] 
+	00171: FLIPOFF    
+	00172: SRP0       
+	00173: MIRP[srp0,nmd,rd,2] 
+	00174: DELTAP1    
+	00175: ALIGNRP    
+	00176: FLIPON     
+	00177: MIRP[srp0,md,rd,1] 
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: CALL       
+	00180: CALL       
+	00181: CALL       
+	00182: SVTCA[y-axis] 
+	00183: MIAP[rd+ci] 
+	00184: ALIGNRP    
+	00185: MIRP[srp0,md,rd,1] 
+	00186: ALIGNRP    
+	00187: MIAP[rd+ci] 
+	00188: ALIGNRP    
+	00189: MIRP[srp0,md,rd,1] 
+	00190: ALIGNRP    
+	00191: SRP1       
+	00192: SLOOP      
+	00193: IP         
+	00194: SVTCA[x-axis] 
+	00195: SRP0       
+	00196: MIRP[srp0,md,rd,1] 
+	00197: RTDG       
+	00198: SRP2       
+	00199: IP         
+	00200: MDAP[rd]   
+	00201: RTG        
+	00202: SVTCA[y-axis] 
+	00203: SRP0       
+	00204: MIRP[srp0,nmd,rd,1] 
+	00205: MIRP[srp0,nmd,rd,0] 
+	00206: MDRP[nrp0,nmd,rd,0] 
+	00207: SVTCA[x-axis] 
+	00208: SRP0       
+	00209: MIRP[srp0,md,rd,1] 
+	00210: RTDG       
+	00211: SRP2       
+	00212: IP         
+	00213: MDAP[rd]   
+	00214: RTG        
+	00215: SVTCA[y-axis] 
+	00216: SRP0       
+	00217: MIRP[srp0,nmd,rd,1] 
+	00218: MIRP[srp0,nmd,rd,0] 
+	00219: MDRP[nrp0,nmd,rd,0] 
+	00220: IUP[y]     
+	00221: IUP[x]     
+	00222: SVTCA[x-axis] 
+	00223: MPPEM      
+	00224: PUSHB[1]             21 
+	00226: GTEQ       
+	00227: MPPEM      
+	00228: PUSHB[1]             36 
+	00230: LTEQ       
+	00231: AND        
+	00232: IF         
+	00233: PUSHW[2]             15   -14 
+	00238: PUSHB[2]              2    14 
+	00241: SHPIX      
+	00242: SHPIX      
+	00243: EIF        
+	00244: SVTCA[x-axis] 
+	00245: DELTAP2    
+	00246: DELTAP1    
+	00247: SVTCA[y-axis] 
+	00248: DELTAP1    
+	00249: SVTCA[x-axis] 
+	00250: RS         
+	00251: NOT        
+	00252: IF         
+	00253: PUSHB[6]              3    20    25    15    63    16 
+	00260: PUSHW[1]            -30 
+	00263: PUSHB[4]             25    15    63    16 
+	00268: PUSHW[1]            -30 
+	00271: PUSHB[8]             23    14    63     2     3    15    31    60 
+	00280: CALL       
+	00281: CALL       
+	00282: CALL       
+	00283: CALL       
+	00284: EIF        
+	00285: SVTCA[x-axis] 
+	00286: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:                                      On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:        XDual                         On
+	 14:  YDual                               On
+	 15:        XDual         Y-Short         On
+	 16:                                      On
+	 17:        XDual         Y-Short         On
+	 18:  YDual                               On
+	 19:        XDual                         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1022,     0)  ->  Abs (  1022,     0)
+	  1: Rel (  -809,     0)  ->  Abs (   213,     0)
+	  2: Rel (     0,   122)  ->  Abs (   213,   122)
+	  3: Rel (   682,   957)  ->  Abs (   895,  1079)
+	  4: Rel (     0,     7)  ->  Abs (   895,  1086)
+	  5: Rel (  -559,     0)  ->  Abs (   336,  1086)
+	  6: Rel (     0,  -247)  ->  Abs (   336,   839)
+	  7: Rel (     0,   -31)  ->  Abs (   336,   808)
+	  8: Rel (   -24,   -26)  ->  Abs (   312,   782)
+	  9: Rel (   -19,     0)  ->  Abs (   293,   782)
+	 10: Rel (   -18,     0)  ->  Abs (   275,   782)
+	 11: Rel (   -24,    26)  ->  Abs (   251,   808)
+	 12: Rel (     0,    31)  ->  Abs (   251,   839)
+	 13: Rel (     0,   331)  ->  Abs (   251,  1170)
+	 14: Rel (   725,     0)  ->  Abs (   976,  1170)
+	 15: Rel (     0,  -119)  ->  Abs (   976,  1051)
+	 16: Rel (  -682,  -958)  ->  Abs (   294,    93)
+	 17: Rel (     0,    -9)  ->  Abs (   294,    84)
+	 18: Rel (   644,     0)  ->  Abs (   938,    84)
+	 19: Rel (     0,   293)  ->  Abs (   938,   377)
+	 20: Rel (     0,    31)  ->  Abs (   938,   408)
+	 21: Rel (    23,    26)  ->  Abs (   961,   434)
+	 22: Rel (    19,     0)  ->  Abs (   980,   434)
+	 23: Rel (    19,     0)  ->  Abs (   999,   434)
+	 24: Rel (    23,   -26)  ->  Abs (  1022,   408)
+	 25: Rel (     0,   -31)  ->  Abs (  1022,   377)
+
+	Glyph  62: off = 0x00005956, len = 130
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-259
+	  xMax:			344
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	70
+	00000: NPUSHB      (38):    17    11    14   242     0     0    50    11     2     8 
+	                             5   242     1     1    50     8    11    10    16     8 
+	                            18     0     1    36     9    16    10    48    10    80 
+	                            10     3    10    25    18   101   169    24 
+	00040: CALL       
+	00041: FLIPOFF    
+	00042: SRP0       
+	00043: MIRP[srp0,nmd,rd,0] 
+	00044: DELTAP1    
+	00045: ALIGNRP    
+	00046: FLIPON     
+	00047: MIRP[srp0,md,rd,1] 
+	00048: ALIGNRP    
+	00049: SVTCA[y-axis] 
+	00050: MIAP[rd+ci] 
+	00051: MIAP[rd+ci] 
+	00052: ALIGNRP    
+	00053: SRP0       
+	00054: MIRP[nrp0,md,rd,1] 
+	00055: SVTCA[x-axis] 
+	00056: SRP0       
+	00057: MIRP[srp0,nmd,rd,1] 
+	00058: MDRP[srp0,nmd,rd,0] 
+	00059: ALIGNRP    
+	00060: SVTCA[y-axis] 
+	00061: SRP0       
+	00062: MIRP[nrp0,md,rd,1] 
+	00063: SVTCA[x-axis] 
+	00064: SRP0       
+	00065: MIRP[srp0,nmd,rd,1] 
+	00066: MDRP[srp0,nmd,rd,0] 
+	00067: ALIGNRP    
+	00068: IUP[y]     
+	00069: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:        XDual                         On
+	 11:  YDual                               On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    84,  1170)  ->  Abs (    84,  1170)
+	  1: Rel (     0, -1345)  ->  Abs (    84,  -175)
+	  2: Rel (   204,     0)  ->  Abs (   288,  -175)
+	  3: Rel (    30,     0)  ->  Abs (   318,  -175)
+	  4: Rel (    26,   -23)  ->  Abs (   344,  -198)
+	  5: Rel (     0,   -19)  ->  Abs (   344,  -217)
+	  6: Rel (     0,   -19)  ->  Abs (   344,  -236)
+	  7: Rel (   -26,   -23)  ->  Abs (   318,  -259)
+	  8: Rel (   -30,     0)  ->  Abs (   288,  -259)
+	  9: Rel (  -288,     0)  ->  Abs (     0,  -259)
+	 10: Rel (     0,  1514)  ->  Abs (     0,  1255)
+	 11: Rel (   288,     0)  ->  Abs (   288,  1255)
+	 12: Rel (    30,     0)  ->  Abs (   318,  1255)
+	 13: Rel (    26,   -24)  ->  Abs (   344,  1231)
+	 14: Rel (     0,   -19)  ->  Abs (   344,  1212)
+	 15: Rel (     0,   -18)  ->  Abs (   344,  1194)
+	 16: Rel (   -26,   -24)  ->  Abs (   318,  1170)
+	 17: Rel (   -30,     0)  ->  Abs (   288,  1170)
+
+	Glyph  63: off = 0x000059D8, len = 136
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-175
+	  xMax:			772
+	  yMax:			1383
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	76
+	00000: PUSHB[6]              9    40    11    25    52     1 
+	00007: PUSHW[1]            -40 
+	00010: NPUSHB      (13):    11    25    52     9     9    25     9   110     1   105 
+	                             8     4    14 
+	00025: PUSHW[1]            456 
+	00028: PUSHB[5]              6    77     1    91     8 
+	00034: PUSHW[1]            434 
+	00037: NPUSHB      (12):     0    91     9   189    47    14     1    14   215    16 
+	                             6   199 
+	00051: PUSHW[2]            459    24 
+	00056: CALL       
+	00057: SVTCA[y-axis] 
+	00058: MDAP[rd]   
+	00059: SVTCA[x-axis] 
+	00060: SRP0       
+	00061: MIRP[srp0,nmd,rd,0] 
+	00062: DELTAP1    
+	00063: MIRP[srp0,md,rd,1] 
+	00064: MIRP[nrp0,md,rd,1] 
+	00065: MIRP[srp0,nmd,rd,0] 
+	00066: MIRP[nrp0,md,rd,1] 
+	00067: MIRP[srp0,md,rd,1] 
+	00068: SVTCA[y-axis] 
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: IUP[y]     
+	00071: IUP[x]     
+	00072: SVTCA[x-axis] 
+	00073: DELTAP1    
+	00074: CALL       
+	00075: CALL       
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:                                      On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:                                      On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    87,  1346)  ->  Abs (    87,  1346)
+	  1: Rel (   675, -1448)  ->  Abs (   762,  -102)
+	  2: Rel (    10,   -22)  ->  Abs (   772,  -124)
+	  3: Rel (     0,   -10)  ->  Abs (   772,  -134)
+	  4: Rel (     0,   -16)  ->  Abs (   772,  -150)
+	  5: Rel (   -25,   -25)  ->  Abs (   747,  -175)
+	  6: Rel (   -17,     0)  ->  Abs (   730,  -175)
+	  7: Rel (   -28,     0)  ->  Abs (   702,  -175)
+	  8: Rel (   -17,    37)  ->  Abs (   685,  -138)
+	  9: Rel (  -675,  1449)  ->  Abs (    10,  1311)
+	 10: Rel (   -10,    21)  ->  Abs (     0,  1332)
+	 11: Rel (     0,    11)  ->  Abs (     0,  1343)
+	 12: Rel (     0,    16)  ->  Abs (     0,  1359)
+	 13: Rel (    25,    24)  ->  Abs (    25,  1383)
+	 14: Rel (    17,     0)  ->  Abs (    42,  1383)
+	 15: Rel (    27,     0)  ->  Abs (    69,  1383)
+
+	Glyph  64: off = 0x00005A60, len = 122
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-259
+	  xMax:			344
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	62
+	00000: NPUSHB      (32):    17    11    14   242     0     0    50    11     2     8 
+	                             5   242     1     1    50     8    16    11    18     9 
+	                            10    36     1    63     0     1     0    25    18   101 
+	                           169    24 
+	00034: CALL       
+	00035: FLIPOFF    
+	00036: SRP0       
+	00037: MIRP[srp0,md,rd,0] 
+	00038: DELTAP1    
+	00039: ALIGNRP    
+	00040: FLIPON     
+	00041: MIRP[srp0,md,rd,1] 
+	00042: ALIGNRP    
+	00043: SVTCA[y-axis] 
+	00044: MIAP[rd+ci] 
+	00045: MIAP[rd+ci] 
+	00046: MIRP[nrp0,md,rd,1] 
+	00047: SVTCA[x-axis] 
+	00048: SRP0       
+	00049: MIRP[srp0,nmd,rd,1] 
+	00050: MDRP[srp0,nmd,rd,0] 
+	00051: ALIGNRP    
+	00052: SVTCA[y-axis] 
+	00053: SRP0       
+	00054: MIRP[nrp0,md,rd,1] 
+	00055: SVTCA[x-axis] 
+	00056: SRP0       
+	00057: MIRP[srp0,nmd,rd,1] 
+	00058: MDRP[srp0,nmd,rd,0] 
+	00059: ALIGNRP    
+	00060: IUP[y]     
+	00061: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual                               On
+	 10:        XDual                         On
+	 11:  YDual                               On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   259,  -175)  ->  Abs (   259,  -175)
+	  1: Rel (     0,  1345)  ->  Abs (   259,  1170)
+	  2: Rel (  -203,     0)  ->  Abs (    56,  1170)
+	  3: Rel (   -30,     0)  ->  Abs (    26,  1170)
+	  4: Rel (   -26,    24)  ->  Abs (     0,  1194)
+	  5: Rel (     0,    18)  ->  Abs (     0,  1212)
+	  6: Rel (     0,    19)  ->  Abs (     0,  1231)
+	  7: Rel (    26,    24)  ->  Abs (    26,  1255)
+	  8: Rel (    30,     0)  ->  Abs (    56,  1255)
+	  9: Rel (   288,     0)  ->  Abs (   344,  1255)
+	 10: Rel (     0, -1514)  ->  Abs (   344,  -259)
+	 11: Rel (  -288,     0)  ->  Abs (    56,  -259)
+	 12: Rel (   -30,     0)  ->  Abs (    26,  -259)
+	 13: Rel (   -26,    23)  ->  Abs (     0,  -236)
+	 14: Rel (     0,    19)  ->  Abs (     0,  -217)
+	 15: Rel (     0,    18)  ->  Abs (     0,  -199)
+	 16: Rel (    26,    24)  ->  Abs (    26,  -175)
+	 17: Rel (    30,     0)  ->  Abs (    56,  -175)
+
+	Glyph  65: off = 0x00005ADA, len = 200
+	  numberOfContours:	1
+	  xMin:			228
+	  yMin:			736
+	  xMax:			1001
+	  yMax:			1279
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	131
+	00000: NPUSHB      (51):   104     8   120     8   136     8     3     9    11     9 
+	                             7    11    91    16     0    20    16    16     0     9 
+	                             7     9    11     7    91     2     0    20     2     2 
+	                             0    16     0     9    11     7     2     6     3    15 
+	                            16    11     7     2     4    12     9   193     0    64 
+	                             6 
+	00053: PUSHW[3]            771    12   281 
+	00060: NPUSHB      (21):    32     0   176     3     1    63     3   111     3   143 
+	                             3     3     3    26    19    15    25    18   199   188 
+	                            24 
+	00083: CALL       
+	00084: FLIPOFF    
+	00085: SRP0       
+	00086: MIRP[nrp0,nmd,rd,0] 
+	00087: SRP0       
+	00088: MIRP[nrp0,nmd,rd,2] 
+	00089: DELTAP1    
+	00090: DELTAP2    
+	00091: SVTCA[y-axis] 
+	00092: RTHG       
+	00093: MDAP[rd]   
+	00094: SMD        
+	00095: FLIPON     
+	00096: MIRP[srp0,md,rd,1] 
+	00097: RTG        
+	00098: MIRP[nrp0,nmd,rd,0] 
+	00099: SMD        
+	00100: SRP0       
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: SRP1       
+	00103: SLOOP      
+	00104: IP         
+	00105: SVTCA[x-axis] 
+	00106: SRP1       
+	00107: SRP2       
+	00108: SLOOP      
+	00109: IP         
+	00110: SDPVTL[1]  
+	00111: SFVTPV     
+	00112: MDAP[nrd]  
+	00113: CALL       
+	00114: SFVTL[=p1,p2] 
+	00115: RDTG       
+	00116: SRP0       
+	00117: MDRP[nrp0,nmd,rd,0] 
+	00118: SDPVTL[1]  
+	00119: SFVTPV     
+	00120: MDAP[nrd]  
+	00121: RTG        
+	00122: CALL       
+	00123: SFVTL[=p1,p2] 
+	00124: RDTG       
+	00125: SRP0       
+	00126: MDRP[nrp0,nmd,rd,0] 
+	00127: IUP[y]     
+	00128: IUP[x]     
+	00129: SVTCA[x-axis] 
+	00130: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:                                      On
+	 10:                                      On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   614,  1279)  ->  Abs (   614,  1279)
+	  1: Rel (   369,  -463)  ->  Abs (   983,   816)
+	  2: Rel (    18,   -23)  ->  Abs (  1001,   793)
+	  3: Rel (     0,   -14)  ->  Abs (  1001,   779)
+	  4: Rel (     0,   -18)  ->  Abs (  1001,   761)
+	  5: Rel (   -25,   -24)  ->  Abs (   976,   737)
+	  6: Rel (   -18,     0)  ->  Abs (   958,   737)
+	  7: Rel (   -20,     0)  ->  Abs (   938,   737)
+	  8: Rel (   -22,    26)  ->  Abs (   916,   763)
+	  9: Rel (  -302,   384)  ->  Abs (   614,  1147)
+	 10: Rel (  -302,  -384)  ->  Abs (   312,   763)
+	 11: Rel (   -21,   -27)  ->  Abs (   291,   736)
+	 12: Rel (   -20,     0)  ->  Abs (   271,   736)
+	 13: Rel (   -18,     0)  ->  Abs (   253,   736)
+	 14: Rel (   -25,    25)  ->  Abs (   228,   761)
+	 15: Rel (     0,    18)  ->  Abs (   228,   779)
+	 16: Rel (     0,    14)  ->  Abs (   228,   793)
+	 17: Rel (    18,    23)  ->  Abs (   246,   816)
+
+	Glyph  66: off = 0x00005BA2, len = 64
+	  numberOfContours:	1
+	  xMin:			77
+	  yMin:			-561
+	  xMax:			1306
+	  yMax:			-477
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	13
+	00000: PUSHB[5]              7    91     1    11     4 
+	00006: MDAP[rd]   
+	00007: MDAP[rd]   
+	00008: SVTCA[y-axis] 
+	00009: MDAP[rd]   
+	00010: MIRP[nrp0,md,rd,1] 
+	00011: IUP[y]     
+	00012: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual                               On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1250,  -561)  ->  Abs (  1250,  -561)
+	  1: Rel ( -1117,     0)  ->  Abs (   133,  -561)
+	  2: Rel (   -30,     0)  ->  Abs (   103,  -561)
+	  3: Rel (   -26,    23)  ->  Abs (    77,  -538)
+	  4: Rel (     0,    19)  ->  Abs (    77,  -519)
+	  5: Rel (     0,    19)  ->  Abs (    77,  -500)
+	  6: Rel (    26,    23)  ->  Abs (   103,  -477)
+	  7: Rel (    30,     0)  ->  Abs (   133,  -477)
+	  8: Rel (  1117,     0)  ->  Abs (  1250,  -477)
+	  9: Rel (    31,     0)  ->  Abs (  1281,  -477)
+	 10: Rel (    25,   -23)  ->  Abs (  1306,  -500)
+	 11: Rel (     0,   -19)  ->  Abs (  1306,  -519)
+	 12: Rel (     0,   -19)  ->  Abs (  1306,  -538)
+	 13: Rel (   -25,   -23)  ->  Abs (  1281,  -561)
+
+	Glyph  67: off = 0x00005BE2, len = 92
+	  numberOfContours:	1
+	  xMin:			444
+	  yMin:			1021
+	  xMax:			786
+	  yMax:			1329
+
+	EndPoints
+	---------
+	  0:  16
+
+	  Length of Instructions:	33
+	00000: NPUSHB      (12):     0     7    16     7    96     7   112     7   128     7 
+	                             5     7 
+	00014: PUSHW[5]            498    15     4   503    12 
+	00025: MDAP[rd]   
+	00026: MIRP[nrp0,md,rd,1] 
+	00027: SVTCA[y-axis] 
+	00028: MDAP[rd]   
+	00029: MIRP[nrp0,md,rd,1] 
+	00030: DELTAP1    
+	00031: IUP[y]     
+	00032: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   525,  1309)  ->  Abs (   525,  1309)
+	  1: Rel (   236,  -204)  ->  Abs (   761,  1105)
+	  2: Rel (    22,   -25)  ->  Abs (   783,  1080)
+	  3: Rel (     3,    -5)  ->  Abs (   786,  1075)
+	  4: Rel (     0,   -11)  ->  Abs (   786,  1064)
+	  5: Rel (     0,   -18)  ->  Abs (   786,  1046)
+	  6: Rel (   -25,   -25)  ->  Abs (   761,  1021)
+	  7: Rel (   -18,     0)  ->  Abs (   743,  1021)
+	  8: Rel (   -15,     0)  ->  Abs (   728,  1021)
+	  9: Rel (   -23,    20)  ->  Abs (   705,  1041)
+	 10: Rel (  -236,   204)  ->  Abs (   469,  1245)
+	 11: Rel (   -25,    22)  ->  Abs (   444,  1267)
+	 12: Rel (     0,    19)  ->  Abs (   444,  1286)
+	 13: Rel (     0,    18)  ->  Abs (   444,  1304)
+	 14: Rel (    25,    25)  ->  Abs (   469,  1329)
+	 15: Rel (    18,     0)  ->  Abs (   487,  1329)
+	 16: Rel (    15,     0)  ->  Abs (   502,  1329)
+
+	Glyph  68: off = 0x00005C3E, len = 508
+	  numberOfContours:	2
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  40
+	  1:  54
+
+	  Length of Instructions:	354
+	00000: NPUSHB      (81):   170     7   164    31   170    46     3    38     7    37 
+	                            31    59     4   116    19   119    26   118    27   128 
+	                            20   133    26   146    20   149    26   171     7   160 
+	                            20   164    26   174    47   181     7   188    14   177 
+	                            20   180    26   185    30   203    14   244    49    21 
+	                            10     1    25     1    42     1     3   154    17   148 
+	                            26     2   123    46   138    46   155    46   170    14 
+	                           171    46   197    49   213    49   229    49     8    40 
+	                            34 
+	00083: PUSHW[1]            686 
+	00086: NPUSHB      (26):    37    47    33    37    37    34    33    34    40    18 
+	                            29    19    23    41    54    33     0    54    41     1 
+	                             3    51    12     9    44    54 
+	00114: PUSHW[1]            480 
+	00117: NPUSHB      (90):     1   136    40     0    10    51    33     3    11     9 
+	                            33     0    44    16    44   112    44     3    44    41 
+	                            59    12    12    40    20   156    16    33    29     7 
+	                            51    33     3    11    13     0    32    32    33    64 
+	                            13    22    63    15    33     1    47    33    63    33 
+	                            79    33    95    33   159    33   175    33   191    33 
+	                           223    33     8    33    26    56    23   143    48    33 
+	                             6    64    13    22    63   111     6   159     6   191 
+	                             6   223     6     4     6    25    55    42   187    24 
+	00209: PUSHW[1]            300 
+	00212: SCANCTRL   
+	00213: CALL       
+	00214: FLIPOFF    
+	00215: SRP0       
+	00216: MIRP[srp0,nmd,rd,0] 
+	00217: DELTAP1    
+	00218: SVTCA[x-axis] 
+	00219: CALL       
+	00220: FLIPON     
+	00221: MIRP[srp0,md,rd,1] 
+	00222: MIRP[nrp0,nmd,rd,2] 
+	00223: FLIPOFF    
+	00224: SRP0       
+	00225: MIRP[srp0,nmd,rd,2] 
+	00226: DELTAP1    
+	00227: DELTAP2    
+	00228: SVTCA[x-axis] 
+	00229: CALL       
+	00230: ALIGNRP    
+	00231: FLIPON     
+	00232: MIRP[srp0,md,rd,1] 
+	00233: ALIGNRP    
+	00234: SVTCA[y-axis] 
+	00235: MIAP[rd+ci] 
+	00236: MIRP[nrp0,md,rd,1] 
+	00237: MIAP[rd+ci] 
+	00238: MIRP[nrp0,md,rd,1] 
+	00239: MIRP[nrp0,md,rd,1] 
+	00240: SRP2       
+	00241: IP         
+	00242: MDAP[rd]   
+	00243: MIRP[nrp0,md,rd,1] 
+	00244: MDAP[rd]   
+	00245: DELTAP1    
+	00246: MIRP[nrp0,md,rd,1] 
+	00247: MIAP[rd+ci] 
+	00248: MIRP[nrp0,md,rd,1] 
+	00249: MIAP[rd+ci] 
+	00250: ALIGNRP    
+	00251: MIRP[srp0,nmd,rd,0] 
+	00252: MIRP[nrp0,md,rd,1] 
+	00253: SRP1       
+	00254: SRP2       
+	00255: IP         
+	00256: SRP2       
+	00257: SLOOP      
+	00258: IP         
+	00259: SVTCA[x-axis] 
+	00260: SRP1       
+	00261: SRP2       
+	00262: IP         
+	00263: IP         
+	00264: SRP2       
+	00265: IP         
+	00266: SRP1       
+	00267: IP         
+	00268: SVTCA[y-axis] 
+	00269: SRP0       
+	00270: MIRP[srp0,md,rd,1] 
+	00271: RTDG       
+	00272: SRP2       
+	00273: IP         
+	00274: MDAP[rd]   
+	00275: RTG        
+	00276: SVTCA[x-axis] 
+	00277: SRP0       
+	00278: MIRP[srp0,nmd,rd,1] 
+	00279: MIRP[srp0,nmd,rd,0] 
+	00280: MDRP[nrp0,nmd,rd,0] 
+	00281: IUP[y]     
+	00282: IUP[x]     
+	00283: SVTCA[y-axis] 
+	00284: MPPEM      
+	00285: PUSHB[1]             25 
+	00287: GTEQ       
+	00288: MPPEM      
+	00289: PUSHB[1]             36 
+	00291: LTEQ       
+	00292: AND        
+	00293: IF         
+	00294: PUSHW[8]              7    -8    52   -16    53   -16    25   -12 
+	00311: PUSHB[4]             18     8    46     8 
+	00316: SHPIX      
+	00317: SHPIX      
+	00318: SHPIX      
+	00319: SHPIX      
+	00320: SHPIX      
+	00321: SHPIX      
+	00322: EIF        
+	00323: SVTCA[y-axis] 
+	00324: DELTAP1    
+	00325: DELTAP2    
+	00326: SVTCA[y-axis] 
+	00327: MPPEM      
+	00328: PUSHB[1]             11 
+	00330: GTEQ       
+	00331: MPPEM      
+	00332: PUSHB[1]             20 
+	00334: LTEQ       
+	00335: AND        
+	00336: IF         
+	00337: PUSHW[4]             30   -16    19   -64 
+	00346: SHPIX      
+	00347: SHPIX      
+	00348: EIF        
+	00349: SVTCA[y-axis] 
+	00350: DELTAP2    
+	00351: DELTAP1    
+	00352: SVTCA[x-axis] 
+	00353: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual XDual         Y-Short         On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual                         On
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:                      Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:                              X-Short On
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short Off
+	 46:                      Y-Short X-Short On
+	 47:                      Y-Short X-Short Off
+	 48:        XDual         Y-Short         On
+	 49:        XDual         Y-Short         Off
+	 50:        XDual         Y-Short X-Short Off
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short Off
+	 53:  YDual XDual         Y-Short X-Short Off
+	 54:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   856,     0)  ->  Abs (   856,     0)
+	  1: Rel (     0,   121)  ->  Abs (   856,   121)
+	  2: Rel (  -183,  -154)  ->  Abs (   673,   -33)
+	  3: Rel (  -208,     0)  ->  Abs (   465,   -33)
+	  4: Rel (  -151,     0)  ->  Abs (   314,   -33)
+	  5: Rel (  -170,   153)  ->  Abs (   144,   120)
+	  6: Rel (     0,   111)  ->  Abs (   144,   231)
+	  7: Rel (     0,   122)  ->  Abs (   144,   353)
+	  8: Rel (   224,   182)  ->  Abs (   368,   535)
+	  9: Rel (   215,     0)  ->  Abs (   583,   535)
+	 10: Rel (    58,     0)  ->  Abs (   641,   535)
+	 11: Rel (   136,   -15)  ->  Abs (   777,   520)
+	 12: Rel (    79,   -16)  ->  Abs (   856,   504)
+	 13: Rel (     0,   136)  ->  Abs (   856,   640)
+	 14: Rel (     0,    69)  ->  Abs (   856,   709)
+	 15: Rel (  -128,   102)  ->  Abs (   728,   811)
+	 16: Rel (  -128,     0)  ->  Abs (   600,   811)
+	 17: Rel (   -98,     0)  ->  Abs (   502,   811)
+	 18: Rel (  -177,   -57)  ->  Abs (   325,   754)
+	 19: Rel (   -32,   -10)  ->  Abs (   293,   744)
+	 20: Rel (    -9,     0)  ->  Abs (   284,   744)
+	 21: Rel (   -16,     0)  ->  Abs (   268,   744)
+	 22: Rel (   -23,    24)  ->  Abs (   245,   768)
+	 23: Rel (     0,    18)  ->  Abs (   245,   786)
+	 24: Rel (     0,    17)  ->  Abs (   245,   803)
+	 25: Rel (    10,    10)  ->  Abs (   255,   813)
+	 26: Rel (    14,    15)  ->  Abs (   269,   828)
+	 27: Rel (    99,    26)  ->  Abs (   368,   854)
+	 28: Rel (   156,    42)  ->  Abs (   524,   896)
+	 29: Rel (    80,     0)  ->  Abs (   604,   896)
+	 30: Rel (   159,     0)  ->  Abs (   763,   896)
+	 31: Rel (   178,  -157)  ->  Abs (   941,   739)
+	 32: Rel (     0,   -99)  ->  Abs (   941,   640)
+	 33: Rel (     0,  -556)  ->  Abs (   941,    84)
+	 34: Rel (   112,     0)  ->  Abs (  1053,    84)
+	 35: Rel (    31,     0)  ->  Abs (  1084,    84)
+	 36: Rel (    26,   -23)  ->  Abs (  1110,    61)
+	 37: Rel (     0,   -19)  ->  Abs (  1110,    42)
+	 38: Rel (     0,   -18)  ->  Abs (  1110,    24)
+	 39: Rel (   -26,   -24)  ->  Abs (  1084,     0)
+	 40: Rel (   -31,     0)  ->  Abs (  1053,     0)
+	 41: Rel (  -197,   418)  ->  Abs (   856,   418)
+	 42: Rel (   -59,    17)  ->  Abs (   797,   435)
+	 43: Rel (  -132,    16)  ->  Abs (   665,   451)
+	 44: Rel (   -73,     0)  ->  Abs (   592,   451)
+	 45: Rel (  -183,     0)  ->  Abs (   409,   451)
+	 46: Rel (  -103,   -79)  ->  Abs (   306,   372)
+	 47: Rel (   -78,   -59)  ->  Abs (   228,   313)
+	 48: Rel (     0,   -82)  ->  Abs (   228,   231)
+	 49: Rel (     0,   -76)  ->  Abs (   228,   155)
+	 50: Rel (   119,  -104)  ->  Abs (   347,    51)
+	 51: Rel (   114,     0)  ->  Abs (   461,    51)
+	 52: Rel (   109,     0)  ->  Abs (   570,    51)
+	 53: Rel (   187,    87)  ->  Abs (   757,   138)
+	 54: Rel (    99,    95)  ->  Abs (   856,   233)
+
+	Glyph  69: off = 0x00005E3A, len = 414
+	  numberOfContours:	2
+	  xMin:			45
+	  yMin:			-33
+	  xMax:			1111
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  28
+	  1:  40
+
+	  Length of Instructions:	292
+	00000: PUSHB[2]             13    19 
+	00003: PUSHW[1]            686 
+	00006: NPUSHB      (11):    16    47    20    16    16    19    20    34    13    28 
+	                            22 
+	00019: PUSHW[1]            686 
+	00022: NPUSHB      (19):    25    47    21    25    25    22    21    34    28    30 
+	                             7     3     1    11    32    38    12    93    11 
+	00043: PUSHW[1]            355 
+	00046: PUSHB[6]             38    33     9    32    33     1 
+	00053: PUSHW[1]            355 
+	00056: NPUSHB      (42):     3    28     0     0     3     7     9    11    29    33 
+	                            15     6   223     6     2     6    26    42    35    84 
+	                             0    12    32    21    20    64    15     9    63    15 
+	                            20   111    20   223    20     3    20    25    41    94 
+	                           142    24 
+	00100: PUSHW[1]            300 
+	00103: SCANCTRL   
+	00104: CALL       
+	00105: FLIPOFF    
+	00106: SRP0       
+	00107: MIRP[srp0,nmd,rd,0] 
+	00108: DELTAP1    
+	00109: SVTCA[x-axis] 
+	00110: CALL       
+	00111: ALIGNRP    
+	00112: FLIPON     
+	00113: MIRP[srp0,md,rd,1] 
+	00114: ALIGNRP    
+	00115: MIRP[nrp0,nmd,rd,0] 
+	00116: FLIPOFF    
+	00117: SRP0       
+	00118: MIRP[srp0,nmd,rd,2] 
+	00119: DELTAP1    
+	00120: FLIPON     
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: SVTCA[y-axis] 
+	00123: MIAP[rd+ci] 
+	00124: MIAP[rd+ci] 
+	00125: MIAP[rd+ci] 
+	00126: ALIGNRP    
+	00127: RTHG       
+	00128: SRP0       
+	00129: MIRP[nrp0,nmd,rd,0] 
+	00130: RTG        
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: SRP0       
+	00133: MIRP[nrp0,md,rd,1] 
+	00134: RTHG       
+	00135: MIRP[nrp0,nmd,rd,0] 
+	00136: RTG        
+	00137: MIRP[nrp0,nmd,rd,0] 
+	00138: SRP1       
+	00139: SRP2       
+	00140: IP         
+	00141: IP         
+	00142: SRP1       
+	00143: SRP2       
+	00144: IP         
+	00145: SRP0       
+	00146: MIRP[srp0,md,rd,1] 
+	00147: RTDG       
+	00148: SRP2       
+	00149: IP         
+	00150: MDAP[rd]   
+	00151: RTG        
+	00152: SVTCA[x-axis] 
+	00153: SRP0       
+	00154: MIRP[srp0,nmd,rd,1] 
+	00155: MIRP[srp0,nmd,rd,0] 
+	00156: MDRP[nrp0,nmd,rd,0] 
+	00157: SVTCA[y-axis] 
+	00158: SRP0       
+	00159: MIRP[srp0,md,rd,1] 
+	00160: RTDG       
+	00161: SRP2       
+	00162: IP         
+	00163: MDAP[rd]   
+	00164: RTG        
+	00165: SVTCA[x-axis] 
+	00166: SRP0       
+	00167: MIRP[srp0,nmd,rd,1] 
+	00168: MIRP[srp0,nmd,rd,0] 
+	00169: MDRP[nrp0,nmd,rd,0] 
+	00170: IUP[y]     
+	00171: IUP[x]     
+	00172: SVTCA[y-axis] 
+	00173: MPPEM      
+	00174: PUSHB[1]             12 
+	00176: GTEQ       
+	00177: MPPEM      
+	00178: PUSHB[1]             36 
+	00180: LTEQ       
+	00181: AND        
+	00182: IF         
+	00183: NPUSHB      (84):   106     9     1    48    11    48    36    71    40    86 
+	                            40   100    40   169    34   165    36   183     1   185 
+	                            11   188    30   182    39   196     5   203     8   212 
+	                             4   220     8   228     5   234     8    17    22     4 
+	                            49     1    50     5    61    11    67     1    79    11 
+	                            73    30    86     1    85     5    93     7    93    11 
+	                           100     1   102     5   108    11   117     2   123    10 
+	                           123    30   121    31   137    30   186    31   189    34 
+	                           181    37    22     1 
+	00269: PUSHW[1]            -16 
+	00272: PUSHB[3]             11    16    40 
+	00276: PUSHW[1]            -22 
+	00279: PUSHB[2]             30    22 
+	00282: SHPIX      
+	00283: SHPIX      
+	00284: SHPIX      
+	00285: SHPIX      
+	00286: SVTCA[y-axis] 
+	00287: DELTAP2    
+	00288: DELTAP1    
+	00289: SVTCA[x-axis] 
+	00290: DELTAP2    
+	00291: EIF        
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:                                      Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                                      Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:        XDual         Y-Short         On
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short On
+	 21:        XDual                         On
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:                                      On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:                      Y-Short X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   298,  1255)  ->  Abs (   298,  1255)
+	  1: Rel (     0,  -557)  ->  Abs (   298,   698)
+	  2: Rel (   152,   198)  ->  Abs (   450,   896)
+	  3: Rel (   215,     0)  ->  Abs (   665,   896)
+	  4: Rel (   184,     0)  ->  Abs (   849,   896)
+	  5: Rel (   262,  -267)  ->  Abs (  1111,   629)
+	  6: Rel (     0,  -194)  ->  Abs (  1111,   435)
+	  7: Rel (     0,  -196)  ->  Abs (  1111,   239)
+	  8: Rel (  -265,  -272)  ->  Abs (   846,   -33)
+	  9: Rel (  -181,     0)  ->  Abs (   665,   -33)
+	 10: Rel (  -220,     0)  ->  Abs (   445,   -33)
+	 11: Rel (  -147,   198)  ->  Abs (   298,   165)
+	 12: Rel (     0,  -165)  ->  Abs (   298,     0)
+	 13: Rel (  -197,     0)  ->  Abs (   101,     0)
+	 14: Rel (   -30,     0)  ->  Abs (    71,     0)
+	 15: Rel (   -26,    24)  ->  Abs (    45,    24)
+	 16: Rel (     0,    18)  ->  Abs (    45,    42)
+	 17: Rel (     0,    19)  ->  Abs (    45,    61)
+	 18: Rel (    26,    23)  ->  Abs (    71,    84)
+	 19: Rel (    30,     0)  ->  Abs (   101,    84)
+	 20: Rel (   113,     0)  ->  Abs (   214,    84)
+	 21: Rel (     0,  1086)  ->  Abs (   214,  1170)
+	 22: Rel (  -113,     0)  ->  Abs (   101,  1170)
+	 23: Rel (   -30,     0)  ->  Abs (    71,  1170)
+	 24: Rel (   -26,    24)  ->  Abs (    45,  1194)
+	 25: Rel (     0,    19)  ->  Abs (    45,  1213)
+	 26: Rel (     0,    18)  ->  Abs (    45,  1231)
+	 27: Rel (    26,    24)  ->  Abs (    71,  1255)
+	 28: Rel (    30,     0)  ->  Abs (   101,  1255)
+	 29: Rel (   926,  -824)  ->  Abs (  1027,   431)
+	 30: Rel (     0,   159)  ->  Abs (  1027,   590)
+	 31: Rel (  -218,   221)  ->  Abs (   809,   811)
+	 32: Rel (  -146,     0)  ->  Abs (   663,   811)
+	 33: Rel (  -146,     0)  ->  Abs (   517,   811)
+	 34: Rel (  -218,  -221)  ->  Abs (   299,   590)
+	 35: Rel (     0,  -159)  ->  Abs (   299,   431)
+	 36: Rel (     0,  -159)  ->  Abs (   299,   272)
+	 37: Rel (   218,  -221)  ->  Abs (   517,    51)
+	 38: Rel (   146,     0)  ->  Abs (   663,    51)
+	 39: Rel (   146,     0)  ->  Abs (   809,    51)
+	 40: Rel (   218,   221)  ->  Abs (  1027,   272)
+
+	Glyph  70: off = 0x00005FD8, len = 366
+	  numberOfContours:	1
+	  xMin:			171
+	  yMin:			-33
+	  xMax:			1099
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  42
+
+	  Length of Instructions:	240
+	00000: PUSHB[6]             33    10    11    15    63    21 
+	00007: PUSHW[1]            -10 
+	00010: NPUSHB      (44):    11    15    63   199    21   220    37   217    39   224 
+	                            31   224    33   235    37   234    39     7    36    21 
+	                            39    22    68    32    77    37    77    39    85    32 
+	                            93    37    90    39   106    15   106    25   105    37 
+	                           137    25    12    22 
+	00056: PUSHW[1]            -14 
+	00059: NPUSHB     (115):    19    20    89    19    86    21   107    37   102    39 
+	                           246    26     5     6    26    25    16    21    26    41 
+	                            16    41    18    37    26   138    16   155    16   150 
+	                            24   149    26   165    21   165    25    12    22    35 
+	                            38    18    17    15    25    20    27     1     0     3 
+	                             8    14    25    28    23    15    13     0     3    17 
+	                            11     0   136    17    33    41     7    11   179     4 
+	                             6    28   162    23    33    35    11    14    59     8 
+	                            89   160    31     1   144    31   192    31     2    31 
+	                            26    44    20    33    38    64    15     9    63   160 
+	                            38     1    15    38    31    38   144    38     3    38 
+	                            25    43   196   142    24 
+	00176: PUSHW[1]            300 
+	00179: SCANCTRL   
+	00180: CALL       
+	00181: FLIPOFF    
+	00182: SRP0       
+	00183: MIRP[srp0,nmd,rd,0] 
+	00184: DELTAP1    
+	00185: DELTAP2    
+	00186: SVTCA[x-axis] 
+	00187: CALL       
+	00188: FLIPON     
+	00189: MIRP[nrp0,md,rd,1] 
+	00190: FLIPOFF    
+	00191: SRP0       
+	00192: MIRP[srp0,nmd,rd,2] 
+	00193: DELTAP1    
+	00194: DELTAP2    
+	00195: FLIPON     
+	00196: MIRP[srp0,nmd,rd,0] 
+	00197: MIRP[nrp0,md,rd,1] 
+	00198: SVTCA[y-axis] 
+	00199: MIAP[rd+ci] 
+	00200: MIRP[nrp0,md,rd,1] 
+	00201: MIRP[nrp0,md,rd,1] 
+	00202: MIAP[rd+ci] 
+	00203: MIRP[nrp0,md,rd,1] 
+	00204: MIAP[rd+ci] 
+	00205: MIRP[nrp0,md,rd,1] 
+	00206: MIRP[nrp0,nmd,rd,0] 
+	00207: SRP1       
+	00208: SRP2       
+	00209: SLOOP      
+	00210: IP         
+	00211: SRP1       
+	00212: SRP2       
+	00213: IP         
+	00214: SVTCA[x-axis] 
+	00215: SRP1       
+	00216: SRP2       
+	00217: SLOOP      
+	00218: IP         
+	00219: SRP2       
+	00220: IP         
+	00221: IP         
+	00222: SRP1       
+	00223: IP         
+	00224: SRP1       
+	00225: SRP2       
+	00226: IP         
+	00227: IUP[y]     
+	00228: IUP[x]     
+	00229: SVTCA[y-axis] 
+	00230: DELTAP2    
+	00231: DELTAP1    
+	00232: SHPIX      
+	00233: SHPIX      
+	00234: SVTCA[x-axis] 
+	00235: DELTAP2    
+	00236: DELTAP1    
+	00237: SVTCA[x-axis] 
+	00238: CALL       
+	00239: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short         Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         On
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:                      Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:                                      Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:                                      Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   965,   781)  ->  Abs (   965,   781)
+	  1: Rel (     0,    28)  ->  Abs (   965,   809)
+	  2: Rel (     0,    31)  ->  Abs (   965,   840)
+	  3: Rel (    24,    26)  ->  Abs (   989,   866)
+	  4: Rel (    18,     0)  ->  Abs (  1007,   866)
+	  5: Rel (    19,     0)  ->  Abs (  1026,   866)
+	  6: Rel (    24,   -26)  ->  Abs (  1050,   840)
+	  7: Rel (     0,   -31)  ->  Abs (  1050,   809)
+	  8: Rel (     0,  -190)  ->  Abs (  1050,   619)
+	  9: Rel (    -1,   -31)  ->  Abs (  1049,   588)
+	 10: Rel (   -23,   -26)  ->  Abs (  1026,   562)
+	 11: Rel (   -19,     0)  ->  Abs (  1007,   562)
+	 12: Rel (   -17,     0)  ->  Abs (   990,   562)
+	 13: Rel (   -23,    23)  ->  Abs (   967,   585)
+	 14: Rel (    -2,    27)  ->  Abs (   965,   612)
+	 15: Rel (    -6,    71)  ->  Abs (   959,   683)
+	 16: Rel (  -175,   128)  ->  Abs (   784,   811)
+	 17: Rel (  -148,     0)  ->  Abs (   636,   811)
+	 18: Rel (  -187,     0)  ->  Abs (   449,   811)
+	 19: Rel (  -194,  -234)  ->  Abs (   255,   577)
+	 20: Rel (     0,  -151)  ->  Abs (   255,   426)
+	 21: Rel (     0,  -163)  ->  Abs (   255,   263)
+	 22: Rel (   214,  -212)  ->  Abs (   469,    51)
+	 23: Rel (   170,     0)  ->  Abs (   639,    51)
+	 24: Rel (    98,     0)  ->  Abs (   737,    51)
+	 25: Rel (   203,    72)  ->  Abs (   940,   123)
+	 26: Rel (    82,    80)  ->  Abs (  1022,   203)
+	 27: Rel (    21,    20)  ->  Abs (  1043,   223)
+	 28: Rel (    16,     0)  ->  Abs (  1059,   223)
+	 29: Rel (    17,     0)  ->  Abs (  1076,   223)
+	 30: Rel (    23,   -23)  ->  Abs (  1099,   200)
+	 31: Rel (     0,   -17)  ->  Abs (  1099,   183)
+	 32: Rel (     0,   -43)  ->  Abs (  1099,   140)
+	 33: Rel (  -101,   -66)  ->  Abs (   998,    74)
+	 34: Rel (  -163,  -107)  ->  Abs (   835,   -33)
+	 35: Rel (  -200,     0)  ->  Abs (   635,   -33)
+	 36: Rel (  -203,     0)  ->  Abs (   432,   -33)
+	 37: Rel (  -261,   259)  ->  Abs (   171,   226)
+	 38: Rel (     0,   199)  ->  Abs (   171,   425)
+	 39: Rel (     0,   203)  ->  Abs (   171,   628)
+	 40: Rel (   267,   268)  ->  Abs (   438,   896)
+	 41: Rel (   203,     0)  ->  Abs (   641,   896)
+	 42: Rel (   193,     0)  ->  Abs (   834,   896)
+
+	Glyph  71: off = 0x00006146, len = 348
+	  numberOfContours:	2
+	  xMin:			126
+	  yMin:			-33
+	  xMax:			1195
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  30
+	  1:  42
+
+	  Length of Instructions:	225
+	00000: PUSHB[7]             73    42   104    42     2     8     2 
+	00008: PUSHW[1]            686 
+	00011: NPUSHB      (14):     0     5     1     5    47     1     5     5     2     1 
+	                            34     8    30    24 
+	00027: PUSHW[1]            686 
+	00030: NPUSHB      (16):    27    47    23    27    27    24    23    34    30    10 
+	                            22    34    40     9    93    10 
+	00048: PUSHW[1]            355 
+	00051: PUSHB[4]             40    33    12    22 
+	00056: PUSHW[1]            355 
+	00059: NPUSHB      (32):    34    33    20    30     0    12    11    20     7     0 
+	                             0     0     1    23    31     9    32   128     1     1 
+	                            15     1     1     1    26    44    37    33   128    16 
+	                             1    16 
+	00093: PUSHW[1]            396 
+	00096: PUSHB[4]             43    42   128    24 
+	00101: PUSHW[1]            300 
+	00104: SCANCTRL   
+	00105: CALL       
+	00106: SRP0       
+	00107: MIRP[srp0,nmd,rd,2] 
+	00108: DELTAP2    
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: FLIPOFF    
+	00111: SRP0       
+	00112: MIRP[srp0,nmd,rd,2] 
+	00113: DELTAP1    
+	00114: DELTAP2    
+	00115: FLIPON     
+	00116: MIRP[srp0,md,rd,1] 
+	00117: ALIGNRP    
+	00118: ALIGNRP    
+	00119: SRP0       
+	00120: ALIGNRP    
+	00121: SVTCA[y-axis] 
+	00122: MIAP[rd+ci] 
+	00123: MIAP[rd+ci] 
+	00124: MIAP[rd+ci] 
+	00125: SRP0       
+	00126: ALIGNRP    
+	00127: SRP0       
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: MIRP[nrp0,nmd,rd,0] 
+	00130: SRP0       
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: MIRP[nrp0,nmd,rd,0] 
+	00133: MIRP[srp0,nmd,rd,0] 
+	00134: SRP1       
+	00135: SRP2       
+	00136: IP         
+	00137: IP         
+	00138: SRP0       
+	00139: MIRP[srp0,md,rd,1] 
+	00140: RTDG       
+	00141: SRP2       
+	00142: IP         
+	00143: MDAP[rd]   
+	00144: RTG        
+	00145: SVTCA[x-axis] 
+	00146: SRP0       
+	00147: MIRP[srp0,nmd,rd,1] 
+	00148: MIRP[srp0,nmd,rd,0] 
+	00149: MDRP[nrp0,nmd,rd,0] 
+	00150: SVTCA[y-axis] 
+	00151: SRP0       
+	00152: MIRP[srp0,md,rd,1] 
+	00153: RTDG       
+	00154: SRP2       
+	00155: IP         
+	00156: MDAP[rd]   
+	00157: RTG        
+	00158: SVTCA[x-axis] 
+	00159: SRP0       
+	00160: MIRP[srp0,nmd,rd,1] 
+	00161: DELTAP1    
+	00162: MIRP[srp0,nmd,rd,0] 
+	00163: MDRP[nrp0,nmd,rd,0] 
+	00164: IUP[y]     
+	00165: IUP[x]     
+	00166: MPPEM      
+	00167: PUSHB[1]             22 
+	00169: GTEQ       
+	00170: MPPEM      
+	00171: PUSHB[1]             36 
+	00173: LTEQ       
+	00174: AND        
+	00175: IF         
+	00176: PUSHB[4]             14     8    18     8 
+	00181: SHPIX      
+	00182: SHPIX      
+	00183: EIF        
+	00184: SVTCA[y-axis] 
+	00185: MPPEM      
+	00186: PUSHB[1]             12 
+	00188: GTEQ       
+	00189: MPPEM      
+	00190: PUSHB[1]             36 
+	00192: LTEQ       
+	00193: AND        
+	00194: IF         
+	00195: PUSHW[2]             42   -20 
+	00200: PUSHB[3]             32    20    39 
+	00204: PUSHW[3]             -8    38   -25 
+	00211: PUSHB[4]             35     8    36    25 
+	00216: SHPIX      
+	00217: SHPIX      
+	00218: SHPIX      
+	00219: SHPIX      
+	00220: SHPIX      
+	00221: SHPIX      
+	00222: EIF        
+	00223: SVTCA[y-axis] 
+	00224: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short On
+	 10:  YDual XDual         Y-Short         On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short X-Short On
+	 23:        XDual                         On
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:        XDual                 X-Short On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:                      Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1026,  1255)  ->  Abs (  1026,  1255)
+	  1: Rel (     0, -1171)  ->  Abs (  1026,    84)
+	  2: Rel (   112,     0)  ->  Abs (  1138,    84)
+	  3: Rel (    31,     0)  ->  Abs (  1169,    84)
+	  4: Rel (    26,   -23)  ->  Abs (  1195,    61)
+	  5: Rel (     0,   -19)  ->  Abs (  1195,    42)
+	  6: Rel (     0,   -18)  ->  Abs (  1195,    24)
+	  7: Rel (   -26,   -24)  ->  Abs (  1169,     0)
+	  8: Rel (   -31,     0)  ->  Abs (  1138,     0)
+	  9: Rel (  -197,     0)  ->  Abs (   941,     0)
+	 10: Rel (     0,   167)  ->  Abs (   941,   167)
+	 11: Rel (  -146,  -200)  ->  Abs (   795,   -33)
+	 12: Rel (  -225,     0)  ->  Abs (   570,   -33)
+	 13: Rel (  -114,     0)  ->  Abs (   456,   -33)
+	 14: Rel (  -209,   121)  ->  Abs (   247,    88)
+	 15: Rel (  -121,   224)  ->  Abs (   126,   312)
+	 16: Rel (     0,   119)  ->  Abs (   126,   431)
+	 17: Rel (     0,   120)  ->  Abs (   126,   551)
+	 18: Rel (   121,   223)  ->  Abs (   247,   774)
+	 19: Rel (   209,   122)  ->  Abs (   456,   896)
+	 20: Rel (   115,     0)  ->  Abs (   571,   896)
+	 21: Rel (   220,     0)  ->  Abs (   791,   896)
+	 22: Rel (   150,  -200)  ->  Abs (   941,   696)
+	 23: Rel (     0,   474)  ->  Abs (   941,  1170)
+	 24: Rel (  -112,     0)  ->  Abs (   829,  1170)
+	 25: Rel (   -31,     0)  ->  Abs (   798,  1170)
+	 26: Rel (   -26,    24)  ->  Abs (   772,  1194)
+	 27: Rel (     0,    19)  ->  Abs (   772,  1213)
+	 28: Rel (     0,    18)  ->  Abs (   772,  1231)
+	 29: Rel (    26,    24)  ->  Abs (   798,  1255)
+	 30: Rel (    31,     0)  ->  Abs (   829,  1255)
+	 31: Rel (   112,  -824)  ->  Abs (   941,   431)
+	 32: Rel (     0,   160)  ->  Abs (   941,   591)
+	 33: Rel (  -216,   220)  ->  Abs (   725,   811)
+	 34: Rel (  -149,     0)  ->  Abs (   576,   811)
+	 35: Rel (  -150,     0)  ->  Abs (   426,   811)
+	 36: Rel (  -216,  -220)  ->  Abs (   210,   591)
+	 37: Rel (     0,  -160)  ->  Abs (   210,   431)
+	 38: Rel (     0,  -159)  ->  Abs (   210,   272)
+	 39: Rel (   216,  -221)  ->  Abs (   426,    51)
+	 40: Rel (   150,     0)  ->  Abs (   576,    51)
+	 41: Rel (   149,     0)  ->  Abs (   725,    51)
+	 42: Rel (   216,   221)  ->  Abs (   941,   272)
+
+	Glyph  72: off = 0x000062A2, len = 318
+	  numberOfContours:	2
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1071
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  25
+	  1:  32
+
+	  Length of Instructions:	208
+	00000: NPUSHB     (105):    10    22   153    21     2    50     2    66     2    82 
+	                             2    99     2   198     2   198    19   202    25   218 
+	                            18   218    25   220    27   227    24   229    31   250 
+	                            22    13    25    28    42    28    52     2    56    30 
+	                            74    27    76    31    92    27    90    31   111    27 
+	                           108    31   126    27   140    27   153    28   153    30 
+	                           183     5    15   117    22   186    28   196     3   196 
+	                            18   201    28   201    30     6     8   197    17    26 
+	                            32    32     0     1     1    17    29    33    23     7 
+	                             4    33    17    11    12    84    26    59   160     0 
+	                             1   112     0     1     0 
+	00107: PUSHW[1]            485 
+	00110: NPUSHB      (23):    34    32    59     1    59   160    20     1   111    20 
+	                           191    20   207    20   223    20     4    20    25    33 
+	                            42   172    24 
+	00135: PUSHW[1]            300 
+	00138: SCANCTRL   
+	00139: CALL       
+	00140: FLIPOFF    
+	00141: SRP0       
+	00142: MIRP[srp0,nmd,rd,0] 
+	00143: DELTAP1    
+	00144: DELTAP2    
+	00145: FLIPON     
+	00146: MIRP[nrp0,md,rd,1] 
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: SRP0       
+	00149: MIRP[srp0,nmd,rd,2] 
+	00150: DELTAP1    
+	00151: DELTAP2    
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: MIRP[nrp0,nmd,rd,0] 
+	00154: SVTCA[y-axis] 
+	00155: MIAP[rd+ci] 
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: MIAP[rd+ci] 
+	00158: MIRP[nrp0,md,rd,1] 
+	00159: SRP2       
+	00160: IP         
+	00161: MDAP[rd]   
+	00162: ALIGNRP    
+	00163: MIRP[srp0,md,rd,1] 
+	00164: ALIGNRP    
+	00165: SRP0       
+	00166: MIRP[nrp0,md,rd,1] 
+	00167: IUP[y]     
+	00168: IUP[x]     
+	00169: SVTCA[y-axis] 
+	00170: MPPEM      
+	00171: PUSHB[1]             12 
+	00173: GTEQ       
+	00174: MPPEM      
+	00175: PUSHB[1]             36 
+	00177: LTEQ       
+	00178: AND        
+	00179: IF         
+	00180: PUSHB[3]             22    20     6 
+	00184: PUSHW[1]            -16 
+	00187: PUSHB[5]             27    20    31    30     2 
+	00193: PUSHW[1]            -20 
+	00196: SHPIX      
+	00197: SHPIX      
+	00198: SHPIX      
+	00199: SHPIX      
+	00200: SHPIX      
+	00201: EIF        
+	00202: SVTCA[y-axis] 
+	00203: DELTAP1    
+	00204: DELTAP2    
+	00205: SVTCA[x-axis] 
+	00206: DELTAP1    
+	00207: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:                                      Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:                                      Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:                                      Off
+	 26:                      Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:                      Y-Short X-Short Off
+	 32:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1069,   413)  ->  Abs (  1069,   413)
+	  1: Rel (  -856,     0)  ->  Abs (   213,   413)
+	  2: Rel (    22,  -163)  ->  Abs (   235,   250)
+	  3: Rel (   229,  -199)  ->  Abs (   464,    51)
+	  4: Rel (   169,     0)  ->  Abs (   633,    51)
+	  5: Rel (    94,     0)  ->  Abs (   727,    51)
+	  6: Rel (   206,    62)  ->  Abs (   933,   113)
+	  7: Rel (    65,    51)  ->  Abs (   998,   164)
+	  8: Rel (    19,    15)  ->  Abs (  1017,   179)
+	  9: Rel (    14,     0)  ->  Abs (  1031,   179)
+	 10: Rel (    16,     0)  ->  Abs (  1047,   179)
+	 11: Rel (    24,   -25)  ->  Abs (  1071,   154)
+	 12: Rel (     0,   -17)  ->  Abs (  1071,   137)
+	 13: Rel (     0,   -17)  ->  Abs (  1071,   120)
+	 14: Rel (   -16,   -16)  ->  Abs (  1055,   104)
+	 15: Rel (   -48,   -50)  ->  Abs (  1007,    54)
+	 16: Rel (  -245,   -87)  ->  Abs (   762,   -33)
+	 17: Rel (  -129,     0)  ->  Abs (   633,   -33)
+	 18: Rel (  -216,     0)  ->  Abs (   417,   -33)
+	 19: Rel (  -289,   283)  ->  Abs (   128,   250)
+	 20: Rel (     0,   201)  ->  Abs (   128,   451)
+	 21: Rel (     0,   183)  ->  Abs (   128,   634)
+	 22: Rel (   271,   262)  ->  Abs (   399,   896)
+	 23: Rel (   200,     0)  ->  Abs (   599,   896)
+	 24: Rel (   206,     0)  ->  Abs (   805,   896)
+	 25: Rel (   266,  -269)  ->  Abs (  1071,   627)
+	 26: Rel (   -87,  -129)  ->  Abs (   984,   498)
+	 27: Rel (   -25,   139)  ->  Abs (   959,   637)
+	 28: Rel (  -213,   174)  ->  Abs (   746,   811)
+	 29: Rel (  -147,     0)  ->  Abs (   599,   811)
+	 30: Rel (  -147,     0)  ->  Abs (   452,   811)
+	 31: Rel (  -212,  -172)  ->  Abs (   240,   639)
+	 32: Rel (   -26,  -141)  ->  Abs (   214,   498)
+
+	Glyph  73: off = 0x000063E0, len = 348
+	  numberOfContours:	1
+	  xMin:			215
+	  yMin:			0
+	  xMax:			1114
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  52
+
+	  Length of Instructions:	203
+	00000: NPUSHB      (37):    64    12    80     5   128     5   131    12   129    49 
+	                           160    12   178    12   180    43   194    43   212    43 
+	                            10    23     8    15     9    12   200    16    16    34 
+	                             9    52    46     0    49     1    49 
+	00039: PUSHW[1]            516 
+	00042: PUSHB[7]              0     0    34    46     2     8     5 
+	00050: PUSHW[1]            320 
+	00053: NPUSHB      (26):     1     1    34     8    36    40    34     0    37    93 
+	                            41    33    29     0     0    18    32    25    46    45 
+	                            24     6     9     8    10    34 
+	00081: PUSHW[1]            396 
+	00084: NPUSHB      (10):    54     0    44     1    32    26   207    16     1    16 
+	00096: PUSHW[1]            405 
+	00099: NPUSHB      (13):    47    21    64    21   112    21   208    21     4    21 
+	                            25    53   117 
+	00114: PUSHW[2]            460    24 
+	00119: CALL       
+	00120: FLIPOFF    
+	00121: SRP0       
+	00122: MIRP[srp0,nmd,rd,0] 
+	00123: DELTAP1    
+	00124: FLIPON     
+	00125: MIRP[srp0,nmd,rd,0] 
+	00126: DELTAP1    
+	00127: ALIGNRP    
+	00128: MIRP[srp0,md,rd,1] 
+	00129: ALIGNRP    
+	00130: ALIGNRP    
+	00131: SRP0       
+	00132: MIRP[nrp0,nmd,rd,2] 
+	00133: SVTCA[y-axis] 
+	00134: MIAP[rd+ci] 
+	00135: ALIGNRP    
+	00136: MIAP[rd+ci] 
+	00137: ALIGNRP    
+	00138: ALIGNRP    
+	00139: ALIGNRP    
+	00140: MIRP[srp0,md,rd,1] 
+	00141: ALIGNRP    
+	00142: MIAP[rd+ci] 
+	00143: MIRP[srp0,md,rd,1] 
+	00144: MIRP[nrp0,nmd,rd,0] 
+	00145: SVTCA[x-axis] 
+	00146: SRP1       
+	00147: SRP2       
+	00148: IP         
+	00149: IP         
+	00150: SVTCA[y-axis] 
+	00151: SRP0       
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: SVTCA[x-axis] 
+	00154: SRP0       
+	00155: MIRP[srp0,nmd,rd,1] 
+	00156: MDRP[srp0,nmd,rd,0] 
+	00157: ALIGNRP    
+	00158: SVTCA[y-axis] 
+	00159: SRP0       
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: SVTCA[x-axis] 
+	00162: SRP0       
+	00163: MIRP[srp0,nmd,rd,1] 
+	00164: DELTAP1    
+	00165: MDRP[srp0,nmd,rd,0] 
+	00166: ALIGNRP    
+	00167: SVTCA[y-axis] 
+	00168: SRP0       
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: SVTCA[x-axis] 
+	00171: SRP0       
+	00172: MIRP[srp0,nmd,rd,1] 
+	00173: MDRP[srp0,nmd,rd,0] 
+	00174: ALIGNRP    
+	00175: IUP[y]     
+	00176: IUP[x]     
+	00177: RS         
+	00178: JROF       
+	00179: NPUSHB      (14):    42    43    27    28    42    28    44    31     0    43 
+	                            27    41    31     1 
+	00195: SVTCA[y-axis] 
+	00196: CALL       
+	00197: SVTCA[x-axis] 
+	00198: CALL       
+	00199: FLIPRGON   
+	00200: FLIPRGON   
+	00201: SVTCA[x-axis] 
+	00202: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short X-Short On
+	 32:        XDual         Y-Short X-Short Off
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:                      Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual               Y-Short X-Short On
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:                      Y-Short X-Short Off
+	 44:        XDual         Y-Short         On
+	 45:        XDual         Y-Short         On
+	 46:  YDual                               On
+	 47:  YDual XDual                 X-Short Off
+	 48:        XDual         Y-Short X-Short Off
+	 49:        XDual         Y-Short         On
+	 50:        XDual         Y-Short         Off
+	 51:                      Y-Short X-Short Off
+	 52:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   559,   781)  ->  Abs (   559,   781)
+	  1: Rel (     0,  -697)  ->  Abs (   559,    84)
+	  2: Rel (   369,     0)  ->  Abs (   928,    84)
+	  3: Rel (    30,     0)  ->  Abs (   958,    84)
+	  4: Rel (    26,   -23)  ->  Abs (   984,    61)
+	  5: Rel (     0,   -19)  ->  Abs (   984,    42)
+	  6: Rel (     0,   -18)  ->  Abs (   984,    24)
+	  7: Rel (   -26,   -24)  ->  Abs (   958,     0)
+	  8: Rel (   -30,     0)  ->  Abs (   928,     0)
+	  9: Rel (  -657,     0)  ->  Abs (   271,     0)
+	 10: Rel (   -30,     0)  ->  Abs (   241,     0)
+	 11: Rel (   -26,    24)  ->  Abs (   215,    24)
+	 12: Rel (     0,    18)  ->  Abs (   215,    42)
+	 13: Rel (     0,    19)  ->  Abs (   215,    61)
+	 14: Rel (    26,    23)  ->  Abs (   241,    84)
+	 15: Rel (    30,     0)  ->  Abs (   271,    84)
+	 16: Rel (   203,     0)  ->  Abs (   474,    84)
+	 17: Rel (     0,   697)  ->  Abs (   474,   781)
+	 18: Rel (  -182,     0)  ->  Abs (   292,   781)
+	 19: Rel (   -30,     0)  ->  Abs (   262,   781)
+	 20: Rel (   -26,    24)  ->  Abs (   236,   805)
+	 21: Rel (     0,    19)  ->  Abs (   236,   824)
+	 22: Rel (     0,    18)  ->  Abs (   236,   842)
+	 23: Rel (    26,    24)  ->  Abs (   262,   866)
+	 24: Rel (    30,     0)  ->  Abs (   292,   866)
+	 25: Rel (   182,     0)  ->  Abs (   474,   866)
+	 26: Rel (     0,   127)  ->  Abs (   474,   993)
+	 27: Rel (     0,   106)  ->  Abs (   474,  1099)
+	 28: Rel (   172,   156)  ->  Abs (   646,  1255)
+	 29: Rel (   142,     0)  ->  Abs (   788,  1255)
+	 30: Rel (   119,     0)  ->  Abs (   907,  1255)
+	 31: Rel (   135,   -22)  ->  Abs (  1042,  1233)
+	 32: Rel (    51,    -8)  ->  Abs (  1093,  1225)
+	 33: Rel (    21,   -22)  ->  Abs (  1114,  1203)
+	 34: Rel (     0,   -18)  ->  Abs (  1114,  1185)
+	 35: Rel (     0,   -18)  ->  Abs (  1114,  1167)
+	 36: Rel (   -24,   -23)  ->  Abs (  1090,  1144)
+	 37: Rel (   -20,     0)  ->  Abs (  1070,  1144)
+	 38: Rel (    -8,     0)  ->  Abs (  1062,  1144)
+	 39: Rel (   -19,     3)  ->  Abs (  1043,  1147)
+	 40: Rel (  -151,    23)  ->  Abs (   892,  1170)
+	 41: Rel (  -104,     0)  ->  Abs (   788,  1170)
+	 42: Rel (  -110,     0)  ->  Abs (   678,  1170)
+	 43: Rel (  -119,  -108)  ->  Abs (   559,  1062)
+	 44: Rel (     0,   -69)  ->  Abs (   559,   993)
+	 45: Rel (     0,  -127)  ->  Abs (   559,   866)
+	 46: Rel (   393,     0)  ->  Abs (   952,   866)
+	 47: Rel (    30,     0)  ->  Abs (   982,   866)
+	 48: Rel (    26,   -24)  ->  Abs (  1008,   842)
+	 49: Rel (     0,   -19)  ->  Abs (  1008,   823)
+	 50: Rel (     0,   -18)  ->  Abs (  1008,   805)
+	 51: Rel (   -26,   -24)  ->  Abs (   982,   781)
+	 52: Rel (   -30,     0)  ->  Abs (   952,   781)
+
+	Glyph  74: off = 0x0000653C, len = 432
+	  numberOfContours:	2
+	  xMin:			125
+	  yMin:			-386
+	  xMax:			1150
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  39
+	  1:  51
+
+	  Length of Instructions:	286
+	00000: NPUSHB      (49):    69    20   112    20     2   220    33   211    37   236 
+	                            33   228    37   251    33   244    36     6   107    41 
+	                           109    45    99    47    99    51   122    13   124    41 
+	                           113    51   140    41   128    51   157    41   145    51 
+	                           171    41   160    51   186    30    14     2     8 
+	00051: PUSHW[1]            686 
+	00054: NPUSHB      (98):     0     5     1     5    47     9     5     5     8     9 
+	                            34     2     0    30    43    49    24    32    16    23 
+	                            32    17    17    16    14    30   147    49    33    32 
+	                            10    43    33     0   147    38     7     8    59     2 
+	                             6     1     6     1    40    29    32     1    32    10 
+	                            10    16     9   160     9   176     9     3    15     9 
+	                            79     9    95     9   175     9   207     9     5     9 
+	                            26    53    46    33   128    35   144    35   160    35 
+	                           176    35     4   191    35   207    35   224    35   240 
+	                            35     4    35    25    52    42    97    24 
+	00154: PUSHW[1]            300 
+	00157: SCANCTRL   
+	00158: CALL       
+	00159: FLIPOFF    
+	00160: SRP0       
+	00161: MIRP[srp0,nmd,rd,0] 
+	00162: DELTAP1    
+	00163: DELTAP2    
+	00164: FLIPON     
+	00165: MIRP[nrp0,md,rd,1] 
+	00166: FLIPOFF    
+	00167: SRP0       
+	00168: MIRP[srp0,nmd,rd,2] 
+	00169: DELTAP1    
+	00170: DELTAP2    
+	00171: ALIGNRP    
+	00172: FLIPON     
+	00173: SRP0       
+	00174: MIRP[nrp0,md,rd,1] 
+	00175: MIRP[srp0,md,rd,1] 
+	00176: ALIGNRP    
+	00177: ALIGNRP    
+	00178: SVTCA[y-axis] 
+	00179: MIAP[rd+ci] 
+	00180: MIAP[rd+ci] 
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: MIAP[rd+ci] 
+	00183: MIRP[nrp0,nmd,rd,0] 
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: MIAP[rd+ci] 
+	00186: MIRP[nrp0,md,rd,1] 
+	00187: MIRP[nrp0,nmd,rd,0] 
+	00188: MIAP[rd+ci] 
+	00189: ALIGNRP    
+	00190: SRP0       
+	00191: MIRP[nrp0,md,rd,1] 
+	00192: SRP0       
+	00193: MIRP[nrp0,md,rd,1] 
+	00194: SRP1       
+	00195: SRP2       
+	00196: IP         
+	00197: IP         
+	00198: SRP0       
+	00199: MIRP[srp0,md,rd,1] 
+	00200: RTDG       
+	00201: SRP2       
+	00202: IP         
+	00203: MDAP[rd]   
+	00204: RTG        
+	00205: SVTCA[x-axis] 
+	00206: SRP0       
+	00207: MIRP[srp0,nmd,rd,1] 
+	00208: DELTAP1    
+	00209: MIRP[srp0,nmd,rd,0] 
+	00210: MDRP[nrp0,nmd,rd,0] 
+	00211: IUP[y]     
+	00212: IUP[x]     
+	00213: SVTCA[y-axis] 
+	00214: MPPEM      
+	00215: PUSHB[1]             12 
+	00217: GTEQ       
+	00218: MPPEM      
+	00219: PUSHB[1]             36 
+	00221: LTEQ       
+	00222: AND        
+	00223: IF         
+	00224: PUSHW[4]             27   -12    26   -12 
+	00233: PUSHB[3]             42     8    50 
+	00237: PUSHW[1]             -8 
+	00240: PUSHB[3]             30     8     0 
+	00244: PUSHW[1]            -12 
+	00247: PUSHB[3]             44     8    48 
+	00251: PUSHW[1]            -12 
+	00254: PUSHB[3]             41    12    51 
+	00258: PUSHW[1]             -8 
+	00261: PUSHB[3]             45    22    47 
+	00265: PUSHW[1]            -22 
+	00268: SHPIX      
+	00269: SHPIX      
+	00270: SHPIX      
+	00271: SHPIX      
+	00272: SHPIX      
+	00273: SHPIX      
+	00274: SHPIX      
+	00275: SHPIX      
+	00276: SHPIX      
+	00277: SHPIX      
+	00278: SHPIX      
+	00279: SHPIX      
+	00280: EIF        
+	00281: SVTCA[y-axis] 
+	00282: DELTAP2    
+	00283: DELTAP1    
+	00284: SVTCA[x-axis] 
+	00285: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short On
+	 10:        XDual                         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short On
+	 13:              Rep-  2 Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:        XDual         Y-Short X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         On
+	 31:                      Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:                              X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:        XDual                 X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:        XDual                 X-Short On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short Off
+	 45:                      Y-Short X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual         Y-Short         Off
+	 48:        XDual         Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   897,   712)  ->  Abs (   897,   712)
+	  1: Rel (     0,   154)  ->  Abs (   897,   866)
+	  2: Rel (   197,     0)  ->  Abs (  1094,   866)
+	  3: Rel (    30,     0)  ->  Abs (  1124,   866)
+	  4: Rel (    26,   -24)  ->  Abs (  1150,   842)
+	  5: Rel (     0,   -19)  ->  Abs (  1150,   823)
+	  6: Rel (     0,   -18)  ->  Abs (  1150,   805)
+	  7: Rel (   -26,   -24)  ->  Abs (  1124,   781)
+	  8: Rel (   -30,     0)  ->  Abs (  1094,   781)
+	  9: Rel (  -113,     0)  ->  Abs (   981,   781)
+	 10: Rel (     0,  -839)  ->  Abs (   981,   -58)
+	 11: Rel (     0,   -84)  ->  Abs (   981,  -142)
+	 12: Rel (   -36,   -66)  ->  Abs (   945,  -208)
+	 13: Rel (   -24,   -44)  ->  Abs (   921,  -252)
+	 14: Rel (  -112,   -94)  ->  Abs (   809,  -346)
+	 15: Rel (   -92,   -40)  ->  Abs (   717,  -386)
+	 16: Rel (   -77,     0)  ->  Abs (   640,  -386)
+	 17: Rel (  -238,     0)  ->  Abs (   402,  -386)
+	 18: Rel (   -30,     0)  ->  Abs (   372,  -386)
+	 19: Rel (   -26,    23)  ->  Abs (   346,  -363)
+	 20: Rel (     0,    19)  ->  Abs (   346,  -344)
+	 21: Rel (     0,    19)  ->  Abs (   346,  -325)
+	 22: Rel (    26,    24)  ->  Abs (   372,  -301)
+	 23: Rel (    30,     0)  ->  Abs (   402,  -301)
+	 24: Rel (   241,    -1)  ->  Abs (   643,  -302)
+	 25: Rel (    74,     0)  ->  Abs (   717,  -302)
+	 26: Rel (   119,    76)  ->  Abs (   836,  -226)
+	 27: Rel (    39,    73)  ->  Abs (   875,  -153)
+	 28: Rel (    22,    42)  ->  Abs (   897,  -111)
+	 29: Rel (     0,    65)  ->  Abs (   897,   -46)
+	 30: Rel (     0,   252)  ->  Abs (   897,   206)
+	 31: Rel (  -135,  -185)  ->  Abs (   762,    21)
+	 32: Rel (  -213,     0)  ->  Abs (   549,    21)
+	 33: Rel (  -173,     0)  ->  Abs (   376,    21)
+	 34: Rel (  -251,   257)  ->  Abs (   125,   278)
+	 35: Rel (     0,   181)  ->  Abs (   125,   459)
+	 36: Rel (     0,   181)  ->  Abs (   125,   640)
+	 37: Rel (   251,   256)  ->  Abs (   376,   896)
+	 38: Rel (   173,     0)  ->  Abs (   549,   896)
+	 39: Rel (   213,     0)  ->  Abs (   762,   896)
+	 40: Rel (   135,  -437)  ->  Abs (   897,   459)
+	 41: Rel (     0,   148)  ->  Abs (   897,   607)
+	 42: Rel (  -203,   204)  ->  Abs (   694,   811)
+	 43: Rel (  -141,     0)  ->  Abs (   553,   811)
+	 44: Rel (  -141,     0)  ->  Abs (   412,   811)
+	 45: Rel (  -202,  -205)  ->  Abs (   210,   606)
+	 46: Rel (     0,  -147)  ->  Abs (   210,   459)
+	 47: Rel (     0,  -148)  ->  Abs (   210,   311)
+	 48: Rel (   202,  -205)  ->  Abs (   412,   106)
+	 49: Rel (   141,     0)  ->  Abs (   553,   106)
+	 50: Rel (   141,     0)  ->  Abs (   694,   106)
+	 51: Rel (   203,   205)  ->  Abs (   897,   311)
+
+	Glyph  75: off = 0x000066EC, len = 526
+	  numberOfContours:	1
+	  xMin:			85
+	  yMin:			0
+	  xMax:			1133
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  56
+
+	  Length of Instructions:	370
+	00000: NPUSHB      (45):   153    26   251    32     2     4     1    21     1   100 
+	                             6   117     6   144     1   148     2   160     1   164 
+	                             2   176     1   179     2    10   165     6   166     7 
+	                           180     5   181     7   198     7   216     7   223    26 
+	                             7    26     8    17    23 
+	00047: PUSHW[1]            686 
+	00050: NPUSHB      (16):    15    20    31    20     2    20    92    24    20    20 
+	                            23    24    34    17    41    47 
+	00068: PUSHW[1]            686 
+	00071: NPUSHB      (11):    44    92    48    44    44    47    48    34    41    16 
+	                            10 
+	00084: PUSHW[1]            686 
+	00087: NPUSHB      (14):     0    13     1    13    92     9    13    13    10     9 
+	                            34    16    40    34 
+	00103: PUSHW[1]            686 
+	00106: NPUSHB      (11):    37    92    33    37    37    34    33    34    40    56 
+	                            50 
+	00119: PUSHW[1]            686 
+	00122: NPUSHB      (35):    53    47    49    53    53    50    49    34    56     1 
+	                            32    41    28    33     4    41    40    40    17    17 
+	                            16    56     0     4     7    16    10     8     9    32 
+	                            25   223    24     1    24 
+	00159: PUSHW[1]            675 
+	00162: NPUSHB      (11):    58     0    33    32    49   191    48   207    48     2 
+	                            48 
+	00175: PUSHW[1]            491 
+	00178: PUSHB[4]             57    71    97    24 
+	00183: PUSHW[1]            300 
+	00186: SCANCTRL   
+	00187: CALL       
+	00188: SRP0       
+	00189: MIRP[srp0,nmd,rd,2] 
+	00190: DELTAP1    
+	00191: ALIGNRP    
+	00192: MIRP[srp0,md,rd,1] 
+	00193: ALIGNRP    
+	00194: SRP0       
+	00195: MIRP[srp0,nmd,rd,0] 
+	00196: DELTAP1    
+	00197: ALIGNRP    
+	00198: MIRP[srp0,md,rd,1] 
+	00199: ALIGNRP    
+	00200: SVTCA[y-axis] 
+	00201: MIAP[rd+ci] 
+	00202: MIAP[rd+ci] 
+	00203: MIAP[rd+ci] 
+	00204: SRP0       
+	00205: ALIGNRP    
+	00206: SRP0       
+	00207: ALIGNRP    
+	00208: SRP0       
+	00209: ALIGNRP    
+	00210: SRP0       
+	00211: MIRP[nrp0,md,rd,1] 
+	00212: SRP1       
+	00213: IP         
+	00214: IP         
+	00215: SRP0       
+	00216: MIRP[srp0,md,rd,1] 
+	00217: RTDG       
+	00218: SRP2       
+	00219: IP         
+	00220: MDAP[rd]   
+	00221: RTG        
+	00222: SVTCA[x-axis] 
+	00223: SRP0       
+	00224: MIRP[srp0,nmd,rd,1] 
+	00225: MIRP[srp0,nmd,rd,0] 
+	00226: MDRP[nrp0,nmd,rd,0] 
+	00227: SVTCA[y-axis] 
+	00228: SRP0       
+	00229: MIRP[srp0,md,rd,1] 
+	00230: RTDG       
+	00231: SRP2       
+	00232: IP         
+	00233: MDAP[rd]   
+	00234: RTG        
+	00235: SVTCA[x-axis] 
+	00236: SRP0       
+	00237: MIRP[srp0,nmd,rd,1] 
+	00238: MIRP[srp0,nmd,rd,0] 
+	00239: MDRP[nrp0,nmd,rd,0] 
+	00240: SVTCA[y-axis] 
+	00241: SRP0       
+	00242: MIRP[srp0,md,rd,1] 
+	00243: RTDG       
+	00244: SRP2       
+	00245: IP         
+	00246: MDAP[rd]   
+	00247: RTG        
+	00248: SVTCA[x-axis] 
+	00249: SRP0       
+	00250: MIRP[srp0,nmd,rd,1] 
+	00251: DELTAP1    
+	00252: MIRP[srp0,nmd,rd,0] 
+	00253: MDRP[nrp0,nmd,rd,0] 
+	00254: SVTCA[y-axis] 
+	00255: SRP0       
+	00256: MIRP[srp0,md,rd,1] 
+	00257: RTDG       
+	00258: SRP2       
+	00259: IP         
+	00260: MDAP[rd]   
+	00261: RTG        
+	00262: SVTCA[x-axis] 
+	00263: SRP0       
+	00264: MIRP[srp0,nmd,rd,1] 
+	00265: MIRP[srp0,nmd,rd,0] 
+	00266: MDRP[nrp0,nmd,rd,0] 
+	00267: SVTCA[y-axis] 
+	00268: SRP0       
+	00269: MIRP[srp0,md,rd,1] 
+	00270: RTDG       
+	00271: SRP2       
+	00272: IP         
+	00273: MDAP[rd]   
+	00274: RTG        
+	00275: SVTCA[x-axis] 
+	00276: SRP0       
+	00277: MIRP[srp0,nmd,rd,1] 
+	00278: DELTAP1    
+	00279: MIRP[srp0,nmd,rd,0] 
+	00280: MDRP[nrp0,nmd,rd,0] 
+	00281: PUSHB[2]              6     2 
+	00284: RS         
+	00285: EQ         
+	00286: IF         
+	00287: PUSHW[2]              1   -64 
+	00292: PUSHB[4]             27    36    52     1 
+	00297: PUSHW[1]            -32 
+	00300: PUSHB[3]             17    26    52 
+	00304: SVTCA[y-axis] 
+	00305: CALL       
+	00306: CALL       
+	00307: EIF        
+	00308: IUP[y]     
+	00309: IUP[x]     
+	00310: RS         
+	00311: JROF       
+	00312: NPUSHB      (16):    26    27     5     7     6    37    27     5    25    31 
+	                             1    26     7    28    31     1 
+	00330: SVTCA[y-axis] 
+	00331: CALL       
+	00332: SVTCA[x-axis] 
+	00333: CALL       
+	00334: CALL       
+	00335: FLIPRGON   
+	00336: FLIPRGON   
+	00337: SVTCA[y-axis] 
+	00338: MPPEM      
+	00339: PUSHB[1]             18 
+	00341: GTEQ       
+	00342: MPPEM      
+	00343: PUSHB[1]             36 
+	00345: LTEQ       
+	00346: AND        
+	00347: IF         
+	00348: PUSHW[2]              6   -12 
+	00353: PUSHB[6]             32    12    31    20    30    22 
+	00360: SHPIX      
+	00361: SHPIX      
+	00362: SHPIX      
+	00363: SHPIX      
+	00364: EIF        
+	00365: SVTCA[x-axis] 
+	00366: DELTAP1    
+	00367: SVTCA[y-axis] 
+	00368: DELTAP2    
+	00369: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual                         On
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                               On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short On
+	 25:        XDual                         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:                      Y-Short X-Short On
+	 31:                      Y-Short X-Short Off
+	 32:                      Y-Short X-Short On
+	 33:        XDual                         On
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:                      Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                               On
+	 42:  YDual                       X-Short Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short On
+	 49:        XDual                         On
+	 50:  YDual                       X-Short On
+	 51:  YDual                       X-Short Off
+	 52:  YDual               Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short         On
+	 54:  YDual XDual         Y-Short         Off
+	 55:  YDual XDual         Y-Short X-Short Off
+	 56:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   338,  1255)  ->  Abs (   338,  1255)
+	  1: Rel (     0,  -517)  ->  Abs (   338,   738)
+	  2: Rel (    80,    87)  ->  Abs (   418,   825)
+	  3: Rel (   147,    71)  ->  Abs (   565,   896)
+	  4: Rel (    91,     0)  ->  Abs (   656,   896)
+	  5: Rel (    98,     0)  ->  Abs (   754,   896)
+	  6: Rel (   137,   -69)  ->  Abs (   891,   827)
+	  7: Rel (    92,  -143)  ->  Abs (   983,   684)
+	  8: Rel (     0,   -79)  ->  Abs (   983,   605)
+	  9: Rel (     0,  -521)  ->  Abs (   983,    84)
+	 10: Rel (    94,     0)  ->  Abs (  1077,    84)
+	 11: Rel (    31,     0)  ->  Abs (  1108,    84)
+	 12: Rel (    25,   -23)  ->  Abs (  1133,    61)
+	 13: Rel (     0,   -19)  ->  Abs (  1133,    42)
+	 14: Rel (     0,   -18)  ->  Abs (  1133,    24)
+	 15: Rel (   -25,   -24)  ->  Abs (  1108,     0)
+	 16: Rel (   -31,     0)  ->  Abs (  1077,     0)
+	 17: Rel (  -273,     0)  ->  Abs (   804,     0)
+	 18: Rel (   -31,     0)  ->  Abs (   773,     0)
+	 19: Rel (   -26,    24)  ->  Abs (   747,    24)
+	 20: Rel (     0,    18)  ->  Abs (   747,    42)
+	 21: Rel (     0,    19)  ->  Abs (   747,    61)
+	 22: Rel (    26,    23)  ->  Abs (   773,    84)
+	 23: Rel (    31,     0)  ->  Abs (   804,    84)
+	 24: Rel (    94,     0)  ->  Abs (   898,    84)
+	 25: Rel (     0,   515)  ->  Abs (   898,   599)
+	 26: Rel (     0,    91)  ->  Abs (   898,   690)
+	 27: Rel (  -131,   122)  ->  Abs (   767,   812)
+	 28: Rel (  -117,     0)  ->  Abs (   650,   812)
+	 29: Rel (   -92,     0)  ->  Abs (   558,   812)
+	 30: Rel (   -65,   -45)  ->  Abs (   493,   767)
+	 31: Rel (   -47,   -32)  ->  Abs (   446,   735)
+	 32: Rel (  -108,  -119)  ->  Abs (   338,   616)
+	 33: Rel (     0,  -532)  ->  Abs (   338,    84)
+	 34: Rel (    95,     0)  ->  Abs (   433,    84)
+	 35: Rel (    30,     0)  ->  Abs (   463,    84)
+	 36: Rel (    26,   -23)  ->  Abs (   489,    61)
+	 37: Rel (     0,   -19)  ->  Abs (   489,    42)
+	 38: Rel (     0,   -18)  ->  Abs (   489,    24)
+	 39: Rel (   -26,   -24)  ->  Abs (   463,     0)
+	 40: Rel (   -30,     0)  ->  Abs (   433,     0)
+	 41: Rel (  -274,     0)  ->  Abs (   159,     0)
+	 42: Rel (   -30,     0)  ->  Abs (   129,     0)
+	 43: Rel (   -26,    24)  ->  Abs (   103,    24)
+	 44: Rel (     0,    18)  ->  Abs (   103,    42)
+	 45: Rel (     0,    19)  ->  Abs (   103,    61)
+	 46: Rel (    26,    23)  ->  Abs (   129,    84)
+	 47: Rel (    30,     0)  ->  Abs (   159,    84)
+	 48: Rel (    95,     0)  ->  Abs (   254,    84)
+	 49: Rel (     0,  1086)  ->  Abs (   254,  1170)
+	 50: Rel (  -113,     0)  ->  Abs (   141,  1170)
+	 51: Rel (   -30,     0)  ->  Abs (   111,  1170)
+	 52: Rel (   -26,    24)  ->  Abs (    85,  1194)
+	 53: Rel (     0,    19)  ->  Abs (    85,  1213)
+	 54: Rel (     0,    18)  ->  Abs (    85,  1231)
+	 55: Rel (    26,    24)  ->  Abs (   111,  1255)
+	 56: Rel (    30,     0)  ->  Abs (   141,  1255)
+
+	Glyph  76: off = 0x000068FA, len = 218
+	  numberOfContours:	2
+	  xMin:			189
+	  yMin:			0
+	  xMax:			1046
+	  yMax:			1297
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  28
+
+	  Length of Instructions:	127
+	00000: NPUSHB      (42):    34    25    50    25    64    25    82    25    99    25 
+	                           116    25   132    25     7    19    13    16    88    20 
+	                            20    34    13     6    12     9    88     5     5    34 
+	                            12    22    28    25   149    21    21    34    28     3 
+	                           197     2 
+	00044: PUSHW[1]            404 
+	00047: PUSHB[7]             28     6    13    12    10     0     1 
+	00055: PUSHW[4]            351     3     2   480 
+	00064: NPUSHB      (14):     4     4     5    32    21    79    20     1    20    25 
+	                            29    81   127    24 
+	00080: CALL       
+	00081: FLIPOFF    
+	00082: SRP0       
+	00083: MIRP[srp0,nmd,rd,0] 
+	00084: DELTAP1    
+	00085: ALIGNRP    
+	00086: FLIPON     
+	00087: MIRP[srp0,md,rd,1] 
+	00088: ALIGNRP    
+	00089: SRP0       
+	00090: MIRP[srp0,md,rd,1] 
+	00091: ALIGNRP    
+	00092: MIRP[srp0,md,rd,1] 
+	00093: ALIGNRP    
+	00094: SVTCA[y-axis] 
+	00095: MIAP[rd+ci] 
+	00096: ALIGNRP    
+	00097: MIAP[rd+ci] 
+	00098: MIRP[srp0,nmd,rd,2] 
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: SRP0       
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: SVTCA[x-axis] 
+	00103: SRP0       
+	00104: MIRP[srp0,nmd,rd,1] 
+	00105: MDRP[srp0,nmd,rd,0] 
+	00106: ALIGNRP    
+	00107: SVTCA[y-axis] 
+	00108: SRP0       
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: SVTCA[x-axis] 
+	00111: SRP0       
+	00112: MIRP[srp0,nmd,rd,1] 
+	00113: MDRP[srp0,nmd,rd,0] 
+	00114: ALIGNRP    
+	00115: SVTCA[y-axis] 
+	00116: SRP0       
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: SVTCA[x-axis] 
+	00119: SRP0       
+	00120: MIRP[srp0,nmd,rd,1] 
+	00121: MDRP[srp0,nmd,rd,0] 
+	00122: ALIGNRP    
+	00123: IUP[y]     
+	00124: IUP[x]     
+	00125: SVTCA[x-axis] 
+	00126: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short         On
+	  4:        XDual                 X-Short On
+	  5:        XDual                         On
+	  6:  YDual                               On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                               On
+	 14:  YDual                       X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual                               On
+	 21:        XDual                         On
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   656,  1297)  ->  Abs (   656,  1297)
+	  1: Rel (     0,  -217)  ->  Abs (   656,  1080)
+	  2: Rel (  -124,     0)  ->  Abs (   532,  1080)
+	  3: Rel (     0,   217)  ->  Abs (   532,  1297)
+	  4: Rel (   127,  -431)  ->  Abs (   659,   866)
+	  5: Rel (     0,  -782)  ->  Abs (   659,    84)
+	  6: Rel (   330,     0)  ->  Abs (   989,    84)
+	  7: Rel (    31,     0)  ->  Abs (  1020,    84)
+	  8: Rel (    26,   -23)  ->  Abs (  1046,    61)
+	  9: Rel (     0,   -19)  ->  Abs (  1046,    42)
+	 10: Rel (     0,   -18)  ->  Abs (  1046,    24)
+	 11: Rel (   -26,   -24)  ->  Abs (  1020,     0)
+	 12: Rel (   -31,     0)  ->  Abs (   989,     0)
+	 13: Rel (  -744,     0)  ->  Abs (   245,     0)
+	 14: Rel (   -30,     0)  ->  Abs (   215,     0)
+	 15: Rel (   -26,    24)  ->  Abs (   189,    24)
+	 16: Rel (     0,    18)  ->  Abs (   189,    42)
+	 17: Rel (     0,    19)  ->  Abs (   189,    61)
+	 18: Rel (    26,    23)  ->  Abs (   215,    84)
+	 19: Rel (    30,     0)  ->  Abs (   245,    84)
+	 20: Rel (   330,     0)  ->  Abs (   575,    84)
+	 21: Rel (     0,   697)  ->  Abs (   575,   781)
+	 22: Rel (  -245,     0)  ->  Abs (   330,   781)
+	 23: Rel (   -30,     0)  ->  Abs (   300,   781)
+	 24: Rel (   -27,    24)  ->  Abs (   273,   805)
+	 25: Rel (     0,    18)  ->  Abs (   273,   823)
+	 26: Rel (     0,    19)  ->  Abs (   273,   842)
+	 27: Rel (    26,    24)  ->  Abs (   299,   866)
+	 28: Rel (    31,     0)  ->  Abs (   330,   866)
+
+	Glyph  77: off = 0x000069D4, len = 254
+	  numberOfContours:	2
+	  xMin:			180
+	  yMin:			-386
+	  xMax:			824
+	  yMax:			1297
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  29
+
+	  Length of Instructions:	159
+	00000: NPUSHB      (43):    16     0    16     1    16     2    16     3    91    15 
+	                            89    28   106    15   106    28   116    15   128     0 
+	                           128     1   128     2   128     3   149    15    14    78 
+	                             8   143     8   159     8   171    28   186    28     5 
+	                            28     8    27 
+	00045: PUSHW[3]            -12    28   -12 
+	00052: PUSHB[3]              5    11     8 
+	00056: PUSHW[1]            429 
+	00059: PUSHB[7]              4     4    34    11     3   197     2 
+	00067: PUSHW[1]            404 
+	00070: NPUSHB      (14):    11     6    26    84    25    32    18    19    14    22 
+	                           147    30     0     1 
+	00086: PUSHW[1]            351 
+	00089: NPUSHB      (17):     2     2     3     3    30    31    12    13    32    29 
+	                            29    79     4     1     4    25    30 
+	00108: PUSHW[3]            437   465    24 
+	00115: CALL       
+	00116: FLIPOFF    
+	00117: SRP0       
+	00118: MIRP[srp0,nmd,rd,0] 
+	00119: DELTAP1    
+	00120: ALIGNRP    
+	00121: FLIPON     
+	00122: SRP0       
+	00123: MIRP[srp0,md,rd,1] 
+	00124: ALIGNRP    
+	00125: SRP1       
+	00126: SRP2       
+	00127: IP         
+	00128: MDAP[rd]   
+	00129: ALIGNRP    
+	00130: SRP0       
+	00131: MIRP[srp0,md,rd,1] 
+	00132: ALIGNRP    
+	00133: SRP0       
+	00134: MIRP[nrp0,nmd,rd,0] 
+	00135: SVTCA[y-axis] 
+	00136: MIAP[rd+ci] 
+	00137: ALIGNRP    
+	00138: MIRP[srp0,md,rd,1] 
+	00139: MIRP[nrp0,nmd,rd,0] 
+	00140: MIAP[rd+ci] 
+	00141: MIRP[srp0,nmd,rd,2] 
+	00142: MIRP[srp0,md,rd,1] 
+	00143: SRP0       
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: SVTCA[x-axis] 
+	00146: SRP0       
+	00147: MIRP[srp0,nmd,rd,1] 
+	00148: MDRP[srp0,nmd,rd,0] 
+	00149: ALIGNRP    
+	00150: IUP[y]     
+	00151: IUP[x]     
+	00152: SVTCA[y-axis] 
+	00153: SHPIX      
+	00154: SHPIX      
+	00155: SVTCA[x-axis] 
+	00156: SHPIX      
+	00157: DELTAP1    
+	00158: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short         On
+	  4:        XDual                 X-Short On
+	  5:  YDual                               On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual                               On
+	 13:        XDual                         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                               On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:                      Y-Short         On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   735,  1297)  ->  Abs (   735,  1297)
+	  1: Rel (     0,  -217)  ->  Abs (   735,  1080)
+	  2: Rel (  -124,     0)  ->  Abs (   611,  1080)
+	  3: Rel (     0,   217)  ->  Abs (   611,  1297)
+	  4: Rel (   129,  -516)  ->  Abs (   740,   781)
+	  5: Rel (  -499,     0)  ->  Abs (   241,   781)
+	  6: Rel (   -30,     0)  ->  Abs (   211,   781)
+	  7: Rel (   -26,    24)  ->  Abs (   185,   805)
+	  8: Rel (     0,    19)  ->  Abs (   185,   824)
+	  9: Rel (     0,    18)  ->  Abs (   185,   842)
+	 10: Rel (    25,    24)  ->  Abs (   210,   866)
+	 11: Rel (    31,     0)  ->  Abs (   241,   866)
+	 12: Rel (   583,     0)  ->  Abs (   824,   866)
+	 13: Rel (     0,  -925)  ->  Abs (   824,   -59)
+	 14: Rel (     0,  -107)  ->  Abs (   824,  -166)
+	 15: Rel (   -88,  -144)  ->  Abs (   736,  -310)
+	 16: Rel (   -88,   -45)  ->  Abs (   648,  -355)
+	 17: Rel (   -61,   -31)  ->  Abs (   587,  -386)
+	 18: Rel (   -84,     0)  ->  Abs (   503,  -386)
+	 19: Rel (  -267,     0)  ->  Abs (   236,  -386)
+	 20: Rel (   -30,     0)  ->  Abs (   206,  -386)
+	 21: Rel (   -26,    23)  ->  Abs (   180,  -363)
+	 22: Rel (     0,    19)  ->  Abs (   180,  -344)
+	 23: Rel (     0,    19)  ->  Abs (   180,  -325)
+	 24: Rel (    26,    24)  ->  Abs (   206,  -301)
+	 25: Rel (    30,     0)  ->  Abs (   236,  -301)
+	 26: Rel (   265,    -1)  ->  Abs (   501,  -302)
+	 27: Rel (   107,     0)  ->  Abs (   608,  -302)
+	 28: Rel (   132,   140)  ->  Abs (   740,  -162)
+	 29: Rel (     0,   103)  ->  Abs (   740,   -59)
+
+	Glyph  78: off = 0x00006AD2, len = 850
+	  numberOfContours:	1
+	  xMin:			191
+	  yMin:			0
+	  xMax:			1171
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  53
+
+	  Length of Instructions:	696
+	00000: PUSHW[2]             41   -64 
+	00005: PUSHB[4]             22    13    63    41 
+	00010: PUSHW[1]            -64 
+	00013: PUSHB[4]             20    12    63    41 
+	00018: PUSHW[1]            -64 
+	00021: NPUSHB      (79):    18    11    63   103    19   166    19     2   196    52 
+	                             1    42    20    42    37    46    41    42    52    40 
+	                            53    57    36    63    37    61    41    63    52   106 
+	                            20   106    35    11   102    19     1    35    19    54 
+	                            19     2    43    20    79    41   217    37   217    52 
+	                           236    37   236    52   251    37   251    52     8    58 
+	                            37    58    52   106    36   106    53   171    20   171 
+	                            35     6    36    53    35    35     0     2     8 
+	00102: PUSHW[1]            686 
+	00105: NPUSHB      (11):     5    47     9     5     5     8     9    34     2    28 
+	                            34 
+	00118: PUSHW[1]            686 
+	00121: PUSHB[5]              0    31     1    31    31 
+	00127: PUSHW[1]            -64 
+	00130: PUSHB[4]             12    16    63    31 
+	00135: PUSHW[1]            -64 
+	00138: NPUSHB      (16):    11    15    63    31    92    35    31    31    34    35 
+	                            34    28    35     0    45    51 
+	00156: PUSHW[1]            686 
+	00159: NPUSHB      (14):    48    48    70    52    48    48    51    52    34    45 
+	                            52    53    17    11 
+	00175: PUSHW[1]            686 
+	00178: NPUSHB      (11):    14    47    10    14    14    11    10    34    17    27 
+	                            21 
+	00191: PUSHW[1]            686 
+	00194: NPUSHB      (19):    15    24    31    24     2    24    24   153    20    24 
+	                            24    21    20    34    27    20    19    44    38 
+	00215: PUSHW[1]            686 
+	00218: NPUSHB      (71):    41    41    92    37    41    41    38    37    34    44 
+	                            37    36    37    36    36    32    53    52    20    53 
+	                            53    52    35    20    19    18    19    32     0    35 
+	                            20     0     0    35     0    19    53    36    20     5 
+	                            35     1    34    59    28    28    21    59    27     6 
+	                            38    59    44    51    59    45    45    44    44     2 
+	                            11    59    18    17     0     8    59     1     2    10 
+	                            20 
+	00291: PUSHW[1]            480 
+	00294: NPUSHB       (9):   111    35     1    35   154    37    36    85    53 
+	00305: PUSHW[3]            416    37   480 
+	00312: NPUSHB      (13):   112    52   128    52     2    32    52    48    52    96 
+	                            52     3    52 
+	00327: PUSHW[1]            675 
+	00330: NPUSHB      (29):    55    19     0     0    18     1    32    10   112     9 
+	                           128     9     2    16     9    32     9    48     9   128 
+	                             9   160     9   176     9     6     9    25    54 
+	00361: PUSHW[4]            413   128    24   356 
+	00370: SCANCTRL   
+	00371: CALL       
+	00372: FLIPOFF    
+	00373: SRP0       
+	00374: MIRP[srp0,nmd,rd,0] 
+	00375: DELTAP1    
+	00376: DELTAP2    
+	00377: ALIGNRP    
+	00378: FLIPON     
+	00379: MIRP[srp0,md,rd,1] 
+	00380: ALIGNRP    
+	00381: ALIGNRP    
+	00382: SRP0       
+	00383: ALIGNRP    
+	00384: SRP0       
+	00385: MIRP[srp0,nmd,rd,0] 
+	00386: DELTAP1    
+	00387: DELTAP2    
+	00388: MIRP[nrp0,md,rd,1] 
+	00389: MIRP[srp0,nmd,rd,0] 
+	00390: MIRP[nrp0,md,rd,1] 
+	00391: SRP0       
+	00392: MIRP[srp0,nmd,rd,0] 
+	00393: DELTAP1    
+	00394: MIRP[nrp0,md,rd,1] 
+	00395: SVTCA[y-axis] 
+	00396: MIAP[rd+ci] 
+	00397: ALIGNRP    
+	00398: MIRP[nrp0,md,rd,1] 
+	00399: MIAP[rd+ci] 
+	00400: ALIGNRP    
+	00401: MIRP[nrp0,md,rd,1] 
+	00402: SRP0       
+	00403: ALIGNRP    
+	00404: SRP0       
+	00405: ALIGNRP    
+	00406: SRP0       
+	00407: MIRP[nrp0,md,rd,1] 
+	00408: SRP0       
+	00409: MIRP[nrp0,md,rd,1] 
+	00410: MIAP[rd+ci] 
+	00411: MIRP[nrp0,md,rd,1] 
+	00412: ALIGNRP    
+	00413: SRP0       
+	00414: MIRP[nrp0,md,rd,1] 
+	00415: SVTCA[x-axis] 
+	00416: SRP1       
+	00417: SRP2       
+	00418: SLOOP      
+	00419: IP         
+	00420: SDPVTL[1]  
+	00421: SFVTCA[y-axis] 
+	00422: MDAP[nrd]  
+	00423: CALL       
+	00424: RS         
+	00425: NOT        
+	00426: IF         
+	00427: PUSHW[2]             19   -44 
+	00432: PUSHB[4]             30    60    63    19 
+	00437: PUSHW[1]            -44 
+	00440: PUSHB[4]             28    55    63    19 
+	00445: PUSHW[1]            -44 
+	00448: PUSHB[4]             25    50    63    19 
+	00453: PUSHW[1]            -44 
+	00456: PUSHB[4]             23    45    63    19 
+	00461: PUSHW[1]            -44 
+	00464: PUSHB[3]             20    40    63 
+	00468: SVTCA[y-axis] 
+	00469: CALL       
+	00470: CALL       
+	00471: CALL       
+	00472: CALL       
+	00473: CALL       
+	00474: EIF        
+	00475: SVTCA[x-axis] 
+	00476: SDPVTL[1]  
+	00477: SFVTCA[x-axis] 
+	00478: RDTG       
+	00479: MDRP[nrp0,nmd,rd,0] 
+	00480: SDPVTL[1]  
+	00481: SFVTPV     
+	00482: MDAP[nrd]  
+	00483: RTG        
+	00484: CALL       
+	00485: SFVTCA[x-axis] 
+	00486: RDTG       
+	00487: SRP0       
+	00488: MDRP[nrp0,nmd,rd,0] 
+	00489: RTG        
+	00490: SVTCA[y-axis] 
+	00491: SFVTL[=p1,p2] 
+	00492: SRP0       
+	00493: MIRP[srp0,md,rd,1] 
+	00494: RTDG       
+	00495: SRP2       
+	00496: IP         
+	00497: MDAP[rd]   
+	00498: RTG        
+	00499: SVTCA[x-axis] 
+	00500: SRP0       
+	00501: MIRP[srp0,nmd,nrd,1] 
+	00502: MDAP[rd]   
+	00503: MIRP[srp0,nmd,rd,0] 
+	00504: MDRP[nrp0,nmd,rd,0] 
+	00505: SVTCA[y-axis] 
+	00506: SFVTL[=p1,p2] 
+	00507: SRP0       
+	00508: MIRP[srp0,md,rd,1] 
+	00509: RTDG       
+	00510: SRP2       
+	00511: IP         
+	00512: MDAP[rd]   
+	00513: RTG        
+	00514: SVTCA[x-axis] 
+	00515: SRP0       
+	00516: MIRP[srp0,nmd,nrd,1] 
+	00517: MDAP[rd]   
+	00518: DELTAP1    
+	00519: MIRP[srp0,nmd,rd,0] 
+	00520: MDRP[nrp0,nmd,rd,0] 
+	00521: SVTCA[y-axis] 
+	00522: SRP0       
+	00523: MIRP[srp0,md,rd,1] 
+	00524: RTDG       
+	00525: SRP2       
+	00526: IP         
+	00527: MDAP[rd]   
+	00528: RTG        
+	00529: SVTCA[x-axis] 
+	00530: SRP0       
+	00531: MIRP[srp0,nmd,rd,1] 
+	00532: MIRP[srp0,nmd,rd,0] 
+	00533: MDRP[nrp0,nmd,rd,0] 
+	00534: SVTCA[y-axis] 
+	00535: SFVTL[=p1,p2] 
+	00536: SRP0       
+	00537: MIRP[srp0,md,rd,1] 
+	00538: RTDG       
+	00539: SRP2       
+	00540: IP         
+	00541: MDAP[rd]   
+	00542: RTG        
+	00543: SVTCA[x-axis] 
+	00544: SRP0       
+	00545: MIRP[srp0,nmd,nrd,1] 
+	00546: MDAP[rd]   
+	00547: MIRP[srp0,nmd,rd,0] 
+	00548: MDRP[nrp0,nmd,rd,0] 
+	00549: SVTCA[y-axis] 
+	00550: SFVTL[=p1,p2] 
+	00551: SRP0       
+	00552: MIRP[srp0,md,rd,1] 
+	00553: RTDG       
+	00554: SRP2       
+	00555: IP         
+	00556: MDAP[rd]   
+	00557: RTG        
+	00558: SVTCA[x-axis] 
+	00559: SRP0       
+	00560: MIRP[srp0,nmd,nrd,1] 
+	00561: SVTCA[x-axis] 
+	00562: CALL       
+	00563: CALL       
+	00564: MDAP[rd]   
+	00565: DELTAP1    
+	00566: MIRP[srp0,nmd,rd,0] 
+	00567: MDRP[nrp0,nmd,rd,0] 
+	00568: SVTCA[y-axis] 
+	00569: SRP0       
+	00570: MIRP[srp0,md,rd,1] 
+	00571: RTDG       
+	00572: SRP2       
+	00573: IP         
+	00574: MDAP[rd]   
+	00575: RTG        
+	00576: SVTCA[x-axis] 
+	00577: SRP0       
+	00578: MIRP[srp0,nmd,rd,1] 
+	00579: MIRP[srp0,nmd,rd,0] 
+	00580: MDRP[nrp0,nmd,rd,0] 
+	00581: SPVTL[p1,p2] 
+	00582: SFVTPV     
+	00583: SRP0       
+	00584: ALIGNRP    
+	00585: ALIGNRP    
+	00586: PUSHB[2]              6     2 
+	00589: RS         
+	00590: EQ         
+	00591: IF         
+	00592: PUSHW[2]             19   -32 
+	00597: PUSHB[4]             26    36    52    20 
+	00602: PUSHW[1]            -32 
+	00605: PUSHB[4]             15    17    52    19 
+	00610: PUSHW[1]            -32 
+	00613: PUSHB[3]             15    17    52 
+	00617: SVTCA[y-axis] 
+	00618: CALL       
+	00619: CALL       
+	00620: CALL       
+	00621: EIF        
+	00622: IUP[y]     
+	00623: IUP[x]     
+	00624: SVTCA[x-axis] 
+	00625: MPPEM      
+	00626: PUSHB[1]             12 
+	00628: GTEQ       
+	00629: MPPEM      
+	00630: PUSHB[1]             36 
+	00632: LTEQ       
+	00633: AND        
+	00634: IF         
+	00635: PUSHW[2]             35   -20 
+	00640: PUSHB[3]             20     8    37 
+	00644: PUSHW[3]            -14    52   -10 
+	00651: SHPIX      
+	00652: SHPIX      
+	00653: SHPIX      
+	00654: SHPIX      
+	00655: EIF        
+	00656: SVTCA[x-axis] 
+	00657: DELTAP2    
+	00658: DELTAP1    
+	00659: SVTCA[y-axis] 
+	00660: DELTAP1    
+	00661: DELTAP2    
+	00662: SVTCA[x-axis] 
+	00663: MPPEM      
+	00664: PUSHB[1]             36 
+	00666: GTEQ       
+	00667: MPPEM      
+	00668: PUSHB[1]             80 
+	00670: LTEQ       
+	00671: AND        
+	00672: IF         
+	00673: PUSHW[2]             35    -8 
+	00678: PUSHB[4]             37    25    52    32 
+	00683: SHPIX      
+	00684: SHPIX      
+	00685: SHPIX      
+	00686: EIF        
+	00687: SVTCA[x-axis] 
+	00688: DELTAP1    
+	00689: DELTAP2    
+	00690: SVTCA[y-axis] 
+	00691: DELTAP1    
+	00692: SVTCA[x-axis] 
+	00693: CALL       
+	00694: CALL       
+	00695: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short On
+	 19:        XDual                         On
+	 20:                                      On
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual                               On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short On
+	 36:                                      On
+	 37:                                      On
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:        XDual         Y-Short         Off
+	 43:                      Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                               On
+	 46:  YDual                       X-Short Off
+	 47:  YDual               Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short         On
+	 49:  YDual XDual         Y-Short         Off
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short On
+	 53:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   444,   374)  ->  Abs (   444,   374)
+	  1: Rel (     0,  -374)  ->  Abs (   444,     0)
+	  2: Rel (  -197,     0)  ->  Abs (   247,     0)
+	  3: Rel (   -30,     0)  ->  Abs (   217,     0)
+	  4: Rel (   -26,    24)  ->  Abs (   191,    24)
+	  5: Rel (     0,    18)  ->  Abs (   191,    42)
+	  6: Rel (     0,    19)  ->  Abs (   191,    61)
+	  7: Rel (    26,    23)  ->  Abs (   217,    84)
+	  8: Rel (    30,     0)  ->  Abs (   247,    84)
+	  9: Rel (   113,     0)  ->  Abs (   360,    84)
+	 10: Rel (     0,  1086)  ->  Abs (   360,  1170)
+	 11: Rel (  -113,     0)  ->  Abs (   247,  1170)
+	 12: Rel (   -30,     0)  ->  Abs (   217,  1170)
+	 13: Rel (   -26,    24)  ->  Abs (   191,  1194)
+	 14: Rel (     0,    19)  ->  Abs (   191,  1213)
+	 15: Rel (     0,    18)  ->  Abs (   191,  1231)
+	 16: Rel (    26,    24)  ->  Abs (   217,  1255)
+	 17: Rel (    30,     0)  ->  Abs (   247,  1255)
+	 18: Rel (   197,     0)  ->  Abs (   444,  1255)
+	 19: Rel (     0,  -774)  ->  Abs (   444,   481)
+	 20: Rel (   357,   300)  ->  Abs (   801,   781)
+	 21: Rel (   -43,     0)  ->  Abs (   758,   781)
+	 22: Rel (   -30,     0)  ->  Abs (   728,   781)
+	 23: Rel (   -26,    24)  ->  Abs (   702,   805)
+	 24: Rel (     0,    18)  ->  Abs (   702,   823)
+	 25: Rel (     0,    19)  ->  Abs (   702,   842)
+	 26: Rel (    26,    24)  ->  Abs (   728,   866)
+	 27: Rel (    30,     0)  ->  Abs (   758,   866)
+	 28: Rel (   269,     0)  ->  Abs (  1027,   866)
+	 29: Rel (    31,     0)  ->  Abs (  1058,   866)
+	 30: Rel (    26,   -24)  ->  Abs (  1084,   842)
+	 31: Rel (     0,   -19)  ->  Abs (  1084,   823)
+	 32: Rel (     0,   -18)  ->  Abs (  1084,   805)
+	 33: Rel (   -26,   -24)  ->  Abs (  1058,   781)
+	 34: Rel (   -31,     0)  ->  Abs (  1027,   781)
+	 35: Rel (   -97,     0)  ->  Abs (   930,   781)
+	 36: Rel (  -328,  -274)  ->  Abs (   602,   507)
+	 37: Rel (   415,  -423)  ->  Abs (  1017,    84)
+	 38: Rel (    97,     0)  ->  Abs (  1114,    84)
+	 39: Rel (    31,     0)  ->  Abs (  1145,    84)
+	 40: Rel (    26,   -23)  ->  Abs (  1171,    61)
+	 41: Rel (     0,   -19)  ->  Abs (  1171,    42)
+	 42: Rel (     0,   -18)  ->  Abs (  1171,    24)
+	 43: Rel (   -26,   -24)  ->  Abs (  1145,     0)
+	 44: Rel (   -31,     0)  ->  Abs (  1114,     0)
+	 45: Rel (  -272,     0)  ->  Abs (   842,     0)
+	 46: Rel (   -30,     0)  ->  Abs (   812,     0)
+	 47: Rel (   -26,    24)  ->  Abs (   786,    24)
+	 48: Rel (     0,    18)  ->  Abs (   786,    42)
+	 49: Rel (     0,    19)  ->  Abs (   786,    61)
+	 50: Rel (    26,    23)  ->  Abs (   812,    84)
+	 51: Rel (    30,     0)  ->  Abs (   842,    84)
+	 52: Rel (    59,     0)  ->  Abs (   901,    84)
+	 53: Rel (  -361,   371)  ->  Abs (   540,   455)
+
+	Glyph  79: off = 0x00006E24, len = 172
+	  numberOfContours:	1
+	  xMin:			187
+	  yMin:			0
+	  xMax:			1044
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  24
+
+	  Length of Instructions:	93
+	00000: NPUSHB      (52):    98    21   115    21   131    21     3    15     9    12 
+	                            88    16    16    34     9     2     8     5    88     1 
+	                             1    34     8    18    24    21   149    17    17    34 
+	                            24     0     9     8    10     0     1    32    17    16 
+	                            16    79    16   191    16     3    16    25    25    81 
+	                           127    24 
+	00054: CALL       
+	00055: FLIPOFF    
+	00056: SRP0       
+	00057: MIRP[srp0,nmd,rd,0] 
+	00058: DELTAP1    
+	00059: ALIGNRP    
+	00060: FLIPON     
+	00061: MIRP[srp0,md,rd,1] 
+	00062: ALIGNRP    
+	00063: SVTCA[y-axis] 
+	00064: MIAP[rd+ci] 
+	00065: ALIGNRP    
+	00066: MIAP[rd+ci] 
+	00067: MIRP[nrp0,md,rd,1] 
+	00068: SVTCA[x-axis] 
+	00069: SRP0       
+	00070: MIRP[srp0,nmd,rd,1] 
+	00071: MDRP[srp0,nmd,rd,0] 
+	00072: ALIGNRP    
+	00073: SVTCA[y-axis] 
+	00074: SRP0       
+	00075: MIRP[nrp0,md,rd,1] 
+	00076: SVTCA[x-axis] 
+	00077: SRP0       
+	00078: MIRP[srp0,nmd,rd,1] 
+	00079: MDRP[srp0,nmd,rd,0] 
+	00080: ALIGNRP    
+	00081: SVTCA[y-axis] 
+	00082: SRP0       
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: SVTCA[x-axis] 
+	00085: SRP0       
+	00086: MIRP[srp0,nmd,rd,1] 
+	00087: MDRP[srp0,nmd,rd,0] 
+	00088: ALIGNRP    
+	00089: IUP[y]     
+	00090: IUP[x]     
+	00091: SVTCA[x-axis] 
+	00092: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual                               On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   657,  1255)  ->  Abs (   657,  1255)
+	  1: Rel (     0, -1171)  ->  Abs (   657,    84)
+	  2: Rel (   330,     0)  ->  Abs (   987,    84)
+	  3: Rel (    31,     0)  ->  Abs (  1018,    84)
+	  4: Rel (    26,   -23)  ->  Abs (  1044,    61)
+	  5: Rel (     0,   -19)  ->  Abs (  1044,    42)
+	  6: Rel (     0,   -18)  ->  Abs (  1044,    24)
+	  7: Rel (   -26,   -24)  ->  Abs (  1018,     0)
+	  8: Rel (   -31,     0)  ->  Abs (   987,     0)
+	  9: Rel (  -744,     0)  ->  Abs (   243,     0)
+	 10: Rel (   -30,     0)  ->  Abs (   213,     0)
+	 11: Rel (   -26,    24)  ->  Abs (   187,    24)
+	 12: Rel (     0,    18)  ->  Abs (   187,    42)
+	 13: Rel (     0,    19)  ->  Abs (   187,    61)
+	 14: Rel (    26,    23)  ->  Abs (   213,    84)
+	 15: Rel (    30,     0)  ->  Abs (   243,    84)
+	 16: Rel (   330,     0)  ->  Abs (   573,    84)
+	 17: Rel (     0,  1086)  ->  Abs (   573,  1170)
+	 18: Rel (  -242,     0)  ->  Abs (   331,  1170)
+	 19: Rel (   -30,     0)  ->  Abs (   301,  1170)
+	 20: Rel (   -27,    24)  ->  Abs (   274,  1194)
+	 21: Rel (     0,    19)  ->  Abs (   274,  1213)
+	 22: Rel (     0,    18)  ->  Abs (   274,  1231)
+	 23: Rel (    26,    24)  ->  Abs (   300,  1255)
+	 24: Rel (    31,     0)  ->  Abs (   331,  1255)
+
+	Glyph  80: off = 0x00006ED0, len = 742
+	  numberOfContours:	1
+	  xMin:			21
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  70
+
+	  Length of Instructions:	554
+	00000: NPUSHB      (60):    15    55    15    56    14    57    15    58    15    60 
+	                            15    61    15    64    15    67    15    69     9    18 
+	                            38    12    54    12   180    27   178    44     4    39 
+	                             1    54     1     2    85    28    98     7    98    28 
+	                           116     7   116    28     5    54     7    50    28    69 
+	                             7    69    28    85     7     5    48     8    55    61 
+	00062: PUSHW[1]            686 
+	00065: NPUSHB      (14):   223    58     1    58    70    62    58    58    61    62 
+	                            34    55    21    15 
+	00081: PUSHW[1]            686 
+	00084: NPUSHB      (30):    32    18     1    80    18   208    18   224    18   240 
+	                            18     4     0    18    16    18    64    18     3    18 
+	                            70    14    18    18    15    14    34    21    37    31 
+	00116: PUSHW[1]            686 
+	00119: NPUSHB      (16):     0    34    16    34     2    34    70    30    34    34 
+	                            31    30    34    37    54    48 
+	00137: PUSHW[1]            686 
+	00140: NPUSHB      (16):     0    51    16    51     2    51    70    47    51    51 
+	                            48    47    34    54    70    64 
+	00158: PUSHW[1]            686 
+	00161: NPUSHB     (101):   223    67     1    67    70    63    67    67    64    63 
+	                            34    45    47     6    30    38    46    45    40    29 
+	                            28     6     1     7    42    55    64    59     0    70 
+	                             6    42    33     3    26    33     9     9     3     7 
+	                            55    54    54    37    37    21    10    13    14    32 
+	                            23    22    64    31    53    48    22   128    22     2 
+	                            22   252    38    29    30    32    39    38    64    31 
+	                            53    48    38   128    38     2    38   252    62     0 
+	                            47    32    63    62    64    13    22    63     0    62 
+	                           191    62   207    62     3    62    25    71    42   173 
+	                            24 
+	00264: CALL       
+	00265: FLIPOFF    
+	00266: SRP0       
+	00267: MIRP[srp0,nmd,rd,0] 
+	00268: DELTAP1    
+	00269: SVTCA[x-axis] 
+	00270: CALL       
+	00271: ALIGNRP    
+	00272: FLIPON     
+	00273: MIRP[srp0,md,rd,1] 
+	00274: ALIGNRP    
+	00275: SRP0       
+	00276: MIRP[srp0,nmd,rd,0] 
+	00277: DELTAP1    
+	00278: CALL       
+	00279: ALIGNRP    
+	00280: MIRP[srp0,md,rd,1] 
+	00281: ALIGNRP    
+	00282: SRP0       
+	00283: MIRP[srp0,nmd,rd,0] 
+	00284: DELTAP1    
+	00285: CALL       
+	00286: ALIGNRP    
+	00287: MIRP[srp0,md,rd,1] 
+	00288: ALIGNRP    
+	00289: SVTCA[y-axis] 
+	00290: MIAP[rd+ci] 
+	00291: ALIGNRP    
+	00292: SRP0       
+	00293: ALIGNRP    
+	00294: SRP0       
+	00295: ALIGNRP    
+	00296: MIAP[rd+ci] 
+	00297: ALIGNRP    
+	00298: SRP0       
+	00299: MIRP[nrp0,md,rd,1] 
+	00300: SRP0       
+	00301: MIRP[nrp0,md,rd,1] 
+	00302: MIAP[rd+ci] 
+	00303: ALIGNRP    
+	00304: MIRP[nrp0,md,rd,1] 
+	00305: SRP1       
+	00306: SRP2       
+	00307: SLOOP      
+	00308: IP         
+	00309: SVTCA[x-axis] 
+	00310: SRP1       
+	00311: SRP2       
+	00312: IP         
+	00313: SRP2       
+	00314: IP         
+	00315: SVTCA[y-axis] 
+	00316: MIRP[srp0,md,rd,1] 
+	00317: RTDG       
+	00318: SRP2       
+	00319: IP         
+	00320: MDAP[rd]   
+	00321: RTG        
+	00322: SVTCA[x-axis] 
+	00323: SRP0       
+	00324: MIRP[srp0,nmd,rd,1] 
+	00325: DELTAP1    
+	00326: MIRP[srp0,nmd,rd,0] 
+	00327: MDRP[nrp0,nmd,rd,0] 
+	00328: SVTCA[y-axis] 
+	00329: SRP0       
+	00330: MIRP[srp0,md,rd,1] 
+	00331: RTDG       
+	00332: SRP2       
+	00333: IP         
+	00334: MDAP[rd]   
+	00335: RTG        
+	00336: SVTCA[x-axis] 
+	00337: SRP0       
+	00338: MIRP[srp0,nmd,rd,1] 
+	00339: DELTAP1    
+	00340: MIRP[srp0,nmd,rd,0] 
+	00341: MDRP[nrp0,nmd,rd,0] 
+	00342: SVTCA[y-axis] 
+	00343: SRP0       
+	00344: MIRP[srp0,md,rd,1] 
+	00345: RTDG       
+	00346: SRP2       
+	00347: IP         
+	00348: MDAP[rd]   
+	00349: RTG        
+	00350: SVTCA[x-axis] 
+	00351: SRP0       
+	00352: MIRP[srp0,nmd,rd,1] 
+	00353: DELTAP1    
+	00354: MIRP[srp0,nmd,rd,0] 
+	00355: MDRP[nrp0,nmd,rd,0] 
+	00356: SVTCA[y-axis] 
+	00357: SRP0       
+	00358: MIRP[srp0,md,rd,1] 
+	00359: RTDG       
+	00360: SRP2       
+	00361: IP         
+	00362: MDAP[rd]   
+	00363: RTG        
+	00364: SVTCA[x-axis] 
+	00365: SRP0       
+	00366: MIRP[srp0,nmd,rd,1] 
+	00367: DELTAP1    
+	00368: DELTAP1    
+	00369: DELTAP2    
+	00370: MIRP[srp0,nmd,rd,0] 
+	00371: MDRP[nrp0,nmd,rd,0] 
+	00372: SVTCA[y-axis] 
+	00373: SRP0       
+	00374: MIRP[srp0,md,rd,1] 
+	00375: RTDG       
+	00376: SRP2       
+	00377: IP         
+	00378: MDAP[rd]   
+	00379: RTG        
+	00380: SVTCA[x-axis] 
+	00381: SRP0       
+	00382: MIRP[srp0,nmd,rd,1] 
+	00383: DELTAP1    
+	00384: MIRP[srp0,nmd,rd,0] 
+	00385: MDRP[nrp0,nmd,rd,0] 
+	00386: PUSHB[2]              6     2 
+	00389: RS         
+	00390: EQ         
+	00391: IF         
+	00392: PUSHW[2]              6   -64 
+	00397: PUSHB[4]             22    36    52     1 
+	00402: PUSHW[1]            -64 
+	00405: PUSHB[4]             27    36    52     1 
+	00410: PUSHW[1]            -32 
+	00413: PUSHB[3]             17    26    52 
+	00417: SVTCA[y-axis] 
+	00418: CALL       
+	00419: CALL       
+	00420: CALL       
+	00421: EIF        
+	00422: IUP[y]     
+	00423: IUP[x]     
+	00424: RS         
+	00425: JROF       
+	00426: NPUSHB      (32):    40    41    24    25    10    12     4     5    11    37 
+	                            41     4    39    31     1     5     6    25    10    23 
+	                            31     1    40     5    42    31     1    24    12    26 
+	                            31     1 
+	00460: SVTCA[y-axis] 
+	00461: CALL       
+	00462: CALL       
+	00463: SVTCA[x-axis] 
+	00464: CALL       
+	00465: SRP0       
+	00466: ALIGNRP    
+	00467: CALL       
+	00468: CALL       
+	00469: FLIPRGON   
+	00470: FLIPRGON   
+	00471: FLIPRGON   
+	00472: FLIPRGON   
+	00473: SVTCA[y-axis] 
+	00474: DELTAP1    
+	00475: DELTAP1    
+	00476: SVTCA[y-axis] 
+	00477: MPPEM      
+	00478: PUSHB[1]             27 
+	00480: GTEQ       
+	00481: MPPEM      
+	00482: PUSHB[1]             36 
+	00484: LTEQ       
+	00485: AND        
+	00486: IF         
+	00487: NPUSHW      (10):    10   -18     4   -18     7   -38     6   -38     1   -45 
+	00509: SHPIX      
+	00510: SHPIX      
+	00511: SHPIX      
+	00512: SHPIX      
+	00513: SHPIX      
+	00514: EIF        
+	00515: SVTCA[y-axis] 
+	00516: DELTAP2    
+	00517: SVTCA[x-axis] 
+	00518: DELTAP2    
+	00519: RS         
+	00520: NOT        
+	00521: IF         
+	00522: PUSHW[2]              7   -64 
+	00527: PUSHB[4]             22    26    62     6 
+	00532: PUSHW[1]            -64 
+	00535: PUSHB[4]             22    26    62     1 
+	00540: PUSHW[1]            -64 
+	00543: PUSHB[3]             22    26    62 
+	00547: SVTCA[y-axis] 
+	00548: CALL       
+	00549: CALL       
+	00550: CALL       
+	00551: EIF        
+	00552: SVTCA[x-axis] 
+	00553: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual                         On
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short On
+	 23:        XDual                         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:                      Y-Short X-Short Off
+	 29:                      Y-Short X-Short On
+	 30:        XDual                         On
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:                      Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short On
+	 39:        XDual                         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual                       X-Short On
+	 43:  YDual                       X-Short Off
+	 44:                      Y-Short X-Short On
+	 45:                      Y-Short X-Short Off
+	 46:                      Y-Short X-Short On
+	 47:        XDual                         On
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual                 X-Short Off
+	 50:        XDual         Y-Short X-Short Off
+	 51:        XDual         Y-Short         On
+	 52:        XDual         Y-Short         Off
+	 53:                      Y-Short X-Short Off
+	 54:  YDual                       X-Short On
+	 55:  YDual                       X-Short On
+	 56:  YDual                       X-Short Off
+	 57:  YDual               Y-Short X-Short Off
+	 58:  YDual XDual         Y-Short         On
+	 59:  YDual XDual         Y-Short         Off
+	 60:  YDual XDual         Y-Short X-Short Off
+	 61:  YDual XDual                 X-Short On
+	 62:  YDual XDual                 X-Short On
+	 63:        XDual                         On
+	 64:  YDual                       X-Short On
+	 65:  YDual                       X-Short Off
+	 66:  YDual               Y-Short X-Short Off
+	 67:  YDual XDual         Y-Short         On
+	 68:  YDual XDual         Y-Short         Off
+	 69:  YDual XDual         Y-Short X-Short Off
+	 70:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   232,   866)  ->  Abs (   232,   866)
+	  1: Rel (     0,   -85)  ->  Abs (   232,   781)
+	  2: Rel (   107,   115)  ->  Abs (   339,   896)
+	  3: Rel (   108,     0)  ->  Abs (   447,   896)
+	  4: Rel (    65,     0)  ->  Abs (   512,   896)
+	  5: Rel (    98,   -69)  ->  Abs (   610,   827)
+	  6: Rel (    33,   -70)  ->  Abs (   643,   757)
+	  7: Rel (    56,    70)  ->  Abs (   699,   827)
+	  8: Rel (   115,    69)  ->  Abs (   814,   896)
+	  9: Rel (    58,     0)  ->  Abs (   872,   896)
+	 10: Rel (    91,     0)  ->  Abs (   963,   896)
+	 11: Rel (    54,   -59)  ->  Abs (  1017,   837)
+	 12: Rel (    71,   -76)  ->  Abs (  1088,   761)
+	 13: Rel (     0,   -90)  ->  Abs (  1088,   671)
+	 14: Rel (     0,  -587)  ->  Abs (  1088,    84)
+	 15: Rel (    71,     0)  ->  Abs (  1159,    84)
+	 16: Rel (    30,     0)  ->  Abs (  1189,    84)
+	 17: Rel (    26,   -23)  ->  Abs (  1215,    61)
+	 18: Rel (     0,   -19)  ->  Abs (  1215,    42)
+	 19: Rel (     0,   -18)  ->  Abs (  1215,    24)
+	 20: Rel (   -26,   -24)  ->  Abs (  1189,     0)
+	 21: Rel (   -30,     0)  ->  Abs (  1159,     0)
+	 22: Rel (  -155,     0)  ->  Abs (  1004,     0)
+	 23: Rel (     0,   663)  ->  Abs (  1004,   663)
+	 24: Rel (     0,    64)  ->  Abs (  1004,   727)
+	 25: Rel (   -78,    84)  ->  Abs (   926,   811)
+	 26: Rel (   -51,     0)  ->  Abs (   875,   811)
+	 27: Rel (   -46,     0)  ->  Abs (   829,   811)
+	 28: Rel (  -102,   -69)  ->  Abs (   727,   742)
+	 29: Rel (   -65,  -101)  ->  Abs (   662,   641)
+	 30: Rel (     0,  -557)  ->  Abs (   662,    84)
+	 31: Rel (    70,     0)  ->  Abs (   732,    84)
+	 32: Rel (    30,     0)  ->  Abs (   762,    84)
+	 33: Rel (    26,   -23)  ->  Abs (   788,    61)
+	 34: Rel (     0,   -19)  ->  Abs (   788,    42)
+	 35: Rel (     0,   -18)  ->  Abs (   788,    24)
+	 36: Rel (   -26,   -24)  ->  Abs (   762,     0)
+	 37: Rel (   -30,     0)  ->  Abs (   732,     0)
+	 38: Rel (  -155,     0)  ->  Abs (   577,     0)
+	 39: Rel (     0,   657)  ->  Abs (   577,   657)
+	 40: Rel (     0,    67)  ->  Abs (   577,   724)
+	 41: Rel (   -79,    87)  ->  Abs (   498,   811)
+	 42: Rel (   -49,     0)  ->  Abs (   449,   811)
+	 43: Rel (   -45,     0)  ->  Abs (   404,   811)
+	 44: Rel (   -44,   -29)  ->  Abs (   360,   782)
+	 45: Rel (   -61,   -41)  ->  Abs (   299,   741)
+	 46: Rel (   -67,  -100)  ->  Abs (   232,   641)
+	 47: Rel (     0,  -557)  ->  Abs (   232,    84)
+	 48: Rel (    71,     0)  ->  Abs (   303,    84)
+	 49: Rel (    30,     0)  ->  Abs (   333,    84)
+	 50: Rel (    26,   -23)  ->  Abs (   359,    61)
+	 51: Rel (     0,   -19)  ->  Abs (   359,    42)
+	 52: Rel (     0,   -18)  ->  Abs (   359,    24)
+	 53: Rel (   -26,   -24)  ->  Abs (   333,     0)
+	 54: Rel (   -30,     0)  ->  Abs (   303,     0)
+	 55: Rel (  -226,     0)  ->  Abs (    77,     0)
+	 56: Rel (   -30,     0)  ->  Abs (    47,     0)
+	 57: Rel (   -26,    24)  ->  Abs (    21,    24)
+	 58: Rel (     0,    18)  ->  Abs (    21,    42)
+	 59: Rel (     0,    19)  ->  Abs (    21,    61)
+	 60: Rel (    26,    23)  ->  Abs (    47,    84)
+	 61: Rel (    30,     0)  ->  Abs (    77,    84)
+	 62: Rel (    71,     0)  ->  Abs (   148,    84)
+	 63: Rel (     0,   697)  ->  Abs (   148,   781)
+	 64: Rel (   -71,     0)  ->  Abs (    77,   781)
+	 65: Rel (   -30,     0)  ->  Abs (    47,   781)
+	 66: Rel (   -26,    24)  ->  Abs (    21,   805)
+	 67: Rel (     0,    19)  ->  Abs (    21,   824)
+	 68: Rel (     0,    18)  ->  Abs (    21,   842)
+	 69: Rel (    26,    24)  ->  Abs (    47,   866)
+	 70: Rel (    30,     0)  ->  Abs (    77,   866)
+
+	Glyph  81: off = 0x000071B6, len = 546
+	  numberOfContours:	1
+	  xMin:			108
+	  yMin:			0
+	  xMax:			1111
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  56
+
+	  Length of Instructions:	391
+	00000: NPUSHB      (55):   213     6   213     8     2   196     6   196     8     2 
+	                           163     8   178     6   178     8     3   113     7   128 
+	                             7     2    99     7   100     8   100    27     3   155 
+	                            27   165     6     2   123    31   179     1   180     2 
+	                             3    28    31   106    31     2     0     1     4     2 
+	                             2    30     8    18    24 
+	00057: PUSHW[1]            686 
+	00060: NPUSHB      (16):    15    21    31    21     2    21    70    25    21    21 
+	                            24    25    34    18    41    47 
+	00078: PUSHW[1]            686 
+	00081: NPUSHB      (11):    44    92    48    44    44    47    48    34    41    17 
+	                            11 
+	00094: PUSHW[1]            686 
+	00097: NPUSHB      (14):     0    14     1    14    70    10    14    14    11    10 
+	                            34    17    40    34 
+	00113: PUSHW[1]            686 
+	00116: NPUSHB      (16):     0    37    16    37     2    37    92    33    37    37 
+	                            34    33    34    40    56    50 
+	00134: PUSHW[1]            686 
+	00137: NPUSHB      (13):    53    70    49    53    53    50    49    34    50    59 
+	                            56     6     1 
+	00152: PUSHW[3]            480    32   355 
+	00159: NPUSHB      (19):    29    33     4     7    41    40    40    18    18    17 
+	                            10     9    10    32    26   223    25     1    25 
+	00180: PUSHW[1]            675 
+	00183: NPUSHB      (16):    58     0    33    32    49   144    48   160    48     2 
+	                            48    25    57    71    97    24 
+	00201: CALL       
+	00202: FLIPOFF    
+	00203: SRP0       
+	00204: MIRP[srp0,nmd,rd,0] 
+	00205: DELTAP1    
+	00206: ALIGNRP    
+	00207: FLIPON     
+	00208: MIRP[srp0,md,rd,1] 
+	00209: ALIGNRP    
+	00210: SRP0       
+	00211: MIRP[srp0,nmd,rd,0] 
+	00212: DELTAP1    
+	00213: ALIGNRP    
+	00214: MIRP[srp0,md,rd,1] 
+	00215: ALIGNRP    
+	00216: SVTCA[y-axis] 
+	00217: MIAP[rd+ci] 
+	00218: ALIGNRP    
+	00219: SRP0       
+	00220: ALIGNRP    
+	00221: SRP0       
+	00222: ALIGNRP    
+	00223: MIAP[rd+ci] 
+	00224: MIRP[srp0,md,rd,1] 
+	00225: MIRP[srp0,nmd,rd,0] 
+	00226: MIRP[nrp0,md,rd,1] 
+	00227: MIAP[rd+ci] 
+	00228: MIRP[nrp0,md,rd,1] 
+	00229: MIRP[srp0,md,rd,1] 
+	00230: RTDG       
+	00231: SRP2       
+	00232: IP         
+	00233: MDAP[rd]   
+	00234: RTG        
+	00235: SVTCA[x-axis] 
+	00236: SRP0       
+	00237: MIRP[srp0,nmd,rd,1] 
+	00238: MIRP[srp0,nmd,rd,0] 
+	00239: MDRP[nrp0,nmd,rd,0] 
+	00240: SVTCA[y-axis] 
+	00241: SRP0       
+	00242: MIRP[srp0,md,rd,1] 
+	00243: RTDG       
+	00244: SRP2       
+	00245: IP         
+	00246: MDAP[rd]   
+	00247: RTG        
+	00248: SVTCA[x-axis] 
+	00249: SRP0       
+	00250: MIRP[srp0,nmd,rd,1] 
+	00251: DELTAP1    
+	00252: MIRP[srp0,nmd,rd,0] 
+	00253: MDRP[nrp0,nmd,rd,0] 
+	00254: SVTCA[y-axis] 
+	00255: SRP0       
+	00256: MIRP[srp0,md,rd,1] 
+	00257: RTDG       
+	00258: SRP2       
+	00259: IP         
+	00260: MDAP[rd]   
+	00261: RTG        
+	00262: SVTCA[x-axis] 
+	00263: SRP0       
+	00264: MIRP[srp0,nmd,rd,1] 
+	00265: DELTAP1    
+	00266: MIRP[srp0,nmd,rd,0] 
+	00267: MDRP[nrp0,nmd,rd,0] 
+	00268: SVTCA[y-axis] 
+	00269: SRP0       
+	00270: MIRP[srp0,md,rd,1] 
+	00271: RTDG       
+	00272: SRP2       
+	00273: IP         
+	00274: MDAP[rd]   
+	00275: RTG        
+	00276: SVTCA[x-axis] 
+	00277: SRP0       
+	00278: MIRP[srp0,nmd,rd,1] 
+	00279: MIRP[srp0,nmd,rd,0] 
+	00280: MDRP[nrp0,nmd,rd,0] 
+	00281: SVTCA[y-axis] 
+	00282: SRP0       
+	00283: MIRP[srp0,md,rd,1] 
+	00284: RTDG       
+	00285: SRP2       
+	00286: IP         
+	00287: MDAP[rd]   
+	00288: RTG        
+	00289: SVTCA[x-axis] 
+	00290: SRP0       
+	00291: MIRP[srp0,nmd,rd,1] 
+	00292: DELTAP1    
+	00293: MIRP[srp0,nmd,rd,0] 
+	00294: MDRP[nrp0,nmd,rd,0] 
+	00295: PUSHB[2]              6     2 
+	00298: RS         
+	00299: EQ         
+	00300: IF         
+	00301: PUSHW[2]              1   -64 
+	00306: PUSHB[4]             27    36    52     1 
+	00311: PUSHW[1]            -32 
+	00314: PUSHB[3]             17    26    52 
+	00318: SVTCA[y-axis] 
+	00319: CALL       
+	00320: CALL       
+	00321: EIF        
+	00322: IUP[y]     
+	00323: IUP[x]     
+	00324: RS         
+	00325: JROF       
+	00326: NPUSHB      (20):    27    28     5     8     7     8     6     8     2     6 
+	                            28     5    26    31     1    27     8    29    31     1 
+	00348: SVTCA[y-axis] 
+	00349: CALL       
+	00350: SVTCA[x-axis] 
+	00351: CALL       
+	00352: LOOPCALL   
+	00353: FLIPRGON   
+	00354: FLIPRGON   
+	00355: SVTCA[y-axis] 
+	00356: MPPEM      
+	00357: PUSHB[1]             27 
+	00359: GTEQ       
+	00360: MPPEM      
+	00361: PUSHB[1]             36 
+	00363: LTEQ       
+	00364: AND        
+	00365: IF         
+	00366: PUSHB[3]             31    20     1 
+	00370: PUSHW[1]            -34 
+	00373: PUSHB[2]             27    20 
+	00376: SHPIX      
+	00377: SHPIX      
+	00378: SHPIX      
+	00379: EIF        
+	00380: SVTCA[y-axis] 
+	00381: DELTAP2    
+	00382: DELTAP2    
+	00383: DELTAP2    
+	00384: DELTAP1    
+	00385: SVTCA[x-axis] 
+	00386: DELTAP2    
+	00387: DELTAP2    
+	00388: DELTAP1    
+	00389: DELTAP1    
+	00390: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual                         On
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short On
+	 26:        XDual                         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:                      Y-Short X-Short Off
+	 32:                      Y-Short X-Short On
+	 33:        XDual                         On
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:                      Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                               On
+	 42:  YDual                       X-Short Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short On
+	 49:        XDual                         On
+	 50:  YDual                       X-Short On
+	 51:  YDual                       X-Short Off
+	 52:  YDual               Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short         On
+	 54:  YDual XDual         Y-Short         Off
+	 55:  YDual XDual         Y-Short X-Short Off
+	 56:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   343,   866)  ->  Abs (   343,   866)
+	  1: Rel (     0,  -127)  ->  Abs (   343,   739)
+	  2: Rel (    88,    89)  ->  Abs (   431,   828)
+	  3: Rel (   142,    68)  ->  Abs (   573,   896)
+	  4: Rel (    89,     0)  ->  Abs (   662,   896)
+	  5: Rel (    96,     0)  ->  Abs (   758,   896)
+	  6: Rel (    79,   -41)  ->  Abs (   837,   855)
+	  7: Rel (    56,   -30)  ->  Abs (   893,   825)
+	  8: Rel (    91,  -139)  ->  Abs (   984,   686)
+	  9: Rel (     0,   -73)  ->  Abs (   984,   613)
+	 10: Rel (     0,  -529)  ->  Abs (   984,    84)
+	 11: Rel (    71,     0)  ->  Abs (  1055,    84)
+	 12: Rel (    30,     0)  ->  Abs (  1085,    84)
+	 13: Rel (    26,   -23)  ->  Abs (  1111,    61)
+	 14: Rel (     0,   -19)  ->  Abs (  1111,    42)
+	 15: Rel (     0,   -18)  ->  Abs (  1111,    24)
+	 16: Rel (   -26,   -24)  ->  Abs (  1085,     0)
+	 17: Rel (   -30,     0)  ->  Abs (  1055,     0)
+	 18: Rel (  -225,     0)  ->  Abs (   830,     0)
+	 19: Rel (   -31,     0)  ->  Abs (   799,     0)
+	 20: Rel (   -26,    24)  ->  Abs (   773,    24)
+	 21: Rel (     0,    18)  ->  Abs (   773,    42)
+	 22: Rel (     0,    19)  ->  Abs (   773,    61)
+	 23: Rel (    26,    23)  ->  Abs (   799,    84)
+	 24: Rel (    31,     0)  ->  Abs (   830,    84)
+	 25: Rel (    70,     0)  ->  Abs (   900,    84)
+	 26: Rel (     0,   515)  ->  Abs (   900,   599)
+	 27: Rel (     0,    89)  ->  Abs (   900,   688)
+	 28: Rel (  -130,   123)  ->  Abs (   770,   811)
+	 29: Rel (  -109,     0)  ->  Abs (   661,   811)
+	 30: Rel (   -83,     0)  ->  Abs (   578,   811)
+	 31: Rel (  -122,   -67)  ->  Abs (   456,   744)
+	 32: Rel (  -113,  -133)  ->  Abs (   343,   611)
+	 33: Rel (     0,  -527)  ->  Abs (   343,    84)
+	 34: Rel (    95,     0)  ->  Abs (   438,    84)
+	 35: Rel (    30,     0)  ->  Abs (   468,    84)
+	 36: Rel (    26,   -23)  ->  Abs (   494,    61)
+	 37: Rel (     0,   -19)  ->  Abs (   494,    42)
+	 38: Rel (     0,   -18)  ->  Abs (   494,    24)
+	 39: Rel (   -26,   -24)  ->  Abs (   468,     0)
+	 40: Rel (   -30,     0)  ->  Abs (   438,     0)
+	 41: Rel (  -274,     0)  ->  Abs (   164,     0)
+	 42: Rel (   -30,     0)  ->  Abs (   134,     0)
+	 43: Rel (   -26,    24)  ->  Abs (   108,    24)
+	 44: Rel (     0,    18)  ->  Abs (   108,    42)
+	 45: Rel (     0,    19)  ->  Abs (   108,    61)
+	 46: Rel (    26,    23)  ->  Abs (   134,    84)
+	 47: Rel (    30,     0)  ->  Abs (   164,    84)
+	 48: Rel (    95,     0)  ->  Abs (   259,    84)
+	 49: Rel (     0,   697)  ->  Abs (   259,   781)
+	 50: Rel (   -71,     0)  ->  Abs (   188,   781)
+	 51: Rel (   -30,     0)  ->  Abs (   158,   781)
+	 52: Rel (   -26,    24)  ->  Abs (   132,   805)
+	 53: Rel (     0,    19)  ->  Abs (   132,   824)
+	 54: Rel (     0,    18)  ->  Abs (   132,   842)
+	 55: Rel (    26,    24)  ->  Abs (   158,   866)
+	 56: Rel (    30,     0)  ->  Abs (   188,   866)
+
+	Glyph  82: off = 0x000073D8, len = 412
+	  numberOfContours:	2
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1084
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	328
+	00000: NPUSHB      (56):    18    22     4    22    20    23    22     3   201     1 
+	                           201    11   213     2   219     5   221     7   213    11 
+	                             6   107     7   105    17     2   101     2   101     4 
+	                           105     8   105    10   106    13   108    17   101    19 
+	                           102    23     8    21    33     3    15    33     9     3 
+	                            11     9     7    12    33     0 
+	00058: PUSHW[1]            -64 
+	00061: PUSHB[4]             15    25    63     0 
+	00066: PUSHW[1]            -64 
+	00069: PUSHB[4]             14    23    63     0 
+	00074: PUSHW[1]            -64 
+	00077: NPUSHB      (13):    21    53   176     0     1    16     0    48     0    96 
+	                             0     3     0 
+	00092: PUSHW[1]            647 
+	00095: NPUSHB      (24):    18    33     6    64    15    25    63     6    64    14 
+	                            23    63   111     6   191     6   207     6   224     6 
+	                           240     6     5     6 
+	00121: PUSHW[1]            482 
+	00124: PUSHB[4]             24    42   173    24 
+	00129: PUSHW[1]            300 
+	00132: SCANCTRL   
+	00133: CALL       
+	00134: SRP0       
+	00135: MIRP[srp0,nmd,rd,2] 
+	00136: DELTAP1    
+	00137: SVTCA[x-axis] 
+	00138: CALL       
+	00139: CALL       
+	00140: MIRP[nrp0,md,rd,1] 
+	00141: MIRP[srp0,md,rd,1] 
+	00142: DELTAP1    
+	00143: DELTAP2    
+	00144: CALL       
+	00145: SVTCA[x-axis] 
+	00146: CALL       
+	00147: CALL       
+	00148: MIRP[nrp0,md,rd,1] 
+	00149: SVTCA[y-axis] 
+	00150: MIAP[rd+ci] 
+	00151: MIAP[rd+ci] 
+	00152: SRP0       
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: SRP0       
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: IUP[y]     
+	00157: IUP[x]     
+	00158: SVTCA[y-axis] 
+	00159: MPPEM      
+	00160: PUSHB[1]             11 
+	00162: GTEQ       
+	00163: MPPEM      
+	00164: PUSHB[1]             36 
+	00166: LTEQ       
+	00167: AND        
+	00168: IF         
+	00169: PUSHW[4]             22   -12    20   -12 
+	00178: PUSHB[5]             16    20    14    20    23 
+	00184: PUSHW[3]            -30    19   -30 
+	00191: PUSHB[4]             13    30    17    30 
+	00196: SHPIX      
+	00197: SHPIX      
+	00198: SHPIX      
+	00199: SHPIX      
+	00200: SHPIX      
+	00201: SHPIX      
+	00202: SHPIX      
+	00203: SHPIX      
+	00204: EIF        
+	00205: SVTCA[y-axis] 
+	00206: DELTAP1    
+	00207: SVTCA[x-axis] 
+	00208: DELTAP2    
+	00209: DELTAP1    
+	00210: SVTCA[y-axis] 
+	00211: DELTAP2    
+	00212: RS         
+	00213: NOT        
+	00214: IF         
+	00215: NPUSHB      (11):    22    20    16    27    63    20    20    16    27    63 
+	                            17 
+	00228: PUSHW[1]            -10 
+	00231: NPUSHB      (19):    15    30    63    11    20    15    30    63     8    10 
+	                            15    30    63     7    10    15    30    63    17 
+	00252: PUSHW[1]            -20 
+	00255: NPUSHB      (29):    18    11    63     7    20    11    18    63    11    20 
+	                            11    18    63    22    20    17    23    62    20    20 
+	                            17    23    62    19    20    15    20    63    17 
+	00286: PUSHW[1]            -60 
+	00289: NPUSHB      (18):    15    20    63    10    10    12    16    63     8    10 
+	                            12    16    63     2     3    15    31    60 
+	00309: SVTCA[x-axis] 
+	00310: CALL       
+	00311: SVTCA[y-axis] 
+	00312: CALL       
+	00313: CALL       
+	00314: CALL       
+	00315: CALL       
+	00316: CALL       
+	00317: CALL       
+	00318: CALL       
+	00319: CALL       
+	00320: CALL       
+	00321: CALL       
+	00322: CALL       
+	00323: CALL       
+	00324: CALL       
+	00325: CALL       
+	00326: CALL       
+	00327: EIF        
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                                      Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:                                      Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:                                      Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:                                      Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1084,   431)  ->  Abs (  1084,   431)
+	  1: Rel (     0,  -192)  ->  Abs (  1084,   239)
+	  2: Rel (  -275,  -272)  ->  Abs (   809,   -33)
+	  3: Rel (  -194,     0)  ->  Abs (   615,   -33)
+	  4: Rel (  -196,     0)  ->  Abs (   419,   -33)
+	  5: Rel (  -274,   273)  ->  Abs (   145,   240)
+	  6: Rel (     0,   191)  ->  Abs (   145,   431)
+	  7: Rel (     0,   192)  ->  Abs (   145,   623)
+	  8: Rel (   274,   273)  ->  Abs (   419,   896)
+	  9: Rel (   196,     0)  ->  Abs (   615,   896)
+	 10: Rel (   194,     0)  ->  Abs (   809,   896)
+	 11: Rel (   275,  -272)  ->  Abs (  1084,   624)
+	 12: Rel (   -85,  -193)  ->  Abs (   999,   431)
+	 13: Rel (     0,   158)  ->  Abs (   999,   589)
+	 14: Rel (  -225,   222)  ->  Abs (   774,   811)
+	 15: Rel (  -160,     0)  ->  Abs (   614,   811)
+	 16: Rel (  -160,     0)  ->  Abs (   454,   811)
+	 17: Rel (  -225,  -223)  ->  Abs (   229,   588)
+	 18: Rel (     0,  -157)  ->  Abs (   229,   431)
+	 19: Rel (     0,  -156)  ->  Abs (   229,   275)
+	 20: Rel (   225,  -224)  ->  Abs (   454,    51)
+	 21: Rel (   160,     0)  ->  Abs (   614,    51)
+	 22: Rel (   160,     0)  ->  Abs (   774,    51)
+	 23: Rel (   225,   223)  ->  Abs (   999,   274)
+
+	Glyph  83: off = 0x00007574, len = 444
+	  numberOfContours:	2
+	  xMin:			45
+	  yMin:			-386
+	  xMax:			1111
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  37
+	  1:  49
+
+	  Length of Instructions:	301
+	00000: NPUSHB      (63):    49    10    15    57    39    10    15    57    53    45 
+	                            81     1    85     2    93    13   100     1   101     2 
+	                           101     6   107    13   116     1   123    42   114    46 
+	                            11   195     6   192    10   217     7   217     9   218 
+	                            39   217    49   230     6   229    10     8    25     3 
+	                            44     3   123     7   140     3   153     3   172     3 
+	                             6    22    28 
+	00065: PUSHW[1]            686 
+	00068: NPUSHB      (11):    25    47    29    25    25    28    29    34    22    21 
+	                            15 
+	00081: PUSHW[1]            686 
+	00084: NPUSHB      (11):    18   200    14    18    18    15    14    34    21    37 
+	                            31 
+	00097: PUSHW[1]            686 
+	00100: NPUSHB      (65):    34    47    30    34    34    31    30    34    37     1 
+	                            13    41    47    15    59    21    28    59    22    22 
+	                            21    14    47    33    11    10    41    33     1   147 
+	                             4     7     0    31    59    37     6    38    33    15 
+	                             8     1     8    26    51    44     0    14    32    30 
+	                            15    29    79    29    95    29   111    29     4    29 
+	                            25    50    94   142    24 
+	00167: PUSHW[1]            300 
+	00170: SCANCTRL   
+	00171: CALL       
+	00172: FLIPOFF    
+	00173: SRP0       
+	00174: MIRP[srp0,nmd,rd,0] 
+	00175: DELTAP1    
+	00176: ALIGNRP    
+	00177: FLIPON     
+	00178: MIRP[srp0,md,rd,1] 
+	00179: ALIGNRP    
+	00180: ALIGNRP    
+	00181: FLIPOFF    
+	00182: SRP0       
+	00183: MIRP[srp0,nmd,rd,2] 
+	00184: DELTAP1    
+	00185: FLIPON     
+	00186: MIRP[nrp0,md,rd,1] 
+	00187: SVTCA[y-axis] 
+	00188: MIAP[rd+ci] 
+	00189: MIRP[nrp0,md,rd,1] 
+	00190: ALIGNRP    
+	00191: MIAP[rd+ci] 
+	00192: MIRP[nrp0,nmd,rd,0] 
+	00193: MIRP[nrp0,md,rd,1] 
+	00194: MIAP[rd+ci] 
+	00195: MIRP[nrp0,md,rd,1] 
+	00196: MIAP[rd+ci] 
+	00197: ALIGNRP    
+	00198: SRP0       
+	00199: MIRP[nrp0,md,rd,1] 
+	00200: SRP0       
+	00201: MIRP[nrp0,md,rd,1] 
+	00202: SRP1       
+	00203: SRP2       
+	00204: IP         
+	00205: IP         
+	00206: SRP0       
+	00207: MIRP[srp0,md,rd,1] 
+	00208: RTDG       
+	00209: SRP2       
+	00210: IP         
+	00211: MDAP[rd]   
+	00212: RTG        
+	00213: SVTCA[x-axis] 
+	00214: SRP0       
+	00215: MIRP[srp0,nmd,rd,1] 
+	00216: MIRP[srp0,nmd,rd,0] 
+	00217: MDRP[nrp0,nmd,rd,0] 
+	00218: SVTCA[y-axis] 
+	00219: SRP0       
+	00220: MIRP[srp0,md,rd,1] 
+	00221: RTDG       
+	00222: SRP2       
+	00223: IP         
+	00224: MDAP[rd]   
+	00225: RTG        
+	00226: SVTCA[x-axis] 
+	00227: SRP0       
+	00228: MIRP[srp0,nmd,rd,1] 
+	00229: MIRP[srp0,nmd,rd,0] 
+	00230: MDRP[nrp0,nmd,rd,0] 
+	00231: SVTCA[y-axis] 
+	00232: SRP0       
+	00233: MIRP[srp0,md,rd,1] 
+	00234: RTDG       
+	00235: SRP2       
+	00236: IP         
+	00237: MDAP[rd]   
+	00238: RTG        
+	00239: SVTCA[x-axis] 
+	00240: SRP0       
+	00241: MIRP[srp0,nmd,rd,1] 
+	00242: MIRP[srp0,nmd,rd,0] 
+	00243: MDRP[nrp0,nmd,rd,0] 
+	00244: IUP[y]     
+	00245: IUP[x]     
+	00246: SVTCA[y-axis] 
+	00247: MPPEM      
+	00248: PUSHB[1]             12 
+	00250: GTEQ       
+	00251: MPPEM      
+	00252: PUSHB[1]             36 
+	00254: LTEQ       
+	00255: AND        
+	00256: IF         
+	00257: PUSHB[3]             40    12    48 
+	00261: PUSHW[3]            -12    45   -12 
+	00268: PUSHB[5]             43    12    13    32     1 
+	00274: PUSHW[3]            -30    49   -35 
+	00281: PUSHB[2]             39    35 
+	00284: SHPIX      
+	00285: SHPIX      
+	00286: SHPIX      
+	00287: SHPIX      
+	00288: SHPIX      
+	00289: SHPIX      
+	00290: SHPIX      
+	00291: SHPIX      
+	00292: EIF        
+	00293: SVTCA[x-axis] 
+	00294: DELTAP2    
+	00295: DELTAP1    
+	00296: SVTCA[y-axis] 
+	00297: DELTAP2    
+	00298: SVTCA[x-axis] 
+	00299: CALL       
+	00300: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                                      Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:        XDual                         On
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                               On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short On
+	 30:        XDual                         On
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:                                      On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:                      Y-Short X-Short Off
+	 44:        XDual         Y-Short         On
+	 45:        XDual         Y-Short         Off
+	 46:        XDual         Y-Short X-Short Off
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short Off
+	 49:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   298,   866)  ->  Abs (   298,   866)
+	  1: Rel (     0,  -153)  ->  Abs (   298,   713)
+	  2: Rel (    75,    91)  ->  Abs (   373,   804)
+	  3: Rel (   172,    92)  ->  Abs (   545,   896)
+	  4: Rel (   117,     0)  ->  Abs (   662,   896)
+	  5: Rel (   124,     0)  ->  Abs (   786,   896)
+	  6: Rel (   210,  -116)  ->  Abs (   996,   780)
+	  7: Rel (   115,  -207)  ->  Abs (  1111,   573)
+	  8: Rel (     0,  -114)  ->  Abs (  1111,   459)
+	  9: Rel (     0,  -181)  ->  Abs (  1111,   278)
+	 10: Rel (  -259,  -257)  ->  Abs (   852,    21)
+	 11: Rel (  -189,     0)  ->  Abs (   663,    21)
+	 12: Rel (  -225,     0)  ->  Abs (   438,    21)
+	 13: Rel (  -140,   183)  ->  Abs (   298,   204)
+	 14: Rel (     0,  -506)  ->  Abs (   298,  -302)
+	 15: Rel (   204,     0)  ->  Abs (   502,  -302)
+	 16: Rel (    30,     0)  ->  Abs (   532,  -302)
+	 17: Rel (    26,   -23)  ->  Abs (   558,  -325)
+	 18: Rel (     0,   -19)  ->  Abs (   558,  -344)
+	 19: Rel (     0,   -18)  ->  Abs (   558,  -362)
+	 20: Rel (   -26,   -24)  ->  Abs (   532,  -386)
+	 21: Rel (   -30,     0)  ->  Abs (   502,  -386)
+	 22: Rel (  -401,     0)  ->  Abs (   101,  -386)
+	 23: Rel (   -30,     0)  ->  Abs (    71,  -386)
+	 24: Rel (   -26,    23)  ->  Abs (    45,  -363)
+	 25: Rel (     0,    19)  ->  Abs (    45,  -344)
+	 26: Rel (     0,    19)  ->  Abs (    45,  -325)
+	 27: Rel (    26,    23)  ->  Abs (    71,  -302)
+	 28: Rel (    30,     0)  ->  Abs (   101,  -302)
+	 29: Rel (   113,     0)  ->  Abs (   214,  -302)
+	 30: Rel (     0,  1083)  ->  Abs (   214,   781)
+	 31: Rel (  -113,     0)  ->  Abs (   101,   781)
+	 32: Rel (   -30,     0)  ->  Abs (    71,   781)
+	 33: Rel (   -26,    24)  ->  Abs (    45,   805)
+	 34: Rel (     0,    19)  ->  Abs (    45,   824)
+	 35: Rel (     0,    18)  ->  Abs (    45,   842)
+	 36: Rel (    26,    24)  ->  Abs (    71,   866)
+	 37: Rel (    30,     0)  ->  Abs (   101,   866)
+	 38: Rel (   925,  -407)  ->  Abs (  1026,   459)
+	 39: Rel (     0,   145)  ->  Abs (  1026,   604)
+	 40: Rel (  -211,   207)  ->  Abs (   815,   811)
+	 41: Rel (  -152,     0)  ->  Abs (   663,   811)
+	 42: Rel (  -153,     0)  ->  Abs (   510,   811)
+	 43: Rel (  -212,  -208)  ->  Abs (   298,   603)
+	 44: Rel (     0,  -144)  ->  Abs (   298,   459)
+	 45: Rel (     0,  -145)  ->  Abs (   298,   314)
+	 46: Rel (   212,  -208)  ->  Abs (   510,   106)
+	 47: Rel (   153,     0)  ->  Abs (   663,   106)
+	 48: Rel (   151,     0)  ->  Abs (   814,   106)
+	 49: Rel (   212,   207)  ->  Abs (  1026,   313)
+
+	Glyph  84: off = 0x00007730, len = 468
+	  numberOfContours:	2
+	  xMin:			128
+	  yMin:			-386
+	  xMax:			1194
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  35
+	  1:  47
+
+	  Length of Instructions:	332
+	00000: PUSHW[2]             43   -10 
+	00005: PUSHB[3]             15    57    41 
+	00009: PUSHW[1]            -10 
+	00012: NPUSHB      (56):    15    57   174     0   167    27   174    37     3    82 
+	                             0    95    26   100     0   110    26   106    33   115 
+	                             0   124    26   118    46   131     0   141    26   134 
+	                            46   153    38   156    44   151    46   169    38   172 
+	                            44   166    46    17   164    35     1   155    41   171 
+	                            32   171    41     3     2     8 
+	00070: PUSHW[1]            686 
+	00073: NPUSHB      (14):     0     5     1     5    47     9     5     5     8     9 
+	                            34     2    18    24 
+	00089: PUSHW[1]            686 
+	00092: NPUSHB      (11):    21   200    25    21    21    24    25    34    18    17 
+	                            11 
+	00105: PUSHW[1]            686 
+	00108: NPUSHB      (82):     0    14     1    14    47    10    14    14    11    10 
+	                            34    17     0    26    39    45    24    59    18    11 
+	                            59    18    17    14    45    33    28    10     9     8 
+	                            59     2     6    39    33     0   147    34     7    36 
+	                             1    25     9    25    32   128    10     1    15    10 
+	                           224    10   240    10     3    10    26    49    42    33 
+	                           128    31   144    31   160    31   176    31     4   207 
+	                            31   224    31   240    31     3    31    25    48    42 
+	                           128    24 
+	00192: PUSHW[1]            300 
+	00195: SCANCTRL   
+	00196: CALL       
+	00197: FLIPOFF    
+	00198: SRP0       
+	00199: MIRP[srp0,nmd,rd,0] 
+	00200: DELTAP1    
+	00201: DELTAP2    
+	00202: FLIPON     
+	00203: MIRP[nrp0,md,rd,1] 
+	00204: FLIPOFF    
+	00205: SRP0       
+	00206: MIRP[srp0,nmd,rd,2] 
+	00207: DELTAP1    
+	00208: DELTAP2    
+	00209: FLIPON     
+	00210: MIRP[nrp0,md,rd,1] 
+	00211: ALIGNRP    
+	00212: SRP0       
+	00213: ALIGNRP    
+	00214: ALIGNRP    
+	00215: SVTCA[y-axis] 
+	00216: MIAP[rd+ci] 
+	00217: MIRP[nrp0,nmd,rd,0] 
+	00218: MIRP[nrp0,md,rd,1] 
+	00219: MIAP[rd+ci] 
+	00220: MIRP[srp0,md,rd,1] 
+	00221: ALIGNRP    
+	00222: MIAP[rd+ci] 
+	00223: MIRP[nrp0,md,rd,1] 
+	00224: MIAP[rd+ci] 
+	00225: ALIGNRP    
+	00226: MIRP[nrp0,md,rd,1] 
+	00227: SRP0       
+	00228: MIRP[nrp0,md,rd,1] 
+	00229: SRP1       
+	00230: SRP2       
+	00231: IP         
+	00232: IP         
+	00233: SRP0       
+	00234: MIRP[srp0,md,rd,1] 
+	00235: RTDG       
+	00236: SRP2       
+	00237: IP         
+	00238: MDAP[rd]   
+	00239: RTG        
+	00240: SVTCA[x-axis] 
+	00241: SRP0       
+	00242: MIRP[srp0,nmd,rd,1] 
+	00243: DELTAP1    
+	00244: MIRP[srp0,nmd,rd,0] 
+	00245: MDRP[nrp0,nmd,rd,0] 
+	00246: SVTCA[y-axis] 
+	00247: SRP0       
+	00248: MIRP[srp0,md,rd,1] 
+	00249: RTDG       
+	00250: SRP2       
+	00251: IP         
+	00252: MDAP[rd]   
+	00253: RTG        
+	00254: SVTCA[x-axis] 
+	00255: SRP0       
+	00256: MIRP[srp0,nmd,rd,1] 
+	00257: MIRP[srp0,nmd,rd,0] 
+	00258: MDRP[nrp0,nmd,rd,0] 
+	00259: SVTCA[y-axis] 
+	00260: SRP0       
+	00261: MIRP[srp0,md,rd,1] 
+	00262: RTDG       
+	00263: SRP2       
+	00264: IP         
+	00265: MDAP[rd]   
+	00266: RTG        
+	00267: SVTCA[x-axis] 
+	00268: SRP0       
+	00269: MIRP[srp0,nmd,rd,1] 
+	00270: DELTAP1    
+	00271: MIRP[srp0,nmd,rd,0] 
+	00272: MDRP[nrp0,nmd,rd,0] 
+	00273: IUP[y]     
+	00274: IUP[x]     
+	00275: SVTCA[y-axis] 
+	00276: MPPEM      
+	00277: PUSHB[1]             12 
+	00279: GTEQ       
+	00280: MPPEM      
+	00281: PUSHB[1]             36 
+	00283: LTEQ       
+	00284: AND        
+	00285: IF         
+	00286: PUSHB[3]             26    20     0 
+	00290: PUSHW[3]            -20    47   -20 
+	00297: PUSHB[3]             37    20    44 
+	00301: PUSHW[1]            -20 
+	00304: PUSHB[3]             40    20    43 
+	00308: PUSHW[1]            -35 
+	00311: PUSHB[2]             41    35 
+	00314: SHPIX      
+	00315: SHPIX      
+	00316: SHPIX      
+	00317: SHPIX      
+	00318: SHPIX      
+	00319: SHPIX      
+	00320: SHPIX      
+	00321: SHPIX      
+	00322: EIF        
+	00323: SVTCA[x-axis] 
+	00324: DELTAP2    
+	00325: DELTAP1    
+	00326: SVTCA[y-axis] 
+	00327: DELTAP2    
+	00328: DELTAP1    
+	00329: SVTCA[x-axis] 
+	00330: CALL       
+	00331: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short On
+	 10:        XDual                         On
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                               On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short On
+	 26:        XDual                         On
+	 27:                      Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:                                      Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual               Y-Short         Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual                 X-Short On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:                      Y-Short X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:        XDual         Y-Short X-Short Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   940,   713)  ->  Abs (   940,   713)
+	  1: Rel (     0,   153)  ->  Abs (   940,   866)
+	  2: Rel (   197,     0)  ->  Abs (  1137,   866)
+	  3: Rel (    31,     0)  ->  Abs (  1168,   866)
+	  4: Rel (    26,   -24)  ->  Abs (  1194,   842)
+	  5: Rel (     0,   -19)  ->  Abs (  1194,   823)
+	  6: Rel (     0,   -18)  ->  Abs (  1194,   805)
+	  7: Rel (   -26,   -24)  ->  Abs (  1168,   781)
+	  8: Rel (   -31,     0)  ->  Abs (  1137,   781)
+	  9: Rel (  -112,     0)  ->  Abs (  1025,   781)
+	 10: Rel (     0, -1083)  ->  Abs (  1025,  -302)
+	 11: Rel (   112,     0)  ->  Abs (  1137,  -302)
+	 12: Rel (    31,     0)  ->  Abs (  1168,  -302)
+	 13: Rel (    26,   -23)  ->  Abs (  1194,  -325)
+	 14: Rel (     0,   -19)  ->  Abs (  1194,  -344)
+	 15: Rel (     0,   -18)  ->  Abs (  1194,  -362)
+	 16: Rel (   -26,   -24)  ->  Abs (  1168,  -386)
+	 17: Rel (   -31,     0)  ->  Abs (  1137,  -386)
+	 18: Rel (  -400,     0)  ->  Abs (   737,  -386)
+	 19: Rel (   -30,     0)  ->  Abs (   707,  -386)
+	 20: Rel (   -26,    23)  ->  Abs (   681,  -363)
+	 21: Rel (     0,    19)  ->  Abs (   681,  -344)
+	 22: Rel (     0,    19)  ->  Abs (   681,  -325)
+	 23: Rel (    26,    23)  ->  Abs (   707,  -302)
+	 24: Rel (    30,     0)  ->  Abs (   737,  -302)
+	 25: Rel (   203,     0)  ->  Abs (   940,  -302)
+	 26: Rel (     0,   506)  ->  Abs (   940,   204)
+	 27: Rel (  -139,  -183)  ->  Abs (   801,    21)
+	 28: Rel (  -226,     0)  ->  Abs (   575,    21)
+	 29: Rel (  -188,     0)  ->  Abs (   387,    21)
+	 30: Rel (  -259,   257)  ->  Abs (   128,   278)
+	 31: Rel (     0,   181)  ->  Abs (   128,   459)
+	 32: Rel (     0,   182)  ->  Abs (   128,   641)
+	 33: Rel (   259,   255)  ->  Abs (   387,   896)
+	 34: Rel (   190,     0)  ->  Abs (   577,   896)
+	 35: Rel (   224,     0)  ->  Abs (   801,   896)
+	 36: Rel (   139,  -437)  ->  Abs (   940,   459)
+	 37: Rel (     0,   145)  ->  Abs (   940,   604)
+	 38: Rel (  -212,   207)  ->  Abs (   728,   811)
+	 39: Rel (  -152,     0)  ->  Abs (   576,   811)
+	 40: Rel (  -152,     0)  ->  Abs (   424,   811)
+	 41: Rel (  -212,  -207)  ->  Abs (   212,   604)
+	 42: Rel (     0,  -145)  ->  Abs (   212,   459)
+	 43: Rel (     0,  -145)  ->  Abs (   212,   314)
+	 44: Rel (   212,  -208)  ->  Abs (   424,   106)
+	 45: Rel (   152,     0)  ->  Abs (   576,   106)
+	 46: Rel (   152,     0)  ->  Abs (   728,   106)
+	 47: Rel (   212,   208)  ->  Abs (   940,   314)
+
+	Glyph  85: off = 0x00007904, len = 402
+	  numberOfContours:	1
+	  xMin:			171
+	  yMin:			0
+	  xMax:			1114
+	  yMax:			887
+
+	EndPoints
+	---------
+	  0:  43
+
+	  Length of Instructions:	277
+	00000: NPUSHB      (20):   124    14     1    44     9    79    10   106    18   121 
+	                            18   137    18   150     6   157    19     7    28    34 
+	00022: PUSHW[1]            686 
+	00025: NPUSHB      (11):    31   200    35    31    31    34    35    34    28    27 
+	                            21 
+	00038: PUSHW[3]            686    24   320 
+	00045: NPUSHB       (9):    20    24    24    21    20    34    27    43    37 
+	00056: PUSHW[1]            686 
+	00059: NPUSHB      (79):    40    78    36    40    40    37    36    34    43    11 
+	                            14    20    12    11    10     9     8     5     7    13 
+	                             1    19     0    20    14    16    10    36    37    59 
+	                             0    43     6    10    63    16    33     4     7    21 
+	                            59    27    34    59    28    28    27    10    15     7 
+	                           240     7     2     7    26    45     0    20    32    36 
+	                            15    35    80    35   128    35   144    35   160    35 
+	                           240    35     6    35    25    44   253   142    24 
+	00140: CALL       
+	00141: FLIPOFF    
+	00142: SRP0       
+	00143: MIRP[srp0,nmd,rd,0] 
+	00144: DELTAP1    
+	00145: ALIGNRP    
+	00146: FLIPON     
+	00147: MIRP[srp0,md,rd,1] 
+	00148: ALIGNRP    
+	00149: FLIPOFF    
+	00150: SRP0       
+	00151: MIRP[nrp0,nmd,rd,2] 
+	00152: DELTAP1    
+	00153: SVTCA[y-axis] 
+	00154: MIAP[rd+ci] 
+	00155: ALIGNRP    
+	00156: FLIPON     
+	00157: SRP0       
+	00158: MIRP[nrp0,md,rd,1] 
+	00159: SRP0       
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: MIAP[rd+ci] 
+	00162: MIRP[nrp0,md,rd,1] 
+	00163: MIRP[nrp0,md,rd,1] 
+	00164: MIAP[rd+ci] 
+	00165: ALIGNRP    
+	00166: MIRP[srp0,md,rd,1] 
+	00167: ALIGNRP    
+	00168: SRP1       
+	00169: SRP2       
+	00170: IP         
+	00171: SRP1       
+	00172: SRP2       
+	00173: IP         
+	00174: IP         
+	00175: SRP1       
+	00176: SRP2       
+	00177: SLOOP      
+	00178: IP         
+	00179: SVTCA[x-axis] 
+	00180: SRP1       
+	00181: IP         
+	00182: IP         
+	00183: SVTCA[y-axis] 
+	00184: SRP0       
+	00185: MIRP[srp0,md,rd,1] 
+	00186: RTDG       
+	00187: SRP2       
+	00188: IP         
+	00189: MDAP[rd]   
+	00190: RTG        
+	00191: SVTCA[x-axis] 
+	00192: SRP0       
+	00193: MIRP[srp0,nmd,rd,1] 
+	00194: MIRP[srp0,nmd,rd,0] 
+	00195: MDRP[nrp0,nmd,rd,0] 
+	00196: SVTCA[y-axis] 
+	00197: SRP0       
+	00198: MIRP[srp0,md,rd,1] 
+	00199: RTDG       
+	00200: SRP2       
+	00201: IP         
+	00202: MDAP[rd]   
+	00203: RTG        
+	00204: SVTCA[x-axis] 
+	00205: SRP0       
+	00206: MIRP[srp0,nmd,rd,1] 
+	00207: MIRP[srp0,nmd,rd,0] 
+	00208: MDRP[nrp0,nmd,rd,0] 
+	00209: SVTCA[y-axis] 
+	00210: SRP0       
+	00211: MIRP[srp0,md,rd,1] 
+	00212: RTDG       
+	00213: SRP2       
+	00214: IP         
+	00215: MDAP[rd]   
+	00216: RTG        
+	00217: SVTCA[x-axis] 
+	00218: SRP0       
+	00219: MIRP[srp0,nmd,rd,1] 
+	00220: MIRP[srp0,nmd,rd,0] 
+	00221: MDRP[nrp0,nmd,rd,0] 
+	00222: PUSHB[2]              6     2 
+	00225: RS         
+	00226: EQ         
+	00227: IF         
+	00228: PUSHW[2]              1   -64 
+	00233: PUSHB[4]             27    36    52     1 
+	00238: PUSHW[1]            -32 
+	00241: PUSHB[3]             17    26    52 
+	00245: SVTCA[y-axis] 
+	00246: CALL       
+	00247: CALL       
+	00248: EIF        
+	00249: IUP[y]     
+	00250: IUP[x]     
+	00251: SVTCA[y-axis] 
+	00252: MPPEM      
+	00253: PUSHB[1]             17 
+	00255: GTEQ       
+	00256: MPPEM      
+	00257: PUSHB[1]             36 
+	00259: LTEQ       
+	00260: AND        
+	00261: IF         
+	00262: PUSHB[6]             19    20    14    22    18    28 
+	00269: SHPIX      
+	00270: SHPIX      
+	00271: SHPIX      
+	00272: EIF        
+	00273: SVTCA[y-axis] 
+	00274: DELTAP2    
+	00275: SVTCA[x-axis] 
+	00276: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:        XDual                         On
+	 21:  YDual                               On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                               On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short On
+	 36:        XDual                         On
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   514,   866)  ->  Abs (   514,   866)
+	  1: Rel (     0,  -212)  ->  Abs (   514,   654)
+	  2: Rel (   164,   148)  ->  Abs (   678,   802)
+	  3: Rel (   163,    85)  ->  Abs (   841,   887)
+	  4: Rel (    69,     0)  ->  Abs (   910,   887)
+	  5: Rel (    75,     0)  ->  Abs (   985,   887)
+	  6: Rel (   129,  -101)  ->  Abs (  1114,   786)
+	  7: Rel (     0,   -26)  ->  Abs (  1114,   760)
+	  8: Rel (     0,   -19)  ->  Abs (  1114,   741)
+	  9: Rel (   -25,   -25)  ->  Abs (  1089,   716)
+	 10: Rel (   -19,     0)  ->  Abs (  1070,   716)
+	 11: Rel (   -10,     0)  ->  Abs (  1060,   716)
+	 12: Rel (   -14,     7)  ->  Abs (  1046,   723)
+	 13: Rel (   -19,    19)  ->  Abs (  1027,   742)
+	 14: Rel (   -35,    35)  ->  Abs (   992,   777)
+	 15: Rel (   -52,    26)  ->  Abs (   940,   803)
+	 16: Rel (   -25,     0)  ->  Abs (   915,   803)
+	 17: Rel (   -55,     0)  ->  Abs (   860,   803)
+	 18: Rel (  -155,   -88)  ->  Abs (   705,   715)
+	 19: Rel (  -191,  -171)  ->  Abs (   514,   544)
+	 20: Rel (     0,  -460)  ->  Abs (   514,    84)
+	 21: Rel (   372,     0)  ->  Abs (   886,    84)
+	 22: Rel (    31,     0)  ->  Abs (   917,    84)
+	 23: Rel (    26,   -23)  ->  Abs (   943,    61)
+	 24: Rel (     0,   -19)  ->  Abs (   943,    42)
+	 25: Rel (     0,   -18)  ->  Abs (   943,    24)
+	 26: Rel (   -26,   -24)  ->  Abs (   917,     0)
+	 27: Rel (   -31,     0)  ->  Abs (   886,     0)
+	 28: Rel (  -659,     0)  ->  Abs (   227,     0)
+	 29: Rel (   -30,     0)  ->  Abs (   197,     0)
+	 30: Rel (   -26,    23)  ->  Abs (   171,    23)
+	 31: Rel (     0,    18)  ->  Abs (   171,    41)
+	 32: Rel (     0,    17)  ->  Abs (   171,    58)
+	 33: Rel (    25,    23)  ->  Abs (   196,    81)
+	 34: Rel (    31,     0)  ->  Abs (   227,    81)
+	 35: Rel (   203,     0)  ->  Abs (   430,    81)
+	 36: Rel (     0,   700)  ->  Abs (   430,   781)
+	 37: Rel (  -155,     0)  ->  Abs (   275,   781)
+	 38: Rel (   -30,     0)  ->  Abs (   245,   781)
+	 39: Rel (   -26,    24)  ->  Abs (   219,   805)
+	 40: Rel (     0,    19)  ->  Abs (   219,   824)
+	 41: Rel (     0,    18)  ->  Abs (   219,   842)
+	 42: Rel (    25,    24)  ->  Abs (   244,   866)
+	 43: Rel (    31,     0)  ->  Abs (   275,   866)
+
+	Glyph  86: off = 0x00007A96, len = 688
+	  numberOfContours:	1
+	  xMin:			207
+	  yMin:			-33
+	  xMax:			1022
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  68
+
+	  Length of Instructions:	497
+	00000: NPUSHB     (136):    20    63    28    65     2    18    76     0    89     0 
+	                           105    68   172    32   172    55   161    56   204    19 
+	                           201    66   222    19   214    22   214    62   219    66 
+	                           235    19   228    52   232    66   252    19   244    52 
+	                           248    66    18    11    19     6    22     5    62     9 
+	                            66    31    19    21    22    21    62    27    66   139 
+	                            34   149    52   187    15    11    87    19    90    56 
+	                           105    56   106    59   122    56   126    59   137    56 
+	                           137    59   165    20   178    20    10   142    59   181 
+	                            31     2    81     8    43    41    35    38    49    64 
+	                            61    60    52    26    24    15    14     7    21    12 
+	                            57     0    52    50    48    35     4    46    54    15 
+	                            14    12     3    10     0     3    17    25    59    61 
+	                            61    33    17    33    67    10 
+	00138: PUSHW[1]            309 
+	00141: PUSHB[5]              3    32    46     1    46 
+	00147: PUSHW[1]            406 
+	00150: NPUSHB      (28):    38    54    33    33     0    59     7    85    57    33 
+	                            79    30    95    30   111    30     3    30    26    70 
+	                            49    84    35    59    41    21    33    64 
+	00180: PUSHW[1]            -64 
+	00183: NPUSHB      (22):    15    25    63    64    89   111    41     1    41    25 
+	                            69    67     7     3     6    38    10    33    11    94 
+	                           128    24 
+	00207: PUSHW[1]            300 
+	00210: SCANCTRL   
+	00211: CALL       
+	00212: SVTCA[y-axis] 
+	00213: MIAP[rd+ci] 
+	00214: MIAP[rd+ci] 
+	00215: MIAP[rd+ci] 
+	00216: MIAP[rd+ci] 
+	00217: SVTCA[x-axis] 
+	00218: FLIPOFF    
+	00219: SRP0       
+	00220: MIRP[srp0,nmd,rd,0] 
+	00221: DELTAP1    
+	00222: FLIPON     
+	00223: MIRP[srp0,nmd,rd,0] 
+	00224: SVTCA[x-axis] 
+	00225: CALL       
+	00226: MIRP[nrp0,md,rd,1] 
+	00227: SRP0       
+	00228: MIRP[srp0,md,rd,1] 
+	00229: MIRP[nrp0,nmd,rd,0] 
+	00230: FLIPOFF    
+	00231: SRP0       
+	00232: MIRP[srp0,nmd,rd,2] 
+	00233: DELTAP1    
+	00234: FLIPON     
+	00235: MIRP[srp0,md,rd,1] 
+	00236: MIRP[srp0,md,rd,1] 
+	00237: MIRP[nrp0,md,rd,1] 
+	00238: SVTCA[y-axis] 
+	00239: SRP0       
+	00240: MIRP[nrp0,md,rd,1] 
+	00241: SRP0       
+	00242: MIRP[nrp0,md,rd,1] 
+	00243: DELTAP1    
+	00244: SRP0       
+	00245: MIRP[nrp0,md,rd,1] 
+	00246: SRP0       
+	00247: MIRP[srp0,md,rd,1] 
+	00248: SRP1       
+	00249: IP         
+	00250: MDAP[rd]   
+	00251: MIRP[nrp0,md,rd,1] 
+	00252: SRP1       
+	00253: SRP2       
+	00254: IP         
+	00255: SRP2       
+	00256: SLOOP      
+	00257: IP         
+	00258: SRP1       
+	00259: SRP2       
+	00260: SLOOP      
+	00261: IP         
+	00262: SVTCA[x-axis] 
+	00263: SRP1       
+	00264: SRP2       
+	00265: IP         
+	00266: SRP2       
+	00267: SLOOP      
+	00268: IP         
+	00269: SRP1       
+	00270: SRP2       
+	00271: IP         
+	00272: IP         
+	00273: SRP2       
+	00274: IP         
+	00275: IUP[y]     
+	00276: IUP[x]     
+	00277: RS         
+	00278: JROF       
+	00279: NPUSHB      (56):    55    66    18    32    28    37    19    37    23    62 
+	                            21    31     0    59    27    57    31     1    55    32 
+	                            57    31     1    18    66    21    31     0    22    63 
+	                            24    31     0    23    24    62    61    58    29    60 
+	                            31     1    27    26    59    60    56    31    54    31 
+	                             0    20    65    17    31     1 
+	00337: SVTCA[y-axis] 
+	00338: CALL       
+	00339: CALL       
+	00340: SRP0       
+	00341: ALIGNRP    
+	00342: SRP0       
+	00343: ALIGNRP    
+	00344: CALL       
+	00345: SRP0       
+	00346: ALIGNRP    
+	00347: SRP0       
+	00348: ALIGNRP    
+	00349: CALL       
+	00350: SVTCA[x-axis] 
+	00351: CALL       
+	00352: CALL       
+	00353: CALL       
+	00354: CALL       
+	00355: CALL       
+	00356: CALL       
+	00357: FLIPRGON   
+	00358: FLIPRGON   
+	00359: SVTCA[y-axis] 
+	00360: MPPEM      
+	00361: PUSHB[1]             17 
+	00363: GTEQ       
+	00364: MPPEM      
+	00365: PUSHB[1]             36 
+	00367: LTEQ       
+	00368: AND        
+	00369: IF         
+	00370: PUSHB[5]             59    20    52    10    28 
+	00376: PUSHW[5]            -25    23   -20    68   -20 
+	00387: PUSHB[3]             62    20    55 
+	00391: PUSHW[1]            -20 
+	00394: PUSHB[4]             34    22    60    28 
+	00399: SHPIX      
+	00400: SHPIX      
+	00401: SHPIX      
+	00402: SHPIX      
+	00403: SHPIX      
+	00404: SHPIX      
+	00405: SHPIX      
+	00406: SHPIX      
+	00407: SHPIX      
+	00408: EIF        
+	00409: SVTCA[x-axis] 
+	00410: DELTAP1    
+	00411: DELTAP2    
+	00412: SVTCA[y-axis] 
+	00413: DELTAP2    
+	00414: DELTAP1    
+	00415: RS         
+	00416: NOT        
+	00417: IF         
+	00418: PUSHW[2]             56   -20 
+	00423: NPUSHB       (9):    13    22    63    59    20    13    22    63    56 
+	00434: PUSHW[1]            -20 
+	00437: NPUSHB      (24):    16    21    63    59    20    16    21    63    68    20 
+	                            15    20    63    68    20    12    16    63    68    20 
+	                            11    15    63    28 
+	00463: PUSHW[1]            -20 
+	00466: PUSHB[4]             15    25    63    56 
+	00471: PUSHW[1]            -20 
+	00474: PUSHB[8]             15    25    63     0    20    15    25    63 
+	00483: SVTCA[y-axis] 
+	00484: CALL       
+	00485: CALL       
+	00486: CALL       
+	00487: CALL       
+	00488: CALL       
+	00489: CALL       
+	00490: CALL       
+	00491: CALL       
+	00492: CALL       
+	00493: CALL       
+	00494: EIF        
+	00495: SVTCA[y-axis] 
+	00496: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:        XDual         Y-Short X-Short On
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual               Y-Short X-Short On
+	 36:        XDual         Y-Short         Off
+	 37:                      Y-Short X-Short Off
+	 38:                      Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:        XDual         Y-Short X-Short Off
+	 49:        XDual         Y-Short         On
+	 50:        XDual         Y-Short         Off
+	 51:        XDual         Y-Short X-Short On
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short X-Short Off
+	 54:  YDual XDual                 X-Short On
+	 55:  YDual XDual                 X-Short Off
+	 56:  YDual XDual         Y-Short X-Short Off
+	 57:  YDual XDual         Y-Short         On
+	 58:  YDual XDual         Y-Short         Off
+	 59:  YDual               Y-Short X-Short On
+	 60:  YDual               Y-Short X-Short Off
+	 61:  YDual               Y-Short         Off
+	 62:  YDual               Y-Short X-Short Off
+	 63:  YDual               Y-Short X-Short Off
+	 64:  YDual XDual         Y-Short         On
+	 65:  YDual XDual         Y-Short         Off
+	 66:  YDual XDual         Y-Short X-Short Off
+	 67:  YDual XDual                 X-Short On
+	 68:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   892,   811)  ->  Abs (   892,   811)
+	  1: Rel (     0,    29)  ->  Abs (   892,   840)
+	  2: Rel (    24,    26)  ->  Abs (   916,   866)
+	  3: Rel (    18,     0)  ->  Abs (   934,   866)
+	  4: Rel (    19,     0)  ->  Abs (   953,   866)
+	  5: Rel (    24,   -26)  ->  Abs (   977,   840)
+	  6: Rel (     0,   -31)  ->  Abs (   977,   809)
+	  7: Rel (     0,  -144)  ->  Abs (   977,   665)
+	  8: Rel (     0,   -30)  ->  Abs (   977,   635)
+	  9: Rel (   -24,   -26)  ->  Abs (   953,   609)
+	 10: Rel (   -19,     0)  ->  Abs (   934,   609)
+	 11: Rel (   -17,     0)  ->  Abs (   917,   609)
+	 12: Rel (   -23,    22)  ->  Abs (   894,   631)
+	 13: Rel (    -2,    25)  ->  Abs (   892,   656)
+	 14: Rel (    -6,    60)  ->  Abs (   886,   716)
+	 15: Rel (   -56,    39)  ->  Abs (   830,   755)
+	 16: Rel (   -82,    56)  ->  Abs (   748,   811)
+	 17: Rel (  -135,     0)  ->  Abs (   613,   811)
+	 18: Rel (  -141,     0)  ->  Abs (   472,   811)
+	 19: Rel (   -78,   -57)  ->  Abs (   394,   754)
+	 20: Rel (   -59,   -43)  ->  Abs (   335,   711)
+	 21: Rel (     0,   -53)  ->  Abs (   335,   658)
+	 22: Rel (     0,   -60)  ->  Abs (   335,   598)
+	 23: Rel (    70,   -40)  ->  Abs (   405,   558)
+	 24: Rel (    48,   -28)  ->  Abs (   453,   530)
+	 25: Rel (   134,   -15)  ->  Abs (   587,   515)
+	 26: Rel (   175,   -19)  ->  Abs (   762,   496)
+	 27: Rel (    68,   -24)  ->  Abs (   830,   472)
+	 28: Rel (    97,   -35)  ->  Abs (   927,   437)
+	 29: Rel (    95,  -124)  ->  Abs (  1022,   313)
+	 30: Rel (     0,   -72)  ->  Abs (  1022,   241)
+	 31: Rel (     0,  -107)  ->  Abs (  1022,   134)
+	 32: Rel (  -206,  -167)  ->  Abs (   816,   -33)
+	 33: Rel (  -199,     0)  ->  Abs (   617,   -33)
+	 34: Rel (  -199,     0)  ->  Abs (   418,   -33)
+	 35: Rel (  -127,   101)  ->  Abs (   291,    68)
+	 36: Rel (     0,   -34)  ->  Abs (   291,    34)
+	 37: Rel (    -8,   -20)  ->  Abs (   283,    14)
+	 38: Rel (   -21,   -14)  ->  Abs (   262,     0)
+	 39: Rel (   -13,     0)  ->  Abs (   249,     0)
+	 40: Rel (   -18,     0)  ->  Abs (   231,     0)
+	 41: Rel (   -24,    26)  ->  Abs (   207,    26)
+	 42: Rel (     0,    30)  ->  Abs (   207,    56)
+	 43: Rel (     0,   173)  ->  Abs (   207,   229)
+	 44: Rel (     0,    30)  ->  Abs (   207,   259)
+	 45: Rel (    23,    26)  ->  Abs (   230,   285)
+	 46: Rel (    19,     0)  ->  Abs (   249,   285)
+	 47: Rel (    18,     0)  ->  Abs (   267,   285)
+	 48: Rel (    25,   -25)  ->  Abs (   292,   260)
+	 49: Rel (     0,   -21)  ->  Abs (   292,   239)
+	 50: Rel (     0,   -46)  ->  Abs (   292,   193)
+	 51: Rel (    23,   -31)  ->  Abs (   315,   162)
+	 52: Rel (    35,   -48)  ->  Abs (   350,   114)
+	 53: Rel (   153,   -63)  ->  Abs (   503,    51)
+	 54: Rel (   111,     0)  ->  Abs (   614,    51)
+	 55: Rel (   164,     0)  ->  Abs (   778,    51)
+	 56: Rel (   160,   122)  ->  Abs (   938,   173)
+	 57: Rel (     0,    68)  ->  Abs (   938,   241)
+	 58: Rel (     0,    78)  ->  Abs (   938,   319)
+	 59: Rel (   -81,    47)  ->  Abs (   857,   366)
+	 60: Rel (   -82,    47)  ->  Abs (   775,   413)
+	 61: Rel (  -313,    32)  ->  Abs (   462,   445)
+	 62: Rel (  -136,    52)  ->  Abs (   326,   497)
+	 63: Rel (   -76,   104)  ->  Abs (   250,   601)
+	 64: Rel (     0,    60)  ->  Abs (   250,   661)
+	 65: Rel (     0,   108)  ->  Abs (   250,   769)
+	 66: Rel (   212,   127)  ->  Abs (   462,   896)
+	 67: Rel (   147,     0)  ->  Abs (   609,   896)
+	 68: Rel (   174,     0)  ->  Abs (   783,   896)
+
+	Glyph  87: off = 0x00007D46, len = 328
+	  numberOfContours:	1
+	  xMin:			146
+	  yMin:			-33
+	  xMax:			1083
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  44
+
+	  Length of Instructions:	201
+	00000: NPUSHB      (36):   251    27     1    13    27    26    27     2   164    10 
+	                           181    10   194    10   211    10   228    10     5   118 
+	                            14   134    14   149    14   166    14   198    11   214 
+	                            11     6    23     8     1     7 
+	00038: PUSHW[3]            686     4   370 
+	00045: NPUSHB      (21):     8     4     4     7     8    34     1    16    20     9 
+	                            21    17    15    16    17    18    20     5    25    12 
+	                            41 
+	00068: PUSHW[1]            419 
+	00071: NPUSHB      (17):    30    59    36    36     7    59     1     1     0     6 
+	                            12    33    25    11    20   136     4 
+	00090: PUSHW[1]            425 
+	00093: NPUSHB      (20):    44    44     8     9    32    38    33   198     0    28 
+	                            16    28    32    28   112    28   191    28     5    28 
+	00115: PUSHW[1]            741 
+	00118: PUSHB[4]             45    42   173    24 
+	00123: CALL       
+	00124: SRP0       
+	00125: MIRP[srp0,nmd,rd,2] 
+	00126: DELTAP1    
+	00127: MIRP[nrp0,nmd,rd,0] 
+	00128: ALIGNRP    
+	00129: MIRP[srp0,md,rd,1] 
+	00130: ALIGNRP    
+	00131: ALIGNRP    
+	00132: SRP0       
+	00133: MIRP[srp0,nmd,rd,0] 
+	00134: MIRP[nrp0,nmd,rd,0] 
+	00135: SVTCA[y-axis] 
+	00136: MIAP[rd+ci] 
+	00137: MIRP[nrp0,md,rd,1] 
+	00138: MIAP[rd+ci] 
+	00139: ALIGNRP    
+	00140: SRP0       
+	00141: MIRP[nrp0,md,rd,1] 
+	00142: ALIGNRP    
+	00143: SRP0       
+	00144: MIRP[srp0,md,rd,1] 
+	00145: MIRP[nrp0,md,rd,1] 
+	00146: SRP1       
+	00147: SRP2       
+	00148: SLOOP      
+	00149: IP         
+	00150: SRP2       
+	00151: IP         
+	00152: SVTCA[x-axis] 
+	00153: SRP1       
+	00154: SRP2       
+	00155: IP         
+	00156: SVTCA[y-axis] 
+	00157: SRP0       
+	00158: MIRP[srp0,md,rd,1] 
+	00159: RTDG       
+	00160: SRP2       
+	00161: IP         
+	00162: MDAP[rd]   
+	00163: RTG        
+	00164: SVTCA[x-axis] 
+	00165: SRP0       
+	00166: MIRP[srp0,nmd,rd,1] 
+	00167: MIRP[srp0,nmd,rd,0] 
+	00168: MDRP[nrp0,nmd,rd,0] 
+	00169: IUP[y]     
+	00170: IUP[x]     
+	00171: RS         
+	00172: JROF       
+	00173: NPUSHB      (14):    26    27    10    11    11    26     9    31     0    10 
+	                            27    12    31     0 
+	00189: SVTCA[y-axis] 
+	00190: CALL       
+	00191: SVTCA[x-axis] 
+	00192: CALL       
+	00193: FLIPRGON   
+	00194: FLIPRGON   
+	00195: SVTCA[y-axis] 
+	00196: DELTAP2    
+	00197: DELTAP1    
+	00198: SVTCA[x-axis] 
+	00199: DELTAP2    
+	00200: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                               On
+	  9:        XDual                         On
+	 10:        XDual         Y-Short         Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:                      Y-Short X-Short On
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:        XDual                         On
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:        XDual         Y-Short X-Short Off
+	 44:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   442,   866)  ->  Abs (   442,   866)
+	  1: Rel (   456,     0)  ->  Abs (   898,   866)
+	  2: Rel (    30,     0)  ->  Abs (   928,   866)
+	  3: Rel (    26,   -24)  ->  Abs (   954,   842)
+	  4: Rel (     0,   -19)  ->  Abs (   954,   823)
+	  5: Rel (     0,   -18)  ->  Abs (   954,   805)
+	  6: Rel (   -26,   -24)  ->  Abs (   928,   781)
+	  7: Rel (   -30,     0)  ->  Abs (   898,   781)
+	  8: Rel (  -456,     0)  ->  Abs (   442,   781)
+	  9: Rel (     0,  -559)  ->  Abs (   442,   222)
+	 10: Rel (     0,   -73)  ->  Abs (   442,   149)
+	 11: Rel (   117,   -98)  ->  Abs (   559,    51)
+	 12: Rel (   113,     0)  ->  Abs (   672,    51)
+	 13: Rel (    85,     0)  ->  Abs (   757,    51)
+	 14: Rel (   198,    51)  ->  Abs (   955,   102)
+	 15: Rel (    55,    32)  ->  Abs (  1010,   134)
+	 16: Rel (    20,    13)  ->  Abs (  1030,   147)
+	 17: Rel (    13,     0)  ->  Abs (  1043,   147)
+	 18: Rel (    16,     0)  ->  Abs (  1059,   147)
+	 19: Rel (    24,   -25)  ->  Abs (  1083,   122)
+	 20: Rel (     0,   -17)  ->  Abs (  1083,   105)
+	 21: Rel (     0,   -15)  ->  Abs (  1083,    90)
+	 22: Rel (   -13,   -13)  ->  Abs (  1070,    77)
+	 23: Rel (   -32,   -33)  ->  Abs (  1038,    44)
+	 24: Rel (  -247,   -77)  ->  Abs (   791,   -33)
+	 25: Rel (  -113,     0)  ->  Abs (   678,   -33)
+	 26: Rel (  -147,     0)  ->  Abs (   531,   -33)
+	 27: Rel (  -174,   138)  ->  Abs (   357,   105)
+	 28: Rel (     0,   117)  ->  Abs (   357,   222)
+	 29: Rel (     0,   559)  ->  Abs (   357,   781)
+	 30: Rel (  -155,     0)  ->  Abs (   202,   781)
+	 31: Rel (   -30,     0)  ->  Abs (   172,   781)
+	 32: Rel (   -26,    24)  ->  Abs (   146,   805)
+	 33: Rel (     0,    19)  ->  Abs (   146,   824)
+	 34: Rel (     0,    18)  ->  Abs (   146,   842)
+	 35: Rel (    26,    24)  ->  Abs (   172,   866)
+	 36: Rel (    30,     0)  ->  Abs (   202,   866)
+	 37: Rel (   155,     0)  ->  Abs (   357,   866)
+	 38: Rel (     0,   248)  ->  Abs (   357,  1114)
+	 39: Rel (     0,    30)  ->  Abs (   357,  1144)
+	 40: Rel (    24,    26)  ->  Abs (   381,  1170)
+	 41: Rel (    18,     0)  ->  Abs (   399,  1170)
+	 42: Rel (    19,     0)  ->  Abs (   418,  1170)
+	 43: Rel (    24,   -26)  ->  Abs (   442,  1144)
+	 44: Rel (     0,   -30)  ->  Abs (   442,  1114)
+
+	Glyph  88: off = 0x00007E8E, len = 388
+	  numberOfContours:	1
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1113
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  39
+
+	  Length of Instructions:	277
+	00000: NPUSHB      (12):    10     4   181    22     2    40    22     1    26     8 
+	                            15     9 
+	00014: PUSHW[1]            686 
+	00017: NPUSHB      (11):    12    47     8    12    12     9     8    34    15    30 
+	                            24 
+	00030: PUSHW[1]            686 
+	00033: NPUSHB      (11):    27    78    23    27    27    24    23    34    30    39 
+	                            33 
+	00046: PUSHW[1]            686 
+	00049: NPUSHB      (45):     0    36     1    36    70    32    36    36    33    32 
+	                            34    39     1    22    15    20    32    33    59     0 
+	                            39    10    23    24    59    31    30    30    15     8 
+	                             9    59    16    15     6    20    33     3    11    32 
+	                            32     0     0    23    22 
+	00096: PUSHW[1]            675 
+	00099: NPUSHB       (9):    41    16    17    32     8   207     7     1     7 
+	00110: PUSHW[1]            491 
+	00113: PUSHB[4]             40    71    97    24 
+	00118: PUSHW[1]            300 
+	00121: SCANCTRL   
+	00122: CALL       
+	00123: SRP0       
+	00124: MIRP[srp0,nmd,rd,2] 
+	00125: DELTAP1    
+	00126: ALIGNRP    
+	00127: MIRP[srp0,md,rd,1] 
+	00128: ALIGNRP    
+	00129: SRP0       
+	00130: MIRP[srp0,nmd,rd,0] 
+	00131: ALIGNRP    
+	00132: ALIGNRP    
+	00133: SRP0       
+	00134: MIRP[nrp0,md,rd,1] 
+	00135: SVTCA[y-axis] 
+	00136: MIAP[rd+ci] 
+	00137: MIRP[nrp0,md,rd,1] 
+	00138: MIAP[rd+ci] 
+	00139: ALIGNRP    
+	00140: MIRP[srp0,md,rd,1] 
+	00141: ALIGNRP    
+	00142: SRP0       
+	00143: ALIGNRP    
+	00144: SRP0       
+	00145: ALIGNRP    
+	00146: MIRP[srp0,md,rd,1] 
+	00147: ALIGNRP    
+	00148: MIAP[rd+ci] 
+	00149: ALIGNRP    
+	00150: MIRP[srp0,md,rd,1] 
+	00151: ALIGNRP    
+	00152: SRP1       
+	00153: SRP2       
+	00154: IP         
+	00155: IP         
+	00156: SRP0       
+	00157: MIRP[srp0,md,rd,1] 
+	00158: RTDG       
+	00159: SRP2       
+	00160: IP         
+	00161: MDAP[rd]   
+	00162: RTG        
+	00163: SVTCA[x-axis] 
+	00164: SRP0       
+	00165: MIRP[srp0,nmd,rd,1] 
+	00166: DELTAP1    
+	00167: MIRP[srp0,nmd,rd,0] 
+	00168: MDRP[nrp0,nmd,rd,0] 
+	00169: SVTCA[y-axis] 
+	00170: SRP0       
+	00171: MIRP[srp0,md,rd,1] 
+	00172: RTDG       
+	00173: SRP2       
+	00174: IP         
+	00175: MDAP[rd]   
+	00176: RTG        
+	00177: SVTCA[x-axis] 
+	00178: SRP0       
+	00179: MIRP[srp0,nmd,rd,1] 
+	00180: MIRP[srp0,nmd,rd,0] 
+	00181: MDRP[nrp0,nmd,rd,0] 
+	00182: SVTCA[y-axis] 
+	00183: SRP0       
+	00184: MIRP[srp0,md,rd,1] 
+	00185: RTDG       
+	00186: SRP2       
+	00187: IP         
+	00188: MDAP[rd]   
+	00189: RTG        
+	00190: SVTCA[x-axis] 
+	00191: SRP0       
+	00192: MIRP[srp0,nmd,rd,1] 
+	00193: MIRP[srp0,nmd,rd,0] 
+	00194: MDRP[nrp0,nmd,rd,0] 
+	00195: PUSHB[2]              6     2 
+	00198: RS         
+	00199: EQ         
+	00200: IF         
+	00201: NPUSHB      (10):     1    64    27    36    52     1    32    17    26    52 
+	00213: SVTCA[y-axis] 
+	00214: CALL       
+	00215: CALL       
+	00216: EIF        
+	00217: IUP[y]     
+	00218: IUP[x]     
+	00219: RS         
+	00220: JROF       
+	00221: NPUSHB      (16):    18    19     4     6     5    37    19     4    17    31 
+	                             0    18     6    20    31     0 
+	00239: SVTCA[y-axis] 
+	00240: CALL       
+	00241: SVTCA[x-axis] 
+	00242: CALL       
+	00243: CALL       
+	00244: FLIPRGON   
+	00245: FLIPRGON   
+	00246: SVTCA[y-axis] 
+	00247: MPPEM      
+	00248: PUSHB[1]             19 
+	00250: GTEQ       
+	00251: MPPEM      
+	00252: PUSHB[1]             36 
+	00254: LTEQ       
+	00255: AND        
+	00256: IF         
+	00257: PUSHW[6]             21   -20    22   -30    18   -30 
+	00270: SHPIX      
+	00271: SHPIX      
+	00272: SHPIX      
+	00273: EIF        
+	00274: SVTCA[y-axis] 
+	00275: DELTAP1    
+	00276: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual XDual         Y-Short         On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:        XDual         Y-Short         Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:        XDual                         On
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short On
+	 32:        XDual                         On
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   902,     0)  ->  Abs (   902,     0)
+	  1: Rel (     0,   123)  ->  Abs (   902,   123)
+	  2: Rel (  -172,  -156)  ->  Abs (   730,   -33)
+	  3: Rel (  -200,     0)  ->  Abs (   530,   -33)
+	  4: Rel (  -123,     0)  ->  Abs (   407,   -33)
+	  5: Rel (   -64,    67)  ->  Abs (   343,    34)
+	  6: Rel (   -83,    88)  ->  Abs (   260,   122)
+	  7: Rel (     0,   117)  ->  Abs (   260,   239)
+	  8: Rel (     0,   542)  ->  Abs (   260,   781)
+	  9: Rel (  -113,     0)  ->  Abs (   147,   781)
+	 10: Rel (   -30,     0)  ->  Abs (   117,   781)
+	 11: Rel (   -26,    24)  ->  Abs (    91,   805)
+	 12: Rel (     0,    19)  ->  Abs (    91,   824)
+	 13: Rel (     0,    18)  ->  Abs (    91,   842)
+	 14: Rel (    26,    24)  ->  Abs (   117,   866)
+	 15: Rel (    30,     0)  ->  Abs (   147,   866)
+	 16: Rel (   197,     0)  ->  Abs (   344,   866)
+	 17: Rel (     0,  -627)  ->  Abs (   344,   239)
+	 18: Rel (     0,   -82)  ->  Abs (   344,   157)
+	 19: Rel (   104,  -106)  ->  Abs (   448,    51)
+	 20: Rel (    78,     0)  ->  Abs (   526,    51)
+	 21: Rel (   205,     0)  ->  Abs (   731,    51)
+	 22: Rel (   171,   188)  ->  Abs (   902,   239)
+	 23: Rel (     0,   542)  ->  Abs (   902,   781)
+	 24: Rel (  -155,     0)  ->  Abs (   747,   781)
+	 25: Rel (   -30,     0)  ->  Abs (   717,   781)
+	 26: Rel (   -26,    24)  ->  Abs (   691,   805)
+	 27: Rel (     0,    19)  ->  Abs (   691,   824)
+	 28: Rel (     0,    18)  ->  Abs (   691,   842)
+	 29: Rel (    26,    24)  ->  Abs (   717,   866)
+	 30: Rel (    30,     0)  ->  Abs (   747,   866)
+	 31: Rel (   239,     0)  ->  Abs (   986,   866)
+	 32: Rel (     0,  -782)  ->  Abs (   986,    84)
+	 33: Rel (    71,     0)  ->  Abs (  1057,    84)
+	 34: Rel (    30,     0)  ->  Abs (  1087,    84)
+	 35: Rel (    26,   -23)  ->  Abs (  1113,    61)
+	 36: Rel (     0,   -19)  ->  Abs (  1113,    42)
+	 37: Rel (     0,   -18)  ->  Abs (  1113,    24)
+	 38: Rel (   -26,   -24)  ->  Abs (  1087,     0)
+	 39: Rel (   -30,     0)  ->  Abs (  1057,     0)
+
+	Glyph  89: off = 0x00008012, len = 458
+	  numberOfContours:	1
+	  xMin:			59
+	  yMin:			0
+	  xMax:			1170
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  35
+
+	  Length of Instructions:	351
+	00000: NPUSHB      (49):   171     1   171    18   172    19     3    32    10    32 
+	                            11    32    12    32    13    32    14    32    15    32 
+	                            16    58     0    59     1    56    18    58    19   102 
+	                             2   103    17   105    20   105    35   175     1   171 
+	                            18   170    19    18    64    31     1    10    16 
+	00051: PUSHW[1]            686 
+	00054: NPUSHB      (21):    13     0    13    16    13    47    13     3    13    78 
+	                            17    13    13    16    17    34    10    17    18    28 
+	                            34 
+	00077: PUSHW[1]            686 
+	00080: NPUSHB      (17):    31     0    31     1    31    92    35    31    31    34 
+	                            35    34    28    35     0     9     3 
+	00099: PUSHW[1]            686 
+	00102: NPUSHB      (14):     6     6    92     2     6     6     3     2    34     9 
+	                             2     1    27    21 
+	00118: PUSHW[1]            686 
+	00121: NPUSHB      (63):    24    15    24    31    24     2    24    78    20    24 
+	                            24    21    20    34    27    20    19    17     2     1 
+	                             1    32    18    17    20    18    18    17    20    35 
+	                             0     0    32    19    20    20    19    19    20    19 
+	                            18     1     0    10    34    59    28    28    21    59 
+	                            27    27    16    59    10     3    59    10     9     6 
+	                            35    59    20 
+	00186: PUSHW[1]            362 
+	00189: NPUSHB      (11):    19     2    59    47    17    63    17   175    17     3 
+	                            17 
+	00202: PUSHW[3]            362    19   265 
+	00209: NPUSHB      (13):    64    18     1    48    18   111    18   160    18   208 
+	                            18     4    18 
+	00224: PUSHW[6]            431    36   293   289    24   356 
+	00237: SCANCTRL   
+	00238: CALL       
+	00239: SRP0       
+	00240: MIRP[srp0,nmd,rd,0] 
+	00241: DELTAP1    
+	00242: DELTAP2    
+	00243: MIRP[nrp0,nmd,rd,2] 
+	00244: MIRP[srp0,nmd,rd,0] 
+	00245: DELTAP1    
+	00246: MIRP[nrp0,md,rd,1] 
+	00247: SRP0       
+	00248: MIRP[srp0,nmd,rd,0] 
+	00249: MIRP[nrp0,md,rd,1] 
+	00250: SVTCA[y-axis] 
+	00251: MIAP[rd+ci] 
+	00252: ALIGNRP    
+	00253: MIRP[nrp0,md,rd,1] 
+	00254: SRP0       
+	00255: MIRP[nrp0,md,rd,1] 
+	00256: ALIGNRP    
+	00257: SRP0       
+	00258: MIRP[nrp0,md,rd,1] 
+	00259: ALIGNRP    
+	00260: SRP0       
+	00261: MIRP[nrp0,md,rd,1] 
+	00262: MIAP[rd+ci] 
+	00263: ALIGNRP    
+	00264: MDAP[rd]   
+	00265: MDAP[rd]   
+	00266: SDPVTL[1]  
+	00267: SFVTCA[x-axis] 
+	00268: MDAP[nrd]  
+	00269: CALL       
+	00270: SDPVTL[1]  
+	00271: RDTG       
+	00272: MDRP[nrp0,nmd,rd,0] 
+	00273: SDPVTL[1]  
+	00274: MDAP[nrd]  
+	00275: RTG        
+	00276: CALL       
+	00277: SDPVTL[1]  
+	00278: RDTG       
+	00279: MDRP[nrp0,nmd,rd,0] 
+	00280: RTG        
+	00281: SVTCA[y-axis] 
+	00282: SFVTL[=p1,p2] 
+	00283: SRP0       
+	00284: MIRP[srp0,md,rd,1] 
+	00285: RTDG       
+	00286: SRP2       
+	00287: IP         
+	00288: MDAP[rd]   
+	00289: RTG        
+	00290: SVTCA[x-axis] 
+	00291: SRP0       
+	00292: MIRP[srp0,nmd,nrd,1] 
+	00293: DELTAP1    
+	00294: MDAP[rd]   
+	00295: MIRP[srp0,nmd,rd,0] 
+	00296: MDRP[nrp0,nmd,rd,0] 
+	00297: SVTCA[y-axis] 
+	00298: SFVTL[=p1,p2] 
+	00299: SRP0       
+	00300: MIRP[srp0,md,rd,1] 
+	00301: RTDG       
+	00302: SRP2       
+	00303: IP         
+	00304: MDAP[rd]   
+	00305: RTG        
+	00306: SVTCA[x-axis] 
+	00307: SRP0       
+	00308: MIRP[srp0,nmd,nrd,1] 
+	00309: MDAP[rd]   
+	00310: MIRP[srp0,nmd,rd,0] 
+	00311: MDRP[nrp0,nmd,rd,0] 
+	00312: SVTCA[y-axis] 
+	00313: SFVTL[=p1,p2] 
+	00314: SRP0       
+	00315: MIRP[srp0,md,rd,1] 
+	00316: RTDG       
+	00317: SRP2       
+	00318: IP         
+	00319: MDAP[rd]   
+	00320: RTG        
+	00321: SVTCA[x-axis] 
+	00322: SRP0       
+	00323: MIRP[srp0,nmd,nrd,1] 
+	00324: DELTAP1    
+	00325: MDAP[rd]   
+	00326: MIRP[srp0,nmd,rd,0] 
+	00327: MDRP[nrp0,nmd,rd,0] 
+	00328: SVTCA[y-axis] 
+	00329: SFVTL[=p1,p2] 
+	00330: SRP0       
+	00331: MIRP[srp0,md,rd,1] 
+	00332: RTDG       
+	00333: SRP2       
+	00334: IP         
+	00335: MDAP[rd]   
+	00336: RTG        
+	00337: SVTCA[x-axis] 
+	00338: SRP0       
+	00339: MIRP[srp0,nmd,nrd,1] 
+	00340: DELTAP1    
+	00341: MDAP[rd]   
+	00342: MIRP[srp0,nmd,rd,0] 
+	00343: MDRP[nrp0,nmd,rd,0] 
+	00344: IUP[y]     
+	00345: IUP[x]     
+	00346: SVTCA[x-axis] 
+	00347: DELTAP2    
+	00348: DELTAP1    
+	00349: SVTCA[y-axis] 
+	00350: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:                                      On
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual                               On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short On
+	 18:                                      On
+	 19:  YDual XDual                 X-Short On
+	 20:                                      On
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual                               On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   688,     0)  ->  Abs (   688,     0)
+	  1: Rel (  -142,     0)  ->  Abs (   546,     0)
+	  2: Rel (  -345,   781)  ->  Abs (   201,   781)
+	  3: Rel (   -86,     0)  ->  Abs (   115,   781)
+	  4: Rel (   -30,     0)  ->  Abs (    85,   781)
+	  5: Rel (   -26,    24)  ->  Abs (    59,   805)
+	  6: Rel (     0,    19)  ->  Abs (    59,   824)
+	  7: Rel (     0,    18)  ->  Abs (    59,   842)
+	  8: Rel (    26,    24)  ->  Abs (    85,   866)
+	  9: Rel (    30,     0)  ->  Abs (   115,   866)
+	 10: Rel (   315,     0)  ->  Abs (   430,   866)
+	 11: Rel (    30,     0)  ->  Abs (   460,   866)
+	 12: Rel (    26,   -24)  ->  Abs (   486,   842)
+	 13: Rel (     0,   -19)  ->  Abs (   486,   823)
+	 14: Rel (     0,   -18)  ->  Abs (   486,   805)
+	 15: Rel (   -26,   -24)  ->  Abs (   460,   781)
+	 16: Rel (   -30,     0)  ->  Abs (   430,   781)
+	 17: Rel (  -139,     0)  ->  Abs (   291,   781)
+	 18: Rel (   308,  -697)  ->  Abs (   599,    84)
+	 19: Rel (    37,     0)  ->  Abs (   636,    84)
+	 20: Rel (   302,   697)  ->  Abs (   938,   781)
+	 21: Rel (  -140,     0)  ->  Abs (   798,   781)
+	 22: Rel (   -30,     0)  ->  Abs (   768,   781)
+	 23: Rel (   -26,    24)  ->  Abs (   742,   805)
+	 24: Rel (     0,    19)  ->  Abs (   742,   824)
+	 25: Rel (     0,    18)  ->  Abs (   742,   842)
+	 26: Rel (    26,    24)  ->  Abs (   768,   866)
+	 27: Rel (    30,     0)  ->  Abs (   798,   866)
+	 28: Rel (   316,     0)  ->  Abs (  1114,   866)
+	 29: Rel (    31,     0)  ->  Abs (  1145,   866)
+	 30: Rel (    25,   -24)  ->  Abs (  1170,   842)
+	 31: Rel (     0,   -19)  ->  Abs (  1170,   823)
+	 32: Rel (     0,   -18)  ->  Abs (  1170,   805)
+	 33: Rel (   -25,   -24)  ->  Abs (  1145,   781)
+	 34: Rel (   -31,     0)  ->  Abs (  1114,   781)
+	 35: Rel (   -85,     0)  ->  Abs (  1029,   781)
+
+	Glyph  90: off = 0x000081DC, len = 934
+	  numberOfContours:	1
+	  xMin:			56
+	  yMin:			-1
+	  xMax:			1172
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  40
+
+	  Length of Instructions:	812
+	00000: NPUSHB     (165):    40    22    39    23   134     3   170    22   165    23 
+	                           184     2   185    22   180    23     8     0     2    16 
+	                             2   127    22   143    22   175    22   190    22   223 
+	                            22   254    22     8   160     2   176     2   207     2 
+	                             3     8     4     8    21    24     4    24    21    40 
+	                             2    41     4    40    21    39    23    56     4    56 
+	                            21    72     4    72    21    87     4    87    20    88 
+	                            21    88    25    88    40   102     1   107     4   104 
+	                            21   103    23   103    25   103    40   123     4   120 
+	                            21   152    22   150    23   166     2   171     4   168 
+	                            21   160    23   181     2   187     4   184    21   176 
+	                            23   183    25   183    40   201    22   199    23   219 
+	                            22   212    23   233    22   228    23    43    11    22 
+	                            27    22    43     2    43    22    43    23   135    25 
+	                           135    40   172    22   187    22   198     5   198    20 
+	                           220    22   232     1   232    23   248     2   251    22 
+	                           248    23    17    13    19 
+	00167: PUSHW[1]            686 
+	00170: NPUSHB      (14):    16    16    47    20    16    16    19    20    34    13 
+	                            20    21    33    39 
+	00186: PUSHW[1]            686 
+	00189: NPUSHB      (44):   112    36     1     0    36    32    36    64    36     3 
+	                           240    36     1     0    36   160    36   208    36     3 
+	                           112    36   128    36     2    16    36    80    36     2 
+	                            36    36   153    40    36    36    39    40    34    33 
+	                            40     0    12     6 
+	00235: PUSHW[1]            686 
+	00238: NPUSHB      (41):    95     9   127     9   143     9     3    15     9    31 
+	                             9    79     9     3   239     9     1   175     9   191 
+	                             9   223     9     3    15     9     1     9     9   153 
+	                             5     9     9     6     5    34    12     5     4    32 
+	                            26 
+	00281: PUSHW[1]            686 
+	00284: NPUSHB      (17):    29    29    47    25    29    29    26    25    34    32 
+	                            25    24   149     2    22    23    32 
+	00303: PUSHW[1]           -182 
+	00306: NPUSHB      (50):    21     4     3    32    20     5     4     4    32    21 
+	                            20    20    21    21    20    40     0     0    32    24 
+	                            25    20    24    24    25     2     1     2     3     1 
+	                            32    24    23    20    24    24    23     2     3     2 
+	                             1     3    32    21    22    20    21    21    22     2 
+	00358: PUSHW[8]            480    23   372    24   480     1    21   480 
+	00375: NPUSHB      (35):     4     0    84     1     1     3    84     4    10    39 
+	                            59    33    26    59    32    19    59    13     6    59 
+	                            12    33    32    32    13    13    12     6   111    24 
+	                             1    24   195    25     1 
+	00412: PUSHW[1]            396 
+	00415: NPUSHB      (38):     0   147    25    64    48    53    25    64    40    43 
+	                            52    25    64    37    39    52    25    64    29    30 
+	                            52    25    64    25    26    52    25    64    15    17 
+	                            52    25    59    64    96    40     1    40 
+	00455: PUSHW[4]            423     2    23   395 
+	00464: NPUSHB      (23):    22    85     2    64    49    57    52     2    64    29 
+	                            30    52     2    64    25    26    52     2    64    16 
+	                            17    52     2 
+	00489: PUSHW[1]            423 
+	00492: NPUSHB      (13):     5    32    96    21     1    21   195    20     4   147 
+	                            20    59     5 
+	00507: PUSHW[1]            -64 
+	00510: PUSHB[3]             48    53     5 
+	00514: PUSHW[1]            -64 
+	00517: PUSHB[4]             56    57    52     5 
+	00522: PUSHW[1]            -64 
+	00525: PUSHB[3]             43    53     5 
+	00529: PUSHW[1]            -64 
+	00532: PUSHB[4]             37    39    52     5 
+	00537: PUSHW[1]            -64 
+	00540: PUSHB[4]             29    30    52     5 
+	00545: PUSHW[1]            -64 
+	00548: PUSHB[4]             16    17    52     5 
+	00553: PUSHW[1]            -64 
+	00556: PUSHB[4]             25    26    52     5 
+	00561: PUSHW[1]            -64 
+	00564: NPUSHB      (18):    22    23    52     5    64    21    53   127     5   143 
+	                             5     2     0     5    79     5     2     5 
+	00584: PUSHW[6]            482    41   293   289    24   356 
+	00597: SCANCTRL   
+	00598: CALL       
+	00599: SRP0       
+	00600: MIRP[srp0,nmd,rd,2] 
+	00601: DELTAP1    
+	00602: DELTAP1    
+	00603: CALL       
+	00604: CALL       
+	00605: CALL       
+	00606: CALL       
+	00607: CALL       
+	00608: CALL       
+	00609: CALL       
+	00610: CALL       
+	00611: CALL       
+	00612: MIRP[nrp0,md,rd,1] 
+	00613: MIRP[nrp0,nmd,rd,0] 
+	00614: RTHG       
+	00615: SRP0       
+	00616: MIRP[nrp0,nmd,rd,0] 
+	00617: DELTAP1    
+	00618: SMD        
+	00619: SRP0       
+	00620: MIRP[srp0,md,rd,1] 
+	00621: CALL       
+	00622: CALL       
+	00623: CALL       
+	00624: CALL       
+	00625: MIRP[srp0,md,rd,1] 
+	00626: RTG        
+	00627: MIRP[nrp0,nmd,rd,2] 
+	00628: RTHG       
+	00629: SRP0       
+	00630: MIRP[srp0,md,rd,1] 
+	00631: DELTAP1    
+	00632: SMD        
+	00633: RTG        
+	00634: MIRP[nrp0,md,rd,1] 
+	00635: CALL       
+	00636: CALL       
+	00637: CALL       
+	00638: CALL       
+	00639: CALL       
+	00640: CALL       
+	00641: MIRP[srp0,nmd,rd,0] 
+	00642: MIRP[nrp0,nmd,rd,2] 
+	00643: RTHG       
+	00644: SRP0       
+	00645: MIRP[nrp0,nmd,rd,0] 
+	00646: DELTAP1    
+	00647: SVTCA[y-axis] 
+	00648: RTG        
+	00649: MIAP[rd+ci] 
+	00650: ALIGNRP    
+	00651: SRP0       
+	00652: ALIGNRP    
+	00653: SRP0       
+	00654: ALIGNRP    
+	00655: SRP0       
+	00656: MIRP[nrp0,md,rd,1] 
+	00657: SRP0       
+	00658: MIRP[nrp0,md,rd,1] 
+	00659: SRP0       
+	00660: MIRP[nrp0,md,rd,1] 
+	00661: SRP0       
+	00662: MIRP[nrp0,md,rd,1] 
+	00663: MIAP[rd+ci] 
+	00664: MIRP[srp0,nmd,rd,0] 
+	00665: ALIGNRP    
+	00666: SRP0       
+	00667: MIRP[nrp0,nmd,rd,0] 
+	00668: SRP0       
+	00669: MIRP[nrp0,md,rd,1] 
+	00670: SRP0       
+	00671: MIRP[nrp0,md,rd,1] 
+	00672: MIRP[srp0,md,rd,1] 
+	00673: MIRP[nrp0,md,rd,1] 
+	00674: SDPVTL[1]  
+	00675: SFVTCA[x-axis] 
+	00676: MDAP[nrd]  
+	00677: CALL       
+	00678: SFVTL[=p1,p2] 
+	00679: RDTG       
+	00680: SRP0       
+	00681: MDRP[nrp0,nmd,rd,0] 
+	00682: SDPVTL[1]  
+	00683: SFVTCA[x-axis] 
+	00684: MDAP[nrd]  
+	00685: RTG        
+	00686: CALL       
+	00687: SFVTL[=p1,p2] 
+	00688: RDTG       
+	00689: SRP0       
+	00690: MDRP[nrp0,nmd,rd,0] 
+	00691: SDPVTL[1]  
+	00692: SFVTCA[x-axis] 
+	00693: MDAP[nrd]  
+	00694: RTG        
+	00695: CALL       
+	00696: RDTG       
+	00697: SRP0       
+	00698: MDRP[nrp0,nmd,rd,0] 
+	00699: SDPVTL[1]  
+	00700: MDAP[nrd]  
+	00701: RTG        
+	00702: CALL       
+	00703: SDPVTL[1]  
+	00704: RDTG       
+	00705: MDRP[nrp0,nmd,rd,0] 
+	00706: CALL       
+	00707: CALL       
+	00708: RTG        
+	00709: SVTCA[y-axis] 
+	00710: SFVTL[=p1,p2] 
+	00711: SRP0       
+	00712: MIRP[srp0,md,rd,1] 
+	00713: RTDG       
+	00714: SRP2       
+	00715: IP         
+	00716: MDAP[rd]   
+	00717: RTG        
+	00718: SVTCA[x-axis] 
+	00719: SRP0       
+	00720: MIRP[srp0,nmd,nrd,1] 
+	00721: MDAP[rd]   
+	00722: MIRP[srp0,nmd,rd,0] 
+	00723: MDRP[nrp0,nmd,rd,0] 
+	00724: SVTCA[y-axis] 
+	00725: SFVTL[=p1,p2] 
+	00726: SRP0       
+	00727: MIRP[srp0,md,rd,1] 
+	00728: RTDG       
+	00729: SRP2       
+	00730: IP         
+	00731: MDAP[rd]   
+	00732: RTG        
+	00733: SVTCA[x-axis] 
+	00734: SRP0       
+	00735: MIRP[srp0,nmd,nrd,1] 
+	00736: MDAP[rd]   
+	00737: DELTAP1    
+	00738: DELTAP1    
+	00739: DELTAP1    
+	00740: DELTAP2    
+	00741: DELTAP2    
+	00742: MIRP[srp0,nmd,rd,0] 
+	00743: MDRP[nrp0,nmd,rd,0] 
+	00744: SVTCA[y-axis] 
+	00745: SFVTL[=p1,p2] 
+	00746: SRP0       
+	00747: MIRP[srp0,md,rd,1] 
+	00748: RTDG       
+	00749: SRP2       
+	00750: IP         
+	00751: MDAP[rd]   
+	00752: RTG        
+	00753: SVTCA[x-axis] 
+	00754: SRP0       
+	00755: MIRP[srp0,nmd,nrd,1] 
+	00756: MDAP[rd]   
+	00757: DELTAP1    
+	00758: DELTAP1    
+	00759: DELTAP1    
+	00760: DELTAP1    
+	00761: DELTAP2    
+	00762: DELTAP2    
+	00763: MIRP[srp0,nmd,rd,0] 
+	00764: MDRP[nrp0,nmd,rd,0] 
+	00765: SVTCA[y-axis] 
+	00766: SFVTL[=p1,p2] 
+	00767: SRP0       
+	00768: MIRP[srp0,md,rd,1] 
+	00769: RTDG       
+	00770: SRP2       
+	00771: IP         
+	00772: MDAP[rd]   
+	00773: RTG        
+	00774: SVTCA[x-axis] 
+	00775: SRP0       
+	00776: MIRP[srp0,nmd,nrd,1] 
+	00777: MDAP[rd]   
+	00778: MIRP[srp0,nmd,rd,0] 
+	00779: MDRP[nrp0,nmd,rd,0] 
+	00780: IUP[y]     
+	00781: IUP[x]     
+	00782: SVTCA[x-axis] 
+	00783: MPPEM      
+	00784: PUSHB[1]             11 
+	00786: GTEQ       
+	00787: MPPEM      
+	00788: PUSHB[1]             36 
+	00790: LTEQ       
+	00791: AND        
+	00792: IF         
+	00793: PUSHB[6]             40     8    25     8     4    16 
+	00800: SHPIX      
+	00801: SHPIX      
+	00802: SHPIX      
+	00803: EIF        
+	00804: SVTCA[x-axis] 
+	00805: DELTAP1    
+	00806: DELTAP2    
+	00807: SVTCA[y-axis] 
+	00808: DELTAP2    
+	00809: DELTAP1    
+	00810: SVTCA[x-axis] 
+	00811: DELTAP3    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:                      Y-Short X-Short On
+	  2:                              X-Short On
+	  3:                              X-Short On
+	  4:  YDual               Y-Short X-Short On
+	  5:                              X-Short On
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short On
+	 21:        XDual                 X-Short On
+	 22:        XDual                 X-Short On
+	 23:  YDual XDual                 X-Short On
+	 24:        XDual                 X-Short On
+	 25:        XDual                 X-Short On
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   904,     0)  ->  Abs (   904,     0)
+	  1: Rel (  -104,    -1)  ->  Abs (   800,    -1)
+	  2: Rel (  -185,   540)  ->  Abs (   615,   539)
+	  3: Rel (  -184,  -540)  ->  Abs (   431,    -1)
+	  4: Rel (  -104,     1)  ->  Abs (   327,     0)
+	  5: Rel (  -174,   781)  ->  Abs (   153,   781)
+	  6: Rel (   -41,     0)  ->  Abs (   112,   781)
+	  7: Rel (   -30,     0)  ->  Abs (    82,   781)
+	  8: Rel (   -26,    24)  ->  Abs (    56,   805)
+	  9: Rel (     0,    19)  ->  Abs (    56,   824)
+	 10: Rel (     0,    18)  ->  Abs (    56,   842)
+	 11: Rel (    26,    24)  ->  Abs (    82,   866)
+	 12: Rel (    30,     0)  ->  Abs (   112,   866)
+	 13: Rel (   231,     0)  ->  Abs (   343,   866)
+	 14: Rel (    30,     0)  ->  Abs (   373,   866)
+	 15: Rel (    26,   -24)  ->  Abs (   399,   842)
+	 16: Rel (     0,   -19)  ->  Abs (   399,   823)
+	 17: Rel (     0,   -18)  ->  Abs (   399,   805)
+	 18: Rel (   -26,   -24)  ->  Abs (   373,   781)
+	 19: Rel (   -30,     0)  ->  Abs (   343,   781)
+	 20: Rel (  -107,     0)  ->  Abs (   236,   781)
+	 21: Rel (   149,  -666)  ->  Abs (   385,   115)
+	 22: Rel (   179,   532)  ->  Abs (   564,   647)
+	 23: Rel (   100,     0)  ->  Abs (   664,   647)
+	 24: Rel (   184,  -532)  ->  Abs (   848,   115)
+	 25: Rel (   143,   666)  ->  Abs (   991,   781)
+	 26: Rel (  -106,     0)  ->  Abs (   885,   781)
+	 27: Rel (   -30,     0)  ->  Abs (   855,   781)
+	 28: Rel (   -27,    24)  ->  Abs (   828,   805)
+	 29: Rel (     0,    19)  ->  Abs (   828,   824)
+	 30: Rel (     0,    18)  ->  Abs (   828,   842)
+	 31: Rel (    26,    24)  ->  Abs (   854,   866)
+	 32: Rel (    31,     0)  ->  Abs (   885,   866)
+	 33: Rel (   230,     0)  ->  Abs (  1115,   866)
+	 34: Rel (    31,     0)  ->  Abs (  1146,   866)
+	 35: Rel (    26,   -24)  ->  Abs (  1172,   842)
+	 36: Rel (     0,   -19)  ->  Abs (  1172,   823)
+	 37: Rel (     0,   -18)  ->  Abs (  1172,   805)
+	 38: Rel (   -26,   -24)  ->  Abs (  1146,   781)
+	 39: Rel (   -31,     0)  ->  Abs (  1115,   781)
+	 40: Rel (   -40,     0)  ->  Abs (  1075,   781)
+
+	Glyph  91: off = 0x00008582, len = 854
+	  numberOfContours:	1
+	  xMin:			101
+	  yMin:			0
+	  xMax:			1130
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  67
+
+	  Length of Instructions:	658
+	00000: NPUSHB     (149):    31    17    31    18     2    18    56    17    87    17 
+	                             2    27     0     1    16     0    31    34    96     1 
+	                           109    18   111    33   111    35    96    67   195     1 
+	                           195    16   206    18   206    33   204    35   204    50 
+	                           194    52   194    67    15     8     0    24     0   152 
+	                            34     3     0    50     1    18    67    17    18    67 
+	                            35    16    34    35    16    33    52    51    50     1 
+	                            33    52    50    35    16    18    16    32     1    50 
+	                            20     1     1    50    52    67    18    18    18    32 
+	                            33    52    20    33    33    52     2    59     1    59 
+	                            15    59    16    59    10    19    59    18    59    33 
+	                            59    32    59    26    49    59    50    59    36    59 
+	                            35    59    42    66    59    67    59    53    59    52 
+	                            59    59    64    67    67    63    56    56    63    35 
+	                            35    39    46    46    39    63    89     5    52 
+	00151: PUSHW[1]            302 
+	00154: PUSHB[5]             32    67   154    63    16 
+	00160: PUSHW[1]            480 
+	00163: NPUSHB      (27):     1     1     5    12    33    33    22    12    12     5 
+	                             0    22     1    22    22    29     1   154    15     5 
+	                           111     5     2     5    26    69    50 
+	00192: PUSHW[1]            480 
+	00195: PUSHB[4]             35   154    39    18 
+	00200: PUSHW[1]            480 
+	00203: NPUSHB      (27):    33   154    39    89    15    29    47    29    79    29 
+	                            95    29   111    29     5    29    25    68    10    10 
+	                            26    10    42     6    59     6   230 
+	00232: PUSHW[3]            263    24   300 
+	00239: SCANCTRL   
+	00240: CALL       
+	00241: SVTCA[y-axis] 
+	00242: MIAP[rd+ci] 
+	00243: MIAP[rd+ci] 
+	00244: MIAP[rd+ci] 
+	00245: MIAP[rd+ci] 
+	00246: SVTCA[x-axis] 
+	00247: FLIPOFF    
+	00248: SRP0       
+	00249: MIRP[srp0,nmd,rd,0] 
+	00250: DELTAP1    
+	00251: FLIPON     
+	00252: MIRP[nrp0,nmd,rd,0] 
+	00253: RTHG       
+	00254: MIRP[srp0,nmd,rd,0] 
+	00255: RTG        
+	00256: MIRP[nrp0,md,rd,1] 
+	00257: RTHG       
+	00258: SRP0       
+	00259: MIRP[srp0,nmd,rd,0] 
+	00260: RTG        
+	00261: MIRP[nrp0,md,rd,1] 
+	00262: FLIPOFF    
+	00263: SRP0       
+	00264: MIRP[srp0,nmd,rd,2] 
+	00265: DELTAP1    
+	00266: RTHG       
+	00267: FLIPON     
+	00268: MIRP[nrp0,nmd,rd,0] 
+	00269: RTG        
+	00270: SRP2       
+	00271: IP         
+	00272: MDAP[rd]   
+	00273: DELTAP1    
+	00274: SRP1       
+	00275: IP         
+	00276: MDAP[rd]   
+	00277: RTHG       
+	00278: SRP1       
+	00279: IP         
+	00280: MDAP[rd]   
+	00281: SRP1       
+	00282: SRP2       
+	00283: IP         
+	00284: MDAP[rd]   
+	00285: RTG        
+	00286: MIRP[nrp0,md,rd,1] 
+	00287: RTHG       
+	00288: SRP0       
+	00289: MIRP[nrp0,nmd,rd,0] 
+	00290: SMD        
+	00291: MIRP[nrp0,md,rd,1] 
+	00292: RTG        
+	00293: SRP0       
+	00294: MIRP[nrp0,nmd,rd,0] 
+	00295: SRP1       
+	00296: IP         
+	00297: MDAP[rd]   
+	00298: RTHG       
+	00299: SRP2       
+	00300: IP         
+	00301: MDAP[rd]   
+	00302: RTG        
+	00303: SRP1       
+	00304: IP         
+	00305: MDAP[rd]   
+	00306: RTHG       
+	00307: SRP2       
+	00308: IP         
+	00309: MDAP[rd]   
+	00310: SMD        
+	00311: SVTCA[y-axis] 
+	00312: RTG        
+	00313: SRP0       
+	00314: MIRP[nrp0,md,rd,1] 
+	00315: MIRP[nrp0,md,rd,1] 
+	00316: MIRP[nrp0,md,rd,1] 
+	00317: MIRP[nrp0,md,rd,1] 
+	00318: SRP0       
+	00319: MIRP[nrp0,md,rd,1] 
+	00320: MIRP[nrp0,md,rd,1] 
+	00321: MIRP[nrp0,md,rd,1] 
+	00322: MIRP[nrp0,md,rd,1] 
+	00323: SRP0       
+	00324: MIRP[nrp0,md,rd,1] 
+	00325: MIRP[nrp0,md,rd,1] 
+	00326: MIRP[nrp0,md,rd,1] 
+	00327: MIRP[nrp0,md,rd,1] 
+	00328: SRP0       
+	00329: MIRP[nrp0,md,rd,1] 
+	00330: MIRP[nrp0,md,rd,1] 
+	00331: MIRP[nrp0,md,rd,1] 
+	00332: MIRP[nrp0,md,rd,1] 
+	00333: SFVTCA[x-axis] 
+	00334: SDPVTL[1]  
+	00335: MDAP[nrd]  
+	00336: CALL       
+	00337: RS         
+	00338: NOT        
+	00339: IF         
+	00340: PUSHW[2]             18   -54 
+	00345: PUSHB[4]             25    50    63    18 
+	00350: PUSHW[1]            -44 
+	00353: PUSHB[4]             23    45    63    18 
+	00358: PUSHW[1]            -84 
+	00361: PUSHB[4]             20    40    63    18 
+	00366: PUSHW[1]            -10 
+	00369: PUSHB[4]             18    35    63    18 
+	00374: PUSHW[1]            -30 
+	00377: PUSHB[4]             14    23    63    18 
+	00382: PUSHW[1]            -34 
+	00385: PUSHB[3]             27    60    62 
+	00389: CALL       
+	00390: CALL       
+	00391: CALL       
+	00392: CALL       
+	00393: CALL       
+	00394: CALL       
+	00395: EIF        
+	00396: SDPVTL[1]  
+	00397: RDTG       
+	00398: MDRP[nrp0,nmd,rd,0] 
+	00399: SDPVTL[1]  
+	00400: MDAP[nrd]  
+	00401: RTG        
+	00402: CALL       
+	00403: RS         
+	00404: NOT        
+	00405: IF         
+	00406: NPUSHB      (35):    16    54    25    50    63    16    44    23    45    63 
+	                            16    64    20    40    63    16    10    18    35    63 
+	                            16    30    14    23    63    16    30    13    22    63 
+	                            16    34    27    60    62 
+	00443: CALL       
+	00444: CALL       
+	00445: CALL       
+	00446: CALL       
+	00447: CALL       
+	00448: CALL       
+	00449: CALL       
+	00450: EIF        
+	00451: SDPVTL[1]  
+	00452: RDTG       
+	00453: MDRP[nrp0,nmd,rd,0] 
+	00454: ISECT      
+	00455: ISECT      
+	00456: ISECT      
+	00457: ISECT      
+	00458: PUSHB[2]              6     2 
+	00461: RS         
+	00462: EQ         
+	00463: IF         
+	00464: PUSHB[6]             17    24    13    15    52    51 
+	00471: PUSHW[1]            -24 
+	00474: PUSHB[3]             13    15    52 
+	00478: SVTCA[y-axis] 
+	00479: CALL       
+	00480: CALL       
+	00481: EIF        
+	00482: IUP[y]     
+	00483: IUP[x]     
+	00484: SVTCA[x-axis] 
+	00485: DELTAP2    
+	00486: DELTAP1    
+	00487: SVTCA[y-axis] 
+	00488: DELTAP1    
+	00489: DELTAP2    
+	00490: RS         
+	00491: NOT        
+	00492: IF         
+	00493: PUSHW[2]             51   -30 
+	00498: NPUSHB       (9):    18    11    63    17    30    11    18    63    51 
+	00509: PUSHW[1]            -30 
+	00512: NPUSHB      (74):    11    18    63    17    10    22    23    62    17    10 
+	                            17    18    62    67    65    30    18    63     1    65 
+	                            30    18    63    67    55    28    17    63     1    55 
+	                            28    17    63    67    55    27    16    63     1    55 
+	                            27    16    63    67    20    25    15    63     1    20 
+	                            25    15    63    33    10    29    32    62    52    15 
+	                            29    32    62    50    20    25    27    62    16    20 
+	                            16    21    63    50 
+	00588: PUSHW[1]            -20 
+	00591: PUSHB[4]             16    21    63    18 
+	00596: PUSHW[1]            -20 
+	00599: PUSHB[4]             16    21    63    67 
+	00604: PUSHW[1]            -60 
+	00607: PUSHB[4]             16    20    62     1 
+	00612: PUSHW[1]            -60 
+	00615: NPUSHB      (13):    16    20    62    35    60    16    20    62    33    60 
+	                            16    20    62 
+	00630: SVTCA[x-axis] 
+	00631: CALL       
+	00632: CALL       
+	00633: CALL       
+	00634: CALL       
+	00635: CALL       
+	00636: CALL       
+	00637: CALL       
+	00638: CALL       
+	00639: CALL       
+	00640: CALL       
+	00641: CALL       
+	00642: CALL       
+	00643: CALL       
+	00644: CALL       
+	00645: CALL       
+	00646: CALL       
+	00647: CALL       
+	00648: CALL       
+	00649: SVTCA[y-axis] 
+	00650: CALL       
+	00651: CALL       
+	00652: CALL       
+	00653: CALL       
+	00654: CALL       
+	00655: EIF        
+	00656: SVTCA[y-axis] 
+	00657: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:                                      On
+	 18:                                      On
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                               On
+	 27:  YDual                       X-Short Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:                                      On
+	 35:                                      On
+	 36:  YDual                       X-Short Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:        XDual         Y-Short X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual         Y-Short         Off
+	 48:                      Y-Short X-Short Off
+	 49:  YDual                       X-Short On
+	 50:  YDual                       X-Short On
+	 51:                                      On
+	 52:                                      On
+	 53:  YDual                       X-Short On
+	 54:  YDual                       X-Short Off
+	 55:  YDual               Y-Short X-Short Off
+	 56:  YDual XDual         Y-Short         On
+	 57:  YDual XDual         Y-Short         Off
+	 58:  YDual XDual         Y-Short X-Short Off
+	 59:  YDual XDual                 X-Short On
+	 60:  YDual XDual                 X-Short On
+	 61:  YDual XDual                 X-Short Off
+	 62:        XDual         Y-Short X-Short Off
+	 63:        XDual         Y-Short         On
+	 64:        XDual         Y-Short         Off
+	 65:                      Y-Short X-Short Off
+	 66:                      Y-Short X-Short Off
+	 67:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   672,   453)  ->  Abs (   672,   453)
+	  1: Rel (   385,  -369)  ->  Abs (  1057,    84)
+	  2: Rel (    38,     0)  ->  Abs (  1095,    84)
+	  3: Rel (    20,    -7)  ->  Abs (  1115,    77)
+	  4: Rel (    15,   -22)  ->  Abs (  1130,    55)
+	  5: Rel (     0,   -13)  ->  Abs (  1130,    42)
+	  6: Rel (     0,   -18)  ->  Abs (  1130,    24)
+	  7: Rel (   -26,   -24)  ->  Abs (  1104,     0)
+	  8: Rel (   -31,     0)  ->  Abs (  1073,     0)
+	  9: Rel (  -270,     0)  ->  Abs (   803,     0)
+	 10: Rel (   -31,     0)  ->  Abs (   772,     0)
+	 11: Rel (   -26,    24)  ->  Abs (   746,    24)
+	 12: Rel (     0,    18)  ->  Abs (   746,    42)
+	 13: Rel (     0,    19)  ->  Abs (   746,    61)
+	 14: Rel (    26,    23)  ->  Abs (   772,    84)
+	 15: Rel (    31,     0)  ->  Abs (   803,    84)
+	 16: Rel (   139,     0)  ->  Abs (   942,    84)
+	 17: Rel (  -327,   313)  ->  Abs (   615,   397)
+	 18: Rel (  -325,  -313)  ->  Abs (   290,    84)
+	 19: Rel (   140,     0)  ->  Abs (   430,    84)
+	 20: Rel (    30,     0)  ->  Abs (   460,    84)
+	 21: Rel (    26,   -23)  ->  Abs (   486,    61)
+	 22: Rel (     0,   -19)  ->  Abs (   486,    42)
+	 23: Rel (     0,   -18)  ->  Abs (   486,    24)
+	 24: Rel (   -26,   -24)  ->  Abs (   460,     0)
+	 25: Rel (   -30,     0)  ->  Abs (   430,     0)
+	 26: Rel (  -273,     0)  ->  Abs (   157,     0)
+	 27: Rel (   -30,     0)  ->  Abs (   127,     0)
+	 28: Rel (   -26,    24)  ->  Abs (   101,    24)
+	 29: Rel (     0,    18)  ->  Abs (   101,    42)
+	 30: Rel (     0,    13)  ->  Abs (   101,    55)
+	 31: Rel (    15,    22)  ->  Abs (   116,    77)
+	 32: Rel (    19,     7)  ->  Abs (   135,    84)
+	 33: Rel (    38,     0)  ->  Abs (   173,    84)
+	 34: Rel (   385,   369)  ->  Abs (   558,   453)
+	 35: Rel (  -342,   328)  ->  Abs (   216,   781)
+	 36: Rel (   -36,     0)  ->  Abs (   180,   781)
+	 37: Rel (   -19,     8)  ->  Abs (   161,   789)
+	 38: Rel (   -15,    22)  ->  Abs (   146,   811)
+	 39: Rel (     0,    13)  ->  Abs (   146,   824)
+	 40: Rel (     0,    18)  ->  Abs (   146,   842)
+	 41: Rel (    26,    24)  ->  Abs (   172,   866)
+	 42: Rel (    31,     0)  ->  Abs (   203,   866)
+	 43: Rel (   229,     0)  ->  Abs (   432,   866)
+	 44: Rel (    31,     0)  ->  Abs (   463,   866)
+	 45: Rel (    25,   -24)  ->  Abs (   488,   842)
+	 46: Rel (     0,   -19)  ->  Abs (   488,   823)
+	 47: Rel (     0,   -18)  ->  Abs (   488,   805)
+	 48: Rel (   -25,   -24)  ->  Abs (   463,   781)
+	 49: Rel (   -31,     0)  ->  Abs (   432,   781)
+	 50: Rel (  -100,     0)  ->  Abs (   332,   781)
+	 51: Rel (   283,  -273)  ->  Abs (   615,   508)
+	 52: Rel (   285,   273)  ->  Abs (   900,   781)
+	 53: Rel (  -100,     0)  ->  Abs (   800,   781)
+	 54: Rel (   -30,     0)  ->  Abs (   770,   781)
+	 55: Rel (   -27,    24)  ->  Abs (   743,   805)
+	 56: Rel (     0,    19)  ->  Abs (   743,   824)
+	 57: Rel (     0,    18)  ->  Abs (   743,   842)
+	 58: Rel (    26,    24)  ->  Abs (   769,   866)
+	 59: Rel (    31,     0)  ->  Abs (   800,   866)
+	 60: Rel (   229,     0)  ->  Abs (  1029,   866)
+	 61: Rel (    30,     0)  ->  Abs (  1059,   866)
+	 62: Rel (    26,   -24)  ->  Abs (  1085,   842)
+	 63: Rel (     0,   -19)  ->  Abs (  1085,   823)
+	 64: Rel (     0,   -12)  ->  Abs (  1085,   811)
+	 65: Rel (   -15,   -22)  ->  Abs (  1070,   789)
+	 66: Rel (   -19,    -8)  ->  Abs (  1051,   781)
+	 67: Rel (   -36,     0)  ->  Abs (  1015,   781)
+
+	Glyph  92: off = 0x000088D8, len = 590
+	  numberOfContours:	1
+	  xMin:			149
+	  yMin:			-386
+	  xMax:			1176
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  50
+
+	  Length of Instructions:	444
+	00000: NPUSHB      (63):    24     0    24    18    24    34    43    13    33    23 
+	                            53     1    53    17    79    13    64    23   251    19 
+	                           249    34    11     9    19    75    19    74    34   104 
+	                             1   104    17   120    19   120    34   136    19   136 
+	                            34   185    17   189    19   186    34   198    34   215 
+	                            34    14     0     0     1    18    50    18    17    50 
+	                            19    10    16 
+	00065: PUSHW[1]            686 
+	00068: NPUSHB      (30):    13    13    47    17    13    13    16    17    34    10 
+	                            17    18    27    34    30   128    30     1    30   153 
+	                            34    30    30    34    34    27    34    35    43    49 
+	00100: PUSHW[1]            686 
+	00103: PUSHB[5]             46    48    46     1    46 
+	00109: PUSHW[1]            279 
+	00112: NPUSHB      (11):    50    46    46    49    50    34    43    50    19     9 
+	                             2 
+	00125: PUSHW[1]            686 
+	00128: NPUSHB      (14):     5     5   153     1     5     5     2     1    34     9 
+	                             1     0    26    20 
+	00144: PUSHW[1]            686 
+	00147: NPUSHB      (17):    23    48    23     1    23    47    19    23    23    20 
+	                            19    34    26    19    50    42    36 
+	00166: PUSHW[1]            686 
+	00169: NPUSHB     (109):    39    39    47    35    39    39    36    35    34    42 
+	                            35    34    19    50    50    32    35    34    20    35 
+	                            35    34    17    18    18    32     0     1    20     0 
+	                            18    19     0     1    50    35    34    19    18    17 
+	                             1     0     8    30     5    18     9     0    10    34 
+	                            59    27    27    20    59    26    26    16    59    10 
+	                             2    59    10     9     6    36    59    42    49    59 
+	                            43    43    42    14     0    30    80    30     2   112 
+	                            30   224    30   240    30     3    30    26    52    80 
+	                             5     1     0     5    16     5    32     5   112     5 
+	                           224     5   240     5     6     5    25    51    42 
+	00280: PUSHW[3]            289    24   300 
+	00287: SCANCTRL   
+	00288: CALL       
+	00289: FLIPOFF    
+	00290: SRP0       
+	00291: MIRP[nrp0,nmd,rd,0] 
+	00292: DELTAP1    
+	00293: DELTAP2    
+	00294: SRP0       
+	00295: MIRP[nrp0,nmd,rd,2] 
+	00296: DELTAP1    
+	00297: DELTAP2    
+	00298: SVTCA[y-axis] 
+	00299: MIAP[rd+ci] 
+	00300: ALIGNRP    
+	00301: FLIPON     
+	00302: SRP0       
+	00303: MIRP[nrp0,md,rd,1] 
+	00304: SRP0       
+	00305: MIRP[nrp0,md,rd,1] 
+	00306: MIAP[rd+ci] 
+	00307: ALIGNRP    
+	00308: MIRP[nrp0,md,rd,1] 
+	00309: SRP0       
+	00310: MIRP[nrp0,md,rd,1] 
+	00311: ALIGNRP    
+	00312: SRP0       
+	00313: MIRP[nrp0,md,rd,1] 
+	00314: ALIGNRP    
+	00315: SRP0       
+	00316: MIRP[nrp0,md,rd,1] 
+	00317: MIAP[rd+ci] 
+	00318: SRP2       
+	00319: IP         
+	00320: SVTCA[x-axis] 
+	00321: SRP1       
+	00322: SRP2       
+	00323: SLOOP      
+	00324: IP         
+	00325: SDPVTL[1]  
+	00326: SFVTL[=p1,p2] 
+	00327: MDAP[nrd]  
+	00328: CALL       
+	00329: SFVTCA[x-axis] 
+	00330: RDTG       
+	00331: SRP0       
+	00332: MDRP[nrp0,nmd,rd,0] 
+	00333: SDPVTL[1]  
+	00334: MDAP[nrd]  
+	00335: RTG        
+	00336: CALL       
+	00337: RDTG       
+	00338: SRP0       
+	00339: MDRP[nrp0,nmd,rd,0] 
+	00340: RTG        
+	00341: SVTCA[y-axis] 
+	00342: SFVTL[=p1,p2] 
+	00343: SRP0       
+	00344: MIRP[srp0,md,rd,1] 
+	00345: RTDG       
+	00346: SRP2       
+	00347: IP         
+	00348: MDAP[rd]   
+	00349: RTG        
+	00350: SVTCA[x-axis] 
+	00351: SRP0       
+	00352: MIRP[srp0,nmd,nrd,1] 
+	00353: MDAP[rd]   
+	00354: MIRP[srp0,nmd,rd,0] 
+	00355: MDRP[nrp0,nmd,rd,0] 
+	00356: SVTCA[y-axis] 
+	00357: SFVTL[=p1,p2] 
+	00358: SRP0       
+	00359: MIRP[srp0,md,rd,1] 
+	00360: RTDG       
+	00361: SRP2       
+	00362: IP         
+	00363: MDAP[rd]   
+	00364: RTG        
+	00365: SVTCA[x-axis] 
+	00366: SRP0       
+	00367: MIRP[srp0,nmd,nrd,1] 
+	00368: DELTAP1    
+	00369: MDAP[rd]   
+	00370: MIRP[srp0,nmd,rd,0] 
+	00371: MDRP[nrp0,nmd,rd,0] 
+	00372: SVTCA[y-axis] 
+	00373: SFVTL[=p1,p2] 
+	00374: SRP0       
+	00375: MIRP[srp0,md,rd,1] 
+	00376: RTDG       
+	00377: SRP2       
+	00378: IP         
+	00379: MDAP[rd]   
+	00380: RTG        
+	00381: SVTCA[x-axis] 
+	00382: SRP0       
+	00383: MIRP[srp0,nmd,nrd,1] 
+	00384: MDAP[rd]   
+	00385: MIRP[srp0,nmd,rd,0] 
+	00386: MDRP[nrp0,nmd,rd,0] 
+	00387: SVTCA[y-axis] 
+	00388: SFVTL[=p1,p2] 
+	00389: SRP0       
+	00390: MIRP[srp0,md,rd,1] 
+	00391: RTDG       
+	00392: SRP2       
+	00393: IP         
+	00394: MDAP[rd]   
+	00395: RTG        
+	00396: SVTCA[x-axis] 
+	00397: SRP0       
+	00398: MIRP[srp0,nmd,nrd,1] 
+	00399: DELTAP1    
+	00400: MDAP[rd]   
+	00401: MIRP[srp0,nmd,rd,0] 
+	00402: MDRP[nrp0,nmd,rd,0] 
+	00403: SVTCA[y-axis] 
+	00404: SFVTL[=p1,p2] 
+	00405: SRP0       
+	00406: MIRP[srp0,md,rd,1] 
+	00407: RTDG       
+	00408: IP         
+	00409: MDAP[rd]   
+	00410: RTG        
+	00411: SVTCA[x-axis] 
+	00412: SRP0       
+	00413: MIRP[srp0,nmd,nrd,1] 
+	00414: DELTAP1    
+	00415: MDAP[rd]   
+	00416: SRP0       
+	00417: MDRP[nrp0,nmd,rd,0] 
+	00418: SVTCA[y-axis] 
+	00419: SFVTL[=p1,p2] 
+	00420: SRP0       
+	00421: MIRP[srp0,md,rd,1] 
+	00422: RTDG       
+	00423: SRP2       
+	00424: IP         
+	00425: MDAP[rd]   
+	00426: RTG        
+	00427: SVTCA[x-axis] 
+	00428: SRP0       
+	00429: MIRP[srp0,nmd,nrd,1] 
+	00430: MDAP[rd]   
+	00431: MIRP[srp0,nmd,rd,0] 
+	00432: MDRP[nrp0,nmd,rd,0] 
+	00433: SPVTL[p1,p2] 
+	00434: SFVTL[=p1,p2] 
+	00435: SRP0       
+	00436: ALIGNRP    
+	00437: SFVTL[=p1,p2] 
+	00438: ALIGNRP    
+	00439: IUP[y]     
+	00440: IUP[x]     
+	00441: SVTCA[x-axis] 
+	00442: DELTAP2    
+	00443: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:                                      On
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short On
+	 18:                                      On
+	 19:                                      On
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:                      Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:                                      On
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:        XDual         Y-Short X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:                      Y-Short X-Short Off
+	 42:  YDual                       X-Short On
+	 43:  YDual                               On
+	 44:  YDual                       X-Short Off
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short         On
+	 47:  YDual XDual         Y-Short         Off
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   620,     0)  ->  Abs (   620,     0)
+	  1: Rel (  -390,   781)  ->  Abs (   230,   781)
+	  2: Rel (   -25,     0)  ->  Abs (   205,   781)
+	  3: Rel (   -30,     0)  ->  Abs (   175,   781)
+	  4: Rel (   -26,    24)  ->  Abs (   149,   805)
+	  5: Rel (     0,    18)  ->  Abs (   149,   823)
+	  6: Rel (     0,    13)  ->  Abs (   149,   836)
+	  7: Rel (    13,    21)  ->  Abs (   162,   857)
+	  8: Rel (    21,     9)  ->  Abs (   183,   866)
+	  9: Rel (    22,     0)  ->  Abs (   205,   866)
+	 10: Rel (   230,     0)  ->  Abs (   435,   866)
+	 11: Rel (    30,     0)  ->  Abs (   465,   866)
+	 12: Rel (    26,   -24)  ->  Abs (   491,   842)
+	 13: Rel (     0,   -19)  ->  Abs (   491,   823)
+	 14: Rel (     0,   -18)  ->  Abs (   491,   805)
+	 15: Rel (   -26,   -24)  ->  Abs (   465,   781)
+	 16: Rel (   -30,     0)  ->  Abs (   435,   781)
+	 17: Rel (  -113,     0)  ->  Abs (   322,   781)
+	 18: Rel (   343,  -689)  ->  Abs (   665,    92)
+	 19: Rel (   338,   689)  ->  Abs (  1003,   781)
+	 20: Rel (  -113,     0)  ->  Abs (   890,   781)
+	 21: Rel (   -30,     0)  ->  Abs (   860,   781)
+	 22: Rel (   -26,    24)  ->  Abs (   834,   805)
+	 23: Rel (     0,    19)  ->  Abs (   834,   824)
+	 24: Rel (     0,    18)  ->  Abs (   834,   842)
+	 25: Rel (    26,    24)  ->  Abs (   860,   866)
+	 26: Rel (    30,     0)  ->  Abs (   890,   866)
+	 27: Rel (   229,     0)  ->  Abs (  1119,   866)
+	 28: Rel (    31,     0)  ->  Abs (  1150,   866)
+	 29: Rel (    26,   -24)  ->  Abs (  1176,   842)
+	 30: Rel (     0,   -19)  ->  Abs (  1176,   823)
+	 31: Rel (     0,   -13)  ->  Abs (  1176,   810)
+	 32: Rel (   -16,   -22)  ->  Abs (  1160,   788)
+	 33: Rel (   -20,    -7)  ->  Abs (  1140,   781)
+	 34: Rel (   -46,     0)  ->  Abs (  1094,   781)
+	 35: Rel (  -532, -1083)  ->  Abs (   562,  -302)
+	 36: Rel (   131,     0)  ->  Abs (   693,  -302)
+	 37: Rel (    30,     0)  ->  Abs (   723,  -302)
+	 38: Rel (    26,   -23)  ->  Abs (   749,  -325)
+	 39: Rel (     0,   -19)  ->  Abs (   749,  -344)
+	 40: Rel (     0,   -18)  ->  Abs (   749,  -362)
+	 41: Rel (   -26,   -24)  ->  Abs (   723,  -386)
+	 42: Rel (   -30,     0)  ->  Abs (   693,  -386)
+	 43: Rel (  -484,     0)  ->  Abs (   209,  -386)
+	 44: Rel (   -30,     0)  ->  Abs (   179,  -386)
+	 45: Rel (   -26,    23)  ->  Abs (   153,  -363)
+	 46: Rel (     0,    19)  ->  Abs (   153,  -344)
+	 47: Rel (     0,    19)  ->  Abs (   153,  -325)
+	 48: Rel (    26,    23)  ->  Abs (   179,  -302)
+	 49: Rel (    30,     0)  ->  Abs (   209,  -302)
+	 50: Rel (   263,     0)  ->  Abs (   472,  -302)
+
+	Glyph  93: off = 0x00008B26, len = 312
+	  numberOfContours:	1
+	  xMin:			237
+	  yMin:			0
+	  xMax:			1006
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  23
+
+	  Length of Instructions:	233
+	00000: NPUSHB      (10):    14    10    12    16    63     1     8    14    10     2 
+	00012: PUSHW[6]            -10    13    -8    10     4   686 
+	00025: NPUSHB      (11):     7    47     3     7     7     4     3    34    10    22 
+	                            16 
+	00038: PUSHW[1]            686 
+	00041: NPUSHB      (68):    19    47    15    19    19    16    15    34    22    14 
+	                             1     2    18     2    32    13    14    20    13    13 
+	                            14    13    12     2    14     1    22    13     2    12 
+	                             1    14    15    32     0    23     6     3     2    32 
+	                            11    12    10     1    93     4    59    15    10    63 
+	                            10   111    10     3    10    26    25    22    93   111 
+	                            12     1    12    25    24   117   128    24 
+	00111: PUSHW[1]            300 
+	00114: SCANCTRL   
+	00115: CALL       
+	00116: FLIPOFF    
+	00117: SRP0       
+	00118: MIRP[srp0,nmd,rd,0] 
+	00119: DELTAP1    
+	00120: FLIPON     
+	00121: MIRP[nrp0,nmd,rd,0] 
+	00122: FLIPOFF    
+	00123: SRP0       
+	00124: MIRP[srp0,nmd,rd,2] 
+	00125: DELTAP1    
+	00126: FLIPON     
+	00127: MIRP[nrp0,md,rd,1] 
+	00128: MIRP[nrp0,nmd,rd,0] 
+	00129: SVTCA[y-axis] 
+	00130: MIAP[rd+ci] 
+	00131: ALIGNRP    
+	00132: MIRP[srp0,md,rd,1] 
+	00133: ALIGNRP    
+	00134: MIAP[rd+ci] 
+	00135: ALIGNRP    
+	00136: MIRP[srp0,md,rd,1] 
+	00137: ALIGNRP    
+	00138: IP         
+	00139: SRP1       
+	00140: SRP2       
+	00141: IP         
+	00142: SVTCA[x-axis] 
+	00143: SRP1       
+	00144: SRP2       
+	00145: IP         
+	00146: IP         
+	00147: SRP2       
+	00148: IP         
+	00149: SDPVTL[1]  
+	00150: MDAP[nrd]  
+	00151: CALL       
+	00152: SVTCA[x-axis] 
+	00153: RS         
+	00154: NOT        
+	00155: IF         
+	00156: PUSHW[2]              2   -44 
+	00161: PUSHB[4]             25    50    63     2 
+	00166: PUSHW[1]            -64 
+	00169: PUSHB[4]             23    45    63     2 
+	00174: PUSHW[1]            -64 
+	00177: PUSHB[4]             20    40    63     2 
+	00182: PUSHW[1]            -40 
+	00185: PUSHB[3]             14    23    63 
+	00189: CALL       
+	00190: CALL       
+	00191: CALL       
+	00192: CALL       
+	00193: EIF        
+	00194: SDPVTL[1]  
+	00195: RDTG       
+	00196: MDRP[nrp0,nmd,rd,0] 
+	00197: RTG        
+	00198: SVTCA[x-axis] 
+	00199: SRP0       
+	00200: MIRP[srp0,md,rd,1] 
+	00201: RTDG       
+	00202: SRP2       
+	00203: IP         
+	00204: MDAP[rd]   
+	00205: RTG        
+	00206: SVTCA[y-axis] 
+	00207: SRP0       
+	00208: MIRP[srp0,nmd,rd,1] 
+	00209: MIRP[srp0,nmd,rd,0] 
+	00210: MDRP[nrp0,nmd,rd,0] 
+	00211: SVTCA[x-axis] 
+	00212: SRP0       
+	00213: MIRP[srp0,md,rd,1] 
+	00214: RTDG       
+	00215: SRP2       
+	00216: IP         
+	00217: MDAP[rd]   
+	00218: RTG        
+	00219: SVTCA[y-axis] 
+	00220: SRP0       
+	00221: MIRP[srp0,nmd,rd,1] 
+	00222: MIRP[srp0,nmd,rd,0] 
+	00223: MDRP[nrp0,nmd,rd,0] 
+	00224: IUP[y]     
+	00225: IUP[x]     
+	00226: SVTCA[x-axis] 
+	00227: SHPIX      
+	00228: SHPIX      
+	00229: SHPIX      
+	00230: SHPIX      
+	00231: SVTCA[x-axis] 
+	00232: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:                                      On
+	  3:  YDual                               On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:                      Y-Short X-Short On
+	 12:  YDual                               On
+	 13:  YDual XDual         Y-Short         On
+	 14:                                      On
+	 15:  YDual                               On
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   982,   866)  ->  Abs (   982,   866)
+	  1: Rel (     0,   -75)  ->  Abs (   982,   791)
+	  2: Rel (  -629,  -707)  ->  Abs (   353,    84)
+	  3: Rel (   568,     0)  ->  Abs (   921,    84)
+	  4: Rel (     0,   116)  ->  Abs (   921,   200)
+	  5: Rel (     0,    30)  ->  Abs (   921,   230)
+	  6: Rel (    23,    26)  ->  Abs (   944,   256)
+	  7: Rel (    19,     0)  ->  Abs (   963,   256)
+	  8: Rel (    19,     0)  ->  Abs (   982,   256)
+	  9: Rel (    24,   -26)  ->  Abs (  1006,   230)
+	 10: Rel (     0,   -30)  ->  Abs (  1006,   200)
+	 11: Rel (    -1,  -200)  ->  Abs (  1005,     0)
+	 12: Rel (  -768,     0)  ->  Abs (   237,     0)
+	 13: Rel (     0,    75)  ->  Abs (   237,    75)
+	 14: Rel (   626,   706)  ->  Abs (   863,   781)
+	 15: Rel (  -522,     0)  ->  Abs (   341,   781)
+	 16: Rel (     0,  -114)  ->  Abs (   341,   667)
+	 17: Rel (     0,   -30)  ->  Abs (   341,   637)
+	 18: Rel (   -24,   -26)  ->  Abs (   317,   611)
+	 19: Rel (   -18,     0)  ->  Abs (   299,   611)
+	 20: Rel (   -19,     0)  ->  Abs (   280,   611)
+	 21: Rel (   -24,    26)  ->  Abs (   256,   637)
+	 22: Rel (     0,    30)  ->  Abs (   256,   667)
+	 23: Rel (     0,   199)  ->  Abs (   256,   866)
+
+	Glyph  94: off = 0x00008C5E, len = 300
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-259
+	  xMax:			421
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  49
+
+	  Length of Instructions:	152
+	00000: PUSHB[6]            213    18   213    34     2     7 
+	00007: PUSHW[1]            -34 
+	00010: PUSHB[8]             30    53    22    34    28    34    52    30 
+	00019: PUSHW[1]            -34 
+	00022: NPUSHB      (20):    28    34    52    35    34    36    46    17    18    16 
+	                             3    15     5    44    91    64    63    36     1    36 
+	00044: PUSHW[1]            536 
+	00047: PUSHB[6]              0    32     8    91    64    15 
+	00054: PUSHW[1]            536 
+	00057: NPUSHB      (33):     0    32    26     0    39   212    46    12   212     4 
+	                             5    36    19    19    20   212    26    47    46    36 
+	                            33    33    32   212     0    26    16    26     2    26 
+	                            25    50   250 
+	00092: PUSHW[2]            381    24 
+	00097: CALL       
+	00098: FLIPOFF    
+	00099: SRP0       
+	00100: MIRP[srp0,nmd,rd,0] 
+	00101: DELTAP1    
+	00102: FLIPON     
+	00103: MIRP[srp0,nmd,rd,0] 
+	00104: ALIGNRP    
+	00105: SRP0       
+	00106: MIRP[srp0,md,rd,1] 
+	00107: ALIGNRP    
+	00108: SRP0       
+	00109: MIRP[srp0,nmd,rd,0] 
+	00110: ALIGNRP    
+	00111: SRP0       
+	00112: MIRP[srp0,md,rd,1] 
+	00113: ALIGNRP    
+	00114: MIRP[nrp0,nmd,rd,0] 
+	00115: SRP0       
+	00116: MIRP[nrp0,nmd,rd,0] 
+	00117: SVTCA[y-axis] 
+	00118: RTHG       
+	00119: MDAP[rd]   
+	00120: MDAP[rd]   
+	00121: SMD        
+	00122: SRP0       
+	00123: MIRP[srp0,md,rd,1] 
+	00124: RTG        
+	00125: SMD        
+	00126: MIRP[nrp0,md,rd,1] 
+	00127: RTHG       
+	00128: SMD        
+	00129: SRP0       
+	00130: MIRP[srp0,md,rd,1] 
+	00131: DELTAP1    
+	00132: RTG        
+	00133: SMD        
+	00134: MIRP[nrp0,md,rd,1] 
+	00135: SVTCA[x-axis] 
+	00136: SRP1       
+	00137: SRP2       
+	00138: SLOOP      
+	00139: IP         
+	00140: SRP1       
+	00141: SRP2       
+	00142: IP         
+	00143: IP         
+	00144: IUP[y]     
+	00145: IUP[x]     
+	00146: SVTCA[y-axis] 
+	00147: CALL       
+	00148: CALL       
+	00149: SVTCA[x-axis] 
+	00150: CALL       
+	00151: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual                         On
+	  6:        XDual         Y-Short         Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:        XDual                         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:        XDual                         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:        XDual         Y-Short X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:                      Y-Short X-Short On
+	 42:                      Y-Short X-Short Off
+	 43:                      Y-Short X-Short On
+	 44:                      Y-Short X-Short Off
+	 45:                      Y-Short X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual                         On
+	 48:        XDual         Y-Short         Off
+	 49:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   161,   498)  ->  Abs (   161,   498)
+	  1: Rel (    50,   -38)  ->  Abs (   211,   460)
+	  2: Rel (    18,   -34)  ->  Abs (   229,   426)
+	  3: Rel (    23,   -45)  ->  Abs (   252,   381)
+	  4: Rel (     0,   -62)  ->  Abs (   252,   319)
+	  5: Rel (     0,  -359)  ->  Abs (   252,   -40)
+	  6: Rel (     0,   -57)  ->  Abs (   252,   -97)
+	  7: Rel (    66,   -73)  ->  Abs (   318,  -170)
+	  8: Rel (    49,    -5)  ->  Abs (   367,  -175)
+	  9: Rel (    31,    -3)  ->  Abs (   398,  -178)
+	 10: Rel (    10,    -9)  ->  Abs (   408,  -187)
+	 11: Rel (    13,   -12)  ->  Abs (   421,  -199)
+	 12: Rel (     0,   -18)  ->  Abs (   421,  -217)
+	 13: Rel (     0,   -19)  ->  Abs (   421,  -236)
+	 14: Rel (   -26,   -23)  ->  Abs (   395,  -259)
+	 15: Rel (   -25,     0)  ->  Abs (   370,  -259)
+	 16: Rel (   -79,     0)  ->  Abs (   291,  -259)
+	 17: Rel (   -53,    50)  ->  Abs (   238,  -209)
+	 18: Rel (   -71,    69)  ->  Abs (   167,  -140)
+	 19: Rel (     0,    99)  ->  Abs (   167,   -41)
+	 20: Rel (     0,   360)  ->  Abs (   167,   319)
+	 21: Rel (     0,    55)  ->  Abs (   167,   374)
+	 22: Rel (   -66,    75)  ->  Abs (   101,   449)
+	 23: Rel (   -51,     4)  ->  Abs (    50,   453)
+	 24: Rel (   -28,     3)  ->  Abs (    22,   456)
+	 25: Rel (   -22,    22)  ->  Abs (     0,   478)
+	 26: Rel (     0,    20)  ->  Abs (     0,   498)
+	 27: Rel (     0,    19)  ->  Abs (     0,   517)
+	 28: Rel (    22,    22)  ->  Abs (    22,   539)
+	 29: Rel (    28,     3)  ->  Abs (    50,   542)
+	 30: Rel (    52,     4)  ->  Abs (   102,   546)
+	 31: Rel (    65,    75)  ->  Abs (   167,   621)
+	 32: Rel (     0,    55)  ->  Abs (   167,   676)
+	 33: Rel (     0,   360)  ->  Abs (   167,  1036)
+	 34: Rel (     0,    94)  ->  Abs (   167,  1130)
+	 35: Rel (   120,   125)  ->  Abs (   287,  1255)
+	 36: Rel (    84,     0)  ->  Abs (   371,  1255)
+	 37: Rel (    24,     0)  ->  Abs (   395,  1255)
+	 38: Rel (    26,   -24)  ->  Abs (   421,  1231)
+	 39: Rel (     0,   -18)  ->  Abs (   421,  1213)
+	 40: Rel (     0,   -18)  ->  Abs (   421,  1195)
+	 41: Rel (   -13,   -12)  ->  Abs (   408,  1183)
+	 42: Rel (    -9,   -10)  ->  Abs (   399,  1173)
+	 43: Rel (   -32,    -3)  ->  Abs (   367,  1170)
+	 44: Rel (   -50,    -5)  ->  Abs (   317,  1165)
+	 45: Rel (   -65,   -74)  ->  Abs (   252,  1091)
+	 46: Rel (     0,   -55)  ->  Abs (   252,  1036)
+	 47: Rel (     0,  -360)  ->  Abs (   252,   676)
+	 48: Rel (     0,   -63)  ->  Abs (   252,   613)
+	 49: Rel (   -40,   -77)  ->  Abs (   212,   536)
+
+	Glyph  95: off = 0x00008D8A, len = 86
+	  numberOfContours:	1
+	  xMin:			572
+	  yMin:			-259
+	  xMax:			657
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	33
+	00000: PUSHW[2]              4   563 
+	00005: NPUSHB      (13):    11     0     1    52     0    36     7     8    25    14 
+	                           101   169    24 
+	00020: CALL       
+	00021: FLIPOFF    
+	00022: SRP0       
+	00023: MIRP[srp0,nmd,rd,0] 
+	00024: ALIGNRP    
+	00025: FLIPON     
+	00026: MIRP[srp0,md,rd,1] 
+	00027: MIRP[nrp0,nmd,rd,0] 
+	00028: SVTCA[y-axis] 
+	00029: MIAP[rd+ci] 
+	00030: MIRP[nrp0,md,rd,1] 
+	00031: IUP[y]     
+	00032: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                              X-Short On
+	  2:        XDual         Y-Short         Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:        XDual                         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   657,  1198)  ->  Abs (   657,  1198)
+	  1: Rel (    -1, -1401)  ->  Abs (   656,  -203)
+	  2: Rel (     0,   -30)  ->  Abs (   656,  -233)
+	  3: Rel (   -23,   -26)  ->  Abs (   633,  -259)
+	  4: Rel (   -19,     0)  ->  Abs (   614,  -259)
+	  5: Rel (   -18,     0)  ->  Abs (   596,  -259)
+	  6: Rel (   -24,    26)  ->  Abs (   572,  -233)
+	  7: Rel (     0,    30)  ->  Abs (   572,  -203)
+	  8: Rel (     0,  1401)  ->  Abs (   572,  1198)
+	  9: Rel (     0,    31)  ->  Abs (   572,  1229)
+	 10: Rel (    24,    26)  ->  Abs (   596,  1255)
+	 11: Rel (    18,     0)  ->  Abs (   614,  1255)
+	 12: Rel (    19,     0)  ->  Abs (   633,  1255)
+	 13: Rel (    24,   -26)  ->  Abs (   657,  1229)
+
+	Glyph  96: off = 0x00008DE0, len = 362
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-260
+	  xMax:			421
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  49
+
+	  Length of Instructions:	213
+	00000: NPUSHB      (19):    42    34     1   122    34   202    34   234    34     3 
+	                           170    34     1    28    44    37    45    52    24 
+	00021: PUSHW[1]            -44 
+	00024: NPUSHB      (14):    37    45    52    29    34    37    45    52    31    34 
+	                            37    45    52    23 
+	00040: PUSHW[1]            -64 
+	00043: PUSHB[4]             37    45    52    21 
+	00048: PUSHW[1]            -34 
+	00051: PUSHB[4]             37    45    52    22 
+	00056: PUSHW[1]            -34 
+	00059: NPUSHB      (33):    37    45    52    30    44    37    45    52     4    18 
+	                            20    18     2    35    34    36    46    17    15     5 
+	                            30    77    22    77     0    32     7    91    64    63 
+	                            15     1    15 
+	00094: PUSHW[1]            536 
+	00097: PUSHB[6]              0    32    43    91    64    36 
+	00104: PUSHW[1]            536 
+	00107: NPUSHB      (29):     0    32    26     0    39   212    47    46    36    33 
+	                            33    32   212    26    12   212     4     5    36    19 
+	                            19    20   212    15    26    31    26     2    26 
+	00138: PUSHW[5]            694    51   443   459    24 
+	00149: CALL       
+	00150: SRP0       
+	00151: MIRP[srp0,nmd,rd,2] 
+	00152: DELTAP1    
+	00153: MIRP[srp0,nmd,rd,0] 
+	00154: ALIGNRP    
+	00155: SRP0       
+	00156: MIRP[srp0,md,rd,1] 
+	00157: ALIGNRP    
+	00158: MIRP[nrp0,nmd,rd,0] 
+	00159: SRP0       
+	00160: MIRP[srp0,nmd,rd,0] 
+	00161: ALIGNRP    
+	00162: SRP0       
+	00163: MIRP[srp0,md,rd,1] 
+	00164: ALIGNRP    
+	00165: MIRP[nrp0,nmd,rd,0] 
+	00166: SVTCA[y-axis] 
+	00167: RTHG       
+	00168: MDAP[rd]   
+	00169: MDAP[rd]   
+	00170: SMD        
+	00171: SRP0       
+	00172: MIRP[srp0,md,rd,1] 
+	00173: RTG        
+	00174: SMD        
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: RTHG       
+	00177: SMD        
+	00178: SRP0       
+	00179: MIRP[srp0,md,rd,1] 
+	00180: DELTAP1    
+	00181: RTG        
+	00182: SMD        
+	00183: MIRP[nrp0,md,rd,1] 
+	00184: RTHG       
+	00185: SMD        
+	00186: SRP0       
+	00187: MIRP[nrp0,md,rd,1] 
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: SVTCA[x-axis] 
+	00190: SRP1       
+	00191: SRP2       
+	00192: IP         
+	00193: SRP1       
+	00194: SRP2       
+	00195: IP         
+	00196: IP         
+	00197: IUP[y]     
+	00198: IUP[x]     
+	00199: SVTCA[y-axis] 
+	00200: DELTAP1    
+	00201: CALL       
+	00202: CALL       
+	00203: CALL       
+	00204: CALL       
+	00205: CALL       
+	00206: CALL       
+	00207: CALL       
+	00208: CALL       
+	00209: SVTCA[x-axis] 
+	00210: DELTAP1    
+	00211: DELTAP2    
+	00212: DELTAP3    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:        XDual                         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short On
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual                         On
+	 21:        XDual         Y-Short         Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short On
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:                      Y-Short X-Short Off
+	 29:                      Y-Short X-Short On
+	 30:                      Y-Short X-Short Off
+	 31:                      Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual                         On
+	 34:        XDual         Y-Short         Off
+	 35:                      Y-Short X-Short Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short         On
+	 47:        XDual                         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   260,   498)  ->  Abs (   260,   498)
+	  1: Rel (   -51,    38)  ->  Abs (   209,   536)
+	  2: Rel (   -17,    34)  ->  Abs (   192,   570)
+	  3: Rel (   -23,    44)  ->  Abs (   169,   614)
+	  4: Rel (     0,    62)  ->  Abs (   169,   676)
+	  5: Rel (     0,   360)  ->  Abs (   169,  1036)
+	  6: Rel (     0,    56)  ->  Abs (   169,  1092)
+	  7: Rel (   -66,    74)  ->  Abs (   103,  1166)
+	  8: Rel (   -49,     4)  ->  Abs (    54,  1170)
+	  9: Rel (   -32,     3)  ->  Abs (    22,  1173)
+	 10: Rel (    -9,     9)  ->  Abs (    13,  1182)
+	 11: Rel (   -13,    13)  ->  Abs (     0,  1195)
+	 12: Rel (     0,    18)  ->  Abs (     0,  1213)
+	 13: Rel (     0,    18)  ->  Abs (     0,  1231)
+	 14: Rel (    25,    24)  ->  Abs (    25,  1255)
+	 15: Rel (    25,     0)  ->  Abs (    50,  1255)
+	 16: Rel (    80,     0)  ->  Abs (   130,  1255)
+	 17: Rel (    52,   -51)  ->  Abs (   182,  1204)
+	 18: Rel (    71,   -68)  ->  Abs (   253,  1136)
+	 19: Rel (     0,  -100)  ->  Abs (   253,  1036)
+	 20: Rel (     0,  -360)  ->  Abs (   253,   676)
+	 21: Rel (     0,   -55)  ->  Abs (   253,   621)
+	 22: Rel (    67,   -75)  ->  Abs (   320,   546)
+	 23: Rel (    51,    -4)  ->  Abs (   371,   542)
+	 24: Rel (    27,    -3)  ->  Abs (   398,   539)
+	 25: Rel (    23,   -22)  ->  Abs (   421,   517)
+	 26: Rel (     0,   -19)  ->  Abs (   421,   498)
+	 27: Rel (     0,   -20)  ->  Abs (   421,   478)
+	 28: Rel (   -23,   -22)  ->  Abs (   398,   456)
+	 29: Rel (   -27,    -3)  ->  Abs (   371,   453)
+	 30: Rel (   -52,    -4)  ->  Abs (   319,   449)
+	 31: Rel (   -66,   -75)  ->  Abs (   253,   374)
+	 32: Rel (     0,   -55)  ->  Abs (   253,   319)
+	 33: Rel (     0,  -360)  ->  Abs (   253,   -41)
+	 34: Rel (     0,   -94)  ->  Abs (   253,  -135)
+	 35: Rel (  -120,  -125)  ->  Abs (   133,  -260)
+	 36: Rel (   -83,     0)  ->  Abs (    50,  -260)
+	 37: Rel (   -25,     0)  ->  Abs (    25,  -260)
+	 38: Rel (   -25,    24)  ->  Abs (     0,  -236)
+	 39: Rel (     0,    19)  ->  Abs (     0,  -217)
+	 40: Rel (     0,    18)  ->  Abs (     0,  -199)
+	 41: Rel (    12,    12)  ->  Abs (    12,  -187)
+	 42: Rel (    10,     9)  ->  Abs (    22,  -178)
+	 43: Rel (    32,     3)  ->  Abs (    54,  -175)
+	 44: Rel (    50,     5)  ->  Abs (   104,  -170)
+	 45: Rel (    65,    75)  ->  Abs (   169,   -95)
+	 46: Rel (     0,    55)  ->  Abs (   169,   -40)
+	 47: Rel (     0,   359)  ->  Abs (   169,   319)
+	 48: Rel (     0,    63)  ->  Abs (   169,   382)
+	 49: Rel (    40,    78)  ->  Abs (   209,   460)
+
+	Glyph  97: off = 0x00008F4A, len = 236
+	  numberOfContours:	1
+	  xMin:			187
+	  yMin:			432
+	  xMax:			1043
+	  yMax:			735
+
+	EndPoints
+	---------
+	  0:  37
+
+	  Length of Instructions:	121
+	00000: NPUSHB      (74):    37     8    38     9    41    30     3    89    29   106 
+	                            16   152    16   185    36     4     8    25     1    10 
+	                             8    29    31    16     5     3    22    29    27    12 
+	                             8     6    10    31    12    33    31    29    29    91 
+	                            10     8    20    10    10     8     0   210    33    91 
+	                             6   174    19   210    12    91    27   111     3     1 
+	                            15     3   111     3     2     3    26    39    22    25 
+	                            38    99   171    24 
+	00076: CALL       
+	00077: FLIPOFF    
+	00078: SRP0       
+	00079: MIRP[nrp0,nmd,rd,0] 
+	00080: SRP0       
+	00081: MIRP[nrp0,nmd,rd,2] 
+	00082: DELTAP1    
+	00083: DELTAP2    
+	00084: SVTCA[y-axis] 
+	00085: MDAP[rd]   
+	00086: FLIPON     
+	00087: MIRP[srp0,md,rd,1] 
+	00088: MIRP[srp0,nmd,rd,0] 
+	00089: MIRP[srp0,nmd,rd,0] 
+	00090: MIRP[srp0,md,rd,1] 
+	00091: MIRP[nrp0,nmd,rd,0] 
+	00092: SDPVTL[1]  
+	00093: SFVTPV     
+	00094: MDAP[nrd]  
+	00095: CALL       
+	00096: RDTG       
+	00097: SRP0       
+	00098: MDRP[nrp0,nmd,rd,0] 
+	00099: SVTCA[y-axis] 
+	00100: SRP1       
+	00101: SRP2       
+	00102: IP         
+	00103: IP         
+	00104: SRP2       
+	00105: IP         
+	00106: SRP1       
+	00107: SRP2       
+	00108: IP         
+	00109: SVTCA[x-axis] 
+	00110: SRP1       
+	00111: SRP2       
+	00112: SLOOP      
+	00113: IP         
+	00114: IUP[y]     
+	00115: IUP[x]     
+	00116: SVTCA[x-axis] 
+	00117: DELTAP1    
+	00118: DELTAP2    
+	00119: SVTCA[y-axis] 
+	00120: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short X-Short On
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1003,   668)  ->  Abs (  1003,   668)
+	  1: Rel (    16,     0)  ->  Abs (  1019,   668)
+	  2: Rel (    24,   -24)  ->  Abs (  1043,   644)
+	  3: Rel (     0,   -16)  ->  Abs (  1043,   628)
+	  4: Rel (     0,   -35)  ->  Abs (  1043,   593)
+	  5: Rel (  -174,  -161)  ->  Abs (   869,   432)
+	  6: Rel (   -73,     0)  ->  Abs (   796,   432)
+	  7: Rel (   -45,     0)  ->  Abs (   751,   432)
+	  8: Rel (   -92,    51)  ->  Abs (   659,   483)
+	  9: Rel (   -85,    80)  ->  Abs (   574,   563)
+	 10: Rel (   -57,    54)  ->  Abs (   517,   617)
+	 11: Rel (   -59,    34)  ->  Abs (   458,   651)
+	 12: Rel (   -24,     0)  ->  Abs (   434,   651)
+	 13: Rel (   -29,     0)  ->  Abs (   405,   651)
+	 14: Rel (   -26,   -16)  ->  Abs (   379,   635)
+	 15: Rel (   -35,   -20)  ->  Abs (   344,   615)
+	 16: Rel (   -61,   -71)  ->  Abs (   283,   544)
+	 17: Rel (   -29,   -33)  ->  Abs (   254,   511)
+	 18: Rel (   -17,   -10)  ->  Abs (   237,   501)
+	 19: Rel (   -10,     0)  ->  Abs (   227,   501)
+	 20: Rel (   -17,     0)  ->  Abs (   210,   501)
+	 21: Rel (   -23,    23)  ->  Abs (   187,   524)
+	 22: Rel (     0,    17)  ->  Abs (   187,   541)
+	 23: Rel (     0,    16)  ->  Abs (   187,   557)
+	 24: Rel (    26,    33)  ->  Abs (   213,   590)
+	 25: Rel (    66,    82)  ->  Abs (   279,   672)
+	 26: Rel (   104,    63)  ->  Abs (   383,   735)
+	 27: Rel (    49,     0)  ->  Abs (   432,   735)
+	 28: Rel (    41,     0)  ->  Abs (   473,   735)
+	 29: Rel (    80,   -39)  ->  Abs (   553,   696)
+	 30: Rel (    63,   -57)  ->  Abs (   616,   639)
+	 31: Rel (   101,   -93)  ->  Abs (   717,   546)
+	 32: Rel (    49,   -29)  ->  Abs (   766,   517)
+	 33: Rel (    24,     0)  ->  Abs (   790,   517)
+	 34: Rel (    71,     0)  ->  Abs (   861,   517)
+	 35: Rel (    80,   102)  ->  Abs (   941,   619)
+	 36: Rel (    29,    37)  ->  Abs (   970,   656)
+	 37: Rel (    20,    12)  ->  Abs (   990,   668)
+
+	Glyph  98: off = 0x00009036, len = 74
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1496
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	-90
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (20):     3     2    47    65     1    15    65    31    65    47 
+	                            65    95    65   111    65   127    65     6    65    26 
+	00022: PUSHW[1]            -27 
+	00025: PUSHB[6]             72    43     2     3     2    62 
+	00032: PUSHW[3]            651    41   300 
+	00039: SCANCTRL   
+	00040: SVTCA[y-axis] 
+	00041: CALL       
+	00042: SVTCA[x-axis] 
+	00043: CALL       
+	00044: DELTAP1    
+	00045: DELTAP2    
+	00046: SHC[rp1,zp0] 
+	00047: SHC[rp1,zp0] 
+
+	Glyph  99: off = 0x00009080, len = 76
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	219
+		X WOffset:	-51
+		Y WOffset:	239
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     3     2    31    53     1   160    53     1   144    53 
+	                             1    53    26 
+	00015: PUSHW[1]           -322 
+	00018: NPUSHB      (10):    72    43     3     2     9     0    50     1    58    50 
+	00030: PUSHW[2]            651   300 
+	00035: SCANCTRL   
+	00036: SVTCA[y-axis] 
+	00037: MIAP[nrd+nci] 
+	00038: SDB        
+	00039: DELTAP1    
+	00040: SDB        
+	00041: SHC[rp1,zp0] 
+	00042: SHC[rp1,zp0] 
+	00043: SVTCA[x-axis] 
+	00044: CALL       
+	00045: DELTAP1    
+	00046: DELTAP1    
+	00047: DELTAP2    
+	00048: SHC[rp1,zp0] 
+	00049: SHC[rp1,zp0] 
+
+	Glyph 100: off = 0x000090CC, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			127
+	  yMin:			-333
+	  xMax:			1100
+	  yMax:			1197
+
+	     0: Flags:		0x0226
+		Glyf Index:	38
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	220
+		X BOffset:	6
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1     1    57    55    14    72    39     1     1    61 
+	                             8    41 
+	00014: PUSHW[1]            300 
+	00017: SCANCTRL   
+	00018: SVTCA[y-axis] 
+	00019: CALL       
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+
+	Glyph 101: off = 0x000090FA, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1596
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	3
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     1    16    60    32    60     2    60    36   105    72 
+	                            43     1     1    57 
+	00016: PUSHW[2]            651    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 102: off = 0x00009130, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			46
+	  yMin:			0
+	  xMax:			1153
+	  yMax:			1475
+
+	     0: Flags:		0x0226
+		Glyf Index:	49
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	-2
+		Y WOffset:	268
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (22):     1   208    65     1    16    65     1     0    65    48 
+	                            65    80    65     3    65    27     0    72    43     1 
+	                             1    54 
+	00024: PUSHW[3]            651    41   300 
+	00031: SCANCTRL   
+	00032: SVTCA[y-axis] 
+	00033: CALL       
+	00034: SVTCA[x-axis] 
+	00035: CALL       
+	00036: DELTAP1    
+	00037: DELTAP1    
+	00038: DELTAP2    
+	00039: SHC[rp1,zp0] 
+
+	Glyph 103: off = 0x00009172, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-33
+	  xMax:			1024
+	  yMax:			1496
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	-90
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     3     2     0    32    38    10    10    64     2     3 
+	                             2    41 
+	00014: PUSHW[2]            651    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: SHC[rp1,zp0] 
+	00024: SHC[rp1,zp0] 
+
+	Glyph 104: off = 0x000091A6, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1148
+	  yMax:			1496
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	1
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     2     1     0    67   160    67     2    67    29   134 
+	                            72    43     1     2     2    64 
+	00018: PUSHW[3]            651    41   300 
+	00025: SCANCTRL   
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: SHC[rp1,zp0] 
+	00032: SHC[rp1,zp0] 
+
+	Glyph 105: off = 0x000091E2, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			1328
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	141
+		X BOffset:	0
+		Y BOffset:	-1
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              2     1    61    29 
+	00005: PUSHW[1]           -161 
+	00008: PUSHB[5]             72    39     2     1    58 
+	00014: PUSHW[3]            652    41   300 
+	00021: SCANCTRL   
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+
+	Glyph 106: off = 0x00009214, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			1328
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	67
+		X BOffset:	0
+		Y BOffset:	-1
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     2    32    59    48    59    64    59    80    59     4 
+	                            59    29   182    72    43     2     1    62 
+	00020: PUSHW[3]            652    41   300 
+	00027: SCANCTRL   
+	00028: SVTCA[y-axis] 
+	00029: CALL       
+	00030: SVTCA[x-axis] 
+	00031: CALL       
+	00032: DELTAP1    
+	00033: SHC[rp1,zp0] 
+
+	Glyph 107: off = 0x0000924E, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			1310
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	214
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (21):     2   144    65     1     0    65    32    65    48    65 
+	                            96    65     4    65    29     0   104    43     2     1 
+	                            68 
+	00023: PUSHW[3]            652    41   300 
+	00030: SCANCTRL   
+	00031: SVTCA[y-axis] 
+	00032: CALL       
+	00033: SVTCA[x-axis] 
+	00034: CALL       
+	00035: DELTAP1    
+	00036: DELTAP1    
+	00037: SHC[rp1,zp0] 
+
+	Glyph 108: off = 0x0000928C, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			1228
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	142
+		X BOffset:	-47
+		Y BOffset:	-1
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (22):     3     2     0    73    32    73    48    73    96    73 
+	                           176    73     5    73    29   106    72    43     2     3 
+	                             2    58 
+	00024: PUSHW[3]            652    41   300 
+	00031: SCANCTRL   
+	00032: SVTCA[y-axis] 
+	00033: CALL       
+	00034: SVTCA[x-axis] 
+	00035: CALL       
+	00036: DELTAP1    
+	00037: SHC[rp1,zp0] 
+	00038: SHC[rp1,zp0] 
+
+	Glyph 109: off = 0x000092CC, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			1207
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	215
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     2    96    75   240    75     2     0    75    64    75 
+	                             2    75    29 
+	00015: PUSHW[1]           -308 
+	00018: PUSHB[5]             72    43     2     1    64 
+	00024: PUSHW[3]            652    41   300 
+	00031: SCANCTRL   
+	00032: SVTCA[y-axis] 
+	00033: CALL       
+	00034: SVTCA[x-axis] 
+	00035: CALL       
+	00036: DELTAP1    
+	00037: DELTAP1    
+	00038: SHC[rp1,zp0] 
+
+	Glyph 110: off = 0x0000930C, len = 80
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			1364
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	219
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (27):     3     2    31    61    95    61     2    79    61   223 
+	                            61     2    16    61    32    61    48    61    80    61 
+	                            96    61   112    61     6    61    29 
+	00029: PUSHW[1]           -196 
+	00032: PUSHB[6]             72    43     2     3     2    58 
+	00039: PUSHW[3]            652    41   300 
+	00046: SCANCTRL   
+	00047: SVTCA[y-axis] 
+	00048: CALL       
+	00049: SVTCA[x-axis] 
+	00050: CALL       
+	00051: DELTAP1    
+	00052: DELTAP2    
+	00053: DELTAP3    
+	00054: SHC[rp1,zp0] 
+	00055: SHC[rp1,zp0] 
+
+	Glyph 111: off = 0x0000935C, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			171
+	  yMin:			-333
+	  xMax:			1099
+	  yMax:			896
+
+	     0: Flags:		0x0226
+		Glyf Index:	70
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	220
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1    43    23 
+	00005: PUSHW[1]            -23 
+	00008: PUSHB[7]             72    39     1     1    47     8    41 
+	00016: PUSHW[1]            293 
+	00019: SCANCTRL   
+	00020: SVTCA[y-axis] 
+	00021: CALL       
+	00022: SVTCA[x-axis] 
+	00023: CALL       
+
+	Glyph 112: off = 0x0000938C, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1071
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	141
+		X BOffset:	1
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              2   191    39   255    39     2    39    23 
+	00009: PUSHW[1]           -156 
+	00012: PUSHB[5]             72    43     2     1    36 
+	00018: PUSHW[3]            652    41   300 
+	00025: SCANCTRL   
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: SHC[rp1,zp0] 
+
+	Glyph 113: off = 0x000093C4, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1071
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	67
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     2   176    36     1    36    23   156    72    43     2 
+	                             1    40 
+	00014: PUSHW[3]            652    41   300 
+	00021: SCANCTRL   
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+	00026: DELTAP1    
+	00027: SHC[rp1,zp0] 
+
+	Glyph 114: off = 0x000093F8, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1071
+	  yMax:			1310
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	214
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     2    43    23     0   104    43     2     1    46 
+	00011: PUSHW[3]            652    41   300 
+	00018: SCANCTRL   
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: SHC[rp1,zp0] 
+
+	Glyph 115: off = 0x00009428, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1071
+	  yMax:			1228
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	142
+		X BOffset:	4
+		Y BOffset:	-1
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     2     3     2    51    23   152    72    39     2     3 
+	                             2    36 
+	00014: PUSHW[3]            652    41   300 
+	00021: SCANCTRL   
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+
+	Glyph 116: off = 0x0000945A, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			186
+	  yMin:			0
+	  xMax:			1047
+	  yMax:			1328
+
+	     0: Flags:		0x0226
+		Glyf Index:	213
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	141
+		X BOffset:	-85
+		Y BOffset:	-1
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1    31     0 
+	00005: PUSHW[1]           -298 
+	00008: PUSHB[5]             72    39     1     1    28 
+	00014: PUSHW[2]            652    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+
+	Glyph 117: off = 0x0000948A, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			186
+	  yMin:			0
+	  xMax:			1047
+	  yMax:			1320
+
+	     0: Flags:		0x0226
+		Glyf Index:	213
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	67
+		X BOffset:	-76
+		Y BOffset:	-9
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     1    28     0    24    72    39     1     1    32 
+	00012: PUSHW[2]            652    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+
+	Glyph 118: off = 0x000094B8, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			186
+	  yMin:			0
+	  xMax:			1047
+	  yMax:			1310
+
+	     0: Flags:		0x0226
+		Glyf Index:	213
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	214
+		X BOffset:	-84
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1    35     0 
+	00005: PUSHW[1]           -120 
+	00008: PUSHB[5]            104    39     1     1    38 
+	00014: PUSHW[2]            652    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+
+	Glyph 119: off = 0x000094E8, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			186
+	  yMin:			0
+	  xMax:			1047
+	  yMax:			1228
+
+	     0: Flags:		0x0226
+		Glyf Index:	213
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	142
+		X BOffset:	-84
+		Y BOffset:	-1
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1     2     2    43     0     7    72    39     1     2 
+	                             2    28 
+	00014: PUSHW[2]            652    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+
+	Glyph 120: off = 0x00009518, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			108
+	  yMin:			0
+	  xMax:			1111
+	  yMax:			1207
+
+	     0: Flags:		0x0226
+		Glyf Index:	81
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	215
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     1     0    77    16    77    32    77    48    77    64 
+	                            77    80    77     6    77     4 
+	00018: PUSHW[1]           -326 
+	00021: PUSHB[5]             72    43     1     1    66 
+	00027: PUSHW[2]            652    41 
+	00032: SVTCA[y-axis] 
+	00033: CALL       
+	00034: SVTCA[x-axis] 
+	00035: CALL       
+	00036: DELTAP1    
+	00037: SHC[rp1,zp0] 
+
+	Glyph 121: off = 0x00009556, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1084
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	141
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              2    63    30   255    30     2    30     9 
+	00009: PUSHW[1]           -172 
+	00012: PUSHB[5]             72    43     2     1    28 
+	00018: PUSHW[3]            652    41   300 
+	00025: SCANCTRL   
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: SHC[rp1,zp0] 
+
+	Glyph 122: off = 0x0000958E, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1084
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	67
+		X BOffset:	-1
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     2    48    28   240    28     2    28     9   170    72 
+	                            43     2     1    30 
+	00016: PUSHW[3]            652    41   300 
+	00023: SCANCTRL   
+	00024: SVTCA[y-axis] 
+	00025: CALL       
+	00026: SVTCA[x-axis] 
+	00027: CALL       
+	00028: DELTAP1    
+	00029: SHC[rp1,zp0] 
+
+	Glyph 123: off = 0x000095C4, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1084
+	  yMax:			1310
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	214
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     1    34     9     0   104    39     2     1    37 
+	00012: PUSHW[3]            652    41   300 
+	00019: SCANCTRL   
+	00020: SVTCA[y-axis] 
+	00021: CALL       
+	00022: SVTCA[x-axis] 
+	00023: CALL       
+
+	Glyph 124: off = 0x000095F4, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1084
+	  yMax:			1228
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	142
+		X BOffset:	0
+		Y BOffset:	-1
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     3     2   160    42     1    42     9   132    72    43 
+	                             2     3     2    27 
+	00016: PUSHW[3]            652    41   300 
+	00023: SCANCTRL   
+	00024: SVTCA[y-axis] 
+	00025: CALL       
+	00026: SVTCA[x-axis] 
+	00027: CALL       
+	00028: DELTAP1    
+	00029: SHC[rp1,zp0] 
+	00030: SHC[rp1,zp0] 
+
+	Glyph 125: off = 0x0000962C, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1084
+	  yMax:			1207
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	215
+		X BOffset:	-1
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    44    16    44    48    44     3    44     9 
+	00012: PUSHW[1]           -300 
+	00015: PUSHB[5]             72    43     2     1    33 
+	00021: PUSHW[3]            652    41   300 
+	00028: SCANCTRL   
+	00029: SVTCA[y-axis] 
+	00030: CALL       
+	00031: SVTCA[x-axis] 
+	00032: CALL       
+	00033: DELTAP1    
+	00034: SHC[rp1,zp0] 
+
+	Glyph 126: off = 0x00009668, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1113
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	141
+		X BOffset:	1
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1    46    20 
+	00005: PUSHW[1]            -42 
+	00008: PUSHB[5]             72    39     1     1    43 
+	00014: PUSHW[3]            652    41   292 
+	00021: SCANCTRL   
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+
+	Glyph 127: off = 0x0000969A, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1113
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	67
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     1    44    20   160    72    39     1     1    47 
+	00012: PUSHW[3]            652    41   292 
+	00019: SCANCTRL   
+	00020: SVTCA[y-axis] 
+	00021: CALL       
+	00022: SVTCA[x-axis] 
+	00023: CALL       
+
+	Glyph 128: off = 0x000096CA, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1113
+	  yMax:			1310
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	214
+		X BOffset:	1
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     1    50    20    60   104    39     1     1    53 
+	00012: PUSHW[3]            652    41   292 
+	00019: SCANCTRL   
+	00020: SVTCA[y-axis] 
+	00021: CALL       
+	00022: SVTCA[x-axis] 
+	00023: CALL       
+
+	Glyph 129: off = 0x000096FA, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1113
+	  yMax:			1228
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	142
+		X BOffset:	-36
+		Y BOffset:	-1
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1     2     2    58    20   236    72    39     1     2 
+	                             2    43 
+	00014: PUSHW[3]            652    41   292 
+	00021: SCANCTRL   
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+
+	Glyph 130: off = 0x0000972C, len = 180
+	  numberOfContours:	1
+	  xMin:			252
+	  yMin:			-130
+	  xMax:			978
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  31
+
+	  Length of Instructions:	82
+	00000: NPUSHB      (19):    15     9    12   181    16    16    50     9    31    25 
+	                            28   181     0     0    50    25    20     0     4 
+	00021: PUSHW[1]            550 
+	00024: NPUSHB      (20):    24     9    91    25    25    24    16     6     0    23 
+	                             1    91    17     7    16    25    32   101   169    24 
+	00046: CALL       
+	00047: FLIPOFF    
+	00048: SRP0       
+	00049: MIRP[srp0,nmd,rd,0] 
+	00050: ALIGNRP    
+	00051: ALIGNRP    
+	00052: FLIPON     
+	00053: MIRP[srp0,md,rd,1] 
+	00054: ALIGNRP    
+	00055: ALIGNRP    
+	00056: SVTCA[y-axis] 
+	00057: MIAP[rd+ci] 
+	00058: ALIGNRP    
+	00059: ALIGNRP    
+	00060: SRP0       
+	00061: MIRP[nrp0,md,rd,1] 
+	00062: SRP0       
+	00063: MIRP[nrp0,md,rd,1] 
+	00064: MIAP[rd+ci] 
+	00065: SRP0       
+	00066: MIRP[nrp0,md,rd,1] 
+	00067: SVTCA[x-axis] 
+	00068: SRP0       
+	00069: MIRP[srp0,nmd,rd,1] 
+	00070: MDRP[srp0,nmd,rd,0] 
+	00071: ALIGNRP    
+	00072: SVTCA[y-axis] 
+	00073: SRP0       
+	00074: MIRP[nrp0,md,rd,1] 
+	00075: SVTCA[x-axis] 
+	00076: SRP0       
+	00077: MIRP[srp0,nmd,rd,1] 
+	00078: MDRP[srp0,nmd,rd,0] 
+	00079: ALIGNRP    
+	00080: IUP[y]     
+	00081: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:        XDual                         On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:                      Y-Short         On
+	 17:        XDual                         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual                         On
+	 25:  YDual                               On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:                      Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   657,   783)  ->  Abs (   657,   783)
+	  1: Rel (     0,  -856)  ->  Abs (   657,   -73)
+	  2: Rel (     0,   -31)  ->  Abs (   657,  -104)
+	  3: Rel (   -23,   -26)  ->  Abs (   634,  -130)
+	  4: Rel (   -19,     0)  ->  Abs (   615,  -130)
+	  5: Rel (   -19,     0)  ->  Abs (   596,  -130)
+	  6: Rel (   -23,    26)  ->  Abs (   573,  -104)
+	  7: Rel (     0,    31)  ->  Abs (   573,   -73)
+	  8: Rel (     0,   856)  ->  Abs (   573,   783)
+	  9: Rel (  -265,     0)  ->  Abs (   308,   783)
+	 10: Rel (   -30,     0)  ->  Abs (   278,   783)
+	 11: Rel (   -26,    24)  ->  Abs (   252,   807)
+	 12: Rel (     0,    18)  ->  Abs (   252,   825)
+	 13: Rel (     0,    19)  ->  Abs (   252,   844)
+	 14: Rel (    26,    24)  ->  Abs (   278,   868)
+	 15: Rel (    30,     0)  ->  Abs (   308,   868)
+	 16: Rel (   265,    -1)  ->  Abs (   573,   867)
+	 17: Rel (     0,   331)  ->  Abs (   573,  1198)
+	 18: Rel (     0,    31)  ->  Abs (   573,  1229)
+	 19: Rel (    23,    26)  ->  Abs (   596,  1255)
+	 20: Rel (    19,     0)  ->  Abs (   615,  1255)
+	 21: Rel (    19,     0)  ->  Abs (   634,  1255)
+	 22: Rel (    23,   -26)  ->  Abs (   657,  1229)
+	 23: Rel (     0,   -31)  ->  Abs (   657,  1198)
+	 24: Rel (     0,  -331)  ->  Abs (   657,   867)
+	 25: Rel (   264,     0)  ->  Abs (   921,   867)
+	 26: Rel (    31,     0)  ->  Abs (   952,   867)
+	 27: Rel (    26,   -23)  ->  Abs (   978,   844)
+	 28: Rel (     0,   -19)  ->  Abs (   978,   825)
+	 29: Rel (     0,   -18)  ->  Abs (   978,   807)
+	 30: Rel (   -26,   -24)  ->  Abs (   952,   783)
+	 31: Rel (   -31,     0)  ->  Abs (   921,   783)
+
+	Glyph 131: off = 0x000097E0, len = 152
+	  numberOfContours:	2
+	  xMin:			337
+	  yMin:			936
+	  xMax:			892
+	  yMax:			1491
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	76
+	00000: NPUSHB      (11):    16    64    21    23    52    19    64    21    23    52 
+	                            23 
+	00013: PUSHW[1]            -64 
+	00016: PUSHB[4]             21    23    52    14 
+	00021: PUSHW[1]            -64 
+	00024: PUSHB[6]             21    23    52    15    44     9 
+	00031: PUSHW[1]            281 
+	00034: PUSHB[6]             21    44     3    18    44     6 
+	00041: PUSHW[1]            430 
+	00044: PUSHB[6]             12    44     0    25    24   245 
+	00051: PUSHW[2]            335    24 
+	00056: CALL       
+	00057: FLIPOFF    
+	00058: SRP0       
+	00059: MIRP[srp0,nmd,rd,0] 
+	00060: FLIPON     
+	00061: MIRP[nrp0,md,rd,1] 
+	00062: MIRP[srp0,md,rd,1] 
+	00063: MIRP[nrp0,md,rd,1] 
+	00064: SVTCA[y-axis] 
+	00065: MDAP[rd]   
+	00066: MIRP[nrp0,md,rd,1] 
+	00067: MIRP[srp0,md,rd,1] 
+	00068: MIRP[nrp0,md,rd,1] 
+	00069: IUP[y]     
+	00070: IUP[x]     
+	00071: SVTCA[x-axis] 
+	00072: CALL       
+	00073: CALL       
+	00074: CALL       
+	00075: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:        XDual         Y-Short         Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   337,  1214)  ->  Abs (   337,  1214)
+	  1: Rel (     0,   115)  ->  Abs (   337,  1329)
+	  2: Rel (   163,   162)  ->  Abs (   500,  1491)
+	  3: Rel (   114,     0)  ->  Abs (   614,  1491)
+	  4: Rel (   116,     0)  ->  Abs (   730,  1491)
+	  5: Rel (   162,  -162)  ->  Abs (   892,  1329)
+	  6: Rel (     0,  -115)  ->  Abs (   892,  1214)
+	  7: Rel (     0,  -115)  ->  Abs (   892,  1099)
+	  8: Rel (  -163,  -163)  ->  Abs (   729,   936)
+	  9: Rel (  -115,     0)  ->  Abs (   614,   936)
+	 10: Rel (  -114,     0)  ->  Abs (   500,   936)
+	 11: Rel (  -163,   162)  ->  Abs (   337,  1098)
+	 12: Rel (   109,   116)  ->  Abs (   446,  1214)
+	 13: Rel (     0,   -70)  ->  Abs (   446,  1144)
+	 14: Rel (    99,   -99)  ->  Abs (   545,  1045)
+	 15: Rel (    70,     0)  ->  Abs (   615,  1045)
+	 16: Rel (    69,     0)  ->  Abs (   684,  1045)
+	 17: Rel (    99,    99)  ->  Abs (   783,  1144)
+	 18: Rel (     0,    70)  ->  Abs (   783,  1214)
+	 19: Rel (     0,    70)  ->  Abs (   783,  1284)
+	 20: Rel (   -99,    99)  ->  Abs (   684,  1383)
+	 21: Rel (   -69,     0)  ->  Abs (   615,  1383)
+	 22: Rel (   -70,     0)  ->  Abs (   545,  1383)
+	 23: Rel (   -99,   -99)  ->  Abs (   446,  1284)
+
+	Glyph 132: off = 0x00009878, len = 364
+	  numberOfContours:	1
+	  xMin:			228
+	  yMin:			0
+	  xMax:			964
+	  yMax:			1336
+
+	EndPoints
+	---------
+	  0:  58
+
+	  Length of Instructions:	202
+	00000: NPUSHB      (25):    46     8    36    34    24    22    12    10     6    17 
+	                             8    44    52    34    37    32    22    24    20    10 
+	                            26     0     8    13    37 
+	00027: PUSHW[1]            763 
+	00030: PUSHB[4]             32     8    59     4 
+	00035: PUSHW[1]            511 
+	00038: PUSHB[6]             79    26     1    26    85    13 
+	00045: PUSHW[3]            489    20   425 
+	00052: PUSHB[3]             52    59    32 
+	00056: PUSHW[1]            504 
+	00059: PUSHB[4]             48    10    16    17 
+	00064: PUSHW[1]            436 
+	00067: NPUSHB       (9):    40   114    55     8     7    32     1     1     0 
+	00078: PUSHW[1]            416 
+	00081: NPUSHB       (9):    29    33    55    44    45    32    51    51    52 
+	00092: PUSHW[1]            416 
+	00095: PUSHB[6]             55    25    59   117    97    24 
+	00102: CALL       
+	00103: FLIPOFF    
+	00104: SRP0       
+	00105: MIRP[srp0,nmd,rd,0] 
+	00106: FLIPON     
+	00107: MIRP[srp0,nmd,rd,0] 
+	00108: ALIGNRP    
+	00109: SRP0       
+	00110: MIRP[srp0,md,rd,1] 
+	00111: ALIGNRP    
+	00112: SRP0       
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: MIRP[srp0,nmd,rd,0] 
+	00115: ALIGNRP    
+	00116: SRP0       
+	00117: MIRP[srp0,md,rd,1] 
+	00118: ALIGNRP    
+	00119: SRP0       
+	00120: MIRP[nrp0,md,rd,1] 
+	00121: MIRP[srp0,md,rd,1] 
+	00122: ALIGNRP    
+	00123: SVTCA[y-axis] 
+	00124: MIAP[rd+ci] 
+	00125: MIRP[srp0,md,rd,1] 
+	00126: MIRP[srp0,md,rd,1] 
+	00127: MIRP[srp0,nmd,rd,0] 
+	00128: MIRP[srp0,md,rd,1] 
+	00129: MIRP[srp0,md,rd,1] 
+	00130: DELTAP1    
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: MIRP[nrp0,md,rd,1] 
+	00133: SRP0       
+	00134: MIRP[nrp0,nmd,rd,0] 
+	00135: SRP1       
+	00136: SRP2       
+	00137: IP         
+	00138: SRP2       
+	00139: IP         
+	00140: SRP1       
+	00141: IP         
+	00142: IP         
+	00143: SRP1       
+	00144: SRP2       
+	00145: IP         
+	00146: SRP2       
+	00147: IP         
+	00148: SVTCA[x-axis] 
+	00149: SRP1       
+	00150: SRP2       
+	00151: SLOOP      
+	00152: IP         
+	00153: IUP[y]     
+	00154: IUP[x]     
+	00155: RS         
+	00156: JROF       
+	00157: NPUSHB      (30):    53    58    27    31    57    38    27    58    29    35 
+	                             0    31    53    29    35     0    28    56    26    35 
+	                             1    58     0    30    54    32    35     0    53    52 
+	00189: SVTCA[y-axis] 
+	00190: SRP0       
+	00191: ALIGNRP    
+	00192: CALL       
+	00193: SRP0       
+	00194: ALIGNRP    
+	00195: CALL       
+	00196: SVTCA[x-axis] 
+	00197: CALL       
+	00198: CALL       
+	00199: CALL       
+	00200: FLIPRGON   
+	00201: FLIPRGON   
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short         Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:                      Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:        XDual         Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:                      Y-Short X-Short On
+	 43:                      Y-Short X-Short Off
+	 44:                      Y-Short X-Short On
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         Off
+	 47:                      Y-Short X-Short Off
+	 48:  YDual                       X-Short On
+	 49:  YDual                       X-Short Off
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         On
+	 53:  YDual               Y-Short X-Short Off
+	 54:  YDual               Y-Short X-Short Off
+	 55:  YDual XDual         Y-Short         On
+	 56:  YDual XDual         Y-Short         Off
+	 57:  YDual XDual         Y-Short X-Short On
+	 58:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   571,  1030)  ->  Abs (   571,  1030)
+	  1: Rel (     0,   250)  ->  Abs (   571,  1280)
+	  2: Rel (     0,    30)  ->  Abs (   571,  1310)
+	  3: Rel (    23,    26)  ->  Abs (   594,  1336)
+	  4: Rel (    19,     0)  ->  Abs (   613,  1336)
+	  5: Rel (    19,     0)  ->  Abs (   632,  1336)
+	  6: Rel (    23,   -26)  ->  Abs (   655,  1310)
+	  7: Rel (     0,   -30)  ->  Abs (   655,  1280)
+	  8: Rel (     0,  -247)  ->  Abs (   655,  1033)
+	  9: Rel (   128,    -4)  ->  Abs (   783,  1029)
+	 10: Rel (    90,   -71)  ->  Abs (   873,   958)
+	 11: Rel (     5,    17)  ->  Abs (   878,   975)
+	 12: Rel (    22,    17)  ->  Abs (   900,   992)
+	 13: Rel (    14,     0)  ->  Abs (   914,   992)
+	 14: Rel (    19,     0)  ->  Abs (   933,   992)
+	 15: Rel (    24,   -26)  ->  Abs (   957,   966)
+	 16: Rel (     0,   -25)  ->  Abs (   957,   941)
+	 17: Rel (     0,  -127)  ->  Abs (   957,   814)
+	 18: Rel (     0,   -31)  ->  Abs (   957,   783)
+	 19: Rel (   -23,   -26)  ->  Abs (   934,   757)
+	 20: Rel (   -19,     0)  ->  Abs (   915,   757)
+	 21: Rel (   -17,     0)  ->  Abs (   898,   757)
+	 22: Rel (   -22,    22)  ->  Abs (   876,   779)
+	 23: Rel (    -3,    26)  ->  Abs (   873,   805)
+	 24: Rel (    -8,    60)  ->  Abs (   865,   865)
+	 25: Rel (  -121,    87)  ->  Abs (   744,   952)
+	 26: Rel (  -109,     0)  ->  Abs (   635,   952)
+	 27: Rel (  -144,     0)  ->  Abs (   491,   952)
+	 28: Rel (  -179,  -174)  ->  Abs (   312,   778)
+	 29: Rel (     0,  -131)  ->  Abs (   312,   647)
+	 30: Rel (     0,  -129)  ->  Abs (   312,   518)
+	 31: Rel (   178,  -175)  ->  Abs (   490,   343)
+	 32: Rel (   136,     0)  ->  Abs (   626,   343)
+	 33: Rel (    67,     0)  ->  Abs (   693,   343)
+	 34: Rel (   144,    46)  ->  Abs (   837,   389)
+	 35: Rel (    50,    41)  ->  Abs (   887,   430)
+	 36: Rel (    21,    17)  ->  Abs (   908,   447)
+	 37: Rel (    16,     0)  ->  Abs (   924,   447)
+	 38: Rel (    18,     0)  ->  Abs (   942,   447)
+	 39: Rel (    22,   -23)  ->  Abs (   964,   424)
+	 40: Rel (     0,   -18)  ->  Abs (   964,   406)
+	 41: Rel (     0,   -29)  ->  Abs (   964,   377)
+	 42: Rel (   -51,   -32)  ->  Abs (   913,   345)
+	 43: Rel (  -117,   -74)  ->  Abs (   796,   271)
+	 44: Rel (  -141,    -8)  ->  Abs (   655,   263)
+	 45: Rel (     0,  -207)  ->  Abs (   655,    56)
+	 46: Rel (     0,   -30)  ->  Abs (   655,    26)
+	 47: Rel (   -23,   -26)  ->  Abs (   632,     0)
+	 48: Rel (   -19,     0)  ->  Abs (   613,     0)
+	 49: Rel (   -19,     0)  ->  Abs (   594,     0)
+	 50: Rel (   -23,    26)  ->  Abs (   571,    26)
+	 51: Rel (     0,    30)  ->  Abs (   571,    56)
+	 52: Rel (     0,   207)  ->  Abs (   571,   263)
+	 53: Rel (  -149,    18)  ->  Abs (   422,   281)
+	 54: Rel (  -194,   218)  ->  Abs (   228,   499)
+	 55: Rel (     0,   147)  ->  Abs (   228,   646)
+	 56: Rel (     0,   160)  ->  Abs (   228,   806)
+	 57: Rel (   110,   110)  ->  Abs (   338,   916)
+	 58: Rel (    81,    81)  ->  Abs (   419,   997)
+
+	Glyph 133: off = 0x000099E4, len = 426
+	  numberOfContours:	1
+	  xMin:			124
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1202
+
+	EndPoints
+	---------
+	  0:  69
+
+	  Length of Instructions:	238
+	00000: NPUSHB      (86):    46    42   244    42     2     4    42    36    42    93 
+	                            48    88    49     4    42    49    83    69   102    69 
+	                           184    35   217    39   223    49   215    57   233    23 
+	                           233    35   250    35    10    43    61    36    69    52 
+	                            69    67    69     4    20    41    21    42    51    42 
+	                            67    42    76    48    82    42    86    51   100    42 
+	                           107    48   207    42    10    22    21    19     3    17 
+	                            35    27    57    65     4    67    37    65    27    64 
+	                            28     3     5     7     0    43 
+	00088: PUSHW[1]            773 
+	00091: NPUSHB      (11):    50    44    40    58    34    36    64    64    28     1 
+	                            28 
+	00104: PUSHW[1]            282 
+	00107: PUSHB[5]             14     7   210     0    20 
+	00113: PUSHW[1]            771 
+	00116: NPUSHB      (12):     1     1     0    36    13    14     4    44    10    46 
+	                            77    10 
+	00130: PUSHW[3]            353    43   281 
+	00137: NPUSHB      (31):    37    67    44    25   132    53    44    37   210    17 
+	                            61   182    17    62    15    31    47    31   127    31 
+	                             3    31    25    70    40     3    14    10   134   129 
+	                            24 
+	00170: CALL       
+	00171: SVTCA[y-axis] 
+	00172: MIAP[rd+ci] 
+	00173: MIAP[rd+ci] 
+	00174: SVTCA[x-axis] 
+	00175: FLIPOFF    
+	00176: SRP0       
+	00177: MIRP[srp0,nmd,rd,0] 
+	00178: DELTAP1    
+	00179: FLIPON     
+	00180: MIRP[nrp0,nmd,rd,0] 
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: SRP0       
+	00183: MIRP[srp0,nmd,rd,0] 
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: MIRP[srp0,nmd,rd,0] 
+	00186: MIRP[nrp0,md,rd,1] 
+	00187: SRP0       
+	00188: MIRP[srp0,md,rd,1] 
+	00189: MIRP[nrp0,nmd,rd,0] 
+	00190: SVTCA[y-axis] 
+	00191: MIRP[nrp0,md,rd,1] 
+	00192: SVTCA[x-axis] 
+	00193: SRP0       
+	00194: MIRP[nrp0,md,rd,1] 
+	00195: SVTCA[y-axis] 
+	00196: SRP0       
+	00197: ALIGNRP    
+	00198: MIRP[srp0,md,rd,1] 
+	00199: ALIGNRP    
+	00200: SRP0       
+	00201: MIRP[nrp0,nmd,rd,0] 
+	00202: SRP0       
+	00203: MIRP[nrp0,nmd,rd,0] 
+	00204: SRP0       
+	00205: MIRP[srp0,nmd,rd,0] 
+	00206: DELTAP1    
+	00207: ALIGNRP    
+	00208: MIRP[srp0,md,rd,1] 
+	00209: ALIGNRP    
+	00210: SRP0       
+	00211: MIRP[srp0,md,rd,1] 
+	00212: MIRP[nrp0,nmd,rd,0] 
+	00213: SRP1       
+	00214: SRP2       
+	00215: IP         
+	00216: IP         
+	00217: SRP1       
+	00218: SRP2       
+	00219: IP         
+	00220: IP         
+	00221: SVTCA[x-axis] 
+	00222: SRP1       
+	00223: SRP2       
+	00224: SLOOP      
+	00225: IP         
+	00226: SRP2       
+	00227: SLOOP      
+	00228: IP         
+	00229: IUP[y]     
+	00230: IUP[x]     
+	00231: SVTCA[x-axis] 
+	00232: DELTAP2    
+	00233: DELTAP1    
+	00234: DELTAP1    
+	00235: SVTCA[y-axis] 
+	00236: DELTAP2    
+	00237: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual                               On
+	  2:  YDual XDual                 X-Short Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                               On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:        XDual         Y-Short X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:                      Y-Short X-Short Off
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:  YDual               Y-Short X-Short On
+	 49:  YDual               Y-Short X-Short Off
+	 50:  YDual                       X-Short On
+	 51:  YDual                       X-Short Off
+	 52:                      Y-Short X-Short Off
+	 53:        XDual         Y-Short         On
+	 54:        XDual         Y-Short         Off
+	 55:        XDual         Y-Short X-Short On
+	 56:        XDual         Y-Short X-Short Off
+	 57:        XDual         Y-Short X-Short On
+	 58:  YDual XDual                 X-Short On
+	 59:  YDual XDual                 X-Short Off
+	 60:        XDual         Y-Short X-Short Off
+	 61:        XDual         Y-Short         On
+	 62:        XDual         Y-Short         Off
+	 63:                      Y-Short X-Short Off
+	 64:  YDual                       X-Short On
+	 65:  YDual                       X-Short On
+	 66:        XDual         Y-Short X-Short Off
+	 67:        XDual         Y-Short         On
+	 68:        XDual         Y-Short         Off
+	 69:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   372,    84)  ->  Abs (   372,    84)
+	  1: Rel (   519,     0)  ->  Abs (   891,    84)
+	  2: Rel (    38,     0)  ->  Abs (   929,    84)
+	  3: Rel (    53,    55)  ->  Abs (   982,   139)
+	  4: Rel (     4,    53)  ->  Abs (   986,   192)
+	  5: Rel (     2,    24)  ->  Abs (   988,   216)
+	  6: Rel (    23,    23)  ->  Abs (  1011,   239)
+	  7: Rel (    17,     0)  ->  Abs (  1028,   239)
+	  8: Rel (    18,     0)  ->  Abs (  1046,   239)
+	  9: Rel (    25,   -25)  ->  Abs (  1071,   214)
+	 10: Rel (     0,   -20)  ->  Abs (  1071,   194)
+	 11: Rel (     0,   -83)  ->  Abs (  1071,   111)
+	 12: Rel (  -106,  -111)  ->  Abs (   965,     0)
+	 13: Rel (   -69,     0)  ->  Abs (   896,     0)
+	 14: Rel (  -669,     0)  ->  Abs (   227,     0)
+	 15: Rel (   -30,     0)  ->  Abs (   197,     0)
+	 16: Rel (   -26,    24)  ->  Abs (   171,    24)
+	 17: Rel (     0,    18)  ->  Abs (   171,    42)
+	 18: Rel (     0,    17)  ->  Abs (   171,    59)
+	 19: Rel (    24,    24)  ->  Abs (   195,    83)
+	 20: Rel (    23,     0)  ->  Abs (   218,    83)
+	 21: Rel (    43,     2)  ->  Abs (   261,    85)
+	 22: Rel (    36,    38)  ->  Abs (   297,   123)
+	 23: Rel (    53,    54)  ->  Abs (   350,   177)
+	 24: Rel (    58,   192)  ->  Abs (   408,   369)
+	 25: Rel (     0,    82)  ->  Abs (   408,   451)
+	 26: Rel (     0,    67)  ->  Abs (   408,   518)
+	 27: Rel (   -12,    49)  ->  Abs (   396,   567)
+	 28: Rel (  -216,     0)  ->  Abs (   180,   567)
+	 29: Rel (   -30,     0)  ->  Abs (   150,   567)
+	 30: Rel (   -26,    23)  ->  Abs (   124,   590)
+	 31: Rel (     0,    19)  ->  Abs (   124,   609)
+	 32: Rel (     0,    19)  ->  Abs (   124,   628)
+	 33: Rel (    26,    23)  ->  Abs (   150,   651)
+	 34: Rel (    30,     0)  ->  Abs (   180,   651)
+	 35: Rel (   195,     0)  ->  Abs (   375,   651)
+	 36: Rel (   -57,   177)  ->  Abs (   318,   828)
+	 37: Rel (     0,    76)  ->  Abs (   318,   904)
+	 38: Rel (     0,   122)  ->  Abs (   318,  1026)
+	 39: Rel (   174,   176)  ->  Abs (   492,  1202)
+	 40: Rel (   120,     0)  ->  Abs (   612,  1202)
+	 41: Rel (   105,     0)  ->  Abs (   717,  1202)
+	 42: Rel (   164,  -134)  ->  Abs (   881,  1068)
+	 43: Rel (     0,   -40)  ->  Abs (   881,  1028)
+	 44: Rel (     0,   -14)  ->  Abs (   881,  1014)
+	 45: Rel (   -26,   -25)  ->  Abs (   855,   989)
+	 46: Rel (   -16,     0)  ->  Abs (   839,   989)
+	 47: Rel (   -18,     0)  ->  Abs (   821,   989)
+	 48: Rel (   -20,    25)  ->  Abs (   801,  1014)
+	 49: Rel (   -79,   103)  ->  Abs (   722,  1117)
+	 50: Rel (  -107,     0)  ->  Abs (   615,  1117)
+	 51: Rel (   -87,     0)  ->  Abs (   528,  1117)
+	 52: Rel (  -125,  -126)  ->  Abs (   403,   991)
+	 53: Rel (     0,   -87)  ->  Abs (   403,   904)
+	 54: Rel (     0,   -35)  ->  Abs (   403,   869)
+	 55: Rel (     9,   -43)  ->  Abs (   412,   826)
+	 56: Rel (     2,    -7)  ->  Abs (   414,   819)
+	 57: Rel (    47,  -168)  ->  Abs (   461,   651)
+	 58: Rel (   205,     0)  ->  Abs (   666,   651)
+	 59: Rel (    30,     0)  ->  Abs (   696,   651)
+	 60: Rel (    26,   -23)  ->  Abs (   722,   628)
+	 61: Rel (     0,   -19)  ->  Abs (   722,   609)
+	 62: Rel (     0,   -19)  ->  Abs (   722,   590)
+	 63: Rel (   -26,   -23)  ->  Abs (   696,   567)
+	 64: Rel (   -30,     0)  ->  Abs (   666,   567)
+	 65: Rel (  -186,     0)  ->  Abs (   480,   567)
+	 66: Rel (    10,   -62)  ->  Abs (   490,   505)
+	 67: Rel (     0,   -59)  ->  Abs (   490,   446)
+	 68: Rel (     0,   -96)  ->  Abs (   490,   350)
+	 69: Rel (   -59,  -191)  ->  Abs (   431,   159)
+
+	Glyph 134: off = 0x00009B8E, len = 480
+	  numberOfContours:	2
+	  xMin:			143
+	  yMin:			-130
+	  xMax:			1085
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  61
+	  1:  86
+
+	  Length of Instructions:	233
+	00000: NPUSHB      (56):     9    72    39    72    42    85    55    19    60    48 
+	                            59    50    75    48     7    11    83    37    28    41 
+	                            59   123    19   138    19     5     7     1     4   148 
+	                             8     8    48     1    38    32    35   148    39    39 
+	                            48    32    16    48    84    84    74    55    48    62 
+	                            48    48    71    71    74    62 
+	00058: PUSHW[1]            317 
+	00061: NPUSHB      (11):     9     9     4   213     8    48    61     0    24    48 
+	                            74 
+	00074: PUSHW[1]            317 
+	00077: NPUSHB      (27):    40    40    35   213    39    48    30    31    63     0 
+	                             1     0    31    79    48    21   178    24    48    74 
+	                            62    26    48    43    38    48    43 
+	00106: PUSHW[1]            326 
+	00109: PUSHB[3]             32    32    31 
+	00113: PUSHW[1]            487 
+	00116: PUSHB[6]             87     8     7    48     0     1 
+	00123: PUSHW[1]            326 
+	00126: NPUSHB      (22):    64   189    12    55    62    57    48    12   178    67 
+	                            48    15    52    31    52     2    52    25    87    80 
+	                           129    24 
+	00150: PUSHW[1]            356 
+	00153: SCANCTRL   
+	00154: CALL       
+	00155: FLIPOFF    
+	00156: SRP0       
+	00157: MIRP[srp0,nmd,rd,0] 
+	00158: DELTAP1    
+	00159: FLIPON     
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: MIRP[srp0,md,rd,1] 
+	00162: MIRP[srp0,md,rd,1] 
+	00163: MIRP[nrp0,nmd,rd,0] 
+	00164: SRP0       
+	00165: MIRP[nrp0,nmd,rd,1] 
+	00166: MIRP[srp0,nmd,rd,0] 
+	00167: ALIGNRP    
+	00168: MIRP[srp0,md,rd,1] 
+	00169: ALIGNRP    
+	00170: SRP0       
+	00171: MIRP[srp0,nmd,rd,2] 
+	00172: ALIGNRP    
+	00173: SRP0       
+	00174: MIRP[nrp0,nmd,rd,0] 
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: SRP0       
+	00177: MIRP[nrp0,md,rd,1] 
+	00178: MIRP[srp0,nmd,rd,0] 
+	00179: MIRP[nrp0,md,rd,1] 
+	00180: MIRP[srp0,md,rd,1] 
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: SVTCA[y-axis] 
+	00183: MDAP[rd]   
+	00184: MDAP[rd]   
+	00185: DELTAP1    
+	00186: SRP0       
+	00187: ALIGNRP    
+	00188: MIRP[srp0,md,rd,1] 
+	00189: MIRP[nrp0,nmd,rd,0] 
+	00190: ALIGNRP    
+	00191: SRP0       
+	00192: MIRP[srp0,nmd,rd,0] 
+	00193: MIRP[nrp0,md,rd,1] 
+	00194: SRP0       
+	00195: ALIGNRP    
+	00196: MIRP[srp0,md,rd,1] 
+	00197: MIRP[nrp0,nmd,rd,0] 
+	00198: ALIGNRP    
+	00199: SRP0       
+	00200: MIRP[srp0,nmd,rd,0] 
+	00201: SRP1       
+	00202: IP         
+	00203: MDAP[rd]   
+	00204: MIRP[nrp0,md,rd,1] 
+	00205: SRP0       
+	00206: MIRP[nrp0,md,rd,1] 
+	00207: SRP2       
+	00208: IP         
+	00209: MDAP[rd]   
+	00210: MIRP[nrp0,md,rd,1] 
+	00211: SVTCA[x-axis] 
+	00212: SRP0       
+	00213: MIRP[nrp0,md,rd,1] 
+	00214: SVTCA[y-axis] 
+	00215: SRP0       
+	00216: MIRP[srp0,nmd,rd,1] 
+	00217: MDRP[srp0,nmd,rd,0] 
+	00218: ALIGNRP    
+	00219: SVTCA[x-axis] 
+	00220: SRP0       
+	00221: MIRP[nrp0,md,rd,1] 
+	00222: SVTCA[y-axis] 
+	00223: SRP0       
+	00224: MIRP[srp0,nmd,rd,1] 
+	00225: MDRP[srp0,nmd,rd,0] 
+	00226: ALIGNRP    
+	00227: IUP[y]     
+	00228: IUP[x]     
+	00229: SVTCA[x-axis] 
+	00230: DELTAP1    
+	00231: SVTCA[y-axis] 
+	00232: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:        XDual         Y-Short         Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:                      Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short On
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:                      Y-Short X-Short Off
+	 29:                      Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                               On
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         On
+	 40:  YDual                               On
+	 41:  YDual XDual                 X-Short Off
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual               Y-Short X-Short On
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual               Y-Short X-Short On
+	 48:  YDual               Y-Short X-Short On
+	 49:  YDual               Y-Short X-Short Off
+	 50:  YDual               Y-Short X-Short On
+	 51:  YDual               Y-Short X-Short Off
+	 52:  YDual XDual         Y-Short         On
+	 53:  YDual XDual         Y-Short         Off
+	 54:  YDual XDual         Y-Short X-Short Off
+	 55:  YDual XDual         Y-Short X-Short On
+	 56:  YDual               Y-Short X-Short Off
+	 57:  YDual XDual         Y-Short         On
+	 58:  YDual XDual         Y-Short         Off
+	 59:  YDual XDual         Y-Short X-Short Off
+	 60:  YDual XDual         Y-Short X-Short Off
+	 61:  YDual XDual                 X-Short On
+	 62:                              X-Short On
+	 63:                      Y-Short X-Short Off
+	 64:  YDual                       X-Short On
+	 65:  YDual                       X-Short Off
+	 66:                      Y-Short X-Short Off
+	 67:        XDual         Y-Short         On
+	 68:        XDual         Y-Short         Off
+	 69:        XDual         Y-Short X-Short On
+	 70:        XDual         Y-Short X-Short Off
+	 71:        XDual         Y-Short X-Short On
+	 72:        XDual         Y-Short X-Short On
+	 73:        XDual         Y-Short X-Short Off
+	 74:        XDual         Y-Short X-Short On
+	 75:  YDual XDual         Y-Short X-Short Off
+	 76:  YDual XDual         Y-Short X-Short On
+	 77:  YDual XDual         Y-Short X-Short Off
+	 78:  YDual XDual         Y-Short X-Short Off
+	 79:  YDual XDual         Y-Short         On
+	 80:  YDual XDual         Y-Short         Off
+	 81:  YDual               Y-Short X-Short On
+	 82:  YDual               Y-Short X-Short Off
+	 83:  YDual               Y-Short X-Short On
+	 84:  YDual               Y-Short X-Short On
+	 85:  YDual               Y-Short X-Short Off
+	 86:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   997,  1255)  ->  Abs (   997,  1255)
+	  1: Rel (     0,  -217)  ->  Abs (   997,  1038)
+	  2: Rel (     0,   -21)  ->  Abs (   997,  1017)
+	  3: Rel (   -16,   -19)  ->  Abs (   981,   998)
+	  4: Rel (   -13,     0)  ->  Abs (   968,   998)
+	  5: Rel (   -14,     0)  ->  Abs (   954,   998)
+	  6: Rel (   -17,    19)  ->  Abs (   937,  1017)
+	  7: Rel (     0,    21)  ->  Abs (   937,  1038)
+	  8: Rel (     0,   156)  ->  Abs (   937,  1194)
+	  9: Rel (  -350,     0)  ->  Abs (   587,  1194)
+	 10: Rel (   -78,     0)  ->  Abs (   509,  1194)
+	 11: Rel (  -114,  -112)  ->  Abs (   395,  1082)
+	 12: Rel (     0,   -68)  ->  Abs (   395,  1014)
+	 13: Rel (     0,   -49)  ->  Abs (   395,   965)
+	 14: Rel (    37,   -44)  ->  Abs (   432,   921)
+	 15: Rel (    54,   -65)  ->  Abs (   486,   856)
+	 16: Rel (   214,  -122)  ->  Abs (   700,   734)
+	 17: Rel (   113,   -64)  ->  Abs (   813,   670)
+	 18: Rel (   164,   -94)  ->  Abs (   977,   576)
+	 19: Rel (    54,   -62)  ->  Abs (  1031,   514)
+	 20: Rel (    54,   -63)  ->  Abs (  1085,   451)
+	 21: Rel (     0,   -67)  ->  Abs (  1085,   384)
+	 22: Rel (     0,   -65)  ->  Abs (  1085,   319)
+	 23: Rel (  -115,   -98)  ->  Abs (   970,   221)
+	 24: Rel (  -109,    -1)  ->  Abs (   861,   220)
+	 25: Rel (    34,   -53)  ->  Abs (   895,   167)
+	 26: Rel (     0,   -54)  ->  Abs (   895,   113)
+	 27: Rel (     0,   -59)  ->  Abs (   895,    54)
+	 28: Rel (   -59,  -113)  ->  Abs (   836,   -59)
+	 29: Rel (  -118,   -71)  ->  Abs (   718,  -130)
+	 30: Rel (   -80,     0)  ->  Abs (   638,  -130)
+	 31: Rel (  -406,     0)  ->  Abs (   232,  -130)
+	 32: Rel (     0,   219)  ->  Abs (   232,    89)
+	 33: Rel (     0,    21)  ->  Abs (   232,   110)
+	 34: Rel (    17,    19)  ->  Abs (   249,   129)
+	 35: Rel (    13,     0)  ->  Abs (   262,   129)
+	 36: Rel (    14,     0)  ->  Abs (   276,   129)
+	 37: Rel (    17,   -19)  ->  Abs (   293,   110)
+	 38: Rel (     0,   -21)  ->  Abs (   293,    89)
+	 39: Rel (     0,  -158)  ->  Abs (   293,   -69)
+	 40: Rel (   344,     0)  ->  Abs (   637,   -69)
+	 41: Rel (   100,     0)  ->  Abs (   737,   -69)
+	 42: Rel (    98,   120)  ->  Abs (   835,    51)
+	 43: Rel (     0,    56)  ->  Abs (   835,   107)
+	 44: Rel (     0,    48)  ->  Abs (   835,   155)
+	 45: Rel (   -38,    48)  ->  Abs (   797,   203)
+	 46: Rel (   -51,    64)  ->  Abs (   746,   267)
+	 47: Rel (  -182,   105)  ->  Abs (   564,   372)
+	 48: Rel (  -130,    75)  ->  Abs (   434,   447)
+	 49: Rel (  -174,   101)  ->  Abs (   260,   548)
+	 50: Rel (   -58,    67)  ->  Abs (   202,   615)
+	 51: Rel (   -59,    67)  ->  Abs (   143,   682)
+	 52: Rel (     0,    61)  ->  Abs (   143,   743)
+	 53: Rel (     0,    62)  ->  Abs (   143,   805)
+	 54: Rel (   112,    96)  ->  Abs (   255,   901)
+	 55: Rel (   114,     6)  ->  Abs (   369,   907)
+	 56: Rel (   -34,    51)  ->  Abs (   335,   958)
+	 57: Rel (     0,    48)  ->  Abs (   335,  1006)
+	 58: Rel (     0,    65)  ->  Abs (   335,  1071)
+	 59: Rel (    60,   108)  ->  Abs (   395,  1179)
+	 60: Rel (   117,    76)  ->  Abs (   512,  1255)
+	 61: Rel (    70,     0)  ->  Abs (   582,  1255)
+	 62: Rel (  -165,  -406)  ->  Abs (   417,   849)
+	 63: Rel (   -14,    -3)  ->  Abs (   403,   846)
+	 64: Rel (   -20,     0)  ->  Abs (   383,   846)
+	 65: Rel (   -93,     0)  ->  Abs (   290,   846)
+	 66: Rel (   -87,   -66)  ->  Abs (   203,   780)
+	 67: Rel (     0,   -41)  ->  Abs (   203,   739)
+	 68: Rel (     0,   -45)  ->  Abs (   203,   694)
+	 69: Rel (    58,   -54)  ->  Abs (   261,   640)
+	 70: Rel (    57,   -55)  ->  Abs (   318,   585)
+	 71: Rel (   158,   -91)  ->  Abs (   476,   494)
+	 72: Rel (   125,   -73)  ->  Abs (   601,   421)
+	 73: Rel (   155,   -90)  ->  Abs (   756,   331)
+	 74: Rel (    58,   -56)  ->  Abs (   814,   275)
+	 75: Rel (    10,     6)  ->  Abs (   824,   281)
+	 76: Rel (    21,     1)  ->  Abs (   845,   282)
+	 77: Rel (   100,     2)  ->  Abs (   945,   284)
+	 78: Rel (    80,    61)  ->  Abs (  1025,   345)
+	 79: Rel (     0,    37)  ->  Abs (  1025,   382)
+	 80: Rel (     0,    38)  ->  Abs (  1025,   420)
+	 81: Rel (   -36,    45)  ->  Abs (   989,   465)
+	 82: Rel (   -49,    62)  ->  Abs (   940,   527)
+	 83: Rel (  -151,    86)  ->  Abs (   789,   613)
+	 84: Rel (  -130,    73)  ->  Abs (   659,   686)
+	 85: Rel (  -109,    62)  ->  Abs (   550,   748)
+	 86: Rel (   -87,    60)  ->  Abs (   463,   808)
+
+	Glyph 135: off = 0x00009D6E, len = 96
+	  numberOfContours:	1
+	  xMin:			367
+	  yMin:			389
+	  xMax:			862
+	  yMax:			884
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	50
+	00000: PUSHW[2]              3   521 
+	00005: PUSHB[3]              9     7     0 
+	00009: PUSHW[1]            321 
+	00012: NPUSHB      (18):   207     6     1    15     6    79     6   111     6   159 
+	                             6   160     6     5     6    25    12    72 
+	00032: PUSHW[2]            382    24 
+	00037: CALL       
+	00038: FLIPOFF    
+	00039: SRP0       
+	00040: MIRP[srp0,nmd,rd,0] 
+	00041: DELTAP1    
+	00042: DELTAP2    
+	00043: FLIPON     
+	00044: MIRP[nrp0,md,rd,1] 
+	00045: SVTCA[y-axis] 
+	00046: MIAP[rd+ci] 
+	00047: MIRP[nrp0,md,rd,1] 
+	00048: IUP[y]     
+	00049: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   862,   637)  ->  Abs (   862,   637)
+	  1: Rel (     0,  -103)  ->  Abs (   862,   534)
+	  2: Rel (  -146,  -145)  ->  Abs (   716,   389)
+	  3: Rel (  -102,     0)  ->  Abs (   614,   389)
+	  4: Rel (  -102,     0)  ->  Abs (   512,   389)
+	  5: Rel (  -145,   145)  ->  Abs (   367,   534)
+	  6: Rel (     0,   103)  ->  Abs (   367,   637)
+	  7: Rel (     0,   102)  ->  Abs (   367,   739)
+	  8: Rel (   145,   145)  ->  Abs (   512,   884)
+	  9: Rel (   102,     0)  ->  Abs (   614,   884)
+	 10: Rel (   103,     0)  ->  Abs (   717,   884)
+	 11: Rel (   145,  -145)  ->  Abs (   862,   739)
+
+	Glyph 136: off = 0x00009DCE, len = 416
+	  numberOfContours:	2
+	  xMin:			171
+	  yMin:			-130
+	  xMax:			1066
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  56
+	  1:  67
+
+	  Length of Instructions:	225
+	00000: NPUSHB      (15):    68    37    70    39     2   103    47   118    47   230 
+	                            47     3     9    16    12 
+	00017: PUSHW[1]            270 
+	00020: NPUSHB      (37):    16    16    48     9    33    27    30   242    34    34 
+	                            48    27    56    50     0    53     1    53   234     0 
+	                             0    48    50     2     8     0     5     1     5   234 
+	                             1     1    48     8    26    19    23 
+	00059: PUSHW[1]            270 
+	00062: NPUSHB      (20):    19    19    48    26    42    61    41     2    48     8 
+	                             8    33    48    27    27     9    26    35    48    67 
+	00084: PUSHW[1]            778 
+	00087: NPUSHB      (26):    50     0    17    18    57    48    50    50    49     0 
+	                             0     1    48    16    16    17   232    18    18    19 
+	                            48    57     0    34     1    34 
+	00115: PUSHW[1]            408 
+	00118: NPUSHB      (13):    61   193    16    41    32    41    48    41     3    41 
+	                           232    68    99 
+	00133: PUSHW[2]            335    24 
+	00138: CALL       
+	00139: SRP0       
+	00140: MIRP[srp0,nmd,rd,2] 
+	00141: DELTAP1    
+	00142: MIRP[srp0,md,rd,1] 
+	00143: MIRP[srp0,nmd,rd,2] 
+	00144: DELTAP1    
+	00145: ALIGNRP    
+	00146: MIRP[srp0,md,rd,1] 
+	00147: ALIGNRP    
+	00148: SRP0       
+	00149: MIRP[srp0,md,rd,2] 
+	00150: ALIGNRP    
+	00151: SRP0       
+	00152: MIRP[srp0,md,rd,1] 
+	00153: ALIGNRP    
+	00154: SVTCA[y-axis] 
+	00155: MIAP[rd+ci] 
+	00156: ALIGNRP    
+	00157: SRP0       
+	00158: MIRP[srp0,md,rd,1] 
+	00159: ALIGNRP    
+	00160: ALIGNRP    
+	00161: ALIGNRP    
+	00162: SRP0       
+	00163: MIRP[srp0,nmd,rd,0] 
+	00164: MIRP[nrp0,md,rd,1] 
+	00165: MDAP[rd]   
+	00166: ALIGNRP    
+	00167: ALIGNRP    
+	00168: SRP0       
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: ALIGNRP    
+	00171: SRP0       
+	00172: MIRP[nrp0,md,rd,1] 
+	00173: SVTCA[x-axis] 
+	00174: SRP1       
+	00175: SRP2       
+	00176: IP         
+	00177: SVTCA[y-axis] 
+	00178: SRP0       
+	00179: MIRP[nrp0,md,rd,1] 
+	00180: SVTCA[x-axis] 
+	00181: SRP0       
+	00182: MIRP[srp0,nmd,rd,1] 
+	00183: SRP0       
+	00184: ALIGNRP    
+	00185: SVTCA[y-axis] 
+	00186: SRP0       
+	00187: MIRP[nrp0,md,rd,1] 
+	00188: SVTCA[x-axis] 
+	00189: SRP0       
+	00190: MIRP[srp0,nmd,rd,1] 
+	00191: DELTAP1    
+	00192: MDRP[srp0,nmd,rd,0] 
+	00193: ALIGNRP    
+	00194: SVTCA[y-axis] 
+	00195: SRP0       
+	00196: MIRP[nrp0,md,rd,1] 
+	00197: SVTCA[x-axis] 
+	00198: SRP0       
+	00199: MIRP[srp0,nmd,rd,1] 
+	00200: DELTAP1    
+	00201: MDRP[srp0,nmd,rd,0] 
+	00202: ALIGNRP    
+	00203: SVTCA[y-axis] 
+	00204: SRP0       
+	00205: MIRP[nrp0,md,rd,1] 
+	00206: SVTCA[x-axis] 
+	00207: SRP0       
+	00208: MIRP[srp0,nmd,rd,1] 
+	00209: MDRP[srp0,nmd,rd,0] 
+	00210: ALIGNRP    
+	00211: SVTCA[y-axis] 
+	00212: SRP0       
+	00213: MIRP[nrp0,md,rd,1] 
+	00214: SVTCA[x-axis] 
+	00215: SRP0       
+	00216: MIRP[srp0,nmd,rd,1] 
+	00217: SRP0       
+	00218: ALIGNRP    
+	00219: IUP[y]     
+	00220: IUP[x]     
+	00221: SVTCA[x-axis] 
+	00222: DELTAP1    
+	00223: SVTCA[y-axis] 
+	00224: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:        XDual                         On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:                      Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                               On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short On
+	 35:        XDual                         On
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual               Y-Short X-Short On
+	 38:  YDual       Rep-  2 Y-Short X-Short Off
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual XDual         Y-Short X-Short On
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short X-Short On
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual                               On
+	 51:  YDual XDual                 X-Short Off
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short         On
+	 54:        XDual         Y-Short         Off
+	 55:                      Y-Short X-Short Off
+	 56:  YDual                       X-Short On
+	 57:  YDual                               On
+	 58:                      Y-Short X-Short Off
+	 59:                      Y-Short X-Short Off
+	 60:        XDual         Y-Short         On
+	 61:        XDual         Y-Short         On
+	 62:        XDual         Y-Short         Off
+	 63:        XDual         Y-Short X-Short On
+	 64:        XDual         Y-Short X-Short Off
+	 65:        XDual         Y-Short X-Short On
+	 66:        XDual         Y-Short X-Short Off
+	 67:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   895,  1194)  ->  Abs (   895,  1194)
+	  1: Rel (     0, -1263)  ->  Abs (   895,   -69)
+	  2: Rel (   131,     0)  ->  Abs (  1026,   -69)
+	  3: Rel (    22,     0)  ->  Abs (  1048,   -69)
+	  4: Rel (    18,   -17)  ->  Abs (  1066,   -86)
+	  5: Rel (     0,   -13)  ->  Abs (  1066,   -99)
+	  6: Rel (     0,   -14)  ->  Abs (  1066,  -113)
+	  7: Rel (   -19,   -17)  ->  Abs (  1047,  -130)
+	  8: Rel (   -21,     0)  ->  Abs (  1026,  -130)
+	  9: Rel (  -195,     0)  ->  Abs (   831,  -130)
+	 10: Rel (   -22,     0)  ->  Abs (   809,  -130)
+	 11: Rel (   -19,    17)  ->  Abs (   790,  -113)
+	 12: Rel (     0,    14)  ->  Abs (   790,   -99)
+	 13: Rel (     0,     8)  ->  Abs (   790,   -91)
+	 14: Rel (    11,    16)  ->  Abs (   801,   -75)
+	 15: Rel (    15,     6)  ->  Abs (   816,   -69)
+	 16: Rel (    18,     0)  ->  Abs (   834,   -69)
+	 17: Rel (     0,  1263)  ->  Abs (   834,  1194)
+	 18: Rel (  -176,     0)  ->  Abs (   658,  1194)
+	 19: Rel (     0, -1263)  ->  Abs (   658,   -69)
+	 20: Rel (    19,     0)  ->  Abs (   677,   -69)
+	 21: Rel (    15,    -6)  ->  Abs (   692,   -75)
+	 22: Rel (    10,   -16)  ->  Abs (   702,   -91)
+	 23: Rel (     0,    -8)  ->  Abs (   702,   -99)
+	 24: Rel (     0,   -14)  ->  Abs (   702,  -113)
+	 25: Rel (   -19,   -17)  ->  Abs (   683,  -130)
+	 26: Rel (   -21,     0)  ->  Abs (   662,  -130)
+	 27: Rel (  -280,     0)  ->  Abs (   382,  -130)
+	 28: Rel (   -21,     0)  ->  Abs (   361,  -130)
+	 29: Rel (   -19,    17)  ->  Abs (   342,  -113)
+	 30: Rel (     0,    13)  ->  Abs (   342,  -100)
+	 31: Rel (     0,    14)  ->  Abs (   342,   -86)
+	 32: Rel (    19,    17)  ->  Abs (   361,   -69)
+	 33: Rel (    21,     0)  ->  Abs (   382,   -69)
+	 34: Rel (   215,     0)  ->  Abs (   597,   -69)
+	 35: Rel (     0,   633)  ->  Abs (   597,   564)
+	 36: Rel (  -118,     8)  ->  Abs (   479,   572)
+	 37: Rel (   -95,    37)  ->  Abs (   384,   609)
+	 38: Rel (   -56,    21)  ->  Abs (   328,   630)
+	 39: Rel (  -109,    91)  ->  Abs (   219,   721)
+	 40: Rel (   -48,    78)  ->  Abs (   171,   799)
+	 41: Rel (     0,    58)  ->  Abs (   171,   857)
+	 42: Rel (     0,    97)  ->  Abs (   171,   954)
+	 43: Rel (     0,    65)  ->  Abs (   171,  1019)
+	 44: Rel (    35,    59)  ->  Abs (   206,  1078)
+	 45: Rel (    25,    42)  ->  Abs (   231,  1120)
+	 46: Rel (    35,    26)  ->  Abs (   266,  1146)
+	 47: Rel (    51,    38)  ->  Abs (   317,  1184)
+	 48: Rel (   180,    71)  ->  Abs (   497,  1255)
+	 49: Rel (   117,     0)  ->  Abs (   614,  1255)
+	 50: Rel (   409,     0)  ->  Abs (  1023,  1255)
+	 51: Rel (    22,     0)  ->  Abs (  1045,  1255)
+	 52: Rel (    19,   -17)  ->  Abs (  1064,  1238)
+	 53: Rel (     0,   -13)  ->  Abs (  1064,  1225)
+	 54: Rel (     0,   -14)  ->  Abs (  1064,  1211)
+	 55: Rel (   -19,   -17)  ->  Abs (  1045,  1194)
+	 56: Rel (   -22,     0)  ->  Abs (  1023,  1194)
+	 57: Rel (  -426,     0)  ->  Abs (   597,  1194)
+	 58: Rel (  -145,   -13)  ->  Abs (   452,  1181)
+	 59: Rel (  -160,  -149)  ->  Abs (   292,  1032)
+	 60: Rel (     0,   -83)  ->  Abs (   292,   949)
+	 61: Rel (     0,   -77)  ->  Abs (   292,   872)
+	 62: Rel (     0,   -55)  ->  Abs (   292,   817)
+	 63: Rel (    27,   -40)  ->  Abs (   319,   777)
+	 64: Rel (    49,   -70)  ->  Abs (   368,   707)
+	 65: Rel (    56,   -31)  ->  Abs (   424,   676)
+	 66: Rel (    74,   -40)  ->  Abs (   498,   636)
+	 67: Rel (    99,    -9)  ->  Abs (   597,   627)
+
+	Glyph 137: off = 0x00009F6E, len = 434
+	  numberOfContours:	1
+	  xMin:			89
+	  yMin:			-33
+	  xMax:			1031
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  71
+
+	  Length of Instructions:	240
+	00000: NPUSHB      (64):    96    23     1    98    20   187    31   187    52   207 
+	                            31   207    52     5    53     8    71    65    68    47 
+	                             0     0    34    65    58    64    61   153    57    57 
+	                            34    64    45    43    40    47    20    48    38    37 
+	                            27     9     5    50    26    25    27    30    37    23 
+	                             9    39    48    53    46    33    39    39    64    53 
+	                            33     4     0    23 
+	00066: PUSHW[1]            355 
+	00069: NPUSHB      (26):    30    65    64    10    30    33    17    11    26    33 
+	                            43    93    20     7    33    50   162    33    33    15 
+	                            14     1    14    26    73    20 
+	00097: PUSHW[1]            404 
+	00100: NPUSHB      (10):    56    57    32     1     0    25    72    71   128    24 
+	00112: CALL       
+	00113: FLIPOFF    
+	00114: SRP0       
+	00115: MIRP[srp0,nmd,rd,0] 
+	00116: ALIGNRP    
+	00117: FLIPON     
+	00118: MIRP[srp0,md,rd,1] 
+	00119: ALIGNRP    
+	00120: MIRP[nrp0,nmd,rd,2] 
+	00121: FLIPOFF    
+	00122: SRP0       
+	00123: MIRP[srp0,nmd,rd,2] 
+	00124: DELTAP1    
+	00125: FLIPON     
+	00126: MIRP[nrp0,md,rd,1] 
+	00127: MIRP[srp0,md,rd,1] 
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: SRP0       
+	00130: MIRP[nrp0,nmd,rd,0] 
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: SVTCA[y-axis] 
+	00133: MIAP[rd+ci] 
+	00134: MIRP[nrp0,md,rd,1] 
+	00135: MIAP[rd+ci] 
+	00136: ALIGNRP    
+	00137: SRP0       
+	00138: MIRP[nrp0,nmd,rd,0] 
+	00139: MIAP[rd+ci] 
+	00140: MIRP[nrp0,md,rd,1] 
+	00141: SRP2       
+	00142: IP         
+	00143: MDAP[rd]   
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: SRP1       
+	00146: IP         
+	00147: SRP1       
+	00148: IP         
+	00149: SRP2       
+	00150: IP         
+	00151: SRP1       
+	00152: IP         
+	00153: IP         
+	00154: SVTCA[x-axis] 
+	00155: SRP1       
+	00156: SRP2       
+	00157: SLOOP      
+	00158: IP         
+	00159: SRP2       
+	00160: IP         
+	00161: IP         
+	00162: SRP1       
+	00163: IP         
+	00164: SVTCA[y-axis] 
+	00165: SRP0       
+	00166: MIRP[nrp0,md,rd,1] 
+	00167: SVTCA[x-axis] 
+	00168: SRP0       
+	00169: MIRP[srp0,nmd,rd,1] 
+	00170: MDRP[srp0,nmd,rd,0] 
+	00171: ALIGNRP    
+	00172: SVTCA[y-axis] 
+	00173: SRP0       
+	00174: MIRP[nrp0,md,rd,1] 
+	00175: SVTCA[x-axis] 
+	00176: SRP0       
+	00177: MIRP[srp0,nmd,rd,1] 
+	00178: MDRP[srp0,nmd,rd,0] 
+	00179: ALIGNRP    
+	00180: IUP[y]     
+	00181: IUP[x]     
+	00182: RS         
+	00183: JROF       
+	00184: NPUSHB      (38):    51    55    31    32    15    16     2     6    54     3 
+	                            56    31     0    52     5    50    31     1    31    16 
+	                            33    31     1    55     2    53    31     1    51     6 
+	                            53    31     1    32    15    30    31     0 
+	00224: SVTCA[y-axis] 
+	00225: CALL       
+	00226: CALL       
+	00227: CALL       
+	00228: SVTCA[x-axis] 
+	00229: CALL       
+	00230: CALL       
+	00231: CALL       
+	00232: FLIPRGON   
+	00233: FLIPRGON   
+	00234: FLIPRGON   
+	00235: FLIPRGON   
+	00236: SVTCA[x-axis] 
+	00237: DELTAP1    
+	00238: SVTCA[y-axis] 
+	00239: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual                         On
+	  2:  YDual XDual         Y-Short         Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                      Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short X-Short On
+	 29:        XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual               Y-Short X-Short On
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:  YDual               Y-Short X-Short On
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual         Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual               Y-Short X-Short Off
+	 53:  YDual                       X-Short On
+	 54:  YDual                       X-Short Off
+	 55:                      Y-Short X-Short Off
+	 56:        XDual         Y-Short         On
+	 57:        XDual                         On
+	 58:  YDual XDual                 X-Short On
+	 59:  YDual XDual                 X-Short Off
+	 60:        XDual         Y-Short X-Short Off
+	 61:        XDual         Y-Short         On
+	 62:        XDual         Y-Short         Off
+	 63:                      Y-Short X-Short Off
+	 64:  YDual                       X-Short On
+	 65:  YDual                       X-Short On
+	 66:  YDual                       X-Short Off
+	 67:  YDual               Y-Short X-Short Off
+	 68:  YDual XDual         Y-Short         On
+	 69:  YDual XDual         Y-Short         Off
+	 70:  YDual XDual         Y-Short X-Short Off
+	 71:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   258,    84)  ->  Abs (   258,    84)
+	  1: Rel (     0,   906)  ->  Abs (   258,   990)
+	  2: Rel (     0,   106)  ->  Abs (   258,  1096)
+	  3: Rel (   169,   159)  ->  Abs (   427,  1255)
+	  4: Rel (   126,     0)  ->  Abs (   553,  1255)
+	  5: Rel (   127,     0)  ->  Abs (   680,  1255)
+	  6: Rel (   176,  -177)  ->  Abs (   856,  1078)
+	  7: Rel (     0,  -126)  ->  Abs (   856,   952)
+	  8: Rel (     0,  -125)  ->  Abs (   856,   827)
+	  9: Rel (  -120,   -82)  ->  Abs (   736,   745)
+	 10: Rel (    93,   -39)  ->  Abs (   829,   706)
+	 11: Rel (    53,   -45)  ->  Abs (   882,   661)
+	 12: Rel (    72,   -61)  ->  Abs (   954,   600)
+	 13: Rel (    77,  -164)  ->  Abs (  1031,   436)
+	 14: Rel (     0,  -103)  ->  Abs (  1031,   333)
+	 15: Rel (     0,  -170)  ->  Abs (  1031,   163)
+	 16: Rel (  -166,  -196)  ->  Abs (   865,   -33)
+	 17: Rel (  -108,     0)  ->  Abs (   757,   -33)
+	 18: Rel (   -92,     0)  ->  Abs (   665,   -33)
+	 19: Rel (  -126,   137)  ->  Abs (   539,   104)
+	 20: Rel (     0,   106)  ->  Abs (   539,   210)
+	 21: Rel (     0,    22)  ->  Abs (   539,   232)
+	 22: Rel (    24,    25)  ->  Abs (   563,   257)
+	 23: Rel (    18,     0)  ->  Abs (   581,   257)
+	 24: Rel (    18,     0)  ->  Abs (   599,   257)
+	 25: Rel (    23,   -24)  ->  Abs (   622,   233)
+	 26: Rel (     1,   -25)  ->  Abs (   623,   208)
+	 27: Rel (     5,   -78)  ->  Abs (   628,   130)
+	 28: Rel (    37,   -39)  ->  Abs (   665,    91)
+	 29: Rel (    36,   -40)  ->  Abs (   701,    51)
+	 30: Rel (    57,     0)  ->  Abs (   758,    51)
+	 31: Rel (    87,     0)  ->  Abs (   845,    51)
+	 32: Rel (   101,   177)  ->  Abs (   946,   228)
+	 33: Rel (     0,   104)  ->  Abs (   946,   332)
+	 34: Rel (     0,    83)  ->  Abs (   946,   415)
+	 35: Rel (   -65,   138)  ->  Abs (   881,   553)
+	 36: Rel (   -88,    75)  ->  Abs (   793,   628)
+	 37: Rel (   -89,    41)  ->  Abs (   704,   669)
+	 38: Rel (   -56,    25)  ->  Abs (   648,   694)
+	 39: Rel (   -76,     0)  ->  Abs (   572,   694)
+	 40: Rel (   -31,     0)  ->  Abs (   541,   694)
+	 41: Rel (   -12,     9)  ->  Abs (   529,   703)
+	 42: Rel (   -16,    13)  ->  Abs (   513,   716)
+	 43: Rel (     0,    21)  ->  Abs (   513,   737)
+	 44: Rel (     0,    17)  ->  Abs (   513,   754)
+	 45: Rel (    25,    25)  ->  Abs (   538,   779)
+	 46: Rel (    21,     0)  ->  Abs (   559,   779)
+	 47: Rel (    61,     0)  ->  Abs (   620,   779)
+	 48: Rel (   101,    52)  ->  Abs (   721,   831)
+	 49: Rel (    51,    77)  ->  Abs (   772,   908)
+	 50: Rel (     0,    47)  ->  Abs (   772,   955)
+	 51: Rel (     0,    87)  ->  Abs (   772,  1042)
+	 52: Rel (  -128,   128)  ->  Abs (   644,  1170)
+	 53: Rel (   -91,     0)  ->  Abs (   553,  1170)
+	 54: Rel (   -94,     0)  ->  Abs (   459,  1170)
+	 55: Rel (  -117,  -111)  ->  Abs (   342,  1059)
+	 56: Rel (     0,   -69)  ->  Abs (   342,   990)
+	 57: Rel (     0,  -906)  ->  Abs (   342,    84)
+	 58: Rel (    32,     0)  ->  Abs (   374,    84)
+	 59: Rel (    30,     0)  ->  Abs (   404,    84)
+	 60: Rel (    26,   -23)  ->  Abs (   430,    61)
+	 61: Rel (     0,   -19)  ->  Abs (   430,    42)
+	 62: Rel (     0,   -18)  ->  Abs (   430,    24)
+	 63: Rel (   -26,   -24)  ->  Abs (   404,     0)
+	 64: Rel (   -30,     0)  ->  Abs (   374,     0)
+	 65: Rel (  -229,     0)  ->  Abs (   145,     0)
+	 66: Rel (   -30,     0)  ->  Abs (   115,     0)
+	 67: Rel (   -26,    24)  ->  Abs (    89,    24)
+	 68: Rel (     0,    18)  ->  Abs (    89,    42)
+	 69: Rel (     0,    19)  ->  Abs (    89,    61)
+	 70: Rel (    26,    23)  ->  Abs (   115,    84)
+	 71: Rel (    30,     0)  ->  Abs (   145,    84)
+
+	Glyph 138: off = 0x0000A120, len = 592
+	  numberOfContours:	4
+	  xMin:			0
+	  yMin:			-27
+	  xMax:			1223
+	  yMax:			1196
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+	  2:  77
+	  3:  86
+
+	  Length of Instructions:	338
+	00000: NPUSHB      (91):    60    34    12    16    63    60    34    11    15    63 
+	                            16    34    11    15    63    14    34    11    15    63 
+	                            12    60    80    53    80    54    80    55    80    56 
+	                            83    78    83    79    83    80     8    35    78    35 
+	                            79    35    80    51    78    51    79    51    80    67 
+	                            78    67    79    67    80     9     0    61    35    63 
+	                            51    63    67    63    92    60    83    63    92    80 
+	                             7    55     8    61    24    78    45    96    54    54 
+	                            55    78    96    24    24    86    25    86    85    96 
+	                            55 
+	00093: PUSHW[1]            628 
+	00096: PUSHB[7]             74    15    90    15     9     1     9 
+	00104: PUSHW[1]            648 
+	00107: NPUSHB      (14):     3    44    96    35    35    25    96    34    34    64 
+	                            96    74    74    73 
+	00123: PUSHW[1]            -64 
+	00126: PUSHB[4]             12    16    63    73 
+	00131: PUSHW[1]            -64 
+	00134: PUSHB[4]             11    15    63    73 
+	00139: PUSHW[1]            276 
+	00142: NPUSHB       (9):    21    90     3    77    38    61    61    24    82 
+	00153: PUSHW[1]            474 
+	00156: PUSHB[3]             58    65    64 
+	00160: PUSHW[1]            699 
+	00163: PUSHB[3]             12    90     0 
+	00167: PUSHW[1]            556 
+	00170: PUSHB[7]              6    86    25    78    24    24    25 
+	00178: PUSHW[1]            474 
+	00181: PUSHB[5]             45    48    44     1    44 
+	00187: PUSHW[1]            367 
+	00190: NPUSHB      (10):    18    90     6    25    87     3     9    69   108    24 
+	00202: PUSHW[1]            356 
+	00205: SCANCTRL   
+	00206: CALL       
+	00207: SVTCA[y-axis] 
+	00208: MIAP[rd+ci] 
+	00209: SVTCA[x-axis] 
+	00210: FLIPOFF    
+	00211: SRP0       
+	00212: MIRP[srp0,nmd,rd,0] 
+	00213: FLIPON     
+	00214: MIRP[nrp0,md,rd,1] 
+	00215: MIRP[srp0,nmd,rd,0] 
+	00216: DELTAP1    
+	00217: ALIGNRP    
+	00218: MIRP[srp0,md,rd,1] 
+	00219: ALIGNRP    
+	00220: SRP0       
+	00221: ALIGNRP    
+	00222: SRP0       
+	00223: ALIGNRP    
+	00224: SRP0       
+	00225: MIRP[srp0,md,rd,1] 
+	00226: MIRP[nrp0,md,rd,1] 
+	00227: MIRP[srp0,nmd,rd,0] 
+	00228: MIRP[srp0,nmd,rd,0] 
+	00229: MIRP[nrp0,md,rd,1] 
+	00230: SRP2       
+	00231: IP         
+	00232: MDAP[rd]   
+	00233: MIRP[nrp0,md,rd,1] 
+	00234: SVTCA[y-axis] 
+	00235: SRP0       
+	00236: MIRP[nrp0,md,rd,1] 
+	00237: MIRP[srp0,nmd,rd,0] 
+	00238: SVTCA[y-axis] 
+	00239: CALL       
+	00240: CALL       
+	00241: ALIGNRP    
+	00242: SRP0       
+	00243: MIRP[nrp0,md,rd,1] 
+	00244: ALIGNRP    
+	00245: SRP0       
+	00246: MIRP[nrp0,md,rd,1] 
+	00247: ALIGNRP    
+	00248: SRP0       
+	00249: MIRP[nrp0,md,rd,1] 
+	00250: SRP0       
+	00251: MIRP[srp0,md,rd,1] 
+	00252: DELTAP1    
+	00253: MIRP[nrp0,md,rd,1] 
+	00254: SRP0       
+	00255: MIRP[srp0,md,rd,1] 
+	00256: MIRP[srp0,md,rd,1] 
+	00257: ALIGNRP    
+	00258: SRP1       
+	00259: SRP2       
+	00260: IP         
+	00261: MDAP[rd]   
+	00262: MIRP[nrp0,md,rd,1] 
+	00263: SRP0       
+	00264: ALIGNRP    
+	00265: SRP0       
+	00266: MIRP[nrp0,md,rd,1] 
+	00267: SRP1       
+	00268: SRP2       
+	00269: IP         
+	00270: IUP[y]     
+	00271: IUP[x]     
+	00272: RS         
+	00273: JROF       
+	00274: NPUSHB      (42):     1    23    16     8    18    46     0    14    10    12 
+	                            46     1    20     4    18    46     0    22     2    12 
+	                            46     1    17     7    15    46     1    13    11    15 
+	                            46     1    19     5    21    46     0    23     1    21 
+	                            46     0 
+	00318: CALL       
+	00319: CALL       
+	00320: CALL       
+	00321: CALL       
+	00322: SVTCA[x-axis] 
+	00323: CALL       
+	00324: CALL       
+	00325: CALL       
+	00326: CALL       
+	00327: FLIPRGON   
+	00328: SVTCA[x-axis] 
+	00329: DELTAP1    
+	00330: SVTCA[y-axis] 
+	00331: DELTAP1    
+	00332: DELTAP1    
+	00333: SVTCA[y-axis] 
+	00334: CALL       
+	00335: CALL       
+	00336: CALL       
+	00337: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                                      Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:                                      Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:                                      Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:                                      Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual XDual         Y-Short         Off
+	 14:                                      Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                                      Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                                      Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:                                      Off
+	 24:  YDual               Y-Short         On
+	 25:        XDual         Y-Short         On
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:                      Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short On
+	 45:        XDual                         On
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:  YDual               Y-Short X-Short Off
+	 49:  YDual               Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short X-Short Off
+	 54:  YDual XDual                 X-Short On
+	 55:  YDual                               On
+	 56:  YDual XDual                 X-Short Off
+	 57:        XDual         Y-Short X-Short Off
+	 58:        XDual         Y-Short         On
+	 59:        XDual         Y-Short         Off
+	 60:                      Y-Short X-Short Off
+	 61:                      Y-Short X-Short On
+	 62:        XDual         Y-Short X-Short Off
+	 63:        XDual         Y-Short X-Short Off
+	 64:        XDual         Y-Short X-Short On
+	 65:  YDual XDual                 X-Short On
+	 66:  YDual XDual                 X-Short Off
+	 67:        XDual         Y-Short X-Short Off
+	 68:        XDual         Y-Short X-Short Off
+	 69:        XDual         Y-Short         On
+	 70:        XDual         Y-Short         Off
+	 71:                      Y-Short X-Short Off
+	 72:                      Y-Short X-Short Off
+	 73:  YDual                       X-Short On
+	 74:  YDual                       X-Short On
+	 75:  YDual               Y-Short X-Short Off
+	 76:  YDual               Y-Short X-Short Off
+	 77:  YDual               Y-Short X-Short On
+	 78:  YDual               Y-Short X-Short On
+	 79:  YDual XDual                 X-Short On
+	 80:  YDual XDual                 X-Short Off
+	 81:  YDual XDual         Y-Short X-Short Off
+	 82:  YDual XDual         Y-Short         On
+	 83:  YDual XDual         Y-Short         Off
+	 84:  YDual               Y-Short X-Short Off
+	 85:  YDual                       X-Short On
+	 86:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1223,   584)  ->  Abs (  1223,   584)
+	  1: Rel (     0,  -253)  ->  Abs (  1223,   331)
+	  2: Rel (  -358,  -358)  ->  Abs (   865,   -27)
+	  3: Rel (  -254,     0)  ->  Abs (   611,   -27)
+	  4: Rel (  -253,     0)  ->  Abs (   358,   -27)
+	  5: Rel (  -358,   358)  ->  Abs (     0,   331)
+	  6: Rel (     0,   253)  ->  Abs (     0,   584)
+	  7: Rel (     0,   254)  ->  Abs (     0,   838)
+	  8: Rel (   358,   358)  ->  Abs (   358,  1196)
+	  9: Rel (   253,     0)  ->  Abs (   611,  1196)
+	 10: Rel (   254,     0)  ->  Abs (   865,  1196)
+	 11: Rel (   358,  -358)  ->  Abs (  1223,   838)
+	 12: Rel (   -68,  -254)  ->  Abs (  1155,   584)
+	 13: Rel (     0,   226)  ->  Abs (  1155,   810)
+	 14: Rel (  -318,   318)  ->  Abs (   837,  1128)
+	 15: Rel (  -226,     0)  ->  Abs (   611,  1128)
+	 16: Rel (  -225,     0)  ->  Abs (   386,  1128)
+	 17: Rel (  -319,  -318)  ->  Abs (    67,   810)
+	 18: Rel (     0,  -226)  ->  Abs (    67,   584)
+	 19: Rel (     0,  -225)  ->  Abs (    67,   359)
+	 20: Rel (   319,  -318)  ->  Abs (   386,    41)
+	 21: Rel (   225,     0)  ->  Abs (   611,    41)
+	 22: Rel (   226,     0)  ->  Abs (   837,    41)
+	 23: Rel (   318,   318)  ->  Abs (  1155,   359)
+	 24: Rel (  -694,   190)  ->  Abs (   461,   549)
+	 25: Rel (     0,  -248)  ->  Abs (   461,   301)
+	 26: Rel (    88,     0)  ->  Abs (   549,   301)
+	 27: Rel (    13,     0)  ->  Abs (   562,   301)
+	 28: Rel (    11,    -6)  ->  Abs (   573,   295)
+	 29: Rel (     8,   -11)  ->  Abs (   581,   284)
+	 30: Rel (     0,    -7)  ->  Abs (   581,   277)
+	 31: Rel (     0,    -7)  ->  Abs (   581,   270)
+	 32: Rel (    -8,   -12)  ->  Abs (   573,   258)
+	 33: Rel (   -11,    -5)  ->  Abs (   562,   253)
+	 34: Rel (   -13,     0)  ->  Abs (   549,   253)
+	 35: Rel (  -200,     0)  ->  Abs (   349,   253)
+	 36: Rel (   -13,     0)  ->  Abs (   336,   253)
+	 37: Rel (   -11,     5)  ->  Abs (   325,   258)
+	 38: Rel (    -8,    12)  ->  Abs (   317,   270)
+	 39: Rel (     0,     7)  ->  Abs (   317,   277)
+	 40: Rel (     0,     6)  ->  Abs (   317,   283)
+	 41: Rel (     8,    13)  ->  Abs (   325,   296)
+	 42: Rel (    11,     5)  ->  Abs (   336,   301)
+	 43: Rel (    13,     0)  ->  Abs (   349,   301)
+	 44: Rel (    64,     0)  ->  Abs (   413,   301)
+	 45: Rel (     0,   567)  ->  Abs (   413,   868)
+	 46: Rel (   -64,     0)  ->  Abs (   349,   868)
+	 47: Rel (   -13,     0)  ->  Abs (   336,   868)
+	 48: Rel (   -11,     6)  ->  Abs (   325,   874)
+	 49: Rel (    -8,    12)  ->  Abs (   317,   886)
+	 50: Rel (     0,     6)  ->  Abs (   317,   892)
+	 51: Rel (     0,     7)  ->  Abs (   317,   899)
+	 52: Rel (     8,    12)  ->  Abs (   325,   911)
+	 53: Rel (    11,     5)  ->  Abs (   336,   916)
+	 54: Rel (    13,     0)  ->  Abs (   349,   916)
+	 55: Rel (   288,     0)  ->  Abs (   637,   916)
+	 56: Rel (    89,     0)  ->  Abs (   726,   916)
+	 57: Rel (   122,  -113)  ->  Abs (   848,   803)
+	 58: Rel (     0,   -71)  ->  Abs (   848,   732)
+	 59: Rel (     0,   -51)  ->  Abs (   848,   681)
+	 60: Rel (   -76,   -90)  ->  Abs (   772,   591)
+	 61: Rel (   -88,   -30)  ->  Abs (   684,   561)
+	 62: Rel (    51,   -34)  ->  Abs (   735,   527)
+	 63: Rel (    73,   -89)  ->  Abs (   808,   438)
+	 64: Rel (    79,  -137)  ->  Abs (   887,   301)
+	 65: Rel (    37,     0)  ->  Abs (   924,   301)
+	 66: Rel (    13,     0)  ->  Abs (   937,   301)
+	 67: Rel (    11,    -6)  ->  Abs (   948,   295)
+	 68: Rel (     8,   -12)  ->  Abs (   956,   283)
+	 69: Rel (     0,    -6)  ->  Abs (   956,   277)
+	 70: Rel (     0,    -7)  ->  Abs (   956,   270)
+	 71: Rel (    -8,   -12)  ->  Abs (   948,   258)
+	 72: Rel (   -11,    -5)  ->  Abs (   937,   253)
+	 73: Rel (   -13,     0)  ->  Abs (   924,   253)
+	 74: Rel (   -64,     0)  ->  Abs (   860,   253)
+	 75: Rel (   -87,   157)  ->  Abs (   773,   410)
+	 76: Rel (   -97,   108)  ->  Abs (   676,   518)
+	 77: Rel (   -64,    31)  ->  Abs (   612,   549)
+	 78: Rel (  -151,    47)  ->  Abs (   461,   596)
+	 79: Rel (   129,     0)  ->  Abs (   590,   596)
+	 80: Rel (    99,     0)  ->  Abs (   689,   596)
+	 81: Rel (   111,    89)  ->  Abs (   800,   685)
+	 82: Rel (     0,    50)  ->  Abs (   800,   735)
+	 83: Rel (     0,    48)  ->  Abs (   800,   783)
+	 84: Rel (   -95,    85)  ->  Abs (   705,   868)
+	 85: Rel (   -69,     0)  ->  Abs (   636,   868)
+	 86: Rel (  -175,     0)  ->  Abs (   461,   868)
+
+	Glyph 139: off = 0x0000A370, len = 474
+	  numberOfContours:	3
+	  xMin:			0
+	  yMin:			-27
+	  xMax:			1223
+	  yMax:			1196
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+	  2:  71
+
+	  Length of Instructions:	260
+	00000: NPUSHB      (66):    98     8   111    14    98    16    96    20   110    22 
+	                           126    14   113    16   113    20   127    22     9    96 
+	                             1    96     5   107     7   111    11   111    13   111 
+	                            17    96    19    96    23   112     1   112     5   127 
+	                             7   127    11   127    13   127    17   112    19   112 
+	                            23    16     3    69     3    71     2    55     8    21 
+	                            90     3    36   138    28    49 
+	00068: NPUSHW      (10):   664    43   474    28   771    70    55   399    51   474 
+	00090: PUSHB[6]             32    70    48    70     2    70 
+	00097: PUSHW[1]            533 
+	00100: NPUSHB       (9):    61   243     3    15    90    15     9     1     9 
+	00111: PUSHW[4]            259     3    53   474 
+	00120: PUSHB[3]             58    52    40 
+	00124: PUSHW[5]            474    24   474    32   415 
+	00135: PUSHB[6]             12    90     0   110     6    47 
+	00142: PUSHW[1]            474 
+	00145: NPUSHB      (12):    67   218    18    90     6    25    72     3    11    75 
+	                            68    24 
+	00159: CALL       
+	00160: SVTCA[y-axis] 
+	00161: MIAP[rd+ci] 
+	00162: SVTCA[x-axis] 
+	00163: FLIPOFF    
+	00164: SRP0       
+	00165: MIRP[srp0,nmd,rd,0] 
+	00166: FLIPON     
+	00167: MIRP[nrp0,md,rd,1] 
+	00168: MIRP[srp0,nmd,rd,0] 
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: SRP0       
+	00171: MIRP[srp0,md,rd,1] 
+	00172: MIRP[nrp0,md,rd,1] 
+	00173: MIRP[srp0,nmd,rd,0] 
+	00174: MIRP[nrp0,md,rd,1] 
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: MIRP[srp0,nmd,rd,0] 
+	00177: MIRP[nrp0,md,rd,1] 
+	00178: SVTCA[y-axis] 
+	00179: SRP0       
+	00180: MIRP[srp0,md,rd,1] 
+	00181: DELTAP1    
+	00182: MIRP[nrp0,md,rd,1] 
+	00183: SRP0       
+	00184: MIRP[srp0,nmd,rd,0] 
+	00185: MIRP[nrp0,md,rd,1] 
+	00186: DELTAP1    
+	00187: MIRP[nrp0,md,rd,1] 
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: SRP0       
+	00190: MIRP[nrp0,nmd,rd,0] 
+	00191: MIRP[nrp0,md,rd,1] 
+	00192: MIRP[nrp0,nmd,rd,0] 
+	00193: SRP0       
+	00194: MIRP[nrp0,md,rd,1] 
+	00195: SRP0       
+	00196: MIRP[nrp0,md,rd,1] 
+	00197: IUP[y]     
+	00198: IUP[x]     
+	00199: RS         
+	00200: JROF       
+	00201: NPUSHB      (42):     1    23    16     8    18   201     0    14    10    12 
+	                           201     1    20     4    18   201     0    22     2    12 
+	                           201     1    17     7    15   201     1    13    11    15 
+	                           201     1    19     5    21   201     0    23     1    21 
+	                           201     0 
+	00245: CALL       
+	00246: CALL       
+	00247: CALL       
+	00248: CALL       
+	00249: SVTCA[x-axis] 
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+	00253: CALL       
+	00254: FLIPRGON   
+	00255: SVTCA[y-axis] 
+	00256: DELTAP2    
+	00257: DELTAP1    
+	00258: SVTCA[x-axis] 
+	00259: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                                      Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:                                      Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:                                      Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:                                      Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual XDual         Y-Short         Off
+	 14:                                      Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                                      Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                                      Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:                                      Off
+	 24:                                      On
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual               Y-Short X-Short On
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual               Y-Short X-Short On
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short Off
+	 45:                      Y-Short X-Short On
+	 46:                      Y-Short X-Short Off
+	 47:        XDual         Y-Short         On
+	 48:        XDual         Y-Short         On
+	 49:        XDual         Y-Short         Off
+	 50:        XDual         Y-Short X-Short Off
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:  YDual XDual         Y-Short X-Short Off
+	 55:  YDual XDual                 X-Short On
+	 56:  YDual XDual                 X-Short Off
+	 57:        XDual         Y-Short X-Short Off
+	 58:        XDual         Y-Short         On
+	 59:        XDual         Y-Short         Off
+	 60:                      Y-Short X-Short Off
+	 61:  YDual                       X-Short On
+	 62:  YDual                       X-Short Off
+	 63:  YDual               Y-Short X-Short Off
+	 64:  YDual               Y-Short X-Short On
+	 65:  YDual               Y-Short X-Short Off
+	 66:  YDual XDual         Y-Short         On
+	 67:  YDual XDual         Y-Short         On
+	 68:  YDual XDual         Y-Short         Off
+	 69:  YDual XDual         Y-Short X-Short Off
+	 70:  YDual XDual                 X-Short On
+	 71:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1223,   584)  ->  Abs (  1223,   584)
+	  1: Rel (     0,  -253)  ->  Abs (  1223,   331)
+	  2: Rel (  -358,  -358)  ->  Abs (   865,   -27)
+	  3: Rel (  -254,     0)  ->  Abs (   611,   -27)
+	  4: Rel (  -253,     0)  ->  Abs (   358,   -27)
+	  5: Rel (  -358,   358)  ->  Abs (     0,   331)
+	  6: Rel (     0,   253)  ->  Abs (     0,   584)
+	  7: Rel (     0,   254)  ->  Abs (     0,   838)
+	  8: Rel (   358,   358)  ->  Abs (   358,  1196)
+	  9: Rel (   253,     0)  ->  Abs (   611,  1196)
+	 10: Rel (   254,     0)  ->  Abs (   865,  1196)
+	 11: Rel (   358,  -358)  ->  Abs (  1223,   838)
+	 12: Rel (   -68,  -254)  ->  Abs (  1155,   584)
+	 13: Rel (     0,   226)  ->  Abs (  1155,   810)
+	 14: Rel (  -318,   318)  ->  Abs (   837,  1128)
+	 15: Rel (  -226,     0)  ->  Abs (   611,  1128)
+	 16: Rel (  -225,     0)  ->  Abs (   386,  1128)
+	 17: Rel (  -319,  -318)  ->  Abs (    67,   810)
+	 18: Rel (     0,  -226)  ->  Abs (    67,   584)
+	 19: Rel (     0,  -225)  ->  Abs (    67,   359)
+	 20: Rel (   319,  -318)  ->  Abs (   386,    41)
+	 21: Rel (   225,     0)  ->  Abs (   611,    41)
+	 22: Rel (   226,     0)  ->  Abs (   837,    41)
+	 23: Rel (   318,   318)  ->  Abs (  1155,   359)
+	 24: Rel (  -345,   503)  ->  Abs (   810,   862)
+	 25: Rel (     0,    34)  ->  Abs (   810,   896)
+	 26: Rel (     0,    17)  ->  Abs (   810,   913)
+	 27: Rel (    14,    15)  ->  Abs (   824,   928)
+	 28: Rel (    11,     0)  ->  Abs (   835,   928)
+	 29: Rel (    10,     0)  ->  Abs (   845,   928)
+	 30: Rel (    13,   -15)  ->  Abs (   858,   913)
+	 31: Rel (     0,   -17)  ->  Abs (   858,   896)
+	 32: Rel (     0,  -132)  ->  Abs (   858,   764)
+	 33: Rel (     0,   -14)  ->  Abs (   858,   750)
+	 34: Rel (    -5,   -11)  ->  Abs (   853,   739)
+	 35: Rel (   -12,    -7)  ->  Abs (   841,   732)
+	 36: Rel (    -7,     0)  ->  Abs (   834,   732)
+	 37: Rel (    -9,     0)  ->  Abs (   825,   732)
+	 38: Rel (   -13,    13)  ->  Abs (   812,   745)
+	 39: Rel (    -2,    15)  ->  Abs (   810,   760)
+	 40: Rel (    -3,    49)  ->  Abs (   807,   809)
+	 41: Rel (   -48,    36)  ->  Abs (   759,   845)
+	 42: Rel (   -66,    50)  ->  Abs (   693,   895)
+	 43: Rel (   -84,     0)  ->  Abs (   609,   895)
+	 44: Rel (  -100,     0)  ->  Abs (   509,   895)
+	 45: Rel (   -58,   -63)  ->  Abs (   451,   832)
+	 46: Rel (   -78,   -86)  ->  Abs (   373,   746)
+	 47: Rel (     0,  -106)  ->  Abs (   373,   640)
+	 48: Rel (     0,   -83)  ->  Abs (   373,   557)
+	 49: Rel (     0,  -107)  ->  Abs (   373,   450)
+	 50: Rel (   154,  -157)  ->  Abs (   527,   293)
+	 51: Rel (   101,     0)  ->  Abs (   628,   293)
+	 52: Rel (   116,     0)  ->  Abs (   744,   293)
+	 53: Rel (    88,   107)  ->  Abs (   832,   400)
+	 54: Rel (    10,    12)  ->  Abs (   842,   412)
+	 55: Rel (    11,     0)  ->  Abs (   853,   412)
+	 56: Rel (    11,     0)  ->  Abs (   864,   412)
+	 57: Rel (    12,   -12)  ->  Abs (   876,   400)
+	 58: Rel (     0,   -10)  ->  Abs (   876,   390)
+	 59: Rel (     0,   -28)  ->  Abs (   876,   362)
+	 60: Rel (  -150,  -116)  ->  Abs (   726,   246)
+	 61: Rel (   -96,     0)  ->  Abs (   630,   246)
+	 62: Rel (   -85,     0)  ->  Abs (   545,   246)
+	 63: Rel (  -136,    85)  ->  Abs (   409,   331)
+	 64: Rel (   -54,    93)  ->  Abs (   355,   424)
+	 65: Rel (   -30,    53)  ->  Abs (   325,   477)
+	 66: Rel (     0,    73)  ->  Abs (   325,   550)
+	 67: Rel (     0,    97)  ->  Abs (   325,   647)
+	 68: Rel (     0,   106)  ->  Abs (   325,   753)
+	 69: Rel (   152,   190)  ->  Abs (   477,   943)
+	 70: Rel (   130,     0)  ->  Abs (   607,   943)
+	 71: Rel (   119,     0)  ->  Abs (   726,   943)
+
+	Glyph 140: off = 0x0000A54A, len = 672
+	  numberOfContours:	2
+	  xMin:			4
+	  yMin:			608
+	  xMax:			1225
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  27
+	  1:  60
+
+	  Length of Instructions:	514
+	00000: NPUSHB      (74):    86    28    86    44     2   185    30   186    45   217 
+	                            30   233    30     4   121    60     1    87    45     1 
+	                             8    44     5    46     8    60   187    44   185    45 
+	                             5   102    28   170    44   187    29     3    57    29 
+	                            50    44    55    45    87    28     4   122    28   155 
+	                            28   150    44     3    88    29    88    45   101    44 
+	                             3    42    29    42    45    60    44    73    44     4 
+	                            46    60    28    28 
+	00076: PUSHW[1]            640 
+	00079: NPUSHB      (10):    45    46    20    45    45    46    44    30    29    29 
+	00091: PUSHW[1]            640 
+	00094: NPUSHB      (67):    45    44    20    45    45    44    24    79    17    95 
+	                            17   127    17     3    17    17    45    30    60     3 
+	                            29    29    20    53    54    54    36    36    37    37 
+	                             6     6     7    58    32    32    31    31    42    42 
+	                            41    41     2     2     1     1    12    12    48    59 
+	                            58    32    31    42     2     1    12    11    54    36 
+	                            37     6     7    49    11    53    11 
+	00163: PUSHW[1]            639 
+	00166: NPUSHB      (26):    48     7     1     0     7    32     7     2     7     7 
+	                            47    46    46    44    44    43    43    21    21    20 
+	                            27     0     0    13    13    14 
+	00194: PUSHW[1]            639 
+	00197: NPUSHB      (10):    20     2    46    28    59    44    29    31    45    22 
+	00209: PUSHW[1]            639 
+	00212: NPUSHB      (12):    31    26     1   160    26   176    26     2    26    26 
+	                             1    19 
+	00226: PUSHW[1]            639 
+	00229: NPUSHB      (33):    16    15     1   175    15   191    15     2    47    15 
+	                            63    15   127    15     3    15    64     9    14    52 
+	                            15    15    12     4     4    47     9    63     9     2 
+	                             9     9     1 
+	00264: PUSHW[1]            639 
+	00267: NPUSHB      (50):     0    12     1    32    12    48    12   239    12     3 
+	                            12    12    45     0    51   112    51     2   208    51 
+	                           240    51     2   128    51   160    51   192    51     3 
+	                            64    51    80    51    96    51     3    51    51    56 
+	                            56    59    34    34    31    39    39    42    47    48 
+	00319: PUSHW[1]            639 
+	00322: PUSHB[4]             60    59    43    42 
+	00327: PUSHW[1]            639 
+	00330: NPUSHB      (14):    31    59    31    15    45   127    45     2    48    45 
+	                            80    45     2    45 
+	00346: RTHG       
+	00347: MDAP[rd]   
+	00348: DELTAP1    
+	00349: DELTAP2    
+	00350: SHP[rp1,zp0] 
+	00351: SHP[rp1,zp0] 
+	00352: RTG        
+	00353: MDAP[rd]   
+	00354: MIRP[srp0,md,rd,1] 
+	00355: ALIGNRP    
+	00356: MDAP[rd]   
+	00357: ALIGNRP    
+	00358: MIRP[srp0,md,rd,1] 
+	00359: ALIGNRP    
+	00360: SRP1       
+	00361: SHP[rp1,zp0] 
+	00362: MDAP[rd]   
+	00363: SRP1       
+	00364: SHP[rp1,zp0] 
+	00365: MDAP[rd]   
+	00366: SRP1       
+	00367: SHP[rp1,zp0] 
+	00368: MDAP[rd]   
+	00369: SHP[rp2,zp1] 
+	00370: MDAP[rd]   
+	00371: DELTAP1    
+	00372: DELTAP1    
+	00373: DELTAP1    
+	00374: DELTAP2    
+	00375: SRP1       
+	00376: SHP[rp1,zp0] 
+	00377: MDAP[rd]   
+	00378: DELTAP1    
+	00379: DELTAP2    
+	00380: MIRP[nrp0,md,rd,1] 
+	00381: SHP[rp1,zp0] 
+	00382: MDAP[rd]   
+	00383: DELTAP1    
+	00384: SHP[rp2,zp1] 
+	00385: MDAP[rd]   
+	00386: SRP1       
+	00387: SHP[rp1,zp0] 
+	00388: MDAP[rd]   
+	00389: CALL       
+	00390: DELTAP1    
+	00391: DELTAP1    
+	00392: DELTAP3    
+	00393: MIRP[nrp0,md,rd,1] 
+	00394: SRP1       
+	00395: SHP[rp1,zp0] 
+	00396: MDAP[rd]   
+	00397: DELTAP1    
+	00398: DELTAP3    
+	00399: MIRP[nrp0,md,rd,1] 
+	00400: SRP1       
+	00401: SRP2       
+	00402: IP         
+	00403: IP         
+	00404: SRP2       
+	00405: IP         
+	00406: IP         
+	00407: SVTCA[y-axis] 
+	00408: MIAP[rd+ci] 
+	00409: MIRP[srp0,md,rd,1] 
+	00410: ALIGNRP    
+	00411: SRP0       
+	00412: ALIGNRP    
+	00413: SRP0       
+	00414: ALIGNRP    
+	00415: SRP0       
+	00416: ALIGNRP    
+	00417: SRP0       
+	00418: ALIGNRP    
+	00419: SRP0       
+	00420: ALIGNRP    
+	00421: SRP0       
+	00422: ALIGNRP    
+	00423: SRP0       
+	00424: ALIGNRP    
+	00425: SHP[rp1,zp0] 
+	00426: MDAP[rd]   
+	00427: DELTAP1    
+	00428: DELTAP1    
+	00429: MIRP[nrp0,md,rd,1] 
+	00430: ALIGNRP    
+	00431: SRP0       
+	00432: ALIGNRP    
+	00433: SFVTPV     
+	00434: SRP0       
+	00435: ALIGNRP    
+	00436: ALIGNRP    
+	00437: ALIGNRP    
+	00438: ALIGNRP    
+	00439: SRP0       
+	00440: ALIGNRP    
+	00441: ALIGNRP    
+	00442: SFVTPV     
+	00443: ALIGNRP    
+	00444: ALIGNRP    
+	00445: ALIGNRP    
+	00446: SFVTPV     
+	00447: ALIGNRP    
+	00448: ALIGNRP    
+	00449: ALIGNRP    
+	00450: ALIGNRP    
+	00451: ALIGNRP    
+	00452: SRP0       
+	00453: ALIGNRP    
+	00454: SRP0       
+	00455: ALIGNRP    
+	00456: SRP0       
+	00457: ALIGNRP    
+	00458: SRP0       
+	00459: ALIGNRP    
+	00460: SRP0       
+	00461: ALIGNRP    
+	00462: SRP0       
+	00463: ALIGNRP    
+	00464: SRP0       
+	00465: ALIGNRP    
+	00466: SRP0       
+	00467: ALIGNRP    
+	00468: SRP0       
+	00469: ALIGNRP    
+	00470: SRP0       
+	00471: ALIGNRP    
+	00472: SRP0       
+	00473: ALIGNRP    
+	00474: SRP0       
+	00475: ALIGNRP    
+	00476: SRP2       
+	00477: IP         
+	00478: MDAP[rd]   
+	00479: SLOOP      
+	00480: IP         
+	00481: SHP[rp2,zp1] 
+	00482: MDAP[rd]   
+	00483: DELTAP1    
+	00484: ALIGNRP    
+	00485: SDPVTL[1]  
+	00486: SFVTCA[x-axis] 
+	00487: MDAP[nrd]  
+	00488: CALL       
+	00489: SDPVTL[1]  
+	00490: RDTG       
+	00491: MDRP[nrp0,nmd,rd,0] 
+	00492: SDPVTL[1]  
+	00493: MDAP[nrd]  
+	00494: RTG        
+	00495: CALL       
+	00496: SDPVTL[1]  
+	00497: RDTG       
+	00498: MDRP[nrp0,nmd,rd,0] 
+	00499: IUP[y]     
+	00500: IUP[x]     
+	00501: SVTCA[x-axis] 
+	00502: DELTAP2    
+	00503: DELTAP2    
+	00504: DELTAP2    
+	00505: DELTAP1    
+	00506: DELTAP1    
+	00507: DELTAP1    
+	00508: SVTCA[y-axis] 
+	00509: DELTAP3    
+	00510: DELTAP2    
+	00511: DELTAP1    
+	00512: SVTCA[x-axis] 
+	00513: DELTAP3    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:  YDual                       X-Short On
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual                               On
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         On
+	 28:                                      On
+	 29:  YDual                       X-Short On
+	 30:                              X-Short On
+	 31:        XDual                         On
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short On
+	 43:        XDual                         On
+	 44:  YDual XDual                 X-Short On
+	 45:        XDual                 X-Short On
+	 46:        XDual                 X-Short On
+	 47:  YDual XDual                 X-Short On
+	 48:        XDual                         On
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:        XDual         Y-Short         On
+	 52:        XDual         Y-Short         Off
+	 53:  YDual                       X-Short On
+	 54:  YDual                       X-Short On
+	 55:  YDual                       X-Short Off
+	 56:  YDual XDual         Y-Short         On
+	 57:  YDual XDual         Y-Short         Off
+	 58:  YDual XDual                 X-Short On
+	 59:  YDual XDual                 X-Short On
+	 60:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   297,  1105)  ->  Abs (   297,  1105)
+	  1: Rel (     0,  -432)  ->  Abs (   297,   673)
+	  2: Rel (    93,     0)  ->  Abs (   390,   673)
+	  3: Rel (    41,     0)  ->  Abs (   431,   673)
+	  4: Rel (     0,   -33)  ->  Abs (   431,   640)
+	  5: Rel (     0,   -32)  ->  Abs (   431,   608)
+	  6: Rel (   -41,     0)  ->  Abs (   390,   608)
+	  7: Rel (  -252,     0)  ->  Abs (   138,   608)
+	  8: Rel (   -41,     0)  ->  Abs (    97,   608)
+	  9: Rel (     0,    32)  ->  Abs (    97,   640)
+	 10: Rel (     0,    33)  ->  Abs (    97,   673)
+	 11: Rel (    41,     0)  ->  Abs (   138,   673)
+	 12: Rel (    94,     0)  ->  Abs (   232,   673)
+	 13: Rel (     0,   432)  ->  Abs (   232,  1105)
+	 14: Rel (  -163,     0)  ->  Abs (    69,  1105)
+	 15: Rel (     0,  -143)  ->  Abs (    69,   962)
+	 16: Rel (     0,   -41)  ->  Abs (    69,   921)
+	 17: Rel (   -32,     0)  ->  Abs (    37,   921)
+	 18: Rel (   -33,     0)  ->  Abs (     4,   921)
+	 19: Rel (     0,    41)  ->  Abs (     4,   962)
+	 20: Rel (     0,   208)  ->  Abs (     4,  1170)
+	 21: Rel (   520,     0)  ->  Abs (   524,  1170)
+	 22: Rel (     0,  -208)  ->  Abs (   524,   962)
+	 23: Rel (     0,   -41)  ->  Abs (   524,   921)
+	 24: Rel (   -32,     0)  ->  Abs (   492,   921)
+	 25: Rel (   -33,     0)  ->  Abs (   459,   921)
+	 26: Rel (     0,    41)  ->  Abs (   459,   962)
+	 27: Rel (     0,   143)  ->  Abs (   459,  1105)
+	 28: Rel (   455,  -329)  ->  Abs (   914,   776)
+	 29: Rel (   -68,     0)  ->  Abs (   846,   776)
+	 30: Rel (  -166,   325)  ->  Abs (   680,  1101)
+	 31: Rel (     0,  -428)  ->  Abs (   680,   673)
+	 32: Rel (    58,     0)  ->  Abs (   738,   673)
+	 33: Rel (    42,     0)  ->  Abs (   780,   673)
+	 34: Rel (     0,   -33)  ->  Abs (   780,   640)
+	 35: Rel (     0,   -32)  ->  Abs (   780,   608)
+	 36: Rel (   -42,     0)  ->  Abs (   738,   608)
+	 37: Rel (  -161,     0)  ->  Abs (   577,   608)
+	 38: Rel (   -42,     0)  ->  Abs (   535,   608)
+	 39: Rel (     0,    32)  ->  Abs (   535,   640)
+	 40: Rel (     0,    33)  ->  Abs (   535,   673)
+	 41: Rel (    42,     0)  ->  Abs (   577,   673)
+	 42: Rel (    36,     0)  ->  Abs (   613,   673)
+	 43: Rel (     0,   497)  ->  Abs (   613,  1170)
+	 44: Rel (   107,     0)  ->  Abs (   720,  1170)
+	 45: Rel (   160,  -312)  ->  Abs (   880,   858)
+	 46: Rel (   160,   312)  ->  Abs (  1040,  1170)
+	 47: Rel (   107,     0)  ->  Abs (  1147,  1170)
+	 48: Rel (     0,  -497)  ->  Abs (  1147,   673)
+	 49: Rel (    36,     0)  ->  Abs (  1183,   673)
+	 50: Rel (    42,     0)  ->  Abs (  1225,   673)
+	 51: Rel (     0,   -33)  ->  Abs (  1225,   640)
+	 52: Rel (     0,   -32)  ->  Abs (  1225,   608)
+	 53: Rel (   -42,     0)  ->  Abs (  1183,   608)
+	 54: Rel (  -161,     0)  ->  Abs (  1022,   608)
+	 55: Rel (   -42,     0)  ->  Abs (   980,   608)
+	 56: Rel (     0,    32)  ->  Abs (   980,   640)
+	 57: Rel (     0,    33)  ->  Abs (   980,   673)
+	 58: Rel (    42,     0)  ->  Abs (  1022,   673)
+	 59: Rel (    58,     0)  ->  Abs (  1080,   673)
+	 60: Rel (     0,   430)  ->  Abs (  1080,  1103)
+
+	Glyph 141: off = 0x0000A7EA, len = 96
+	  numberOfContours:	1
+	  xMin:			443
+	  yMin:			1021
+	  xMax:			785
+	  yMax:			1329
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	33
+	00000: NPUSHB      (12):     0     3    16     3    96     3   112     3   128     3 
+	                             5     3 
+	00014: PUSHW[5]            498    12    15   503     6 
+	00025: MDAP[rd]   
+	00026: MIRP[nrp0,md,rd,1] 
+	00027: SVTCA[y-axis] 
+	00028: MDAP[rd]   
+	00029: MIRP[nrp0,md,rd,1] 
+	00030: DELTAP1    
+	00031: IUP[y]     
+	00032: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   760,  1245)  ->  Abs (   760,  1245)
+	  1: Rel (  -237,  -204)  ->  Abs (   523,  1041)
+	  2: Rel (   -22,   -20)  ->  Abs (   501,  1021)
+	  3: Rel (   -16,     0)  ->  Abs (   485,  1021)
+	  4: Rel (   -17,     0)  ->  Abs (   468,  1021)
+	  5: Rel (   -25,    25)  ->  Abs (   443,  1046)
+	  6: Rel (     0,    18)  ->  Abs (   443,  1064)
+	  7: Rel (     0,    10)  ->  Abs (   443,  1074)
+	  8: Rel (     9,    16)  ->  Abs (   452,  1090)
+	  9: Rel (    16,    15)  ->  Abs (   468,  1105)
+	 10: Rel (   236,   204)  ->  Abs (   704,  1309)
+	 11: Rel (    23,    20)  ->  Abs (   727,  1329)
+	 12: Rel (    16,     0)  ->  Abs (   743,  1329)
+	 13: Rel (    17,     0)  ->  Abs (   760,  1329)
+	 14: Rel (    25,   -25)  ->  Abs (   785,  1304)
+	 15: Rel (     0,   -18)  ->  Abs (   785,  1286)
+	 16: Rel (     0,   -10)  ->  Abs (   785,  1276)
+	 17: Rel (    -9,   -17)  ->  Abs (   776,  1259)
+
+	Glyph 142: off = 0x0000A84A, len = 128
+	  numberOfContours:	2
+	  xMin:			319
+	  yMin:			1066
+	  xMax:			911
+	  yMax:			1229
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	50
+	00000: NPUSHB      (27):     3   112     9    15   112    21    21     9    18   112 
+	                            48    12   112    12     2    12   203     0   112     6 
+	                            25    24     9     0   113   170    24 
+	00029: CALL       
+	00030: SVTCA[y-axis] 
+	00031: MIAP[rd+ci] 
+	00032: SVTCA[x-axis] 
+	00033: FLIPOFF    
+	00034: SRP0       
+	00035: MIRP[srp0,nmd,rd,0] 
+	00036: FLIPON     
+	00037: MIRP[nrp0,md,rd,1] 
+	00038: MIRP[srp0,md,rd,1] 
+	00039: DELTAP1    
+	00040: MIRP[nrp0,md,rd,1] 
+	00041: SVTCA[y-axis] 
+	00042: SRP0       
+	00043: ALIGNRP    
+	00044: SRP0       
+	00045: MIRP[nrp0,md,rd,1] 
+	00046: SRP0       
+	00047: MIRP[nrp0,md,rd,1] 
+	00048: IUP[y]     
+	00049: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:                      Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   482,  1147)  ->  Abs (   482,  1147)
+	  1: Rel (     0,   -34)  ->  Abs (   482,  1113)
+	  2: Rel (   -48,   -47)  ->  Abs (   434,  1066)
+	  3: Rel (   -34,     0)  ->  Abs (   400,  1066)
+	  4: Rel (   -33,     0)  ->  Abs (   367,  1066)
+	  5: Rel (   -48,    48)  ->  Abs (   319,  1114)
+	  6: Rel (     0,    33)  ->  Abs (   319,  1147)
+	  7: Rel (     0,    34)  ->  Abs (   319,  1181)
+	  8: Rel (    48,    48)  ->  Abs (   367,  1229)
+	  9: Rel (    33,     0)  ->  Abs (   400,  1229)
+	 10: Rel (    34,     0)  ->  Abs (   434,  1229)
+	 11: Rel (    48,   -48)  ->  Abs (   482,  1181)
+	 12: Rel (   429,   -34)  ->  Abs (   911,  1147)
+	 13: Rel (     0,   -34)  ->  Abs (   911,  1113)
+	 14: Rel (   -48,   -47)  ->  Abs (   863,  1066)
+	 15: Rel (   -34,     0)  ->  Abs (   829,  1066)
+	 16: Rel (   -34,     0)  ->  Abs (   795,  1066)
+	 17: Rel (   -47,    48)  ->  Abs (   748,  1114)
+	 18: Rel (     0,    33)  ->  Abs (   748,  1147)
+	 19: Rel (     0,    34)  ->  Abs (   748,  1181)
+	 20: Rel (    47,    48)  ->  Abs (   795,  1229)
+	 21: Rel (    34,     0)  ->  Abs (   829,  1229)
+	 22: Rel (    34,     0)  ->  Abs (   863,  1229)
+	 23: Rel (    48,   -48)  ->  Abs (   911,  1181)
+
+	Glyph 143: off = 0x0000A8CA, len = 306
+	  numberOfContours:	1
+	  xMin:			101
+	  yMin:			-72
+	  xMax:			1129
+	  yMax:			1244
+
+	EndPoints
+	---------
+	  0:  51
+
+	  Length of Instructions:	154
+	00000: NPUSHB      (64):     8    36    72    36   135     1   134     9   136    36 
+	                             5    44     0     1     9    10    10    43    35    27 
+	                            26    18    17    17    36    14    15    16    17    10 
+	                            36    43    42    41    40    10    38    12    43    10 
+	                            10    36    17    36    20    17    17    36    38    38 
+	                            12    45    44    44    35    35    34     0    27    27 
+	                            51    34    36    28 
+	00066: PUSHW[1]            760 
+	00069: NPUSHB      (19):    25     2     1     1    26    26    25    36    19     8 
+	                             9     9    18    18    19    48     5    31    22 
+	00090: MDAP[rd]   
+	00091: ALIGNRP    
+	00092: MDAP[rd]   
+	00093: ALIGNRP    
+	00094: SVTCA[y-axis] 
+	00095: MDAP[rd]   
+	00096: ALIGNRP    
+	00097: SRP0       
+	00098: ALIGNRP    
+	00099: SRP0       
+	00100: ALIGNRP    
+	00101: SRP0       
+	00102: MIRP[srp0,md,rd,1] 
+	00103: ALIGNRP    
+	00104: SRP0       
+	00105: ALIGNRP    
+	00106: SRP0       
+	00107: ALIGNRP    
+	00108: SRP0       
+	00109: MIRP[srp0,nmd,rd,2] 
+	00110: MIRP[nrp0,md,rd,1] 
+	00111: ALIGNRP    
+	00112: ALIGNRP    
+	00113: SRP0       
+	00114: ALIGNRP    
+	00115: SRP0       
+	00116: ALIGNRP    
+	00117: SRP0       
+	00118: ALIGNRP    
+	00119: SRP0       
+	00120: ALIGNRP    
+	00121: MDAP[rd]   
+	00122: SHP[rp2,zp1] 
+	00123: MDAP[rd]   
+	00124: SDPVTL[1]  
+	00125: SFVTPV     
+	00126: MDAP[nrd]  
+	00127: CALL       
+	00128: SFVTPV     
+	00129: RDTG       
+	00130: SRP0       
+	00131: MDRP[nrp0,nmd,rd,0] 
+	00132: SVTCA[y-axis] 
+	00133: SRP1       
+	00134: SRP2       
+	00135: SLOOP      
+	00136: IP         
+	00137: SPVTL[p1,p2] 
+	00138: SFVTCA[x-axis] 
+	00139: SRP0       
+	00140: ALIGNRP    
+	00141: ALIGNRP    
+	00142: ALIGNRP    
+	00143: ALIGNRP    
+	00144: SPVTL[p1,p2] 
+	00145: SRP0       
+	00146: ALIGNRP    
+	00147: ALIGNRP    
+	00148: ALIGNRP    
+	00149: ALIGNRP    
+	00150: IUP[y]     
+	00151: IUP[x]     
+	00152: SVTCA[x-axis] 
+	00153: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual                               On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:                              X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:        XDual                 X-Short On
+	 19:  YDual                               On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual                               On
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:  YDual                               On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual                               On
+	 36:        XDual                 X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:        XDual         Y-Short         Off
+	 43:                      Y-Short X-Short On
+	 44:                              X-Short On
+	 45:  YDual                               On
+	 46:  YDual XDual                 X-Short Off
+	 47:        XDual         Y-Short X-Short Off
+	 48:        XDual         Y-Short         On
+	 49:        XDual         Y-Short         Off
+	 50:                      Y-Short X-Short Off
+	 51:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   712,   695)  ->  Abs (   712,   695)
+	  1: Rel (  -100,  -217)  ->  Abs (   612,   478)
+	  2: Rel (   461,     0)  ->  Abs (  1073,   478)
+	  3: Rel (    30,     0)  ->  Abs (  1103,   478)
+	  4: Rel (    26,   -23)  ->  Abs (  1129,   455)
+	  5: Rel (     0,   -19)  ->  Abs (  1129,   436)
+	  6: Rel (     0,   -19)  ->  Abs (  1129,   417)
+	  7: Rel (   -26,   -23)  ->  Abs (  1103,   394)
+	  8: Rel (   -30,     0)  ->  Abs (  1073,   394)
+	  9: Rel (  -500,     0)  ->  Abs (   573,   394)
+	 10: Rel (  -197,  -429)  ->  Abs (   376,   -35)
+	 11: Rel (   -17,   -37)  ->  Abs (   359,   -72)
+	 12: Rel (   -28,     0)  ->  Abs (   331,   -72)
+	 13: Rel (   -17,     0)  ->  Abs (   314,   -72)
+	 14: Rel (   -25,    24)  ->  Abs (   289,   -48)
+	 15: Rel (     0,    16)  ->  Abs (   289,   -32)
+	 16: Rel (     0,    11)  ->  Abs (   289,   -21)
+	 17: Rel (    10,    21)  ->  Abs (   299,     0)
+	 18: Rel (   181,   394)  ->  Abs (   480,   394)
+	 19: Rel (  -323,     0)  ->  Abs (   157,   394)
+	 20: Rel (   -30,     0)  ->  Abs (   127,   394)
+	 21: Rel (   -26,    23)  ->  Abs (   101,   417)
+	 22: Rel (     0,    19)  ->  Abs (   101,   436)
+	 23: Rel (     0,    19)  ->  Abs (   101,   455)
+	 24: Rel (    26,    23)  ->  Abs (   127,   478)
+	 25: Rel (    30,     0)  ->  Abs (   157,   478)
+	 26: Rel (   362,     0)  ->  Abs (   519,   478)
+	 27: Rel (   100,   217)  ->  Abs (   619,   695)
+	 28: Rel (  -462,     0)  ->  Abs (   157,   695)
+	 29: Rel (   -30,     0)  ->  Abs (   127,   695)
+	 30: Rel (   -26,    24)  ->  Abs (   101,   719)
+	 31: Rel (     0,    19)  ->  Abs (   101,   738)
+	 32: Rel (     0,    18)  ->  Abs (   101,   756)
+	 33: Rel (    26,    24)  ->  Abs (   127,   780)
+	 34: Rel (    30,     0)  ->  Abs (   157,   780)
+	 35: Rel (   500,     0)  ->  Abs (   657,   780)
+	 36: Rel (   197,   427)  ->  Abs (   854,  1207)
+	 37: Rel (    17,    37)  ->  Abs (   871,  1244)
+	 38: Rel (    27,     0)  ->  Abs (   898,  1244)
+	 39: Rel (    18,     0)  ->  Abs (   916,  1244)
+	 40: Rel (    24,   -25)  ->  Abs (   940,  1219)
+	 41: Rel (     0,   -15)  ->  Abs (   940,  1204)
+	 42: Rel (     0,   -11)  ->  Abs (   940,  1193)
+	 43: Rel (    -9,   -22)  ->  Abs (   931,  1171)
+	 44: Rel (  -181,  -391)  ->  Abs (   750,   780)
+	 45: Rel (   323,     0)  ->  Abs (  1073,   780)
+	 46: Rel (    30,     0)  ->  Abs (  1103,   780)
+	 47: Rel (    26,   -24)  ->  Abs (  1129,   756)
+	 48: Rel (     0,   -19)  ->  Abs (  1129,   737)
+	 49: Rel (     0,   -18)  ->  Abs (  1129,   719)
+	 50: Rel (   -26,   -24)  ->  Abs (  1103,   695)
+	 51: Rel (   -30,     0)  ->  Abs (  1073,   695)
+
+	Glyph 144: off = 0x0000A9FC, len = 756
+	  numberOfContours:	2
+	  xMin:			18
+	  yMin:			0
+	  xMax:			1212
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  74
+	  1:  78
+
+	  Length of Instructions:	539
+	00000: NPUSHB      (21):    40    78    51    35    48    36    51    76     4   143 
+	                            31   143    32     2     1    78    77    77     2    65 
+	                            56 
+	00023: PUSHW[1]            676 
+	00026: NPUSHB      (14):     0    61     1    61    53    55    61    61    56    55 
+	                            29    65    10    16 
+	00042: PUSHW[1]            676 
+	00045: NPUSHB      (24):    15    13     1    63    13    95    13   191    13     3 
+	                            13    13    43    17    13    13    16    17    29    10 
+	                            17    18    27    33 
+	00071: PUSHW[1]            676 
+	00074: NPUSHB      (14):    15    30     1    30    86    34    30    30    33    34 
+	                            29    27    45    51 
+	00090: PUSHW[1]            676 
+	00093: NPUSHB      (20):    15    48    31    48    47    48    63    48     4    48 
+	                            41    52    48    48    51    52    29    45    67    73 
+	00115: PUSHW[1]            676 
+	00118: NPUSHB      (14):    63    70     1    70    43    74    70    70    73    74 
+	                            29    67     9     3 
+	00134: PUSHW[1]            676 
+	00137: NPUSHB      (14):     6     6    41     2     6     6     3     2    29     9 
+	                             2    77    25    19 
+	00153: PUSHW[4]            676    22    22   354 
+	00162: NPUSHB      (11):    18    22    22    19    18    29    25    18    17    44 
+	                            38 
+	00175: PUSHW[1]            676 
+	00178: NPUSHB      (74):     0    41    16    41    32    41    48    41     4    41 
+	                            41    37    41    41    38    37    29    44    18    17 
+	                            17    30     2    77    20     2     2    77     2    17 
+	                            38    10    77    18    38    25    75    30     0    37 
+	                            36    38    53    53    52     0     0    35    52    52 
+	                            54    35    76    35    35    34    38    26    26    25 
+	                            68    67    55    54    38    67    67    10     9    25 
+	                             2     9     8    78 
+	00254: PUSHW[1]            672 
+	00257: NPUSHB      (38):    75    75    74    30    48    54     1    54    44    63 
+	                            45     1    45   240    54    54   144    35     1    35 
+	                            30    76    76    80    79    55    56    30    65    65 
+	                           240    66     1    66    65    27    27    26 
+	00297: PUSHW[1]            707 
+	00300: PUSHB[7]             77     2    38    17    77    38    18 
+	00308: PUSHW[1]            310 
+	00311: NPUSHB      (16):     0    17     1    48    17    80    17   176    17     3 
+	                            17   233    79    69   108    24 
+	00329: PUSHW[1]            300 
+	00332: SCANCTRL   
+	00333: CALL       
+	00334: SRP0       
+	00335: MIRP[srp0,nmd,rd,2] 
+	00336: DELTAP1    
+	00337: DELTAP1    
+	00338: MIRP[srp0,nmd,rd,0] 
+	00339: MIRP[nrp0,md,rd,1] 
+	00340: SRP0       
+	00341: MIRP[nrp0,md,rd,1] 
+	00342: SRP0       
+	00343: MIRP[srp0,nmd,rd,0] 
+	00344: ALIGNRP    
+	00345: SRP0       
+	00346: MIRP[srp0,nmd,rd,0] 
+	00347: DELTAP1    
+	00348: ALIGNRP    
+	00349: SRP0       
+	00350: MIRP[srp0,md,rd,1] 
+	00351: ALIGNRP    
+	00352: SRP1       
+	00353: SRP2       
+	00354: IP         
+	00355: MDAP[rd]   
+	00356: MIRP[srp0,md,rd,1] 
+	00357: DELTAP1    
+	00358: ALIGNRP    
+	00359: SRP0       
+	00360: MIRP[srp0,nmd,rd,0] 
+	00361: DELTAP1    
+	00362: ALIGNRP    
+	00363: SRP0       
+	00364: DELTAP1    
+	00365: MIRP[srp0,md,rd,1] 
+	00366: ALIGNRP    
+	00367: SRP0       
+	00368: MIRP[nrp0,md,rd,2] 
+	00369: SVTCA[y-axis] 
+	00370: MIAP[rd+ci] 
+	00371: MIAP[rd+ci] 
+	00372: SRP0       
+	00373: ALIGNRP    
+	00374: ALIGNRP    
+	00375: SRP0       
+	00376: MIRP[srp0,md,rd,1] 
+	00377: ALIGNRP    
+	00378: SRP0       
+	00379: ALIGNRP    
+	00380: SRP0       
+	00381: ALIGNRP    
+	00382: SRP0       
+	00383: MIRP[srp0,md,rd,1] 
+	00384: ALIGNRP    
+	00385: SRP0       
+	00386: ALIGNRP    
+	00387: SRP1       
+	00388: SRP2       
+	00389: IP         
+	00390: MDAP[rd]   
+	00391: SRP1       
+	00392: IP         
+	00393: MDAP[rd]   
+	00394: SRP0       
+	00395: ALIGNRP    
+	00396: SRP0       
+	00397: MIRP[srp0,md,rd,1] 
+	00398: ALIGNRP    
+	00399: SRP0       
+	00400: MIRP[nrp0,md,rd,1] 
+	00401: SRP0       
+	00402: MIRP[srp0,md,rd,1] 
+	00403: ALIGNRP    
+	00404: SRP0       
+	00405: MIRP[srp0,md,rd,1] 
+	00406: ALIGNRP    
+	00407: SDPVTL[1]  
+	00408: SFVTCA[x-axis] 
+	00409: MDAP[nrd]  
+	00410: CALL       
+	00411: RDTG       
+	00412: SRP0       
+	00413: MDRP[nrp0,nmd,rd,0] 
+	00414: RTG        
+	00415: SVTCA[x-axis] 
+	00416: SRP0       
+	00417: MIRP[srp0,md,rd,1] 
+	00418: RTDG       
+	00419: SRP2       
+	00420: IP         
+	00421: MDAP[rd]   
+	00422: RTG        
+	00423: SVTCA[y-axis] 
+	00424: SRP0       
+	00425: MIRP[srp0,nmd,rd,1] 
+	00426: DELTAP1    
+	00427: MIRP[srp0,nmd,rd,0] 
+	00428: MDRP[nrp0,nmd,rd,0] 
+	00429: SFVTL[=p1,p2] 
+	00430: SRP0       
+	00431: MIRP[srp0,md,rd,1] 
+	00432: RTDG       
+	00433: SRP2       
+	00434: IP         
+	00435: MDAP[rd]   
+	00436: RTG        
+	00437: SVTCA[x-axis] 
+	00438: SRP0       
+	00439: MIRP[srp0,nmd,nrd,1] 
+	00440: MDAP[rd]   
+	00441: MIRP[srp0,nmd,rd,0] 
+	00442: MDRP[nrp0,nmd,rd,0] 
+	00443: SVTCA[y-axis] 
+	00444: SFVTL[=p1,p2] 
+	00445: SRP0       
+	00446: MIRP[srp0,md,rd,1] 
+	00447: RTDG       
+	00448: SRP2       
+	00449: IP         
+	00450: MDAP[rd]   
+	00451: RTG        
+	00452: SVTCA[x-axis] 
+	00453: SRP0       
+	00454: MIRP[srp0,nmd,nrd,1] 
+	00455: MDAP[rd]   
+	00456: MIRP[srp0,nmd,rd,0] 
+	00457: MDRP[nrp0,nmd,rd,0] 
+	00458: SVTCA[y-axis] 
+	00459: SRP0       
+	00460: MIRP[srp0,md,rd,1] 
+	00461: RTDG       
+	00462: SRP2       
+	00463: IP         
+	00464: MDAP[rd]   
+	00465: RTG        
+	00466: SVTCA[x-axis] 
+	00467: SRP0       
+	00468: MIRP[srp0,nmd,rd,1] 
+	00469: DELTAP1    
+	00470: MIRP[srp0,nmd,rd,0] 
+	00471: MDRP[nrp0,nmd,rd,0] 
+	00472: SRP0       
+	00473: MIRP[srp0,md,rd,1] 
+	00474: RTDG       
+	00475: SRP2       
+	00476: IP         
+	00477: MDAP[rd]   
+	00478: RTG        
+	00479: SVTCA[y-axis] 
+	00480: SRP0       
+	00481: MIRP[srp0,nmd,rd,1] 
+	00482: DELTAP1    
+	00483: MIRP[srp0,nmd,rd,0] 
+	00484: MDRP[nrp0,nmd,rd,0] 
+	00485: SVTCA[x-axis] 
+	00486: SRP0       
+	00487: MIRP[srp0,md,rd,1] 
+	00488: RTDG       
+	00489: SRP2       
+	00490: IP         
+	00491: MDAP[rd]   
+	00492: RTG        
+	00493: SVTCA[y-axis] 
+	00494: SRP0       
+	00495: MIRP[srp0,nmd,rd,1] 
+	00496: DELTAP1    
+	00497: MIRP[srp0,nmd,rd,0] 
+	00498: MDRP[nrp0,nmd,rd,0] 
+	00499: SFVTL[=p1,p2] 
+	00500: SRP0       
+	00501: MIRP[srp0,md,rd,1] 
+	00502: RTDG       
+	00503: SRP2       
+	00504: IP         
+	00505: MDAP[rd]   
+	00506: RTG        
+	00507: SVTCA[x-axis] 
+	00508: SRP0       
+	00509: MIRP[srp0,nmd,nrd,1] 
+	00510: MDAP[rd]   
+	00511: DELTAP1    
+	00512: DELTAP1    
+	00513: MIRP[srp0,nmd,rd,0] 
+	00514: MDRP[nrp0,nmd,rd,0] 
+	00515: SRP0       
+	00516: MIRP[srp0,md,rd,1] 
+	00517: RTDG       
+	00518: SRP2       
+	00519: IP         
+	00520: MDAP[rd]   
+	00521: RTG        
+	00522: SVTCA[y-axis] 
+	00523: SRP0       
+	00524: MIRP[srp0,nmd,rd,1] 
+	00525: DELTAP1    
+	00526: MIRP[srp0,nmd,rd,0] 
+	00527: MDRP[nrp0,nmd,rd,0] 
+	00528: SPVTL[p1,p2] 
+	00529: SRP0       
+	00530: SFVTCA[x-axis] 
+	00531: ALIGNRP    
+	00532: ALIGNRP    
+	00533: IUP[y]     
+	00534: IUP[x]     
+	00535: SVTCA[y-axis] 
+	00536: DELTAP1    
+	00537: SVTCA[x-axis] 
+	00538: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:                              X-Short On
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short On
+	 18:                                      On
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual                               On
+	 27:        XDual                         On
+	 28:        XDual         Y-Short         Off
+	 29:                      Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual                               On
+	 36:        XDual                         On
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:        XDual         Y-Short X-Short Off
+	 44:                      Y-Short X-Short On
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         Off
+	 47:                      Y-Short X-Short Off
+	 48:  YDual                       X-Short On
+	 49:  YDual                       X-Short Off
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         On
+	 53:  YDual                       X-Short On
+	 54:        XDual                         On
+	 55:  YDual                               On
+	 56:  YDual XDual         Y-Short         On
+	 57:  YDual XDual         Y-Short         Off
+	 58:  YDual XDual         Y-Short X-Short On
+	 59:  YDual XDual         Y-Short X-Short Off
+	 60:  YDual XDual         Y-Short X-Short Off
+	 61:  YDual XDual                 X-Short On
+	 62:        XDual         Y-Short X-Short On
+	 63:        XDual         Y-Short X-Short Off
+	 64:        XDual         Y-Short X-Short Off
+	 65:        XDual         Y-Short         On
+	 66:        XDual                         On
+	 67:  YDual                               On
+	 68:  YDual                       X-Short Off
+	 69:  YDual               Y-Short X-Short Off
+	 70:  YDual XDual         Y-Short         On
+	 71:  YDual XDual         Y-Short         Off
+	 72:  YDual XDual         Y-Short X-Short Off
+	 73:  YDual XDual                 X-Short On
+	 74:  YDual XDual                 X-Short On
+	 75:        XDual                         On
+	 76:        XDual                         On
+	 77:  YDual                       X-Short On
+	 78:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   614,   394)  ->  Abs (   614,   394)
+	  1: Rel (  -293,     0)  ->  Abs (   321,   394)
+	  2: Rel (   -85,  -310)  ->  Abs (   236,    84)
+	  3: Rel (    54,     0)  ->  Abs (   290,    84)
+	  4: Rel (    30,     0)  ->  Abs (   320,    84)
+	  5: Rel (    26,   -23)  ->  Abs (   346,    61)
+	  6: Rel (     0,   -19)  ->  Abs (   346,    42)
+	  7: Rel (     0,   -18)  ->  Abs (   346,    24)
+	  8: Rel (   -26,   -24)  ->  Abs (   320,     0)
+	  9: Rel (   -30,     0)  ->  Abs (   290,     0)
+	 10: Rel (  -216,     0)  ->  Abs (    74,     0)
+	 11: Rel (   -30,     0)  ->  Abs (    44,     0)
+	 12: Rel (   -26,    24)  ->  Abs (    18,    24)
+	 13: Rel (     0,    18)  ->  Abs (    18,    42)
+	 14: Rel (     0,    19)  ->  Abs (    18,    61)
+	 15: Rel (    26,    23)  ->  Abs (    44,    84)
+	 16: Rel (    30,     0)  ->  Abs (    74,    84)
+	 17: Rel (    77,     0)  ->  Abs (   151,    84)
+	 18: Rel (   276,  1002)  ->  Abs (   427,  1086)
+	 19: Rel (  -131,     0)  ->  Abs (   296,  1086)
+	 20: Rel (   -30,     0)  ->  Abs (   266,  1086)
+	 21: Rel (   -26,    23)  ->  Abs (   240,  1109)
+	 22: Rel (     0,    19)  ->  Abs (   240,  1128)
+	 23: Rel (     0,    19)  ->  Abs (   240,  1147)
+	 24: Rel (    25,    23)  ->  Abs (   265,  1170)
+	 25: Rel (    31,     0)  ->  Abs (   296,  1170)
+	 26: Rel (   874,     0)  ->  Abs (  1170,  1170)
+	 27: Rel (     0,  -316)  ->  Abs (  1170,   854)
+	 28: Rel (     0,   -30)  ->  Abs (  1170,   824)
+	 29: Rel (   -24,   -26)  ->  Abs (  1146,   798)
+	 30: Rel (   -18,     0)  ->  Abs (  1128,   798)
+	 31: Rel (   -19,     0)  ->  Abs (  1109,   798)
+	 32: Rel (   -24,    26)  ->  Abs (  1085,   824)
+	 33: Rel (     0,    30)  ->  Abs (  1085,   854)
+	 34: Rel (     0,   232)  ->  Abs (  1085,  1086)
+	 35: Rel (  -387,     0)  ->  Abs (   698,  1086)
+	 36: Rel (     0,  -436)  ->  Abs (   698,   650)
+	 37: Rel (   163,     0)  ->  Abs (   861,   650)
+	 38: Rel (     0,    58)  ->  Abs (   861,   708)
+	 39: Rel (     0,    31)  ->  Abs (   861,   739)
+	 40: Rel (    23,    26)  ->  Abs (   884,   765)
+	 41: Rel (    19,     0)  ->  Abs (   903,   765)
+	 42: Rel (    19,     0)  ->  Abs (   922,   765)
+	 43: Rel (    24,   -26)  ->  Abs (   946,   739)
+	 44: Rel (    -1,   -31)  ->  Abs (   945,   708)
+	 45: Rel (     0,  -198)  ->  Abs (   945,   510)
+	 46: Rel (     0,   -31)  ->  Abs (   945,   479)
+	 47: Rel (   -23,   -26)  ->  Abs (   922,   453)
+	 48: Rel (   -19,     0)  ->  Abs (   903,   453)
+	 49: Rel (   -19,     0)  ->  Abs (   884,   453)
+	 50: Rel (   -23,    26)  ->  Abs (   861,   479)
+	 51: Rel (     0,    31)  ->  Abs (   861,   510)
+	 52: Rel (     0,    57)  ->  Abs (   861,   567)
+	 53: Rel (  -163,     0)  ->  Abs (   698,   567)
+	 54: Rel (     0,  -483)  ->  Abs (   698,    84)
+	 55: Rel (   430,     0)  ->  Abs (  1128,    84)
+	 56: Rel (     0,   194)  ->  Abs (  1128,   278)
+	 57: Rel (     0,    23)  ->  Abs (  1128,   301)
+	 58: Rel (     5,    11)  ->  Abs (  1133,   312)
+	 59: Rel (     3,     6)  ->  Abs (  1136,   318)
+	 60: Rel (    23,    16)  ->  Abs (  1159,   334)
+	 61: Rel (     7,     0)  ->  Abs (  1166,   334)
+	 62: Rel (    20,    -3)  ->  Abs (  1186,   331)
+	 63: Rel (    16,    -9)  ->  Abs (  1202,   322)
+	 64: Rel (    10,   -19)  ->  Abs (  1212,   303)
+	 65: Rel (     0,   -25)  ->  Abs (  1212,   278)
+	 66: Rel (     0,  -278)  ->  Abs (  1212,     0)
+	 67: Rel (  -706,     0)  ->  Abs (   506,     0)
+	 68: Rel (   -30,     0)  ->  Abs (   476,     0)
+	 69: Rel (   -26,    24)  ->  Abs (   450,    24)
+	 70: Rel (     0,    18)  ->  Abs (   450,    42)
+	 71: Rel (     0,    19)  ->  Abs (   450,    61)
+	 72: Rel (    26,    23)  ->  Abs (   476,    84)
+	 73: Rel (    30,     0)  ->  Abs (   506,    84)
+	 74: Rel (   108,     0)  ->  Abs (   614,    84)
+	 75: Rel (     0,   391)  ->  Abs (   614,   475)
+	 76: Rel (     0,   611)  ->  Abs (   614,  1086)
+	 77: Rel (  -104,     0)  ->  Abs (   510,  1086)
+	 78: Rel (  -166,  -611)  ->  Abs (   344,   475)
+
+	Glyph 145: off = 0x0000ACF0, len = 478
+	  numberOfContours:	3
+	  xMin:			80
+	  yMin:			-84
+	  xMax:			1149
+	  yMax:			1252
+
+	EndPoints
+	---------
+	  0:  33
+	  1:  41
+	  2:  49
+
+	  Length of Instructions:	322
+	00000: NPUSHB     (144):    31    24    31    25    63    18     3    34    37    47 
+	                            45   136    17   168    46     4    13    17    43    18 
+	                            52    16    62    17    58    18    58    38    50    46 
+	                             7    47    13    39    17    32    30    47    38    32 
+	                            46    63    13    50    30    63    38    50    46   153 
+	                             0   148    14   157    31   153    42    13    41     8 
+	                            10    10    11    17    34    41    41    40    18    18 
+	                             9     0    42    49    49    48    27    27    28    26 
+	                             1     0    10    41    42     4    17    27    34    49 
+	                             4    29    12     3     1    20    18     0    10    41 
+	                            42     4    17    27    34    49     4    32    15    26 
+	                             1     1    30     9    18    20     9     9    18     0 
+	                            10    41    42     4    17    27    34    49     4    29 
+	                            12     0    10    41    42     4    17    27    34    49 
+	                             4    32    15    26 
+	00146: PUSHW[1]            344 
+	00149: NPUSHB      (21):    18    44    37    32    36    37    15    25   102    47 
+	                            37     0    29    16    29    32    29    48    29     4 
+	                            29 
+	00172: PUSHW[1]            636 
+	00175: NPUSHB      (10):    39    37    12    25    50    32     9    15     3    67 
+	00187: PUSHW[3]            264    24   287 
+	00194: SCANCTRL   
+	00195: CALL       
+	00196: SVTCA[y-axis] 
+	00197: MIAP[rd+ci] 
+	00198: MIAP[rd+ci] 
+	00199: SVTCA[x-axis] 
+	00200: FLIPOFF    
+	00201: SRP0       
+	00202: MIRP[srp0,nmd,rd,0] 
+	00203: FLIPON     
+	00204: MIRP[nrp0,md,rd,1] 
+	00205: MIRP[srp0,md,rd,1] 
+	00206: DELTAP1    
+	00207: MIRP[nrp0,md,rd,1] 
+	00208: MIRP[nrp0,nmd,rd,0] 
+	00209: SVTCA[y-axis] 
+	00210: SRP0       
+	00211: MIRP[nrp0,md,rd,1] 
+	00212: SRP0       
+	00213: MIRP[nrp0,md,rd,1] 
+	00214: SRP0       
+	00215: MIRP[nrp0,md,rd,1] 
+	00216: SRP1       
+	00217: SRP2       
+	00218: SLOOP      
+	00219: IP         
+	00220: SLOOP      
+	00221: IP         
+	00222: SVTCA[x-axis] 
+	00223: SRP1       
+	00224: SRP2       
+	00225: SLOOP      
+	00226: IP         
+	00227: SLOOP      
+	00228: IP         
+	00229: SDPVTL[1]  
+	00230: SFVTPV     
+	00231: MDAP[nrd]  
+	00232: CALL       
+	00233: RDTG       
+	00234: SRP0       
+	00235: MDRP[nrp0,nmd,rd,0] 
+	00236: SVTCA[y-axis] 
+	00237: SRP1       
+	00238: SRP2       
+	00239: SLOOP      
+	00240: IP         
+	00241: SLOOP      
+	00242: IP         
+	00243: SRP1       
+	00244: SHP[rp1,zp0] 
+	00245: SRP1       
+	00246: SHP[rp1,zp0] 
+	00247: SVTCA[x-axis] 
+	00248: SRP1       
+	00249: SRP2       
+	00250: SLOOP      
+	00251: IP         
+	00252: SLOOP      
+	00253: IP         
+	00254: SPVTL[p1,p2] 
+	00255: SFVTL[=p1,p2] 
+	00256: ALIGNRP    
+	00257: SFVTL[=p1,p2] 
+	00258: ALIGNRP    
+	00259: SFVTPV     
+	00260: ALIGNRP    
+	00261: ALIGNRP    
+	00262: SPVTL[p1,p2] 
+	00263: SRP0       
+	00264: SFVTL[=p1,p2] 
+	00265: ALIGNRP    
+	00266: SFVTPV     
+	00267: ALIGNRP    
+	00268: ALIGNRP    
+	00269: SFVTL[=p1,p2] 
+	00270: ALIGNRP    
+	00271: IUP[y]     
+	00272: IUP[x]     
+	00273: RTG        
+	00274: RS         
+	00275: JROF       
+	00276: NPUSHB      (28):    45    46    37    38    30    31    13    14    37    14 
+	                            39    46     0    45    31    47    46     1    38    13 
+	                            36    46     1    46    30    44    46     0 
+	00306: SVTCA[y-axis] 
+	00307: CALL       
+	00308: CALL       
+	00309: SVTCA[x-axis] 
+	00310: CALL       
+	00311: CALL       
+	00312: FLIPRGON   
+	00313: FLIPRGON   
+	00314: FLIPRGON   
+	00315: FLIPRGON   
+	00316: SVTCA[y-axis] 
+	00317: DELTAP1    
+	00318: DELTAP1    
+	00319: SVTCA[x-axis] 
+	00320: DELTAP1    
+	00321: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:        XDual                         Off
+	 14:                                      Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short On
+	 27:                      Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual                         Off
+	 31:                                      Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:                                      On
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:                              X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:        XDual         Y-Short X-Short On
+	 42:        XDual         Y-Short X-Short On
+	 43:        XDual         Y-Short X-Short Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short Off
+	 46:        XDual                 X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   291,   104)  ->  Abs (   291,   104)
+	  1: Rel (  -127,  -161)  ->  Abs (   164,   -57)
+	  2: Rel (   -14,   -18)  ->  Abs (   150,   -75)
+	  3: Rel (   -17,    -9)  ->  Abs (   133,   -84)
+	  4: Rel (   -10,     0)  ->  Abs (   123,   -84)
+	  5: Rel (   -18,     0)  ->  Abs (   105,   -84)
+	  6: Rel (   -25,    25)  ->  Abs (    80,   -59)
+	  7: Rel (     0,    18)  ->  Abs (    80,   -41)
+	  8: Rel (     0,    14)  ->  Abs (    80,   -27)
+	  9: Rel (    18,    22)  ->  Abs (    98,    -5)
+	 10: Rel (   137,   174)  ->  Abs (   235,   169)
+	 11: Rel (  -131,   181)  ->  Abs (   104,   350)
+	 12: Rel (     0,   231)  ->  Abs (   104,   581)
+	 13: Rel (     0,   272)  ->  Abs (   104,   853)
+	 14: Rel (   309,   344)  ->  Abs (   413,  1197)
+	 15: Rel (   203,     0)  ->  Abs (   616,  1197)
+	 16: Rel (   183,     0)  ->  Abs (   799,  1197)
+	 17: Rel (   139,  -134)  ->  Abs (   938,  1063)
+	 18: Rel (   127,   162)  ->  Abs (  1065,  1225)
+	 19: Rel (    14,    17)  ->  Abs (  1079,  1242)
+	 20: Rel (    17,    10)  ->  Abs (  1096,  1252)
+	 21: Rel (    11,     0)  ->  Abs (  1107,  1252)
+	 22: Rel (    18,     0)  ->  Abs (  1125,  1252)
+	 23: Rel (    24,   -25)  ->  Abs (  1149,  1227)
+	 24: Rel (     0,   -18)  ->  Abs (  1149,  1209)
+	 25: Rel (     0,   -14)  ->  Abs (  1149,  1195)
+	 26: Rel (   -17,   -22)  ->  Abs (  1132,  1173)
+	 27: Rel (  -137,  -174)  ->  Abs (   995,   999)
+	 28: Rel (   133,  -177)  ->  Abs (  1128,   822)
+	 29: Rel (     0,  -240)  ->  Abs (  1128,   582)
+	 30: Rel (     0,  -270)  ->  Abs (  1128,   312)
+	 31: Rel (  -310,  -345)  ->  Abs (   818,   -33)
+	 32: Rel (  -202,     0)  ->  Abs (   616,   -33)
+	 33: Rel (  -184,     0)  ->  Abs (   432,   -33)
+	 34: Rel (   452,  1028)  ->  Abs (   884,   995)
+	 35: Rel (  -121,   118)  ->  Abs (   763,  1113)
+	 36: Rel (  -147,     0)  ->  Abs (   616,  1113)
+	 37: Rel (  -177,     0)  ->  Abs (   439,  1113)
+	 38: Rel (  -251,  -312)  ->  Abs (   188,   801)
+	 39: Rel (     0,  -219)  ->  Abs (   188,   582)
+	 40: Rel (     0,  -191)  ->  Abs (   188,   391)
+	 41: Rel (   102,  -152)  ->  Abs (   290,   239)
+	 42: Rel (    54,   -67)  ->  Abs (   344,   172)
+	 43: Rel (   121,  -121)  ->  Abs (   465,    51)
+	 44: Rel (   151,     0)  ->  Abs (   616,    51)
+	 45: Rel (   175,     0)  ->  Abs (   791,    51)
+	 46: Rel (   252,   310)  ->  Abs (  1043,   361)
+	 47: Rel (     0,   221)  ->  Abs (  1043,   582)
+	 48: Rel (     0,   196)  ->  Abs (  1043,   778)
+	 49: Rel (  -103,   151)  ->  Abs (   940,   929)
+
+	Glyph 146: off = 0x0000AECE, len = 332
+	  numberOfContours:	3
+	  xMin:			109
+	  yMin:			398
+	  xMax:			1120
+	  yMax:			846
+
+	EndPoints
+	---------
+	  0:  20
+	  1:  32
+	  2:  44
+
+	  Length of Instructions:	201
+	00000: PUSHB[8]             23    11    23    20     2    64     8    10 
+	00009: NPUSHW      (14):   767    13   771     8    42   771    24    36   771    30 
+	                             0   767    19   771 
+	00039: PUSHB[4]              2     8    44    24 
+	00044: PUSHW[1]            757 
+	00047: NPUSHB      (10):    30    44     2     6     5    44     0    27     1    27 
+	00059: PUSHW[1]            418 
+	00062: NPUSHB      (10):    21    91     0    33    16    33    80    33     3    33 
+	00074: PUSHW[1]            418 
+	00077: NPUSHB      (22):    39    44   176    16     1   160    16     1   128    16 
+	                             1    16    16   112    16     2    16    25    45    79 
+	                           123    24 
+	00101: CALL       
+	00102: FLIPOFF    
+	00103: SRP0       
+	00104: MIRP[srp0,nmd,rd,0] 
+	00105: DELTAP1    
+	00106: DELTAP1    
+	00107: DELTAP1    
+	00108: DELTAP1    
+	00109: FLIPON     
+	00110: MIRP[srp0,md,rd,1] 
+	00111: MIRP[srp0,nmd,rd,2] 
+	00112: DELTAP1    
+	00113: MIRP[srp0,md,rd,1] 
+	00114: MIRP[srp0,nmd,rd,2] 
+	00115: DELTAP1    
+	00116: MIRP[nrp0,md,rd,1] 
+	00117: SVTCA[y-axis] 
+	00118: MIAP[rd+ci] 
+	00119: MIRP[srp0,md,rd,1] 
+	00120: MIRP[srp0,nmd,rd,2] 
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: SRP0       
+	00123: MIRP[srp0,nmd,rd,0] 
+	00124: MIRP[nrp0,nmd,rd,0] 
+	00125: SRP0       
+	00126: MIRP[nrp0,nmd,rd,0] 
+	00127: SRP0       
+	00128: MIRP[nrp0,nmd,rd,0] 
+	00129: SRP0       
+	00130: MIRP[srp0,nmd,rd,0] 
+	00131: MIRP[nrp0,nmd,rd,0] 
+	00132: IUP[y]     
+	00133: IUP[x]     
+	00134: RS         
+	00135: JROF       
+	00136: NPUSHB      (48):    37    41    25    29    14    18     3     7    37    18 
+	                            39    39     0    29     3    27    39     1    41    14 
+	                            39    39     0    25     7    27    39     1    38    17 
+	                            36    39     1    28     4    30    39     1    40    15 
+	                            42    39     0    26     6    24    39     0 
+	00186: CALL       
+	00187: CALL       
+	00188: CALL       
+	00189: CALL       
+	00190: SVTCA[x-axis] 
+	00191: CALL       
+	00192: CALL       
+	00193: CALL       
+	00194: CALL       
+	00195: FLIPRGON   
+	00196: FLIPRGON   
+	00197: FLIPRGON   
+	00198: FLIPRGON   
+	00199: SVTCA[x-axis] 
+	00200: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:                      Y-Short X-Short Off
+	 33:                      Y-Short X-Short On
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:                      Y-Short X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   615,   678)  ->  Abs (   615,   678)
+	  1: Rel (   126,   168)  ->  Abs (   741,   846)
+	  2: Rel (   155,     0)  ->  Abs (   896,   846)
+	  3: Rel (   100,     0)  ->  Abs (   996,   846)
+	  4: Rel (   124,  -122)  ->  Abs (  1120,   724)
+	  5: Rel (     0,  -100)  ->  Abs (  1120,   624)
+	  6: Rel (     0,  -101)  ->  Abs (  1120,   523)
+	  7: Rel (  -121,  -125)  ->  Abs (   999,   398)
+	  8: Rel (   -96,     0)  ->  Abs (   903,   398)
+	  9: Rel (  -148,     0)  ->  Abs (   755,   398)
+	 10: Rel (  -140,   170)  ->  Abs (   615,   568)
+	 11: Rel (   -84,  -100)  ->  Abs (   531,   468)
+	 12: Rel (  -132,   -69)  ->  Abs (   399,   399)
+	 13: Rel (   -72,     0)  ->  Abs (   327,   399)
+	 14: Rel (   -94,     0)  ->  Abs (   233,   399)
+	 15: Rel (  -124,   123)  ->  Abs (   109,   522)
+	 16: Rel (     0,    98)  ->  Abs (   109,   620)
+	 17: Rel (     0,    98)  ->  Abs (   109,   718)
+	 18: Rel (   128,   127)  ->  Abs (   237,   845)
+	 19: Rel (    96,     0)  ->  Abs (   333,   845)
+	 20: Rel (   149,     0)  ->  Abs (   482,   845)
+	 21: Rel (   183,  -223)  ->  Abs (   665,   622)
+	 22: Rel (    88,   -94)  ->  Abs (   753,   528)
+	 23: Rel (    99,   -51)  ->  Abs (   852,   477)
+	 24: Rel (    51,     0)  ->  Abs (   903,   477)
+	 25: Rel (    66,     0)  ->  Abs (   969,   477)
+	 26: Rel (    77,    79)  ->  Abs (  1046,   556)
+	 27: Rel (     0,    67)  ->  Abs (  1046,   623)
+	 28: Rel (     0,    64)  ->  Abs (  1046,   687)
+	 29: Rel (   -83,    83)  ->  Abs (   963,   770)
+	 30: Rel (   -64,     0)  ->  Abs (   899,   770)
+	 31: Rel (   -55,     0)  ->  Abs (   844,   770)
+	 32: Rel (  -126,   -73)  ->  Abs (   718,   697)
+	 33: Rel (  -151,   -73)  ->  Abs (   567,   624)
+	 34: Rel (   -87,    92)  ->  Abs (   480,   716)
+	 35: Rel (  -102,    53)  ->  Abs (   378,   769)
+	 36: Rel (   -52,     0)  ->  Abs (   326,   769)
+	 37: Rel (   -63,     0)  ->  Abs (   263,   769)
+	 38: Rel (   -81,   -80)  ->  Abs (   182,   689)
+	 39: Rel (     0,   -66)  ->  Abs (   182,   623)
+	 40: Rel (     0,   -68)  ->  Abs (   182,   555)
+	 41: Rel (    79,   -79)  ->  Abs (   261,   476)
+	 42: Rel (    62,     0)  ->  Abs (   323,   476)
+	 43: Rel (    63,     0)  ->  Abs (   386,   476)
+	 44: Rel (   131,    84)  ->  Abs (   517,   560)
+
+	Glyph 147: off = 0x0000B01A, len = 272
+	  numberOfContours:	2
+	  xMin:			144
+	  yMin:			0
+	  xMax:			1085
+	  yMax:			1234
+
+	EndPoints
+	---------
+	  0:  31
+	  1:  53
+
+	  Length of Instructions:	112
+	00000: NPUSHB      (61):     8   167     4   167     0     0    31    91    25    25 
+	                            24   167    20     9    91    15    15    16   167    20 
+	                            44    91    32    32    43    91    33    23    17    17 
+	                            24    91    16    16     8    49    28   220     0    91 
+	                             8     1    91     7     7     8   220    12    12    48 
+	                            38     1    38    25    54    20    33    10    80   129 
+	                            24 
+	00063: CALL       
+	00064: SVTCA[y-axis] 
+	00065: MIAP[rd+ci] 
+	00066: MDAP[rd]   
+	00067: SVTCA[x-axis] 
+	00068: FLIPOFF    
+	00069: SRP0       
+	00070: MIRP[srp0,nmd,rd,0] 
+	00071: DELTAP1    
+	00072: ALIGNRP    
+	00073: FLIPON     
+	00074: SRP0       
+	00075: MIRP[srp0,nmd,rd,0] 
+	00076: ALIGNRP    
+	00077: SRP0       
+	00078: MIRP[nrp0,md,rd,1] 
+	00079: SRP0       
+	00080: MIRP[srp0,md,rd,1] 
+	00081: MIRP[srp0,nmd,rd,0] 
+	00082: ALIGNRP    
+	00083: SRP0       
+	00084: ALIGNRP    
+	00085: SRP0       
+	00086: MIRP[nrp0,md,rd,1] 
+	00087: ALIGNRP    
+	00088: SVTCA[y-axis] 
+	00089: SRP0       
+	00090: ALIGNRP    
+	00091: SRP0       
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: ALIGNRP    
+	00094: SRP0       
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: SRP0       
+	00097: MIRP[srp0,nmd,rd,0] 
+	00098: ALIGNRP    
+	00099: SRP0       
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: SRP0       
+	00102: MIRP[srp0,nmd,rd,0] 
+	00103: ALIGNRP    
+	00104: SRP0       
+	00105: MIRP[srp0,md,rd,1] 
+	00106: ALIGNRP    
+	00107: SRP0       
+	00108: MIRP[srp0,nmd,rd,0] 
+	00109: MIRP[nrp0,nmd,rd,0] 
+	00110: IUP[y]     
+	00111: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:        XDual                         On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual                               On
+	 17:        XDual                         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual                         On
+	 25:  YDual                               On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:                      Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:                              X-Short On
+	 33:  YDual                               On
+	 34:  YDual                       X-Short Off
+	 35:  YDual               Y-Short X-Short On
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual                 X-Short On
+	 44:                      Y-Short         On
+	 45:  YDual XDual                 X-Short Off
+	 46:        XDual         Y-Short X-Short On
+	 47:        XDual         Y-Short X-Short Off
+	 48:        XDual         Y-Short X-Short Off
+	 49:        XDual         Y-Short         On
+	 50:        XDual         Y-Short         Off
+	 51:                      Y-Short X-Short Off
+	 52:                      Y-Short X-Short On
+	 53:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   657,   676)  ->  Abs (   657,   676)
+	  1: Rel (     0,  -420)  ->  Abs (   657,   256)
+	  2: Rel (     0,   -30)  ->  Abs (   657,   226)
+	  3: Rel (   -24,   -26)  ->  Abs (   633,   200)
+	  4: Rel (   -19,     0)  ->  Abs (   614,   200)
+	  5: Rel (   -18,     0)  ->  Abs (   596,   200)
+	  6: Rel (   -24,    26)  ->  Abs (   572,   226)
+	  7: Rel (     0,    30)  ->  Abs (   572,   256)
+	  8: Rel (     0,   420)  ->  Abs (   572,   676)
+	  9: Rel (  -372,     0)  ->  Abs (   200,   676)
+	 10: Rel (   -30,     0)  ->  Abs (   170,   676)
+	 11: Rel (   -26,    23)  ->  Abs (   144,   699)
+	 12: Rel (     0,    19)  ->  Abs (   144,   718)
+	 13: Rel (     0,    19)  ->  Abs (   144,   737)
+	 14: Rel (    26,    23)  ->  Abs (   170,   760)
+	 15: Rel (    30,     0)  ->  Abs (   200,   760)
+	 16: Rel (   372,     0)  ->  Abs (   572,   760)
+	 17: Rel (     0,   418)  ->  Abs (   572,  1178)
+	 18: Rel (     0,    30)  ->  Abs (   572,  1208)
+	 19: Rel (    24,    26)  ->  Abs (   596,  1234)
+	 20: Rel (    19,     0)  ->  Abs (   615,  1234)
+	 21: Rel (    18,     0)  ->  Abs (   633,  1234)
+	 22: Rel (    24,   -26)  ->  Abs (   657,  1208)
+	 23: Rel (     0,   -30)  ->  Abs (   657,  1178)
+	 24: Rel (     0,  -418)  ->  Abs (   657,   760)
+	 25: Rel (   372,     0)  ->  Abs (  1029,   760)
+	 26: Rel (    30,     0)  ->  Abs (  1059,   760)
+	 27: Rel (    26,   -23)  ->  Abs (  1085,   737)
+	 28: Rel (     0,   -19)  ->  Abs (  1085,   718)
+	 29: Rel (     0,   -19)  ->  Abs (  1085,   699)
+	 30: Rel (   -26,   -23)  ->  Abs (  1059,   676)
+	 31: Rel (   -30,     0)  ->  Abs (  1029,   676)
+	 32: Rel (   -61,  -676)  ->  Abs (   968,     0)
+	 33: Rel (  -707,     0)  ->  Abs (   261,     0)
+	 34: Rel (   -79,     0)  ->  Abs (   182,     0)
+	 35: Rel (    -8,     2)  ->  Abs (   174,     2)
+	 36: Rel (   -13,     3)  ->  Abs (   161,     5)
+	 37: Rel (   -17,    23)  ->  Abs (   144,    28)
+	 38: Rel (     0,    14)  ->  Abs (   144,    42)
+	 39: Rel (     0,    14)  ->  Abs (   144,    56)
+	 40: Rel (    17,    23)  ->  Abs (   161,    79)
+	 41: Rel (    13,     3)  ->  Abs (   174,    82)
+	 42: Rel (     8,     3)  ->  Abs (   182,    85)
+	 43: Rel (    79,     0)  ->  Abs (   261,    85)
+	 44: Rel (   707,    -1)  ->  Abs (   968,    84)
+	 45: Rel (    79,     0)  ->  Abs (  1047,    84)
+	 46: Rel (     8,    -2)  ->  Abs (  1055,    82)
+	 47: Rel (    13,    -3)  ->  Abs (  1068,    79)
+	 48: Rel (    17,   -23)  ->  Abs (  1085,    56)
+	 49: Rel (     0,   -14)  ->  Abs (  1085,    42)
+	 50: Rel (     0,   -14)  ->  Abs (  1085,    28)
+	 51: Rel (   -17,   -23)  ->  Abs (  1068,     5)
+	 52: Rel (   -13,    -3)  ->  Abs (  1055,     2)
+	 53: Rel (    -8,    -2)  ->  Abs (  1047,     0)
+
+	Glyph 148: off = 0x0000B12A, len = 280
+	  numberOfContours:	2
+	  xMin:			98
+	  yMin:			181
+	  xMax:			1081
+	  yMax:			1403
+
+	EndPoints
+	---------
+	  0:  17
+	  1:  39
+
+	  Length of Instructions:	151
+	00000: NPUSHB      (34):    10     9     9    36     0    17    20     0     9     8 
+	                             0    17     8     9     9    36     0     1    20     0 
+	                             9    10     0     1    30    36    18    18    29    36 
+	                            19    10    91    17 
+	00036: PUSHW[3]            426     9   766 
+	00043: PUSHB[4]              0     8    91     1 
+	00048: PUSHW[1]            426 
+	00051: PUSHB[6]              0    19     0    24    52    10 
+	00058: PUSHW[1]            444 
+	00061: PUSHB[4]              0    35    52    12 
+	00066: NPUSHW       (9):   662    17   683     8   444     6   662     1   683 
+	00086: PUSHB[6]              0    25    40    79   129    24 
+	00093: PUSHW[1]            289 
+	00096: SCANCTRL   
+	00097: CALL       
+	00098: FLIPOFF    
+	00099: SRP0       
+	00100: MIRP[srp0,nmd,rd,0] 
+	00101: FLIPON     
+	00102: MIRP[nrp0,nmd,rd,0] 
+	00103: MIRP[nrp0,md,rd,1] 
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: MIRP[nrp0,nmd,rd,0] 
+	00106: MIRP[srp0,md,rd,1] 
+	00107: MIRP[nrp0,nmd,rd,0] 
+	00108: SRP0       
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: MIRP[nrp0,nmd,rd,0] 
+	00111: SVTCA[y-axis] 
+	00112: RTHG       
+	00113: MDAP[rd]   
+	00114: RTG        
+	00115: MDAP[rd]   
+	00116: RTHG       
+	00117: SRP0       
+	00118: MIRP[srp0,nmd,rd,0] 
+	00119: RTG        
+	00120: MIRP[nrp0,md,rd,1] 
+	00121: SRP0       
+	00122: MIRP[nrp0,nmd,rd,2] 
+	00123: RTHG       
+	00124: MIRP[srp0,nmd,rd,0] 
+	00125: RTG        
+	00126: MIRP[nrp0,md,rd,1] 
+	00127: SRP0       
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: ALIGNRP    
+	00130: SRP0       
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: SDPVTL[1]  
+	00133: SFVTL[=p1,p2] 
+	00134: MDAP[nrd]  
+	00135: CALL       
+	00136: SFVTPV     
+	00137: RDTG       
+	00138: SRP0       
+	00139: MDRP[nrp0,nmd,rd,0] 
+	00140: SDPVTL[1]  
+	00141: SFVTL[=p1,p2] 
+	00142: MDAP[nrd]  
+	00143: RTG        
+	00144: CALL       
+	00145: SFVTPV     
+	00146: RDTG       
+	00147: SRP0       
+	00148: MDRP[nrp0,nmd,rd,0] 
+	00149: IUP[y]     
+	00150: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:                                      On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short On
+	  9:                                      On
+	 10:                                      On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:                      Y-Short X-Short On
+	 19:  YDual                               On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short On
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual                               On
+	 31:  YDual XDual                 X-Short Off
+	 32:        XDual         Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:                      Y-Short X-Short Off
+	 38:                      Y-Short X-Short On
+	 39:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    98,   884)  ->  Abs (    98,   884)
+	  1: Rel (   908,   506)  ->  Abs (  1006,  1390)
+	  2: Rel (    22,    13)  ->  Abs (  1028,  1403)
+	  3: Rel (    11,     0)  ->  Abs (  1039,  1403)
+	  4: Rel (    17,     0)  ->  Abs (  1056,  1403)
+	  5: Rel (    25,   -25)  ->  Abs (  1081,  1378)
+	  6: Rel (     0,   -17)  ->  Abs (  1081,  1361)
+	  7: Rel (     0,   -26)  ->  Abs (  1081,  1335)
+	  8: Rel (   -34,   -18)  ->  Abs (  1047,  1317)
+	  9: Rel (  -778,  -432)  ->  Abs (   269,   885)
+	 10: Rel (   777,  -432)  ->  Abs (  1046,   453)
+	 11: Rel (    34,   -19)  ->  Abs (  1080,   434)
+	 12: Rel (     0,   -25)  ->  Abs (  1080,   409)
+	 13: Rel (     0,   -17)  ->  Abs (  1080,   392)
+	 14: Rel (   -25,   -25)  ->  Abs (  1055,   367)
+	 15: Rel (   -17,     0)  ->  Abs (  1038,   367)
+	 16: Rel (   -11,     0)  ->  Abs (  1027,   367)
+	 17: Rel (   -22,    12)  ->  Abs (  1005,   379)
+	 18: Rel (   -44,  -198)  ->  Abs (   961,   181)
+	 19: Rel (  -744,     0)  ->  Abs (   217,   181)
+	 20: Rel (   -78,     0)  ->  Abs (   139,   181)
+	 21: Rel (    -8,     2)  ->  Abs (   131,   183)
+	 22: Rel (   -13,     3)  ->  Abs (   118,   186)
+	 23: Rel (   -17,    23)  ->  Abs (   101,   209)
+	 24: Rel (     0,    14)  ->  Abs (   101,   223)
+	 25: Rel (     0,    14)  ->  Abs (   101,   237)
+	 26: Rel (    17,    23)  ->  Abs (   118,   260)
+	 27: Rel (    12,     3)  ->  Abs (   130,   263)
+	 28: Rel (     9,     2)  ->  Abs (   139,   265)
+	 29: Rel (    78,     0)  ->  Abs (   217,   265)
+	 30: Rel (   744,     0)  ->  Abs (   961,   265)
+	 31: Rel (    79,     0)  ->  Abs (  1040,   265)
+	 32: Rel (     8,    -2)  ->  Abs (  1048,   263)
+	 33: Rel (    13,    -3)  ->  Abs (  1061,   260)
+	 34: Rel (    17,   -23)  ->  Abs (  1078,   237)
+	 35: Rel (     0,   -14)  ->  Abs (  1078,   223)
+	 36: Rel (     0,   -14)  ->  Abs (  1078,   209)
+	 37: Rel (   -17,   -23)  ->  Abs (  1061,   186)
+	 38: Rel (   -13,    -3)  ->  Abs (  1048,   183)
+	 39: Rel (    -8,    -2)  ->  Abs (  1040,   181)
+
+	Glyph 149: off = 0x0000B242, len = 282
+	  numberOfContours:	2
+	  xMin:			148
+	  yMin:			181
+	  xMax:			1131
+	  yMax:			1403
+
+	EndPoints
+	---------
+	  0:  17
+	  1:  39
+
+	  Length of Instructions:	151
+	00000: NPUSHB      (34):     9     8     9    10     8    36     1     0    20     1 
+	                             1     0     9    10     9     8    10    36    17     0 
+	                            20    17    17     0    30    36    18    18    29    36 
+	                            19    10    91    17 
+	00036: PUSHW[1]            426 
+	00039: PUSHB[5]              9     0     8    91     1 
+	00045: PUSHW[1]            426 
+	00048: NPUSHB      (12):     0    19     0    35    52     0    24    25    12    25 
+	                            40    10 
+	00062: NPUSHW       (9):   444    17   683     9   399     8   444     1   683 
+	00082: PUSHB[8]              0   185     6    25    40    80   123    24 
+	00091: PUSHW[1]            291 
+	00094: SCANCTRL   
+	00095: CALL       
+	00096: FLIPOFF    
+	00097: SRP0       
+	00098: MIRP[srp0,nmd,rd,0] 
+	00099: FLIPON     
+	00100: MIRP[srp0,md,rd,1] 
+	00101: MIRP[nrp0,nmd,rd,0] 
+	00102: MIRP[nrp0,md,rd,1] 
+	00103: MIRP[nrp0,md,rd,1] 
+	00104: MIRP[nrp0,nmd,rd,0] 
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: SRP0       
+	00107: MIRP[nrp0,nmd,rd,2] 
+	00108: MIRP[nrp0,nmd,rd,2] 
+	00109: SRP0       
+	00110: MIRP[nrp0,nmd,rd,0] 
+	00111: SVTCA[y-axis] 
+	00112: RTHG       
+	00113: MDAP[rd]   
+	00114: RTG        
+	00115: MDAP[rd]   
+	00116: RTHG       
+	00117: SRP0       
+	00118: MIRP[srp0,nmd,rd,0] 
+	00119: RTG        
+	00120: MIRP[nrp0,md,rd,1] 
+	00121: SRP0       
+	00122: ALIGNRP    
+	00123: RTHG       
+	00124: MIRP[srp0,nmd,rd,0] 
+	00125: RTG        
+	00126: MIRP[nrp0,md,rd,1] 
+	00127: SRP0       
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: ALIGNRP    
+	00130: SRP0       
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: SDPVTL[1]  
+	00133: SFVTPV     
+	00134: MDAP[nrd]  
+	00135: CALL       
+	00136: SFVTL[=p1,p2] 
+	00137: RDTG       
+	00138: SRP0       
+	00139: MDRP[nrp0,nmd,rd,0] 
+	00140: SDPVTL[1]  
+	00141: SFVTPV     
+	00142: MDAP[nrd]  
+	00143: RTG        
+	00144: CALL       
+	00145: SFVTL[=p1,p2] 
+	00146: RDTG       
+	00147: SRP0       
+	00148: MDRP[nrp0,nmd,rd,0] 
+	00149: IUP[y]     
+	00150: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:                                      On
+	 10:                                      On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short On
+	 18:                                      On
+	 19:  YDual                               On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short On
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual                               On
+	 31:  YDual XDual                 X-Short Off
+	 32:        XDual         Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:                      Y-Short X-Short Off
+	 38:                      Y-Short X-Short On
+	 39:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1131,   885)  ->  Abs (  1131,   885)
+	  1: Rel (  -908,  -506)  ->  Abs (   223,   379)
+	  2: Rel (   -22,   -12)  ->  Abs (   201,   367)
+	  3: Rel (   -11,     0)  ->  Abs (   190,   367)
+	  4: Rel (   -17,     0)  ->  Abs (   173,   367)
+	  5: Rel (   -25,    24)  ->  Abs (   148,   391)
+	  6: Rel (     0,    18)  ->  Abs (   148,   409)
+	  7: Rel (     0,    25)  ->  Abs (   148,   434)
+	  8: Rel (    34,    19)  ->  Abs (   182,   453)
+	  9: Rel (   778,   432)  ->  Abs (   960,   885)
+	 10: Rel (  -777,   431)  ->  Abs (   183,  1316)
+	 11: Rel (   -34,    19)  ->  Abs (   149,  1335)
+	 12: Rel (     0,    26)  ->  Abs (   149,  1361)
+	 13: Rel (     0,    17)  ->  Abs (   149,  1378)
+	 14: Rel (    25,    25)  ->  Abs (   174,  1403)
+	 15: Rel (    17,     0)  ->  Abs (   191,  1403)
+	 16: Rel (    11,     0)  ->  Abs (   202,  1403)
+	 17: Rel (    22,   -13)  ->  Abs (   224,  1390)
+	 18: Rel (   788, -1209)  ->  Abs (  1012,   181)
+	 19: Rel (  -744,     0)  ->  Abs (   268,   181)
+	 20: Rel (   -79,     0)  ->  Abs (   189,   181)
+	 21: Rel (    -8,     2)  ->  Abs (   181,   183)
+	 22: Rel (   -13,     3)  ->  Abs (   168,   186)
+	 23: Rel (   -17,    23)  ->  Abs (   151,   209)
+	 24: Rel (     0,    14)  ->  Abs (   151,   223)
+	 25: Rel (     0,    14)  ->  Abs (   151,   237)
+	 26: Rel (    17,    23)  ->  Abs (   168,   260)
+	 27: Rel (    13,     3)  ->  Abs (   181,   263)
+	 28: Rel (     8,     2)  ->  Abs (   189,   265)
+	 29: Rel (    79,     0)  ->  Abs (   268,   265)
+	 30: Rel (   744,     0)  ->  Abs (  1012,   265)
+	 31: Rel (    79,     0)  ->  Abs (  1091,   265)
+	 32: Rel (     8,    -2)  ->  Abs (  1099,   263)
+	 33: Rel (    12,    -3)  ->  Abs (  1111,   260)
+	 34: Rel (    17,   -23)  ->  Abs (  1128,   237)
+	 35: Rel (     0,   -14)  ->  Abs (  1128,   223)
+	 36: Rel (     0,   -14)  ->  Abs (  1128,   209)
+	 37: Rel (   -17,   -23)  ->  Abs (  1111,   186)
+	 38: Rel (   -12,    -3)  ->  Abs (  1099,   183)
+	 39: Rel (    -9,    -2)  ->  Abs (  1090,   181)
+
+	Glyph 150: off = 0x0000B35C, len = 688
+	  numberOfContours:	1
+	  xMin:			98
+	  yMin:			0
+	  xMax:			1128
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  84
+
+	  Length of Instructions:	462
+	00000: PUSHB[5]              0    60     1    18    24 
+	00006: PUSHW[1]            696 
+	00009: NPUSHB      (11):    21   214    25    21    21    24    25    50    18    52 
+	                            58 
+	00022: PUSHW[1]            696 
+	00025: NPUSHB      (14):    55    55   155    59    55    55    58    59    50    52 
+	                            59    60    69    75 
+	00041: PUSHW[4]            696    72    72   273 
+	00050: NPUSHB      (11):    76    72    72    75    76    50    69    76    77    17 
+	                            11 
+	00063: PUSHW[1]            696 
+	00066: NPUSHB      (11):    14   214    10    14    14    11    10    50    17    51 
+	                            45 
+	00079: PUSHW[4]            696    48    48   273 
+	00088: NPUSHB      (11):    44    48    48    45    44    50    51    44    43    68 
+	                            62 
+	00101: PUSHW[1]            696 
+	00104: NPUSHB     (101):    65    65   155    61    65    65    62    61    50    68 
+	                            61    60    61    60    60    36    77    76    20    77 
+	                            60    59    77    76    59    60    60    36    43    44 
+	                            20    43    60    61    43    44    59    44    43     3 
+	                            34    48    77    76    61     3    72    10    60    52 
+	                            84    77    78     2    77     8     8    33    77    16 
+	                            27    32    27     2    27    27    17    36    78    77 
+	                            84    84    42    77    43    77    36    36    17    18 
+	                            17    69    68    52    51     2    17    10    81   218 
+	                             0     5   218     9    30   218    26    39   218    35 
+	                            61 
+	00207: PUSHW[1]            692 
+	00210: PUSHB[3]             72   132    76 
+	00214: PUSHW[1]            -64 
+	00217: PUSHB[6]             32    53    48    76     1    76 
+	00224: PUSHW[1]            415 
+	00227: NPUSHB      (12):     0    10    10     9     9    10    36    35    26    25 
+	                            25    34 
+	00241: PUSHW[1]            415 
+	00244: PUSHB[5]             59    64    32    53    59 
+	00250: PUSHW[1]            692 
+	00253: NPUSHB      (25):    48    44     1    44   132    63    48    79    48    95 
+	                            48   111    48     4    63    48    79    48     2    48 
+	                            25    85    79   123    24 
+	00280: CALL       
+	00281: FLIPOFF    
+	00282: SRP0       
+	00283: MIRP[srp0,nmd,rd,0] 
+	00284: DELTAP1    
+	00285: DELTAP2    
+	00286: FLIPON     
+	00287: MIRP[srp0,nmd,rd,0] 
+	00288: DELTAP1    
+	00289: MIRP[nrp0,md,rd,1] 
+	00290: CALL       
+	00291: MIRP[srp0,nmd,rd,0] 
+	00292: ALIGNRP    
+	00293: SRP0       
+	00294: ALIGNRP    
+	00295: ALIGNRP    
+	00296: MIRP[srp0,md,rd,1] 
+	00297: ALIGNRP    
+	00298: SRP0       
+	00299: ALIGNRP    
+	00300: SRP0       
+	00301: ALIGNRP    
+	00302: MIRP[srp0,nmd,rd,0] 
+	00303: DELTAP1    
+	00304: CALL       
+	00305: MIRP[nrp0,nmd,rd,0] 
+	00306: MIRP[nrp0,md,rd,1] 
+	00307: SRP0       
+	00308: MIRP[nrp0,nmd,rd,0] 
+	00309: SRP0       
+	00310: MIRP[nrp0,nmd,rd,0] 
+	00311: SRP0       
+	00312: MIRP[nrp0,nmd,rd,0] 
+	00313: SRP0       
+	00314: MIRP[nrp0,nmd,rd,0] 
+	00315: SVTCA[y-axis] 
+	00316: MIAP[rd+ci] 
+	00317: MIAP[rd+ci] 
+	00318: ALIGNRP    
+	00319: ALIGNRP    
+	00320: ALIGNRP    
+	00321: SRP0       
+	00322: ALIGNRP    
+	00323: SRP2       
+	00324: IP         
+	00325: MDAP[rd]   
+	00326: MIRP[nrp0,md,rd,1] 
+	00327: MIRP[nrp0,md,rd,1] 
+	00328: ALIGNRP    
+	00329: SRP0       
+	00330: MIRP[nrp0,md,rd,1] 
+	00331: SRP1       
+	00332: SRP2       
+	00333: IP         
+	00334: MDAP[rd]   
+	00335: DELTAP1    
+	00336: MIRP[nrp0,md,rd,1] 
+	00337: ALIGNRP    
+	00338: SRP0       
+	00339: MIRP[nrp0,md,rd,1] 
+	00340: SRP0       
+	00341: ALIGNRP    
+	00342: SRP1       
+	00343: SRP2       
+	00344: IP         
+	00345: SVTCA[x-axis] 
+	00346: SRP1       
+	00347: SRP2       
+	00348: SLOOP      
+	00349: IP         
+	00350: SRP1       
+	00351: SRP2       
+	00352: SLOOP      
+	00353: IP         
+	00354: SDPVTL[1]  
+	00355: SFVTL[=p1,p2] 
+	00356: MDAP[nrd]  
+	00357: CALL       
+	00358: SFVTCA[x-axis] 
+	00359: RDTG       
+	00360: SRP0       
+	00361: MDRP[nrp0,nmd,rd,0] 
+	00362: SDPVTL[1]  
+	00363: SFVTL[=p1,p2] 
+	00364: MDAP[nrd]  
+	00365: RTG        
+	00366: CALL       
+	00367: SFVTCA[x-axis] 
+	00368: RDTG       
+	00369: SRP0       
+	00370: MDRP[nrp0,nmd,rd,0] 
+	00371: RTG        
+	00372: SVTCA[y-axis] 
+	00373: SFVTL[=p1,p2] 
+	00374: SRP0       
+	00375: MIRP[srp0,md,rd,1] 
+	00376: RTDG       
+	00377: SRP2       
+	00378: IP         
+	00379: MDAP[rd]   
+	00380: RTG        
+	00381: SVTCA[x-axis] 
+	00382: SRP0       
+	00383: MIRP[srp0,nmd,nrd,1] 
+	00384: MDAP[rd]   
+	00385: MIRP[srp0,nmd,rd,0] 
+	00386: MDRP[nrp0,nmd,rd,0] 
+	00387: SVTCA[y-axis] 
+	00388: SFVTL[=p1,p2] 
+	00389: SRP0       
+	00390: MIRP[srp0,md,rd,1] 
+	00391: RTDG       
+	00392: SRP2       
+	00393: IP         
+	00394: MDAP[rd]   
+	00395: RTG        
+	00396: SVTCA[x-axis] 
+	00397: SRP0       
+	00398: MIRP[srp0,nmd,nrd,1] 
+	00399: MDAP[rd]   
+	00400: MIRP[srp0,nmd,rd,0] 
+	00401: MDRP[nrp0,nmd,rd,0] 
+	00402: SVTCA[y-axis] 
+	00403: SRP0       
+	00404: MIRP[srp0,md,rd,1] 
+	00405: RTDG       
+	00406: SRP2       
+	00407: IP         
+	00408: MDAP[rd]   
+	00409: RTG        
+	00410: SVTCA[x-axis] 
+	00411: SRP0       
+	00412: MIRP[srp0,nmd,rd,1] 
+	00413: MIRP[srp0,nmd,rd,0] 
+	00414: MDRP[nrp0,nmd,rd,0] 
+	00415: SVTCA[y-axis] 
+	00416: SFVTL[=p1,p2] 
+	00417: SRP0       
+	00418: MIRP[srp0,md,rd,1] 
+	00419: RTDG       
+	00420: SRP2       
+	00421: IP         
+	00422: MDAP[rd]   
+	00423: RTG        
+	00424: SVTCA[x-axis] 
+	00425: SRP0       
+	00426: MIRP[srp0,nmd,nrd,1] 
+	00427: MDAP[rd]   
+	00428: MIRP[srp0,nmd,rd,0] 
+	00429: MDRP[nrp0,nmd,rd,0] 
+	00430: SVTCA[y-axis] 
+	00431: SFVTL[=p1,p2] 
+	00432: SRP0       
+	00433: MIRP[srp0,md,rd,1] 
+	00434: RTDG       
+	00435: SRP2       
+	00436: IP         
+	00437: MDAP[rd]   
+	00438: RTG        
+	00439: SVTCA[x-axis] 
+	00440: SRP0       
+	00441: MIRP[srp0,nmd,nrd,1] 
+	00442: MDAP[rd]   
+	00443: MIRP[srp0,nmd,rd,0] 
+	00444: MDRP[nrp0,nmd,rd,0] 
+	00445: SVTCA[y-axis] 
+	00446: SRP0       
+	00447: MIRP[srp0,md,rd,1] 
+	00448: RTDG       
+	00449: SRP2       
+	00450: IP         
+	00451: MDAP[rd]   
+	00452: RTG        
+	00453: SVTCA[x-axis] 
+	00454: SRP0       
+	00455: MIRP[srp0,nmd,rd,1] 
+	00456: MIRP[srp0,nmd,rd,0] 
+	00457: MDRP[nrp0,nmd,rd,0] 
+	00458: IUP[y]     
+	00459: IUP[x]     
+	00460: SVTCA[y-axis] 
+	00461: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:        XDual         Y-Short         On
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                               On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual                               On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual                               On
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual                               On
+	 37:  YDual                       X-Short Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short On
+	 44:                                      On
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short Off
+	 47:  YDual               Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short         On
+	 49:  YDual XDual         Y-Short         Off
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short On
+	 53:  YDual XDual                 X-Short Off
+	 54:        XDual         Y-Short X-Short Off
+	 55:        XDual         Y-Short         On
+	 56:        XDual         Y-Short         Off
+	 57:                      Y-Short X-Short Off
+	 58:  YDual                       X-Short On
+	 59:  YDual                       X-Short On
+	 60:                                      On
+	 61:                                      On
+	 62:  YDual                       X-Short On
+	 63:  YDual                       X-Short Off
+	 64:  YDual               Y-Short X-Short Off
+	 65:  YDual XDual         Y-Short         On
+	 66:  YDual XDual         Y-Short         Off
+	 67:  YDual XDual         Y-Short X-Short Off
+	 68:  YDual XDual                 X-Short On
+	 69:  YDual XDual                 X-Short On
+	 70:  YDual XDual                 X-Short Off
+	 71:        XDual         Y-Short X-Short Off
+	 72:        XDual         Y-Short         On
+	 73:        XDual         Y-Short         Off
+	 74:                      Y-Short X-Short Off
+	 75:  YDual                       X-Short On
+	 76:  YDual                       X-Short On
+	 77:                                      On
+	 78:  YDual XDual                 X-Short On
+	 79:  YDual XDual                 X-Short Off
+	 80:        XDual         Y-Short X-Short Off
+	 81:        XDual         Y-Short         On
+	 82:        XDual         Y-Short         Off
+	 83:                      Y-Short X-Short Off
+	 84:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   657,   511)  ->  Abs (   657,   511)
+	  1: Rel (     0,  -158)  ->  Abs (   657,   353)
+	  2: Rel (   271,     0)  ->  Abs (   928,   353)
+	  3: Rel (    22,     0)  ->  Abs (   950,   353)
+	  4: Rel (    19,   -16)  ->  Abs (   969,   337)
+	  5: Rel (     0,   -14)  ->  Abs (   969,   323)
+	  6: Rel (     0,   -13)  ->  Abs (   969,   310)
+	  7: Rel (   -19,   -17)  ->  Abs (   950,   293)
+	  8: Rel (   -22,     0)  ->  Abs (   928,   293)
+	  9: Rel (  -271,     0)  ->  Abs (   657,   293)
+	 10: Rel (     0,  -209)  ->  Abs (   657,    84)
+	 11: Rel (   179,     0)  ->  Abs (   836,    84)
+	 12: Rel (    30,     0)  ->  Abs (   866,    84)
+	 13: Rel (    26,   -23)  ->  Abs (   892,    61)
+	 14: Rel (     0,   -19)  ->  Abs (   892,    42)
+	 15: Rel (     0,   -18)  ->  Abs (   892,    24)
+	 16: Rel (   -26,   -24)  ->  Abs (   866,     0)
+	 17: Rel (   -30,     0)  ->  Abs (   836,     0)
+	 18: Rel (  -443,     0)  ->  Abs (   393,     0)
+	 19: Rel (   -30,     0)  ->  Abs (   363,     0)
+	 20: Rel (   -26,    24)  ->  Abs (   337,    24)
+	 21: Rel (     0,    18)  ->  Abs (   337,    42)
+	 22: Rel (     0,    19)  ->  Abs (   337,    61)
+	 23: Rel (    26,    23)  ->  Abs (   363,    84)
+	 24: Rel (    30,     0)  ->  Abs (   393,    84)
+	 25: Rel (   179,     0)  ->  Abs (   572,    84)
+	 26: Rel (     0,   209)  ->  Abs (   572,   293)
+	 27: Rel (  -271,     0)  ->  Abs (   301,   293)
+	 28: Rel (   -21,     0)  ->  Abs (   280,   293)
+	 29: Rel (   -19,    17)  ->  Abs (   261,   310)
+	 30: Rel (     0,    13)  ->  Abs (   261,   323)
+	 31: Rel (     0,    14)  ->  Abs (   261,   337)
+	 32: Rel (    19,    16)  ->  Abs (   280,   353)
+	 33: Rel (    21,     0)  ->  Abs (   301,   353)
+	 34: Rel (   271,     0)  ->  Abs (   572,   353)
+	 35: Rel (     0,   158)  ->  Abs (   572,   511)
+	 36: Rel (  -271,     0)  ->  Abs (   301,   511)
+	 37: Rel (   -21,     0)  ->  Abs (   280,   511)
+	 38: Rel (   -19,    17)  ->  Abs (   261,   528)
+	 39: Rel (     0,    13)  ->  Abs (   261,   541)
+	 40: Rel (     0,    13)  ->  Abs (   261,   554)
+	 41: Rel (    19,    17)  ->  Abs (   280,   571)
+	 42: Rel (    21,     0)  ->  Abs (   301,   571)
+	 43: Rel (   242,     0)  ->  Abs (   543,   571)
+	 44: Rel (  -339,   515)  ->  Abs (   204,  1086)
+	 45: Rel (   -50,     0)  ->  Abs (   154,  1086)
+	 46: Rel (   -30,     0)  ->  Abs (   124,  1086)
+	 47: Rel (   -26,    23)  ->  Abs (    98,  1109)
+	 48: Rel (     0,    19)  ->  Abs (    98,  1128)
+	 49: Rel (     0,    19)  ->  Abs (    98,  1147)
+	 50: Rel (    26,    23)  ->  Abs (   124,  1170)
+	 51: Rel (    30,     0)  ->  Abs (   154,  1170)
+	 52: Rel (   230,     0)  ->  Abs (   384,  1170)
+	 53: Rel (    30,     0)  ->  Abs (   414,  1170)
+	 54: Rel (    26,   -23)  ->  Abs (   440,  1147)
+	 55: Rel (     0,   -19)  ->  Abs (   440,  1128)
+	 56: Rel (     0,   -19)  ->  Abs (   440,  1109)
+	 57: Rel (   -26,   -23)  ->  Abs (   414,  1086)
+	 58: Rel (   -30,     0)  ->  Abs (   384,  1086)
+	 59: Rel (   -81,     0)  ->  Abs (   303,  1086)
+	 60: Rel (   311,  -472)  ->  Abs (   614,   614)
+	 61: Rel (   311,   472)  ->  Abs (   925,  1086)
+	 62: Rel (   -82,     0)  ->  Abs (   843,  1086)
+	 63: Rel (   -30,     0)  ->  Abs (   813,  1086)
+	 64: Rel (   -26,    23)  ->  Abs (   787,  1109)
+	 65: Rel (     0,    19)  ->  Abs (   787,  1128)
+	 66: Rel (     0,    19)  ->  Abs (   787,  1147)
+	 67: Rel (    26,    23)  ->  Abs (   813,  1170)
+	 68: Rel (    30,     0)  ->  Abs (   843,  1170)
+	 69: Rel (   228,     0)  ->  Abs (  1071,  1170)
+	 70: Rel (    31,     0)  ->  Abs (  1102,  1170)
+	 71: Rel (    26,   -23)  ->  Abs (  1128,  1147)
+	 72: Rel (     0,   -19)  ->  Abs (  1128,  1128)
+	 73: Rel (     0,   -19)  ->  Abs (  1128,  1109)
+	 74: Rel (   -26,   -23)  ->  Abs (  1102,  1086)
+	 75: Rel (   -31,     0)  ->  Abs (  1071,  1086)
+	 76: Rel (   -48,     0)  ->  Abs (  1023,  1086)
+	 77: Rel (  -340,  -515)  ->  Abs (   683,   571)
+	 78: Rel (   245,     0)  ->  Abs (   928,   571)
+	 79: Rel (    22,     0)  ->  Abs (   950,   571)
+	 80: Rel (    19,   -17)  ->  Abs (   969,   554)
+	 81: Rel (     0,   -13)  ->  Abs (   969,   541)
+	 82: Rel (     0,   -14)  ->  Abs (   969,   527)
+	 83: Rel (   -19,   -16)  ->  Abs (   950,   511)
+	 84: Rel (   -22,     0)  ->  Abs (   928,   511)
+
+	Glyph 151: off = 0x0000B60C, len = 248
+	  numberOfContours:	1
+	  xMin:			90
+	  yMin:			-386
+	  xMax:			1112
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  44
+
+	  Length of Instructions:	125
+	00000: NPUSHB      (68):     9    15    12    47     8     8    34    15    24    30 
+	                            27    78    23    23    34    30    33    39     0    36 
+	                             1    36    70    32    32    34    39     0    39    22 
+	                            41    30    15     6    39    10    20    33    43    11 
+	                             4    14    23    40    32    31    15    32     1    32 
+	                            26    46    16     1    32     7     7    64     8   160 
+	                             8     2     8    25    45    71    97    24 
+	00070: CALL       
+	00071: FLIPOFF    
+	00072: SRP0       
+	00073: MIRP[srp0,nmd,rd,0] 
+	00074: DELTAP1    
+	00075: ALIGNRP    
+	00076: FLIPON     
+	00077: SRP0       
+	00078: MIRP[srp0,md,rd,1] 
+	00079: ALIGNRP    
+	00080: FLIPOFF    
+	00081: SRP0       
+	00082: MIRP[srp0,nmd,rd,2] 
+	00083: DELTAP1    
+	00084: ALIGNRP    
+	00085: FLIPON     
+	00086: MIRP[srp0,md,rd,1] 
+	00087: ALIGNRP    
+	00088: SVTCA[y-axis] 
+	00089: MIAP[rd+ci] 
+	00090: MIAP[rd+ci] 
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: MIAP[rd+ci] 
+	00093: MIAP[rd+ci] 
+	00094: ALIGNRP    
+	00095: IP         
+	00096: IP         
+	00097: SRP1       
+	00098: IP         
+	00099: SRP0       
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: SVTCA[x-axis] 
+	00102: SRP0       
+	00103: MIRP[srp0,nmd,rd,1] 
+	00104: DELTAP1    
+	00105: MDRP[srp0,nmd,rd,0] 
+	00106: ALIGNRP    
+	00107: SVTCA[y-axis] 
+	00108: SRP0       
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: SVTCA[x-axis] 
+	00111: SRP0       
+	00112: MIRP[srp0,nmd,rd,1] 
+	00113: MDRP[srp0,nmd,rd,0] 
+	00114: ALIGNRP    
+	00115: SVTCA[y-axis] 
+	00116: SRP0       
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: SVTCA[x-axis] 
+	00119: SRP0       
+	00120: MIRP[srp0,nmd,rd,1] 
+	00121: MDRP[srp0,nmd,rd,0] 
+	00122: ALIGNRP    
+	00123: IUP[y]     
+	00124: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:        XDual         Y-Short         Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:        XDual                         On
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short On
+	 32:        XDual                         On
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short On
+	 41:  YDual XDual         Y-Short         On
+	 42:                      Y-Short X-Short Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   343,    34)  ->  Abs (   343,    34)
+	  1: Rel (     0,  -364)  ->  Abs (   343,  -330)
+	  2: Rel (     0,   -30)  ->  Abs (   343,  -360)
+	  3: Rel (   -23,   -26)  ->  Abs (   320,  -386)
+	  4: Rel (   -19,     0)  ->  Abs (   301,  -386)
+	  5: Rel (   -19,     0)  ->  Abs (   282,  -386)
+	  6: Rel (   -23,    26)  ->  Abs (   259,  -360)
+	  7: Rel (     0,    30)  ->  Abs (   259,  -330)
+	  8: Rel (     0,  1111)  ->  Abs (   259,   781)
+	  9: Rel (  -113,     0)  ->  Abs (   146,   781)
+	 10: Rel (   -30,     0)  ->  Abs (   116,   781)
+	 11: Rel (   -26,    24)  ->  Abs (    90,   805)
+	 12: Rel (     0,    19)  ->  Abs (    90,   824)
+	 13: Rel (     0,    18)  ->  Abs (    90,   842)
+	 14: Rel (    26,    24)  ->  Abs (   116,   866)
+	 15: Rel (    30,     0)  ->  Abs (   146,   866)
+	 16: Rel (   197,     0)  ->  Abs (   343,   866)
+	 17: Rel (     0,  -627)  ->  Abs (   343,   239)
+	 18: Rel (     0,   -82)  ->  Abs (   343,   157)
+	 19: Rel (   104,  -106)  ->  Abs (   447,    51)
+	 20: Rel (    78,     0)  ->  Abs (   525,    51)
+	 21: Rel (   205,     0)  ->  Abs (   730,    51)
+	 22: Rel (   171,   188)  ->  Abs (   901,   239)
+	 23: Rel (     0,   542)  ->  Abs (   901,   781)
+	 24: Rel (  -155,     0)  ->  Abs (   746,   781)
+	 25: Rel (   -30,     0)  ->  Abs (   716,   781)
+	 26: Rel (   -26,    24)  ->  Abs (   690,   805)
+	 27: Rel (     0,    19)  ->  Abs (   690,   824)
+	 28: Rel (     0,    18)  ->  Abs (   690,   842)
+	 29: Rel (    26,    24)  ->  Abs (   716,   866)
+	 30: Rel (    30,     0)  ->  Abs (   746,   866)
+	 31: Rel (   239,     0)  ->  Abs (   985,   866)
+	 32: Rel (     0,  -782)  ->  Abs (   985,    84)
+	 33: Rel (    71,     0)  ->  Abs (  1056,    84)
+	 34: Rel (    30,     0)  ->  Abs (  1086,    84)
+	 35: Rel (    26,   -23)  ->  Abs (  1112,    61)
+	 36: Rel (     0,   -19)  ->  Abs (  1112,    42)
+	 37: Rel (     0,   -18)  ->  Abs (  1112,    24)
+	 38: Rel (   -26,   -24)  ->  Abs (  1086,     0)
+	 39: Rel (   -30,     0)  ->  Abs (  1056,     0)
+	 40: Rel (  -155,     0)  ->  Abs (   901,     0)
+	 41: Rel (     0,   123)  ->  Abs (   901,   123)
+	 42: Rel (  -172,  -156)  ->  Abs (   729,   -33)
+	 43: Rel (  -202,     0)  ->  Abs (   527,   -33)
+	 44: Rel (  -109,     0)  ->  Abs (   418,   -33)
+
+	Glyph 152: off = 0x0000B704, len = 216
+	  numberOfContours:	2
+	  xMin:			176
+	  yMin:			-30
+	  xMax:			999
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  32
+	  1:  47
+
+	  Length of Instructions:	69
+	00000: NPUSHB      (38):    73    27     1    42    91    25     3     0    91    33 
+	                            33    25    10   118     4    91    17     2     7    91 
+	                            13   160    28    33    52     0    91    21    26    49 
+	                            39    91    28    25    48    99   188    24 
+	00040: CALL       
+	00041: FLIPOFF    
+	00042: SRP0       
+	00043: MIRP[srp0,nmd,rd,0] 
+	00044: FLIPON     
+	00045: MIRP[nrp0,md,rd,1] 
+	00046: FLIPOFF    
+	00047: SRP0       
+	00048: MIRP[srp0,nmd,rd,2] 
+	00049: FLIPON     
+	00050: MIRP[srp0,md,rd,1] 
+	00051: MIRP[nrp0,nmd,rd,0] 
+	00052: SRP0       
+	00053: MIRP[srp0,nmd,rd,0] 
+	00054: MIRP[nrp0,md,rd,1] 
+	00055: SVTCA[y-axis] 
+	00056: MIAP[rd+ci] 
+	00057: MIRP[nrp0,md,rd,1] 
+	00058: MIRP[nrp0,md,rd,1] 
+	00059: SRP2       
+	00060: IP         
+	00061: MDAP[rd]   
+	00062: MIRP[nrp0,md,rd,1] 
+	00063: MIAP[rd+ci] 
+	00064: MIRP[nrp0,md,rd,1] 
+	00065: IUP[y]     
+	00066: IUP[x]     
+	00067: SVTCA[x-axis] 
+	00068: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual       Rep-  2 Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual                         On
+	 22:        XDual         Y-Short         Off
+	 23:                              X-Short Off
+	 24:                      Y-Short         Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual               Y-Short         Off
+	 33:        XDual         Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short On
+	 36:              Rep-  2 Y-Short X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short X-Short On
+	 47:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   916,   766)  ->  Abs (   916,   766)
+	  1: Rel (    -3,   188)  ->  Abs (   913,   954)
+	  2: Rel (   -55,   149)  ->  Abs (   858,  1103)
+	  3: Rel (   -88,    66)  ->  Abs (   770,  1169)
+	  4: Rel (   -56,     0)  ->  Abs (   714,  1169)
+	  5: Rel (   -64,     0)  ->  Abs (   650,  1169)
+	  6: Rel (  -117,   -79)  ->  Abs (   533,  1090)
+	  7: Rel (   -55,  -100)  ->  Abs (   478,   990)
+	  8: Rel (   -14,   -27)  ->  Abs (   464,   963)
+	  9: Rel (   -18,   -13)  ->  Abs (   446,   950)
+	 10: Rel (   -12,     0)  ->  Abs (   434,   950)
+	 11: Rel (   -20,     0)  ->  Abs (   414,   950)
+	 12: Rel (   -25,    24)  ->  Abs (   389,   974)
+	 13: Rel (     0,    16)  ->  Abs (   389,   990)
+	 14: Rel (     0,    28)  ->  Abs (   389,  1018)
+	 15: Rel (   101,   151)  ->  Abs (   490,  1169)
+	 16: Rel (   151,    86)  ->  Abs (   641,  1255)
+	 17: Rel (    72,     0)  ->  Abs (   713,  1255)
+	 18: Rel (   106,     0)  ->  Abs (   819,  1255)
+	 19: Rel (    73,   -78)  ->  Abs (   892,  1177)
+	 20: Rel (   107,  -112)  ->  Abs (   999,  1065)
+	 21: Rel (     0,  -279)  ->  Abs (   999,   786)
+	 22: Rel (     0,  -251)  ->  Abs (   999,   535)
+	 23: Rel (  -155,  -380)  ->  Abs (   844,   155)
+	 24: Rel (  -266,  -185)  ->  Abs (   578,   -30)
+	 25: Rel (  -130,     0)  ->  Abs (   448,   -30)
+	 26: Rel (  -123,     0)  ->  Abs (   325,   -30)
+	 27: Rel (  -149,   153)  ->  Abs (   176,   123)
+	 28: Rel (     0,   133)  ->  Abs (   176,   256)
+	 29: Rel (     0,   114)  ->  Abs (   176,   370)
+	 30: Rel (   103,   193)  ->  Abs (   279,   563)
+	 31: Rel (   173,   126)  ->  Abs (   452,   689)
+	 32: Rel (   264,    73)  ->  Abs (   716,   762)
+	 33: Rel (   198,   -82)  ->  Abs (   914,   680)
+	 34: Rel (  -155,    -4)  ->  Abs (   759,   676)
+	 35: Rel (   -82,   -15)  ->  Abs (   677,   661)
+	 36: Rel (  -133,   -24)  ->  Abs (   544,   637)
+	 37: Rel (  -183,  -106)  ->  Abs (   361,   531)
+	 38: Rel (  -102,  -180)  ->  Abs (   259,   351)
+	 39: Rel (     0,   -97)  ->  Abs (   259,   254)
+	 40: Rel (     0,   -89)  ->  Abs (   259,   165)
+	 41: Rel (   111,  -110)  ->  Abs (   370,    55)
+	 42: Rel (    83,     0)  ->  Abs (   453,    55)
+	 43: Rel (    80,     0)  ->  Abs (   533,    55)
+	 44: Rel (   167,    91)  ->  Abs (   700,   146)
+	 45: Rel (   124,   156)  ->  Abs (   824,   302)
+	 46: Rel (    43,   134)  ->  Abs (   867,   436)
+	 47: Rel (    30,    94)  ->  Abs (   897,   530)
+
+	Glyph 153: off = 0x0000B7DC, len = 278
+	  numberOfContours:	1
+	  xMin:			43
+	  yMin:			-386
+	  xMax:			1101
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	186
+	00000: NPUSHB      (25):    24    25    24    23    25    30    10    11    20    10 
+	                            10    11    11    12    11    10    12    30    23    24 
+	                            20    23    23    24    24 
+	00027: PUSHW[1]            342 
+	00030: PUSHB[5]             11    11     9    13     4 
+	00036: PUSHW[1]            420 
+	00039: NPUSHB      (11):     0    38     8    25    38    10   207     8     9    14 
+	                            18 
+	00052: PUSHW[1]            414 
+	00055: NPUSHB      (29):    22    38    14    23    38    14    12   207    13     2 
+	                            22    21     0     1    38     7     7     8   102    21 
+	                            38    15    15    14    26    27    24    38    11 
+	00086: PUSHW[1]            736 
+	00089: NPUSHB      (15):     9    13    12    25    38    10    23    38    12   102 
+	                            10    10     9    25    26 
+	00106: PUSHW[4]            294   121    24   300 
+	00115: SCANCTRL   
+	00116: CALL       
+	00117: FLIPOFF    
+	00118: SRP0       
+	00119: MIRP[srp0,nmd,rd,0] 
+	00120: ALIGNRP    
+	00121: FLIPON     
+	00122: SRP0       
+	00123: MIRP[srp0,nmd,rd,0] 
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: SRP0       
+	00126: MIRP[nrp0,md,rd,1] 
+	00127: SRP0       
+	00128: ALIGNRP    
+	00129: SRP0       
+	00130: MIRP[srp0,nmd,rd,0] 
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: FLIPOFF    
+	00133: SRP0       
+	00134: MIRP[srp0,nmd,rd,2] 
+	00135: ALIGNRP    
+	00136: FLIPON     
+	00137: SRP0       
+	00138: MIRP[nrp0,md,rd,1] 
+	00139: MIRP[srp0,nmd,rd,0] 
+	00140: ALIGNRP    
+	00141: SRP0       
+	00142: MIRP[srp0,md,rd,1] 
+	00143: ALIGNRP    
+	00144: SRP0       
+	00145: ALIGNRP    
+	00146: SVTCA[y-axis] 
+	00147: MIAP[rd+ci] 
+	00148: MIRP[nrp0,nmd,rd,2] 
+	00149: ALIGNRP    
+	00150: MIRP[nrp0,md,rd,1] 
+	00151: SRP0       
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: MIAP[rd+ci] 
+	00155: ALIGNRP    
+	00156: MIRP[nrp0,nmd,rd,2] 
+	00157: MIRP[nrp0,md,rd,1] 
+	00158: SRP0       
+	00159: MIRP[nrp0,md,rd,1] 
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: RTHG       
+	00162: SRP1       
+	00163: SRP2       
+	00164: IP         
+	00165: MDAP[rd]   
+	00166: RTG        
+	00167: MIRP[nrp0,nmd,rd,1] 
+	00168: SDPVTL[1]  
+	00169: MDAP[nrd]  
+	00170: CALL       
+	00171: SFVTL[=p1,p2] 
+	00172: RDTG       
+	00173: SRP0       
+	00174: MDRP[nrp0,nmd,rd,0] 
+	00175: SDPVTL[1]  
+	00176: SFVTCA[x-axis] 
+	00177: MDAP[nrd]  
+	00178: RTG        
+	00179: CALL       
+	00180: SFVTL[=p1,p2] 
+	00181: RDTG       
+	00182: SRP0       
+	00183: MDRP[nrp0,nmd,rd,0] 
+	00184: IUP[y]     
+	00185: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual         Y-Short         Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual                         On
+	  9:  YDual                               On
+	 10:  YDual XDual         Y-Short         On
+	 11:                                      On
+	 12:                                      On
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual                               On
+	 15:        XDual                         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual                               On
+	 24:                                      On
+	 25:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (  1016,  -302)  ->  Abs (  1016,  -302)
+	  1: Rel (     0,   265)  ->  Abs (  1016,   -37)
+	  2: Rel (     0,    30)  ->  Abs (  1016,    -7)
+	  3: Rel (    24,    26)  ->  Abs (  1040,    19)
+	  4: Rel (    19,     0)  ->  Abs (  1059,    19)
+	  5: Rel (    18,     0)  ->  Abs (  1077,    19)
+	  6: Rel (    24,   -26)  ->  Abs (  1101,    -7)
+	  7: Rel (     0,   -30)  ->  Abs (  1101,   -37)
+	  8: Rel (     0,  -349)  ->  Abs (  1101,  -386)
+	  9: Rel ( -1058,     0)  ->  Abs (    43,  -386)
+	 10: Rel (     0,    90)  ->  Abs (    43,  -296)
+	 11: Rel (   523,   744)  ->  Abs (   566,   448)
+	 12: Rel (  -506,   728)  ->  Abs (    60,  1176)
+	 13: Rel (     0,    79)  ->  Abs (    60,  1255)
+	 14: Rel (  1035,     0)  ->  Abs (  1095,  1255)
+	 15: Rel (     0,  -319)  ->  Abs (  1095,   936)
+	 16: Rel (     0,   -30)  ->  Abs (  1095,   906)
+	 17: Rel (   -23,   -26)  ->  Abs (  1072,   880)
+	 18: Rel (   -19,     0)  ->  Abs (  1053,   880)
+	 19: Rel (   -19,     0)  ->  Abs (  1034,   880)
+	 20: Rel (   -23,    26)  ->  Abs (  1011,   906)
+	 21: Rel (     0,    30)  ->  Abs (  1011,   936)
+	 22: Rel (     0,   234)  ->  Abs (  1011,  1170)
+	 23: Rel (  -855,     0)  ->  Abs (   156,  1170)
+	 24: Rel (   507,  -714)  ->  Abs (   663,   456)
+	 25: Rel (  -523,  -758)  ->  Abs (   140,  -302)
+
+	Glyph 154: off = 0x0000B8F2, len = 250
+	  numberOfContours:	1
+	  xMin:			54
+	  yMin:			-386
+	  xMax:			1175
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  50
+
+	  Length of Instructions:	112
+	00000: NPUSHB      (59):    38    36    36    50    91    44    44     4    91    10 
+	                            17    91    10    11    14     1    91    34    91    28 
+	                             2    91    20    91    28    27     2    40   177    36 
+	                            47   177     0     0     1    91    31   177    35    35 
+	                            36   212    52     7   177     2     3    14   177     3 
+	                            91    18    23   177    19    19    18   232    51 
+	00061: PUSHW[3]            740   341    24 
+	00068: CALL       
+	00069: SRP0       
+	00070: MIRP[srp0,nmd,rd,2] 
+	00071: ALIGNRP    
+	00072: SRP0       
+	00073: MIRP[nrp0,nmd,rd,0] 
+	00074: SRP0       
+	00075: MIRP[nrp0,md,rd,1] 
+	00076: MIRP[nrp0,nmd,rd,0] 
+	00077: SRP0       
+	00078: ALIGNRP    
+	00079: MIRP[nrp0,nmd,rd,0] 
+	00080: SRP0       
+	00081: MIRP[srp0,nmd,rd,0] 
+	00082: ALIGNRP    
+	00083: SRP0       
+	00084: MIRP[nrp0,nmd,rd,0] 
+	00085: MIRP[srp0,md,rd,1] 
+	00086: ALIGNRP    
+	00087: SRP0       
+	00088: MIRP[nrp0,nmd,rd,0] 
+	00089: SRP0       
+	00090: MIRP[nrp0,nmd,rd,0] 
+	00091: SVTCA[y-axis] 
+	00092: MIAP[rd+ci] 
+	00093: ALIGNRP    
+	00094: MIRP[nrp0,md,rd,1] 
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: SRP0       
+	00097: MIRP[nrp0,md,rd,1] 
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: MIAP[rd+ci] 
+	00100: ALIGNRP    
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: SRP0       
+	00103: MIRP[nrp0,md,rd,1] 
+	00104: ALIGNRP    
+	00105: SRP0       
+	00106: MIRP[srp0,md,rd,1] 
+	00107: ALIGNRP    
+	00108: SRP0       
+	00109: ALIGNRP    
+	00110: IUP[y]     
+	00111: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short On
+	 19:        XDual                         On
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual                               On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short On
+	 36:        XDual                         On
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:                      Y-Short X-Short Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short Off
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual XDual         Y-Short X-Short Off
+	 50:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   970,  -302)  ->  Abs (   970,  -302)
+	  1: Rel (     0,  1472)  ->  Abs (   970,  1170)
+	  2: Rel (  -711,     0)  ->  Abs (   259,  1170)
+	  3: Rel (     0, -1472)  ->  Abs (   259,  -302)
+	  4: Rel (    65,     0)  ->  Abs (   324,  -302)
+	  5: Rel (    30,     0)  ->  Abs (   354,  -302)
+	  6: Rel (    26,   -23)  ->  Abs (   380,  -325)
+	  7: Rel (     0,   -19)  ->  Abs (   380,  -344)
+	  8: Rel (     0,   -18)  ->  Abs (   380,  -362)
+	  9: Rel (   -26,   -24)  ->  Abs (   354,  -386)
+	 10: Rel (   -30,     0)  ->  Abs (   324,  -386)
+	 11: Rel (  -214,     0)  ->  Abs (   110,  -386)
+	 12: Rel (   -30,     0)  ->  Abs (    80,  -386)
+	 13: Rel (   -26,    23)  ->  Abs (    54,  -363)
+	 14: Rel (     0,    19)  ->  Abs (    54,  -344)
+	 15: Rel (     0,    19)  ->  Abs (    54,  -325)
+	 16: Rel (    26,    23)  ->  Abs (    80,  -302)
+	 17: Rel (    30,     0)  ->  Abs (   110,  -302)
+	 18: Rel (    65,     0)  ->  Abs (   175,  -302)
+	 19: Rel (     0,  1472)  ->  Abs (   175,  1170)
+	 20: Rel (   -65,     0)  ->  Abs (   110,  1170)
+	 21: Rel (   -30,     0)  ->  Abs (    80,  1170)
+	 22: Rel (   -26,    24)  ->  Abs (    54,  1194)
+	 23: Rel (     0,    19)  ->  Abs (    54,  1213)
+	 24: Rel (     0,    12)  ->  Abs (    54,  1225)
+	 25: Rel (    13,    21)  ->  Abs (    67,  1246)
+	 26: Rel (    19,     9)  ->  Abs (    86,  1255)
+	 27: Rel (    24,     0)  ->  Abs (   110,  1255)
+	 28: Rel (  1009,     0)  ->  Abs (  1119,  1255)
+	 29: Rel (    30,     0)  ->  Abs (  1149,  1255)
+	 30: Rel (    26,   -24)  ->  Abs (  1175,  1231)
+	 31: Rel (     0,   -19)  ->  Abs (  1175,  1212)
+	 32: Rel (     0,   -18)  ->  Abs (  1175,  1194)
+	 33: Rel (   -26,   -24)  ->  Abs (  1149,  1170)
+	 34: Rel (   -30,     0)  ->  Abs (  1119,  1170)
+	 35: Rel (   -64,     0)  ->  Abs (  1055,  1170)
+	 36: Rel (     0, -1472)  ->  Abs (  1055,  -302)
+	 37: Rel (    64,     0)  ->  Abs (  1119,  -302)
+	 38: Rel (    30,     0)  ->  Abs (  1149,  -302)
+	 39: Rel (    26,   -23)  ->  Abs (  1175,  -325)
+	 40: Rel (     0,   -19)  ->  Abs (  1175,  -344)
+	 41: Rel (     0,   -18)  ->  Abs (  1175,  -362)
+	 42: Rel (   -26,   -24)  ->  Abs (  1149,  -386)
+	 43: Rel (   -30,     0)  ->  Abs (  1119,  -386)
+	 44: Rel (  -213,     0)  ->  Abs (   906,  -386)
+	 45: Rel (   -31,     0)  ->  Abs (   875,  -386)
+	 46: Rel (   -26,    23)  ->  Abs (   849,  -363)
+	 47: Rel (     0,    19)  ->  Abs (   849,  -344)
+	 48: Rel (     0,    19)  ->  Abs (   849,  -325)
+	 49: Rel (    26,    23)  ->  Abs (   875,  -302)
+	 50: Rel (    31,     0)  ->  Abs (   906,  -302)
+
+	Glyph 155: off = 0x0000B9EC, len = 344
+	  numberOfContours:	1
+	  xMin:			167
+	  yMin:			0
+	  xMax:			1061
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  68
+
+	  Length of Instructions:	152
+	00000: NPUSHB      (65):    55    53    48    52    54    55    48    49     1    67 
+	                            46    59    37    26    59    36     1    59    37    37 
+	                            36    67    59    55    84    57     3    59    13    57 
+	                            14    24    23    22    59    22    59    14    14    13 
+	                            42   195    47    47    53   195    48    32     0    68 
+	                           136    62    31   195    25    25    24     1     2    32 
+	                            62    48    62     2    62 
+	00067: PUSHW[1]            485 
+	00070: PUSHB[7]              8   136     2    32    24   195    19 
+	00078: PUSHW[1]            485 
+	00081: PUSHB[8]             69    36     6    13    10   244   172    24 
+	00090: CALL       
+	00091: SVTCA[y-axis] 
+	00092: MIAP[rd+ci] 
+	00093: MIAP[rd+ci] 
+	00094: SVTCA[x-axis] 
+	00095: SRP0       
+	00096: MIRP[srp0,nmd,rd,2] 
+	00097: MIRP[srp0,nmd,rd,0] 
+	00098: MIRP[srp0,md,rd,1] 
+	00099: MIRP[srp0,nmd,rd,0] 
+	00100: MIRP[nrp0,nmd,rd,2] 
+	00101: DELTAP1    
+	00102: SRP0       
+	00103: ALIGNRP    
+	00104: SRP0       
+	00105: ALIGNRP    
+	00106: SRP0       
+	00107: MIRP[nrp0,nmd,rd,0] 
+	00108: SRP0       
+	00109: MIRP[srp0,nmd,rd,0] 
+	00110: ALIGNRP    
+	00111: MIRP[srp0,md,rd,1] 
+	00112: MIRP[nrp0,nmd,rd,0] 
+	00113: ALIGNRP    
+	00114: SRP0       
+	00115: MIRP[nrp0,nmd,rd,0] 
+	00116: SVTCA[y-axis] 
+	00117: SRP0       
+	00118: ALIGNRP    
+	00119: SRP0       
+	00120: MIRP[nrp0,md,rd,1] 
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: SRP0       
+	00123: ALIGNRP    
+	00124: SRP0       
+	00125: ALIGNRP    
+	00126: SRP0       
+	00127: MIRP[nrp0,md,rd,1] 
+	00128: SRP0       
+	00129: MIRP[srp0,nmd,rd,0] 
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: SRP0       
+	00132: ALIGNRP    
+	00133: SRP0       
+	00134: MIRP[nrp0,md,rd,1] 
+	00135: SRP0       
+	00136: MIRP[nrp0,md,rd,1] 
+	00137: SRP0       
+	00138: MIRP[nrp0,md,rd,1] 
+	00139: SRP1       
+	00140: SRP2       
+	00141: IP         
+	00142: IP         
+	00143: SRP2       
+	00144: IP         
+	00145: IP         
+	00146: SVTCA[x-axis] 
+	00147: SRP1       
+	00148: SRP2       
+	00149: IP         
+	00150: IUP[y]     
+	00151: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short On
+	 25:        XDual                         On
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual               Y-Short X-Short On
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual                               On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short X-Short On
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:                      Y-Short X-Short Off
+	 45:                      Y-Short X-Short Off
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short On
+	 48:        XDual                         On
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:        XDual         Y-Short X-Short Off
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short         On
+	 54:        XDual         Y-Short         Off
+	 55:                      Y-Short X-Short Off
+	 56:                      Y-Short X-Short On
+	 57:  YDual                       X-Short On
+	 58:  YDual                       X-Short Off
+	 59:  YDual               Y-Short X-Short Off
+	 60:  YDual               Y-Short X-Short On
+	 61:  YDual               Y-Short X-Short Off
+	 62:  YDual XDual         Y-Short         On
+	 63:  YDual XDual         Y-Short         Off
+	 64:  YDual XDual         Y-Short X-Short On
+	 65:  YDual XDual         Y-Short X-Short Off
+	 66:  YDual XDual                 X-Short On
+	 67:        XDual         Y-Short X-Short On
+	 68:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   826,   782)  ->  Abs (   826,   782)
+	  1: Rel (  -423,     0)  ->  Abs (   403,   782)
+	  2: Rel (     0,  -698)  ->  Abs (   403,    84)
+	  3: Rel (    50,     0)  ->  Abs (   453,    84)
+	  4: Rel (    44,     0)  ->  Abs (   497,    84)
+	  5: Rel (     6,    -2)  ->  Abs (   503,    82)
+	  6: Rel (    12,    -4)  ->  Abs (   515,    78)
+	  7: Rel (    14,   -21)  ->  Abs (   529,    57)
+	  8: Rel (     0,   -13)  ->  Abs (   529,    44)
+	  9: Rel (     0,   -14)  ->  Abs (   529,    30)
+	 10: Rel (   -15,   -22)  ->  Abs (   514,     8)
+	 11: Rel (   -13,    -5)  ->  Abs (   501,     3)
+	 12: Rel (    -6,    -3)  ->  Abs (   495,     0)
+	 13: Rel (   -42,     0)  ->  Abs (   453,     0)
+	 14: Rel (  -214,     0)  ->  Abs (   239,     0)
+	 15: Rel (   -40,     0)  ->  Abs (   199,     0)
+	 16: Rel (    -7,     3)  ->  Abs (   192,     3)
+	 17: Rel (   -11,     4)  ->  Abs (   181,     7)
+	 18: Rel (   -14,    21)  ->  Abs (   167,    28)
+	 19: Rel (     0,    12)  ->  Abs (   167,    40)
+	 20: Rel (     0,    13)  ->  Abs (   167,    53)
+	 21: Rel (    16,    22)  ->  Abs (   183,    75)
+	 22: Rel (    24,     9)  ->  Abs (   207,    84)
+	 23: Rel (    40,     0)  ->  Abs (   247,    84)
+	 24: Rel (    72,     0)  ->  Abs (   319,    84)
+	 25: Rel (     0,   698)  ->  Abs (   319,   782)
+	 26: Rel (   -55,     0)  ->  Abs (   264,   782)
+	 27: Rel (   -51,     0)  ->  Abs (   213,   782)
+	 28: Rel (   -11,     4)  ->  Abs (   202,   786)
+	 29: Rel (   -17,     6)  ->  Abs (   185,   792)
+	 30: Rel (   -17,    22)  ->  Abs (   168,   814)
+	 31: Rel (     0,    11)  ->  Abs (   168,   825)
+	 32: Rel (     0,    11)  ->  Abs (   168,   836)
+	 33: Rel (    16,    21)  ->  Abs (   184,   857)
+	 34: Rel (    14,     5)  ->  Abs (   198,   862)
+	 35: Rel (    11,     4)  ->  Abs (   209,   866)
+	 36: Rel (    47,     0)  ->  Abs (   256,   866)
+	 37: Rel (   714,     0)  ->  Abs (   970,   866)
+	 38: Rel (    55,     0)  ->  Abs (  1025,   866)
+	 39: Rel (    21,    -7)  ->  Abs (  1046,   859)
+	 40: Rel (     6,    -8)  ->  Abs (  1052,   851)
+	 41: Rel (     8,   -13)  ->  Abs (  1060,   838)
+	 42: Rel (     0,   -14)  ->  Abs (  1060,   824)
+	 43: Rel (     0,   -14)  ->  Abs (  1060,   810)
+	 44: Rel (   -14,   -19)  ->  Abs (  1046,   791)
+	 45: Rel (   -26,    -9)  ->  Abs (  1020,   782)
+	 46: Rel (   -50,     0)  ->  Abs (   970,   782)
+	 47: Rel (   -60,     0)  ->  Abs (   910,   782)
+	 48: Rel (     0,  -698)  ->  Abs (   910,    84)
+	 49: Rel (    74,     0)  ->  Abs (   984,    84)
+	 50: Rel (    40,     0)  ->  Abs (  1024,    84)
+	 51: Rel (    23,    -8)  ->  Abs (  1047,    76)
+	 52: Rel (    14,   -20)  ->  Abs (  1061,    56)
+	 53: Rel (     0,   -12)  ->  Abs (  1061,    44)
+	 54: Rel (     0,   -15)  ->  Abs (  1061,    29)
+	 55: Rel (   -23,   -27)  ->  Abs (  1038,     2)
+	 56: Rel (   -13,    -2)  ->  Abs (  1025,     0)
+	 57: Rel (  -248,     0)  ->  Abs (   777,     0)
+	 58: Rel (   -41,     0)  ->  Abs (   736,     0)
+	 59: Rel (   -24,     9)  ->  Abs (   712,     9)
+	 60: Rel (    -6,    10)  ->  Abs (   706,    19)
+	 61: Rel (    -9,    14)  ->  Abs (   697,    33)
+	 62: Rel (     0,    13)  ->  Abs (   697,    46)
+	 63: Rel (     0,    13)  ->  Abs (   697,    59)
+	 64: Rel (    13,    11)  ->  Abs (   710,    70)
+	 65: Rel (    19,    15)  ->  Abs (   729,    85)
+	 66: Rel (    21,     0)  ->  Abs (   750,    85)
+	 67: Rel (    27,    -1)  ->  Abs (   777,    84)
+	 68: Rel (    49,     0)  ->  Abs (   826,    84)
+
+	Glyph 156: off = 0x0000BB44, len = 346
+	  numberOfContours:	1
+	  xMin:			225
+	  yMin:			-262
+	  xMax:			1004
+	  yMax:			1173
+
+	EndPoints
+	---------
+	  0:  53
+
+	  Length of Instructions:	191
+	00000: NPUSHB      (37):    62     8    15    17    10    27    28    25    30     0 
+	                             1    52    42    44    37     3    15    17    20    24 
+	                            31    13    42    44    40    47    55    79    34     1 
+	                            34    19    77     7    43   193    37 
+	00039: PUSHW[1]            415 
+	00042: PUSHB[8]              3    52    52    55    30    16   193    10 
+	00051: PUSHW[1]            415 
+	00054: NPUSHB      (13):    25    52     0    30     1    30    25    54    15    34 
+	                             1    34     7 
+	00069: PUSHW[1]            306 
+	00072: PUSHB[3]            101   188    24 
+	00076: CALL       
+	00077: SCANCTRL   
+	00078: SVTCA[y-axis] 
+	00079: MDAP[rd]   
+	00080: MDAP[rd]   
+	00081: DELTAP1    
+	00082: SVTCA[x-axis] 
+	00083: FLIPOFF    
+	00084: SRP0       
+	00085: MIRP[srp0,nmd,rd,0] 
+	00086: DELTAP1    
+	00087: FLIPON     
+	00088: MIRP[srp0,nmd,rd,0] 
+	00089: MIRP[srp0,nmd,rd,0] 
+	00090: MIRP[nrp0,md,rd,1] 
+	00091: SRP0       
+	00092: MIRP[srp0,md,rd,1] 
+	00093: MIRP[nrp0,nmd,rd,0] 
+	00094: MIRP[srp0,nmd,rd,0] 
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: SVTCA[y-axis] 
+	00097: SRP0       
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: SRP0       
+	00100: DELTAP1    
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: SRP1       
+	00103: IP         
+	00104: IP         
+	00105: SRP2       
+	00106: IP         
+	00107: IP         
+	00108: SRP1       
+	00109: IP         
+	00110: IP         
+	00111: SVTCA[x-axis] 
+	00112: SRP1       
+	00113: SRP2       
+	00114: IP         
+	00115: IP         
+	00116: SRP2       
+	00117: IP         
+	00118: IP         
+	00119: SRP1       
+	00120: SRP2       
+	00121: IP         
+	00122: IP         
+	00123: SRP2       
+	00124: IP         
+	00125: IP         
+	00126: IUP[y]     
+	00127: IUP[x]     
+	00128: RS         
+	00129: JROF       
+	00130: NPUSHB      (42):    48    51    31    33    21    24     4     6    50    51 
+	                            49    51     2     6     5    38    22    37    48    33 
+	                            52    95     0    32    31    21     6    24    40     1 
+	                            23    24    51    32    47    95     1    23     4    20 
+	                            40     0 
+	00174: SVTCA[y-axis] 
+	00175: CALL       
+	00176: CALL       
+	00177: SVTCA[x-axis] 
+	00178: SRP0       
+	00179: ALIGNRP    
+	00180: CALL       
+	00181: SRP0       
+	00182: ALIGNRP    
+	00183: CALL       
+	00184: CALL       
+	00185: CALL       
+	00186: LOOPCALL   
+	00187: FLIPRGON   
+	00188: FLIPRGON   
+	00189: FLIPRGON   
+	00190: FLIPRGON   
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short On
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:                      Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual               Y-Short X-Short On
+	 44:  YDual               Y-Short X-Short Off
+	 45:  YDual               Y-Short X-Short On
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short Off
+	 49:                      Y-Short X-Short On
+	 50:                      Y-Short X-Short Off
+	 51:                      Y-Short X-Short Off
+	 52:        XDual         Y-Short         On
+	 53:        XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   640,   509)  ->  Abs (   640,   509)
+	  1: Rel (     4,  -123)  ->  Abs (   644,   386)
+	  2: Rel (     2,   -45)  ->  Abs (   646,   341)
+	  3: Rel (     0,   -45)  ->  Abs (   646,   296)
+	  4: Rel (     0,  -252)  ->  Abs (   646,    44)
+	  5: Rel (   -67,  -209)  ->  Abs (   579,  -165)
+	  6: Rel (  -133,   -97)  ->  Abs (   446,  -262)
+	  7: Rel (   -72,     0)  ->  Abs (   374,  -262)
+	  8: Rel (   -60,     0)  ->  Abs (   314,  -262)
+	  9: Rel (   -89,    85)  ->  Abs (   225,  -177)
+	 10: Rel (     0,    51)  ->  Abs (   225,  -126)
+	 11: Rel (     0,    29)  ->  Abs (   225,   -97)
+	 12: Rel (    26,    29)  ->  Abs (   251,   -68)
+	 13: Rel (    21,     0)  ->  Abs (   272,   -68)
+	 14: Rel (    21,     0)  ->  Abs (   293,   -68)
+	 15: Rel (    31,   -32)  ->  Abs (   324,  -100)
+	 16: Rel (     9,   -47)  ->  Abs (   333,  -147)
+	 17: Rel (     7,   -32)  ->  Abs (   340,  -179)
+	 18: Rel (    13,   -11)  ->  Abs (   353,  -190)
+	 19: Rel (    18,   -15)  ->  Abs (   371,  -205)
+	 20: Rel (    26,     0)  ->  Abs (   397,  -205)
+	 21: Rel (    58,     0)  ->  Abs (   455,  -205)
+	 22: Rel (    52,    53)  ->  Abs (   507,  -152)
+	 23: Rel (    38,    39)  ->  Abs (   545,  -113)
+	 24: Rel (    46,   191)  ->  Abs (   591,    78)
+	 25: Rel (     0,   219)  ->  Abs (   591,   297)
+	 26: Rel (     0,    52)  ->  Abs (   591,   349)
+	 27: Rel (    -2,    53)  ->  Abs (   589,   402)
+	 28: Rel (    -4,   122)  ->  Abs (   585,   524)
+	 29: Rel (    -2,    46)  ->  Abs (   583,   570)
+	 30: Rel (     0,    45)  ->  Abs (   583,   615)
+	 31: Rel (     0,   252)  ->  Abs (   583,   867)
+	 32: Rel (    66,   208)  ->  Abs (   649,  1075)
+	 33: Rel (   133,    98)  ->  Abs (   782,  1173)
+	 34: Rel (    72,     0)  ->  Abs (   854,  1173)
+	 35: Rel (    61,     0)  ->  Abs (   915,  1173)
+	 36: Rel (    89,   -85)  ->  Abs (  1004,  1088)
+	 37: Rel (     0,   -52)  ->  Abs (  1004,  1036)
+	 38: Rel (     0,   -27)  ->  Abs (  1004,  1009)
+	 39: Rel (   -27,   -30)  ->  Abs (   977,   979)
+	 40: Rel (   -20,     0)  ->  Abs (   957,   979)
+	 41: Rel (   -21,     0)  ->  Abs (   936,   979)
+	 42: Rel (   -32,    32)  ->  Abs (   904,  1011)
+	 43: Rel (    -8,    46)  ->  Abs (   896,  1057)
+	 44: Rel (    -6,    33)  ->  Abs (   890,  1090)
+	 45: Rel (   -14,    11)  ->  Abs (   876,  1101)
+	 46: Rel (   -18,    15)  ->  Abs (   858,  1116)
+	 47: Rel (   -26,     0)  ->  Abs (   832,  1116)
+	 48: Rel (   -58,     0)  ->  Abs (   774,  1116)
+	 49: Rel (   -52,   -53)  ->  Abs (   722,  1063)
+	 50: Rel (   -39,   -40)  ->  Abs (   683,  1023)
+	 51: Rel (   -45,  -192)  ->  Abs (   638,   831)
+	 52: Rel (     0,  -216)  ->  Abs (   638,   615)
+	 53: Rel (     0,   -53)  ->  Abs (   638,   562)
+
+	Glyph 157: off = 0x0000BC9E, len = 288
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			727
+	  xMax:			654
+	  yMax:			1311
+
+	EndPoints
+	---------
+	  0:  40
+	  1:  53
+
+	  Length of Instructions:	137
+	00000: PUSHB[2]             40    34 
+	00003: PUSHW[3]            696    37   273 
+	00010: NPUSHB      (24):    33    37    37    34    33    50    40     0    33    41 
+	                            12     9    45    40     0    41    44     0   174     1 
+	                           174    52    44     3 
+	00036: PUSHW[1]            698 
+	00039: NPUSHB      (28):    45    44     0     9    16     9     2     9     9    52 
+	                            17    44    29    32    36    13    13    41    12    52 
+	                            42    52    41    91    15    33     1    33 
+	00069: PUSHW[1]            323 
+	00072: NPUSHB      (10):    24   174    49    44     6    25    54   164   120    24 
+	00084: CALL       
+	00085: FLIPOFF    
+	00086: SRP0       
+	00087: MIRP[srp0,nmd,rd,0] 
+	00088: FLIPON     
+	00089: MIRP[nrp0,md,rd,1] 
+	00090: MIRP[nrp0,nmd,rd,0] 
+	00091: MIRP[srp0,md,rd,1] 
+	00092: DELTAP1    
+	00093: MIRP[srp0,md,rd,1] 
+	00094: MIRP[srp0,nmd,rd,0] 
+	00095: MIRP[nrp0,nmd,rd,0] 
+	00096: SRP0       
+	00097: ALIGNRP    
+	00098: SRP0       
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: SVTCA[y-axis] 
+	00101: MDAP[rd]   
+	00102: MIRP[srp0,md,rd,1] 
+	00103: SRP1       
+	00104: IP         
+	00105: MDAP[rd]   
+	00106: DELTAP1    
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: MIRP[srp0,md,rd,1] 
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: MIRP[srp0,nmd,rd,0] 
+	00111: MIRP[nrp0,nmd,rd,0] 
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: SRP0       
+	00114: ALIGNRP    
+	00115: SRP1       
+	00116: SRP2       
+	00117: IP         
+	00118: SVTCA[x-axis] 
+	00119: SRP1       
+	00120: SRP2       
+	00121: IP         
+	00122: SVTCA[y-axis] 
+	00123: SRP0       
+	00124: MIRP[srp0,md,rd,1] 
+	00125: RTDG       
+	00126: SRP2       
+	00127: IP         
+	00128: MDAP[rd]   
+	00129: RTG        
+	00130: SVTCA[x-axis] 
+	00131: SRP0       
+	00132: MIRP[srp0,nmd,rd,1] 
+	00133: MIRP[srp0,nmd,rd,0] 
+	00134: MDRP[nrp0,nmd,rd,0] 
+	00135: IUP[y]     
+	00136: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual                         On
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:                      Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:  YDual               Y-Short X-Short On
+	 42:  YDual               Y-Short X-Short On
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual               Y-Short X-Short Off
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short Off
+	 47:                      Y-Short X-Short On
+	 48:                      Y-Short X-Short Off
+	 49:        XDual         Y-Short         On
+	 50:        XDual         Y-Short         Off
+	 51:        XDual         Y-Short X-Short Off
+	 52:  YDual XDual                 X-Short On
+	 53:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   463,   747)  ->  Abs (   463,   747)
+	  1: Rel (     0,    60)  ->  Abs (   463,   807)
+	  2: Rel (  -115,   -80)  ->  Abs (   348,   727)
+	  3: Rel (  -125,     0)  ->  Abs (   223,   727)
+	  4: Rel (  -107,     0)  ->  Abs (   116,   727)
+	  5: Rel (  -116,   102)  ->  Abs (     0,   829)
+	  6: Rel (     0,    71)  ->  Abs (     0,   900)
+	  7: Rel (     0,    76)  ->  Abs (     0,   976)
+	  8: Rel (   149,   119)  ->  Abs (   149,  1095)
+	  9: Rel (   148,     0)  ->  Abs (   297,  1095)
+	 10: Rel (    35,     0)  ->  Abs (   332,  1095)
+	 11: Rel (    83,    -8)  ->  Abs (   415,  1087)
+	 12: Rel (    48,    -8)  ->  Abs (   463,  1079)
+	 13: Rel (     0,    66)  ->  Abs (   463,  1145)
+	 14: Rel (     0,    34)  ->  Abs (   463,  1179)
+	 15: Rel (   -32,    24)  ->  Abs (   431,  1203)
+	 16: Rel (   -42,    31)  ->  Abs (   389,  1234)
+	 17: Rel (   -80,     0)  ->  Abs (   309,  1234)
+	 18: Rel (   -61,     0)  ->  Abs (   248,  1234)
+	 19: Rel (  -114,   -34)  ->  Abs (   134,  1200)
+	 20: Rel (   -22,    -6)  ->  Abs (   112,  1194)
+	 21: Rel (    -8,     0)  ->  Abs (   104,  1194)
+	 22: Rel (   -16,     0)  ->  Abs (    88,  1194)
+	 23: Rel (   -23,    22)  ->  Abs (    65,  1216)
+	 24: Rel (     0,    17)  ->  Abs (    65,  1233)
+	 25: Rel (     0,    14)  ->  Abs (    65,  1247)
+	 26: Rel (    20,    21)  ->  Abs (    85,  1268)
+	 27: Rel (    59,    15)  ->  Abs (   144,  1283)
+	 28: Rel (   111,    28)  ->  Abs (   255,  1311)
+	 29: Rel (    57,     0)  ->  Abs (   312,  1311)
+	 30: Rel (   111,     0)  ->  Abs (   423,  1311)
+	 31: Rel (   121,  -103)  ->  Abs (   544,  1208)
+	 32: Rel (     0,   -63)  ->  Abs (   544,  1145)
+	 33: Rel (     0,  -321)  ->  Abs (   544,   824)
+	 34: Rel (    60,     0)  ->  Abs (   604,   824)
+	 35: Rel (    26,     0)  ->  Abs (   630,   824)
+	 36: Rel (    24,   -22)  ->  Abs (   654,   802)
+	 37: Rel (     0,   -16)  ->  Abs (   654,   786)
+	 38: Rel (     0,   -16)  ->  Abs (   654,   770)
+	 39: Rel (   -24,   -23)  ->  Abs (   630,   747)
+	 40: Rel (   -26,     0)  ->  Abs (   604,   747)
+	 41: Rel (  -141,   159)  ->  Abs (   463,   906)
+	 42: Rel (    -1,    95)  ->  Abs (   462,  1001)
+	 43: Rel (   -34,     9)  ->  Abs (   428,  1010)
+	 44: Rel (   -78,     8)  ->  Abs (   350,  1018)
+	 45: Rel (   -45,     0)  ->  Abs (   305,  1018)
+	 46: Rel (  -116,     0)  ->  Abs (   189,  1018)
+	 47: Rel (   -63,   -45)  ->  Abs (   126,   973)
+	 48: Rel (   -45,   -32)  ->  Abs (    81,   941)
+	 49: Rel (     0,   -41)  ->  Abs (    81,   900)
+	 50: Rel (     0,   -39)  ->  Abs (    81,   861)
+	 51: Rel (    68,   -57)  ->  Abs (   149,   804)
+	 52: Rel (    71,     0)  ->  Abs (   220,   804)
+	 53: Rel (   127,     0)  ->  Abs (   347,   804)
+
+	Glyph 158: off = 0x0000BDBE, len = 268
+	  numberOfContours:	2
+	  xMin:			294
+	  yMin:			727
+	  xMax:			930
+	  yMax:			1311
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	191
+	00000: NPUSHB      (28):   213     2   213     4   220     8   220    10   223    13 
+	                           223    17   208    19   208    23     8    22    40    28 
+	                            30    52    14    40    28    30    52    20 
+	00030: PUSHW[1]            -40 
+	00033: PUSHB[4]             28    30    52    16 
+	00038: PUSHW[1]            -40 
+	00041: NPUSHB      (14):    28    30    52    13    40    18    21    52    22    40 
+	                            18    21    52    19 
+	00057: PUSHW[1]            -40 
+	00060: PUSHB[4]             18    21    52    17 
+	00065: PUSHW[1]            -40 
+	00068: NPUSHB      (29):    18    21    52    55     8    21    44     3   182    15 
+	                            44     9    12    44   208     0     1     0   221    18 
+	                            44   223     6     1     6    25    24     9   164 
+	00099: PUSHW[2]            261    24 
+	00104: CALL       
+	00105: SVTCA[y-axis] 
+	00106: MDAP[rd]   
+	00107: SVTCA[x-axis] 
+	00108: FLIPOFF    
+	00109: SRP0       
+	00110: MIRP[srp0,nmd,rd,0] 
+	00111: DELTAP1    
+	00112: FLIPON     
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: MIRP[srp0,md,rd,1] 
+	00115: DELTAP1    
+	00116: MIRP[nrp0,md,rd,1] 
+	00117: SVTCA[y-axis] 
+	00118: SRP0       
+	00119: MIRP[nrp0,md,rd,1] 
+	00120: MIRP[srp0,md,rd,1] 
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: IUP[y]     
+	00123: IUP[x]     
+	00124: RS         
+	00125: JROF       
+	00126: NPUSHB      (42):     1    23    16     8    18    40     0    14    10    12 
+	                            40     1    20     4    18    40     0    22     2    12 
+	                            40     1    17     7    15    40     1    13    11    15 
+	                            40     1    19     5    21    40     0    23     1    21 
+	                            40     0 
+	00170: CALL       
+	00171: CALL       
+	00172: CALL       
+	00173: CALL       
+	00174: SVTCA[x-axis] 
+	00175: CALL       
+	00176: CALL       
+	00177: CALL       
+	00178: CALL       
+	00179: FLIPRGON   
+	00180: SVTCA[x-axis] 
+	00181: CALL       
+	00182: CALL       
+	00183: CALL       
+	00184: CALL       
+	00185: CALL       
+	00186: CALL       
+	00187: CALL       
+	00188: CALL       
+	00189: SVTCA[y-axis] 
+	00190: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   930,  1019)  ->  Abs (   930,  1019)
+	  1: Rel (     0,  -118)  ->  Abs (   930,   901)
+	  2: Rel (  -183,  -174)  ->  Abs (   747,   727)
+	  3: Rel (  -135,     0)  ->  Abs (   612,   727)
+	  4: Rel (  -135,     0)  ->  Abs (   477,   727)
+	  5: Rel (  -183,   175)  ->  Abs (   294,   902)
+	  6: Rel (     0,   117)  ->  Abs (   294,  1019)
+	  7: Rel (     0,   118)  ->  Abs (   294,  1137)
+	  8: Rel (   183,   174)  ->  Abs (   477,  1311)
+	  9: Rel (   135,     0)  ->  Abs (   612,  1311)
+	 10: Rel (   135,     0)  ->  Abs (   747,  1311)
+	 11: Rel (   183,  -174)  ->  Abs (   930,  1137)
+	 12: Rel (   -81,  -118)  ->  Abs (   849,  1019)
+	 13: Rel (     0,    87)  ->  Abs (   849,  1106)
+	 14: Rel (  -136,   128)  ->  Abs (   713,  1234)
+	 15: Rel (  -101,     0)  ->  Abs (   612,  1234)
+	 16: Rel (  -101,     0)  ->  Abs (   511,  1234)
+	 17: Rel (  -136,  -129)  ->  Abs (   375,  1105)
+	 18: Rel (     0,   -86)  ->  Abs (   375,  1019)
+	 19: Rel (     0,   -86)  ->  Abs (   375,   933)
+	 20: Rel (   136,  -129)  ->  Abs (   511,   804)
+	 21: Rel (   101,     0)  ->  Abs (   612,   804)
+	 22: Rel (   101,     0)  ->  Abs (   713,   804)
+	 23: Rel (   136,   129)  ->  Abs (   849,   933)
+
+	Glyph 159: off = 0x0000BECA, len = 360
+	  numberOfContours:	1
+	  xMin:			61
+	  yMin:			0
+	  xMax:			1168
+	  yMax:			1190
+
+	EndPoints
+	---------
+	  0:  54
+
+	  Length of Instructions:	202
+	00000: NPUSHB      (28):    41    32    36    36   123    32   113    37   155    32 
+	                           148    37   189    29   176    40     8     2    15    16 
+	                            28    41    34    37     8     2    90    41 
+	00030: PUSHW[1]            400 
+	00033: PUSHB[4]              1    15    90    28 
+	00038: PUSHW[1]            400 
+	00041: NPUSHB      (26):    16     0     1    30    42    17    16    30    27    21 
+	                           237    26    26    27    49   237    43    43    27    42 
+	                            31    37   112    12     1    12 
+	00069: PUSHW[1]            737 
+	00072: NPUSHB       (9):    28    15    16    38    37   127     5     1     5 
+	00083: PUSHW[1]            737 
+	00086: NPUSHB      (11):    41     2     1    38    42    17    38    26    16    38 
+	                            26 
+	00099: PUSHW[4]            598    28    27   724 
+	00108: PUSHB[5]             42     0    38    44    43 
+	00114: PUSHW[4]            598    41    42   736 
+	00123: PUSHB[6]             55    42     8     3    42     8 
+	00130: PUSHW[3]            294   340    24 
+	00137: CALL       
+	00138: SVTCA[y-axis] 
+	00139: MIAP[rd+ci] 
+	00140: MIAP[rd+ci] 
+	00141: SVTCA[x-axis] 
+	00142: MDAP[rd]   
+	00143: SRP0       
+	00144: MIRP[srp0,nmd,rd,0] 
+	00145: ALIGNRP    
+	00146: MIRP[srp0,md,rd,2] 
+	00147: ALIGNRP    
+	00148: MIRP[nrp0,md,rd,1] 
+	00149: SRP0       
+	00150: MIRP[srp0,nmd,rd,2] 
+	00151: ALIGNRP    
+	00152: MIRP[nrp0,md,rd,2] 
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: SRP0       
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: SRP0       
+	00157: MIRP[srp0,md,rd,1] 
+	00158: ALIGNRP    
+	00159: SRP0       
+	00160: MIRP[srp0,md,rd,1] 
+	00161: DELTAP1    
+	00162: MIRP[nrp0,md,rd,1] 
+	00163: SRP0       
+	00164: ALIGNRP    
+	00165: SRP0       
+	00166: MIRP[srp0,md,rd,1] 
+	00167: DELTAP1    
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: SVTCA[y-axis] 
+	00170: SRP0       
+	00171: ALIGNRP    
+	00172: ALIGNRP    
+	00173: SRP0       
+	00174: MIRP[nrp0,md,rd,1] 
+	00175: SRP0       
+	00176: ALIGNRP    
+	00177: SRP0       
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: SRP0       
+	00180: MIRP[srp0,md,rd,1] 
+	00181: ALIGNRP    
+	00182: SRP0       
+	00183: MIRP[srp0,md,rd,1] 
+	00184: ALIGNRP    
+	00185: SRP0       
+	00186: MIRP[srp0,nmd,rd,0] 
+	00187: MIRP[nrp0,md,rd,1] 
+	00188: SRP0       
+	00189: MIRP[srp0,nmd,rd,0] 
+	00190: MIRP[nrp0,md,rd,1] 
+	00191: SRP0       
+	00192: MIRP[nrp0,md,rd,1] 
+	00193: SRP1       
+	00194: IP         
+	00195: SRP2       
+	00196: IP         
+	00197: IP         
+	00198: IUP[y]     
+	00199: IUP[x]     
+	00200: SVTCA[x-axis] 
+	00201: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:                                      Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:                      Y-Short         Off
+	 11:        XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:        XDual         Y-Short         On
+	 17:  YDual                               On
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:                      Y-Short X-Short On
+	 26:        XDual         Y-Short         On
+	 27:  YDual                               On
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual               Y-Short         Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:                      Y-Short X-Short On
+	 37:                      Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short X-Short On
+	 42:        XDual         Y-Short         On
+	 43:  YDual                               On
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual XDual         Y-Short X-Short On
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:        XDual         Y-Short X-Short On
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short X-Short Off
+	 54:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   146,    84)  ->  Abs (   146,    84)
+	  1: Rel (   281,     0)  ->  Abs (   427,    84)
+	  2: Rel (     0,    95)  ->  Abs (   427,   179)
+	  3: Rel (  -177,    41)  ->  Abs (   250,   220)
+	  4: Rel (  -189,   242)  ->  Abs (    61,   462)
+	  5: Rel (     0,   180)  ->  Abs (    61,   642)
+	  6: Rel (     0,   248)  ->  Abs (    61,   890)
+	  7: Rel (   338,   300)  ->  Abs (   399,  1190)
+	  8: Rel (   217,     0)  ->  Abs (   616,  1190)
+	  9: Rel (   148,     0)  ->  Abs (   764,  1190)
+	 10: Rel (   260,  -142)  ->  Abs (  1024,  1048)
+	 11: Rel (   144,  -261)  ->  Abs (  1168,   787)
+	 12: Rel (     0,  -147)  ->  Abs (  1168,   640)
+	 13: Rel (     0,  -172)  ->  Abs (  1168,   468)
+	 14: Rel (  -185,  -238)  ->  Abs (   983,   230)
+	 15: Rel (  -185,   -51)  ->  Abs (   798,   179)
+	 16: Rel (     0,   -95)  ->  Abs (   798,    84)
+	 17: Rel (   281,     0)  ->  Abs (  1079,    84)
+	 18: Rel (     0,    50)  ->  Abs (  1079,   134)
+	 19: Rel (     0,    47)  ->  Abs (  1079,   181)
+	 20: Rel (    22,    26)  ->  Abs (  1101,   207)
+	 21: Rel (    21,     0)  ->  Abs (  1122,   207)
+	 22: Rel (    13,     0)  ->  Abs (  1135,   207)
+	 23: Rel (    20,   -14)  ->  Abs (  1155,   193)
+	 24: Rel (     7,   -19)  ->  Abs (  1162,   174)
+	 25: Rel (    -1,   -40)  ->  Abs (  1161,   134)
+	 26: Rel (     0,  -134)  ->  Abs (  1161,     0)
+	 27: Rel (  -445,     0)  ->  Abs (   716,     0)
+	 28: Rel (     0,   245)  ->  Abs (   716,   245)
+	 29: Rel (   181,    29)  ->  Abs (   897,   274)
+	 30: Rel (   189,   216)  ->  Abs (  1086,   490)
+	 31: Rel (     0,   163)  ->  Abs (  1086,   653)
+	 32: Rel (     0,   217)  ->  Abs (  1086,   870)
+	 33: Rel (  -293,   243)  ->  Abs (   793,  1113)
+	 34: Rel (  -172,     0)  ->  Abs (   621,  1113)
+	 35: Rel (  -165,     0)  ->  Abs (   456,  1113)
+	 36: Rel (  -136,  -104)  ->  Abs (   320,  1009)
+	 37: Rel (  -175,  -134)  ->  Abs (   145,   875)
+	 38: Rel (     0,  -228)  ->  Abs (   145,   647)
+	 39: Rel (     0,  -173)  ->  Abs (   145,   474)
+	 40: Rel (   191,  -208)  ->  Abs (   336,   266)
+	 41: Rel (   173,   -21)  ->  Abs (   509,   245)
+	 42: Rel (     0,  -245)  ->  Abs (   509,     0)
+	 43: Rel (  -443,     0)  ->  Abs (    66,     0)
+	 44: Rel (     0,   134)  ->  Abs (    66,   134)
+	 45: Rel (     0,    40)  ->  Abs (    66,   174)
+	 46: Rel (     3,     9)  ->  Abs (    69,   183)
+	 47: Rel (     4,    11)  ->  Abs (    73,   194)
+	 48: Rel (    21,    14)  ->  Abs (    94,   208)
+	 49: Rel (    12,     0)  ->  Abs (   106,   208)
+	 50: Rel (    12,     0)  ->  Abs (   118,   208)
+	 51: Rel (     8,    -6)  ->  Abs (   126,   202)
+	 52: Rel (    12,    -8)  ->  Abs (   138,   194)
+	 53: Rel (     8,   -21)  ->  Abs (   146,   173)
+	 54: Rel (     0,   -39)  ->  Abs (   146,   134)
+
+	Glyph 160: off = 0x0000C032, len = 672
+	  numberOfContours:	3
+	  xMin:			16
+	  yMin:			-33
+	  xMax:			1192
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  69
+	  1:  78
+	  2:  94
+
+	  Length of Instructions:	407
+	00000: NPUSHB     (101):    20    50    34     3    34    50    52     3    52    50 
+	                            65     3    75     6    67    50    76    69    64    77 
+	                           122    46   117    77   148    15   156    46   144    76 
+	                            15   153    69   173    69     2    43    50    53     6 
+	                            79    29   149     6   156    14   157    29   157    46 
+	                           150    92   162     6   175    14   171    46   181     6 
+	                           185    14   189    29   187    50   189    77   182    92 
+	                            17   148    58   164    58     2    50     8    29    94 
+	                            93    92     4    22    21    20     3     2     5    60 
+	                            25    70    78    32     0     1    89    41    33    82 
+	                            56 
+	00103: PUSHW[1]            480 
+	00106: NPUSHB      (10):    48    33    60    74    33    67    67    60     7    29 
+	00118: PUSHW[1]            763 
+	00121: NPUSHB      (29):    21   136    25    10    10   197     5    33    18    90 
+	                            33    32    32    18    11    92   156    29    29    28 
+	                             3    59    94    59    21    64    21    22    76 
+	00152: PUSHW[1]            480 
+	00155: NPUSHB      (36):    63    59    45    32    45    28     1    59    78    59 
+	                            79    79    28    59    22    22    95    96    70    59 
+	                             0     0   255    12     1    12    26    96    56   136 
+	                            86    33    36    25    95   152 
+	00193: PUSHW[3]            290    24   300 
+	00200: SCANCTRL   
+	00201: CALL       
+	00202: FLIPOFF    
+	00203: SRP0       
+	00204: MIRP[srp0,nmd,rd,0] 
+	00205: FLIPON     
+	00206: MIRP[nrp0,md,rd,1] 
+	00207: MIRP[nrp0,nmd,rd,0] 
+	00208: FLIPOFF    
+	00209: SRP0       
+	00210: MIRP[srp0,nmd,rd,2] 
+	00211: DELTAP1    
+	00212: ALIGNRP    
+	00213: FLIPON     
+	00214: SRP0       
+	00215: MIRP[nrp0,md,rd,1] 
+	00216: SRP1       
+	00217: SRP2       
+	00218: IP         
+	00219: MDAP[rd]   
+	00220: MIRP[srp0,md,rd,1] 
+	00221: ALIGNRP    
+	00222: SRP0       
+	00223: MIRP[nrp0,md,rd,1] 
+	00224: MIRP[nrp0,md,rd,1] 
+	00225: SRP0       
+	00226: ALIGNRP    
+	00227: RTHG       
+	00228: SMD        
+	00229: SRP0       
+	00230: MIRP[srp0,md,rd,1] 
+	00231: MIRP[nrp0,md,rd,1] 
+	00232: SRP0       
+	00233: ALIGNRP    
+	00234: RTG        
+	00235: SMD        
+	00236: SRP0       
+	00237: MIRP[nrp0,md,rd,1] 
+	00238: MIRP[nrp0,md,rd,1] 
+	00239: SRP0       
+	00240: ALIGNRP    
+	00241: SRP0       
+	00242: MIRP[nrp0,md,rd,1] 
+	00243: SVTCA[y-axis] 
+	00244: MIAP[rd+ci] 
+	00245: ALIGNRP    
+	00246: SRP0       
+	00247: MIRP[nrp0,md,rd,1] 
+	00248: SRP0       
+	00249: MIRP[nrp0,md,rd,1] 
+	00250: MIRP[nrp0,md,rd,1] 
+	00251: MIAP[rd+ci] 
+	00252: MIRP[nrp0,nmd,rd,0] 
+	00253: MIRP[nrp0,nmd,rd,0] 
+	00254: MIAP[rd+ci] 
+	00255: ALIGNRP    
+	00256: SRP0       
+	00257: MIRP[nrp0,md,rd,1] 
+	00258: SRP0       
+	00259: MIRP[nrp0,md,rd,1] 
+	00260: MIRP[nrp0,md,rd,1] 
+	00261: MDAP[rd]   
+	00262: MIRP[nrp0,md,rd,1] 
+	00263: MIRP[srp0,nmd,rd,0] 
+	00264: ALIGNRP    
+	00265: MIRP[srp0,md,rd,1] 
+	00266: ALIGNRP    
+	00267: SRP1       
+	00268: SRP2       
+	00269: SLOOP      
+	00270: IP         
+	00271: SLOOP      
+	00272: IP         
+	00273: IUP[y]     
+	00274: IUP[x]     
+	00275: RS         
+	00276: JROF       
+	00277: NPUSHB      (36):    83    89    33    40    84    37    38    37    39    37 
+	                             2     6    88    38    34    37    83    40    86    31 
+	                             0    89    33    86    31     0    85    37    82    31 
+	                             1    87    35    90    31     0 
+	00315: CALL       
+	00316: CALL       
+	00317: SVTCA[x-axis] 
+	00318: CALL       
+	00319: CALL       
+	00320: CALL       
+	00321: CALL       
+	00322: LOOPCALL   
+	00323: CALL       
+	00324: FLIPRGON   
+	00325: FLIPRGON   
+	00326: SVTCA[x-axis] 
+	00327: DELTAP1    
+	00328: SVTCA[y-axis] 
+	00329: MPPEM      
+	00330: PUSHB[1]             12 
+	00332: GTEQ       
+	00333: MPPEM      
+	00334: PUSHB[1]             36 
+	00336: LTEQ       
+	00337: AND        
+	00338: IF         
+	00339: PUSHB[3]             52    20    65 
+	00343: PUSHW[3]            -20    61   -20 
+	00350: PUSHB[5]             84    25     2    30    88 
+	00356: PUSHW[1]            -25 
+	00359: SHPIX      
+	00360: SHPIX      
+	00361: SHPIX      
+	00362: SHPIX      
+	00363: SHPIX      
+	00364: SHPIX      
+	00365: EIF        
+	00366: SVTCA[x-axis] 
+	00367: MPPEM      
+	00368: PUSHB[1]             12 
+	00370: GTEQ       
+	00371: MPPEM      
+	00372: PUSHB[1]             36 
+	00374: LTEQ       
+	00375: AND        
+	00376: IF         
+	00377: PUSHB[3]              7    20     2 
+	00381: PUSHW[1]            -20 
+	00384: PUSHB[7]             73    20    71    25    72    30    76 
+	00392: PUSHW[1]            -25 
+	00395: SHPIX      
+	00396: SHPIX      
+	00397: SHPIX      
+	00398: SHPIX      
+	00399: SHPIX      
+	00400: SHPIX      
+	00401: EIF        
+	00402: SVTCA[y-axis] 
+	00403: DELTAP2    
+	00404: SVTCA[x-axis] 
+	00405: DELTAP1    
+	00406: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual               Y-Short X-Short On
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         On
+	 30:                      Y-Short X-Short Off
+	 31:                      Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:        XDual         Y-Short X-Short Off
+	 44:        XDual         Y-Short X-Short On
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual               Y-Short X-Short Off
+	 48:  YDual                       X-Short On
+	 49:  YDual                       X-Short Off
+	 50:                      Y-Short X-Short Off
+	 51:                      Y-Short X-Short On
+	 52:                      Y-Short X-Short Off
+	 53:  YDual                       X-Short On
+	 54:  YDual                       X-Short Off
+	 55:  YDual               Y-Short X-Short Off
+	 56:  YDual XDual         Y-Short         On
+	 57:  YDual XDual         Y-Short         Off
+	 58:  YDual XDual         Y-Short X-Short Off
+	 59:  YDual XDual         Y-Short X-Short Off
+	 60:  YDual XDual                 X-Short On
+	 61:  YDual XDual                 X-Short Off
+	 62:        XDual         Y-Short X-Short Off
+	 63:        XDual         Y-Short X-Short On
+	 64:  YDual XDual         Y-Short X-Short Off
+	 65:  YDual XDual         Y-Short X-Short On
+	 66:  YDual XDual         Y-Short X-Short Off
+	 67:  YDual XDual                 X-Short On
+	 68:  YDual XDual                 X-Short Off
+	 69:        XDual         Y-Short X-Short Off
+	 70:                      Y-Short X-Short On
+	 71:  YDual               Y-Short X-Short Off
+	 72:  YDual               Y-Short X-Short On
+	 73:  YDual               Y-Short X-Short Off
+	 74:  YDual                       X-Short On
+	 75:  YDual                       X-Short Off
+	 76:                      Y-Short X-Short On
+	 77:                      Y-Short X-Short Off
+	 78:                      Y-Short X-Short On
+	 79:                      Y-Short X-Short On
+	 80:  YDual               Y-Short X-Short Off
+	 81:  YDual               Y-Short X-Short Off
+	 82:  YDual                       X-Short On
+	 83:  YDual                       X-Short Off
+	 84:                      Y-Short X-Short On
+	 85:                      Y-Short X-Short Off
+	 86:        XDual         Y-Short         On
+	 87:        XDual         Y-Short         Off
+	 88:        XDual         Y-Short X-Short Off
+	 89:        XDual         Y-Short X-Short Off
+	 90:  YDual XDual                 X-Short On
+	 91:  YDual XDual                 X-Short Off
+	 92:  YDual XDual         Y-Short X-Short On
+	 93:  YDual XDual         Y-Short X-Short Off
+	 94:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1192,   412)  ->  Abs (  1192,   412)
+	  1: Rel (  -534,     0)  ->  Abs (   658,   412)
+	  2: Rel (    15,  -181)  ->  Abs (   673,   231)
+	  3: Rel (    85,  -105)  ->  Abs (   758,   126)
+	  4: Rel (    61,   -75)  ->  Abs (   819,    51)
+	  5: Rel (    68,     0)  ->  Abs (   887,    51)
+	  6: Rel (    89,     0)  ->  Abs (   976,    51)
+	  7: Rel (   142,   116)  ->  Abs (  1118,   167)
+	  8: Rel (    18,    15)  ->  Abs (  1136,   182)
+	  9: Rel (    15,     0)  ->  Abs (  1151,   182)
+	 10: Rel (    18,     0)  ->  Abs (  1169,   182)
+	 11: Rel (    23,   -24)  ->  Abs (  1192,   158)
+	 12: Rel (     0,   -18)  ->  Abs (  1192,   140)
+	 13: Rel (     0,   -16)  ->  Abs (  1192,   124)
+	 14: Rel (   -13,   -15)  ->  Abs (  1179,   109)
+	 15: Rel (   -48,   -51)  ->  Abs (  1131,    58)
+	 16: Rel (  -104,   -52)  ->  Abs (  1027,     6)
+	 17: Rel (   -79,   -39)  ->  Abs (   948,   -33)
+	 18: Rel (   -60,     0)  ->  Abs (   888,   -33)
+	 19: Rel (   -61,     0)  ->  Abs (   827,   -33)
+	 20: Rel (  -122,    79)  ->  Abs (   705,    46)
+	 21: Rel (   -47,    80)  ->  Abs (   658,   126)
+	 22: Rel (     0,   -70)  ->  Abs (   658,    56)
+	 23: Rel (     0,   -30)  ->  Abs (   658,    26)
+	 24: Rel (   -23,   -26)  ->  Abs (   635,     0)
+	 25: Rel (   -19,     0)  ->  Abs (   616,     0)
+	 26: Rel (   -19,     0)  ->  Abs (   597,     0)
+	 27: Rel (   -23,    26)  ->  Abs (   574,    26)
+	 28: Rel (     0,    30)  ->  Abs (   574,    56)
+	 29: Rel (     0,    45)  ->  Abs (   574,   101)
+	 30: Rel (   -71,   -76)  ->  Abs (   503,    25)
+	 31: Rel (  -112,   -58)  ->  Abs (   391,   -33)
+	 32: Rel (   -63,     0)  ->  Abs (   328,   -33)
+	 33: Rel (   -80,     0)  ->  Abs (   248,   -33)
+	 34: Rel (  -148,    86)  ->  Abs (   100,    53)
+	 35: Rel (   -84,   164)  ->  Abs (    16,   217)
+	 36: Rel (     0,    83)  ->  Abs (    16,   300)
+	 37: Rel (     0,    55)  ->  Abs (    16,   355)
+	 38: Rel (    59,    81)  ->  Abs (    75,   436)
+	 39: Rel (    86,    40)  ->  Abs (   161,   476)
+	 40: Rel (   125,    58)  ->  Abs (   286,   534)
+	 41: Rel (   109,     0)  ->  Abs (   395,   534)
+	 42: Rel (    45,     0)  ->  Abs (   440,   534)
+	 43: Rel (    90,   -13)  ->  Abs (   530,   521)
+	 44: Rel (    44,   -13)  ->  Abs (   574,   508)
+	 45: Rel (     0,   125)  ->  Abs (   574,   633)
+	 46: Rel (     0,    70)  ->  Abs (   574,   703)
+	 47: Rel (  -106,   108)  ->  Abs (   468,   811)
+	 48: Rel (   -61,     0)  ->  Abs (   407,   811)
+	 49: Rel (   -33,     0)  ->  Abs (   374,   811)
+	 50: Rel (  -106,   -29)  ->  Abs (   268,   782)
+	 51: Rel (   -50,   -26)  ->  Abs (   218,   756)
+	 52: Rel (   -26,   -13)  ->  Abs (   192,   743)
+	 53: Rel (   -11,     0)  ->  Abs (   181,   743)
+	 54: Rel (   -16,     0)  ->  Abs (   165,   743)
+	 55: Rel (   -25,    25)  ->  Abs (   140,   768)
+	 56: Rel (     0,    16)  ->  Abs (   140,   784)
+	 57: Rel (     0,    16)  ->  Abs (   140,   800)
+	 58: Rel (    28,    30)  ->  Abs (   168,   830)
+	 59: Rel (   182,    66)  ->  Abs (   350,   896)
+	 60: Rel (    62,     0)  ->  Abs (   412,   896)
+	 61: Rel (    69,     0)  ->  Abs (   481,   896)
+	 62: Rel (   130,   -95)  ->  Abs (   611,   801)
+	 63: Rel (    31,   -83)  ->  Abs (   642,   718)
+	 64: Rel (    55,    91)  ->  Abs (   697,   809)
+	 65: Rel (    50,    37)  ->  Abs (   747,   846)
+	 66: Rel (    65,    50)  ->  Abs (   812,   896)
+	 67: Rel (    71,     0)  ->  Abs (   883,   896)
+	 68: Rel (   109,     0)  ->  Abs (   992,   896)
+	 69: Rel (   199,  -253)  ->  Abs (  1191,   643)
+	 70: Rel (   -84,  -147)  ->  Abs (  1107,   496)
+	 71: Rel (   -20,   156)  ->  Abs (  1087,   652)
+	 72: Rel (   -82,    93)  ->  Abs (  1005,   745)
+	 73: Rel (   -58,    66)  ->  Abs (   947,   811)
+	 74: Rel (   -67,     0)  ->  Abs (   880,   811)
+	 75: Rel (   -63,     0)  ->  Abs (   817,   811)
+	 76: Rel (   -58,   -67)  ->  Abs (   759,   744)
+	 77: Rel (   -80,   -92)  ->  Abs (   679,   652)
+	 78: Rel (   -21,  -156)  ->  Abs (   658,   496)
+	 79: Rel (   -84,   -76)  ->  Abs (   574,   420)
+	 80: Rel (   -45,    15)  ->  Abs (   529,   435)
+	 81: Rel (   -86,    15)  ->  Abs (   443,   450)
+	 82: Rel (   -41,     0)  ->  Abs (   402,   450)
+	 83: Rel (  -141,     0)  ->  Abs (   261,   450)
+	 84: Rel (  -108,   -72)  ->  Abs (   153,   378)
+	 85: Rel (   -53,   -34)  ->  Abs (   100,   344)
+	 86: Rel (     0,   -51)  ->  Abs (   100,   293)
+	 87: Rel (     0,   -59)  ->  Abs (   100,   234)
+	 88: Rel (    61,  -121)  ->  Abs (   161,   113)
+	 89: Rel (   107,   -62)  ->  Abs (   268,    51)
+	 90: Rel (    58,     0)  ->  Abs (   326,    51)
+	 91: Rel (    53,     0)  ->  Abs (   379,    51)
+	 92: Rel (    47,    30)  ->  Abs (   426,    81)
+	 93: Rel (    64,    40)  ->  Abs (   490,   121)
+	 94: Rel (    84,   108)  ->  Abs (   574,   229)
+
+	Glyph 161: off = 0x0000C2D2, len = 392
+	  numberOfContours:	3
+	  xMin:			112
+	  yMin:			-86
+	  xMax:			1122
+	  yMax:			947
+
+	EndPoints
+	---------
+	  0:  31
+	  1:  39
+	  2:  47
+
+	  Length of Instructions:	247
+	00000: NPUSHB      (98):    41     8    32    39    16    16     9     9    16    32 
+	                            39    17    17     8     0    25    40    47    24    24 
+	                             1    40    47    25    25     0    47    40    39    32 
+	                            25    16     9     0     8    45    37    47    40    39 
+	                            32    25    16     9     0     8    34    42    24     1 
+	                             1    32     8    17    20     8     8    17     1     8 
+	                            37    11    17    45    24    23    27     8    42    30 
+	                            24    14    17     7    34    33    14     7    42    33 
+	                            30    11     1    11    23    93    27    33    32    45 
+	                            48    45    64    45    80    45     4    45 
+	00100: PUSHW[1]            544 
+	00103: NPUSHB      (15):    37    33     0    11   111    11   223    11   224    11 
+	                             4    11    25    48    42 
+	00120: PUSHW[3]            263    24   300 
+	00127: SCANCTRL   
+	00128: CALL       
+	00129: FLIPOFF    
+	00130: SRP0       
+	00131: MIRP[srp0,nmd,rd,0] 
+	00132: DELTAP1    
+	00133: FLIPON     
+	00134: MIRP[nrp0,md,rd,1] 
+	00135: MIRP[srp0,nmd,rd,0] 
+	00136: DELTAP1    
+	00137: MIRP[srp0,md,rd,1] 
+	00138: MIRP[nrp0,nmd,rd,0] 
+	00139: SVTCA[y-axis] 
+	00140: MIAP[rd+ci] 
+	00141: MIAP[rd+ci] 
+	00142: MIRP[nrp0,md,rd,1] 
+	00143: MIAP[rd+ci] 
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: MIAP[rd+ci] 
+	00146: SRP1       
+	00147: IP         
+	00148: SRP1       
+	00149: SRP2       
+	00150: IP         
+	00151: SVTCA[x-axis] 
+	00152: SRP1       
+	00153: SRP2       
+	00154: IP         
+	00155: SRP2       
+	00156: IP         
+	00157: SRP1       
+	00158: SRP2       
+	00159: IP         
+	00160: IP         
+	00161: SDPVTL[1]  
+	00162: SFVTPV     
+	00163: MDAP[nrd]  
+	00164: CALL       
+	00165: RDTG       
+	00166: SRP0       
+	00167: MDRP[nrp0,nmd,rd,0] 
+	00168: SVTCA[y-axis] 
+	00169: SRP1       
+	00170: SRP2       
+	00171: SLOOP      
+	00172: IP         
+	00173: SVTCA[x-axis] 
+	00174: SRP1       
+	00175: SRP2       
+	00176: SLOOP      
+	00177: IP         
+	00178: SPVTL[p1,p2] 
+	00179: SRP0       
+	00180: SFVTPV     
+	00181: ALIGNRP    
+	00182: ALIGNRP    
+	00183: SPVTL[p1,p2] 
+	00184: SRP0       
+	00185: SFVTPV     
+	00186: ALIGNRP    
+	00187: ALIGNRP    
+	00188: ALIGNRP    
+	00189: ALIGNRP    
+	00190: SPVTL[p1,p2] 
+	00191: SRP0       
+	00192: SFVTPV     
+	00193: ALIGNRP    
+	00194: ALIGNRP    
+	00195: ALIGNRP    
+	00196: ALIGNRP    
+	00197: SPVTL[p1,p2] 
+	00198: SRP0       
+	00199: SFVTPV     
+	00200: ALIGNRP    
+	00201: ALIGNRP    
+	00202: IUP[y]     
+	00203: IUP[x]     
+	00204: RTG        
+	00205: RS         
+	00206: JROF       
+	00207: NPUSHB      (28):    43    44    35    36    28    29    12    13    35    13 
+	                            37    35     0    43    29    45    35     1    36    12 
+	                            34    35     1    44    28    42    35     0 
+	00237: SVTCA[y-axis] 
+	00238: CALL       
+	00239: CALL       
+	00240: SVTCA[x-axis] 
+	00241: CALL       
+	00242: CALL       
+	00243: FLIPRGON   
+	00244: FLIPRGON   
+	00245: FLIPRGON   
+	00246: FLIPRGON   
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:                                      Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:                                      Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:                                      On
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:                      Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:        XDual         Y-Short X-Short On
+	 40:        XDual         Y-Short X-Short On
+	 41:        XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   320,    66)  ->  Abs (   320,    66)
+	  1: Rel (  -126,  -129)  ->  Abs (   194,   -63)
+	  2: Rel (   -22,   -23)  ->  Abs (   172,   -86)
+	  3: Rel (   -18,     0)  ->  Abs (   154,   -86)
+	  4: Rel (   -18,     0)  ->  Abs (   136,   -86)
+	  5: Rel (   -24,    25)  ->  Abs (   112,   -61)
+	  6: Rel (     0,    19)  ->  Abs (   112,   -42)
+	  7: Rel (     0,    16)  ->  Abs (   112,   -26)
+	  8: Rel (    22,    22)  ->  Abs (   134,    -4)
+	  9: Rel (   123,   126)  ->  Abs (   257,   122)
+	 10: Rel (  -123,   133)  ->  Abs (   134,   255)
+	 11: Rel (     0,   177)  ->  Abs (   134,   432)
+	 12: Rel (     0,   189)  ->  Abs (   134,   621)
+	 13: Rel (   281,   275)  ->  Abs (   415,   896)
+	 14: Rel (   202,     0)  ->  Abs (   617,   896)
+	 15: Rel (   167,     0)  ->  Abs (   784,   896)
+	 16: Rel (   131,   -99)  ->  Abs (   915,   797)
+	 17: Rel (   125,   128)  ->  Abs (  1040,   925)
+	 18: Rel (    22,    22)  ->  Abs (  1062,   947)
+	 19: Rel (    18,     0)  ->  Abs (  1080,   947)
+	 20: Rel (    17,     0)  ->  Abs (  1097,   947)
+	 21: Rel (    25,   -24)  ->  Abs (  1122,   923)
+	 22: Rel (     0,   -19)  ->  Abs (  1122,   904)
+	 23: Rel (     0,   -16)  ->  Abs (  1122,   888)
+	 24: Rel (   -22,   -23)  ->  Abs (  1100,   865)
+	 25: Rel (  -122,  -125)  ->  Abs (   978,   740)
+	 26: Rel (   122,  -132)  ->  Abs (  1100,   608)
+	 27: Rel (     0,  -177)  ->  Abs (  1100,   431)
+	 28: Rel (     0,  -190)  ->  Abs (  1100,   241)
+	 29: Rel (  -281,  -274)  ->  Abs (   819,   -33)
+	 30: Rel (  -202,     0)  ->  Abs (   617,   -33)
+	 31: Rel (  -162,     0)  ->  Abs (   455,   -33)
+	 32: Rel (   400,   769)  ->  Abs (   855,   736)
+	 33: Rel (  -106,    75)  ->  Abs (   749,   811)
+	 34: Rel (  -132,     0)  ->  Abs (   617,   811)
+	 35: Rel (  -167,     0)  ->  Abs (   450,   811)
+	 36: Rel (  -231,  -225)  ->  Abs (   219,   586)
+	 37: Rel (     0,  -155)  ->  Abs (   219,   431)
+	 38: Rel (     0,  -137)  ->  Abs (   219,   294)
+	 39: Rel (    97,  -111)  ->  Abs (   316,   183)
+	 40: Rel (    63,   -56)  ->  Abs (   379,   127)
+	 41: Rel (   106,   -76)  ->  Abs (   485,    51)
+	 42: Rel (   133,     0)  ->  Abs (   618,    51)
+	 43: Rel (   167,     0)  ->  Abs (   785,    51)
+	 44: Rel (   230,   225)  ->  Abs (  1015,   276)
+	 45: Rel (     0,   155)  ->  Abs (  1015,   431)
+	 46: Rel (     0,   141)  ->  Abs (  1015,   572)
+	 47: Rel (   -96,   108)  ->  Abs (   919,   680)
+
+	Glyph 162: off = 0x0000C45A, len = 312
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			-392
+	  xMax:			728
+	  yMax:			887
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  49
+
+	  Length of Instructions:	172
+	00000: NPUSHB      (53):   129    28   143    49   146    28   160    28     4    16 
+	                            24    16    28    16    45     3    74    22    91    22 
+	                           106    22   102    28   115    28   194    32   213    32 
+	                           229    32   243    32     9    28    23    27    45   155 
+	                            23     3    22    14    49     3    18    32    40   111 
+	                            36     1    36 
+	00055: PUSHW[1]            355 
+	00058: NPUSHB      (45):    29    33    44    14     1   197     8     7    79    18 
+	                           159    18     2    18    18    44     8    15    59    21 
+	                            21    32    22    95    22     2    22     4   179    11 
+	                           154    22    22    50    51    26    33    64    47   144 
+	                            47   208    47     3    47 
+	00105: PUSHW[1]            491 
+	00108: PUSHB[7]             50    33    59    95    38     1    38 
+	00116: PUSHW[5]            497    51   742   743    24 
+	00127: CALL       
+	00128: SRP0       
+	00129: MIRP[srp0,nmd,rd,2] 
+	00130: DELTAP1    
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: SRP0       
+	00133: MIRP[srp0,nmd,rd,2] 
+	00134: DELTAP1    
+	00135: MIRP[nrp0,md,rd,1] 
+	00136: SRP1       
+	00137: SRP2       
+	00138: IP         
+	00139: MDAP[rd]   
+	00140: MIRP[srp0,nmd,rd,0] 
+	00141: MIRP[nrp0,md,rd,1] 
+	00142: SRP0       
+	00143: DELTAP1    
+	00144: ALIGNRP    
+	00145: SRP0       
+	00146: MIRP[nrp0,md,rd,1] 
+	00147: SVTCA[y-axis] 
+	00148: SRP1       
+	00149: SRP2       
+	00150: IP         
+	00151: MDAP[rd]   
+	00152: DELTAP1    
+	00153: MIAP[rd+ci] 
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: MIAP[rd+ci] 
+	00156: MIRP[srp0,md,rd,1] 
+	00157: MIRP[srp0,nmd,rd,0] 
+	00158: DELTAP1    
+	00159: IP         
+	00160: IP         
+	00161: SRP1       
+	00162: SLOOP      
+	00163: IP         
+	00164: IUP[y]     
+	00165: IUP[x]     
+	00166: SVTCA[y-axis] 
+	00167: DELTAP2    
+	00168: DELTAP1    
+	00169: SVTCA[x-axis] 
+	00170: DELTAP2    
+	00171: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+	 14:                              X-Short On
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         On
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:        XDual         Y-Short X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         On
+	 41:                      Y-Short X-Short Off
+	 42:                      Y-Short X-Short On
+	 43:                      Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short Off
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   429,   679)  ->  Abs (   429,   679)
+	  1: Rel (   -84,     0)  ->  Abs (   345,   679)
+	  2: Rel (   -43,     0)  ->  Abs (   302,   679)
+	  3: Rel (   -61,    61)  ->  Abs (   241,   740)
+	  4: Rel (     0,    42)  ->  Abs (   241,   782)
+	  5: Rel (     0,    45)  ->  Abs (   241,   827)
+	  6: Rel (    62,    60)  ->  Abs (   303,   887)
+	  7: Rel (    42,     0)  ->  Abs (   345,   887)
+	  8: Rel (    84,     0)  ->  Abs (   429,   887)
+	  9: Rel (    43,     0)  ->  Abs (   472,   887)
+	 10: Rel (    61,   -61)  ->  Abs (   533,   826)
+	 11: Rel (     0,   -43)  ->  Abs (   533,   783)
+	 12: Rel (     0,   -45)  ->  Abs (   533,   738)
+	 13: Rel (   -62,   -59)  ->  Abs (   471,   679)
+	 14: Rel (  -128,  -385)  ->  Abs (   343,   294)
+	 15: Rel (     0,    85)  ->  Abs (   343,   379)
+	 16: Rel (     0,    31)  ->  Abs (   343,   410)
+	 17: Rel (    24,    26)  ->  Abs (   367,   436)
+	 18: Rel (    19,     0)  ->  Abs (   386,   436)
+	 19: Rel (    18,     0)  ->  Abs (   404,   436)
+	 20: Rel (    24,   -26)  ->  Abs (   428,   410)
+	 21: Rel (     0,   -31)  ->  Abs (   428,   379)
+	 22: Rel (     0,  -141)  ->  Abs (   428,   238)
+	 23: Rel (  -219,   -80)  ->  Abs (   209,   158)
+	 24: Rel (   -80,   -81)  ->  Abs (   129,    77)
+	 25: Rel (   -45,   -46)  ->  Abs (    84,    31)
+	 26: Rel (     0,   -68)  ->  Abs (    84,   -37)
+	 27: Rel (     0,  -111)  ->  Abs (    84,  -148)
+	 28: Rel (   163,  -160)  ->  Abs (   247,  -308)
+	 29: Rel (   130,     0)  ->  Abs (   377,  -308)
+	 30: Rel (    66,     0)  ->  Abs (   443,  -308)
+	 31: Rel (   117,    31)  ->  Abs (   560,  -277)
+	 32: Rel (    84,    40)  ->  Abs (   644,  -237)
+	 33: Rel (     0,    68)  ->  Abs (   644,  -169)
+	 34: Rel (     0,    31)  ->  Abs (   644,  -138)
+	 35: Rel (    23,    26)  ->  Abs (   667,  -112)
+	 36: Rel (    19,     0)  ->  Abs (   686,  -112)
+	 37: Rel (    19,     0)  ->  Abs (   705,  -112)
+	 38: Rel (    23,   -26)  ->  Abs (   728,  -138)
+	 39: Rel (     0,   -31)  ->  Abs (   728,  -169)
+	 40: Rel (     0,  -122)  ->  Abs (   728,  -291)
+	 41: Rel (  -156,   -70)  ->  Abs (   572,  -361)
+	 42: Rel (   -46,   -11)  ->  Abs (   526,  -372)
+	 43: Rel (   -78,   -20)  ->  Abs (   448,  -392)
+	 44: Rel (   -78,     0)  ->  Abs (   370,  -392)
+	 45: Rel (  -166,     0)  ->  Abs (   204,  -392)
+	 46: Rel (  -204,   201)  ->  Abs (     0,  -191)
+	 47: Rel (     0,   153)  ->  Abs (     0,   -38)
+	 48: Rel (     0,    94)  ->  Abs (     0,    56)
+	 49: Rel (   121,   144)  ->  Abs (   121,   200)
+
+	Glyph 163: off = 0x0000C592, len = 180
+	  numberOfContours:	2
+	  xMin:			491
+	  yMin:			-389
+	  xMax:			738
+	  yMax:			878
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  31
+
+	  Length of Instructions:	79
+	00000: NPUSHB      (10):   198    25     1    14    15    30    22    24    21    27 
+	00012: PUSHW[1]            540 
+	00015: NPUSHB      (21):    18   167     1   116     7    24    62    11   174    21 
+	                            91    30    62     4   174     0    15    16    15     2 
+	                            15 
+	00038: PUSHW[1]            585 
+	00041: PUSHB[4]             32     7     6   254 
+	00046: PUSHW[2]            334    24 
+	00051: CALL       
+	00052: SVTCA[y-axis] 
+	00053: MIAP[rd+ci] 
+	00054: SVTCA[x-axis] 
+	00055: SRP0       
+	00056: MIRP[srp0,nmd,rd,2] 
+	00057: DELTAP1    
+	00058: MIRP[nrp0,nmd,rd,0] 
+	00059: MIRP[nrp0,nmd,rd,0] 
+	00060: MIRP[srp0,md,rd,1] 
+	00061: MIRP[nrp0,nmd,rd,0] 
+	00062: MIRP[nrp0,nmd,rd,0] 
+	00063: SVTCA[y-axis] 
+	00064: SRP0       
+	00065: MIRP[nrp0,md,rd,1] 
+	00066: MIRP[srp0,nmd,rd,0] 
+	00067: MIRP[nrp0,md,rd,1] 
+	00068: SVTCA[x-axis] 
+	00069: SRP1       
+	00070: SRP2       
+	00071: IP         
+	00072: SRP1       
+	00073: SRP2       
+	00074: IP         
+	00075: IUP[y]     
+	00076: IUP[x]     
+	00077: SVTCA[x-axis] 
+	00078: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+	 14:                              X-Short On
+	 15:        XDual                 X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual                 X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   634,   670)  ->  Abs (   634,   670)
+	  1: Rel (   -39,     0)  ->  Abs (   595,   670)
+	  2: Rel (   -43,     0)  ->  Abs (   552,   670)
+	  3: Rel (   -61,    61)  ->  Abs (   491,   731)
+	  4: Rel (     0,    43)  ->  Abs (   491,   774)
+	  5: Rel (     0,    45)  ->  Abs (   491,   819)
+	  6: Rel (    62,    59)  ->  Abs (   553,   878)
+	  7: Rel (    42,     0)  ->  Abs (   595,   878)
+	  8: Rel (    39,     0)  ->  Abs (   634,   878)
+	  9: Rel (    43,     0)  ->  Abs (   677,   878)
+	 10: Rel (    61,   -61)  ->  Abs (   738,   817)
+	 11: Rel (     0,   -42)  ->  Abs (   738,   775)
+	 12: Rel (     0,   -45)  ->  Abs (   738,   730)
+	 13: Rel (   -62,   -60)  ->  Abs (   676,   670)
+	 14: Rel (  -141,  -944)  ->  Abs (   535,  -274)
+	 15: Rel (    37,   645)  ->  Abs (   572,   371)
+	 16: Rel (     2,    32)  ->  Abs (   574,   403)
+	 17: Rel (    23,    26)  ->  Abs (   597,   429)
+	 18: Rel (    17,     0)  ->  Abs (   614,   429)
+	 19: Rel (    18,     0)  ->  Abs (   632,   429)
+	 20: Rel (    23,   -26)  ->  Abs (   655,   403)
+	 21: Rel (     2,   -32)  ->  Abs (   657,   371)
+	 22: Rel (    38,  -645)  ->  Abs (   695,  -274)
+	 23: Rel (     1,   -23)  ->  Abs (   696,  -297)
+	 24: Rel (     0,   -12)  ->  Abs (   696,  -309)
+	 25: Rel (     0,   -34)  ->  Abs (   696,  -343)
+	 26: Rel (   -46,   -46)  ->  Abs (   650,  -389)
+	 27: Rel (   -35,     0)  ->  Abs (   615,  -389)
+	 28: Rel (   -35,     0)  ->  Abs (   580,  -389)
+	 29: Rel (   -47,    45)  ->  Abs (   533,  -344)
+	 30: Rel (     0,    37)  ->  Abs (   533,  -307)
+	 31: Rel (     0,    10)  ->  Abs (   533,  -297)
+
+	Glyph 164: off = 0x0000C646, len = 116
+	  numberOfContours:	1
+	  xMin:			24
+	  yMin:			67
+	  xMax:			1085
+	  yMax:			627
+
+	EndPoints
+	---------
+	  0:  16
+
+	  Length of Instructions:	58
+	00000: PUSHB[3]              0     7     4 
+	00004: PUSHW[1]            445 
+	00007: PUSHB[5]             16    16    50     7     7 
+	00013: PUSHW[1]            281 
+	00016: NPUSHB      (12):    47    12     1    12     8     9    36    15    15    16 
+	                            25    17 
+	00030: PUSHW[1]            446 
+	00033: PUSHB[2]            129    24 
+	00036: CALL       
+	00037: FLIPOFF    
+	00038: SRP0       
+	00039: MIRP[srp0,nmd,rd,0] 
+	00040: ALIGNRP    
+	00041: FLIPON     
+	00042: SRP0       
+	00043: MIRP[srp0,md,rd,1] 
+	00044: ALIGNRP    
+	00045: SVTCA[y-axis] 
+	00046: MDAP[rd]   
+	00047: DELTAP1    
+	00048: MIRP[nrp0,md,rd,1] 
+	00049: SRP0       
+	00050: MIRP[nrp0,md,rd,1] 
+	00051: SVTCA[x-axis] 
+	00052: SRP0       
+	00053: MIRP[srp0,nmd,rd,1] 
+	00054: MDRP[srp0,nmd,rd,0] 
+	00055: ALIGNRP    
+	00056: IUP[y]     
+	00057: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                       X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual                               On
+	  9:        XDual                         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (    80,   543)  ->  Abs (    80,   543)
+	  1: Rel (   -23,     0)  ->  Abs (    57,   543)
+	  2: Rel (   -20,     9)  ->  Abs (    37,   552)
+	  3: Rel (   -13,    21)  ->  Abs (    24,   573)
+	  4: Rel (     0,    12)  ->  Abs (    24,   585)
+	  5: Rel (     0,    19)  ->  Abs (    24,   604)
+	  6: Rel (    26,    23)  ->  Abs (    50,   627)
+	  7: Rel (    30,     0)  ->  Abs (    80,   627)
+	  8: Rel (  1005,     0)  ->  Abs (  1085,   627)
+	  9: Rel (     0,  -504)  ->  Abs (  1085,   123)
+	 10: Rel (     0,   -30)  ->  Abs (  1085,    93)
+	 11: Rel (   -24,   -26)  ->  Abs (  1061,    67)
+	 12: Rel (   -18,     0)  ->  Abs (  1043,    67)
+	 13: Rel (   -19,     0)  ->  Abs (  1024,    67)
+	 14: Rel (   -24,    26)  ->  Abs (  1000,    93)
+	 15: Rel (     0,    30)  ->  Abs (  1000,   123)
+	 16: Rel (     0,   420)  ->  Abs (  1000,   543)
+
+	Glyph 165: off = 0x0000C6BA, len = 162
+	  numberOfContours:	1
+	  xMin:			137
+	  yMin:			-78
+	  xMax:			1135
+	  yMax:			1603
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	115
+	00000: NPUSHB      (62):    34     3     1     2     1     1   192     6     5    20 
+	                             6     1     0     6     5     1     0     1     2     0 
+	                            36     7     6    20     7     7     6     6     1     2 
+	                             4     3     3     5     5     7     1     0     7     0 
+	                             7     7     6     3    32     4     1     4     4     2 
+	                             2     5     5     6     1     1     0     6    16     6 
+	                             2     6 
+	00064: RTHG       
+	00065: MDAP[rd]   
+	00066: DELTAP1    
+	00067: SHP[rp1,zp0] 
+	00068: MDAP[rd]   
+	00069: SRP1       
+	00070: SHP[rp1,zp0] 
+	00071: RTG        
+	00072: MDAP[rd]   
+	00073: SHP[rp1,zp0] 
+	00074: MDAP[rd]   
+	00075: SHP[rp1,zp0] 
+	00076: MDAP[rd]   
+	00077: DELTAP1    
+	00078: SHP[rp1,zp0] 
+	00079: SRP1       
+	00080: SHP[rp1,zp0] 
+	00081: MDAP[rd]   
+	00082: SHP[rp1,zp0] 
+	00083: SVTCA[y-axis] 
+	00084: MDAP[rd]   
+	00085: MDAP[rd]   
+	00086: MDAP[rd]   
+	00087: SRP2       
+	00088: IP         
+	00089: MDAP[rd]   
+	00090: SLOOP      
+	00091: SHP[rp1,zp0] 
+	00092: SRP1       
+	00093: IP         
+	00094: SDPVTL[1]  
+	00095: SFVTCA[x-axis] 
+	00096: MDAP[nrd]  
+	00097: CALL       
+	00098: SFVTL[=p1,p2] 
+	00099: RDTG       
+	00100: SRP0       
+	00101: MDRP[nrp0,nmd,rd,0] 
+	00102: SDPVTL[1]  
+	00103: SFVTL[=p1,p2] 
+	00104: MDAP[nrd]  
+	00105: RTG        
+	00106: CALL       
+	00107: SFVTPV     
+	00108: RDTG       
+	00109: SRP0       
+	00110: MDRP[nrp0,nmd,rd,0] 
+	00111: IUP[y]     
+	00112: IUP[x]     
+	00113: SVTCA[y-axis] 
+	00114: DELTAP1    
+
+	Flags
+	-----
+	  0:              Rep-  2                 On
+	  3:                      Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short On
+	  5:  YDual               Y-Short         On
+	  6:                                      On
+	  7:        XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1135,  1603)  ->  Abs (  1135,  1603)
+	  1: Rel (  -270, -1681)  ->  Abs (   865,   -78)
+	  2: Rel (  -496,  1021)  ->  Abs (   369,   943)
+	  3: Rel (  -198,   -91)  ->  Abs (   171,   852)
+	  4: Rel (   -34,    64)  ->  Abs (   137,   916)
+	  5: Rel (   301,   151)  ->  Abs (   438,  1067)
+	  6: Rel (   405,  -823)  ->  Abs (   843,   244)
+	  7: Rel (   217,  1359)  ->  Abs (  1060,  1603)
+
+	Glyph 166: off = 0x0000C75C, len = 286
+	  numberOfContours:	1
+	  xMin:			177
+	  yMin:			-193
+	  xMax:			1062
+	  yMax:			1287
+
+	EndPoints
+	---------
+	  0:  55
+
+	  Length of Instructions:	134
+	00000: NPUSHB      (36):   121    25     1    35    53    58    10    58    25    52 
+	                            39     4    20    32    16    48    44     8    29    59 
+	                             7    59    35     1    19    33    14    93    23    33 
+	                            12    47    33    42    93    37 
+	00038: PUSHW[1]            409 
+	00041: PUSHB[4]             51    33    40     9 
+	00046: PUSHW[3]            409    40   562 
+	00053: PUSHB[4]             12    16   252    32 
+	00058: PUSHW[4]            360    28     4   360 
+	00067: NPUSHB      (11):    44   252     8     0    59    36    36     0    28     1 
+	                            28 
+	00080: PUSHW[1]            596 
+	00083: PUSHB[4]             56   244   127    24 
+	00088: PUSHW[1]            296 
+	00091: SCANCTRL   
+	00092: CALL       
+	00093: SRP0       
+	00094: MIRP[srp0,nmd,rd,2] 
+	00095: DELTAP1    
+	00096: ALIGNRP    
+	00097: SRP0       
+	00098: MIRP[srp0,md,rd,1] 
+	00099: ALIGNRP    
+	00100: MIRP[nrp0,nmd,rd,0] 
+	00101: MIRP[nrp0,nmd,rd,0] 
+	00102: SRP0       
+	00103: MIRP[nrp0,nmd,rd,0] 
+	00104: MIRP[nrp0,nmd,rd,0] 
+	00105: SVTCA[y-axis] 
+	00106: MDAP[rd]   
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: MIRP[nrp0,md,rd,1] 
+	00109: SRP0       
+	00110: MIRP[nrp0,md,rd,1] 
+	00111: MIRP[nrp0,md,rd,1] 
+	00112: MIRP[srp0,nmd,rd,0] 
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: SRP0       
+	00115: MIRP[nrp0,md,rd,1] 
+	00116: MIRP[srp0,nmd,rd,0] 
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: MDAP[rd]   
+	00119: ALIGNRP    
+	00120: MIRP[nrp0,md,rd,1] 
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: SVTCA[x-axis] 
+	00123: SRP1       
+	00124: SRP2       
+	00125: IP         
+	00126: SRP1       
+	00127: SRP2       
+	00128: IP         
+	00129: IUP[y]     
+	00130: IUP[x]     
+	00131: SVTCA[x-axis] 
+	00132: DELTAP2    
+	00133: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short On
+	  9:        XDual                         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:        XDual                         On
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:        XDual         Y-Short X-Short On
+	 43:        XDual         Y-Short X-Short Off
+	 44:        XDual         Y-Short         On
+	 45:        XDual         Y-Short         Off
+	 46:                      Y-Short X-Short Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short Off
+	 49:  YDual               Y-Short X-Short On
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual                       X-Short On
+	 52:  YDual                       X-Short Off
+	 53:                      Y-Short X-Short On
+	 54:                      Y-Short X-Short Off
+	 55:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   658,   780)  ->  Abs (   658,   780)
+	  1: Rel (   200,     0)  ->  Abs (   858,   780)
+	  2: Rel (    30,     0)  ->  Abs (   888,   780)
+	  3: Rel (    26,   -24)  ->  Abs (   914,   756)
+	  4: Rel (     0,   -19)  ->  Abs (   914,   737)
+	  5: Rel (     0,   -18)  ->  Abs (   914,   719)
+	  6: Rel (   -26,   -24)  ->  Abs (   888,   695)
+	  7: Rel (   -30,     0)  ->  Abs (   858,   695)
+	  8: Rel (  -200,     0)  ->  Abs (   658,   695)
+	  9: Rel (     0,  -574)  ->  Abs (   658,   121)
+	 10: Rel (     0,  -131)  ->  Abs (   658,   -10)
+	 11: Rel (  -178,  -183)  ->  Abs (   480,  -193)
+	 12: Rel (  -125,     0)  ->  Abs (   355,  -193)
+	 13: Rel (   -68,     0)  ->  Abs (   287,  -193)
+	 14: Rel (   -66,    25)  ->  Abs (   221,  -168)
+	 15: Rel (   -44,    17)  ->  Abs (   177,  -151)
+	 16: Rel (     0,    30)  ->  Abs (   177,  -121)
+	 17: Rel (     0,    18)  ->  Abs (   177,  -103)
+	 18: Rel (    22,    23)  ->  Abs (   199,   -80)
+	 19: Rel (    16,     0)  ->  Abs (   215,   -80)
+	 20: Rel (    10,     0)  ->  Abs (   225,   -80)
+	 21: Rel (    21,    -7)  ->  Abs (   246,   -87)
+	 22: Rel (    63,   -22)  ->  Abs (   309,  -109)
+	 23: Rel (    51,     0)  ->  Abs (   360,  -109)
+	 24: Rel (    90,     0)  ->  Abs (   450,  -109)
+	 25: Rel (    53,    60)  ->  Abs (   503,   -49)
+	 26: Rel (    70,    77)  ->  Abs (   573,    28)
+	 27: Rel (     0,   106)  ->  Abs (   573,   134)
+	 28: Rel (     0,   561)  ->  Abs (   573,   695)
+	 29: Rel (  -200,     0)  ->  Abs (   373,   695)
+	 30: Rel (   -30,     0)  ->  Abs (   343,   695)
+	 31: Rel (   -26,    24)  ->  Abs (   317,   719)
+	 32: Rel (     0,    19)  ->  Abs (   317,   738)
+	 33: Rel (     0,    18)  ->  Abs (   317,   756)
+	 34: Rel (    26,    24)  ->  Abs (   343,   780)
+	 35: Rel (    30,     0)  ->  Abs (   373,   780)
+	 36: Rel (   200,     0)  ->  Abs (   573,   780)
+	 37: Rel (     0,   180)  ->  Abs (   573,   960)
+	 38: Rel (     0,   139)  ->  Abs (   573,  1099)
+	 39: Rel (   183,   188)  ->  Abs (   756,  1287)
+	 40: Rel (   128,     0)  ->  Abs (   884,  1287)
+	 41: Rel (    74,     0)  ->  Abs (   958,  1287)
+	 42: Rel (    64,   -24)  ->  Abs (  1022,  1263)
+	 43: Rel (    40,   -15)  ->  Abs (  1062,  1248)
+	 44: Rel (     0,   -29)  ->  Abs (  1062,  1219)
+	 45: Rel (     0,   -18)  ->  Abs (  1062,  1201)
+	 46: Rel (   -24,   -23)  ->  Abs (  1038,  1178)
+	 47: Rel (   -17,     0)  ->  Abs (  1021,  1178)
+	 48: Rel (    -6,     0)  ->  Abs (  1015,  1178)
+	 49: Rel (   -33,    10)  ->  Abs (   982,  1188)
+	 50: Rel (   -45,    15)  ->  Abs (   937,  1203)
+	 51: Rel (   -45,     0)  ->  Abs (   892,  1203)
+	 52: Rel (  -105,     0)  ->  Abs (   787,  1203)
+	 53: Rel (   -55,   -59)  ->  Abs (   732,  1144)
+	 54: Rel (   -74,   -80)  ->  Abs (   658,  1064)
+	 55: Rel (     0,  -104)  ->  Abs (   658,   960)
+
+	Glyph 167: off = 0x0000C87A, len = 482
+	  numberOfContours:	2
+	  xMin:			187
+	  yMin:			263
+	  xMax:			1043
+	  yMax:			904
+
+	EndPoints
+	---------
+	  0:  37
+	  1:  75
+
+	  Length of Instructions:	265
+	00000: NPUSHB     (147):    36     9    42    30    35    47    42    68     4    89 
+	                            67   106    54   152    54   185    74     4    89    29 
+	                           106    16   152    16   185    36     4     8    25     8 
+	                            63    24    25    24    63   205     3   204     8   202 
+	                             9   202    10   206    25   206    35   205    41   207 
+	                            46   202    47   202    48   206    63   207    73   220 
+	                             3   223     8   220     9   218    10   218    25   222 
+	                            35   220    41   220    46   217    47   217    48   220 
+	                            63   222    73    28    48    46    67    69     4    41 
+	                            60    10     8    29    31     4     3    22    67    65 
+	                            50    46    44    48    69    50    71    29    27    12 
+	                             8     6    10    31    12    33    31    29    29    91 
+	                            10     8    20    10    10     8    69    67    67    91 
+	                            48    46    20    48    48    46    39   210    71    91 
+	                            44   174    57   210    50    91    65 
+	00149: PUSHW[1]            267 
+	00152: NPUSHB      (33):     6     0   210    33    91     6   174    19   210    12 
+	                            91    27    41     3    60    22   111     3     1    15 
+	                             3   111     3     2     3    26    77    22    25    76 
+	                            99   171    24 
+	00187: CALL       
+	00188: FLIPOFF    
+	00189: SRP0       
+	00190: MIRP[nrp0,nmd,rd,0] 
+	00191: SRP0       
+	00192: MIRP[nrp0,nmd,rd,2] 
+	00193: DELTAP1    
+	00194: DELTAP2    
+	00195: SRP0       
+	00196: ALIGNRP    
+	00197: SRP0       
+	00198: ALIGNRP    
+	00199: SVTCA[y-axis] 
+	00200: MDAP[rd]   
+	00201: FLIPON     
+	00202: MIRP[srp0,md,rd,1] 
+	00203: MIRP[srp0,nmd,rd,0] 
+	00204: MIRP[srp0,nmd,rd,0] 
+	00205: MIRP[srp0,md,rd,1] 
+	00206: MIRP[nrp0,nmd,rd,0] 
+	00207: SRP0       
+	00208: MIRP[srp0,nmd,rd,2] 
+	00209: MIRP[srp0,md,rd,1] 
+	00210: MIRP[srp0,nmd,rd,0] 
+	00211: MIRP[srp0,nmd,rd,0] 
+	00212: MIRP[srp0,md,rd,1] 
+	00213: MIRP[nrp0,nmd,rd,0] 
+	00214: SDPVTL[1]  
+	00215: SFVTPV     
+	00216: MDAP[nrd]  
+	00217: CALL       
+	00218: RDTG       
+	00219: SRP0       
+	00220: MDRP[nrp0,nmd,rd,0] 
+	00221: SDPVTL[1]  
+	00222: SFVTPV     
+	00223: MDAP[nrd]  
+	00224: RTG        
+	00225: CALL       
+	00226: RDTG       
+	00227: SRP0       
+	00228: MDRP[nrp0,nmd,rd,0] 
+	00229: SVTCA[y-axis] 
+	00230: SRP1       
+	00231: SRP2       
+	00232: IP         
+	00233: IP         
+	00234: SRP2       
+	00235: IP         
+	00236: SRP1       
+	00237: SRP2       
+	00238: IP         
+	00239: SRP1       
+	00240: SRP2       
+	00241: IP         
+	00242: IP         
+	00243: SRP2       
+	00244: IP         
+	00245: SRP1       
+	00246: SRP2       
+	00247: IP         
+	00248: SVTCA[x-axis] 
+	00249: SRP1       
+	00250: SRP2       
+	00251: SLOOP      
+	00252: IP         
+	00253: SRP1       
+	00254: SRP2       
+	00255: SLOOP      
+	00256: IP         
+	00257: IUP[y]     
+	00258: IUP[x]     
+	00259: SVTCA[x-axis] 
+	00260: DELTAP1    
+	00261: DELTAP2    
+	00262: DELTAP2    
+	00263: SVTCA[y-axis] 
+	00264: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short X-Short On
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:        XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:        XDual         Y-Short         Off
+	 43:                      Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short Off
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual               Y-Short X-Short On
+	 48:  YDual               Y-Short X-Short Off
+	 49:  YDual               Y-Short X-Short Off
+	 50:  YDual                       X-Short On
+	 51:  YDual                       X-Short Off
+	 52:                      Y-Short X-Short On
+	 53:                      Y-Short X-Short Off
+	 54:                      Y-Short X-Short On
+	 55:                      Y-Short X-Short Off
+	 56:                      Y-Short X-Short Off
+	 57:  YDual                       X-Short On
+	 58:  YDual                       X-Short Off
+	 59:  YDual               Y-Short X-Short Off
+	 60:  YDual XDual         Y-Short         On
+	 61:  YDual XDual         Y-Short         Off
+	 62:  YDual XDual         Y-Short X-Short On
+	 63:  YDual XDual         Y-Short X-Short Off
+	 64:  YDual XDual         Y-Short X-Short Off
+	 65:  YDual XDual                 X-Short On
+	 66:  YDual XDual                 X-Short Off
+	 67:        XDual         Y-Short X-Short Off
+	 68:        XDual         Y-Short X-Short On
+	 69:        XDual         Y-Short X-Short Off
+	 70:        XDual         Y-Short X-Short Off
+	 71:  YDual XDual                 X-Short On
+	 72:  YDual XDual                 X-Short Off
+	 73:  YDual XDual         Y-Short X-Short On
+	 74:  YDual XDual         Y-Short X-Short Off
+	 75:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1003,   837)  ->  Abs (  1003,   837)
+	  1: Rel (    16,     0)  ->  Abs (  1019,   837)
+	  2: Rel (    24,   -24)  ->  Abs (  1043,   813)
+	  3: Rel (     0,   -16)  ->  Abs (  1043,   797)
+	  4: Rel (     0,   -35)  ->  Abs (  1043,   762)
+	  5: Rel (  -174,  -161)  ->  Abs (   869,   601)
+	  6: Rel (   -73,     0)  ->  Abs (   796,   601)
+	  7: Rel (   -45,     0)  ->  Abs (   751,   601)
+	  8: Rel (   -92,    51)  ->  Abs (   659,   652)
+	  9: Rel (   -85,    80)  ->  Abs (   574,   732)
+	 10: Rel (   -57,    54)  ->  Abs (   517,   786)
+	 11: Rel (   -59,    34)  ->  Abs (   458,   820)
+	 12: Rel (   -24,     0)  ->  Abs (   434,   820)
+	 13: Rel (   -29,     0)  ->  Abs (   405,   820)
+	 14: Rel (   -26,   -16)  ->  Abs (   379,   804)
+	 15: Rel (   -35,   -20)  ->  Abs (   344,   784)
+	 16: Rel (   -61,   -71)  ->  Abs (   283,   713)
+	 17: Rel (   -29,   -33)  ->  Abs (   254,   680)
+	 18: Rel (   -17,   -11)  ->  Abs (   237,   669)
+	 19: Rel (   -10,     0)  ->  Abs (   227,   669)
+	 20: Rel (   -17,     0)  ->  Abs (   210,   669)
+	 21: Rel (   -23,    24)  ->  Abs (   187,   693)
+	 22: Rel (     0,    17)  ->  Abs (   187,   710)
+	 23: Rel (     0,    16)  ->  Abs (   187,   726)
+	 24: Rel (    26,    33)  ->  Abs (   213,   759)
+	 25: Rel (    66,    82)  ->  Abs (   279,   841)
+	 26: Rel (   104,    63)  ->  Abs (   383,   904)
+	 27: Rel (    49,     0)  ->  Abs (   432,   904)
+	 28: Rel (    41,     0)  ->  Abs (   473,   904)
+	 29: Rel (    80,   -39)  ->  Abs (   553,   865)
+	 30: Rel (    63,   -57)  ->  Abs (   616,   808)
+	 31: Rel (   101,   -93)  ->  Abs (   717,   715)
+	 32: Rel (    49,   -29)  ->  Abs (   766,   686)
+	 33: Rel (    24,     0)  ->  Abs (   790,   686)
+	 34: Rel (    71,     0)  ->  Abs (   861,   686)
+	 35: Rel (    80,   102)  ->  Abs (   941,   788)
+	 36: Rel (    29,    37)  ->  Abs (   970,   825)
+	 37: Rel (    20,    12)  ->  Abs (   990,   837)
+	 38: Rel (    13,  -338)  ->  Abs (  1003,   499)
+	 39: Rel (    16,     0)  ->  Abs (  1019,   499)
+	 40: Rel (    24,   -24)  ->  Abs (  1043,   475)
+	 41: Rel (     0,   -16)  ->  Abs (  1043,   459)
+	 42: Rel (     0,   -35)  ->  Abs (  1043,   424)
+	 43: Rel (  -174,  -161)  ->  Abs (   869,   263)
+	 44: Rel (   -73,     0)  ->  Abs (   796,   263)
+	 45: Rel (   -45,     0)  ->  Abs (   751,   263)
+	 46: Rel (   -92,    51)  ->  Abs (   659,   314)
+	 47: Rel (   -85,    80)  ->  Abs (   574,   394)
+	 48: Rel (   -57,    54)  ->  Abs (   517,   448)
+	 49: Rel (   -59,    34)  ->  Abs (   458,   482)
+	 50: Rel (   -24,     0)  ->  Abs (   434,   482)
+	 51: Rel (   -29,     0)  ->  Abs (   405,   482)
+	 52: Rel (   -26,   -16)  ->  Abs (   379,   466)
+	 53: Rel (   -35,   -20)  ->  Abs (   344,   446)
+	 54: Rel (   -61,   -71)  ->  Abs (   283,   375)
+	 55: Rel (   -29,   -33)  ->  Abs (   254,   342)
+	 56: Rel (   -17,   -10)  ->  Abs (   237,   332)
+	 57: Rel (   -10,     0)  ->  Abs (   227,   332)
+	 58: Rel (   -17,     0)  ->  Abs (   210,   332)
+	 59: Rel (   -23,    23)  ->  Abs (   187,   355)
+	 60: Rel (     0,    17)  ->  Abs (   187,   372)
+	 61: Rel (     0,    16)  ->  Abs (   187,   388)
+	 62: Rel (    26,    33)  ->  Abs (   213,   421)
+	 63: Rel (    66,    82)  ->  Abs (   279,   503)
+	 64: Rel (   104,    63)  ->  Abs (   383,   566)
+	 65: Rel (    49,     0)  ->  Abs (   432,   566)
+	 66: Rel (    41,     0)  ->  Abs (   473,   566)
+	 67: Rel (    80,   -39)  ->  Abs (   553,   527)
+	 68: Rel (    63,   -57)  ->  Abs (   616,   470)
+	 69: Rel (   101,   -93)  ->  Abs (   717,   377)
+	 70: Rel (    49,   -29)  ->  Abs (   766,   348)
+	 71: Rel (    24,     0)  ->  Abs (   790,   348)
+	 72: Rel (    71,     0)  ->  Abs (   861,   348)
+	 73: Rel (    80,   102)  ->  Abs (   941,   450)
+	 74: Rel (    29,    37)  ->  Abs (   970,   487)
+	 75: Rel (    20,    12)  ->  Abs (   990,   499)
+
+	Glyph 168: off = 0x0000CA5C, len = 160
+	  numberOfContours:	2
+	  xMin:			83
+	  yMin:			0
+	  xMax:			1137
+	  yMax:			1153
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	116
+	00000: NPUSHB      (43):     7     3     1     1     0     0    48     4     7    20 
+	                             4     4     7     2     3     3    48     5     6    20 
+	                             5     5     6     7     6    77     1     2     5     4 
+	                            48     3     0     3   167     2    77     0     5     1 
+	                             5   248     6 
+	00045: PUSHW[1]            271 
+	00048: NPUSHB      (11):     7     0   220     1    77     4   248    15     7     1 
+	                             7 
+	00061: PUSHW[1]            770 
+	00064: PUSHB[7]              8     2     0    10   176   123    24 
+	00072: CALL       
+	00073: SVTCA[y-axis] 
+	00074: MIAP[rd+ci] 
+	00075: MDAP[rd]   
+	00076: SVTCA[x-axis] 
+	00077: SRP0       
+	00078: MIRP[srp0,nmd,rd,0] 
+	00079: DELTAP1    
+	00080: MIRP[nrp0,nmd,rd,0] 
+	00081: MIRP[srp0,md,rd,1] 
+	00082: MIRP[nrp0,nmd,rd,0] 
+	00083: SRP0       
+	00084: MIRP[srp0,nmd,rd,2] 
+	00085: MIRP[nrp0,nmd,rd,0] 
+	00086: DELTAP1    
+	00087: MIRP[srp0,md,rd,1] 
+	00088: MIRP[nrp0,nmd,rd,0] 
+	00089: SVTCA[y-axis] 
+	00090: SRP0       
+	00091: ALIGNRP    
+	00092: MIRP[srp0,md,rd,1] 
+	00093: ALIGNRP    
+	00094: SRP0       
+	00095: ALIGNRP    
+	00096: MIRP[srp0,md,rd,1] 
+	00097: ALIGNRP    
+	00098: SFVTCA[x-axis] 
+	00099: SDPVTL[1]  
+	00100: MDAP[nrd]  
+	00101: CALL       
+	00102: RDTG       
+	00103: SRP0       
+	00104: MDRP[nrp0,nmd,rd,0] 
+	00105: SDPVTL[1]  
+	00106: MDAP[nrd]  
+	00107: RTG        
+	00108: CALL       
+	00109: RDTG       
+	00110: SRP0       
+	00111: MDRP[nrp0,nmd,rd,0] 
+	00112: IUP[y]     
+	00113: IUP[x]     
+	00114: SVTCA[x-axis] 
+	00115: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:                                      On
+	  2:  YDual XDual                 X-Short On
+	  3:                                      On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:                                      On
+	  7:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    83,     0)  ->  Abs (    83,     0)
+	  1: Rel (   444,  1153)  ->  Abs (   527,  1153)
+	  2: Rel (   154,     0)  ->  Abs (   681,  1153)
+	  3: Rel (   456, -1153)  ->  Abs (  1137,     0)
+	  4: Rel (  -950,    71)  ->  Abs (   187,    71)
+	  5: Rel (   844,     0)  ->  Abs (  1031,    71)
+	  6: Rel (  -398,  1026)  ->  Abs (   633,  1097)
+	  7: Rel (   -58,     0)  ->  Abs (   575,  1097)
+
+	Glyph 169: off = 0x0000CAFC, len = 372
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			1
+	  xMax:			1003
+	  yMax:			868
+
+	EndPoints
+	---------
+	  0:  17
+	  1:  35
+
+	  Length of Instructions:	250
+	00000: NPUSHB     (106):    26    64    39    53    28    64    39    53    10    64 
+	                            39    53     8    64    39    53    26    64    44    53 
+	                            28    64    44    53    10    64    44    53     8    64 
+	                            44    53    28    64    34    36    52    26    64    34 
+	                            36    52    10    64    34    36    52     8    64    34 
+	                            36    52    80     8    80    10    80    26    80    28 
+	                             4    79     8    64    10    79    26    64    28     4 
+	                            33    28    35    15    10    17    23    26    19     5 
+	                             8     1    28    77    35   220    18    26    77    19 
+	                           220    18    10    77    17   220     0     8    77     1 
+	                           220     0     0    28     1    28 
+	00108: PUSHW[3]            346    35   697 
+	00115: PUSHB[5]             27     0    26     1    26 
+	00121: PUSHW[3]            346    19   697 
+	00128: PUSHB[6]             27   171    15    18     1    18 
+	00135: NPUSHW      (11):   495     9    10   346    17   697     9     8   346     1 
+	                           697 
+	00159: NPUSHB       (9):     0     9     1     9   171     0    25    36    79 
+	00170: PUSHW[2]            288    24 
+	00175: CALL       
+	00176: FLIPOFF    
+	00177: SRP0       
+	00178: MIRP[srp0,md,rd,0] 
+	00179: FLIPON     
+	00180: MIRP[srp0,md,rd,1] 
+	00181: DELTAP1    
+	00182: MIRP[srp0,nmd,rd,2] 
+	00183: MIRP[nrp0,md,rd,1] 
+	00184: SRP0       
+	00185: MIRP[srp0,nmd,rd,2] 
+	00186: MIRP[nrp0,md,rd,1] 
+	00187: SRP0       
+	00188: MIRP[srp0,md,rd,2] 
+	00189: DELTAP1    
+	00190: MIRP[srp0,md,rd,1] 
+	00191: MIRP[srp0,nmd,rd,2] 
+	00192: MIRP[nrp0,md,rd,1] 
+	00193: DELTAP1    
+	00194: SRP0       
+	00195: MIRP[srp0,nmd,rd,2] 
+	00196: MIRP[nrp0,md,rd,1] 
+	00197: DELTAP1    
+	00198: SVTCA[y-axis] 
+	00199: RTHG       
+	00200: MDAP[rd]   
+	00201: MIRP[srp0,nmd,rd,0] 
+	00202: RTG        
+	00203: MIRP[nrp0,md,rd,1] 
+	00204: RTHG       
+	00205: SRP0       
+	00206: MIRP[srp0,nmd,rd,0] 
+	00207: RTG        
+	00208: MIRP[nrp0,md,rd,1] 
+	00209: RTHG       
+	00210: MDAP[rd]   
+	00211: MIRP[srp0,nmd,rd,0] 
+	00212: RTG        
+	00213: MIRP[nrp0,md,rd,1] 
+	00214: RTHG       
+	00215: SRP0       
+	00216: MIRP[srp0,nmd,rd,0] 
+	00217: RTG        
+	00218: MIRP[nrp0,md,rd,1] 
+	00219: SVTCA[x-axis] 
+	00220: SRP1       
+	00221: SRP2       
+	00222: IP         
+	00223: SRP1       
+	00224: SRP2       
+	00225: IP         
+	00226: SRP1       
+	00227: SRP2       
+	00228: IP         
+	00229: SRP1       
+	00230: SRP2       
+	00231: IP         
+	00232: IUP[y]     
+	00233: IUP[x]     
+	00234: SVTCA[y-axis] 
+	00235: DELTAP1    
+	00236: SVTCA[x-axis] 
+	00237: DELTAP1    
+	00238: CALL       
+	00239: CALL       
+	00240: CALL       
+	00241: CALL       
+	00242: CALL       
+	00243: CALL       
+	00244: CALL       
+	00245: CALL       
+	00246: CALL       
+	00247: CALL       
+	00248: CALL       
+	00249: CALL       
+
+	Flags
+	-----
+	  0:        XDual                         On
+	  1:                                      On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short On
+	  9:                                      On
+	 10:                                      On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:        XDual                 X-Short On
+	 19:                                      On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short On
+	 27:                                      On
+	 28:                                      On
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (     0,   434)  ->  Abs (     0,   434)
+	  1: Rel (   448,   410)  ->  Abs (   448,   844)
+	  2: Rel (    26,    24)  ->  Abs (   474,   868)
+	  3: Rel (    18,     0)  ->  Abs (   492,   868)
+	  4: Rel (    18,     0)  ->  Abs (   510,   868)
+	  5: Rel (    24,   -24)  ->  Abs (   534,   844)
+	  6: Rel (     0,   -19)  ->  Abs (   534,   825)
+	  7: Rel (     0,   -16)  ->  Abs (   534,   809)
+	  8: Rel (   -23,   -25)  ->  Abs (   511,   784)
+	  9: Rel (  -313,  -350)  ->  Abs (   198,   434)
+	 10: Rel (   313,  -349)  ->  Abs (   511,    85)
+	 11: Rel (    23,   -25)  ->  Abs (   534,    60)
+	 12: Rel (     0,   -17)  ->  Abs (   534,    43)
+	 13: Rel (     0,   -18)  ->  Abs (   534,    25)
+	 14: Rel (   -24,   -24)  ->  Abs (   510,     1)
+	 15: Rel (   -18,     0)  ->  Abs (   492,     1)
+	 16: Rel (   -18,     0)  ->  Abs (   474,     1)
+	 17: Rel (   -26,    23)  ->  Abs (   448,    24)
+	 18: Rel (    21,   410)  ->  Abs (   469,   434)
+	 19: Rel (   448,   410)  ->  Abs (   917,   844)
+	 20: Rel (    26,    24)  ->  Abs (   943,   868)
+	 21: Rel (    18,     0)  ->  Abs (   961,   868)
+	 22: Rel (    18,     0)  ->  Abs (   979,   868)
+	 23: Rel (    24,   -24)  ->  Abs (  1003,   844)
+	 24: Rel (     0,   -19)  ->  Abs (  1003,   825)
+	 25: Rel (     0,   -16)  ->  Abs (  1003,   809)
+	 26: Rel (   -22,   -25)  ->  Abs (   981,   784)
+	 27: Rel (  -313,  -350)  ->  Abs (   668,   434)
+	 28: Rel (   313,  -349)  ->  Abs (   981,    85)
+	 29: Rel (    22,   -25)  ->  Abs (  1003,    60)
+	 30: Rel (     0,   -17)  ->  Abs (  1003,    43)
+	 31: Rel (     0,   -18)  ->  Abs (  1003,    25)
+	 32: Rel (   -24,   -24)  ->  Abs (   979,     1)
+	 33: Rel (   -18,     0)  ->  Abs (   961,     1)
+	 34: Rel (   -18,     0)  ->  Abs (   943,     1)
+	 35: Rel (   -26,    23)  ->  Abs (   917,    24)
+
+	Glyph 170: off = 0x0000CC70, len = 322
+	  numberOfContours:	2
+	  xMin:			127
+	  yMin:			1
+	  xMax:			1130
+	  yMax:			868
+
+	EndPoints
+	---------
+	  0:  17
+	  1:  35
+
+	  Length of Instructions:	198
+	00000: NPUSHB      (90):    73     8    70    10    73    26    70    28     4    94 
+	                             8    95    10    94    26    95    28   132     6   132 
+	                            12   130    24   130    30     8    64     6    65     8 
+	                            65    10    66    12    64    24    65    26    65    28 
+	                            66    30   209     0   211     9   214    10   209    18 
+	                           211    26   211    27   214    28    15    33    35    28 
+	                            23    19    26    13    17    10     5     1     8    26 
+	                            77    19   220    18    28    77    35   220    18    10 
+	                            77    17   220     0     8    77     1   220     0     1 
+	00092: PUSHW[1]            346 
+	00095: PUSHB[4]              8   255     0    17 
+	00100: PUSHW[1]            346 
+	00103: PUSHB[5]             10   255     9   171     0 
+	00109: PUSHW[4]            495    27    19   346 
+	00118: PUSHB[4]             26   255    18    35 
+	00123: PUSHW[1]            346 
+	00126: NPUSHB      (10):    28   255    27   171    18    26    37   134   123    24 
+	00138: CALL       
+	00139: FLIPOFF    
+	00140: SRP0       
+	00141: MIRP[srp0,nmd,rd,2] 
+	00142: FLIPON     
+	00143: MIRP[nrp0,md,rd,1] 
+	00144: MIRP[srp0,md,rd,1] 
+	00145: MIRP[nrp0,md,rd,1] 
+	00146: SRP0       
+	00147: MIRP[srp0,md,rd,1] 
+	00148: MIRP[nrp0,md,rd,1] 
+	00149: SRP0       
+	00150: MIRP[srp0,nmd,rd,2] 
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: MIRP[srp0,md,rd,1] 
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: SRP0       
+	00155: MIRP[srp0,md,rd,1] 
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: SVTCA[y-axis] 
+	00158: RTHG       
+	00159: MDAP[rd]   
+	00160: MIRP[srp0,nmd,rd,0] 
+	00161: RTG        
+	00162: MIRP[nrp0,md,rd,1] 
+	00163: RTHG       
+	00164: SRP0       
+	00165: MIRP[srp0,nmd,rd,0] 
+	00166: RTG        
+	00167: MIRP[nrp0,md,rd,1] 
+	00168: RTHG       
+	00169: MDAP[rd]   
+	00170: MIRP[srp0,nmd,rd,0] 
+	00171: RTG        
+	00172: MIRP[nrp0,md,rd,1] 
+	00173: RTHG       
+	00174: SRP0       
+	00175: MIRP[srp0,nmd,rd,0] 
+	00176: RTG        
+	00177: MIRP[nrp0,md,rd,1] 
+	00178: SVTCA[x-axis] 
+	00179: SRP1       
+	00180: SRP2       
+	00181: IP         
+	00182: SRP1       
+	00183: SRP2       
+	00184: IP         
+	00185: SRP1       
+	00186: SRP2       
+	00187: IP         
+	00188: SRP1       
+	00189: SRP2       
+	00190: IP         
+	00191: IUP[y]     
+	00192: IUP[x]     
+	00193: SVTCA[x-axis] 
+	00194: DELTAP2    
+	00195: DELTAP1    
+	00196: SVTCA[y-axis] 
+	00197: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:                                      On
+	 10:                                      On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short On
+	 18:                                      On
+	 19:                                      On
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:                                      On
+	 28:                                      On
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   661,   434)  ->  Abs (   661,   434)
+	  1: Rel (  -449,  -410)  ->  Abs (   212,    24)
+	  2: Rel (   -25,   -23)  ->  Abs (   187,     1)
+	  3: Rel (   -18,     0)  ->  Abs (   169,     1)
+	  4: Rel (   -18,     0)  ->  Abs (   151,     1)
+	  5: Rel (   -24,    24)  ->  Abs (   127,    25)
+	  6: Rel (     0,    18)  ->  Abs (   127,    43)
+	  7: Rel (     0,    17)  ->  Abs (   127,    60)
+	  8: Rel (    22,    25)  ->  Abs (   149,    85)
+	  9: Rel (   313,   349)  ->  Abs (   462,   434)
+	 10: Rel (  -313,   350)  ->  Abs (   149,   784)
+	 11: Rel (   -22,    25)  ->  Abs (   127,   809)
+	 12: Rel (     0,    17)  ->  Abs (   127,   826)
+	 13: Rel (     0,    18)  ->  Abs (   127,   844)
+	 14: Rel (    24,    24)  ->  Abs (   151,   868)
+	 15: Rel (    18,     0)  ->  Abs (   169,   868)
+	 16: Rel (    18,     0)  ->  Abs (   187,   868)
+	 17: Rel (    25,   -24)  ->  Abs (   212,   844)
+	 18: Rel (   918,  -410)  ->  Abs (  1130,   434)
+	 19: Rel (  -448,  -410)  ->  Abs (   682,    24)
+	 20: Rel (   -26,   -23)  ->  Abs (   656,     1)
+	 21: Rel (   -18,     0)  ->  Abs (   638,     1)
+	 22: Rel (   -18,     0)  ->  Abs (   620,     1)
+	 23: Rel (   -24,    24)  ->  Abs (   596,    25)
+	 24: Rel (     0,    18)  ->  Abs (   596,    43)
+	 25: Rel (     0,    17)  ->  Abs (   596,    60)
+	 26: Rel (    22,    25)  ->  Abs (   618,    85)
+	 27: Rel (   313,   349)  ->  Abs (   931,   434)
+	 28: Rel (  -313,   350)  ->  Abs (   618,   784)
+	 29: Rel (   -22,    25)  ->  Abs (   596,   809)
+	 30: Rel (     0,    17)  ->  Abs (   596,   826)
+	 31: Rel (     0,    18)  ->  Abs (   596,   844)
+	 32: Rel (    24,    24)  ->  Abs (   620,   868)
+	 33: Rel (    18,     0)  ->  Abs (   638,   868)
+	 34: Rel (    18,     0)  ->  Abs (   656,   868)
+	 35: Rel (    26,   -24)  ->  Abs (   682,   844)
+
+	Glyph 171: off = 0x0000CDB2, len = 212
+	  numberOfContours:	3
+	  xMin:			101
+	  yMin:			-30
+	  xMax:			1128
+	  yMax:			175
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+	  2:  35
+
+	  Length of Instructions:	103
+	00000: NPUSHB      (73):     9   138     3    21   138    15    33   138    27    27 
+	                            15    15     3    11    24   138    32    30     1    48 
+	                            30    64    30    80    30   128    30   160    30   208 
+	                            30     6    30   220    12   138    32    18     1    48 
+	                            18    64    18    80    18   128    18   160    18   208 
+	                            18     6    18   220     0   138    47     6    63     6 
+	                            79     6   128     6   160     6     5     6    25    36 
+	                            79   123    24 
+	00075: CALL       
+	00076: FLIPOFF    
+	00077: SRP0       
+	00078: MIRP[srp0,nmd,rd,0] 
+	00079: DELTAP1    
+	00080: FLIPON     
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: MIRP[srp0,nmd,rd,0] 
+	00083: DELTAP1    
+	00084: DELTAP2    
+	00085: MIRP[nrp0,md,rd,1] 
+	00086: MIRP[srp0,nmd,rd,0] 
+	00087: DELTAP1    
+	00088: DELTAP2    
+	00089: MIRP[nrp0,md,rd,1] 
+	00090: SVTCA[y-axis] 
+	00091: MIAP[rd+ci] 
+	00092: ALIGNRP    
+	00093: SRP0       
+	00094: ALIGNRP    
+	00095: SRP0       
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: SRP0       
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: SRP0       
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: IUP[y]     
+	00102: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:                      Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:                      Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   306,    73)  ->  Abs (   306,    73)
+	  1: Rel (     0,   -43)  ->  Abs (   306,    30)
+	  2: Rel (   -60,   -60)  ->  Abs (   246,   -30)
+	  3: Rel (   -42,     0)  ->  Abs (   204,   -30)
+	  4: Rel (   -43,     0)  ->  Abs (   161,   -30)
+	  5: Rel (   -60,    60)  ->  Abs (   101,    30)
+	  6: Rel (     0,    43)  ->  Abs (   101,    73)
+	  7: Rel (     0,    42)  ->  Abs (   101,   115)
+	  8: Rel (    60,    60)  ->  Abs (   161,   175)
+	  9: Rel (    43,     0)  ->  Abs (   204,   175)
+	 10: Rel (    42,     0)  ->  Abs (   246,   175)
+	 11: Rel (    60,   -60)  ->  Abs (   306,   115)
+	 12: Rel (   410,   -42)  ->  Abs (   716,    73)
+	 13: Rel (     0,   -43)  ->  Abs (   716,    30)
+	 14: Rel (   -60,   -60)  ->  Abs (   656,   -30)
+	 15: Rel (   -43,     0)  ->  Abs (   613,   -30)
+	 16: Rel (   -42,     0)  ->  Abs (   571,   -30)
+	 17: Rel (   -60,    60)  ->  Abs (   511,    30)
+	 18: Rel (     0,    43)  ->  Abs (   511,    73)
+	 19: Rel (     0,    42)  ->  Abs (   511,   115)
+	 20: Rel (    60,    60)  ->  Abs (   571,   175)
+	 21: Rel (    42,     0)  ->  Abs (   613,   175)
+	 22: Rel (    43,     0)  ->  Abs (   656,   175)
+	 23: Rel (    60,   -60)  ->  Abs (   716,   115)
+	 24: Rel (   412,   -42)  ->  Abs (  1128,    73)
+	 25: Rel (     0,   -43)  ->  Abs (  1128,    30)
+	 26: Rel (   -60,   -60)  ->  Abs (  1068,   -30)
+	 27: Rel (   -43,     0)  ->  Abs (  1025,   -30)
+	 28: Rel (   -42,     0)  ->  Abs (   983,   -30)
+	 29: Rel (   -60,    60)  ->  Abs (   923,    30)
+	 30: Rel (     0,    43)  ->  Abs (   923,    73)
+	 31: Rel (     0,    42)  ->  Abs (   923,   115)
+	 32: Rel (    59,    60)  ->  Abs (   982,   175)
+	 33: Rel (    43,     0)  ->  Abs (  1025,   175)
+	 34: Rel (    43,     0)  ->  Abs (  1068,   175)
+	 35: Rel (    60,   -60)  ->  Abs (  1128,   115)
+
+	Glyph 172: off = 0x0000CE86, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1596
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	-73
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              2   112    59   160    59     2    59    26 
+	00009: PUSHW[1]           -313 
+	00012: PUSHB[5]             72    43     2     1    54 
+	00018: PUSHW[3]            651    41   300 
+	00025: SCANCTRL   
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: SHC[rp1,zp0] 
+
+	Glyph 173: off = 0x0000CEC0, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1475
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	-92
+		Y WOffset:	268
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     2    31    67    47    67     2    95    67   111    67 
+	                             2    67    26 
+	00015: PUSHW[1]           -480 
+	00018: PUSHB[5]             72    43     2     1    56 
+	00024: PUSHW[3]            651    41   300 
+	00031: SCANCTRL   
+	00032: SVTCA[y-axis] 
+	00033: CALL       
+	00034: SVTCA[x-axis] 
+	00035: CALL       
+	00036: DELTAP1    
+	00037: DELTAP2    
+	00038: SHC[rp1,zp0] 
+
+	Glyph 174: off = 0x0000CF02, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-33
+	  xMax:			1024
+	  yMax:			1475
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	-90
+		Y WOffset:	268
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    46    29    10    10    64     2     1    35 
+	00012: PUSHW[2]            651    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 175: off = 0x0000CF32, len = 412
+	  numberOfContours:	2
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1212
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  48
+	  1:  59
+
+	  Length of Instructions:	241
+	00000: NPUSHB     (103):    52     8    29    23    15    26     1    26    86    30 
+	                            30    29    23    47    41    15    44    31    44     2 
+	                            44    41    48    48    29    41     3     9     6    53 
+	                             2     2    29     9    34    40     0    37    16    37 
+	                             2    37    41    33    33    29    40    33    38    48 
+	                            48    11    30    50    30    22    21     2    58    30 
+	                            10    11    41    38    48    40    38    48    33   233 
+	                            32    32    31     1    49    59    30     1     1     0 
+	                             0    60    61   207    23     1    23    65     9    26 
+	                            61    55    37    14    25    60    21     2    11     8 
+	                            69   108    24 
+	00105: CALL       
+	00106: SVTCA[y-axis] 
+	00107: MIAP[rd+ci] 
+	00108: MIAP[rd+ci] 
+	00109: SVTCA[x-axis] 
+	00110: FLIPOFF    
+	00111: SRP0       
+	00112: MIRP[srp0,nmd,rd,0] 
+	00113: FLIPON     
+	00114: MIRP[nrp0,md,rd,1] 
+	00115: FLIPOFF    
+	00116: SRP0       
+	00117: MIRP[srp0,nmd,rd,2] 
+	00118: FLIPON     
+	00119: MIRP[nrp0,nmd,rd,0] 
+	00120: DELTAP2    
+	00121: SRP1       
+	00122: SRP2       
+	00123: IP         
+	00124: MDAP[rd]   
+	00125: ALIGNRP    
+	00126: SRP0       
+	00127: MIRP[srp0,md,rd,1] 
+	00128: ALIGNRP    
+	00129: SRP0       
+	00130: ALIGNRP    
+	00131: ALIGNRP    
+	00132: SRP0       
+	00133: MIRP[srp0,md,rd,2] 
+	00134: ALIGNRP    
+	00135: MIRP[nrp0,md,rd,1] 
+	00136: SRP0       
+	00137: MIRP[nrp0,md,rd,1] 
+	00138: SVTCA[y-axis] 
+	00139: SRP0       
+	00140: ALIGNRP    
+	00141: MIRP[srp0,md,rd,1] 
+	00142: ALIGNRP    
+	00143: SRP0       
+	00144: ALIGNRP    
+	00145: MIRP[srp0,md,rd,1] 
+	00146: ALIGNRP    
+	00147: SRP2       
+	00148: IP         
+	00149: MDAP[rd]   
+	00150: MIRP[nrp0,md,rd,1] 
+	00151: SVTCA[x-axis] 
+	00152: SRP0       
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: SVTCA[y-axis] 
+	00155: SRP0       
+	00156: MIRP[srp0,nmd,rd,1] 
+	00157: DELTAP1    
+	00158: MDRP[srp0,nmd,rd,0] 
+	00159: ALIGNRP    
+	00160: SVTCA[x-axis] 
+	00161: SRP0       
+	00162: MIRP[nrp0,md,rd,1] 
+	00163: SVTCA[y-axis] 
+	00164: SRP0       
+	00165: MIRP[srp0,nmd,rd,1] 
+	00166: MDRP[srp0,nmd,rd,0] 
+	00167: ALIGNRP    
+	00168: SVTCA[x-axis] 
+	00169: SRP0       
+	00170: MIRP[nrp0,md,rd,1] 
+	00171: SVTCA[y-axis] 
+	00172: SRP0       
+	00173: MIRP[srp0,nmd,rd,1] 
+	00174: DELTAP1    
+	00175: MDRP[srp0,nmd,rd,0] 
+	00176: ALIGNRP    
+	00177: SVTCA[x-axis] 
+	00178: SRP0       
+	00179: MIRP[nrp0,md,rd,1] 
+	00180: SVTCA[y-axis] 
+	00181: SRP0       
+	00182: MIRP[srp0,nmd,rd,1] 
+	00183: DELTAP1    
+	00184: MDRP[srp0,nmd,rd,0] 
+	00185: ALIGNRP    
+	00186: IUP[y]     
+	00187: IUP[x]     
+	00188: RS         
+	00189: JROF       
+	00190: NPUSHB      (40):    51    57    12    20    53    54    52    54     2     6 
+	                            16    15    17    15    18    15    19    15     4     6 
+	                            51    20    55    46     0    57    12    55    46     0 
+	                            54    15    50    46     1    56    13    58    46     0 
+	00232: CALL       
+	00233: CALL       
+	00234: SVTCA[x-axis] 
+	00235: CALL       
+	00236: CALL       
+	00237: LOOPCALL   
+	00238: LOOPCALL   
+	00239: FLIPRGON   
+	00240: FLIPRGON   
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual                         On
+	 11:  YDual                               On
+	 12:  YDual                       X-Short Off
+	 13:                                      Off
+	 14:        XDual                         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual                               On
+	 23:        XDual                         On
+	 24:        XDual         Y-Short         Off
+	 25:                      Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual                               On
+	 32:        XDual                         On
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:                      Y-Short X-Short On
+	 42:        XDual         Y-Short         Off
+	 43:                      Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short Off
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         On
+	 49:                              X-Short On
+	 50:  YDual                       X-Short On
+	 51:  YDual                       X-Short Off
+	 52:              Rep-  2 Y-Short X-Short Off
+	 55:        XDual         Y-Short         On
+	 56:        XDual         Y-Short         Off
+	 57:        XDual                 X-Short Off
+	 58:  YDual XDual                 X-Short On
+	 59:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   698,   566)  ->  Abs (   698,   566)
+	  1: Rel (     0,  -482)  ->  Abs (   698,    84)
+	  2: Rel (   430,     0)  ->  Abs (  1128,    84)
+	  3: Rel (     0,   193)  ->  Abs (  1128,   277)
+	  4: Rel (     0,    30)  ->  Abs (  1128,   307)
+	  5: Rel (    23,    26)  ->  Abs (  1151,   333)
+	  6: Rel (    19,     0)  ->  Abs (  1170,   333)
+	  7: Rel (    19,     0)  ->  Abs (  1189,   333)
+	  8: Rel (    23,   -26)  ->  Abs (  1212,   307)
+	  9: Rel (     0,   -30)  ->  Abs (  1212,   277)
+	 10: Rel (     0,  -277)  ->  Abs (  1212,     0)
+	 11: Rel (  -669,     0)  ->  Abs (   543,     0)
+	 12: Rel (  -230,     0)  ->  Abs (   313,     0)
+	 13: Rel (  -296,   315)  ->  Abs (    17,   315)
+	 14: Rel (     0,   267)  ->  Abs (    17,   582)
+	 15: Rel (     0,   108)  ->  Abs (    17,   690)
+	 16: Rel (    56,   207)  ->  Abs (    73,   897)
+	 17: Rel (    88,   124)  ->  Abs (   161,  1021)
+	 18: Rel (    82,    60)  ->  Abs (   243,  1081)
+	 19: Rel (    62,    45)  ->  Abs (   305,  1126)
+	 20: Rel (   127,    44)  ->  Abs (   432,  1170)
+	 21: Rel (    95,     0)  ->  Abs (   527,  1170)
+	 22: Rel (   644,     0)  ->  Abs (  1171,  1170)
+	 23: Rel (     0,  -320)  ->  Abs (  1171,   850)
+	 24: Rel (     0,   -30)  ->  Abs (  1171,   820)
+	 25: Rel (   -24,   -26)  ->  Abs (  1147,   794)
+	 26: Rel (   -19,     0)  ->  Abs (  1128,   794)
+	 27: Rel (   -18,     0)  ->  Abs (  1110,   794)
+	 28: Rel (   -24,    26)  ->  Abs (  1086,   820)
+	 29: Rel (     0,    30)  ->  Abs (  1086,   850)
+	 30: Rel (     0,   236)  ->  Abs (  1086,  1086)
+	 31: Rel (  -388,     0)  ->  Abs (   698,  1086)
+	 32: Rel (     0,  -436)  ->  Abs (   698,   650)
+	 33: Rel (   163,     0)  ->  Abs (   861,   650)
+	 34: Rel (     0,    57)  ->  Abs (   861,   707)
+	 35: Rel (     0,    31)  ->  Abs (   861,   738)
+	 36: Rel (    24,    26)  ->  Abs (   885,   764)
+	 37: Rel (    18,     0)  ->  Abs (   903,   764)
+	 38: Rel (    19,     0)  ->  Abs (   922,   764)
+	 39: Rel (    24,   -26)  ->  Abs (   946,   738)
+	 40: Rel (     0,   -31)  ->  Abs (   946,   707)
+	 41: Rel (    -1,  -199)  ->  Abs (   945,   508)
+	 42: Rel (     0,   -30)  ->  Abs (   945,   478)
+	 43: Rel (   -23,   -26)  ->  Abs (   922,   452)
+	 44: Rel (   -19,     0)  ->  Abs (   903,   452)
+	 45: Rel (   -18,     0)  ->  Abs (   885,   452)
+	 46: Rel (   -24,    26)  ->  Abs (   861,   478)
+	 47: Rel (     0,    30)  ->  Abs (   861,   508)
+	 48: Rel (     0,    58)  ->  Abs (   861,   566)
+	 49: Rel (  -248,   520)  ->  Abs (   613,  1086)
+	 50: Rel (   -67,     0)  ->  Abs (   546,  1086)
+	 51: Rel (  -122,     0)  ->  Abs (   424,  1086)
+	 52: Rel (  -140,   -70)  ->  Abs (   284,  1016)
+	 53: Rel (  -119,  -126)  ->  Abs (   165,   890)
+	 54: Rel (   -64,  -191)  ->  Abs (   101,   699)
+	 55: Rel (     0,  -118)  ->  Abs (   101,   581)
+	 56: Rel (     0,  -233)  ->  Abs (   101,   348)
+	 57: Rel (   245,  -264)  ->  Abs (   346,    84)
+	 58: Rel (   200,     0)  ->  Abs (   546,    84)
+	 59: Rel (    67,     0)  ->  Abs (   613,    84)
+
+	Glyph 176: off = 0x0000D0CE, len = 616
+	  numberOfContours:	3
+	  xMin:			18
+	  yMin:			-33
+	  xMax:			1194
+	  yMax:			897
+
+	EndPoints
+	---------
+	  0:  40
+	  1:  52
+	  2:  61
+
+	  Length of Instructions:	434
+	00000: PUSHW[2]              2   -12 
+	00005: NPUSHB     (255):   111    23    96    26    96    32    96    45   101    46 
+	                           100    48    96    49   111    52   185    39   215    48 
+	                            10    30    54    27    55    42    54    42    55    54 
+	                             2    54     6    59    54   133     2   143    53   138 
+	                            54   140    55   150     2   145    14   156    53   156 
+	                            54   155    55   149    59   150    60   164     3   164 
+	                            28   170    42   164    43   164    45   164    48   175 
+	                            53   175    54   173    55   163    59   180     2   179 
+	                            15   181    28   178    48   187    53   190    54   181 
+	                            55   181    59   181    60    37   234    43   233    45 
+	                           230    49   228    51   249    43   251    45   245    49 
+	                             7     6    24    10    43    10    45     5    49     6 
+	                            51    15    59    22     6    26    43    26    45    19 
+	                            49    26    56    37     6    44    43    44    45    34 
+	                            49    46    55    50     6    61    55   133     7   134 
+	                            49   146     3   149     6   158    43   158    45   148 
+	                            49   148    51   156    56   165     6   169    15   172 
+	                            43   172    45   164    49   164    51   169    56   179 
+	                             3   176     6   180     7   181    26   188    43   188 
+	                            45   181    49   179    51   188    55   188    59    44 
+	                            41     8    22    36    41    61    60    53     9     6 
+	                             2     0     7    13     2    22     1    10    36    60 
+	                            57    61    10   197    19    53    61    32     0     1 
+	                             1    19    44    33    33    57    33    38    38    33 
+	                             5    33    19    50    33    25    25    19     1    59 
+	                            41    41    62   143    13 
+	00262: NPUSHB      (21):   175    13   191    13     3    13    26    63    47    33 
+	                           191    29     1    29    25    62    33     7    19    11 
+	                           152 
+	00285: PUSHW[3]            290    24   300 
+	00292: SCANCTRL   
+	00293: CALL       
+	00294: SVTCA[y-axis] 
+	00295: MIAP[rd+ci] 
+	00296: MIAP[rd+ci] 
+	00297: SVTCA[x-axis] 
+	00298: FLIPOFF    
+	00299: SRP0       
+	00300: MIRP[srp0,nmd,rd,0] 
+	00301: DELTAP1    
+	00302: FLIPON     
+	00303: MIRP[nrp0,md,rd,1] 
+	00304: FLIPOFF    
+	00305: SRP0       
+	00306: MIRP[nrp0,nmd,rd,2] 
+	00307: DELTAP1    
+	00308: SRP2       
+	00309: IP         
+	00310: MDAP[rd]   
+	00311: FLIPON     
+	00312: MIRP[nrp0,md,rd,1] 
+	00313: SVTCA[y-axis] 
+	00314: SRP0       
+	00315: ALIGNRP    
+	00316: SRP0       
+	00317: MIRP[nrp0,md,rd,1] 
+	00318: SRP0       
+	00319: MIRP[nrp0,md,rd,1] 
+	00320: SRP0       
+	00321: ALIGNRP    
+	00322: SRP0       
+	00323: MIRP[nrp0,md,rd,1] 
+	00324: SRP0       
+	00325: MIRP[nrp0,md,rd,1] 
+	00326: SRP2       
+	00327: IP         
+	00328: MDAP[rd]   
+	00329: ALIGNRP    
+	00330: MIRP[srp0,md,rd,1] 
+	00331: ALIGNRP    
+	00332: SRP0       
+	00333: MIRP[nrp0,md,rd,1] 
+	00334: SRP1       
+	00335: SRP2       
+	00336: IP         
+	00337: IP         
+	00338: SRP1       
+	00339: SRP2       
+	00340: IP         
+	00341: IP         
+	00342: SVTCA[x-axis] 
+	00343: SRP1       
+	00344: SLOOP      
+	00345: IP         
+	00346: SRP1       
+	00347: IP         
+	00348: IP         
+	00349: IUP[y]     
+	00350: IUP[x]     
+	00351: RS         
+	00352: JROF       
+	00353: NPUSHB      (28):    45    49    26    32    31    38    27    37    45    32 
+	                            47    35     0    49    26    47    35     0    46    30 
+	                            44    35     1    48    28    50    35     0 
+	00383: SVTCA[y-axis] 
+	00384: CALL       
+	00385: CALL       
+	00386: SVTCA[x-axis] 
+	00387: CALL       
+	00388: CALL       
+	00389: CALL       
+	00390: CALL       
+	00391: FLIPRGON   
+	00392: FLIPRGON   
+	00393: SVTCA[y-axis] 
+	00394: MPPEM      
+	00395: PUSHB[1]             12 
+	00397: GTEQ       
+	00398: MPPEM      
+	00399: PUSHB[1]             36 
+	00401: LTEQ       
+	00402: AND        
+	00403: IF         
+	00404: PUSHB[5]             46    16    20    16    37 
+	00410: PUSHW[3]            -16    52   -22 
+	00417: PUSHB[2]             42    22 
+	00420: SHPIX      
+	00421: SHPIX      
+	00422: SHPIX      
+	00423: SHPIX      
+	00424: SHPIX      
+	00425: EIF        
+	00426: SVTCA[y-axis] 
+	00427: DELTAP2    
+	00428: DELTAP1    
+	00429: SVTCA[x-axis] 
+	00430: DELTAP2    
+	00431: SVTCA[x-axis] 
+	00432: DELTAP1    
+	00433: SHPIX      
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual Rep-  2 Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short On
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:        XDual         Y-Short X-Short Off
+	 41:                      Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short Off
+	 46:                      Y-Short X-Short Off
+	 47:        XDual         Y-Short         On
+	 48:        XDual         Y-Short         Off
+	 49:        XDual         Y-Short X-Short Off
+	 50:  YDual XDual                 X-Short On
+	 51:  YDual XDual                 X-Short Off
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual               Y-Short         On
+	 54:  YDual               Y-Short X-Short Off
+	 55:  YDual               Y-Short X-Short On
+	 56:  YDual               Y-Short X-Short Off
+	 57:  YDual                       X-Short On
+	 58:  YDual                       X-Short Off
+	 59:                      Y-Short X-Short On
+	 60:                      Y-Short X-Short Off
+	 61:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1193,   413)  ->  Abs (  1193,   413)
+	  1: Rel (  -536,     0)  ->  Abs (   657,   413)
+	  2: Rel (     8,  -115)  ->  Abs (   665,   298)
+	  3: Rel (    84,  -178)  ->  Abs (   749,   120)
+	  4: Rel (    95,   -69)  ->  Abs (   844,    51)
+	  5: Rel (    47,     0)  ->  Abs (   891,    51)
+	  6: Rel (    76,     0)  ->  Abs (   967,    51)
+	  7: Rel (   111,    84)  ->  Abs (  1078,   135)
+	  8: Rel (    46,    35)  ->  Abs (  1124,   170)
+	  9: Rel (    19,    10)  ->  Abs (  1143,   180)
+	 10: Rel (    10,     0)  ->  Abs (  1153,   180)
+	 11: Rel (    16,     0)  ->  Abs (  1169,   180)
+	 12: Rel (    25,   -25)  ->  Abs (  1194,   155)
+	 13: Rel (     0,   -17)  ->  Abs (  1194,   138)
+	 14: Rel (     0,   -19)  ->  Abs (  1194,   119)
+	 15: Rel (   -30,   -25)  ->  Abs (  1164,    94)
+	 16: Rel (   -47,   -40)  ->  Abs (  1117,    54)
+	 17: Rel (   -66,   -36)  ->  Abs (  1051,    18)
+	 18: Rel (   -92,   -51)  ->  Abs (   959,   -33)
+	 19: Rel (   -70,     0)  ->  Abs (   889,   -33)
+	 20: Rel (   -76,     0)  ->  Abs (   813,   -33)
+	 21: Rel (  -152,   122)  ->  Abs (   661,    89)
+	 22: Rel (   -46,   125)  ->  Abs (   615,   214)
+	 23: Rel (   -50,  -129)  ->  Abs (   565,    85)
+	 24: Rel (  -150,  -118)  ->  Abs (   415,   -33)
+	 25: Rel (   -76,     0)  ->  Abs (   339,   -33)
+	 26: Rel (  -115,     0)  ->  Abs (   224,   -33)
+	 27: Rel (   -89,   112)  ->  Abs (   135,    79)
+	 28: Rel (  -117,   145)  ->  Abs (    18,   224)
+	 29: Rel (     0,   215)  ->  Abs (    18,   439)
+	 30: Rel (     0,   208)  ->  Abs (    18,   647)
+	 31: Rel (   113,   139)  ->  Abs (   131,   786)
+	 32: Rel (    91,   111)  ->  Abs (   222,   897)
+	 33: Rel (   113,     0)  ->  Abs (   335,   897)
+	 34: Rel (    77,     0)  ->  Abs (   412,   897)
+	 35: Rel (   157,  -120)  ->  Abs (   569,   777)
+	 36: Rel (    46,  -118)  ->  Abs (   615,   659)
+	 37: Rel (   103,   238)  ->  Abs (   718,   897)
+	 38: Rel (   165,     0)  ->  Abs (   883,   897)
+	 39: Rel (   110,     0)  ->  Abs (   993,   897)
+	 40: Rel (   197,  -248)  ->  Abs (  1190,   649)
+	 41: Rel (  -616,  -217)  ->  Abs (   574,   432)
+	 42: Rel (     0,   178)  ->  Abs (   574,   610)
+	 43: Rel (  -158,   203)  ->  Abs (   416,   813)
+	 44: Rel (   -78,     0)  ->  Abs (   338,   813)
+	 45: Rel (   -79,     0)  ->  Abs (   259,   813)
+	 46: Rel (  -157,  -203)  ->  Abs (   102,   610)
+	 47: Rel (     0,  -178)  ->  Abs (   102,   432)
+	 48: Rel (     0,  -178)  ->  Abs (   102,   254)
+	 49: Rel (   158,  -203)  ->  Abs (   260,    51)
+	 50: Rel (    78,     0)  ->  Abs (   338,    51)
+	 51: Rel (    79,     0)  ->  Abs (   417,    51)
+	 52: Rel (   157,   203)  ->  Abs (   574,   254)
+	 53: Rel (   533,   244)  ->  Abs (  1107,   498)
+	 54: Rel (   -25,   162)  ->  Abs (  1082,   660)
+	 55: Rel (   -77,    87)  ->  Abs (  1005,   747)
+	 56: Rel (   -59,    66)  ->  Abs (   946,   813)
+	 57: Rel (   -64,     0)  ->  Abs (   882,   813)
+	 58: Rel (   -64,     0)  ->  Abs (   818,   813)
+	 59: Rel (   -58,   -65)  ->  Abs (   760,   748)
+	 60: Rel (   -77,   -87)  ->  Abs (   683,   661)
+	 61: Rel (   -25,  -163)  ->  Abs (   658,   498)
+
+	Glyph 177: off = 0x0000D336, len = 78
+	  numberOfContours:	1
+	  xMin:			145
+	  yMin:			543
+	  xMax:			1084
+	  yMax:			627
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	26
+	00000: NPUSHB      (12):     7    36     0    11    26    15     4    25    14    80 
+	                           129    24 
+	00014: CALL       
+	00015: FLIPOFF    
+	00016: SRP0       
+	00017: MIRP[nrp0,nmd,rd,0] 
+	00018: SRP0       
+	00019: MIRP[nrp0,nmd,rd,2] 
+	00020: SVTCA[y-axis] 
+	00021: MDAP[rd]   
+	00022: FLIPON     
+	00023: MIRP[nrp0,md,rd,1] 
+	00024: IUP[y]     
+	00025: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual                               On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1028,   543)  ->  Abs (  1028,   543)
+	  1: Rel (  -827,     0)  ->  Abs (   201,   543)
+	  2: Rel (   -30,     0)  ->  Abs (   171,   543)
+	  3: Rel (   -26,    23)  ->  Abs (   145,   566)
+	  4: Rel (     0,    19)  ->  Abs (   145,   585)
+	  5: Rel (     0,    19)  ->  Abs (   145,   604)
+	  6: Rel (    26,    23)  ->  Abs (   171,   627)
+	  7: Rel (    30,     0)  ->  Abs (   201,   627)
+	  8: Rel (   827,     0)  ->  Abs (  1028,   627)
+	  9: Rel (    30,     0)  ->  Abs (  1058,   627)
+	 10: Rel (    26,   -23)  ->  Abs (  1084,   604)
+	 11: Rel (     0,   -19)  ->  Abs (  1084,   585)
+	 12: Rel (     0,   -19)  ->  Abs (  1084,   566)
+	 13: Rel (   -26,   -23)  ->  Abs (  1058,   543)
+
+	Glyph 178: off = 0x0000D384, len = 78
+	  numberOfContours:	1
+	  xMin:			-15
+	  yMin:			544
+	  xMax:			1243
+	  yMax:			629
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	26
+	00000: NPUSHB      (12):     7    36     0    11    26    15     4    25    14    60 
+	                            49    24 
+	00014: CALL       
+	00015: FLIPOFF    
+	00016: SRP0       
+	00017: MIRP[nrp0,nmd,rd,0] 
+	00018: SRP0       
+	00019: MIRP[nrp0,nmd,rd,2] 
+	00020: SVTCA[y-axis] 
+	00021: MDAP[rd]   
+	00022: FLIPON     
+	00023: MIRP[nrp0,md,rd,1] 
+	00024: IUP[y]     
+	00025: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual                               On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1187,   544)  ->  Abs (  1187,   544)
+	  1: Rel ( -1146,     0)  ->  Abs (    41,   544)
+	  2: Rel (   -30,     0)  ->  Abs (    11,   544)
+	  3: Rel (   -26,    24)  ->  Abs (   -15,   568)
+	  4: Rel (     0,    18)  ->  Abs (   -15,   586)
+	  5: Rel (     0,    19)  ->  Abs (   -15,   605)
+	  6: Rel (    26,    24)  ->  Abs (    11,   629)
+	  7: Rel (    30,     0)  ->  Abs (    41,   629)
+	  8: Rel (  1146,     0)  ->  Abs (  1187,   629)
+	  9: Rel (    30,     0)  ->  Abs (  1217,   629)
+	 10: Rel (    26,   -24)  ->  Abs (  1243,   605)
+	 11: Rel (     0,   -19)  ->  Abs (  1243,   586)
+	 12: Rel (     0,   -18)  ->  Abs (  1243,   568)
+	 13: Rel (   -26,   -24)  ->  Abs (  1217,   544)
+
+	Glyph 179: off = 0x0000D3D2, len = 138
+	  numberOfContours:	2
+	  xMin:			179
+	  yMin:			738
+	  xMax:			1009
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  9
+	  1:  19
+
+	  Length of Instructions:	68
+	00000: NPUSHB      (29):    11     2    27     2     2     3    13     1     7    17 
+	                           255    10    10     1    12    91    19    11   116    10 
+	                           243    19   218    21     1   116     0   243     9 
+	00031: PUSHW[1]            755 
+	00034: PUSHB[6]             20     1     0    99   188    24 
+	00041: CALL       
+	00042: SVTCA[y-axis] 
+	00043: MIAP[rd+ci] 
+	00044: SVTCA[x-axis] 
+	00045: SRP0       
+	00046: MIRP[srp0,nmd,rd,2] 
+	00047: MIRP[srp0,nmd,rd,0] 
+	00048: MIRP[nrp0,md,rd,1] 
+	00049: SRP0       
+	00050: MIRP[srp0,nmd,rd,0] 
+	00051: MIRP[srp0,nmd,rd,0] 
+	00052: MIRP[nrp0,md,rd,1] 
+	00053: SRP0       
+	00054: MIRP[nrp0,md,rd,1] 
+	00055: SVTCA[y-axis] 
+	00056: SRP0       
+	00057: ALIGNRP    
+	00058: SRP0       
+	00059: MIRP[srp0,md,rd,1] 
+	00060: ALIGNRP    
+	00061: SRP1       
+	00062: IP         
+	00063: IP         
+	00064: IUP[y]     
+	00065: IUP[x]     
+	00066: SVTCA[x-axis] 
+	00067: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                 X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:        XDual                 X-Short On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                 X-Short On
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   179,  1255)  ->  Abs (   179,  1255)
+	  1: Rel (   218,     0)  ->  Abs (   397,  1255)
+	  2: Rel (   171,  -431)  ->  Abs (   568,   824)
+	  3: Rel (     9,   -23)  ->  Abs (   577,   801)
+	  4: Rel (     0,   -12)  ->  Abs (   577,   789)
+	  5: Rel (     0,   -21)  ->  Abs (   577,   768)
+	  6: Rel (   -30,   -30)  ->  Abs (   547,   738)
+	  7: Rel (   -22,     0)  ->  Abs (   525,   738)
+	  8: Rel (   -28,     0)  ->  Abs (   497,   738)
+	  9: Rel (   -25,    40)  ->  Abs (   472,   778)
+	 10: Rel (   139,   477)  ->  Abs (   611,  1255)
+	 11: Rel (   218,     0)  ->  Abs (   829,  1255)
+	 12: Rel (   171,  -431)  ->  Abs (  1000,   824)
+	 13: Rel (     9,   -23)  ->  Abs (  1009,   801)
+	 14: Rel (     0,   -12)  ->  Abs (  1009,   789)
+	 15: Rel (     0,   -21)  ->  Abs (  1009,   768)
+	 16: Rel (   -29,   -30)  ->  Abs (   980,   738)
+	 17: Rel (   -22,     0)  ->  Abs (   958,   738)
+	 18: Rel (   -29,     0)  ->  Abs (   929,   738)
+	 19: Rel (   -25,    40)  ->  Abs (   904,   778)
+
+	Glyph 180: off = 0x0000D45C, len = 138
+	  numberOfContours:	2
+	  xMin:			219
+	  yMin:			738
+	  xMax:			1049
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  9
+	  1:  19
+
+	  Length of Instructions:	63
+	00000: NPUSHB      (16):     8    18     1     4    14   255    10    10     1    10 
+	                           116    11   243    17   193    12 
+	00018: PUSHW[1]            755 
+	00021: NPUSHB      (15):    21     0   116     1   243     7   193     2   218    20 
+	                             1     0   199   171    24 
+	00038: CALL       
+	00039: SVTCA[y-axis] 
+	00040: MIAP[rd+ci] 
+	00041: SVTCA[x-axis] 
+	00042: SRP0       
+	00043: MIRP[srp0,nmd,rd,0] 
+	00044: MIRP[nrp0,md,rd,1] 
+	00045: MIRP[srp0,nmd,rd,0] 
+	00046: MIRP[nrp0,md,rd,1] 
+	00047: SRP0       
+	00048: MIRP[srp0,nmd,rd,2] 
+	00049: MIRP[nrp0,md,rd,1] 
+	00050: MIRP[srp0,nmd,rd,0] 
+	00051: MIRP[nrp0,md,rd,1] 
+	00052: SVTCA[y-axis] 
+	00053: SRP0       
+	00054: ALIGNRP    
+	00055: SRP0       
+	00056: MIRP[srp0,md,rd,1] 
+	00057: ALIGNRP    
+	00058: SRP1       
+	00059: IP         
+	00060: IP         
+	00061: IUP[y]     
+	00062: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:                                      On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:                                      On
+	 11:  YDual XDual                 X-Short On
+	 12:                                      On
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   400,  1255)  ->  Abs (   400,  1255)
+	  1: Rel (   217,     0)  ->  Abs (   617,  1255)
+	  2: Rel (  -293,  -477)  ->  Abs (   324,   778)
+	  3: Rel (   -24,   -40)  ->  Abs (   300,   738)
+	  4: Rel (   -30,     0)  ->  Abs (   270,   738)
+	  5: Rel (   -21,     0)  ->  Abs (   249,   738)
+	  6: Rel (   -30,    30)  ->  Abs (   219,   768)
+	  7: Rel (     0,    20)  ->  Abs (   219,   788)
+	  8: Rel (     0,    13)  ->  Abs (   219,   801)
+	  9: Rel (     9,    23)  ->  Abs (   228,   824)
+	 10: Rel (   604,   431)  ->  Abs (   832,  1255)
+	 11: Rel (   217,     0)  ->  Abs (  1049,  1255)
+	 12: Rel (  -292,  -477)  ->  Abs (   757,   778)
+	 13: Rel (   -25,   -40)  ->  Abs (   732,   738)
+	 14: Rel (   -29,     0)  ->  Abs (   703,   738)
+	 15: Rel (   -22,     0)  ->  Abs (   681,   738)
+	 16: Rel (   -30,    30)  ->  Abs (   651,   768)
+	 17: Rel (     0,    20)  ->  Abs (   651,   788)
+	 18: Rel (     0,    13)  ->  Abs (   651,   801)
+	 19: Rel (    10,    23)  ->  Abs (   661,   824)
+
+	Glyph 181: off = 0x0000D4E6, len = 102
+	  numberOfContours:	1
+	  xMin:			509
+	  yMin:			653
+	  xMax:			931
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	58
+	00000: NPUSHB      (21):    38     1     1   132     1     1     1     4     7   182 
+	                             0     1   210     2   193     0   243     0     9     1 
+	                             9 
+	00023: PUSHW[1]            766 
+	00026: PUSHB[3]             10     0     0 
+	00030: PUSHW[3]            322   261    24 
+	00037: CALL       
+	00038: SVTCA[y-axis] 
+	00039: MIAP[rd+ci] 
+	00040: SVTCA[x-axis] 
+	00041: SRP0       
+	00042: MIRP[srp0,nmd,rd,0] 
+	00043: DELTAP1    
+	00044: MIRP[nrp0,nmd,rd,0] 
+	00045: MIRP[srp0,md,rd,1] 
+	00046: MIRP[nrp0,nmd,rd,0] 
+	00047: SVTCA[y-axis] 
+	00048: SRP0       
+	00049: MIRP[nrp0,md,rd,1] 
+	00050: SVTCA[x-axis] 
+	00051: SRP2       
+	00052: IP         
+	00053: IUP[y]     
+	00054: IUP[x]     
+	00055: SVTCA[x-axis] 
+	00056: DELTAP2    
+	00057: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                 X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   509,  1255)  ->  Abs (   509,  1255)
+	  1: Rel (   274,     0)  ->  Abs (   783,  1255)
+	  2: Rel (   145,  -520)  ->  Abs (   928,   735)
+	  3: Rel (     3,   -12)  ->  Abs (   931,   723)
+	  4: Rel (     0,   -11)  ->  Abs (   931,   712)
+	  5: Rel (     0,   -24)  ->  Abs (   931,   688)
+	  6: Rel (   -35,   -35)  ->  Abs (   896,   653)
+	  7: Rel (   -26,     0)  ->  Abs (   870,   653)
+	  8: Rel (   -36,     0)  ->  Abs (   834,   653)
+	  9: Rel (   -27,    50)  ->  Abs (   807,   703)
+
+	Glyph 182: off = 0x0000D54C, len = 102
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			653
+	  xMax:			422
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	58
+	00000: NPUSHB      (23):    44     0   124     0     2     0     7     4   182     1 
+	                             9   193     2     0   178     1   243    15     2    31 
+	                             2     2     2 
+	00025: PUSHW[1]            366 
+	00028: PUSHB[4]             10     1     0   164 
+	00033: PUSHW[2]            285    24 
+	00038: CALL       
+	00039: SVTCA[y-axis] 
+	00040: MIAP[rd+ci] 
+	00041: SVTCA[x-axis] 
+	00042: SRP0       
+	00043: MIRP[srp0,md,rd,1] 
+	00044: DELTAP1    
+	00045: MIRP[srp0,nmd,rd,0] 
+	00046: MIRP[nrp0,md,rd,1] 
+	00047: SRP0       
+	00048: MIRP[nrp0,md,rd,1] 
+	00049: SVTCA[y-axis] 
+	00050: SRP0       
+	00051: MIRP[nrp0,md,rd,1] 
+	00052: SRP2       
+	00053: IP         
+	00054: IUP[y]     
+	00055: IUP[x]     
+	00056: SVTCA[x-axis] 
+	00057: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:                                      On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   149,  1255)  ->  Abs (   149,  1255)
+	  1: Rel (   273,     0)  ->  Abs (   422,  1255)
+	  2: Rel (  -297,  -552)  ->  Abs (   125,   703)
+	  3: Rel (   -27,   -50)  ->  Abs (    98,   653)
+	  4: Rel (   -38,     0)  ->  Abs (    60,   653)
+	  5: Rel (   -25,     0)  ->  Abs (    35,   653)
+	  6: Rel (   -35,    35)  ->  Abs (     0,   688)
+	  7: Rel (     0,    25)  ->  Abs (     0,   713)
+	  8: Rel (     0,    10)  ->  Abs (     0,   723)
+	  9: Rel (     3,    12)  ->  Abs (     3,   735)
+
+	Glyph 183: off = 0x0000D5B2, len = 230
+	  numberOfContours:	3
+	  xMin:			144
+	  yMin:			111
+	  xMax:			1085
+	  yMax:			1059
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  33
+	  2:  45
+
+	  Length of Instructions:	89
+	00000: NPUSHB      (25):    48    29    65    29    94    18   128    29   144    29 
+	                           175    18   190    18   255    18     8    15    18    49 
+	                            29     2    37   112    43 
+	00027: PUSHW[1]            308 
+	00030: PUSHB[4]             13     9   112     3 
+	00035: PUSHW[1]            308 
+	00038: NPUSHB      (22):    24    23    12    23    91    13    34   112    40    40 
+	                             0   112     6   248    29   204    18    25    46    80 
+	                           129    24 
+	00062: CALL       
+	00063: FLIPOFF    
+	00064: SRP0       
+	00065: MIRP[srp0,nmd,rd,0] 
+	00066: FLIPON     
+	00067: MIRP[nrp0,md,rd,1] 
+	00068: MIRP[srp0,nmd,rd,0] 
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: ALIGNRP    
+	00071: SRP0       
+	00072: MIRP[nrp0,md,rd,1] 
+	00073: SVTCA[y-axis] 
+	00074: MDAP[rd]   
+	00075: MIRP[nrp0,md,rd,1] 
+	00076: ALIGNRP    
+	00077: SRP0       
+	00078: ALIGNRP    
+	00079: MIRP[srp0,nmd,rd,2] 
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: SRP0       
+	00082: MIRP[srp0,nmd,rd,2] 
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: IUP[y]     
+	00085: IUP[x]     
+	00086: SVTCA[x-axis] 
+	00087: DELTAP2    
+	00088: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:                                      On
+	 13:  YDual                               On
+	 14:  YDual                       X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual                               On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:                      Y-Short X-Short Off
+	 32:                      Y-Short X-Short On
+	 33:                      Y-Short X-Short Off
+	 34:                                      On
+	 35:        XDual         Y-Short         Off
+	 36:                      Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   696,   978)  ->  Abs (   696,   978)
+	  1: Rel (     0,   -34)  ->  Abs (   696,   944)
+	  2: Rel (   -48,   -48)  ->  Abs (   648,   896)
+	  3: Rel (   -33,     0)  ->  Abs (   615,   896)
+	  4: Rel (   -34,     0)  ->  Abs (   581,   896)
+	  5: Rel (   -48,    48)  ->  Abs (   533,   944)
+	  6: Rel (     0,    34)  ->  Abs (   533,   978)
+	  7: Rel (     0,    33)  ->  Abs (   533,  1011)
+	  8: Rel (    48,    48)  ->  Abs (   581,  1059)
+	  9: Rel (    34,     0)  ->  Abs (   615,  1059)
+	 10: Rel (    33,     0)  ->  Abs (   648,  1059)
+	 11: Rel (    48,   -47)  ->  Abs (   696,  1012)
+	 12: Rel (   272,  -469)  ->  Abs (   968,   543)
+	 13: Rel (  -707,     0)  ->  Abs (   261,   543)
+	 14: Rel (   -79,     0)  ->  Abs (   182,   543)
+	 15: Rel (    -8,     2)  ->  Abs (   174,   545)
+	 16: Rel (   -13,     3)  ->  Abs (   161,   548)
+	 17: Rel (   -17,    23)  ->  Abs (   144,   571)
+	 18: Rel (     0,    14)  ->  Abs (   144,   585)
+	 19: Rel (     0,    14)  ->  Abs (   144,   599)
+	 20: Rel (    17,    23)  ->  Abs (   161,   622)
+	 21: Rel (    13,     3)  ->  Abs (   174,   625)
+	 22: Rel (     8,     2)  ->  Abs (   182,   627)
+	 23: Rel (    79,     0)  ->  Abs (   261,   627)
+	 24: Rel (   707,     0)  ->  Abs (   968,   627)
+	 25: Rel (    79,     0)  ->  Abs (  1047,   627)
+	 26: Rel (     8,    -2)  ->  Abs (  1055,   625)
+	 27: Rel (    13,    -3)  ->  Abs (  1068,   622)
+	 28: Rel (    17,   -23)  ->  Abs (  1085,   599)
+	 29: Rel (     0,   -14)  ->  Abs (  1085,   585)
+	 30: Rel (     0,   -14)  ->  Abs (  1085,   571)
+	 31: Rel (   -17,   -23)  ->  Abs (  1068,   548)
+	 32: Rel (   -13,    -3)  ->  Abs (  1055,   545)
+	 33: Rel (    -8,    -2)  ->  Abs (  1047,   543)
+	 34: Rel (  -351,  -351)  ->  Abs (   696,   192)
+	 35: Rel (     0,   -34)  ->  Abs (   696,   158)
+	 36: Rel (   -48,   -47)  ->  Abs (   648,   111)
+	 37: Rel (   -34,     0)  ->  Abs (   614,   111)
+	 38: Rel (   -33,     0)  ->  Abs (   581,   111)
+	 39: Rel (   -48,    47)  ->  Abs (   533,   158)
+	 40: Rel (     0,    34)  ->  Abs (   533,   192)
+	 41: Rel (     0,    34)  ->  Abs (   533,   226)
+	 42: Rel (    48,    47)  ->  Abs (   581,   273)
+	 43: Rel (    33,     0)  ->  Abs (   614,   273)
+	 44: Rel (    34,     0)  ->  Abs (   648,   273)
+	 45: Rel (    48,   -47)  ->  Abs (   696,   226)
+
+	Glyph 184: off = 0x0000D698, len = 168
+	  numberOfContours:	2
+	  xMin:			155
+	  yMin:			0
+	  xMax:			1075
+	  yMax:			1422
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  9
+
+	  Length of Instructions:	108
+	00000: NPUSHB      (13):    41     6    37     8     2     9     7     1     1     4 
+	                             4     3     6 
+	00015: PUSHW[1]            692 
+	00018: PUSHB[4]              0     5     0     8 
+	00023: PUSHW[1]            692 
+	00026: NPUSHB      (17):    64     2     3     8     3    77     2    77     8     8 
+	                             0    77     5    77     6    32     1 
+	00045: PUSHW[7]            692     9   317     6   317     7   692 
+	00060: PUSHB[6]              4    25    10    80   129    24 
+	00067: CALL       
+	00068: FLIPOFF    
+	00069: SRP0       
+	00070: MIRP[srp0,nmd,rd,0] 
+	00071: FLIPON     
+	00072: MIRP[srp0,md,rd,1] 
+	00073: RTDG       
+	00074: MIRP[srp0,nmd,rd,0] 
+	00075: MIRP[srp0,nmd,rd,0] 
+	00076: RTG        
+	00077: MIRP[nrp0,md,rd,1] 
+	00078: RTHG       
+	00079: SMD        
+	00080: SRP0       
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: MIRP[nrp0,md,rd,1] 
+	00083: ALIGNRP    
+	00084: SRP0       
+	00085: MIRP[nrp0,md,rd,1] 
+	00086: MIRP[srp0,md,rd,1] 
+	00087: SVTCA[y-axis] 
+	00088: RTG        
+	00089: MIAP[rd+ci] 
+	00090: ALIGNRP    
+	00091: SMD        
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: MIAP[rd+ci] 
+	00094: ALIGNRP    
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: RTDG       
+	00097: SRP2       
+	00098: IP         
+	00099: MDAP[rd]   
+	00100: ALIGNRP    
+	00101: SRP2       
+	00102: IP         
+	00103: IP         
+	00104: IUP[y]     
+	00105: IUP[x]     
+	00106: SVTCA[y-axis] 
+	00107: DELTAP1    
+
+	Flags
+	-----
+	  0:              Rep-  2                 On
+	  3:  YDual                       X-Short On
+	  4:                                      On
+	  5:                                      On
+	  6:        XDual         Y-Short X-Short On
+	  7:              Rep-  2                 On
+
+	Coordinates
+	-----------
+	  0: Rel (   657,  1422)  ->  Abs (   657,  1422)
+	  1: Rel (   418,  -713)  ->  Abs (  1075,   709)
+	  2: Rel (  -418,  -709)  ->  Abs (   657,     0)
+	  3: Rel (  -111,     0)  ->  Abs (   546,     0)
+	  4: Rel (  -391,   709)  ->  Abs (   155,   709)
+	  5: Rel (   391,   713)  ->  Abs (   546,  1422)
+	  6: Rel (    57,   -97)  ->  Abs (   603,  1325)
+	  7: Rel (  -340,  -616)  ->  Abs (   263,   709)
+	  8: Rel (   340,  -615)  ->  Abs (   603,    94)
+	  9: Rel (   359,   615)  ->  Abs (   962,   709)
+
+	Glyph 185: off = 0x0000D740, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			149
+	  yMin:			-386
+	  xMax:			1176
+	  yMax:			1229
+
+	     0: Flags:		0x0226
+		Glyf Index:	92
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	142
+		X BOffset:	60
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     2     1    48    69   176    69     2    69    18   161 
+	                            72    43     1     2     2    54 
+	00018: PUSHW[3]            652    41   292 
+	00025: SCANCTRL   
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: SHC[rp1,zp0] 
+	00032: SHC[rp1,zp0] 
+
+	Glyph 186: off = 0x0000D77A, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			0
+	  xMax:			1128
+	  yMax:			1496
+
+	     0: Flags:		0x0226
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	1
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1     2     2    69    34   131    72    39     1     2 
+	                             2    66 
+	00014: PUSHW[3]            651    41   300 
+	00021: SCANCTRL   
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+
+	Glyph 187: off = 0x0000D7AE, len = 76
+	  numberOfContours:	1
+	  xMin:			103
+	  yMin:			289
+	  xMax:			1127
+	  yMax:			978
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	16
+	00000: PUSHB[6]              3     3    11    14    14     6 
+	00007: MDAP[rd]   
+	00008: SHP[rp1,zp0] 
+	00009: MDAP[rd]   
+	00010: SVTCA[y-axis] 
+	00011: MDAP[rd]   
+	00012: SHP[rp1,zp0] 
+	00013: MDAP[rd]   
+	00014: IUP[y]     
+	00015: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:                                      On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1095,   893)  ->  Abs (  1095,   893)
+	  1: Rel (  -915,  -590)  ->  Abs (   180,   303)
+	  2: Rel (   -22,   -14)  ->  Abs (   158,   289)
+	  3: Rel (   -12,     0)  ->  Abs (   146,   289)
+	  4: Rel (   -18,     0)  ->  Abs (   128,   289)
+	  5: Rel (   -25,    24)  ->  Abs (   103,   313)
+	  6: Rel (     0,    18)  ->  Abs (   103,   331)
+	  7: Rel (     0,    23)  ->  Abs (   103,   354)
+	  8: Rel (    31,    20)  ->  Abs (   134,   374)
+	  9: Rel (   916,   590)  ->  Abs (  1050,   964)
+	 10: Rel (    22,    14)  ->  Abs (  1072,   978)
+	 11: Rel (    12,     0)  ->  Abs (  1084,   978)
+	 12: Rel (    17,     0)  ->  Abs (  1101,   978)
+	 13: Rel (    26,   -25)  ->  Abs (  1127,   953)
+	 14: Rel (     0,   -17)  ->  Abs (  1127,   936)
+	 15: Rel (     0,   -23)  ->  Abs (  1127,   913)
+
+	Glyph 188: off = 0x0000D7FA, len = 454
+	  numberOfContours:	1
+	  xMin:			7
+	  yMin:			-33
+	  xMax:			1103
+	  yMax:			1197
+
+	EndPoints
+	---------
+	  0:  65
+
+	  Length of Instructions:	280
+	00000: NPUSHB      (83):   148    64   164    64     2    47    33    57    65    73 
+	                            65     3    82    49   116    49   116    50     3   122 
+	                            33   122    34     2   117    52   181    52   181    53 
+	                             3    38    14    54    14    57    30    54    52     4 
+	                           100    52   107    64   105    65   164    52     4   237 
+	                            30   228    50   228    52     3   138    59   138    60 
+	                             2   251    30   249    33     2   201    30   217    30 
+	                           233    33     3   175    33   175    34   176    14   192 
+	                            14     4    49 
+	00085: PUSHW[1]            -64 
+	00088: PUSHB[4]             17    19    52    49 
+	00093: PUSHW[1]            -64 
+	00096: NPUSHB      (21):     9    11    52   244    49     1    35    13    41    13 
+	                           159     7   223     7     2     7    64    25    33    52 
+	                             7 
+	00119: PUSHW[1]            -64 
+	00122: NPUSHB      (36):     9    11    52     7    42     6    48     0     6    64 
+	                             9    11    52     6     6    16    62   111    26     1 
+	                            15    26    31    26   111    26     3    26    21     2 
+	                           112    55   176    55     2    55 
+	00160: PUSHW[1]            -64 
+	00163: NPUSHB      (48):    24    28    52    55    51    37    62     9    31    37 
+	                            16     3    45    38    42    18    38    24    57     6 
+	                            10     3     6    35    48    41    13     0    42    38 
+	                            31     6     1   127     6   143     6   223     6     3 
+	                           207     6   239     6   255     6     3     6 
+	00213: MDAP[rd]   
+	00214: DELTAP1    
+	00215: DELTAP2    
+	00216: DELTAP3    
+	00217: MIRP[srp0,md,rd,1] 
+	00218: IP         
+	00219: IP         
+	00220: ALIGNRP    
+	00221: SHP[rp2,zp1] 
+	00222: SHP[rp2,zp1] 
+	00223: SRP0       
+	00224: MDRP[srp0,md,rd,1] 
+	00225: ALIGNRP    
+	00226: SRP0       
+	00227: MDRP[srp0,nmd,rd,0] 
+	00228: MDRP[srp0,nmd,rd,0] 
+	00229: MIRP[nrp0,md,rd,1] 
+	00230: SRP0       
+	00231: MDRP[srp0,nmd,rd,0] 
+	00232: MDRP[nrp0,nmd,rd,0] 
+	00233: SVTCA[y-axis] 
+	00234: MIAP[rd+ci] 
+	00235: MIRP[nrp0,md,rd,1] 
+	00236: MIAP[rd+ci] 
+	00237: MIRP[nrp0,md,rd,1] 
+	00238: MDRP[nrp0,nmd,rd,0] 
+	00239: CALL       
+	00240: DELTAP2    
+	00241: MIAP[rd+ci] 
+	00242: MDRP[nrp0,md,rd,1] 
+	00243: DELTAP1    
+	00244: DELTAP1    
+	00245: SRP1       
+	00246: SRP2       
+	00247: IP         
+	00248: MDAP[rd]   
+	00249: CALL       
+	00250: MDRP[srp0,md,rd,1] 
+	00251: ALIGNRP    
+	00252: SRP0       
+	00253: ALIGNRP    
+	00254: MDRP[srp0,nmd,rd,2] 
+	00255: CALL       
+	00256: CALL       
+	00257: DELTAP3    
+	00258: MDRP[nrp0,md,rd,1] 
+	00259: ALIGNRP    
+	00260: SRP0       
+	00261: ALIGNRP    
+	00262: IUP[y]     
+	00263: IUP[x]     
+	00264: SVTCA[y-axis] 
+	00265: DELTAP1    
+	00266: CALL       
+	00267: CALL       
+	00268: DELTAP1    
+	00269: DELTAP1    
+	00270: DELTAP1    
+	00271: DELTAP2    
+	00272: DELTAP1    
+	00273: DELTAP2    
+	00274: DELTAP2    
+	00275: DELTAP2    
+	00276: DELTAP2    
+	00277: DELTAP2    
+	00278: DELTAP1    
+	00279: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:                                      Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual               Y-Short X-Short On
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:                      Y-Short X-Short Off
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short On
+	 36:  YDual                               On
+	 37:  YDual XDual                 X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                               On
+	 42:        XDual         Y-Short         On
+	 43:  YDual                               On
+	 44:  YDual XDual                 X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                               On
+	 49:        XDual         Y-Short X-Short Off
+	 50:                                      Off
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:  YDual XDual         Y-Short X-Short Off
+	 55:  YDual XDual                 X-Short On
+	 56:  YDual XDual                 X-Short Off
+	 57:        XDual         Y-Short         On
+	 58:        XDual         Y-Short         Off
+	 59:              Rep-  2 Y-Short X-Short Off
+	 62:  YDual                       X-Short On
+	 63:  YDual                       X-Short Off
+	 64:  YDual               Y-Short X-Short Off
+	 65:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   130,   488)  ->  Abs (   130,   488)
+	  1: Rel (   -83,     0)  ->  Abs (    47,   488)
+	  2: Rel (   -40,     0)  ->  Abs (     7,   488)
+	  3: Rel (     0,    30)  ->  Abs (     7,   518)
+	  4: Rel (     0,    30)  ->  Abs (     7,   548)
+	  5: Rel (    40,     0)  ->  Abs (    47,   548)
+	  6: Rel (    80,     0)  ->  Abs (   127,   548)
+	  7: Rel (     0,    90)  ->  Abs (   127,   638)
+	  8: Rel (   -80,     0)  ->  Abs (    47,   638)
+	  9: Rel (   -40,     0)  ->  Abs (     7,   638)
+	 10: Rel (     0,    30)  ->  Abs (     7,   668)
+	 11: Rel (     0,    30)  ->  Abs (     7,   698)
+	 12: Rel (    40,     0)  ->  Abs (    47,   698)
+	 13: Rel (    84,     0)  ->  Abs (   131,   698)
+	 14: Rel (    10,   209)  ->  Abs (   141,   907)
+	 15: Rel (   288,   290)  ->  Abs (   429,  1197)
+	 16: Rel (   200,     0)  ->  Abs (   629,  1197)
+	 17: Rel (   208,     0)  ->  Abs (   837,  1197)
+	 18: Rel (   150,  -142)  ->  Abs (   987,  1055)
+	 19: Rel (     0,    59)  ->  Abs (   987,  1114)
+	 20: Rel (     0,    56)  ->  Abs (   987,  1170)
+	 21: Rel (    42,     0)  ->  Abs (  1029,  1170)
+	 22: Rel (    42,     0)  ->  Abs (  1071,  1170)
+	 23: Rel (     0,   -56)  ->  Abs (  1071,  1114)
+	 24: Rel (     0,  -233)  ->  Abs (  1071,   881)
+	 25: Rel (     0,   -57)  ->  Abs (  1071,   824)
+	 26: Rel (   -42,     0)  ->  Abs (  1029,   824)
+	 27: Rel (   -39,     0)  ->  Abs (   990,   824)
+	 28: Rel (    -3,    51)  ->  Abs (   987,   875)
+	 29: Rel (    -6,    94)  ->  Abs (   981,   969)
+	 30: Rel (  -218,   144)  ->  Abs (   763,  1113)
+	 31: Rel (  -131,     0)  ->  Abs (   632,  1113)
+	 32: Rel (  -111,     0)  ->  Abs (   521,  1113)
+	 33: Rel (  -175,  -104)  ->  Abs (   346,  1009)
+	 34: Rel (  -120,  -186)  ->  Abs (   226,   823)
+	 35: Rel (   -11,  -125)  ->  Abs (   215,   698)
+	 36: Rel (   583,     0)  ->  Abs (   798,   698)
+	 37: Rel (    42,     0)  ->  Abs (   840,   698)
+	 38: Rel (     0,   -30)  ->  Abs (   840,   668)
+	 39: Rel (     0,   -30)  ->  Abs (   840,   638)
+	 40: Rel (   -42,     0)  ->  Abs (   798,   638)
+	 41: Rel (  -586,     0)  ->  Abs (   212,   638)
+	 42: Rel (     0,   -90)  ->  Abs (   212,   548)
+	 43: Rel (   557,     0)  ->  Abs (   769,   548)
+	 44: Rel (    42,     0)  ->  Abs (   811,   548)
+	 45: Rel (     0,   -30)  ->  Abs (   811,   518)
+	 46: Rel (     0,   -30)  ->  Abs (   811,   488)
+	 47: Rel (   -42,     0)  ->  Abs (   769,   488)
+	 48: Rel (  -554,     0)  ->  Abs (   215,   488)
+	 49: Rel (     8,  -177)  ->  Abs (   223,   311)
+	 50: Rel (   263,  -260)  ->  Abs (   486,    51)
+	 51: Rel (   180,     0)  ->  Abs (   666,    51)
+	 52: Rel (   201,     0)  ->  Abs (   867,    51)
+	 53: Rel (   158,   189)  ->  Abs (  1025,   240)
+	 54: Rel (    18,    21)  ->  Abs (  1043,   261)
+	 55: Rel (    20,     0)  ->  Abs (  1063,   261)
+	 56: Rel (    40,     0)  ->  Abs (  1103,   261)
+	 57: Rel (     0,   -39)  ->  Abs (  1103,   222)
+	 58: Rel (     0,   -17)  ->  Abs (  1103,   205)
+	 59: Rel (   -69,   -87)  ->  Abs (  1034,   118)
+	 60: Rel (  -130,  -100)  ->  Abs (   904,    18)
+	 61: Rel (  -152,   -51)  ->  Abs (   752,   -33)
+	 62: Rel (   -84,     0)  ->  Abs (   668,   -33)
+	 63: Rel (  -148,     0)  ->  Abs (   520,   -33)
+	 64: Rel (  -238,   138)  ->  Abs (   282,   105)
+	 65: Rel (  -150,   233)  ->  Abs (   132,   338)
+
+	Glyph 189: off = 0x0000D9C0, len = 134
+	  numberOfContours:	1
+	  xMin:			107
+	  yMin:			1
+	  xMax:			641
+	  yMax:			868
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	67
+	00000: NPUSHB      (36):   127     0   132     9     2     6     9     1     9     6 
+	                             0     0     9     3    15    10     3     6    15     0 
+	                            31     0     2     0    25    18     6    15    12    31 
+	                            12     2    12    26    19    79 
+	00038: PUSHW[2]            333    24 
+	00043: CALL       
+	00044: FLIPOFF    
+	00045: SRP0       
+	00046: MIRP[srp0,nmd,rd,2] 
+	00047: DELTAP1    
+	00048: ALIGNRP    
+	00049: SRP0       
+	00050: MIRP[srp0,nmd,rd,0] 
+	00051: DELTAP1    
+	00052: SVTCA[y-axis] 
+	00053: MIAP[rd+ci] 
+	00054: MIAP[rd+ci] 
+	00055: SRP2       
+	00056: IP         
+	00057: IP         
+	00058: SVTCA[x-axis] 
+	00059: SRP1       
+	00060: SRP2       
+	00061: IP         
+	00062: IUP[y]     
+	00063: IUP[x]     
+	00064: SVTCA[x-axis] 
+	00065: DELTAP2    
+	00066: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:                                      On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short On
+	  9:                                      On
+	 10:                                      On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   107,   434)  ->  Abs (   107,   434)
+	  1: Rel (   448,   410)  ->  Abs (   555,   844)
+	  2: Rel (    26,    24)  ->  Abs (   581,   868)
+	  3: Rel (    18,     0)  ->  Abs (   599,   868)
+	  4: Rel (    18,     0)  ->  Abs (   617,   868)
+	  5: Rel (    24,   -24)  ->  Abs (   641,   844)
+	  6: Rel (     0,   -19)  ->  Abs (   641,   825)
+	  7: Rel (     0,   -16)  ->  Abs (   641,   809)
+	  8: Rel (   -23,   -25)  ->  Abs (   618,   784)
+	  9: Rel (  -313,  -350)  ->  Abs (   305,   434)
+	 10: Rel (   313,  -349)  ->  Abs (   618,    85)
+	 11: Rel (    23,   -25)  ->  Abs (   641,    60)
+	 12: Rel (     0,   -17)  ->  Abs (   641,    43)
+	 13: Rel (     0,   -18)  ->  Abs (   641,    25)
+	 14: Rel (   -24,   -24)  ->  Abs (   617,     1)
+	 15: Rel (   -18,     0)  ->  Abs (   599,     1)
+	 16: Rel (   -18,     0)  ->  Abs (   581,     1)
+	 17: Rel (   -26,    23)  ->  Abs (   555,    24)
+
+	Glyph 190: off = 0x0000DA46, len = 134
+	  numberOfContours:	1
+	  xMin:			596
+	  yMin:			1
+	  xMax:			1130
+	  yMax:			868
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	66
+	00000: NPUSHB      (31):   112     0     1   139     9     1     9     0    12     0 
+	                             9     3    15     6     3    10     0     0    16     0 
+	                             2     0    26    19    12     0     6    16     6     2 
+	                             6 
+	00033: PUSHW[1]            595 
+	00036: PUSHB[4]             18   202   123    24 
+	00041: CALL       
+	00042: SRP0       
+	00043: MIRP[srp0,nmd,rd,2] 
+	00044: DELTAP1    
+	00045: ALIGNRP    
+	00046: FLIPOFF    
+	00047: SRP0       
+	00048: MIRP[nrp0,nmd,rd,2] 
+	00049: DELTAP1    
+	00050: SVTCA[y-axis] 
+	00051: MIAP[rd+ci] 
+	00052: MIAP[rd+ci] 
+	00053: SRP2       
+	00054: IP         
+	00055: IP         
+	00056: SVTCA[x-axis] 
+	00057: SRP1       
+	00058: SRP2       
+	00059: IP         
+	00060: IUP[y]     
+	00061: IUP[x]     
+	00062: SVTCA[y-axis] 
+	00063: SVTCA[x-axis] 
+	00064: DELTAP1    
+	00065: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:                                      On
+	 10:                                      On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1130,   434)  ->  Abs (  1130,   434)
+	  1: Rel (  -449,  -410)  ->  Abs (   681,    24)
+	  2: Rel (   -25,   -23)  ->  Abs (   656,     1)
+	  3: Rel (   -18,     0)  ->  Abs (   638,     1)
+	  4: Rel (   -18,     0)  ->  Abs (   620,     1)
+	  5: Rel (   -24,    24)  ->  Abs (   596,    25)
+	  6: Rel (     0,    18)  ->  Abs (   596,    43)
+	  7: Rel (     0,    17)  ->  Abs (   596,    60)
+	  8: Rel (    22,    25)  ->  Abs (   618,    85)
+	  9: Rel (   313,   349)  ->  Abs (   931,   434)
+	 10: Rel (  -313,   350)  ->  Abs (   618,   784)
+	 11: Rel (   -22,    25)  ->  Abs (   596,   809)
+	 12: Rel (     0,    17)  ->  Abs (   596,   826)
+	 13: Rel (     0,    18)  ->  Abs (   596,   844)
+	 14: Rel (    24,    24)  ->  Abs (   620,   868)
+	 15: Rel (    18,     0)  ->  Abs (   638,   868)
+	 16: Rel (    18,     0)  ->  Abs (   656,   868)
+	 17: Rel (    25,   -24)  ->  Abs (   681,   844)
+
+	Glyph 191: off = 0x0000DACC, len = 476
+	  numberOfContours:	3
+	  xMin:			14
+	  yMin:			0
+	  xMax:			1208
+	  yMax:			1297
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  56
+	  2:  81
+
+	  Length of Instructions:	258
+	00000: NPUSHB      (98):    41    25     1    28    22    25    78    29    29    34 
+	                            22    19    13    16    78    20    20    34    13    56 
+	                            50    53    78     4     4    34    50    72    66    69 
+	                            78    73    73    34    66     6    12     9    78     5 
+	                             5    34    12    59    65     0    62     1    62    78 
+	                            58    58    34    65    75    81    78    47    74    74 
+	                            34    81    41    37     5     3   197     2    89    35 
+	                            59    40    93    44    33    33     0    22    59    50 
+	                            81    50    49    28     6    66    65    13    12    10 
+	                            37    37    82    83    74    73     3     2 
+	00100: PUSHW[1]            351 
+	00103: PUSHB[8]              0     1    84    57    58    48     5    78 
+	00112: PUSHW[3]            404    53   355 
+	00119: PUSHB[6]              4     4     5    58    32    73 
+	00126: PUSHW[1]            432 
+	00129: NPUSHB       (9):     5    32    30    25   198    47    20     1    20 
+	00140: PUSHW[1]            491 
+	00143: PUSHB[4]             82   152    97    24 
+	00148: CALL       
+	00149: SRP0       
+	00150: MIRP[srp0,nmd,rd,2] 
+	00151: DELTAP1    
+	00152: MIRP[nrp0,nmd,rd,0] 
+	00153: ALIGNRP    
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: MIRP[srp0,nmd,rd,0] 
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: SRP0       
+	00158: ALIGNRP    
+	00159: SRP0       
+	00160: MIRP[srp0,nmd,rd,0] 
+	00161: MIRP[nrp0,nmd,rd,2] 
+	00162: SRP0       
+	00163: ALIGNRP    
+	00164: SRP0       
+	00165: ALIGNRP    
+	00166: MIRP[srp0,nmd,rd,0] 
+	00167: ALIGNRP    
+	00168: MIRP[srp0,md,rd,1] 
+	00169: ALIGNRP    
+	00170: SRP0       
+	00171: ALIGNRP    
+	00172: SRP1       
+	00173: SRP2       
+	00174: IP         
+	00175: MDAP[rd]   
+	00176: SVTCA[y-axis] 
+	00177: MIAP[rd+ci] 
+	00178: ALIGNRP    
+	00179: ALIGNRP    
+	00180: ALIGNRP    
+	00181: MIAP[rd+ci] 
+	00182: ALIGNRP    
+	00183: ALIGNRP    
+	00184: ALIGNRP    
+	00185: SRP0       
+	00186: MIRP[nrp0,md,rd,1] 
+	00187: MIAP[rd+ci] 
+	00188: MIRP[srp0,md,rd,1] 
+	00189: MIRP[srp0,nmd,rd,0] 
+	00190: MIRP[nrp0,md,rd,1] 
+	00191: MIRP[srp0,nmd,rd,0] 
+	00192: MIRP[nrp0,md,rd,1] 
+	00193: SVTCA[x-axis] 
+	00194: SRP1       
+	00195: SRP2       
+	00196: IP         
+	00197: SVTCA[y-axis] 
+	00198: SRP0       
+	00199: MIRP[nrp0,md,rd,1] 
+	00200: SVTCA[x-axis] 
+	00201: SRP0       
+	00202: MIRP[srp0,nmd,rd,1] 
+	00203: MDRP[srp0,nmd,rd,0] 
+	00204: ALIGNRP    
+	00205: SVTCA[y-axis] 
+	00206: SRP0       
+	00207: MIRP[nrp0,md,rd,1] 
+	00208: SVTCA[x-axis] 
+	00209: SRP0       
+	00210: MIRP[srp0,nmd,rd,1] 
+	00211: DELTAP1    
+	00212: MDRP[srp0,nmd,rd,0] 
+	00213: ALIGNRP    
+	00214: SVTCA[y-axis] 
+	00215: SRP0       
+	00216: MIRP[nrp0,md,rd,1] 
+	00217: SVTCA[x-axis] 
+	00218: SRP0       
+	00219: MIRP[srp0,nmd,rd,1] 
+	00220: MDRP[srp0,nmd,rd,0] 
+	00221: ALIGNRP    
+	00222: SVTCA[y-axis] 
+	00223: SRP0       
+	00224: MIRP[nrp0,md,rd,1] 
+	00225: SVTCA[x-axis] 
+	00226: SRP0       
+	00227: MIRP[srp0,nmd,rd,1] 
+	00228: MDRP[srp0,nmd,rd,0] 
+	00229: ALIGNRP    
+	00230: SVTCA[y-axis] 
+	00231: SRP0       
+	00232: MIRP[nrp0,md,rd,1] 
+	00233: SVTCA[x-axis] 
+	00234: SRP0       
+	00235: MIRP[srp0,nmd,rd,1] 
+	00236: MDRP[srp0,nmd,rd,0] 
+	00237: ALIGNRP    
+	00238: SVTCA[y-axis] 
+	00239: SRP0       
+	00240: MIRP[nrp0,md,rd,1] 
+	00241: SVTCA[x-axis] 
+	00242: SRP0       
+	00243: MIRP[srp0,nmd,rd,1] 
+	00244: MDRP[srp0,nmd,rd,0] 
+	00245: ALIGNRP    
+	00246: SVTCA[y-axis] 
+	00247: SRP0       
+	00248: MIRP[nrp0,md,rd,1] 
+	00249: SVTCA[x-axis] 
+	00250: SRP0       
+	00251: MIRP[srp0,nmd,rd,1] 
+	00252: MDRP[srp0,nmd,rd,0] 
+	00253: ALIGNRP    
+	00254: IUP[y]     
+	00255: IUP[x]     
+	00256: SVTCA[x-axis] 
+	00257: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short         On
+	  4:                                      On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                               On
+	 14:  YDual                       X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short On
+	 21:        XDual                         On
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short X-Short On
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:                      Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:  YDual               Y-Short X-Short On
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short Off
+	 46:                      Y-Short X-Short On
+	 47:                      Y-Short X-Short Off
+	 48:        XDual         Y-Short         On
+	 49:        XDual         Y-Short         On
+	 50:  YDual XDual                 X-Short On
+	 51:  YDual XDual                 X-Short Off
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short         On
+	 54:        XDual         Y-Short         Off
+	 55:                      Y-Short X-Short Off
+	 56:  YDual                       X-Short On
+	 57:  YDual               Y-Short         On
+	 58:        XDual                         On
+	 59:  YDual XDual                 X-Short On
+	 60:  YDual XDual                 X-Short Off
+	 61:        XDual         Y-Short X-Short Off
+	 62:        XDual         Y-Short         On
+	 63:        XDual         Y-Short         Off
+	 64:                      Y-Short X-Short Off
+	 65:  YDual                       X-Short On
+	 66:  YDual                               On
+	 67:  YDual                       X-Short Off
+	 68:  YDual               Y-Short X-Short Off
+	 69:  YDual XDual         Y-Short         On
+	 70:  YDual XDual         Y-Short         Off
+	 71:  YDual XDual         Y-Short X-Short Off
+	 72:  YDual XDual                 X-Short On
+	 73:  YDual XDual                 X-Short On
+	 74:        XDual                         On
+	 75:  YDual                       X-Short On
+	 76:  YDual                       X-Short Off
+	 77:  YDual               Y-Short X-Short Off
+	 78:  YDual XDual         Y-Short         On
+	 79:  YDual XDual         Y-Short         Off
+	 80:  YDual XDual         Y-Short X-Short Off
+	 81:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   995,  1297)  ->  Abs (   995,  1297)
+	  1: Rel (     0,  -217)  ->  Abs (   995,  1080)
+	  2: Rel (  -124,     0)  ->  Abs (   871,  1080)
+	  3: Rel (     0,   217)  ->  Abs (   871,  1297)
+	  4: Rel (  -543,  -516)  ->  Abs (   328,   781)
+	  5: Rel (     0,  -697)  ->  Abs (   328,    84)
+	  6: Rel (   149,     0)  ->  Abs (   477,    84)
+	  7: Rel (    30,     0)  ->  Abs (   507,    84)
+	  8: Rel (    26,   -23)  ->  Abs (   533,    61)
+	  9: Rel (     0,   -19)  ->  Abs (   533,    42)
+	 10: Rel (     0,   -18)  ->  Abs (   533,    24)
+	 11: Rel (   -26,   -24)  ->  Abs (   507,     0)
+	 12: Rel (   -30,     0)  ->  Abs (   477,     0)
+	 13: Rel (  -407,     0)  ->  Abs (    70,     0)
+	 14: Rel (   -30,     0)  ->  Abs (    40,     0)
+	 15: Rel (   -26,    24)  ->  Abs (    14,    24)
+	 16: Rel (     0,    18)  ->  Abs (    14,    42)
+	 17: Rel (     0,    19)  ->  Abs (    14,    61)
+	 18: Rel (    26,    23)  ->  Abs (    40,    84)
+	 19: Rel (    30,     0)  ->  Abs (    70,    84)
+	 20: Rel (   173,     0)  ->  Abs (   243,    84)
+	 21: Rel (     0,   697)  ->  Abs (   243,   781)
+	 22: Rel (  -161,     0)  ->  Abs (    82,   781)
+	 23: Rel (   -30,     0)  ->  Abs (    52,   781)
+	 24: Rel (   -26,    24)  ->  Abs (    26,   805)
+	 25: Rel (     0,    19)  ->  Abs (    26,   824)
+	 26: Rel (     0,    18)  ->  Abs (    26,   842)
+	 27: Rel (    26,    24)  ->  Abs (    52,   866)
+	 28: Rel (    30,     0)  ->  Abs (    82,   866)
+	 29: Rel (   161,     0)  ->  Abs (   243,   866)
+	 30: Rel (     0,   124)  ->  Abs (   243,   990)
+	 31: Rel (     0,   117)  ->  Abs (   243,  1107)
+	 32: Rel (   135,   148)  ->  Abs (   378,  1255)
+	 33: Rel (    87,     0)  ->  Abs (   465,  1255)
+	 34: Rel (    68,     0)  ->  Abs (   533,  1255)
+	 35: Rel (    79,   -28)  ->  Abs (   612,  1227)
+	 36: Rel (    42,   -15)  ->  Abs (   654,  1212)
+	 37: Rel (     0,   -31)  ->  Abs (   654,  1181)
+	 38: Rel (     0,   -18)  ->  Abs (   654,  1163)
+	 39: Rel (   -22,   -23)  ->  Abs (   632,  1140)
+	 40: Rel (   -16,     0)  ->  Abs (   616,  1140)
+	 41: Rel (    -7,     0)  ->  Abs (   609,  1140)
+	 42: Rel (   -15,     5)  ->  Abs (   594,  1145)
+	 43: Rel (   -81,    25)  ->  Abs (   513,  1170)
+	 44: Rel (   -46,     0)  ->  Abs (   467,  1170)
+	 45: Rel (   -57,     0)  ->  Abs (   410,  1170)
+	 46: Rel (   -35,   -41)  ->  Abs (   375,  1129)
+	 47: Rel (   -47,   -56)  ->  Abs (   328,  1073)
+	 48: Rel (     0,   -83)  ->  Abs (   328,   990)
+	 49: Rel (     0,  -124)  ->  Abs (   328,   866)
+	 50: Rel (   149,     0)  ->  Abs (   477,   866)
+	 51: Rel (    30,     0)  ->  Abs (   507,   866)
+	 52: Rel (    26,   -24)  ->  Abs (   533,   842)
+	 53: Rel (     0,   -19)  ->  Abs (   533,   823)
+	 54: Rel (     0,   -18)  ->  Abs (   533,   805)
+	 55: Rel (   -26,   -24)  ->  Abs (   507,   781)
+	 56: Rel (   -30,     0)  ->  Abs (   477,   781)
+	 57: Rel (   519,    85)  ->  Abs (   996,   866)
+	 58: Rel (     0,  -782)  ->  Abs (   996,    84)
+	 59: Rel (   155,     0)  ->  Abs (  1151,    84)
+	 60: Rel (    31,     0)  ->  Abs (  1182,    84)
+	 61: Rel (    26,   -23)  ->  Abs (  1208,    61)
+	 62: Rel (     0,   -19)  ->  Abs (  1208,    42)
+	 63: Rel (     0,   -18)  ->  Abs (  1208,    24)
+	 64: Rel (   -26,   -24)  ->  Abs (  1182,     0)
+	 65: Rel (   -31,     0)  ->  Abs (  1151,     0)
+	 66: Rel (  -400,     0)  ->  Abs (   751,     0)
+	 67: Rel (   -30,     0)  ->  Abs (   721,     0)
+	 68: Rel (   -26,    24)  ->  Abs (   695,    24)
+	 69: Rel (     0,    18)  ->  Abs (   695,    42)
+	 70: Rel (     0,    19)  ->  Abs (   695,    61)
+	 71: Rel (    25,    23)  ->  Abs (   720,    84)
+	 72: Rel (    31,     0)  ->  Abs (   751,    84)
+	 73: Rel (   161,     0)  ->  Abs (   912,    84)
+	 74: Rel (     0,   697)  ->  Abs (   912,   781)
+	 75: Rel (  -119,     0)  ->  Abs (   793,   781)
+	 76: Rel (   -30,     0)  ->  Abs (   763,   781)
+	 77: Rel (   -26,    24)  ->  Abs (   737,   805)
+	 78: Rel (     0,    19)  ->  Abs (   737,   824)
+	 79: Rel (     0,    18)  ->  Abs (   737,   842)
+	 80: Rel (    26,    24)  ->  Abs (   763,   866)
+	 81: Rel (    30,     0)  ->  Abs (   793,   866)
+
+	Glyph 192: off = 0x0000DCA8, len = 446
+	  numberOfContours:	2
+	  xMin:			19
+	  yMin:			0
+	  xMax:			1218
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  52
+	  1:  77
+
+	  Length of Instructions:	239
+	00000: NPUSHB      (95):    41    21     1    24    18    21    78    25    25    34 
+	                            18    15     9    12    78    16    16    34     9    52 
+	                            46    49    78     0     0    34    46    68    62    65 
+	                            78    69    69    34    62     2     8     5    78     1 
+	                             1    34     8    55    61     0    58     1    58    78 
+	                            54    54    34    61    71    77    74    47    70    70 
+	                            34    77    37    33     1    31    59    36    93    40 
+	                            33    77    29     0    18    59    46    46    45    24 
+	                             6    62    61     9     8    10    33    33    78    79 
+	                            70    69    53    54    74 
+	00097: PUSHW[3]            395    33   362 
+	00104: NPUSHB       (9):    44    44     0     1    26    16    54    32    69 
+	00115: PUSHW[1]            432 
+	00118: PUSHB[8]             21   198     1    32    47    16     1    16 
+	00127: PUSHW[1]            491 
+	00130: PUSHB[4]             78   152    97    24 
+	00135: CALL       
+	00136: SRP0       
+	00137: MIRP[srp0,nmd,rd,2] 
+	00138: DELTAP1    
+	00139: MIRP[nrp0,md,rd,1] 
+	00140: MIRP[nrp0,nmd,rd,0] 
+	00141: MIRP[srp0,nmd,rd,0] 
+	00142: MIRP[nrp0,md,rd,1] 
+	00143: SRP0       
+	00144: ALIGNRP    
+	00145: SRP0       
+	00146: ALIGNRP    
+	00147: ALIGNRP    
+	00148: SRP0       
+	00149: MIRP[srp0,nmd,rd,0] 
+	00150: MIRP[nrp0,nmd,rd,2] 
+	00151: SRP0       
+	00152: ALIGNRP    
+	00153: SRP0       
+	00154: ALIGNRP    
+	00155: SRP1       
+	00156: SRP2       
+	00157: IP         
+	00158: MDAP[rd]   
+	00159: SVTCA[y-axis] 
+	00160: MIAP[rd+ci] 
+	00161: ALIGNRP    
+	00162: ALIGNRP    
+	00163: ALIGNRP    
+	00164: MIAP[rd+ci] 
+	00165: ALIGNRP    
+	00166: ALIGNRP    
+	00167: SRP0       
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: MIAP[rd+ci] 
+	00170: ALIGNRP    
+	00171: MIRP[srp0,md,rd,1] 
+	00172: MIRP[srp0,nmd,rd,0] 
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: SVTCA[x-axis] 
+	00175: SRP1       
+	00176: SRP2       
+	00177: IP         
+	00178: SVTCA[y-axis] 
+	00179: SRP0       
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: SVTCA[x-axis] 
+	00182: SRP0       
+	00183: MIRP[srp0,nmd,rd,1] 
+	00184: MDRP[srp0,nmd,rd,0] 
+	00185: ALIGNRP    
+	00186: SVTCA[y-axis] 
+	00187: SRP0       
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: SVTCA[x-axis] 
+	00190: SRP0       
+	00191: MIRP[srp0,nmd,rd,1] 
+	00192: DELTAP1    
+	00193: MDRP[srp0,nmd,rd,0] 
+	00194: ALIGNRP    
+	00195: SVTCA[y-axis] 
+	00196: SRP0       
+	00197: MIRP[nrp0,md,rd,1] 
+	00198: SVTCA[x-axis] 
+	00199: SRP0       
+	00200: MIRP[srp0,nmd,rd,1] 
+	00201: MDRP[srp0,nmd,rd,0] 
+	00202: ALIGNRP    
+	00203: SVTCA[y-axis] 
+	00204: SRP0       
+	00205: MIRP[nrp0,md,rd,1] 
+	00206: SVTCA[x-axis] 
+	00207: SRP0       
+	00208: MIRP[srp0,nmd,rd,1] 
+	00209: MDRP[srp0,nmd,rd,0] 
+	00210: ALIGNRP    
+	00211: SVTCA[y-axis] 
+	00212: SRP0       
+	00213: MIRP[nrp0,md,rd,1] 
+	00214: SVTCA[x-axis] 
+	00215: SRP0       
+	00216: MIRP[srp0,nmd,rd,1] 
+	00217: MDRP[srp0,nmd,rd,0] 
+	00218: ALIGNRP    
+	00219: SVTCA[y-axis] 
+	00220: SRP0       
+	00221: MIRP[nrp0,md,rd,1] 
+	00222: SVTCA[x-axis] 
+	00223: SRP0       
+	00224: MIRP[srp0,nmd,rd,1] 
+	00225: MDRP[srp0,nmd,rd,0] 
+	00226: ALIGNRP    
+	00227: SVTCA[y-axis] 
+	00228: SRP0       
+	00229: MIRP[nrp0,md,rd,1] 
+	00230: SVTCA[x-axis] 
+	00231: SRP0       
+	00232: MIRP[srp0,nmd,rd,1] 
+	00233: MDRP[srp0,nmd,rd,0] 
+	00234: ALIGNRP    
+	00235: IUP[y]     
+	00236: IUP[x]     
+	00237: SVTCA[x-axis] 
+	00238: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short X-Short On
+	 32:        XDual         Y-Short X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:                      Y-Short X-Short Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:  YDual               Y-Short X-Short On
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:                      Y-Short X-Short On
+	 43:                      Y-Short X-Short Off
+	 44:        XDual         Y-Short         On
+	 45:        XDual         Y-Short         On
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:        XDual         Y-Short X-Short Off
+	 49:        XDual         Y-Short         On
+	 50:        XDual         Y-Short         Off
+	 51:                      Y-Short X-Short Off
+	 52:  YDual                       X-Short On
+	 53:                                      On
+	 54:        XDual                         On
+	 55:  YDual XDual                 X-Short On
+	 56:  YDual XDual                 X-Short Off
+	 57:        XDual         Y-Short X-Short Off
+	 58:        XDual         Y-Short         On
+	 59:        XDual         Y-Short         Off
+	 60:                      Y-Short X-Short Off
+	 61:  YDual                       X-Short On
+	 62:  YDual                               On
+	 63:  YDual                       X-Short Off
+	 64:  YDual               Y-Short X-Short Off
+	 65:  YDual XDual         Y-Short         On
+	 66:  YDual XDual         Y-Short         Off
+	 67:  YDual XDual         Y-Short X-Short Off
+	 68:  YDual XDual                 X-Short On
+	 69:  YDual XDual                 X-Short On
+	 70:        XDual                         On
+	 71:  YDual                       X-Short On
+	 72:  YDual                       X-Short Off
+	 73:  YDual               Y-Short X-Short Off
+	 74:  YDual XDual         Y-Short         On
+	 75:  YDual XDual         Y-Short         Off
+	 76:  YDual XDual         Y-Short X-Short Off
+	 77:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   333,   781)  ->  Abs (   333,   781)
+	  1: Rel (     0,  -697)  ->  Abs (   333,    84)
+	  2: Rel (   149,     0)  ->  Abs (   482,    84)
+	  3: Rel (    30,     0)  ->  Abs (   512,    84)
+	  4: Rel (    26,   -23)  ->  Abs (   538,    61)
+	  5: Rel (     0,   -19)  ->  Abs (   538,    42)
+	  6: Rel (     0,   -18)  ->  Abs (   538,    24)
+	  7: Rel (   -26,   -24)  ->  Abs (   512,     0)
+	  8: Rel (   -30,     0)  ->  Abs (   482,     0)
+	  9: Rel (  -407,     0)  ->  Abs (    75,     0)
+	 10: Rel (   -30,     0)  ->  Abs (    45,     0)
+	 11: Rel (   -26,    24)  ->  Abs (    19,    24)
+	 12: Rel (     0,    18)  ->  Abs (    19,    42)
+	 13: Rel (     0,    19)  ->  Abs (    19,    61)
+	 14: Rel (    26,    23)  ->  Abs (    45,    84)
+	 15: Rel (    30,     0)  ->  Abs (    75,    84)
+	 16: Rel (   173,     0)  ->  Abs (   248,    84)
+	 17: Rel (     0,   697)  ->  Abs (   248,   781)
+	 18: Rel (  -161,     0)  ->  Abs (    87,   781)
+	 19: Rel (   -30,     0)  ->  Abs (    57,   781)
+	 20: Rel (   -26,    24)  ->  Abs (    31,   805)
+	 21: Rel (     0,    19)  ->  Abs (    31,   824)
+	 22: Rel (     0,    18)  ->  Abs (    31,   842)
+	 23: Rel (    26,    24)  ->  Abs (    57,   866)
+	 24: Rel (    30,     0)  ->  Abs (    87,   866)
+	 25: Rel (   161,     0)  ->  Abs (   248,   866)
+	 26: Rel (     0,   124)  ->  Abs (   248,   990)
+	 27: Rel (     0,   117)  ->  Abs (   248,  1107)
+	 28: Rel (   135,   148)  ->  Abs (   383,  1255)
+	 29: Rel (    87,     0)  ->  Abs (   470,  1255)
+	 30: Rel (    68,     0)  ->  Abs (   538,  1255)
+	 31: Rel (    79,   -28)  ->  Abs (   617,  1227)
+	 32: Rel (    42,   -15)  ->  Abs (   659,  1212)
+	 33: Rel (     0,   -31)  ->  Abs (   659,  1181)
+	 34: Rel (     0,   -18)  ->  Abs (   659,  1163)
+	 35: Rel (   -22,   -23)  ->  Abs (   637,  1140)
+	 36: Rel (   -16,     0)  ->  Abs (   621,  1140)
+	 37: Rel (    -7,     0)  ->  Abs (   614,  1140)
+	 38: Rel (   -15,     5)  ->  Abs (   599,  1145)
+	 39: Rel (   -81,    25)  ->  Abs (   518,  1170)
+	 40: Rel (   -46,     0)  ->  Abs (   472,  1170)
+	 41: Rel (   -57,     0)  ->  Abs (   415,  1170)
+	 42: Rel (   -35,   -41)  ->  Abs (   380,  1129)
+	 43: Rel (   -47,   -56)  ->  Abs (   333,  1073)
+	 44: Rel (     0,   -83)  ->  Abs (   333,   990)
+	 45: Rel (     0,  -124)  ->  Abs (   333,   866)
+	 46: Rel (   149,     0)  ->  Abs (   482,   866)
+	 47: Rel (    30,     0)  ->  Abs (   512,   866)
+	 48: Rel (    26,   -24)  ->  Abs (   538,   842)
+	 49: Rel (     0,   -19)  ->  Abs (   538,   823)
+	 50: Rel (     0,   -18)  ->  Abs (   538,   805)
+	 51: Rel (   -26,   -24)  ->  Abs (   512,   781)
+	 52: Rel (   -30,     0)  ->  Abs (   482,   781)
+	 53: Rel (   518,   474)  ->  Abs (  1000,  1255)
+	 54: Rel (     0, -1171)  ->  Abs (  1000,    84)
+	 55: Rel (   161,     0)  ->  Abs (  1161,    84)
+	 56: Rel (    31,     0)  ->  Abs (  1192,    84)
+	 57: Rel (    26,   -23)  ->  Abs (  1218,    61)
+	 58: Rel (     0,   -19)  ->  Abs (  1218,    42)
+	 59: Rel (     0,   -18)  ->  Abs (  1218,    24)
+	 60: Rel (   -26,   -24)  ->  Abs (  1192,     0)
+	 61: Rel (   -31,     0)  ->  Abs (  1161,     0)
+	 62: Rel (  -406,     0)  ->  Abs (   755,     0)
+	 63: Rel (   -30,     0)  ->  Abs (   725,     0)
+	 64: Rel (   -26,    24)  ->  Abs (   699,    24)
+	 65: Rel (     0,    18)  ->  Abs (   699,    42)
+	 66: Rel (     0,    19)  ->  Abs (   699,    61)
+	 67: Rel (    25,    23)  ->  Abs (   724,    84)
+	 68: Rel (    31,     0)  ->  Abs (   755,    84)
+	 69: Rel (   161,     0)  ->  Abs (   916,    84)
+	 70: Rel (     0,  1086)  ->  Abs (   916,  1170)
+	 71: Rel (  -119,     0)  ->  Abs (   797,  1170)
+	 72: Rel (   -30,     0)  ->  Abs (   767,  1170)
+	 73: Rel (   -26,    24)  ->  Abs (   741,  1194)
+	 74: Rel (     0,    19)  ->  Abs (   741,  1213)
+	 75: Rel (     0,    18)  ->  Abs (   741,  1231)
+	 76: Rel (    26,    24)  ->  Abs (   767,  1255)
+	 77: Rel (    30,     0)  ->  Abs (   797,  1255)
+
+	Glyph 193: off = 0x0000DE66, len = 274
+	  numberOfContours:	1
+	  xMin:			251
+	  yMin:			-130
+	  xMax:			978
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  49
+
+	  Length of Instructions:	130
+	00000: NPUSHB      (35):     8     2     5   181     9     9    50     2    24    18 
+	                            21   181    25    25    50    18    33    27    30   181 
+	                            34    34    50    27    49    43    46   181     0     0 
+	                            50    43    38     0    13 
+	00037: PUSHW[1]            368 
+	00040: PUSHB[3]             18    91     2 
+	00044: PUSHW[1]            371 
+	00047: NPUSHB      (25):    27    91    43    43    42    34     6     9    52    10 
+	                            52     0    52    41    36    35    16    35    34    25 
+	                            25    50   101   169    24 
+	00074: CALL       
+	00075: FLIPOFF    
+	00076: SRP0       
+	00077: MIRP[srp0,nmd,rd,0] 
+	00078: ALIGNRP    
+	00079: ALIGNRP    
+	00080: ALIGNRP    
+	00081: FLIPON     
+	00082: SRP0       
+	00083: MIRP[srp0,md,rd,1] 
+	00084: MIRP[nrp0,nmd,rd,0] 
+	00085: MIRP[nrp0,nmd,rd,0] 
+	00086: MIRP[nrp0,nmd,rd,0] 
+	00087: SVTCA[y-axis] 
+	00088: MIAP[rd+ci] 
+	00089: ALIGNRP    
+	00090: ALIGNRP    
+	00091: SRP0       
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: MIRP[srp0,nmd,rd,0] 
+	00094: MIRP[nrp0,md,rd,1] 
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: MIAP[rd+ci] 
+	00097: SRP0       
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: SVTCA[x-axis] 
+	00100: SRP0       
+	00101: MIRP[srp0,nmd,rd,1] 
+	00102: MDRP[srp0,nmd,rd,0] 
+	00103: ALIGNRP    
+	00104: SVTCA[y-axis] 
+	00105: SRP0       
+	00106: MIRP[nrp0,md,rd,1] 
+	00107: SVTCA[x-axis] 
+	00108: SRP0       
+	00109: MIRP[srp0,nmd,rd,1] 
+	00110: MDRP[srp0,nmd,rd,0] 
+	00111: ALIGNRP    
+	00112: SVTCA[y-axis] 
+	00113: SRP0       
+	00114: MIRP[nrp0,md,rd,1] 
+	00115: SVTCA[x-axis] 
+	00116: SRP0       
+	00117: MIRP[srp0,nmd,rd,1] 
+	00118: MDRP[srp0,nmd,rd,0] 
+	00119: ALIGNRP    
+	00120: SVTCA[y-axis] 
+	00121: SRP0       
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: SVTCA[x-axis] 
+	00124: SRP0       
+	00125: MIRP[srp0,nmd,rd,1] 
+	00126: MDRP[srp0,nmd,rd,0] 
+	00127: ALIGNRP    
+	00128: IUP[y]     
+	00129: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:        XDual                         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:        XDual                         On
+	 18:  YDual                               On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual                               On
+	 26:        XDual                         On
+	 27:  YDual                               On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual                               On
+	 35:        XDual                         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:                              X-Short On
+	 43:  YDual                               On
+	 44:  YDual XDual                 X-Short Off
+	 45:        XDual         Y-Short X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual         Y-Short         Off
+	 48:                      Y-Short X-Short Off
+	 49:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   656,   784)  ->  Abs (   656,   784)
+	  1: Rel (     0,  -435)  ->  Abs (   656,   349)
+	  2: Rel (   265,     0)  ->  Abs (   921,   349)
+	  3: Rel (    31,     0)  ->  Abs (   952,   349)
+	  4: Rel (    26,   -24)  ->  Abs (   978,   325)
+	  5: Rel (     0,   -19)  ->  Abs (   978,   306)
+	  6: Rel (     0,   -18)  ->  Abs (   978,   288)
+	  7: Rel (   -26,   -24)  ->  Abs (   952,   264)
+	  8: Rel (   -31,     0)  ->  Abs (   921,   264)
+	  9: Rel (  -265,     0)  ->  Abs (   656,   264)
+	 10: Rel (     0,  -337)  ->  Abs (   656,   -73)
+	 11: Rel (     0,   -31)  ->  Abs (   656,  -104)
+	 12: Rel (   -23,   -26)  ->  Abs (   633,  -130)
+	 13: Rel (   -19,     0)  ->  Abs (   614,  -130)
+	 14: Rel (   -18,     0)  ->  Abs (   596,  -130)
+	 15: Rel (   -24,    26)  ->  Abs (   572,  -104)
+	 16: Rel (     0,    31)  ->  Abs (   572,   -73)
+	 17: Rel (     0,   337)  ->  Abs (   572,   264)
+	 18: Rel (  -265,     0)  ->  Abs (   307,   264)
+	 19: Rel (   -30,     0)  ->  Abs (   277,   264)
+	 20: Rel (   -26,    24)  ->  Abs (   251,   288)
+	 21: Rel (     0,    19)  ->  Abs (   251,   307)
+	 22: Rel (     0,    18)  ->  Abs (   251,   325)
+	 23: Rel (    26,    24)  ->  Abs (   277,   349)
+	 24: Rel (    30,     0)  ->  Abs (   307,   349)
+	 25: Rel (   265,     0)  ->  Abs (   572,   349)
+	 26: Rel (     0,   435)  ->  Abs (   572,   784)
+	 27: Rel (  -265,     0)  ->  Abs (   307,   784)
+	 28: Rel (   -30,     0)  ->  Abs (   277,   784)
+	 29: Rel (   -26,    24)  ->  Abs (   251,   808)
+	 30: Rel (     0,    19)  ->  Abs (   251,   827)
+	 31: Rel (     0,    18)  ->  Abs (   251,   845)
+	 32: Rel (    26,    24)  ->  Abs (   277,   869)
+	 33: Rel (    30,     0)  ->  Abs (   307,   869)
+	 34: Rel (   265,     0)  ->  Abs (   572,   869)
+	 35: Rel (     0,   329)  ->  Abs (   572,  1198)
+	 36: Rel (     0,    31)  ->  Abs (   572,  1229)
+	 37: Rel (    24,    26)  ->  Abs (   596,  1255)
+	 38: Rel (    18,     0)  ->  Abs (   614,  1255)
+	 39: Rel (    19,     0)  ->  Abs (   633,  1255)
+	 40: Rel (    24,   -26)  ->  Abs (   657,  1229)
+	 41: Rel (     0,   -31)  ->  Abs (   657,  1198)
+	 42: Rel (    -1,  -329)  ->  Abs (   656,   869)
+	 43: Rel (   265,     0)  ->  Abs (   921,   869)
+	 44: Rel (    31,     0)  ->  Abs (   952,   869)
+	 45: Rel (    26,   -24)  ->  Abs (   978,   845)
+	 46: Rel (     0,   -19)  ->  Abs (   978,   826)
+	 47: Rel (     0,   -18)  ->  Abs (   978,   808)
+	 48: Rel (   -26,   -24)  ->  Abs (   952,   784)
+	 49: Rel (   -31,     0)  ->  Abs (   921,   784)
+
+	Glyph 194: off = 0x0000DF78, len = 82
+	  numberOfContours:	1
+	  xMin:			461
+	  yMin:			501
+	  xMax:			769
+	  yMax:			772
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	32
+	00000: PUSHW[5]              0   315     8     4   315 
+	00011: PUSHB[4]             11    25    14   109 
+	00016: PUSHW[2]            286    24 
+	00021: CALL       
+	00022: FLIPOFF    
+	00023: SRP0       
+	00024: MIRP[srp0,nmd,rd,0] 
+	00025: FLIPON     
+	00026: MIRP[nrp0,md,rd,1] 
+	00027: SVTCA[y-axis] 
+	00028: MDAP[rd]   
+	00029: MIRP[nrp0,md,rd,1] 
+	00030: IUP[y]     
+	00031: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   597,   772)  ->  Abs (   597,   772)
+	  1: Rel (    36,     0)  ->  Abs (   633,   772)
+	  2: Rel (    56,     0)  ->  Abs (   689,   772)
+	  3: Rel (    80,   -79)  ->  Abs (   769,   693)
+	  4: Rel (     0,   -56)  ->  Abs (   769,   637)
+	  5: Rel (     0,   -58)  ->  Abs (   769,   579)
+	  6: Rel (   -81,   -78)  ->  Abs (   688,   501)
+	  7: Rel (   -55,     0)  ->  Abs (   633,   501)
+	  8: Rel (   -36,     0)  ->  Abs (   597,   501)
+	  9: Rel (   -56,     0)  ->  Abs (   541,   501)
+	 10: Rel (   -80,    79)  ->  Abs (   461,   580)
+	 11: Rel (     0,    56)  ->  Abs (   461,   636)
+	 12: Rel (     0,    58)  ->  Abs (   461,   694)
+	 13: Rel (    81,    78)  ->  Abs (   542,   772)
+
+	Glyph 195: off = 0x0000DFCA, len = 82
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-325
+	  xMax:			422
+	  yMax:			277
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	38
+	00000: NPUSHB      (10):     4   182     1     9   193     2   243     0   178     1 
+	00012: PUSHW[1]            535 
+	00015: PUSHB[3]             10     1   109 
+	00019: PUSHW[2]            285    24 
+	00024: CALL       
+	00025: SVTCA[y-axis] 
+	00026: MDAP[rd]   
+	00027: SVTCA[x-axis] 
+	00028: SRP0       
+	00029: MIRP[srp0,md,rd,1] 
+	00030: MIRP[nrp0,md,rd,1] 
+	00031: MIRP[srp0,nmd,rd,0] 
+	00032: MIRP[nrp0,md,rd,1] 
+	00033: SVTCA[y-axis] 
+	00034: SRP0       
+	00035: MIRP[nrp0,md,rd,1] 
+	00036: IUP[y]     
+	00037: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:                                      On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   149,   277)  ->  Abs (   149,   277)
+	  1: Rel (   273,     0)  ->  Abs (   422,   277)
+	  2: Rel (  -297,  -551)  ->  Abs (   125,  -274)
+	  3: Rel (   -27,   -51)  ->  Abs (    98,  -325)
+	  4: Rel (   -38,     0)  ->  Abs (    60,  -325)
+	  5: Rel (   -25,     0)  ->  Abs (    35,  -325)
+	  6: Rel (   -35,    36)  ->  Abs (     0,  -289)
+	  7: Rel (     0,    25)  ->  Abs (     0,  -264)
+	  8: Rel (     0,    10)  ->  Abs (     0,  -254)
+	  9: Rel (     3,    12)  ->  Abs (     3,  -242)
+
+	Glyph 196: off = 0x0000E01C, len = 148
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			-260
+	  xMax:			830
+	  yMax:			256
+
+	EndPoints
+	---------
+	  0:  9
+	  1:  19
+
+	  Length of Instructions:	74
+	00000: NPUSHB      (20):     8    18    11     4    14   255    10    10     1    19 
+	                            91    12    10   116    11   243    32    12     1    12 
+	00022: PUSHW[1]            755 
+	00025: NPUSHB      (18):    21     9    91     2     0   116     1   243    32     2 
+	                             1     2   218    20     1   250   171    24 
+	00045: CALL       
+	00046: SVTCA[y-axis] 
+	00047: MDAP[rd]   
+	00048: SVTCA[x-axis] 
+	00049: SRP0       
+	00050: MIRP[srp0,nmd,rd,0] 
+	00051: DELTAP1    
+	00052: MIRP[srp0,nmd,rd,0] 
+	00053: MIRP[nrp0,md,rd,1] 
+	00054: SRP0       
+	00055: MIRP[nrp0,md,rd,1] 
+	00056: SRP0       
+	00057: MIRP[srp0,nmd,rd,2] 
+	00058: DELTAP1    
+	00059: MIRP[srp0,nmd,rd,0] 
+	00060: MIRP[nrp0,md,rd,1] 
+	00061: SRP0       
+	00062: MIRP[nrp0,md,rd,1] 
+	00063: SVTCA[y-axis] 
+	00064: SRP0       
+	00065: ALIGNRP    
+	00066: SRP0       
+	00067: MIRP[srp0,md,rd,1] 
+	00068: ALIGNRP    
+	00069: SRP1       
+	00070: IP         
+	00071: IP         
+	00072: IUP[y]     
+	00073: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:                                      On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:                                      On
+	 11:  YDual XDual                 X-Short On
+	 12:                                      On
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   181,   256)  ->  Abs (   181,   256)
+	  1: Rel (   217,     0)  ->  Abs (   398,   256)
+	  2: Rel (  -293,  -476)  ->  Abs (   105,  -220)
+	  3: Rel (   -24,   -40)  ->  Abs (    81,  -260)
+	  4: Rel (   -30,     0)  ->  Abs (    51,  -260)
+	  5: Rel (   -21,     0)  ->  Abs (    30,  -260)
+	  6: Rel (   -30,    30)  ->  Abs (     0,  -230)
+	  7: Rel (     0,    20)  ->  Abs (     0,  -210)
+	  8: Rel (     0,    13)  ->  Abs (     0,  -197)
+	  9: Rel (     9,    23)  ->  Abs (     9,  -174)
+	 10: Rel (   604,   430)  ->  Abs (   613,   256)
+	 11: Rel (   217,     0)  ->  Abs (   830,   256)
+	 12: Rel (  -292,  -476)  ->  Abs (   538,  -220)
+	 13: Rel (   -25,   -40)  ->  Abs (   513,  -260)
+	 14: Rel (   -29,     0)  ->  Abs (   484,  -260)
+	 15: Rel (   -22,     0)  ->  Abs (   462,  -260)
+	 16: Rel (   -30,    30)  ->  Abs (   432,  -230)
+	 17: Rel (     0,    20)  ->  Abs (   432,  -210)
+	 18: Rel (     0,    13)  ->  Abs (   432,  -197)
+	 19: Rel (    10,    23)  ->  Abs (   442,  -174)
+
+	Glyph 197: off = 0x0000E0B0, len = 642
+	  numberOfContours:	7
+	  xMin:			61
+	  yMin:			-21
+	  xMax:			1162
+	  yMax:			1279
+
+	EndPoints
+	---------
+	  0:  14
+	  1:  26
+	  2:  46
+	  3:  61
+	  4:  73
+	  5:  88
+	  6:  100
+
+	  Length of Instructions:	355
+	00000: NPUSHB      (31):    99    64    25    29    52    91    64    25    29    52 
+	                            72    64    25    29    52    64    64    25    29    52 
+	                            25    64    25    29    52    17    64    25    29    52 
+	                            97 
+	00033: PUSHW[1]            -64 
+	00036: PUSHB[4]             25    29    52    93 
+	00041: PUSHW[1]            -64 
+	00044: PUSHB[4]             25    29    52    70 
+	00049: PUSHW[1]            -64 
+	00052: PUSHB[4]             25    29    52    67 
+	00057: PUSHW[1]            -64 
+	00060: PUSHB[4]             25    29    52    66 
+	00065: PUSHW[1]            -64 
+	00068: PUSHB[4]             25    29    52    23 
+	00073: PUSHW[1]            -64 
+	00076: PUSHB[4]             25    29    52    19 
+	00081: PUSHW[1]            -64 
+	00084: NPUSHB      (84):    25    29    52    79    80    79    83    79    89     3 
+	                            78     0    74     6    76     9    78    15    77    47 
+	                            76    53    76    56    77    62    79    74     9   104 
+	                            10   104    57   104    79   104    84     4    63    80 
+	                            63    83    63    89    90     9    92    56    90    80 
+	                            92    83     7    62     0    58     6    60     9    62 
+	                            15    61    47    60    53    60    56    61    62    63 
+	                            74     9    72    10    72    57    72    79    72    84 
+	                             4    29    77    37 
+	00170: PUSHW[1]            775 
+	00173: PUSHB[4]             33    45    77    40 
+	00178: PUSHW[1]            775 
+	00181: NPUSHB      (11):    43    33    33    58    43    43     4    58    92    55 
+	                            85 
+	00194: PUSHW[1]            515 
+	00197: PUSHB[6]             98    55    78    65    55    58 
+	00204: PUSHW[1]            515 
+	00207: PUSHB[6]             71    55    51    24    55     4 
+	00214: PUSHW[1]            515 
+	00217: PUSHB[6]             18    55    11    15    55     0 
+	00224: PUSHW[1]            698 
+	00227: PUSHB[5]             21    55     8    25    33 
+	00233: PUSHW[1]            303 
+	00236: PUSHB[6]            101    43   177    89    55    74 
+	00243: PUSHW[1]            698 
+	00246: NPUSHB      (10):    95    55     0    82     1    82   232    62    55    47 
+	00258: PUSHW[1]            698 
+	00261: PUSHB[3]             68    55    55 
+	00265: PUSHW[1]            697 
+	00268: PUSHB[8]            101    78    11    51    11    11     0   176 
+	00277: PUSHW[2]            339    24 
+	00282: CALL       
+	00283: SVTCA[y-axis] 
+	00284: MIAP[rd+ci] 
+	00285: MIAP[rd+ci] 
+	00286: MIAP[rd+ci] 
+	00287: SVTCA[x-axis] 
+	00288: SRP0       
+	00289: MIRP[srp0,nmd,rd,2] 
+	00290: MIRP[nrp0,md,rd,1] 
+	00291: MIRP[srp0,md,rd,1] 
+	00292: MIRP[nrp0,md,rd,1] 
+	00293: MIRP[srp0,nmd,rd,2] 
+	00294: DELTAP1    
+	00295: MIRP[nrp0,md,rd,1] 
+	00296: MIRP[srp0,md,rd,1] 
+	00297: MIRP[nrp0,md,rd,1] 
+	00298: MIRP[nrp0,nmd,rd,0] 
+	00299: SRP0       
+	00300: MIRP[nrp0,nmd,rd,2] 
+	00301: FLIPOFF    
+	00302: MIRP[srp0,nmd,rd,0] 
+	00303: FLIPON     
+	00304: MIRP[nrp0,md,rd,1] 
+	00305: MIRP[srp0,md,rd,1] 
+	00306: MIRP[nrp0,md,rd,1] 
+	00307: SVTCA[y-axis] 
+	00308: SRP0       
+	00309: MIRP[nrp0,md,rd,1] 
+	00310: MIRP[srp0,md,rd,1] 
+	00311: MIRP[nrp0,md,rd,1] 
+	00312: SRP0       
+	00313: MIRP[nrp0,md,rd,1] 
+	00314: MIRP[srp0,md,rd,1] 
+	00315: MIRP[nrp0,md,rd,1] 
+	00316: SRP0       
+	00317: MIRP[nrp0,md,rd,1] 
+	00318: MIRP[srp0,md,rd,1] 
+	00319: MIRP[nrp0,md,rd,1] 
+	00320: SRP1       
+	00321: SRP2       
+	00322: IP         
+	00323: MDAP[rd]   
+	00324: SRP1       
+	00325: IP         
+	00326: MDAP[rd]   
+	00327: SRP0       
+	00328: MIRP[srp0,md,rd,1] 
+	00329: MIRP[nrp0,md,rd,1] 
+	00330: SRP0       
+	00331: MIRP[srp0,md,rd,1] 
+	00332: MIRP[nrp0,md,rd,1] 
+	00333: IUP[y]     
+	00334: IUP[x]     
+	00335: SVTCA[x-axis] 
+	00336: DELTAP1    
+	00337: DELTAP1    
+	00338: DELTAP1    
+	00339: DELTAP1    
+	00340: DELTAP1    
+	00341: DELTAP1    
+	00342: CALL       
+	00343: CALL       
+	00344: CALL       
+	00345: CALL       
+	00346: CALL       
+	00347: CALL       
+	00348: CALL       
+	00349: CALL       
+	00350: CALL       
+	00351: CALL       
+	00352: CALL       
+	00353: CALL       
+	00354: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:                      Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:                      Y-Short         On
+	 28:                      Y-Short         On
+	 29:                      Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short X-Short On
+	 38:  YDual               Y-Short         On
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:        XDual         Y-Short X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:                      Y-Short X-Short On
+	 46:                      Y-Short X-Short Off
+	 47:                                      On
+	 48:        XDual         Y-Short         Off
+	 49:                      Y-Short X-Short On
+	 50:                      Y-Short X-Short Off
+	 51:  YDual                       X-Short On
+	 52:  YDual                       X-Short Off
+	 53:  YDual               Y-Short X-Short On
+	 54:  YDual               Y-Short X-Short Off
+	 55:  YDual XDual         Y-Short         On
+	 56:  YDual XDual         Y-Short         Off
+	 57:  YDual XDual         Y-Short X-Short Off
+	 58:  YDual XDual                 X-Short On
+	 59:  YDual XDual                 X-Short Off
+	 60:        XDual         Y-Short X-Short On
+	 61:        XDual         Y-Short X-Short Off
+	 62:                      Y-Short X-Short On
+	 63:  YDual XDual         Y-Short         Off
+	 64:  YDual               Y-Short X-Short Off
+	 65:  YDual                       X-Short On
+	 66:  YDual                       X-Short Off
+	 67:                      Y-Short X-Short Off
+	 68:        XDual         Y-Short         On
+	 69:        XDual         Y-Short         Off
+	 70:        XDual         Y-Short X-Short Off
+	 71:  YDual XDual                 X-Short On
+	 72:  YDual XDual                 X-Short Off
+	 73:  YDual XDual         Y-Short X-Short Off
+	 74:  YDual               Y-Short         On
+	 75:        XDual         Y-Short         Off
+	 76:                      Y-Short X-Short On
+	 77:                      Y-Short X-Short Off
+	 78:  YDual                       X-Short On
+	 79:  YDual                       X-Short Off
+	 80:  YDual               Y-Short X-Short On
+	 81:  YDual               Y-Short X-Short Off
+	 82:  YDual XDual         Y-Short         On
+	 83:  YDual XDual         Y-Short         Off
+	 84:  YDual XDual         Y-Short X-Short Off
+	 85:  YDual XDual                 X-Short On
+	 86:  YDual XDual                 X-Short Off
+	 87:        XDual         Y-Short X-Short On
+	 88:        XDual         Y-Short X-Short Off
+	 89:                      Y-Short X-Short On
+	 90:  YDual XDual         Y-Short         Off
+	 91:  YDual               Y-Short X-Short Off
+	 92:  YDual                       X-Short On
+	 93:  YDual                       X-Short Off
+	 94:                      Y-Short X-Short Off
+	 95:        XDual         Y-Short         On
+	 96:        XDual         Y-Short         Off
+	 97:        XDual         Y-Short X-Short Off
+	 98:  YDual XDual                 X-Short On
+	 99:  YDual XDual                 X-Short Off
+	100:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   431,  1060)  ->  Abs (   431,  1060)
+	  1: Rel (     0,   -66)  ->  Abs (   431,   994)
+	  2: Rel (   -47,   -64)  ->  Abs (   384,   930)
+	  3: Rel (   -63,   -89)  ->  Abs (   321,   841)
+	  4: Rel (   -75,     0)  ->  Abs (   246,   841)
+	  5: Rel (   -75,     0)  ->  Abs (   171,   841)
+	  6: Rel (   -63,    88)  ->  Abs (   108,   929)
+	  7: Rel (   -47,    65)  ->  Abs (    61,   994)
+	  8: Rel (     0,    66)  ->  Abs (    61,  1060)
+	  9: Rel (     0,    67)  ->  Abs (    61,  1127)
+	 10: Rel (   111,   152)  ->  Abs (   172,  1279)
+	 11: Rel (    74,     0)  ->  Abs (   246,  1279)
+	 12: Rel (    75,     0)  ->  Abs (   321,  1279)
+	 13: Rel (    63,   -88)  ->  Abs (   384,  1191)
+	 14: Rel (    47,   -65)  ->  Abs (   431,  1126)
+	 15: Rel (   -62,   -66)  ->  Abs (   369,  1060)
+	 16: Rel (     0,    55)  ->  Abs (   369,  1115)
+	 17: Rel (   -89,   103)  ->  Abs (   280,  1218)
+	 18: Rel (   -34,     0)  ->  Abs (   246,  1218)
+	 19: Rel (   -34,     0)  ->  Abs (   212,  1218)
+	 20: Rel (   -89,  -103)  ->  Abs (   123,  1115)
+	 21: Rel (     0,   -55)  ->  Abs (   123,  1060)
+	 22: Rel (     0,   -54)  ->  Abs (   123,  1006)
+	 23: Rel (    90,  -104)  ->  Abs (   213,   902)
+	 24: Rel (    33,     0)  ->  Abs (   246,   902)
+	 25: Rel (    33,     0)  ->  Abs (   279,   902)
+	 26: Rel (    90,   103)  ->  Abs (   369,  1005)
+	 27: Rel (   646,  -195)  ->  Abs (  1015,   810)
+	 28: Rel (  -778,  -253)  ->  Abs (   237,   557)
+	 29: Rel (   -13,    -5)  ->  Abs (   224,   552)
+	 30: Rel (    -8,     0)  ->  Abs (   216,   552)
+	 31: Rel (   -10,     0)  ->  Abs (   206,   552)
+	 32: Rel (   -18,    18)  ->  Abs (   188,   570)
+	 33: Rel (     0,    12)  ->  Abs (   188,   582)
+	 34: Rel (     0,    11)  ->  Abs (   188,   593)
+	 35: Rel (     8,     9)  ->  Abs (   196,   602)
+	 36: Rel (     4,     6)  ->  Abs (   200,   608)
+	 37: Rel (    19,     6)  ->  Abs (   219,   614)
+	 38: Rel (   778,   253)  ->  Abs (   997,   867)
+	 39: Rel (    13,     5)  ->  Abs (  1010,   872)
+	 40: Rel (     8,     0)  ->  Abs (  1018,   872)
+	 41: Rel (    10,     0)  ->  Abs (  1028,   872)
+	 42: Rel (    18,   -18)  ->  Abs (  1046,   854)
+	 43: Rel (     0,   -12)  ->  Abs (  1046,   842)
+	 44: Rel (     0,   -11)  ->  Abs (  1046,   831)
+	 45: Rel (    -8,    -9)  ->  Abs (  1038,   822)
+	 46: Rel (    -4,    -6)  ->  Abs (  1034,   816)
+	 47: Rel (  -410,  -618)  ->  Abs (   624,   198)
+	 48: Rel (     0,   -66)  ->  Abs (   624,   132)
+	 49: Rel (   -46,   -65)  ->  Abs (   578,    67)
+	 50: Rel (   -64,   -88)  ->  Abs (   514,   -21)
+	 51: Rel (   -75,     0)  ->  Abs (   439,   -21)
+	 52: Rel (   -75,     0)  ->  Abs (   364,   -21)
+	 53: Rel (   -62,    87)  ->  Abs (   302,    66)
+	 54: Rel (   -48,    66)  ->  Abs (   254,   132)
+	 55: Rel (     0,    66)  ->  Abs (   254,   198)
+	 56: Rel (     0,    66)  ->  Abs (   254,   264)
+	 57: Rel (   111,   152)  ->  Abs (   365,   416)
+	 58: Rel (    74,     0)  ->  Abs (   439,   416)
+	 59: Rel (    75,     0)  ->  Abs (   514,   416)
+	 60: Rel (    64,   -88)  ->  Abs (   578,   328)
+	 61: Rel (    46,   -64)  ->  Abs (   624,   264)
+	 62: Rel (   -61,   -66)  ->  Abs (   563,   198)
+	 63: Rel (     0,    54)  ->  Abs (   563,   252)
+	 64: Rel (   -90,   104)  ->  Abs (   473,   356)
+	 65: Rel (   -33,     0)  ->  Abs (   440,   356)
+	 66: Rel (   -34,     0)  ->  Abs (   406,   356)
+	 67: Rel (   -90,  -104)  ->  Abs (   316,   252)
+	 68: Rel (     0,   -54)  ->  Abs (   316,   198)
+	 69: Rel (     0,   -55)  ->  Abs (   316,   143)
+	 70: Rel (    90,  -104)  ->  Abs (   406,    39)
+	 71: Rel (    34,     0)  ->  Abs (   440,    39)
+	 72: Rel (    33,     0)  ->  Abs (   473,    39)
+	 73: Rel (    90,   104)  ->  Abs (   563,   143)
+	 74: Rel (   599,    55)  ->  Abs (  1162,   198)
+	 75: Rel (     0,   -66)  ->  Abs (  1162,   132)
+	 76: Rel (   -47,   -65)  ->  Abs (  1115,    67)
+	 77: Rel (   -63,   -88)  ->  Abs (  1052,   -21)
+	 78: Rel (   -75,     0)  ->  Abs (   977,   -21)
+	 79: Rel (   -75,     0)  ->  Abs (   902,   -21)
+	 80: Rel (   -63,    87)  ->  Abs (   839,    66)
+	 81: Rel (   -47,    66)  ->  Abs (   792,   132)
+	 82: Rel (     0,    66)  ->  Abs (   792,   198)
+	 83: Rel (     0,    66)  ->  Abs (   792,   264)
+	 84: Rel (   111,   152)  ->  Abs (   903,   416)
+	 85: Rel (    74,     0)  ->  Abs (   977,   416)
+	 86: Rel (    75,     0)  ->  Abs (  1052,   416)
+	 87: Rel (    63,   -88)  ->  Abs (  1115,   328)
+	 88: Rel (    47,   -64)  ->  Abs (  1162,   264)
+	 89: Rel (   -62,   -66)  ->  Abs (  1100,   198)
+	 90: Rel (     0,    54)  ->  Abs (  1100,   252)
+	 91: Rel (   -89,   104)  ->  Abs (  1011,   356)
+	 92: Rel (   -34,     0)  ->  Abs (   977,   356)
+	 93: Rel (   -34,     0)  ->  Abs (   943,   356)
+	 94: Rel (   -89,  -104)  ->  Abs (   854,   252)
+	 95: Rel (     0,   -54)  ->  Abs (   854,   198)
+	 96: Rel (     0,   -55)  ->  Abs (   854,   143)
+	 97: Rel (    89,  -104)  ->  Abs (   943,    39)
+	 98: Rel (    34,     0)  ->  Abs (   977,    39)
+	 99: Rel (    33,     0)  ->  Abs (  1010,    39)
+	100: Rel (    90,   104)  ->  Abs (  1100,   143)
+
+	Glyph 198: off = 0x0000E332, len = 82
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1580
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	-61
+		Y WOffset:	270
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (28):     2     0    47     1    15    47    47    47     2    15 
+	                            47    31    47    47    47    63    47   111    47   208 
+	                            47   224    47   240    47     8    47    26 
+	00030: PUSHW[1]           -141 
+	00033: PUSHB[5]            104    43     2     1    60 
+	00039: PUSHW[3]            651    41   300 
+	00046: SCANCTRL   
+	00047: SVTCA[y-axis] 
+	00048: CALL       
+	00049: SVTCA[x-axis] 
+	00050: CALL       
+	00051: DELTAP1    
+	00052: DELTAP2    
+	00053: DELTAP3    
+	00054: SHC[rp1,zp0] 
+
+	Glyph 199: off = 0x0000E384, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1577
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	1
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     1     0    54    32    54    96    54   112    54   224 
+	                            54   240    54     6    54    36 
+	00018: PUSHW[1]            274 
+	00021: PUSHB[5]            104    43     1     1    67 
+	00027: PUSHW[2]            651    41 
+	00032: SVTCA[y-axis] 
+	00033: CALL       
+	00034: SVTCA[x-axis] 
+	00035: CALL       
+	00036: DELTAP1    
+	00037: SHC[rp1,zp0] 
+
+	Glyph 200: off = 0x0000E3C4, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1596
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	39
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              2    53    26 
+	00004: PUSHW[1]           -203 
+	00007: PUSHB[5]             72    43     2     1    50 
+	00013: PUSHW[3]            651    41   300 
+	00020: SCANCTRL   
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: SHC[rp1,zp0] 
+
+	Glyph 201: off = 0x0000E3F8, len = 70
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1496
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	1
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     2     1    64    72   160    72   224    72     3     0 
+	                            72    32    72    80    72     3    72    36 
+	00020: PUSHW[1]            407 
+	00023: PUSHB[6]             72    43     1     2     2    69 
+	00030: PUSHW[2]            651    41 
+	00035: SVTCA[y-axis] 
+	00036: CALL       
+	00037: SVTCA[x-axis] 
+	00038: CALL       
+	00039: DELTAP1    
+	00040: DELTAP1    
+	00041: SHC[rp1,zp0] 
+	00042: SHC[rp1,zp0] 
+
+	Glyph 202: off = 0x0000E43E, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1596
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	3
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1    32    66     1    66    36     0    72    43     1 
+	                             1    61 
+	00014: PUSHW[2]            651    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: DELTAP1    
+	00024: SHC[rp1,zp0] 
+
+	Glyph 203: off = 0x0000E472, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			229
+	  yMin:			0
+	  xMax:			1001
+	  yMax:			1596
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	-4
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              1    78    28     1    38     0 
+	00007: PUSHW[1]           -148 
+	00010: PUSHB[5]             72    43     1     1    35 
+	00016: PUSHW[2]            651    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 204: off = 0x0000E4A8, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			229
+	  yMin:			0
+	  xMax:			1001
+	  yMax:			1577
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	0
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1    32     0 
+	00005: PUSHW[1]            -43 
+	00008: PUSHB[5]            104    39     1     1    45 
+	00014: PUSHW[2]            651    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+
+	Glyph 205: off = 0x0000E4DA, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			229
+	  yMin:			0
+	  xMax:			1001
+	  yMax:			1496
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	0
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     2     1    48    50    64    50     2    50     0    90 
+	                            72    43     1     2     2    47 
+	00018: PUSHW[2]            651    41 
+	00023: SVTCA[y-axis] 
+	00024: CALL       
+	00025: SVTCA[x-axis] 
+	00026: CALL       
+	00027: DELTAP1    
+	00028: SHC[rp1,zp0] 
+	00029: SHC[rp1,zp0] 
+
+	Glyph 206: off = 0x0000E512, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			229
+	  yMin:			0
+	  xMax:			1001
+	  yMax:			1596
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	3
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     1     0    44    16    44    32    44    48    44    64 
+	                            44     5    44     0 
+	00016: PUSHW[1]           -211 
+	00019: PUSHB[5]             72    43     1     1    39 
+	00025: PUSHW[2]            651    41 
+	00030: SVTCA[y-axis] 
+	00031: CALL       
+	00032: SVTCA[x-axis] 
+	00033: CALL       
+	00034: DELTAP1    
+	00035: SHC[rp1,zp0] 
+
+	Glyph 207: off = 0x0000E550, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-33
+	  xMax:			1024
+	  yMax:			1596
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	-60
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    32    41    10    10    64     2     1    29 
+	00012: PUSHW[2]            651    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 208: off = 0x0000E580, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-33
+	  xMax:			1024
+	  yMax:			1577
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	-70
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    42    30    10    10    64     2     1    33 
+	00012: PUSHW[2]            651    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 209: off = 0x0000E5B0, len = 24
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-33
+	  xMax:			1024
+	  yMax:			1596
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0007
+		Glyf Index:	67
+		X WOffset:	-64
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 210: off = 0x0000E5C8, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1148
+	  yMax:			1596
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	22
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1    25    55    64    29    29    64     1     1    52 
+	00012: PUSHW[3]            651    41   300 
+	00019: SCANCTRL   
+	00020: SVTCA[y-axis] 
+	00021: CALL       
+	00022: SVTCA[x-axis] 
+	00023: CALL       
+	00024: SHC[rp1,zp0] 
+
+	Glyph 211: off = 0x0000E5FC, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1148
+	  yMax:			1577
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	1
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1     0    49     1    49    29     1   104    43     1 
+	                             1    62 
+	00014: PUSHW[3]            651    41   300 
+	00021: SCANCTRL   
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+	00026: DELTAP1    
+	00027: SHC[rp1,zp0] 
+
+	Glyph 212: off = 0x0000E632, len = 72
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1148
+	  yMax:			1596
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	-29
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     1   128    61     1    32    61   128    61     2    32 
+	                            61    96    61   112    61     3    61    29 
+	00020: PUSHW[1]           -180 
+	00023: PUSHB[5]             72    43     1     1    56 
+	00029: PUSHW[3]            651    41   300 
+	00036: SCANCTRL   
+	00037: SVTCA[y-axis] 
+	00038: CALL       
+	00039: SVTCA[x-axis] 
+	00040: CALL       
+	00041: DELTAP1    
+	00042: DELTAP2    
+	00043: DELTAP2    
+	00044: SHC[rp1,zp0] 
+
+	Glyph 213: off = 0x0000E67A, len = 176
+	  numberOfContours:	1
+	  xMin:			186
+	  yMin:			0
+	  xMax:			1047
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  24
+
+	  Length of Instructions:	96
+	00000: NPUSHB      (56):    35    21    50    21    64    21    80    21    99    21 
+	                           113    21   128    21     7    15     9    12    88    16 
+	                            16    34     9     2     8     5    88     1     1    34 
+	                             8    18    24    21   149    17    17    34    24     6 
+	                             9     8    10     0     1    32    17    79    16     1 
+	                            16    25    25    81   127    24 
+	00058: CALL       
+	00059: FLIPOFF    
+	00060: SRP0       
+	00061: MIRP[srp0,nmd,rd,0] 
+	00062: DELTAP1    
+	00063: ALIGNRP    
+	00064: FLIPON     
+	00065: MIRP[srp0,md,rd,1] 
+	00066: ALIGNRP    
+	00067: SVTCA[y-axis] 
+	00068: MIAP[rd+ci] 
+	00069: ALIGNRP    
+	00070: MIAP[rd+ci] 
+	00071: MIRP[nrp0,md,rd,1] 
+	00072: SVTCA[x-axis] 
+	00073: SRP0       
+	00074: MIRP[srp0,nmd,rd,1] 
+	00075: MDRP[srp0,nmd,rd,0] 
+	00076: ALIGNRP    
+	00077: SVTCA[y-axis] 
+	00078: SRP0       
+	00079: MIRP[nrp0,md,rd,1] 
+	00080: SVTCA[x-axis] 
+	00081: SRP0       
+	00082: MIRP[srp0,nmd,rd,1] 
+	00083: MDRP[srp0,nmd,rd,0] 
+	00084: ALIGNRP    
+	00085: SVTCA[y-axis] 
+	00086: SRP0       
+	00087: MIRP[nrp0,md,rd,1] 
+	00088: SVTCA[x-axis] 
+	00089: SRP0       
+	00090: MIRP[srp0,nmd,rd,1] 
+	00091: MDRP[srp0,nmd,rd,0] 
+	00092: ALIGNRP    
+	00093: IUP[y]     
+	00094: IUP[x]     
+	00095: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual                               On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   660,   866)  ->  Abs (   660,   866)
+	  1: Rel (     0,  -782)  ->  Abs (   660,    84)
+	  2: Rel (   330,     0)  ->  Abs (   990,    84)
+	  3: Rel (    31,     0)  ->  Abs (  1021,    84)
+	  4: Rel (    26,   -23)  ->  Abs (  1047,    61)
+	  5: Rel (     0,   -19)  ->  Abs (  1047,    42)
+	  6: Rel (     0,   -18)  ->  Abs (  1047,    24)
+	  7: Rel (   -26,   -24)  ->  Abs (  1021,     0)
+	  8: Rel (   -31,     0)  ->  Abs (   990,     0)
+	  9: Rel (  -744,     0)  ->  Abs (   246,     0)
+	 10: Rel (   -30,     0)  ->  Abs (   216,     0)
+	 11: Rel (   -26,    24)  ->  Abs (   190,    24)
+	 12: Rel (    -4,    20)  ->  Abs (   186,    44)
+	 13: Rel (     4,    17)  ->  Abs (   190,    61)
+	 14: Rel (    26,    23)  ->  Abs (   216,    84)
+	 15: Rel (    30,     0)  ->  Abs (   246,    84)
+	 16: Rel (   330,     0)  ->  Abs (   576,    84)
+	 17: Rel (     0,   697)  ->  Abs (   576,   781)
+	 18: Rel (  -245,     0)  ->  Abs (   331,   781)
+	 19: Rel (   -30,     0)  ->  Abs (   301,   781)
+	 20: Rel (   -27,    24)  ->  Abs (   274,   805)
+	 21: Rel (     0,    18)  ->  Abs (   274,   823)
+	 22: Rel (     0,    19)  ->  Abs (   274,   842)
+	 23: Rel (    26,    24)  ->  Abs (   300,   866)
+	 24: Rel (    31,     0)  ->  Abs (   331,   866)
+
+	Glyph 214: off = 0x0000E72A, len = 160
+	  numberOfContours:	1
+	  xMin:			316
+	  yMin:			1020
+	  xMax:			913
+	  yMax:			1310
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	94
+	00000: NPUSHB      (60):    12    10   134     1   134    18     3    10   193    96 
+	                            13   112    13   128    13     3     0    13    16    13 
+	                             2    13   118    96     7   112     7   128     7     3 
+	                             0     7    16     7     2     7   118    64    10     4 
+	                           243     0   243    32    16    25    19    10     0   111 
+	                             0   127     0   143     0     3     0   113   170    24 
+	00062: CALL       
+	00063: SVTCA[y-axis] 
+	00064: MDAP[rd]   
+	00065: DELTAP1    
+	00066: RTHG       
+	00067: SVTCA[x-axis] 
+	00068: MDAP[rd]   
+	00069: MDAP[rd]   
+	00070: RTG        
+	00071: FLIPOFF    
+	00072: SRP0       
+	00073: MIRP[srp0,nmd,rd,0] 
+	00074: SMD        
+	00075: RTHG       
+	00076: FLIPON     
+	00077: MIRP[srp0,md,rd,1] 
+	00078: MIRP[nrp0,nmd,rd,0] 
+	00079: ALIGNRP    
+	00080: SMD        
+	00081: SVTCA[y-axis] 
+	00082: RTG        
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: DELTAP1    
+	00085: DELTAP1    
+	00086: MIRP[nrp0,md,rd,1] 
+	00087: DELTAP1    
+	00088: DELTAP1    
+	00089: MIRP[nrp0,md,rd,1] 
+	00090: IUP[y]     
+	00091: IUP[x]     
+	00092: SVTCA[y-axis] 
+	00093: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short         On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short On
+	 11:                      Y-Short X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   614,  1310)  ->  Abs (   614,  1310)
+	  1: Rel (   271,  -206)  ->  Abs (   885,  1104)
+	  2: Rel (    18,   -14)  ->  Abs (   903,  1090)
+	  3: Rel (    10,   -17)  ->  Abs (   913,  1073)
+	  4: Rel (     0,   -11)  ->  Abs (   913,  1062)
+	  5: Rel (     0,   -18)  ->  Abs (   913,  1044)
+	  6: Rel (   -25,   -24)  ->  Abs (   888,  1020)
+	  7: Rel (   -18,     0)  ->  Abs (   870,  1020)
+	  8: Rel (   -13,     0)  ->  Abs (   857,  1020)
+	  9: Rel (   -22,    17)  ->  Abs (   835,  1037)
+	 10: Rel (  -221,   169)  ->  Abs (   614,  1206)
+	 11: Rel (  -220,  -169)  ->  Abs (   394,  1037)
+	 12: Rel (   -22,   -17)  ->  Abs (   372,  1020)
+	 13: Rel (   -14,     0)  ->  Abs (   358,  1020)
+	 14: Rel (   -17,     0)  ->  Abs (   341,  1020)
+	 15: Rel (   -25,    25)  ->  Abs (   316,  1045)
+	 16: Rel (     0,    17)  ->  Abs (   316,  1062)
+	 17: Rel (     0,    21)  ->  Abs (   316,  1083)
+	 18: Rel (    28,    21)  ->  Abs (   344,  1104)
+
+	Glyph 215: off = 0x0000E7CA, len = 202
+	  numberOfContours:	1
+	  xMin:			296
+	  yMin:			1001
+	  xMax:			934
+	  yMax:			1207
+
+	EndPoints
+	---------
+	  0:  31
+
+	  Length of Instructions:	104
+	00000: NPUSHB      (33):    37    26     1    11    15   136    22     2     9    10 
+	                             6    26    11    29     3    31    27    26    16    14 
+	                            12    10     7     3    20     9    44    28   177   143 
+	                             0     1     0 
+	00035: PUSHW[1]            765 
+	00038: PUSHB[8]             24    44    13   177   128    17     1    17 
+	00047: PUSHW[1]            765 
+	00050: NPUSHB      (15):     9    15     3    31     3    47     3     3     3   221 
+	                            20    25    32     9   164 
+	00067: PUSHW[2]            261    24 
+	00072: CALL       
+	00073: SVTCA[y-axis] 
+	00074: MDAP[rd]   
+	00075: SVTCA[x-axis] 
+	00076: FLIPOFF    
+	00077: SRP0       
+	00078: MIRP[srp0,nmd,rd,0] 
+	00079: FLIPON     
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: DELTAP1    
+	00082: SVTCA[y-axis] 
+	00083: SRP0       
+	00084: MIRP[nrp0,nmd,rd,0] 
+	00085: DELTAP2    
+	00086: MIRP[srp0,nmd,rd,0] 
+	00087: MIRP[srp0,md,rd,1] 
+	00088: MIRP[nrp0,nmd,rd,0] 
+	00089: DELTAP2    
+	00090: MIRP[srp0,nmd,rd,0] 
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: SVTCA[x-axis] 
+	00093: SRP1       
+	00094: SRP2       
+	00095: SLOOP      
+	00096: IP         
+	00097: IUP[y]     
+	00098: IUP[x]     
+	00099: SVTCA[x-axis] 
+	00100: DELTAP2    
+	00101: SVTCA[y-axis] 
+	00102: DELTAP2    
+	00103: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   892,  1167)  ->  Abs (   892,  1167)
+	  1: Rel (    17,     0)  ->  Abs (   909,  1167)
+	  2: Rel (    25,   -24)  ->  Abs (   934,  1143)
+	  3: Rel (     0,   -15)  ->  Abs (   934,  1128)
+	  4: Rel (     0,   -17)  ->  Abs (   934,  1111)
+	  5: Rel (   -13,   -15)  ->  Abs (   921,  1096)
+	  6: Rel (   -40,   -45)  ->  Abs (   881,  1051)
+	  7: Rel (   -55,   -29)  ->  Abs (   826,  1022)
+	  8: Rel (   -38,   -21)  ->  Abs (   788,  1001)
+	  9: Rel (   -41,     0)  ->  Abs (   747,  1001)
+	 10: Rel (   -64,     0)  ->  Abs (   683,  1001)
+	 11: Rel (  -109,    79)  ->  Abs (   574,  1080)
+	 12: Rel (   -58,    43)  ->  Abs (   516,  1123)
+	 13: Rel (   -32,     0)  ->  Abs (   484,  1123)
+	 14: Rel (   -40,     0)  ->  Abs (   444,  1123)
+	 15: Rel (   -61,   -56)  ->  Abs (   383,  1067)
+	 16: Rel (   -27,   -25)  ->  Abs (   356,  1042)
+	 17: Rel (   -19,     0)  ->  Abs (   337,  1042)
+	 18: Rel (   -18,     0)  ->  Abs (   319,  1042)
+	 19: Rel (   -23,    24)  ->  Abs (   296,  1066)
+	 20: Rel (     0,    16)  ->  Abs (   296,  1082)
+	 21: Rel (     0,    26)  ->  Abs (   296,  1108)
+	 22: Rel (    51,    40)  ->  Abs (   347,  1148)
+	 23: Rel (    78,    59)  ->  Abs (   425,  1207)
+	 24: Rel (    58,     0)  ->  Abs (   483,  1207)
+	 25: Rel (    30,     0)  ->  Abs (   513,  1207)
+	 26: Rel (    62,   -25)  ->  Abs (   575,  1182)
+	 27: Rel (   140,   -96)  ->  Abs (   715,  1086)
+	 28: Rel (    32,     0)  ->  Abs (   747,  1086)
+	 29: Rel (    38,     0)  ->  Abs (   785,  1086)
+	 30: Rel (    77,    68)  ->  Abs (   862,  1154)
+	 31: Rel (    16,    13)  ->  Abs (   878,  1167)
+
+	Glyph 216: off = 0x0000E894, len = 82
+	  numberOfContours:	1
+	  xMin:			316
+	  yMin:			1076
+	  xMax:			914
+	  yMax:			1161
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	30
+	00000: NPUSHB      (15):     7    36     0    15    11     1    11    26    15     4 
+	                            25    14   113   170    24 
+	00017: CALL       
+	00018: FLIPOFF    
+	00019: SRP0       
+	00020: MIRP[nrp0,nmd,rd,0] 
+	00021: SRP0       
+	00022: MIRP[nrp0,nmd,rd,2] 
+	00023: DELTAP1    
+	00024: SVTCA[y-axis] 
+	00025: MDAP[rd]   
+	00026: FLIPON     
+	00027: MIRP[nrp0,md,rd,1] 
+	00028: IUP[y]     
+	00029: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual                               On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   857,  1076)  ->  Abs (   857,  1076)
+	  1: Rel (  -485,     0)  ->  Abs (   372,  1076)
+	  2: Rel (   -30,     0)  ->  Abs (   342,  1076)
+	  3: Rel (   -26,    24)  ->  Abs (   316,  1100)
+	  4: Rel (     0,    18)  ->  Abs (   316,  1118)
+	  5: Rel (     0,    19)  ->  Abs (   316,  1137)
+	  6: Rel (    26,    24)  ->  Abs (   342,  1161)
+	  7: Rel (    30,     0)  ->  Abs (   372,  1161)
+	  8: Rel (   483,     0)  ->  Abs (   855,  1161)
+	  9: Rel (    33,    -1)  ->  Abs (   888,  1160)
+	 10: Rel (    26,   -23)  ->  Abs (   914,  1137)
+	 11: Rel (     0,   -19)  ->  Abs (   914,  1118)
+	 12: Rel (     0,   -19)  ->  Abs (   914,  1099)
+	 13: Rel (   -26,   -23)  ->  Abs (   888,  1076)
+
+	Glyph 217: off = 0x0000E8E6, len = 118
+	  numberOfContours:	1
+	  xMin:			314
+	  yMin:			1018
+	  xMax:			916
+	  yMax:			1298
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	35
+	00000: NPUSHB      (18):    20    44     7   213     0    14    10    91    17   203 
+	                             3    91    23    25    26   113   170    24 
+	00020: CALL       
+	00021: FLIPOFF    
+	00022: SRP0       
+	00023: MIRP[srp0,nmd,rd,0] 
+	00024: FLIPON     
+	00025: MIRP[nrp0,md,rd,1] 
+	00026: MIRP[srp0,md,rd,1] 
+	00027: MIRP[nrp0,md,rd,1] 
+	00028: SVTCA[y-axis] 
+	00029: MDAP[rd]   
+	00030: ALIGNRP    
+	00031: MIRP[srp0,nmd,rd,0] 
+	00032: MIRP[nrp0,md,rd,1] 
+	00033: IUP[y]     
+	00034: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   356,  1298)  ->  Abs (   356,  1298)
+	  1: Rel (    18,     0)  ->  Abs (   374,  1298)
+	  2: Rel (    22,   -21)  ->  Abs (   396,  1277)
+	  3: Rel (     2,   -27)  ->  Abs (   398,  1250)
+	  4: Rel (     6,   -57)  ->  Abs (   404,  1193)
+	  5: Rel (    59,   -45)  ->  Abs (   463,  1148)
+	  6: Rel (    58,   -45)  ->  Abs (   521,  1103)
+	  7: Rel (    94,     0)  ->  Abs (   615,  1103)
+	  8: Rel (    93,     0)  ->  Abs (   708,  1103)
+	  9: Rel (   117,    90)  ->  Abs (   825,  1193)
+	 10: Rel (     6,    57)  ->  Abs (   831,  1250)
+	 11: Rel (     3,    27)  ->  Abs (   834,  1277)
+	 12: Rel (     9,     9)  ->  Abs (   843,  1286)
+	 13: Rel (    13,    12)  ->  Abs (   856,  1298)
+	 14: Rel (    17,     0)  ->  Abs (   873,  1298)
+	 15: Rel (    18,     0)  ->  Abs (   891,  1298)
+	 16: Rel (    25,   -25)  ->  Abs (   916,  1273)
+	 17: Rel (     0,   -21)  ->  Abs (   916,  1252)
+	 18: Rel (     0,   -90)  ->  Abs (   916,  1162)
+	 19: Rel (  -163,  -144)  ->  Abs (   753,  1018)
+	 20: Rel (  -138,     0)  ->  Abs (   615,  1018)
+	 21: Rel (  -138,     0)  ->  Abs (   477,  1018)
+	 22: Rel (  -163,   144)  ->  Abs (   314,  1162)
+	 23: Rel (     0,    90)  ->  Abs (   314,  1252)
+	 24: Rel (     0,    21)  ->  Abs (   314,  1273)
+	 25: Rel (    24,    25)  ->  Abs (   338,  1298)
+
+	Glyph 218: off = 0x0000E95C, len = 76
+	  numberOfContours:	1
+	  xMin:			512
+	  yMin:			1045
+	  xMax:			717
+	  yMax:			1250
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	31
+	00000: PUSHB[5]              3   138     9     0     0 
+	00006: PUSHW[1]            305 
+	00009: PUSHB[3]              6    25    12 
+	00013: PUSHW[3]            322   285    24 
+	00020: CALL       
+	00021: FLIPOFF    
+	00022: SRP0       
+	00023: MIRP[srp0,nmd,rd,0] 
+	00024: FLIPON     
+	00025: MIRP[nrp0,md,rd,1] 
+	00026: SVTCA[y-axis] 
+	00027: MIAP[rd+ci] 
+	00028: MIRP[nrp0,md,rd,1] 
+	00029: IUP[y]     
+	00030: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   717,  1147)  ->  Abs (   717,  1147)
+	  1: Rel (     0,   -42)  ->  Abs (   717,  1105)
+	  2: Rel (   -60,   -60)  ->  Abs (   657,  1045)
+	  3: Rel (   -42,     0)  ->  Abs (   615,  1045)
+	  4: Rel (   -43,     0)  ->  Abs (   572,  1045)
+	  5: Rel (   -60,    60)  ->  Abs (   512,  1105)
+	  6: Rel (     0,    42)  ->  Abs (   512,  1147)
+	  7: Rel (     0,    43)  ->  Abs (   512,  1190)
+	  8: Rel (    60,    60)  ->  Abs (   572,  1250)
+	  9: Rel (    43,     0)  ->  Abs (   615,  1250)
+	 10: Rel (    42,     0)  ->  Abs (   657,  1250)
+	 11: Rel (    60,   -60)  ->  Abs (   717,  1190)
+
+	Glyph 219: off = 0x0000E9A8, len = 158
+	  numberOfContours:	2
+	  xMin:			433
+	  yMin:			1008
+	  xMax:			795
+	  yMax:			1364
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	81
+	00000: NPUSHB      (11):    22    64    32    40    52    14    64    32    40    52 
+	                            20 
+	00013: PUSHW[1]            -64 
+	00016: PUSHB[4]             32    40    52    17 
+	00021: PUSHW[1]            -64 
+	00024: PUSHB[6]             32    40    52     3    55    21 
+	00031: PUSHW[1]            760 
+	00034: PUSHB[6]             15    55     9     0    55    12 
+	00041: PUSHW[1]            487 
+	00044: NPUSHB       (9):    18    55     0     6     1     6    25    24   109 
+	00055: PUSHW[2]            380    24 
+	00060: CALL       
+	00061: FLIPOFF    
+	00062: SRP0       
+	00063: MIRP[srp0,nmd,rd,0] 
+	00064: DELTAP1    
+	00065: FLIPON     
+	00066: MIRP[srp0,md,rd,1] 
+	00067: MIRP[srp0,nmd,rd,2] 
+	00068: MIRP[nrp0,md,rd,1] 
+	00069: SVTCA[y-axis] 
+	00070: MDAP[rd]   
+	00071: MIRP[srp0,md,rd,1] 
+	00072: MIRP[srp0,nmd,rd,2] 
+	00073: MIRP[nrp0,md,rd,1] 
+	00074: IUP[y]     
+	00075: IUP[x]     
+	00076: SVTCA[x-axis] 
+	00077: CALL       
+	00078: CALL       
+	00079: CALL       
+	00080: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   795,  1186)  ->  Abs (   795,  1186)
+	  1: Rel (     0,   -73)  ->  Abs (   795,  1113)
+	  2: Rel (  -106,  -105)  ->  Abs (   689,  1008)
+	  3: Rel (   -75,     0)  ->  Abs (   614,  1008)
+	  4: Rel (   -75,     0)  ->  Abs (   539,  1008)
+	  5: Rel (  -106,   105)  ->  Abs (   433,  1113)
+	  6: Rel (     0,    73)  ->  Abs (   433,  1186)
+	  7: Rel (     0,    73)  ->  Abs (   433,  1259)
+	  8: Rel (   106,   105)  ->  Abs (   539,  1364)
+	  9: Rel (    75,     0)  ->  Abs (   614,  1364)
+	 10: Rel (    75,     0)  ->  Abs (   689,  1364)
+	 11: Rel (   106,  -105)  ->  Abs (   795,  1259)
+	 12: Rel (   -60,   -73)  ->  Abs (   735,  1186)
+	 13: Rel (     0,    49)  ->  Abs (   735,  1235)
+	 14: Rel (   -71,    69)  ->  Abs (   664,  1304)
+	 15: Rel (   -50,     0)  ->  Abs (   614,  1304)
+	 16: Rel (   -51,     0)  ->  Abs (   563,  1304)
+	 17: Rel (   -70,   -70)  ->  Abs (   493,  1234)
+	 18: Rel (     0,   -48)  ->  Abs (   493,  1186)
+	 19: Rel (     0,   -48)  ->  Abs (   493,  1138)
+	 20: Rel (    71,   -70)  ->  Abs (   564,  1068)
+	 21: Rel (    50,     0)  ->  Abs (   614,  1068)
+	 22: Rel (    50,     0)  ->  Abs (   664,  1068)
+	 23: Rel (    71,    69)  ->  Abs (   735,  1137)
+
+	Glyph 220: off = 0x0000EA46, len = 212
+	  numberOfContours:	1
+	  xMin:			442
+	  yMin:			-333
+	  xMax:			764
+	  yMax:			30
+
+	EndPoints
+	---------
+	  0:  33
+
+	  Length of Instructions:	114
+	00000: NPUSHB      (11):    21    23    19     3     5     1    31    33    29     7 
+	                            22 
+	00013: PUSHW[1]            765 
+	00016: PUSHB[6]             14    55    95    26     1    26 
+	00023: PUSHW[1]            348 
+	00026: NPUSHB      (39):    47    33    63    33    79    33     3    33    55     8 
+	                           177    47     4    63     4    79     4    95     4     4 
+	                             4    10    19   210     0    29    55    11   177     8 
+	                             8     7     0     7    55     0     1     1     1 
+	00067: PUSHW[5]            595    34   202   333    24 
+	00078: CALL       
+	00079: SRP0       
+	00080: MIRP[srp0,nmd,rd,2] 
+	00081: DELTAP1    
+	00082: MIRP[nrp0,md,rd,1] 
+	00083: ALIGNRP    
+	00084: SRP0       
+	00085: ALIGNRP    
+	00086: SRP0       
+	00087: MIRP[srp0,nmd,rd,0] 
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: SRP0       
+	00090: MIRP[nrp0,nmd,rd,0] 
+	00091: SVTCA[y-axis] 
+	00092: MIAP[rd+ci] 
+	00093: DELTAP1    
+	00094: MIRP[srp0,nmd,rd,0] 
+	00095: MIRP[srp0,md,rd,1] 
+	00096: DELTAP1    
+	00097: MIRP[srp0,nmd,rd,2] 
+	00098: DELTAP1    
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: MIRP[nrp0,nmd,rd,0] 
+	00101: SVTCA[x-axis] 
+	00102: SRP1       
+	00103: SRP2       
+	00104: IP         
+	00105: IP         
+	00106: SRP2       
+	00107: IP         
+	00108: IP         
+	00109: SRP1       
+	00110: IP         
+	00111: IP         
+	00112: IUP[y]     
+	00113: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short         Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual               Y-Short X-Short On
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   586,  -163)  ->  Abs (   586,  -163)
+	  1: Rel (     0,   153)  ->  Abs (   586,   -10)
+	  2: Rel (     0,    22)  ->  Abs (   586,    12)
+	  3: Rel (    17,    18)  ->  Abs (   603,    30)
+	  4: Rel (    13,     0)  ->  Abs (   616,    30)
+	  5: Rel (    14,     0)  ->  Abs (   630,    30)
+	  6: Rel (    16,   -19)  ->  Abs (   646,    11)
+	  7: Rel (     0,   -21)  ->  Abs (   646,   -10)
+	  8: Rel (     0,   -96)  ->  Abs (   646,  -106)
+	  9: Rel (    56,    -8)  ->  Abs (   702,  -114)
+	 10: Rel (    62,   -61)  ->  Abs (   764,  -175)
+	 11: Rel (     0,   -41)  ->  Abs (   764,  -216)
+	 12: Rel (     0,   -49)  ->  Abs (   764,  -265)
+	 13: Rel (   -75,   -68)  ->  Abs (   689,  -333)
+	 14: Rel (   -69,     0)  ->  Abs (   620,  -333)
+	 15: Rel (   -47,     0)  ->  Abs (   573,  -333)
+	 16: Rel (  -108,    37)  ->  Abs (   465,  -296)
+	 17: Rel (   -13,    15)  ->  Abs (   452,  -281)
+	 18: Rel (   -10,    11)  ->  Abs (   442,  -270)
+	 19: Rel (     0,    12)  ->  Abs (   442,  -258)
+	 20: Rel (     0,    13)  ->  Abs (   442,  -245)
+	 21: Rel (    17,    17)  ->  Abs (   459,  -228)
+	 22: Rel (    13,     0)  ->  Abs (   472,  -228)
+	 23: Rel (    10,     0)  ->  Abs (   482,  -228)
+	 24: Rel (    13,    -7)  ->  Abs (   495,  -235)
+	 25: Rel (    68,   -38)  ->  Abs (   563,  -273)
+	 26: Rel (    57,     0)  ->  Abs (   620,  -273)
+	 27: Rel (    39,     0)  ->  Abs (   659,  -273)
+	 28: Rel (    44,    37)  ->  Abs (   703,  -236)
+	 29: Rel (     0,    22)  ->  Abs (   703,  -214)
+	 30: Rel (     0,    19)  ->  Abs (   703,  -195)
+	 31: Rel (   -17,    14)  ->  Abs (   686,  -181)
+	 32: Rel (   -23,    18)  ->  Abs (   663,  -163)
+	 33: Rel (   -36,     0)  ->  Abs (   627,  -163)
+
+	Glyph 221: off = 0x0000EB1A, len = 242
+	  numberOfContours:	2
+	  xMin:			315
+	  yMin:			1020
+	  xMax:			915
+	  yMax:			1328
+
+	EndPoints
+	---------
+	  0:  15
+	  1:  31
+
+	  Length of Instructions:	143
+	00000: NPUSHB      (92):    31    18    20    21     4    23    26    28    29     4 
+	                            30    22    15     2     4     5     4     8    10    11 
+	                            12    13     5    14     6    22    23    26     3    28 
+	                            29    30    31    18     5    19    27     4     5     7 
+	                            10     4    13    14    15     2     4     3    11     0 
+	                            19    16    19     2    19   118    27    27     0     3 
+	                            16     3     2     3   118    11     0    22    16    22 
+	                             2    22   118    15    30     1    30   218    15    14 
+	                            31    14     2    14   118     6    25    32    11   113 
+	                           170    24 
+	00094: CALL       
+	00095: SVTCA[y-axis] 
+	00096: MDAP[rd]   
+	00097: SVTCA[x-axis] 
+	00098: FLIPOFF    
+	00099: SRP0       
+	00100: MIRP[srp0,nmd,rd,0] 
+	00101: FLIPON     
+	00102: MIRP[srp0,md,rd,1] 
+	00103: DELTAP1    
+	00104: MIRP[srp0,nmd,rd,0] 
+	00105: DELTAP1    
+	00106: MIRP[nrp0,md,rd,1] 
+	00107: DELTAP1    
+	00108: SVTCA[y-axis] 
+	00109: SRP0       
+	00110: MIRP[nrp0,md,rd,1] 
+	00111: DELTAP1    
+	00112: ALIGNRP    
+	00113: SRP0       
+	00114: MIRP[nrp0,md,rd,1] 
+	00115: DELTAP1    
+	00116: SRP1       
+	00117: SRP2       
+	00118: SLOOP      
+	00119: IP         
+	00120: SLOOP      
+	00121: IP         
+	00122: SRP1       
+	00123: SRP2       
+	00124: SLOOP      
+	00125: IP         
+	00126: SLOOP      
+	00127: IP         
+	00128: SVTCA[x-axis] 
+	00129: SRP1       
+	00130: SRP2       
+	00131: SLOOP      
+	00132: IP         
+	00133: SLOOP      
+	00134: IP         
+	00135: SRP1       
+	00136: SRP2       
+	00137: SLOOP      
+	00138: IP         
+	00139: SLOOP      
+	00140: IP         
+	00141: IUP[y]     
+	00142: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short         On
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   591,  1247)  ->  Abs (   591,  1247)
+	  1: Rel (  -193,  -204)  ->  Abs (   398,  1043)
+	  2: Rel (   -23,   -23)  ->  Abs (   375,  1020)
+	  3: Rel (   -18,     0)  ->  Abs (   357,  1020)
+	  4: Rel (   -17,     0)  ->  Abs (   340,  1020)
+	  5: Rel (   -25,    24)  ->  Abs (   315,  1044)
+	  6: Rel (     0,    19)  ->  Abs (   315,  1063)
+	  7: Rel (     0,    16)  ->  Abs (   315,  1079)
+	  8: Rel (    21,    22)  ->  Abs (   336,  1101)
+	  9: Rel (   193,   204)  ->  Abs (   529,  1305)
+	 10: Rel (    23,    23)  ->  Abs (   552,  1328)
+	 11: Rel (    18,     0)  ->  Abs (   570,  1328)
+	 12: Rel (    18,     0)  ->  Abs (   588,  1328)
+	 13: Rel (    24,   -25)  ->  Abs (   612,  1303)
+	 14: Rel (     0,   -18)  ->  Abs (   612,  1285)
+	 15: Rel (     0,   -16)  ->  Abs (   612,  1269)
+	 16: Rel (   282,   -22)  ->  Abs (   894,  1247)
+	 17: Rel (  -193,  -204)  ->  Abs (   701,  1043)
+	 18: Rel (   -22,   -23)  ->  Abs (   679,  1020)
+	 19: Rel (   -19,     0)  ->  Abs (   660,  1020)
+	 20: Rel (   -17,     0)  ->  Abs (   643,  1020)
+	 21: Rel (   -25,    24)  ->  Abs (   618,  1044)
+	 22: Rel (     0,    19)  ->  Abs (   618,  1063)
+	 23: Rel (     0,    16)  ->  Abs (   618,  1079)
+	 24: Rel (    21,    22)  ->  Abs (   639,  1101)
+	 25: Rel (   194,   204)  ->  Abs (   833,  1305)
+	 26: Rel (    22,    23)  ->  Abs (   855,  1328)
+	 27: Rel (    18,     0)  ->  Abs (   873,  1328)
+	 28: Rel (    18,     0)  ->  Abs (   891,  1328)
+	 29: Rel (    24,   -25)  ->  Abs (   915,  1303)
+	 30: Rel (     0,   -18)  ->  Abs (   915,  1285)
+	 31: Rel (     0,   -16)  ->  Abs (   915,  1269)
+
+	Glyph 222: off = 0x0000EC0C, len = 174
+	  numberOfContours:	1
+	  xMin:			468
+	  yMin:			-294
+	  xMax:			763
+	  yMax:			27
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	84
+	00000: NPUSHB      (20):    14    15    16     3     8     9    11    13    15     5 
+	                            17     7    19    20    21    11    12    13     3    14 
+	00022: PUSHW[1]            344 
+	00025: PUSHB[3]             21    55    10 
+	00029: PUSHW[1]            764 
+	00032: PUSHB[7]              4    55    27    10    17    77    12 
+	00040: PUSHW[1]            271 
+	00043: PUSHB[5]              0   177     7    55    24 
+	00049: PUSHW[1]            755 
+	00052: PUSHB[4]             30   101   169    24 
+	00057: CALL       
+	00058: SRP0       
+	00059: MIRP[srp0,nmd,rd,2] 
+	00060: MIRP[srp0,md,rd,1] 
+	00061: MIRP[srp0,nmd,rd,0] 
+	00062: MIRP[srp0,nmd,rd,2] 
+	00063: MIRP[nrp0,md,rd,1] 
+	00064: SVTCA[y-axis] 
+	00065: MIAP[rd+ci] 
+	00066: MIRP[srp0,md,rd,1] 
+	00067: MIRP[srp0,nmd,rd,2] 
+	00068: MIRP[nrp0,md,rd,1] 
+	00069: MIRP[nrp0,nmd,rd,0] 
+	00070: SLOOP      
+	00071: IP         
+	00072: SRP1       
+	00073: IP         
+	00074: IP         
+	00075: SVTCA[x-axis] 
+	00076: SRP1       
+	00077: SRP2       
+	00078: SLOOP      
+	00079: IP         
+	00080: SLOOP      
+	00081: IP         
+	00082: IUP[y]     
+	00083: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:                      Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   661,    -4)  ->  Abs (   661,    -4)
+	  1: Rel (     0,   -13)  ->  Abs (   661,   -17)
+	  2: Rel (    -9,    -9)  ->  Abs (   652,   -26)
+	  3: Rel (    -7,    -7)  ->  Abs (   645,   -33)
+	  4: Rel (   -23,    -2)  ->  Abs (   622,   -35)
+	  5: Rel (   -36,    -4)  ->  Abs (   586,   -39)
+	  6: Rel (   -58,   -68)  ->  Abs (   528,  -107)
+	  7: Rel (     0,   -45)  ->  Abs (   528,  -152)
+	  8: Rel (     0,   -35)  ->  Abs (   528,  -187)
+	  9: Rel (    53,   -47)  ->  Abs (   581,  -234)
+	 10: Rel (    48,     0)  ->  Abs (   629,  -234)
+	 11: Rel (    46,     0)  ->  Abs (   675,  -234)
+	 12: Rel (    32,    28)  ->  Abs (   707,  -206)
+	 13: Rel (    15,    14)  ->  Abs (   722,  -192)
+	 14: Rel (    11,     0)  ->  Abs (   733,  -192)
+	 15: Rel (    12,     0)  ->  Abs (   745,  -192)
+	 16: Rel (    18,   -17)  ->  Abs (   763,  -209)
+	 17: Rel (     0,   -14)  ->  Abs (   763,  -223)
+	 18: Rel (     0,   -20)  ->  Abs (   763,  -243)
+	 19: Rel (   -29,   -19)  ->  Abs (   734,  -262)
+	 20: Rel (   -45,   -32)  ->  Abs (   689,  -294)
+	 21: Rel (   -62,     0)  ->  Abs (   627,  -294)
+	 22: Rel (   -73,     0)  ->  Abs (   554,  -294)
+	 23: Rel (   -86,    82)  ->  Abs (   468,  -212)
+	 24: Rel (     0,    66)  ->  Abs (   468,  -146)
+	 25: Rel (     0,    70)  ->  Abs (   468,   -76)
+	 26: Rel (   100,   103)  ->  Abs (   568,    27)
+	 27: Rel (    61,     0)  ->  Abs (   629,    27)
+	 28: Rel (    14,     0)  ->  Abs (   643,    27)
+	 29: Rel (    18,   -17)  ->  Abs (   661,    10)
+
+	Glyph 223: off = 0x0000ECBA, len = 166
+	  numberOfContours:	1
+	  xMin:			316
+	  yMin:			1008
+	  xMax:			913
+	  yMax:			1299
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	100
+	00000: NPUSHB      (66):    73     0   137     1   137    18     3     3    10    70 
+	                            10     2   104     9   104    11   120    10   136    10 
+	                             4   111    13   127    13     2    15    13    31    13 
+	                           143    13     3    13   118   111     7   127     7     2 
+	                            15     7    31     7   143     7     3     7   118    10 
+	                           193    64    10    16   118     0   118    32     4    25 
+	                            19     0     0   113   170    24 
+	00068: CALL       
+	00069: SVTCA[y-axis] 
+	00070: MDAP[rd]   
+	00071: RTHG       
+	00072: SVTCA[x-axis] 
+	00073: MDAP[rd]   
+	00074: RTG        
+	00075: FLIPOFF    
+	00076: SRP0       
+	00077: MIRP[srp0,nmd,rd,0] 
+	00078: SMD        
+	00079: RTHG       
+	00080: FLIPON     
+	00081: MIRP[srp0,md,rd,1] 
+	00082: MIRP[nrp0,md,rd,1] 
+	00083: ALIGNRP    
+	00084: SMD        
+	00085: SVTCA[y-axis] 
+	00086: RTG        
+	00087: MIRP[nrp0,md,rd,1] 
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: DELTAP1    
+	00090: DELTAP1    
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: DELTAP1    
+	00093: DELTAP1    
+	00094: IUP[y]     
+	00095: IUP[x]     
+	00096: SVTCA[y-axis] 
+	00097: DELTAP1    
+	00098: DELTAP2    
+	00099: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short         On
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   615,  1008)  ->  Abs (   615,  1008)
+	  1: Rel (  -271,   206)  ->  Abs (   344,  1214)
+	  2: Rel (   -18,    14)  ->  Abs (   326,  1228)
+	  3: Rel (   -10,    17)  ->  Abs (   316,  1245)
+	  4: Rel (     0,    11)  ->  Abs (   316,  1256)
+	  5: Rel (     0,    18)  ->  Abs (   316,  1274)
+	  6: Rel (    25,    25)  ->  Abs (   341,  1299)
+	  7: Rel (    18,     0)  ->  Abs (   359,  1299)
+	  8: Rel (    13,     0)  ->  Abs (   372,  1299)
+	  9: Rel (    22,   -17)  ->  Abs (   394,  1282)
+	 10: Rel (   221,  -170)  ->  Abs (   615,  1112)
+	 11: Rel (   220,   169)  ->  Abs (   835,  1281)
+	 12: Rel (    22,    17)  ->  Abs (   857,  1298)
+	 13: Rel (    14,     0)  ->  Abs (   871,  1298)
+	 14: Rel (    17,     0)  ->  Abs (   888,  1298)
+	 15: Rel (    25,   -25)  ->  Abs (   913,  1273)
+	 16: Rel (     0,   -17)  ->  Abs (   913,  1256)
+	 17: Rel (     0,   -21)  ->  Abs (   913,  1235)
+	 18: Rel (   -28,   -21)  ->  Abs (   885,  1214)
+
+	Glyph 224: off = 0x0000ED60, len = 498
+	  numberOfContours:	1
+	  xMin:			86
+	  yMin:			0
+	  xMax:			1111
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  55
+
+	  Length of Instructions:	337
+	00000: NPUSHB      (50):    38     3    38     5    61     4    51    31    53    39 
+	                             5    37     4    37     5    94     7     3    11    30 
+	                            31    31    10     1    40    39    39     2    30    29 
+	                            41    31    10    40    29    41    39     2    11    12 
+	                             0    31    10     1    12     0    39     2    22    28 
+	00052: PUSHW[1]            676 
+	00055: NPUSHB      (11):    25    53    29    25    25    28    29    29    22    49 
+	                            55 
+	00068: PUSHW[1]            676 
+	00071: NPUSHB      (11):    52    53     0    52    52    55     0    29    49    20 
+	                            14 
+	00084: PUSHW[1]            676 
+	00087: NPUSHB      (11):    17   219    13    17    17    14    13    29    20    48 
+	                            42 
+	00100: PUSHW[1]            676 
+	00103: NPUSHB      (66):    45    53    41    45    45    42    41    29    48    32 
+	                            29    36     3     8    20    12    40    37    32    30 
+	                            11     8     3     1     8    41    13     2    39    39 
+	                            30    31    10    20    31    31    10    31    39    29 
+	                            36     2    10    20    12    39    31    10     2     4 
+	                            41    13    38    22    41    38    49    49    48    15 
+	                            20     1    20    26    57     7 
+	00171: PUSHW[1]            276 
+	00174: PUSHB[5]              0    12    30    41    29 
+	00180: PUSHW[1]            276 
+	00183: NPUSHB      (19):    32    36    48    36    64    36    80    36     4    36 
+	                            25    56    48     2    22     8    67   121    24 
+	00204: PUSHW[1]            300 
+	00207: SCANCTRL   
+	00208: CALL       
+	00209: SVTCA[y-axis] 
+	00210: MIAP[rd+ci] 
+	00211: MIAP[rd+ci] 
+	00212: SVTCA[x-axis] 
+	00213: FLIPOFF    
+	00214: SRP0       
+	00215: MIRP[srp0,nmd,rd,0] 
+	00216: DELTAP1    
+	00217: FLIPON     
+	00218: MIRP[srp0,nmd,rd,0] 
+	00219: ALIGNRP    
+	00220: MIRP[srp0,md,rd,1] 
+	00221: ALIGNRP    
+	00222: MIRP[nrp0,nmd,rd,0] 
+	00223: FLIPOFF    
+	00224: SRP0       
+	00225: MIRP[nrp0,nmd,rd,2] 
+	00226: DELTAP1    
+	00227: SVTCA[y-axis] 
+	00228: SRP0       
+	00229: ALIGNRP    
+	00230: FLIPON     
+	00231: SRP0       
+	00232: MIRP[nrp0,md,rd,1] 
+	00233: SRP0       
+	00234: MIRP[nrp0,md,rd,1] 
+	00235: SRP1       
+	00236: SLOOP      
+	00237: IP         
+	00238: SVTCA[x-axis] 
+	00239: SRP1       
+	00240: SRP2       
+	00241: IP         
+	00242: IP         
+	00243: SRP1       
+	00244: SRP2       
+	00245: IP         
+	00246: IP         
+	00247: SDPVTL[1]  
+	00248: SFVTPV     
+	00249: MDAP[nrd]  
+	00250: CALL       
+	00251: RDTG       
+	00252: SRP0       
+	00253: MDRP[nrp0,nmd,rd,0] 
+	00254: SVTCA[y-axis] 
+	00255: SRP1       
+	00256: SRP2       
+	00257: SLOOP      
+	00258: IP         
+	00259: SVTCA[x-axis] 
+	00260: SRP1       
+	00261: SRP2       
+	00262: IP         
+	00263: IP         
+	00264: SRP1       
+	00265: SRP2       
+	00266: IP         
+	00267: RTG        
+	00268: SVTCA[y-axis] 
+	00269: SRP0       
+	00270: MIRP[srp0,md,rd,1] 
+	00271: RTDG       
+	00272: SRP2       
+	00273: IP         
+	00274: MDAP[rd]   
+	00275: RTG        
+	00276: SVTCA[x-axis] 
+	00277: SRP0       
+	00278: MIRP[srp0,nmd,rd,1] 
+	00279: MIRP[srp0,nmd,rd,0] 
+	00280: MDRP[nrp0,nmd,rd,0] 
+	00281: SRP0       
+	00282: MIRP[srp0,md,rd,1] 
+	00283: RTDG       
+	00284: SRP2       
+	00285: IP         
+	00286: MDAP[rd]   
+	00287: RTG        
+	00288: SVTCA[y-axis] 
+	00289: SRP0       
+	00290: MIRP[srp0,nmd,rd,1] 
+	00291: MIRP[srp0,nmd,rd,0] 
+	00292: MDRP[nrp0,nmd,rd,0] 
+	00293: SRP0       
+	00294: MIRP[srp0,md,rd,1] 
+	00295: RTDG       
+	00296: SRP2       
+	00297: IP         
+	00298: MDAP[rd]   
+	00299: RTG        
+	00300: SVTCA[x-axis] 
+	00301: SRP0       
+	00302: MIRP[srp0,nmd,rd,1] 
+	00303: MIRP[srp0,nmd,rd,0] 
+	00304: MDRP[nrp0,nmd,rd,0] 
+	00305: SVTCA[y-axis] 
+	00306: SRP0       
+	00307: MIRP[srp0,md,rd,1] 
+	00308: RTDG       
+	00309: SRP2       
+	00310: IP         
+	00311: MDAP[rd]   
+	00312: RTG        
+	00313: SVTCA[x-axis] 
+	00314: SRP0       
+	00315: MIRP[srp0,nmd,rd,1] 
+	00316: MIRP[srp0,nmd,rd,0] 
+	00317: MDRP[nrp0,nmd,rd,0] 
+	00318: ISECT      
+	00319: ISECT      
+	00320: ISECT      
+	00321: ISECT      
+	00322: SPVTL[p1,p2] 
+	00323: SRP0       
+	00324: SFVTCA[y-axis] 
+	00325: ALIGNRP    
+	00326: ALIGNRP    
+	00327: SPVTL[p1,p2] 
+	00328: SRP0       
+	00329: ALIGNRP    
+	00330: ALIGNRP    
+	00331: IUP[y]     
+	00332: IUP[x]     
+	00333: SVTCA[x-axis] 
+	00334: DELTAP1    
+	00335: SVTCA[y-axis] 
+	00336: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:                      Y-Short         On
+	 12:        XDual                         On
+	 13:  YDual                               On
+	 14:        XDual                         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual                         On
+	 22:  YDual                               On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short On
+	 30:        XDual                         On
+	 31:                      Y-Short X-Short On
+	 32:                      Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:  YDual               Y-Short         On
+	 41:        XDual                         On
+	 42:  YDual                       X-Short On
+	 43:  YDual                       X-Short Off
+	 44:  YDual               Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual                               On
+	 50:  YDual XDual                 X-Short Off
+	 51:        XDual         Y-Short X-Short Off
+	 52:        XDual         Y-Short         On
+	 53:        XDual         Y-Short         Off
+	 54:                      Y-Short X-Short Off
+	 55:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   466,  1086)  ->  Abs (   466,  1086)
+	  1: Rel (     0,  -428)  ->  Abs (   466,   658)
+	  2: Rel (   224,   131)  ->  Abs (   690,   789)
+	  3: Rel (    22,    13)  ->  Abs (   712,   802)
+	  4: Rel (    12,     0)  ->  Abs (   724,   802)
+	  5: Rel (    17,     0)  ->  Abs (   741,   802)
+	  6: Rel (    24,   -25)  ->  Abs (   765,   777)
+	  7: Rel (     0,   -18)  ->  Abs (   765,   759)
+	  8: Rel (     0,   -12)  ->  Abs (   765,   747)
+	  9: Rel (   -12,   -19)  ->  Abs (   753,   728)
+	 10: Rel (   -21,   -12)  ->  Abs (   732,   716)
+	 11: Rel (  -266,  -156)  ->  Abs (   466,   560)
+	 12: Rel (     0,  -476)  ->  Abs (   466,    84)
+	 13: Rel (   561,     0)  ->  Abs (  1027,    84)
+	 14: Rel (     0,   336)  ->  Abs (  1027,   420)
+	 15: Rel (     0,    30)  ->  Abs (  1027,   450)
+	 16: Rel (    23,    26)  ->  Abs (  1050,   476)
+	 17: Rel (    19,     0)  ->  Abs (  1069,   476)
+	 18: Rel (    19,     0)  ->  Abs (  1088,   476)
+	 19: Rel (    23,   -26)  ->  Abs (  1111,   450)
+	 20: Rel (     0,   -30)  ->  Abs (  1111,   420)
+	 21: Rel (     0,  -420)  ->  Abs (  1111,     0)
+	 22: Rel (  -929,     0)  ->  Abs (   182,     0)
+	 23: Rel (   -30,     0)  ->  Abs (   152,     0)
+	 24: Rel (   -26,    24)  ->  Abs (   126,    24)
+	 25: Rel (     0,    18)  ->  Abs (   126,    42)
+	 26: Rel (     0,    19)  ->  Abs (   126,    61)
+	 27: Rel (    25,    23)  ->  Abs (   151,    84)
+	 28: Rel (    31,     0)  ->  Abs (   182,    84)
+	 29: Rel (   200,     0)  ->  Abs (   382,    84)
+	 30: Rel (     0,   427)  ->  Abs (   382,   511)
+	 31: Rel (  -220,  -129)  ->  Abs (   162,   382)
+	 32: Rel (   -23,   -13)  ->  Abs (   139,   369)
+	 33: Rel (   -11,     0)  ->  Abs (   128,   369)
+	 34: Rel (   -17,     0)  ->  Abs (   111,   369)
+	 35: Rel (   -25,    26)  ->  Abs (    86,   395)
+	 36: Rel (     0,    17)  ->  Abs (    86,   412)
+	 37: Rel (     0,    13)  ->  Abs (    86,   425)
+	 38: Rel (    12,    18)  ->  Abs (    98,   443)
+	 39: Rel (    21,    12)  ->  Abs (   119,   455)
+	 40: Rel (   263,   154)  ->  Abs (   382,   609)
+	 41: Rel (     0,   477)  ->  Abs (   382,  1086)
+	 42: Rel (  -200,     0)  ->  Abs (   182,  1086)
+	 43: Rel (   -30,     0)  ->  Abs (   152,  1086)
+	 44: Rel (   -26,    23)  ->  Abs (   126,  1109)
+	 45: Rel (     0,    19)  ->  Abs (   126,  1128)
+	 46: Rel (     0,    19)  ->  Abs (   126,  1147)
+	 47: Rel (    25,    23)  ->  Abs (   151,  1170)
+	 48: Rel (    31,     0)  ->  Abs (   182,  1170)
+	 49: Rel (   485,     0)  ->  Abs (   667,  1170)
+	 50: Rel (    30,     0)  ->  Abs (   697,  1170)
+	 51: Rel (    26,   -23)  ->  Abs (   723,  1147)
+	 52: Rel (     0,   -19)  ->  Abs (   723,  1128)
+	 53: Rel (     0,   -19)  ->  Abs (   723,  1109)
+	 54: Rel (   -26,   -23)  ->  Abs (   697,  1086)
+	 55: Rel (   -30,     0)  ->  Abs (   667,  1086)
+
+	Glyph 225: off = 0x0000EF52, len = 388
+	  numberOfContours:	1
+	  xMin:			187
+	  yMin:			0
+	  xMax:			1044
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  46
+
+	  Length of Instructions:	251
+	00000: NPUSHB     (122):    52    35    55    36     2    60     5    50    32    56 
+	                            37    79     5   111     4   111    10     6    11    28 
+	                            29    29    10     1    38    37    37     2    28    27 
+	                            39    29    10    38    27    39    27     2    11    12 
+	                             0    29    10     1    12     0    27     2    26    20 
+	                            23    88    27    27    34    20    13    19    16    88 
+	                            12    12    34    19    40    46    43   149    39    39 
+	                            34    46    30    35    27    47     3     8    48    12 
+	                            38    35    30    28    11     8     3     1     8    46 
+	                            20     2    37    37    32    29    10    20    29    29 
+	                            10    29    37    27    47     2    10    48    12    37 
+	                            29    10     2     4    46     0    46    13    59    20 
+	                             0     7 
+	00124: PUSHW[1]            360 
+	00127: PUSHB[4]             12    32    39    27 
+	00132: PUSHW[1]            360 
+	00135: PUSHB[4]             48    34     1    34 
+	00140: PUSHW[1]            497 
+	00143: PUSHB[8]             47    46     0    20    10    81   127    24 
+	00152: PUSHW[1]            291 
+	00155: SCANCTRL   
+	00156: CALL       
+	00157: SVTCA[y-axis] 
+	00158: MIAP[rd+ci] 
+	00159: MIAP[rd+ci] 
+	00160: SVTCA[x-axis] 
+	00161: SRP0       
+	00162: MIRP[srp0,nmd,rd,2] 
+	00163: DELTAP1    
+	00164: MIRP[srp0,nmd,rd,0] 
+	00165: ALIGNRP    
+	00166: MIRP[srp0,md,rd,1] 
+	00167: MIRP[nrp0,nmd,rd,0] 
+	00168: ALIGNRP    
+	00169: SVTCA[y-axis] 
+	00170: SRP0       
+	00171: MIRP[nrp0,md,rd,1] 
+	00172: SRP0       
+	00173: ALIGNRP    
+	00174: SRP2       
+	00175: SLOOP      
+	00176: IP         
+	00177: SVTCA[x-axis] 
+	00178: SRP1       
+	00179: SRP2       
+	00180: IP         
+	00181: IP         
+	00182: SRP1       
+	00183: SRP2       
+	00184: IP         
+	00185: IP         
+	00186: SDPVTL[1]  
+	00187: SFVTPV     
+	00188: MDAP[nrd]  
+	00189: CALL       
+	00190: RDTG       
+	00191: SRP0       
+	00192: MDRP[nrp0,nmd,rd,0] 
+	00193: SVTCA[y-axis] 
+	00194: SRP1       
+	00195: SRP2       
+	00196: SLOOP      
+	00197: IP         
+	00198: SVTCA[x-axis] 
+	00199: SRP1       
+	00200: SRP2       
+	00201: IP         
+	00202: IP         
+	00203: SRP1       
+	00204: SRP2       
+	00205: IP         
+	00206: IP         
+	00207: RTG        
+	00208: SVTCA[y-axis] 
+	00209: SRP0       
+	00210: MIRP[nrp0,md,rd,1] 
+	00211: SVTCA[x-axis] 
+	00212: SRP0       
+	00213: MIRP[srp0,nmd,rd,1] 
+	00214: MDRP[srp0,nmd,rd,0] 
+	00215: ALIGNRP    
+	00216: SVTCA[y-axis] 
+	00217: SRP0       
+	00218: MIRP[nrp0,md,rd,1] 
+	00219: SVTCA[x-axis] 
+	00220: SRP0       
+	00221: MIRP[srp0,nmd,rd,1] 
+	00222: MDRP[srp0,nmd,rd,0] 
+	00223: ALIGNRP    
+	00224: SVTCA[y-axis] 
+	00225: SRP0       
+	00226: MIRP[nrp0,md,rd,1] 
+	00227: SVTCA[x-axis] 
+	00228: SRP0       
+	00229: MIRP[srp0,nmd,rd,1] 
+	00230: MDRP[srp0,nmd,rd,0] 
+	00231: ALIGNRP    
+	00232: ISECT      
+	00233: ISECT      
+	00234: ISECT      
+	00235: ISECT      
+	00236: SPVTL[p1,p2] 
+	00237: SRP0       
+	00238: SFVTCA[y-axis] 
+	00239: ALIGNRP    
+	00240: ALIGNRP    
+	00241: SPVTL[p1,p2] 
+	00242: SRP0       
+	00243: ALIGNRP    
+	00244: ALIGNRP    
+	00245: IUP[y]     
+	00246: IUP[x]     
+	00247: SVTCA[y-axis] 
+	00248: DELTAP1    
+	00249: SVTCA[x-axis] 
+	00250: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                 X-Short On
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:                      Y-Short X-Short On
+	 12:        XDual                         On
+	 13:  YDual                               On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                               On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual                               On
+	 28:        XDual                         On
+	 29:                      Y-Short X-Short On
+	 30:                      Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short X-Short On
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:        XDual                         On
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   657,  1255)  ->  Abs (   657,  1255)
+	  1: Rel (     1,  -555)  ->  Abs (   658,   700)
+	  2: Rel (   182,   104)  ->  Abs (   840,   804)
+	  3: Rel (    23,    13)  ->  Abs (   863,   817)
+	  4: Rel (    11,     0)  ->  Abs (   874,   817)
+	  5: Rel (    18,     0)  ->  Abs (   892,   817)
+	  6: Rel (    24,   -24)  ->  Abs (   916,   793)
+	  7: Rel (     0,   -18)  ->  Abs (   916,   775)
+	  8: Rel (     0,   -13)  ->  Abs (   916,   762)
+	  9: Rel (   -13,   -19)  ->  Abs (   903,   743)
+	 10: Rel (   -21,   -12)  ->  Abs (   882,   731)
+	 11: Rel (  -225,  -129)  ->  Abs (   657,   602)
+	 12: Rel (     0,  -518)  ->  Abs (   657,    84)
+	 13: Rel (   330,     0)  ->  Abs (   987,    84)
+	 14: Rel (    31,     0)  ->  Abs (  1018,    84)
+	 15: Rel (    26,   -23)  ->  Abs (  1044,    61)
+	 16: Rel (     0,   -19)  ->  Abs (  1044,    42)
+	 17: Rel (     0,   -18)  ->  Abs (  1044,    24)
+	 18: Rel (   -26,   -24)  ->  Abs (  1018,     0)
+	 19: Rel (   -31,     0)  ->  Abs (   987,     0)
+	 20: Rel (  -744,     0)  ->  Abs (   243,     0)
+	 21: Rel (   -30,     0)  ->  Abs (   213,     0)
+	 22: Rel (   -26,    24)  ->  Abs (   187,    24)
+	 23: Rel (     0,    18)  ->  Abs (   187,    42)
+	 24: Rel (     0,    19)  ->  Abs (   187,    61)
+	 25: Rel (    26,    23)  ->  Abs (   213,    84)
+	 26: Rel (    30,     0)  ->  Abs (   243,    84)
+	 27: Rel (   330,     0)  ->  Abs (   573,    84)
+	 28: Rel (     0,   470)  ->  Abs (   573,   554)
+	 29: Rel (  -181,  -104)  ->  Abs (   392,   450)
+	 30: Rel (   -21,   -12)  ->  Abs (   371,   438)
+	 31: Rel (   -13,     0)  ->  Abs (   358,   438)
+	 32: Rel (   -17,     0)  ->  Abs (   341,   438)
+	 33: Rel (   -24,    25)  ->  Abs (   317,   463)
+	 34: Rel (     0,    17)  ->  Abs (   317,   480)
+	 35: Rel (     0,    13)  ->  Abs (   317,   493)
+	 36: Rel (    12,    19)  ->  Abs (   329,   512)
+	 37: Rel (    21,    12)  ->  Abs (   350,   524)
+	 38: Rel (   223,   127)  ->  Abs (   573,   651)
+	 39: Rel (     0,   519)  ->  Abs (   573,  1170)
+	 40: Rel (  -242,     0)  ->  Abs (   331,  1170)
+	 41: Rel (   -30,     0)  ->  Abs (   301,  1170)
+	 42: Rel (   -27,    24)  ->  Abs (   274,  1194)
+	 43: Rel (     0,    19)  ->  Abs (   274,  1213)
+	 44: Rel (     0,    18)  ->  Abs (   274,  1231)
+	 45: Rel (    26,    24)  ->  Abs (   300,  1255)
+	 46: Rel (    31,     0)  ->  Abs (   331,  1255)
+
+	Glyph 226: off = 0x0000F0D6, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			185
+	  yMin:			-33
+	  xMax:			1044
+	  yMax:			1557
+
+	     0: Flags:		0x0226
+		Glyf Index:	54
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	0
+		Y WOffset:	258
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     1    79    79   127    79   191    79     3    79    67 
+	                             3   104    43     1     1    69 
+	00018: PUSHW[3]            651    41   300 
+	00025: SCANCTRL   
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: SHC[rp1,zp0] 
+
+	Glyph 227: off = 0x0000F110, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			207
+	  yMin:			-33
+	  xMax:			1022
+	  yMax:			1299
+
+	     0: Flags:		0x0226
+		Glyf Index:	86
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	223
+		X BOffset:	-1
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     1    79    79   111    79     2    79    67     0   104 
+	                            43     1     1    69 
+	00016: PUSHW[3]            652    41   300 
+	00023: SCANCTRL   
+	00024: SVTCA[y-axis] 
+	00025: CALL       
+	00026: SVTCA[x-axis] 
+	00027: CALL       
+	00028: DELTAP1    
+	00029: SHC[rp1,zp0] 
+
+	Glyph 228: off = 0x0000F146, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			213
+	  yMin:			0
+	  xMax:			1022
+	  yMax:			1557
+
+	     0: Flags:		0x0226
+		Glyf Index:	61
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	3
+		Y WOffset:	258
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              1    95    36     1    36     5 
+	00007: PUSHW[1]            282 
+	00010: PUSHB[5]            104    43     1     1    26 
+	00016: PUSHW[2]            651    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 229: off = 0x0000F17C, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			237
+	  yMin:			0
+	  xMax:			1006
+	  yMax:			1299
+
+	     0: Flags:		0x0226
+		Glyf Index:	93
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	223
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (11):     1    15    24     1   111    24   191    24     2    24 
+	                            23 
+	00013: PUSHW[1]            400 
+	00016: PUSHB[5]            104    43     1     1    24 
+	00022: PUSHW[3]            652    41   292 
+	00029: SCANCTRL   
+	00030: SVTCA[y-axis] 
+	00031: CALL       
+	00032: SVTCA[x-axis] 
+	00033: CALL       
+	00034: DELTAP1    
+	00035: DELTAP2    
+	00036: SHC[rp1,zp0] 
+
+	Glyph 230: off = 0x0000F1BA, len = 240
+	  numberOfContours:	2
+	  xMin:			572
+	  yMin:			-259
+	  xMax:			657
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  20
+	  1:  41
+
+	  Length of Instructions:	107
+	00000: NPUSHB      (34):    39    38    36    35    28    27    18    17    15    14 
+	                             7     6    12    22     9    41    39    35    28    23 
+	                             5    37    26    20    18    14     7     2     5    15 
+	                             5    26   182    37 
+	00036: PUSHW[1]            757 
+	00039: NPUSHB      (27):     5   182    17    17    16    15     0    22    52    21 
+	                             1    52     0     0    21    36    32    10    11    31 
+	                            32     9    25    42   101   169    24 
+	00068: CALL       
+	00069: FLIPOFF    
+	00070: SRP0       
+	00071: MIRP[srp0,nmd,rd,0] 
+	00072: ALIGNRP    
+	00073: ALIGNRP    
+	00074: ALIGNRP    
+	00075: ALIGNRP    
+	00076: FLIPON     
+	00077: SRP0       
+	00078: MIRP[srp0,md,rd,1] 
+	00079: ALIGNRP    
+	00080: SRP0       
+	00081: MIRP[nrp0,nmd,rd,0] 
+	00082: SRP0       
+	00083: MIRP[nrp0,nmd,rd,0] 
+	00084: SVTCA[y-axis] 
+	00085: MIAP[rd+ci] 
+	00086: ALIGNRP    
+	00087: ALIGNRP    
+	00088: SRP0       
+	00089: MIRP[srp0,md,rd,1] 
+	00090: MIRP[srp0,nmd,rd,2] 
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: SRP1       
+	00093: SRP2       
+	00094: SLOOP      
+	00095: IP         
+	00096: SRP1       
+	00097: SRP2       
+	00098: SLOOP      
+	00099: IP         
+	00100: SVTCA[x-axis] 
+	00101: SRP1       
+	00102: SRP2       
+	00103: SLOOP      
+	00104: IP         
+	00105: IUP[y]     
+	00106: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                              X-Short On
+	  2:        XDual         Y-Short         Off
+	  3:                      Y-Short X-Short On
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:        XDual                         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual                         On
+	 22:                              X-Short On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:        XDual                         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short X-Short On
+	 41:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   657,  1138)  ->  Abs (   657,  1138)
+	  1: Rel (    -1,  -376)  ->  Abs (   656,   762)
+	  2: Rel (     0,   -88)  ->  Abs (   656,   674)
+	  3: Rel (    -6,   -10)  ->  Abs (   650,   664)
+	  4: Rel (   -14,   -19)  ->  Abs (   636,   645)
+	  5: Rel (   -22,     0)  ->  Abs (   614,   645)
+	  6: Rel (   -14,     0)  ->  Abs (   600,   645)
+	  7: Rel (   -23,    18)  ->  Abs (   577,   663)
+	  8: Rel (    -3,    12)  ->  Abs (   574,   675)
+	  9: Rel (    -2,     9)  ->  Abs (   572,   684)
+	 10: Rel (     0,    78)  ->  Abs (   572,   762)
+	 11: Rel (     0,   376)  ->  Abs (   572,  1138)
+	 12: Rel (     0,    79)  ->  Abs (   572,  1217)
+	 13: Rel (     2,     8)  ->  Abs (   574,  1225)
+	 14: Rel (     3,    12)  ->  Abs (   577,  1237)
+	 15: Rel (    23,    18)  ->  Abs (   600,  1255)
+	 16: Rel (    14,     0)  ->  Abs (   614,  1255)
+	 17: Rel (    14,     0)  ->  Abs (   628,  1255)
+	 18: Rel (    23,   -18)  ->  Abs (   651,  1237)
+	 19: Rel (     3,   -12)  ->  Abs (   654,  1225)
+	 20: Rel (     3,    -9)  ->  Abs (   657,  1216)
+	 21: Rel (     0,  -983)  ->  Abs (   657,   233)
+	 22: Rel (    -1,  -376)  ->  Abs (   656,  -143)
+	 23: Rel (     0,   -88)  ->  Abs (   656,  -231)
+	 24: Rel (    -6,    -9)  ->  Abs (   650,  -240)
+	 25: Rel (   -14,   -19)  ->  Abs (   636,  -259)
+	 26: Rel (   -22,     0)  ->  Abs (   614,  -259)
+	 27: Rel (   -14,     0)  ->  Abs (   600,  -259)
+	 28: Rel (   -23,    17)  ->  Abs (   577,  -242)
+	 29: Rel (    -3,    12)  ->  Abs (   574,  -230)
+	 30: Rel (    -2,     9)  ->  Abs (   572,  -221)
+	 31: Rel (     0,    78)  ->  Abs (   572,  -143)
+	 32: Rel (     0,   376)  ->  Abs (   572,   233)
+	 33: Rel (     0,    79)  ->  Abs (   572,   312)
+	 34: Rel (     2,     8)  ->  Abs (   574,   320)
+	 35: Rel (     3,    13)  ->  Abs (   577,   333)
+	 36: Rel (    23,    17)  ->  Abs (   600,   350)
+	 37: Rel (    14,     0)  ->  Abs (   614,   350)
+	 38: Rel (    14,     0)  ->  Abs (   628,   350)
+	 39: Rel (    23,   -17)  ->  Abs (   651,   333)
+	 40: Rel (     3,   -13)  ->  Abs (   654,   320)
+	 41: Rel (     3,    -8)  ->  Abs (   657,   312)
+
+	Glyph 231: off = 0x0000F2AA, len = 426
+	  numberOfContours:	2
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  42
+	  1:  70
+
+	  Length of Instructions:	226
+	00000: NPUSHB     (143):    40    31     1    12    46    30    47    28    54    42 
+	                            52    74    46    90    47   106    47     7    34    23 
+	                            36    25    37    32    51    23    50    25    53    32 
+	                           137    47   137    53   156    46   154    47   155    54 
+	                           155    55   175    46   175    56   191    46   191    56 
+	                           218    47   218    53   235    46   235    56   251    56 
+	                            21    11     1     6    51    12    12    29     1    41 
+	                            35    38    41    42    42    29    35    14    20    17 
+	                            41    13    13    29    20    60    70    65    54    59 
+	                            59    29    70    29    72    27    45    38    35    58 
+	                            38    20    70     1     1    35    20     2    35     8 
+	                            50    38    15    27   175    27     2    15    27    32 
+	                            27     2    27    26    72    58    59    44    30    42 
+	                            13    42   175    12     1    32    12    79    12     2 
+	                            12    25    71 
+	00145: PUSHW[3]            313   264    24 
+	00152: CALL       
+	00153: FLIPOFF    
+	00154: SRP0       
+	00155: MIRP[srp0,nmd,rd,0] 
+	00156: DELTAP1    
+	00157: DELTAP2    
+	00158: ALIGNRP    
+	00159: ALIGNRP    
+	00160: FLIPON     
+	00161: SRP0       
+	00162: MIRP[srp0,md,rd,1] 
+	00163: ALIGNRP    
+	00164: ALIGNRP    
+	00165: FLIPOFF    
+	00166: SRP0       
+	00167: MIRP[srp0,nmd,rd,2] 
+	00168: DELTAP1    
+	00169: DELTAP2    
+	00170: FLIPON     
+	00171: MIRP[nrp0,md,rd,1] 
+	00172: SVTCA[y-axis] 
+	00173: MIAP[rd+ci] 
+	00174: MIAP[rd+ci] 
+	00175: SRP2       
+	00176: IP         
+	00177: MDAP[rd]   
+	00178: ALIGNRP    
+	00179: SRP0       
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: SRP0       
+	00182: MIRP[nrp0,md,rd,1] 
+	00183: SVTCA[x-axis] 
+	00184: SRP1       
+	00185: SRP2       
+	00186: IP         
+	00187: SVTCA[y-axis] 
+	00188: SRP0       
+	00189: MIRP[nrp0,md,rd,1] 
+	00190: SVTCA[x-axis] 
+	00191: SRP0       
+	00192: MIRP[srp0,nmd,rd,1] 
+	00193: MDRP[srp0,nmd,rd,0] 
+	00194: ALIGNRP    
+	00195: SVTCA[y-axis] 
+	00196: SRP0       
+	00197: MIRP[nrp0,md,rd,1] 
+	00198: SVTCA[x-axis] 
+	00199: SRP0       
+	00200: MIRP[srp0,nmd,rd,1] 
+	00201: MDRP[srp0,nmd,rd,0] 
+	00202: ALIGNRP    
+	00203: SVTCA[y-axis] 
+	00204: SRP0       
+	00205: MIRP[nrp0,md,rd,1] 
+	00206: SVTCA[x-axis] 
+	00207: SRP0       
+	00208: MIRP[srp0,nmd,rd,1] 
+	00209: MDRP[srp0,nmd,rd,0] 
+	00210: ALIGNRP    
+	00211: SVTCA[y-axis] 
+	00212: SRP0       
+	00213: MIRP[nrp0,md,rd,1] 
+	00214: SVTCA[x-axis] 
+	00215: SRP0       
+	00216: MIRP[srp0,nmd,rd,1] 
+	00217: MDRP[srp0,nmd,rd,0] 
+	00218: ALIGNRP    
+	00219: IUP[y]     
+	00220: IUP[x]     
+	00221: SVTCA[x-axis] 
+	00222: DELTAP1    
+	00223: DELTAP2    
+	00224: SVTCA[y-axis] 
+	00225: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual                               On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:                      Y-Short X-Short Off
+	 32:                      Y-Short X-Short On
+	 33:                      Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                               On
+	 36:  YDual                       X-Short Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short On
+	 43:        XDual                 X-Short On
+	 44:        XDual                         On
+	 45:  YDual                               On
+	 46:  YDual XDual                 X-Short Off
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual         Y-Short         On
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual               Y-Short X-Short On
+	 53:  YDual               Y-Short X-Short Off
+	 54:  YDual               Y-Short X-Short On
+	 55:  YDual               Y-Short X-Short Off
+	 56:  YDual               Y-Short X-Short Off
+	 57:  YDual                       X-Short On
+	 58:  YDual                               On
+	 59:        XDual                         On
+	 60:  YDual XDual                 X-Short On
+	 61:  YDual XDual                 X-Short Off
+	 62:        XDual         Y-Short X-Short On
+	 63:        XDual         Y-Short X-Short Off
+	 64:        XDual         Y-Short X-Short Off
+	 65:        XDual         Y-Short         On
+	 66:        XDual         Y-Short         Off
+	 67:                      Y-Short X-Short Off
+	 68:                      Y-Short X-Short On
+	 69:                      Y-Short X-Short Off
+	 70:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   213,   564)  ->  Abs (   213,   564)
+	  1: Rel (   -99,     0)  ->  Abs (   114,   564)
+	  2: Rel (   -79,     0)  ->  Abs (    35,   564)
+	  3: Rel (    -8,     2)  ->  Abs (    27,   566)
+	  4: Rel (   -13,     4)  ->  Abs (    14,   570)
+	  5: Rel (   -17,    22)  ->  Abs (    -3,   592)
+	  6: Rel (     0,    15)  ->  Abs (    -3,   607)
+	  7: Rel (     0,    14)  ->  Abs (    -3,   621)
+	  8: Rel (    17,    22)  ->  Abs (    14,   643)
+	  9: Rel (    13,     4)  ->  Abs (    27,   647)
+	 10: Rel (     8,     2)  ->  Abs (    35,   649)
+	 11: Rel (    79,     0)  ->  Abs (   114,   649)
+	 12: Rel (    99,     0)  ->  Abs (   213,   649)
+	 13: Rel (     0,   437)  ->  Abs (   213,  1086)
+	 14: Rel (   -70,     0)  ->  Abs (   143,  1086)
+	 15: Rel (   -31,     0)  ->  Abs (   112,  1086)
+	 16: Rel (   -26,    23)  ->  Abs (    86,  1109)
+	 17: Rel (     0,    19)  ->  Abs (    86,  1128)
+	 18: Rel (     0,    19)  ->  Abs (    86,  1147)
+	 19: Rel (    26,    23)  ->  Abs (   112,  1170)
+	 20: Rel (    31,     0)  ->  Abs (   143,  1170)
+	 21: Rel (   451,     0)  ->  Abs (   594,  1170)
+	 22: Rel (   106,     0)  ->  Abs (   700,  1170)
+	 23: Rel (   175,   -88)  ->  Abs (   875,  1082)
+	 24: Rel (    46,   -56)  ->  Abs (   921,  1026)
+	 25: Rel (    79,   -95)  ->  Abs (  1000,   931)
+	 26: Rel (    41,  -106)  ->  Abs (  1041,   825)
+	 27: Rel (    30,   -77)  ->  Abs (  1071,   748)
+	 28: Rel (     0,  -105)  ->  Abs (  1071,   643)
+	 29: Rel (     0,  -116)  ->  Abs (  1071,   527)
+	 30: Rel (     0,  -129)  ->  Abs (  1071,   398)
+	 31: Rel (  -115,  -242)  ->  Abs (   956,   156)
+	 32: Rel (  -133,   -90)  ->  Abs (   823,    66)
+	 33: Rel (   -99,   -66)  ->  Abs (   724,     0)
+	 34: Rel (  -130,     0)  ->  Abs (   594,     0)
+	 35: Rel (  -451,     0)  ->  Abs (   143,     0)
+	 36: Rel (   -31,     0)  ->  Abs (   112,     0)
+	 37: Rel (   -26,    24)  ->  Abs (    86,    24)
+	 38: Rel (     0,    18)  ->  Abs (    86,    42)
+	 39: Rel (     0,    19)  ->  Abs (    86,    61)
+	 40: Rel (    26,    23)  ->  Abs (   112,    84)
+	 41: Rel (    31,     0)  ->  Abs (   143,    84)
+	 42: Rel (    70,     0)  ->  Abs (   213,    84)
+	 43: Rel (    85,   480)  ->  Abs (   298,   564)
+	 44: Rel (     0,  -480)  ->  Abs (   298,    84)
+	 45: Rel (   305,     0)  ->  Abs (   603,    84)
+	 46: Rel (   105,     0)  ->  Abs (   708,    84)
+	 47: Rel (   186,   138)  ->  Abs (   894,   222)
+	 48: Rel (    92,   193)  ->  Abs (   986,   415)
+	 49: Rel (     0,    94)  ->  Abs (   986,   509)
+	 50: Rel (     0,   152)  ->  Abs (   986,   661)
+	 51: Rel (     0,    78)  ->  Abs (   986,   739)
+	 52: Rel (   -24,    61)  ->  Abs (   962,   800)
+	 53: Rel (   -37,    89)  ->  Abs (   925,   889)
+	 54: Rel (   -65,    80)  ->  Abs (   860,   969)
+	 55: Rel (   -36,    44)  ->  Abs (   824,  1013)
+	 56: Rel (  -141,    73)  ->  Abs (   683,  1086)
+	 57: Rel (   -80,     0)  ->  Abs (   603,  1086)
+	 58: Rel (  -305,     0)  ->  Abs (   298,  1086)
+	 59: Rel (     0,  -437)  ->  Abs (   298,   649)
+	 60: Rel (   234,     0)  ->  Abs (   532,   649)
+	 61: Rel (    79,     0)  ->  Abs (   611,   649)
+	 62: Rel (     8,    -2)  ->  Abs (   619,   647)
+	 63: Rel (    12,    -4)  ->  Abs (   631,   643)
+	 64: Rel (    18,   -22)  ->  Abs (   649,   621)
+	 65: Rel (     0,   -14)  ->  Abs (   649,   607)
+	 66: Rel (     0,   -15)  ->  Abs (   649,   592)
+	 67: Rel (   -18,   -22)  ->  Abs (   631,   570)
+	 68: Rel (   -12,    -4)  ->  Abs (   619,   566)
+	 69: Rel (    -8,    -2)  ->  Abs (   611,   564)
+	 70: Rel (   -79,     0)  ->  Abs (   532,   564)
+
+	Glyph 232: off = 0x0000F454, len = 456
+	  numberOfContours:	2
+	  xMin:			129
+	  yMin:			-31
+	  xMax:			1070
+	  yMax:			1250
+
+	EndPoints
+	---------
+	  0:  49
+	  1:  63
+
+	  Length of Instructions:	262
+	00000: NPUSHB     (145):    14     6     6    30    29     6    22    30    24    32 
+	                            39    30   156    21   154    52   148    62   172    21 
+	                           173    52   160    62   188    52   178    58   178    62 
+	                           195    59    16    11    11    13    29     3    62     3 
+	                            15    31    15    32    15    33    15    34    24    21 
+	                            31    31    29    32    30    33    28    34    36     0 
+	                            42    25    32    30   101    38    13    56     8    43 
+	                            40    30    10     0     5    45    27    54     6    27 
+	                            57    50    36    30    40    10     0     5     3    37 
+	                            43    33    48     0    32    59    47    37     1    37 
+	                            37    57     9    59     3     0    57    33    32    22 
+	                            48    22    64    22     3    22     6    50    33    16 
+	                            11    35   154    45    45    64    65     6   143    54 
+	                            33    15    13     1    13    26    65    60    33    19 
+	                            25    64    42   172    24 
+	00147: PUSHW[1]            289 
+	00150: SCANCTRL   
+	00151: CALL       
+	00152: FLIPOFF    
+	00153: SRP0       
+	00154: MIRP[srp0,nmd,rd,0] 
+	00155: FLIPON     
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: FLIPOFF    
+	00158: SRP0       
+	00159: MIRP[srp0,nmd,rd,2] 
+	00160: DELTAP1    
+	00161: FLIPON     
+	00162: MIRP[srp0,md,rd,1] 
+	00163: MIRP[nrp0,nmd,rd,2] 
+	00164: SRP1       
+	00165: SRP2       
+	00166: IP         
+	00167: MDAP[rd]   
+	00168: MIRP[nrp0,nmd,rd,0] 
+	00169: SVTCA[y-axis] 
+	00170: MIAP[rd+ci] 
+	00171: MIRP[nrp0,md,rd,1] 
+	00172: MIAP[rd+ci] 
+	00173: DELTAP1    
+	00174: MIRP[nrp0,md,rd,1] 
+	00175: MIAP[rd+ci] 
+	00176: MIRP[nrp0,md,rd,1] 
+	00177: SRP2       
+	00178: IP         
+	00179: MDAP[rd]   
+	00180: DELTAP1    
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: MIAP[rd+ci] 
+	00183: MIRP[nrp0,md,rd,1] 
+	00184: SRP1       
+	00185: SRP2       
+	00186: SLOOP      
+	00187: IP         
+	00188: SRP1       
+	00189: SRP2       
+	00190: IP         
+	00191: SVTCA[x-axis] 
+	00192: SRP1       
+	00193: SRP2       
+	00194: IP         
+	00195: SRP2       
+	00196: SLOOP      
+	00197: IP         
+	00198: IUP[y]     
+	00199: IUP[x]     
+	00200: RS         
+	00201: JROF       
+	00202: NPUSHB      (40):    58    63    51    53    14    21    62    38    52    37 
+	                            58    21    60    35     0    63    17    60    35     0 
+	                            51    15    54    35     1    59    20    57    35     1 
+	                            61    18    50    35     0    53    14    50    35     0 
+	00244: SVTCA[y-axis] 
+	00245: CALL       
+	00246: CALL       
+	00247: CALL       
+	00248: SVTCA[x-axis] 
+	00249: CALL       
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+	00253: CALL       
+	00254: FLIPRGON   
+	00255: FLIPRGON   
+	00256: FLIPRGON   
+	00257: SVTCA[y-axis] 
+	00258: DELTAP1    
+	00259: SVTCA[x-axis] 
+	00260: DELTAP2    
+	00261: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual                 X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual                         Off
+	 15:                                      Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                                      Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:                                      Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual               Y-Short X-Short On
+	 31:                      Y-Short         Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short X-Short On
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual               Y-Short X-Short On
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual               Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual                 X-Short Off
+	 50:                              X-Short On
+	 51:  YDual XDual                 X-Short Off
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short X-Short Off
+	 54:  YDual XDual         Y-Short         On
+	 55:  YDual XDual         Y-Short         Off
+	 56:  YDual               Y-Short X-Short Off
+	 57:  YDual                       X-Short On
+	 58:  YDual                       X-Short Off
+	 59:                      Y-Short X-Short Off
+	 60:        XDual         Y-Short         On
+	 61:        XDual         Y-Short         Off
+	 62:        XDual         Y-Short X-Short Off
+	 63:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   725,  1173)  ->  Abs (   725,  1173)
+	  1: Rel (   159,    58)  ->  Abs (   884,  1231)
+	  2: Rel (    28,     9)  ->  Abs (   912,  1240)
+	  3: Rel (    19,     0)  ->  Abs (   931,  1240)
+	  4: Rel (    16,     0)  ->  Abs (   947,  1240)
+	  5: Rel (    21,   -22)  ->  Abs (   968,  1218)
+	  6: Rel (     0,   -18)  ->  Abs (   968,  1200)
+	  7: Rel (     0,   -19)  ->  Abs (   968,  1181)
+	  8: Rel (   -16,   -11)  ->  Abs (   952,  1170)
+	  9: Rel (   -27,   -20)  ->  Abs (   925,  1150)
+	 10: Rel (  -128,   -27)  ->  Abs (   797,  1123)
+	 11: Rel (   137,  -126)  ->  Abs (   934,   997)
+	 12: Rel (   136,  -292)  ->  Abs (  1070,   705)
+	 13: Rel (     0,  -209)  ->  Abs (  1070,   496)
+	 14: Rel (     0,  -258)  ->  Abs (  1070,   238)
+	 15: Rel (  -263,  -269)  ->  Abs (   807,   -31)
+	 16: Rel (  -211,     0)  ->  Abs (   596,   -31)
+	 17: Rel (  -200,     0)  ->  Abs (   396,   -31)
+	 18: Rel (  -267,   270)  ->  Abs (   129,   239)
+	 19: Rel (     0,   191)  ->  Abs (   129,   430)
+	 20: Rel (     0,   183)  ->  Abs (   129,   613)
+	 21: Rel (   264,   260)  ->  Abs (   393,   873)
+	 22: Rel (   195,     0)  ->  Abs (   588,   873)
+	 23: Rel (    95,     0)  ->  Abs (   683,   873)
+	 24: Rel (   164,   -68)  ->  Abs (   847,   805)
+	 25: Rel (    53,   -46)  ->  Abs (   900,   759)
+	 26: Rel (    36,   -33)  ->  Abs (   936,   726)
+	 27: Rel (    39,   -62)  ->  Abs (   975,   664)
+	 28: Rel (   -38,   150)  ->  Abs (   937,   814)
+	 29: Rel (   -99,   158)  ->  Abs (   838,   972)
+	 30: Rel (  -132,   117)  ->  Abs (   706,  1089)
+	 31: Rel (  -321,  -112)  ->  Abs (   385,   977)
+	 32: Rel (   -20,     0)  ->  Abs (   365,   977)
+	 33: Rel (   -19,     0)  ->  Abs (   346,   977)
+	 34: Rel (   -24,    22)  ->  Abs (   322,   999)
+	 35: Rel (     0,    16)  ->  Abs (   322,  1015)
+	 36: Rel (     0,    15)  ->  Abs (   322,  1030)
+	 37: Rel (    30,    27)  ->  Abs (   352,  1057)
+	 38: Rel (    89,    27)  ->  Abs (   441,  1084)
+	 39: Rel (   140,    42)  ->  Abs (   581,  1126)
+	 40: Rel (    40,     9)  ->  Abs (   621,  1135)
+	 41: Rel (   -67,    20)  ->  Abs (   554,  1155)
+	 42: Rel (   -71,     9)  ->  Abs (   483,  1164)
+	 43: Rel (   -39,     5)  ->  Abs (   444,  1169)
+	 44: Rel (   -28,    25)  ->  Abs (   416,  1194)
+	 45: Rel (     0,    16)  ->  Abs (   416,  1210)
+	 46: Rel (     0,    16)  ->  Abs (   416,  1226)
+	 47: Rel (    28,    24)  ->  Abs (   444,  1250)
+	 48: Rel (    27,     0)  ->  Abs (   471,  1250)
+	 49: Rel (   130,     0)  ->  Abs (   601,  1250)
+	 50: Rel (    -1, -1202)  ->  Abs (   600,    48)
+	 51: Rel (    94,     0)  ->  Abs (   694,    48)
+	 52: Rel (   186,    94)  ->  Abs (   880,   142)
+	 53: Rel (    98,   172)  ->  Abs (   978,   314)
+	 54: Rel (     0,   104)  ->  Abs (   978,   418)
+	 55: Rel (     0,   157)  ->  Abs (   978,   575)
+	 56: Rel (  -217,   213)  ->  Abs (   761,   788)
+	 57: Rel (  -164,     0)  ->  Abs (   597,   788)
+	 58: Rel (  -167,     0)  ->  Abs (   430,   788)
+	 59: Rel (  -219,  -215)  ->  Abs (   211,   573)
+	 60: Rel (     0,  -149)  ->  Abs (   211,   424)
+	 61: Rel (     0,   -94)  ->  Abs (   211,   330)
+	 62: Rel (   105,  -182)  ->  Abs (   316,   148)
+	 63: Rel (   190,  -100)  ->  Abs (   506,    48)
+
+	Glyph 233: off = 0x0000F61C, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			0
+	  xMax:			1128
+	  yMax:			1587
+
+	     0: Flags:		0x0226
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	0
+		Y WOffset:	258
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1    57    34 
+	00005: PUSHW[1]           -155 
+	00008: PUSHB[5]             72    39     1     1    54 
+	00014: PUSHW[3]            651    41   300 
+	00021: SCANCTRL   
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+
+	Glyph 234: off = 0x0000F650, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			149
+	  yMin:			-386
+	  xMax:			1176
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	92
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	140
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1    57    18 
+	00005: PUSHW[1]           -103 
+	00008: PUSHB[5]             72    39     1     1    55 
+	00014: PUSHW[3]            652    41   292 
+	00021: SCANCTRL   
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+
+	Glyph 235: off = 0x0000F684, len = 402
+	  numberOfContours:	2
+	  xMin:			179
+	  yMin:			0
+	  xMax:			1115
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  45
+	  1:  55
+
+	  Length of Instructions:	241
+	00000: NPUSHB      (64):   172    17   170    49   173    53   188    17   191    49 
+	                           191    53     6    49     8     7     1     4    54     8 
+	                             8    29     1    36    30    33    43    37    37    29 
+	                            30    23    29    26    54    22    22    29    29    39 
+	                             0    42    43    38    38    29     0    46    55    51 
+	                            22    54    55    30    10    64     9     1    15     9 
+	                            31     9     2     9 
+	00066: PUSHW[1]            761 
+	00069: NPUSHB      (14):     8    38     1     1     0     2    47    46    30    20 
+	                            79    21     1    21 
+	00085: PUSHW[1]            761 
+	00088: NPUSHB      (26):    22    38    30    30    29     8    51    37    15    13 
+	                            31    13     2    13    26    57     8    22    30    38 
+	                            37    25    56   246   121    24 
+	00116: CALL       
+	00117: FLIPOFF    
+	00118: SRP0       
+	00119: MIRP[srp0,nmd,rd,0] 
+	00120: ALIGNRP    
+	00121: FLIPON     
+	00122: MIRP[srp0,md,rd,1] 
+	00123: ALIGNRP    
+	00124: FLIPOFF    
+	00125: SRP0       
+	00126: MIRP[srp0,nmd,rd,2] 
+	00127: DELTAP1    
+	00128: FLIPON     
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: SVTCA[y-axis] 
+	00131: MIAP[rd+ci] 
+	00132: ALIGNRP    
+	00133: SRP0       
+	00134: MIRP[srp0,md,rd,1] 
+	00135: MIRP[srp0,md,rd,2] 
+	00136: DELTAP2    
+	00137: ALIGNRP    
+	00138: MIRP[srp0,md,rd,1] 
+	00139: ALIGNRP    
+	00140: MIAP[rd+ci] 
+	00141: ALIGNRP    
+	00142: SRP0       
+	00143: MIRP[srp0,md,rd,1] 
+	00144: MIRP[srp0,md,rd,2] 
+	00145: DELTAP1    
+	00146: DELTAP2    
+	00147: ALIGNRP    
+	00148: MIRP[srp0,md,rd,1] 
+	00149: ALIGNRP    
+	00150: SVTCA[x-axis] 
+	00151: SRP1       
+	00152: SRP2       
+	00153: IP         
+	00154: IP         
+	00155: SVTCA[y-axis] 
+	00156: SRP0       
+	00157: MIRP[nrp0,md,rd,1] 
+	00158: SVTCA[x-axis] 
+	00159: SRP0       
+	00160: MIRP[srp0,nmd,rd,1] 
+	00161: MDRP[srp0,nmd,rd,0] 
+	00162: ALIGNRP    
+	00163: SVTCA[y-axis] 
+	00164: SRP0       
+	00165: MIRP[nrp0,md,rd,1] 
+	00166: SVTCA[x-axis] 
+	00167: SRP0       
+	00168: MIRP[srp0,nmd,rd,1] 
+	00169: MDRP[srp0,nmd,rd,0] 
+	00170: ALIGNRP    
+	00171: SVTCA[y-axis] 
+	00172: SRP0       
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: SVTCA[x-axis] 
+	00175: SRP0       
+	00176: MIRP[srp0,nmd,rd,1] 
+	00177: MDRP[srp0,nmd,rd,0] 
+	00178: ALIGNRP    
+	00179: SVTCA[y-axis] 
+	00180: SRP0       
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: SVTCA[x-axis] 
+	00183: SRP0       
+	00184: MIRP[srp0,nmd,rd,1] 
+	00185: MDRP[srp0,nmd,rd,0] 
+	00186: ALIGNRP    
+	00187: IUP[y]     
+	00188: IUP[x]     
+	00189: RS         
+	00190: JROF       
+	00191: NPUSHB      (36):    48    53    11    19    15    14    16    14    17    14 
+	                            18    14     4     6    49    37    53    11    51    45 
+	                             1    48    19    51    45     1    52    12    54    45 
+	                             1    50    14    47    45     0 
+	00229: SVTCA[y-axis] 
+	00230: CALL       
+	00231: CALL       
+	00232: SVTCA[x-axis] 
+	00233: CALL       
+	00234: CALL       
+	00235: CALL       
+	00236: LOOPCALL   
+	00237: FLIPRGON   
+	00238: FLIPRGON   
+	00239: SVTCA[x-axis] 
+	00240: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                               On
+	  9:        XDual         Y-Short         On
+	 10:  YDual                               On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                               On
+	 22:        XDual         Y-Short         On
+	 23:  YDual                               On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:                      Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                               On
+	 31:  YDual                       X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short On
+	 38:        XDual                         On
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:        XDual                 X-Short On
+	 47:  YDual                               On
+	 48:  YDual XDual                 X-Short Off
+	 49:  YDual XDual         Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         Off
+	 53:  YDual               Y-Short X-Short Off
+	 54:  YDual                       X-Short On
+	 55:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   259,  1170)  ->  Abs (   259,  1170)
+	  1: Rel (   461,     0)  ->  Abs (   720,  1170)
+	  2: Rel (    30,     0)  ->  Abs (   750,  1170)
+	  3: Rel (    26,   -23)  ->  Abs (   776,  1147)
+	  4: Rel (     0,   -19)  ->  Abs (   776,  1128)
+	  5: Rel (     0,   -19)  ->  Abs (   776,  1109)
+	  6: Rel (   -26,   -23)  ->  Abs (   750,  1086)
+	  7: Rel (   -30,     0)  ->  Abs (   720,  1086)
+	  8: Rel (  -288,     0)  ->  Abs (   432,  1086)
+	  9: Rel (     0,  -157)  ->  Abs (   432,   929)
+	 10: Rel (   291,     0)  ->  Abs (   723,   929)
+	 11: Rel (   173,     0)  ->  Abs (   896,   929)
+	 12: Rel (   219,  -205)  ->  Abs (  1115,   724)
+	 13: Rel (     0,  -137)  ->  Abs (  1115,   587)
+	 14: Rel (     0,   -80)  ->  Abs (  1115,   507)
+	 15: Rel (   -71,  -130)  ->  Abs (  1044,   377)
+	 16: Rel (   -50,   -37)  ->  Abs (   994,   340)
+	 17: Rel (   -75,   -56)  ->  Abs (   919,   284)
+	 18: Rel (   -80,   -26)  ->  Abs (   839,   258)
+	 19: Rel (   -58,   -20)  ->  Abs (   781,   238)
+	 20: Rel (   -86,     0)  ->  Abs (   695,   238)
+	 21: Rel (  -263,     0)  ->  Abs (   432,   238)
+	 22: Rel (     0,  -154)  ->  Abs (   432,    84)
+	 23: Rel (   288,     0)  ->  Abs (   720,    84)
+	 24: Rel (    30,     0)  ->  Abs (   750,    84)
+	 25: Rel (    26,   -23)  ->  Abs (   776,    61)
+	 26: Rel (     0,   -19)  ->  Abs (   776,    42)
+	 27: Rel (     0,   -18)  ->  Abs (   776,    24)
+	 28: Rel (   -26,   -24)  ->  Abs (   750,     0)
+	 29: Rel (   -30,     0)  ->  Abs (   720,     0)
+	 30: Rel (  -485,     0)  ->  Abs (   235,     0)
+	 31: Rel (   -30,     0)  ->  Abs (   205,     0)
+	 32: Rel (   -26,    24)  ->  Abs (   179,    24)
+	 33: Rel (     0,    18)  ->  Abs (   179,    42)
+	 34: Rel (     0,    19)  ->  Abs (   179,    61)
+	 35: Rel (    26,    23)  ->  Abs (   205,    84)
+	 36: Rel (    30,     0)  ->  Abs (   235,    84)
+	 37: Rel (   113,     0)  ->  Abs (   348,    84)
+	 38: Rel (     0,  1002)  ->  Abs (   348,  1086)
+	 39: Rel (  -113,     0)  ->  Abs (   235,  1086)
+	 40: Rel (   -30,     0)  ->  Abs (   205,  1086)
+	 41: Rel (   -26,    23)  ->  Abs (   179,  1109)
+	 42: Rel (     0,    19)  ->  Abs (   179,  1128)
+	 43: Rel (     0,    13)  ->  Abs (   179,  1141)
+	 44: Rel (    15,    22)  ->  Abs (   194,  1163)
+	 45: Rel (    20,     7)  ->  Abs (   214,  1170)
+	 46: Rel (   218,  -847)  ->  Abs (   432,   323)
+	 47: Rel (   268,     0)  ->  Abs (   700,   323)
+	 48: Rel (    93,     0)  ->  Abs (   793,   323)
+	 49: Rel (   163,    82)  ->  Abs (   956,   405)
+	 50: Rel (    75,   120)  ->  Abs (  1031,   525)
+	 51: Rel (     0,    62)  ->  Abs (  1031,   587)
+	 52: Rel (     0,    99)  ->  Abs (  1031,   686)
+	 53: Rel (  -170,   158)  ->  Abs (   861,   844)
+	 54: Rel (  -130,     0)  ->  Abs (   731,   844)
+	 55: Rel (  -299,     0)  ->  Abs (   432,   844)
+
+	Glyph 236: off = 0x0000F816, len = 326
+	  numberOfContours:	2
+	  xMin:			45
+	  yMin:			-386
+	  xMax:			1111
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  37
+	  1:  49
+
+	  Length of Instructions:	181
+	00000: NPUSHB      (64):   168    39   168    43   166    45   166    49     4    41 
+	                             8    28    22    25    47    29    29    34    22    15 
+	                            21    18   200    14    14    34    21    31    37    34 
+	                            47    30    30    34     1    13    47    37     0    41 
+	                            33     4     7    47    33    11    10    22    21    14 
+	                             8    33     0    38    16    38    48    38   128    38 
+	                           160    38     5    38 
+	00066: PUSHW[1]            539 
+	00069: NPUSHB      (17):    29     0    44    14    32    30    15    29   111    29 
+	                             2    29    25    50    94   142    24 
+	00088: CALL       
+	00089: FLIPOFF    
+	00090: SRP0       
+	00091: MIRP[srp0,nmd,rd,0] 
+	00092: DELTAP1    
+	00093: ALIGNRP    
+	00094: FLIPON     
+	00095: MIRP[srp0,md,rd,1] 
+	00096: ALIGNRP    
+	00097: ALIGNRP    
+	00098: SRP0       
+	00099: MIRP[srp0,nmd,rd,0] 
+	00100: DELTAP1    
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: SVTCA[y-axis] 
+	00103: MIAP[rd+ci] 
+	00104: ALIGNRP    
+	00105: MIAP[rd+ci] 
+	00106: MIRP[nrp0,md,rd,1] 
+	00107: MIAP[rd+ci] 
+	00108: MIRP[nrp0,md,rd,1] 
+	00109: MIAP[rd+ci] 
+	00110: SRP1       
+	00111: IP         
+	00112: IP         
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: SVTCA[x-axis] 
+	00115: SRP0       
+	00116: MIRP[srp0,nmd,rd,1] 
+	00117: MDRP[srp0,nmd,rd,0] 
+	00118: ALIGNRP    
+	00119: SVTCA[y-axis] 
+	00120: SRP0       
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: SVTCA[x-axis] 
+	00123: SRP0       
+	00124: MIRP[srp0,nmd,rd,1] 
+	00125: MDRP[srp0,nmd,rd,0] 
+	00126: ALIGNRP    
+	00127: SVTCA[y-axis] 
+	00128: SRP0       
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: SVTCA[x-axis] 
+	00131: SRP0       
+	00132: MIRP[srp0,nmd,rd,1] 
+	00133: MDRP[srp0,nmd,rd,0] 
+	00134: ALIGNRP    
+	00135: IUP[y]     
+	00136: IUP[x]     
+	00137: RS         
+	00138: JROF       
+	00139: NPUSHB      (28):    48    49    39    40     5    10     6    37    40     5 
+	                            38    35     1    48    10    38    35     1    39     7 
+	                            41    35     1    49     9    47    35     0 
+	00169: SVTCA[y-axis] 
+	00170: CALL       
+	00171: CALL       
+	00172: SVTCA[x-axis] 
+	00173: CALL       
+	00174: CALL       
+	00175: CALL       
+	00176: FLIPRGON   
+	00177: FLIPRGON   
+	00178: FLIPRGON   
+	00179: SVTCA[y-axis] 
+	00180: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                                      Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:        XDual                         On
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                               On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short On
+	 30:        XDual                         On
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:                                      On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:                      Y-Short X-Short Off
+	 44:        XDual         Y-Short         On
+	 45:        XDual         Y-Short         Off
+	 46:        XDual         Y-Short X-Short Off
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short Off
+	 49:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   298,  1255)  ->  Abs (   298,  1255)
+	  1: Rel (     0,  -542)  ->  Abs (   298,   713)
+	  2: Rel (    75,    91)  ->  Abs (   373,   804)
+	  3: Rel (   172,    92)  ->  Abs (   545,   896)
+	  4: Rel (   117,     0)  ->  Abs (   662,   896)
+	  5: Rel (   124,     0)  ->  Abs (   786,   896)
+	  6: Rel (   210,  -116)  ->  Abs (   996,   780)
+	  7: Rel (   115,  -207)  ->  Abs (  1111,   573)
+	  8: Rel (     0,  -114)  ->  Abs (  1111,   459)
+	  9: Rel (     0,  -181)  ->  Abs (  1111,   278)
+	 10: Rel (  -259,  -257)  ->  Abs (   852,    21)
+	 11: Rel (  -189,     0)  ->  Abs (   663,    21)
+	 12: Rel (  -225,     0)  ->  Abs (   438,    21)
+	 13: Rel (  -140,   183)  ->  Abs (   298,   204)
+	 14: Rel (     0,  -506)  ->  Abs (   298,  -302)
+	 15: Rel (   204,     0)  ->  Abs (   502,  -302)
+	 16: Rel (    30,     0)  ->  Abs (   532,  -302)
+	 17: Rel (    26,   -23)  ->  Abs (   558,  -325)
+	 18: Rel (     0,   -19)  ->  Abs (   558,  -344)
+	 19: Rel (     0,   -18)  ->  Abs (   558,  -362)
+	 20: Rel (   -26,   -24)  ->  Abs (   532,  -386)
+	 21: Rel (   -30,     0)  ->  Abs (   502,  -386)
+	 22: Rel (  -401,     0)  ->  Abs (   101,  -386)
+	 23: Rel (   -30,     0)  ->  Abs (    71,  -386)
+	 24: Rel (   -26,    23)  ->  Abs (    45,  -363)
+	 25: Rel (     0,    19)  ->  Abs (    45,  -344)
+	 26: Rel (     0,    19)  ->  Abs (    45,  -325)
+	 27: Rel (    26,    23)  ->  Abs (    71,  -302)
+	 28: Rel (    30,     0)  ->  Abs (   101,  -302)
+	 29: Rel (   113,     0)  ->  Abs (   214,  -302)
+	 30: Rel (     0,  1472)  ->  Abs (   214,  1170)
+	 31: Rel (  -113,     0)  ->  Abs (   101,  1170)
+	 32: Rel (   -30,     0)  ->  Abs (    71,  1170)
+	 33: Rel (   -26,    24)  ->  Abs (    45,  1194)
+	 34: Rel (     0,    19)  ->  Abs (    45,  1213)
+	 35: Rel (     0,    18)  ->  Abs (    45,  1231)
+	 36: Rel (    26,    24)  ->  Abs (    71,  1255)
+	 37: Rel (    30,     0)  ->  Abs (   101,  1255)
+	 38: Rel (   925,  -796)  ->  Abs (  1026,   459)
+	 39: Rel (     0,   145)  ->  Abs (  1026,   604)
+	 40: Rel (  -211,   207)  ->  Abs (   815,   811)
+	 41: Rel (  -152,     0)  ->  Abs (   663,   811)
+	 42: Rel (  -153,     0)  ->  Abs (   510,   811)
+	 43: Rel (  -212,  -208)  ->  Abs (   298,   603)
+	 44: Rel (     0,  -144)  ->  Abs (   298,   459)
+	 45: Rel (     0,  -145)  ->  Abs (   298,   314)
+	 46: Rel (   212,  -208)  ->  Abs (   510,   106)
+	 47: Rel (   153,     0)  ->  Abs (   663,   106)
+	 48: Rel (   151,     0)  ->  Abs (   814,   106)
+	 49: Rel (   212,   207)  ->  Abs (  1026,   313)
+
+	Glyph 237: off = 0x0000F95C, len = 126
+	  numberOfContours:	1
+	  xMin:			144
+	  yMin:			543
+	  xMax:			1085
+	  yMax:			627
+
+	EndPoints
+	---------
+	  0:  21
+
+	  Length of Instructions:	51
+	00000: NPUSHB      (29):    19    15     8     4     4    17     6    19    18    16 
+	                            15     8     7     5     4     8     1    11    36     0 
+	                            17    26    23     6    25    22    80   129    24 
+	00031: CALL       
+	00032: FLIPOFF    
+	00033: SRP0       
+	00034: MIRP[nrp0,nmd,rd,0] 
+	00035: SRP0       
+	00036: MIRP[nrp0,nmd,rd,2] 
+	00037: SVTCA[y-axis] 
+	00038: MDAP[rd]   
+	00039: FLIPON     
+	00040: MIRP[nrp0,md,rd,1] 
+	00041: SRP1       
+	00042: SLOOP      
+	00043: IP         
+	00044: SVTCA[x-axis] 
+	00045: SRP1       
+	00046: SRP2       
+	00047: SLOOP      
+	00048: IP         
+	00049: IUP[y]     
+	00050: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual                               On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   968,   543)  ->  Abs (   968,   543)
+	  1: Rel (  -707,     0)  ->  Abs (   261,   543)
+	  2: Rel (   -79,     0)  ->  Abs (   182,   543)
+	  3: Rel (    -8,     2)  ->  Abs (   174,   545)
+	  4: Rel (   -13,     3)  ->  Abs (   161,   548)
+	  5: Rel (   -17,    23)  ->  Abs (   144,   571)
+	  6: Rel (     0,    14)  ->  Abs (   144,   585)
+	  7: Rel (     0,    14)  ->  Abs (   144,   599)
+	  8: Rel (    17,    23)  ->  Abs (   161,   622)
+	  9: Rel (    13,     3)  ->  Abs (   174,   625)
+	 10: Rel (     8,     2)  ->  Abs (   182,   627)
+	 11: Rel (    79,     0)  ->  Abs (   261,   627)
+	 12: Rel (   707,     0)  ->  Abs (   968,   627)
+	 13: Rel (    79,     0)  ->  Abs (  1047,   627)
+	 14: Rel (     8,    -2)  ->  Abs (  1055,   625)
+	 15: Rel (    13,    -3)  ->  Abs (  1068,   622)
+	 16: Rel (    17,   -23)  ->  Abs (  1085,   599)
+	 17: Rel (     0,   -14)  ->  Abs (  1085,   585)
+	 18: Rel (     0,   -14)  ->  Abs (  1085,   571)
+	 19: Rel (   -17,   -23)  ->  Abs (  1068,   548)
+	 20: Rel (   -13,    -3)  ->  Abs (  1055,   545)
+	 21: Rel (    -8,    -2)  ->  Abs (  1047,   543)
+
+	Glyph 238: off = 0x0000F9DA, len = 342
+	  numberOfContours:	1
+	  xMin:			270
+	  yMin:			239
+	  xMax:			960
+	  yMax:			930
+
+	EndPoints
+	---------
+	  0:  38
+
+	  Length of Instructions:	211
+	00000: PUSHW[2]             28    -4 
+	00005: NPUSHB       (9):    92   110    52    19     4    92   110    52    27 
+	00016: PUSHW[8]            726    20   758    19    11   726    18   758 
+	00033: PUSHB[4]             19   193     0    29 
+	00038: NPUSHW      (11):   726    38   758     0     9   726     1   758     0    38 
+	                           726 
+	00062: PUSHB[4]             29   215    28    20 
+	00067: PUSHW[1]            726 
+	00070: PUSHB[6]             27   215    28   193    10     1 
+	00077: PUSHW[1]            726 
+	00080: PUSHB[4]              9   215    10    18 
+	00085: PUSHW[1]            726 
+	00088: PUSHB[3]             11   215    10 
+	00092: PUSHW[1]            589 
+	00095: PUSHB[3]             39     0   163 
+	00099: PUSHW[2]            336    24 
+	00104: CALL       
+	00105: SVTCA[y-axis] 
+	00106: RTHG       
+	00107: MDAP[rd]   
+	00108: SVTCA[x-axis] 
+	00109: SRP0       
+	00110: MIRP[srp0,nmd,rd,2] 
+	00111: MIRP[srp0,nmd,rd,0] 
+	00112: RTG        
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: RTHG       
+	00115: SRP0       
+	00116: MIRP[srp0,nmd,rd,0] 
+	00117: RTG        
+	00118: MIRP[nrp0,md,rd,1] 
+	00119: SRP0       
+	00120: MIRP[srp0,md,rd,1] 
+	00121: RTHG       
+	00122: MIRP[srp0,nmd,rd,0] 
+	00123: RTG        
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: RTHG       
+	00126: SRP0       
+	00127: MIRP[srp0,nmd,rd,0] 
+	00128: RTG        
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: SVTCA[y-axis] 
+	00131: RTHG       
+	00132: SRP0       
+	00133: MIRP[srp0,nmd,rd,0] 
+	00134: RTG        
+	00135: MIRP[nrp0,md,rd,1] 
+	00136: RTHG       
+	00137: SRP0       
+	00138: MIRP[srp0,nmd,rd,0] 
+	00139: RTG        
+	00140: MIRP[nrp0,md,rd,1] 
+	00141: SRP0       
+	00142: MIRP[srp0,md,rd,1] 
+	00143: RTHG       
+	00144: MIRP[srp0,nmd,rd,0] 
+	00145: RTG        
+	00146: MIRP[nrp0,md,rd,1] 
+	00147: RTHG       
+	00148: SRP0       
+	00149: MIRP[srp0,nmd,rd,0] 
+	00150: RTG        
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: IUP[y]     
+	00153: IUP[x]     
+	00154: MPPEM      
+	00155: PUSHB[1]             25 
+	00157: GTEQ       
+	00158: MPPEM      
+	00159: PUSHB[1]             36 
+	00161: LTEQ       
+	00162: AND        
+	00163: IF         
+	00164: PUSHB[3]             10     2    28 
+	00168: PUSHW[1]             -2 
+	00171: PUSHB[3]              0     2    19 
+	00175: PUSHW[1]             -2 
+	00178: SVTCA[y-axis] 
+	00179: SHPIX      
+	00180: SHPIX      
+	00181: SVTCA[x-axis] 
+	00182: SHPIX      
+	00183: SHPIX      
+	00184: EIF        
+	00185: MPPEM      
+	00186: PUSHB[1]             25 
+	00188: GTEQ       
+	00189: MPPEM      
+	00190: PUSHB[1]             96 
+	00192: LTEQ       
+	00193: AND        
+	00194: IF         
+	00195: PUSHW[2]             28    -1 
+	00200: PUSHB[4]             19     1    18    19 
+	00205: SFVTL[=p1,p2] 
+	00206: SHPIX      
+	00207: SHPIX      
+	00208: EIF        
+	00209: CALL       
+	00210: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:                                      On
+	 11:                                      On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short On
+	 19:                                      On
+	 20:                                      On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:                      Y-Short X-Short On
+	 28:                                      On
+	 29:                                      On
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:  YDual               Y-Short X-Short On
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   615,   525)  ->  Abs (   615,   525)
+	  1: Rel (  -263,  -263)  ->  Abs (   352,   262)
+	  2: Rel (   -15,   -15)  ->  Abs (   337,   247)
+	  3: Rel (   -14,    -7)  ->  Abs (   323,   240)
+	  4: Rel (   -10,     0)  ->  Abs (   313,   240)
+	  5: Rel (   -18,     0)  ->  Abs (   295,   240)
+	  6: Rel (   -25,    25)  ->  Abs (   270,   265)
+	  7: Rel (     0,    18)  ->  Abs (   270,   283)
+	  8: Rel (     0,    17)  ->  Abs (   270,   300)
+	  9: Rel (    23,    22)  ->  Abs (   293,   322)
+	 10: Rel (   262,   263)  ->  Abs (   555,   585)
+	 11: Rel (  -263,   263)  ->  Abs (   292,   848)
+	 12: Rel (   -22,    22)  ->  Abs (   270,   870)
+	 13: Rel (     0,    17)  ->  Abs (   270,   887)
+	 14: Rel (     0,    18)  ->  Abs (   270,   905)
+	 15: Rel (    25,    25)  ->  Abs (   295,   930)
+	 16: Rel (    18,     0)  ->  Abs (   313,   930)
+	 17: Rel (    17,     0)  ->  Abs (   330,   930)
+	 18: Rel (    22,   -23)  ->  Abs (   352,   907)
+	 19: Rel (   263,  -263)  ->  Abs (   615,   644)
+	 20: Rel (   261,   262)  ->  Abs (   876,   906)
+	 21: Rel (    23,    22)  ->  Abs (   899,   928)
+	 22: Rel (    17,     0)  ->  Abs (   916,   928)
+	 23: Rel (    18,     0)  ->  Abs (   934,   928)
+	 24: Rel (    24,   -25)  ->  Abs (   958,   903)
+	 25: Rel (     0,   -18)  ->  Abs (   958,   885)
+	 26: Rel (     0,   -17)  ->  Abs (   958,   868)
+	 27: Rel (   -22,   -22)  ->  Abs (   936,   846)
+	 28: Rel (  -261,  -261)  ->  Abs (   675,   585)
+	 29: Rel (   263,  -263)  ->  Abs (   938,   322)
+	 30: Rel (    22,   -23)  ->  Abs (   960,   299)
+	 31: Rel (     0,   -17)  ->  Abs (   960,   282)
+	 32: Rel (     0,   -18)  ->  Abs (   960,   264)
+	 33: Rel (   -25,   -25)  ->  Abs (   935,   239)
+	 34: Rel (   -18,     0)  ->  Abs (   917,   239)
+	 35: Rel (    -9,     0)  ->  Abs (   908,   239)
+	 36: Rel (    -6,     4)  ->  Abs (   902,   243)
+	 37: Rel (   -10,     4)  ->  Abs (   892,   247)
+	 38: Rel (   -14,    15)  ->  Abs (   878,   262)
+
+	Glyph 239: off = 0x0000FB30, len = 250
+	  numberOfContours:	1
+	  xMin:			374
+	  yMin:			616
+	  xMax:			854
+	  yMax:			1282
+
+	EndPoints
+	---------
+	  0:  26
+
+	  Length of Instructions:	166
+	00000: PUSHB[3]             18     9    15 
+	00004: PUSHW[1]            670 
+	00007: NPUSHB      (11):    12   148    16    12    12    15    16    66     9     8 
+	                             2 
+	00020: PUSHW[1]            696 
+	00023: NPUSHB      (13):     5   148     1     5     5     2     1    66     8    21 
+	                            16    23     1 
+	00038: PUSHW[4]            778     0    16   756 
+	00047: PUSHB[6]             17     8    79     9     1     9 
+	00054: PUSHW[1]            684 
+	00057: NPUSHB      (21):    17    91     0    18    77    26   174     0     0    23 
+	                           116     0    91    17     1    91    17     0    16     1 
+	                            16 
+	00080: PUSHW[1]            595 
+	00083: PUSHB[4]             27    72   169    24 
+	00088: PUSHW[1]            300 
+	00091: SCANCTRL   
+	00092: CALL       
+	00093: SRP0       
+	00094: MIRP[srp0,nmd,rd,2] 
+	00095: DELTAP1    
+	00096: ALIGNRP    
+	00097: MIRP[nrp0,md,rd,1] 
+	00098: SRP0       
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: SVTCA[y-axis] 
+	00102: MIAP[rd+ci] 
+	00103: MIRP[srp0,nmd,rd,0] 
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: SRP0       
+	00106: MIRP[srp0,md,rd,1] 
+	00107: MIRP[srp0,nmd,rd,0] 
+	00108: DELTAP1    
+	00109: ALIGNRP    
+	00110: SRP0       
+	00111: MIRP[nrp0,md,rd,2] 
+	00112: SRP0       
+	00113: MIRP[nrp0,nmd,rd,0] 
+	00114: SVTCA[x-axis] 
+	00115: SRP1       
+	00116: SRP2       
+	00117: IP         
+	00118: SVTCA[y-axis] 
+	00119: SRP0       
+	00120: MIRP[srp0,md,rd,1] 
+	00121: RTDG       
+	00122: SRP2       
+	00123: IP         
+	00124: MDAP[rd]   
+	00125: RTG        
+	00126: SVTCA[x-axis] 
+	00127: SRP0       
+	00128: MIRP[srp0,nmd,rd,1] 
+	00129: MIRP[srp0,nmd,rd,0] 
+	00130: MDRP[nrp0,nmd,rd,0] 
+	00131: SVTCA[y-axis] 
+	00132: SRP0       
+	00133: MIRP[srp0,md,rd,1] 
+	00134: RTDG       
+	00135: SRP2       
+	00136: IP         
+	00137: MDAP[rd]   
+	00138: RTG        
+	00139: SVTCA[x-axis] 
+	00140: SRP0       
+	00141: MIRP[srp0,nmd,rd,1] 
+	00142: MIRP[srp0,nmd,rd,0] 
+	00143: MDRP[nrp0,nmd,rd,0] 
+	00144: IUP[y]     
+	00145: IUP[x]     
+	00146: SVTCA[y-axis] 
+	00147: RS         
+	00148: IF         
+	00149: NPUSHB      (13):   127     1   127     2   127     8   127     9   127    15 
+	                           127    16     6 
+	00164: DELTAP1    
+	00165: EIF        
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   651,  1282)  ->  Abs (   651,  1282)
+	  1: Rel (     0,  -609)  ->  Abs (   651,   673)
+	  2: Rel (   157,     0)  ->  Abs (   808,   673)
+	  3: Rel (    25,     0)  ->  Abs (   833,   673)
+	  4: Rel (    21,   -17)  ->  Abs (   854,   656)
+	  5: Rel (     0,   -12)  ->  Abs (   854,   644)
+	  6: Rel (     0,   -11)  ->  Abs (   854,   633)
+	  7: Rel (   -21,   -17)  ->  Abs (   833,   616)
+	  8: Rel (   -25,     0)  ->  Abs (   808,   616)
+	  9: Rel (  -389,     0)  ->  Abs (   419,   616)
+	 10: Rel (   -24,     0)  ->  Abs (   395,   616)
+	 11: Rel (   -21,    17)  ->  Abs (   374,   633)
+	 12: Rel (     0,    12)  ->  Abs (   374,   645)
+	 13: Rel (     0,    11)  ->  Abs (   374,   656)
+	 14: Rel (    21,    17)  ->  Abs (   395,   673)
+	 15: Rel (    24,     0)  ->  Abs (   419,   673)
+	 16: Rel (   158,     0)  ->  Abs (   577,   673)
+	 17: Rel (     0,   529)  ->  Abs (   577,  1202)
+	 18: Rel (  -148,   -40)  ->  Abs (   429,  1162)
+	 19: Rel (   -11,    -3)  ->  Abs (   418,  1159)
+	 20: Rel (    -8,     0)  ->  Abs (   410,  1159)
+	 21: Rel (   -15,     0)  ->  Abs (   395,  1159)
+	 22: Rel (   -20,    17)  ->  Abs (   375,  1176)
+	 23: Rel (     0,    11)  ->  Abs (   375,  1187)
+	 24: Rel (     0,     9)  ->  Abs (   375,  1196)
+	 25: Rel (    13,    14)  ->  Abs (   388,  1210)
+	 26: Rel (    22,     6)  ->  Abs (   410,  1216)
+
+	Glyph 240: off = 0x0000FC2A, len = 328
+	  numberOfContours:	1
+	  xMin:			341
+	  yMin:			616
+	  xMax:			844
+	  yMax:			1285
+
+	EndPoints
+	---------
+	  0:  41
+
+	  Length of Instructions:	201
+	00000: PUSHW[2]             40   -64 
+	00005: PUSHB[4]             13    22    63    40 
+	00010: PUSHW[1]            -24 
+	00013: PUSHB[4]             12    20    63    40 
+	00018: PUSHW[1]            -24 
+	00021: NPUSHB      (45):    11    18    63     9    40    25    40   101    35   254 
+	                            31   250    32     5    10    13    23     0    23    40 
+	                            21    41    81    39   107    14   107    38     7    14 
+	                            32    24    31    44    31   206    14   204    38   204 
+	                            39   229     0     7     5 
+	00068: PUSHW[1]            765 
+	00071: PUSHB[3]              1     1    12 
+	00075: PUSHW[1]            775 
+	00078: NPUSHB       (9):     0    55    10     0    11    16    11     2    11 
+	00089: PUSHW[1]            531 
+	00092: NPUSHB      (34):    33    15    24    31    24     2    24   177    19    55 
+	                            33     0     1    91     9     9    10    38    91    14 
+	                            62    16    44    64    36     1    36    36    15    10 
+	                            31    10     2    10 
+	00128: PUSHW[1]            418 
+	00131: NPUSHB      (16):    43    22    91    30    62    11     0    91    12    12 
+	                            11    25    42   245   120    24 
+	00149: PUSHW[1]            356 
+	00152: SCANCTRL   
+	00153: CALL       
+	00154: FLIPOFF    
+	00155: SRP0       
+	00156: MIRP[srp0,nmd,rd,0] 
+	00157: ALIGNRP    
+	00158: FLIPON     
+	00159: SRP0       
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: SRP0       
+	00162: MIRP[srp0,nmd,rd,0] 
+	00163: MIRP[nrp0,md,rd,1] 
+	00164: SRP0       
+	00165: MIRP[srp0,nmd,rd,2] 
+	00166: DELTAP1    
+	00167: ALIGNRP    
+	00168: SRP0       
+	00169: DELTAP1    
+	00170: MIRP[srp0,md,rd,1] 
+	00171: MIRP[srp0,nmd,rd,0] 
+	00172: MIRP[nrp0,md,rd,1] 
+	00173: SRP0       
+	00174: ALIGNRP    
+	00175: SRP0       
+	00176: MIRP[nrp0,md,rd,1] 
+	00177: SVTCA[y-axis] 
+	00178: MIAP[rd+ci] 
+	00179: MIRP[srp0,md,rd,1] 
+	00180: MIRP[nrp0,nmd,rd,0] 
+	00181: DELTAP1    
+	00182: SRP0       
+	00183: MIRP[srp0,md,rd,1] 
+	00184: DELTAP1    
+	00185: ALIGNRP    
+	00186: MIRP[srp0,md,rd,1] 
+	00187: MIRP[nrp0,nmd,rd,1] 
+	00188: ALIGNRP    
+	00189: SRP0       
+	00190: MIRP[nrp0,nmd,rd,0] 
+	00191: IUP[y]     
+	00192: IUP[x]     
+	00193: SVTCA[x-axis] 
+	00194: DELTAP2    
+	00195: DELTAP3    
+	00196: DELTAP1    
+	00197: SVTCA[y-axis] 
+	00198: CALL       
+	00199: CALL       
+	00200: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         On
+	 11:  YDual                               On
+	 12:  YDual XDual         Y-Short         On
+	 13:                                      Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:                      Y-Short X-Short Off
+	 22:                      Y-Short X-Short On
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual               Y-Short X-Short On
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short On
+	 39:                      Y-Short X-Short Off
+	 40:                      Y-Short X-Short On
+	 41:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   420,   673)  ->  Abs (   420,   673)
+	  1: Rel (   350,     0)  ->  Abs (   770,   673)
+	  2: Rel (     0,    27)  ->  Abs (   770,   700)
+	  3: Rel (     7,     6)  ->  Abs (   777,   706)
+	  4: Rel (    11,    12)  ->  Abs (   788,   718)
+	  5: Rel (    19,     0)  ->  Abs (   807,   718)
+	  6: Rel (    18,     0)  ->  Abs (   825,   718)
+	  7: Rel (    12,   -11)  ->  Abs (   837,   707)
+	  8: Rel (     7,    -7)  ->  Abs (   844,   700)
+	  9: Rel (     0,   -17)  ->  Abs (   844,   683)
+	 10: Rel (     0,   -67)  ->  Abs (   844,   616)
+	 11: Rel (  -503,     0)  ->  Abs (   341,   616)
+	 12: Rel (     0,    72)  ->  Abs (   341,   688)
+	 13: Rel (   353,   277)  ->  Abs (   694,   965)
+	 14: Rel (    48,    62)  ->  Abs (   742,  1027)
+	 15: Rel (    28,    36)  ->  Abs (   770,  1063)
+	 16: Rel (     0,    33)  ->  Abs (   770,  1096)
+	 17: Rel (     0,    50)  ->  Abs (   770,  1146)
+	 18: Rel (   -93,    83)  ->  Abs (   677,  1229)
+	 19: Rel (   -71,     0)  ->  Abs (   606,  1229)
+	 20: Rel (   -61,     0)  ->  Abs (   545,  1229)
+	 21: Rel (   -90,   -60)  ->  Abs (   455,  1169)
+	 22: Rel (   -18,   -49)  ->  Abs (   437,  1120)
+	 23: Rel (    -4,   -13)  ->  Abs (   433,  1107)
+	 24: Rel (    -6,    -4)  ->  Abs (   427,  1103)
+	 25: Rel (   -12,    -7)  ->  Abs (   415,  1096)
+	 26: Rel (   -14,     0)  ->  Abs (   401,  1096)
+	 27: Rel (   -17,     0)  ->  Abs (   384,  1096)
+	 28: Rel (   -11,     9)  ->  Abs (   373,  1105)
+	 29: Rel (    -8,     7)  ->  Abs (   365,  1112)
+	 30: Rel (     0,    10)  ->  Abs (   365,  1122)
+	 31: Rel (     0,    46)  ->  Abs (   365,  1168)
+	 32: Rel (   135,   117)  ->  Abs (   500,  1285)
+	 33: Rel (   106,     0)  ->  Abs (   606,  1285)
+	 34: Rel (   102,     0)  ->  Abs (   708,  1285)
+	 35: Rel (   136,  -120)  ->  Abs (   844,  1165)
+	 36: Rel (     0,   -68)  ->  Abs (   844,  1097)
+	 37: Rel (     0,   -38)  ->  Abs (   844,  1059)
+	 38: Rel (   -18,   -30)  ->  Abs (   826,  1029)
+	 39: Rel (   -29,   -48)  ->  Abs (   797,   981)
+	 40: Rel (  -133,  -112)  ->  Abs (   664,   869)
+	 41: Rel (  -165,  -139)  ->  Abs (   499,   730)
+
+	Glyph 241: off = 0x0000FD72, len = 282
+	  numberOfContours:	1
+	  xMin:			355
+	  yMin:			601
+	  xMax:			869
+	  yMax:			1285
+
+	EndPoints
+	---------
+	  0:  55
+
+	  Length of Instructions:	126
+	00000: NPUSHB      (11):    15    19     1   100    16   111    39     2     0    30 
+	                             0 
+	00013: PUSHW[1]            775 
+	00016: PUSHB[7]             32    80    30     1    30    55    24 
+	00024: PUSHW[1]            410 
+	00027: NPUSHB      (44):    49    41   174    37    55    49    14   174    18    30 
+	                            55    24    18    55    15     6     1     0     6    16 
+	                             6     2     6    34    44    52    62    21    44    15 
+	                             3     1     3    26    57    44    62    11    25    56 
+	                            49     0     6   245 
+	00073: PUSHW[3]            382    24   289 
+	00080: SCANCTRL   
+	00081: CALL       
+	00082: SVTCA[y-axis] 
+	00083: MDAP[rd]   
+	00084: MIAP[rd+ci] 
+	00085: SVTCA[x-axis] 
+	00086: FLIPOFF    
+	00087: SRP0       
+	00088: MIRP[srp0,nmd,rd,0] 
+	00089: FLIPON     
+	00090: MIRP[nrp0,nmd,rd,0] 
+	00091: FLIPOFF    
+	00092: SRP0       
+	00093: MIRP[srp0,nmd,rd,2] 
+	00094: DELTAP1    
+	00095: FLIPON     
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: MIRP[srp0,nmd,rd,0] 
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: SVTCA[y-axis] 
+	00100: SRP0       
+	00101: DELTAP1    
+	00102: DELTAP2    
+	00103: MIRP[nrp0,md,rd,1] 
+	00104: SRP0       
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: SRP0       
+	00107: MIRP[nrp0,nmd,rd,0] 
+	00108: SRP0       
+	00109: MIRP[srp0,md,rd,1] 
+	00110: MIRP[nrp0,nmd,rd,0] 
+	00111: SRP0       
+	00112: MIRP[srp0,md,rd,1] 
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: DELTAP1    
+	00115: RTHG       
+	00116: SMD        
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: SRP2       
+	00119: IP         
+	00120: IUP[y]     
+	00121: IUP[x]     
+	00122: SVTCA[y-axis] 
+	00123: DELTAP1    
+	00124: SVTCA[x-axis] 
+	00125: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:                      Y-Short X-Short On
+	 40:                      Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual XDual         Y-Short X-Short On
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:        XDual         Y-Short X-Short Off
+	 52:        XDual         Y-Short         On
+	 53:        XDual         Y-Short         Off
+	 54:                      Y-Short X-Short On
+	 55:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   736,   972)  ->  Abs (   736,   972)
+	  1: Rel (    63,   -27)  ->  Abs (   799,   945)
+	  2: Rel (    70,   -94)  ->  Abs (   869,   851)
+	  3: Rel (     0,   -49)  ->  Abs (   869,   802)
+	  4: Rel (     0,   -75)  ->  Abs (   869,   727)
+	  5: Rel (  -146,  -126)  ->  Abs (   723,   601)
+	  6: Rel (  -119,     0)  ->  Abs (   604,   601)
+	  7: Rel (   -71,     0)  ->  Abs (   533,   601)
+	  8: Rel (  -146,    53)  ->  Abs (   387,   654)
+	  9: Rel (   -25,    25)  ->  Abs (   362,   679)
+	 10: Rel (    -7,     8)  ->  Abs (   355,   687)
+	 11: Rel (     0,     9)  ->  Abs (   355,   696)
+	 12: Rel (     0,    11)  ->  Abs (   355,   707)
+	 13: Rel (    19,    16)  ->  Abs (   374,   723)
+	 14: Rel (    15,     0)  ->  Abs (   389,   723)
+	 15: Rel (    15,     0)  ->  Abs (   404,   723)
+	 16: Rel (    29,   -17)  ->  Abs (   433,   706)
+	 17: Rel (    78,   -49)  ->  Abs (   511,   657)
+	 18: Rel (    93,     0)  ->  Abs (   604,   657)
+	 19: Rel (    85,     0)  ->  Abs (   689,   657)
+	 20: Rel (   106,    91)  ->  Abs (   795,   748)
+	 21: Rel (     0,    53)  ->  Abs (   795,   801)
+	 22: Rel (     0,    54)  ->  Abs (   795,   855)
+	 23: Rel (  -108,    91)  ->  Abs (   687,   946)
+	 24: Rel (  -100,     2)  ->  Abs (   587,   948)
+	 25: Rel (   -25,     1)  ->  Abs (   562,   949)
+	 26: Rel (   -20,    16)  ->  Abs (   542,   965)
+	 27: Rel (     0,    12)  ->  Abs (   542,   977)
+	 28: Rel (     0,    11)  ->  Abs (   542,   988)
+	 29: Rel (    21,    16)  ->  Abs (   563,  1004)
+	 30: Rel (    22,     0)  ->  Abs (   585,  1004)
+	 31: Rel (    79,     0)  ->  Abs (   664,  1004)
+	 32: Rel (    66,    27)  ->  Abs (   730,  1031)
+	 33: Rel (    38,    54)  ->  Abs (   768,  1085)
+	 34: Rel (     0,    29)  ->  Abs (   768,  1114)
+	 35: Rel (     0,    44)  ->  Abs (   768,  1158)
+	 36: Rel (   -81,    71)  ->  Abs (   687,  1229)
+	 37: Rel (   -71,     0)  ->  Abs (   616,  1229)
+	 38: Rel (  -103,     0)  ->  Abs (   513,  1229)
+	 39: Rel (   -54,   -57)  ->  Abs (   459,  1172)
+	 40: Rel (   -13,   -15)  ->  Abs (   446,  1157)
+	 41: Rel (   -20,     0)  ->  Abs (   426,  1157)
+	 42: Rel (   -16,     0)  ->  Abs (   410,  1157)
+	 43: Rel (   -20,    16)  ->  Abs (   390,  1173)
+	 44: Rel (     0,    10)  ->  Abs (   390,  1183)
+	 45: Rel (     0,     9)  ->  Abs (   390,  1192)
+	 46: Rel (    11,    12)  ->  Abs (   401,  1204)
+	 47: Rel (    33,    36)  ->  Abs (   434,  1240)
+	 48: Rel (   116,    45)  ->  Abs (   550,  1285)
+	 49: Rel (    66,     0)  ->  Abs (   616,  1285)
+	 50: Rel (   103,     0)  ->  Abs (   719,  1285)
+	 51: Rel (   123,  -105)  ->  Abs (   842,  1180)
+	 52: Rel (     0,   -66)  ->  Abs (   842,  1114)
+	 53: Rel (     0,   -44)  ->  Abs (   842,  1070)
+	 54: Rel (   -24,   -33)  ->  Abs (   818,  1037)
+	 55: Rel (   -33,   -45)  ->  Abs (   785,   992)
+
+	Glyph 242: off = 0x0000FE8C, len = 442
+	  numberOfContours:	3
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1242
+	  yMax:			1282
+
+	EndPoints
+	---------
+	  0:  26
+	  1:  42
+	  2:  84
+
+	  Length of Instructions:	196
+	00000: NPUSHB      (58):   127    27   127    28   127    35   127    36     4    36 
+	                            35    35    36    28    27    20    28    28    27    35 
+	                            28    36     3    27    85    79    43    62    28    35 
+	                            54    27    36     1     0    44    43    98    55    55 
+	                            54    52    77    53    53    54    62    55    69   116 
+	                            76    16    98     9     9     1    98     8 
+	00060: PUSHW[1]            531 
+	00063: NPUSHB      (15):    17    91     0    18    77    26   174     0    73    62 
+	                            43    91    54   255    52 
+	00080: PUSHW[1]            388 
+	00083: NPUSHB      (19):    86    59    44    79    26    86    23   213    17     5 
+	                           213     0     1    91    12   213    16    16    17 
+	00104: PUSHW[1]            303 
+	00107: NPUSHB       (9):    85     0     0    76    54    10    60    68    24 
+	00118: PUSHW[1]            291 
+	00121: SCANCTRL   
+	00122: CALL       
+	00123: SVTCA[y-axis] 
+	00124: MIAP[rd+ci] 
+	00125: MDAP[rd]   
+	00126: MIAP[rd+ci] 
+	00127: SVTCA[x-axis] 
+	00128: SRP0       
+	00129: MIRP[srp0,nmd,rd,2] 
+	00130: ALIGNRP    
+	00131: SRP0       
+	00132: MIRP[nrp0,nmd,rd,0] 
+	00133: MIRP[srp0,md,rd,1] 
+	00134: ALIGNRP    
+	00135: MIRP[nrp0,nmd,rd,0] 
+	00136: SRP0       
+	00137: MIRP[nrp0,md,rd,1] 
+	00138: FLIPOFF    
+	00139: SRP0       
+	00140: MIRP[srp0,nmd,rd,2] 
+	00141: FLIPON     
+	00142: MIRP[nrp0,md,rd,1] 
+	00143: SRP0       
+	00144: MIRP[srp0,nmd,rd,2] 
+	00145: MIRP[srp0,md,rd,1] 
+	00146: MIRP[nrp0,md,rd,1] 
+	00147: MIRP[nrp0,nmd,rd,0] 
+	00148: SVTCA[y-axis] 
+	00149: SRP0       
+	00150: MIRP[srp0,nmd,rd,0] 
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: SRP0       
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: MIRP[srp0,md,rd,1] 
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: ALIGNRP    
+	00157: SRP0       
+	00158: MIRP[nrp0,md,rd,1] 
+	00159: SRP0       
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: MIRP[nrp0,md,rd,1] 
+	00162: SRP0       
+	00163: ALIGNRP    
+	00164: SRP0       
+	00165: MIRP[nrp0,md,rd,1] 
+	00166: SRP0       
+	00167: MIRP[nrp0,md,rd,2] 
+	00168: MIRP[srp0,md,rd,1] 
+	00169: ALIGNRP    
+	00170: SRP1       
+	00171: SRP2       
+	00172: IP         
+	00173: IP         
+	00174: SRP1       
+	00175: IP         
+	00176: IP         
+	00177: SRP1       
+	00178: SRP2       
+	00179: IP         
+	00180: SVTCA[x-axis] 
+	00181: SRP1       
+	00182: SRP2       
+	00183: SLOOP      
+	00184: IP         
+	00185: SDPVTL[1]  
+	00186: SFVTPV     
+	00187: MDAP[nrd]  
+	00188: CALL       
+	00189: RDTG       
+	00190: SRP0       
+	00191: MDRP[nrp0,nmd,rd,0] 
+	00192: SVTCA[x-axis] 
+	00193: DELTAP1    
+	00194: IUP[y]     
+	00195: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:                                      On
+	 28:                                      On
+	 29:                      Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:                                      On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:        XDual         Y-Short         Off
+	 43:                                      On
+	 44:  YDual                               On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual XDual         Y-Short X-Short On
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual                 X-Short Off
+	 50:        XDual         Y-Short X-Short On
+	 51:        XDual         Y-Short X-Short Off
+	 52:        XDual         Y-Short         On
+	 53:        XDual         Y-Short         On
+	 54:  YDual                               On
+	 55:  YDual XDual         Y-Short         On
+	 56:                                      Off
+	 57:  YDual XDual         Y-Short X-Short On
+	 58:  YDual XDual         Y-Short X-Short Off
+	 59:  YDual XDual         Y-Short         On
+	 60:  YDual XDual         Y-Short         Off
+	 61:  YDual               Y-Short X-Short Off
+	 62:  YDual                       X-Short On
+	 63:  YDual                       X-Short Off
+	 64:                      Y-Short X-Short Off
+	 65:                      Y-Short X-Short On
+	 66:                      Y-Short X-Short Off
+	 67:                      Y-Short X-Short On
+	 68:                      Y-Short X-Short Off
+	 69:  YDual                       X-Short On
+	 70:  YDual                       X-Short Off
+	 71:  YDual               Y-Short X-Short On
+	 72:  YDual               Y-Short X-Short Off
+	 73:  YDual XDual         Y-Short         On
+	 74:  YDual XDual         Y-Short         Off
+	 75:  YDual XDual         Y-Short X-Short Off
+	 76:  YDual XDual                 X-Short On
+	 77:  YDual XDual                 X-Short Off
+	 78:        XDual         Y-Short X-Short Off
+	 79:        XDual         Y-Short         On
+	 80:        XDual         Y-Short         Off
+	 81:                      Y-Short X-Short On
+	 82:                      Y-Short X-Short Off
+	 83:                      Y-Short X-Short On
+	 84:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   277,  1282)  ->  Abs (   277,  1282)
+	  1: Rel (     0,  -609)  ->  Abs (   277,   673)
+	  2: Rel (   157,     0)  ->  Abs (   434,   673)
+	  3: Rel (    25,     0)  ->  Abs (   459,   673)
+	  4: Rel (    21,   -17)  ->  Abs (   480,   656)
+	  5: Rel (     0,   -12)  ->  Abs (   480,   644)
+	  6: Rel (     0,   -11)  ->  Abs (   480,   633)
+	  7: Rel (   -21,   -17)  ->  Abs (   459,   616)
+	  8: Rel (   -25,     0)  ->  Abs (   434,   616)
+	  9: Rel (  -389,     0)  ->  Abs (    45,   616)
+	 10: Rel (   -24,     0)  ->  Abs (    21,   616)
+	 11: Rel (   -21,    17)  ->  Abs (     0,   633)
+	 12: Rel (     0,    12)  ->  Abs (     0,   645)
+	 13: Rel (     0,    11)  ->  Abs (     0,   656)
+	 14: Rel (    21,    17)  ->  Abs (    21,   673)
+	 15: Rel (    24,     0)  ->  Abs (    45,   673)
+	 16: Rel (   158,     0)  ->  Abs (   203,   673)
+	 17: Rel (     0,   529)  ->  Abs (   203,  1202)
+	 18: Rel (  -148,   -40)  ->  Abs (    55,  1162)
+	 19: Rel (   -11,    -3)  ->  Abs (    44,  1159)
+	 20: Rel (    -8,     0)  ->  Abs (    36,  1159)
+	 21: Rel (   -15,     0)  ->  Abs (    21,  1159)
+	 22: Rel (   -20,    17)  ->  Abs (     1,  1176)
+	 23: Rel (     0,    11)  ->  Abs (     1,  1187)
+	 24: Rel (     0,     9)  ->  Abs (     1,  1196)
+	 25: Rel (    13,    14)  ->  Abs (    14,  1210)
+	 26: Rel (    22,     6)  ->  Abs (    36,  1216)
+	 27: Rel (  1119,  -323)  ->  Abs (  1155,   893)
+	 28: Rel (  -916,  -590)  ->  Abs (   239,   303)
+	 29: Rel (   -22,   -14)  ->  Abs (   217,   289)
+	 30: Rel (   -12,     0)  ->  Abs (   205,   289)
+	 31: Rel (   -18,     0)  ->  Abs (   187,   289)
+	 32: Rel (   -25,    24)  ->  Abs (   162,   313)
+	 33: Rel (     0,    18)  ->  Abs (   162,   331)
+	 34: Rel (     0,    23)  ->  Abs (   162,   354)
+	 35: Rel (    32,    20)  ->  Abs (   194,   374)
+	 36: Rel (   915,   590)  ->  Abs (  1109,   964)
+	 37: Rel (    22,    14)  ->  Abs (  1131,   978)
+	 38: Rel (    12,     0)  ->  Abs (  1143,   978)
+	 39: Rel (    18,     0)  ->  Abs (  1161,   978)
+	 40: Rel (    25,   -25)  ->  Abs (  1186,   953)
+	 41: Rel (     0,   -17)  ->  Abs (  1186,   936)
+	 42: Rel (     0,   -23)  ->  Abs (  1186,   913)
+	 43: Rel (  -368,  -857)  ->  Abs (   818,    56)
+	 44: Rel (   350,     0)  ->  Abs (  1168,    56)
+	 45: Rel (     0,    27)  ->  Abs (  1168,    83)
+	 46: Rel (     7,     7)  ->  Abs (  1175,    90)
+	 47: Rel (    11,    11)  ->  Abs (  1186,   101)
+	 48: Rel (    19,     0)  ->  Abs (  1205,   101)
+	 49: Rel (    18,     0)  ->  Abs (  1223,   101)
+	 50: Rel (    12,   -10)  ->  Abs (  1235,    91)
+	 51: Rel (     7,    -7)  ->  Abs (  1242,    84)
+	 52: Rel (     0,   -18)  ->  Abs (  1242,    66)
+	 53: Rel (     0,   -66)  ->  Abs (  1242,     0)
+	 54: Rel (  -503,     0)  ->  Abs (   739,     0)
+	 55: Rel (     0,    71)  ->  Abs (   739,    71)
+	 56: Rel (   353,   277)  ->  Abs (  1092,   348)
+	 57: Rel (    48,    63)  ->  Abs (  1140,   411)
+	 58: Rel (    28,    35)  ->  Abs (  1168,   446)
+	 59: Rel (     0,    33)  ->  Abs (  1168,   479)
+	 60: Rel (     0,    51)  ->  Abs (  1168,   530)
+	 61: Rel (   -93,    82)  ->  Abs (  1075,   612)
+	 62: Rel (   -71,     0)  ->  Abs (  1004,   612)
+	 63: Rel (   -61,     0)  ->  Abs (   943,   612)
+	 64: Rel (   -90,   -59)  ->  Abs (   853,   553)
+	 65: Rel (   -17,   -50)  ->  Abs (   836,   503)
+	 66: Rel (    -5,   -13)  ->  Abs (   831,   490)
+	 67: Rel (    -6,    -3)  ->  Abs (   825,   487)
+	 68: Rel (   -11,    -8)  ->  Abs (   814,   479)
+	 69: Rel (   -15,     0)  ->  Abs (   799,   479)
+	 70: Rel (   -16,     0)  ->  Abs (   783,   479)
+	 71: Rel (   -11,    10)  ->  Abs (   772,   489)
+	 72: Rel (    -9,     6)  ->  Abs (   763,   495)
+	 73: Rel (     0,    10)  ->  Abs (   763,   505)
+	 74: Rel (     0,    46)  ->  Abs (   763,   551)
+	 75: Rel (   135,   117)  ->  Abs (   898,   668)
+	 76: Rel (   106,     0)  ->  Abs (  1004,   668)
+	 77: Rel (   102,     0)  ->  Abs (  1106,   668)
+	 78: Rel (   136,  -119)  ->  Abs (  1242,   549)
+	 79: Rel (     0,   -68)  ->  Abs (  1242,   481)
+	 80: Rel (     0,   -38)  ->  Abs (  1242,   443)
+	 81: Rel (   -18,   -30)  ->  Abs (  1224,   413)
+	 82: Rel (   -29,   -48)  ->  Abs (  1195,   365)
+	 83: Rel (  -133,  -112)  ->  Abs (  1062,   253)
+	 84: Rel (  -165,  -140)  ->  Abs (   897,   113)
+
+	Glyph 243: off = 0x00010046, len = 592
+	  numberOfContours:	4
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1218
+	  yMax:			1282
+
+	EndPoints
+	---------
+	  0:  26
+	  1:  42
+	  2:  73
+	  3:  77
+
+	  Length of Instructions:	369
+	00000: NPUSHB      (15):    31    44    31    45    65    44    65    77    81    44 
+	                            81    77     6     9    15 
+	00017: PUSHW[1]            670 
+	00020: NPUSHB      (11):    12   148    16    12    12    15    16    66     9     8 
+	                             2 
+	00033: PUSHW[1]            696 
+	00036: NPUSHB      (25):     5   148     1     5     5     2     1    66     8    21 
+	                            16    23    27    28    28    36    35    36    20    35 
+	                            35    36    76    77    77 
+	00063: PUSHW[1]            295 
+	00066: NPUSHB      (56):    45    46    20    45    45    46    35    28    36    27 
+	                             4    52    78    28    35    74    75    27    36     8 
+	                             0    48    77    45   206    77    98    57    47    44 
+	                            63    44    79    44     3   111    44   127    44   143 
+	                            44     3    44    44    65    76    75    85    46    58 
+	                            73    77    66    66    65     1 
+	00124: PUSHW[4]            778     0    16   756 
+	00133: PUSHB[8]             17     8    15     9    31     9     2     9 
+	00142: PUSHW[1]            684 
+	00145: NPUSHB      (20):    17    91     0    18    77    26   174     0     0    79 
+	                            46    95    46     2    46    65    10    76    85    46 
+	00167: PUSHW[1]            396 
+	00170: NPUSHB      (13):    47    47    48    48    57    57    58    75    74    45 
+	                            77    59    44 
+	00185: PUSHW[1]            675 
+	00188: NPUSHB      (29):    74    43    43    15    69    31    69     2    69   136 
+	                            73    52   154    62   154    73    59    58   154    79 
+	                            23   116     0    91    17     1    91    17    16 
+	00219: PUSHW[1]           -192 
+	00222: PUSHB[4]              9    10    52    16 
+	00227: PUSHW[5]            662    78    76   341    24 
+	00238: CALL       
+	00239: SRP0       
+	00240: MIRP[srp0,md,rd,1] 
+	00241: CALL       
+	00242: ALIGNRP    
+	00243: MIRP[nrp0,md,rd,1] 
+	00244: SRP0       
+	00245: MIRP[nrp0,md,rd,1] 
+	00246: MIRP[nrp0,md,rd,1] 
+	00247: SRP0       
+	00248: MIRP[srp0,nmd,rd,2] 
+	00249: MIRP[nrp0,md,rd,1] 
+	00250: MIRP[nrp0,nmd,rd,0] 
+	00251: MIRP[nrp0,nmd,rd,0] 
+	00252: SRP0       
+	00253: MIRP[nrp0,nmd,rd,0] 
+	00254: DELTAP1    
+	00255: ALIGNRP    
+	00256: SRP0       
+	00257: ALIGNRP    
+	00258: MIRP[srp0,nmd,rd,0] 
+	00259: MIRP[nrp0,md,rd,1] 
+	00260: ALIGNRP    
+	00261: SRP0       
+	00262: ALIGNRP    
+	00263: SRP0       
+	00264: ALIGNRP    
+	00265: SRP0       
+	00266: ALIGNRP    
+	00267: SRP0       
+	00268: ALIGNRP    
+	00269: SRP0       
+	00270: MIRP[srp0,nmd,rd,2] 
+	00271: MIRP[nrp0,md,rd,1] 
+	00272: SVTCA[y-axis] 
+	00273: MIAP[rd+ci] 
+	00274: MDAP[rd]   
+	00275: DELTAP1    
+	00276: MIAP[rd+ci] 
+	00277: MIRP[srp0,nmd,rd,0] 
+	00278: MIRP[nrp0,md,rd,1] 
+	00279: SRP0       
+	00280: MIRP[srp0,md,rd,1] 
+	00281: MIRP[srp0,nmd,rd,0] 
+	00282: DELTAP1    
+	00283: ALIGNRP    
+	00284: SRP0       
+	00285: MIRP[nrp0,md,rd,2] 
+	00286: SRP0       
+	00287: MIRP[nrp0,nmd,rd,0] 
+	00288: SRP0       
+	00289: ALIGNRP    
+	00290: SRP0       
+	00291: MIRP[srp0,md,rd,1] 
+	00292: ALIGNRP    
+	00293: SRP0       
+	00294: MIRP[srp0,md,rd,1] 
+	00295: ALIGNRP    
+	00296: SRP1       
+	00297: IP         
+	00298: MDAP[rd]   
+	00299: DELTAP1    
+	00300: DELTAP2    
+	00301: ALIGNRP    
+	00302: MIRP[nrp0,md,rd,1] 
+	00303: MIRP[nrp0,nmd,rd,2] 
+	00304: SRP0       
+	00305: ALIGNRP    
+	00306: SRP1       
+	00307: SRP2       
+	00308: IP         
+	00309: IP         
+	00310: SRP1       
+	00311: SRP2       
+	00312: IP         
+	00313: IP         
+	00314: SVTCA[x-axis] 
+	00315: SRP1       
+	00316: SRP2       
+	00317: SLOOP      
+	00318: IP         
+	00319: SDPVTL[1]  
+	00320: MDAP[nrd]  
+	00321: CALL       
+	00322: SFVTCA[x-axis] 
+	00323: RDTG       
+	00324: SRP0       
+	00325: MDRP[nrp0,nmd,rd,0] 
+	00326: SDPVTL[1]  
+	00327: SFVTPV     
+	00328: MDAP[nrd]  
+	00329: RTG        
+	00330: CALL       
+	00331: RDTG       
+	00332: SRP0       
+	00333: MDRP[nrp0,nmd,rd,0] 
+	00334: SVTCA[x-axis] 
+	00335: SRP1       
+	00336: SRP2       
+	00337: IP         
+	00338: RTG        
+	00339: SVTCA[y-axis] 
+	00340: SRP0       
+	00341: MIRP[srp0,md,rd,1] 
+	00342: RTDG       
+	00343: SRP2       
+	00344: IP         
+	00345: MDAP[rd]   
+	00346: RTG        
+	00347: SVTCA[x-axis] 
+	00348: SRP0       
+	00349: MIRP[srp0,nmd,rd,1] 
+	00350: MIRP[srp0,nmd,rd,0] 
+	00351: MDRP[nrp0,nmd,rd,0] 
+	00352: SVTCA[y-axis] 
+	00353: SRP0       
+	00354: MIRP[srp0,md,rd,1] 
+	00355: RTDG       
+	00356: SRP2       
+	00357: IP         
+	00358: MDAP[rd]   
+	00359: RTG        
+	00360: SVTCA[x-axis] 
+	00361: SRP0       
+	00362: MIRP[srp0,nmd,rd,1] 
+	00363: MIRP[srp0,nmd,rd,0] 
+	00364: MDRP[nrp0,nmd,rd,0] 
+	00365: IUP[y]     
+	00366: IUP[x]     
+	00367: SVTCA[x-axis] 
+	00368: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:                                      On
+	 28:                                      On
+	 29:                      Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:                                      On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:        XDual         Y-Short         Off
+	 43:                              X-Short On
+	 44:  YDual                               On
+	 45:  YDual XDual         Y-Short         On
+	 46:                                      On
+	 47:  YDual XDual                 X-Short On
+	 48:        XDual                         On
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:        XDual         Y-Short X-Short Off
+	 52:        XDual         Y-Short         On
+	 53:        XDual         Y-Short         Off
+	 54:                      Y-Short X-Short Off
+	 55:                      Y-Short X-Short Off
+	 56:  YDual                       X-Short On
+	 57:  YDual                       X-Short On
+	 58:        XDual         Y-Short         On
+	 59:  YDual XDual                 X-Short On
+	 60:  YDual XDual                 X-Short Off
+	 61:        XDual         Y-Short X-Short Off
+	 62:        XDual         Y-Short         On
+	 63:        XDual         Y-Short         Off
+	 64:                      Y-Short X-Short Off
+	 65:  YDual                       X-Short On
+	 66:  YDual                       X-Short On
+	 67:  YDual                       X-Short Off
+	 68:  YDual               Y-Short X-Short Off
+	 69:  YDual XDual         Y-Short         On
+	 70:  YDual XDual         Y-Short         Off
+	 71:  YDual XDual         Y-Short X-Short Off
+	 72:  YDual XDual                 X-Short On
+	 73:  YDual XDual                 X-Short On
+	 74:  YDual XDual         Y-Short         On
+	 75:        XDual                         On
+	 76:  YDual                       X-Short On
+	 77:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   277,  1282)  ->  Abs (   277,  1282)
+	  1: Rel (     0,  -609)  ->  Abs (   277,   673)
+	  2: Rel (   157,     0)  ->  Abs (   434,   673)
+	  3: Rel (    25,     0)  ->  Abs (   459,   673)
+	  4: Rel (    21,   -17)  ->  Abs (   480,   656)
+	  5: Rel (     0,   -12)  ->  Abs (   480,   644)
+	  6: Rel (     0,   -11)  ->  Abs (   480,   633)
+	  7: Rel (   -21,   -17)  ->  Abs (   459,   616)
+	  8: Rel (   -25,     0)  ->  Abs (   434,   616)
+	  9: Rel (  -389,     0)  ->  Abs (    45,   616)
+	 10: Rel (   -24,     0)  ->  Abs (    21,   616)
+	 11: Rel (   -21,    17)  ->  Abs (     0,   633)
+	 12: Rel (     0,    12)  ->  Abs (     0,   645)
+	 13: Rel (     0,    11)  ->  Abs (     0,   656)
+	 14: Rel (    21,    17)  ->  Abs (    21,   673)
+	 15: Rel (    24,     0)  ->  Abs (    45,   673)
+	 16: Rel (   158,     0)  ->  Abs (   203,   673)
+	 17: Rel (     0,   529)  ->  Abs (   203,  1202)
+	 18: Rel (  -148,   -40)  ->  Abs (    55,  1162)
+	 19: Rel (   -11,    -3)  ->  Abs (    44,  1159)
+	 20: Rel (    -8,     0)  ->  Abs (    36,  1159)
+	 21: Rel (   -15,     0)  ->  Abs (    21,  1159)
+	 22: Rel (   -20,    17)  ->  Abs (     1,  1176)
+	 23: Rel (     0,    11)  ->  Abs (     1,  1187)
+	 24: Rel (     0,     9)  ->  Abs (     1,  1196)
+	 25: Rel (    13,    14)  ->  Abs (    14,  1210)
+	 26: Rel (    22,     6)  ->  Abs (    36,  1216)
+	 27: Rel (  1149,  -323)  ->  Abs (  1185,   893)
+	 28: Rel (  -915,  -590)  ->  Abs (   270,   303)
+	 29: Rel (   -23,   -14)  ->  Abs (   247,   289)
+	 30: Rel (   -12,     0)  ->  Abs (   235,   289)
+	 31: Rel (   -18,     0)  ->  Abs (   217,   289)
+	 32: Rel (   -24,    24)  ->  Abs (   193,   313)
+	 33: Rel (     0,    18)  ->  Abs (   193,   331)
+	 34: Rel (     0,    23)  ->  Abs (   193,   354)
+	 35: Rel (    31,    20)  ->  Abs (   224,   374)
+	 36: Rel (   915,   590)  ->  Abs (  1139,   964)
+	 37: Rel (    23,    14)  ->  Abs (  1162,   978)
+	 38: Rel (    12,     0)  ->  Abs (  1174,   978)
+	 39: Rel (    17,     0)  ->  Abs (  1191,   978)
+	 40: Rel (    25,   -25)  ->  Abs (  1216,   953)
+	 41: Rel (     0,   -17)  ->  Abs (  1216,   936)
+	 42: Rel (     0,   -23)  ->  Abs (  1216,   913)
+	 43: Rel (  -147,  -734)  ->  Abs (  1069,   179)
+	 44: Rel (  -329,     0)  ->  Abs (   740,   179)
+	 45: Rel (     0,    57)  ->  Abs (   740,   236)
+	 46: Rel (   279,   417)  ->  Abs (  1019,   653)
+	 47: Rel (   124,     0)  ->  Abs (  1143,   653)
+	 48: Rel (     0,  -418)  ->  Abs (  1143,   235)
+	 49: Rel (    29,     0)  ->  Abs (  1172,   235)
+	 50: Rel (    25,     0)  ->  Abs (  1197,   235)
+	 51: Rel (    21,   -17)  ->  Abs (  1218,   218)
+	 52: Rel (     0,   -11)  ->  Abs (  1218,   207)
+	 53: Rel (     0,    -7)  ->  Abs (  1218,   200)
+	 54: Rel (   -10,   -14)  ->  Abs (  1208,   186)
+	 55: Rel (   -17,    -7)  ->  Abs (  1191,   179)
+	 56: Rel (   -19,     0)  ->  Abs (  1172,   179)
+	 57: Rel (   -29,     0)  ->  Abs (  1143,   179)
+	 58: Rel (     0,  -123)  ->  Abs (  1143,    56)
+	 59: Rel (    29,     0)  ->  Abs (  1172,    56)
+	 60: Rel (    25,     0)  ->  Abs (  1197,    56)
+	 61: Rel (    21,   -17)  ->  Abs (  1218,    39)
+	 62: Rel (     0,   -11)  ->  Abs (  1218,    28)
+	 63: Rel (     0,   -11)  ->  Abs (  1218,    17)
+	 64: Rel (   -21,   -17)  ->  Abs (  1197,     0)
+	 65: Rel (   -25,     0)  ->  Abs (  1172,     0)
+	 66: Rel (  -184,     0)  ->  Abs (   988,     0)
+	 67: Rel (   -25,     0)  ->  Abs (   963,     0)
+	 68: Rel (   -21,    17)  ->  Abs (   942,    17)
+	 69: Rel (     0,    11)  ->  Abs (   942,    28)
+	 70: Rel (     0,    12)  ->  Abs (   942,    40)
+	 71: Rel (    21,    16)  ->  Abs (   963,    56)
+	 72: Rel (    25,     0)  ->  Abs (   988,    56)
+	 73: Rel (    81,     0)  ->  Abs (  1069,    56)
+	 74: Rel (     0,   179)  ->  Abs (  1069,   235)
+	 75: Rel (     0,   362)  ->  Abs (  1069,   597)
+	 76: Rel (    -6,     0)  ->  Abs (  1063,   597)
+	 77: Rel (  -243,  -362)  ->  Abs (   820,   235)
+
+	Glyph 244: off = 0x00010296, len = 594
+	  numberOfContours:	4
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1213
+	  yMax:			1285
+
+	EndPoints
+	---------
+	  0:  55
+	  1:  71
+	  2:  102
+	  3:  106
+
+	  Length of Instructions:	299
+	00000: NPUSHB      (41):    31    73    31    74     2    64    73    64    75    64 
+	                           105    64   106    80    73    80    74    80   105    80 
+	                           106    96    74    96   105    96   106    11    56    57 
+	                            57    32    64    65    20    64    64    65   105   106 
+	                           106 
+	00043: PUSHW[1]            295 
+	00046: NPUSHB      (50):    74    75    20    74    74    75    64    57    65    56 
+	                             4    81   107     0    30    24    57    64   103   104 
+	                            56    65    18    30    77   106    74   206   106    98 
+	                            86    73    73   102   105   104    85    75    87   102 
+	                            98    95    95    94    30    98    24    24    37    14 
+	00098: PUSHW[1]            483 
+	00101: PUSHB[4]             18    98     6    41 
+	00106: PUSHW[1]            483 
+	00109: NPUSHB      (15):    37    98    49     6    49     0    95    75     1    75 
+	                            94    10   105    85    75 
+	00126: PUSHW[1]            396 
+	00129: NPUSHB      (13):    76    76    77    77    86    86    87   104   103    74 
+	                           106    59    73 
+	00144: PUSHW[1]            675 
+	00147: NPUSHB      (28):   103    72    72    15    98    31    98     2    98   136 
+	                           102    81   154    91   154   102    59    87   154   108 
+	                            34    33    52    21    33    52    93     3 
+	00177: PUSHW[1]            605 
+	00180: PUSHB[8]             27   147    44    89    11    25   107   152 
+	00189: PUSHW[2]            290    24 
+	00194: CALL       
+	00195: FLIPOFF    
+	00196: SRP0       
+	00197: MIRP[srp0,nmd,rd,0] 
+	00198: FLIPON     
+	00199: MIRP[nrp0,nmd,rd,0] 
+	00200: MIRP[nrp0,nmd,rd,0] 
+	00201: MIRP[srp0,md,rd,1] 
+	00202: MIRP[nrp0,nmd,rd,0] 
+	00203: MIRP[nrp0,md,rd,1] 
+	00204: SRP0       
+	00205: MIRP[nrp0,md,rd,1] 
+	00206: SRP0       
+	00207: MIRP[srp0,nmd,rd,2] 
+	00208: MIRP[nrp0,md,rd,1] 
+	00209: MIRP[nrp0,nmd,rd,0] 
+	00210: MIRP[nrp0,nmd,rd,0] 
+	00211: SRP0       
+	00212: MIRP[nrp0,nmd,rd,0] 
+	00213: DELTAP1    
+	00214: ALIGNRP    
+	00215: SRP0       
+	00216: ALIGNRP    
+	00217: MIRP[srp0,nmd,rd,0] 
+	00218: MIRP[nrp0,md,rd,1] 
+	00219: ALIGNRP    
+	00220: SRP0       
+	00221: ALIGNRP    
+	00222: SRP0       
+	00223: ALIGNRP    
+	00224: SRP0       
+	00225: ALIGNRP    
+	00226: SRP0       
+	00227: ALIGNRP    
+	00228: SRP0       
+	00229: MIRP[srp0,nmd,rd,2] 
+	00230: MIRP[nrp0,md,rd,1] 
+	00231: SVTCA[y-axis] 
+	00232: MIAP[rd+ci] 
+	00233: MDAP[rd]   
+	00234: DELTAP1    
+	00235: MIAP[rd+ci] 
+	00236: MDAP[rd]   
+	00237: SRP0       
+	00238: MIRP[nrp0,md,rd,1] 
+	00239: MIRP[nrp0,md,rd,1] 
+	00240: SRP0       
+	00241: MIRP[nrp0,md,rd,1] 
+	00242: MIRP[nrp0,md,rd,1] 
+	00243: SRP2       
+	00244: IP         
+	00245: MDAP[rd]   
+	00246: MIRP[nrp0,md,rd,1] 
+	00247: SRP0       
+	00248: ALIGNRP    
+	00249: SRP0       
+	00250: MIRP[srp0,md,rd,1] 
+	00251: ALIGNRP    
+	00252: SRP0       
+	00253: MIRP[srp0,md,rd,1] 
+	00254: ALIGNRP    
+	00255: SRP1       
+	00256: IP         
+	00257: MDAP[rd]   
+	00258: ALIGNRP    
+	00259: MIRP[nrp0,md,rd,1] 
+	00260: MIRP[nrp0,nmd,rd,2] 
+	00261: SRP0       
+	00262: ALIGNRP    
+	00263: SRP1       
+	00264: SRP2       
+	00265: IP         
+	00266: IP         
+	00267: SRP1       
+	00268: SRP2       
+	00269: IP         
+	00270: IP         
+	00271: SRP1       
+	00272: SRP2       
+	00273: IP         
+	00274: SVTCA[x-axis] 
+	00275: SRP1       
+	00276: SRP2       
+	00277: SLOOP      
+	00278: IP         
+	00279: SDPVTL[1]  
+	00280: MDAP[nrd]  
+	00281: CALL       
+	00282: SFVTCA[x-axis] 
+	00283: RDTG       
+	00284: SRP0       
+	00285: MDRP[nrp0,nmd,rd,0] 
+	00286: SDPVTL[1]  
+	00287: SFVTPV     
+	00288: MDAP[nrd]  
+	00289: RTG        
+	00290: CALL       
+	00291: RDTG       
+	00292: SRP0       
+	00293: MDRP[nrp0,nmd,rd,0] 
+	00294: IUP[y]     
+	00295: IUP[x]     
+	00296: SVTCA[x-axis] 
+	00297: DELTAP1    
+	00298: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:                      Y-Short X-Short On
+	 40:                      Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual XDual         Y-Short X-Short On
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:        XDual         Y-Short X-Short Off
+	 52:        XDual         Y-Short         On
+	 53:        XDual         Y-Short         Off
+	 54:                      Y-Short X-Short On
+	 55:                      Y-Short X-Short Off
+	 56:                      Y-Short         On
+	 57:                                      On
+	 58:                      Y-Short X-Short Off
+	 59:  YDual                       X-Short On
+	 60:  YDual                       X-Short Off
+	 61:  YDual               Y-Short X-Short Off
+	 62:  YDual XDual         Y-Short         On
+	 63:  YDual XDual         Y-Short         Off
+	 64:  YDual XDual         Y-Short X-Short On
+	 65:                                      On
+	 66:  YDual XDual         Y-Short X-Short Off
+	 67:  YDual XDual                 X-Short On
+	 68:  YDual XDual                 X-Short Off
+	 69:        XDual         Y-Short X-Short Off
+	 70:        XDual         Y-Short         On
+	 71:        XDual         Y-Short         Off
+	 72:                              X-Short On
+	 73:  YDual                               On
+	 74:  YDual XDual         Y-Short         On
+	 75:                                      On
+	 76:  YDual XDual                 X-Short On
+	 77:        XDual                         On
+	 78:  YDual XDual                 X-Short On
+	 79:  YDual XDual                 X-Short Off
+	 80:        XDual         Y-Short X-Short Off
+	 81:        XDual         Y-Short         On
+	 82:        XDual         Y-Short         Off
+	 83:                      Y-Short X-Short Off
+	 84:                      Y-Short X-Short Off
+	 85:  YDual                       X-Short On
+	 86:  YDual                       X-Short On
+	 87:        XDual         Y-Short         On
+	 88:  YDual XDual                 X-Short On
+	 89:  YDual XDual                 X-Short Off
+	 90:        XDual         Y-Short X-Short Off
+	 91:        XDual         Y-Short         On
+	 92:        XDual         Y-Short         Off
+	 93:                      Y-Short X-Short Off
+	 94:  YDual                       X-Short On
+	 95:  YDual                       X-Short On
+	 96:  YDual                       X-Short Off
+	 97:  YDual               Y-Short X-Short Off
+	 98:  YDual XDual         Y-Short         On
+	 99:  YDual XDual         Y-Short         Off
+	100:  YDual XDual         Y-Short X-Short Off
+	101:  YDual XDual                 X-Short On
+	102:  YDual XDual                 X-Short On
+	103:  YDual XDual         Y-Short         On
+	104:        XDual                         On
+	105:  YDual                       X-Short On
+	106:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   381,   972)  ->  Abs (   381,   972)
+	  1: Rel (    63,   -27)  ->  Abs (   444,   945)
+	  2: Rel (    70,   -94)  ->  Abs (   514,   851)
+	  3: Rel (     0,   -49)  ->  Abs (   514,   802)
+	  4: Rel (     0,   -75)  ->  Abs (   514,   727)
+	  5: Rel (  -146,  -126)  ->  Abs (   368,   601)
+	  6: Rel (  -119,     0)  ->  Abs (   249,   601)
+	  7: Rel (   -71,     0)  ->  Abs (   178,   601)
+	  8: Rel (  -146,    53)  ->  Abs (    32,   654)
+	  9: Rel (   -25,    25)  ->  Abs (     7,   679)
+	 10: Rel (    -7,     8)  ->  Abs (     0,   687)
+	 11: Rel (     0,     9)  ->  Abs (     0,   696)
+	 12: Rel (     0,    11)  ->  Abs (     0,   707)
+	 13: Rel (    19,    16)  ->  Abs (    19,   723)
+	 14: Rel (    15,     0)  ->  Abs (    34,   723)
+	 15: Rel (    15,     0)  ->  Abs (    49,   723)
+	 16: Rel (    29,   -17)  ->  Abs (    78,   706)
+	 17: Rel (    78,   -49)  ->  Abs (   156,   657)
+	 18: Rel (    93,     0)  ->  Abs (   249,   657)
+	 19: Rel (    85,     0)  ->  Abs (   334,   657)
+	 20: Rel (   106,    91)  ->  Abs (   440,   748)
+	 21: Rel (     0,    53)  ->  Abs (   440,   801)
+	 22: Rel (     0,    54)  ->  Abs (   440,   855)
+	 23: Rel (  -108,    91)  ->  Abs (   332,   946)
+	 24: Rel (  -100,     2)  ->  Abs (   232,   948)
+	 25: Rel (   -25,     1)  ->  Abs (   207,   949)
+	 26: Rel (   -20,    16)  ->  Abs (   187,   965)
+	 27: Rel (     0,    12)  ->  Abs (   187,   977)
+	 28: Rel (     0,    11)  ->  Abs (   187,   988)
+	 29: Rel (    21,    16)  ->  Abs (   208,  1004)
+	 30: Rel (    22,     0)  ->  Abs (   230,  1004)
+	 31: Rel (    79,     0)  ->  Abs (   309,  1004)
+	 32: Rel (    66,    27)  ->  Abs (   375,  1031)
+	 33: Rel (    38,    54)  ->  Abs (   413,  1085)
+	 34: Rel (     0,    29)  ->  Abs (   413,  1114)
+	 35: Rel (     0,    44)  ->  Abs (   413,  1158)
+	 36: Rel (   -81,    71)  ->  Abs (   332,  1229)
+	 37: Rel (   -71,     0)  ->  Abs (   261,  1229)
+	 38: Rel (  -103,     0)  ->  Abs (   158,  1229)
+	 39: Rel (   -54,   -57)  ->  Abs (   104,  1172)
+	 40: Rel (   -13,   -15)  ->  Abs (    91,  1157)
+	 41: Rel (   -20,     0)  ->  Abs (    71,  1157)
+	 42: Rel (   -16,     0)  ->  Abs (    55,  1157)
+	 43: Rel (   -20,    16)  ->  Abs (    35,  1173)
+	 44: Rel (     0,    10)  ->  Abs (    35,  1183)
+	 45: Rel (     0,     9)  ->  Abs (    35,  1192)
+	 46: Rel (    11,    12)  ->  Abs (    46,  1204)
+	 47: Rel (    33,    36)  ->  Abs (    79,  1240)
+	 48: Rel (   116,    45)  ->  Abs (   195,  1285)
+	 49: Rel (    66,     0)  ->  Abs (   261,  1285)
+	 50: Rel (   103,     0)  ->  Abs (   364,  1285)
+	 51: Rel (   123,  -105)  ->  Abs (   487,  1180)
+	 52: Rel (     0,   -66)  ->  Abs (   487,  1114)
+	 53: Rel (     0,   -44)  ->  Abs (   487,  1070)
+	 54: Rel (   -24,   -33)  ->  Abs (   463,  1037)
+	 55: Rel (   -33,   -45)  ->  Abs (   430,   992)
+	 56: Rel (   741,   -99)  ->  Abs (  1171,   893)
+	 57: Rel (  -915,  -590)  ->  Abs (   256,   303)
+	 58: Rel (   -22,   -14)  ->  Abs (   234,   289)
+	 59: Rel (   -12,     0)  ->  Abs (   222,   289)
+	 60: Rel (   -18,     0)  ->  Abs (   204,   289)
+	 61: Rel (   -25,    24)  ->  Abs (   179,   313)
+	 62: Rel (     0,    18)  ->  Abs (   179,   331)
+	 63: Rel (     0,    23)  ->  Abs (   179,   354)
+	 64: Rel (    31,    20)  ->  Abs (   210,   374)
+	 65: Rel (   916,   590)  ->  Abs (  1126,   964)
+	 66: Rel (    22,    14)  ->  Abs (  1148,   978)
+	 67: Rel (    12,     0)  ->  Abs (  1160,   978)
+	 68: Rel (    18,     0)  ->  Abs (  1178,   978)
+	 69: Rel (    25,   -25)  ->  Abs (  1203,   953)
+	 70: Rel (     0,   -17)  ->  Abs (  1203,   936)
+	 71: Rel (     0,   -23)  ->  Abs (  1203,   913)
+	 72: Rel (  -139,  -734)  ->  Abs (  1064,   179)
+	 73: Rel (  -329,     0)  ->  Abs (   735,   179)
+	 74: Rel (     0,    57)  ->  Abs (   735,   236)
+	 75: Rel (   279,   417)  ->  Abs (  1014,   653)
+	 76: Rel (   124,     0)  ->  Abs (  1138,   653)
+	 77: Rel (     0,  -418)  ->  Abs (  1138,   235)
+	 78: Rel (    29,     0)  ->  Abs (  1167,   235)
+	 79: Rel (    25,     0)  ->  Abs (  1192,   235)
+	 80: Rel (    21,   -17)  ->  Abs (  1213,   218)
+	 81: Rel (     0,   -11)  ->  Abs (  1213,   207)
+	 82: Rel (     0,    -7)  ->  Abs (  1213,   200)
+	 83: Rel (   -10,   -14)  ->  Abs (  1203,   186)
+	 84: Rel (   -17,    -7)  ->  Abs (  1186,   179)
+	 85: Rel (   -19,     0)  ->  Abs (  1167,   179)
+	 86: Rel (   -29,     0)  ->  Abs (  1138,   179)
+	 87: Rel (     0,  -123)  ->  Abs (  1138,    56)
+	 88: Rel (    29,     0)  ->  Abs (  1167,    56)
+	 89: Rel (    25,     0)  ->  Abs (  1192,    56)
+	 90: Rel (    21,   -17)  ->  Abs (  1213,    39)
+	 91: Rel (     0,   -11)  ->  Abs (  1213,    28)
+	 92: Rel (     0,   -11)  ->  Abs (  1213,    17)
+	 93: Rel (   -21,   -17)  ->  Abs (  1192,     0)
+	 94: Rel (   -25,     0)  ->  Abs (  1167,     0)
+	 95: Rel (  -184,     0)  ->  Abs (   983,     0)
+	 96: Rel (   -25,     0)  ->  Abs (   958,     0)
+	 97: Rel (   -20,    17)  ->  Abs (   938,    17)
+	 98: Rel (     0,    11)  ->  Abs (   938,    28)
+	 99: Rel (     0,    12)  ->  Abs (   938,    40)
+	100: Rel (    20,    16)  ->  Abs (   958,    56)
+	101: Rel (    25,     0)  ->  Abs (   983,    56)
+	102: Rel (    81,     0)  ->  Abs (  1064,    56)
+	103: Rel (     0,   179)  ->  Abs (  1064,   235)
+	104: Rel (     0,   362)  ->  Abs (  1064,   597)
+	105: Rel (    -6,     0)  ->  Abs (  1058,   597)
+	106: Rel (  -242,  -362)  ->  Abs (   816,   235)
+
+	Glyph 245: off = 0x000104E8, len = 340
+	  numberOfContours:	1
+	  xMin:			159
+	  yMin:			0
+	  xMax:			1140
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  70
+
+	  Length of Instructions:	154
+	00000: NPUSHB      (28):    53    36    70    70    42    17     1    36     7     7 
+	                            25    32    36    26    26    25    25    42    17    10 
+	                            91    16    23    91    16    17     8    47 
+	00030: PUSHW[1]            410 
+	00033: NPUSHB      (14):    51    36    43    35    36    43    42     2    62    61 
+	                            68    61    36    55 
+	00049: PUSHW[1]            408 
+	00052: NPUSHB      (14):     9    43    44    51    44    91    50   212    72    52 
+	                             0     4   215    13 
+	00068: PUSHW[1]            317 
+	00071: NPUSHB      (13):     9    20   212    29   212     9    36    24    38   212 
+	                            34    34    24 
+	00086: PUSHW[5]            665    71    80   339    24 
+	00097: CALL       
+	00098: SRP0       
+	00099: MIRP[srp0,nmd,rd,2] 
+	00100: ALIGNRP    
+	00101: SRP0       
+	00102: MIRP[nrp0,nmd,rd,0] 
+	00103: SRP0       
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: MIRP[nrp0,nmd,rd,0] 
+	00106: MIRP[nrp0,nmd,rd,0] 
+	00107: SRP0       
+	00108: MIRP[nrp0,nmd,rd,0] 
+	00109: MIRP[nrp0,nmd,rd,0] 
+	00110: ALIGNRP    
+	00111: ALIGNRP    
+	00112: SRP0       
+	00113: MIRP[srp0,nmd,rd,0] 
+	00114: MIRP[nrp0,md,rd,1] 
+	00115: ALIGNRP    
+	00116: SRP0       
+	00117: ALIGNRP    
+	00118: SRP0       
+	00119: MIRP[srp0,nmd,rd,2] 
+	00120: MIRP[nrp0,md,rd,1] 
+	00121: ALIGNRP    
+	00122: SRP0       
+	00123: ALIGNRP    
+	00124: SVTCA[y-axis] 
+	00125: MIAP[rd+ci] 
+	00126: ALIGNRP    
+	00127: MIRP[nrp0,md,rd,1] 
+	00128: SRP0       
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: MIAP[rd+ci] 
+	00132: ALIGNRP    
+	00133: MIRP[nrp0,md,rd,1] 
+	00134: SRP0       
+	00135: MIRP[nrp0,md,rd,1] 
+	00136: SRP1       
+	00137: SRP2       
+	00138: IP         
+	00139: MDAP[rd]   
+	00140: ALIGNRP    
+	00141: SRP0       
+	00142: MIRP[nrp0,md,rd,1] 
+	00143: SRP0       
+	00144: ALIGNRP    
+	00145: SRP0       
+	00146: MIRP[nrp0,md,rd,1] 
+	00147: SRP1       
+	00148: SRP2       
+	00149: IP         
+	00150: MDAP[rd]   
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: IUP[y]     
+	00153: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short On
+	  9:        XDual         Y-Short         On
+	 10:  YDual                               On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                               On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short On
+	 34:        XDual                         On
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual XDual         Y-Short X-Short On
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual                               On
+	 44:        XDual                         On
+	 45:        XDual         Y-Short         Off
+	 46:                      Y-Short X-Short Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short Off
+	 49:  YDual               Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual                               On
+	 53:        XDual                         On
+	 54:  YDual                               On
+	 55:  YDual XDual         Y-Short         On
+	 56:  YDual XDual         Y-Short         Off
+	 57:  YDual XDual         Y-Short X-Short Off
+	 58:  YDual XDual                 X-Short On
+	 59:  YDual XDual                 X-Short Off
+	 60:        XDual         Y-Short X-Short Off
+	 61:        XDual         Y-Short         On
+	 62:        XDual                         On
+	 63:        XDual         Y-Short         Off
+	 64:                      Y-Short X-Short Off
+	 65:  YDual                       X-Short On
+	 66:  YDual                       X-Short Off
+	 67:  YDual               Y-Short X-Short Off
+	 68:  YDual XDual         Y-Short         On
+	 69:  YDual XDual         Y-Short         On
+	 70:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   412,   322)  ->  Abs (   412,   322)
+	  1: Rel (   216,     0)  ->  Abs (   628,   322)
+	  2: Rel (    30,     0)  ->  Abs (   658,   322)
+	  3: Rel (    26,   -23)  ->  Abs (   684,   299)
+	  4: Rel (     0,   -19)  ->  Abs (   684,   280)
+	  5: Rel (     0,   -18)  ->  Abs (   684,   262)
+	  6: Rel (   -26,   -24)  ->  Abs (   658,   238)
+	  7: Rel (   -30,     0)  ->  Abs (   628,   238)
+	  8: Rel (  -216,     0)  ->  Abs (   412,   238)
+	  9: Rel (     0,  -154)  ->  Abs (   412,    84)
+	 10: Rel (   288,     0)  ->  Abs (   700,    84)
+	 11: Rel (    30,     0)  ->  Abs (   730,    84)
+	 12: Rel (    26,   -23)  ->  Abs (   756,    61)
+	 13: Rel (     0,   -19)  ->  Abs (   756,    42)
+	 14: Rel (     0,   -18)  ->  Abs (   756,    24)
+	 15: Rel (   -26,   -24)  ->  Abs (   730,     0)
+	 16: Rel (   -30,     0)  ->  Abs (   700,     0)
+	 17: Rel (  -485,     0)  ->  Abs (   215,     0)
+	 18: Rel (   -30,     0)  ->  Abs (   185,     0)
+	 19: Rel (   -26,    24)  ->  Abs (   159,    24)
+	 20: Rel (     0,    18)  ->  Abs (   159,    42)
+	 21: Rel (     0,    19)  ->  Abs (   159,    61)
+	 22: Rel (    26,    23)  ->  Abs (   185,    84)
+	 23: Rel (    30,     0)  ->  Abs (   215,    84)
+	 24: Rel (   113,     0)  ->  Abs (   328,    84)
+	 25: Rel (     0,   154)  ->  Abs (   328,   238)
+	 26: Rel (  -113,     0)  ->  Abs (   215,   238)
+	 27: Rel (   -30,     0)  ->  Abs (   185,   238)
+	 28: Rel (   -26,    24)  ->  Abs (   159,   262)
+	 29: Rel (     0,    18)  ->  Abs (   159,   280)
+	 30: Rel (     0,    19)  ->  Abs (   159,   299)
+	 31: Rel (    26,    23)  ->  Abs (   185,   322)
+	 32: Rel (    30,     0)  ->  Abs (   215,   322)
+	 33: Rel (   113,     0)  ->  Abs (   328,   322)
+	 34: Rel (     0,   764)  ->  Abs (   328,  1086)
+	 35: Rel (  -113,     0)  ->  Abs (   215,  1086)
+	 36: Rel (   -30,     0)  ->  Abs (   185,  1086)
+	 37: Rel (   -26,    23)  ->  Abs (   159,  1109)
+	 38: Rel (     0,    19)  ->  Abs (   159,  1128)
+	 39: Rel (     0,    19)  ->  Abs (   159,  1147)
+	 40: Rel (    15,    13)  ->  Abs (   174,  1160)
+	 41: Rel (    11,    10)  ->  Abs (   185,  1170)
+	 42: Rel (    30,     0)  ->  Abs (   215,  1170)
+	 43: Rel (   925,     0)  ->  Abs (  1140,  1170)
+	 44: Rel (     0,  -289)  ->  Abs (  1140,   881)
+	 45: Rel (     0,   -30)  ->  Abs (  1140,   851)
+	 46: Rel (   -23,   -26)  ->  Abs (  1117,   825)
+	 47: Rel (   -19,     0)  ->  Abs (  1098,   825)
+	 48: Rel (   -19,     0)  ->  Abs (  1079,   825)
+	 49: Rel (   -24,    26)  ->  Abs (  1055,   851)
+	 50: Rel (     0,    30)  ->  Abs (  1055,   881)
+	 51: Rel (     0,   205)  ->  Abs (  1055,  1086)
+	 52: Rel (  -643,     0)  ->  Abs (   412,  1086)
+	 53: Rel (     0,  -437)  ->  Abs (   412,   649)
+	 54: Rel (   302,     0)  ->  Abs (   714,   649)
+	 55: Rel (     0,    95)  ->  Abs (   714,   744)
+	 56: Rel (     0,    30)  ->  Abs (   714,   774)
+	 57: Rel (    23,    26)  ->  Abs (   737,   800)
+	 58: Rel (    19,     0)  ->  Abs (   756,   800)
+	 59: Rel (    19,     0)  ->  Abs (   775,   800)
+	 60: Rel (    23,   -26)  ->  Abs (   798,   774)
+	 61: Rel (     0,   -30)  ->  Abs (   798,   744)
+	 62: Rel (     0,  -274)  ->  Abs (   798,   470)
+	 63: Rel (     0,   -30)  ->  Abs (   798,   440)
+	 64: Rel (   -23,   -26)  ->  Abs (   775,   414)
+	 65: Rel (   -19,     0)  ->  Abs (   756,   414)
+	 66: Rel (   -19,     0)  ->  Abs (   737,   414)
+	 67: Rel (   -23,    26)  ->  Abs (   714,   440)
+	 68: Rel (     0,    30)  ->  Abs (   714,   470)
+	 69: Rel (     0,    95)  ->  Abs (   714,   565)
+	 70: Rel (  -302,     0)  ->  Abs (   412,   565)
+
+	Glyph 246: off = 0x0001063C, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1157
+	  yMax:			1563
+
+	     0: Flags:		0x0226
+		Glyf Index:	42
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	217
+		X WOffset:	52
+		Y WOffset:	265
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1    84    14 
+	00005: PUSHW[1]           -277 
+	00008: PUSHB[5]             72    39     1     1    81 
+	00014: PUSHW[3]            651    41   300 
+	00021: SCANCTRL   
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+
+	Glyph 247: off = 0x00010670, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			125
+	  yMin:			-386
+	  xMax:			1150
+	  yMax:			1298
+
+	     0: Flags:		0x0226
+		Glyf Index:	74
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	217
+		X BOffset:	-1
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              2    31    75     1    75    38 
+	00007: PUSHW[1]           -235 
+	00010: PUSHB[5]             72    43     2     1    72 
+	00016: PUSHW[3]            652    41   300 
+	00023: SCANCTRL   
+	00024: SVTCA[y-axis] 
+	00025: CALL       
+	00026: SVTCA[x-axis] 
+	00027: CALL       
+	00028: DELTAP1    
+	00029: SHC[rp1,zp0] 
+
+	Glyph 248: off = 0x000106A6, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			229
+	  yMin:			0
+	  xMax:			1001
+	  yMax:			1514
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	218
+		X WOffset:	0
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1    38     0 
+	00005: PUSHW[1]           -144 
+	00008: PUSHB[5]             72    39     1     1    35 
+	00014: PUSHW[2]            651    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+
+	Glyph 249: off = 0x000106D8, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			185
+	  yMin:			-333
+	  xMax:			1044
+	  yMax:			1197
+
+	     0: Flags:		0x0226
+		Glyf Index:	54
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	220
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1    69    67 
+	00005: PUSHW[1]            -26 
+	00008: PUSHB[7]             72    39     1     1    72     8    41 
+	00016: PUSHW[1]            300 
+	00019: SCANCTRL   
+	00020: SVTCA[y-axis] 
+	00021: CALL       
+	00022: SVTCA[x-axis] 
+	00023: CALL       
+
+	Glyph 250: off = 0x00010708, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			207
+	  yMin:			-333
+	  xMax:			1022
+	  yMax:			896
+
+	     0: Flags:		0x0226
+		Glyf Index:	86
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	220
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1     1    77    33    40    72    39     1     1    73 
+	                             8    41 
+	00014: PUSHW[1]            300 
+	00017: SCANCTRL   
+	00018: SVTCA[y-axis] 
+	00019: CALL       
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+
+	Glyph 251: off = 0x00010736, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			127
+	  yMin:			-33
+	  xMax:			1100
+	  yMax:			1593
+
+	     0: Flags:		0x0226
+		Glyf Index:	38
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	72
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1    63    55 
+	00005: PUSHW[1]           -111 
+	00008: PUSHB[5]             72    39     1     1    60 
+	00014: PUSHW[3]            651    41   300 
+	00021: SCANCTRL   
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+
+	Glyph 252: off = 0x0001076A, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			171
+	  yMin:			-33
+	  xMax:			1099
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	70
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	141
+		X BOffset:	70
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1    49    41 
+	00005: PUSHW[1]           -129 
+	00008: PUSHB[5]             72    39     1     1    46 
+	00014: PUSHW[3]            652    41   300 
+	00021: SCANCTRL   
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+
+	Glyph 253: off = 0x0001079C, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			127
+	  yMin:			-33
+	  xMax:			1100
+	  yMax:			1563
+
+	     0: Flags:		0x0226
+		Glyf Index:	38
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	47
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1    31    67     1    67    55    36   104    43     1 
+	                             1    57 
+	00014: PUSHW[3]            651    41   300 
+	00021: SCANCTRL   
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+	00026: DELTAP1    
+	00027: SHC[rp1,zp0] 
+
+	Glyph 254: off = 0x000107D2, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			171
+	  yMin:			-33
+	  xMax:			1099
+	  yMax:			1299
+
+	     0: Flags:		0x0226
+		Glyf Index:	70
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	223
+		X BOffset:	57
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1    31    53     1    53    41     0   104    43     1 
+	                             1    43 
+	00014: PUSHW[3]            652    41   300 
+	00021: SCANCTRL   
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+	00026: DELTAP1    
+	00027: SHC[rp1,zp0] 
+
+	Glyph 255: off = 0x00010806, len = 504
+	  numberOfContours:	2
+	  xMin:			126
+	  yMin:			-33
+	  xMax:			1195
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  54
+	  1:  66
+
+	  Length of Instructions:	323
+	00000: NPUSHB      (35):   168    20   166    32   185    20   183    32     4    79 
+	                            20    64    32     2   161    59   161    63   181    59 
+	                           183    60   180    63   192    60   193    63     7    41 
+	                             8     5    15    18    12 
+	00037: PUSHW[1]            686 
+	00040: NPUSHB      (14):     0    15     1    15    47    11    15    15    12    11 
+	                            34    18    53    47 
+	00056: PUSHW[1]            686 
+	00059: NPUSHB      (53):    50    47    46    50    50    47    46    34    53    32 
+	                            33    10    19    20    32    58    64     1    59     9 
+	                             9    34    59    15    44    31    44    47    44    63 
+	                            44    79    44   143    44   159    44   175    44     8 
+	                            79    44     1    44   147    53    58    33    30    64 
+	                            33    22    12 
+	00114: PUSHW[4]            396    11    18   302 
+	00123: PUSHB[5]             33    19     9   224     1 
+	00129: PUSHW[1]            396 
+	00132: NPUSHB      (27):     0    59    45    45    19    54    11    32    46    19 
+	                            19    64    55     1    48    55    80    55   128    55 
+	                             3     0    55    16    55     2    55 
+	00161: PUSHW[1]            539 
+	00164: NPUSHB      (22):    61    33     0    26     1   240    26     1    26    25 
+	                            67    53     0    30     7    18    10    22    11    42 
+	                           128    24 
+	00188: CALL       
+	00189: SVTCA[y-axis] 
+	00190: MIAP[rd+ci] 
+	00191: MIAP[rd+ci] 
+	00192: MIAP[rd+ci] 
+	00193: MIAP[rd+ci] 
+	00194: SVTCA[x-axis] 
+	00195: FLIPOFF    
+	00196: SRP0       
+	00197: MIRP[srp0,nmd,rd,0] 
+	00198: DELTAP1    
+	00199: DELTAP2    
+	00200: FLIPON     
+	00201: MIRP[nrp0,md,rd,1] 
+	00202: MIRP[srp0,nmd,rd,0] 
+	00203: DELTAP1    
+	00204: DELTAP1    
+	00205: DELTAP2    
+	00206: ALIGNRP    
+	00207: SRP0       
+	00208: ALIGNRP    
+	00209: MIRP[srp0,md,rd,1] 
+	00210: ALIGNRP    
+	00211: SRP0       
+	00212: ALIGNRP    
+	00213: SRP0       
+	00214: MIRP[srp0,md,rd,1] 
+	00215: MIRP[srp0,nmd,rd,2] 
+	00216: MIRP[nrp0,nmd,rd,1] 
+	00217: SRP0       
+	00218: ALIGNRP    
+	00219: MIRP[nrp0,md,rd,1] 
+	00220: SRP0       
+	00221: MIRP[nrp0,nmd,rd,2] 
+	00222: SVTCA[y-axis] 
+	00223: SRP0       
+	00224: MIRP[nrp0,md,rd,1] 
+	00225: SRP0       
+	00226: MIRP[nrp0,md,rd,1] 
+	00227: SRP0       
+	00228: MIRP[srp0,nmd,rd,0] 
+	00229: DELTAP2    
+	00230: DELTAP1    
+	00231: MIRP[srp0,md,rd,1] 
+	00232: ALIGNRP    
+	00233: SRP0       
+	00234: MIRP[nrp0,md,rd,1] 
+	00235: SRP1       
+	00236: SRP2       
+	00237: IP         
+	00238: IP         
+	00239: SVTCA[x-axis] 
+	00240: SRP1       
+	00241: SRP2       
+	00242: IP         
+	00243: IP         
+	00244: SVTCA[y-axis] 
+	00245: SRP0       
+	00246: MIRP[srp0,md,rd,1] 
+	00247: RTDG       
+	00248: SRP2       
+	00249: IP         
+	00250: MDAP[rd]   
+	00251: RTG        
+	00252: SVTCA[x-axis] 
+	00253: SRP0       
+	00254: MIRP[srp0,nmd,rd,1] 
+	00255: MIRP[srp0,nmd,rd,0] 
+	00256: MDRP[nrp0,nmd,rd,0] 
+	00257: SVTCA[y-axis] 
+	00258: SRP0       
+	00259: MIRP[srp0,md,rd,1] 
+	00260: RTDG       
+	00261: SRP2       
+	00262: IP         
+	00263: MDAP[rd]   
+	00264: RTG        
+	00265: SVTCA[x-axis] 
+	00266: SRP0       
+	00267: MIRP[srp0,nmd,rd,1] 
+	00268: DELTAP1    
+	00269: MIRP[srp0,nmd,rd,0] 
+	00270: MDRP[nrp0,nmd,rd,0] 
+	00271: SRP0       
+	00272: SVTCA[x-axis] 
+	00273: ALIGNRP    
+	00274: IUP[y]     
+	00275: IUP[x]     
+	00276: RS         
+	00277: JROF       
+	00278: NPUSHB      (28):    59    63    23    29    28    38    24    37    59    29 
+	                            61    35     0    63    23    61    35     0    60    27 
+	                            58    35     1    62    25    64    35     0 
+	00308: SVTCA[y-axis] 
+	00309: CALL       
+	00310: CALL       
+	00311: SVTCA[x-axis] 
+	00312: CALL       
+	00313: CALL       
+	00314: CALL       
+	00315: CALL       
+	00316: FLIPRGON   
+	00317: FLIPRGON   
+	00318: SVTCA[x-axis] 
+	00319: DELTAP1    
+	00320: SVTCA[y-axis] 
+	00321: DELTAP2    
+	00322: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short On
+	 11:        XDual                         On
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short On
+	 20:  YDual XDual         Y-Short         On
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:        XDual         Y-Short X-Short On
+	 33:        XDual                         On
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:  YDual               Y-Short X-Short On
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual         Y-Short         On
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short Off
+	 49:  YDual               Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual                 X-Short On
+	 54:  YDual XDual                 X-Short On
+	 55:                              X-Short On
+	 56:  YDual XDual         Y-Short         Off
+	 57:  YDual               Y-Short X-Short Off
+	 58:  YDual                       X-Short On
+	 59:  YDual                       X-Short Off
+	 60:                      Y-Short X-Short Off
+	 61:        XDual         Y-Short         On
+	 62:        XDual         Y-Short         Off
+	 63:        XDual         Y-Short X-Short Off
+	 64:  YDual XDual                 X-Short On
+	 65:  YDual XDual                 X-Short Off
+	 66:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1026,  1075)  ->  Abs (  1026,  1075)
+	  1: Rel (   110,     0)  ->  Abs (  1136,  1075)
+	  2: Rel (    26,     0)  ->  Abs (  1162,  1075)
+	  3: Rel (    19,    -9)  ->  Abs (  1181,  1066)
+	  4: Rel (    14,   -21)  ->  Abs (  1195,  1045)
+	  5: Rel (     0,   -12)  ->  Abs (  1195,  1033)
+	  6: Rel (     0,   -12)  ->  Abs (  1195,  1021)
+	  7: Rel (   -15,   -22)  ->  Abs (  1180,   999)
+	  8: Rel (   -19,    -8)  ->  Abs (  1161,   991)
+	  9: Rel (   -32,     0)  ->  Abs (  1129,   991)
+	 10: Rel (  -103,     0)  ->  Abs (  1026,   991)
+	 11: Rel (     0,  -907)  ->  Abs (  1026,    84)
+	 12: Rel (   112,     0)  ->  Abs (  1138,    84)
+	 13: Rel (    31,     0)  ->  Abs (  1169,    84)
+	 14: Rel (    26,   -23)  ->  Abs (  1195,    61)
+	 15: Rel (     0,   -19)  ->  Abs (  1195,    42)
+	 16: Rel (     0,   -18)  ->  Abs (  1195,    24)
+	 17: Rel (   -26,   -24)  ->  Abs (  1169,     0)
+	 18: Rel (   -31,     0)  ->  Abs (  1138,     0)
+	 19: Rel (  -197,     0)  ->  Abs (   941,     0)
+	 20: Rel (     0,   167)  ->  Abs (   941,   167)
+	 21: Rel (  -146,  -200)  ->  Abs (   795,   -33)
+	 22: Rel (  -225,     0)  ->  Abs (   570,   -33)
+	 23: Rel (  -114,     0)  ->  Abs (   456,   -33)
+	 24: Rel (  -209,   121)  ->  Abs (   247,    88)
+	 25: Rel (  -121,   224)  ->  Abs (   126,   312)
+	 26: Rel (     0,   119)  ->  Abs (   126,   431)
+	 27: Rel (     0,   120)  ->  Abs (   126,   551)
+	 28: Rel (   121,   223)  ->  Abs (   247,   774)
+	 29: Rel (   209,   122)  ->  Abs (   456,   896)
+	 30: Rel (   115,     0)  ->  Abs (   571,   896)
+	 31: Rel (   220,     0)  ->  Abs (   791,   896)
+	 32: Rel (   150,  -200)  ->  Abs (   941,   696)
+	 33: Rel (     0,   295)  ->  Abs (   941,   991)
+	 34: Rel (  -250,     0)  ->  Abs (   691,   991)
+	 35: Rel (   -71,     0)  ->  Abs (   620,   991)
+	 36: Rel (    -8,     2)  ->  Abs (   612,   993)
+	 37: Rel (   -12,     4)  ->  Abs (   600,   997)
+	 38: Rel (   -17,    22)  ->  Abs (   583,  1019)
+	 39: Rel (     0,    14)  ->  Abs (   583,  1033)
+	 40: Rel (     0,    14)  ->  Abs (   583,  1047)
+	 41: Rel (    17,    23)  ->  Abs (   600,  1070)
+	 42: Rel (    11,     3)  ->  Abs (   611,  1073)
+	 43: Rel (     9,     2)  ->  Abs (   620,  1075)
+	 44: Rel (    71,     0)  ->  Abs (   691,  1075)
+	 45: Rel (   250,     0)  ->  Abs (   941,  1075)
+	 46: Rel (     0,    95)  ->  Abs (   941,  1170)
+	 47: Rel (  -112,     0)  ->  Abs (   829,  1170)
+	 48: Rel (   -31,     0)  ->  Abs (   798,  1170)
+	 49: Rel (   -26,    24)  ->  Abs (   772,  1194)
+	 50: Rel (     0,    19)  ->  Abs (   772,  1213)
+	 51: Rel (     0,    18)  ->  Abs (   772,  1231)
+	 52: Rel (    26,    24)  ->  Abs (   798,  1255)
+	 53: Rel (    31,     0)  ->  Abs (   829,  1255)
+	 54: Rel (   197,     0)  ->  Abs (  1026,  1255)
+	 55: Rel (   -85,  -824)  ->  Abs (   941,   431)
+	 56: Rel (     0,   160)  ->  Abs (   941,   591)
+	 57: Rel (  -216,   220)  ->  Abs (   725,   811)
+	 58: Rel (  -149,     0)  ->  Abs (   576,   811)
+	 59: Rel (  -150,     0)  ->  Abs (   426,   811)
+	 60: Rel (  -216,  -220)  ->  Abs (   210,   591)
+	 61: Rel (     0,  -160)  ->  Abs (   210,   431)
+	 62: Rel (     0,  -159)  ->  Abs (   210,   272)
+	 63: Rel (   216,  -221)  ->  Abs (   426,    51)
+	 64: Rel (   150,     0)  ->  Abs (   576,    51)
+	 65: Rel (   149,     0)  ->  Abs (   725,    51)
+	 66: Rel (   216,   221)  ->  Abs (   941,   272)
+
+	Glyph 256: off = 0x000109FE, len = 80
+	  numberOfContours:	1
+	  xMin:			-27
+	  yMin:			1340
+	  xMax:			1256
+	  yMax:			1425
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	29
+	00000: NPUSHB       (9):     7    30     0    11    26    15     4    25    14 
+	00011: PUSHW[1]            472 
+	00014: PUSHB[2]            124    24 
+	00017: CALL       
+	00018: FLIPOFF    
+	00019: SRP0       
+	00020: MIRP[nrp0,nmd,rd,0] 
+	00021: SRP0       
+	00022: MIRP[nrp0,nmd,rd,2] 
+	00023: SVTCA[y-axis] 
+	00024: MDAP[rd]   
+	00025: FLIPON     
+	00026: MIRP[nrp0,md,rd,1] 
+	00027: IUP[y]     
+	00028: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual                               On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1200,  1340)  ->  Abs (  1200,  1340)
+	  1: Rel ( -1171,     0)  ->  Abs (    29,  1340)
+	  2: Rel (   -30,     0)  ->  Abs (    -1,  1340)
+	  3: Rel (   -26,    24)  ->  Abs (   -27,  1364)
+	  4: Rel (     0,    19)  ->  Abs (   -27,  1383)
+	  5: Rel (     0,    18)  ->  Abs (   -27,  1401)
+	  6: Rel (    26,    24)  ->  Abs (    -1,  1425)
+	  7: Rel (    30,     0)  ->  Abs (    29,  1425)
+	  8: Rel (  1171,     0)  ->  Abs (  1200,  1425)
+	  9: Rel (    31,     0)  ->  Abs (  1231,  1425)
+	 10: Rel (    25,   -24)  ->  Abs (  1256,  1401)
+	 11: Rel (     0,   -19)  ->  Abs (  1256,  1382)
+	 12: Rel (     0,   -18)  ->  Abs (  1256,  1364)
+	 13: Rel (   -25,   -24)  ->  Abs (  1231,  1340)
+
+	Glyph 257: off = 0x00010A4E, len = 74
+	  numberOfContours:	1
+	  xMin:			708
+	  yMin:			581
+	  xMax:			913
+	  yMax:			786
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	29
+	00000: PUSHB[4]              9   138     3     0 
+	00005: PUSHW[1]            305 
+	00008: PUSHB[3]              6    25    12 
+	00012: PUSHW[1]            435 
+	00015: PUSHB[2]            170    24 
+	00018: CALL       
+	00019: FLIPOFF    
+	00020: SRP0       
+	00021: MIRP[srp0,nmd,rd,0] 
+	00022: FLIPON     
+	00023: MIRP[nrp0,md,rd,1] 
+	00024: SVTCA[y-axis] 
+	00025: MDAP[rd]   
+	00026: MIRP[nrp0,md,rd,1] 
+	00027: IUP[y]     
+	00028: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   913,   683)  ->  Abs (   913,   683)
+	  1: Rel (     0,   -42)  ->  Abs (   913,   641)
+	  2: Rel (   -60,   -60)  ->  Abs (   853,   581)
+	  3: Rel (   -42,     0)  ->  Abs (   811,   581)
+	  4: Rel (   -43,     0)  ->  Abs (   768,   581)
+	  5: Rel (   -60,    60)  ->  Abs (   708,   641)
+	  6: Rel (     0,    42)  ->  Abs (   708,   683)
+	  7: Rel (     0,    43)  ->  Abs (   708,   726)
+	  8: Rel (    60,    60)  ->  Abs (   768,   786)
+	  9: Rel (    43,     0)  ->  Abs (   811,   786)
+	 10: Rel (    42,     0)  ->  Abs (   853,   786)
+	 11: Rel (    60,   -60)  ->  Abs (   913,   726)
+
+	Glyph 258: off = 0x00010A98, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1563
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	217
+		X WOffset:	1
+		Y WOffset:	265
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              2    47    70   160    70     2    70    26 
+	00009: PUSHW[1]           -400 
+	00012: PUSHB[5]             72    43     2     1    67 
+	00018: PUSHW[3]            651    41   300 
+	00025: SCANCTRL   
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: SHC[rp1,zp0] 
+
+	Glyph 259: off = 0x00010AD2, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			1298
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	217
+		X BOffset:	12
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2   112    78   239    78   255    78     3    78    29 
+	00012: PUSHW[1]           -328 
+	00015: PUSHB[5]             72    43     2     1    75 
+	00021: PUSHW[3]            652    41   300 
+	00028: SCANCTRL   
+	00029: SVTCA[y-axis] 
+	00030: CALL       
+	00031: SVTCA[x-axis] 
+	00032: CALL       
+	00033: DELTAP1    
+	00034: SHC[rp1,zp0] 
+
+	Glyph 260: off = 0x00010B0E, len = 84
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			-261
+	  xMax:			1275
+	  yMax:			1170
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	222
+		X WOffset:	512
+		Y WOffset:	33
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (23):     2     0    71    64    71    80    71     3   160    71 
+	                           208    71   240    71     3     0    71    16    71   144 
+	                            71     3    71 
+	00025: PUSHW[1]            -64 
+	00028: PUSHB[5]              9    33    52    71    26 
+	00034: PUSHW[1]            278 
+	00037: PUSHB[7]             72    43     2     1    51     8    41 
+	00045: PUSHW[1]            300 
+	00048: SCANCTRL   
+	00049: SVTCA[y-axis] 
+	00050: CALL       
+	00051: SVTCA[x-axis] 
+	00052: CALL       
+	00053: CALL       
+	00054: DELTAP1    
+	00055: DELTAP1    
+	00056: DELTAP2    
+	00057: SHC[rp1,zp0] 
+
+	Glyph 261: off = 0x00010B62, len = 82
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-260
+	  xMax:			1197
+	  yMax:			896
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	222
+		X WOffset:	434
+		Y WOffset:	34
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):    70    81    87    80    86    83    86    85     4     2 
+	                           240    79     1    79 
+	00016: PUSHW[1]            -64 
+	00019: PUSHB[4]             18    20    52    79 
+	00024: PUSHW[1]            -64 
+	00027: NPUSHB      (13):     9    14    52    79     0    30    72    43     2     1 
+	                            59     8    41 
+	00042: PUSHW[1]            300 
+	00045: SCANCTRL   
+	00046: SVTCA[y-axis] 
+	00047: CALL       
+	00048: SVTCA[x-axis] 
+	00049: CALL       
+	00050: CALL       
+	00051: CALL       
+	00052: DELTAP1    
+	00053: SHC[rp1,zp0] 
+	00054: SVTCA[y-axis] 
+	00055: DELTAP1    
+
+	Glyph 262: off = 0x00010BB4, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			158
+	  yMin:			0
+	  xMax:			1142
+	  yMax:			1563
+
+	     0: Flags:		0x0226
+		Glyf Index:	39
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	11
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     2     0    55    16    55    32    55    48    55     4 
+	                            55    44 
+	00014: PUSHW[1]            257 
+	00017: PUSHB[5]            104    43     2     1    45 
+	00023: PUSHW[3]            651    41   300 
+	00030: SCANCTRL   
+	00031: SVTCA[y-axis] 
+	00032: CALL       
+	00033: SVTCA[x-axis] 
+	00034: CALL       
+	00035: DELTAP1    
+	00036: SHC[rp1,zp0] 
+
+	Glyph 263: off = 0x00010BF4, len = 424
+	  numberOfContours:	3
+	  xMin:			126
+	  yMin:			-33
+	  xMax:			1229
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  24
+	  1:  36
+	  2:  54
+
+	  Length of Instructions:	270
+	00000: NPUSHB      (20):   122    11   122    15   137    11   137    15   214    29 
+	                             5   138    54     1    53    64     9    16    52    47 
+	00022: PUSHW[1]            -64 
+	00025: NPUSHB      (18):     9    16    52   170    26   170    30     2   143     8 
+	                           134    17   129    18     3    26    16    36 
+	00045: PUSHW[3]            -23    32   -16 
+	00052: PUSHB[3]             30    16    18 
+	00056: PUSHW[1]            -16 
+	00059: PUSHB[4]              8    16     6     2 
+	00064: PUSHW[1]            686 
+	00067: NPUSHB      (11):     4    47     1     4     4     2     1    34     6    24 
+	                            20 
+	00080: PUSHW[1]            686 
+	00083: NPUSHB      (26):    22    47    19    22    22    20    19    34    24     8 
+	                            18    28    34   128    49     1    49    49   143    38 
+	                             1    38    38    43     0     8 
+	00111: PUSHW[1]            302 
+	00114: PUSHB[4]             34    33    10    18 
+	00119: PUSHW[1]            302 
+	00122: NPUSHB      (17):    28    33    16    24     0     7    10    10    11    16 
+	                             7     0     0    37    46    40    51 
+	00141: PUSHW[1]            -64 
+	00144: NPUSHB      (25):     9    16    52    51    51    40    40    46     0     1 
+	                            19    25     7    32    64     1     1     1     1    31 
+	                            33   128    13     1    13 
+	00171: PUSHW[5]            396    55    42   383    24 
+	00182: CALL       
+	00183: SRP0       
+	00184: MIRP[srp0,nmd,rd,2] 
+	00185: DELTAP2    
+	00186: MIRP[nrp0,md,rd,1] 
+	00187: SHP[rp1,zp0] 
+	00188: MDAP[rd]   
+	00189: DELTAP2    
+	00190: MIRP[srp0,md,rd,1] 
+	00191: ALIGNRP    
+	00192: ALIGNRP    
+	00193: SRP0       
+	00194: ALIGNRP    
+	00195: MDAP[rd]   
+	00196: SHP[rp1,zp0] 
+	00197: MDAP[rd]   
+	00198: SHP[rp1,zp0] 
+	00199: MDAP[rd]   
+	00200: CALL       
+	00201: SRP1       
+	00202: SRP2       
+	00203: IP         
+	00204: SVTCA[y-axis] 
+	00205: MIAP[rd+ci] 
+	00206: MIAP[rd+ci] 
+	00207: MIAP[rd+ci] 
+	00208: MIAP[rd+ci] 
+	00209: SRP0       
+	00210: ALIGNRP    
+	00211: SRP0       
+	00212: MIRP[nrp0,md,rd,1] 
+	00213: MIRP[nrp0,md,rd,1] 
+	00214: SRP0       
+	00215: MIRP[nrp0,md,rd,1] 
+	00216: MIRP[nrp0,md,rd,1] 
+	00217: MIAP[rd+ci] 
+	00218: SHP[rp1,zp0] 
+	00219: MDAP[rd]   
+	00220: DELTAP2    
+	00221: SHP[rp1,zp0] 
+	00222: MDAP[rd]   
+	00223: DELTAP1    
+	00224: SRP1       
+	00225: SRP2       
+	00226: IP         
+	00227: IP         
+	00228: SRP0       
+	00229: MIRP[srp0,md,rd,1] 
+	00230: RTDG       
+	00231: SRP2       
+	00232: IP         
+	00233: MDAP[rd]   
+	00234: RTG        
+	00235: SVTCA[x-axis] 
+	00236: SRP0       
+	00237: MIRP[srp0,nmd,rd,1] 
+	00238: MIRP[srp0,nmd,rd,0] 
+	00239: MDRP[nrp0,nmd,rd,0] 
+	00240: SVTCA[y-axis] 
+	00241: SRP0       
+	00242: MIRP[srp0,md,rd,1] 
+	00243: RTDG       
+	00244: SRP2       
+	00245: IP         
+	00246: MDAP[rd]   
+	00247: RTG        
+	00248: SVTCA[x-axis] 
+	00249: SRP0       
+	00250: MIRP[srp0,nmd,rd,1] 
+	00251: MIRP[srp0,nmd,rd,0] 
+	00252: MDRP[nrp0,nmd,rd,0] 
+	00253: SVTCA[y-axis] 
+	00254: SHPIX      
+	00255: SHPIX      
+	00256: SHPIX      
+	00257: SHPIX      
+	00258: SHPIX      
+	00259: SHPIX      
+	00260: IUP[y]     
+	00261: IUP[x]     
+	00262: SVTCA[y-axis] 
+	00263: DELTAP2    
+	00264: DELTAP1    
+	00265: CALL       
+	00266: CALL       
+	00267: SVTCA[x-axis] 
+	00268: DELTAP2    
+	00269: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short On
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:                              X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:        XDual                 X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short On
+	 19:                              X-Short On
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual                 X-Short On
+	 25:        XDual                 X-Short On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:                      Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:        XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:                                      On
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual         Y-Short         Off
+	 48:                      Y-Short X-Short Off
+	 49:  YDual                       X-Short On
+	 50:  YDual                       X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   881,  1255)  ->  Abs (   881,  1255)
+	  1: Rel (     0, -1171)  ->  Abs (   881,    84)
+	  2: Rel (   113,     0)  ->  Abs (   994,    84)
+	  3: Rel (    56,     0)  ->  Abs (  1050,    84)
+	  4: Rel (     0,   -42)  ->  Abs (  1050,    42)
+	  5: Rel (     0,   -42)  ->  Abs (  1050,     0)
+	  6: Rel (   -56,     0)  ->  Abs (   994,     0)
+	  7: Rel (  -198,     0)  ->  Abs (   796,     0)
+	  8: Rel (     1,   155)  ->  Abs (   797,   155)
+	  9: Rel (  -118,  -188)  ->  Abs (   679,   -33)
+	 10: Rel (  -181,     0)  ->  Abs (   498,   -33)
+	 11: Rel (  -156,     0)  ->  Abs (   342,   -33)
+	 12: Rel (  -216,   276)  ->  Abs (   126,   243)
+	 13: Rel (     0,   188)  ->  Abs (   126,   431)
+	 14: Rel (     0,   194)  ->  Abs (   126,   625)
+	 15: Rel (   221,   271)  ->  Abs (   347,   896)
+	 16: Rel (   152,     0)  ->  Abs (   499,   896)
+	 17: Rel (   176,     0)  ->  Abs (   675,   896)
+	 18: Rel (   122,  -182)  ->  Abs (   797,   714)
+	 19: Rel (    -1,   456)  ->  Abs (   796,  1170)
+	 20: Rel (  -112,     0)  ->  Abs (   684,  1170)
+	 21: Rel (   -56,     0)  ->  Abs (   628,  1170)
+	 22: Rel (     0,    42)  ->  Abs (   628,  1212)
+	 23: Rel (     0,    43)  ->  Abs (   628,  1255)
+	 24: Rel (    56,     0)  ->  Abs (   684,  1255)
+	 25: Rel (   112,  -824)  ->  Abs (   796,   431)
+	 26: Rel (     0,   158)  ->  Abs (   796,   589)
+	 27: Rel (  -172,   222)  ->  Abs (   624,   811)
+	 28: Rel (  -121,     0)  ->  Abs (   503,   811)
+	 29: Rel (  -121,     0)  ->  Abs (   382,   811)
+	 30: Rel (  -172,  -223)  ->  Abs (   210,   588)
+	 31: Rel (     0,  -157)  ->  Abs (   210,   431)
+	 32: Rel (     0,  -154)  ->  Abs (   210,   277)
+	 33: Rel (   170,  -226)  ->  Abs (   380,    51)
+	 34: Rel (   123,     0)  ->  Abs (   503,    51)
+	 35: Rel (   120,     0)  ->  Abs (   623,    51)
+	 36: Rel (   173,   222)  ->  Abs (   796,   273)
+	 37: Rel (   347,   823)  ->  Abs (  1143,  1096)
+	 38: Rel (   -24,     0)  ->  Abs (  1119,  1096)
+	 39: Rel (   -79,     0)  ->  Abs (  1040,  1096)
+	 40: Rel (     0,    77)  ->  Abs (  1040,  1173)
+	 41: Rel (     0,    33)  ->  Abs (  1040,  1206)
+	 42: Rel (    42,    49)  ->  Abs (  1082,  1255)
+	 43: Rel (    37,     0)  ->  Abs (  1119,  1255)
+	 44: Rel (    30,     0)  ->  Abs (  1149,  1255)
+	 45: Rel (    80,     0)  ->  Abs (  1229,  1255)
+	 46: Rel (     0,   -85)  ->  Abs (  1229,  1170)
+	 47: Rel (     0,   -75)  ->  Abs (  1229,  1095)
+	 48: Rel (  -122,  -173)  ->  Abs (  1107,   922)
+	 49: Rel (   -26,     0)  ->  Abs (  1081,   922)
+	 50: Rel (   -36,     0)  ->  Abs (  1045,   922)
+	 51: Rel (     0,    30)  ->  Abs (  1045,   952)
+	 52: Rel (     0,    16)  ->  Abs (  1045,   968)
+	 53: Rel (    30,    31)  ->  Abs (  1075,   999)
+	 54: Rel (    59,    62)  ->  Abs (  1134,  1061)
+
+	Glyph 264: off = 0x00010D9C, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-3
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1170
+
+	     0: Flags:		0x0206
+		Glyf Index:	231
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	Glyph 265: off = 0x00010DAC, len = 84
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			-267
+	  xMax:			1166
+	  yMax:			1170
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	222
+		X WOffset:	403
+		Y WOffset:	27
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (34):     1   240    78     1    80    78   160    78   176    78 
+	                             3     0    78     1     0    78    16    78    32    78 
+	                            64    78   112    78     5     0    78    32    78    48 
+	                            78     3    78    36 
+	00036: PUSHW[1]            472 
+	00039: PUSHB[7]             72    43     1     1    58     8    41 
+	00047: SVTCA[y-axis] 
+	00048: CALL       
+	00049: SVTCA[x-axis] 
+	00050: CALL       
+	00051: DELTAP1    
+	00052: DELTAP1    
+	00053: DELTAP2    
+	00054: DELTAP1    
+	00055: DELTAP1    
+	00056: SHC[rp1,zp0] 
+
+	Glyph 266: off = 0x00010E00, len = 132
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-291
+	  xMax:			1071
+	  yMax:			896
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	222
+		X BOffset:	33
+		Y BOffset:	3
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (96):     2     1    57    18    60    72    39    40    58    56 
+	                            58    72    58    88    58   104    58   153    56   165 
+	                            52   168    56   181    52   187    56   197    52   201 
+	                            56   213    51   214    52   218    56   229    52   234 
+	                            56   247    52    18     7    52    21    52    26    58 
+	                            37    52    43    58    51    52    59    58    69    52 
+	                            74    58    84    52    91    58   103    52   106    58 
+	                           117    52   124    58   134    52   137    58   149    52 
+	                           153    58   164    52   171    58   181    52   188    58 
+	                            23     2     1    60     8    41 
+	00098: PUSHW[1]            300 
+	00101: SCANCTRL   
+	00102: SVTCA[y-axis] 
+	00103: CALL       
+	00104: SVTCA[x-axis] 
+	00105: DELTAP2    
+	00106: DELTAP1    
+	00107: CALL       
+
+	Glyph 267: off = 0x00010E84, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1563
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	25
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     1    16    64   112    64     2     0    64    32    64 
+	                           224    64     3    64    36 
+	00017: PUSHW[1]            269 
+	00020: PUSHB[5]            104    43     1     1    54 
+	00026: PUSHW[2]            651    41 
+	00031: SVTCA[y-axis] 
+	00032: CALL       
+	00033: SVTCA[x-axis] 
+	00034: CALL       
+	00035: DELTAP1    
+	00036: DELTAP1    
+	00037: SHC[rp1,zp0] 
+
+	Glyph 268: off = 0x00010EC4, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1071
+	  yMax:			1299
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	223
+		X BOffset:	33
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     1    43    29     0   104    39     2     1    33 
+	00012: PUSHW[3]            652    41   300 
+	00019: SCANCTRL   
+	00020: SVTCA[y-axis] 
+	00021: CALL       
+	00022: SVTCA[x-axis] 
+	00023: CALL       
+
+	Glyph 269: off = 0x00010EF4, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			0
+	  xMax:			1112
+	  yMax:			1593
+
+	     0: Flags:		0x0226
+		Glyf Index:	47
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	6
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1    40     0 
+	00005: PUSHW[1]            -20 
+	00008: PUSHB[5]             72    39     1     1    37 
+	00014: PUSHW[2]            651    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+
+	Glyph 270: off = 0x00010F26, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			187
+	  yMin:			0
+	  xMax:			1044
+	  yMax:			1637
+
+	     0: Flags:		0x0226
+		Glyf Index:	79
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	2
+		Y WOffset:	308
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1    31     0 
+	00005: PUSHW[1]           -213 
+	00008: PUSHB[5]             72    39     1     1    28 
+	00014: PUSHW[2]            653    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+
+	Glyph 271: off = 0x00010F58, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			0
+	  xMax:			1112
+	  yMax:			1170
+
+	     0: Flags:		0x0226
+		Glyf Index:	47
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	493
+		X WOffset:	323
+		Y WOffset:	1239
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              1    79    37   127    37     2    37     0 
+	00009: PUSHW[1]            374 
+	00012: PUSHB[7]             72    43     1     1    40     2    41 
+	00020: PUSHW[1]            280 
+	00023: SCANCTRL   
+	00024: SVTCA[y-axis] 
+	00025: CALL       
+	00026: SVTCA[x-axis] 
+	00027: CALL       
+	00028: DELTAP1    
+	00029: SHC[rp1,zp0] 
+
+	Glyph 272: off = 0x00010F90, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			187
+	  yMin:			0
+	  xMax:			1044
+	  yMax:			1255
+
+	     0: Flags:		0x0226
+		Glyf Index:	79
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	493
+		X WOffset:	273
+		Y WOffset:	1364
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (26):     1   111    28   127    28     2    79    28    95    28 
+	                             2    47    28    63    28     2    28     1   136    72 
+	                            43     1     1    31     0    41 
+	00028: PUSHW[1]            280 
+	00031: SCANCTRL   
+	00032: SVTCA[y-axis] 
+	00033: CALL       
+	00034: SVTCA[x-axis] 
+	00035: CALL       
+	00036: DELTAP1    
+	00037: DELTAP1    
+	00038: DELTAP1    
+	00039: SHC[rp1,zp0] 
+
+	Glyph 273: off = 0x00010FD2, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			0
+	  xMax:			1112
+	  yMax:			1170
+
+	     0: Flags:		0x0226
+		Glyf Index:	47
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	257
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1    47    37    95    37   111    37     3    37    11 
+	00012: PUSHW[1]            601 
+	00015: NPUSHB       (9):    72    43     1     1    40     1   240    72    39 
+	00026: SVTCA[x-axis] 
+	00027: CALL       
+	00028: SVTCA[y-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: SHC[rp1,zp0] 
+
+	Glyph 274: off = 0x0001100A, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			187
+	  yMin:			0
+	  xMax:			1044
+	  yMax:			1255
+
+	     0: Flags:		0x0026
+		Glyf Index:	79
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	257
+		X BOffset:	47
+		Y BOffset:	-56
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     1    15    31    31    31     2    31    64    25    29 
+	                            52    31     0    99    72    43     1     1    28 
+	00021: PUSHW[2]            654    41 
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: CALL       
+	00031: DELTAP1    
+	00032: SHC[rp1,zp0] 
+
+	Glyph 275: off = 0x00011044, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			46
+	  yMin:			0
+	  xMax:			1153
+	  yMax:			1593
+
+	     0: Flags:		0x0226
+		Glyf Index:	49
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	34
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1     0    51     1    51    27   155    72    43     1 
+	                             1    48 
+	00014: PUSHW[2]            651    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: DELTAP1    
+	00024: SHC[rp1,zp0] 
+
+	Glyph 276: off = 0x00011078, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			108
+	  yMin:			0
+	  xMax:			1111
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	81
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	141
+		X BOffset:	44
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              1     0    63    16    63     2    63     4 
+	00009: PUSHW[1]           -175 
+	00012: PUSHB[5]             72    43     1     1    60 
+	00018: PUSHW[2]            652    41 
+	00023: SVTCA[y-axis] 
+	00024: CALL       
+	00025: SVTCA[x-axis] 
+	00026: CALL       
+	00027: DELTAP1    
+	00028: SHC[rp1,zp0] 
+
+	Glyph 277: off = 0x000110AE, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			46
+	  yMin:			0
+	  xMax:			1153
+	  yMax:			1563
+
+	     0: Flags:		0x0226
+		Glyf Index:	49
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	9
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     1    32    55    48    55    64    55    80    55   144 
+	                            55   160    55     6    55    27 
+	00018: PUSHW[1]            302 
+	00021: PUSHB[5]            104    43     1     1    45 
+	00027: PUSHW[3]            651    41   300 
+	00034: SCANCTRL   
+	00035: SVTCA[y-axis] 
+	00036: CALL       
+	00037: SVTCA[x-axis] 
+	00038: CALL       
+	00039: DELTAP1    
+	00040: SHC[rp1,zp0] 
+
+	Glyph 278: off = 0x000110F2, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			108
+	  yMin:			0
+	  xMax:			1111
+	  yMax:			1299
+
+	     0: Flags:		0x0226
+		Glyf Index:	81
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	223
+		X BOffset:	19
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              1     0    67    16    67     2    67     4 
+	00009: PUSHW[1]            -60 
+	00012: PUSHB[8]            104    43    39    41     1     1     1    57 
+	00021: PUSHW[2]            652    41 
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: DELTAP1    
+	00030: CALL       
+	00031: DELTAP1    
+	00032: SHC[rp1,zp0] 
+
+	Glyph 279: off = 0x0001112C, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-33
+	  xMax:			1024
+	  yMax:			1592
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	221
+		X WOffset:	-10
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     3     2     0    32    56    10    10    64     2     3 
+	                             2    45 
+	00014: PUSHW[2]            651    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: SHC[rp1,zp0] 
+	00024: SHC[rp1,zp0] 
+
+	Glyph 280: off = 0x00011160, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1084
+	  yMax:			1328
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	221
+		X BOffset:	108
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              3     2     0    30     1    30     9 
+	00008: PUSHW[1]           -192 
+	00011: PUSHB[6]             72    43     2     3     2    28 
+	00018: PUSHW[3]            652    41   300 
+	00025: SCANCTRL   
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: SHC[rp1,zp0] 
+	00032: SHC[rp1,zp0] 
+
+	Glyph 281: off = 0x0001119A, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1214
+	  yMax:			1593
+
+	     0: Flags:		0x0226
+		Glyf Index:	53
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	38
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     1    62    55    79    72    39     2     1    59 
+	00012: PUSHW[3]            651    41   300 
+	00019: SCANCTRL   
+	00020: SVTCA[y-axis] 
+	00021: CALL       
+	00022: SVTCA[x-axis] 
+	00023: CALL       
+
+	Glyph 282: off = 0x000111CC, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			171
+	  yMin:			0
+	  xMax:			1114
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	85
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	141
+		X BOffset:	30
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1    50     4 
+	00005: PUSHW[1]           -337 
+	00008: PUSHB[5]             72    39     1     1    48 
+	00014: PUSHW[2]            652    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+
+	Glyph 283: off = 0x000111FC, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1214
+	  yMax:			1563
+
+	     0: Flags:		0x0226
+		Glyf Index:	53
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	-24
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (23):     2     0    66    16    66    32    66   128    66   160 
+	                            66     5     0    66     1    66    55   250   104    43 
+	                             2     1    56 
+	00025: PUSHW[3]            651    41   300 
+	00032: SCANCTRL   
+	00033: SVTCA[y-axis] 
+	00034: CALL       
+	00035: SVTCA[x-axis] 
+	00036: CALL       
+	00037: DELTAP2    
+	00038: DELTAP1    
+	00039: SHC[rp1,zp0] 
+
+	Glyph 284: off = 0x0001123E, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			171
+	  yMin:			0
+	  xMax:			1114
+	  yMax:			1299
+
+	     0: Flags:		0x0226
+		Glyf Index:	85
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	223
+		X BOffset:	29
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1    54     4 
+	00005: PUSHW[1]           -250 
+	00008: PUSHB[5]            104    39     1     1    44 
+	00014: PUSHW[2]            652    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+
+	Glyph 285: off = 0x0001126E, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			185
+	  yMin:			-33
+	  xMax:			1044
+	  yMax:			1593
+
+	     0: Flags:		0x0226
+		Glyf Index:	54
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	73
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1    75    67 
+	00005: PUSHW[1]            -96 
+	00008: PUSHB[5]             72    39     1     1    72 
+	00014: PUSHW[3]            651    41   300 
+	00021: SCANCTRL   
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+
+	Glyph 286: off = 0x000112A2, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			207
+	  yMin:			-33
+	  xMax:			1022
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	86
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	141
+		X BOffset:	61
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1    75    67 
+	00005: PUSHW[1]           -105 
+	00008: PUSHB[5]             72    39     1     1    72 
+	00014: PUSHW[3]            652    41   300 
+	00021: SCANCTRL   
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+
+	Glyph 287: off = 0x000112D4, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			143
+	  yMin:			-441
+	  xMax:			1084
+	  yMax:			1170
+
+	     0: Flags:		0x0236
+		Glyf Index:	55
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	493
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     1    32    48    48    48     2     0    48    16    48 
+	                             2     0    48    48    16     1    64 
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: DELTAP1    
+	00022: DELTAP1    
+	00023: SHC[rp1,zp0] 
+
+	Glyph 288: off = 0x00011304, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			146
+	  yMin:			-441
+	  xMax:			1083
+	  yMax:			1170
+
+	     0: Flags:		0x0236
+		Glyf Index:	87
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	493
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     1    16    54    32    54   144    54   160    54     4 
+	                             0    54    54    16     1    64 
+	00018: SVTCA[x-axis] 
+	00019: CALL       
+	00020: DELTAP1    
+	00021: SHC[rp1,zp0] 
+
+	Glyph 289: off = 0x00011332, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			143
+	  yMin:			0
+	  xMax:			1084
+	  yMax:			1563
+
+	     0: Flags:		0x0226
+		Glyf Index:	55
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	223
+		X WOffset:	1
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1    46     0 
+	00005: PUSHW[1]            -42 
+	00008: PUSHB[5]            104    39     1     1    36 
+	00014: PUSHW[2]            651    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+
+	Glyph 290: off = 0x00011364, len = 420
+	  numberOfContours:	2
+	  xMin:			146
+	  yMin:			-33
+	  xMax:			1083
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  17
+	  1:  53
+
+	  Length of Instructions:	273
+	00000: PUSHB[6]              7    64     9    15    52     1 
+	00007: PUSHW[1]            -64 
+	00010: NPUSHB      (62):     9    15    52    79    12   251    40     2    13    40 
+	                            26    40   137     8     3   116     1   119     7   146 
+	                             1   151     7   211    26   228    26     6   164    26 
+	                           181    26   194    26     3   166    30   198    27   214 
+	                            27     3   118    30   134    30   149    30     3   128 
+	                             3     1     3     3    10    10    15     0     9     0 
+	                            12     5 
+	00074: PUSHW[1]            -64 
+	00077: NPUSHB      (23):     9    15    52     5     5    12     0     0    47    12 
+	                            63    12    79    12     3    12    12    21    25    23 
+	                             8    19    23 
+	00102: PUSHW[3]            686    21   370 
+	00109: NPUSHB      (28):    24    21    21    23    24    34    19    51     2    43 
+	                            59    47    47    23    59    19    19    18     6    33 
+	                            33    28    33    38    11    35   136    21 
+	00139: PUSHW[1]            425 
+	00142: NPUSHB      (24):    53    53    24    25    32    49    45   198   112    41 
+	                           191    41     2    32    41    48    41     2     0    41 
+	                            16    41     2    41 
+	00168: PUSHW[1]            741 
+	00171: PUSHB[4]             54    42   173    24 
+	00176: CALL       
+	00177: SRP0       
+	00178: MIRP[srp0,nmd,rd,2] 
+	00179: DELTAP1    
+	00180: DELTAP1    
+	00181: DELTAP1    
+	00182: MIRP[nrp0,nmd,rd,0] 
+	00183: ALIGNRP    
+	00184: MIRP[srp0,md,rd,1] 
+	00185: ALIGNRP    
+	00186: ALIGNRP    
+	00187: SRP0       
+	00188: MIRP[srp0,nmd,rd,0] 
+	00189: MIRP[nrp0,nmd,rd,0] 
+	00190: SVTCA[y-axis] 
+	00191: MIAP[rd+ci] 
+	00192: MIRP[srp0,md,rd,1] 
+	00193: SHP[rp2,zp1] 
+	00194: MDAP[rd]   
+	00195: MIAP[rd+ci] 
+	00196: ALIGNRP    
+	00197: SRP0       
+	00198: MIRP[nrp0,md,rd,1] 
+	00199: ALIGNRP    
+	00200: SRP0       
+	00201: MIRP[nrp0,md,rd,1] 
+	00202: MIAP[rd+ci] 
+	00203: SRP0       
+	00204: MIRP[srp0,md,rd,1] 
+	00205: RTDG       
+	00206: SRP2       
+	00207: IP         
+	00208: MDAP[rd]   
+	00209: RTG        
+	00210: SVTCA[x-axis] 
+	00211: SRP0       
+	00212: MIRP[srp0,nmd,rd,1] 
+	00213: MIRP[srp0,nmd,rd,0] 
+	00214: MDRP[nrp0,nmd,rd,0] 
+	00215: RS         
+	00216: JROF       
+	00217: NPUSHB      (14):    39    40    26    27    27    39    25    31     0    26 
+	                            40    28    31     0 
+	00233: SVTCA[y-axis] 
+	00234: CALL       
+	00235: SVTCA[x-axis] 
+	00236: CALL       
+	00237: FLIPRGON   
+	00238: FLIPRGON   
+	00239: SRP1       
+	00240: SRP2       
+	00241: IP         
+	00242: MDAP[rd]   
+	00243: DELTAP1    
+	00244: SHP[rp1,zp0] 
+	00245: MDAP[rd]   
+	00246: SRP1       
+	00247: SHP[rp1,zp0] 
+	00248: MDAP[rd]   
+	00249: CALL       
+	00250: SRP1       
+	00251: SRP2       
+	00252: IP         
+	00253: SVTCA[y-axis] 
+	00254: MIAP[rd+ci] 
+	00255: SHP[rp1,zp0] 
+	00256: MDAP[rd]   
+	00257: SHP[rp1,zp0] 
+	00258: MDAP[rd]   
+	00259: DELTAP1    
+	00260: IUP[y]     
+	00261: IUP[x]     
+	00262: SVTCA[y-axis] 
+	00263: DELTAP2    
+	00264: DELTAP2    
+	00265: DELTAP1    
+	00266: DELTAP1    
+	00267: SVTCA[x-axis] 
+	00268: DELTAP2    
+	00269: DELTAP1    
+	00270: SVTCA[y-axis] 
+	00271: CALL       
+	00272: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:                                      On
+	 19:  YDual                               On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                               On
+	 25:        XDual                         On
+	 26:        XDual         Y-Short         Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:                      Y-Short         Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short Off
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual XDual         Y-Short         On
+	 42:        XDual                         On
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual         Y-Short         On
+	 50:  YDual XDual         Y-Short         Off
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short Off
+	 53:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1080,  1180)  ->  Abs (  1080,  1180)
+	  1: Rel (     0,   -76)  ->  Abs (  1080,  1104)
+	  2: Rel (  -128,  -162)  ->  Abs (   952,   942)
+	  3: Rel (   -30,     0)  ->  Abs (   922,   942)
+	  4: Rel (   -37,     0)  ->  Abs (   885,   942)
+	  5: Rel (     0,    28)  ->  Abs (   885,   970)
+	  6: Rel (     0,    15)  ->  Abs (   885,   985)
+	  7: Rel (    32,    29)  ->  Abs (   917,  1014)
+	  8: Rel (    62,    58)  ->  Abs (   979,  1072)
+	  9: Rel (    10,    33)  ->  Abs (   989,  1105)
+	 10: Rel (   -25,     0)  ->  Abs (   964,  1105)
+	 11: Rel (   -84,     0)  ->  Abs (   880,  1105)
+	 12: Rel (     0,    73)  ->  Abs (   880,  1178)
+	 13: Rel (     0,    32)  ->  Abs (   880,  1210)
+	 14: Rel (    46,    45)  ->  Abs (   926,  1255)
+	 15: Rel (    38,     0)  ->  Abs (   964,  1255)
+	 16: Rel (    32,     0)  ->  Abs (   996,  1255)
+	 17: Rel (    74,     0)  ->  Abs (  1070,  1255)
+	 18: Rel (  -628,  -389)  ->  Abs (   442,   866)
+	 19: Rel (   456,     0)  ->  Abs (   898,   866)
+	 20: Rel (    56,     0)  ->  Abs (   954,   866)
+	 21: Rel (     0,   -43)  ->  Abs (   954,   823)
+	 22: Rel (     0,   -42)  ->  Abs (   954,   781)
+	 23: Rel (   -56,     0)  ->  Abs (   898,   781)
+	 24: Rel (  -456,     0)  ->  Abs (   442,   781)
+	 25: Rel (     0,  -559)  ->  Abs (   442,   222)
+	 26: Rel (     0,   -87)  ->  Abs (   442,   135)
+	 27: Rel (   133,   -84)  ->  Abs (   575,    51)
+	 28: Rel (    92,     0)  ->  Abs (   667,    51)
+	 29: Rel (    88,     0)  ->  Abs (   755,    51)
+	 30: Rel (   199,    50)  ->  Abs (   954,   101)
+	 31: Rel (    56,    33)  ->  Abs (  1010,   134)
+	 32: Rel (    20,    13)  ->  Abs (  1030,   147)
+	 33: Rel (    13,     0)  ->  Abs (  1043,   147)
+	 34: Rel (    40,     0)  ->  Abs (  1083,   147)
+	 35: Rel (     0,   -42)  ->  Abs (  1083,   105)
+	 36: Rel (     0,   -40)  ->  Abs (  1083,    65)
+	 37: Rel (  -269,   -98)  ->  Abs (   814,   -33)
+	 38: Rel (  -136,     0)  ->  Abs (   678,   -33)
+	 39: Rel (  -147,     0)  ->  Abs (   531,   -33)
+	 40: Rel (  -174,   138)  ->  Abs (   357,   105)
+	 41: Rel (     0,   117)  ->  Abs (   357,   222)
+	 42: Rel (     0,   559)  ->  Abs (   357,   781)
+	 43: Rel (  -155,     0)  ->  Abs (   202,   781)
+	 44: Rel (   -56,     0)  ->  Abs (   146,   781)
+	 45: Rel (     0,    42)  ->  Abs (   146,   823)
+	 46: Rel (     0,    43)  ->  Abs (   146,   866)
+	 47: Rel (    56,     0)  ->  Abs (   202,   866)
+	 48: Rel (   155,     0)  ->  Abs (   357,   866)
+	 49: Rel (     0,   248)  ->  Abs (   357,  1114)
+	 50: Rel (     0,    56)  ->  Abs (   357,  1170)
+	 51: Rel (    42,     0)  ->  Abs (   399,  1170)
+	 52: Rel (    43,     0)  ->  Abs (   442,  1170)
+	 53: Rel (     0,   -56)  ->  Abs (   442,  1114)
+
+	Glyph 291: off = 0x00011508, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1148
+	  yMax:			1628
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	219
+		X WOffset:	2
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     2     1    32    55    80    55    96    55   112    55 
+	                             4    55    29 
+	00015: PUSHW[1]           -179 
+	00018: PUSHB[6]             72    43     1     2     2    52 
+	00025: PUSHW[3]            651    41   300 
+	00032: SCANCTRL   
+	00033: SVTCA[y-axis] 
+	00034: CALL       
+	00035: SVTCA[x-axis] 
+	00036: CALL       
+	00037: DELTAP1    
+	00038: SHC[rp1,zp0] 
+	00039: SHC[rp1,zp0] 
+
+	Glyph 292: off = 0x0001154A, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1113
+	  yMax:			1364
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	219
+		X BOffset:	-12
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2     1    96    46     1    46    20 
+	00008: PUSHW[1]           -105 
+	00011: PUSHB[6]             72    43     1     2     2    43 
+	00018: PUSHW[3]            652    41   292 
+	00025: SCANCTRL   
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: SHC[rp1,zp0] 
+	00032: SHC[rp1,zp0] 
+
+	Glyph 293: off = 0x00011584, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1148
+	  yMax:			1592
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	221
+		X WOffset:	97
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1     2     2    71    29   101    72    39     1     2 
+	                             2    68 
+	00014: PUSHW[3]            651    41   300 
+	00021: SCANCTRL   
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+
+	Glyph 294: off = 0x000115B8, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1113
+	  yMax:			1328
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	221
+		X BOffset:	72
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2     1     0    46     1    46    20 
+	00008: PUSHW[1]           -165 
+	00011: PUSHB[6]             72    43     1     2     2    44 
+	00018: PUSHW[3]            652    41   292 
+	00025: SCANCTRL   
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: SHC[rp1,zp0] 
+	00032: SHC[rp1,zp0] 
+
+	Glyph 295: off = 0x000115F2, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			213
+	  yMin:			0
+	  xMax:			1022
+	  yMax:			1593
+
+	     0: Flags:		0x0226
+		Glyf Index:	61
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	76
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     1    32    17   225    72    39     1     1    29 
+	00012: PUSHW[2]            651    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+
+	Glyph 296: off = 0x00011622, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			237
+	  yMin:			0
+	  xMax:			1006
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	93
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	141
+		X BOffset:	80
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              1    47    30    80    30     2    30    23 
+	00009: PUSHW[1]            267 
+	00012: PUSHB[5]             72    43     1     1    28 
+	00018: PUSHW[3]            652    41   292 
+	00025: SCANCTRL   
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: SHC[rp1,zp0] 
+
+	Glyph 297: off = 0x0001165A, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			213
+	  yMin:			0
+	  xMax:			1022
+	  yMax:			1514
+
+	     0: Flags:		0x0226
+		Glyf Index:	61
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	218
+		X WOffset:	3
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1    96    32     1    32    17   221    72    43     1 
+	                             1    29 
+	00014: PUSHW[2]            651    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: DELTAP1    
+	00024: SHC[rp1,zp0] 
+
+	Glyph 298: off = 0x0001168E, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			237
+	  yMin:			0
+	  xMax:			1006
+	  yMax:			1250
+
+	     0: Flags:		0x0226
+		Glyf Index:	93
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	218
+		X BOffset:	9
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              1    47    30     1    30    23 
+	00007: PUSHW[1]            265 
+	00010: PUSHB[5]             72    43     1     1    27 
+	00016: PUSHW[3]            652    41   292 
+	00023: SCANCTRL   
+	00024: SVTCA[y-axis] 
+	00025: CALL       
+	00026: SVTCA[x-axis] 
+	00027: CALL       
+	00028: DELTAP1    
+	00029: SHC[rp1,zp0] 
+
+	Glyph 299: off = 0x000116C4, len = 250
+	  numberOfContours:	1
+	  xMin:			127
+	  yMin:			0
+	  xMax:			1111
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	175
+	00000: PUSHB[2]             19    23 
+	00003: PUSHW[1]            676 
+	00006: NPUSHB      (11):    21   219    24    21    21    23    24    29    19    17 
+	                            13 
+	00019: PUSHW[1]            676 
+	00022: NPUSHB      (11):    15    53    12    15    15    13    12    29    17     5 
+	                             1 
+	00035: PUSHW[1]            676 
+	00038: NPUSHB      (11):     3    53     0     3     3     1     0    29     5     6 
+	                            10 
+	00051: PUSHW[1]            676 
+	00054: NPUSHB      (43):     8    53    11     8     8    10    11    29     6    13 
+	                            12    25    25    24    38    18    18    17     2     5 
+	                             6     8    24    23    38    18   160    19     1    19 
+	                            19    25     0    12   160     0     1     0    30    11 
+	                           165   121    24 
+	00099: CALL       
+	00100: MDAP[rd]   
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: DELTAP1    
+	00103: ALIGNRP    
+	00104: SRP0       
+	00105: ALIGNRP    
+	00106: SHP[rp1,zp0] 
+	00107: MDAP[rd]   
+	00108: DELTAP1    
+	00109: ALIGNRP    
+	00110: MIRP[srp0,md,rd,1] 
+	00111: ALIGNRP    
+	00112: SVTCA[y-axis] 
+	00113: MIAP[rd+ci] 
+	00114: ALIGNRP    
+	00115: MIAP[rd+ci] 
+	00116: ALIGNRP    
+	00117: SRP0       
+	00118: MIRP[srp0,md,rd,1] 
+	00119: ALIGNRP    
+	00120: SRP0       
+	00121: ALIGNRP    
+	00122: ALIGNRP    
+	00123: SRP0       
+	00124: MIRP[srp0,md,rd,1] 
+	00125: RTDG       
+	00126: SRP2       
+	00127: IP         
+	00128: MDAP[rd]   
+	00129: RTG        
+	00130: SVTCA[x-axis] 
+	00131: SRP0       
+	00132: MIRP[srp0,nmd,rd,1] 
+	00133: MIRP[srp0,nmd,rd,0] 
+	00134: MDRP[nrp0,nmd,rd,0] 
+	00135: SVTCA[y-axis] 
+	00136: SRP0       
+	00137: MIRP[srp0,md,rd,1] 
+	00138: RTDG       
+	00139: SRP2       
+	00140: IP         
+	00141: MDAP[rd]   
+	00142: RTG        
+	00143: SVTCA[x-axis] 
+	00144: SRP0       
+	00145: MIRP[srp0,nmd,rd,1] 
+	00146: MIRP[srp0,nmd,rd,0] 
+	00147: MDRP[nrp0,nmd,rd,0] 
+	00148: SVTCA[y-axis] 
+	00149: SRP0       
+	00150: MIRP[srp0,md,rd,1] 
+	00151: RTDG       
+	00152: SRP2       
+	00153: IP         
+	00154: MDAP[rd]   
+	00155: RTG        
+	00156: SVTCA[x-axis] 
+	00157: SRP0       
+	00158: MIRP[srp0,nmd,rd,1] 
+	00159: MIRP[srp0,nmd,rd,0] 
+	00160: MDRP[nrp0,nmd,rd,0] 
+	00161: SRP0       
+	00162: MIRP[srp0,md,rd,1] 
+	00163: RTDG       
+	00164: SRP2       
+	00165: IP         
+	00166: MDAP[rd]   
+	00167: RTG        
+	00168: SVTCA[y-axis] 
+	00169: SRP0       
+	00170: MIRP[srp0,nmd,rd,1] 
+	00171: MIRP[srp0,nmd,rd,0] 
+	00172: MDRP[nrp0,nmd,rd,0] 
+	00173: IUP[y]     
+	00174: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                               On
+	  7:  YDual                       X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                         On
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual                               On
+	 19:        XDual                         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:        XDual                         On
+	 25:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   468,    84)  ->  Abs (   468,    84)
+	  1: Rel (   200,     0)  ->  Abs (   668,    84)
+	  2: Rel (    56,     0)  ->  Abs (   724,    84)
+	  3: Rel (     0,   -42)  ->  Abs (   724,    42)
+	  4: Rel (     0,   -42)  ->  Abs (   724,     0)
+	  5: Rel (   -56,     0)  ->  Abs (   668,     0)
+	  6: Rel (  -485,     0)  ->  Abs (   183,     0)
+	  7: Rel (   -56,     0)  ->  Abs (   127,     0)
+	  8: Rel (     0,    42)  ->  Abs (   127,    42)
+	  9: Rel (     0,    42)  ->  Abs (   127,    84)
+	 10: Rel (    56,     0)  ->  Abs (   183,    84)
+	 11: Rel (   200,     0)  ->  Abs (   383,    84)
+	 12: Rel (     0,  1002)  ->  Abs (   383,  1086)
+	 13: Rel (  -200,     0)  ->  Abs (   183,  1086)
+	 14: Rel (   -56,     0)  ->  Abs (   127,  1086)
+	 15: Rel (     0,    42)  ->  Abs (   127,  1128)
+	 16: Rel (     0,    42)  ->  Abs (   127,  1170)
+	 17: Rel (    56,     0)  ->  Abs (   183,  1170)
+	 18: Rel (   928,     0)  ->  Abs (  1111,  1170)
+	 19: Rel (     0,  -418)  ->  Abs (  1111,   752)
+	 20: Rel (     0,   -56)  ->  Abs (  1111,   696)
+	 21: Rel (   -42,     0)  ->  Abs (  1069,   696)
+	 22: Rel (   -43,     0)  ->  Abs (  1026,   696)
+	 23: Rel (     0,    56)  ->  Abs (  1026,   752)
+	 24: Rel (     0,   334)  ->  Abs (  1026,  1086)
+	 25: Rel (  -558,     0)  ->  Abs (   468,  1086)
+
+	Glyph 300: off = 0x000117BE, len = 426
+	  numberOfContours:	3
+	  xMin:			103
+	  yMin:			-33
+	  xMax:			1127
+	  yMax:			1197
+
+	EndPoints
+	---------
+	  0:  12
+	  1:  24
+	  2:  48
+
+	  Length of Instructions:	278
+	00000: NPUSHB      (11):    15    16     9    36    52    17    16     9    36    52 
+	                            23 
+	00013: PUSHW[1]            -16 
+	00016: PUSHB[4]              9    36    52    21 
+	00021: PUSHW[1]            -16 
+	00024: PUSHB[4]              9    36    52     2 
+	00029: PUSHW[1]            -32 
+	00032: PUSHB[4]             17    19    52    11 
+	00037: PUSHW[1]            -32 
+	00040: NPUSHB      (29):    17    19    52     4    32    17    19    52    21    32 
+	                            17    19    52     8    32    17    19    52    24    16 
+	                             9    35    52    14    16     9    35    52    20 
+	00071: PUSHW[1]            -16 
+	00074: PUSHB[4]              9    35    52    18 
+	00079: PUSHW[1]            -16 
+	00082: NPUSHB     (129):     9    35    52   103    17   104    18   105    20   102 
+	                            21     4    86    17    89    18    89    20    86    21 
+	                             4     9    18     9    20    25    18    25    20     4 
+	                           170     2   165     4   171    11   166    17   201    11 
+	                           246    17     6    26    37    36    25    38    39    29 
+	                             0    46    16    46    32    46    48    46     4    46 
+	                            46    34    15    41    31    41    47    41     3    41 
+	                            41    26    25    38    37    38    38    16    22    37 
+	                             3     9    16    37     9     3    27    36    30    31 
+	                            15    32    31    32     2    32   233    13    37    16 
+	                             0    79     0   111     0   143     0     4     0    48 
+	                            39    30    44     0    43    16    43     2    43   233 
+	                            19    37    15     6     1     6    67   122    24 
+	00213: CALL       
+	00214: MDAP[rd]   
+	00215: DELTAP1    
+	00216: MIRP[srp0,md,rd,1] 
+	00217: MIRP[srp0,nmd,rd,2] 
+	00218: DELTAP1    
+	00219: ALIGNRP    
+	00220: MIRP[srp0,md,rd,1] 
+	00221: ALIGNRP    
+	00222: MDAP[rd]   
+	00223: DELTAP1    
+	00224: MIRP[srp0,md,rd,1] 
+	00225: MIRP[srp0,nmd,rd,2] 
+	00226: DELTAP1    
+	00227: ALIGNRP    
+	00228: MIRP[srp0,md,rd,1] 
+	00229: ALIGNRP    
+	00230: SVTCA[y-axis] 
+	00231: MIAP[rd+ci] 
+	00232: MIRP[nrp0,md,rd,1] 
+	00233: MIAP[rd+ci] 
+	00234: MIRP[srp0,md,rd,1] 
+	00235: SRP1       
+	00236: IP         
+	00237: MDAP[rd]   
+	00238: ALIGNRP    
+	00239: MIRP[srp0,md,rd,1] 
+	00240: ALIGNRP    
+	00241: SHP[rp1,zp0] 
+	00242: MDAP[rd]   
+	00243: DELTAP1    
+	00244: ALIGNRP    
+	00245: SHP[rp2,zp1] 
+	00246: MDAP[rd]   
+	00247: DELTAP1    
+	00248: ALIGNRP    
+	00249: SPVTCA[x-axis] 
+	00250: SFVTCA[x-axis] 
+	00251: SRP0       
+	00252: ALIGNRP    
+	00253: ALIGNRP    
+	00254: SRP0       
+	00255: ALIGNRP    
+	00256: ALIGNRP    
+	00257: IUP[y]     
+	00258: IUP[x]     
+	00259: SVTCA[x-axis] 
+	00260: DELTAP1    
+	00261: DELTAP2    
+	00262: DELTAP2    
+	00263: DELTAP2    
+	00264: CALL       
+	00265: CALL       
+	00266: CALL       
+	00267: CALL       
+	00268: CALL       
+	00269: CALL       
+	00270: CALL       
+	00271: CALL       
+	00272: CALL       
+	00273: SVTCA[y-axis] 
+	00274: CALL       
+	00275: CALL       
+	00276: CALL       
+	00277: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         Off
+	  2:                                      Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:                                      Off
+	  6:        XDual                         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:                                      Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual                 X-Short Off
+	 13:                      Y-Short X-Short On
+	 14:  YDual XDual         Y-Short         Off
+	 15:                              X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                              X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:        XDual                 X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual                 X-Short Off
+	 25:  YDual               Y-Short         On
+	 26:  YDual                               On
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual                         On
+	 33:        XDual         Y-Short         Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual                               On
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:        XDual                         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1127,   582)  ->  Abs (  1127,   582)
+	  1: Rel (     0,  -256)  ->  Abs (  1127,   326)
+	  2: Rel (  -297,  -359)  ->  Abs (   830,   -33)
+	  3: Rel (  -215,     0)  ->  Abs (   615,   -33)
+	  4: Rel (  -214,     0)  ->  Abs (   401,   -33)
+	  5: Rel (  -298,   358)  ->  Abs (   103,   325)
+	  6: Rel (     0,   257)  ->  Abs (   103,   582)
+	  7: Rel (     0,   255)  ->  Abs (   103,   837)
+	  8: Rel (   296,   360)  ->  Abs (   399,  1197)
+	  9: Rel (   216,     0)  ->  Abs (   615,  1197)
+	 10: Rel (   152,     0)  ->  Abs (   767,  1197)
+	 11: Rel (   239,  -183)  ->  Abs (  1006,  1014)
+	 12: Rel (   121,  -275)  ->  Abs (  1127,   739)
+	 13: Rel (   -85,  -157)  ->  Abs (  1042,   582)
+	 14: Rel (     0,   213)  ->  Abs (  1042,   795)
+	 15: Rel (  -244,   318)  ->  Abs (   798,  1113)
+	 16: Rel (  -183,     0)  ->  Abs (   615,  1113)
+	 17: Rel (  -176,     0)  ->  Abs (   439,  1113)
+	 18: Rel (  -252,  -313)  ->  Abs (   187,   800)
+	 19: Rel (     0,  -218)  ->  Abs (   187,   582)
+	 20: Rel (     0,  -217)  ->  Abs (   187,   365)
+	 21: Rel (   249,  -314)  ->  Abs (   436,    51)
+	 22: Rel (   179,     0)  ->  Abs (   615,    51)
+	 23: Rel (   183,     0)  ->  Abs (   798,    51)
+	 24: Rel (   244,   319)  ->  Abs (  1042,   370)
+	 25: Rel (  -619,   254)  ->  Abs (   423,   624)
+	 26: Rel (   384,     0)  ->  Abs (   807,   624)
+	 27: Rel (     0,    87)  ->  Abs (   807,   711)
+	 28: Rel (     0,    56)  ->  Abs (   807,   767)
+	 29: Rel (    42,     0)  ->  Abs (   849,   767)
+	 30: Rel (    43,     0)  ->  Abs (   892,   767)
+	 31: Rel (     0,   -56)  ->  Abs (   892,   711)
+	 32: Rel (     0,  -258)  ->  Abs (   892,   453)
+	 33: Rel (     0,   -56)  ->  Abs (   892,   397)
+	 34: Rel (   -43,     0)  ->  Abs (   849,   397)
+	 35: Rel (   -42,     0)  ->  Abs (   807,   397)
+	 36: Rel (     0,    56)  ->  Abs (   807,   453)
+	 37: Rel (     0,    87)  ->  Abs (   807,   540)
+	 38: Rel (  -384,     0)  ->  Abs (   423,   540)
+	 39: Rel (     0,   -87)  ->  Abs (   423,   453)
+	 40: Rel (     0,   -56)  ->  Abs (   423,   397)
+	 41: Rel (   -43,     0)  ->  Abs (   380,   397)
+	 42: Rel (   -42,     0)  ->  Abs (   338,   397)
+	 43: Rel (     0,    56)  ->  Abs (   338,   453)
+	 44: Rel (     0,   258)  ->  Abs (   338,   711)
+	 45: Rel (     0,    56)  ->  Abs (   338,   767)
+	 46: Rel (    42,     0)  ->  Abs (   380,   767)
+	 47: Rel (    43,     0)  ->  Abs (   423,   767)
+	 48: Rel (     0,   -56)  ->  Abs (   423,   711)
+
+	Glyph 301: off = 0x00011968, len = 430
+	  numberOfContours:	3
+	  xMin:			90
+	  yMin:			0
+	  xMax:			1138
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  38
+	  1:  44
+	  2:  50
+
+	  Length of Instructions:	284
+	00000: NPUSHB      (11):    47    32    20    23    52    50    32    20    23    52 
+	                            40 
+	00013: PUSHW[1]            -32 
+	00016: PUSHB[4]             20    23    52    43 
+	00021: PUSHW[1]            -32 
+	00024: NPUSHB      (24):    20    23    52   116    40   116    43   123    47   123 
+	                            50     4     1    45    46     7     8    27    39    44 
+	                            20    19    34    38 
+	00050: PUSHW[3]            676    36   354 
+	00057: NPUSHB       (9):     0    36    36    38     0    29    34    33    29 
+	00068: PUSHW[3]            676    31   354 
+	00075: NPUSHB       (9):    28    31    31    29    28    29    33    13     9 
+	00086: PUSHW[3]            676    11   354 
+	00093: NPUSHB       (9):     8    11    11     9     8    29    13    14    18 
+	00104: PUSHW[3]            676    16   354 
+	00111: NPUSHB      (62):    19    16    16    18    19    29    14    45    39    37 
+	                            64     1   192    27     1    27   158   128    34    33 
+	                             2    46    44    37    64     7   207    20     1    20 
+	                           158   128    13    14     8    49    37     0     4     1 
+	                             4     4     8    42    37    15    23     1    23    23 
+	                             0     8    30    28   143    19     1     0    19     1 
+	                            19    67 
+	00175: PUSHW[2]            264    24 
+	00180: CALL       
+	00181: MDAP[rd]   
+	00182: DELTAP1    
+	00183: DELTAP2    
+	00184: ALIGNRP    
+	00185: MIRP[srp0,md,rd,1] 
+	00186: ALIGNRP    
+	00187: SHP[rp1,zp0] 
+	00188: MDAP[rd]   
+	00189: DELTAP1    
+	00190: MIRP[nrp0,md,rd,1] 
+	00191: SRP1       
+	00192: SHP[rp1,zp0] 
+	00193: MDAP[rd]   
+	00194: DELTAP1    
+	00195: MIRP[nrp0,md,rd,1] 
+	00196: SVTCA[y-axis] 
+	00197: MIAP[rd+ci] 
+	00198: ALIGNRP    
+	00199: SMD        
+	00200: MIRP[srp0,md,rd,0] 
+	00201: DELTAP2    
+	00202: ALIGNRP    
+	00203: SMD        
+	00204: MIRP[srp0,md,rd,1] 
+	00205: ALIGNRP    
+	00206: MIAP[rd+ci] 
+	00207: ALIGNRP    
+	00208: SMD        
+	00209: MIRP[srp0,md,rd,0] 
+	00210: DELTAP2    
+	00211: ALIGNRP    
+	00212: SMD        
+	00213: MIRP[srp0,md,rd,1] 
+	00214: ALIGNRP    
+	00215: SRP0       
+	00216: MIRP[srp0,md,rd,1] 
+	00217: RTDG       
+	00218: SRP2       
+	00219: IP         
+	00220: MDAP[rd]   
+	00221: RTG        
+	00222: SVTCA[x-axis] 
+	00223: SRP0       
+	00224: MIRP[srp0,nmd,rd,1] 
+	00225: MIRP[srp0,nmd,rd,0] 
+	00226: MDRP[nrp0,nmd,rd,0] 
+	00227: SVTCA[y-axis] 
+	00228: SRP0       
+	00229: MIRP[srp0,md,rd,1] 
+	00230: RTDG       
+	00231: SRP2       
+	00232: IP         
+	00233: MDAP[rd]   
+	00234: RTG        
+	00235: SVTCA[x-axis] 
+	00236: SRP0       
+	00237: MIRP[srp0,nmd,rd,1] 
+	00238: MIRP[srp0,nmd,rd,0] 
+	00239: MDRP[nrp0,nmd,rd,0] 
+	00240: SVTCA[y-axis] 
+	00241: SRP0       
+	00242: MIRP[srp0,md,rd,1] 
+	00243: RTDG       
+	00244: SRP2       
+	00245: IP         
+	00246: MDAP[rd]   
+	00247: RTG        
+	00248: SVTCA[x-axis] 
+	00249: SRP0       
+	00250: MIRP[srp0,nmd,rd,1] 
+	00251: MIRP[srp0,nmd,rd,0] 
+	00252: MDRP[nrp0,nmd,rd,0] 
+	00253: SVTCA[y-axis] 
+	00254: SRP0       
+	00255: MIRP[srp0,md,rd,1] 
+	00256: RTDG       
+	00257: SRP2       
+	00258: IP         
+	00259: MDAP[rd]   
+	00260: RTG        
+	00261: SVTCA[x-axis] 
+	00262: SRP0       
+	00263: MIRP[srp0,nmd,rd,1] 
+	00264: MIRP[srp0,nmd,rd,0] 
+	00265: MDRP[nrp0,nmd,rd,0] 
+	00266: SRP0       
+	00267: ALIGNRP    
+	00268: ALIGNRP    
+	00269: ALIGNRP    
+	00270: ALIGNRP    
+	00271: SRP0       
+	00272: ALIGNRP    
+	00273: ALIGNRP    
+	00274: ALIGNRP    
+	00275: ALIGNRP    
+	00276: IUP[y]     
+	00277: IUP[x]     
+	00278: SVTCA[x-axis] 
+	00279: DELTAP1    
+	00280: CALL       
+	00281: CALL       
+	00282: CALL       
+	00283: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:        XDual         Y-Short         On
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                               On
+	 15:  YDual                       X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual                               On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:  YDual                       X-Short On
+	 39:                      Y-Short X-Short On
+	 40:                      Y-Short X-Short Off
+	 41:                      Y-Short X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual                         Off
+	 44:                      Y-Short         On
+	 45:        XDual                 X-Short On
+	 46:        XDual                         On
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual         Y-Short         On
+	 50:        XDual                         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   656,  1086)  ->  Abs (   656,  1086)
+	  1: Rel (     0,  -103)  ->  Abs (   656,   983)
+	  2: Rel (   237,    -2)  ->  Abs (   893,   981)
+	  3: Rel (   245,  -222)  ->  Abs (  1138,   759)
+	  4: Rel (     0,  -174)  ->  Abs (  1138,   585)
+	  5: Rel (     0,  -174)  ->  Abs (  1138,   411)
+	  6: Rel (  -245,  -222)  ->  Abs (   893,   189)
+	  7: Rel (  -237,    -2)  ->  Abs (   656,   187)
+	  8: Rel (     0,  -103)  ->  Abs (   656,    84)
+	  9: Rel (   122,     0)  ->  Abs (   778,    84)
+	 10: Rel (    57,     0)  ->  Abs (   835,    84)
+	 11: Rel (     0,   -42)  ->  Abs (   835,    42)
+	 12: Rel (     0,   -42)  ->  Abs (   835,     0)
+	 13: Rel (   -57,     0)  ->  Abs (   778,     0)
+	 14: Rel (  -328,     0)  ->  Abs (   450,     0)
+	 15: Rel (   -57,     0)  ->  Abs (   393,     0)
+	 16: Rel (     0,    42)  ->  Abs (   393,    42)
+	 17: Rel (     0,    42)  ->  Abs (   393,    84)
+	 18: Rel (    57,     0)  ->  Abs (   450,    84)
+	 19: Rel (   122,     0)  ->  Abs (   572,    84)
+	 20: Rel (     0,   103)  ->  Abs (   572,   187)
+	 21: Rel (  -237,     2)  ->  Abs (   335,   189)
+	 22: Rel (  -245,   223)  ->  Abs (    90,   412)
+	 23: Rel (     0,   173)  ->  Abs (    90,   585)
+	 24: Rel (     0,   120)  ->  Abs (    90,   705)
+	 25: Rel (   118,   183)  ->  Abs (   208,   888)
+	 26: Rel (   211,    94)  ->  Abs (   419,   982)
+	 27: Rel (   153,     1)  ->  Abs (   572,   983)
+	 28: Rel (     0,   103)  ->  Abs (   572,  1086)
+	 29: Rel (  -122,     0)  ->  Abs (   450,  1086)
+	 30: Rel (   -57,     0)  ->  Abs (   393,  1086)
+	 31: Rel (     0,    42)  ->  Abs (   393,  1128)
+	 32: Rel (     0,    42)  ->  Abs (   393,  1170)
+	 33: Rel (    57,     0)  ->  Abs (   450,  1170)
+	 34: Rel (   328,     0)  ->  Abs (   778,  1170)
+	 35: Rel (    57,     0)  ->  Abs (   835,  1170)
+	 36: Rel (     0,   -42)  ->  Abs (   835,  1128)
+	 37: Rel (     0,   -42)  ->  Abs (   835,  1086)
+	 38: Rel (   -57,     0)  ->  Abs (   778,  1086)
+	 39: Rel (  -206,  -188)  ->  Abs (   572,   898)
+	 40: Rel (  -200,    -4)  ->  Abs (   372,   894)
+	 41: Rel (  -198,  -159)  ->  Abs (   174,   735)
+	 42: Rel (     0,  -150)  ->  Abs (   174,   585)
+	 43: Rel (     0,  -304)  ->  Abs (   174,   281)
+	 44: Rel (   398,    -9)  ->  Abs (   572,   272)
+	 45: Rel (    84,   626)  ->  Abs (   656,   898)
+	 46: Rel (     0,  -626)  ->  Abs (   656,   272)
+	 47: Rel (   213,     1)  ->  Abs (   869,   273)
+	 48: Rel (   184,   177)  ->  Abs (  1053,   450)
+	 49: Rel (     0,   135)  ->  Abs (  1053,   585)
+	 50: Rel (     0,   304)  ->  Abs (  1053,   889)
+
+	Glyph 302: off = 0x00011B16, len = 382
+	  numberOfContours:	2
+	  xMin:			98
+	  yMin:			-33
+	  xMax:			1137
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  28
+	  1:  39
+
+	  Length of Instructions:	262
+	00000: NPUSHB      (36):    13    27     1     8     7     5    26    50    18    50 
+	                            19    52    27    80    18    80    19    87    27   119 
+	                            19   119    27   229    19   232    20    12    11    11 
+	                            15    15     7    27     3    39 
+	00038: PUSHW[1]            -32 
+	00041: NPUSHB       (9):    35    36    52    33    32    22    23    52    36 
+	00052: PUSHW[1]            -32 
+	00055: NPUSHB      (24):    21    23    52     8    32    20    36    52    30    32 
+	                            20    29    52    31    64    17    18    52    34    32 
+	                            15    16    52    36 
+	00081: PUSHW[1]            -42 
+	00084: NPUSHB     (105):    14    16    52    10    11     7    15    57     7    63 
+	                            19   203     8     5    25    30    41    30    89    30 
+	                           171    30     4    27     8    26     0    18     7     8 
+	                            26     6    30    19    39    20     0    18    29    39 
+	                            20     6    30    30     6     6    32     0    18    20 
+	                             0     0    18     7    27    29    19     4    32     1 
+	                             0    32     5     6    38    33    10    11    32    33 
+	                            23    16     7    19     7    29    33    27    15     3 
+	                             1     3     3     0     6    21    33    25    25     6 
+	                            27    27     6    35    33    15    13     1    15    13 
+	                            31    13     2    13   230 
+	00191: PUSHW[2]            338    24 
+	00196: CALL       
+	00197: MDAP[rd]   
+	00198: DELTAP1    
+	00199: DELTAP2    
+	00200: MIRP[nrp0,md,rd,1] 
+	00201: MDAP[rd]   
+	00202: SHP[rp1,zp0] 
+	00203: MDAP[rd]   
+	00204: SRP1       
+	00205: SHP[rp1,zp0] 
+	00206: MDAP[rd]   
+	00207: MIRP[nrp0,md,rd,1] 
+	00208: SRP1       
+	00209: SHP[rp1,zp0] 
+	00210: SHP[rp1,zp0] 
+	00211: MDAP[rd]   
+	00212: DELTAP2    
+	00213: SRP0       
+	00214: MIRP[srp0,md,rd,1] 
+	00215: IP         
+	00216: IP         
+	00217: SVTCA[y-axis] 
+	00218: MIAP[rd+ci] 
+	00219: ALIGNRP    
+	00220: MIRP[nrp0,md,rd,1] 
+	00221: MIAP[rd+ci] 
+	00222: MIRP[nrp0,md,rd,1] 
+	00223: SVTCA[x-axis] 
+	00224: MDAP[rd]   
+	00225: SVTCA[y-axis] 
+	00226: ALIGNRP    
+	00227: MIRP[srp0,md,rd,1] 
+	00228: ALIGNRP    
+	00229: SRP1       
+	00230: SLOOP      
+	00231: IP         
+	00232: SDPVTL[1]  
+	00233: SFVTCA[x-axis] 
+	00234: MDAP[nrd]  
+	00235: CALL       
+	00236: SFVTPV     
+	00237: RDTG       
+	00238: SRP0       
+	00239: MDRP[nrp0,nmd,rd,0] 
+	00240: ISECT      
+	00241: ISECT      
+	00242: ISECT      
+	00243: ISECT      
+	00244: IUP[y]     
+	00245: IUP[x]     
+	00246: SVTCA[y-axis] 
+	00247: DELTAP1    
+	00248: DELTAP1    
+	00249: CALL       
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+	00253: CALL       
+	00254: CALL       
+	00255: CALL       
+	00256: CALL       
+	00257: SVTCA[x-axis] 
+	00258: DELTAP2    
+	00259: DELTAP1    
+	00260: SVTCA[y-axis] 
+	00261: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short On
+	  7:                              X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:                              X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:        XDual                 X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:                              X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:                              X-Short On
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:                      Y-Short X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1001,    84)  ->  Abs (  1001,    84)
+	  1: Rel (    78,     0)  ->  Abs (  1079,    84)
+	  2: Rel (    56,     0)  ->  Abs (  1135,    84)
+	  3: Rel (     0,   -42)  ->  Abs (  1135,    42)
+	  4: Rel (     0,   -42)  ->  Abs (  1135,     0)
+	  5: Rel (   -56,     0)  ->  Abs (  1079,     0)
+	  6: Rel (  -149,     0)  ->  Abs (   930,     0)
+	  7: Rel (   -51,   268)  ->  Abs (   879,   268)
+	  8: Rel (  -117,  -178)  ->  Abs (   762,    90)
+	  9: Rel (  -184,  -123)  ->  Abs (   578,   -33)
+	 10: Rel (  -103,     0)  ->  Abs (   475,   -33)
+	 11: Rel (  -152,     0)  ->  Abs (   323,   -33)
+	 12: Rel (  -225,   262)  ->  Abs (    98,   229)
+	 13: Rel (     0,   206)  ->  Abs (    98,   435)
+	 14: Rel (     0,   194)  ->  Abs (    98,   629)
+	 15: Rel (   219,   267)  ->  Abs (   317,   896)
+	 16: Rel (   170,     0)  ->  Abs (   487,   896)
+	 17: Rel (   134,     0)  ->  Abs (   621,   896)
+	 18: Rel (   228,  -203)  ->  Abs (   849,   693)
+	 19: Rel (    58,  -194)  ->  Abs (   907,   499)
+	 20: Rel (   103,   201)  ->  Abs (  1010,   700)
+	 21: Rel (    38,   142)  ->  Abs (  1048,   842)
+	 22: Rel (    14,    54)  ->  Abs (  1062,   896)
+	 23: Rel (    33,     0)  ->  Abs (  1095,   896)
+	 24: Rel (    42,     0)  ->  Abs (  1137,   896)
+	 25: Rel (     0,   -40)  ->  Abs (  1137,   856)
+	 26: Rel (     0,   -99)  ->  Abs (  1137,   757)
+	 27: Rel (  -195,  -387)  ->  Abs (   942,   370)
+	 28: Rel (    54,  -248)  ->  Abs (   996,   122)
+	 29: Rel (  -148,   263)  ->  Abs (   848,   385)
+	 30: Rel (   -31,   173)  ->  Abs (   817,   558)
+	 31: Rel (  -204,   253)  ->  Abs (   613,   811)
+	 32: Rel (  -132,     0)  ->  Abs (   481,   811)
+	 33: Rel (  -126,     0)  ->  Abs (   355,   811)
+	 34: Rel (  -173,  -210)  ->  Abs (   182,   601)
+	 35: Rel (     0,  -166)  ->  Abs (   182,   435)
+	 36: Rel (     0,  -173)  ->  Abs (   182,   262)
+	 37: Rel (   179,  -211)  ->  Abs (   361,    51)
+	 38: Rel (   118,     0)  ->  Abs (   479,    51)
+	 39: Rel (   190,     0)  ->  Abs (   669,    51)
+
+	Glyph 303: off = 0x00011C94, len = 308
+	  numberOfContours:	2
+	  xMin:			181
+	  yMin:			-33
+	  xMax:			1052
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  23
+	  1:  35
+
+	  Length of Instructions:	192
+	00000: NPUSHB      (55):    25    13    47     0    47    17   105     2   105     6 
+	                           100     9    98    29   111    31   114     1   123    13 
+	                           213    13   213    25   230     0   246     0   246     2 
+	                            15     7     0     1    34    32    21    24    52    26 
+	                            32    21    22    52    34    32    14    15    52    26 
+	                            32    14    15    52    32 
+	00057: PUSHW[1]            -32 
+	00060: PUSHB[4]             13    14    52    28 
+	00065: PUSHW[1]            -32 
+	00068: NPUSHB      (69):    13    14    52    17    16     0    14    15    15    32 
+	                             0     1    20     0     0     1     1    15    16    17 
+	                             4     0    14    30    32     7    11    24    33    14 
+	                            23     0    32    19    18     1    15     0    31     0 
+	                             2    16     0    14     1     4    17    21    21    33 
+	                            33     4    18    16    17    32    17     2    17    17 
+	                            27    33   111    11     1    11   196   172    24 
+	00139: CALL       
+	00140: MDAP[rd]   
+	00141: DELTAP1    
+	00142: MIRP[nrp0,md,rd,1] 
+	00143: SHP[rp1,zp0] 
+	00144: MDAP[rd]   
+	00145: DELTAP1    
+	00146: ALIGNRP    
+	00147: MDAP[rd]   
+	00148: MIRP[nrp0,md,rd,1] 
+	00149: SHP[rp1,zp0] 
+	00150: MDAP[rd]   
+	00151: SRP1       
+	00152: SLOOP      
+	00153: IP         
+	00154: DELTAP1    
+	00155: SVTCA[y-axis] 
+	00156: MIAP[rd+ci] 
+	00157: ALIGNRP    
+	00158: MIRP[srp0,md,rd,1] 
+	00159: ALIGNRP    
+	00160: MDAP[rd]   
+	00161: MIRP[nrp0,md,rd,1] 
+	00162: MIAP[rd+ci] 
+	00163: MIRP[nrp0,md,rd,1] 
+	00164: SRP1       
+	00165: SRP2       
+	00166: SLOOP      
+	00167: IP         
+	00168: SDPVTL[1]  
+	00169: SFVTPV     
+	00170: MDAP[nrd]  
+	00171: CALL       
+	00172: SFVTCA[x-axis] 
+	00173: RDTG       
+	00174: SRP0       
+	00175: MDRP[nrp0,nmd,rd,0] 
+	00176: SVTCA[y-axis] 
+	00177: SRP2       
+	00178: IP         
+	00179: IP         
+	00180: IUP[y]     
+	00181: IUP[x]     
+	00182: SVTCA[y-axis] 
+	00183: CALL       
+	00184: CALL       
+	00185: CALL       
+	00186: CALL       
+	00187: CALL       
+	00188: CALL       
+	00189: SVTCA[x-axis] 
+	00190: DELTAP2    
+	00191: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                                      Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:        XDual                 X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual               Y-Short         On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual                               On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:  YDual                       X-Short On
+	 24:                                      On
+	 25:  YDual                       X-Short Off
+	 26:                      Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   360,  1170)  ->  Abs (   360,  1170)
+	  1: Rel (   402,  -304)  ->  Abs (   762,   866)
+	  2: Rel (   161,  -122)  ->  Abs (   923,   744)
+	  3: Rel (   129,  -188)  ->  Abs (  1052,   556)
+	  4: Rel (     0,  -142)  ->  Abs (  1052,   414)
+	  5: Rel (     0,  -184)  ->  Abs (  1052,   230)
+	  6: Rel (  -258,  -263)  ->  Abs (   794,   -33)
+	  7: Rel (  -179,     0)  ->  Abs (   615,   -33)
+	  8: Rel (  -110,     0)  ->  Abs (   505,   -33)
+	  9: Rel (  -200,   112)  ->  Abs (   305,    79)
+	 10: Rel (  -124,   201)  ->  Abs (   181,   280)
+	 11: Rel (     0,   127)  ->  Abs (   181,   407)
+	 12: Rel (     0,   160)  ->  Abs (   181,   567)
+	 13: Rel (   228,   275)  ->  Abs (   409,   842)
+	 14: Rel (   246,     0)  ->  Abs (   655,   842)
+	 15: Rel (  -268,   196)  ->  Abs (   387,  1038)
+	 16: Rel (   -55,    40)  ->  Abs (   332,  1078)
+	 17: Rel (   -47,    53)  ->  Abs (   285,  1131)
+	 18: Rel (     0,   124)  ->  Abs (   285,  1255)
+	 19: Rel (   614,     0)  ->  Abs (   899,  1255)
+	 20: Rel (    56,     0)  ->  Abs (   955,  1255)
+	 21: Rel (     0,   -43)  ->  Abs (   955,  1212)
+	 22: Rel (     0,   -42)  ->  Abs (   955,  1170)
+	 23: Rel (   -56,     0)  ->  Abs (   899,  1170)
+	 24: Rel (  -283,  -413)  ->  Abs (   616,   757)
+	 25: Rel (  -154,     0)  ->  Abs (   462,   757)
+	 26: Rel (  -197,  -201)  ->  Abs (   265,   556)
+	 27: Rel (     0,  -149)  ->  Abs (   265,   407)
+	 28: Rel (     0,  -149)  ->  Abs (   265,   258)
+	 29: Rel (   201,  -207)  ->  Abs (   466,    51)
+	 30: Rel (   149,     0)  ->  Abs (   615,    51)
+	 31: Rel (   149,     0)  ->  Abs (   764,    51)
+	 32: Rel (   203,   208)  ->  Abs (   967,   259)
+	 33: Rel (     0,   154)  ->  Abs (   967,   413)
+	 34: Rel (     0,   151)  ->  Abs (   967,   564)
+	 35: Rel (  -195,   193)  ->  Abs (   772,   757)
+
+	Glyph 304: off = 0x00011DC8, len = 364
+	  numberOfContours:	1
+	  xMin:			283
+	  yMin:			-33
+	  xMax:			978
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  56
+
+	  Length of Instructions:	209
+	00000: NPUSHB      (41):    73     8     1     5     4     6    31    71    33    70 
+	                            43     4    42    32    23    36    52     6     0    22 
+	                             0   234    53   249    53     4    10    42     9    53 
+	                           134    40   136    56     4     2    32    19    36    52 
+	                            55 
+	00043: PUSHW[1]            -32 
+	00046: NPUSHB       (9):    19    36    52    31    32    23    28    52    39 
+	00057: PUSHW[1]            -32 
+	00060: NPUSHB      (81):    17    22    52    37    42    17    18    52    56    32 
+	                            12    18    52     8     6    29     0    34    33    35 
+	                            35    41    23    23    11     7    29    33     6     7 
+	                            45    45    41    33    51    11    17    20     8    25 
+	                             9     0    32    34    35    35    20    32    79    48 
+	                             1    48    48    20     9    33    13    84    15    20 
+	                            47    20    79    20     3    20    32    33     3     3 
+	                            38    33    32    54    48    54   160    54     3    54 
+	                           244 
+	00143: PUSHW[2]            789    24 
+	00148: CALL       
+	00149: MDAP[rd]   
+	00150: DELTAP1    
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: SHP[rp1,zp0] 
+	00153: MDAP[rd]   
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: MDAP[rd]   
+	00156: DELTAP1    
+	00157: MIRP[srp0,nmd,rd,0] 
+	00158: MIRP[nrp0,md,rd,1] 
+	00159: SRP1       
+	00160: SHP[rp1,zp0] 
+	00161: MDAP[rd]   
+	00162: DELTAP2    
+	00163: SRP1       
+	00164: SRP2       
+	00165: IP         
+	00166: MDAP[rd]   
+	00167: ALIGNRP    
+	00168: SRP2       
+	00169: IP         
+	00170: SRP2       
+	00171: IP         
+	00172: IP         
+	00173: SRP1       
+	00174: IP         
+	00175: SVTCA[y-axis] 
+	00176: MIAP[rd+ci] 
+	00177: MIRP[nrp0,md,rd,1] 
+	00178: SHP[rp1,zp0] 
+	00179: MDAP[rd]   
+	00180: MIAP[rd+ci] 
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: MIAP[rd+ci] 
+	00183: SHP[rp1,zp0] 
+	00184: MDAP[rd]   
+	00185: SRP1       
+	00186: IP         
+	00187: MDAP[rd]   
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: IP         
+	00190: SRP1       
+	00191: SRP2       
+	00192: IP         
+	00193: IUP[y]     
+	00194: IUP[x]     
+	00195: SVTCA[y-axis] 
+	00196: CALL       
+	00197: CALL       
+	00198: CALL       
+	00199: CALL       
+	00200: CALL       
+	00201: CALL       
+	00202: SVTCA[x-axis] 
+	00203: DELTAP2    
+	00204: DELTAP1    
+	00205: CALL       
+	00206: SVTCA[y-axis] 
+	00207: DELTAP2    
+	00208: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual       Rep-  2 Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:                      Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:                      Y-Short         On
+	 35:        XDual         Y-Short         On
+	 36:  YDual                       X-Short Off
+	 37:                      Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:        XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:        XDual         Y-Short X-Short Off
+	 48:        XDual         Y-Short         On
+	 49:        XDual         Y-Short         Off
+	 50:                      Y-Short X-Short Off
+	 51:  YDual                       X-Short On
+	 52:  YDual                       X-Short Off
+	 53:  YDual               Y-Short X-Short Off
+	 54:  YDual XDual         Y-Short         On
+	 55:  YDual XDual         Y-Short         Off
+	 56:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   522,   456)  ->  Abs (   522,   456)
+	  1: Rel (   -95,    23)  ->  Abs (   427,   479)
+	  2: Rel (  -106,   121)  ->  Abs (   321,   600)
+	  3: Rel (     0,    74)  ->  Abs (   321,   674)
+	  4: Rel (     0,    87)  ->  Abs (   321,   761)
+	  5: Rel (   155,   135)  ->  Abs (   476,   896)
+	  6: Rel (   154,     0)  ->  Abs (   630,   896)
+	  7: Rel (   144,     0)  ->  Abs (   774,   896)
+	  8: Rel (   109,   -76)  ->  Abs (   883,   820)
+	  9: Rel (    10,    41)  ->  Abs (   893,   861)
+	 10: Rel (     9,    35)  ->  Abs (   902,   896)
+	 11: Rel (    33,     0)  ->  Abs (   935,   896)
+	 12: Rel (    43,     0)  ->  Abs (   978,   896)
+	 13: Rel (     0,   -46)  ->  Abs (   978,   850)
+	 14: Rel (     0,   -16)  ->  Abs (   978,   834)
+	 15: Rel (    -4,   -34)  ->  Abs (   974,   800)
+	 16: Rel (    -4,   -37)  ->  Abs (   970,   763)
+	 17: Rel (     0,   -29)  ->  Abs (   970,   734)
+	 18: Rel (     0,   -42)  ->  Abs (   970,   692)
+	 19: Rel (     3,   -27)  ->  Abs (   973,   665)
+	 20: Rel (     3,   -30)  ->  Abs (   976,   635)
+	 21: Rel (     0,    -4)  ->  Abs (   976,   631)
+	 22: Rel (     0,   -29)  ->  Abs (   976,   602)
+	 23: Rel (   -38,     0)  ->  Abs (   938,   602)
+	 24: Rel (   -31,     0)  ->  Abs (   907,   602)
+	 25: Rel (   -12,    38)  ->  Abs (   895,   640)
+	 26: Rel (   -22,    70)  ->  Abs (   873,   710)
+	 27: Rel (   -55,    63)  ->  Abs (   818,   773)
+	 28: Rel (  -119,    38)  ->  Abs (   699,   811)
+	 29: Rel (   -78,     0)  ->  Abs (   621,   811)
+	 30: Rel (  -111,     0)  ->  Abs (   510,   811)
+	 31: Rel (  -105,   -78)  ->  Abs (   405,   733)
+	 32: Rel (     0,   -59)  ->  Abs (   405,   674)
+	 33: Rel (     0,  -163)  ->  Abs (   405,   511)
+	 34: Rel (   318,   -15)  ->  Abs (   723,   496)
+	 35: Rel (     0,   -84)  ->  Abs (   723,   412)
+	 36: Rel (  -162,     0)  ->  Abs (   561,   412)
+	 37: Rel (  -194,  -104)  ->  Abs (   367,   308)
+	 38: Rel (     0,   -83)  ->  Abs (   367,   225)
+	 39: Rel (     0,   -68)  ->  Abs (   367,   157)
+	 40: Rel (   134,  -106)  ->  Abs (   501,    51)
+	 41: Rel (   134,     0)  ->  Abs (   635,    51)
+	 42: Rel (   114,     0)  ->  Abs (   749,    51)
+	 43: Rel (   119,    48)  ->  Abs (   868,    99)
+	 44: Rel (    20,     8)  ->  Abs (   888,   107)
+	 45: Rel (     8,     0)  ->  Abs (   896,   107)
+	 46: Rel (    16,     0)  ->  Abs (   912,   107)
+	 47: Rel (    25,   -27)  ->  Abs (   937,    80)
+	 48: Rel (     0,   -17)  ->  Abs (   937,    63)
+	 49: Rel (     0,   -32)  ->  Abs (   937,    31)
+	 50: Rel (  -184,   -64)  ->  Abs (   753,   -33)
+	 51: Rel (  -124,     0)  ->  Abs (   629,   -33)
+	 52: Rel (  -158,     0)  ->  Abs (   471,   -33)
+	 53: Rel (  -188,   138)  ->  Abs (   283,   105)
+	 54: Rel (     0,   112)  ->  Abs (   283,   217)
+	 55: Rel (     0,    89)  ->  Abs (   283,   306)
+	 56: Rel (   124,   131)  ->  Abs (   407,   437)
+
+	Glyph 305: off = 0x00011F34, len = 222
+	  numberOfContours:	2
+	  xMin:			152
+	  yMin:			-33
+	  xMax:			1200
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  18
+	  1:  31
+
+	  Length of Instructions:	121
+	00000: PUSHW[2]              1   -32 
+	00005: PUSHB[4]             30    36    52    25 
+	00010: PUSHW[1]            -42 
+	00013: NPUSHB      (14):    12    36    52    27    64    12    36    52    31    32 
+	                            12    36    52    21 
+	00029: PUSHW[1]            -14 
+	00032: NPUSHB      (57):    12    36    52     1     1     1    30    73    11    87 
+	                            21    96     5    96    27   214    27   229    27     8 
+	                            19    33    13    18     0    32    14    13     6    26 
+	                            33     6    11     0    23     0    16     1    16    16 
+	                            29    33   240     3     1     3    23    33   191     9 
+	                           240     9     2     9    42   172    24 
+	00091: CALL       
+	00092: MDAP[rd]   
+	00093: DELTAP1    
+	00094: MIRP[nrp0,md,rd,1] 
+	00095: MDAP[rd]   
+	00096: DELTAP1    
+	00097: MIRP[nrp0,md,rd,1] 
+	00098: SHP[rp1,zp0] 
+	00099: MDAP[rd]   
+	00100: DELTAP1    
+	00101: SRP1       
+	00102: IP         
+	00103: SVTCA[y-axis] 
+	00104: MIAP[rd+ci] 
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: MIAP[rd+ci] 
+	00107: ALIGNRP    
+	00108: MIRP[srp0,md,rd,1] 
+	00109: ALIGNRP    
+	00110: SRP0       
+	00111: MIRP[nrp0,md,rd,1] 
+	00112: IUP[y]     
+	00113: IUP[x]     
+	00114: SVTCA[x-axis] 
+	00115: DELTAP1    
+	00116: CALL       
+	00117: CALL       
+	00118: CALL       
+	00119: CALL       
+	00120: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                                      Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:                                      Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual                               On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                               On
+	 20:  YDual                       X-Short Off
+	 21:                      Y-Short X-Short Off
+	 22:                      Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   855,   811)  ->  Abs (   855,   811)
+	  1: Rel (   107,   -59)  ->  Abs (   962,   752)
+	  2: Rel (   115,  -216)  ->  Abs (  1077,   536)
+	  3: Rel (     0,  -117)  ->  Abs (  1077,   419)
+	  4: Rel (     0,  -178)  ->  Abs (  1077,   241)
+	  5: Rel (  -269,  -274)  ->  Abs (   808,   -33)
+	  6: Rel (  -191,     0)  ->  Abs (   617,   -33)
+	  7: Rel (  -195,     0)  ->  Abs (   422,   -33)
+	  8: Rel (  -270,   280)  ->  Abs (   152,   247)
+	  9: Rel (     0,   187)  ->  Abs (   152,   434)
+	 10: Rel (     0,   148)  ->  Abs (   152,   582)
+	 11: Rel (   175,   238)  ->  Abs (   327,   820)
+	 12: Rel (   243,    76)  ->  Abs (   570,   896)
+	 13: Rel (   199,     0)  ->  Abs (   769,   896)
+	 14: Rel (   375,     0)  ->  Abs (  1144,   896)
+	 15: Rel (    56,     0)  ->  Abs (  1200,   896)
+	 16: Rel (     0,   -42)  ->  Abs (  1200,   854)
+	 17: Rel (     0,   -43)  ->  Abs (  1200,   811)
+	 18: Rel (   -56,     0)  ->  Abs (  1144,   811)
+	 19: Rel (  -527,     0)  ->  Abs (   617,   811)
+	 20: Rel (   -63,     0)  ->  Abs (   554,   811)
+	 21: Rel (  -201,   -83)  ->  Abs (   353,   728)
+	 22: Rel (  -117,  -194)  ->  Abs (   236,   534)
+	 23: Rel (     0,  -107)  ->  Abs (   236,   427)
+	 24: Rel (     0,  -154)  ->  Abs (   236,   273)
+	 25: Rel (   220,  -222)  ->  Abs (   456,    51)
+	 26: Rel (   160,     0)  ->  Abs (   616,    51)
+	 27: Rel (   153,     0)  ->  Abs (   769,    51)
+	 28: Rel (   224,   223)  ->  Abs (   993,   274)
+	 29: Rel (     0,   156)  ->  Abs (   993,   430)
+	 30: Rel (     0,   165)  ->  Abs (   993,   595)
+	 31: Rel (  -227,   216)  ->  Abs (   766,   811)
+
+	Glyph 306: off = 0x00012012, len = 166
+	  numberOfContours:	1
+	  xMin:			208
+	  yMin:			-33
+	  xMax:			930
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  30
+
+	  Length of Instructions:	78
+	00000: NPUSHB      (45):     0    15    16    20    16     7     7     3    33    12 
+	                            11    30    16    32    26    25     6    47    28     1 
+	                            28    28     9    31    22     1    22    22    14     9 
+	                             9     0     1    32    15    16    14    80    14   144 
+	                            14   224    14     4    14 
+	00047: MDAP[rd]   
+	00048: DELTAP1    
+	00049: ALIGNRP    
+	00050: MIRP[srp0,md,rd,1] 
+	00051: ALIGNRP    
+	00052: SHP[rp2,zp1] 
+	00053: MDAP[rd]   
+	00054: SRP1       
+	00055: SHP[rp1,zp0] 
+	00056: MDAP[rd]   
+	00057: DELTAP1    
+	00058: SRP1       
+	00059: SHP[rp1,zp0] 
+	00060: MDAP[rd]   
+	00061: DELTAP1    
+	00062: SVTCA[y-axis] 
+	00063: MIAP[rd+ci] 
+	00064: ALIGNRP    
+	00065: MIRP[srp0,md,rd,1] 
+	00066: ALIGNRP    
+	00067: MIAP[rd+ci] 
+	00068: MIRP[nrp0,md,rd,1] 
+	00069: SHP[rp1,zp0] 
+	00070: MDAP[rd]   
+	00071: SRP2       
+	00072: IP         
+	00073: SRP0       
+	00074: ALIGNRP    
+	00075: ALIGNRP    
+	00076: IUP[y]     
+	00077: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:        XDual                         On
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual                               On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   618,   781)  ->  Abs (   618,   781)
+	  1: Rel (     0,  -647)  ->  Abs (   618,   134)
+	  2: Rel (     0,   -83)  ->  Abs (   618,    51)
+	  3: Rel (    80,     0)  ->  Abs (   698,    51)
+	  4: Rel (    48,     0)  ->  Abs (   746,    51)
+	  5: Rel (    59,    26)  ->  Abs (   805,    77)
+	  6: Rel (    31,    14)  ->  Abs (   836,    91)
+	  7: Rel (    11,     0)  ->  Abs (   847,    91)
+	  8: Rel (    38,     0)  ->  Abs (   885,    91)
+	  9: Rel (     0,   -43)  ->  Abs (   885,    48)
+	 10: Rel (     0,   -39)  ->  Abs (   885,     9)
+	 11: Rel (  -131,   -42)  ->  Abs (   754,   -33)
+	 12: Rel (   -67,     0)  ->  Abs (   687,   -33)
+	 13: Rel (  -154,     0)  ->  Abs (   533,   -33)
+	 14: Rel (     0,   146)  ->  Abs (   533,   113)
+	 15: Rel (     0,   668)  ->  Abs (   533,   781)
+	 16: Rel (  -136,     0)  ->  Abs (   397,   781)
+	 17: Rel (   -33,     0)  ->  Abs (   364,   781)
+	 18: Rel (   -79,    -7)  ->  Abs (   285,   774)
+	 19: Rel (   -18,    -2)  ->  Abs (   267,   772)
+	 20: Rel (   -11,     0)  ->  Abs (   256,   772)
+	 21: Rel (   -48,     0)  ->  Abs (   208,   772)
+	 22: Rel (     0,    42)  ->  Abs (   208,   814)
+	 23: Rel (     0,    31)  ->  Abs (   208,   845)
+	 24: Rel (    68,    21)  ->  Abs (   276,   866)
+	 25: Rel (   102,     0)  ->  Abs (   378,   866)
+	 26: Rel (   496,     0)  ->  Abs (   874,   866)
+	 27: Rel (    56,     0)  ->  Abs (   930,   866)
+	 28: Rel (     0,   -43)  ->  Abs (   930,   823)
+	 29: Rel (     0,   -42)  ->  Abs (   930,   781)
+	 30: Rel (   -56,     0)  ->  Abs (   874,   781)
+
+	Glyph 307: off = 0x000120B8, len = 380
+	  numberOfContours:	2
+	  xMin:			123
+	  yMin:			-386
+	  xMax:			1112
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  34
+	  1:  44
+
+	  Length of Instructions:	246
+	00000: PUSHW[2]             16   -32 
+	00005: NPUSHB      (15):    24    36    52    86     1    83    15   100     1    98 
+	                            15   198    15     5    42 
+	00022: PUSHW[1]            -32 
+	00025: NPUSHB       (9):    22    25    52    40    32    22    36    52    12 
+	00036: PUSHW[1]            -32 
+	00039: PUSHB[4]             22    30    52    15 
+	00044: PUSHW[1]            -64 
+	00047: NPUSHB     (141):    19    36    52    40    32    15    16    52    36    64 
+	                            12    36    52    96     8   101    10   105    19   120 
+	                            23   112    26   112    36   120    40   164     1   164 
+	                            15   180     1   180    15   198     1   198    15   212 
+	                             9   218    15   212    26   210    36   236    15   228 
+	                            36    19    84     9    84    11   100     9   100    12 
+	                             4    35    29    30    16     0    34    16    41     0 
+	                            35    29    11    84    41    33    21    21     7     7 
+	                            35    33    29    11    32    15     9     9    34    14 
+	                            38    33    79    24     1    16    24    32    24    48 
+	                            24    80    24    96    24   112    24   144    24   160 
+	                            24   208    24   224    24    10    24    24    30    14 
+	                            33     3     3    44    30    32    17    15    34     1 
+	                            16    34   144    34   191    34     3    34    94   142 
+	                            24 
+	00190: CALL       
+	00191: MDAP[rd]   
+	00192: DELTAP1    
+	00193: DELTAP2    
+	00194: ALIGNRP    
+	00195: MIRP[srp0,md,rd,1] 
+	00196: ALIGNRP    
+	00197: SHP[rp1,zp0] 
+	00198: MDAP[rd]   
+	00199: MIRP[nrp0,md,rd,1] 
+	00200: SRP1       
+	00201: SHP[rp1,zp0] 
+	00202: MDAP[rd]   
+	00203: DELTAP1    
+	00204: DELTAP2    
+	00205: MIRP[nrp0,md,rd,1] 
+	00206: SVTCA[y-axis] 
+	00207: SRP1       
+	00208: SRP2       
+	00209: IP         
+	00210: MDAP[rd]   
+	00211: MIAP[rd+ci] 
+	00212: MIAP[rd+ci] 
+	00213: MIRP[nrp0,md,rd,1] 
+	00214: MIAP[rd+ci] 
+	00215: ALIGNRP    
+	00216: SRP0       
+	00217: MIRP[srp0,md,rd,1] 
+	00218: MIRP[nrp0,nmd,rd,0] 
+	00219: SRP1       
+	00220: SRP2       
+	00221: IP         
+	00222: SRP1       
+	00223: IP         
+	00224: SPVTCA[x-axis] 
+	00225: SFVTPV     
+	00226: SRP0       
+	00227: ALIGNRP    
+	00228: ALIGNRP    
+	00229: SRP0       
+	00230: ALIGNRP    
+	00231: ALIGNRP    
+	00232: IUP[y]     
+	00233: IUP[x]     
+	00234: SVTCA[x-axis] 
+	00235: DELTAP1    
+	00236: DELTAP1    
+	00237: CALL       
+	00238: CALL       
+	00239: CALL       
+	00240: CALL       
+	00241: CALL       
+	00242: CALL       
+	00243: SVTCA[y-axis] 
+	00244: DELTAP1    
+	00245: CALL       
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual               Y-Short X-Short Off
+	  2:                              X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:                      Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual                         Off
+	 16:                      Y-Short         On
+	 17:        XDual                         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual                 X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                                      Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:        XDual                         On
+	 31:        XDual         Y-Short         Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:        XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:                      Y-Short X-Short Off
+	 44:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   516,   -26)  ->  Abs (   516,   -26)
+	  1: Rel (  -185,    31)  ->  Abs (   331,     5)
+	  2: Rel (  -208,   256)  ->  Abs (   123,   261)
+	  3: Rel (     0,   198)  ->  Abs (   123,   459)
+	  4: Rel (     0,   120)  ->  Abs (   123,   579)
+	  5: Rel (    89,   189)  ->  Abs (   212,   768)
+	  6: Rel (   152,   128)  ->  Abs (   364,   896)
+	  7: Rel (    40,     0)  ->  Abs (   404,   896)
+	  8: Rel (    36,     0)  ->  Abs (   440,   896)
+	  9: Rel (     0,   -45)  ->  Abs (   440,   851)
+	 10: Rel (     0,   -23)  ->  Abs (   440,   828)
+	 11: Rel (   -53,   -28)  ->  Abs (   387,   800)
+	 12: Rel (   -83,   -43)  ->  Abs (   304,   757)
+	 13: Rel (   -97,  -184)  ->  Abs (   207,   573)
+	 14: Rel (     0,  -119)  ->  Abs (   207,   454)
+	 15: Rel (     0,  -311)  ->  Abs (   207,   143)
+	 16: Rel (   309,   -84)  ->  Abs (   516,    59)
+	 17: Rel (     0,   447)  ->  Abs (   516,   506)
+	 18: Rel (     0,   157)  ->  Abs (   516,   663)
+	 19: Rel (    42,   141)  ->  Abs (   558,   804)
+	 20: Rel (   112,    92)  ->  Abs (   670,   896)
+	 21: Rel (    81,     0)  ->  Abs (   751,   896)
+	 22: Rel (   149,     0)  ->  Abs (   900,   896)
+	 23: Rel (   212,  -269)  ->  Abs (  1112,   627)
+	 24: Rel (     0,  -186)  ->  Abs (  1112,   441)
+	 25: Rel (     0,  -215)  ->  Abs (  1112,   226)
+	 26: Rel (  -275,  -259)  ->  Abs (   837,   -33)
+	 27: Rel (  -185,     0)  ->  Abs (   652,   -33)
+	 28: Rel (   -20,     0)  ->  Abs (   632,   -33)
+	 29: Rel (   -32,     1)  ->  Abs (   600,   -32)
+	 30: Rel (     0,  -284)  ->  Abs (   600,  -316)
+	 31: Rel (     0,   -70)  ->  Abs (   600,  -386)
+	 32: Rel (   -42,     0)  ->  Abs (   558,  -386)
+	 33: Rel (   -42,     0)  ->  Abs (   516,  -386)
+	 34: Rel (     0,    70)  ->  Abs (   516,  -316)
+	 35: Rel (    84,   367)  ->  Abs (   600,    51)
+	 36: Rel (   208,     0)  ->  Abs (   808,    51)
+	 37: Rel (   219,   223)  ->  Abs (  1027,   274)
+	 38: Rel (     0,   166)  ->  Abs (  1027,   440)
+	 39: Rel (     0,   157)  ->  Abs (  1027,   597)
+	 40: Rel (  -168,   214)  ->  Abs (   859,   811)
+	 41: Rel (  -105,     0)  ->  Abs (   754,   811)
+	 42: Rel (   -84,     0)  ->  Abs (   670,   811)
+	 43: Rel (   -70,  -128)  ->  Abs (   600,   683)
+	 44: Rel (     0,  -176)  ->  Abs (   600,   507)
+
+	Glyph 308: off = 0x00012234, len = 134
+	  numberOfContours:	2
+	  xMin:			-27
+	  yMin:			-561
+	  xMax:			1256
+	  yMax:			-296
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  27
+
+	  Length of Instructions:	46
+	00000: PUSHB[8]              7    36    15     1    31     1     2     1 
+	00009: PUSHW[1]            348 
+	00012: NPUSHB      (12):    21    36    15    25    11    62    29    18     4    62 
+	                            28    60 
+	00026: PUSHW[2]            266    24 
+	00031: CALL       
+	00032: SRP0       
+	00033: MIRP[srp0,nmd,rd,0] 
+	00034: ALIGNRP    
+	00035: SRP0       
+	00036: MIRP[srp0,nmd,rd,0] 
+	00037: ALIGNRP    
+	00038: SVTCA[y-axis] 
+	00039: MDAP[rd]   
+	00040: MIRP[srp0,md,rd,1] 
+	00041: MIRP[srp0,nmd,rd,2] 
+	00042: DELTAP1    
+	00043: MIRP[nrp0,md,rd,1] 
+	00044: IUP[y]     
+	00045: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual                               On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:  YDual                               On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual                               On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1200,  -380)  ->  Abs (  1200,  -380)
+	  1: Rel ( -1171,     0)  ->  Abs (    29,  -380)
+	  2: Rel (   -30,     0)  ->  Abs (    -1,  -380)
+	  3: Rel (   -26,    23)  ->  Abs (   -27,  -357)
+	  4: Rel (     0,    19)  ->  Abs (   -27,  -338)
+	  5: Rel (     0,    19)  ->  Abs (   -27,  -319)
+	  6: Rel (    26,    23)  ->  Abs (    -1,  -296)
+	  7: Rel (    30,     0)  ->  Abs (    29,  -296)
+	  8: Rel (  1171,     0)  ->  Abs (  1200,  -296)
+	  9: Rel (    31,     0)  ->  Abs (  1231,  -296)
+	 10: Rel (    25,   -23)  ->  Abs (  1256,  -319)
+	 11: Rel (     0,   -19)  ->  Abs (  1256,  -338)
+	 12: Rel (     0,   -19)  ->  Abs (  1256,  -357)
+	 13: Rel (   -25,   -23)  ->  Abs (  1231,  -380)
+	 14: Rel (   -31,  -181)  ->  Abs (  1200,  -561)
+	 15: Rel ( -1171,     0)  ->  Abs (    29,  -561)
+	 16: Rel (   -30,     0)  ->  Abs (    -1,  -561)
+	 17: Rel (   -26,    23)  ->  Abs (   -27,  -538)
+	 18: Rel (     0,    19)  ->  Abs (   -27,  -519)
+	 19: Rel (     0,    19)  ->  Abs (   -27,  -500)
+	 20: Rel (    26,    23)  ->  Abs (    -1,  -477)
+	 21: Rel (    30,     0)  ->  Abs (    29,  -477)
+	 22: Rel (  1171,     0)  ->  Abs (  1200,  -477)
+	 23: Rel (    31,     0)  ->  Abs (  1231,  -477)
+	 24: Rel (    25,   -23)  ->  Abs (  1256,  -500)
+	 25: Rel (     0,   -19)  ->  Abs (  1256,  -519)
+	 26: Rel (     0,   -19)  ->  Abs (  1256,  -538)
+	 27: Rel (   -25,   -23)  ->  Abs (  1231,  -561)
+
+	Glyph 309: off = 0x000122BA, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			274
+	  yMin:			-30
+	  xMax:			956
+	  yMax:			1285
+
+	     0: Flags:		0x0027
+		Glyf Index:	4
+		X WOffset:	-217
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	4
+		X WOffset:	218
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              2     3     2    61    29 
+	00006: PUSHW[1]            434 
+	00009: NPUSHB      (15):    72    39   111    29   127    29     2     0     1     2 
+	                             3     4    57    10    41 
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: DELTAP1    
+	00030: CALL       
+
+	Glyph 310: off = 0x000122F6, len = 348
+	  numberOfContours:	1
+	  xMin:			283
+	  yMin:			502
+	  xMax:			918
+	  yMax:			1070
+
+	EndPoints
+	---------
+	  0:  58
+
+	  Length of Instructions:	186
+	00000: NPUSHB      (48):    29     8    18    26    22   175    26    26    50    18 
+	                            49    43    46   175    50    50    50    43    17     9 
+	                            13   175     9     9    50    17    36    42    39   175 
+	                            35    35    50    42    52    58    55   175    51    51 
+	                            50    58     1    34    31    43    58     0 
+	00050: PUSHW[1]            765 
+	00053: NPUSHB      (12):    31    44     4    43    42    18    17     8     9    36 
+	                            27    26 
+	00067: PUSHW[1]            408 
+	00070: NPUSHB      (13):     0    35    36    51    50    25    59     4    58    17 
+	                            72   170    24 
+	00085: CALL       
+	00086: SVTCA[y-axis] 
+	00087: MDAP[rd]   
+	00088: MDAP[rd]   
+	00089: MDAP[rd]   
+	00090: SVTCA[x-axis] 
+	00091: FLIPOFF    
+	00092: SRP0       
+	00093: MIRP[srp0,nmd,rd,0] 
+	00094: ALIGNRP    
+	00095: FLIPON     
+	00096: MIRP[srp0,md,rd,1] 
+	00097: ALIGNRP    
+	00098: MIRP[srp0,nmd,rd,2] 
+	00099: ALIGNRP    
+	00100: MIRP[srp0,md,rd,1] 
+	00101: ALIGNRP    
+	00102: SVTCA[y-axis] 
+	00103: SRP0       
+	00104: ALIGNRP    
+	00105: ALIGNRP    
+	00106: ALIGNRP    
+	00107: SRP0       
+	00108: MIRP[nrp0,md,rd,1] 
+	00109: MIRP[srp0,nmd,rd,0] 
+	00110: ALIGNRP    
+	00111: SRP1       
+	00112: SRP2       
+	00113: IP         
+	00114: IP         
+	00115: SRP0       
+	00116: MIRP[nrp0,md,rd,1] 
+	00117: SVTCA[x-axis] 
+	00118: SRP0       
+	00119: MIRP[srp0,nmd,rd,1] 
+	00120: MDRP[srp0,nmd,rd,0] 
+	00121: ALIGNRP    
+	00122: SVTCA[y-axis] 
+	00123: SRP0       
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: SVTCA[x-axis] 
+	00126: SRP0       
+	00127: MIRP[srp0,nmd,rd,1] 
+	00128: MDRP[srp0,nmd,rd,0] 
+	00129: ALIGNRP    
+	00130: SVTCA[y-axis] 
+	00131: SRP0       
+	00132: MIRP[nrp0,md,rd,1] 
+	00133: SVTCA[x-axis] 
+	00134: SRP0       
+	00135: MIRP[srp0,nmd,rd,1] 
+	00136: SRP0       
+	00137: ALIGNRP    
+	00138: SVTCA[y-axis] 
+	00139: SRP0       
+	00140: MIRP[nrp0,md,rd,1] 
+	00141: SVTCA[x-axis] 
+	00142: SRP0       
+	00143: MIRP[srp0,nmd,rd,1] 
+	00144: MDRP[srp0,nmd,rd,0] 
+	00145: ALIGNRP    
+	00146: SVTCA[y-axis] 
+	00147: SRP0       
+	00148: MIRP[nrp0,md,rd,1] 
+	00149: SVTCA[x-axis] 
+	00150: SRP0       
+	00151: MIRP[srp0,nmd,rd,1] 
+	00152: SRP0       
+	00153: ALIGNRP    
+	00154: IUP[y]     
+	00155: IUP[x]     
+	00156: RS         
+	00157: JROF       
+	00158: NPUSHB      (18):    28    30     5     7     6    37    29    38    30     5 
+	                            27    39     1    28     7    31    39     1 
+	00178: SVTCA[y-axis] 
+	00179: CALL       
+	00180: SVTCA[x-axis] 
+	00181: CALL       
+	00182: CALL       
+	00183: CALL       
+	00184: FLIPRGON   
+	00185: FLIPRGON   
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:                      Y-Short X-Short Off
+	 34:                      Y-Short X-Short On
+	 35:        XDual                         On
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:        XDual         Y-Short X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:                      Y-Short X-Short Off
+	 42:  YDual                       X-Short On
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short Off
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short         On
+	 47:  YDual XDual         Y-Short         Off
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short On
+	 51:        XDual                         On
+	 52:  YDual                       X-Short On
+	 53:  YDual                       X-Short Off
+	 54:  YDual               Y-Short X-Short Off
+	 55:  YDual XDual         Y-Short         On
+	 56:  YDual XDual         Y-Short         Off
+	 57:  YDual XDual         Y-Short X-Short Off
+	 58:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   448,  1050)  ->  Abs (   448,  1050)
+	  1: Rel (     0,   -79)  ->  Abs (   448,   971)
+	  2: Rel (    56,    55)  ->  Abs (   504,  1026)
+	  3: Rel (    93,    44)  ->  Abs (   597,  1070)
+	  4: Rel (    59,     0)  ->  Abs (   656,  1070)
+	  5: Rel (    62,     0)  ->  Abs (   718,  1070)
+	  6: Rel (    94,   -56)  ->  Abs (   812,  1014)
+	  7: Rel (    41,   -85)  ->  Abs (   853,   929)
+	  8: Rel (     0,  -106)  ->  Abs (   853,   823)
+	  9: Rel (     0,  -243)  ->  Abs (   853,   580)
+	 10: Rel (    31,     1)  ->  Abs (   884,   581)
+	 11: Rel (    21,    -9)  ->  Abs (   905,   572)
+	 12: Rel (    13,   -18)  ->  Abs (   918,   554)
+	 13: Rel (     0,   -13)  ->  Abs (   918,   541)
+	 14: Rel (     0,   -12)  ->  Abs (   918,   529)
+	 15: Rel (   -13,   -19)  ->  Abs (   905,   510)
+	 16: Rel (   -20,    -8)  ->  Abs (   885,   502)
+	 17: Rel (   -32,     0)  ->  Abs (   853,   502)
+	 18: Rel (   -79,     0)  ->  Abs (   774,   502)
+	 19: Rel (   -31,     0)  ->  Abs (   743,   502)
+	 20: Rel (   -21,     8)  ->  Abs (   722,   510)
+	 21: Rel (   -13,    19)  ->  Abs (   709,   529)
+	 22: Rel (     0,    12)  ->  Abs (   709,   541)
+	 23: Rel (     0,    13)  ->  Abs (   709,   554)
+	 24: Rel (    13,    18)  ->  Abs (   722,   572)
+	 25: Rel (    22,     9)  ->  Abs (   744,   581)
+	 26: Rel (    30,    -1)  ->  Abs (   774,   580)
+	 27: Rel (     0,   248)  ->  Abs (   774,   828)
+	 28: Rel (     0,    78)  ->  Abs (   774,   906)
+	 29: Rel (   -22,    51)  ->  Abs (   752,   957)
+	 30: Rel (   -58,    35)  ->  Abs (   694,   992)
+	 31: Rel (   -41,     0)  ->  Abs (   653,   992)
+	 32: Rel (   -47,     0)  ->  Abs (   606,   992)
+	 33: Rel (   -94,   -51)  ->  Abs (   512,   941)
+	 34: Rel (   -64,   -79)  ->  Abs (   448,   862)
+	 35: Rel (     0,  -282)  ->  Abs (   448,   580)
+	 36: Rel (    30,     0)  ->  Abs (   478,   580)
+	 37: Rel (    31,     0)  ->  Abs (   509,   580)
+	 38: Rel (    25,   -21)  ->  Abs (   534,   559)
+	 39: Rel (     0,   -17)  ->  Abs (   534,   542)
+	 40: Rel (     0,   -19)  ->  Abs (   534,   523)
+	 41: Rel (   -25,   -21)  ->  Abs (   509,   502)
+	 42: Rel (   -31,     0)  ->  Abs (   478,   502)
+	 43: Rel (  -139,     0)  ->  Abs (   339,   502)
+	 44: Rel (   -31,     0)  ->  Abs (   308,   502)
+	 45: Rel (   -25,    21)  ->  Abs (   283,   523)
+	 46: Rel (     0,    19)  ->  Abs (   283,   542)
+	 47: Rel (     0,    17)  ->  Abs (   283,   559)
+	 48: Rel (    25,    21)  ->  Abs (   308,   580)
+	 49: Rel (    31,     0)  ->  Abs (   339,   580)
+	 50: Rel (    30,     0)  ->  Abs (   369,   580)
+	 51: Rel (     0,   392)  ->  Abs (   369,   972)
+	 52: Rel (   -30,     0)  ->  Abs (   339,   972)
+	 53: Rel (   -31,     0)  ->  Abs (   308,   972)
+	 54: Rel (   -25,    21)  ->  Abs (   283,   993)
+	 55: Rel (     0,    18)  ->  Abs (   283,  1011)
+	 56: Rel (     0,    18)  ->  Abs (   283,  1029)
+	 57: Rel (    25,    21)  ->  Abs (   308,  1050)
+	 58: Rel (    31,     0)  ->  Abs (   339,  1050)
+
+	Glyph 311: off = 0x00012452, len = 726
+	  numberOfContours:	4
+	  xMin:			14
+	  yMin:			-14
+	  xMax:			1214
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  34
+	  1:  45
+	  2:  91
+	  3:  161
+
+	  Length of Instructions:	294
+	00000: NPUSHB      (73):    11   106    11   107     2   119   154   135   154     2 
+	                           155   124   155   154     2    16     9    12   155    17 
+	                            17    50     9     2     8     5   155     1     1    50 
+	                             8    19    25    22   155    18    18    50    25   144 
+	                           153    30   114   154   156   152    34    96     0     1 
+	                             0    36    96    35     1    35    36     0    44    45 
+	                            36    26     2    25     2   152    91   118   118   146 
+	                           110    44   159 
+	00075: PUSHW[1]            771 
+	00078: NPUSHB      (19):    47    53    77    91    46    88   210    47    83    64 
+	                            18    58    52    83     9     8   139   116   133 
+	00099: PUSHW[1]            771 
+	00102: PUSHB[6]            146    44   125    59    44    71 
+	00109: PUSHW[3]            771   125   771 
+	00116: NPUSHB      (12):     8    10   149    44   122    26   163    92    91   108 
+	                           193    98 
+	00130: PUSHW[1]            271 
+	00133: NPUSHB       (9):   163   114    44   156   142    91   156    52   136 
+	00144: PUSHW[1]            267 
+	00147: NPUSHB      (33):    67   142   132    50    40    44    67   212    50   210 
+	                            30    30   163    55    36    75    55    91    36    85 
+	                            85    75   232    45     1    36    18    17    25   162 
+	                            80    68    24 
+	00182: CALL       
+	00183: FLIPOFF    
+	00184: SRP0       
+	00185: MIRP[srp0,nmd,rd,0] 
+	00186: ALIGNRP    
+	00187: FLIPON     
+	00188: MIRP[srp0,md,rd,1] 
+	00189: ALIGNRP    
+	00190: MIRP[srp0,nmd,rd,2] 
+	00191: ALIGNRP    
+	00192: SRP0       
+	00193: MIRP[srp0,md,rd,1] 
+	00194: ALIGNRP    
+	00195: SRP0       
+	00196: MIRP[srp0,md,rd,1] 
+	00197: SRP1       
+	00198: IP         
+	00199: MDAP[rd]   
+	00200: MIRP[nrp0,nmd,rd,0] 
+	00201: MIRP[nrp0,nmd,rd,0] 
+	00202: MIRP[nrp0,md,rd,1] 
+	00203: SRP0       
+	00204: MIRP[nrp0,nmd,rd,0] 
+	00205: SRP0       
+	00206: MIRP[srp0,nmd,rd,2] 
+	00207: MIRP[nrp0,nmd,rd,0] 
+	00208: MIRP[nrp0,md,rd,1] 
+	00209: SRP0       
+	00210: MIRP[nrp0,md,rd,1] 
+	00211: SRP0       
+	00212: MIRP[srp0,nmd,rd,2] 
+	00213: MIRP[nrp0,md,rd,1] 
+	00214: MIRP[nrp0,md,rd,1] 
+	00215: FLIPOFF    
+	00216: SRP0       
+	00217: MIRP[srp0,nmd,rd,2] 
+	00218: FLIPON     
+	00219: MIRP[nrp0,md,rd,1] 
+	00220: SVTCA[y-axis] 
+	00221: MIAP[rd+ci] 
+	00222: MIRP[srp0,nmd,rd,0] 
+	00223: MIRP[srp0,nmd,rd,0] 
+	00224: MIRP[nrp0,md,rd,1] 
+	00225: SRP0       
+	00226: MIRP[nrp0,md,rd,1] 
+	00227: MIRP[srp0,nmd,rd,0] 
+	00228: MIRP[nrp0,md,rd,1] 
+	00229: MIAP[rd+ci] 
+	00230: MDAP[rd]   
+	00231: CALL       
+	00232: ALIGNRP    
+	00233: MIRP[nrp0,nmd,rd,0] 
+	00234: ALIGNRP    
+	00235: MIRP[srp0,md,rd,1] 
+	00236: ALIGNRP    
+	00237: SRP0       
+	00238: MIRP[srp0,nmd,rd,0] 
+	00239: MIRP[nrp0,md,rd,1] 
+	00240: SRP1       
+	00241: IP         
+	00242: MDAP[rd]   
+	00243: MIRP[nrp0,md,rd,1] 
+	00244: MIAP[rd+ci] 
+	00245: MIAP[rd+ci] 
+	00246: MIRP[srp0,md,rd,1] 
+	00247: ALIGNRP    
+	00248: MDAP[rd]   
+	00249: MIRP[srp0,md,rd,1] 
+	00250: DELTAP1    
+	00251: ALIGNRP    
+	00252: SRP0       
+	00253: DELTAP1    
+	00254: ALIGNRP    
+	00255: SRP1       
+	00256: SRP2       
+	00257: IP         
+	00258: SVTCA[x-axis] 
+	00259: SRP1       
+	00260: SRP2       
+	00261: IP         
+	00262: IP         
+	00263: SVTCA[y-axis] 
+	00264: SRP0       
+	00265: MIRP[nrp0,md,rd,1] 
+	00266: SVTCA[x-axis] 
+	00267: SRP0       
+	00268: MIRP[srp0,nmd,rd,1] 
+	00269: MDRP[srp0,nmd,rd,0] 
+	00270: ALIGNRP    
+	00271: SVTCA[y-axis] 
+	00272: SRP0       
+	00273: MIRP[nrp0,md,rd,1] 
+	00274: SVTCA[x-axis] 
+	00275: SRP0       
+	00276: MIRP[srp0,nmd,rd,1] 
+	00277: MDRP[srp0,nmd,rd,0] 
+	00278: ALIGNRP    
+	00279: SVTCA[y-axis] 
+	00280: SRP0       
+	00281: MIRP[nrp0,md,rd,1] 
+	00282: SVTCA[x-axis] 
+	00283: SRP0       
+	00284: MIRP[srp0,nmd,rd,1] 
+	00285: MDRP[srp0,nmd,rd,0] 
+	00286: ALIGNRP    
+	00287: IUP[y]     
+	00288: IUP[x]     
+	00289: SVTCA[y-axis] 
+	00290: DELTAP1    
+	00291: DELTAP2    
+	00292: SVTCA[x-axis] 
+	00293: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:        XDual                         On
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual                               On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:                      Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual               Y-Short         On
+	 36:  YDual                               On
+	 37:  YDual XDual                 X-Short Off
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short On
+	 46:                                      On
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short Off
+	 49:        XDual         Y-Short X-Short Off
+	 50:        XDual         Y-Short         On
+	 51:        XDual         Y-Short         Off
+	 52:                      Y-Short X-Short Off
+	 53:  YDual                       X-Short On
+	 54:  YDual                       X-Short On
+	 55:        XDual         Y-Short         On
+	 56:        XDual         Y-Short         Off
+	 57:        XDual         Y-Short X-Short Off
+	 58:        XDual         Y-Short X-Short Off
+	 59:  YDual XDual                 X-Short On
+	 60:  YDual XDual                 X-Short Off
+	 61:  YDual XDual         Y-Short X-Short On
+	 62:  YDual XDual         Y-Short X-Short Off
+	 63:  YDual XDual                 X-Short On
+	 64:  YDual XDual                 X-Short Off
+	 65:        XDual         Y-Short X-Short On
+	 66:        XDual         Y-Short X-Short Off
+	 67:        XDual         Y-Short         On
+	 68:        XDual         Y-Short         Off
+	 69:                      Y-Short X-Short On
+	 70:                      Y-Short X-Short Off
+	 71:  YDual                       X-Short On
+	 72:  YDual                       X-Short Off
+	 73:  YDual               Y-Short X-Short Off
+	 74:  YDual               Y-Short X-Short Off
+	 75:  YDual XDual         Y-Short         On
+	 76:  YDual XDual         Y-Short         On
+	 77:  YDual                       X-Short On
+	 78:  YDual                       X-Short Off
+	 79:  YDual               Y-Short X-Short Off
+	 80:  YDual XDual         Y-Short         On
+	 81:  YDual XDual         Y-Short         Off
+	 82:  YDual XDual         Y-Short X-Short Off
+	 83:  YDual XDual         Y-Short X-Short Off
+	 84:  YDual XDual                 X-Short On
+	 85:  YDual XDual         Y-Short         On
+	 86:  YDual XDual         Y-Short         Off
+	 87:  YDual XDual         Y-Short X-Short Off
+	 88:  YDual XDual                 X-Short On
+	 89:  YDual XDual                 X-Short Off
+	 90:        XDual         Y-Short X-Short Off
+	 91:        XDual         Y-Short         On
+	 92:                      Y-Short         On
+	 93:  YDual XDual         Y-Short X-Short Off
+	 94:  YDual XDual         Y-Short X-Short Off
+	 95:  YDual XDual                 X-Short On
+	 96:  YDual XDual                 X-Short Off
+	 97:        XDual         Y-Short X-Short Off
+	 98:        XDual         Y-Short         On
+	 99:        XDual         Y-Short         Off
+	100:                      Y-Short X-Short On
+	101:                      Y-Short X-Short Off
+	102:                      Y-Short X-Short Off
+	103:  YDual                       X-Short On
+	104:  YDual                       X-Short Off
+	105:  YDual               Y-Short X-Short On
+	106:  YDual               Y-Short X-Short Off
+	107:  YDual               Y-Short X-Short Off
+	108:  YDual               Y-Short X-Short On
+	109:  YDual               Y-Short X-Short Off
+	110:  YDual                       X-Short On
+	111:  YDual                       X-Short Off
+	112:                      Y-Short X-Short On
+	113:                      Y-Short X-Short Off
+	114:        XDual         Y-Short         On
+	115:        XDual         Y-Short         Off
+	116:        XDual         Y-Short X-Short On
+	117:        XDual         Y-Short X-Short Off
+	118:        XDual         Y-Short X-Short On
+	119:        XDual         Y-Short X-Short Off
+	120:        XDual         Y-Short X-Short On
+	121:        XDual         Y-Short X-Short Off
+	122:        XDual         Y-Short         On
+	123:        XDual         Y-Short         Off
+	124:                      Y-Short X-Short Off
+	125:  YDual                       X-Short On
+	126:  YDual                       X-Short Off
+	127:  YDual               Y-Short X-Short Off
+	128:  YDual               Y-Short X-Short On
+	129:                      Y-Short X-Short Off
+	130:                      Y-Short X-Short On
+	131:                      Y-Short X-Short Off
+	132:  YDual                       X-Short On
+	133:  YDual                       X-Short Off
+	134:  YDual               Y-Short X-Short On
+	135:  YDual               Y-Short X-Short Off
+	136:  YDual XDual         Y-Short         On
+	137:  YDual XDual         Y-Short         Off
+	138:  YDual XDual         Y-Short X-Short Off
+	139:  YDual XDual                 X-Short On
+	140:  YDual XDual                 X-Short Off
+	141:        XDual         Y-Short X-Short Off
+	142:        XDual         Y-Short X-Short On
+	143:        XDual         Y-Short X-Short Off
+	144:        XDual         Y-Short X-Short On
+	145:        XDual         Y-Short X-Short Off
+	146:  YDual XDual                 X-Short On
+	147:  YDual XDual                 X-Short Off
+	148:  YDual XDual         Y-Short X-Short Off
+	149:  YDual XDual         Y-Short         On
+	150:  YDual XDual         Y-Short         Off
+	151:  YDual               Y-Short X-Short Off
+	152:  YDual               Y-Short X-Short On
+	153:  YDual               Y-Short X-Short Off
+	154:  YDual               Y-Short X-Short On
+	155:  YDual               Y-Short X-Short Off
+	156:  YDual XDual         Y-Short         On
+	157:  YDual XDual         Y-Short         Off
+	158:  YDual XDual         Y-Short X-Short Off
+	159:  YDual XDual                 X-Short On
+	160:  YDual XDual                 X-Short Off
+	161:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   230,   642)  ->  Abs (   230,   642)
+	  1: Rel (     0,  -558)  ->  Abs (   230,    84)
+	  2: Rel (    90,     0)  ->  Abs (   320,    84)
+	  3: Rel (    30,     0)  ->  Abs (   350,    84)
+	  4: Rel (    26,   -23)  ->  Abs (   376,    61)
+	  5: Rel (     0,   -19)  ->  Abs (   376,    42)
+	  6: Rel (     0,   -19)  ->  Abs (   376,    23)
+	  7: Rel (   -26,   -23)  ->  Abs (   350,     0)
+	  8: Rel (   -30,     0)  ->  Abs (   320,     0)
+	  9: Rel (  -250,     0)  ->  Abs (    70,     0)
+	 10: Rel (   -30,     0)  ->  Abs (    40,     0)
+	 11: Rel (   -26,    23)  ->  Abs (    14,    23)
+	 12: Rel (     0,    19)  ->  Abs (    14,    42)
+	 13: Rel (     0,    12)  ->  Abs (    14,    54)
+	 14: Rel (    13,    21)  ->  Abs (    27,    75)
+	 15: Rel (    19,     9)  ->  Abs (    46,    84)
+	 16: Rel (    24,     0)  ->  Abs (    70,    84)
+	 17: Rel (    76,     1)  ->  Abs (   146,    85)
+	 18: Rel (     0,  1001)  ->  Abs (   146,  1086)
+	 19: Rel (   -76,     0)  ->  Abs (    70,  1086)
+	 20: Rel (   -30,     0)  ->  Abs (    40,  1086)
+	 21: Rel (   -26,    23)  ->  Abs (    14,  1109)
+	 22: Rel (     0,    19)  ->  Abs (    14,  1128)
+	 23: Rel (     0,    19)  ->  Abs (    14,  1147)
+	 24: Rel (    26,    23)  ->  Abs (    40,  1170)
+	 25: Rel (    30,     0)  ->  Abs (    70,  1170)
+	 26: Rel (   395,     0)  ->  Abs (   465,  1170)
+	 27: Rel (   200,     0)  ->  Abs (   665,  1170)
+	 28: Rel (   167,   -66)  ->  Abs (   832,  1104)
+	 29: Rel (    86,  -124)  ->  Abs (   918,   980)
+	 30: Rel (     0,   -74)  ->  Abs (   918,   906)
+	 31: Rel (     0,   -74)  ->  Abs (   918,   832)
+	 32: Rel (   -82,  -125)  ->  Abs (   836,   707)
+	 33: Rel (  -148,   -65)  ->  Abs (   688,   642)
+	 34: Rel (  -152,     0)  ->  Abs (   536,   642)
+	 35: Rel (  -306,    84)  ->  Abs (   230,   726)
+	 36: Rel (   270,     0)  ->  Abs (   500,   726)
+	 37: Rel (   154,     0)  ->  Abs (   654,   726)
+	 38: Rel (   117,    42)  ->  Abs (   771,   768)
+	 39: Rel (    63,    90)  ->  Abs (   834,   858)
+	 40: Rel (     0,    49)  ->  Abs (   834,   907)
+	 41: Rel (     0,    50)  ->  Abs (   834,   957)
+	 42: Rel (   -61,    83)  ->  Abs (   773,  1040)
+	 43: Rel (  -132,    46)  ->  Abs (   641,  1086)
+	 44: Rel (  -168,     0)  ->  Abs (   473,  1086)
+	 45: Rel (  -243,     0)  ->  Abs (   230,  1086)
+	 46: Rel (   260,  -641)  ->  Abs (   490,   445)
+	 47: Rel (   229,     0)  ->  Abs (   719,   445)
+	 48: Rel (    30,     0)  ->  Abs (   749,   445)
+	 49: Rel (    26,   -23)  ->  Abs (   775,   422)
+	 50: Rel (     0,   -19)  ->  Abs (   775,   403)
+	 51: Rel (     0,   -19)  ->  Abs (   775,   384)
+	 52: Rel (   -26,   -23)  ->  Abs (   749,   361)
+	 53: Rel (   -30,     0)  ->  Abs (   719,   361)
+	 54: Rel (  -229,     0)  ->  Abs (   490,   361)
+	 55: Rel (     0,  -151)  ->  Abs (   490,   210)
+	 56: Rel (     0,   -75)  ->  Abs (   490,   135)
+	 57: Rel (    15,   -40)  ->  Abs (   505,    95)
+	 58: Rel (    37,   -25)  ->  Abs (   542,    70)
+	 59: Rel (    29,     0)  ->  Abs (   571,    70)
+	 60: Rel (    47,     0)  ->  Abs (   618,    70)
+	 61: Rel (    81,    29)  ->  Abs (   699,    99)
+	 62: Rel (    14,     5)  ->  Abs (   713,   104)
+	 63: Rel (    10,     0)  ->  Abs (   723,   104)
+	 64: Rel (    12,     0)  ->  Abs (   735,   104)
+	 65: Rel (    10,   -11)  ->  Abs (   745,    93)
+	 66: Rel (    12,   -14)  ->  Abs (   757,    79)
+	 67: Rel (     0,   -19)  ->  Abs (   757,    60)
+	 68: Rel (     0,   -29)  ->  Abs (   757,    31)
+	 69: Rel (   -49,   -19)  ->  Abs (   708,    12)
+	 70: Rel (   -66,   -26)  ->  Abs (   642,   -14)
+	 71: Rel (   -78,     0)  ->  Abs (   564,   -14)
+	 72: Rel (   -50,     0)  ->  Abs (   514,   -14)
+	 73: Rel (   -72,    42)  ->  Abs (   442,    28)
+	 74: Rel (   -37,    68)  ->  Abs (   405,    96)
+	 75: Rel (     0,    63)  ->  Abs (   405,   159)
+	 76: Rel (     0,   202)  ->  Abs (   405,   361)
+	 77: Rel (   -32,     0)  ->  Abs (   373,   361)
+	 78: Rel (   -31,     0)  ->  Abs (   342,   361)
+	 79: Rel (   -26,    23)  ->  Abs (   316,   384)
+	 80: Rel (     0,    19)  ->  Abs (   316,   403)
+	 81: Rel (     0,    14)  ->  Abs (   316,   417)
+	 82: Rel (    17,    22)  ->  Abs (   333,   439)
+	 83: Rel (    19,     6)  ->  Abs (   352,   445)
+	 84: Rel (    53,     0)  ->  Abs (   405,   445)
+	 85: Rel (     0,    85)  ->  Abs (   405,   530)
+	 86: Rel (     0,    30)  ->  Abs (   405,   560)
+	 87: Rel (    24,    26)  ->  Abs (   429,   586)
+	 88: Rel (    19,     0)  ->  Abs (   448,   586)
+	 89: Rel (    18,     0)  ->  Abs (   466,   586)
+	 90: Rel (    24,   -25)  ->  Abs (   490,   561)
+	 91: Rel (     0,   -31)  ->  Abs (   490,   530)
+	 92: Rel (   618,   -97)  ->  Abs (  1108,   433)
+	 93: Rel (     7,    22)  ->  Abs (  1115,   455)
+	 94: Rel (    21,    15)  ->  Abs (  1136,   470)
+	 95: Rel (    15,     0)  ->  Abs (  1151,   470)
+	 96: Rel (    16,     0)  ->  Abs (  1167,   470)
+	 97: Rel (    18,   -20)  ->  Abs (  1185,   450)
+	 98: Rel (     0,   -25)  ->  Abs (  1185,   425)
+	 99: Rel (     0,   -66)  ->  Abs (  1185,   359)
+	100: Rel (    -9,   -46)  ->  Abs (  1176,   313)
+	101: Rel (    -3,   -15)  ->  Abs (  1173,   298)
+	102: Rel (   -20,   -16)  ->  Abs (  1153,   282)
+	103: Rel (   -16,     0)  ->  Abs (  1137,   282)
+	104: Rel (   -14,     0)  ->  Abs (  1123,   282)
+	105: Rel (   -11,     8)  ->  Abs (  1112,   290)
+	106: Rel (    -7,     6)  ->  Abs (  1105,   296)
+	107: Rel (   -14,    46)  ->  Abs (  1091,   342)
+	108: Rel (   -18,    10)  ->  Abs (  1073,   352)
+	109: Rel (   -33,    20)  ->  Abs (  1040,   372)
+	110: Rel (   -49,     0)  ->  Abs (   991,   372)
+	111: Rel (   -49,     0)  ->  Abs (   942,   372)
+	112: Rel (   -28,   -21)  ->  Abs (   914,   351)
+	113: Rel (   -21,   -15)  ->  Abs (   893,   336)
+	114: Rel (     0,   -18)  ->  Abs (   893,   318)
+	115: Rel (     0,   -20)  ->  Abs (   893,   298)
+	116: Rel (    19,   -13)  ->  Abs (   912,   285)
+	117: Rel (    18,   -14)  ->  Abs (   930,   271)
+	118: Rel (    88,   -10)  ->  Abs (  1018,   261)
+	119: Rel (   116,   -14)  ->  Abs (  1134,   247)
+	120: Rel (    32,   -19)  ->  Abs (  1166,   228)
+	121: Rel (    48,   -31)  ->  Abs (  1214,   197)
+	122: Rel (     0,   -62)  ->  Abs (  1214,   135)
+	123: Rel (     0,   -62)  ->  Abs (  1214,    73)
+	124: Rel (   -97,   -84)  ->  Abs (  1117,   -11)
+	125: Rel (   -92,     0)  ->  Abs (  1025,   -11)
+	126: Rel (   -37,     0)  ->  Abs (   988,   -11)
+	127: Rel (   -69,    16)  ->  Abs (   919,     5)
+	128: Rel (   -32,    15)  ->  Abs (   887,    20)
+	129: Rel (    -6,   -19)  ->  Abs (   881,     1)
+	130: Rel (    -8,    -7)  ->  Abs (   873,    -6)
+	131: Rel (   -11,    -8)  ->  Abs (   862,   -14)
+	132: Rel (   -16,     0)  ->  Abs (   846,   -14)
+	133: Rel (   -23,     0)  ->  Abs (   823,   -14)
+	134: Rel (   -11,    18)  ->  Abs (   812,     4)
+	135: Rel (   -22,    35)  ->  Abs (   790,    39)
+	136: Rel (     0,    81)  ->  Abs (   790,   120)
+	137: Rel (     0,    29)  ->  Abs (   790,   149)
+	138: Rel (    26,    30)  ->  Abs (   816,   179)
+	139: Rel (    17,     0)  ->  Abs (   833,   179)
+	140: Rel (    15,     0)  ->  Abs (   848,   179)
+	141: Rel (    20,   -15)  ->  Abs (   868,   164)
+	142: Rel (     5,   -18)  ->  Abs (   873,   146)
+	143: Rel (     9,   -34)  ->  Abs (   882,   112)
+	144: Rel (    22,   -13)  ->  Abs (   904,    99)
+	145: Rel (    46,   -26)  ->  Abs (   950,    73)
+	146: Rel (    76,     0)  ->  Abs (  1026,    73)
+	147: Rel (    54,     0)  ->  Abs (  1080,    73)
+	148: Rel (    50,    36)  ->  Abs (  1130,   109)
+	149: Rel (     0,    18)  ->  Abs (  1130,   127)
+	150: Rel (     0,    14)  ->  Abs (  1130,   141)
+	151: Rel (   -29,    22)  ->  Abs (  1101,   163)
+	152: Rel (   -48,     5)  ->  Abs (  1053,   168)
+	153: Rel (  -140,    13)  ->  Abs (   913,   181)
+	154: Rel (   -37,    21)  ->  Abs (   876,   202)
+	155: Rel (   -68,    40)  ->  Abs (   808,   242)
+	156: Rel (     0,    75)  ->  Abs (   808,   317)
+	157: Rel (     0,    57)  ->  Abs (   808,   374)
+	158: Rel (    97,    81)  ->  Abs (   905,   455)
+	159: Rel (    89,     0)  ->  Abs (   994,   455)
+	160: Rel (    22,     0)  ->  Abs (  1016,   455)
+	161: Rel (    57,   -11)  ->  Abs (  1073,   444)
+
+	Glyph 312: off = 0x00012728, len = 164
+	  numberOfContours:	1
+	  xMin:			2
+	  yMin:			102
+	  xMax:			1227
+	  yMax:			568
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	104
+	00000: NPUSHB      (33):   231    10     1   167    10   183    10   198    10     3 
+	                           103    10   119    10   135    10     3     1     0   160 
+	                             4     9    10   160     4    48     7     7     5    48 
+	                             6     5     6 
+	00035: PUSHW[1]            388 
+	00038: NPUSHB       (9):    17     9    52     1    10    52     1    77     0 
+	00049: PUSHW[1]            774 
+	00052: NPUSHB      (14):     4     7   116    13     4   116    14    14    13    25 
+	                            16    75    68    24 
+	00068: CALL       
+	00069: FLIPOFF    
+	00070: SRP0       
+	00071: MIRP[srp0,nmd,rd,0] 
+	00072: ALIGNRP    
+	00073: FLIPON     
+	00074: SRP0       
+	00075: MIRP[nrp0,md,rd,1] 
+	00076: SRP0       
+	00077: MIRP[nrp0,md,rd,1] 
+	00078: SRP0       
+	00079: MIRP[srp0,nmd,rd,2] 
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: MIRP[nrp0,nmd,rd,0] 
+	00082: SRP0       
+	00083: MIRP[nrp0,nmd,rd,0] 
+	00084: SRP0       
+	00085: MIRP[srp0,nmd,rd,2] 
+	00086: ALIGNRP    
+	00087: SVTCA[y-axis] 
+	00088: MDAP[rd]   
+	00089: MIRP[nrp0,md,rd,1] 
+	00090: ALIGNRP    
+	00091: SRP0       
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: MIRP[srp0,md,rd,1] 
+	00094: ALIGNRP    
+	00095: SRP0       
+	00096: MIRP[srp0,md,rd,1] 
+	00097: ALIGNRP    
+	00098: IUP[y]     
+	00099: IUP[x]     
+	00100: SVTCA[x-axis] 
+	00101: DELTAP1    
+	00102: DELTAP1    
+	00103: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:  YDual                               On
+	  6:        XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short On
+	 10:  YDual                       X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   270,   568)  ->  Abs (   270,   568)
+	  1: Rel (    49,     0)  ->  Abs (   319,   568)
+	  2: Rel (   -38,   -77)  ->  Abs (   281,   491)
+	  3: Rel (   -38,   -60)  ->  Abs (   243,   431)
+	  4: Rel (   -50,   -63)  ->  Abs (   193,   368)
+	  5: Rel (  1034,     0)  ->  Abs (  1227,   368)
+	  6: Rel (     0,   -66)  ->  Abs (  1227,   302)
+	  7: Rel ( -1034,     0)  ->  Abs (   193,   302)
+	  8: Rel (    67,   -71)  ->  Abs (   260,   231)
+	  9: Rel (    61,  -129)  ->  Abs (   321,   102)
+	 10: Rel (   -50,     0)  ->  Abs (   271,   102)
+	 11: Rel (   -83,    93)  ->  Abs (   188,   195)
+	 12: Rel (  -122,    97)  ->  Abs (    66,   292)
+	 13: Rel (   -64,    30)  ->  Abs (     2,   322)
+	 14: Rel (     0,    30)  ->  Abs (     2,   352)
+	 15: Rel (   117,    50)  ->  Abs (   119,   402)
+
+	Glyph 313: off = 0x000127CC, len = 180
+	  numberOfContours:	1
+	  xMin:			381
+	  yMin:			-278
+	  xMax:			847
+	  yMax:			868
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	118
+	00000: PUSHW[6]            659    16     0   650    17   649 
+	00013: PUSHB[7]             16     8     9     1    10    11    15 
+	00021: PUSHW[1]            771 
+	00024: PUSHB[5]              7     0     7    77     6 
+	00030: PUSHW[3]            272    12   771 
+	00037: NPUSHB      (28):     9   116     3     3     2    11     2     6    10     9 
+	                            11    12     9    52     3    12    52     2    15     0 
+	                           160     2     7     6   160     3    48     2 
+	00067: PUSHW[1]            595 
+	00070: PUSHB[4]             16    72   120    24 
+	00075: CALL       
+	00076: SRP0       
+	00077: MIRP[srp0,nmd,rd,2] 
+	00078: MIRP[srp0,md,rd,1] 
+	00079: MIRP[srp0,nmd,rd,0] 
+	00080: ALIGNRP    
+	00081: SRP0       
+	00082: MIRP[srp0,nmd,rd,0] 
+	00083: ALIGNRP    
+	00084: SRP0       
+	00085: MIRP[nrp0,nmd,rd,0] 
+	00086: SRP0       
+	00087: MIRP[nrp0,nmd,rd,0] 
+	00088: SRP0       
+	00089: ALIGNRP    
+	00090: SRP0       
+	00091: ALIGNRP    
+	00092: SVTCA[y-axis] 
+	00093: MIAP[rd+ci] 
+	00094: MDAP[rd]   
+	00095: SRP0       
+	00096: ALIGNRP    
+	00097: SRP0       
+	00098: MIRP[srp0,md,rd,1] 
+	00099: MIRP[nrp0,nmd,rd,0] 
+	00100: MIRP[srp0,nmd,rd,2] 
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: ALIGNRP    
+	00103: SRP0       
+	00104: MIRP[nrp0,nmd,rd,0] 
+	00105: SRP0       
+	00106: ALIGNRP    
+	00107: IUP[y]     
+	00108: IUP[x]     
+	00109: SVTCA[y-axis] 
+	00110: DELTAP3    
+	00111: SVTCA[x-axis] 
+	00112: GC[cur p]  
+	00113: WCVTP      
+	00114: GC[cur p]  
+	00115: WCVTP      
+	00116: MD[cur]    
+	00117: WCVTP      
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual                 X-Short On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short         On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+	 12:        XDual                         On
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   381,   600)  ->  Abs (   381,   600)
+	  1: Rel (   166,   153)  ->  Abs (   547,   753)
+	  2: Rel (    50,   115)  ->  Abs (   597,   868)
+	  3: Rel (    30,     0)  ->  Abs (   627,   868)
+	  4: Rel (    31,   -64)  ->  Abs (   658,   804)
+	  5: Rel (    96,  -121)  ->  Abs (   754,   683)
+	  6: Rel (    93,   -83)  ->  Abs (   847,   600)
+	  7: Rel (     0,   -51)  ->  Abs (   847,   549)
+	  8: Rel (  -131,    62)  ->  Abs (   716,   611)
+	  9: Rel (   -69,    66)  ->  Abs (   647,   677)
+	 10: Rel (     0,  -955)  ->  Abs (   647,  -278)
+	 11: Rel (   -66,     0)  ->  Abs (   581,  -278)
+	 12: Rel (     0,   956)  ->  Abs (   581,   678)
+	 13: Rel (   -60,   -49)  ->  Abs (   521,   629)
+	 14: Rel (   -63,   -40)  ->  Abs (   458,   589)
+	 15: Rel (   -77,   -38)  ->  Abs (   381,   551)
+
+	Glyph 314: off = 0x00012880, len = 162
+	  numberOfContours:	1
+	  xMin:			2
+	  yMin:			102
+	  xMax:			1227
+	  yMax:			568
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	100
+	00000: NPUSHB      (43):   233     6     1   168     6   185     6   201     6     3 
+	                           104     6   120     6   136     6     3    15     0   160 
+	                            12     7     6   160    12    48     9     9    11    48 
+	                            10    11    10    25    16    15    52     7     0    52 
+	                             7    77     6 
+	00045: PUSHW[1]            774 
+	00048: NPUSHB      (13):     9    12   116     2     9   116     2     3    26    17 
+	                            75    68    24 
+	00063: CALL       
+	00064: FLIPOFF    
+	00065: SRP0       
+	00066: MIRP[srp0,nmd,rd,2] 
+	00067: ALIGNRP    
+	00068: FLIPON     
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: SRP0       
+	00071: MIRP[nrp0,md,rd,1] 
+	00072: SRP0       
+	00073: MIRP[srp0,nmd,rd,2] 
+	00074: MIRP[nrp0,md,rd,1] 
+	00075: MIRP[nrp0,nmd,rd,0] 
+	00076: SRP0       
+	00077: MIRP[nrp0,nmd,rd,0] 
+	00078: FLIPOFF    
+	00079: SRP0       
+	00080: MIRP[srp0,nmd,rd,0] 
+	00081: ALIGNRP    
+	00082: SVTCA[y-axis] 
+	00083: MDAP[rd]   
+	00084: FLIPON     
+	00085: MIRP[nrp0,md,rd,1] 
+	00086: ALIGNRP    
+	00087: SRP0       
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: MIRP[srp0,md,rd,1] 
+	00090: ALIGNRP    
+	00091: SRP0       
+	00092: MIRP[srp0,md,rd,1] 
+	00093: ALIGNRP    
+	00094: IUP[y]     
+	00095: IUP[x]     
+	00096: SVTCA[x-axis] 
+	00097: DELTAP1    
+	00098: DELTAP1    
+	00099: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short         On
+	  4:                      Y-Short X-Short Off
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:  YDual                       X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual                               On
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual                               On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   959,   568)  ->  Abs (   959,   568)
+	  1: Rel (   150,  -166)  ->  Abs (  1109,   402)
+	  2: Rel (   118,   -50)  ->  Abs (  1227,   352)
+	  3: Rel (     0,   -30)  ->  Abs (  1227,   322)
+	  4: Rel (   -65,   -30)  ->  Abs (  1162,   292)
+	  5: Rel (  -121,   -97)  ->  Abs (  1041,   195)
+	  6: Rel (   -83,   -93)  ->  Abs (   958,   102)
+	  7: Rel (   -50,     0)  ->  Abs (   908,   102)
+	  8: Rel (    61,   130)  ->  Abs (   969,   232)
+	  9: Rel (    67,    70)  ->  Abs (  1036,   302)
+	 10: Rel ( -1034,     0)  ->  Abs (     2,   302)
+	 11: Rel (     0,    66)  ->  Abs (     2,   368)
+	 12: Rel (  1034,     0)  ->  Abs (  1036,   368)
+	 13: Rel (   -49,    61)  ->  Abs (   987,   429)
+	 14: Rel (   -39,    63)  ->  Abs (   948,   492)
+	 15: Rel (   -39,    76)  ->  Abs (   909,   568)
+
+	Glyph 315: off = 0x00012922, len = 162
+	  numberOfContours:	1
+	  xMin:			381
+	  yMin:			-278
+	  xMax:			847
+	  yMax:			868
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	103
+	00000: PUSHB[3]              6     5     1 
+	00004: PUSHW[4]            771     9     0   771 
+	00013: PUSHB[3]              9    77    10 
+	00017: PUSHW[3]            272     4   771 
+	00024: NPUSHB      (27):     7   116    13    13    14    13    14     6     7     5 
+	                             4     7    52    13     4    52    14     9    10   160 
+	                            13     1     0   160    13    48    14 
+	00053: PUSHW[1]            595 
+	00056: PUSHB[8]             16     6     6     5     6    72   120    24 
+	00065: CALL       
+	00066: SVTCA[y-axis] 
+	00067: MIAP[rd+ci] 
+	00068: MIAP[rd+ci] 
+	00069: SVTCA[x-axis] 
+	00070: SRP0       
+	00071: MIRP[srp0,nmd,rd,2] 
+	00072: MIRP[nrp0,md,rd,1] 
+	00073: MIRP[srp0,nmd,rd,0] 
+	00074: ALIGNRP    
+	00075: SRP0       
+	00076: MIRP[srp0,nmd,rd,0] 
+	00077: ALIGNRP    
+	00078: SRP0       
+	00079: MIRP[nrp0,nmd,rd,0] 
+	00080: SRP0       
+	00081: MIRP[nrp0,nmd,rd,0] 
+	00082: SRP0       
+	00083: ALIGNRP    
+	00084: SRP0       
+	00085: ALIGNRP    
+	00086: SVTCA[y-axis] 
+	00087: MDAP[rd]   
+	00088: MDAP[rd]   
+	00089: SRP0       
+	00090: ALIGNRP    
+	00091: SRP0       
+	00092: MIRP[srp0,md,rd,1] 
+	00093: MIRP[nrp0,nmd,rd,0] 
+	00094: MIRP[srp0,nmd,rd,2] 
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: MIRP[nrp0,nmd,rd,0] 
+	00097: SRP0       
+	00098: MIRP[nrp0,nmd,rd,0] 
+	00099: SRP0       
+	00100: ALIGNRP    
+	00101: IUP[y]     
+	00102: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual XDual         Y-Short         On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short X-Short On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short         On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short Off
+	 13:                      Y-Short X-Short On
+	 14:  YDual                       X-Short On
+	 15:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   381,   -11)  ->  Abs (   381,   -11)
+	  1: Rel (     0,    50)  ->  Abs (   381,    39)
+	  2: Rel (    77,   -38)  ->  Abs (   458,     1)
+	  3: Rel (    63,   -40)  ->  Abs (   521,   -39)
+	  4: Rel (    60,   -49)  ->  Abs (   581,   -88)
+	  5: Rel (     0,   956)  ->  Abs (   581,   868)
+	  6: Rel (    66,     0)  ->  Abs (   647,   868)
+	  7: Rel (     0,  -955)  ->  Abs (   647,   -87)
+	  8: Rel (    69,    66)  ->  Abs (   716,   -21)
+	  9: Rel (   131,    62)  ->  Abs (   847,    41)
+	 10: Rel (     0,   -51)  ->  Abs (   847,   -10)
+	 11: Rel (   -93,   -83)  ->  Abs (   754,   -93)
+	 12: Rel (   -96,  -121)  ->  Abs (   658,  -214)
+	 13: Rel (   -31,   -64)  ->  Abs (   627,  -278)
+	 14: Rel (   -30,     0)  ->  Abs (   597,  -278)
+	 15: Rel (   -51,   118)  ->  Abs (   546,  -160)
+
+	Glyph 316: off = 0x000129C4, len = 232
+	  numberOfContours:	1
+	  xMin:			2
+	  yMin:			103
+	  xMax:			1227
+	  yMax:			569
+
+	EndPoints
+	---------
+	  0:  27
+
+	  Length of Instructions:	137
+	00000: NPUSHB      (10):     5     4   160     7    48    22    24    25   160    22 
+	00012: PUSHW[1]            771 
+	00015: NPUSHB      (13):     1    48     0    19    18    10    11   160     8    48 
+	                            18   160    21 
+	00030: PUSHW[1]            771 
+	00033: NPUSHB      (47):    14    48    15    22   116     0     5    77     4   215 
+	                             7   116     1     1     0    24    77    25   215     0 
+	                            26    29     8   116    14    21   116    15    10    77 
+	                            11   215    14    19    77    18   215    15    15    14 
+	                            25    28    15     0    75    68    24 
+	00082: CALL       
+	00083: SVTCA[y-axis] 
+	00084: MDAP[rd]   
+	00085: MDAP[rd]   
+	00086: SVTCA[x-axis] 
+	00087: FLIPOFF    
+	00088: SRP0       
+	00089: MIRP[srp0,nmd,rd,0] 
+	00090: ALIGNRP    
+	00091: FLIPON     
+	00092: SRP0       
+	00093: MIRP[srp0,nmd,rd,0] 
+	00094: MIRP[nrp0,md,rd,1] 
+	00095: SRP0       
+	00096: MIRP[srp0,nmd,rd,0] 
+	00097: MIRP[nrp0,md,rd,1] 
+	00098: SRP0       
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: SRP0       
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: FLIPOFF    
+	00103: SRP0       
+	00104: MIRP[srp0,nmd,rd,2] 
+	00105: FLIPON     
+	00106: MIRP[srp0,nmd,rd,0] 
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: SRP0       
+	00109: ALIGNRP    
+	00110: SRP0       
+	00111: MIRP[nrp0,md,rd,1] 
+	00112: MIRP[srp0,nmd,rd,0] 
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: SRP0       
+	00115: MIRP[nrp0,md,rd,1] 
+	00116: SVTCA[y-axis] 
+	00117: SRP0       
+	00118: MIRP[nrp0,md,rd,1] 
+	00119: MIRP[srp0,nmd,rd,0] 
+	00120: MIRP[nrp0,md,rd,1] 
+	00121: MIRP[srp0,md,rd,1] 
+	00122: MIRP[srp0,md,rd,1] 
+	00123: ALIGNRP    
+	00124: SRP0       
+	00125: ALIGNRP    
+	00126: SRP0       
+	00127: MIRP[nrp0,md,rd,1] 
+	00128: MIRP[srp0,nmd,rd,0] 
+	00129: MIRP[srp0,md,rd,1] 
+	00130: ALIGNRP    
+	00131: SRP0       
+	00132: MIRP[srp0,md,rd,1] 
+	00133: MIRP[srp0,md,rd,1] 
+	00134: ALIGNRP    
+	00135: IUP[y]     
+	00136: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:  YDual                       X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual                               On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short On
+	 11:  YDual                       X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual                 X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:  YDual                               On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual XDual                 X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1227,   350)  ->  Abs (  1227,   350)
+	  1: Rel (     0,   -29)  ->  Abs (  1227,   321)
+	  2: Rel (   -60,   -28)  ->  Abs (  1167,   293)
+	  3: Rel (  -120,   -95)  ->  Abs (  1047,   198)
+	  4: Rel (   -84,   -95)  ->  Abs (   963,   103)
+	  5: Rel (   -51,     0)  ->  Abs (   912,   103)
+	  6: Rel (    44,   111)  ->  Abs (   956,   214)
+	  7: Rel (    81,    90)  ->  Abs (  1037,   304)
+	  8: Rel (  -846,     0)  ->  Abs (   191,   304)
+	  9: Rel (    82,   -90)  ->  Abs (   273,   214)
+	 10: Rel (    44,  -111)  ->  Abs (   317,   103)
+	 11: Rel (   -52,     0)  ->  Abs (   265,   103)
+	 12: Rel (   -84,    95)  ->  Abs (   181,   198)
+	 13: Rel (  -119,    95)  ->  Abs (    62,   293)
+	 14: Rel (   -60,    28)  ->  Abs (     2,   321)
+	 15: Rel (     0,    29)  ->  Abs (     2,   350)
+	 16: Rel (    61,    28)  ->  Abs (    63,   378)
+	 17: Rel (   116,    93)  ->  Abs (   179,   471)
+	 18: Rel (    86,    98)  ->  Abs (   265,   569)
+	 19: Rel (    52,     0)  ->  Abs (   317,   569)
+	 20: Rel (   -45,  -112)  ->  Abs (   272,   457)
+	 21: Rel (   -81,   -90)  ->  Abs (   191,   367)
+	 22: Rel (   846,     0)  ->  Abs (  1037,   367)
+	 23: Rel (   -80,    90)  ->  Abs (   957,   457)
+	 24: Rel (   -45,   112)  ->  Abs (   912,   569)
+	 25: Rel (    51,     0)  ->  Abs (   963,   569)
+	 26: Rel (    87,   -98)  ->  Abs (  1050,   471)
+	 27: Rel (   116,   -93)  ->  Abs (  1166,   378)
+
+	Glyph 317: off = 0x00012AAC, len = 226
+	  numberOfContours:	1
+	  xMin:			381
+	  yMin:			-277
+	  xMax:			847
+	  yMax:			948
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	138
+	00000: PUSHB[3]              4    77     3 
+	00004: PUSHW[1]            272 
+	00007: PUSHB[6]              6     6    20    22    77    23 
+	00014: PUSHW[1]            272 
+	00017: PUSHB[7]             20   116     1     0     9    77    10 
+	00025: PUSHW[1]            272 
+	00028: PUSHB[6]              7     7    19    17    77    16 
+	00035: PUSHW[1]            272 
+	00038: NPUSHB      (45):    19   116    12    13     6    52     1    20    52     0 
+	                             4     3   160     1    22    23   160     1    48     0 
+	                             7    52    12    19    52    13     9    10   160    10 
+	                           160    12    17    16   160    12    48    13     0    13 
+	                            13     0    72   120    24 
+	00085: CALL       
+	00086: SVTCA[y-axis] 
+	00087: MDAP[rd]   
+	00088: MDAP[rd]   
+	00089: SVTCA[x-axis] 
+	00090: MDAP[rd]   
+	00091: MDAP[rd]   
+	00092: SRP0       
+	00093: MIRP[nrp0,md,rd,1] 
+	00094: MIRP[srp0,nmd,rd,0] 
+	00095: ALIGNRP    
+	00096: SRP0       
+	00097: MIRP[nrp0,nmd,rd,0] 
+	00098: MIRP[srp0,nmd,rd,0] 
+	00099: ALIGNRP    
+	00100: SRP0       
+	00101: MIRP[nrp0,nmd,rd,0] 
+	00102: SRP0       
+	00103: MIRP[nrp0,nmd,rd,0] 
+	00104: SRP0       
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: MIRP[srp0,nmd,rd,0] 
+	00107: ALIGNRP    
+	00108: SRP0       
+	00109: MIRP[srp0,nmd,rd,0] 
+	00110: ALIGNRP    
+	00111: SRP0       
+	00112: MIRP[nrp0,nmd,rd,0] 
+	00113: SRP0       
+	00114: MIRP[nrp0,nmd,rd,0] 
+	00115: SVTCA[y-axis] 
+	00116: SRP0       
+	00117: ALIGNRP    
+	00118: MIRP[srp0,md,rd,1] 
+	00119: MIRP[srp0,nmd,rd,2] 
+	00120: MIRP[nrp0,md,rd,1] 
+	00121: SRP0       
+	00122: ALIGNRP    
+	00123: SRP0       
+	00124: MIRP[srp0,nmd,rd,2] 
+	00125: MIRP[nrp0,md,rd,1] 
+	00126: SRP0       
+	00127: ALIGNRP    
+	00128: MIRP[srp0,md,rd,1] 
+	00129: MIRP[srp0,nmd,rd,2] 
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: SRP0       
+	00132: ALIGNRP    
+	00133: SRP0       
+	00134: MIRP[srp0,nmd,rd,2] 
+	00135: MIRP[nrp0,md,rd,1] 
+	00136: IUP[y]     
+	00137: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short         On
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:        XDual                         On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short         On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual                       X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual XDual         Y-Short         On
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual                         On
+	 21:                      Y-Short X-Short Off
+	 22:                      Y-Short X-Short On
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   599,   948)  ->  Abs (   599,   948)
+	  1: Rel (    30,     0)  ->  Abs (   629,   948)
+	  2: Rel (    56,  -122)  ->  Abs (   685,   826)
+	  3: Rel (   162,  -141)  ->  Abs (   847,   685)
+	  4: Rel (     0,   -52)  ->  Abs (   847,   633)
+	  5: Rel (  -110,    44)  ->  Abs (   737,   677)
+	  6: Rel (   -91,    82)  ->  Abs (   646,   759)
+	  7: Rel (     0,  -846)  ->  Abs (   646,   -87)
+	  8: Rel (    90,    81)  ->  Abs (   736,    -6)
+	  9: Rel (   111,    44)  ->  Abs (   847,    38)
+	 10: Rel (     0,   -51)  ->  Abs (   847,   -13)
+	 11: Rel (  -161,  -141)  ->  Abs (   686,  -154)
+	 12: Rel (   -57,  -123)  ->  Abs (   629,  -277)
+	 13: Rel (   -30,     0)  ->  Abs (   599,  -277)
+	 14: Rel (   -28,    62)  ->  Abs (   571,  -215)
+	 15: Rel (   -95,   118)  ->  Abs (   476,   -97)
+	 16: Rel (   -95,    84)  ->  Abs (   381,   -13)
+	 17: Rel (     0,    51)  ->  Abs (   381,    38)
+	 18: Rel (   112,   -45)  ->  Abs (   493,    -7)
+	 19: Rel (    89,   -80)  ->  Abs (   582,   -87)
+	 20: Rel (     0,   846)  ->  Abs (   582,   759)
+	 21: Rel (   -91,   -82)  ->  Abs (   491,   677)
+	 22: Rel (  -110,   -44)  ->  Abs (   381,   633)
+	 23: Rel (     0,    52)  ->  Abs (   381,   685)
+	 24: Rel (    96,    84)  ->  Abs (   477,   769)
+	 25: Rel (    94,   118)  ->  Abs (   571,   887)
+
+	Glyph 318: off = 0x00012B8E, len = 262
+	  numberOfContours:	2
+	  xMin:			381
+	  yMin:			-402
+	  xMax:			847
+	  yMax:			948
+
+	EndPoints
+	---------
+	  0:  25
+	  1:  29
+
+	  Length of Instructions:	159
+	00000: PUSHB[8]              7     6     1     4    22    77     3    23 
+	00009: PUSHW[1]            272 
+	00012: NPUSHB      (11):     6    20   116     1     0     9    17    10    17    77 
+	                            16 
+	00025: PUSHW[1]            272 
+	00028: PUSHB[5]              7    19   116    12    13 
+	00034: PUSHW[1]            768 
+	00037: NPUSHB      (50):    27    26    48    28    29     0     4     3   160     1 
+	                            22    23   160     0     1    52     6     0    52    20 
+	                             6     7    20    19     7    52    12    19    52    13 
+	                             9    10    17    16    10   160    12    16   160    13 
+	                            28    27   160    12    29    26   160    12    48    13 
+	00089: PUSHW[1]            326 
+	00092: PUSHB[4]             30    72   120    24 
+	00097: CALL       
+	00098: SRP0       
+	00099: MIRP[srp0,nmd,rd,0] 
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: MIRP[srp0,nmd,rd,0] 
+	00102: ALIGNRP    
+	00103: SRP0       
+	00104: MIRP[srp0,nmd,rd,0] 
+	00105: ALIGNRP    
+	00106: SRP0       
+	00107: MIRP[nrp0,nmd,rd,0] 
+	00108: SRP0       
+	00109: MIRP[nrp0,nmd,rd,0] 
+	00110: SRP0       
+	00111: ALIGNRP    
+	00112: SRP0       
+	00113: ALIGNRP    
+	00114: SRP0       
+	00115: MIRP[nrp0,nmd,rd,0] 
+	00116: SRP0       
+	00117: MIRP[nrp0,nmd,rd,0] 
+	00118: SRP0       
+	00119: ALIGNRP    
+	00120: SRP0       
+	00121: ALIGNRP    
+	00122: SRP0       
+	00123: MIRP[nrp0,nmd,rd,0] 
+	00124: SRP0       
+	00125: MIRP[nrp0,nmd,rd,0] 
+	00126: SRP0       
+	00127: MIRP[srp0,nmd,rd,0] 
+	00128: ALIGNRP    
+	00129: SRP0       
+	00130: MIRP[srp0,nmd,rd,0] 
+	00131: ALIGNRP    
+	00132: SVTCA[y-axis] 
+	00133: MDAP[rd]   
+	00134: MDAP[rd]   
+	00135: ALIGNRP    
+	00136: MIRP[srp0,md,rd,1] 
+	00137: ALIGNRP    
+	00138: MIRP[srp0,nmd,rd,2] 
+	00139: ALIGNRP    
+	00140: MIRP[srp0,md,rd,1] 
+	00141: ALIGNRP    
+	00142: MIRP[srp0,nmd,rd,2] 
+	00143: MIRP[nrp0,md,rd,1] 
+	00144: ALIGNRP    
+	00145: SRP0       
+	00146: ALIGNRP    
+	00147: SRP0       
+	00148: ALIGNRP    
+	00149: MIRP[srp0,md,rd,1] 
+	00150: ALIGNRP    
+	00151: MIRP[srp0,nmd,rd,2] 
+	00152: ALIGNRP    
+	00153: MIRP[srp0,md,rd,1] 
+	00154: ALIGNRP    
+	00155: IUP[y]     
+	00156: IUP[x]     
+	00157: SVTCA[x-axis] 
+	00158: DELTAP3    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short         On
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:        XDual                         On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short         On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual                       X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual XDual         Y-Short         On
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual                         On
+	 21:                      Y-Short X-Short Off
+	 22:                      Y-Short X-Short On
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:                              X-Short On
+	 27:  YDual                               On
+	 28:        XDual         Y-Short         On
+	 29:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   599,   948)  ->  Abs (   599,   948)
+	  1: Rel (    30,     0)  ->  Abs (   629,   948)
+	  2: Rel (    56,  -122)  ->  Abs (   685,   826)
+	  3: Rel (   162,  -141)  ->  Abs (   847,   685)
+	  4: Rel (     0,   -52)  ->  Abs (   847,   633)
+	  5: Rel (  -110,    44)  ->  Abs (   737,   677)
+	  6: Rel (   -91,    82)  ->  Abs (   646,   759)
+	  7: Rel (     0,  -846)  ->  Abs (   646,   -87)
+	  8: Rel (    90,    81)  ->  Abs (   736,    -6)
+	  9: Rel (   111,    44)  ->  Abs (   847,    38)
+	 10: Rel (     0,   -51)  ->  Abs (   847,   -13)
+	 11: Rel (  -161,  -141)  ->  Abs (   686,  -154)
+	 12: Rel (   -57,  -123)  ->  Abs (   629,  -277)
+	 13: Rel (   -30,     0)  ->  Abs (   599,  -277)
+	 14: Rel (   -28,    62)  ->  Abs (   571,  -215)
+	 15: Rel (   -95,   118)  ->  Abs (   476,   -97)
+	 16: Rel (   -95,    84)  ->  Abs (   381,   -13)
+	 17: Rel (     0,    51)  ->  Abs (   381,    38)
+	 18: Rel (   112,   -45)  ->  Abs (   493,    -7)
+	 19: Rel (    89,   -80)  ->  Abs (   582,   -87)
+	 20: Rel (     0,   846)  ->  Abs (   582,   759)
+	 21: Rel (   -91,   -82)  ->  Abs (   491,   677)
+	 22: Rel (  -110,   -44)  ->  Abs (   381,   633)
+	 23: Rel (     0,    52)  ->  Abs (   381,   685)
+	 24: Rel (    96,    84)  ->  Abs (   477,   769)
+	 25: Rel (    94,   118)  ->  Abs (   571,   887)
+	 26: Rel (  -189, -1226)  ->  Abs (   382,  -339)
+	 27: Rel (   465,     0)  ->  Abs (   847,  -339)
+	 28: Rel (     0,   -63)  ->  Abs (   847,  -402)
+	 29: Rel (  -465,     0)  ->  Abs (   382,  -402)
+
+	Glyph 319: off = 0x00012C94, len = 78
+	  numberOfContours:	1
+	  xMin:			2
+	  yMin:			0
+	  xMax:			1227
+	  yMax:			1223
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	46
+	00000: PUSHW[2]              1   259 
+	00005: NPUSHB      (20):     5     3     2    36     4     5    10     3    26     7 
+	                             1     2    36     0     5    52     6    75    68    24 
+	00027: CALL       
+	00028: SRP0       
+	00029: MIRP[srp0,nmd,rd,0] 
+	00030: ALIGNRP    
+	00031: MIRP[srp0,md,rd,1] 
+	00032: ALIGNRP    
+	00033: FLIPOFF    
+	00034: SRP0       
+	00035: MIRP[nrp0,nmd,rd,2] 
+	00036: SVTCA[y-axis] 
+	00037: MIAP[rd+ci] 
+	00038: ALIGNRP    
+	00039: FLIPON     
+	00040: MIRP[srp0,md,rd,1] 
+	00041: ALIGNRP    
+	00042: SRP0       
+	00043: MIRP[nrp0,md,rd,1] 
+	00044: IUP[y]     
+	00045: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:        XDual         Y-Short         On
+	  5:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (     2,  1223)  ->  Abs (     2,  1223)
+	  1: Rel (    95,     0)  ->  Abs (    97,  1223)
+	  2: Rel (     0, -1128)  ->  Abs (    97,    95)
+	  3: Rel (  1130,     0)  ->  Abs (  1227,    95)
+	  4: Rel (     0,   -95)  ->  Abs (  1227,     0)
+	  5: Rel ( -1225,     0)  ->  Abs (     2,     0)
+
+	Glyph 320: off = 0x00012CE2, len = 164
+	  numberOfContours:	1
+	  xMin:			169
+	  yMin:			-33
+	  xMax:			1060
+	  yMax:			1197
+
+	EndPoints
+	---------
+	  0:  31
+
+	  Length of Instructions:	68
+	00000: NPUSHB      (45):   123    19   123    23     2   105    19   105    23     2 
+	                            21    37     5     3    29     9    13     9    17    16 
+	                            30     9   160    10     1    10    25    26    30     1 
+	                           127     0   143     0   159     0     3    79     0    95 
+	                             0   111     0     3     0 
+	00047: MDAP[rd]   
+	00048: DELTAP1    
+	00049: DELTAP1    
+	00050: ALIGNRP    
+	00051: MIRP[srp0,md,rd,1] 
+	00052: ALIGNRP    
+	00053: MDAP[rd]   
+	00054: DELTAP1    
+	00055: ALIGNRP    
+	00056: MIRP[srp0,md,rd,1] 
+	00057: ALIGNRP    
+	00058: SVTCA[y-axis] 
+	00059: MIAP[rd+ci] 
+	00060: MIAP[rd+ci] 
+	00061: MIAP[rd+ci] 
+	00062: MIRP[nrp0,md,rd,1] 
+	00063: IUP[y]     
+	00064: IUP[x]     
+	00065: SVTCA[y-axis] 
+	00066: DELTAP1    
+	00067: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual         Y-Short         Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual                         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:        XDual                         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual                         On
+	 27:        XDual         Y-Short         Off
+	 28:                      Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   169,    23)  ->  Abs (   169,    23)
+	  1: Rel (     0,   698)  ->  Abs (   169,   721)
+	  2: Rel (     0,   170)  ->  Abs (   169,   891)
+	  3: Rel (   105,   193)  ->  Abs (   274,  1084)
+	  4: Rel (   197,   113)  ->  Abs (   471,  1197)
+	  5: Rel (   145,     0)  ->  Abs (   616,  1197)
+	  6: Rel (   140,     0)  ->  Abs (   756,  1197)
+	  7: Rel (   203,  -118)  ->  Abs (   959,  1079)
+	  8: Rel (   101,  -188)  ->  Abs (  1060,   891)
+	  9: Rel (     0,  -170)  ->  Abs (  1060,   721)
+	 10: Rel (     0,  -698)  ->  Abs (  1060,    23)
+	 11: Rel (     0,   -30)  ->  Abs (  1060,    -7)
+	 12: Rel (   -24,   -26)  ->  Abs (  1036,   -33)
+	 13: Rel (   -19,     0)  ->  Abs (  1017,   -33)
+	 14: Rel (   -18,     0)  ->  Abs (   999,   -33)
+	 15: Rel (   -24,    26)  ->  Abs (   975,    -7)
+	 16: Rel (     0,    30)  ->  Abs (   975,    23)
+	 17: Rel (     0,   659)  ->  Abs (   975,   682)
+	 18: Rel (     0,   171)  ->  Abs (   975,   853)
+	 19: Rel (   -83,   164)  ->  Abs (   892,  1017)
+	 20: Rel (  -160,    96)  ->  Abs (   732,  1113)
+	 21: Rel (  -119,     0)  ->  Abs (   613,  1113)
+	 22: Rel (  -116,     0)  ->  Abs (   497,  1113)
+	 23: Rel (  -163,   -98)  ->  Abs (   334,  1015)
+	 24: Rel (   -81,  -161)  ->  Abs (   253,   854)
+	 25: Rel (     0,  -172)  ->  Abs (   253,   682)
+	 26: Rel (     0,  -659)  ->  Abs (   253,    23)
+	 27: Rel (     0,   -30)  ->  Abs (   253,    -7)
+	 28: Rel (   -23,   -26)  ->  Abs (   230,   -33)
+	 29: Rel (   -19,     0)  ->  Abs (   211,   -33)
+	 30: Rel (   -19,     0)  ->  Abs (   192,   -33)
+	 31: Rel (   -23,    26)  ->  Abs (   169,    -7)
+
+	Glyph 321: off = 0x00012D86, len = 206
+	  numberOfContours:	3
+	  xMin:			101
+	  yMin:			243
+	  xMax:			1129
+	  yMax:			931
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  27
+	  2:  41
+
+	  Length of Instructions:	77
+	00000: PUSHB[6]             29    36     0    35     1    35 
+	00007: PUSHW[1]            759 
+	00010: PUSHB[6]             15    36     0    21     1    21 
+	00017: PUSHW[1]            759 
+	00020: PUSHB[6]              1    36    15     7     1     7 
+	00027: PUSHW[1]            533 
+	00030: NPUSHB      (14):    31    29    47    29     2    29    25    11    39   132 
+	                            43    18     4    32 
+	00046: PUSHW[1]            772 
+	00049: PUSHB[4]             42    79   123    24 
+	00054: CALL       
+	00055: SRP0       
+	00056: MIRP[srp0,nmd,rd,2] 
+	00057: ALIGNRP    
+	00058: ALIGNRP    
+	00059: SRP0       
+	00060: MIRP[srp0,nmd,rd,0] 
+	00061: ALIGNRP    
+	00062: ALIGNRP    
+	00063: SVTCA[y-axis] 
+	00064: MDAP[rd]   
+	00065: DELTAP1    
+	00066: MIRP[srp0,md,rd,1] 
+	00067: DELTAP1    
+	00068: MIRP[nrp0,md,rd,1] 
+	00069: MIRP[srp0,nmd,rd,0] 
+	00070: DELTAP1    
+	00071: MIRP[nrp0,md,rd,1] 
+	00072: MIRP[srp0,nmd,rd,0] 
+	00073: DELTAP1    
+	00074: MIRP[nrp0,md,rd,1] 
+	00075: IUP[y]     
+	00076: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual                               On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+	 14:                              X-Short On
+	 15:  YDual                               On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual                               On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:                      Y-Short X-Short Off
+	 28:                              X-Short On
+	 29:  YDual                               On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual                               On
+	 37:  YDual XDual                 X-Short Off
+	 38:        XDual         Y-Short X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1073,   846)  ->  Abs (  1073,   846)
+	  1: Rel (  -916,     0)  ->  Abs (   157,   846)
+	  2: Rel (   -30,     0)  ->  Abs (   127,   846)
+	  3: Rel (   -26,    24)  ->  Abs (   101,   870)
+	  4: Rel (     0,    18)  ->  Abs (   101,   888)
+	  5: Rel (     0,    19)  ->  Abs (   101,   907)
+	  6: Rel (    26,    24)  ->  Abs (   127,   931)
+	  7: Rel (    30,     0)  ->  Abs (   157,   931)
+	  8: Rel (   916,     0)  ->  Abs (  1073,   931)
+	  9: Rel (    30,    -1)  ->  Abs (  1103,   930)
+	 10: Rel (    26,   -23)  ->  Abs (  1129,   907)
+	 11: Rel (     0,   -19)  ->  Abs (  1129,   888)
+	 12: Rel (     0,   -18)  ->  Abs (  1129,   870)
+	 13: Rel (   -26,   -24)  ->  Abs (  1103,   846)
+	 14: Rel (   -30,  -302)  ->  Abs (  1073,   544)
+	 15: Rel (  -916,     0)  ->  Abs (   157,   544)
+	 16: Rel (   -30,     0)  ->  Abs (   127,   544)
+	 17: Rel (   -26,    24)  ->  Abs (   101,   568)
+	 18: Rel (     0,    19)  ->  Abs (   101,   587)
+	 19: Rel (     0,    18)  ->  Abs (   101,   605)
+	 20: Rel (    26,    24)  ->  Abs (   127,   629)
+	 21: Rel (    30,     0)  ->  Abs (   157,   629)
+	 22: Rel (   916,     0)  ->  Abs (  1073,   629)
+	 23: Rel (    30,     0)  ->  Abs (  1103,   629)
+	 24: Rel (    26,   -24)  ->  Abs (  1129,   605)
+	 25: Rel (     0,   -18)  ->  Abs (  1129,   587)
+	 26: Rel (     0,   -19)  ->  Abs (  1129,   568)
+	 27: Rel (   -26,   -24)  ->  Abs (  1103,   544)
+	 28: Rel (   -30,  -301)  ->  Abs (  1073,   243)
+	 29: Rel (  -916,     0)  ->  Abs (   157,   243)
+	 30: Rel (   -30,     0)  ->  Abs (   127,   243)
+	 31: Rel (   -26,    23)  ->  Abs (   101,   266)
+	 32: Rel (     0,    19)  ->  Abs (   101,   285)
+	 33: Rel (     0,    19)  ->  Abs (   101,   304)
+	 34: Rel (    26,    23)  ->  Abs (   127,   327)
+	 35: Rel (    30,     0)  ->  Abs (   157,   327)
+	 36: Rel (   916,     0)  ->  Abs (  1073,   327)
+	 37: Rel (    30,     0)  ->  Abs (  1103,   327)
+	 38: Rel (    26,   -23)  ->  Abs (  1129,   304)
+	 39: Rel (     0,   -19)  ->  Abs (  1129,   285)
+	 40: Rel (     0,   -19)  ->  Abs (  1129,   266)
+	 41: Rel (   -26,   -23)  ->  Abs (  1103,   243)
+
+	Glyph 322: off = 0x00012E54, len = 124
+	  numberOfContours:	2
+	  xMin:			153
+	  yMin:			0
+	  xMax:			1076
+	  yMax:			1153
+
+	EndPoints
+	---------
+	  0:  4
+	  1:  9
+
+	  Length of Instructions:	70
+	00000: NPUSHB      (15):     7     2     3     9     1     2     8     1   166     3 
+	                           166     2     5    91     2 
+	00017: PUSHW[1]            453 
+	00020: NPUSHB      (19):     0    10     7    91    64     3   166     8     2   166 
+	                            32     9    91     1    25    10    80   129    24 
+	00041: CALL       
+	00042: FLIPOFF    
+	00043: SRP0       
+	00044: MIRP[srp0,nmd,rd,0] 
+	00045: FLIPON     
+	00046: MIRP[nrp0,md,rd,1] 
+	00047: SMD        
+	00048: RTHG       
+	00049: MIRP[srp0,md,rd,1] 
+	00050: ALIGNRP    
+	00051: MIRP[srp0,md,rd,1] 
+	00052: SMD        
+	00053: RTG        
+	00054: MIRP[nrp0,md,rd,1] 
+	00055: SVTCA[y-axis] 
+	00056: MIAP[rd+ci] 
+	00057: MIRP[nrp0,md,rd,1] 
+	00058: MIRP[nrp0,md,rd,1] 
+	00059: SRP0       
+	00060: MIRP[nrp0,nmd,rd,0] 
+	00061: MIRP[nrp0,nmd,rd,0] 
+	00062: MDRP[srp0,md,rd,1] 
+	00063: IUP[y]     
+	00064: IUP[x]     
+	00065: SVTCA[y-axis] 
+	00066: SPVTL[p1,p2] 
+	00067: ALIGNRP    
+	00068: SPVTL[p1,p2] 
+	00069: ALIGNRP    
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:                                      On
+	  3:                                      On
+	  4:        XDual                         On
+	  5:  YDual               Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual                         On
+	  8:                                      On
+	  9:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   153,     0)  ->  Abs (   153,     0)
+	  1: Rel (     0,   634)  ->  Abs (   153,   634)
+	  2: Rel (   461,   519)  ->  Abs (   614,  1153)
+	  3: Rel (   462,  -519)  ->  Abs (  1076,   634)
+	  4: Rel (     0,  -634)  ->  Abs (  1076,     0)
+	  5: Rel (  -842,    81)  ->  Abs (   234,    81)
+	  6: Rel (   761,     0)  ->  Abs (   995,    81)
+	  7: Rel (     0,   519)  ->  Abs (   995,   600)
+	  8: Rel (  -381,   427)  ->  Abs (   614,  1027)
+	  9: Rel (  -380,  -427)  ->  Abs (   234,   600)
+
+	Glyph 323: off = 0x00012ED0, len = 104
+	  numberOfContours:	1
+	  xMin:			144
+	  yMin:			67
+	  xMax:			1205
+	  yMax:			627
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	47
+	00000: PUSHB[3]              1    91     9 
+	00004: PUSHW[1]            281 
+	00007: PUSHB[3]              5    10     0 
+	00011: PUSHW[1]            774 
+	00014: NPUSHB       (9):    17     1     2    91     9     8    25    16    80 
+	00025: PUSHW[2]            458    24 
+	00030: CALL       
+	00031: FLIPOFF    
+	00032: SRP0       
+	00033: MIRP[srp0,nmd,rd,0] 
+	00034: ALIGNRP    
+	00035: FLIPON     
+	00036: MIRP[srp0,md,rd,1] 
+	00037: ALIGNRP    
+	00038: SRP0       
+	00039: MIRP[srp0,nmd,rd,2] 
+	00040: ALIGNRP    
+	00041: SVTCA[y-axis] 
+	00042: MDAP[rd]   
+	00043: MIRP[srp0,md,rd,1] 
+	00044: MIRP[nrp0,md,rd,1] 
+	00045: IUP[y]     
+	00046: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:        XDual                         On
+	 10:  YDual                               On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1148,   543)  ->  Abs (  1148,   543)
+	  1: Rel (  -920,     0)  ->  Abs (   228,   543)
+	  2: Rel (     0,  -420)  ->  Abs (   228,   123)
+	  3: Rel (     0,   -30)  ->  Abs (   228,    93)
+	  4: Rel (   -23,   -26)  ->  Abs (   205,    67)
+	  5: Rel (   -19,     0)  ->  Abs (   186,    67)
+	  6: Rel (   -19,     0)  ->  Abs (   167,    67)
+	  7: Rel (   -23,    25)  ->  Abs (   144,    92)
+	  8: Rel (     0,    31)  ->  Abs (   144,   123)
+	  9: Rel (     0,   504)  ->  Abs (   144,   627)
+	 10: Rel (  1004,     0)  ->  Abs (  1148,   627)
+	 11: Rel (    31,     0)  ->  Abs (  1179,   627)
+	 12: Rel (    26,   -23)  ->  Abs (  1205,   604)
+	 13: Rel (     0,   -19)  ->  Abs (  1205,   585)
+	 14: Rel (     0,   -19)  ->  Abs (  1205,   566)
+	 15: Rel (   -26,   -23)  ->  Abs (  1179,   543)
+
+	Glyph 324: off = 0x00012F38, len = 104
+	  numberOfContours:	1
+	  xMin:			541
+	  yMin:			-615
+	  xMax:			973
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  21
+
+	  Length of Instructions:	33
+	00000: PUSHW[2]              1   853 
+	00005: NPUSHB      (11):    11    11     6    17    17     6     8     8     0     0 
+	                             1 
+	00018: MDAP[rd]   
+	00019: SHP[rp1,zp0] 
+	00020: MDAP[rd]   
+	00021: SHP[rp1,zp0] 
+	00022: MDAP[rd]   
+	00023: SVTCA[y-axis] 
+	00024: MDAP[rd]   
+	00025: SHP[rp1,zp0] 
+	00026: MDAP[rd]   
+	00027: SRP1       
+	00028: SHP[rp1,zp0] 
+	00029: MDAP[rd]   
+	00030: MIAP[rd+ci] 
+	00031: IUP[y]     
+	00032: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   688,  -615)  ->  Abs (   688,  -615)
+	  1: Rel (  -147,     0)  ->  Abs (   541,  -615)
+	  2: Rel (     0,  1879)  ->  Abs (   541,  1264)
+	  3: Rel (     0,   197)  ->  Abs (   541,  1461)
+	  4: Rel (   166,   244)  ->  Abs (   707,  1705)
+	  5: Rel (   128,     0)  ->  Abs (   835,  1705)
+	  6: Rel (    63,     0)  ->  Abs (   898,  1705)
+	  7: Rel (    75,   -62)  ->  Abs (   973,  1643)
+	  8: Rel (     0,   -47)  ->  Abs (   973,  1596)
+	  9: Rel (     0,   -40)  ->  Abs (   973,  1556)
+	 10: Rel (   -51,   -52)  ->  Abs (   922,  1504)
+	 11: Rel (   -37,     0)  ->  Abs (   885,  1504)
+	 12: Rel (   -31,     0)  ->  Abs (   854,  1504)
+	 13: Rel (   -13,     9)  ->  Abs (   841,  1513)
+	 14: Rel (   -13,     6)  ->  Abs (   828,  1519)
+	 15: Rel (   -39,    44)  ->  Abs (   789,  1563)
+	 16: Rel (   -35,    39)  ->  Abs (   754,  1602)
+	 17: Rel (   -14,     0)  ->  Abs (   740,  1602)
+	 18: Rel (   -37,     0)  ->  Abs (   703,  1602)
+	 19: Rel (    -8,   -39)  ->  Abs (   695,  1563)
+	 20: Rel (    -7,   -34)  ->  Abs (   688,  1529)
+	 21: Rel (     0,  -105)  ->  Abs (   688,  1424)
+
+	Glyph 325: off = 0x00012FA0, len = 112
+	  numberOfContours:	1
+	  xMin:			256
+	  yMin:			-615
+	  xMax:			688
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  22
+
+	  Length of Instructions:	38
+	00000: PUSHW[2]              1   852 
+	00005: PUSHB[6]             12    12     6    18    18     6 
+	00012: PUSHW[1]            853 
+	00015: PUSHB[6]              9     9    22     2     2    22 
+	00022: MDAP[rd]   
+	00023: SHP[rp1,zp0] 
+	00024: MDAP[rd]   
+	00025: SRP1       
+	00026: SHP[rp1,zp0] 
+	00027: MDAP[rd]   
+	00028: SVTCA[y-axis] 
+	00029: MIAP[rd+ci] 
+	00030: SHP[rp1,zp0] 
+	00031: MDAP[rd]   
+	00032: SRP1       
+	00033: SHP[rp1,zp0] 
+	00034: MDAP[rd]   
+	00035: MIAP[rd+ci] 
+	00036: IUP[y]     
+	00037: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   541,  1705)  ->  Abs (   541,  1705)
+	  1: Rel (   147,     0)  ->  Abs (   688,  1705)
+	  2: Rel (     0, -1879)  ->  Abs (   688,  -174)
+	  3: Rel (     0,  -207)  ->  Abs (   688,  -381)
+	  4: Rel (   -90,  -123)  ->  Abs (   598,  -504)
+	  5: Rel (   -81,  -111)  ->  Abs (   517,  -615)
+	  6: Rel (  -123,     0)  ->  Abs (   394,  -615)
+	  7: Rel (   -61,     0)  ->  Abs (   333,  -615)
+	  8: Rel (   -77,    61)  ->  Abs (   256,  -554)
+	  9: Rel (     0,    48)  ->  Abs (   256,  -506)
+	 10: Rel (     0,    40)  ->  Abs (   256,  -466)
+	 11: Rel (    51,    52)  ->  Abs (   307,  -414)
+	 12: Rel (    36,     0)  ->  Abs (   343,  -414)
+	 13: Rel (    32,     0)  ->  Abs (   375,  -414)
+	 14: Rel (    27,   -16)  ->  Abs (   402,  -430)
+	 15: Rel (     8,    -5)  ->  Abs (   410,  -435)
+	 16: Rel (    33,   -41)  ->  Abs (   443,  -476)
+	 17: Rel (    29,   -36)  ->  Abs (   472,  -512)
+	 18: Rel (    17,     0)  ->  Abs (   489,  -512)
+	 19: Rel (    37,     0)  ->  Abs (   526,  -512)
+	 20: Rel (     8,    40)  ->  Abs (   534,  -472)
+	 21: Rel (     7,    35)  ->  Abs (   541,  -437)
+	 22: Rel (     0,   103)  ->  Abs (   541,  -334)
+
+	Glyph 326: off = 0x00013010, len = 42
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			450
+	  xMax:			1229
+	  yMax:			597
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	14
+	00000: PUSHB[5]              1     1     2     0     1 
+	00006: MDAP[rd]   
+	00007: MDAP[rd]   
+	00008: SVTCA[y-axis] 
+	00009: MDAP[rd]   
+	00010: SHP[rp1,zp0] 
+	00011: MDAP[rd]   
+	00012: IUP[y]     
+	00013: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,   450)  ->  Abs (  1229,   450)
+	  1: Rel ( -1229,     0)  ->  Abs (     0,   450)
+	  2: Rel (     0,   147)  ->  Abs (     0,   597)
+	  3: Rel (  1229,     0)  ->  Abs (  1229,   597)
+
+	Glyph 327: off = 0x0001303A, len = 48
+	  numberOfContours:	1
+	  xMin:			541
+	  yMin:			-615
+	  xMax:			688
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	21
+	00000: PUSHW[4]              1   852     0   853 
+	00009: PUSHB[3]              3     3     0 
+	00013: MDAP[rd]   
+	00014: SHP[rp1,zp0] 
+	00015: MDAP[rd]   
+	00016: SVTCA[y-axis] 
+	00017: MIAP[rd+ci] 
+	00018: MIAP[rd+ci] 
+	00019: IUP[y]     
+	00020: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   541,  -615)  ->  Abs (   541,  -615)
+	  1: Rel (     0,  2320)  ->  Abs (   541,  1705)
+	  2: Rel (   147,     0)  ->  Abs (   688,  1705)
+	  3: Rel (     0, -2320)  ->  Abs (   688,  -615)
+
+	Glyph 328: off = 0x0001306A, len = 56
+	  numberOfContours:	1
+	  xMin:			541
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			597
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	24
+	00000: PUSHB[4]              2     2     5     4 
+	00005: PUSHW[1]            853 
+	00008: PUSHB[4]              0     3     3     4 
+	00013: MDAP[rd]   
+	00014: SHP[rp1,zp0] 
+	00015: MDAP[rd]   
+	00016: MDAP[rd]   
+	00017: SVTCA[y-axis] 
+	00018: MIAP[rd+ci] 
+	00019: MDAP[rd]   
+	00020: SHP[rp1,zp0] 
+	00021: MDAP[rd]   
+	00022: IUP[y]     
+	00023: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual                       X-Short On
+	  5:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,   597)  ->  Abs (  1229,   597)
+	  1: Rel (     0,  -147)  ->  Abs (  1229,   450)
+	  2: Rel (  -541,     0)  ->  Abs (   688,   450)
+	  3: Rel (     0, -1065)  ->  Abs (   688,  -615)
+	  4: Rel (  -147,     0)  ->  Abs (   541,  -615)
+	  5: Rel (     0,  1212)  ->  Abs (   541,   597)
+
+	Glyph 329: off = 0x000130A2, len = 56
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			688
+	  yMax:			597
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	24
+	00000: PUSHB[4]              1     1     2     5 
+	00005: PUSHW[1]            853 
+	00008: PUSHB[4]              4     4     5     1 
+	00013: MDAP[rd]   
+	00014: MDAP[rd]   
+	00015: SHP[rp1,zp0] 
+	00016: MDAP[rd]   
+	00017: SVTCA[y-axis] 
+	00018: MIAP[rd+ci] 
+	00019: MDAP[rd]   
+	00020: SHP[rp1,zp0] 
+	00021: MDAP[rd]   
+	00022: IUP[y]     
+	00023: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   541,   450)  ->  Abs (   541,   450)
+	  1: Rel (  -541,     0)  ->  Abs (     0,   450)
+	  2: Rel (     0,   147)  ->  Abs (     0,   597)
+	  3: Rel (   688,     0)  ->  Abs (   688,   597)
+	  4: Rel (     0, -1212)  ->  Abs (   688,  -615)
+	  5: Rel (  -147,     0)  ->  Abs (   541,  -615)
+
+	Glyph 330: off = 0x000130DA, len = 56
+	  numberOfContours:	1
+	  xMin:			541
+	  yMin:			450
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	24
+	00000: PUSHB[4]              0     0     3     1 
+	00005: PUSHW[1]            852 
+	00008: PUSHB[4]              3     3     0     5 
+	00013: MDAP[rd]   
+	00014: MDAP[rd]   
+	00015: SHP[rp1,zp0] 
+	00016: MDAP[rd]   
+	00017: SVTCA[y-axis] 
+	00018: MIAP[rd+ci] 
+	00019: MDAP[rd]   
+	00020: SHP[rp1,zp0] 
+	00021: MDAP[rd]   
+	00022: IUP[y]     
+	00023: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   541,   450)  ->  Abs (   541,   450)
+	  1: Rel (     0,  1255)  ->  Abs (   541,  1705)
+	  2: Rel (   147,     0)  ->  Abs (   688,  1705)
+	  3: Rel (     0, -1108)  ->  Abs (   688,   597)
+	  4: Rel (   541,     0)  ->  Abs (  1229,   597)
+	  5: Rel (     0,  -147)  ->  Abs (  1229,   450)
+
+	Glyph 331: off = 0x00013112, len = 56
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			450
+	  xMax:			688
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  5
+
+	  Length of Instructions:	24
+	00000: PUSHB[4]              1     1     2     4 
+	00005: PUSHW[1]            852 
+	00008: PUSHB[4]              0     0     3     1 
+	00013: MDAP[rd]   
+	00014: MDAP[rd]   
+	00015: SHP[rp1,zp0] 
+	00016: MDAP[rd]   
+	00017: SVTCA[y-axis] 
+	00018: MIAP[rd+ci] 
+	00019: MDAP[rd]   
+	00020: SHP[rp1,zp0] 
+	00021: MDAP[rd]   
+	00022: IUP[y]     
+	00023: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   688,   450)  ->  Abs (   688,   450)
+	  1: Rel (  -688,     0)  ->  Abs (     0,   450)
+	  2: Rel (     0,   147)  ->  Abs (     0,   597)
+	  3: Rel (   541,     0)  ->  Abs (   541,   597)
+	  4: Rel (     0,  1108)  ->  Abs (   541,  1705)
+	  5: Rel (   147,     0)  ->  Abs (   688,  1705)
+
+	Glyph 332: off = 0x0001314A, len = 70
+	  numberOfContours:	1
+	  xMin:			541
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	31
+	00000: PUSHB[4]              6     6     3     1 
+	00005: PUSHW[3]            852     0   853 
+	00012: PUSHB[5]              3     7     7     0     5 
+	00018: MDAP[rd]   
+	00019: MDAP[rd]   
+	00020: SHP[rp1,zp0] 
+	00021: MDAP[rd]   
+	00022: ALIGNRP    
+	00023: SVTCA[y-axis] 
+	00024: MIAP[rd+ci] 
+	00025: MIAP[rd+ci] 
+	00026: MDAP[rd]   
+	00027: SHP[rp1,zp0] 
+	00028: MDAP[rd]   
+	00029: IUP[y]     
+	00030: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   541,  -615)  ->  Abs (   541,  -615)
+	  1: Rel (     0,  2320)  ->  Abs (   541,  1705)
+	  2: Rel (   147,     0)  ->  Abs (   688,  1705)
+	  3: Rel (     0, -1108)  ->  Abs (   688,   597)
+	  4: Rel (   541,     0)  ->  Abs (  1229,   597)
+	  5: Rel (     0,  -147)  ->  Abs (  1229,   450)
+	  6: Rel (  -541,     0)  ->  Abs (   688,   450)
+	  7: Rel (     0, -1065)  ->  Abs (   688,  -615)
+
+	Glyph 333: off = 0x00013190, len = 72
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			688
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	33
+	00000: PUSHB[4]              2     2     3     5 
+	00005: PUSHW[3]            852     0   853 
+	00012: PUSHB[6]              4     0     7     7     0     2 
+	00019: MDAP[rd]   
+	00020: MDAP[rd]   
+	00021: SHP[rp1,zp0] 
+	00022: MDAP[rd]   
+	00023: SRP0       
+	00024: ALIGNRP    
+	00025: SVTCA[y-axis] 
+	00026: MIAP[rd+ci] 
+	00027: MIAP[rd+ci] 
+	00028: MDAP[rd]   
+	00029: SHP[rp1,zp0] 
+	00030: MDAP[rd]   
+	00031: IUP[y]     
+	00032: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   541,  -615)  ->  Abs (   541,  -615)
+	  1: Rel (     0,  1065)  ->  Abs (   541,   450)
+	  2: Rel (  -541,     0)  ->  Abs (     0,   450)
+	  3: Rel (     0,   147)  ->  Abs (     0,   597)
+	  4: Rel (   541,     0)  ->  Abs (   541,   597)
+	  5: Rel (     0,  1108)  ->  Abs (   541,  1705)
+	  6: Rel (   147,     0)  ->  Abs (   688,  1705)
+	  7: Rel (     0, -2320)  ->  Abs (   688,  -615)
+
+	Glyph 334: off = 0x000131D8, len = 66
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			597
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	28
+	00000: PUSHB[5]              5     1     1     2     7 
+	00006: PUSHW[1]            853 
+	00009: PUSHB[5]              6     6     7     4     1 
+	00015: MDAP[rd]   
+	00016: MDAP[rd]   
+	00017: MDAP[rd]   
+	00018: SHP[rp1,zp0] 
+	00019: MDAP[rd]   
+	00020: SVTCA[y-axis] 
+	00021: MIAP[rd+ci] 
+	00022: MDAP[rd]   
+	00023: SHP[rp1,zp0] 
+	00024: MDAP[rd]   
+	00025: ALIGNRP    
+	00026: IUP[y]     
+	00027: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual         Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   541,   450)  ->  Abs (   541,   450)
+	  1: Rel (  -541,     0)  ->  Abs (     0,   450)
+	  2: Rel (     0,   147)  ->  Abs (     0,   597)
+	  3: Rel (  1229,     0)  ->  Abs (  1229,   597)
+	  4: Rel (     0,  -147)  ->  Abs (  1229,   450)
+	  5: Rel (  -541,     0)  ->  Abs (   688,   450)
+	  6: Rel (     0, -1065)  ->  Abs (   688,  -615)
+	  7: Rel (  -147,     0)  ->  Abs (   541,  -615)
+
+	Glyph 335: off = 0x0001321A, len = 68
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			450
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	30
+	00000: PUSHB[6]              6     2     1     1     2     4 
+	00007: PUSHW[1]            852 
+	00010: PUSHB[5]              6     6     3     0     1 
+	00016: MDAP[rd]   
+	00017: MDAP[rd]   
+	00018: MDAP[rd]   
+	00019: SHP[rp1,zp0] 
+	00020: MDAP[rd]   
+	00021: SVTCA[y-axis] 
+	00022: MIAP[rd+ci] 
+	00023: MDAP[rd]   
+	00024: SHP[rp1,zp0] 
+	00025: MDAP[rd]   
+	00026: SRP0       
+	00027: ALIGNRP    
+	00028: IUP[y]     
+	00029: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,   450)  ->  Abs (  1229,   450)
+	  1: Rel ( -1229,     0)  ->  Abs (     0,   450)
+	  2: Rel (     0,   147)  ->  Abs (     0,   597)
+	  3: Rel (   541,     0)  ->  Abs (   541,   597)
+	  4: Rel (     0,  1108)  ->  Abs (   541,  1705)
+	  5: Rel (   147,     0)  ->  Abs (   688,  1705)
+	  6: Rel (     0, -1108)  ->  Abs (   688,   597)
+	  7: Rel (   541,     0)  ->  Abs (  1229,   597)
+
+	Glyph 336: off = 0x0001325E, len = 96
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	48
+	00000: PUSHB[8]              9     1     6     2     1     1     2     4 
+	00009: PUSHW[3]            852    11   853 
+	00016: NPUSHB       (9):     6    10     3    11    10    10    11     8     1 
+	00027: MDAP[rd]   
+	00028: MDAP[rd]   
+	00029: MDAP[rd]   
+	00030: SHP[rp1,zp0] 
+	00031: MDAP[rd]   
+	00032: SRP0       
+	00033: ALIGNRP    
+	00034: SRP0       
+	00035: ALIGNRP    
+	00036: SVTCA[y-axis] 
+	00037: MIAP[rd+ci] 
+	00038: MIAP[rd+ci] 
+	00039: MDAP[rd]   
+	00040: SHP[rp1,zp0] 
+	00041: MDAP[rd]   
+	00042: SRP0       
+	00043: ALIGNRP    
+	00044: SRP0       
+	00045: ALIGNRP    
+	00046: IUP[y]     
+	00047: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual                               On
+	  8:        XDual         Y-Short         On
+	  9:  YDual                               On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   541,   450)  ->  Abs (   541,   450)
+	  1: Rel (  -541,     0)  ->  Abs (     0,   450)
+	  2: Rel (     0,   147)  ->  Abs (     0,   597)
+	  3: Rel (   541,     0)  ->  Abs (   541,   597)
+	  4: Rel (     0,  1108)  ->  Abs (   541,  1705)
+	  5: Rel (   147,     0)  ->  Abs (   688,  1705)
+	  6: Rel (     0, -1108)  ->  Abs (   688,   597)
+	  7: Rel (   541,     0)  ->  Abs (  1229,   597)
+	  8: Rel (     0,  -147)  ->  Abs (  1229,   450)
+	  9: Rel (  -541,     0)  ->  Abs (   688,   450)
+	 10: Rel (     0, -1065)  ->  Abs (   688,  -615)
+	 11: Rel (  -147,     0)  ->  Abs (   541,  -615)
+
+	Glyph 337: off = 0x000132BE, len = 70
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			290
+	  xMax:			1229
+	  yMax:			757
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	29
+	00000: NPUSHB      (12):     5     5     6     6     1     2     2     1     0     4 
+	                             1     5 
+	00014: MDAP[rd]   
+	00015: MDAP[rd]   
+	00016: MDAP[rd]   
+	00017: MDAP[rd]   
+	00018: SVTCA[y-axis] 
+	00019: MDAP[rd]   
+	00020: SHP[rp1,zp0] 
+	00021: MDAP[rd]   
+	00022: SRP1       
+	00023: SHP[rp1,zp0] 
+	00024: MDAP[rd]   
+	00025: SHP[rp1,zp0] 
+	00026: MDAP[rd]   
+	00027: IUP[y]     
+	00028: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,   610)  ->  Abs (  1229,   610)
+	  1: Rel ( -1229,     0)  ->  Abs (     0,   610)
+	  2: Rel (     0,   147)  ->  Abs (     0,   757)
+	  3: Rel (  1229,     0)  ->  Abs (  1229,   757)
+	  4: Rel (     0,  -467)  ->  Abs (  1229,   290)
+	  5: Rel ( -1229,     0)  ->  Abs (     0,   290)
+	  6: Rel (     0,   147)  ->  Abs (     0,   437)
+	  7: Rel (  1229,     0)  ->  Abs (  1229,   437)
+
+	Glyph 338: off = 0x00013304, len = 84
+	  numberOfContours:	2
+	  xMin:			381
+	  yMin:			-615
+	  xMax:			848
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	44
+	00000: PUSHW[8]              1   852     5   852     0   853     4   853 
+	00017: NPUSHB      (10):     3     3     0     0     7     7     0     4     1     4 
+	00029: MDAP[rd]   
+	00030: DELTAP1    
+	00031: SHP[rp1,zp0] 
+	00032: MDAP[rd]   
+	00033: SHP[rp1,zp0] 
+	00034: MDAP[rd]   
+	00035: SHP[rp1,zp0] 
+	00036: MDAP[rd]   
+	00037: SVTCA[y-axis] 
+	00038: MIAP[rd+ci] 
+	00039: MIAP[rd+ci] 
+	00040: MIAP[rd+ci] 
+	00041: MIAP[rd+ci] 
+	00042: IUP[y]     
+	00043: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   701,  -615)  ->  Abs (   701,  -615)
+	  1: Rel (     0,  2320)  ->  Abs (   701,  1705)
+	  2: Rel (   147,     0)  ->  Abs (   848,  1705)
+	  3: Rel (     0, -2320)  ->  Abs (   848,  -615)
+	  4: Rel (  -467,     0)  ->  Abs (   381,  -615)
+	  5: Rel (     0,  2320)  ->  Abs (   381,  1705)
+	  6: Rel (   147,     0)  ->  Abs (   528,  1705)
+	  7: Rel (     0, -2320)  ->  Abs (   528,  -615)
+
+	Glyph 339: off = 0x00013358, len = 82
+	  numberOfContours:	1
+	  xMin:			541
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			757
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	39
+	00000: NPUSHB       (9):     8     8     5     5     4     1     1     4     0 
+	00011: PUSHW[1]            853 
+	00014: PUSHB[6]              3     7     5     9     9     0 
+	00021: MDAP[rd]   
+	00022: SHP[rp1,zp0] 
+	00023: MDAP[rd]   
+	00024: ALIGNRP    
+	00025: MDAP[rd]   
+	00026: MDAP[rd]   
+	00027: SVTCA[y-axis] 
+	00028: MIAP[rd+ci] 
+	00029: MDAP[rd]   
+	00030: SHP[rp1,zp0] 
+	00031: MDAP[rd]   
+	00032: SRP1       
+	00033: SHP[rp1,zp0] 
+	00034: MDAP[rd]   
+	00035: SHP[rp1,zp0] 
+	00036: MDAP[rd]   
+	00037: IUP[y]     
+	00038: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   541,  -615)  ->  Abs (   541,  -615)
+	  1: Rel (     0,  1372)  ->  Abs (   541,   757)
+	  2: Rel (   688,     0)  ->  Abs (  1229,   757)
+	  3: Rel (     0,  -147)  ->  Abs (  1229,   610)
+	  4: Rel (  -541,     0)  ->  Abs (   688,   610)
+	  5: Rel (     0,  -173)  ->  Abs (   688,   437)
+	  6: Rel (   541,     0)  ->  Abs (  1229,   437)
+	  7: Rel (     0,  -147)  ->  Abs (  1229,   290)
+	  8: Rel (  -541,     0)  ->  Abs (   688,   290)
+	  9: Rel (     0,  -905)  ->  Abs (   688,  -615)
+
+	Glyph 340: off = 0x000133AA, len = 88
+	  numberOfContours:	1
+	  xMin:			381
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			597
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	44
+	00000: PUSHB[5]              4     8     8     1     6 
+	00006: PUSHW[3]            853     0   853 
+	00013: NPUSHB      (11):     3     5     5     6     6     9     9     0     0     1 
+	                             0 
+	00026: MDAP[rd]   
+	00027: DELTAP1    
+	00028: SHP[rp1,zp0] 
+	00029: MDAP[rd]   
+	00030: SHP[rp1,zp0] 
+	00031: MDAP[rd]   
+	00032: SHP[rp1,zp0] 
+	00033: MDAP[rd]   
+	00034: MDAP[rd]   
+	00035: SVTCA[y-axis] 
+	00036: MIAP[rd+ci] 
+	00037: MIAP[rd+ci] 
+	00038: MDAP[rd]   
+	00039: SHP[rp1,zp0] 
+	00040: MDAP[rd]   
+	00041: ALIGNRP    
+	00042: IUP[y]     
+	00043: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+	  8:  YDual                       X-Short On
+	  9:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   381,  -615)  ->  Abs (   381,  -615)
+	  1: Rel (     0,  1212)  ->  Abs (   381,   597)
+	  2: Rel (   848,     0)  ->  Abs (  1229,   597)
+	  3: Rel (     0,  -148)  ->  Abs (  1229,   449)
+	  4: Rel (  -381,     0)  ->  Abs (   848,   449)
+	  5: Rel (     0, -1064)  ->  Abs (   848,  -615)
+	  6: Rel (  -147,     0)  ->  Abs (   701,  -615)
+	  7: Rel (     0,  1064)  ->  Abs (   701,   449)
+	  8: Rel (  -173,     0)  ->  Abs (   528,   449)
+	  9: Rel (     0, -1064)  ->  Abs (   528,  -615)
+
+	Glyph 341: off = 0x00013402, len = 108
+	  numberOfContours:	2
+	  xMin:			381
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			757
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  11
+
+	  Length of Instructions:	55
+	00000: NPUSHB       (9):     6     6     9     9     5     2     2     5     8 
+	00011: PUSHW[3]            853     1   853 
+	00018: NPUSHB      (12):     4    11     7     7     8     8     0     0     0     1 
+	                             1     1 
+	00032: MDAP[rd]   
+	00033: DELTAP1    
+	00034: SHP[rp1,zp0] 
+	00035: MDAP[rd]   
+	00036: SHP[rp1,zp0] 
+	00037: MDAP[rd]   
+	00038: SHP[rp1,zp0] 
+	00039: MDAP[rd]   
+	00040: MDAP[rd]   
+	00041: MDAP[rd]   
+	00042: SVTCA[y-axis] 
+	00043: MIAP[rd+ci] 
+	00044: MIAP[rd+ci] 
+	00045: MDAP[rd]   
+	00046: SHP[rp1,zp0] 
+	00047: MDAP[rd]   
+	00048: SRP1       
+	00049: SHP[rp1,zp0] 
+	00050: MDAP[rd]   
+	00051: SHP[rp1,zp0] 
+	00052: MDAP[rd]   
+	00053: IUP[y]     
+	00054: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:        XDual         Y-Short         On
+	  5:  YDual                               On
+	  6:                                      On
+	  7:        XDual                         On
+	  8:  YDual                       X-Short On
+	  9:        XDual                         On
+	 10:  YDual                               On
+	 11:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   528,  -615)  ->  Abs (   528,  -615)
+	  1: Rel (  -147,     0)  ->  Abs (   381,  -615)
+	  2: Rel (     0,  1372)  ->  Abs (   381,   757)
+	  3: Rel (   848,     0)  ->  Abs (  1229,   757)
+	  4: Rel (     0,  -147)  ->  Abs (  1229,   610)
+	  5: Rel (  -701,     0)  ->  Abs (   528,   610)
+	  6: Rel (   320,  -320)  ->  Abs (   848,   290)
+	  7: Rel (     0,  -905)  ->  Abs (   848,  -615)
+	  8: Rel (  -147,     0)  ->  Abs (   701,  -615)
+	  9: Rel (     0,  1052)  ->  Abs (   701,   437)
+	 10: Rel (   528,     0)  ->  Abs (  1229,   437)
+	 11: Rel (     0,  -147)  ->  Abs (  1229,   290)
+
+	Glyph 342: off = 0x0001346E, len = 82
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			688
+	  yMax:			757
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	39
+	00000: NPUSHB       (9):     1     1     2     2     5     6     6     5     9 
+	00011: PUSHW[1]            853 
+	00014: PUSHB[6]              5     1     8     8     3     9 
+	00021: MDAP[rd]   
+	00022: ALIGNRP    
+	00023: SHP[rp1,zp0] 
+	00024: MDAP[rd]   
+	00025: MDAP[rd]   
+	00026: MDAP[rd]   
+	00027: SVTCA[y-axis] 
+	00028: MIAP[rd+ci] 
+	00029: MDAP[rd]   
+	00030: SHP[rp1,zp0] 
+	00031: MDAP[rd]   
+	00032: SRP1       
+	00033: SHP[rp1,zp0] 
+	00034: MDAP[rd]   
+	00035: SHP[rp1,zp0] 
+	00036: MDAP[rd]   
+	00037: IUP[y]     
+	00038: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   541,   290)  ->  Abs (   541,   290)
+	  1: Rel (  -541,     0)  ->  Abs (     0,   290)
+	  2: Rel (     0,   147)  ->  Abs (     0,   437)
+	  3: Rel (   541,     0)  ->  Abs (   541,   437)
+	  4: Rel (     0,   173)  ->  Abs (   541,   610)
+	  5: Rel (  -541,     0)  ->  Abs (     0,   610)
+	  6: Rel (     0,   147)  ->  Abs (     0,   757)
+	  7: Rel (   688,     0)  ->  Abs (   688,   757)
+	  8: Rel (     0, -1372)  ->  Abs (   688,  -615)
+	  9: Rel (  -147,     0)  ->  Abs (   541,  -615)
+
+	Glyph 343: off = 0x000134C0, len = 88
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			848
+	  yMax:			597
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	44
+	00000: PUSHB[5]              8     2     2     3     6 
+	00006: PUSHW[3]            853     0   853 
+	00013: NPUSHB      (11):     5     5     6     6     9     9     0     0     1     0 
+	                             2 
+	00026: MDAP[rd]   
+	00027: MDAP[rd]   
+	00028: DELTAP1    
+	00029: SHP[rp1,zp0] 
+	00030: MDAP[rd]   
+	00031: SHP[rp1,zp0] 
+	00032: MDAP[rd]   
+	00033: SHP[rp1,zp0] 
+	00034: MDAP[rd]   
+	00035: SVTCA[y-axis] 
+	00036: MIAP[rd+ci] 
+	00037: MIAP[rd+ci] 
+	00038: MDAP[rd]   
+	00039: SHP[rp1,zp0] 
+	00040: MDAP[rd]   
+	00041: ALIGNRP    
+	00042: IUP[y]     
+	00043: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+	  8:  YDual                       X-Short On
+	  9:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   381,  -615)  ->  Abs (   381,  -615)
+	  1: Rel (     0,  1065)  ->  Abs (   381,   450)
+	  2: Rel (  -381,     0)  ->  Abs (     0,   450)
+	  3: Rel (     0,   147)  ->  Abs (     0,   597)
+	  4: Rel (   848,     0)  ->  Abs (   848,   597)
+	  5: Rel (     0, -1212)  ->  Abs (   848,  -615)
+	  6: Rel (  -147,     0)  ->  Abs (   701,  -615)
+	  7: Rel (     0,  1065)  ->  Abs (   701,   450)
+	  8: Rel (  -173,     0)  ->  Abs (   528,   450)
+	  9: Rel (     0, -1065)  ->  Abs (   528,  -615)
+
+	Glyph 344: off = 0x00013518, len = 108
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			848
+	  yMax:			757
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  11
+
+	  Length of Instructions:	55
+	00000: NPUSHB       (9):     7     7     8     8     2     3     3     2     0 
+	00011: PUSHW[3]            853    11   853 
+	00018: NPUSHB      (12):     5     5     0     0    10    10     0    11     1    11 
+	                             8     2 
+	00032: MDAP[rd]   
+	00033: MDAP[rd]   
+	00034: MDAP[rd]   
+	00035: DELTAP1    
+	00036: SHP[rp1,zp0] 
+	00037: MDAP[rd]   
+	00038: SHP[rp1,zp0] 
+	00039: MDAP[rd]   
+	00040: SHP[rp1,zp0] 
+	00041: MDAP[rd]   
+	00042: SVTCA[y-axis] 
+	00043: MIAP[rd+ci] 
+	00044: MIAP[rd+ci] 
+	00045: MDAP[rd]   
+	00046: SHP[rp1,zp0] 
+	00047: MDAP[rd]   
+	00048: SRP1       
+	00049: SHP[rp1,zp0] 
+	00050: MDAP[rd]   
+	00051: SHP[rp1,zp0] 
+	00052: MDAP[rd]   
+	00053: IUP[y]     
+	00054: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:                                      On
+	  7:  YDual                               On
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual                               On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   701,  -615)  ->  Abs (   701,  -615)
+	  1: Rel (     0,  1225)  ->  Abs (   701,   610)
+	  2: Rel (  -701,     0)  ->  Abs (     0,   610)
+	  3: Rel (     0,   147)  ->  Abs (     0,   757)
+	  4: Rel (   848,     0)  ->  Abs (   848,   757)
+	  5: Rel (     0, -1372)  ->  Abs (   848,  -615)
+	  6: Rel (  -467,   905)  ->  Abs (   381,   290)
+	  7: Rel (  -381,     0)  ->  Abs (     0,   290)
+	  8: Rel (     0,   147)  ->  Abs (     0,   437)
+	  9: Rel (   528,     0)  ->  Abs (   528,   437)
+	 10: Rel (     0, -1052)  ->  Abs (   528,  -615)
+	 11: Rel (  -147,     0)  ->  Abs (   381,  -615)
+
+	Glyph 345: off = 0x00013584, len = 82
+	  numberOfContours:	1
+	  xMin:			541
+	  yMin:			290
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	39
+	00000: NPUSHB       (9):     0     0     7     7     6     3     3     6     1 
+	00011: PUSHW[1]            852 
+	00014: PUSHB[6]              3     7     7     0     5     9 
+	00021: MDAP[rd]   
+	00022: MDAP[rd]   
+	00023: MDAP[rd]   
+	00024: SHP[rp1,zp0] 
+	00025: MDAP[rd]   
+	00026: ALIGNRP    
+	00027: SVTCA[y-axis] 
+	00028: MIAP[rd+ci] 
+	00029: MDAP[rd]   
+	00030: SHP[rp1,zp0] 
+	00031: MDAP[rd]   
+	00032: SRP1       
+	00033: SHP[rp1,zp0] 
+	00034: MDAP[rd]   
+	00035: SHP[rp1,zp0] 
+	00036: MDAP[rd]   
+	00037: IUP[y]     
+	00038: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   541,   290)  ->  Abs (   541,   290)
+	  1: Rel (     0,  1415)  ->  Abs (   541,  1705)
+	  2: Rel (   147,     0)  ->  Abs (   688,  1705)
+	  3: Rel (     0,  -948)  ->  Abs (   688,   757)
+	  4: Rel (   541,     0)  ->  Abs (  1229,   757)
+	  5: Rel (     0,  -147)  ->  Abs (  1229,   610)
+	  6: Rel (  -541,     0)  ->  Abs (   688,   610)
+	  7: Rel (     0,  -173)  ->  Abs (   688,   437)
+	  8: Rel (   541,     0)  ->  Abs (  1229,   437)
+	  9: Rel (     0,  -147)  ->  Abs (  1229,   290)
+
+	Glyph 346: off = 0x000135D6, len = 90
+	  numberOfContours:	1
+	  xMin:			381
+	  yMin:			450
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	46
+	00000: PUSHB[6]              8     4     1     1     4     6 
+	00007: PUSHW[3]            852     2   852 
+	00014: NPUSHB      (11):     8     8     5     5     4     4     0     1     1     1 
+	                             0 
+	00027: MDAP[rd]   
+	00028: MDAP[rd]   
+	00029: DELTAP1    
+	00030: SHP[rp1,zp0] 
+	00031: MDAP[rd]   
+	00032: SHP[rp1,zp0] 
+	00033: MDAP[rd]   
+	00034: SHP[rp1,zp0] 
+	00035: MDAP[rd]   
+	00036: SVTCA[y-axis] 
+	00037: MIAP[rd+ci] 
+	00038: MIAP[rd+ci] 
+	00039: MDAP[rd]   
+	00040: SHP[rp1,zp0] 
+	00041: MDAP[rd]   
+	00042: SRP0       
+	00043: ALIGNRP    
+	00044: IUP[y]     
+	00045: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual XDual                 X-Short On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual XDual                 X-Short On
+	  8:        XDual                         On
+	  9:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,   450)  ->  Abs (  1229,   450)
+	  1: Rel (  -848,     0)  ->  Abs (   381,   450)
+	  2: Rel (     0,  1255)  ->  Abs (   381,  1705)
+	  3: Rel (   147,     0)  ->  Abs (   528,  1705)
+	  4: Rel (     0, -1108)  ->  Abs (   528,   597)
+	  5: Rel (   173,     0)  ->  Abs (   701,   597)
+	  6: Rel (     0,  1108)  ->  Abs (   701,  1705)
+	  7: Rel (   147,     0)  ->  Abs (   848,  1705)
+	  8: Rel (     0, -1108)  ->  Abs (   848,   597)
+	  9: Rel (   381,     0)  ->  Abs (  1229,   597)
+
+	Glyph 347: off = 0x00013630, len = 108
+	  numberOfContours:	2
+	  xMin:			381
+	  yMin:			290
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  11
+
+	  Length of Instructions:	55
+	00000: NPUSHB       (9):     4     4     1     1     9     6     6     9    10 
+	00011: PUSHW[3]            852     5   852 
+	00018: NPUSHB      (12):     6     6     9     9     1     1     0     4     1     4 
+	                             8     3 
+	00032: MDAP[rd]   
+	00033: MDAP[rd]   
+	00034: MDAP[rd]   
+	00035: DELTAP1    
+	00036: SHP[rp1,zp0] 
+	00037: MDAP[rd]   
+	00038: SHP[rp1,zp0] 
+	00039: MDAP[rd]   
+	00040: SHP[rp1,zp0] 
+	00041: MDAP[rd]   
+	00042: SVTCA[y-axis] 
+	00043: MIAP[rd+ci] 
+	00044: MIAP[rd+ci] 
+	00045: MDAP[rd]   
+	00046: SHP[rp1,zp0] 
+	00047: MDAP[rd]   
+	00048: SRP1       
+	00049: SHP[rp1,zp0] 
+	00050: MDAP[rd]   
+	00051: SHP[rp1,zp0] 
+	00052: MDAP[rd]   
+	00053: IUP[y]     
+	00054: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:                                      On
+	  7:  YDual                               On
+	  8:        XDual         Y-Short         On
+	  9:  YDual                               On
+	 10:        XDual                         On
+	 11:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   528,  1705)  ->  Abs (   528,  1705)
+	  1: Rel (     0, -1268)  ->  Abs (   528,   437)
+	  2: Rel (   701,     0)  ->  Abs (  1229,   437)
+	  3: Rel (     0,  -147)  ->  Abs (  1229,   290)
+	  4: Rel (  -848,     0)  ->  Abs (   381,   290)
+	  5: Rel (     0,  1415)  ->  Abs (   381,  1705)
+	  6: Rel (   467,  -948)  ->  Abs (   848,   757)
+	  7: Rel (   381,     0)  ->  Abs (  1229,   757)
+	  8: Rel (     0,  -147)  ->  Abs (  1229,   610)
+	  9: Rel (  -528,     0)  ->  Abs (   701,   610)
+	 10: Rel (     0,  1095)  ->  Abs (   701,  1705)
+	 11: Rel (   147,     0)  ->  Abs (   848,  1705)
+
+	Glyph 348: off = 0x0001369C, len = 84
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			290
+	  xMax:			688
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	41
+	00000: NPUSHB       (9):     1     1     2     2     5     6     6     5     8 
+	00011: PUSHW[1]            852 
+	00014: PUSHB[7]              7     3     0     0     3     5     1 
+	00022: MDAP[rd]   
+	00023: MDAP[rd]   
+	00024: MDAP[rd]   
+	00025: SHP[rp1,zp0] 
+	00026: MDAP[rd]   
+	00027: SRP0       
+	00028: ALIGNRP    
+	00029: SVTCA[y-axis] 
+	00030: MIAP[rd+ci] 
+	00031: MDAP[rd]   
+	00032: SHP[rp1,zp0] 
+	00033: MDAP[rd]   
+	00034: SRP1       
+	00035: SHP[rp1,zp0] 
+	00036: MDAP[rd]   
+	00037: SHP[rp1,zp0] 
+	00038: MDAP[rd]   
+	00039: IUP[y]     
+	00040: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   688,   290)  ->  Abs (   688,   290)
+	  1: Rel (  -688,     0)  ->  Abs (     0,   290)
+	  2: Rel (     0,   147)  ->  Abs (     0,   437)
+	  3: Rel (   541,     0)  ->  Abs (   541,   437)
+	  4: Rel (     0,   173)  ->  Abs (   541,   610)
+	  5: Rel (  -541,     0)  ->  Abs (     0,   610)
+	  6: Rel (     0,   147)  ->  Abs (     0,   757)
+	  7: Rel (   541,     0)  ->  Abs (   541,   757)
+	  8: Rel (     0,   948)  ->  Abs (   541,  1705)
+	  9: Rel (   147,     0)  ->  Abs (   688,  1705)
+
+	Glyph 349: off = 0x000136F0, len = 88
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			450
+	  xMax:			848
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	46
+	00000: PUSHB[6]              6     2     1     1     2     4 
+	00007: PUSHW[3]            852     8   852 
+	00014: NPUSHB      (11):     0     0     7     7     6     6     0     3     1     3 
+	                             1 
+	00027: MDAP[rd]   
+	00028: MDAP[rd]   
+	00029: DELTAP1    
+	00030: SHP[rp1,zp0] 
+	00031: MDAP[rd]   
+	00032: SHP[rp1,zp0] 
+	00033: MDAP[rd]   
+	00034: SHP[rp1,zp0] 
+	00035: MDAP[rd]   
+	00036: SVTCA[y-axis] 
+	00037: MIAP[rd+ci] 
+	00038: MIAP[rd+ci] 
+	00039: MDAP[rd]   
+	00040: SHP[rp1,zp0] 
+	00041: MDAP[rd]   
+	00042: SRP0       
+	00043: ALIGNRP    
+	00044: IUP[y]     
+	00045: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual XDual                 X-Short On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   848,   450)  ->  Abs (   848,   450)
+	  1: Rel (  -848,     0)  ->  Abs (     0,   450)
+	  2: Rel (     0,   147)  ->  Abs (     0,   597)
+	  3: Rel (   381,     0)  ->  Abs (   381,   597)
+	  4: Rel (     0,  1108)  ->  Abs (   381,  1705)
+	  5: Rel (   147,     0)  ->  Abs (   528,  1705)
+	  6: Rel (     0, -1108)  ->  Abs (   528,   597)
+	  7: Rel (   173,     0)  ->  Abs (   701,   597)
+	  8: Rel (     0,  1108)  ->  Abs (   701,  1705)
+	  9: Rel (   147,     0)  ->  Abs (   848,  1705)
+
+	Glyph 350: off = 0x00013748, len = 108
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			290
+	  xMax:			848
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  11
+
+	  Length of Instructions:	55
+	00000: NPUSHB       (9):     3     3     4     4    10    11    11    10     0 
+	00011: PUSHW[3]            852     7   852 
+	00018: NPUSHB      (12):     2     2     5     5     9     9     0     6     1     6 
+	                            10     3 
+	00032: MDAP[rd]   
+	00033: MDAP[rd]   
+	00034: MDAP[rd]   
+	00035: DELTAP1    
+	00036: SHP[rp1,zp0] 
+	00037: MDAP[rd]   
+	00038: SHP[rp1,zp0] 
+	00039: MDAP[rd]   
+	00040: SHP[rp1,zp0] 
+	00041: MDAP[rd]   
+	00042: SVTCA[y-axis] 
+	00043: MIAP[rd+ci] 
+	00044: MIAP[rd+ci] 
+	00045: MDAP[rd]   
+	00046: SHP[rp1,zp0] 
+	00047: MDAP[rd]   
+	00048: SRP1       
+	00049: SHP[rp1,zp0] 
+	00050: MDAP[rd]   
+	00051: SHP[rp1,zp0] 
+	00052: MDAP[rd]   
+	00053: IUP[y]     
+	00054: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual                               On
+	  6:                                      On
+	  7:        XDual                         On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual                         On
+	 10:  YDual                               On
+	 11:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   701,  1705)  ->  Abs (   701,  1705)
+	  1: Rel (   147,     0)  ->  Abs (   848,  1705)
+	  2: Rel (     0, -1415)  ->  Abs (   848,   290)
+	  3: Rel (  -848,     0)  ->  Abs (     0,   290)
+	  4: Rel (     0,   147)  ->  Abs (     0,   437)
+	  5: Rel (   701,     0)  ->  Abs (   701,   437)
+	  6: Rel (  -320,   320)  ->  Abs (   381,   757)
+	  7: Rel (     0,   948)  ->  Abs (   381,  1705)
+	  8: Rel (   147,     0)  ->  Abs (   528,  1705)
+	  9: Rel (     0, -1095)  ->  Abs (   528,   610)
+	 10: Rel (  -528,     0)  ->  Abs (     0,   610)
+	 11: Rel (     0,   147)  ->  Abs (     0,   757)
+
+	Glyph 351: off = 0x000137B4, len = 96
+	  numberOfContours:	1
+	  xMin:			541
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	48
+	00000: NPUSHB       (9):    10    10     7     7     6     3     3     6     1 
+	00011: PUSHW[3]            852     0   853 
+	00018: PUSHB[8]              3     7     7    11    11     0     5     9 
+	00027: MDAP[rd]   
+	00028: MDAP[rd]   
+	00029: MDAP[rd]   
+	00030: SHP[rp1,zp0] 
+	00031: MDAP[rd]   
+	00032: ALIGNRP    
+	00033: SRP0       
+	00034: ALIGNRP    
+	00035: SVTCA[y-axis] 
+	00036: MIAP[rd+ci] 
+	00037: MIAP[rd+ci] 
+	00038: MDAP[rd]   
+	00039: SHP[rp1,zp0] 
+	00040: MDAP[rd]   
+	00041: SRP1       
+	00042: SHP[rp1,zp0] 
+	00043: MDAP[rd]   
+	00044: SHP[rp1,zp0] 
+	00045: MDAP[rd]   
+	00046: IUP[y]     
+	00047: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:        XDual         Y-Short         On
+	 10:  YDual                               On
+	 11:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   541,  -615)  ->  Abs (   541,  -615)
+	  1: Rel (     0,  2320)  ->  Abs (   541,  1705)
+	  2: Rel (   147,     0)  ->  Abs (   688,  1705)
+	  3: Rel (     0,  -948)  ->  Abs (   688,   757)
+	  4: Rel (   541,     0)  ->  Abs (  1229,   757)
+	  5: Rel (     0,  -147)  ->  Abs (  1229,   610)
+	  6: Rel (  -541,     0)  ->  Abs (   688,   610)
+	  7: Rel (     0,  -173)  ->  Abs (   688,   437)
+	  8: Rel (   541,     0)  ->  Abs (  1229,   437)
+	  9: Rel (     0,  -147)  ->  Abs (  1229,   290)
+	 10: Rel (  -541,     0)  ->  Abs (   688,   290)
+	 11: Rel (     0,  -905)  ->  Abs (   688,  -615)
+
+	Glyph 352: off = 0x00013814, len = 106
+	  numberOfContours:	2
+	  xMin:			381
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  11
+
+	  Length of Instructions:	54
+	00000: PUSHB[4]              6     6     3     1 
+	00005: PUSHW[7]            852     9   852     0   853     8   853 
+	00020: NPUSHB      (12):     3     7     7     0     0    11    11     0     8     1 
+	                             8     5 
+	00034: MDAP[rd]   
+	00035: MDAP[rd]   
+	00036: DELTAP1    
+	00037: SHP[rp1,zp0] 
+	00038: MDAP[rd]   
+	00039: SHP[rp1,zp0] 
+	00040: MDAP[rd]   
+	00041: SHP[rp1,zp0] 
+	00042: MDAP[rd]   
+	00043: ALIGNRP    
+	00044: SVTCA[y-axis] 
+	00045: MIAP[rd+ci] 
+	00046: MIAP[rd+ci] 
+	00047: MIAP[rd+ci] 
+	00048: MIAP[rd+ci] 
+	00049: MDAP[rd]   
+	00050: SHP[rp1,zp0] 
+	00051: MDAP[rd]   
+	00052: IUP[y]     
+	00053: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual                         On
+	  8:  YDual                               On
+	  9:        XDual                         On
+	 10:  YDual XDual                 X-Short On
+	 11:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   701,  -615)  ->  Abs (   701,  -615)
+	  1: Rel (     0,  2320)  ->  Abs (   701,  1705)
+	  2: Rel (   147,     0)  ->  Abs (   848,  1705)
+	  3: Rel (     0, -1108)  ->  Abs (   848,   597)
+	  4: Rel (   381,     0)  ->  Abs (  1229,   597)
+	  5: Rel (     0,  -147)  ->  Abs (  1229,   450)
+	  6: Rel (  -381,     0)  ->  Abs (   848,   450)
+	  7: Rel (     0, -1065)  ->  Abs (   848,  -615)
+	  8: Rel (  -467,     0)  ->  Abs (   381,  -615)
+	  9: Rel (     0,  2320)  ->  Abs (   381,  1705)
+	 10: Rel (   147,     0)  ->  Abs (   528,  1705)
+	 11: Rel (     0, -2320)  ->  Abs (   528,  -615)
+
+	Glyph 353: off = 0x0001387E, len = 136
+	  numberOfContours:	3
+	  xMin:			381
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  9
+	  2:  15
+
+	  Length of Instructions:	69
+	00000: NPUSHB       (9):    14    14    11    11     4     7     7     4     5 
+	00011: PUSHW[7]            852     1   852    10   853     0   853 
+	00026: NPUSHB      (14):     7    15    15     4    10    10     3     3     0     0 
+	                             1     0     9    13 
+	00042: MDAP[rd]   
+	00043: MDAP[rd]   
+	00044: MDAP[rd]   
+	00045: DELTAP1    
+	00046: SHP[rp1,zp0] 
+	00047: MDAP[rd]   
+	00048: SHP[rp1,zp0] 
+	00049: MDAP[rd]   
+	00050: ALIGNRP    
+	00051: SHP[rp1,zp0] 
+	00052: MDAP[rd]   
+	00053: ALIGNRP    
+	00054: SVTCA[y-axis] 
+	00055: MIAP[rd+ci] 
+	00056: MIAP[rd+ci] 
+	00057: MIAP[rd+ci] 
+	00058: MIAP[rd+ci] 
+	00059: MDAP[rd]   
+	00060: SHP[rp1,zp0] 
+	00061: MDAP[rd]   
+	00062: SRP1       
+	00063: SHP[rp1,zp0] 
+	00064: MDAP[rd]   
+	00065: SHP[rp1,zp0] 
+	00066: MDAP[rd]   
+	00067: IUP[y]     
+	00068: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:        XDual                 X-Short On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:  YDual                               On
+	  9:        XDual         Y-Short         On
+	 10:                                      On
+	 11:        XDual                         On
+	 12:  YDual                               On
+	 13:        XDual         Y-Short         On
+	 14:  YDual                               On
+	 15:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   381,  -615)  ->  Abs (   381,  -615)
+	  1: Rel (     0,  2320)  ->  Abs (   381,  1705)
+	  2: Rel (   147,     0)  ->  Abs (   528,  1705)
+	  3: Rel (     0, -2320)  ->  Abs (   528,  -615)
+	  4: Rel (   173,  1225)  ->  Abs (   701,   610)
+	  5: Rel (     0,  1095)  ->  Abs (   701,  1705)
+	  6: Rel (   147,     0)  ->  Abs (   848,  1705)
+	  7: Rel (     0,  -948)  ->  Abs (   848,   757)
+	  8: Rel (   381,     0)  ->  Abs (  1229,   757)
+	  9: Rel (     0,  -147)  ->  Abs (  1229,   610)
+	 10: Rel (  -528, -1225)  ->  Abs (   701,  -615)
+	 11: Rel (     0,  1052)  ->  Abs (   701,   437)
+	 12: Rel (   528,     0)  ->  Abs (  1229,   437)
+	 13: Rel (     0,  -147)  ->  Abs (  1229,   290)
+	 14: Rel (  -381,     0)  ->  Abs (   848,   290)
+	 15: Rel (     0,  -905)  ->  Abs (   848,  -615)
+
+	Glyph 354: off = 0x00013906, len = 98
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			688
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	51
+	00000: NPUSHB       (9):     1     1     2     2     5     6     6     5     8 
+	00011: PUSHW[3]            852    11   853 
+	00018: NPUSHB       (9):     7     3     3    11    10    10    11     5     1 
+	00029: MDAP[rd]   
+	00030: MDAP[rd]   
+	00031: MDAP[rd]   
+	00032: SHP[rp1,zp0] 
+	00033: MDAP[rd]   
+	00034: SRP0       
+	00035: ALIGNRP    
+	00036: SRP0       
+	00037: ALIGNRP    
+	00038: SVTCA[y-axis] 
+	00039: MIAP[rd+ci] 
+	00040: MIAP[rd+ci] 
+	00041: MDAP[rd]   
+	00042: SHP[rp1,zp0] 
+	00043: MDAP[rd]   
+	00044: SRP1       
+	00045: SHP[rp1,zp0] 
+	00046: MDAP[rd]   
+	00047: SHP[rp1,zp0] 
+	00048: MDAP[rd]   
+	00049: IUP[y]     
+	00050: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   541,   290)  ->  Abs (   541,   290)
+	  1: Rel (  -541,     0)  ->  Abs (     0,   290)
+	  2: Rel (     0,   147)  ->  Abs (     0,   437)
+	  3: Rel (   541,     0)  ->  Abs (   541,   437)
+	  4: Rel (     0,   173)  ->  Abs (   541,   610)
+	  5: Rel (  -541,     0)  ->  Abs (     0,   610)
+	  6: Rel (     0,   147)  ->  Abs (     0,   757)
+	  7: Rel (   541,     0)  ->  Abs (   541,   757)
+	  8: Rel (     0,   948)  ->  Abs (   541,  1705)
+	  9: Rel (   147,     0)  ->  Abs (   688,  1705)
+	 10: Rel (     0, -2320)  ->  Abs (   688,  -615)
+	 11: Rel (  -147,     0)  ->  Abs (   541,  -615)
+
+	Glyph 355: off = 0x00013968, len = 106
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			848
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  11
+
+	  Length of Instructions:	56
+	00000: PUSHB[4]              2     2     3     9 
+	00005: PUSHW[7]            852     5   852     8   853     0   853 
+	00020: NPUSHB      (13):    11    11     8     8     4     0     7     7     0     0 
+	                             1     0     2 
+	00035: MDAP[rd]   
+	00036: MDAP[rd]   
+	00037: DELTAP1    
+	00038: SHP[rp1,zp0] 
+	00039: MDAP[rd]   
+	00040: SRP0       
+	00041: ALIGNRP    
+	00042: SHP[rp1,zp0] 
+	00043: MDAP[rd]   
+	00044: SHP[rp1,zp0] 
+	00045: MDAP[rd]   
+	00046: SVTCA[y-axis] 
+	00047: MIAP[rd+ci] 
+	00048: MIAP[rd+ci] 
+	00049: MIAP[rd+ci] 
+	00050: MIAP[rd+ci] 
+	00051: MDAP[rd]   
+	00052: SHP[rp1,zp0] 
+	00053: MDAP[rd]   
+	00054: IUP[y]     
+	00055: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual                         On
+	 10:  YDual XDual                 X-Short On
+	 11:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   381,  -615)  ->  Abs (   381,  -615)
+	  1: Rel (     0,  1065)  ->  Abs (   381,   450)
+	  2: Rel (  -381,     0)  ->  Abs (     0,   450)
+	  3: Rel (     0,   147)  ->  Abs (     0,   597)
+	  4: Rel (   381,     0)  ->  Abs (   381,   597)
+	  5: Rel (     0,  1108)  ->  Abs (   381,  1705)
+	  6: Rel (   147,     0)  ->  Abs (   528,  1705)
+	  7: Rel (     0, -2320)  ->  Abs (   528,  -615)
+	  8: Rel (   173,     0)  ->  Abs (   701,  -615)
+	  9: Rel (     0,  2320)  ->  Abs (   701,  1705)
+	 10: Rel (   147,     0)  ->  Abs (   848,  1705)
+	 11: Rel (     0, -2320)  ->  Abs (   848,  -615)
+
+	Glyph 356: off = 0x000139D2, len = 140
+	  numberOfContours:	3
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			848
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  9
+	  2:  15
+
+	  Length of Instructions:	73
+	00000: NPUSHB       (9):    11    11    12    12     6     7     7     6     1 
+	00011: PUSHW[7]            852     9   852     0   853    15   853 
+	00026: NPUSHB      (16):     5    14     3     3     0     0     8    15    14    14 
+	                             0    15     1    15     6    11 
+	00044: MDAP[rd]   
+	00045: MDAP[rd]   
+	00046: MDAP[rd]   
+	00047: DELTAP1    
+	00048: SHP[rp1,zp0] 
+	00049: MDAP[rd]   
+	00050: SRP0       
+	00051: ALIGNRP    
+	00052: SHP[rp1,zp0] 
+	00053: MDAP[rd]   
+	00054: SHP[rp1,zp0] 
+	00055: MDAP[rd]   
+	00056: SRP0       
+	00057: ALIGNRP    
+	00058: SVTCA[y-axis] 
+	00059: MIAP[rd+ci] 
+	00060: MIAP[rd+ci] 
+	00061: MIAP[rd+ci] 
+	00062: MIAP[rd+ci] 
+	00063: MDAP[rd]   
+	00064: SHP[rp1,zp0] 
+	00065: MDAP[rd]   
+	00066: SRP1       
+	00067: SHP[rp1,zp0] 
+	00068: MDAP[rd]   
+	00069: SHP[rp1,zp0] 
+	00070: MDAP[rd]   
+	00071: IUP[y]     
+	00072: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual                         On
+	  4:                                      On
+	  5:        XDual                         On
+	  6:  YDual                               On
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:        XDual                         On
+	 10:        XDual                         On
+	 11:  YDual                               On
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual                               On
+	 14:        XDual                         On
+	 15:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   701,  -615)  ->  Abs (   701,  -615)
+	  1: Rel (     0,  2320)  ->  Abs (   701,  1705)
+	  2: Rel (   147,     0)  ->  Abs (   848,  1705)
+	  3: Rel (     0, -2320)  ->  Abs (   848,  -615)
+	  4: Rel (  -320,  2320)  ->  Abs (   528,  1705)
+	  5: Rel (     0, -1095)  ->  Abs (   528,   610)
+	  6: Rel (  -528,     0)  ->  Abs (     0,   610)
+	  7: Rel (     0,   147)  ->  Abs (     0,   757)
+	  8: Rel (   381,     0)  ->  Abs (   381,   757)
+	  9: Rel (     0,   948)  ->  Abs (   381,  1705)
+	 10: Rel (     0, -1415)  ->  Abs (   381,   290)
+	 11: Rel (  -381,     0)  ->  Abs (     0,   290)
+	 12: Rel (     0,   147)  ->  Abs (     0,   437)
+	 13: Rel (   528,     0)  ->  Abs (   528,   437)
+	 14: Rel (     0, -1052)  ->  Abs (   528,  -615)
+	 15: Rel (  -147,     0)  ->  Abs (   381,  -615)
+
+	Glyph 357: off = 0x00013A5E, len = 100
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			757
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  11
+
+	  Length of Instructions:	47
+	00000: NPUSHB      (12):     9     5     5     6     6     1     9     5     2     2 
+	                             1    11 
+	00014: PUSHW[1]            853 
+	00017: PUSHB[7]             10    10    11     0     8     1     5 
+	00025: MDAP[rd]   
+	00026: MDAP[rd]   
+	00027: MDAP[rd]   
+	00028: MDAP[rd]   
+	00029: MDAP[rd]   
+	00030: SHP[rp1,zp0] 
+	00031: MDAP[rd]   
+	00032: SVTCA[y-axis] 
+	00033: MIAP[rd+ci] 
+	00034: MDAP[rd]   
+	00035: SHP[rp1,zp0] 
+	00036: MDAP[rd]   
+	00037: SRP0       
+	00038: ALIGNRP    
+	00039: SRP1       
+	00040: SHP[rp1,zp0] 
+	00041: MDAP[rd]   
+	00042: SHP[rp1,zp0] 
+	00043: MDAP[rd]   
+	00044: ALIGNRP    
+	00045: IUP[y]     
+	00046: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:                                      On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual         Y-Short         On
+	  9:  YDual                               On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,   610)  ->  Abs (  1229,   610)
+	  1: Rel ( -1229,     0)  ->  Abs (     0,   610)
+	  2: Rel (     0,   147)  ->  Abs (     0,   757)
+	  3: Rel (  1229,     0)  ->  Abs (  1229,   757)
+	  4: Rel (  -688,  -467)  ->  Abs (   541,   290)
+	  5: Rel (  -541,     0)  ->  Abs (     0,   290)
+	  6: Rel (     0,   147)  ->  Abs (     0,   437)
+	  7: Rel (  1229,     0)  ->  Abs (  1229,   437)
+	  8: Rel (     0,  -147)  ->  Abs (  1229,   290)
+	  9: Rel (  -541,     0)  ->  Abs (   688,   290)
+	 10: Rel (     0,  -905)  ->  Abs (   688,  -615)
+	 11: Rel (  -147,     0)  ->  Abs (   541,  -615)
+
+	Glyph 358: off = 0x00013AC2, len = 98
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			597
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	50
+	00000: PUSHB[7]              6    10    10     2     2     3     8 
+	00008: PUSHW[3]            853     0   853 
+	00015: NPUSHB      (12):     7     7     8     8    11    11     0     0     1     0 
+	                             5     2 
+	00029: MDAP[rd]   
+	00030: MDAP[rd]   
+	00031: MDAP[rd]   
+	00032: DELTAP1    
+	00033: SHP[rp1,zp0] 
+	00034: MDAP[rd]   
+	00035: SHP[rp1,zp0] 
+	00036: MDAP[rd]   
+	00037: SHP[rp1,zp0] 
+	00038: MDAP[rd]   
+	00039: SVTCA[y-axis] 
+	00040: MIAP[rd+ci] 
+	00041: MIAP[rd+ci] 
+	00042: MDAP[rd]   
+	00043: SHP[rp1,zp0] 
+	00044: MDAP[rd]   
+	00045: ALIGNRP    
+	00046: SRP0       
+	00047: ALIGNRP    
+	00048: IUP[y]     
+	00049: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:        XDual                         On
+	  8:  YDual                       X-Short On
+	  9:        XDual                         On
+	 10:  YDual                       X-Short On
+	 11:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   381,  -615)  ->  Abs (   381,  -615)
+	  1: Rel (     0,  1065)  ->  Abs (   381,   450)
+	  2: Rel (  -381,     0)  ->  Abs (     0,   450)
+	  3: Rel (     0,   147)  ->  Abs (     0,   597)
+	  4: Rel (  1229,     0)  ->  Abs (  1229,   597)
+	  5: Rel (     0,  -147)  ->  Abs (  1229,   450)
+	  6: Rel (  -381,     0)  ->  Abs (   848,   450)
+	  7: Rel (     0, -1065)  ->  Abs (   848,  -615)
+	  8: Rel (  -147,     0)  ->  Abs (   701,  -615)
+	  9: Rel (     0,  1065)  ->  Abs (   701,   450)
+	 10: Rel (  -173,     0)  ->  Abs (   528,   450)
+	 11: Rel (     0, -1065)  ->  Abs (   528,  -615)
+
+	Glyph 359: off = 0x00013B24, len = 132
+	  numberOfContours:	3
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			757
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  9
+	  2:  15
+
+	  Length of Instructions:	65
+	00000: NPUSHB      (12):    11     6    14     5     5     6     6     1     2     2 
+	                             1    10 
+	00014: PUSHW[3]            853     9   853 
+	00021: NPUSHB      (14):    15    15    10    10     8     8     0     9     1     9 
+	                             0    13     1     5 
+	00037: MDAP[rd]   
+	00038: MDAP[rd]   
+	00039: MDAP[rd]   
+	00040: MDAP[rd]   
+	00041: MDAP[rd]   
+	00042: DELTAP1    
+	00043: SHP[rp1,zp0] 
+	00044: MDAP[rd]   
+	00045: SHP[rp1,zp0] 
+	00046: MDAP[rd]   
+	00047: SHP[rp1,zp0] 
+	00048: MDAP[rd]   
+	00049: SVTCA[y-axis] 
+	00050: MIAP[rd+ci] 
+	00051: MIAP[rd+ci] 
+	00052: MDAP[rd]   
+	00053: SHP[rp1,zp0] 
+	00054: MDAP[rd]   
+	00055: SRP1       
+	00056: SHP[rp1,zp0] 
+	00057: MDAP[rd]   
+	00058: SHP[rp1,zp0] 
+	00059: MDAP[rd]   
+	00060: ALIGNRP    
+	00061: SRP0       
+	00062: ALIGNRP    
+	00063: IUP[y]     
+	00064: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:                                      On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+	 10:  YDual                               On
+	 11:        XDual                         On
+	 12:  YDual                               On
+	 13:        XDual         Y-Short         On
+	 14:  YDual                               On
+	 15:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,   610)  ->  Abs (  1229,   610)
+	  1: Rel ( -1229,     0)  ->  Abs (     0,   610)
+	  2: Rel (     0,   147)  ->  Abs (     0,   757)
+	  3: Rel (  1229,     0)  ->  Abs (  1229,   757)
+	  4: Rel (  -848,  -467)  ->  Abs (   381,   290)
+	  5: Rel (  -381,     0)  ->  Abs (     0,   290)
+	  6: Rel (     0,   147)  ->  Abs (     0,   437)
+	  7: Rel (   528,     0)  ->  Abs (   528,   437)
+	  8: Rel (     0, -1052)  ->  Abs (   528,  -615)
+	  9: Rel (  -147,     0)  ->  Abs (   381,  -615)
+	 10: Rel (   320,     0)  ->  Abs (   701,  -615)
+	 11: Rel (     0,  1052)  ->  Abs (   701,   437)
+	 12: Rel (   528,     0)  ->  Abs (  1229,   437)
+	 13: Rel (     0,  -147)  ->  Abs (  1229,   290)
+	 14: Rel (  -381,     0)  ->  Abs (   848,   290)
+	 15: Rel (     0,  -905)  ->  Abs (   848,  -615)
+
+	Glyph 360: off = 0x00013BA8, len = 94
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			290
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  11
+
+	  Length of Instructions:	43
+	00000: NPUSHB      (10):     9     9    10    10     1     6     2     2     1     4 
+	00012: PUSHW[1]            852 
+	00015: PUSHB[7]              6     6     3     0     8     1     9 
+	00023: MDAP[rd]   
+	00024: MDAP[rd]   
+	00025: MDAP[rd]   
+	00026: MDAP[rd]   
+	00027: MDAP[rd]   
+	00028: SHP[rp1,zp0] 
+	00029: MDAP[rd]   
+	00030: SVTCA[y-axis] 
+	00031: MIAP[rd+ci] 
+	00032: MDAP[rd]   
+	00033: SHP[rp1,zp0] 
+	00034: MDAP[rd]   
+	00035: ALIGNRP    
+	00036: SRP1       
+	00037: SHP[rp1,zp0] 
+	00038: MDAP[rd]   
+	00039: SHP[rp1,zp0] 
+	00040: MDAP[rd]   
+	00041: IUP[y]     
+	00042: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual                               On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,   610)  ->  Abs (  1229,   610)
+	  1: Rel ( -1229,     0)  ->  Abs (     0,   610)
+	  2: Rel (     0,   147)  ->  Abs (     0,   757)
+	  3: Rel (   541,     0)  ->  Abs (   541,   757)
+	  4: Rel (     0,   948)  ->  Abs (   541,  1705)
+	  5: Rel (   147,     0)  ->  Abs (   688,  1705)
+	  6: Rel (     0,  -948)  ->  Abs (   688,   757)
+	  7: Rel (   541,     0)  ->  Abs (  1229,   757)
+	  8: Rel (     0,  -467)  ->  Abs (  1229,   290)
+	  9: Rel ( -1229,     0)  ->  Abs (     0,   290)
+	 10: Rel (     0,   147)  ->  Abs (     0,   437)
+	 11: Rel (  1229,     0)  ->  Abs (  1229,   437)
+
+	Glyph 361: off = 0x00013C06, len = 100
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			450
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	52
+	00000: PUSHB[8]             10     6     6     2     1     1     2     8 
+	00009: PUSHW[3]            852     4   852 
+	00016: NPUSHB      (12):    10    10     7     7     6     6     0     3     1     3 
+	                             1     0 
+	00030: MDAP[rd]   
+	00031: MDAP[rd]   
+	00032: MDAP[rd]   
+	00033: DELTAP1    
+	00034: SHP[rp1,zp0] 
+	00035: MDAP[rd]   
+	00036: SHP[rp1,zp0] 
+	00037: MDAP[rd]   
+	00038: SHP[rp1,zp0] 
+	00039: MDAP[rd]   
+	00040: SVTCA[y-axis] 
+	00041: MIAP[rd+ci] 
+	00042: MIAP[rd+ci] 
+	00043: MDAP[rd]   
+	00044: SHP[rp1,zp0] 
+	00045: MDAP[rd]   
+	00046: SRP0       
+	00047: ALIGNRP    
+	00048: SRP0       
+	00049: ALIGNRP    
+	00050: IUP[y]     
+	00051: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual                         On
+	  7:  YDual XDual                 X-Short On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual                         On
+	 11:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,   450)  ->  Abs (  1229,   450)
+	  1: Rel ( -1229,     0)  ->  Abs (     0,   450)
+	  2: Rel (     0,   147)  ->  Abs (     0,   597)
+	  3: Rel (   381,     0)  ->  Abs (   381,   597)
+	  4: Rel (     0,  1108)  ->  Abs (   381,  1705)
+	  5: Rel (   147,     0)  ->  Abs (   528,  1705)
+	  6: Rel (     0, -1108)  ->  Abs (   528,   597)
+	  7: Rel (   173,     0)  ->  Abs (   701,   597)
+	  8: Rel (     0,  1108)  ->  Abs (   701,  1705)
+	  9: Rel (   147,     0)  ->  Abs (   848,  1705)
+	 10: Rel (     0, -1108)  ->  Abs (   848,   597)
+	 11: Rel (   381,     0)  ->  Abs (  1229,   597)
+
+	Glyph 362: off = 0x00013C6A, len = 132
+	  numberOfContours:	3
+	  xMin:			0
+	  yMin:			290
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  11
+	  2:  15
+
+	  Length of Instructions:	65
+	00000: NPUSHB      (12):    13    13    14    14     1     7     1    10     2     2 
+	                             1     8 
+	00014: PUSHW[3]            852     4   852 
+	00021: NPUSHB      (14):    10    10     7     7     0     0     0     3     1     3 
+	                             6    12     1    13 
+	00037: MDAP[rd]   
+	00038: MDAP[rd]   
+	00039: MDAP[rd]   
+	00040: MDAP[rd]   
+	00041: MDAP[rd]   
+	00042: DELTAP1    
+	00043: SHP[rp1,zp0] 
+	00044: MDAP[rd]   
+	00045: SHP[rp1,zp0] 
+	00046: MDAP[rd]   
+	00047: SHP[rp1,zp0] 
+	00048: MDAP[rd]   
+	00049: SVTCA[y-axis] 
+	00050: MIAP[rd+ci] 
+	00051: MIAP[rd+ci] 
+	00052: MDAP[rd]   
+	00053: SHP[rp1,zp0] 
+	00054: MDAP[rd]   
+	00055: ALIGNRP    
+	00056: SRP0       
+	00057: ALIGNRP    
+	00058: SRP1       
+	00059: SHP[rp1,zp0] 
+	00060: MDAP[rd]   
+	00061: SHP[rp1,zp0] 
+	00062: MDAP[rd]   
+	00063: IUP[y]     
+	00064: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:                                      On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual                         On
+	 11:  YDual                               On
+	 12:        XDual                         On
+	 13:  YDual                               On
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   528,   610)  ->  Abs (   528,   610)
+	  1: Rel (  -528,     0)  ->  Abs (     0,   610)
+	  2: Rel (     0,   147)  ->  Abs (     0,   757)
+	  3: Rel (   381,     0)  ->  Abs (   381,   757)
+	  4: Rel (     0,   948)  ->  Abs (   381,  1705)
+	  5: Rel (   147,     0)  ->  Abs (   528,  1705)
+	  6: Rel (   701, -1095)  ->  Abs (  1229,   610)
+	  7: Rel (  -528,     0)  ->  Abs (   701,   610)
+	  8: Rel (     0,  1095)  ->  Abs (   701,  1705)
+	  9: Rel (   147,     0)  ->  Abs (   848,  1705)
+	 10: Rel (     0,  -948)  ->  Abs (   848,   757)
+	 11: Rel (   381,     0)  ->  Abs (  1229,   757)
+	 12: Rel (     0,  -467)  ->  Abs (  1229,   290)
+	 13: Rel ( -1229,     0)  ->  Abs (     0,   290)
+	 14: Rel (     0,   147)  ->  Abs (     0,   437)
+	 15: Rel (  1229,     0)  ->  Abs (  1229,   437)
+
+	Glyph 363: off = 0x00013CEE, len = 146
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	77
+	00000: NPUSHB      (16):    14     2    17     1     1     2     2     5    10     6 
+	                            13     5     6     6     5     8 
+	00018: PUSHW[3]            852    19   853 
+	00025: NPUSHB      (15):    10    14    14    18     7     3     3    19    18    18 
+	                            19    12    16     1     5 
+	00042: MDAP[rd]   
+	00043: MDAP[rd]   
+	00044: MDAP[rd]   
+	00045: MDAP[rd]   
+	00046: MDAP[rd]   
+	00047: SHP[rp1,zp0] 
+	00048: MDAP[rd]   
+	00049: SRP0       
+	00050: ALIGNRP    
+	00051: SRP0       
+	00052: ALIGNRP    
+	00053: SRP0       
+	00054: ALIGNRP    
+	00055: SRP0       
+	00056: ALIGNRP    
+	00057: SVTCA[y-axis] 
+	00058: MIAP[rd+ci] 
+	00059: MIAP[rd+ci] 
+	00060: MDAP[rd]   
+	00061: SHP[rp1,zp0] 
+	00062: MDAP[rd]   
+	00063: SRP0       
+	00064: ALIGNRP    
+	00065: SRP0       
+	00066: ALIGNRP    
+	00067: SRP1       
+	00068: SHP[rp1,zp0] 
+	00069: MDAP[rd]   
+	00070: SHP[rp1,zp0] 
+	00071: MDAP[rd]   
+	00072: ALIGNRP    
+	00073: SRP0       
+	00074: ALIGNRP    
+	00075: IUP[y]     
+	00076: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual                         On
+	 11:  YDual                               On
+	 12:        XDual         Y-Short         On
+	 13:  YDual                               On
+	 14:        XDual         Y-Short         On
+	 15:  YDual                               On
+	 16:        XDual         Y-Short         On
+	 17:  YDual                               On
+	 18:        XDual                         On
+	 19:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   541,   290)  ->  Abs (   541,   290)
+	  1: Rel (  -541,     0)  ->  Abs (     0,   290)
+	  2: Rel (     0,   147)  ->  Abs (     0,   437)
+	  3: Rel (   541,     0)  ->  Abs (   541,   437)
+	  4: Rel (     0,   173)  ->  Abs (   541,   610)
+	  5: Rel (  -541,     0)  ->  Abs (     0,   610)
+	  6: Rel (     0,   147)  ->  Abs (     0,   757)
+	  7: Rel (   541,     0)  ->  Abs (   541,   757)
+	  8: Rel (     0,   948)  ->  Abs (   541,  1705)
+	  9: Rel (   147,     0)  ->  Abs (   688,  1705)
+	 10: Rel (     0,  -948)  ->  Abs (   688,   757)
+	 11: Rel (   541,     0)  ->  Abs (  1229,   757)
+	 12: Rel (     0,  -147)  ->  Abs (  1229,   610)
+	 13: Rel (  -541,     0)  ->  Abs (   688,   610)
+	 14: Rel (     0,  -173)  ->  Abs (   688,   437)
+	 15: Rel (   541,     0)  ->  Abs (  1229,   437)
+	 16: Rel (     0,  -147)  ->  Abs (  1229,   290)
+	 17: Rel (  -541,     0)  ->  Abs (   688,   290)
+	 18: Rel (     0,  -905)  ->  Abs (   688,  -615)
+	 19: Rel (  -147,     0)  ->  Abs (   541,  -615)
+
+	Glyph 364: off = 0x00013D80, len = 154
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	85
+	00000: NPUSHB      (11):    11     7     7     3    14    18    18     2     2     3 
+	                             9 
+	00013: PUSHW[7]            852     5   852    16   853     0   853 
+	00028: NPUSHB      (20):    11    15     8    16    15    15    16    16     7    19 
+	                             4     0    19    19     0     0     1     0    13     2 
+	00050: MDAP[rd]   
+	00051: MDAP[rd]   
+	00052: MDAP[rd]   
+	00053: DELTAP1    
+	00054: SHP[rp1,zp0] 
+	00055: MDAP[rd]   
+	00056: SRP0       
+	00057: ALIGNRP    
+	00058: SRP0       
+	00059: ALIGNRP    
+	00060: SHP[rp1,zp0] 
+	00061: MDAP[rd]   
+	00062: SHP[rp1,zp0] 
+	00063: MDAP[rd]   
+	00064: SRP0       
+	00065: ALIGNRP    
+	00066: SRP0       
+	00067: ALIGNRP    
+	00068: SVTCA[y-axis] 
+	00069: MIAP[rd+ci] 
+	00070: MIAP[rd+ci] 
+	00071: MIAP[rd+ci] 
+	00072: MIAP[rd+ci] 
+	00073: MDAP[rd]   
+	00074: SHP[rp1,zp0] 
+	00075: MDAP[rd]   
+	00076: ALIGNRP    
+	00077: SRP0       
+	00078: ALIGNRP    
+	00079: SRP0       
+	00080: ALIGNRP    
+	00081: SRP0       
+	00082: ALIGNRP    
+	00083: IUP[y]     
+	00084: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual                         On
+	 10:  YDual XDual                 X-Short On
+	 11:        XDual                         On
+	 12:  YDual                               On
+	 13:        XDual         Y-Short         On
+	 14:  YDual                               On
+	 15:        XDual                         On
+	 16:  YDual                       X-Short On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   381,  -615)  ->  Abs (   381,  -615)
+	  1: Rel (     0,  1065)  ->  Abs (   381,   450)
+	  2: Rel (  -381,     0)  ->  Abs (     0,   450)
+	  3: Rel (     0,   147)  ->  Abs (     0,   597)
+	  4: Rel (   381,     0)  ->  Abs (   381,   597)
+	  5: Rel (     0,  1108)  ->  Abs (   381,  1705)
+	  6: Rel (   147,     0)  ->  Abs (   528,  1705)
+	  7: Rel (     0, -1108)  ->  Abs (   528,   597)
+	  8: Rel (   173,     0)  ->  Abs (   701,   597)
+	  9: Rel (     0,  1108)  ->  Abs (   701,  1705)
+	 10: Rel (   147,     0)  ->  Abs (   848,  1705)
+	 11: Rel (     0, -1108)  ->  Abs (   848,   597)
+	 12: Rel (   381,     0)  ->  Abs (  1229,   597)
+	 13: Rel (     0,  -147)  ->  Abs (  1229,   450)
+	 14: Rel (  -381,     0)  ->  Abs (   848,   450)
+	 15: Rel (     0, -1065)  ->  Abs (   848,  -615)
+	 16: Rel (  -147,     0)  ->  Abs (   701,  -615)
+	 17: Rel (     0,  1065)  ->  Abs (   701,   450)
+	 18: Rel (  -173,     0)  ->  Abs (   528,   450)
+	 19: Rel (     0, -1065)  ->  Abs (   528,  -615)
+
+	Glyph 365: off = 0x00013E1A, len = 192
+	  numberOfContours:	4
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  11
+	  2:  17
+	  3:  23
+
+	  Length of Instructions:	99
+	00000: NPUSHB      (16):    21    14    18    13    13    14    14    10     0    11 
+	                             3    10    11    11    10     4 
+	00018: PUSHW[7]            852     7   852    20   853    17   853 
+	00033: NPUSHB      (22):     0    19     3    20    19    19    20    20     9    16 
+	                             6    17    16    16     0    17     1    17     2    23 
+	                            10    13 
+	00057: MDAP[rd]   
+	00058: MDAP[rd]   
+	00059: MDAP[rd]   
+	00060: MDAP[rd]   
+	00061: MDAP[rd]   
+	00062: DELTAP1    
+	00063: SHP[rp1,zp0] 
+	00064: MDAP[rd]   
+	00065: SRP0       
+	00066: ALIGNRP    
+	00067: SRP0       
+	00068: ALIGNRP    
+	00069: SHP[rp1,zp0] 
+	00070: MDAP[rd]   
+	00071: SHP[rp1,zp0] 
+	00072: MDAP[rd]   
+	00073: SRP0       
+	00074: ALIGNRP    
+	00075: SRP0       
+	00076: ALIGNRP    
+	00077: SVTCA[y-axis] 
+	00078: MIAP[rd+ci] 
+	00079: MIAP[rd+ci] 
+	00080: MIAP[rd+ci] 
+	00081: MIAP[rd+ci] 
+	00082: MDAP[rd]   
+	00083: SHP[rp1,zp0] 
+	00084: MDAP[rd]   
+	00085: SRP0       
+	00086: ALIGNRP    
+	00087: SRP0       
+	00088: ALIGNRP    
+	00089: SRP1       
+	00090: SHP[rp1,zp0] 
+	00091: MDAP[rd]   
+	00092: SHP[rp1,zp0] 
+	00093: MDAP[rd]   
+	00094: ALIGNRP    
+	00095: SRP0       
+	00096: ALIGNRP    
+	00097: IUP[y]     
+	00098: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                               On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:                                      On
+	  7:        XDual                         On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual                         On
+	 10:  YDual                               On
+	 11:  YDual XDual         Y-Short         On
+	 12:                                      On
+	 13:  YDual                               On
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual                               On
+	 16:        XDual                         On
+	 17:  YDual                       X-Short On
+	 18:                                      On
+	 19:        XDual                         On
+	 20:  YDual                       X-Short On
+	 21:        XDual                         On
+	 22:  YDual                               On
+	 23:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   848,   757)  ->  Abs (   848,   757)
+	  1: Rel (   381,     0)  ->  Abs (  1229,   757)
+	  2: Rel (     0,  -147)  ->  Abs (  1229,   610)
+	  3: Rel (  -528,     0)  ->  Abs (   701,   610)
+	  4: Rel (     0,  1095)  ->  Abs (   701,  1705)
+	  5: Rel (   147,     0)  ->  Abs (   848,  1705)
+	  6: Rel (  -467,  -948)  ->  Abs (   381,   757)
+	  7: Rel (     0,   948)  ->  Abs (   381,  1705)
+	  8: Rel (   147,     0)  ->  Abs (   528,  1705)
+	  9: Rel (     0, -1095)  ->  Abs (   528,   610)
+	 10: Rel (  -528,     0)  ->  Abs (     0,   610)
+	 11: Rel (     0,   147)  ->  Abs (     0,   757)
+	 12: Rel (   381,  -467)  ->  Abs (   381,   290)
+	 13: Rel (  -381,     0)  ->  Abs (     0,   290)
+	 14: Rel (     0,   147)  ->  Abs (     0,   437)
+	 15: Rel (   528,     0)  ->  Abs (   528,   437)
+	 16: Rel (     0, -1052)  ->  Abs (   528,  -615)
+	 17: Rel (  -147,     0)  ->  Abs (   381,  -615)
+	 18: Rel (   467,   905)  ->  Abs (   848,   290)
+	 19: Rel (     0,  -905)  ->  Abs (   848,  -615)
+	 20: Rel (  -147,     0)  ->  Abs (   701,  -615)
+	 21: Rel (     0,  1052)  ->  Abs (   701,   437)
+	 22: Rel (   528,     0)  ->  Abs (  1229,   437)
+	 23: Rel (     0,  -147)  ->  Abs (  1229,   290)
+
+	Glyph 366: off = 0x00013EDA, len = 44
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			523
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	16
+	00000: PUSHB[2]              1     2 
+	00003: PUSHW[1]            852 
+	00006: PUSHB[2]              0     1 
+	00009: MDAP[rd]   
+	00010: MDAP[rd]   
+	00011: SVTCA[y-axis] 
+	00012: MIAP[rd+ci] 
+	00013: MDAP[rd]   
+	00014: IUP[y]     
+	00015: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,   523)  ->  Abs (  1229,   523)
+	  1: Rel ( -1229,     0)  ->  Abs (     0,   523)
+	  2: Rel (     0,  1182)  ->  Abs (     0,  1705)
+	  3: Rel (  1229,     0)  ->  Abs (  1229,  1705)
+
+	Glyph 367: off = 0x00013F06, len = 44
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			523
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	16
+	00000: PUSHB[2]              2     1 
+	00003: PUSHW[1]            853 
+	00006: PUSHB[2]              0     1 
+	00009: MDAP[rd]   
+	00010: MDAP[rd]   
+	00011: SVTCA[y-axis] 
+	00012: MIAP[rd+ci] 
+	00013: MDAP[rd]   
+	00014: IUP[y]     
+	00015: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,  -615)  ->  Abs (  1229,  -615)
+	  1: Rel ( -1229,     0)  ->  Abs (     0,  -615)
+	  2: Rel (     0,  1138)  ->  Abs (     0,   523)
+	  3: Rel (  1229,     0)  ->  Abs (  1229,   523)
+
+	Glyph 368: off = 0x00013F32, len = 46
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	19
+	00000: PUSHW[4]              1   852     0   853 
+	00009: PUSHB[2]              3     0 
+	00012: MDAP[rd]   
+	00013: MDAP[rd]   
+	00014: SVTCA[y-axis] 
+	00015: MIAP[rd+ci] 
+	00016: MIAP[rd+ci] 
+	00017: IUP[y]     
+	00018: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                         On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (     0,  -615)  ->  Abs (     0,  -615)
+	  1: Rel (     0,  2320)  ->  Abs (     0,  1705)
+	  2: Rel (  1229,     0)  ->  Abs (  1229,  1705)
+	  3: Rel (     0, -2320)  ->  Abs (  1229,  -615)
+
+	Glyph 369: off = 0x00013F60, len = 46
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			615
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	19
+	00000: PUSHW[4]              0   853     1   852 
+	00009: PUSHB[2]              3     0 
+	00012: MDAP[rd]   
+	00013: MDAP[rd]   
+	00014: SVTCA[y-axis] 
+	00015: MIAP[rd+ci] 
+	00016: MIAP[rd+ci] 
+	00017: IUP[y]     
+	00018: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                         On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (     0,  -615)  ->  Abs (     0,  -615)
+	  1: Rel (     0,  2320)  ->  Abs (     0,  1705)
+	  2: Rel (   615,     0)  ->  Abs (   615,  1705)
+	  3: Rel (     0, -2320)  ->  Abs (   615,  -615)
+
+	Glyph 370: off = 0x00013F8E, len = 48
+	  numberOfContours:	1
+	  xMin:			615
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	19
+	00000: PUSHW[4]              2   852     3   853 
+	00009: PUSHB[2]              0     3 
+	00012: MDAP[rd]   
+	00013: MDAP[rd]   
+	00014: SVTCA[y-axis] 
+	00015: MIAP[rd+ci] 
+	00016: MIAP[rd+ci] 
+	00017: IUP[y]     
+	00018: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   615,  -615)  ->  Abs (   615,  -615)
+	  1: Rel (     0,  2320)  ->  Abs (   615,  1705)
+	  2: Rel (   614,     0)  ->  Abs (  1229,  1705)
+	  3: Rel (     0, -2320)  ->  Abs (  1229,  -615)
+
+	Glyph 371: off = 0x00013FBE, len = 1106
+	  numberOfContours:	37
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  11
+	  3:  15
+	  4:  19
+	  5:  23
+	  6:  27
+	  7:  31
+	  8:  35
+	  9:  39
+	 10:  43
+	 11:  47
+	 12:  51
+	 13:  55
+	 14:  59
+	 15:  63
+	 16:  67
+	 17:  71
+	 18:  75
+	 19:  79
+	 20:  83
+	 21:  87
+	 22:  91
+	 23:  95
+	 24:  99
+	 25:  103
+	 26:  107
+	 27:  111
+	 28:  115
+	 29:  119
+	 30:  120
+	 31:  124
+	 32:  128
+	 33:  132
+	 34:  136
+	 35:  140
+	 36:  144
+
+	  Length of Instructions:	659
+	00000: NPUSHB     (255):   141   138   137   134   133   144   139   140   135   136 
+	                           129   126   125   122   121   132   127   128   123   124 
+	                             8     5     4     1     0    11     6     7     2     3 
+	                            20    17    16    13    12    23    18    19    14    15 
+	                            24    29    28    33    32    27    30    31    34    35 
+	                            36    41    40    45    44    39    42    43    46    47 
+	                            56    53    52    49    48    59    54    55    50    51 
+	                            60    65    64    69    68    63    66    67    70    71 
+	                            80    77    76    73    72    83    78    79    74    75 
+	                            92    89    88    85    84    95    90    91    86    87 
+	                            96   101   100   105   104    99   102   103   106   107 
+	                           116   113   112   109   108   119   114   115   110   131 
+	                            21    22    37    38    61    62    93    94   117   118 
+	                           132    20    23    36    39    60    63    92    95   116 
+	                           119   143     9    10    25    26    57    58    81    82 
+	                            97    98   144     8    11    24    27    56    59    80 
+	                            83    96    99   127    17    18    41    42    65    66 
+	                            89    90   113   114   128    16    19    40    43    64 
+	                            67    88    91   112   115   139     5     6    29    30 
+	                            53    54    77    78   101   102   140     4     7    28 
+	                            31    52    55    76    79   100   103   123    13    14 
+	                            45    46    69    70    85    86   109   110   124    12 
+	                            15    44    47    68    71    84    87   108   111   135 
+	                             1     2    33    34    49    50    73    74   105   106 
+	                           136     0     3    32    35    48    51    72    75   104 
+	                           142   133   143   136   130 
+	00257: NPUSHB      (69):   121   131   124     9     0    10     3    21    12    22 
+	                            15    25    32    26    35    37    44    38    47    57 
+	                            48    58    51    61    68    62    71    81    72    82 
+	                            75    93    84    94    87    97   104    98   107   117 
+	                           108   118   111   120   130   118   129   119   142    98 
+	                           141    99   126   114   125   115   138   102   137   103 
+	                           122   110   121   111   134   106   133   107   120 
+	00328: MDAP[rd]   
+	00329: MDAP[rd]   
+	00330: ALIGNRP    
+	00331: MDAP[rd]   
+	00332: ALIGNRP    
+	00333: MDAP[rd]   
+	00334: ALIGNRP    
+	00335: MDAP[rd]   
+	00336: ALIGNRP    
+	00337: MDAP[rd]   
+	00338: ALIGNRP    
+	00339: MDAP[rd]   
+	00340: ALIGNRP    
+	00341: MDAP[rd]   
+	00342: ALIGNRP    
+	00343: MDAP[rd]   
+	00344: ALIGNRP    
+	00345: MDAP[rd]   
+	00346: ALIGNRP    
+	00347: MDAP[rd]   
+	00348: ALIGNRP    
+	00349: MDAP[rd]   
+	00350: ALIGNRP    
+	00351: MDAP[rd]   
+	00352: ALIGNRP    
+	00353: SVTCA[y-axis] 
+	00354: MDAP[rd]   
+	00355: MDAP[rd]   
+	00356: ALIGNRP    
+	00357: MDAP[rd]   
+	00358: ALIGNRP    
+	00359: MDAP[rd]   
+	00360: ALIGNRP    
+	00361: MDAP[rd]   
+	00362: ALIGNRP    
+	00363: MDAP[rd]   
+	00364: ALIGNRP    
+	00365: MDAP[rd]   
+	00366: ALIGNRP    
+	00367: MDAP[rd]   
+	00368: ALIGNRP    
+	00369: MDAP[rd]   
+	00370: ALIGNRP    
+	00371: MDAP[rd]   
+	00372: ALIGNRP    
+	00373: MDAP[rd]   
+	00374: ALIGNRP    
+	00375: MDAP[rd]   
+	00376: ALIGNRP    
+	00377: MDAP[rd]   
+	00378: ALIGNRP    
+	00379: MDAP[rd]   
+	00380: ALIGNRP    
+	00381: MDAP[rd]   
+	00382: ALIGNRP    
+	00383: MDAP[rd]   
+	00384: ALIGNRP    
+	00385: MDAP[rd]   
+	00386: ALIGNRP    
+	00387: MDAP[rd]   
+	00388: ALIGNRP    
+	00389: MDAP[rd]   
+	00390: ALIGNRP    
+	00391: MDAP[rd]   
+	00392: ALIGNRP    
+	00393: MDAP[rd]   
+	00394: ALIGNRP    
+	00395: MDAP[rd]   
+	00396: ALIGNRP    
+	00397: MDAP[rd]   
+	00398: ALIGNRP    
+	00399: MDAP[rd]   
+	00400: ALIGNRP    
+	00401: MDAP[rd]   
+	00402: ALIGNRP    
+	00403: SPVTCA[x-axis] 
+	00404: SFVTCA[x-axis] 
+	00405: ALIGNRP    
+	00406: ALIGNRP    
+	00407: ALIGNRP    
+	00408: ALIGNRP    
+	00409: ALIGNRP    
+	00410: ALIGNRP    
+	00411: ALIGNRP    
+	00412: ALIGNRP    
+	00413: ALIGNRP    
+	00414: ALIGNRP    
+	00415: SRP0       
+	00416: ALIGNRP    
+	00417: ALIGNRP    
+	00418: ALIGNRP    
+	00419: ALIGNRP    
+	00420: ALIGNRP    
+	00421: ALIGNRP    
+	00422: ALIGNRP    
+	00423: ALIGNRP    
+	00424: ALIGNRP    
+	00425: ALIGNRP    
+	00426: SRP0       
+	00427: ALIGNRP    
+	00428: ALIGNRP    
+	00429: ALIGNRP    
+	00430: ALIGNRP    
+	00431: ALIGNRP    
+	00432: ALIGNRP    
+	00433: ALIGNRP    
+	00434: ALIGNRP    
+	00435: ALIGNRP    
+	00436: ALIGNRP    
+	00437: SRP0       
+	00438: ALIGNRP    
+	00439: ALIGNRP    
+	00440: ALIGNRP    
+	00441: ALIGNRP    
+	00442: ALIGNRP    
+	00443: ALIGNRP    
+	00444: ALIGNRP    
+	00445: ALIGNRP    
+	00446: ALIGNRP    
+	00447: ALIGNRP    
+	00448: SRP0       
+	00449: ALIGNRP    
+	00450: ALIGNRP    
+	00451: ALIGNRP    
+	00452: ALIGNRP    
+	00453: ALIGNRP    
+	00454: ALIGNRP    
+	00455: ALIGNRP    
+	00456: ALIGNRP    
+	00457: ALIGNRP    
+	00458: ALIGNRP    
+	00459: SRP0       
+	00460: ALIGNRP    
+	00461: ALIGNRP    
+	00462: ALIGNRP    
+	00463: ALIGNRP    
+	00464: ALIGNRP    
+	00465: ALIGNRP    
+	00466: ALIGNRP    
+	00467: ALIGNRP    
+	00468: ALIGNRP    
+	00469: ALIGNRP    
+	00470: SRP0       
+	00471: ALIGNRP    
+	00472: ALIGNRP    
+	00473: ALIGNRP    
+	00474: ALIGNRP    
+	00475: ALIGNRP    
+	00476: ALIGNRP    
+	00477: ALIGNRP    
+	00478: ALIGNRP    
+	00479: ALIGNRP    
+	00480: ALIGNRP    
+	00481: SRP0       
+	00482: ALIGNRP    
+	00483: ALIGNRP    
+	00484: ALIGNRP    
+	00485: ALIGNRP    
+	00486: ALIGNRP    
+	00487: ALIGNRP    
+	00488: ALIGNRP    
+	00489: ALIGNRP    
+	00490: ALIGNRP    
+	00491: ALIGNRP    
+	00492: SRP0       
+	00493: ALIGNRP    
+	00494: ALIGNRP    
+	00495: ALIGNRP    
+	00496: ALIGNRP    
+	00497: ALIGNRP    
+	00498: ALIGNRP    
+	00499: ALIGNRP    
+	00500: ALIGNRP    
+	00501: ALIGNRP    
+	00502: ALIGNRP    
+	00503: SRP0       
+	00504: ALIGNRP    
+	00505: ALIGNRP    
+	00506: ALIGNRP    
+	00507: ALIGNRP    
+	00508: ALIGNRP    
+	00509: ALIGNRP    
+	00510: ALIGNRP    
+	00511: ALIGNRP    
+	00512: ALIGNRP    
+	00513: ALIGNRP    
+	00514: SRP0       
+	00515: ALIGNRP    
+	00516: ALIGNRP    
+	00517: ALIGNRP    
+	00518: ALIGNRP    
+	00519: ALIGNRP    
+	00520: ALIGNRP    
+	00521: ALIGNRP    
+	00522: ALIGNRP    
+	00523: ALIGNRP    
+	00524: ALIGNRP    
+	00525: SRP0       
+	00526: ALIGNRP    
+	00527: ALIGNRP    
+	00528: ALIGNRP    
+	00529: ALIGNRP    
+	00530: ALIGNRP    
+	00531: ALIGNRP    
+	00532: ALIGNRP    
+	00533: ALIGNRP    
+	00534: ALIGNRP    
+	00535: ALIGNRP    
+	00536: SPVTCA[y-axis] 
+	00537: SFVTCA[y-axis] 
+	00538: ALIGNRP    
+	00539: ALIGNRP    
+	00540: ALIGNRP    
+	00541: ALIGNRP    
+	00542: SRP0       
+	00543: ALIGNRP    
+	00544: ALIGNRP    
+	00545: ALIGNRP    
+	00546: ALIGNRP    
+	00547: SRP0       
+	00548: ALIGNRP    
+	00549: ALIGNRP    
+	00550: ALIGNRP    
+	00551: ALIGNRP    
+	00552: SRP0       
+	00553: ALIGNRP    
+	00554: ALIGNRP    
+	00555: ALIGNRP    
+	00556: ALIGNRP    
+	00557: SRP0       
+	00558: ALIGNRP    
+	00559: ALIGNRP    
+	00560: ALIGNRP    
+	00561: ALIGNRP    
+	00562: SRP0       
+	00563: ALIGNRP    
+	00564: ALIGNRP    
+	00565: ALIGNRP    
+	00566: ALIGNRP    
+	00567: SRP0       
+	00568: ALIGNRP    
+	00569: ALIGNRP    
+	00570: ALIGNRP    
+	00571: ALIGNRP    
+	00572: SRP0       
+	00573: ALIGNRP    
+	00574: ALIGNRP    
+	00575: ALIGNRP    
+	00576: ALIGNRP    
+	00577: SRP0       
+	00578: ALIGNRP    
+	00579: ALIGNRP    
+	00580: ALIGNRP    
+	00581: ALIGNRP    
+	00582: SRP0       
+	00583: ALIGNRP    
+	00584: ALIGNRP    
+	00585: ALIGNRP    
+	00586: ALIGNRP    
+	00587: SRP0       
+	00588: ALIGNRP    
+	00589: ALIGNRP    
+	00590: ALIGNRP    
+	00591: ALIGNRP    
+	00592: SRP0       
+	00593: ALIGNRP    
+	00594: ALIGNRP    
+	00595: ALIGNRP    
+	00596: ALIGNRP    
+	00597: SRP0       
+	00598: ALIGNRP    
+	00599: ALIGNRP    
+	00600: ALIGNRP    
+	00601: ALIGNRP    
+	00602: SRP0       
+	00603: ALIGNRP    
+	00604: ALIGNRP    
+	00605: ALIGNRP    
+	00606: ALIGNRP    
+	00607: SRP0       
+	00608: ALIGNRP    
+	00609: ALIGNRP    
+	00610: ALIGNRP    
+	00611: ALIGNRP    
+	00612: SRP0       
+	00613: ALIGNRP    
+	00614: ALIGNRP    
+	00615: ALIGNRP    
+	00616: ALIGNRP    
+	00617: SRP0       
+	00618: ALIGNRP    
+	00619: ALIGNRP    
+	00620: ALIGNRP    
+	00621: ALIGNRP    
+	00622: SRP0       
+	00623: ALIGNRP    
+	00624: ALIGNRP    
+	00625: ALIGNRP    
+	00626: ALIGNRP    
+	00627: SRP0       
+	00628: ALIGNRP    
+	00629: ALIGNRP    
+	00630: ALIGNRP    
+	00631: ALIGNRP    
+	00632: SRP0       
+	00633: ALIGNRP    
+	00634: ALIGNRP    
+	00635: ALIGNRP    
+	00636: ALIGNRP    
+	00637: SRP0       
+	00638: ALIGNRP    
+	00639: ALIGNRP    
+	00640: ALIGNRP    
+	00641: ALIGNRP    
+	00642: SRP0       
+	00643: ALIGNRP    
+	00644: ALIGNRP    
+	00645: ALIGNRP    
+	00646: ALIGNRP    
+	00647: SRP0       
+	00648: ALIGNRP    
+	00649: ALIGNRP    
+	00650: ALIGNRP    
+	00651: ALIGNRP    
+	00652: SRP0       
+	00653: ALIGNRP    
+	00654: ALIGNRP    
+	00655: ALIGNRP    
+	00656: ALIGNRP    
+	00657: IUP[y]     
+	00658: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                       X-Short On
+	  4:  YDual               Y-Short         On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual         Y-Short         On
+	  7:  YDual                       X-Short On
+	  8:  YDual               Y-Short         On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual         Y-Short         On
+	 11:  YDual                       X-Short On
+	 12:                      Y-Short         On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual         Y-Short         On
+	 15:  YDual                       X-Short On
+	 16:  YDual               Y-Short         On
+	 17:  YDual XDual                 X-Short On
+	 18:        XDual         Y-Short         On
+	 19:  YDual                       X-Short On
+	 20:  YDual               Y-Short         On
+	 21:  YDual XDual                 X-Short On
+	 22:        XDual         Y-Short         On
+	 23:  YDual                       X-Short On
+	 24:                      Y-Short X-Short On
+	 25:  YDual XDual                 X-Short On
+	 26:        XDual         Y-Short         On
+	 27:  YDual                       X-Short On
+	 28:  YDual               Y-Short         On
+	 29:  YDual XDual                 X-Short On
+	 30:        XDual         Y-Short         On
+	 31:  YDual                       X-Short On
+	 32:  YDual               Y-Short         On
+	 33:  YDual XDual                 X-Short On
+	 34:        XDual         Y-Short         On
+	 35:  YDual                       X-Short On
+	 36:                      Y-Short         On
+	 37:  YDual XDual                 X-Short On
+	 38:        XDual         Y-Short         On
+	 39:  YDual                       X-Short On
+	 40:  YDual               Y-Short         On
+	 41:  YDual XDual                 X-Short On
+	 42:        XDual         Y-Short         On
+	 43:  YDual                       X-Short On
+	 44:  YDual               Y-Short         On
+	 45:  YDual XDual                 X-Short On
+	 46:        XDual         Y-Short         On
+	 47:  YDual                       X-Short On
+	 48:                      Y-Short X-Short On
+	 49:  YDual XDual                 X-Short On
+	 50:        XDual         Y-Short         On
+	 51:  YDual                       X-Short On
+	 52:  YDual               Y-Short         On
+	 53:  YDual XDual                 X-Short On
+	 54:        XDual         Y-Short         On
+	 55:  YDual                       X-Short On
+	 56:  YDual               Y-Short         On
+	 57:  YDual XDual                 X-Short On
+	 58:        XDual         Y-Short         On
+	 59:  YDual                       X-Short On
+	 60:        XDual         Y-Short X-Short On
+	 61:  YDual XDual                 X-Short On
+	 62:        XDual         Y-Short         On
+	 63:  YDual                       X-Short On
+	 64:  YDual               Y-Short         On
+	 65:  YDual XDual                 X-Short On
+	 66:        XDual         Y-Short         On
+	 67:  YDual                       X-Short On
+	 68:  YDual               Y-Short         On
+	 69:  YDual XDual                 X-Short On
+	 70:        XDual         Y-Short         On
+	 71:  YDual                       X-Short On
+	 72:                      Y-Short X-Short On
+	 73:  YDual XDual                 X-Short On
+	 74:        XDual         Y-Short         On
+	 75:  YDual                       X-Short On
+	 76:  YDual               Y-Short         On
+	 77:  YDual XDual                 X-Short On
+	 78:        XDual         Y-Short         On
+	 79:  YDual                       X-Short On
+	 80:  YDual               Y-Short         On
+	 81:  YDual XDual                 X-Short On
+	 82:        XDual         Y-Short         On
+	 83:  YDual                       X-Short On
+	 84:                      Y-Short         On
+	 85:  YDual XDual                 X-Short On
+	 86:        XDual         Y-Short         On
+	 87:  YDual                       X-Short On
+	 88:  YDual               Y-Short         On
+	 89:  YDual XDual                 X-Short On
+	 90:        XDual         Y-Short         On
+	 91:  YDual                       X-Short On
+	 92:  YDual               Y-Short         On
+	 93:  YDual XDual                 X-Short On
+	 94:        XDual         Y-Short         On
+	 95:  YDual                       X-Short On
+	 96:                      Y-Short X-Short On
+	 97:  YDual XDual                 X-Short On
+	 98:        XDual         Y-Short         On
+	 99:  YDual                       X-Short On
+	100:  YDual               Y-Short         On
+	101:  YDual XDual                 X-Short On
+	102:        XDual         Y-Short         On
+	103:  YDual                       X-Short On
+	104:  YDual               Y-Short         On
+	105:  YDual XDual                 X-Short On
+	106:        XDual         Y-Short         On
+	107:  YDual                       X-Short On
+	108:        XDual         Y-Short X-Short On
+	109:  YDual XDual                 X-Short On
+	110:        XDual         Y-Short         On
+	111:  YDual                       X-Short On
+	112:  YDual               Y-Short         On
+	113:  YDual XDual                 X-Short On
+	114:        XDual         Y-Short         On
+	115:  YDual                       X-Short On
+	116:  YDual               Y-Short         On
+	117:  YDual XDual                 X-Short On
+	118:        XDual         Y-Short         On
+	119:  YDual                       X-Short On
+	120:                      Y-Short         On
+	121:                                      On
+	122:  YDual XDual                 X-Short On
+	123:        XDual         Y-Short         On
+	124:  YDual                       X-Short On
+	125:  YDual               Y-Short         On
+	126:  YDual XDual                 X-Short On
+	127:        XDual         Y-Short         On
+	128:  YDual                       X-Short On
+	129:  YDual               Y-Short         On
+	130:  YDual XDual                 X-Short On
+	131:        XDual         Y-Short         On
+	132:  YDual                       X-Short On
+	133:                                      On
+	134:  YDual XDual                 X-Short On
+	135:        XDual         Y-Short         On
+	136:  YDual                       X-Short On
+	137:  YDual               Y-Short         On
+	138:  YDual XDual                 X-Short On
+	139:        XDual         Y-Short         On
+	140:  YDual                       X-Short On
+	141:  YDual               Y-Short         On
+	142:  YDual XDual                 X-Short On
+	143:        XDual         Y-Short         On
+	144:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   102,  1320)  ->  Abs (   102,  1320)
+	  1: Rel (   103,     0)  ->  Abs (   205,  1320)
+	  2: Rel (     0,   -97)  ->  Abs (   205,  1223)
+	  3: Rel (  -103,     0)  ->  Abs (   102,  1223)
+	  4: Rel (   410,    97)  ->  Abs (   512,  1320)
+	  5: Rel (   103,     0)  ->  Abs (   615,  1320)
+	  6: Rel (     0,   -97)  ->  Abs (   615,  1223)
+	  7: Rel (  -103,     0)  ->  Abs (   512,  1223)
+	  8: Rel (   410,    97)  ->  Abs (   922,  1320)
+	  9: Rel (   103,     0)  ->  Abs (  1025,  1320)
+	 10: Rel (     0,   -97)  ->  Abs (  1025,  1223)
+	 11: Rel (  -103,     0)  ->  Abs (   922,  1223)
+	 12: Rel (  -615,   -97)  ->  Abs (   307,  1126)
+	 13: Rel (   103,     0)  ->  Abs (   410,  1126)
+	 14: Rel (     0,   -96)  ->  Abs (   410,  1030)
+	 15: Rel (  -103,     0)  ->  Abs (   307,  1030)
+	 16: Rel (   410,    96)  ->  Abs (   717,  1126)
+	 17: Rel (   103,     0)  ->  Abs (   820,  1126)
+	 18: Rel (     0,   -96)  ->  Abs (   820,  1030)
+	 19: Rel (  -103,     0)  ->  Abs (   717,  1030)
+	 20: Rel (   410,    96)  ->  Abs (  1127,  1126)
+	 21: Rel (   102,     0)  ->  Abs (  1229,  1126)
+	 22: Rel (     0,   -96)  ->  Abs (  1229,  1030)
+	 23: Rel (  -102,     0)  ->  Abs (  1127,  1030)
+	 24: Rel (  -205,   -97)  ->  Abs (   922,   933)
+	 25: Rel (   103,     0)  ->  Abs (  1025,   933)
+	 26: Rel (     0,   -96)  ->  Abs (  1025,   837)
+	 27: Rel (  -103,     0)  ->  Abs (   922,   837)
+	 28: Rel (  -410,    96)  ->  Abs (   512,   933)
+	 29: Rel (   103,     0)  ->  Abs (   615,   933)
+	 30: Rel (     0,   -96)  ->  Abs (   615,   837)
+	 31: Rel (  -103,     0)  ->  Abs (   512,   837)
+	 32: Rel (  -410,    96)  ->  Abs (   102,   933)
+	 33: Rel (   103,     0)  ->  Abs (   205,   933)
+	 34: Rel (     0,   -96)  ->  Abs (   205,   837)
+	 35: Rel (  -103,     0)  ->  Abs (   102,   837)
+	 36: Rel (  1025,   -97)  ->  Abs (  1127,   740)
+	 37: Rel (   102,     0)  ->  Abs (  1229,   740)
+	 38: Rel (     0,   -97)  ->  Abs (  1229,   643)
+	 39: Rel (  -102,     0)  ->  Abs (  1127,   643)
+	 40: Rel (  -410,    97)  ->  Abs (   717,   740)
+	 41: Rel (   103,     0)  ->  Abs (   820,   740)
+	 42: Rel (     0,   -97)  ->  Abs (   820,   643)
+	 43: Rel (  -103,     0)  ->  Abs (   717,   643)
+	 44: Rel (  -410,    97)  ->  Abs (   307,   740)
+	 45: Rel (   103,     0)  ->  Abs (   410,   740)
+	 46: Rel (     0,   -97)  ->  Abs (   410,   643)
+	 47: Rel (  -103,     0)  ->  Abs (   307,   643)
+	 48: Rel (  -205,   -97)  ->  Abs (   102,   546)
+	 49: Rel (   103,     0)  ->  Abs (   205,   546)
+	 50: Rel (     0,   -96)  ->  Abs (   205,   450)
+	 51: Rel (  -103,     0)  ->  Abs (   102,   450)
+	 52: Rel (   410,    96)  ->  Abs (   512,   546)
+	 53: Rel (   103,     0)  ->  Abs (   615,   546)
+	 54: Rel (     0,   -96)  ->  Abs (   615,   450)
+	 55: Rel (  -103,     0)  ->  Abs (   512,   450)
+	 56: Rel (   410,    96)  ->  Abs (   922,   546)
+	 57: Rel (   103,     0)  ->  Abs (  1025,   546)
+	 58: Rel (     0,   -96)  ->  Abs (  1025,   450)
+	 59: Rel (  -103,     0)  ->  Abs (   922,   450)
+	 60: Rel (   205,   -97)  ->  Abs (  1127,   353)
+	 61: Rel (   102,     0)  ->  Abs (  1229,   353)
+	 62: Rel (     0,   -96)  ->  Abs (  1229,   257)
+	 63: Rel (  -102,     0)  ->  Abs (  1127,   257)
+	 64: Rel (  -410,    96)  ->  Abs (   717,   353)
+	 65: Rel (   103,     0)  ->  Abs (   820,   353)
+	 66: Rel (     0,   -96)  ->  Abs (   820,   257)
+	 67: Rel (  -103,     0)  ->  Abs (   717,   257)
+	 68: Rel (  -410,    96)  ->  Abs (   307,   353)
+	 69: Rel (   103,     0)  ->  Abs (   410,   353)
+	 70: Rel (     0,   -96)  ->  Abs (   410,   257)
+	 71: Rel (  -103,     0)  ->  Abs (   307,   257)
+	 72: Rel (  -205,   -97)  ->  Abs (   102,   160)
+	 73: Rel (   103,     0)  ->  Abs (   205,   160)
+	 74: Rel (     0,   -97)  ->  Abs (   205,    63)
+	 75: Rel (  -103,     0)  ->  Abs (   102,    63)
+	 76: Rel (   410,    97)  ->  Abs (   512,   160)
+	 77: Rel (   103,     0)  ->  Abs (   615,   160)
+	 78: Rel (     0,   -97)  ->  Abs (   615,    63)
+	 79: Rel (  -103,     0)  ->  Abs (   512,    63)
+	 80: Rel (   410,    97)  ->  Abs (   922,   160)
+	 81: Rel (   103,     0)  ->  Abs (  1025,   160)
+	 82: Rel (     0,   -97)  ->  Abs (  1025,    63)
+	 83: Rel (  -103,     0)  ->  Abs (   922,    63)
+	 84: Rel (  -615,   -97)  ->  Abs (   307,   -34)
+	 85: Rel (   103,     0)  ->  Abs (   410,   -34)
+	 86: Rel (     0,   -96)  ->  Abs (   410,  -130)
+	 87: Rel (  -103,     0)  ->  Abs (   307,  -130)
+	 88: Rel (   410,    96)  ->  Abs (   717,   -34)
+	 89: Rel (   103,     0)  ->  Abs (   820,   -34)
+	 90: Rel (     0,   -96)  ->  Abs (   820,  -130)
+	 91: Rel (  -103,     0)  ->  Abs (   717,  -130)
+	 92: Rel (   410,    96)  ->  Abs (  1127,   -34)
+	 93: Rel (   102,     0)  ->  Abs (  1229,   -34)
+	 94: Rel (     0,   -96)  ->  Abs (  1229,  -130)
+	 95: Rel (  -102,     0)  ->  Abs (  1127,  -130)
+	 96: Rel (  -205,   -97)  ->  Abs (   922,  -227)
+	 97: Rel (   103,     0)  ->  Abs (  1025,  -227)
+	 98: Rel (     0,   -97)  ->  Abs (  1025,  -324)
+	 99: Rel (  -103,     0)  ->  Abs (   922,  -324)
+	100: Rel (  -410,    97)  ->  Abs (   512,  -227)
+	101: Rel (   103,     0)  ->  Abs (   615,  -227)
+	102: Rel (     0,   -97)  ->  Abs (   615,  -324)
+	103: Rel (  -103,     0)  ->  Abs (   512,  -324)
+	104: Rel (  -410,    97)  ->  Abs (   102,  -227)
+	105: Rel (   103,     0)  ->  Abs (   205,  -227)
+	106: Rel (     0,   -97)  ->  Abs (   205,  -324)
+	107: Rel (  -103,     0)  ->  Abs (   102,  -324)
+	108: Rel (   205,   -96)  ->  Abs (   307,  -420)
+	109: Rel (   103,     0)  ->  Abs (   410,  -420)
+	110: Rel (     0,   -97)  ->  Abs (   410,  -517)
+	111: Rel (  -103,     0)  ->  Abs (   307,  -517)
+	112: Rel (   410,    97)  ->  Abs (   717,  -420)
+	113: Rel (   103,     0)  ->  Abs (   820,  -420)
+	114: Rel (     0,   -97)  ->  Abs (   820,  -517)
+	115: Rel (  -103,     0)  ->  Abs (   717,  -517)
+	116: Rel (   410,    97)  ->  Abs (  1127,  -420)
+	117: Rel (   102,     0)  ->  Abs (  1229,  -420)
+	118: Rel (     0,   -97)  ->  Abs (  1229,  -517)
+	119: Rel (  -102,     0)  ->  Abs (  1127,  -517)
+	120: Rel ( -1127,   -98)  ->  Abs (     0,  -615)
+	121: Rel (   307,  2128)  ->  Abs (   307,  1513)
+	122: Rel (   103,     0)  ->  Abs (   410,  1513)
+	123: Rel (     0,   -97)  ->  Abs (   410,  1416)
+	124: Rel (  -103,     0)  ->  Abs (   307,  1416)
+	125: Rel (   410,    97)  ->  Abs (   717,  1513)
+	126: Rel (   103,     0)  ->  Abs (   820,  1513)
+	127: Rel (     0,   -97)  ->  Abs (   820,  1416)
+	128: Rel (  -103,     0)  ->  Abs (   717,  1416)
+	129: Rel (   410,    97)  ->  Abs (  1127,  1513)
+	130: Rel (   102,     0)  ->  Abs (  1229,  1513)
+	131: Rel (     0,   -97)  ->  Abs (  1229,  1416)
+	132: Rel (  -102,     0)  ->  Abs (  1127,  1416)
+	133: Rel ( -1025,   289)  ->  Abs (   102,  1705)
+	134: Rel (   103,     0)  ->  Abs (   205,  1705)
+	135: Rel (     0,   -95)  ->  Abs (   205,  1610)
+	136: Rel (  -103,     0)  ->  Abs (   102,  1610)
+	137: Rel (   410,    95)  ->  Abs (   512,  1705)
+	138: Rel (   103,     0)  ->  Abs (   615,  1705)
+	139: Rel (     0,   -95)  ->  Abs (   615,  1610)
+	140: Rel (  -103,     0)  ->  Abs (   512,  1610)
+	141: Rel (   410,    95)  ->  Abs (   922,  1705)
+	142: Rel (   103,     0)  ->  Abs (  1025,  1705)
+	143: Rel (     0,   -95)  ->  Abs (  1025,  1610)
+	144: Rel (  -103,     0)  ->  Abs (   922,  1610)
+
+	Glyph 372: off = 0x00014410, len = 2188
+	  numberOfContours:	73
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  11
+	  3:  15
+	  4:  19
+	  5:  23
+	  6:  27
+	  7:  31
+	  8:  35
+	  9:  39
+	 10:  43
+	 11:  47
+	 12:  51
+	 13:  55
+	 14:  59
+	 15:  63
+	 16:  67
+	 17:  71
+	 18:  75
+	 19:  79
+	 20:  83
+	 21:  87
+	 22:  91
+	 23:  95
+	 24:  99
+	 25:  103
+	 26:  107
+	 27:  111
+	 28:  115
+	 29:  119
+	 30:  123
+	 31:  127
+	 32:  131
+	 33:  135
+	 34:  139
+	 35:  143
+	 36:  147
+	 37:  151
+	 38:  155
+	 39:  159
+	 40:  163
+	 41:  167
+	 42:  171
+	 43:  175
+	 44:  179
+	 45:  183
+	 46:  187
+	 47:  191
+	 48:  195
+	 49:  199
+	 50:  203
+	 51:  207
+	 52:  211
+	 53:  215
+	 54:  219
+	 55:  223
+	 56:  227
+	 57:  231
+	 58:  235
+	 59:  239
+	 60:  240
+	 61:  244
+	 62:  248
+	 63:  252
+	 64:  256
+	 65:  260
+	 66:  264
+	 67:  268
+	 68:  272
+	 69:  276
+	 70:  280
+	 71:  284
+	 72:  288
+
+	  Length of Instructions:	1367
+	00000: NPUSHW      (25):   285   282   281   278   277   274   273   270   269   266 
+	                           265   288   283   284   279   280   275   276   271   272 
+	                           267   268   261   258   257 
+	00052: PUSHB[8]            254   253   250   249   246   245   242   241 
+	00061: PUSHW[5]            264   259   260   255   256 
+	00072: NPUSHB     (226):   251   252   247   248   243   244    20    17    16    13 
+	                            12     9     8     5     4     1     0    23    18    19 
+	                            14    15    10    11     6     7     2     3    44    41 
+	                            40    37    36    33    32    29    28    25    24    47 
+	                            42    43    38    39    34    35    30    31    26    27 
+	                            68    65    64    61    60    57    56    53    52    49 
+	                            48    71    66    67    62    63    58    59    54    55 
+	                            50    51    92    89    88    85    84    81    80    77 
+	                            76    73    72    95    90    91    86    87    82    83 
+	                            78    79    74    75   116   113   112   109   108   105 
+	                           104   101   100    97    96   119   114   115   110   111 
+	                           106   107   102   103    98    99   136   133   132   129 
+	                           128   125   124   141   140   121   120   139   134   135 
+	                           130   131   126   127   142   143   122   123   144   149 
+	                           148   153   152   157   156   161   160   165   164   147 
+	                           150   151   154   155   158   159   162   163   166   167 
+	                           188   184   184   181   180   177   176   173   172   169 
+	                           168   191   186   187   182   183   178   179   174   175 
+	                           170   171   192   197   196   201   200   205   204   209 
+	                           208   213   212   195   198   199   202   203   206   207 
+	                           210   211   214   215   236   233   232   229   228   225 
+	                           224   221   220   217   216   239   234   235   230   231 
+	                           226   227   222   223   218   219 
+	00300: PUSHW[1]            287 
+	00303: NPUSHB      (10):    21    22    69    70   117   118   145   146   193   194 
+	00315: PUSHW[3]            288   262   263 
+	00322: NPUSHB      (20):    20    23    45    46    68    71    93    94   116   119 
+	                           137   138   144   147   189   190   192   195   237   238 
+	00344: PUSHW[3]            283   261   264 
+	00351: NPUSHB      (20):    17    18    44    47    65    66    92    95   113   114 
+	                           136   139   149   150   188   191   197   198   236   239 
+	00373: PUSHW[3]            284   258   259 
+	00380: NPUSHB      (20):    16    19    41    42    64    67    89    90   112   115 
+	                           133   134   148   151   185   186   196   199   233   234 
+	00402: PUSHW[3]            279   257   260 
+	00409: NPUSHB      (20):    13    14    40    43    61    62    88    91   109   110 
+	                           132   135   153   154   184   187   201   202   232   235 
+	00431: PUSHW[1]            280 
+	00434: NPUSHB      (22):   254   255    12    15    37    38    60    63    85    86 
+	                           108   111   129   130   152   155   181   182   200   203 
+	                           229   230 
+	00458: PUSHW[3]            275   253   256 
+	00465: NPUSHB      (20):     9    10    36    39    57    58    84    87   105   106 
+	                           128   131   157   158   180   183   205   206   228   231 
+	00487: PUSHW[1]            276 
+	00490: NPUSHB      (22):   250   251     8    11    33    34    56    59    81    82 
+	                           104   107   125   126   156   159   177   178   204   207 
+	                           225   226 
+	00514: PUSHW[1]            271 
+	00517: NPUSHB      (22):   249   252     5     6    32    35    53    54    80    83 
+	                           101   102   124   127   161   162   176   179   209   210 
+	                           224   227 
+	00541: PUSHW[1]            272 
+	00544: NPUSHB      (22):   246   247     4     7    29    30    52    55    77    78 
+	                           100   103   141   142   160   163   173   174   208   211 
+	                           221   222 
+	00568: PUSHW[1]            267 
+	00571: NPUSHB      (22):   245   248     1     2    28    31    49    50    76    79 
+	                            97    98   140   143   165   166   172   175   213   214 
+	                           220   223 
+	00595: PUSHW[1]            268 
+	00598: NPUSHB      (34):   242   243     0     3    25    26    48    51    73    74 
+	                            96    99   121   122   164   167   169   170   212   215 
+	                           217   218   244    24    27    72    75   120   123   168 
+	                           171   216   219   240 
+	00634: PUSHW[7]            286   265   287   268   262   241   263 
+	00649: NPUSHB      (42):   244    21     0    22     3    45    24    46    27    69 
+	                            48    70    51    93    72    94    75   117    96   118 
+	                            99   137   120   138   123   145   164   146   167   189 
+	                           168   190   171   193   212   194   215   237   216   238 
+	                           219   240 
+	00693: NPUSHW      (23):   286   194   285   238   282   239   281   234   278   235 
+	                           277   230   274   231   273   226   270   227   269   222 
+	                           266   223   265 
+	00741: PUSHB[3]            218   241   240 
+	00745: MDAP[rd]   
+	00746: ALIGNRP    
+	00747: MDAP[rd]   
+	00748: ALIGNRP    
+	00749: MDAP[rd]   
+	00750: ALIGNRP    
+	00751: MDAP[rd]   
+	00752: ALIGNRP    
+	00753: MDAP[rd]   
+	00754: ALIGNRP    
+	00755: MDAP[rd]   
+	00756: ALIGNRP    
+	00757: MDAP[rd]   
+	00758: ALIGNRP    
+	00759: MDAP[rd]   
+	00760: ALIGNRP    
+	00761: MDAP[rd]   
+	00762: ALIGNRP    
+	00763: MDAP[rd]   
+	00764: ALIGNRP    
+	00765: MDAP[rd]   
+	00766: ALIGNRP    
+	00767: MDAP[rd]   
+	00768: ALIGNRP    
+	00769: MDAP[rd]   
+	00770: ALIGNRP    
+	00771: SVTCA[y-axis] 
+	00772: MDAP[rd]   
+	00773: MDAP[rd]   
+	00774: ALIGNRP    
+	00775: MDAP[rd]   
+	00776: ALIGNRP    
+	00777: MDAP[rd]   
+	00778: ALIGNRP    
+	00779: MDAP[rd]   
+	00780: ALIGNRP    
+	00781: MDAP[rd]   
+	00782: ALIGNRP    
+	00783: MDAP[rd]   
+	00784: ALIGNRP    
+	00785: MDAP[rd]   
+	00786: ALIGNRP    
+	00787: MDAP[rd]   
+	00788: ALIGNRP    
+	00789: MDAP[rd]   
+	00790: ALIGNRP    
+	00791: MDAP[rd]   
+	00792: ALIGNRP    
+	00793: MDAP[rd]   
+	00794: ALIGNRP    
+	00795: MDAP[rd]   
+	00796: ALIGNRP    
+	00797: MDAP[rd]   
+	00798: ALIGNRP    
+	00799: MDAP[rd]   
+	00800: ALIGNRP    
+	00801: MDAP[rd]   
+	00802: ALIGNRP    
+	00803: MDAP[rd]   
+	00804: ALIGNRP    
+	00805: MDAP[rd]   
+	00806: ALIGNRP    
+	00807: MDAP[rd]   
+	00808: ALIGNRP    
+	00809: MDAP[rd]   
+	00810: ALIGNRP    
+	00811: MDAP[rd]   
+	00812: ALIGNRP    
+	00813: MDAP[rd]   
+	00814: ALIGNRP    
+	00815: MDAP[rd]   
+	00816: ALIGNRP    
+	00817: MDAP[rd]   
+	00818: ALIGNRP    
+	00819: MDAP[rd]   
+	00820: ALIGNRP    
+	00821: SPVTCA[x-axis] 
+	00822: SFVTCA[x-axis] 
+	00823: SRP0       
+	00824: ALIGNRP    
+	00825: ALIGNRP    
+	00826: ALIGNRP    
+	00827: ALIGNRP    
+	00828: ALIGNRP    
+	00829: ALIGNRP    
+	00830: ALIGNRP    
+	00831: ALIGNRP    
+	00832: ALIGNRP    
+	00833: ALIGNRP    
+	00834: ALIGNRP    
+	00835: SRP0       
+	00836: ALIGNRP    
+	00837: ALIGNRP    
+	00838: ALIGNRP    
+	00839: ALIGNRP    
+	00840: ALIGNRP    
+	00841: ALIGNRP    
+	00842: ALIGNRP    
+	00843: ALIGNRP    
+	00844: ALIGNRP    
+	00845: ALIGNRP    
+	00846: ALIGNRP    
+	00847: ALIGNRP    
+	00848: ALIGNRP    
+	00849: ALIGNRP    
+	00850: ALIGNRP    
+	00851: ALIGNRP    
+	00852: ALIGNRP    
+	00853: ALIGNRP    
+	00854: ALIGNRP    
+	00855: ALIGNRP    
+	00856: ALIGNRP    
+	00857: ALIGNRP    
+	00858: SRP0       
+	00859: ALIGNRP    
+	00860: ALIGNRP    
+	00861: ALIGNRP    
+	00862: ALIGNRP    
+	00863: ALIGNRP    
+	00864: ALIGNRP    
+	00865: ALIGNRP    
+	00866: ALIGNRP    
+	00867: ALIGNRP    
+	00868: ALIGNRP    
+	00869: ALIGNRP    
+	00870: ALIGNRP    
+	00871: ALIGNRP    
+	00872: ALIGNRP    
+	00873: ALIGNRP    
+	00874: ALIGNRP    
+	00875: ALIGNRP    
+	00876: ALIGNRP    
+	00877: ALIGNRP    
+	00878: ALIGNRP    
+	00879: ALIGNRP    
+	00880: ALIGNRP    
+	00881: SRP0       
+	00882: ALIGNRP    
+	00883: ALIGNRP    
+	00884: ALIGNRP    
+	00885: ALIGNRP    
+	00886: ALIGNRP    
+	00887: ALIGNRP    
+	00888: ALIGNRP    
+	00889: ALIGNRP    
+	00890: ALIGNRP    
+	00891: ALIGNRP    
+	00892: ALIGNRP    
+	00893: ALIGNRP    
+	00894: ALIGNRP    
+	00895: ALIGNRP    
+	00896: ALIGNRP    
+	00897: ALIGNRP    
+	00898: ALIGNRP    
+	00899: ALIGNRP    
+	00900: ALIGNRP    
+	00901: ALIGNRP    
+	00902: ALIGNRP    
+	00903: ALIGNRP    
+	00904: SRP0       
+	00905: ALIGNRP    
+	00906: ALIGNRP    
+	00907: ALIGNRP    
+	00908: ALIGNRP    
+	00909: ALIGNRP    
+	00910: ALIGNRP    
+	00911: ALIGNRP    
+	00912: ALIGNRP    
+	00913: ALIGNRP    
+	00914: ALIGNRP    
+	00915: ALIGNRP    
+	00916: ALIGNRP    
+	00917: ALIGNRP    
+	00918: ALIGNRP    
+	00919: ALIGNRP    
+	00920: ALIGNRP    
+	00921: ALIGNRP    
+	00922: ALIGNRP    
+	00923: ALIGNRP    
+	00924: ALIGNRP    
+	00925: ALIGNRP    
+	00926: ALIGNRP    
+	00927: SRP0       
+	00928: ALIGNRP    
+	00929: ALIGNRP    
+	00930: ALIGNRP    
+	00931: ALIGNRP    
+	00932: ALIGNRP    
+	00933: ALIGNRP    
+	00934: ALIGNRP    
+	00935: ALIGNRP    
+	00936: ALIGNRP    
+	00937: ALIGNRP    
+	00938: ALIGNRP    
+	00939: ALIGNRP    
+	00940: ALIGNRP    
+	00941: ALIGNRP    
+	00942: ALIGNRP    
+	00943: ALIGNRP    
+	00944: ALIGNRP    
+	00945: ALIGNRP    
+	00946: ALIGNRP    
+	00947: ALIGNRP    
+	00948: ALIGNRP    
+	00949: ALIGNRP    
+	00950: SRP0       
+	00951: ALIGNRP    
+	00952: ALIGNRP    
+	00953: ALIGNRP    
+	00954: ALIGNRP    
+	00955: ALIGNRP    
+	00956: ALIGNRP    
+	00957: ALIGNRP    
+	00958: ALIGNRP    
+	00959: ALIGNRP    
+	00960: ALIGNRP    
+	00961: ALIGNRP    
+	00962: ALIGNRP    
+	00963: ALIGNRP    
+	00964: ALIGNRP    
+	00965: ALIGNRP    
+	00966: ALIGNRP    
+	00967: ALIGNRP    
+	00968: ALIGNRP    
+	00969: ALIGNRP    
+	00970: ALIGNRP    
+	00971: ALIGNRP    
+	00972: ALIGNRP    
+	00973: SRP0       
+	00974: ALIGNRP    
+	00975: ALIGNRP    
+	00976: ALIGNRP    
+	00977: ALIGNRP    
+	00978: ALIGNRP    
+	00979: ALIGNRP    
+	00980: ALIGNRP    
+	00981: ALIGNRP    
+	00982: ALIGNRP    
+	00983: ALIGNRP    
+	00984: ALIGNRP    
+	00985: ALIGNRP    
+	00986: ALIGNRP    
+	00987: ALIGNRP    
+	00988: ALIGNRP    
+	00989: ALIGNRP    
+	00990: ALIGNRP    
+	00991: ALIGNRP    
+	00992: ALIGNRP    
+	00993: ALIGNRP    
+	00994: ALIGNRP    
+	00995: ALIGNRP    
+	00996: SRP0       
+	00997: ALIGNRP    
+	00998: ALIGNRP    
+	00999: ALIGNRP    
+	01000: ALIGNRP    
+	01001: ALIGNRP    
+	01002: ALIGNRP    
+	01003: ALIGNRP    
+	01004: ALIGNRP    
+	01005: ALIGNRP    
+	01006: ALIGNRP    
+	01007: ALIGNRP    
+	01008: ALIGNRP    
+	01009: ALIGNRP    
+	01010: ALIGNRP    
+	01011: ALIGNRP    
+	01012: ALIGNRP    
+	01013: ALIGNRP    
+	01014: ALIGNRP    
+	01015: ALIGNRP    
+	01016: ALIGNRP    
+	01017: ALIGNRP    
+	01018: ALIGNRP    
+	01019: SRP0       
+	01020: ALIGNRP    
+	01021: ALIGNRP    
+	01022: ALIGNRP    
+	01023: ALIGNRP    
+	01024: ALIGNRP    
+	01025: ALIGNRP    
+	01026: ALIGNRP    
+	01027: ALIGNRP    
+	01028: ALIGNRP    
+	01029: ALIGNRP    
+	01030: ALIGNRP    
+	01031: ALIGNRP    
+	01032: ALIGNRP    
+	01033: ALIGNRP    
+	01034: ALIGNRP    
+	01035: ALIGNRP    
+	01036: ALIGNRP    
+	01037: ALIGNRP    
+	01038: ALIGNRP    
+	01039: ALIGNRP    
+	01040: ALIGNRP    
+	01041: ALIGNRP    
+	01042: SRP0       
+	01043: ALIGNRP    
+	01044: ALIGNRP    
+	01045: ALIGNRP    
+	01046: ALIGNRP    
+	01047: ALIGNRP    
+	01048: ALIGNRP    
+	01049: ALIGNRP    
+	01050: ALIGNRP    
+	01051: ALIGNRP    
+	01052: ALIGNRP    
+	01053: ALIGNRP    
+	01054: ALIGNRP    
+	01055: ALIGNRP    
+	01056: ALIGNRP    
+	01057: ALIGNRP    
+	01058: ALIGNRP    
+	01059: ALIGNRP    
+	01060: ALIGNRP    
+	01061: ALIGNRP    
+	01062: ALIGNRP    
+	01063: ALIGNRP    
+	01064: ALIGNRP    
+	01065: SRP0       
+	01066: ALIGNRP    
+	01067: ALIGNRP    
+	01068: ALIGNRP    
+	01069: ALIGNRP    
+	01070: ALIGNRP    
+	01071: ALIGNRP    
+	01072: ALIGNRP    
+	01073: ALIGNRP    
+	01074: ALIGNRP    
+	01075: ALIGNRP    
+	01076: ALIGNRP    
+	01077: ALIGNRP    
+	01078: ALIGNRP    
+	01079: ALIGNRP    
+	01080: ALIGNRP    
+	01081: ALIGNRP    
+	01082: ALIGNRP    
+	01083: ALIGNRP    
+	01084: ALIGNRP    
+	01085: ALIGNRP    
+	01086: ALIGNRP    
+	01087: ALIGNRP    
+	01088: SRP0       
+	01089: ALIGNRP    
+	01090: ALIGNRP    
+	01091: ALIGNRP    
+	01092: ALIGNRP    
+	01093: ALIGNRP    
+	01094: ALIGNRP    
+	01095: ALIGNRP    
+	01096: ALIGNRP    
+	01097: ALIGNRP    
+	01098: ALIGNRP    
+	01099: SPVTCA[y-axis] 
+	01100: SFVTCA[y-axis] 
+	01101: SRP0       
+	01102: ALIGNRP    
+	01103: ALIGNRP    
+	01104: ALIGNRP    
+	01105: ALIGNRP    
+	01106: ALIGNRP    
+	01107: ALIGNRP    
+	01108: ALIGNRP    
+	01109: ALIGNRP    
+	01110: ALIGNRP    
+	01111: ALIGNRP    
+	01112: SRP0       
+	01113: ALIGNRP    
+	01114: ALIGNRP    
+	01115: ALIGNRP    
+	01116: ALIGNRP    
+	01117: ALIGNRP    
+	01118: ALIGNRP    
+	01119: ALIGNRP    
+	01120: ALIGNRP    
+	01121: ALIGNRP    
+	01122: ALIGNRP    
+	01123: SRP0       
+	01124: ALIGNRP    
+	01125: ALIGNRP    
+	01126: ALIGNRP    
+	01127: ALIGNRP    
+	01128: ALIGNRP    
+	01129: ALIGNRP    
+	01130: ALIGNRP    
+	01131: ALIGNRP    
+	01132: ALIGNRP    
+	01133: ALIGNRP    
+	01134: SRP0       
+	01135: ALIGNRP    
+	01136: ALIGNRP    
+	01137: ALIGNRP    
+	01138: ALIGNRP    
+	01139: ALIGNRP    
+	01140: ALIGNRP    
+	01141: ALIGNRP    
+	01142: ALIGNRP    
+	01143: ALIGNRP    
+	01144: ALIGNRP    
+	01145: SRP0       
+	01146: ALIGNRP    
+	01147: ALIGNRP    
+	01148: ALIGNRP    
+	01149: ALIGNRP    
+	01150: ALIGNRP    
+	01151: ALIGNRP    
+	01152: ALIGNRP    
+	01153: ALIGNRP    
+	01154: ALIGNRP    
+	01155: ALIGNRP    
+	01156: SRP0       
+	01157: ALIGNRP    
+	01158: ALIGNRP    
+	01159: ALIGNRP    
+	01160: ALIGNRP    
+	01161: ALIGNRP    
+	01162: ALIGNRP    
+	01163: ALIGNRP    
+	01164: ALIGNRP    
+	01165: ALIGNRP    
+	01166: ALIGNRP    
+	01167: SRP0       
+	01168: ALIGNRP    
+	01169: ALIGNRP    
+	01170: ALIGNRP    
+	01171: ALIGNRP    
+	01172: ALIGNRP    
+	01173: ALIGNRP    
+	01174: ALIGNRP    
+	01175: ALIGNRP    
+	01176: ALIGNRP    
+	01177: ALIGNRP    
+	01178: SRP0       
+	01179: ALIGNRP    
+	01180: ALIGNRP    
+	01181: ALIGNRP    
+	01182: ALIGNRP    
+	01183: ALIGNRP    
+	01184: ALIGNRP    
+	01185: ALIGNRP    
+	01186: ALIGNRP    
+	01187: ALIGNRP    
+	01188: ALIGNRP    
+	01189: SRP0       
+	01190: ALIGNRP    
+	01191: ALIGNRP    
+	01192: ALIGNRP    
+	01193: ALIGNRP    
+	01194: ALIGNRP    
+	01195: ALIGNRP    
+	01196: ALIGNRP    
+	01197: ALIGNRP    
+	01198: ALIGNRP    
+	01199: ALIGNRP    
+	01200: SRP0       
+	01201: ALIGNRP    
+	01202: ALIGNRP    
+	01203: ALIGNRP    
+	01204: ALIGNRP    
+	01205: ALIGNRP    
+	01206: ALIGNRP    
+	01207: ALIGNRP    
+	01208: ALIGNRP    
+	01209: ALIGNRP    
+	01210: ALIGNRP    
+	01211: SRP0       
+	01212: ALIGNRP    
+	01213: ALIGNRP    
+	01214: ALIGNRP    
+	01215: ALIGNRP    
+	01216: ALIGNRP    
+	01217: ALIGNRP    
+	01218: ALIGNRP    
+	01219: ALIGNRP    
+	01220: ALIGNRP    
+	01221: ALIGNRP    
+	01222: SRP0       
+	01223: ALIGNRP    
+	01224: ALIGNRP    
+	01225: ALIGNRP    
+	01226: ALIGNRP    
+	01227: ALIGNRP    
+	01228: ALIGNRP    
+	01229: ALIGNRP    
+	01230: ALIGNRP    
+	01231: ALIGNRP    
+	01232: ALIGNRP    
+	01233: SRP0       
+	01234: ALIGNRP    
+	01235: ALIGNRP    
+	01236: ALIGNRP    
+	01237: ALIGNRP    
+	01238: ALIGNRP    
+	01239: ALIGNRP    
+	01240: ALIGNRP    
+	01241: ALIGNRP    
+	01242: ALIGNRP    
+	01243: ALIGNRP    
+	01244: SRP0       
+	01245: ALIGNRP    
+	01246: ALIGNRP    
+	01247: ALIGNRP    
+	01248: ALIGNRP    
+	01249: ALIGNRP    
+	01250: ALIGNRP    
+	01251: ALIGNRP    
+	01252: ALIGNRP    
+	01253: ALIGNRP    
+	01254: ALIGNRP    
+	01255: SRP0       
+	01256: ALIGNRP    
+	01257: ALIGNRP    
+	01258: ALIGNRP    
+	01259: ALIGNRP    
+	01260: ALIGNRP    
+	01261: ALIGNRP    
+	01262: ALIGNRP    
+	01263: ALIGNRP    
+	01264: ALIGNRP    
+	01265: ALIGNRP    
+	01266: SRP0       
+	01267: ALIGNRP    
+	01268: ALIGNRP    
+	01269: ALIGNRP    
+	01270: ALIGNRP    
+	01271: ALIGNRP    
+	01272: ALIGNRP    
+	01273: ALIGNRP    
+	01274: ALIGNRP    
+	01275: ALIGNRP    
+	01276: ALIGNRP    
+	01277: SRP0       
+	01278: ALIGNRP    
+	01279: ALIGNRP    
+	01280: ALIGNRP    
+	01281: ALIGNRP    
+	01282: ALIGNRP    
+	01283: ALIGNRP    
+	01284: ALIGNRP    
+	01285: ALIGNRP    
+	01286: ALIGNRP    
+	01287: ALIGNRP    
+	01288: SRP0       
+	01289: ALIGNRP    
+	01290: ALIGNRP    
+	01291: ALIGNRP    
+	01292: ALIGNRP    
+	01293: ALIGNRP    
+	01294: ALIGNRP    
+	01295: ALIGNRP    
+	01296: ALIGNRP    
+	01297: ALIGNRP    
+	01298: ALIGNRP    
+	01299: SRP0       
+	01300: ALIGNRP    
+	01301: ALIGNRP    
+	01302: ALIGNRP    
+	01303: ALIGNRP    
+	01304: ALIGNRP    
+	01305: ALIGNRP    
+	01306: ALIGNRP    
+	01307: ALIGNRP    
+	01308: ALIGNRP    
+	01309: ALIGNRP    
+	01310: SRP0       
+	01311: ALIGNRP    
+	01312: ALIGNRP    
+	01313: ALIGNRP    
+	01314: ALIGNRP    
+	01315: ALIGNRP    
+	01316: ALIGNRP    
+	01317: ALIGNRP    
+	01318: ALIGNRP    
+	01319: ALIGNRP    
+	01320: ALIGNRP    
+	01321: SRP0       
+	01322: ALIGNRP    
+	01323: ALIGNRP    
+	01324: ALIGNRP    
+	01325: ALIGNRP    
+	01326: ALIGNRP    
+	01327: ALIGNRP    
+	01328: ALIGNRP    
+	01329: ALIGNRP    
+	01330: ALIGNRP    
+	01331: ALIGNRP    
+	01332: SRP0       
+	01333: ALIGNRP    
+	01334: ALIGNRP    
+	01335: ALIGNRP    
+	01336: ALIGNRP    
+	01337: ALIGNRP    
+	01338: ALIGNRP    
+	01339: ALIGNRP    
+	01340: ALIGNRP    
+	01341: ALIGNRP    
+	01342: ALIGNRP    
+	01343: SRP0       
+	01344: ALIGNRP    
+	01345: ALIGNRP    
+	01346: ALIGNRP    
+	01347: ALIGNRP    
+	01348: ALIGNRP    
+	01349: ALIGNRP    
+	01350: ALIGNRP    
+	01351: ALIGNRP    
+	01352: ALIGNRP    
+	01353: ALIGNRP    
+	01354: SRP0       
+	01355: ALIGNRP    
+	01356: ALIGNRP    
+	01357: ALIGNRP    
+	01358: ALIGNRP    
+	01359: ALIGNRP    
+	01360: ALIGNRP    
+	01361: ALIGNRP    
+	01362: ALIGNRP    
+	01363: ALIGNRP    
+	01364: ALIGNRP    
+	01365: IUP[y]     
+	01366: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                       X-Short On
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual                 X-Short On
+	  6:        XDual         Y-Short         On
+	  7:  YDual                       X-Short On
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual         Y-Short         On
+	 11:  YDual                       X-Short On
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual         Y-Short         On
+	 15:  YDual                       X-Short On
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual                 X-Short On
+	 18:        XDual         Y-Short         On
+	 19:  YDual                       X-Short On
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual                 X-Short On
+	 22:        XDual         Y-Short         On
+	 23:  YDual                       X-Short On
+	 24:                      Y-Short         On
+	 25:  YDual XDual                 X-Short On
+	 26:        XDual         Y-Short         On
+	 27:  YDual                       X-Short On
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual                 X-Short On
+	 30:        XDual         Y-Short         On
+	 31:  YDual                       X-Short On
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual XDual                 X-Short On
+	 34:        XDual         Y-Short         On
+	 35:  YDual                       X-Short On
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual XDual                 X-Short On
+	 38:        XDual         Y-Short         On
+	 39:  YDual                       X-Short On
+	 40:  YDual XDual         Y-Short X-Short On
+	 41:  YDual XDual                 X-Short On
+	 42:        XDual         Y-Short         On
+	 43:  YDual                       X-Short On
+	 44:  YDual XDual         Y-Short X-Short On
+	 45:  YDual XDual                 X-Short On
+	 46:        XDual         Y-Short         On
+	 47:  YDual                       X-Short On
+	 48:                      Y-Short         On
+	 49:  YDual XDual                 X-Short On
+	 50:        XDual         Y-Short         On
+	 51:  YDual                       X-Short On
+	 52:  YDual XDual         Y-Short X-Short On
+	 53:  YDual XDual                 X-Short On
+	 54:        XDual         Y-Short         On
+	 55:  YDual                       X-Short On
+	 56:  YDual XDual         Y-Short X-Short On
+	 57:  YDual XDual                 X-Short On
+	 58:        XDual         Y-Short         On
+	 59:  YDual                       X-Short On
+	 60:  YDual XDual         Y-Short X-Short On
+	 61:  YDual XDual                 X-Short On
+	 62:        XDual         Y-Short         On
+	 63:  YDual                       X-Short On
+	 64:  YDual XDual         Y-Short X-Short On
+	 65:  YDual XDual                 X-Short On
+	 66:        XDual         Y-Short         On
+	 67:  YDual                       X-Short On
+	 68:  YDual XDual         Y-Short X-Short On
+	 69:  YDual XDual                 X-Short On
+	 70:        XDual         Y-Short         On
+	 71:  YDual                       X-Short On
+	 72:                      Y-Short         On
+	 73:  YDual XDual                 X-Short On
+	 74:        XDual         Y-Short         On
+	 75:  YDual                       X-Short On
+	 76:  YDual XDual         Y-Short X-Short On
+	 77:  YDual XDual                 X-Short On
+	 78:        XDual         Y-Short         On
+	 79:  YDual                       X-Short On
+	 80:  YDual XDual         Y-Short X-Short On
+	 81:  YDual XDual                 X-Short On
+	 82:        XDual         Y-Short         On
+	 83:  YDual                       X-Short On
+	 84:  YDual XDual         Y-Short X-Short On
+	 85:  YDual XDual                 X-Short On
+	 86:        XDual         Y-Short         On
+	 87:  YDual                       X-Short On
+	 88:  YDual XDual         Y-Short X-Short On
+	 89:  YDual XDual                 X-Short On
+	 90:        XDual         Y-Short         On
+	 91:  YDual                       X-Short On
+	 92:  YDual XDual         Y-Short X-Short On
+	 93:  YDual XDual                 X-Short On
+	 94:        XDual         Y-Short         On
+	 95:  YDual                       X-Short On
+	 96:                      Y-Short         On
+	 97:  YDual XDual                 X-Short On
+	 98:        XDual         Y-Short         On
+	 99:  YDual                       X-Short On
+	100:  YDual XDual         Y-Short X-Short On
+	101:  YDual XDual                 X-Short On
+	102:        XDual         Y-Short         On
+	103:  YDual                       X-Short On
+	104:  YDual XDual         Y-Short X-Short On
+	105:  YDual XDual                 X-Short On
+	106:        XDual         Y-Short         On
+	107:  YDual                       X-Short On
+	108:  YDual XDual         Y-Short X-Short On
+	109:  YDual XDual                 X-Short On
+	110:        XDual         Y-Short         On
+	111:  YDual                       X-Short On
+	112:  YDual XDual         Y-Short X-Short On
+	113:  YDual XDual                 X-Short On
+	114:        XDual         Y-Short         On
+	115:  YDual                       X-Short On
+	116:  YDual XDual         Y-Short X-Short On
+	117:  YDual XDual                 X-Short On
+	118:        XDual         Y-Short         On
+	119:  YDual                       X-Short On
+	120:                      Y-Short         On
+	121:  YDual XDual                 X-Short On
+	122:        XDual         Y-Short         On
+	123:  YDual                       X-Short On
+	124:  YDual               Y-Short         On
+	125:  YDual XDual                 X-Short On
+	126:        XDual         Y-Short         On
+	127:  YDual                       X-Short On
+	128:  YDual XDual         Y-Short X-Short On
+	129:  YDual XDual                 X-Short On
+	130:        XDual         Y-Short         On
+	131:  YDual                       X-Short On
+	132:  YDual XDual         Y-Short X-Short On
+	133:  YDual XDual                 X-Short On
+	134:        XDual         Y-Short         On
+	135:  YDual                       X-Short On
+	136:  YDual XDual         Y-Short X-Short On
+	137:  YDual XDual                 X-Short On
+	138:        XDual         Y-Short         On
+	139:  YDual                       X-Short On
+	140:  YDual               Y-Short         On
+	141:  YDual XDual                 X-Short On
+	142:        XDual         Y-Short         On
+	143:  YDual                       X-Short On
+	144:                      Y-Short         On
+	145:  YDual XDual                 X-Short On
+	146:        XDual         Y-Short         On
+	147:  YDual                       X-Short On
+	148:  YDual               Y-Short X-Short On
+	149:  YDual XDual                 X-Short On
+	150:        XDual         Y-Short         On
+	151:  YDual                       X-Short On
+	152:  YDual               Y-Short X-Short On
+	153:  YDual XDual                 X-Short On
+	154:        XDual         Y-Short         On
+	155:  YDual                       X-Short On
+	156:  YDual               Y-Short X-Short On
+	157:  YDual XDual                 X-Short On
+	158:        XDual         Y-Short         On
+	159:  YDual                       X-Short On
+	160:  YDual               Y-Short X-Short On
+	161:  YDual XDual                 X-Short On
+	162:        XDual         Y-Short         On
+	163:  YDual                       X-Short On
+	164:  YDual               Y-Short X-Short On
+	165:  YDual XDual                 X-Short On
+	166:        XDual         Y-Short         On
+	167:  YDual                       X-Short On
+	168:                      Y-Short X-Short On
+	169:  YDual XDual                 X-Short On
+	170:        XDual         Y-Short         On
+	171:  YDual                       X-Short On
+	172:  YDual XDual         Y-Short X-Short On
+	173:  YDual XDual                 X-Short On
+	174:        XDual         Y-Short         On
+	175:  YDual                       X-Short On
+	176:  YDual XDual         Y-Short X-Short On
+	177:  YDual XDual                 X-Short On
+	178:        XDual         Y-Short         On
+	179:  YDual                       X-Short On
+	180:  YDual XDual         Y-Short X-Short On
+	181:  YDual XDual                 X-Short On
+	182:        XDual         Y-Short         On
+	183:  YDual                       X-Short On
+	184:  YDual XDual         Y-Short X-Short On
+	185:  YDual XDual                 X-Short On
+	186:        XDual         Y-Short         On
+	187:  YDual                       X-Short On
+	188:  YDual XDual         Y-Short X-Short On
+	189:  YDual XDual                 X-Short On
+	190:        XDual         Y-Short         On
+	191:  YDual                       X-Short On
+	192:        XDual         Y-Short X-Short On
+	193:  YDual XDual                 X-Short On
+	194:        XDual         Y-Short         On
+	195:  YDual                       X-Short On
+	196:  YDual               Y-Short X-Short On
+	197:  YDual XDual                 X-Short On
+	198:        XDual         Y-Short         On
+	199:  YDual                       X-Short On
+	200:  YDual               Y-Short X-Short On
+	201:  YDual XDual                 X-Short On
+	202:        XDual         Y-Short         On
+	203:  YDual                       X-Short On
+	204:  YDual               Y-Short X-Short On
+	205:  YDual XDual                 X-Short On
+	206:        XDual         Y-Short         On
+	207:  YDual                       X-Short On
+	208:  YDual               Y-Short X-Short On
+	209:  YDual XDual                 X-Short On
+	210:        XDual         Y-Short         On
+	211:  YDual                       X-Short On
+	212:  YDual               Y-Short X-Short On
+	213:  YDual XDual                 X-Short On
+	214:        XDual         Y-Short         On
+	215:  YDual                       X-Short On
+	216:                      Y-Short X-Short On
+	217:  YDual XDual                 X-Short On
+	218:        XDual         Y-Short         On
+	219:  YDual                       X-Short On
+	220:  YDual XDual         Y-Short X-Short On
+	221:  YDual XDual                 X-Short On
+	222:        XDual         Y-Short         On
+	223:  YDual                       X-Short On
+	224:  YDual XDual         Y-Short X-Short On
+	225:  YDual XDual                 X-Short On
+	226:        XDual         Y-Short         On
+	227:  YDual                       X-Short On
+	228:  YDual XDual         Y-Short X-Short On
+	229:  YDual XDual                 X-Short On
+	230:        XDual         Y-Short         On
+	231:  YDual                       X-Short On
+	232:  YDual XDual         Y-Short X-Short On
+	233:  YDual XDual                 X-Short On
+	234:        XDual         Y-Short         On
+	235:  YDual                       X-Short On
+	236:  YDual XDual         Y-Short X-Short On
+	237:  YDual XDual                 X-Short On
+	238:        XDual         Y-Short         On
+	239:  YDual                       X-Short On
+	240:                      Y-Short         On
+	241:        XDual                         On
+	242:  YDual XDual                 X-Short On
+	243:        XDual         Y-Short         On
+	244:  YDual                       X-Short On
+	245:  YDual XDual         Y-Short X-Short On
+	246:  YDual XDual                 X-Short On
+	247:        XDual         Y-Short         On
+	248:  YDual                       X-Short On
+	249:  YDual XDual         Y-Short X-Short On
+	250:  YDual XDual                 X-Short On
+	251:        XDual         Y-Short         On
+	252:  YDual                       X-Short On
+	253:  YDual XDual         Y-Short X-Short On
+	254:  YDual XDual                 X-Short On
+	255:        XDual         Y-Short         On
+	256:  YDual                       X-Short On
+	257:  YDual XDual         Y-Short X-Short On
+	258:  YDual XDual                 X-Short On
+	259:        XDual         Y-Short         On
+	260:  YDual                       X-Short On
+	261:  YDual XDual         Y-Short X-Short On
+	262:  YDual XDual                 X-Short On
+	263:        XDual         Y-Short         On
+	264:  YDual                       X-Short On
+	265:                                      On
+	266:  YDual XDual                 X-Short On
+	267:        XDual         Y-Short         On
+	268:  YDual                       X-Short On
+	269:  YDual XDual         Y-Short X-Short On
+	270:  YDual XDual                 X-Short On
+	271:        XDual         Y-Short         On
+	272:  YDual                       X-Short On
+	273:  YDual XDual         Y-Short X-Short On
+	274:  YDual XDual                 X-Short On
+	275:        XDual         Y-Short         On
+	276:  YDual                       X-Short On
+	277:  YDual XDual         Y-Short X-Short On
+	278:  YDual XDual                 X-Short On
+	279:        XDual         Y-Short         On
+	280:  YDual                       X-Short On
+	281:  YDual XDual         Y-Short X-Short On
+	282:  YDual XDual                 X-Short On
+	283:        XDual         Y-Short         On
+	284:  YDual                       X-Short On
+	285:  YDual XDual         Y-Short X-Short On
+	286:  YDual XDual                 X-Short On
+	287:        XDual         Y-Short         On
+	288:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   102,  1320)  ->  Abs (   102,  1320)
+	  1: Rel (   103,     0)  ->  Abs (   205,  1320)
+	  2: Rel (     0,   -97)  ->  Abs (   205,  1223)
+	  3: Rel (  -103,     0)  ->  Abs (   102,  1223)
+	  4: Rel (   205,    97)  ->  Abs (   307,  1320)
+	  5: Rel (   103,     0)  ->  Abs (   410,  1320)
+	  6: Rel (     0,   -97)  ->  Abs (   410,  1223)
+	  7: Rel (  -103,     0)  ->  Abs (   307,  1223)
+	  8: Rel (   205,    97)  ->  Abs (   512,  1320)
+	  9: Rel (   103,     0)  ->  Abs (   615,  1320)
+	 10: Rel (     0,   -97)  ->  Abs (   615,  1223)
+	 11: Rel (  -103,     0)  ->  Abs (   512,  1223)
+	 12: Rel (   205,    97)  ->  Abs (   717,  1320)
+	 13: Rel (   103,     0)  ->  Abs (   820,  1320)
+	 14: Rel (     0,   -97)  ->  Abs (   820,  1223)
+	 15: Rel (  -103,     0)  ->  Abs (   717,  1223)
+	 16: Rel (   205,    97)  ->  Abs (   922,  1320)
+	 17: Rel (   103,     0)  ->  Abs (  1025,  1320)
+	 18: Rel (     0,   -97)  ->  Abs (  1025,  1223)
+	 19: Rel (  -103,     0)  ->  Abs (   922,  1223)
+	 20: Rel (   205,    97)  ->  Abs (  1127,  1320)
+	 21: Rel (   102,     0)  ->  Abs (  1229,  1320)
+	 22: Rel (     0,   -97)  ->  Abs (  1229,  1223)
+	 23: Rel (  -102,     0)  ->  Abs (  1127,  1223)
+	 24: Rel ( -1127,   -97)  ->  Abs (     0,  1126)
+	 25: Rel (   102,     0)  ->  Abs (   102,  1126)
+	 26: Rel (     0,   -96)  ->  Abs (   102,  1030)
+	 27: Rel (  -102,     0)  ->  Abs (     0,  1030)
+	 28: Rel (   205,    96)  ->  Abs (   205,  1126)
+	 29: Rel (   102,     0)  ->  Abs (   307,  1126)
+	 30: Rel (     0,   -96)  ->  Abs (   307,  1030)
+	 31: Rel (  -102,     0)  ->  Abs (   205,  1030)
+	 32: Rel (   205,    96)  ->  Abs (   410,  1126)
+	 33: Rel (   102,     0)  ->  Abs (   512,  1126)
+	 34: Rel (     0,   -96)  ->  Abs (   512,  1030)
+	 35: Rel (  -102,     0)  ->  Abs (   410,  1030)
+	 36: Rel (   205,    96)  ->  Abs (   615,  1126)
+	 37: Rel (   102,     0)  ->  Abs (   717,  1126)
+	 38: Rel (     0,   -96)  ->  Abs (   717,  1030)
+	 39: Rel (  -102,     0)  ->  Abs (   615,  1030)
+	 40: Rel (   205,    96)  ->  Abs (   820,  1126)
+	 41: Rel (   102,     0)  ->  Abs (   922,  1126)
+	 42: Rel (     0,   -96)  ->  Abs (   922,  1030)
+	 43: Rel (  -102,     0)  ->  Abs (   820,  1030)
+	 44: Rel (   205,    96)  ->  Abs (  1025,  1126)
+	 45: Rel (   102,     0)  ->  Abs (  1127,  1126)
+	 46: Rel (     0,   -96)  ->  Abs (  1127,  1030)
+	 47: Rel (  -102,     0)  ->  Abs (  1025,  1030)
+	 48: Rel (  -923,   -97)  ->  Abs (   102,   933)
+	 49: Rel (   103,     0)  ->  Abs (   205,   933)
+	 50: Rel (     0,   -96)  ->  Abs (   205,   837)
+	 51: Rel (  -103,     0)  ->  Abs (   102,   837)
+	 52: Rel (   205,    96)  ->  Abs (   307,   933)
+	 53: Rel (   103,     0)  ->  Abs (   410,   933)
+	 54: Rel (     0,   -96)  ->  Abs (   410,   837)
+	 55: Rel (  -103,     0)  ->  Abs (   307,   837)
+	 56: Rel (   205,    96)  ->  Abs (   512,   933)
+	 57: Rel (   103,     0)  ->  Abs (   615,   933)
+	 58: Rel (     0,   -96)  ->  Abs (   615,   837)
+	 59: Rel (  -103,     0)  ->  Abs (   512,   837)
+	 60: Rel (   205,    96)  ->  Abs (   717,   933)
+	 61: Rel (   103,     0)  ->  Abs (   820,   933)
+	 62: Rel (     0,   -96)  ->  Abs (   820,   837)
+	 63: Rel (  -103,     0)  ->  Abs (   717,   837)
+	 64: Rel (   205,    96)  ->  Abs (   922,   933)
+	 65: Rel (   103,     0)  ->  Abs (  1025,   933)
+	 66: Rel (     0,   -96)  ->  Abs (  1025,   837)
+	 67: Rel (  -103,     0)  ->  Abs (   922,   837)
+	 68: Rel (   205,    96)  ->  Abs (  1127,   933)
+	 69: Rel (   102,     0)  ->  Abs (  1229,   933)
+	 70: Rel (     0,   -96)  ->  Abs (  1229,   837)
+	 71: Rel (  -102,     0)  ->  Abs (  1127,   837)
+	 72: Rel ( -1127,   -97)  ->  Abs (     0,   740)
+	 73: Rel (   102,     0)  ->  Abs (   102,   740)
+	 74: Rel (     0,   -97)  ->  Abs (   102,   643)
+	 75: Rel (  -102,     0)  ->  Abs (     0,   643)
+	 76: Rel (   205,    97)  ->  Abs (   205,   740)
+	 77: Rel (   102,     0)  ->  Abs (   307,   740)
+	 78: Rel (     0,   -97)  ->  Abs (   307,   643)
+	 79: Rel (  -102,     0)  ->  Abs (   205,   643)
+	 80: Rel (   205,    97)  ->  Abs (   410,   740)
+	 81: Rel (   102,     0)  ->  Abs (   512,   740)
+	 82: Rel (     0,   -97)  ->  Abs (   512,   643)
+	 83: Rel (  -102,     0)  ->  Abs (   410,   643)
+	 84: Rel (   205,    97)  ->  Abs (   615,   740)
+	 85: Rel (   102,     0)  ->  Abs (   717,   740)
+	 86: Rel (     0,   -97)  ->  Abs (   717,   643)
+	 87: Rel (  -102,     0)  ->  Abs (   615,   643)
+	 88: Rel (   205,    97)  ->  Abs (   820,   740)
+	 89: Rel (   102,     0)  ->  Abs (   922,   740)
+	 90: Rel (     0,   -97)  ->  Abs (   922,   643)
+	 91: Rel (  -102,     0)  ->  Abs (   820,   643)
+	 92: Rel (   205,    97)  ->  Abs (  1025,   740)
+	 93: Rel (   102,     0)  ->  Abs (  1127,   740)
+	 94: Rel (     0,   -97)  ->  Abs (  1127,   643)
+	 95: Rel (  -102,     0)  ->  Abs (  1025,   643)
+	 96: Rel (  -923,   -97)  ->  Abs (   102,   546)
+	 97: Rel (   103,     0)  ->  Abs (   205,   546)
+	 98: Rel (     0,   -96)  ->  Abs (   205,   450)
+	 99: Rel (  -103,     0)  ->  Abs (   102,   450)
+	100: Rel (   205,    96)  ->  Abs (   307,   546)
+	101: Rel (   103,     0)  ->  Abs (   410,   546)
+	102: Rel (     0,   -96)  ->  Abs (   410,   450)
+	103: Rel (  -103,     0)  ->  Abs (   307,   450)
+	104: Rel (   205,    96)  ->  Abs (   512,   546)
+	105: Rel (   103,     0)  ->  Abs (   615,   546)
+	106: Rel (     0,   -96)  ->  Abs (   615,   450)
+	107: Rel (  -103,     0)  ->  Abs (   512,   450)
+	108: Rel (   205,    96)  ->  Abs (   717,   546)
+	109: Rel (   103,     0)  ->  Abs (   820,   546)
+	110: Rel (     0,   -96)  ->  Abs (   820,   450)
+	111: Rel (  -103,     0)  ->  Abs (   717,   450)
+	112: Rel (   205,    96)  ->  Abs (   922,   546)
+	113: Rel (   103,     0)  ->  Abs (  1025,   546)
+	114: Rel (     0,   -96)  ->  Abs (  1025,   450)
+	115: Rel (  -103,     0)  ->  Abs (   922,   450)
+	116: Rel (   205,    96)  ->  Abs (  1127,   546)
+	117: Rel (   102,     0)  ->  Abs (  1229,   546)
+	118: Rel (     0,   -96)  ->  Abs (  1229,   450)
+	119: Rel (  -102,     0)  ->  Abs (  1127,   450)
+	120: Rel ( -1127,   -97)  ->  Abs (     0,   353)
+	121: Rel (   102,     0)  ->  Abs (   102,   353)
+	122: Rel (     0,   -96)  ->  Abs (   102,   257)
+	123: Rel (  -102,     0)  ->  Abs (     0,   257)
+	124: Rel (   410,    96)  ->  Abs (   410,   353)
+	125: Rel (   102,     0)  ->  Abs (   512,   353)
+	126: Rel (     0,   -96)  ->  Abs (   512,   257)
+	127: Rel (  -102,     0)  ->  Abs (   410,   257)
+	128: Rel (   205,    96)  ->  Abs (   615,   353)
+	129: Rel (   102,     0)  ->  Abs (   717,   353)
+	130: Rel (     0,   -96)  ->  Abs (   717,   257)
+	131: Rel (  -102,     0)  ->  Abs (   615,   257)
+	132: Rel (   205,    96)  ->  Abs (   820,   353)
+	133: Rel (   102,     0)  ->  Abs (   922,   353)
+	134: Rel (     0,   -96)  ->  Abs (   922,   257)
+	135: Rel (  -102,     0)  ->  Abs (   820,   257)
+	136: Rel (   205,    96)  ->  Abs (  1025,   353)
+	137: Rel (   102,     0)  ->  Abs (  1127,   353)
+	138: Rel (     0,   -96)  ->  Abs (  1127,   257)
+	139: Rel (  -102,     0)  ->  Abs (  1025,   257)
+	140: Rel (  -820,    96)  ->  Abs (   205,   353)
+	141: Rel (   102,     0)  ->  Abs (   307,   353)
+	142: Rel (     0,   -96)  ->  Abs (   307,   257)
+	143: Rel (  -102,     0)  ->  Abs (   205,   257)
+	144: Rel (   922,   -97)  ->  Abs (  1127,   160)
+	145: Rel (   102,     0)  ->  Abs (  1229,   160)
+	146: Rel (     0,   -97)  ->  Abs (  1229,    63)
+	147: Rel (  -102,     0)  ->  Abs (  1127,    63)
+	148: Rel (  -205,    97)  ->  Abs (   922,   160)
+	149: Rel (   103,     0)  ->  Abs (  1025,   160)
+	150: Rel (     0,   -97)  ->  Abs (  1025,    63)
+	151: Rel (  -103,     0)  ->  Abs (   922,    63)
+	152: Rel (  -205,    97)  ->  Abs (   717,   160)
+	153: Rel (   103,     0)  ->  Abs (   820,   160)
+	154: Rel (     0,   -97)  ->  Abs (   820,    63)
+	155: Rel (  -103,     0)  ->  Abs (   717,    63)
+	156: Rel (  -205,    97)  ->  Abs (   512,   160)
+	157: Rel (   103,     0)  ->  Abs (   615,   160)
+	158: Rel (     0,   -97)  ->  Abs (   615,    63)
+	159: Rel (  -103,     0)  ->  Abs (   512,    63)
+	160: Rel (  -205,    97)  ->  Abs (   307,   160)
+	161: Rel (   103,     0)  ->  Abs (   410,   160)
+	162: Rel (     0,   -97)  ->  Abs (   410,    63)
+	163: Rel (  -103,     0)  ->  Abs (   307,    63)
+	164: Rel (  -205,    97)  ->  Abs (   102,   160)
+	165: Rel (   103,     0)  ->  Abs (   205,   160)
+	166: Rel (     0,   -97)  ->  Abs (   205,    63)
+	167: Rel (  -103,     0)  ->  Abs (   102,    63)
+	168: Rel (  -102,   -97)  ->  Abs (     0,   -34)
+	169: Rel (   102,     0)  ->  Abs (   102,   -34)
+	170: Rel (     0,   -96)  ->  Abs (   102,  -130)
+	171: Rel (  -102,     0)  ->  Abs (     0,  -130)
+	172: Rel (   205,    96)  ->  Abs (   205,   -34)
+	173: Rel (   102,     0)  ->  Abs (   307,   -34)
+	174: Rel (     0,   -96)  ->  Abs (   307,  -130)
+	175: Rel (  -102,     0)  ->  Abs (   205,  -130)
+	176: Rel (   205,    96)  ->  Abs (   410,   -34)
+	177: Rel (   102,     0)  ->  Abs (   512,   -34)
+	178: Rel (     0,   -96)  ->  Abs (   512,  -130)
+	179: Rel (  -102,     0)  ->  Abs (   410,  -130)
+	180: Rel (   205,    96)  ->  Abs (   615,   -34)
+	181: Rel (   102,     0)  ->  Abs (   717,   -34)
+	182: Rel (     0,   -96)  ->  Abs (   717,  -130)
+	183: Rel (  -102,     0)  ->  Abs (   615,  -130)
+	184: Rel (   205,    96)  ->  Abs (   820,   -34)
+	185: Rel (   102,     0)  ->  Abs (   922,   -34)
+	186: Rel (     0,   -96)  ->  Abs (   922,  -130)
+	187: Rel (  -102,     0)  ->  Abs (   820,  -130)
+	188: Rel (   205,    96)  ->  Abs (  1025,   -34)
+	189: Rel (   102,     0)  ->  Abs (  1127,   -34)
+	190: Rel (     0,   -96)  ->  Abs (  1127,  -130)
+	191: Rel (  -102,     0)  ->  Abs (  1025,  -130)
+	192: Rel (   102,   -97)  ->  Abs (  1127,  -227)
+	193: Rel (   102,     0)  ->  Abs (  1229,  -227)
+	194: Rel (     0,   -97)  ->  Abs (  1229,  -324)
+	195: Rel (  -102,     0)  ->  Abs (  1127,  -324)
+	196: Rel (  -205,    97)  ->  Abs (   922,  -227)
+	197: Rel (   103,     0)  ->  Abs (  1025,  -227)
+	198: Rel (     0,   -97)  ->  Abs (  1025,  -324)
+	199: Rel (  -103,     0)  ->  Abs (   922,  -324)
+	200: Rel (  -205,    97)  ->  Abs (   717,  -227)
+	201: Rel (   103,     0)  ->  Abs (   820,  -227)
+	202: Rel (     0,   -97)  ->  Abs (   820,  -324)
+	203: Rel (  -103,     0)  ->  Abs (   717,  -324)
+	204: Rel (  -205,    97)  ->  Abs (   512,  -227)
+	205: Rel (   103,     0)  ->  Abs (   615,  -227)
+	206: Rel (     0,   -97)  ->  Abs (   615,  -324)
+	207: Rel (  -103,     0)  ->  Abs (   512,  -324)
+	208: Rel (  -205,    97)  ->  Abs (   307,  -227)
+	209: Rel (   103,     0)  ->  Abs (   410,  -227)
+	210: Rel (     0,   -97)  ->  Abs (   410,  -324)
+	211: Rel (  -103,     0)  ->  Abs (   307,  -324)
+	212: Rel (  -205,    97)  ->  Abs (   102,  -227)
+	213: Rel (   103,     0)  ->  Abs (   205,  -227)
+	214: Rel (     0,   -97)  ->  Abs (   205,  -324)
+	215: Rel (  -103,     0)  ->  Abs (   102,  -324)
+	216: Rel (  -102,   -96)  ->  Abs (     0,  -420)
+	217: Rel (   102,     0)  ->  Abs (   102,  -420)
+	218: Rel (     0,   -97)  ->  Abs (   102,  -517)
+	219: Rel (  -102,     0)  ->  Abs (     0,  -517)
+	220: Rel (   205,    97)  ->  Abs (   205,  -420)
+	221: Rel (   102,     0)  ->  Abs (   307,  -420)
+	222: Rel (     0,   -97)  ->  Abs (   307,  -517)
+	223: Rel (  -102,     0)  ->  Abs (   205,  -517)
+	224: Rel (   205,    97)  ->  Abs (   410,  -420)
+	225: Rel (   102,     0)  ->  Abs (   512,  -420)
+	226: Rel (     0,   -97)  ->  Abs (   512,  -517)
+	227: Rel (  -102,     0)  ->  Abs (   410,  -517)
+	228: Rel (   205,    97)  ->  Abs (   615,  -420)
+	229: Rel (   102,     0)  ->  Abs (   717,  -420)
+	230: Rel (     0,   -97)  ->  Abs (   717,  -517)
+	231: Rel (  -102,     0)  ->  Abs (   615,  -517)
+	232: Rel (   205,    97)  ->  Abs (   820,  -420)
+	233: Rel (   102,     0)  ->  Abs (   922,  -420)
+	234: Rel (     0,   -97)  ->  Abs (   922,  -517)
+	235: Rel (  -102,     0)  ->  Abs (   820,  -517)
+	236: Rel (   205,    97)  ->  Abs (  1025,  -420)
+	237: Rel (   102,     0)  ->  Abs (  1127,  -420)
+	238: Rel (     0,   -97)  ->  Abs (  1127,  -517)
+	239: Rel (  -102,     0)  ->  Abs (  1025,  -517)
+	240: Rel ( -1025,   -98)  ->  Abs (     0,  -615)
+	241: Rel (     0,  2128)  ->  Abs (     0,  1513)
+	242: Rel (   102,     0)  ->  Abs (   102,  1513)
+	243: Rel (     0,   -97)  ->  Abs (   102,  1416)
+	244: Rel (  -102,     0)  ->  Abs (     0,  1416)
+	245: Rel (   205,    97)  ->  Abs (   205,  1513)
+	246: Rel (   102,     0)  ->  Abs (   307,  1513)
+	247: Rel (     0,   -97)  ->  Abs (   307,  1416)
+	248: Rel (  -102,     0)  ->  Abs (   205,  1416)
+	249: Rel (   205,    97)  ->  Abs (   410,  1513)
+	250: Rel (   102,     0)  ->  Abs (   512,  1513)
+	251: Rel (     0,   -97)  ->  Abs (   512,  1416)
+	252: Rel (  -102,     0)  ->  Abs (   410,  1416)
+	253: Rel (   205,    97)  ->  Abs (   615,  1513)
+	254: Rel (   102,     0)  ->  Abs (   717,  1513)
+	255: Rel (     0,   -97)  ->  Abs (   717,  1416)
+	256: Rel (  -102,     0)  ->  Abs (   615,  1416)
+	257: Rel (   205,    97)  ->  Abs (   820,  1513)
+	258: Rel (   102,     0)  ->  Abs (   922,  1513)
+	259: Rel (     0,   -97)  ->  Abs (   922,  1416)
+	260: Rel (  -102,     0)  ->  Abs (   820,  1416)
+	261: Rel (   205,    97)  ->  Abs (  1025,  1513)
+	262: Rel (   102,     0)  ->  Abs (  1127,  1513)
+	263: Rel (     0,   -97)  ->  Abs (  1127,  1416)
+	264: Rel (  -102,     0)  ->  Abs (  1025,  1416)
+	265: Rel (  -923,   289)  ->  Abs (   102,  1705)
+	266: Rel (   103,     0)  ->  Abs (   205,  1705)
+	267: Rel (     0,   -95)  ->  Abs (   205,  1610)
+	268: Rel (  -103,     0)  ->  Abs (   102,  1610)
+	269: Rel (   205,    95)  ->  Abs (   307,  1705)
+	270: Rel (   103,     0)  ->  Abs (   410,  1705)
+	271: Rel (     0,   -95)  ->  Abs (   410,  1610)
+	272: Rel (  -103,     0)  ->  Abs (   307,  1610)
+	273: Rel (   205,    95)  ->  Abs (   512,  1705)
+	274: Rel (   103,     0)  ->  Abs (   615,  1705)
+	275: Rel (     0,   -95)  ->  Abs (   615,  1610)
+	276: Rel (  -103,     0)  ->  Abs (   512,  1610)
+	277: Rel (   205,    95)  ->  Abs (   717,  1705)
+	278: Rel (   103,     0)  ->  Abs (   820,  1705)
+	279: Rel (     0,   -95)  ->  Abs (   820,  1610)
+	280: Rel (  -103,     0)  ->  Abs (   717,  1610)
+	281: Rel (   205,    95)  ->  Abs (   922,  1705)
+	282: Rel (   103,     0)  ->  Abs (  1025,  1705)
+	283: Rel (     0,   -95)  ->  Abs (  1025,  1610)
+	284: Rel (  -103,     0)  ->  Abs (   922,  1610)
+	285: Rel (   205,    95)  ->  Abs (  1127,  1705)
+	286: Rel (   102,     0)  ->  Abs (  1229,  1705)
+	287: Rel (     0,   -95)  ->  Abs (  1229,  1610)
+	288: Rel (  -102,     0)  ->  Abs (  1127,  1610)
+
+	Glyph 373: off = 0x00014C9C, len = 2114
+	  numberOfContours:	56
+	  xMin:			0
+	  yMin:			-615
+	  xMax:			1229
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  69
+	  1:  73
+	  2:  77
+	  3:  81
+	  4:  85
+	  5:  89
+	  6:  93
+	  7:  97
+	  8:  101
+	  9:  105
+	 10:  109
+	 11:  113
+	 12:  117
+	 13:  121
+	 14:  125
+	 15:  129
+	 16:  133
+	 17:  137
+	 18:  141
+	 19:  145
+	 20:  149
+	 21:  153
+	 22:  157
+	 23:  161
+	 24:  165
+	 25:  169
+	 26:  173
+	 27:  177
+	 28:  181
+	 29:  185
+	 30:  189
+	 31:  193
+	 32:  197
+	 33:  201
+	 34:  205
+	 35:  209
+	 36:  213
+	 37:  217
+	 38:  221
+	 39:  225
+	 40:  229
+	 41:  233
+	 42:  237
+	 43:  241
+	 44:  245
+	 45:  249
+	 46:  253
+	 47:  257
+	 48:  261
+	 49:  265
+	 50:  269
+	 51:  273
+	 52:  277
+	 53:  281
+	 54:  285
+	 55:  289
+
+	  Length of Instructions:	1358
+	00000: NPUSHB      (23):    68    65    64    61    60    57    56    53    52    49 
+	                            48    66    63    62    59    58    55    54    51    50 
+	                            47    46     1 
+	00025: NPUSHW      (21):   270   271   274   275   278   279   282   283   286   287 
+	                             2   273   272   277   276   281   280   285   284   289 
+	                           288 
+	00069: PUSHB[3]            251   254   255 
+	00073: PUSHW[6]            258   259   262   263   266   267 
+	00086: PUSHB[3]             44    45   252 
+	00090: PUSHW[8]            257   256   261   260   265   264   269   268 
+	00107: NPUSHB     (237):    43    42     5    89    86    85    82    81    78    77 
+	                            74    73    70     6    88    87    84    83    80    79 
+	                            76    75    72    71    91    94    95    98    99   102 
+	                           103   106   107    40    41    92    97    96   101   100 
+	                           105   104   109   108    39    38     9   129   126   125 
+	                           122   121   118   117   114   113   110    10   128   127 
+	                           124   123   120   119   116   115   112   111   146   145 
+	                           142   141   138   137   134   130   131    36    37   147 
+	                           144   143   140   139   136   135   133   132    35    34 
+	                            13   169   166   165   162   157   154   159   160   153 
+	                           150    14   168   167   164   163   156   155   158   161 
+	                           152   151   172   175   176   179   180   183   184   187 
+	                           188    32    33   173   174   177   178   181   182   185 
+	                           186   189    31    30    17   209   206   205   202   201 
+	                           198   197   194   193   190    18   208   207   204   203 
+	                           200   199   196   195   192   191   212   215   216   219 
+	                           220   223   224   227   228    28    29   213   214   217 
+	                           218   221   222   225   226   229    27    26    21   249 
+	                           246   245   242   241   238   237   234   233   230    22 
+	                           248   247   244   243   240   239   236   235   232   231 
+	                             0     3     4     7     8    11    12    15    16    19 
+	                            20    23    24    67     1     2   250   253     5     6 
+	                            90    93     9    10   149   148    13    14   171   170 
+	                            17    18   211   210    21    22    66 
+	00346: PUSHW[2]            270   273 
+	00351: NPUSHB      (21):   251   252    89    88    91    92   129   128   146   147 
+	                           169   168   172   173   209   208   212   213   249   248 
+	                            63 
+	00374: PUSHW[4]            271   272   254   257 
+	00383: NPUSHB      (19):    86    87    94    97   126   127   145   144   166   167 
+	                           175   174   206   207   215   214   246   247    62 
+	00404: PUSHW[4]            274   277   255   256 
+	00413: NPUSHB      (19):    85    84    95    96   125   124   142   143   165   164 
+	                           176   177   205   204   216   217   245   244    59 
+	00434: PUSHW[4]            275   276   258   261 
+	00443: NPUSHB      (19):    82    83    98   101   122   123   141   140   162   163 
+	                           179   178   202   203   219   218   242   243    58 
+	00464: PUSHW[4]            278   281   259   260 
+	00473: NPUSHB      (19):    81    80    99   100   121   120   138   139   157   156 
+	                           180   181   201   200   220   221   241   240    55 
+	00494: PUSHW[4]            279   280   262   265 
+	00503: NPUSHB      (19):    78    79   102   105   118   119   137   136   154   155 
+	                           183   182   198   199   223   222   238   239    54 
+	00524: PUSHW[4]            282   285   263   264 
+	00533: NPUSHB      (19):    77    76   103   104   117   116   134   135   159   158 
+	                           184   185   197   196   224   225   237   236    51 
+	00554: PUSHW[4]            283   284   266   269 
+	00563: NPUSHB      (19):    74    75   106   109   114   115   130   133   160   161 
+	                           187   186   194   195   227   226   234   235    50 
+	00584: PUSHW[4]            286   289   267   268 
+	00593: NPUSHB      (19):    73    72   107   108   113   112   131   132   153   152 
+	                           188   189   193   192   228   229   233   232    47 
+	00614: PUSHW[2]            287   288 
+	00619: NPUSHB      (36):    44    43    70    71    40    39   110   111    36    35 
+	                           150   151    32    31   190   191    28    27   230   231 
+	                            45    42    41    38    37    34    33    30    29    26 
+	                            25    69    48    67    46     0 
+	00657: PUSHW[3]            287     3   288 
+	00664: NPUSHB      (68):   250    45   253    42     4    70     7    71    90    41 
+	                            93    38     8   110    11   111   149    37   148    34 
+	                            12   150    15   151   171    33   170    30    16   190 
+	                            19   191   211    29   210    26    20   230    23   231 
+	                            24    25    69    24    68    22    65   248    64   247 
+	                            61   244    60   243    57   240    56   239    53   236 
+	                            52   235    49   232    48   231    46    25 
+	00734: MDAP[rd]   
+	00735: ALIGNRP    
+	00736: MDAP[rd]   
+	00737: ALIGNRP    
+	00738: MDAP[rd]   
+	00739: ALIGNRP    
+	00740: MDAP[rd]   
+	00741: ALIGNRP    
+	00742: MDAP[rd]   
+	00743: ALIGNRP    
+	00744: MDAP[rd]   
+	00745: ALIGNRP    
+	00746: MDAP[rd]   
+	00747: ALIGNRP    
+	00748: MDAP[rd]   
+	00749: ALIGNRP    
+	00750: MDAP[rd]   
+	00751: ALIGNRP    
+	00752: MDAP[rd]   
+	00753: ALIGNRP    
+	00754: MDAP[rd]   
+	00755: ALIGNRP    
+	00756: MDAP[rd]   
+	00757: ALIGNRP    
+	00758: MDAP[rd]   
+	00759: ALIGNRP    
+	00760: SVTCA[y-axis] 
+	00761: MDAP[rd]   
+	00762: MDAP[rd]   
+	00763: MDAP[rd]   
+	00764: ALIGNRP    
+	00765: MDAP[rd]   
+	00766: ALIGNRP    
+	00767: MDAP[rd]   
+	00768: ALIGNRP    
+	00769: MDAP[rd]   
+	00770: ALIGNRP    
+	00771: MDAP[rd]   
+	00772: ALIGNRP    
+	00773: MDAP[rd]   
+	00774: ALIGNRP    
+	00775: MDAP[rd]   
+	00776: ALIGNRP    
+	00777: MDAP[rd]   
+	00778: ALIGNRP    
+	00779: MDAP[rd]   
+	00780: ALIGNRP    
+	00781: MDAP[rd]   
+	00782: ALIGNRP    
+	00783: MDAP[rd]   
+	00784: ALIGNRP    
+	00785: MDAP[rd]   
+	00786: ALIGNRP    
+	00787: MDAP[rd]   
+	00788: ALIGNRP    
+	00789: MDAP[rd]   
+	00790: ALIGNRP    
+	00791: MDAP[rd]   
+	00792: ALIGNRP    
+	00793: MDAP[rd]   
+	00794: ALIGNRP    
+	00795: MDAP[rd]   
+	00796: ALIGNRP    
+	00797: MDAP[rd]   
+	00798: ALIGNRP    
+	00799: MDAP[rd]   
+	00800: ALIGNRP    
+	00801: MDAP[rd]   
+	00802: ALIGNRP    
+	00803: MDAP[rd]   
+	00804: ALIGNRP    
+	00805: MDAP[rd]   
+	00806: ALIGNRP    
+	00807: MDAP[rd]   
+	00808: ALIGNRP    
+	00809: MDAP[rd]   
+	00810: ALIGNRP    
+	00811: SPVTCA[x-axis] 
+	00812: SFVTCA[x-axis] 
+	00813: SRP0       
+	00814: ALIGNRP    
+	00815: ALIGNRP    
+	00816: ALIGNRP    
+	00817: ALIGNRP    
+	00818: ALIGNRP    
+	00819: ALIGNRP    
+	00820: ALIGNRP    
+	00821: ALIGNRP    
+	00822: ALIGNRP    
+	00823: ALIGNRP    
+	00824: SRP0       
+	00825: ALIGNRP    
+	00826: ALIGNRP    
+	00827: ALIGNRP    
+	00828: ALIGNRP    
+	00829: ALIGNRP    
+	00830: ALIGNRP    
+	00831: ALIGNRP    
+	00832: ALIGNRP    
+	00833: ALIGNRP    
+	00834: ALIGNRP    
+	00835: ALIGNRP    
+	00836: ALIGNRP    
+	00837: ALIGNRP    
+	00838: ALIGNRP    
+	00839: ALIGNRP    
+	00840: ALIGNRP    
+	00841: ALIGNRP    
+	00842: ALIGNRP    
+	00843: ALIGNRP    
+	00844: ALIGNRP    
+	00845: ALIGNRP    
+	00846: ALIGNRP    
+	00847: SRP0       
+	00848: ALIGNRP    
+	00849: ALIGNRP    
+	00850: ALIGNRP    
+	00851: ALIGNRP    
+	00852: ALIGNRP    
+	00853: ALIGNRP    
+	00854: ALIGNRP    
+	00855: ALIGNRP    
+	00856: ALIGNRP    
+	00857: ALIGNRP    
+	00858: ALIGNRP    
+	00859: ALIGNRP    
+	00860: ALIGNRP    
+	00861: ALIGNRP    
+	00862: ALIGNRP    
+	00863: ALIGNRP    
+	00864: ALIGNRP    
+	00865: ALIGNRP    
+	00866: ALIGNRP    
+	00867: ALIGNRP    
+	00868: ALIGNRP    
+	00869: ALIGNRP    
+	00870: SRP0       
+	00871: ALIGNRP    
+	00872: ALIGNRP    
+	00873: ALIGNRP    
+	00874: ALIGNRP    
+	00875: ALIGNRP    
+	00876: ALIGNRP    
+	00877: ALIGNRP    
+	00878: ALIGNRP    
+	00879: ALIGNRP    
+	00880: ALIGNRP    
+	00881: ALIGNRP    
+	00882: ALIGNRP    
+	00883: ALIGNRP    
+	00884: ALIGNRP    
+	00885: ALIGNRP    
+	00886: ALIGNRP    
+	00887: ALIGNRP    
+	00888: ALIGNRP    
+	00889: ALIGNRP    
+	00890: ALIGNRP    
+	00891: ALIGNRP    
+	00892: ALIGNRP    
+	00893: SRP0       
+	00894: ALIGNRP    
+	00895: ALIGNRP    
+	00896: ALIGNRP    
+	00897: ALIGNRP    
+	00898: ALIGNRP    
+	00899: ALIGNRP    
+	00900: ALIGNRP    
+	00901: ALIGNRP    
+	00902: ALIGNRP    
+	00903: ALIGNRP    
+	00904: ALIGNRP    
+	00905: ALIGNRP    
+	00906: ALIGNRP    
+	00907: ALIGNRP    
+	00908: ALIGNRP    
+	00909: ALIGNRP    
+	00910: ALIGNRP    
+	00911: ALIGNRP    
+	00912: ALIGNRP    
+	00913: ALIGNRP    
+	00914: ALIGNRP    
+	00915: ALIGNRP    
+	00916: SRP0       
+	00917: ALIGNRP    
+	00918: ALIGNRP    
+	00919: ALIGNRP    
+	00920: ALIGNRP    
+	00921: ALIGNRP    
+	00922: ALIGNRP    
+	00923: ALIGNRP    
+	00924: ALIGNRP    
+	00925: ALIGNRP    
+	00926: ALIGNRP    
+	00927: ALIGNRP    
+	00928: ALIGNRP    
+	00929: ALIGNRP    
+	00930: ALIGNRP    
+	00931: ALIGNRP    
+	00932: ALIGNRP    
+	00933: ALIGNRP    
+	00934: ALIGNRP    
+	00935: ALIGNRP    
+	00936: ALIGNRP    
+	00937: ALIGNRP    
+	00938: ALIGNRP    
+	00939: SRP0       
+	00940: ALIGNRP    
+	00941: ALIGNRP    
+	00942: ALIGNRP    
+	00943: ALIGNRP    
+	00944: ALIGNRP    
+	00945: ALIGNRP    
+	00946: ALIGNRP    
+	00947: ALIGNRP    
+	00948: ALIGNRP    
+	00949: ALIGNRP    
+	00950: ALIGNRP    
+	00951: ALIGNRP    
+	00952: ALIGNRP    
+	00953: ALIGNRP    
+	00954: ALIGNRP    
+	00955: ALIGNRP    
+	00956: ALIGNRP    
+	00957: ALIGNRP    
+	00958: ALIGNRP    
+	00959: ALIGNRP    
+	00960: ALIGNRP    
+	00961: ALIGNRP    
+	00962: SRP0       
+	00963: ALIGNRP    
+	00964: ALIGNRP    
+	00965: ALIGNRP    
+	00966: ALIGNRP    
+	00967: ALIGNRP    
+	00968: ALIGNRP    
+	00969: ALIGNRP    
+	00970: ALIGNRP    
+	00971: ALIGNRP    
+	00972: ALIGNRP    
+	00973: ALIGNRP    
+	00974: ALIGNRP    
+	00975: ALIGNRP    
+	00976: ALIGNRP    
+	00977: ALIGNRP    
+	00978: ALIGNRP    
+	00979: ALIGNRP    
+	00980: ALIGNRP    
+	00981: ALIGNRP    
+	00982: ALIGNRP    
+	00983: ALIGNRP    
+	00984: ALIGNRP    
+	00985: SRP0       
+	00986: ALIGNRP    
+	00987: ALIGNRP    
+	00988: ALIGNRP    
+	00989: ALIGNRP    
+	00990: ALIGNRP    
+	00991: ALIGNRP    
+	00992: ALIGNRP    
+	00993: ALIGNRP    
+	00994: ALIGNRP    
+	00995: ALIGNRP    
+	00996: ALIGNRP    
+	00997: ALIGNRP    
+	00998: ALIGNRP    
+	00999: ALIGNRP    
+	01000: ALIGNRP    
+	01001: ALIGNRP    
+	01002: ALIGNRP    
+	01003: ALIGNRP    
+	01004: ALIGNRP    
+	01005: ALIGNRP    
+	01006: ALIGNRP    
+	01007: ALIGNRP    
+	01008: SRP0       
+	01009: ALIGNRP    
+	01010: ALIGNRP    
+	01011: ALIGNRP    
+	01012: ALIGNRP    
+	01013: ALIGNRP    
+	01014: ALIGNRP    
+	01015: ALIGNRP    
+	01016: ALIGNRP    
+	01017: ALIGNRP    
+	01018: ALIGNRP    
+	01019: ALIGNRP    
+	01020: ALIGNRP    
+	01021: ALIGNRP    
+	01022: ALIGNRP    
+	01023: ALIGNRP    
+	01024: ALIGNRP    
+	01025: ALIGNRP    
+	01026: ALIGNRP    
+	01027: ALIGNRP    
+	01028: ALIGNRP    
+	01029: ALIGNRP    
+	01030: ALIGNRP    
+	01031: SRP0       
+	01032: ALIGNRP    
+	01033: ALIGNRP    
+	01034: ALIGNRP    
+	01035: ALIGNRP    
+	01036: ALIGNRP    
+	01037: ALIGNRP    
+	01038: ALIGNRP    
+	01039: ALIGNRP    
+	01040: ALIGNRP    
+	01041: ALIGNRP    
+	01042: ALIGNRP    
+	01043: ALIGNRP    
+	01044: ALIGNRP    
+	01045: ALIGNRP    
+	01046: ALIGNRP    
+	01047: ALIGNRP    
+	01048: ALIGNRP    
+	01049: ALIGNRP    
+	01050: ALIGNRP    
+	01051: ALIGNRP    
+	01052: ALIGNRP    
+	01053: ALIGNRP    
+	01054: SRP0       
+	01055: ALIGNRP    
+	01056: ALIGNRP    
+	01057: ALIGNRP    
+	01058: ALIGNRP    
+	01059: ALIGNRP    
+	01060: ALIGNRP    
+	01061: ALIGNRP    
+	01062: ALIGNRP    
+	01063: ALIGNRP    
+	01064: ALIGNRP    
+	01065: ALIGNRP    
+	01066: ALIGNRP    
+	01067: ALIGNRP    
+	01068: ALIGNRP    
+	01069: ALIGNRP    
+	01070: ALIGNRP    
+	01071: ALIGNRP    
+	01072: ALIGNRP    
+	01073: ALIGNRP    
+	01074: ALIGNRP    
+	01075: ALIGNRP    
+	01076: ALIGNRP    
+	01077: SRP0       
+	01078: ALIGNRP    
+	01079: ALIGNRP    
+	01080: ALIGNRP    
+	01081: ALIGNRP    
+	01082: ALIGNRP    
+	01083: ALIGNRP    
+	01084: ALIGNRP    
+	01085: ALIGNRP    
+	01086: ALIGNRP    
+	01087: ALIGNRP    
+	01088: ALIGNRP    
+	01089: ALIGNRP    
+	01090: SPVTCA[y-axis] 
+	01091: SFVTCA[y-axis] 
+	01092: SRP0       
+	01093: ALIGNRP    
+	01094: ALIGNRP    
+	01095: ALIGNRP    
+	01096: ALIGNRP    
+	01097: ALIGNRP    
+	01098: ALIGNRP    
+	01099: ALIGNRP    
+	01100: ALIGNRP    
+	01101: ALIGNRP    
+	01102: ALIGNRP    
+	01103: SRP0       
+	01104: ALIGNRP    
+	01105: ALIGNRP    
+	01106: ALIGNRP    
+	01107: ALIGNRP    
+	01108: ALIGNRP    
+	01109: ALIGNRP    
+	01110: ALIGNRP    
+	01111: ALIGNRP    
+	01112: ALIGNRP    
+	01113: ALIGNRP    
+	01114: SRP0       
+	01115: ALIGNRP    
+	01116: ALIGNRP    
+	01117: ALIGNRP    
+	01118: ALIGNRP    
+	01119: ALIGNRP    
+	01120: ALIGNRP    
+	01121: ALIGNRP    
+	01122: ALIGNRP    
+	01123: ALIGNRP    
+	01124: ALIGNRP    
+	01125: SRP0       
+	01126: ALIGNRP    
+	01127: ALIGNRP    
+	01128: ALIGNRP    
+	01129: ALIGNRP    
+	01130: ALIGNRP    
+	01131: ALIGNRP    
+	01132: ALIGNRP    
+	01133: ALIGNRP    
+	01134: ALIGNRP    
+	01135: ALIGNRP    
+	01136: SRP0       
+	01137: ALIGNRP    
+	01138: ALIGNRP    
+	01139: ALIGNRP    
+	01140: ALIGNRP    
+	01141: ALIGNRP    
+	01142: ALIGNRP    
+	01143: ALIGNRP    
+	01144: ALIGNRP    
+	01145: ALIGNRP    
+	01146: ALIGNRP    
+	01147: SRP0       
+	01148: ALIGNRP    
+	01149: ALIGNRP    
+	01150: ALIGNRP    
+	01151: ALIGNRP    
+	01152: ALIGNRP    
+	01153: ALIGNRP    
+	01154: ALIGNRP    
+	01155: ALIGNRP    
+	01156: ALIGNRP    
+	01157: ALIGNRP    
+	01158: SRP0       
+	01159: ALIGNRP    
+	01160: ALIGNRP    
+	01161: ALIGNRP    
+	01162: ALIGNRP    
+	01163: ALIGNRP    
+	01164: ALIGNRP    
+	01165: ALIGNRP    
+	01166: ALIGNRP    
+	01167: ALIGNRP    
+	01168: ALIGNRP    
+	01169: SRP0       
+	01170: ALIGNRP    
+	01171: ALIGNRP    
+	01172: ALIGNRP    
+	01173: ALIGNRP    
+	01174: ALIGNRP    
+	01175: ALIGNRP    
+	01176: ALIGNRP    
+	01177: ALIGNRP    
+	01178: ALIGNRP    
+	01179: ALIGNRP    
+	01180: SRP0       
+	01181: ALIGNRP    
+	01182: ALIGNRP    
+	01183: ALIGNRP    
+	01184: ALIGNRP    
+	01185: ALIGNRP    
+	01186: ALIGNRP    
+	01187: ALIGNRP    
+	01188: ALIGNRP    
+	01189: ALIGNRP    
+	01190: ALIGNRP    
+	01191: SRP0       
+	01192: ALIGNRP    
+	01193: ALIGNRP    
+	01194: ALIGNRP    
+	01195: ALIGNRP    
+	01196: ALIGNRP    
+	01197: ALIGNRP    
+	01198: ALIGNRP    
+	01199: ALIGNRP    
+	01200: ALIGNRP    
+	01201: ALIGNRP    
+	01202: SRP0       
+	01203: ALIGNRP    
+	01204: ALIGNRP    
+	01205: ALIGNRP    
+	01206: ALIGNRP    
+	01207: ALIGNRP    
+	01208: ALIGNRP    
+	01209: ALIGNRP    
+	01210: ALIGNRP    
+	01211: ALIGNRP    
+	01212: ALIGNRP    
+	01213: SRP0       
+	01214: ALIGNRP    
+	01215: ALIGNRP    
+	01216: ALIGNRP    
+	01217: ALIGNRP    
+	01218: ALIGNRP    
+	01219: ALIGNRP    
+	01220: ALIGNRP    
+	01221: ALIGNRP    
+	01222: ALIGNRP    
+	01223: ALIGNRP    
+	01224: SRP0       
+	01225: ALIGNRP    
+	01226: ALIGNRP    
+	01227: ALIGNRP    
+	01228: ALIGNRP    
+	01229: ALIGNRP    
+	01230: ALIGNRP    
+	01231: ALIGNRP    
+	01232: ALIGNRP    
+	01233: ALIGNRP    
+	01234: ALIGNRP    
+	01235: SRP0       
+	01236: ALIGNRP    
+	01237: ALIGNRP    
+	01238: ALIGNRP    
+	01239: ALIGNRP    
+	01240: ALIGNRP    
+	01241: ALIGNRP    
+	01242: ALIGNRP    
+	01243: ALIGNRP    
+	01244: ALIGNRP    
+	01245: ALIGNRP    
+	01246: SRP0       
+	01247: ALIGNRP    
+	01248: ALIGNRP    
+	01249: ALIGNRP    
+	01250: ALIGNRP    
+	01251: ALIGNRP    
+	01252: ALIGNRP    
+	01253: ALIGNRP    
+	01254: ALIGNRP    
+	01255: ALIGNRP    
+	01256: ALIGNRP    
+	01257: SRP0       
+	01258: ALIGNRP    
+	01259: ALIGNRP    
+	01260: ALIGNRP    
+	01261: ALIGNRP    
+	01262: ALIGNRP    
+	01263: ALIGNRP    
+	01264: ALIGNRP    
+	01265: ALIGNRP    
+	01266: ALIGNRP    
+	01267: ALIGNRP    
+	01268: SRP0       
+	01269: ALIGNRP    
+	01270: ALIGNRP    
+	01271: ALIGNRP    
+	01272: ALIGNRP    
+	01273: ALIGNRP    
+	01274: ALIGNRP    
+	01275: ALIGNRP    
+	01276: ALIGNRP    
+	01277: ALIGNRP    
+	01278: ALIGNRP    
+	01279: SRP0       
+	01280: ALIGNRP    
+	01281: ALIGNRP    
+	01282: ALIGNRP    
+	01283: ALIGNRP    
+	01284: ALIGNRP    
+	01285: ALIGNRP    
+	01286: ALIGNRP    
+	01287: ALIGNRP    
+	01288: ALIGNRP    
+	01289: ALIGNRP    
+	01290: SRP0       
+	01291: ALIGNRP    
+	01292: ALIGNRP    
+	01293: ALIGNRP    
+	01294: ALIGNRP    
+	01295: ALIGNRP    
+	01296: ALIGNRP    
+	01297: ALIGNRP    
+	01298: ALIGNRP    
+	01299: ALIGNRP    
+	01300: ALIGNRP    
+	01301: SRP0       
+	01302: ALIGNRP    
+	01303: ALIGNRP    
+	01304: ALIGNRP    
+	01305: ALIGNRP    
+	01306: ALIGNRP    
+	01307: ALIGNRP    
+	01308: ALIGNRP    
+	01309: ALIGNRP    
+	01310: ALIGNRP    
+	01311: ALIGNRP    
+	01312: SRP0       
+	01313: ALIGNRP    
+	01314: ALIGNRP    
+	01315: ALIGNRP    
+	01316: ALIGNRP    
+	01317: ALIGNRP    
+	01318: ALIGNRP    
+	01319: ALIGNRP    
+	01320: ALIGNRP    
+	01321: ALIGNRP    
+	01322: ALIGNRP    
+	01323: SRP0       
+	01324: ALIGNRP    
+	01325: ALIGNRP    
+	01326: ALIGNRP    
+	01327: ALIGNRP    
+	01328: ALIGNRP    
+	01329: ALIGNRP    
+	01330: ALIGNRP    
+	01331: ALIGNRP    
+	01332: ALIGNRP    
+	01333: ALIGNRP    
+	01334: SRP0       
+	01335: ALIGNRP    
+	01336: ALIGNRP    
+	01337: ALIGNRP    
+	01338: ALIGNRP    
+	01339: ALIGNRP    
+	01340: ALIGNRP    
+	01341: ALIGNRP    
+	01342: ALIGNRP    
+	01343: ALIGNRP    
+	01344: ALIGNRP    
+	01345: SRP0       
+	01346: ALIGNRP    
+	01347: ALIGNRP    
+	01348: ALIGNRP    
+	01349: ALIGNRP    
+	01350: ALIGNRP    
+	01351: ALIGNRP    
+	01352: ALIGNRP    
+	01353: ALIGNRP    
+	01354: ALIGNRP    
+	01355: ALIGNRP    
+	01356: IUP[y]     
+	01357: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:        XDual         Y-Short         On
+	  3:  YDual XDual                 X-Short On
+	  4:        XDual                         On
+	  5:  YDual                       X-Short On
+	  6:        XDual         Y-Short         On
+	  7:  YDual XDual                 X-Short On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+	 10:        XDual         Y-Short         On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                         On
+	 13:  YDual                       X-Short On
+	 14:        XDual         Y-Short         On
+	 15:  YDual XDual                 X-Short On
+	 16:        XDual                         On
+	 17:  YDual                       X-Short On
+	 18:        XDual         Y-Short         On
+	 19:  YDual XDual                 X-Short On
+	 20:        XDual                         On
+	 21:  YDual                       X-Short On
+	 22:        XDual         Y-Short         On
+	 23:  YDual XDual                 X-Short On
+	 24:        XDual         Y-Short         On
+	 25:  YDual                               On
+	 26:        XDual                         On
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual                       X-Short On
+	 30:        XDual                         On
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual                       X-Short On
+	 34:        XDual                         On
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual                       X-Short On
+	 38:        XDual                         On
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual                       X-Short On
+	 42:        XDual                         On
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual                       X-Short On
+	 46:        XDual                         On
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual         Y-Short         On
+	 49:  YDual XDual                 X-Short On
+	 50:        XDual         Y-Short         On
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual         Y-Short         On
+	 53:  YDual XDual                 X-Short On
+	 54:        XDual         Y-Short         On
+	 55:  YDual XDual                 X-Short On
+	 56:  YDual XDual         Y-Short         On
+	 57:  YDual XDual                 X-Short On
+	 58:        XDual         Y-Short         On
+	 59:  YDual XDual                 X-Short On
+	 60:  YDual XDual         Y-Short         On
+	 61:  YDual XDual                 X-Short On
+	 62:        XDual         Y-Short         On
+	 63:  YDual XDual                 X-Short On
+	 64:  YDual XDual         Y-Short         On
+	 65:  YDual XDual                 X-Short On
+	 66:        XDual         Y-Short         On
+	 67:  YDual XDual                 X-Short On
+	 68:  YDual XDual         Y-Short         On
+	 69:  YDual XDual                 X-Short On
+	 70:                                      On
+	 71:        XDual         Y-Short         On
+	 72:  YDual XDual                 X-Short On
+	 73:  YDual XDual         Y-Short         On
+	 74:  YDual XDual                 X-Short On
+	 75:        XDual         Y-Short         On
+	 76:  YDual XDual                 X-Short On
+	 77:  YDual XDual         Y-Short         On
+	 78:  YDual XDual                 X-Short On
+	 79:        XDual         Y-Short         On
+	 80:  YDual XDual                 X-Short On
+	 81:  YDual XDual         Y-Short         On
+	 82:  YDual XDual                 X-Short On
+	 83:        XDual         Y-Short         On
+	 84:  YDual XDual                 X-Short On
+	 85:  YDual XDual         Y-Short         On
+	 86:  YDual XDual                 X-Short On
+	 87:        XDual         Y-Short         On
+	 88:  YDual XDual                 X-Short On
+	 89:  YDual XDual         Y-Short         On
+	 90:        XDual         Y-Short X-Short On
+	 91:  YDual                       X-Short On
+	 92:        XDual         Y-Short         On
+	 93:  YDual XDual                 X-Short On
+	 94:  YDual               Y-Short X-Short On
+	 95:  YDual                       X-Short On
+	 96:        XDual         Y-Short         On
+	 97:  YDual XDual                 X-Short On
+	 98:  YDual               Y-Short X-Short On
+	 99:  YDual                       X-Short On
+	100:        XDual         Y-Short         On
+	101:  YDual XDual                 X-Short On
+	102:  YDual               Y-Short X-Short On
+	103:  YDual                       X-Short On
+	104:        XDual         Y-Short         On
+	105:  YDual XDual                 X-Short On
+	106:  YDual               Y-Short X-Short On
+	107:  YDual                       X-Short On
+	108:        XDual         Y-Short         On
+	109:  YDual XDual                 X-Short On
+	110:                      Y-Short X-Short On
+	111:        XDual         Y-Short         On
+	112:  YDual XDual                 X-Short On
+	113:  YDual XDual         Y-Short         On
+	114:  YDual XDual                 X-Short On
+	115:        XDual         Y-Short         On
+	116:  YDual XDual                 X-Short On
+	117:  YDual XDual         Y-Short         On
+	118:  YDual XDual                 X-Short On
+	119:        XDual         Y-Short         On
+	120:  YDual XDual                 X-Short On
+	121:  YDual XDual         Y-Short         On
+	122:  YDual XDual                 X-Short On
+	123:        XDual         Y-Short         On
+	124:  YDual XDual                 X-Short On
+	125:  YDual XDual         Y-Short         On
+	126:  YDual XDual                 X-Short On
+	127:        XDual         Y-Short         On
+	128:  YDual XDual                 X-Short On
+	129:  YDual XDual         Y-Short         On
+	130:                      Y-Short         On
+	131:  YDual                       X-Short On
+	132:        XDual         Y-Short         On
+	133:  YDual XDual                 X-Short On
+	134:  YDual XDual         Y-Short X-Short On
+	135:        XDual         Y-Short         On
+	136:  YDual XDual                 X-Short On
+	137:  YDual XDual         Y-Short         On
+	138:  YDual XDual                 X-Short On
+	139:        XDual         Y-Short         On
+	140:  YDual XDual                 X-Short On
+	141:  YDual XDual         Y-Short         On
+	142:  YDual XDual                 X-Short On
+	143:        XDual         Y-Short         On
+	144:  YDual XDual                 X-Short On
+	145:  YDual XDual         Y-Short         On
+	146:  YDual XDual                 X-Short On
+	147:        XDual         Y-Short         On
+	148:  YDual XDual                 X-Short On
+	149:  YDual XDual         Y-Short         On
+	150:                      Y-Short         On
+	151:        XDual         Y-Short         On
+	152:  YDual XDual                 X-Short On
+	153:  YDual XDual         Y-Short         On
+	154:  YDual                               On
+	155:        XDual         Y-Short         On
+	156:  YDual XDual                 X-Short On
+	157:  YDual XDual         Y-Short         On
+	158:                      Y-Short X-Short On
+	159:  YDual XDual         Y-Short         On
+	160:  YDual                       X-Short On
+	161:        XDual         Y-Short         On
+	162:  YDual               Y-Short         On
+	163:        XDual         Y-Short         On
+	164:  YDual XDual                 X-Short On
+	165:  YDual XDual         Y-Short         On
+	166:  YDual XDual                 X-Short On
+	167:        XDual         Y-Short         On
+	168:  YDual XDual                 X-Short On
+	169:  YDual XDual         Y-Short         On
+	170:        XDual                 X-Short On
+	171:  YDual XDual         Y-Short         On
+	172:  YDual                       X-Short On
+	173:        XDual         Y-Short         On
+	174:  YDual                       X-Short On
+	175:  YDual XDual         Y-Short         On
+	176:  YDual                       X-Short On
+	177:        XDual         Y-Short         On
+	178:  YDual                       X-Short On
+	179:  YDual XDual         Y-Short         On
+	180:  YDual                       X-Short On
+	181:        XDual         Y-Short         On
+	182:  YDual                       X-Short On
+	183:  YDual XDual         Y-Short         On
+	184:  YDual                       X-Short On
+	185:        XDual         Y-Short         On
+	186:  YDual                       X-Short On
+	187:  YDual XDual         Y-Short         On
+	188:  YDual                       X-Short On
+	189:        XDual         Y-Short         On
+	190:                      Y-Short X-Short On
+	191:        XDual         Y-Short         On
+	192:  YDual XDual                 X-Short On
+	193:  YDual XDual         Y-Short         On
+	194:  YDual XDual                 X-Short On
+	195:        XDual         Y-Short         On
+	196:  YDual XDual                 X-Short On
+	197:  YDual XDual         Y-Short         On
+	198:  YDual XDual                 X-Short On
+	199:        XDual         Y-Short         On
+	200:  YDual XDual                 X-Short On
+	201:  YDual XDual         Y-Short         On
+	202:  YDual XDual                 X-Short On
+	203:        XDual         Y-Short         On
+	204:  YDual XDual                 X-Short On
+	205:  YDual XDual         Y-Short         On
+	206:  YDual XDual                 X-Short On
+	207:        XDual         Y-Short         On
+	208:  YDual XDual                 X-Short On
+	209:  YDual XDual         Y-Short         On
+	210:        XDual                 X-Short On
+	211:  YDual XDual         Y-Short         On
+	212:  YDual                       X-Short On
+	213:        XDual         Y-Short         On
+	214:  YDual                       X-Short On
+	215:  YDual XDual         Y-Short         On
+	216:  YDual                       X-Short On
+	217:        XDual         Y-Short         On
+	218:  YDual                       X-Short On
+	219:  YDual XDual         Y-Short         On
+	220:  YDual                       X-Short On
+	221:        XDual         Y-Short         On
+	222:  YDual                       X-Short On
+	223:  YDual XDual         Y-Short         On
+	224:  YDual                       X-Short On
+	225:        XDual         Y-Short         On
+	226:  YDual                       X-Short On
+	227:  YDual XDual         Y-Short         On
+	228:  YDual                       X-Short On
+	229:        XDual         Y-Short         On
+	230:                      Y-Short X-Short On
+	231:        XDual         Y-Short         On
+	232:  YDual XDual                 X-Short On
+	233:  YDual XDual         Y-Short         On
+	234:  YDual XDual                 X-Short On
+	235:        XDual         Y-Short         On
+	236:  YDual XDual                 X-Short On
+	237:  YDual XDual         Y-Short         On
+	238:  YDual XDual                 X-Short On
+	239:        XDual         Y-Short         On
+	240:  YDual XDual                 X-Short On
+	241:  YDual XDual         Y-Short         On
+	242:  YDual XDual                 X-Short On
+	243:        XDual         Y-Short         On
+	244:  YDual XDual                 X-Short On
+	245:  YDual XDual         Y-Short         On
+	246:  YDual XDual                 X-Short On
+	247:        XDual         Y-Short         On
+	248:  YDual XDual                 X-Short On
+	249:  YDual XDual         Y-Short         On
+	250:        XDual                 X-Short On
+	251:  YDual                       X-Short On
+	252:        XDual         Y-Short         On
+	253:  YDual XDual                 X-Short On
+	254:  YDual               Y-Short X-Short On
+	255:  YDual                       X-Short On
+	256:        XDual         Y-Short         On
+	257:  YDual XDual                 X-Short On
+	258:  YDual               Y-Short X-Short On
+	259:  YDual                       X-Short On
+	260:        XDual         Y-Short         On
+	261:  YDual XDual                 X-Short On
+	262:  YDual               Y-Short X-Short On
+	263:  YDual                       X-Short On
+	264:        XDual         Y-Short         On
+	265:  YDual XDual                 X-Short On
+	266:  YDual               Y-Short X-Short On
+	267:  YDual                       X-Short On
+	268:        XDual         Y-Short         On
+	269:  YDual XDual                 X-Short On
+	270:                                      On
+	271:  YDual                       X-Short On
+	272:        XDual         Y-Short         On
+	273:  YDual XDual                 X-Short On
+	274:  YDual               Y-Short X-Short On
+	275:  YDual                       X-Short On
+	276:        XDual         Y-Short         On
+	277:  YDual XDual                 X-Short On
+	278:  YDual               Y-Short X-Short On
+	279:  YDual                       X-Short On
+	280:        XDual         Y-Short         On
+	281:  YDual XDual                 X-Short On
+	282:  YDual               Y-Short X-Short On
+	283:  YDual                       X-Short On
+	284:        XDual         Y-Short         On
+	285:  YDual XDual                 X-Short On
+	286:  YDual               Y-Short X-Short On
+	287:  YDual                       X-Short On
+	288:        XDual         Y-Short         On
+	289:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,  1513)  ->  Abs (  1229,  1513)
+	  1: Rel (  -102,     0)  ->  Abs (  1127,  1513)
+	  2: Rel (     0,   -97)  ->  Abs (  1127,  1416)
+	  3: Rel (   102,     0)  ->  Abs (  1229,  1416)
+	  4: Rel (     0,  -290)  ->  Abs (  1229,  1126)
+	  5: Rel (  -102,     0)  ->  Abs (  1127,  1126)
+	  6: Rel (     0,   -96)  ->  Abs (  1127,  1030)
+	  7: Rel (   102,     0)  ->  Abs (  1229,  1030)
+	  8: Rel (     0,  -290)  ->  Abs (  1229,   740)
+	  9: Rel (  -102,     0)  ->  Abs (  1127,   740)
+	 10: Rel (     0,   -97)  ->  Abs (  1127,   643)
+	 11: Rel (   102,     0)  ->  Abs (  1229,   643)
+	 12: Rel (     0,  -290)  ->  Abs (  1229,   353)
+	 13: Rel (  -102,     0)  ->  Abs (  1127,   353)
+	 14: Rel (     0,   -97)  ->  Abs (  1127,   256)
+	 15: Rel (   102,     0)  ->  Abs (  1229,   256)
+	 16: Rel (     0,  -290)  ->  Abs (  1229,   -34)
+	 17: Rel (  -102,     0)  ->  Abs (  1127,   -34)
+	 18: Rel (     0,   -96)  ->  Abs (  1127,  -130)
+	 19: Rel (   102,     0)  ->  Abs (  1229,  -130)
+	 20: Rel (     0,  -290)  ->  Abs (  1229,  -420)
+	 21: Rel (  -102,     0)  ->  Abs (  1127,  -420)
+	 22: Rel (     0,   -97)  ->  Abs (  1127,  -517)
+	 23: Rel (   102,     0)  ->  Abs (  1229,  -517)
+	 24: Rel (     0,   -98)  ->  Abs (  1229,  -615)
+	 25: Rel ( -1229,     0)  ->  Abs (     0,  -615)
+	 26: Rel (     0,   291)  ->  Abs (     0,  -324)
+	 27: Rel (   102,     0)  ->  Abs (   102,  -324)
+	 28: Rel (     0,    97)  ->  Abs (   102,  -227)
+	 29: Rel (  -102,     0)  ->  Abs (     0,  -227)
+	 30: Rel (     0,   290)  ->  Abs (     0,    63)
+	 31: Rel (   102,     0)  ->  Abs (   102,    63)
+	 32: Rel (     0,    97)  ->  Abs (   102,   160)
+	 33: Rel (  -102,     0)  ->  Abs (     0,   160)
+	 34: Rel (     0,   290)  ->  Abs (     0,   450)
+	 35: Rel (   102,     0)  ->  Abs (   102,   450)
+	 36: Rel (     0,    96)  ->  Abs (   102,   546)
+	 37: Rel (  -102,     0)  ->  Abs (     0,   546)
+	 38: Rel (     0,   290)  ->  Abs (     0,   836)
+	 39: Rel (   102,     0)  ->  Abs (   102,   836)
+	 40: Rel (     0,    97)  ->  Abs (   102,   933)
+	 41: Rel (  -102,     0)  ->  Abs (     0,   933)
+	 42: Rel (     0,   290)  ->  Abs (     0,  1223)
+	 43: Rel (   102,     0)  ->  Abs (   102,  1223)
+	 44: Rel (     0,    97)  ->  Abs (   102,  1320)
+	 45: Rel (  -102,     0)  ->  Abs (     0,  1320)
+	 46: Rel (     0,   290)  ->  Abs (     0,  1610)
+	 47: Rel (   102,     0)  ->  Abs (   102,  1610)
+	 48: Rel (     0,    95)  ->  Abs (   102,  1705)
+	 49: Rel (   103,     0)  ->  Abs (   205,  1705)
+	 50: Rel (     0,   -95)  ->  Abs (   205,  1610)
+	 51: Rel (   102,     0)  ->  Abs (   307,  1610)
+	 52: Rel (     0,    95)  ->  Abs (   307,  1705)
+	 53: Rel (   103,     0)  ->  Abs (   410,  1705)
+	 54: Rel (     0,   -95)  ->  Abs (   410,  1610)
+	 55: Rel (   102,     0)  ->  Abs (   512,  1610)
+	 56: Rel (     0,    95)  ->  Abs (   512,  1705)
+	 57: Rel (   103,     0)  ->  Abs (   615,  1705)
+	 58: Rel (     0,   -95)  ->  Abs (   615,  1610)
+	 59: Rel (   102,     0)  ->  Abs (   717,  1610)
+	 60: Rel (     0,    95)  ->  Abs (   717,  1705)
+	 61: Rel (   103,     0)  ->  Abs (   820,  1705)
+	 62: Rel (     0,   -95)  ->  Abs (   820,  1610)
+	 63: Rel (   102,     0)  ->  Abs (   922,  1610)
+	 64: Rel (     0,    95)  ->  Abs (   922,  1705)
+	 65: Rel (   103,     0)  ->  Abs (  1025,  1705)
+	 66: Rel (     0,   -95)  ->  Abs (  1025,  1610)
+	 67: Rel (   102,     0)  ->  Abs (  1127,  1610)
+	 68: Rel (     0,    95)  ->  Abs (  1127,  1705)
+	 69: Rel (   102,     0)  ->  Abs (  1229,  1705)
+	 70: Rel ( -1127,  -579)  ->  Abs (   102,  1126)
+	 71: Rel (     0,   -96)  ->  Abs (   102,  1030)
+	 72: Rel (   103,     0)  ->  Abs (   205,  1030)
+	 73: Rel (     0,    96)  ->  Abs (   205,  1126)
+	 74: Rel (   102,     0)  ->  Abs (   307,  1126)
+	 75: Rel (     0,   -96)  ->  Abs (   307,  1030)
+	 76: Rel (   103,     0)  ->  Abs (   410,  1030)
+	 77: Rel (     0,    96)  ->  Abs (   410,  1126)
+	 78: Rel (   102,     0)  ->  Abs (   512,  1126)
+	 79: Rel (     0,   -96)  ->  Abs (   512,  1030)
+	 80: Rel (   103,     0)  ->  Abs (   615,  1030)
+	 81: Rel (     0,    96)  ->  Abs (   615,  1126)
+	 82: Rel (   102,     0)  ->  Abs (   717,  1126)
+	 83: Rel (     0,   -96)  ->  Abs (   717,  1030)
+	 84: Rel (   103,     0)  ->  Abs (   820,  1030)
+	 85: Rel (     0,    96)  ->  Abs (   820,  1126)
+	 86: Rel (   102,     0)  ->  Abs (   922,  1126)
+	 87: Rel (     0,   -96)  ->  Abs (   922,  1030)
+	 88: Rel (   103,     0)  ->  Abs (  1025,  1030)
+	 89: Rel (     0,    96)  ->  Abs (  1025,  1126)
+	 90: Rel (   102,  -193)  ->  Abs (  1127,   933)
+	 91: Rel (  -102,     0)  ->  Abs (  1025,   933)
+	 92: Rel (     0,   -97)  ->  Abs (  1025,   836)
+	 93: Rel (   102,     0)  ->  Abs (  1127,   836)
+	 94: Rel (  -205,    97)  ->  Abs (   922,   933)
+	 95: Rel (  -102,     0)  ->  Abs (   820,   933)
+	 96: Rel (     0,   -97)  ->  Abs (   820,   836)
+	 97: Rel (   102,     0)  ->  Abs (   922,   836)
+	 98: Rel (  -205,    97)  ->  Abs (   717,   933)
+	 99: Rel (  -102,     0)  ->  Abs (   615,   933)
+	100: Rel (     0,   -97)  ->  Abs (   615,   836)
+	101: Rel (   102,     0)  ->  Abs (   717,   836)
+	102: Rel (  -205,    97)  ->  Abs (   512,   933)
+	103: Rel (  -102,     0)  ->  Abs (   410,   933)
+	104: Rel (     0,   -97)  ->  Abs (   410,   836)
+	105: Rel (   102,     0)  ->  Abs (   512,   836)
+	106: Rel (  -205,    97)  ->  Abs (   307,   933)
+	107: Rel (  -102,     0)  ->  Abs (   205,   933)
+	108: Rel (     0,   -97)  ->  Abs (   205,   836)
+	109: Rel (   102,     0)  ->  Abs (   307,   836)
+	110: Rel (  -205,   -96)  ->  Abs (   102,   740)
+	111: Rel (     0,   -97)  ->  Abs (   102,   643)
+	112: Rel (   103,     0)  ->  Abs (   205,   643)
+	113: Rel (     0,    97)  ->  Abs (   205,   740)
+	114: Rel (   102,     0)  ->  Abs (   307,   740)
+	115: Rel (     0,   -97)  ->  Abs (   307,   643)
+	116: Rel (   103,     0)  ->  Abs (   410,   643)
+	117: Rel (     0,    97)  ->  Abs (   410,   740)
+	118: Rel (   102,     0)  ->  Abs (   512,   740)
+	119: Rel (     0,   -97)  ->  Abs (   512,   643)
+	120: Rel (   103,     0)  ->  Abs (   615,   643)
+	121: Rel (     0,    97)  ->  Abs (   615,   740)
+	122: Rel (   102,     0)  ->  Abs (   717,   740)
+	123: Rel (     0,   -97)  ->  Abs (   717,   643)
+	124: Rel (   103,     0)  ->  Abs (   820,   643)
+	125: Rel (     0,    97)  ->  Abs (   820,   740)
+	126: Rel (   102,     0)  ->  Abs (   922,   740)
+	127: Rel (     0,   -97)  ->  Abs (   922,   643)
+	128: Rel (   103,     0)  ->  Abs (  1025,   643)
+	129: Rel (     0,    97)  ->  Abs (  1025,   740)
+	130: Rel (  -718,  -194)  ->  Abs (   307,   546)
+	131: Rel (  -102,     0)  ->  Abs (   205,   546)
+	132: Rel (     0,   -96)  ->  Abs (   205,   450)
+	133: Rel (   102,     0)  ->  Abs (   307,   450)
+	134: Rel (   103,    96)  ->  Abs (   410,   546)
+	135: Rel (     0,   -96)  ->  Abs (   410,   450)
+	136: Rel (   102,     0)  ->  Abs (   512,   450)
+	137: Rel (     0,    96)  ->  Abs (   512,   546)
+	138: Rel (   103,     0)  ->  Abs (   615,   546)
+	139: Rel (     0,   -96)  ->  Abs (   615,   450)
+	140: Rel (   102,     0)  ->  Abs (   717,   450)
+	141: Rel (     0,    96)  ->  Abs (   717,   546)
+	142: Rel (   103,     0)  ->  Abs (   820,   546)
+	143: Rel (     0,   -96)  ->  Abs (   820,   450)
+	144: Rel (   102,     0)  ->  Abs (   922,   450)
+	145: Rel (     0,    96)  ->  Abs (   922,   546)
+	146: Rel (   103,     0)  ->  Abs (  1025,   546)
+	147: Rel (     0,   -96)  ->  Abs (  1025,   450)
+	148: Rel (   102,     0)  ->  Abs (  1127,   450)
+	149: Rel (     0,    96)  ->  Abs (  1127,   546)
+	150: Rel ( -1025,  -193)  ->  Abs (   102,   353)
+	151: Rel (     0,   -97)  ->  Abs (   102,   256)
+	152: Rel (   103,     0)  ->  Abs (   205,   256)
+	153: Rel (     0,    97)  ->  Abs (   205,   353)
+	154: Rel (   307,     0)  ->  Abs (   512,   353)
+	155: Rel (     0,   -97)  ->  Abs (   512,   256)
+	156: Rel (   103,     0)  ->  Abs (   615,   256)
+	157: Rel (     0,    97)  ->  Abs (   615,   353)
+	158: Rel (  -205,   -97)  ->  Abs (   410,   256)
+	159: Rel (     0,    97)  ->  Abs (   410,   353)
+	160: Rel (  -103,     0)  ->  Abs (   307,   353)
+	161: Rel (     0,   -97)  ->  Abs (   307,   256)
+	162: Rel (   410,    97)  ->  Abs (   717,   353)
+	163: Rel (     0,   -97)  ->  Abs (   717,   256)
+	164: Rel (   103,     0)  ->  Abs (   820,   256)
+	165: Rel (     0,    97)  ->  Abs (   820,   353)
+	166: Rel (   102,     0)  ->  Abs (   922,   353)
+	167: Rel (     0,   -97)  ->  Abs (   922,   256)
+	168: Rel (   103,     0)  ->  Abs (  1025,   256)
+	169: Rel (     0,    97)  ->  Abs (  1025,   353)
+	170: Rel (   102,  -290)  ->  Abs (  1127,    63)
+	171: Rel (     0,    97)  ->  Abs (  1127,   160)
+	172: Rel (  -102,     0)  ->  Abs (  1025,   160)
+	173: Rel (     0,   -97)  ->  Abs (  1025,    63)
+	174: Rel (  -103,     0)  ->  Abs (   922,    63)
+	175: Rel (     0,    97)  ->  Abs (   922,   160)
+	176: Rel (  -102,     0)  ->  Abs (   820,   160)
+	177: Rel (     0,   -97)  ->  Abs (   820,    63)
+	178: Rel (  -103,     0)  ->  Abs (   717,    63)
+	179: Rel (     0,    97)  ->  Abs (   717,   160)
+	180: Rel (  -102,     0)  ->  Abs (   615,   160)
+	181: Rel (     0,   -97)  ->  Abs (   615,    63)
+	182: Rel (  -103,     0)  ->  Abs (   512,    63)
+	183: Rel (     0,    97)  ->  Abs (   512,   160)
+	184: Rel (  -102,     0)  ->  Abs (   410,   160)
+	185: Rel (     0,   -97)  ->  Abs (   410,    63)
+	186: Rel (  -103,     0)  ->  Abs (   307,    63)
+	187: Rel (     0,    97)  ->  Abs (   307,   160)
+	188: Rel (  -102,     0)  ->  Abs (   205,   160)
+	189: Rel (     0,   -97)  ->  Abs (   205,    63)
+	190: Rel (  -103,   -97)  ->  Abs (   102,   -34)
+	191: Rel (     0,   -96)  ->  Abs (   102,  -130)
+	192: Rel (   103,     0)  ->  Abs (   205,  -130)
+	193: Rel (     0,    96)  ->  Abs (   205,   -34)
+	194: Rel (   102,     0)  ->  Abs (   307,   -34)
+	195: Rel (     0,   -96)  ->  Abs (   307,  -130)
+	196: Rel (   103,     0)  ->  Abs (   410,  -130)
+	197: Rel (     0,    96)  ->  Abs (   410,   -34)
+	198: Rel (   102,     0)  ->  Abs (   512,   -34)
+	199: Rel (     0,   -96)  ->  Abs (   512,  -130)
+	200: Rel (   103,     0)  ->  Abs (   615,  -130)
+	201: Rel (     0,    96)  ->  Abs (   615,   -34)
+	202: Rel (   102,     0)  ->  Abs (   717,   -34)
+	203: Rel (     0,   -96)  ->  Abs (   717,  -130)
+	204: Rel (   103,     0)  ->  Abs (   820,  -130)
+	205: Rel (     0,    96)  ->  Abs (   820,   -34)
+	206: Rel (   102,     0)  ->  Abs (   922,   -34)
+	207: Rel (     0,   -96)  ->  Abs (   922,  -130)
+	208: Rel (   103,     0)  ->  Abs (  1025,  -130)
+	209: Rel (     0,    96)  ->  Abs (  1025,   -34)
+	210: Rel (   102,  -290)  ->  Abs (  1127,  -324)
+	211: Rel (     0,    97)  ->  Abs (  1127,  -227)
+	212: Rel (  -102,     0)  ->  Abs (  1025,  -227)
+	213: Rel (     0,   -97)  ->  Abs (  1025,  -324)
+	214: Rel (  -103,     0)  ->  Abs (   922,  -324)
+	215: Rel (     0,    97)  ->  Abs (   922,  -227)
+	216: Rel (  -102,     0)  ->  Abs (   820,  -227)
+	217: Rel (     0,   -97)  ->  Abs (   820,  -324)
+	218: Rel (  -103,     0)  ->  Abs (   717,  -324)
+	219: Rel (     0,    97)  ->  Abs (   717,  -227)
+	220: Rel (  -102,     0)  ->  Abs (   615,  -227)
+	221: Rel (     0,   -97)  ->  Abs (   615,  -324)
+	222: Rel (  -103,     0)  ->  Abs (   512,  -324)
+	223: Rel (     0,    97)  ->  Abs (   512,  -227)
+	224: Rel (  -102,     0)  ->  Abs (   410,  -227)
+	225: Rel (     0,   -97)  ->  Abs (   410,  -324)
+	226: Rel (  -103,     0)  ->  Abs (   307,  -324)
+	227: Rel (     0,    97)  ->  Abs (   307,  -227)
+	228: Rel (  -102,     0)  ->  Abs (   205,  -227)
+	229: Rel (     0,   -97)  ->  Abs (   205,  -324)
+	230: Rel (  -103,   -96)  ->  Abs (   102,  -420)
+	231: Rel (     0,   -97)  ->  Abs (   102,  -517)
+	232: Rel (   103,     0)  ->  Abs (   205,  -517)
+	233: Rel (     0,    97)  ->  Abs (   205,  -420)
+	234: Rel (   102,     0)  ->  Abs (   307,  -420)
+	235: Rel (     0,   -97)  ->  Abs (   307,  -517)
+	236: Rel (   103,     0)  ->  Abs (   410,  -517)
+	237: Rel (     0,    97)  ->  Abs (   410,  -420)
+	238: Rel (   102,     0)  ->  Abs (   512,  -420)
+	239: Rel (     0,   -97)  ->  Abs (   512,  -517)
+	240: Rel (   103,     0)  ->  Abs (   615,  -517)
+	241: Rel (     0,    97)  ->  Abs (   615,  -420)
+	242: Rel (   102,     0)  ->  Abs (   717,  -420)
+	243: Rel (     0,   -97)  ->  Abs (   717,  -517)
+	244: Rel (   103,     0)  ->  Abs (   820,  -517)
+	245: Rel (     0,    97)  ->  Abs (   820,  -420)
+	246: Rel (   102,     0)  ->  Abs (   922,  -420)
+	247: Rel (     0,   -97)  ->  Abs (   922,  -517)
+	248: Rel (   103,     0)  ->  Abs (  1025,  -517)
+	249: Rel (     0,    97)  ->  Abs (  1025,  -420)
+	250: Rel (   102,  1740)  ->  Abs (  1127,  1320)
+	251: Rel (  -102,     0)  ->  Abs (  1025,  1320)
+	252: Rel (     0,   -97)  ->  Abs (  1025,  1223)
+	253: Rel (   102,     0)  ->  Abs (  1127,  1223)
+	254: Rel (  -205,    97)  ->  Abs (   922,  1320)
+	255: Rel (  -102,     0)  ->  Abs (   820,  1320)
+	256: Rel (     0,   -97)  ->  Abs (   820,  1223)
+	257: Rel (   102,     0)  ->  Abs (   922,  1223)
+	258: Rel (  -205,    97)  ->  Abs (   717,  1320)
+	259: Rel (  -102,     0)  ->  Abs (   615,  1320)
+	260: Rel (     0,   -97)  ->  Abs (   615,  1223)
+	261: Rel (   102,     0)  ->  Abs (   717,  1223)
+	262: Rel (  -205,    97)  ->  Abs (   512,  1320)
+	263: Rel (  -102,     0)  ->  Abs (   410,  1320)
+	264: Rel (     0,   -97)  ->  Abs (   410,  1223)
+	265: Rel (   102,     0)  ->  Abs (   512,  1223)
+	266: Rel (  -205,    97)  ->  Abs (   307,  1320)
+	267: Rel (  -102,     0)  ->  Abs (   205,  1320)
+	268: Rel (     0,   -97)  ->  Abs (   205,  1223)
+	269: Rel (   102,     0)  ->  Abs (   307,  1223)
+	270: Rel (   718,   290)  ->  Abs (  1025,  1513)
+	271: Rel (  -103,     0)  ->  Abs (   922,  1513)
+	272: Rel (     0,   -97)  ->  Abs (   922,  1416)
+	273: Rel (   103,     0)  ->  Abs (  1025,  1416)
+	274: Rel (  -205,    97)  ->  Abs (   820,  1513)
+	275: Rel (  -103,     0)  ->  Abs (   717,  1513)
+	276: Rel (     0,   -97)  ->  Abs (   717,  1416)
+	277: Rel (   103,     0)  ->  Abs (   820,  1416)
+	278: Rel (  -205,    97)  ->  Abs (   615,  1513)
+	279: Rel (  -103,     0)  ->  Abs (   512,  1513)
+	280: Rel (     0,   -97)  ->  Abs (   512,  1416)
+	281: Rel (   103,     0)  ->  Abs (   615,  1416)
+	282: Rel (  -205,    97)  ->  Abs (   410,  1513)
+	283: Rel (  -103,     0)  ->  Abs (   307,  1513)
+	284: Rel (     0,   -97)  ->  Abs (   307,  1416)
+	285: Rel (   103,     0)  ->  Abs (   410,  1416)
+	286: Rel (  -205,    97)  ->  Abs (   205,  1513)
+	287: Rel (  -103,     0)  ->  Abs (   102,  1513)
+	288: Rel (     0,   -97)  ->  Abs (   102,  1416)
+	289: Rel (   103,     0)  ->  Abs (   205,  1416)
+
+	Glyph 374: off = 0x000154DE, len = 42
+	  numberOfContours:	1
+	  xMin:			2
+	  yMin:			0
+	  xMax:			1227
+	  yMax:			1225
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	14
+	00000: PUSHB[6]              1     0     3     8     1     0 
+	00007: MDAP[rd]   
+	00008: MDAP[rd]   
+	00009: SVTCA[y-axis] 
+	00010: MIAP[rd+ci] 
+	00011: MIAP[rd+ci] 
+	00012: IUP[y]     
+	00013: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (     2,  1225)  ->  Abs (     2,  1225)
+	  1: Rel (  1225,     0)  ->  Abs (  1227,  1225)
+	  2: Rel (     0, -1225)  ->  Abs (  1227,     0)
+	  3: Rel ( -1225,     0)  ->  Abs (     2,     0)
+
+	Glyph 375: off = 0x00015508, len = 56
+	  numberOfContours:	1
+	  xMin:			2
+	  yMin:			395
+	  xMax:			1227
+	  yMax:			626
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	29
+	00000: PUSHW[2]              0   488 
+	00005: NPUSHB      (10):     3     1    26     5     0    25     4    75    68    24 
+	00017: CALL       
+	00018: FLIPOFF    
+	00019: SRP0       
+	00020: MIRP[nrp0,nmd,rd,0] 
+	00021: SRP0       
+	00022: MIRP[nrp0,nmd,rd,2] 
+	00023: SVTCA[y-axis] 
+	00024: MDAP[rd]   
+	00025: FLIPON     
+	00026: MIRP[nrp0,md,rd,1] 
+	00027: IUP[y]     
+	00028: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short         On
+	  3:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (     2,   626)  ->  Abs (     2,   626)
+	  1: Rel (  1225,     0)  ->  Abs (  1227,   626)
+	  2: Rel (     0,  -231)  ->  Abs (  1227,   395)
+	  3: Rel ( -1225,     0)  ->  Abs (     2,   395)
+
+	Glyph 376: off = 0x00015540, len = 68
+	  numberOfContours:	1
+	  xMin:			15
+	  yMin:			0
+	  xMax:			1213
+	  yMax:			1198
+
+	EndPoints
+	---------
+	  0:  2
+
+	  Length of Instructions:	41
+	00000: NPUSHB      (13):   228     1     1    40     1    99     1     2     1     1 
+	                             0    10     2 
+	00015: PUSHW[1]            332 
+	00018: PUSHB[6]              0    25     3    76    68    24 
+	00025: CALL       
+	00026: FLIPOFF    
+	00027: SRP0       
+	00028: MIRP[srp0,nmd,rd,0] 
+	00029: FLIPON     
+	00030: MIRP[nrp0,md,rd,1] 
+	00031: SVTCA[y-axis] 
+	00032: MIAP[rd+ci] 
+	00033: SHP[rp1,zp0] 
+	00034: SVTCA[x-axis] 
+	00035: IP         
+	00036: IUP[y]     
+	00037: IUP[x]     
+	00038: SVTCA[y-axis] 
+	00039: DELTAP1    
+	00040: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:                                      On
+	  2:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (    15,     0)  ->  Abs (    15,     0)
+	  1: Rel (   599,  1198)  ->  Abs (   614,  1198)
+	  2: Rel (   599, -1198)  ->  Abs (  1213,     0)
+
+	Glyph 377: off = 0x00015584, len = 60
+	  numberOfContours:	1
+	  xMin:			2
+	  yMin:			-26
+	  xMax:			1227
+	  yMax:			1196
+
+	EndPoints
+	---------
+	  0:  2
+
+	  Length of Instructions:	32
+	00000: PUSHB[2]              1     0 
+	00003: PUSHW[1]            259 
+	00006: NPUSHB      (11):     2    11     1    26     4     0    25     3    75    68 
+	                            24 
+	00019: CALL       
+	00020: FLIPOFF    
+	00021: SRP0       
+	00022: MIRP[nrp0,nmd,rd,0] 
+	00023: SRP0       
+	00024: MIRP[nrp0,nmd,rd,2] 
+	00025: SVTCA[y-axis] 
+	00026: MIAP[rd+ci] 
+	00027: FLIPON     
+	00028: MIRP[nrp0,md,rd,1] 
+	00029: IP         
+	00030: IUP[y]     
+	00031: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:                                      On
+	  2:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (     2,  1196)  ->  Abs (     2,  1196)
+	  1: Rel (  1225,  -611)  ->  Abs (  1227,   585)
+	  2: Rel ( -1225,  -611)  ->  Abs (     2,   -26)
+
+	Glyph 378: off = 0x000155C0, len = 78
+	  numberOfContours:	1
+	  xMin:			15
+	  yMin:			-26
+	  xMax:			1213
+	  yMax:			1172
+
+	EndPoints
+	---------
+	  0:  2
+
+	  Length of Instructions:	49
+	00000: NPUSHB      (20):    38     1   106     1   195     1     3   164     1   234 
+	                             1     2     1     1     0     2     1     2     2     0 
+	00022: PUSHW[1]            332 
+	00025: PUSHB[6]              2    25     3    76    68    24 
+	00032: CALL       
+	00033: FLIPOFF    
+	00034: SRP0       
+	00035: MIRP[srp0,nmd,rd,0] 
+	00036: FLIPON     
+	00037: MIRP[nrp0,md,rd,1] 
+	00038: SVTCA[y-axis] 
+	00039: MIAP[rd+ci] 
+	00040: DELTAP1    
+	00041: SHP[rp1,zp0] 
+	00042: SVTCA[x-axis] 
+	00043: IP         
+	00044: IUP[y]     
+	00045: IUP[x]     
+	00046: SVTCA[y-axis] 
+	00047: DELTAP2    
+	00048: DELTAP1    
+
+	Flags
+	-----
+	  0:              Rep-  2                 On
+
+	Coordinates
+	-----------
+	  0: Rel (  1213,  1172)  ->  Abs (  1213,  1172)
+	  1: Rel (  -599, -1198)  ->  Abs (   614,   -26)
+	  2: Rel (  -599,  1198)  ->  Abs (    15,  1172)
+
+	Glyph 379: off = 0x0001560E, len = 60
+	  numberOfContours:	1
+	  xMin:			2
+	  yMin:			-26
+	  xMax:			1227
+	  yMax:			1196
+
+	EndPoints
+	---------
+	  0:  2
+
+	  Length of Instructions:	32
+	00000: PUSHB[2]              2     0 
+	00003: PUSHW[1]            259 
+	00006: NPUSHB      (11):     1    11     0    26     4     2    25     3    75    68 
+	                            24 
+	00019: CALL       
+	00020: FLIPOFF    
+	00021: SRP0       
+	00022: MIRP[nrp0,nmd,rd,0] 
+	00023: SRP0       
+	00024: MIRP[nrp0,nmd,rd,2] 
+	00025: SVTCA[y-axis] 
+	00026: MIAP[rd+ci] 
+	00027: FLIPON     
+	00028: MIRP[nrp0,md,rd,1] 
+	00029: IP         
+	00030: IUP[y]     
+	00031: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (  1227,  1196)  ->  Abs (  1227,  1196)
+	  1: Rel (     0, -1222)  ->  Abs (  1227,   -26)
+	  2: Rel ( -1225,   611)  ->  Abs (     2,   585)
+
+	Glyph 380: off = 0x0001564A, len = 218
+	  numberOfContours:	2
+	  xMin:			174
+	  yMin:			137
+	  xMax:			1055
+	  yMax:			1018
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  27
+
+	  Length of Instructions:	125
+	00000: NPUSHB      (17):   125     5   125     9   139     5   139     9     4    67 
+	                             8    21    44     7    14    44     0 
+	00019: PUSHW[1]            442 
+	00022: PUSHB[4]              7    24    44     4 
+	00027: PUSHW[1]            442 
+	00030: PUSHB[8]             18    44    10    25    28    99   171    24 
+	00039: CALL       
+	00040: FLIPOFF    
+	00041: SRP0       
+	00042: MIRP[srp0,nmd,rd,0] 
+	00043: FLIPON     
+	00044: MIRP[nrp0,md,rd,1] 
+	00045: MIRP[srp0,md,rd,1] 
+	00046: MIRP[nrp0,md,rd,1] 
+	00047: SVTCA[y-axis] 
+	00048: MDAP[rd]   
+	00049: MIRP[srp0,md,rd,1] 
+	00050: MIRP[nrp0,md,rd,1] 
+	00051: SRP0       
+	00052: MIRP[nrp0,md,rd,1] 
+	00053: IUP[y]     
+	00054: IUP[x]     
+	00055: RS         
+	00056: JROF       
+	00057: NPUSHB      (50):     1    27    16    37    12    38     2    37    26    38 
+	                            15    13    18    95     0    27     1    24    95     1 
+	                            20     8    18    95     0    22     6    24    95     1 
+	                            17    11    14    95     1    25     3    14    95     1 
+	                            19     9    21    95     0    23     5    21    95     0 
+	00109: CALL       
+	00110: CALL       
+	00111: CALL       
+	00112: CALL       
+	00113: SVTCA[x-axis] 
+	00114: CALL       
+	00115: CALL       
+	00116: CALL       
+	00117: CALL       
+	00118: CALL       
+	00119: CALL       
+	00120: CALL       
+	00121: CALL       
+	00122: FLIPRGON   
+	00123: SVTCA[y-axis] 
+	00124: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                                      Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                                      Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:  YDual                       X-Short Off
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   615,  1018)  ->  Abs (   615,  1018)
+	  1: Rel (   110,     0)  ->  Abs (   725,  1018)
+	  2: Rel (   212,  -114)  ->  Abs (   937,   904)
+	  3: Rel (   118,  -212)  ->  Abs (  1055,   692)
+	  4: Rel (     0,  -114)  ->  Abs (  1055,   578)
+	  5: Rel (     0,  -183)  ->  Abs (  1055,   395)
+	  6: Rel (  -258,  -258)  ->  Abs (   797,   137)
+	  7: Rel (  -182,     0)  ->  Abs (   615,   137)
+	  8: Rel (  -183,     0)  ->  Abs (   432,   137)
+	  9: Rel (  -258,   258)  ->  Abs (   174,   395)
+	 10: Rel (     0,   183)  ->  Abs (   174,   578)
+	 11: Rel (     0,   115)  ->  Abs (   174,   693)
+	 12: Rel (   118,   211)  ->  Abs (   292,   904)
+	 13: Rel (   212,   114)  ->  Abs (   504,  1018)
+	 14: Rel (   111,   -76)  ->  Abs (   615,   942)
+	 15: Rel (   -93,     0)  ->  Abs (   522,   942)
+	 16: Rel (  -174,   -94)  ->  Abs (   348,   848)
+	 17: Rel (   -98,  -176)  ->  Abs (   250,   672)
+	 18: Rel (     0,   -94)  ->  Abs (   250,   578)
+	 19: Rel (     0,  -151)  ->  Abs (   250,   427)
+	 20: Rel (   214,  -214)  ->  Abs (   464,   213)
+	 21: Rel (   151,     0)  ->  Abs (   615,   213)
+	 22: Rel (   151,     0)  ->  Abs (   766,   213)
+	 23: Rel (   213,   214)  ->  Abs (   979,   427)
+	 24: Rel (     0,   151)  ->  Abs (   979,   578)
+	 25: Rel (     0,    94)  ->  Abs (   979,   672)
+	 26: Rel (   -98,   176)  ->  Abs (   881,   848)
+	 27: Rel (  -174,    94)  ->  Abs (   707,   942)
+
+	Glyph 381: off = 0x00015724, len = 110
+	  numberOfContours:	2
+	  xMin:			124
+	  yMin:			0
+	  xMax:			1104
+	  yMax:			980
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  15
+
+	  Length of Instructions:	52
+	00000: PUSHB[6]            119    15     1     2   118     4 
+	00007: PUSHW[1]            434 
+	00010: NPUSHB      (15):    10   118     0    10    13   118     2    26    17     7 
+	                           118     0    25    16   134 
+	00027: PUSHW[2]            288    24 
+	00032: CALL       
+	00033: FLIPOFF    
+	00034: SRP0       
+	00035: MIRP[srp0,nmd,rd,0] 
+	00036: FLIPON     
+	00037: MIRP[nrp0,md,rd,1] 
+	00038: FLIPOFF    
+	00039: SRP0       
+	00040: MIRP[srp0,nmd,rd,2] 
+	00041: FLIPON     
+	00042: MIRP[nrp0,md,rd,1] 
+	00043: SVTCA[y-axis] 
+	00044: MIAP[rd+ci] 
+	00045: MIRP[nrp0,md,rd,1] 
+	00046: MIRP[srp0,nmd,rd,0] 
+	00047: MIRP[nrp0,md,rd,1] 
+	00048: IUP[y]     
+	00049: IUP[x]     
+	00050: SVTCA[x-axis] 
+	00051: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:                                      On
+	  5:  YDual                       X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   124,     0)  ->  Abs (   124,     0)
+	  1: Rel (     0,   980)  ->  Abs (   124,   980)
+	  2: Rel (   980,     0)  ->  Abs (  1104,   980)
+	  3: Rel (     0,  -980)  ->  Abs (  1104,     0)
+	  4: Rel (  -490,   692)  ->  Abs (   614,   692)
+	  5: Rel (   -84,     0)  ->  Abs (   530,   692)
+	  6: Rel (  -118,  -118)  ->  Abs (   412,   574)
+	  7: Rel (     0,   -84)  ->  Abs (   412,   490)
+	  8: Rel (     0,   -83)  ->  Abs (   412,   407)
+	  9: Rel (   119,  -119)  ->  Abs (   531,   288)
+	 10: Rel (    83,     0)  ->  Abs (   614,   288)
+	 11: Rel (    84,     0)  ->  Abs (   698,   288)
+	 12: Rel (   118,   119)  ->  Abs (   816,   407)
+	 13: Rel (     0,    83)  ->  Abs (   816,   490)
+	 14: Rel (     0,    84)  ->  Abs (   816,   574)
+	 15: Rel (  -118,   118)  ->  Abs (   698,   692)
+
+	Glyph 382: off = 0x00015792, len = 230
+	  numberOfContours:	3
+	  xMin:			38
+	  yMin:			0
+	  xMax:			1193
+	  yMax:			1155
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  17
+	  2:  31
+
+	  Length of Instructions:	125
+	00000: NPUSHB      (20):   197     6     1   121    12   140    10   140    12     3 
+	                             9    29    41    29   121    10     3     2   193    18 
+	00022: PUSHW[1]            -64 
+	00025: PUSHB[4]             25    40    52    18 
+	00030: PUSHW[3]            272     4   543 
+	00037: PUSHB[6]             25    64    25    40    52    25 
+	00044: PUSHW[1]            272 
+	00047: PUSHB[7]             11   193     0    10     3   193    22 
+	00055: PUSHW[1]            -64 
+	00058: PUSHB[4]             25    40    52    22 
+	00063: PUSHW[1]            774 
+	00066: PUSHB[4]              0    14     1    14 
+	00071: PUSHW[1]            543 
+	00074: PUSHB[6]             28    64    25    40    52    28 
+	00081: PUSHW[1]            774 
+	00084: PUSHB[6]              8   193     0    25    32   205 
+	00091: PUSHW[2]            341    24 
+	00096: CALL       
+	00097: FLIPOFF    
+	00098: SRP0       
+	00099: MIRP[srp0,nmd,rd,0] 
+	00100: FLIPON     
+	00101: MIRP[srp0,md,rd,1] 
+	00102: MIRP[nrp0,md,rd,2] 
+	00103: CALL       
+	00104: MIRP[srp0,md,rd,2] 
+	00105: DELTAP1    
+	00106: MIRP[nrp0,md,rd,2] 
+	00107: CALL       
+	00108: MIRP[nrp0,md,rd,1] 
+	00109: SVTCA[y-axis] 
+	00110: MIAP[rd+ci] 
+	00111: MIRP[srp0,md,rd,1] 
+	00112: MIRP[nrp0,md,rd,2] 
+	00113: CALL       
+	00114: MIRP[srp0,md,rd,2] 
+	00115: MIRP[nrp0,md,rd,2] 
+	00116: CALL       
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: IUP[y]     
+	00119: IUP[x]     
+	00120: SVTCA[y-axis] 
+	00121: DELTAP2    
+	00122: DELTAP2    
+	00123: SVTCA[x-axis] 
+	00124: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:                                      On
+	  5:  YDual                       X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                                      Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:                                      Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    38,     0)  ->  Abs (    38,     0)
+	  1: Rel (     0,  1155)  ->  Abs (    38,  1155)
+	  2: Rel (  1155,     0)  ->  Abs (  1193,  1155)
+	  3: Rel (     0, -1155)  ->  Abs (  1193,     0)
+	  4: Rel (  -578,  1018)  ->  Abs (   615,  1018)
+	  5: Rel (  -111,     0)  ->  Abs (   504,  1018)
+	  6: Rel (  -211,  -114)  ->  Abs (   293,   904)
+	  7: Rel (  -118,  -212)  ->  Abs (   175,   692)
+	  8: Rel (     0,  -115)  ->  Abs (   175,   577)
+	  9: Rel (     0,  -182)  ->  Abs (   175,   395)
+	 10: Rel (   258,  -258)  ->  Abs (   433,   137)
+	 11: Rel (   182,     0)  ->  Abs (   615,   137)
+	 12: Rel (   183,     0)  ->  Abs (   798,   137)
+	 13: Rel (   258,   258)  ->  Abs (  1056,   395)
+	 14: Rel (     0,   182)  ->  Abs (  1056,   577)
+	 15: Rel (     0,   115)  ->  Abs (  1056,   692)
+	 16: Rel (  -118,   212)  ->  Abs (   938,   904)
+	 17: Rel (  -211,   114)  ->  Abs (   727,  1018)
+	 18: Rel (  -111,   -76)  ->  Abs (   616,   942)
+	 19: Rel (    91,     0)  ->  Abs (   707,   942)
+	 20: Rel (   175,   -94)  ->  Abs (   882,   848)
+	 21: Rel (    98,  -175)  ->  Abs (   980,   673)
+	 22: Rel (     0,   -96)  ->  Abs (   980,   577)
+	 23: Rel (     0,  -151)  ->  Abs (   980,   426)
+	 24: Rel (  -213,  -213)  ->  Abs (   767,   213)
+	 25: Rel (  -151,     0)  ->  Abs (   616,   213)
+	 26: Rel (  -152,     0)  ->  Abs (   464,   213)
+	 27: Rel (  -213,   213)  ->  Abs (   251,   426)
+	 28: Rel (     0,   151)  ->  Abs (   251,   577)
+	 29: Rel (     0,    96)  ->  Abs (   251,   673)
+	 30: Rel (    98,   175)  ->  Abs (   349,   848)
+	 31: Rel (   175,    94)  ->  Abs (   524,   942)
+
+	Glyph 383: off = 0x00015878, len = 348
+	  numberOfContours:	5
+	  xMin:			3
+	  yMin:			-27
+	  xMax:			1226
+	  yMax:			1196
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+	  2:  35
+	  3:  47
+	  4:  58
+
+	  Length of Instructions:	157
+	00000: NPUSHB      (36):    26    48    27    54     2    28    13    27    17    18 
+	                            19    18    23     4    49    48    53    54    48    49 
+	                            24    30    53    54    36    42    54    53    49    48 
+	                             4    39    51    15    44     9 
+	00038: PUSHW[5]            259    27   669    39   669 
+	00049: NPUSHB       (9):     3    51    44    56   160    21    44     3    36 
+	00060: PUSHW[1]            399 
+	00063: PUSHB[6]             15    42    95    42     2    42 
+	00070: PUSHW[1]            415 
+	00073: NPUSHB      (15):    12    44     0   110     6    30   112     0    24    16 
+	                            24    80    24     3    24 
+	00090: PUSHW[1]            415 
+	00093: NPUSHB      (10):    18    44     6    25    59     3    11    75    68    24 
+	00105: CALL       
+	00106: SVTCA[y-axis] 
+	00107: MIAP[rd+ci] 
+	00108: SVTCA[x-axis] 
+	00109: FLIPOFF    
+	00110: SRP0       
+	00111: MIRP[srp0,nmd,rd,0] 
+	00112: FLIPON     
+	00113: MIRP[srp0,md,rd,1] 
+	00114: MIRP[srp0,nmd,rd,0] 
+	00115: DELTAP1    
+	00116: MIRP[nrp0,md,rd,1] 
+	00117: SRP0       
+	00118: MIRP[srp0,md,rd,1] 
+	00119: MIRP[srp0,md,rd,1] 
+	00120: MIRP[srp0,nmd,rd,0] 
+	00121: DELTAP1    
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: SVTCA[y-axis] 
+	00124: FLIPON     
+	00125: SRP0       
+	00126: MIRP[nrp0,md,rd,1] 
+	00127: MIRP[srp0,nmd,rd,0] 
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: SRP0       
+	00130: MIRP[nrp0,nmd,rd,0] 
+	00131: MIRP[nrp0,nmd,rd,0] 
+	00132: MIRP[srp0,md,rd,1] 
+	00133: MIRP[nrp0,md,rd,1] 
+	00134: SRP1       
+	00135: SRP2       
+	00136: SLOOP      
+	00137: IP         
+	00138: SVTCA[x-axis] 
+	00139: SRP1       
+	00140: SRP2       
+	00141: IP         
+	00142: IP         
+	00143: SRP1       
+	00144: SRP2       
+	00145: IP         
+	00146: IP         
+	00147: SRP0       
+	00148: MDRP[nrp0,md,nrd,1] 
+	00149: SRP0       
+	00150: MDRP[nrp0,md,nrd,1] 
+	00151: IUP[y]     
+	00152: IUP[x]     
+	00153: SVTCA[y-axis] 
+	00154: DELTAP1    
+	00155: SVTCA[x-axis] 
+	00156: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                                      Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:                                      Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:                                      Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:                                      Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual XDual         Y-Short         Off
+	 14:                                      Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                                      Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                                      Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:                                      Off
+	 24:                                      On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:                      Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:        XDual         Y-Short X-Short Off
+	 48:                                      On
+	 49:  YDual XDual         Y-Short X-Short On
+	 50:        XDual         Y-Short X-Short Off
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:        XDual         Y-Short X-Short On
+	 55:                      Y-Short X-Short Off
+	 56:  YDual                       X-Short On
+	 57:  YDual                       X-Short Off
+	 58:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1226,   584)  ->  Abs (  1226,   584)
+	  1: Rel (     0,  -253)  ->  Abs (  1226,   331)
+	  2: Rel (  -358,  -358)  ->  Abs (   868,   -27)
+	  3: Rel (  -254,     0)  ->  Abs (   614,   -27)
+	  4: Rel (  -253,     0)  ->  Abs (   361,   -27)
+	  5: Rel (  -358,   358)  ->  Abs (     3,   331)
+	  6: Rel (     0,   253)  ->  Abs (     3,   584)
+	  7: Rel (     0,   254)  ->  Abs (     3,   838)
+	  8: Rel (   358,   358)  ->  Abs (   361,  1196)
+	  9: Rel (   253,     0)  ->  Abs (   614,  1196)
+	 10: Rel (   254,     0)  ->  Abs (   868,  1196)
+	 11: Rel (   358,  -358)  ->  Abs (  1226,   838)
+	 12: Rel (   -89,  -254)  ->  Abs (  1137,   584)
+	 13: Rel (     0,   217)  ->  Abs (  1137,   801)
+	 14: Rel (  -306,   306)  ->  Abs (   831,  1107)
+	 15: Rel (  -217,     0)  ->  Abs (   614,  1107)
+	 16: Rel (  -216,     0)  ->  Abs (   398,  1107)
+	 17: Rel (  -306,  -306)  ->  Abs (    92,   801)
+	 18: Rel (     0,  -217)  ->  Abs (    92,   584)
+	 19: Rel (     0,  -216)  ->  Abs (    92,   368)
+	 20: Rel (   306,  -306)  ->  Abs (   398,    62)
+	 21: Rel (   216,     0)  ->  Abs (   614,    62)
+	 22: Rel (   217,     0)  ->  Abs (   831,    62)
+	 23: Rel (   306,   306)  ->  Abs (  1137,   368)
+	 24: Rel (  -679,   343)  ->  Abs (   458,   711)
+	 25: Rel (     0,   -32)  ->  Abs (   458,   679)
+	 26: Rel (   -46,   -46)  ->  Abs (   412,   633)
+	 27: Rel (   -32,     0)  ->  Abs (   380,   633)
+	 28: Rel (   -32,     0)  ->  Abs (   348,   633)
+	 29: Rel (   -45,    46)  ->  Abs (   303,   679)
+	 30: Rel (     0,    32)  ->  Abs (   303,   711)
+	 31: Rel (     0,    32)  ->  Abs (   303,   743)
+	 32: Rel (    45,    45)  ->  Abs (   348,   788)
+	 33: Rel (    32,     0)  ->  Abs (   380,   788)
+	 34: Rel (    32,     0)  ->  Abs (   412,   788)
+	 35: Rel (    46,   -45)  ->  Abs (   458,   743)
+	 36: Rel (   468,   -32)  ->  Abs (   926,   711)
+	 37: Rel (     0,   -32)  ->  Abs (   926,   679)
+	 38: Rel (   -45,   -46)  ->  Abs (   881,   633)
+	 39: Rel (   -32,     0)  ->  Abs (   849,   633)
+	 40: Rel (   -32,     0)  ->  Abs (   817,   633)
+	 41: Rel (   -46,    46)  ->  Abs (   771,   679)
+	 42: Rel (     0,    32)  ->  Abs (   771,   711)
+	 43: Rel (     0,    32)  ->  Abs (   771,   743)
+	 44: Rel (    46,    45)  ->  Abs (   817,   788)
+	 45: Rel (    32,     0)  ->  Abs (   849,   788)
+	 46: Rel (    32,     0)  ->  Abs (   881,   788)
+	 47: Rel (    45,   -45)  ->  Abs (   926,   743)
+	 48: Rel (  -594,  -356)  ->  Abs (   332,   387)
+	 49: Rel (    60,    35)  ->  Abs (   392,   422)
+	 50: Rel (    76,  -138)  ->  Abs (   468,   284)
+	 51: Rel (   146,     0)  ->  Abs (   614,   284)
+	 52: Rel (   146,     0)  ->  Abs (   760,   284)
+	 53: Rel (    76,   138)  ->  Abs (   836,   422)
+	 54: Rel (    60,   -35)  ->  Abs (   896,   387)
+	 55: Rel (   -98,  -187)  ->  Abs (   798,   200)
+	 56: Rel (  -184,     0)  ->  Abs (   614,   200)
+	 57: Rel (   -93,     0)  ->  Abs (   521,   200)
+	 58: Rel (  -141,    96)  ->  Abs (   380,   296)
+
+	Glyph 384: off = 0x000159D4, len = 258
+	  numberOfContours:	4
+	  xMin:			3
+	  yMin:			-27
+	  xMax:			1226
+	  yMax:			1196
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+	  2:  35
+	  3:  47
+
+	  Length of Instructions:	105
+	00000: NPUSHB      (16):    36    47    12    18    42    43    24    30    47    43 
+	                            42    36     4    21    45     9 
+	00018: PUSHW[5]            259    21   433    33   433 
+	00029: PUSHB[7]              3    45    64    25    38    52    45 
+	00037: PUSHW[3]            272    39   275 
+	00044: NPUSHB      (20):     3    24   232    30   167     0   110     6    18   232 
+	                            12   167     6    25    48     3    11    75    68    24 
+	00066: CALL       
+	00067: SVTCA[y-axis] 
+	00068: MIAP[rd+ci] 
+	00069: SVTCA[x-axis] 
+	00070: FLIPOFF    
+	00071: SRP0       
+	00072: MIRP[srp0,nmd,rd,0] 
+	00073: FLIPON     
+	00074: MIRP[srp0,nmd,rd,0] 
+	00075: MIRP[nrp0,nmd,rd,2] 
+	00076: SRP0       
+	00077: MIRP[srp0,md,rd,1] 
+	00078: MIRP[srp0,nmd,rd,0] 
+	00079: MIRP[nrp0,nmd,rd,2] 
+	00080: SVTCA[y-axis] 
+	00081: FLIPON     
+	00082: SRP0       
+	00083: MIRP[srp0,md,rd,1] 
+	00084: MIRP[nrp0,md,rd,2] 
+	00085: CALL       
+	00086: SRP0       
+	00087: MIRP[nrp0,md,rd,1] 
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: MIRP[nrp0,md,rd,1] 
+	00090: SRP1       
+	00091: SRP2       
+	00092: SLOOP      
+	00093: IP         
+	00094: SVTCA[x-axis] 
+	00095: SRP1       
+	00096: SRP2       
+	00097: IP         
+	00098: IP         
+	00099: SRP1       
+	00100: SRP2       
+	00101: IP         
+	00102: IP         
+	00103: IUP[y]     
+	00104: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                                      Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:                                      Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:                                      Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:                                      Off
+	 12:                      Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual               Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:                      Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:        XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:                                      On
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short X-Short Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:  YDual               Y-Short X-Short On
+	 44:                      Y-Short X-Short Off
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short Off
+	 47:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1226,   584)  ->  Abs (  1226,   584)
+	  1: Rel (     0,  -253)  ->  Abs (  1226,   331)
+	  2: Rel (  -358,  -358)  ->  Abs (   868,   -27)
+	  3: Rel (  -254,     0)  ->  Abs (   614,   -27)
+	  4: Rel (  -253,     0)  ->  Abs (   361,   -27)
+	  5: Rel (  -358,   358)  ->  Abs (     3,   331)
+	  6: Rel (     0,   253)  ->  Abs (     3,   584)
+	  7: Rel (     0,   254)  ->  Abs (     3,   838)
+	  8: Rel (   358,   358)  ->  Abs (   361,  1196)
+	  9: Rel (   253,     0)  ->  Abs (   614,  1196)
+	 10: Rel (   254,     0)  ->  Abs (   868,  1196)
+	 11: Rel (   358,  -358)  ->  Abs (  1226,   838)
+	 12: Rel (  -768,  -127)  ->  Abs (   458,   711)
+	 13: Rel (     0,    32)  ->  Abs (   458,   743)
+	 14: Rel (   -46,    45)  ->  Abs (   412,   788)
+	 15: Rel (   -32,     0)  ->  Abs (   380,   788)
+	 16: Rel (   -32,     0)  ->  Abs (   348,   788)
+	 17: Rel (   -45,   -45)  ->  Abs (   303,   743)
+	 18: Rel (     0,   -32)  ->  Abs (   303,   711)
+	 19: Rel (     0,   -32)  ->  Abs (   303,   679)
+	 20: Rel (    45,   -46)  ->  Abs (   348,   633)
+	 21: Rel (    32,     0)  ->  Abs (   380,   633)
+	 22: Rel (    32,     0)  ->  Abs (   412,   633)
+	 23: Rel (    46,    46)  ->  Abs (   458,   679)
+	 24: Rel (   468,    32)  ->  Abs (   926,   711)
+	 25: Rel (     0,    32)  ->  Abs (   926,   743)
+	 26: Rel (   -45,    45)  ->  Abs (   881,   788)
+	 27: Rel (   -32,     0)  ->  Abs (   849,   788)
+	 28: Rel (   -32,     0)  ->  Abs (   817,   788)
+	 29: Rel (   -46,   -45)  ->  Abs (   771,   743)
+	 30: Rel (     0,   -32)  ->  Abs (   771,   711)
+	 31: Rel (     0,   -32)  ->  Abs (   771,   679)
+	 32: Rel (    46,   -46)  ->  Abs (   817,   633)
+	 33: Rel (    32,     0)  ->  Abs (   849,   633)
+	 34: Rel (    32,     0)  ->  Abs (   881,   633)
+	 35: Rel (    45,    46)  ->  Abs (   926,   679)
+	 36: Rel (  -594,  -292)  ->  Abs (   332,   387)
+	 37: Rel (    48,   -91)  ->  Abs (   380,   296)
+	 38: Rel (   141,   -96)  ->  Abs (   521,   200)
+	 39: Rel (    93,     0)  ->  Abs (   614,   200)
+	 40: Rel (    92,     0)  ->  Abs (   706,   200)
+	 41: Rel (   141,    94)  ->  Abs (   847,   294)
+	 42: Rel (    49,    93)  ->  Abs (   896,   387)
+	 43: Rel (   -60,    35)  ->  Abs (   836,   422)
+	 44: Rel (   -76,  -138)  ->  Abs (   760,   284)
+	 45: Rel (  -146,     0)  ->  Abs (   614,   284)
+	 46: Rel (  -146,     0)  ->  Abs (   468,   284)
+	 47: Rel (   -76,   138)  ->  Abs (   392,   422)
+
+	Glyph 385: off = 0x00015AD6, len = 424
+	  numberOfContours:	2
+	  xMin:			2
+	  yMin:			-141
+	  xMax:			1227
+	  yMax:			1083
+
+	EndPoints
+	---------
+	  0:  41
+	  1:  53
+
+	  Length of Instructions:	262
+	00000: NPUSHB      (72):   117    39   132     5   133    39   148     5   148    39 
+	                           166     5     6    83     5    85    39   116     5   122 
+	                            18   123    26     5    85    15   117    13   128     9 
+	                           143    35   144     9   159    35     6    80     9    95 
+	                            35    95    40   112     9   114    14   127    30   126 
+	                            35     7    96    10    96    11    96    12   110    31 
+	                           110    32   110    33   110    34     7    11    10    77 
+	                            12    13 
+	00074: PUSHW[1]            771 
+	00077: NPUSHB      (73):    31    33    34    77    31    31    32    32     0    23 
+	                            21    24    22    23    48    77    24   160    23    10 
+	                            42    77     2     2    41   160     1     0     2    34 
+	                            31    33    15    32    31    32     2    32   160    45 
+	                            77    31    11     0    12    32    12   144    12     3 
+	                           128    12   176    12   240    12     3    12   160    10 
+	                            51    77   112    13     1     0    13    16    13    80 
+	                            13     3    13 
+	00152: PUSHW[1]            415 
+	00155: PUSHB[5]             22    15    31     1    31 
+	00161: PUSHW[1]            415 
+	00164: NPUSHB      (17):    23     0    41     1     2     2    22    41    23    21 
+	                            22    77    24     0    23     1    23 
+	00183: PUSHW[1]            595 
+	00186: PUSHB[4]             54    75    68    24 
+	00191: CALL       
+	00192: SRP0       
+	00193: MIRP[srp0,nmd,rd,2] 
+	00194: DELTAP1    
+	00195: ALIGNRP    
+	00196: MIRP[srp0,md,rd,1] 
+	00197: ALIGNRP    
+	00198: SRP0       
+	00199: ALIGNRP    
+	00200: SRP0       
+	00201: ALIGNRP    
+	00202: SRP0       
+	00203: ALIGNRP    
+	00204: SRP0       
+	00205: ALIGNRP    
+	00206: SRP0       
+	00207: MIRP[nrp0,nmd,rd,0] 
+	00208: DELTAP1    
+	00209: SRP0       
+	00210: MIRP[srp0,nmd,rd,0] 
+	00211: DELTAP1    
+	00212: DELTAP1    
+	00213: MIRP[nrp0,md,rd,1] 
+	00214: ALIGNRP    
+	00215: MIRP[srp0,nmd,rd,0] 
+	00216: DELTAP1    
+	00217: DELTAP2    
+	00218: ALIGNRP    
+	00219: SRP0       
+	00220: MIRP[nrp0,md,rd,1] 
+	00221: MIRP[srp0,nmd,rd,0] 
+	00222: DELTAP2    
+	00223: ALIGNRP    
+	00224: SRP0       
+	00225: ALIGNRP    
+	00226: SVTCA[y-axis] 
+	00227: MIAP[rd+ci] 
+	00228: ALIGNRP    
+	00229: MIRP[srp0,nmd,rd,0] 
+	00230: ALIGNRP    
+	00231: SRP0       
+	00232: MIRP[nrp0,md,rd,1] 
+	00233: MIAP[rd+ci] 
+	00234: MIRP[srp0,nmd,rd,0] 
+	00235: MIRP[nrp0,md,rd,1] 
+	00236: SRP0       
+	00237: ALIGNRP    
+	00238: SRP0       
+	00239: ALIGNRP    
+	00240: SRP1       
+	00241: SRP2       
+	00242: IP         
+	00243: MDAP[rd]   
+	00244: ALIGNRP    
+	00245: SRP0       
+	00246: MIRP[srp0,md,rd,1] 
+	00247: ALIGNRP    
+	00248: SRP0       
+	00249: MIRP[srp0,nmd,rd,0] 
+	00250: ALIGNRP    
+	00251: MIRP[srp0,md,rd,1] 
+	00252: ALIGNRP    
+	00253: IUP[y]     
+	00254: IUP[x]     
+	00255: SVTCA[x-axis] 
+	00256: DELTAP1    
+	00257: DELTAP1    
+	00258: DELTAP1    
+	00259: SVTCA[y-axis] 
+	00260: DELTAP1    
+	00261: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short On
+	  8:                      Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual         Y-Short         On
+	 13:  YDual                       X-Short On
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:        XDual         Y-Short X-Short On
+	 17:                      Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:        XDual         Y-Short         On
+	 23:  YDual                       X-Short On
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual               Y-Short X-Short On
+	 27:                      Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual               Y-Short X-Short On
+	 32:  YDual                       X-Short On
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual               Y-Short X-Short On
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:        XDual         Y-Short X-Short On
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:        XDual         Y-Short X-Short On
+	 43:  YDual                       X-Short Off
+	 44:                      Y-Short X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         Off
+	 47:        XDual         Y-Short X-Short Off
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual                 X-Short Off
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         Off
+	 53:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   582,  1083)  ->  Abs (   582,  1083)
+	  1: Rel (    66,     0)  ->  Abs (   648,  1083)
+	  2: Rel (     0,  -217)  ->  Abs (   648,   866)
+	  3: Rel (    64,    -5)  ->  Abs (   712,   861)
+	  4: Rel (   103,   -41)  ->  Abs (   815,   820)
+	  5: Rel (    57,   -44)  ->  Abs (   872,   776)
+	  6: Rel (   186,   182)  ->  Abs (  1058,   958)
+	  7: Rel (    45,   -45)  ->  Abs (  1103,   913)
+	  8: Rel (  -184,  -184)  ->  Abs (   919,   729)
+	  9: Rel (    88,  -116)  ->  Abs (  1007,   613)
+	 10: Rel (     4,  -114)  ->  Abs (  1011,   499)
+	 11: Rel (   216,     0)  ->  Abs (  1227,   499)
+	 12: Rel (     0,   -61)  ->  Abs (  1227,   438)
+	 13: Rel (  -216,     0)  ->  Abs (  1011,   438)
+	 14: Rel (   -13,  -120)  ->  Abs (   998,   318)
+	 15: Rel (   -78,  -101)  ->  Abs (   920,   217)
+	 16: Rel (   183,  -189)  ->  Abs (  1103,    28)
+	 17: Rel (   -48,   -43)  ->  Abs (  1055,   -15)
+	 18: Rel (  -183,   182)  ->  Abs (   872,   167)
+	 19: Rel (   -61,   -45)  ->  Abs (   811,   122)
+	 20: Rel (   -96,   -38)  ->  Abs (   715,    84)
+	 21: Rel (   -67,    -8)  ->  Abs (   648,    76)
+	 22: Rel (     0,  -217)  ->  Abs (   648,  -141)
+	 23: Rel (   -66,     0)  ->  Abs (   582,  -141)
+	 24: Rel (     0,   217)  ->  Abs (   582,    76)
+	 25: Rel (  -126,    18)  ->  Abs (   456,    94)
+	 26: Rel (   -95,    71)  ->  Abs (   361,   165)
+	 27: Rel (  -189,  -179)  ->  Abs (   172,   -14)
+	 28: Rel (   -44,    44)  ->  Abs (   128,    30)
+	 29: Rel (   183,   185)  ->  Abs (   311,   215)
+	 30: Rel (   -79,   100)  ->  Abs (   232,   315)
+	 31: Rel (   -14,   126)  ->  Abs (   218,   441)
+	 32: Rel (  -216,     0)  ->  Abs (     2,   441)
+	 33: Rel (     0,    61)  ->  Abs (     2,   502)
+	 34: Rel (   216,     0)  ->  Abs (   218,   502)
+	 35: Rel (    12,   126)  ->  Abs (   230,   628)
+	 36: Rel (    80,    98)  ->  Abs (   310,   726)
+	 37: Rel (  -182,   184)  ->  Abs (   128,   910)
+	 38: Rel (    41,    49)  ->  Abs (   169,   959)
+	 39: Rel (   189,  -182)  ->  Abs (   358,   777)
+	 40: Rel (   115,    78)  ->  Abs (   473,   855)
+	 41: Rel (   109,    11)  ->  Abs (   582,   866)
+	 42: Rel (    31,   -62)  ->  Abs (   613,   804)
+	 43: Rel (  -138,     0)  ->  Abs (   475,   804)
+	 44: Rel (  -194,  -196)  ->  Abs (   281,   608)
+	 45: Rel (     0,  -137)  ->  Abs (   281,   471)
+	 46: Rel (     0,  -138)  ->  Abs (   281,   333)
+	 47: Rel (   194,  -194)  ->  Abs (   475,   139)
+	 48: Rel (   138,     0)  ->  Abs (   613,   139)
+	 49: Rel (   138,     0)  ->  Abs (   751,   139)
+	 50: Rel (   195,   194)  ->  Abs (   946,   333)
+	 51: Rel (     0,   138)  ->  Abs (   946,   471)
+	 52: Rel (     0,   137)  ->  Abs (   946,   608)
+	 53: Rel (  -195,   196)  ->  Abs (   751,   804)
+
+	Glyph 386: off = 0x00015C7E, len = 280
+	  numberOfContours:	2
+	  xMin:			321
+	  yMin:			80
+	  xMax:			909
+	  yMax:			1153
+
+	EndPoints
+	---------
+	  0:  22
+	  1:  34
+
+	  Length of Instructions:	175
+	00000: PUSHB[6]             63     8     0    29    12    17 
+	00007: PUSHW[1]            758 
+	00010: PUSHB[3]             15    48    14 
+	00014: PUSHW[4]            762    12    18   758 
+	00023: PUSHB[3]             20    48    21 
+	00027: PUSHW[1]            762 
+	00030: PUSHB[6]              0    12    91     0    91    29 
+	00037: PUSHW[1]            774 
+	00040: NPUSHB      (25):    23    44     6    15   215    17    17    12    20   215 
+	                            18    18     0    32    44     9   215    12    36     0 
+	                            26    44     3   215     0 
+	00067: PUSHW[1]            584 
+	00070: PUSHB[4]             35   113   170    24 
+	00075: CALL       
+	00076: SRP0       
+	00077: MIRP[srp0,nmd,rd,2] 
+	00078: MIRP[srp0,nmd,rd,0] 
+	00079: MIRP[nrp0,md,rd,1] 
+	00080: SRP0       
+	00081: MIRP[srp0,md,rd,1] 
+	00082: MIRP[srp0,nmd,rd,0] 
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: SRP0       
+	00085: ALIGNRP    
+	00086: SRP0       
+	00087: MIRP[nrp0,nmd,rd,0] 
+	00088: SRP0       
+	00089: ALIGNRP    
+	00090: SRP0       
+	00091: MIRP[nrp0,nmd,rd,0] 
+	00092: SVTCA[y-axis] 
+	00093: MDAP[rd]   
+	00094: MIRP[srp0,md,rd,1] 
+	00095: MIRP[srp0,nmd,rd,2] 
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: MIRP[nrp0,md,rd,1] 
+	00098: SRP0       
+	00099: MIRP[srp0,nmd,rd,2] 
+	00100: MIRP[srp0,md,rd,1] 
+	00101: MIRP[nrp0,nmd,rd,0] 
+	00102: SRP0       
+	00103: MIRP[srp0,nmd,rd,2] 
+	00104: MIRP[srp0,md,rd,1] 
+	00105: MIRP[nrp0,nmd,rd,0] 
+	00106: SRP1       
+	00107: SRP2       
+	00108: IP         
+	00109: IUP[y]     
+	00110: IUP[x]     
+	00111: RS         
+	00112: JROF       
+	00113: NPUSHB      (46):     1    34    30    11    32    40     1    28     1    26 
+	                            40     0    24     5    26    40     0    34     7    32 
+	                            40     1    31    10    29    40     0    11    12    27 
+	                             2    29    40     0     1     0    25     4    23    40 
+	                             1    33     8    23    40     1 
+	00161: CALL       
+	00162: CALL       
+	00163: SRP0       
+	00164: ALIGNRP    
+	00165: CALL       
+	00166: SRP0       
+	00167: ALIGNRP    
+	00168: CALL       
+	00169: SVTCA[x-axis] 
+	00170: CALL       
+	00171: CALL       
+	00172: CALL       
+	00173: CALL       
+	00174: FLIPRGON   
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:        XDual         Y-Short         On
+	 14:  YDual XDual                 X-Short On
+	 15:        XDual         Y-Short         On
+	 16:  YDual                       X-Short On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:        XDual                         On
+	 20:  YDual                               On
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual                               On
+	 23:        XDual                 X-Short On
+	 24:  YDual                       X-Short Off
+	 25:                      Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   579,   577)  ->  Abs (   579,   577)
+	  1: Rel (  -109,    15)  ->  Abs (   470,   592)
+	  2: Rel (  -142,   163)  ->  Abs (   328,   755)
+	  3: Rel (     0,   107)  ->  Abs (   328,   862)
+	  4: Rel (     0,   121)  ->  Abs (   328,   983)
+	  5: Rel (   169,   170)  ->  Abs (   497,  1153)
+	  6: Rel (   119,     0)  ->  Abs (   616,  1153)
+	  7: Rel (   118,     0)  ->  Abs (   734,  1153)
+	  8: Rel (   169,  -170)  ->  Abs (   903,   983)
+	  9: Rel (     0,  -121)  ->  Abs (   903,   862)
+	 10: Rel (     0,  -109)  ->  Abs (   903,   753)
+	 11: Rel (  -141,  -162)  ->  Abs (   762,   591)
+	 12: Rel (  -108,   -14)  ->  Abs (   654,   577)
+	 13: Rel (     0,  -165)  ->  Abs (   654,   412)
+	 14: Rel (   255,     0)  ->  Abs (   909,   412)
+	 15: Rel (     0,   -69)  ->  Abs (   909,   343)
+	 16: Rel (  -255,     0)  ->  Abs (   654,   343)
+	 17: Rel (     0,  -263)  ->  Abs (   654,    80)
+	 18: Rel (   -75,     0)  ->  Abs (   579,    80)
+	 19: Rel (     0,   263)  ->  Abs (   579,   343)
+	 20: Rel (  -258,     0)  ->  Abs (   321,   343)
+	 21: Rel (     0,    69)  ->  Abs (   321,   412)
+	 22: Rel (   258,     0)  ->  Abs (   579,   412)
+	 23: Rel (    36,   657)  ->  Abs (   615,  1069)
+	 24: Rel (   -85,     0)  ->  Abs (   530,  1069)
+	 25: Rel (  -120,  -120)  ->  Abs (   410,   949)
+	 26: Rel (     0,   -85)  ->  Abs (   410,   864)
+	 27: Rel (     0,   -85)  ->  Abs (   410,   779)
+	 28: Rel (   120,  -121)  ->  Abs (   530,   658)
+	 29: Rel (    85,     0)  ->  Abs (   615,   658)
+	 30: Rel (    85,     0)  ->  Abs (   700,   658)
+	 31: Rel (   121,   121)  ->  Abs (   821,   779)
+	 32: Rel (     0,    85)  ->  Abs (   821,   864)
+	 33: Rel (     0,    85)  ->  Abs (   821,   949)
+	 34: Rel (  -120,   120)  ->  Abs (   701,  1069)
+
+	Glyph 387: off = 0x00015D96, len = 434
+	  numberOfContours:	2
+	  xMin:			184
+	  yMin:			250
+	  xMax:			1046
+	  yMax:			1153
+
+	EndPoints
+	---------
+	  0:  50
+	  1:  62
+
+	  Length of Instructions:	258
+	00000: NPUSHB      (42):    41     1    41    37     2    96     5   160     5     2 
+	                            48     5    64     5     2    32     5    46    33     2 
+	                            37    38    37    35    38    48     0     1    20     0 
+	                             0     1    38    39    39    39    40    38    40    43 
+	                            49    36 
+	00044: PUSHW[1]            773 
+	00047: PUSHB[4]             37    32    77    27 
+	00052: PUSHW[6]            757    22    35   399    25   762 
+	00065: PUSHB[5]             22   210    37    77     3 
+	00071: NPUSHW      (11):   765     1     7   775    13   771    17     5   775    15 
+	                           765 
+	00095: PUSHB[3]             17   193     1 
+	00099: PUSHW[1]            758 
+	00102: PUSHB[3]             38    77     0 
+	00106: PUSHW[1]            765 
+	00109: NPUSHB      (23):    51    44    49   182    57    44    43    35   174    37 
+	                            29    52    25    62    22   193    37     5   213     1 
+	                             7    77    13 
+	00134: PUSHW[1]            408 
+	00137: NPUSHB      (34):    15   232    17   210     1    35   174    37    77     1 
+	                           215    38    77     0     0    54    60    44    40   182 
+	                            54    44     0    46    48    46     2    46    25    63 
+	                            43    99   171    24 
+	00173: PUSHW[1]            356 
+	00176: SCANCTRL   
+	00177: CALL       
+	00178: SVTCA[y-axis] 
+	00179: MDAP[rd]   
+	00180: SVTCA[x-axis] 
+	00181: FLIPOFF    
+	00182: SRP0       
+	00183: MIRP[srp0,nmd,rd,0] 
+	00184: DELTAP1    
+	00185: FLIPON     
+	00186: MIRP[nrp0,md,rd,1] 
+	00187: MIRP[srp0,md,rd,1] 
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: SRP1       
+	00190: IP         
+	00191: MDAP[rd]   
+	00192: MIRP[nrp0,md,rd,1] 
+	00193: MIRP[srp0,nmd,rd,0] 
+	00194: MIRP[srp0,md,rd,1] 
+	00195: MIRP[nrp0,nmd,rd,0] 
+	00196: SRP0       
+	00197: MIRP[srp0,nmd,rd,0] 
+	00198: MIRP[nrp0,nmd,rd,2] 
+	00199: MIRP[srp0,nmd,rd,2] 
+	00200: MIRP[nrp0,md,rd,1] 
+	00201: SRP0       
+	00202: MIRP[nrp0,nmd,rd,0] 
+	00203: SRP0       
+	00204: MIRP[srp0,md,rd,1] 
+	00205: MIRP[nrp0,nmd,rd,0] 
+	00206: MIRP[nrp0,nmd,rd,0] 
+	00207: SRP0       
+	00208: MIRP[nrp0,nmd,rd,0] 
+	00209: SVTCA[y-axis] 
+	00210: SRP0       
+	00211: MIRP[nrp0,md,rd,1] 
+	00212: MIRP[srp0,md,rd,1] 
+	00213: MIRP[nrp0,md,rd,1] 
+	00214: MIRP[srp0,nmd,rd,0] 
+	00215: MIRP[nrp0,md,rd,1] 
+	00216: MIRP[srp0,md,rd,0] 
+	00217: MIRP[srp0,md,rd,1] 
+	00218: MIRP[srp0,nmd,rd,0] 
+	00219: MIRP[nrp0,nmd,rd,1] 
+	00220: SRP0       
+	00221: MIRP[srp0,nmd,rd,0] 
+	00222: MIRP[nrp0,nmd,rd,1] 
+	00223: SRP0       
+	00224: MIRP[nrp0,nmd,rd,0] 
+	00225: MIRP[srp0,md,rd,1] 
+	00226: MIRP[srp0,nmd,rd,0] 
+	00227: MIRP[srp0,nmd,rd,2] 
+	00228: MIRP[nrp0,md,rd,1] 
+	00229: SRP0       
+	00230: MIRP[srp0,nmd,rd,2] 
+	00231: MIRP[nrp0,md,rd,1] 
+	00232: SRP0       
+	00233: MIRP[nrp0,nmd,rd,0] 
+	00234: SRP1       
+	00235: SRP2       
+	00236: IP         
+	00237: SRP1       
+	00238: SRP2       
+	00239: IP         
+	00240: SVTCA[x-axis] 
+	00241: IP         
+	00242: SFVTL[=p1,p2] 
+	00243: SDPVTL[1]  
+	00244: MDAP[nrd]  
+	00245: CALL       
+	00246: SFVTL[=p1,p2] 
+	00247: RDTG       
+	00248: SRP0       
+	00249: MDRP[nrp0,nmd,rd,0] 
+	00250: IUP[y]     
+	00251: IUP[x]     
+	00252: SVTCA[y-axis] 
+	00253: DELTAP1    
+	00254: DELTAP1    
+	00255: DELTAP1    
+	00256: SVTCA[x-axis] 
+	00257: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short X-Short On
+	 24:                      Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:        XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:                      Y-Short X-Short On
+	 32:                      Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual               Y-Short X-Short On
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual               Y-Short X-Short On
+	 38:                      Y-Short X-Short On
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:                      Y-Short X-Short Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short Off
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short         On
+	 47:  YDual XDual         Y-Short         Off
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:                      Y-Short X-Short On
+	 52:  YDual                       X-Short Off
+	 53:                      Y-Short X-Short Off
+	 54:        XDual         Y-Short         On
+	 55:        XDual         Y-Short         Off
+	 56:        XDual         Y-Short X-Short Off
+	 57:  YDual XDual                 X-Short On
+	 58:  YDual XDual                 X-Short Off
+	 59:  YDual XDual         Y-Short X-Short Off
+	 60:  YDual XDual         Y-Short         On
+	 61:  YDual XDual         Y-Short         Off
+	 62:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   628,   782)  ->  Abs (   628,   782)
+	  1: Rel (   242,   242)  ->  Abs (   870,  1024)
+	  2: Rel (   -35,     9)  ->  Abs (   835,  1033)
+	  3: Rel (   -73,    28)  ->  Abs (   762,  1061)
+	  4: Rel (   -55,    21)  ->  Abs (   707,  1082)
+	  5: Rel (   -28,    28)  ->  Abs (   679,  1110)
+	  6: Rel (    -8,     8)  ->  Abs (   671,  1118)
+	  7: Rel (     0,    11)  ->  Abs (   671,  1129)
+	  8: Rel (     0,     8)  ->  Abs (   671,  1137)
+	  9: Rel (     7,     7)  ->  Abs (   678,  1144)
+	 10: Rel (     5,     5)  ->  Abs (   683,  1149)
+	 11: Rel (    10,     0)  ->  Abs (   693,  1149)
+	 12: Rel (     9,     0)  ->  Abs (   702,  1149)
+	 13: Rel (    22,    -5)  ->  Abs (   724,  1144)
+	 14: Rel (    64,   -15)  ->  Abs (   788,  1129)
+	 15: Rel (    63,     0)  ->  Abs (   851,  1129)
+	 16: Rel (    94,     0)  ->  Abs (   945,  1129)
+	 17: Rel (    73,    24)  ->  Abs (  1018,  1153)
+	 18: Rel (    12,     0)  ->  Abs (  1030,  1153)
+	 19: Rel (     8,     0)  ->  Abs (  1038,  1153)
+	 20: Rel (     8,    -7)  ->  Abs (  1046,  1146)
+	 21: Rel (     0,    -8)  ->  Abs (  1046,  1138)
+	 22: Rel (     0,    -7)  ->  Abs (  1046,  1131)
+	 23: Rel (    -5,   -18)  ->  Abs (  1041,  1113)
+	 24: Rel (   -18,   -69)  ->  Abs (  1023,  1044)
+	 25: Rel (     0,   -89)  ->  Abs (  1023,   955)
+	 26: Rel (     0,   -63)  ->  Abs (  1023,   892)
+	 27: Rel (    13,   -67)  ->  Abs (  1036,   825)
+	 28: Rel (     5,   -23)  ->  Abs (  1041,   802)
+	 29: Rel (     0,    -9)  ->  Abs (  1041,   793)
+	 30: Rel (     0,    -9)  ->  Abs (  1041,   784)
+	 31: Rel (    -5,    -5)  ->  Abs (  1036,   779)
+	 32: Rel (    -7,    -7)  ->  Abs (  1029,   772)
+	 33: Rel (    -7,     0)  ->  Abs (  1022,   772)
+	 34: Rel (   -19,     0)  ->  Abs (  1003,   772)
+	 35: Rel (   -21,    39)  ->  Abs (   982,   811)
+	 36: Rel (   -44,    83)  ->  Abs (   938,   894)
+	 37: Rel (   -21,    83)  ->  Abs (   917,   977)
+	 38: Rel (  -237,  -237)  ->  Abs (   680,   740)
+	 39: Rel (    84,   -81)  ->  Abs (   764,   659)
+	 40: Rel (     0,  -111)  ->  Abs (   764,   548)
+	 41: Rel (     0,  -124)  ->  Abs (   764,   424)
+	 42: Rel (  -171,  -174)  ->  Abs (   593,   250)
+	 43: Rel (  -120,     0)  ->  Abs (   473,   250)
+	 44: Rel (  -120,     0)  ->  Abs (   353,   250)
+	 45: Rel (  -169,   168)  ->  Abs (   184,   418)
+	 46: Rel (     0,   117)  ->  Abs (   184,   535)
+	 47: Rel (     0,   120)  ->  Abs (   184,   655)
+	 48: Rel (   171,   170)  ->  Abs (   355,   825)
+	 49: Rel (   120,     0)  ->  Abs (   475,   825)
+	 50: Rel (    71,     0)  ->  Abs (   546,   825)
+	 51: Rel (   -71,   -75)  ->  Abs (   475,   750)
+	 52: Rel (   -89,     0)  ->  Abs (   386,   750)
+	 53: Rel (  -124,  -124)  ->  Abs (   262,   626)
+	 54: Rel (     0,   -88)  ->  Abs (   262,   538)
+	 55: Rel (     0,   -88)  ->  Abs (   262,   450)
+	 56: Rel (   125,  -125)  ->  Abs (   387,   325)
+	 57: Rel (    88,     0)  ->  Abs (   475,   325)
+	 58: Rel (    88,     0)  ->  Abs (   563,   325)
+	 59: Rel (   124,   124)  ->  Abs (   687,   449)
+	 60: Rel (     0,    89)  ->  Abs (   687,   538)
+	 61: Rel (     0,    88)  ->  Abs (   687,   626)
+	 62: Rel (  -124,   124)  ->  Abs (   563,   750)
+
+	Glyph 388: off = 0x00015F48, len = 304
+	  numberOfContours:	1
+	  xMin:			128
+	  yMin:			0
+	  xMax:			1100
+	  yMax:			1231
+
+	EndPoints
+	---------
+	  0:  34
+
+	  Length of Instructions:	192
+	00000: NPUSHB      (33):    29    40    67    67    52    87     1    86    26     2 
+	                            76     9    74    22    85     3    91     9    91    22 
+	                            84    30   107     9   105    22     8    69     3    68 
+	                            30     2    12 
+	00035: PUSHW[1]            -24 
+	00038: NPUSHB      (96):    13    15    52    19    24    13    15    52   203     2 
+	                           202     3   217     2   217     3     4    38    12    41 
+	                            19     2    23    12    24    19     2   153    30     1 
+	                            10    10    24    21    21     8    15    24    31    24 
+	                             2    24    24     0    14    17    62    16    15     8 
+	                            16     8     0    14    14    15    15     5    17    17 
+	                            16    16    27     0     0    10   189    21    21    27 
+	                             0     5    95     5     2   143     5   176     5   207 
+	                             5   223     5     4     0     5    48     5    79     5 
+	                           127     5     4     5     5    27 
+	00136: MDAP[rd]   
+	00137: SHP[rp1,zp0] 
+	00138: MDAP[rd]   
+	00139: DELTAP1    
+	00140: DELTAP1    
+	00141: DELTAP2    
+	00142: SRP2       
+	00143: IP         
+	00144: MDAP[rd]   
+	00145: MIRP[nrp0,md,rd,1] 
+	00146: RTHG       
+	00147: IP         
+	00148: MDAP[rd]   
+	00149: SRP1       
+	00150: SHP[rp1,zp0] 
+	00151: RTG        
+	00152: MDAP[rd]   
+	00153: SHP[rp1,zp0] 
+	00154: MDAP[rd]   
+	00155: SRP1       
+	00156: SHP[rp1,zp0] 
+	00157: MDAP[rd]   
+	00158: SHP[rp1,zp0] 
+	00159: MDAP[rd]   
+	00160: SVTCA[y-axis] 
+	00161: MDAP[rd]   
+	00162: MIAP[rd+ci] 
+	00163: MIAP[rd+ci] 
+	00164: SRP0       
+	00165: MIRP[srp0,md,rd,1] 
+	00166: ALIGNRP    
+	00167: SRP2       
+	00168: IP         
+	00169: MDAP[rd]   
+	00170: DELTAP1    
+	00171: ALIGNRP    
+	00172: IP         
+	00173: MDAP[rd]   
+	00174: SRP1       
+	00175: IP         
+	00176: MDAP[rd]   
+	00177: IUP[y]     
+	00178: IUP[x]     
+	00179: SVTCA[x-axis] 
+	00180: DELTAP3    
+	00181: DELTAP1    
+	00182: DELTAP1    
+	00183: DELTAP1    
+	00184: CALL       
+	00185: CALL       
+	00186: SVTCA[y-axis] 
+	00187: DELTAP1    
+	00188: DELTAP1    
+	00189: SVTCA[x-axis] 
+	00190: DELTAP2    
+	00191: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:                      Y-Short         Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:        XDual Rep-  2 Y-Short X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short On
+	 16:  YDual                               On
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual               Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   615,  1231)  ->  Abs (   615,  1231)
+	  1: Rel (    26,  -108)  ->  Abs (   641,  1123)
+	  2: Rel (   108,  -170)  ->  Abs (   749,   953)
+	  3: Rel (   277,  -251)  ->  Abs (  1026,   702)
+	  4: Rel (    74,  -135)  ->  Abs (  1100,   567)
+	  5: Rel (     0,   -69)  ->  Abs (  1100,   498)
+	  6: Rel (     0,   -95)  ->  Abs (  1100,   403)
+	  7: Rel (  -128,  -128)  ->  Abs (   972,   275)
+	  8: Rel (   -90,     0)  ->  Abs (   882,   275)
+	  9: Rel (  -156,     0)  ->  Abs (   726,   275)
+	 10: Rel (   -99,   190)  ->  Abs (   627,   465)
+	 11: Rel (     1,  -147)  ->  Abs (   628,   318)
+	 12: Rel (    75,  -173)  ->  Abs (   703,   145)
+	 13: Rel (   164,   -99)  ->  Abs (   867,    46)
+	 14: Rel (   137,    -9)  ->  Abs (  1004,    37)
+	 15: Rel (     7,   -37)  ->  Abs (  1011,     0)
+	 16: Rel (  -792,     0)  ->  Abs (   219,     0)
+	 17: Rel (     7,    37)  ->  Abs (   226,    37)
+	 18: Rel (   124,     0)  ->  Abs (   350,    37)
+	 19: Rel (   173,   100)  ->  Abs (   523,   137)
+	 20: Rel (    89,   178)  ->  Abs (   612,   315)
+	 21: Rel (    -3,   150)  ->  Abs (   609,   465)
+	 22: Rel (   -45,   -95)  ->  Abs (   564,   370)
+	 23: Rel (  -133,   -95)  ->  Abs (   431,   275)
+	 24: Rel (   -83,     0)  ->  Abs (   348,   275)
+	 25: Rel (   -90,     0)  ->  Abs (   258,   275)
+	 26: Rel (  -130,   130)  ->  Abs (   128,   405)
+	 27: Rel (     0,    89)  ->  Abs (   128,   494)
+	 28: Rel (     0,    74)  ->  Abs (   128,   568)
+	 29: Rel (    32,    59)  ->  Abs (   160,   627)
+	 30: Rel (    45,    83)  ->  Abs (   205,   710)
+	 31: Rel (   112,    91)  ->  Abs (   317,   801)
+	 32: Rel (   140,   115)  ->  Abs (   457,   916)
+	 33: Rel (    77,   114)  ->  Abs (   534,  1030)
+	 34: Rel (    56,    83)  ->  Abs (   590,  1113)
+
+	Glyph 389: off = 0x00016078, len = 352
+	  numberOfContours:	1
+	  xMin:			2
+	  yMin:			0
+	  xMax:			1227
+	  yMax:			1222
+
+	EndPoints
+	---------
+	  0:  51
+
+	  Length of Instructions:	202
+	00000: NPUSHB     (117):    28    10    27    43    28    44    42    10    42    44 
+	                            60    10    60    44    73    10    73    44    92    10 
+	                            92    44   101    20   101    31    13    25     5    21 
+	                            48    93     5    81    48   128     0   134    25   132 
+	                            49   128    51   171     4   163    49    10     9     5 
+	                             5    48     2    10    17     1    31    20    12    35 
+	                            52   127    18     1    18    18    12    46    46    12 
+	                             9     9    26    41    52    15    12    31    12     2 
+	                            12    12    26     1    51    62     0     2    62     1 
+	                            26     1     8     0     8    29    29    23    23    15 
+	                            31    38    46    20     9    15     0     0    46     1 
+	                             1     9     0     0    10    21    46 
+	00119: PUSHW[1]            267 
+	00122: NPUSHB      (14):     9     9    15    16    38    64    38    80    38   128 
+	                            38     4    38    15 
+	00138: MDAP[rd]   
+	00139: MDAP[rd]   
+	00140: DELTAP1    
+	00141: SRP2       
+	00142: IP         
+	00143: MDAP[rd]   
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: SRP1       
+	00146: SRP2       
+	00147: IP         
+	00148: MDAP[rd]   
+	00149: SRP1       
+	00150: SHP[rp1,zp0] 
+	00151: MDAP[rd]   
+	00152: SRP1       
+	00153: SHP[rp1,zp0] 
+	00154: MDAP[rd]   
+	00155: SRP1       
+	00156: SRP2       
+	00157: IP         
+	00158: SRP1       
+	00159: SRP2       
+	00160: IP         
+	00161: SRP1       
+	00162: SHP[rp1,zp0] 
+	00163: MDAP[rd]   
+	00164: SHP[rp2,zp1] 
+	00165: MDAP[rd]   
+	00166: SVTCA[y-axis] 
+	00167: MIAP[rd+ci] 
+	00168: MIAP[rd+ci] 
+	00169: MDAP[rd]   
+	00170: SRP0       
+	00171: MIRP[nrp0,md,rd,1] 
+	00172: SRP0       
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: SRP1       
+	00175: SRP2       
+	00176: IP         
+	00177: MDAP[rd]   
+	00178: DELTAP1    
+	00179: MIRP[nrp0,nmd,rd,0] 
+	00180: SRP2       
+	00181: IP         
+	00182: MDAP[rd]   
+	00183: SRP1       
+	00184: IP         
+	00185: MDAP[rd]   
+	00186: SRP1       
+	00187: SHP[rp1,zp0] 
+	00188: MDAP[rd]   
+	00189: DELTAP1    
+	00190: MIRP[nrp0,nmd,rd,0] 
+	00191: SRP2       
+	00192: IP         
+	00193: IP         
+	00194: IUP[y]     
+	00195: IUP[x]     
+	00196: SVTCA[x-axis] 
+	00197: DELTAP2    
+	00198: DELTAP1    
+	00199: DELTAP1    
+	00200: SVTCA[y-axis] 
+	00201: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual               Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short On
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:                      Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:                      Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual               Y-Short X-Short On
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual               Y-Short X-Short On
+	 47:        XDual         Y-Short X-Short Off
+	 48:        XDual         Y-Short X-Short Off
+	 49:        XDual         Y-Short X-Short On
+	 50:        XDual         Y-Short X-Short Off
+	 51:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1037,     0)  ->  Abs (  1037,     0)
+	  1: Rel (  -842,     0)  ->  Abs (   195,     0)
+	  2: Rel (     8,    34)  ->  Abs (   203,    34)
+	  3: Rel (   165,    35)  ->  Abs (   368,    69)
+	  4: Rel (    53,    33)  ->  Abs (   421,   102)
+	  5: Rel (    81,    51)  ->  Abs (   502,   153)
+	  6: Rel (   102,   199)  ->  Abs (   604,   352)
+	  7: Rel (     0,   109)  ->  Abs (   604,   461)
+	  8: Rel (     0,    15)  ->  Abs (   604,   476)
+	  9: Rel (    -2,    31)  ->  Abs (   602,   507)
+	 10: Rel (   -59,  -122)  ->  Abs (   543,   385)
+	 11: Rel (  -175,  -114)  ->  Abs (   368,   271)
+	 12: Rel (   -90,     0)  ->  Abs (   278,   271)
+	 13: Rel (  -116,     0)  ->  Abs (   162,   271)
+	 14: Rel (  -160,   161)  ->  Abs (     2,   432)
+	 15: Rel (     0,   117)  ->  Abs (     2,   549)
+	 16: Rel (     0,   115)  ->  Abs (     2,   664)
+	 17: Rel (   147,   159)  ->  Abs (   149,   823)
+	 18: Rel (    92,     0)  ->  Abs (   241,   823)
+	 19: Rel (    61,     0)  ->  Abs (   302,   823)
+	 20: Rel (   102,   -51)  ->  Abs (   404,   772)
+	 21: Rel (   -42,    68)  ->  Abs (   362,   840)
+	 22: Rel (   -25,    72)  ->  Abs (   337,   912)
+	 23: Rel (     0,    41)  ->  Abs (   337,   953)
+	 24: Rel (     0,   113)  ->  Abs (   337,  1066)
+	 25: Rel (   157,   156)  ->  Abs (   494,  1222)
+	 26: Rel (   118,     0)  ->  Abs (   612,  1222)
+	 27: Rel (   117,     0)  ->  Abs (   729,  1222)
+	 28: Rel (   159,  -157)  ->  Abs (   888,  1065)
+	 29: Rel (     0,  -109)  ->  Abs (   888,   956)
+	 30: Rel (     0,   -88)  ->  Abs (   888,   868)
+	 31: Rel (   -68,   -96)  ->  Abs (   820,   772)
+	 32: Rel (    84,    39)  ->  Abs (   904,   811)
+	 33: Rel (    16,     5)  ->  Abs (   920,   816)
+	 34: Rel (    27,     8)  ->  Abs (   947,   824)
+	 35: Rel (    34,     0)  ->  Abs (   981,   824)
+	 36: Rel (   100,     0)  ->  Abs (  1081,   824)
+	 37: Rel (   146,  -156)  ->  Abs (  1227,   668)
+	 38: Rel (     0,  -115)  ->  Abs (  1227,   553)
+	 39: Rel (     0,  -119)  ->  Abs (  1227,   434)
+	 40: Rel (  -160,  -162)  ->  Abs (  1067,   272)
+	 41: Rel (  -113,     0)  ->  Abs (   954,   272)
+	 42: Rel (   -61,     0)  ->  Abs (   893,   272)
+	 43: Rel (  -133,    60)  ->  Abs (   760,   332)
+	 44: Rel (   -49,    51)  ->  Abs (   711,   383)
+	 45: Rel (   -35,    36)  ->  Abs (   676,   419)
+	 46: Rel (   -51,    88)  ->  Abs (   625,   507)
+	 47: Rel (     4,  -158)  ->  Abs (   629,   349)
+	 48: Rel (    88,  -184)  ->  Abs (   717,   165)
+	 49: Rel (    92,   -60)  ->  Abs (   809,   105)
+	 50: Rel (    61,   -40)  ->  Abs (   870,    65)
+	 51: Rel (   159,   -31)  ->  Abs (  1029,    34)
+
+	Glyph 390: off = 0x000161D8, len = 172
+	  numberOfContours:	1
+	  xMin:			108
+	  yMin:			-22
+	  xMax:			1121
+	  yMax:			1144
+
+	EndPoints
+	---------
+	  0:  26
+
+	  Length of Instructions:	84
+	00000: NPUSHB      (29):    52     1   105    14     2   134     2   182     4   230 
+	                             2     3    25    23    15     4     2     0     6    21 
+	                             8    25    23    15     4     2     0     6    11 
+	00031: PUSHW[3]            453    18   453 
+	00038: NPUSHB      (10):    64     0    11     0    21   255     8   255    32    15 
+	00050: PUSHW[1]            326 
+	00053: PUSHB[4]             27    79   123    24 
+	00058: CALL       
+	00059: RTHG       
+	00060: SRP0       
+	00061: MIRP[srp0,nmd,rd,0] 
+	00062: SMD        
+	00063: MIRP[nrp0,md,rd,1] 
+	00064: MIRP[nrp0,md,rd,1] 
+	00065: ALIGNRP    
+	00066: RTG        
+	00067: SVTCA[y-axis] 
+	00068: MIAP[rd+ci] 
+	00069: SMD        
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: MIRP[nrp0,md,rd,1] 
+	00072: SLOOP      
+	00073: SHP[rp2,zp1] 
+	00074: SVTCA[x-axis] 
+	00075: SRP1       
+	00076: SRP2       
+	00077: SLOOP      
+	00078: IP         
+	00079: IUP[y]     
+	00080: IUP[x]     
+	00081: SVTCA[x-axis] 
+	00082: DELTAP1    
+	00083: DELTAP2    
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   617,   -22)  ->  Abs (   617,   -22)
+	  1: Rel (   -29,   109)  ->  Abs (   588,    87)
+	  2: Rel (  -108,   193)  ->  Abs (   480,   280)
+	  3: Rel (  -152,   202)  ->  Abs (   328,   482)
+	  4: Rel (  -112,   148)  ->  Abs (   216,   630)
+	  5: Rel (   -27,    41)  ->  Abs (   189,   671)
+	  6: Rel (   -43,    65)  ->  Abs (   146,   736)
+	  7: Rel (   -38,   108)  ->  Abs (   108,   844)
+	  8: Rel (     0,    56)  ->  Abs (   108,   900)
+	  9: Rel (     0,   104)  ->  Abs (   108,  1004)
+	 10: Rel (   138,   139)  ->  Abs (   246,  1143)
+	 11: Rel (   102,     0)  ->  Abs (   348,  1143)
+	 12: Rel (   101,     0)  ->  Abs (   449,  1143)
+	 13: Rel (    75,   -72)  ->  Abs (   524,  1071)
+	 14: Rel (    57,   -55)  ->  Abs (   581,  1016)
+	 15: Rel (    36,  -106)  ->  Abs (   617,   910)
+	 16: Rel (    33,   118)  ->  Abs (   650,  1028)
+	 17: Rel (   143,   116)  ->  Abs (   793,  1144)
+	 18: Rel (    87,     0)  ->  Abs (   880,  1144)
+	 19: Rel (   101,     0)  ->  Abs (   981,  1144)
+	 20: Rel (   140,  -138)  ->  Abs (  1121,  1006)
+	 21: Rel (     0,   -94)  ->  Abs (  1121,   912)
+	 22: Rel (     0,   -85)  ->  Abs (  1121,   827)
+	 23: Rel (   -81,  -180)  ->  Abs (  1040,   647)
+	 24: Rel (  -118,  -149)  ->  Abs (   922,   498)
+	 25: Rel (  -152,  -192)  ->  Abs (   770,   306)
+	 26: Rel (  -125,  -221)  ->  Abs (   645,    85)
+
+	Glyph 391: off = 0x00016284, len = 122
+	  numberOfContours:	1
+	  xMin:			159
+	  yMin:			-24
+	  xMax:			1071
+	  yMax:			1222
+
+	EndPoints
+	---------
+	  0:  16
+
+	  Length of Instructions:	52
+	00000: PUSHW[6]              0   326     3   778    13   709 
+	00013: PUSHB[4]             32     7    11     7 
+	00018: PUSHW[1]            388 
+	00021: PUSHB[5]              3   167    13   167     0 
+	00027: PUSHW[1]            326 
+	00030: PUSHB[4]             17    80   129    24 
+	00035: CALL       
+	00036: RTHG       
+	00037: SRP0       
+	00038: MIRP[srp0,nmd,rd,0] 
+	00039: MIRP[nrp0,nmd,rd,0] 
+	00040: MIRP[nrp0,nmd,rd,0] 
+	00041: RTG        
+	00042: MIRP[srp0,nmd,rd,2] 
+	00043: SVTCA[y-axis] 
+	00044: MIAP[rd+ci] 
+	00045: RTHG       
+	00046: SMD        
+	00047: MIRP[nrp0,md,rd,1] 
+	00048: MIRP[srp0,nmd,rd,0] 
+	00049: MIRP[srp0,nmd,rd,0] 
+	00050: IUP[y]     
+	00051: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:                                      Off
+	  3:        XDual         Y-Short X-Short On
+	  4:                      Y-Short X-Short Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   613,  1222)  ->  Abs (   613,  1222)
+	  1: Rel (    89,  -151)  ->  Abs (   702,  1071)
+	  2: Rel (   276,  -368)  ->  Abs (   978,   703)
+	  3: Rel (    93,  -103)  ->  Abs (  1071,   600)
+	  4: Rel (   -76,   -79)  ->  Abs (   995,   521)
+	  5: Rel (  -166,  -223)  ->  Abs (   829,   298)
+	  6: Rel (  -136,  -182)  ->  Abs (   693,   116)
+	  7: Rel (   -79,  -140)  ->  Abs (   614,   -24)
+	  8: Rel (   -26,    50)  ->  Abs (   588,    26)
+	  9: Rel (   -43,    64)  ->  Abs (   545,    90)
+	 10: Rel (   -76,   113)  ->  Abs (   469,   203)
+	 11: Rel (  -120,   160)  ->  Abs (   349,   363)
+	 12: Rel (   -30,    40)  ->  Abs (   319,   403)
+	 13: Rel (  -160,   197)  ->  Abs (   159,   600)
+	 14: Rel (   101,   115)  ->  Abs (   260,   715)
+	 15: Rel (   157,   210)  ->  Abs (   417,   925)
+	 16: Rel (   117,   156)  ->  Abs (   534,  1081)
+
+	Glyph 392: off = 0x000162FE, len = 194
+	  numberOfContours:	1
+	  xMin:			271
+	  yMin:			29
+	  xMax:			901
+	  yMax:			1153
+
+	EndPoints
+	---------
+	  0:  27
+
+	  Length of Instructions:	108
+	00000: NPUSHB      (16):   123     4   139     4   170     4     3     0    10     3 
+	                            15    25     2   151    19    10 
+	00018: PUSHW[3]            765    25   315 
+	00025: NPUSHB      (39):    19    10     9    77    10    10    12     1     0    36 
+	                            16    16     2     2    28    29    12    44    15     7 
+	                            31     7   223     7     3    15     7    47     7    63 
+	                             7     3     7    26    29    22    25    28   163 
+	00066: PUSHW[2]            335    24 
+	00071: CALL       
+	00072: FLIPOFF    
+	00073: SRP0       
+	00074: MIRP[nrp0,nmd,rd,0] 
+	00075: SRP0       
+	00076: MIRP[srp0,nmd,rd,2] 
+	00077: DELTAP1    
+	00078: DELTAP1    
+	00079: FLIPON     
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: SRP1       
+	00082: SRP2       
+	00083: IP         
+	00084: MDAP[rd]   
+	00085: ALIGNRP    
+	00086: SRP0       
+	00087: MIRP[srp0,md,rd,1] 
+	00088: ALIGNRP    
+	00089: SRP2       
+	00090: IP         
+	00091: MDAP[rd]   
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: SVTCA[y-axis] 
+	00094: MIAP[rd+ci] 
+	00095: MIRP[srp0,md,rd,1] 
+	00096: MIRP[nrp0,nmd,rd,0] 
+	00097: SRP0       
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: SRP1       
+	00100: IP         
+	00101: IP         
+	00102: SRP2       
+	00103: IP         
+	00104: IUP[y]     
+	00105: IUP[x]     
+	00106: SVTCA[x-axis] 
+	00107: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short X-Short On
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                      Y-Short X-Short On
+	 10:  YDual                       X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:        XDual                         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   563,   303)  ->  Abs (   563,   303)
+	  1: Rel (     0,   850)  ->  Abs (   563,  1153)
+	  2: Rel (    75,     0)  ->  Abs (   638,  1153)
+	  3: Rel (     0,  -101)  ->  Abs (   638,  1052)
+	  4: Rel (   155,  -191)  ->  Abs (   793,   861)
+	  5: Rel (    50,   -70)  ->  Abs (   843,   791)
+	  6: Rel (    58,  -164)  ->  Abs (   901,   627)
+	  7: Rel (     0,   -84)  ->  Abs (   901,   543)
+	  8: Rel (     0,  -154)  ->  Abs (   901,   389)
+	  9: Rel (   -95,  -117)  ->  Abs (   806,   272)
+	 10: Rel (   -47,     0)  ->  Abs (   759,   272)
+	 11: Rel (    59,   130)  ->  Abs (   818,   402)
+	 12: Rel (     0,   119)  ->  Abs (   818,   521)
+	 13: Rel (     0,   119)  ->  Abs (   818,   640)
+	 14: Rel (  -115,   159)  ->  Abs (   703,   799)
+	 15: Rel (   -65,    10)  ->  Abs (   638,   809)
+	 16: Rel (     0,  -506)  ->  Abs (   638,   303)
+	 17: Rel (     0,  -124)  ->  Abs (   638,   179)
+	 18: Rel (  -145,  -150)  ->  Abs (   493,    29)
+	 19: Rel (  -107,     0)  ->  Abs (   386,    29)
+	 20: Rel (   -57,     0)  ->  Abs (   329,    29)
+	 21: Rel (   -58,    54)  ->  Abs (   271,    83)
+	 22: Rel (     0,    45)  ->  Abs (   271,   128)
+	 23: Rel (     0,    76)  ->  Abs (   271,   204)
+	 24: Rel (   119,   117)  ->  Abs (   390,   321)
+	 25: Rel (    83,     0)  ->  Abs (   473,   321)
+	 26: Rel (    23,     0)  ->  Abs (   496,   321)
+	 27: Rel (    45,    -9)  ->  Abs (   541,   312)
+
+	Glyph 393: off = 0x000163C0, len = 280
+	  numberOfContours:	2
+	  xMin:			90
+	  yMin:			-43
+	  xMax:			1082
+	  yMax:			1159
+
+	EndPoints
+	---------
+	  0:  29
+	  1:  33
+
+	  Length of Instructions:	169
+	00000: NPUSHB      (30):     9    28     9    33    29    28    29    33     4    29 
+	                            28    28   192    33    32    20    33    33    32    13 
+	                            14    14   192    30    31    20    30    30    31     9 
+	00032: PUSHW[4]            315    64     3   773 
+	00041: NPUSHB       (9):    18    52    31    68    31   100    31     3    32 
+	00052: PUSHW[1]            481 
+	00055: NPUSHB      (12):    31     7    32    30    48    30    64    30    96    30 
+	                             4    30 
+	00069: PUSHW[1]            481 
+	00072: PUSHB[4]             32    33     6    24 
+	00077: PUSHW[1]            315 
+	00080: NPUSHB      (32):    18    11     6   118    13    31    32    12    36    29 
+	                            47     0    63     0     2     0    26    35    14    30 
+	                            33    15    36    28    27   118    21    25    34   176 
+	                           129    24 
+	00114: CALL       
+	00115: FLIPOFF    
+	00116: SRP0       
+	00117: MIRP[srp0,nmd,rd,0] 
+	00118: FLIPON     
+	00119: MIRP[srp0,md,rd,1] 
+	00120: ALIGNRP    
+	00121: MIRP[srp0,md,rd,1] 
+	00122: ALIGNRP    
+	00123: ALIGNRP    
+	00124: ALIGNRP    
+	00125: FLIPOFF    
+	00126: SRP0       
+	00127: MIRP[srp0,nmd,rd,2] 
+	00128: DELTAP1    
+	00129: ALIGNRP    
+	00130: FLIPON     
+	00131: MIRP[srp0,md,rd,1] 
+	00132: ALIGNRP    
+	00133: ALIGNRP    
+	00134: ALIGNRP    
+	00135: MIRP[nrp0,md,rd,1] 
+	00136: SVTCA[y-axis] 
+	00137: MIAP[rd+ci] 
+	00138: MIRP[nrp0,md,rd,1] 
+	00139: MIAP[rd+ci] 
+	00140: SMD        
+	00141: RTHG       
+	00142: MIRP[nrp0,md,rd,2] 
+	00143: DELTAP1    
+	00144: MIAP[rd+ci] 
+	00145: MIRP[nrp0,md,rd,2] 
+	00146: DELTAP1    
+	00147: RTG        
+	00148: SRP0       
+	00149: MIRP[srp0,nmd,rd,0] 
+	00150: SMD        
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: SDPVTL[1]  
+	00153: MDAP[nrd]  
+	00154: CALL       
+	00155: RDTG       
+	00156: SRP0       
+	00157: MDRP[nrp0,nmd,rd,0] 
+	00158: SDPVTL[1]  
+	00159: MDAP[nrd]  
+	00160: RTG        
+	00161: CALL       
+	00162: RDTG       
+	00163: SRP0       
+	00164: MDRP[nrp0,nmd,rd,0] 
+	00165: IUP[y]     
+	00166: IUP[x]     
+	00167: SVTCA[y-axis] 
+	00168: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:        XDual                         On
+	 14:                      Y-Short         On
+	 15:        XDual                         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:        XDual                         On
+	 29:  YDual               Y-Short         On
+	 30:                                      On
+	 31:  YDual               Y-Short         On
+	 32:  YDual XDual         Y-Short         On
+	 33:                      Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1082,   323)  ->  Abs (  1082,   323)
+	  1: Rel (     0,  -125)  ->  Abs (  1082,   198)
+	  2: Rel (  -148,  -148)  ->  Abs (   934,    50)
+	  3: Rel (  -103,     0)  ->  Abs (   831,    50)
+	  4: Rel (   -57,     0)  ->  Abs (   774,    50)
+	  5: Rel (   -58,    54)  ->  Abs (   716,   104)
+	  6: Rel (     0,    45)  ->  Abs (   716,   149)
+	  7: Rel (     0,    76)  ->  Abs (   716,   225)
+	  8: Rel (   119,   116)  ->  Abs (   835,   341)
+	  9: Rel (    82,     0)  ->  Abs (   917,   341)
+	 10: Rel (    23,     0)  ->  Abs (   940,   341)
+	 11: Rel (    45,    -9)  ->  Abs (   985,   332)
+	 12: Rel (    22,    -9)  ->  Abs (  1007,   323)
+	 13: Rel (     0,   450)  ->  Abs (  1007,   773)
+	 14: Rel (  -550,  -150)  ->  Abs (   457,   623)
+	 15: Rel (     0,  -393)  ->  Abs (   457,   230)
+	 16: Rel (     0,  -124)  ->  Abs (   457,   106)
+	 17: Rel (  -145,  -149)  ->  Abs (   312,   -43)
+	 18: Rel (  -107,     0)  ->  Abs (   205,   -43)
+	 19: Rel (   -57,     0)  ->  Abs (   148,   -43)
+	 20: Rel (   -58,    54)  ->  Abs (    90,    11)
+	 21: Rel (     0,    45)  ->  Abs (    90,    56)
+	 22: Rel (     0,    75)  ->  Abs (    90,   131)
+	 23: Rel (   119,   116)  ->  Abs (   209,   247)
+	 24: Rel (    83,     0)  ->  Abs (   292,   247)
+	 25: Rel (    23,     0)  ->  Abs (   315,   247)
+	 26: Rel (    45,    -8)  ->  Abs (   360,   239)
+	 27: Rel (    22,    -9)  ->  Abs (   382,   230)
+	 28: Rel (     0,   750)  ->  Abs (   382,   980)
+	 29: Rel (   700,   179)  ->  Abs (  1082,  1159)
+	 30: Rel (  -625,  -409)  ->  Abs (   457,   750)
+	 31: Rel (   550,   150)  ->  Abs (  1007,   900)
+	 32: Rel (     0,   115)  ->  Abs (  1007,  1015)
+	 33: Rel (  -550,  -150)  ->  Abs (   457,   865)
+
+	Glyph 394: off = 0x000164D8, len = 616
+	  numberOfContours:	2
+	  xMin:			9
+	  yMin:			-33
+	  xMax:			1220
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  31
+	  1:  68
+
+	  Length of Instructions:	430
+	00000: NPUSHB      (30):     0    34     0    50     0    51    19    51    99    51 
+	                           112    51     6    46    51    59    51    91    51   111 
+	                            51   127    50   143    51     6    46     8    62    68 
+	00032: PUSHW[1]            676 
+	00035: NPUSHB      (19):     0    65     1   112    65   128    65     2    80    65 
+	                            96    65     2     0    65    16    65     2    65 
+	00056: PUSHW[1]            354 
+	00059: NPUSHB       (9):    32    65    65    68    32    29    62    61    55 
+	00070: PUSHW[1]            676 
+	00073: NPUSHB      (11):    58    86    54    58    58    55    54    29    61     9 
+	                            15 
+	00086: PUSHW[3]            676    12   354 
+	00093: NPUSHB       (9):    16    12    12    15    16    29     9    25    31 
+	00104: PUSHW[3]            676    28   354 
+	00111: NPUSHB       (9):     0    28    28    31     0    29    25     8     2 
+	00122: PUSHW[3]            676     5   354 
+	00129: NPUSHB       (9):     1     5     5     2     1    29     8    24    18 
+	00140: PUSHW[3]            676    21   354 
+	00147: NPUSHB      (62):    17    21    21    18    17    29    24    46    38    42 
+	                            49    38    36     9    68    38    62    55    38    62 
+	                            61     2    42    42    61    49    31    38    25    18 
+	                            38    25    24     2     2    38     8    15    38     9 
+	                             9     8     8    32    30    54    54    33    30     0 
+	                            53     1     0    53    16    53    32    53    48    53 
+	                             4    53 
+	00211: PUSHW[1]            626 
+	00214: NPUSHB      (13):    46    46    45    38    39    39   143    38     1    96 
+	                            38     1    38 
+	00229: PUSHW[1]            724 
+	00232: PUSHB[5]              0     1    30    17    16 
+	00238: PUSHW[5]            724    69   294   287    24 
+	00249: CALL       
+	00250: SRP0       
+	00251: MIRP[srp0,nmd,rd,2] 
+	00252: ALIGNRP    
+	00253: MIRP[srp0,md,rd,1] 
+	00254: ALIGNRP    
+	00255: MIRP[srp0,nmd,rd,2] 
+	00256: DELTAP1    
+	00257: DELTAP2    
+	00258: ALIGNRP    
+	00259: SRP0       
+	00260: MIRP[srp0,md,rd,1] 
+	00261: ALIGNRP    
+	00262: SRP0       
+	00263: MIRP[srp0,nmd,rd,2] 
+	00264: DELTAP1    
+	00265: DELTAP1    
+	00266: MIRP[nrp0,md,rd,1] 
+	00267: ALIGNRP    
+	00268: SRP0       
+	00269: MIRP[nrp0,md,rd,1] 
+	00270: SVTCA[y-axis] 
+	00271: MIAP[rd+ci] 
+	00272: ALIGNRP    
+	00273: SRP0       
+	00274: MIRP[nrp0,md,rd,1] 
+	00275: SRP0       
+	00276: MIRP[nrp0,md,rd,1] 
+	00277: MIAP[rd+ci] 
+	00278: ALIGNRP    
+	00279: MIRP[nrp0,md,rd,1] 
+	00280: SRP0       
+	00281: MIRP[nrp0,md,rd,1] 
+	00282: SRP1       
+	00283: SRP2       
+	00284: IP         
+	00285: MDAP[rd]   
+	00286: MIAP[rd+ci] 
+	00287: ALIGNRP    
+	00288: MIRP[nrp0,md,rd,1] 
+	00289: SRP0       
+	00290: MIRP[nrp0,md,rd,1] 
+	00291: MIAP[rd+ci] 
+	00292: MIRP[srp0,md,rd,1] 
+	00293: SRP1       
+	00294: IP         
+	00295: IP         
+	00296: SRP0       
+	00297: MIRP[srp0,md,rd,1] 
+	00298: RTDG       
+	00299: SRP2       
+	00300: IP         
+	00301: MDAP[rd]   
+	00302: RTG        
+	00303: SVTCA[x-axis] 
+	00304: SRP0       
+	00305: MIRP[srp0,nmd,rd,1] 
+	00306: MIRP[srp0,nmd,rd,0] 
+	00307: MDRP[nrp0,nmd,rd,0] 
+	00308: SVTCA[y-axis] 
+	00309: SRP0       
+	00310: MIRP[srp0,md,rd,1] 
+	00311: RTDG       
+	00312: SRP2       
+	00313: IP         
+	00314: MDAP[rd]   
+	00315: RTG        
+	00316: SVTCA[x-axis] 
+	00317: SRP0       
+	00318: MIRP[srp0,nmd,rd,1] 
+	00319: MIRP[srp0,nmd,rd,0] 
+	00320: MDRP[nrp0,nmd,rd,0] 
+	00321: SVTCA[y-axis] 
+	00322: SRP0       
+	00323: MIRP[srp0,md,rd,1] 
+	00324: RTDG       
+	00325: SRP2       
+	00326: IP         
+	00327: MDAP[rd]   
+	00328: RTG        
+	00329: SVTCA[x-axis] 
+	00330: SRP0       
+	00331: MIRP[srp0,nmd,rd,1] 
+	00332: MIRP[srp0,nmd,rd,0] 
+	00333: MDRP[nrp0,nmd,rd,0] 
+	00334: SVTCA[y-axis] 
+	00335: SRP0       
+	00336: MIRP[srp0,md,rd,1] 
+	00337: RTDG       
+	00338: SRP2       
+	00339: IP         
+	00340: MDAP[rd]   
+	00341: RTG        
+	00342: SVTCA[x-axis] 
+	00343: SRP0       
+	00344: MIRP[srp0,nmd,rd,1] 
+	00345: MIRP[srp0,nmd,rd,0] 
+	00346: MDRP[nrp0,nmd,rd,0] 
+	00347: SVTCA[y-axis] 
+	00348: SRP0       
+	00349: MIRP[srp0,md,rd,1] 
+	00350: RTDG       
+	00351: SRP2       
+	00352: IP         
+	00353: MDAP[rd]   
+	00354: RTG        
+	00355: SVTCA[x-axis] 
+	00356: SRP0       
+	00357: MIRP[srp0,nmd,rd,1] 
+	00358: MIRP[srp0,nmd,rd,0] 
+	00359: MDRP[nrp0,nmd,rd,0] 
+	00360: SVTCA[y-axis] 
+	00361: SRP0       
+	00362: MIRP[srp0,md,rd,1] 
+	00363: RTDG       
+	00364: SRP2       
+	00365: IP         
+	00366: MDAP[rd]   
+	00367: RTG        
+	00368: SVTCA[x-axis] 
+	00369: SRP0       
+	00370: MIRP[srp0,nmd,rd,1] 
+	00371: DELTAP1    
+	00372: DELTAP1    
+	00373: DELTAP1    
+	00374: DELTAP2    
+	00375: MIRP[srp0,nmd,rd,0] 
+	00376: MDRP[nrp0,nmd,rd,0] 
+	00377: RS         
+	00378: JROF       
+	00379: NPUSHB      (30):    47    52    34    37    51    37    50    35    53    45 
+	                             1    48    37    46    57     0    47    46    37    38 
+	                            52    34    49    45     0    47    37    49    57     0 
+	00411: SVTCA[y-axis] 
+	00412: CALL       
+	00413: CALL       
+	00414: SVTCA[x-axis] 
+	00415: SRP0       
+	00416: ALIGNRP    
+	00417: SRP0       
+	00418: ALIGNRP    
+	00419: CALL       
+	00420: CALL       
+	00421: CALL       
+	00422: FLIPRGON   
+	00423: FLIPRGON   
+	00424: IUP[y]     
+	00425: IUP[x]     
+	00426: SVTCA[x-axis] 
+	00427: DELTAP1    
+	00428: SVTCA[y-axis] 
+	00429: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual                               On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:                      Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                               On
+	 33:        XDual                         On
+	 34:        XDual         Y-Short         Off
+	 35:                      Y-Short X-Short Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:  YDual               Y-Short X-Short On
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:        XDual         Y-Short X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         On
+	 47:        XDual         Y-Short X-Short Off
+	 48:        XDual         Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short         On
+	 54:        XDual                         On
+	 55:  YDual                       X-Short On
+	 56:  YDual                       X-Short Off
+	 57:  YDual               Y-Short X-Short Off
+	 58:  YDual XDual         Y-Short         On
+	 59:  YDual XDual         Y-Short         Off
+	 60:  YDual XDual         Y-Short X-Short Off
+	 61:  YDual XDual                 X-Short On
+	 62:  YDual                               On
+	 63:  YDual XDual                 X-Short Off
+	 64:        XDual         Y-Short X-Short Off
+	 65:        XDual         Y-Short         On
+	 66:        XDual         Y-Short         Off
+	 67:                      Y-Short X-Short Off
+	 68:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   280,  1086)  ->  Abs (   280,  1086)
+	  1: Rel (     0, -1002)  ->  Abs (   280,    84)
+	  2: Rel (   131,     0)  ->  Abs (   411,    84)
+	  3: Rel (    31,     0)  ->  Abs (   442,    84)
+	  4: Rel (    26,   -23)  ->  Abs (   468,    61)
+	  5: Rel (     0,   -19)  ->  Abs (   468,    42)
+	  6: Rel (     0,   -18)  ->  Abs (   468,    24)
+	  7: Rel (   -26,   -24)  ->  Abs (   442,     0)
+	  8: Rel (   -31,     0)  ->  Abs (   411,     0)
+	  9: Rel (  -346,     0)  ->  Abs (    65,     0)
+	 10: Rel (   -30,     0)  ->  Abs (    35,     0)
+	 11: Rel (   -26,    24)  ->  Abs (     9,    24)
+	 12: Rel (     0,    18)  ->  Abs (     9,    42)
+	 13: Rel (     0,    19)  ->  Abs (     9,    61)
+	 14: Rel (    26,    23)  ->  Abs (    35,    84)
+	 15: Rel (    30,     0)  ->  Abs (    65,    84)
+	 16: Rel (   131,     0)  ->  Abs (   196,    84)
+	 17: Rel (     0,  1002)  ->  Abs (   196,  1086)
+	 18: Rel (  -131,     0)  ->  Abs (    65,  1086)
+	 19: Rel (   -30,     0)  ->  Abs (    35,  1086)
+	 20: Rel (   -26,    23)  ->  Abs (     9,  1109)
+	 21: Rel (     0,    19)  ->  Abs (     9,  1128)
+	 22: Rel (     0,    19)  ->  Abs (     9,  1147)
+	 23: Rel (    26,    23)  ->  Abs (    35,  1170)
+	 24: Rel (    30,     0)  ->  Abs (    65,  1170)
+	 25: Rel (   346,     0)  ->  Abs (   411,  1170)
+	 26: Rel (    31,     0)  ->  Abs (   442,  1170)
+	 27: Rel (    26,   -23)  ->  Abs (   468,  1147)
+	 28: Rel (     0,   -19)  ->  Abs (   468,  1128)
+	 29: Rel (     0,   -19)  ->  Abs (   468,  1109)
+	 30: Rel (   -26,   -23)  ->  Abs (   442,  1086)
+	 31: Rel (   -31,     0)  ->  Abs (   411,  1086)
+	 32: Rel (   625,     0)  ->  Abs (  1036,  1086)
+	 33: Rel (     0,  -742)  ->  Abs (  1036,   344)
+	 34: Rel (     0,  -188)  ->  Abs (  1036,   156)
+	 35: Rel (  -162,  -189)  ->  Abs (   874,   -33)
+	 36: Rel (  -115,     0)  ->  Abs (   759,   -33)
+	 37: Rel (  -156,     0)  ->  Abs (   603,   -33)
+	 38: Rel (  -110,   186)  ->  Abs (   493,   153)
+	 39: Rel (     0,   189)  ->  Abs (   493,   342)
+	 40: Rel (     0,    30)  ->  Abs (   493,   372)
+	 41: Rel (    24,    27)  ->  Abs (   517,   399)
+	 42: Rel (    19,     0)  ->  Abs (   536,   399)
+	 43: Rel (    18,     0)  ->  Abs (   554,   399)
+	 44: Rel (    24,   -26)  ->  Abs (   578,   373)
+	 45: Rel (     0,   -31)  ->  Abs (   578,   342)
+	 46: Rel (     0,  -165)  ->  Abs (   578,   177)
+	 47: Rel (    46,   -69)  ->  Abs (   624,   108)
+	 48: Rel (    84,   -57)  ->  Abs (   708,    51)
+	 49: Rel (    51,     0)  ->  Abs (   759,    51)
+	 50: Rel (    80,     0)  ->  Abs (   839,    51)
+	 51: Rel (    49,    62)  ->  Abs (   888,   113)
+	 52: Rel (    64,    81)  ->  Abs (   952,   194)
+	 53: Rel (     0,   150)  ->  Abs (   952,   344)
+	 54: Rel (     0,   742)  ->  Abs (   952,  1086)
+	 55: Rel (  -246,     0)  ->  Abs (   706,  1086)
+	 56: Rel (   -30,     0)  ->  Abs (   676,  1086)
+	 57: Rel (   -26,    23)  ->  Abs (   650,  1109)
+	 58: Rel (     0,    19)  ->  Abs (   650,  1128)
+	 59: Rel (     0,    19)  ->  Abs (   650,  1147)
+	 60: Rel (    26,    23)  ->  Abs (   676,  1170)
+	 61: Rel (    30,     0)  ->  Abs (   706,  1170)
+	 62: Rel (   458,     0)  ->  Abs (  1164,  1170)
+	 63: Rel (    30,     0)  ->  Abs (  1194,  1170)
+	 64: Rel (    26,   -23)  ->  Abs (  1220,  1147)
+	 65: Rel (     0,   -19)  ->  Abs (  1220,  1128)
+	 66: Rel (     0,   -19)  ->  Abs (  1220,  1109)
+	 67: Rel (   -26,   -23)  ->  Abs (  1194,  1086)
+	 68: Rel (   -30,     0)  ->  Abs (  1164,  1086)
+
+	Glyph 395: off = 0x00016740, len = 494
+	  numberOfContours:	4
+	  xMin:			19
+	  yMin:			-386
+	  xMax:			1020
+	  yMax:			1297
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+	  2:  32
+	  3:  58
+
+	  Length of Instructions:	323
+	00000: NPUSHB      (16):   133    57   169    44   187    44   204    44     4    69 
+	                            44    69    57     2    40    34 
+	00018: PUSHW[3]            686    37   506 
+	00025: NPUSHB       (9):    33    37    37    34    33    34    40    16    10 
+	00036: PUSHW[3]            686    13   279 
+	00043: NPUSHB       (9):     9    13    13    10     9    34    16    17    23 
+	00054: PUSHW[3]            686    20   279 
+	00061: NPUSHB       (9):    24    20    20    23    24    34    17    32    26 
+	00072: PUSHW[1]            686 
+	00075: NPUSHB      (14):    29   149    25    29    29    26    25    34    32     4 
+	                             7   197     5     6 
+	00091: PUSHW[1]            404 
+	00094: NPUSHB      (22):    40    33    59    41    34    59    41    40     6    55 
+	                            59    47    54    59    47    48    14     3     0   197 
+	                             1     2 
+	00118: PUSHW[1]            404 
+	00121: NPUSHB      (21):     8    26    59    32    25    59    32     8     6    23 
+	                            59    17    17    10    59    16    10     7     6     4 
+	                             6 
+	00144: PUSHW[1]            351 
+	00147: PUSHB[7]             63     5     1     5   136    41    51 
+	00155: PUSHW[1]            425 
+	00158: NPUSHB      (10):    58    42    41    58    41    32    48    33     1    33 
+	00170: PUSHW[4]            431    24     3   351 
+	00179: PUSHB[3]              0     0     2 
+	00183: PUSHW[1]            351 
+	00186: NPUSHB      (11):     1    84     8     8     9    32    25    16    24     1 
+	                            24 
+	00199: PUSHW[1]            675 
+	00202: PUSHB[4]             59   152   128    24 
+	00207: CALL       
+	00208: SRP0       
+	00209: MIRP[srp0,nmd,rd,0] 
+	00210: DELTAP1    
+	00211: ALIGNRP    
+	00212: MIRP[srp0,md,rd,1] 
+	00213: ALIGNRP    
+	00214: SRP0       
+	00215: MIRP[srp0,nmd,rd,0] 
+	00216: MIRP[nrp0,md,rd,1] 
+	00217: ALIGNRP    
+	00218: SRP0       
+	00219: MIRP[nrp0,md,rd,1] 
+	00220: SRP0       
+	00221: MIRP[srp0,nmd,rd,0] 
+	00222: DELTAP1    
+	00223: MIRP[nrp0,md,rd,1] 
+	00224: ALIGNRP    
+	00225: SRP0       
+	00226: ALIGNRP    
+	00227: SRP0       
+	00228: MIRP[nrp0,nmd,rd,0] 
+	00229: SRP0       
+	00230: MIRP[srp0,nmd,rd,0] 
+	00231: DELTAP1    
+	00232: MIRP[nrp0,md,rd,1] 
+	00233: ALIGNRP    
+	00234: SRP0       
+	00235: ALIGNRP    
+	00236: SVTCA[y-axis] 
+	00237: MIAP[rd+ci] 
+	00238: MIRP[nrp0,md,rd,1] 
+	00239: ALIGNRP    
+	00240: SRP0       
+	00241: MIRP[nrp0,md,rd,1] 
+	00242: MIAP[rd+ci] 
+	00243: ALIGNRP    
+	00244: MIRP[nrp0,md,rd,1] 
+	00245: SRP0       
+	00246: MIRP[nrp0,md,rd,1] 
+	00247: SRP0       
+	00248: MIRP[srp0,nmd,rd,2] 
+	00249: ALIGNRP    
+	00250: MIRP[srp0,md,rd,1] 
+	00251: ALIGNRP    
+	00252: MIAP[rd+ci] 
+	00253: ALIGNRP    
+	00254: MIRP[nrp0,md,rd,1] 
+	00255: SRP0       
+	00256: MIRP[nrp0,md,rd,1] 
+	00257: MIAP[rd+ci] 
+	00258: ALIGNRP    
+	00259: MIRP[nrp0,md,rd,1] 
+	00260: SRP0       
+	00261: MIRP[nrp0,md,rd,1] 
+	00262: SRP0       
+	00263: MIRP[srp0,nmd,rd,2] 
+	00264: ALIGNRP    
+	00265: MIRP[srp0,md,rd,1] 
+	00266: ALIGNRP    
+	00267: SRP0       
+	00268: MIRP[srp0,md,rd,1] 
+	00269: RTDG       
+	00270: SRP2       
+	00271: IP         
+	00272: MDAP[rd]   
+	00273: RTG        
+	00274: SVTCA[x-axis] 
+	00275: SRP0       
+	00276: MIRP[srp0,nmd,rd,1] 
+	00277: MIRP[srp0,nmd,rd,0] 
+	00278: MDRP[nrp0,nmd,rd,0] 
+	00279: SVTCA[y-axis] 
+	00280: SRP0       
+	00281: MIRP[srp0,md,rd,1] 
+	00282: RTDG       
+	00283: SRP2       
+	00284: IP         
+	00285: MDAP[rd]   
+	00286: RTG        
+	00287: SVTCA[x-axis] 
+	00288: SRP0       
+	00289: MIRP[srp0,nmd,rd,1] 
+	00290: MIRP[srp0,nmd,rd,0] 
+	00291: MDRP[nrp0,nmd,rd,0] 
+	00292: SVTCA[y-axis] 
+	00293: SRP0       
+	00294: MIRP[srp0,md,rd,1] 
+	00295: RTDG       
+	00296: SRP2       
+	00297: IP         
+	00298: MDAP[rd]   
+	00299: RTG        
+	00300: SVTCA[x-axis] 
+	00301: SRP0       
+	00302: MIRP[srp0,nmd,rd,1] 
+	00303: MIRP[srp0,nmd,rd,0] 
+	00304: MDRP[nrp0,nmd,rd,0] 
+	00305: SVTCA[y-axis] 
+	00306: SRP0       
+	00307: MIRP[srp0,md,rd,1] 
+	00308: RTDG       
+	00309: SRP2       
+	00310: IP         
+	00311: MDAP[rd]   
+	00312: RTG        
+	00313: SVTCA[x-axis] 
+	00314: SRP0       
+	00315: MIRP[srp0,nmd,rd,1] 
+	00316: MIRP[srp0,nmd,rd,0] 
+	00317: MDRP[nrp0,nmd,rd,0] 
+	00318: IUP[y]     
+	00319: IUP[x]     
+	00320: SVTCA[y-axis] 
+	00321: DELTAP2    
+	00322: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual                               On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                       X-Short On
+	  7:  YDual XDual         Y-Short         On
+	  8:                                      On
+	  9:        XDual                         On
+	 10:  YDual                               On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                               On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual                               On
+	 25:        XDual                         On
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:                      Y-Short         On
+	 34:  YDual                               On
+	 35:  YDual                       X-Short Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual                               On
+	 42:        XDual                         On
+	 43:        XDual         Y-Short         Off
+	 44:                      Y-Short X-Short Off
+	 45:                      Y-Short X-Short On
+	 46:                      Y-Short X-Short Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short On
+	 49:  YDual                       X-Short Off
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         Off
+	 53:  YDual XDual         Y-Short X-Short Off
+	 54:  YDual XDual                 X-Short On
+	 55:        XDual         Y-Short X-Short On
+	 56:  YDual XDual                 X-Short Off
+	 57:  YDual XDual         Y-Short X-Short Off
+	 58:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   437,  1297)  ->  Abs (   437,  1297)
+	  1: Rel (     0,  -217)  ->  Abs (   437,  1080)
+	  2: Rel (  -123,     0)  ->  Abs (   314,  1080)
+	  3: Rel (     0,   217)  ->  Abs (   314,  1297)
+	  4: Rel (   591,     0)  ->  Abs (   905,  1297)
+	  5: Rel (     0,  -217)  ->  Abs (   905,  1080)
+	  6: Rel (  -124,     0)  ->  Abs (   781,  1080)
+	  7: Rel (     0,   217)  ->  Abs (   781,  1297)
+	  8: Rel (  -352,  -431)  ->  Abs (   429,   866)
+	  9: Rel (     0,  -782)  ->  Abs (   429,    84)
+	 10: Rel (   270,     0)  ->  Abs (   699,    84)
+	 11: Rel (    30,     0)  ->  Abs (   729,    84)
+	 12: Rel (    26,   -23)  ->  Abs (   755,    61)
+	 13: Rel (     0,   -19)  ->  Abs (   755,    42)
+	 14: Rel (     0,   -18)  ->  Abs (   755,    24)
+	 15: Rel (   -26,   -24)  ->  Abs (   729,     0)
+	 16: Rel (   -30,     0)  ->  Abs (   699,     0)
+	 17: Rel (  -624,     0)  ->  Abs (    75,     0)
+	 18: Rel (   -30,     0)  ->  Abs (    45,     0)
+	 19: Rel (   -26,    24)  ->  Abs (    19,    24)
+	 20: Rel (     0,    18)  ->  Abs (    19,    42)
+	 21: Rel (     0,    19)  ->  Abs (    19,    61)
+	 22: Rel (    26,    23)  ->  Abs (    45,    84)
+	 23: Rel (    30,     0)  ->  Abs (    75,    84)
+	 24: Rel (   270,     0)  ->  Abs (   345,    84)
+	 25: Rel (     0,   697)  ->  Abs (   345,   781)
+	 26: Rel (  -246,     0)  ->  Abs (    99,   781)
+	 27: Rel (   -30,     0)  ->  Abs (    69,   781)
+	 28: Rel (   -26,    24)  ->  Abs (    43,   805)
+	 29: Rel (     0,    18)  ->  Abs (    43,   823)
+	 30: Rel (     0,    19)  ->  Abs (    43,   842)
+	 31: Rel (    26,    24)  ->  Abs (    69,   866)
+	 32: Rel (    30,     0)  ->  Abs (    99,   866)
+	 33: Rel (   837,   -85)  ->  Abs (   936,   781)
+	 34: Rel (  -298,     0)  ->  Abs (   638,   781)
+	 35: Rel (   -30,     0)  ->  Abs (   608,   781)
+	 36: Rel (   -26,    24)  ->  Abs (   582,   805)
+	 37: Rel (     0,    19)  ->  Abs (   582,   824)
+	 38: Rel (     0,    18)  ->  Abs (   582,   842)
+	 39: Rel (    26,    24)  ->  Abs (   608,   866)
+	 40: Rel (    30,     0)  ->  Abs (   638,   866)
+	 41: Rel (   382,     0)  ->  Abs (  1020,   866)
+	 42: Rel (     0,  -925)  ->  Abs (  1020,   -59)
+	 43: Rel (     0,  -107)  ->  Abs (  1020,  -166)
+	 44: Rel (   -88,  -144)  ->  Abs (   932,  -310)
+	 45: Rel (   -88,   -45)  ->  Abs (   844,  -355)
+	 46: Rel (   -61,   -31)  ->  Abs (   783,  -386)
+	 47: Rel (   -83,     0)  ->  Abs (   700,  -386)
+	 48: Rel (  -207,     0)  ->  Abs (   493,  -386)
+	 49: Rel (   -30,     0)  ->  Abs (   463,  -386)
+	 50: Rel (   -26,    23)  ->  Abs (   437,  -363)
+	 51: Rel (     0,    19)  ->  Abs (   437,  -344)
+	 52: Rel (     0,    19)  ->  Abs (   437,  -325)
+	 53: Rel (    26,    24)  ->  Abs (   463,  -301)
+	 54: Rel (    30,     0)  ->  Abs (   493,  -301)
+	 55: Rel (   205,    -1)  ->  Abs (   698,  -302)
+	 56: Rel (   106,     0)  ->  Abs (   804,  -302)
+	 57: Rel (   132,   140)  ->  Abs (   936,  -162)
+	 58: Rel (     0,   103)  ->  Abs (   936,   -59)
+
+	Glyph 396: off = 0x0001692E, len = 44
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1111
+	  yMax:			1255
+
+	     0: Flags:		0x0226
+		Glyf Index:	81
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	493
+		X WOffset:	-520
+		Y WOffset:	1364
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]             72    75     1     1    63 
+	00006: PUSHW[2]            802    41 
+	00011: SVTCA[y-axis] 
+	00012: CALL       
+	00013: SVTCA[x-axis] 
+	00014: SRP0       
+	00015: ALIGNRP    
+	00016: IUP[y]     
+
+	Glyph 397: off = 0x0001695A, len = 86
+	  numberOfContours:	1
+	  xMin:			513
+	  yMin:			655
+	  xMax:			821
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  10
+
+	  Length of Instructions:	39
+	00000: NPUSHB      (13):     5   182     1     0     0     1   178     0     2   146 
+	                             0    62     8 
+	00015: PUSHW[5]            745    11   100   461    24 
+	00026: CALL       
+	00027: SRP0       
+	00028: MIRP[srp0,nmd,rd,2] 
+	00029: MIRP[nrp0,nmd,rd,0] 
+	00030: MIRP[nrp0,md,rd,1] 
+	00031: SRP0       
+	00032: MIRP[nrp0,md,rd,1] 
+	00033: SVTCA[y-axis] 
+	00034: MIAP[rd+ci] 
+	00035: ALIGNRP    
+	00036: MIRP[nrp0,md,rd,1] 
+	00037: IUP[y]     
+	00038: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:                              X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   555,  1255)  ->  Abs (   555,  1255)
+	  1: Rel (   266,     0)  ->  Abs (   821,  1255)
+	  2: Rel (  -182,  -525)  ->  Abs (   639,   730)
+	  3: Rel (   -15,   -43)  ->  Abs (   624,   687)
+	  4: Rel (   -39,   -32)  ->  Abs (   585,   655)
+	  5: Rel (   -25,     0)  ->  Abs (   560,   655)
+	  6: Rel (   -21,     0)  ->  Abs (   539,   655)
+	  7: Rel (   -26,    27)  ->  Abs (   513,   682)
+	  8: Rel (     0,    29)  ->  Abs (   513,   711)
+	  9: Rel (     0,     8)  ->  Abs (   513,   719)
+	 10: Rel (     1,    11)  ->  Abs (   514,   730)
+
+	Glyph 398: off = 0x000169B0, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			293
+	  yMin:			655
+	  xMax:			1031
+	  yMax:			1255
+
+	     0: Flags:		0x0027
+		Glyf Index:	397
+		X WOffset:	-220
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	397
+		X WOffset:	210
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     1    11     0 
+	00005: PUSHW[1]            430 
+	00008: PUSHB[6]             72    39     0     1     0    22 
+	00015: PUSHW[1]            335 
+	00018: PUSHB[2]             72    39 
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: CALL       
+
+	Glyph 399: off = 0x000169E4, len = 436
+	  numberOfContours:	4
+	  xMin:			187
+	  yMin:			-24
+	  xMax:			1044
+	  yMax:			1275
+
+	EndPoints
+	---------
+	  0:  42
+	  1:  62
+	  2:  74
+	  3:  86
+
+	  Length of Instructions:	194
+	00000: PUSHW[2]             23   -64 
+	00005: PUSHB[4]             22    27    52    19 
+	00010: PUSHW[1]            -64 
+	00013: NPUSHB      (14):    22    25    52    85    64    22    25    52    77    64 
+	                            22    25    52    83 
+	00029: PUSHW[1]            -64 
+	00032: PUSHB[4]             22    25    52    79 
+	00037: PUSHW[1]            -64 
+	00040: NPUSHB      (23):    22    25    52    53    55    44    44    78    24    43 
+	                            55    54    54    24    78    55    72   255    84    55 
+	                            66    11    28 
+	00065: PUSHW[1]            399 
+	00068: PUSHB[6]             24    55    35   255    41    12 
+	00075: PUSHW[3]            399     4   771 
+	00082: NPUSHB      (18):    18    55    41     0    81    55    69   255    75    55 
+	                            59    62    95    63   111    63     2    63 
+	00102: PUSHW[1]            487 
+	00105: NPUSHB      (12):    88    31    55    26    62    15     9     8    15     0 
+	                            55     8 
+	00119: PUSHW[1]            368 
+	00122: NPUSHB      (10):    21    55    49    62    80    38    96    38     2    38 
+	00134: PUSHW[1]            487 
+	00137: PUSHB[4]             87   199   188    24 
+	00142: CALL       
+	00143: SRP0       
+	00144: MIRP[srp0,nmd,rd,2] 
+	00145: DELTAP1    
+	00146: MIRP[nrp0,nmd,rd,0] 
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: MIRP[srp0,md,rd,1] 
+	00149: MIRP[srp0,md,rd,1] 
+	00150: ALIGNRP    
+	00151: SRP0       
+	00152: ALIGNRP    
+	00153: SRP0       
+	00154: MIRP[srp0,nmd,rd,0] 
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: SRP0       
+	00157: MIRP[srp0,nmd,rd,2] 
+	00158: DELTAP1    
+	00159: MIRP[nrp0,nmd,rd,0] 
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: MIRP[srp0,md,rd,1] 
+	00162: MIRP[nrp0,md,rd,1] 
+	00163: SVTCA[y-axis] 
+	00164: MIAP[rd+ci] 
+	00165: MIRP[nrp0,md,rd,1] 
+	00166: MIRP[srp0,nmd,rd,0] 
+	00167: MIRP[nrp0,md,rd,1] 
+	00168: SRP0       
+	00169: MIRP[srp0,md,rd,1] 
+	00170: MIRP[nrp0,md,rd,1] 
+	00171: MIRP[nrp0,md,rd,1] 
+	00172: MIAP[rd+ci] 
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: MIRP[srp0,md,rd,1] 
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: SRP1       
+	00177: IP         
+	00178: MDAP[rd]   
+	00179: MIRP[nrp0,md,rd,1] 
+	00180: SRP1       
+	00181: SRP2       
+	00182: IP         
+	00183: MDAP[rd]   
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: IUP[y]     
+	00186: IUP[x]     
+	00187: SVTCA[x-axis] 
+	00188: CALL       
+	00189: CALL       
+	00190: CALL       
+	00191: CALL       
+	00192: CALL       
+	00193: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:                      Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:                                      On
+	 44:                      Y-Short         On
+	 45:                      Y-Short X-Short Off
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:  YDual               Y-Short X-Short Off
+	 49:  YDual XDual         Y-Short         On
+	 50:  YDual XDual         Y-Short         Off
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:  YDual               Y-Short         On
+	 55:  YDual XDual         Y-Short X-Short Off
+	 56:  YDual XDual                 X-Short On
+	 57:  YDual XDual                 X-Short Off
+	 58:        XDual         Y-Short X-Short Off
+	 59:        XDual         Y-Short         On
+	 60:        XDual         Y-Short         Off
+	 61:                      Y-Short X-Short On
+	 62:                      Y-Short X-Short Off
+	 63:                              X-Short On
+	 64:        XDual         Y-Short         Off
+	 65:                      Y-Short X-Short Off
+	 66:  YDual                       X-Short On
+	 67:  YDual                       X-Short Off
+	 68:  YDual               Y-Short X-Short Off
+	 69:  YDual XDual         Y-Short         On
+	 70:  YDual XDual         Y-Short         Off
+	 71:  YDual XDual         Y-Short X-Short Off
+	 72:  YDual XDual                 X-Short On
+	 73:  YDual XDual                 X-Short Off
+	 74:        XDual         Y-Short X-Short Off
+	 75:                      Y-Short X-Short On
+	 76:  YDual XDual         Y-Short         Off
+	 77:  YDual               Y-Short X-Short Off
+	 78:  YDual                       X-Short On
+	 79:  YDual                       X-Short Off
+	 80:                      Y-Short X-Short Off
+	 81:        XDual         Y-Short         On
+	 82:        XDual         Y-Short         Off
+	 83:        XDual         Y-Short X-Short Off
+	 84:  YDual XDual                 X-Short On
+	 85:  YDual XDual                 X-Short Off
+	 86:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   671,  1211)  ->  Abs (   671,  1211)
+	  1: Rel (     0,    32)  ->  Abs (   671,  1243)
+	  2: Rel (     4,     6)  ->  Abs (   675,  1249)
+	  3: Rel (     8,    10)  ->  Abs (   683,  1259)
+	  4: Rel (    11,     0)  ->  Abs (   694,  1259)
+	  5: Rel (    11,     0)  ->  Abs (   705,  1259)
+	  6: Rel (     7,    -9)  ->  Abs (   712,  1250)
+	  7: Rel (     6,    -6)  ->  Abs (   718,  1244)
+	  8: Rel (     0,   -17)  ->  Abs (   718,  1227)
+	  9: Rel (     0,  -106)  ->  Abs (   718,  1121)
+	 10: Rel (     0,   -18)  ->  Abs (   718,  1103)
+	 11: Rel (   -13,   -14)  ->  Abs (   705,  1089)
+	 12: Rel (   -11,     0)  ->  Abs (   694,  1089)
+	 13: Rel (    -9,     0)  ->  Abs (   685,  1089)
+	 14: Rel (   -13,    13)  ->  Abs (   672,  1102)
+	 15: Rel (    -1,    15)  ->  Abs (   671,  1117)
+	 16: Rel (    -4,    40)  ->  Abs (   667,  1157)
+	 17: Rel (   -97,    71)  ->  Abs (   570,  1228)
+	 18: Rel (   -83,     0)  ->  Abs (   487,  1228)
+	 19: Rel (   -94,     0)  ->  Abs (   393,  1228)
+	 20: Rel (  -119,  -120)  ->  Abs (   274,  1108)
+	 21: Rel (     0,   -95)  ->  Abs (   274,  1013)
+	 22: Rel (     0,   -91)  ->  Abs (   274,   922)
+	 23: Rel (   120,  -119)  ->  Abs (   394,   803)
+	 24: Rel (    95,     0)  ->  Abs (   489,   803)
+	 25: Rel (   127,     0)  ->  Abs (   616,   803)
+	 26: Rel (    86,    85)  ->  Abs (   702,   888)
+	 27: Rel (    12,    12)  ->  Abs (   714,   900)
+	 28: Rel (     9,     0)  ->  Abs (   723,   900)
+	 29: Rel (     9,     0)  ->  Abs (   732,   900)
+	 30: Rel (    13,   -13)  ->  Abs (   745,   887)
+	 31: Rel (     0,   -10)  ->  Abs (   745,   877)
+	 32: Rel (     0,   -24)  ->  Abs (   745,   853)
+	 33: Rel (   -56,   -37)  ->  Abs (   689,   816)
+	 34: Rel (   -91,   -60)  ->  Abs (   598,   756)
+	 35: Rel (  -112,     0)  ->  Abs (   486,   756)
+	 36: Rel (  -113,     0)  ->  Abs (   373,   756)
+	 37: Rel (  -146,   145)  ->  Abs (   227,   901)
+	 38: Rel (     0,   111)  ->  Abs (   227,  1012)
+	 39: Rel (     0,   114)  ->  Abs (   227,  1126)
+	 40: Rel (   149,   149)  ->  Abs (   376,  1275)
+	 41: Rel (   114,     0)  ->  Abs (   490,  1275)
+	 42: Rel (   108,     0)  ->  Abs (   598,  1275)
+	 43: Rel (   416,  -550)  ->  Abs (  1014,   725)
+	 44: Rel (  -778,  -253)  ->  Abs (   236,   472)
+	 45: Rel (   -14,    -4)  ->  Abs (   222,   468)
+	 46: Rel (    -7,     0)  ->  Abs (   215,   468)
+	 47: Rel (   -11,     0)  ->  Abs (   204,   468)
+	 48: Rel (   -17,    18)  ->  Abs (   187,   486)
+	 49: Rel (     0,    12)  ->  Abs (   187,   498)
+	 50: Rel (     0,    10)  ->  Abs (   187,   508)
+	 51: Rel (     7,    10)  ->  Abs (   194,   518)
+	 52: Rel (     5,     6)  ->  Abs (   199,   524)
+	 53: Rel (    18,     6)  ->  Abs (   217,   530)
+	 54: Rel (   778,   253)  ->  Abs (   995,   783)
+	 55: Rel (    14,     4)  ->  Abs (  1009,   787)
+	 56: Rel (     8,     0)  ->  Abs (  1017,   787)
+	 57: Rel (    10,     0)  ->  Abs (  1027,   787)
+	 58: Rel (    17,   -18)  ->  Abs (  1044,   769)
+	 59: Rel (     0,   -12)  ->  Abs (  1044,   757)
+	 60: Rel (     0,   -10)  ->  Abs (  1044,   747)
+	 61: Rel (    -7,   -10)  ->  Abs (  1037,   737)
+	 62: Rel (    -5,    -6)  ->  Abs (  1032,   731)
+	 63: Rel (   -26,  -496)  ->  Abs (  1006,   235)
+	 64: Rel (     0,  -107)  ->  Abs (  1006,   128)
+	 65: Rel (  -153,  -152)  ->  Abs (   853,   -24)
+	 66: Rel (  -109,     0)  ->  Abs (   744,   -24)
+	 67: Rel (  -109,     0)  ->  Abs (   635,   -24)
+	 68: Rel (  -153,   152)  ->  Abs (   482,   128)
+	 69: Rel (     0,   107)  ->  Abs (   482,   235)
+	 70: Rel (     0,   107)  ->  Abs (   482,   342)
+	 71: Rel (   153,   153)  ->  Abs (   635,   495)
+	 72: Rel (   109,     0)  ->  Abs (   744,   495)
+	 73: Rel (   109,     0)  ->  Abs (   853,   495)
+	 74: Rel (   153,  -152)  ->  Abs (  1006,   343)
+	 75: Rel (   -47,  -108)  ->  Abs (   959,   235)
+	 76: Rel (     0,    88)  ->  Abs (   959,   323)
+	 77: Rel (  -125,   125)  ->  Abs (   834,   448)
+	 78: Rel (   -90,     0)  ->  Abs (   744,   448)
+	 79: Rel (   -89,     0)  ->  Abs (   655,   448)
+	 80: Rel (  -126,  -125)  ->  Abs (   529,   323)
+	 81: Rel (     0,   -88)  ->  Abs (   529,   235)
+	 82: Rel (     0,   -87)  ->  Abs (   529,   148)
+	 83: Rel (   126,  -125)  ->  Abs (   655,    23)
+	 84: Rel (    89,     0)  ->  Abs (   744,    23)
+	 85: Rel (    89,     0)  ->  Abs (   833,    23)
+	 86: Rel (   126,   124)  ->  Abs (   959,   147)
+
+	Glyph 400: off = 0x00016B98, len = 272
+	  numberOfContours:	2
+	  xMin:			321
+	  yMin:			-33
+	  xMax:			792
+	  yMax:			1197
+
+	EndPoints
+	---------
+	  0:  44
+	  1:  56
+
+	  Length of Instructions:	106
+	00000: NPUSHB      (11):    41    38    43    45     0    14    32     7    20    53 
+	                            23 
+	00013: PUSHW[1]            399 
+	00016: NPUSHB      (20):    20    91    29    11    53    91     6     0    41    38 
+	                            43     3    32    57    10    91    15    49     1    49 
+	00038: PUSHW[1]            749 
+	00041: NPUSHB      (18):    45    26   213    16    41   193    32    14    91    45 
+	                            91     0    16    91    32     1    32     0 
+	00061: PUSHW[5]            755    57   245   333    24 
+	00072: CALL       
+	00073: SRP0       
+	00074: MIRP[srp0,nmd,rd,2] 
+	00075: ALIGNRP    
+	00076: ALIGNRP    
+	00077: SRP0       
+	00078: MIRP[nrp0,md,rd,1] 
+	00079: SRP0       
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SRP0       
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: SRP0       
+	00085: MIRP[nrp0,nmd,rd,0] 
+	00086: SRP0       
+	00087: MIRP[srp0,nmd,rd,2] 
+	00088: DELTAP2    
+	00089: MIRP[nrp0,md,rd,1] 
+	00090: SRP1       
+	00091: SRP2       
+	00092: SLOOP      
+	00093: IP         
+	00094: SVTCA[y-axis] 
+	00095: MIAP[rd+ci] 
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: MIAP[rd+ci] 
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: SRP1       
+	00101: SRP2       
+	00102: SLOOP      
+	00103: IP         
+	00104: IUP[y]     
+	00105: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short         Off
+	  3:        XDual                 X-Short Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:        XDual         Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:                      Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual               Y-Short X-Short On
+	 33:                      Y-Short X-Short Off
+	 34:                      Y-Short X-Short On
+	 35:                      Y-Short X-Short Off
+	 36:                      Y-Short X-Short On
+	 37:                      Y-Short X-Short Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short Off
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short X-Short On
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short X-Short On
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual         Y-Short         On
+	 50:  YDual XDual         Y-Short         Off
+	 51:  YDual               Y-Short X-Short On
+	 52:  YDual               Y-Short X-Short Off
+	 53:  YDual                       X-Short On
+	 54:  YDual                       X-Short Off
+	 55:                      Y-Short X-Short On
+	 56:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   439,   446)  ->  Abs (   439,   446)
+	  1: Rel (     0,    41)  ->  Abs (   439,   487)
+	  2: Rel (     0,   193)  ->  Abs (   439,   680)
+	  3: Rel (    65,   373)  ->  Abs (   504,  1053)
+	  4: Rel (    76,    91)  ->  Abs (   580,  1144)
+	  5: Rel (    45,    53)  ->  Abs (   625,  1197)
+	  6: Rel (    55,     0)  ->  Abs (   680,  1197)
+	  7: Rel (    48,     0)  ->  Abs (   728,  1197)
+	  8: Rel (    27,   -35)  ->  Abs (   755,  1162)
+	  9: Rel (    37,   -50)  ->  Abs (   792,  1112)
+	 10: Rel (     0,   -99)  ->  Abs (   792,  1013)
+	 11: Rel (     0,  -151)  ->  Abs (   792,   862)
+	 12: Rel (   -76,  -171)  ->  Abs (   716,   691)
+	 13: Rel (   -49,  -113)  ->  Abs (   667,   578)
+	 14: Rel (  -138,  -168)  ->  Abs (   529,   410)
+	 15: Rel (    -5,  -114)  ->  Abs (   524,   296)
+	 16: Rel (     0,   -30)  ->  Abs (   524,   266)
+	 17: Rel (     0,  -149)  ->  Abs (   524,   117)
+	 18: Rel (    22,   -43)  ->  Abs (   546,    74)
+	 19: Rel (    12,   -22)  ->  Abs (   558,    52)
+	 20: Rel (    24,     0)  ->  Abs (   582,    52)
+	 21: Rel (    32,     0)  ->  Abs (   614,    52)
+	 22: Rel (    41,    88)  ->  Abs (   655,   140)
+	 23: Rel (    30,     0)  ->  Abs (   685,   140)
+	 24: Rel (    13,     0)  ->  Abs (   698,   140)
+	 25: Rel (    19,   -21)  ->  Abs (   717,   119)
+	 26: Rel (     0,   -17)  ->  Abs (   717,   102)
+	 27: Rel (     0,   -49)  ->  Abs (   717,    53)
+	 28: Rel (   -82,   -86)  ->  Abs (   635,   -33)
+	 29: Rel (   -54,     0)  ->  Abs (   581,   -33)
+	 30: Rel (   -79,     0)  ->  Abs (   502,   -33)
+	 31: Rel (   -61,   138)  ->  Abs (   441,   105)
+	 32: Rel (    -2,   200)  ->  Abs (   439,   305)
+	 33: Rel (   -15,   -13)  ->  Abs (   424,   292)
+	 34: Rel (    -6,    -7)  ->  Abs (   418,   285)
+	 35: Rel (   -29,   -30)  ->  Abs (   389,   255)
+	 36: Rel (    -6,    -4)  ->  Abs (   383,   251)
+	 37: Rel (    -9,    -6)  ->  Abs (   374,   245)
+	 38: Rel (   -11,     0)  ->  Abs (   363,   245)
+	 39: Rel (   -18,     0)  ->  Abs (   345,   245)
+	 40: Rel (   -24,    23)  ->  Abs (   321,   268)
+	 41: Rel (     0,    15)  ->  Abs (   321,   283)
+	 42: Rel (     0,    17)  ->  Abs (   321,   300)
+	 43: Rel (    14,    22)  ->  Abs (   335,   322)
+	 44: Rel (    19,    30)  ->  Abs (   354,   352)
+	 45: Rel (   175,   192)  ->  Abs (   529,   544)
+	 46: Rel (    89,   122)  ->  Abs (   618,   666)
+	 47: Rel (    37,    94)  ->  Abs (   655,   760)
+	 48: Rel (    51,   131)  ->  Abs (   706,   891)
+	 49: Rel (     0,   115)  ->  Abs (   706,  1006)
+	 50: Rel (     0,    72)  ->  Abs (   706,  1078)
+	 51: Rel (   -13,    24)  ->  Abs (   693,  1102)
+	 52: Rel (    -6,    12)  ->  Abs (   687,  1114)
+	 53: Rel (   -11,     0)  ->  Abs (   676,  1114)
+	 54: Rel (   -27,     0)  ->  Abs (   649,  1114)
+	 55: Rel (   -35,   -66)  ->  Abs (   614,  1048)
+	 56: Rel (   -74,  -143)  ->  Abs (   540,   905)
+
+	Glyph 401: off = 0x00016CA8, len = 42
+	  numberOfContours:	2
+	  xMin:			2
+	  yMin:			0
+	  xMax:			1227
+	  yMax:			1225
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:        XDual                 X-Short On
+	  5:        XDual                         On
+	  6:  YDual                               On
+	  7:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (     2,  1225)  ->  Abs (     2,  1225)
+	  1: Rel (  1225,     0)  ->  Abs (  1227,  1225)
+	  2: Rel (     0, -1225)  ->  Abs (  1227,     0)
+	  3: Rel ( -1225,     0)  ->  Abs (     2,     0)
+	  4: Rel (    76,  1149)  ->  Abs (    78,  1149)
+	  5: Rel (     0, -1073)  ->  Abs (    78,    76)
+	  6: Rel (  1073,     0)  ->  Abs (  1151,    76)
+	  7: Rel (     0,  1073)  ->  Abs (  1151,  1149)
+
+	Glyph 402: off = 0x00016CD2, len = 28
+	  numberOfContours:	1
+	  xMin:			361
+	  yMin:			383
+	  xMax:			868
+	  yMax:			890
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   868,   383)  ->  Abs (   868,   383)
+	  1: Rel (  -507,     0)  ->  Abs (   361,   383)
+	  2: Rel (     0,   507)  ->  Abs (   361,   890)
+	  3: Rel (   507,     0)  ->  Abs (   868,   890)
+
+	Glyph 403: off = 0x00016CEE, len = 110
+	  numberOfContours:	2
+	  xMin:			361
+	  yMin:			383
+	  xMax:			868
+	  yMax:			890
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	66
+	00000: PUSHB[6]              5     6    91     2     2     3 
+	00007: PUSHW[1]            750 
+	00010: NPUSHB      (11):     0     7     4    91     1     0     5     4    91     3 
+	                             0 
+	00023: PUSHW[1]            745 
+	00026: PUSHB[6]              1     6     7    91     2     1 
+	00033: PUSHW[5]            418     8    72   382    24 
+	00044: CALL       
+	00045: SRP0       
+	00046: MIRP[srp0,nmd,rd,2] 
+	00047: ALIGNRP    
+	00048: MIRP[srp0,md,rd,1] 
+	00049: ALIGNRP    
+	00050: SRP0       
+	00051: MIRP[srp0,md,rd,2] 
+	00052: ALIGNRP    
+	00053: MIRP[srp0,md,rd,1] 
+	00054: ALIGNRP    
+	00055: SVTCA[y-axis] 
+	00056: MDAP[rd]   
+	00057: ALIGNRP    
+	00058: MIRP[srp0,md,rd,1] 
+	00059: ALIGNRP    
+	00060: SRP0       
+	00061: MIRP[srp0,md,rd,2] 
+	00062: ALIGNRP    
+	00063: SRP0       
+	00064: MIRP[srp0,md,rd,1] 
+	00065: ALIGNRP    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:                              X-Short On
+	  5:        XDual                         On
+	  6:  YDual                               On
+	  7:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   868,   383)  ->  Abs (   868,   383)
+	  1: Rel (  -507,     0)  ->  Abs (   361,   383)
+	  2: Rel (     0,   507)  ->  Abs (   361,   890)
+	  3: Rel (   507,     0)  ->  Abs (   868,   890)
+	  4: Rel (   -76,  -431)  ->  Abs (   792,   459)
+	  5: Rel (     0,   355)  ->  Abs (   792,   814)
+	  6: Rel (  -355,     0)  ->  Abs (   437,   814)
+	  7: Rel (     0,  -355)  ->  Abs (   437,   459)
+
+	Glyph 404: off = 0x00016D5C, len = 56
+	  numberOfContours:	1
+	  xMin:			174
+	  yMin:			137
+	  xMax:			1055
+	  yMax:			1018
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	0
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                                      Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                                      Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   615,  1018)  ->  Abs (   615,  1018)
+	  1: Rel (   110,     0)  ->  Abs (   725,  1018)
+	  2: Rel (   212,  -114)  ->  Abs (   937,   904)
+	  3: Rel (   118,  -212)  ->  Abs (  1055,   692)
+	  4: Rel (     0,  -114)  ->  Abs (  1055,   578)
+	  5: Rel (     0,  -183)  ->  Abs (  1055,   395)
+	  6: Rel (  -258,  -258)  ->  Abs (   797,   137)
+	  7: Rel (  -182,     0)  ->  Abs (   615,   137)
+	  8: Rel (  -183,     0)  ->  Abs (   432,   137)
+	  9: Rel (  -258,   258)  ->  Abs (   174,   395)
+	 10: Rel (     0,   183)  ->  Abs (   174,   578)
+	 11: Rel (     0,   115)  ->  Abs (   174,   693)
+	 12: Rel (   118,   211)  ->  Abs (   292,   904)
+	 13: Rel (   212,   114)  ->  Abs (   504,  1018)
+
+	Glyph 405: off = 0x00016D94, len = 122
+	  numberOfContours:	2
+	  xMin:			367
+	  yMin:			389
+	  xMax:			862
+	  yMax:			884
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	45
+	00000: PUSHB[3]             15    91     9 
+	00004: PUSHW[1]            368 
+	00007: PUSHB[6]             21    91     3    12    91     0 
+	00014: PUSHW[1]            368 
+	00017: PUSHB[3]             18    91     6 
+	00021: PUSHW[5]            418    24    72   382    24 
+	00032: CALL       
+	00033: SRP0       
+	00034: MIRP[srp0,nmd,rd,2] 
+	00035: MIRP[nrp0,md,rd,1] 
+	00036: MIRP[srp0,md,rd,1] 
+	00037: MIRP[nrp0,md,rd,1] 
+	00038: SVTCA[y-axis] 
+	00039: MDAP[rd]   
+	00040: MIRP[nrp0,md,rd,1] 
+	00041: MIRP[srp0,md,rd,1] 
+	00042: MIRP[nrp0,md,rd,1] 
+	00043: IUP[y]     
+	00044: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   862,   637)  ->  Abs (   862,   637)
+	  1: Rel (     0,  -103)  ->  Abs (   862,   534)
+	  2: Rel (  -146,  -145)  ->  Abs (   716,   389)
+	  3: Rel (  -102,     0)  ->  Abs (   614,   389)
+	  4: Rel (  -102,     0)  ->  Abs (   512,   389)
+	  5: Rel (  -145,   145)  ->  Abs (   367,   534)
+	  6: Rel (     0,   103)  ->  Abs (   367,   637)
+	  7: Rel (     0,   102)  ->  Abs (   367,   739)
+	  8: Rel (   145,   145)  ->  Abs (   512,   884)
+	  9: Rel (   102,     0)  ->  Abs (   614,   884)
+	 10: Rel (   103,     0)  ->  Abs (   717,   884)
+	 11: Rel (   145,  -145)  ->  Abs (   862,   739)
+	 12: Rel (   -76,  -102)  ->  Abs (   786,   637)
+	 13: Rel (     0,    71)  ->  Abs (   786,   708)
+	 14: Rel (  -101,   100)  ->  Abs (   685,   808)
+	 15: Rel (   -71,     0)  ->  Abs (   614,   808)
+	 16: Rel (   -71,     0)  ->  Abs (   543,   808)
+	 17: Rel (  -100,  -101)  ->  Abs (   443,   707)
+	 18: Rel (     0,   -70)  ->  Abs (   443,   637)
+	 19: Rel (     0,   -71)  ->  Abs (   443,   566)
+	 20: Rel (   100,  -101)  ->  Abs (   543,   465)
+	 21: Rel (    71,     0)  ->  Abs (   614,   465)
+	 22: Rel (    71,     0)  ->  Abs (   685,   465)
+	 23: Rel (   101,   100)  ->  Abs (   786,   565)
+
+	Glyph 406: off = 0x00016E0E, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1425
+
+	     0: Flags:		0x0236
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	216
+		X WOffset:	-85
+		Y WOffset:	264
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     2    47    58     1    58    26   144    72    43     2 
+	                             1    48 
+	00014: PUSHW[2]            798    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: DELTAP1    
+	00024: SHC[rp1,zp0] 
+
+	Glyph 407: off = 0x00016E42, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			1161
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	216
+		X BOffset:	-12
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              2    64    59     1    59    29 
+	00007: PUSHW[1]           -303 
+	00010: PUSHB[5]             72    43     2     1    56 
+	00016: PUSHW[2]            800    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 408: off = 0x00016E76, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			127
+	  yMin:			-33
+	  xMax:			1100
+	  yMax:			1574
+
+	     0: Flags:		0x0226
+		Glyf Index:	38
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	40
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     1   207    73     1    31    73    79    73    95    73 
+	                             3    73    55 
+	00015: PUSHW[1]           -270 
+	00018: PUSHB[5]             72    43     1     1    70 
+	00024: PUSHW[2]            651    41 
+	00029: SVTCA[y-axis] 
+	00030: CALL       
+	00031: SVTCA[x-axis] 
+	00032: CALL       
+	00033: DELTAP1    
+	00034: DELTAP1    
+	00035: SHC[rp1,zp0] 
+
+	Glyph 409: off = 0x00016EB4, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			171
+	  yMin:			-33
+	  xMax:			1099
+	  yMax:			1310
+
+	     0: Flags:		0x0226
+		Glyf Index:	70
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	214
+		X BOffset:	34
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (11):     1    31    59   175    59     2    79    59     1    59 
+	                            41 
+	00013: PUSHW[1]           -291 
+	00016: PUSHB[5]             72    43     1     1    56 
+	00022: PUSHW[2]            652    41 
+	00027: SVTCA[y-axis] 
+	00028: CALL       
+	00029: SVTCA[x-axis] 
+	00030: CALL       
+	00031: DELTAP2    
+	00032: DELTAP1    
+	00033: SHC[rp1,zp0] 
+
+	Glyph 410: off = 0x00016EEE, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			127
+	  yMin:			-33
+	  xMax:			1100
+	  yMax:			1514
+
+	     0: Flags:		0x0226
+		Glyf Index:	38
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	218
+		X WOffset:	43
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1    31    57     1    57    55   134    72    43     1 
+	                             1    60 
+	00014: PUSHW[2]            799    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: DELTAP1    
+	00024: SHC[rp1,zp0] 
+
+	Glyph 411: off = 0x00016F22, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			171
+	  yMin:			-33
+	  xMax:			1099
+	  yMax:			1250
+
+	     0: Flags:		0x0226
+		Glyf Index:	70
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	218
+		X BOffset:	43
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              1    31    49     1    49    41 
+	00007: PUSHW[1]            -86 
+	00010: PUSHB[5]             72    43     1     1    46 
+	00016: PUSHW[2]            801    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 412: off = 0x00016F56, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1425
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	216
+		X WOffset:	0
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1    65    27 
+	00004: PUSHW[1]           -113 
+	00007: PUSHB[5]             72    43     1     1    55 
+	00013: PUSHW[2]            798    41 
+	00018: SVTCA[y-axis] 
+	00019: CALL       
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: SHC[rp1,zp0] 
+
+	Glyph 413: off = 0x00016F88, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1071
+	  yMax:			1161
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	216
+		X BOffset:	6
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     2   192    37     1    64    37     1    37    23 
+	00011: PUSHW[1]           -277 
+	00014: PUSHB[5]             72    43     2     1    34 
+	00020: PUSHW[2]            800    41 
+	00025: SVTCA[y-axis] 
+	00026: CALL       
+	00027: SVTCA[x-axis] 
+	00028: CALL       
+	00029: DELTAP2    
+	00030: DELTAP1    
+	00031: SHC[rp1,zp0] 
+
+	Glyph 414: off = 0x00016FC0, len = 72
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1563
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	217
+		X WOffset:	0
+		Y WOffset:	265
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (23):     1    48    77    80    77   112    77   160    77   224 
+	                            77     5     0    77    16    77    32    77    64    77 
+	                             4    77    36 
+	00025: PUSHW[1]            -27 
+	00028: PUSHB[5]             72    43     1     1    74 
+	00034: PUSHW[2]            651    41 
+	00039: SVTCA[y-axis] 
+	00040: CALL       
+	00041: SVTCA[x-axis] 
+	00042: CALL       
+	00043: DELTAP1    
+	00044: DELTAP1    
+	00045: SHC[rp1,zp0] 
+
+	Glyph 415: off = 0x00017008, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1071
+	  yMax:			1298
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	217
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              2   159    56     1    56    23 
+	00007: PUSHW[1]           -285 
+	00010: PUSHB[5]             72    43     2     1    53 
+	00016: PUSHW[2]            652    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 416: off = 0x0001703C, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1514
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	218
+		X WOffset:	6
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              1     0    54    16    54     2    54    27 
+	00009: PUSHW[1]           -304 
+	00012: PUSHB[5]             72    43     1     1    57 
+	00018: PUSHW[2]            799    41 
+	00023: SVTCA[y-axis] 
+	00024: CALL       
+	00025: SVTCA[x-axis] 
+	00026: CALL       
+	00027: DELTAP1    
+	00028: SHC[rp1,zp0] 
+
+	Glyph 417: off = 0x00017074, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1071
+	  yMax:			1250
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	218
+		X BOffset:	6
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              2     0    39     1    39    23 
+	00007: PUSHW[1]            -81 
+	00010: PUSHB[5]             72    43     2     1    36 
+	00016: PUSHW[2]            801    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP2    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 418: off = 0x000170A8, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1157
+	  yMax:			1574
+
+	     0: Flags:		0x0226
+		Glyf Index:	42
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	24
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     1    31    77     1    95    77   207    77     2    31 
+	                            77    79    77     2    77    14 
+	00018: PUSHW[1]           -290 
+	00021: PUSHB[5]             72    43     1     1    74 
+	00027: PUSHW[2]            651    41 
+	00032: SVTCA[y-axis] 
+	00033: CALL       
+	00034: SVTCA[x-axis] 
+	00035: CALL       
+	00036: DELTAP1    
+	00037: DELTAP1    
+	00038: DELTAP3    
+	00039: SHC[rp1,zp0] 
+
+	Glyph 419: off = 0x000170EA, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			125
+	  yMin:			-386
+	  xMax:			1150
+	  yMax:			1310
+
+	     0: Flags:		0x0226
+		Glyf Index:	74
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	214
+		X BOffset:	-12
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              2    31    68     1    68    38 
+	00007: PUSHW[1]           -245 
+	00010: PUSHB[5]             72    43     2     1    65 
+	00016: PUSHW[2]            652    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 420: off = 0x0001711E, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1157
+	  yMax:			1514
+
+	     0: Flags:		0x0226
+		Glyf Index:	42
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	218
+		X WOffset:	42
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     1    31    61   111    61     2    61    14   106    72 
+	                            43     1     1    64 
+	00016: PUSHW[2]            799    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 421: off = 0x00017154, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			125
+	  yMin:			-386
+	  xMax:			1150
+	  yMax:			1250
+
+	     0: Flags:		0x0226
+		Glyf Index:	74
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	218
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2    15    58    31    58    79    58     3    58    38 
+	00012: PUSHW[1]            -67 
+	00015: PUSHB[5]             72    43     2     1    55 
+	00021: PUSHW[2]            801    41 
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: SHC[rp1,zp0] 
+
+	Glyph 422: off = 0x0001718C, len = 42
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-333
+	  xMax:			1157
+	  yMax:			1197
+
+	     0: Flags:		0x0226
+		Glyf Index:	42
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	494
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1    16    78    80    78     2     0    78    78     4 
+	                             4    64 
+	00014: SVTCA[x-axis] 
+	00015: CALL       
+	00016: DELTAP1    
+	00017: SHC[rp1,zp0] 
+
+	Glyph 423: off = 0x000171B6, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			125
+	  yMin:			-386
+	  xMax:			1150
+	  yMax:			1354
+
+	     0: Flags:		0x0226
+		Glyf Index:	74
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x010F
+		Glyf Index:	493
+		X WOffset:	1208
+		Y WOffset:	913
+		X,Y Scale:	-1.000000
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              2    61    38 
+	00004: PUSHW[1]            -50 
+	00007: PUSHB[5]             72    43     2     1    59 
+	00013: PUSHW[3]            652    41   300 
+	00020: SCANCTRL   
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: SHC[rp1,zp0] 
+
+	Glyph 424: off = 0x000171EC, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			107
+	  yMin:			0
+	  xMax:			1135
+	  yMax:			1574
+
+	     0: Flags:		0x0226
+		Glyf Index:	43
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	6
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     1    80    84     1    79    84     1   207    84   224 
+	                            84     2    84     2 
+	00016: PUSHW[1]            -20 
+	00019: PUSHB[5]             72    43     1     1    81 
+	00025: PUSHW[2]            651    41 
+	00030: SVTCA[y-axis] 
+	00031: CALL       
+	00032: SVTCA[x-axis] 
+	00033: CALL       
+	00034: DELTAP1    
+	00035: DELTAP2    
+	00036: DELTAP3    
+	00037: SHC[rp1,zp0] 
+
+	Glyph 425: off = 0x0001722C, len = 510
+	  numberOfContours:	2
+	  xMin:			85
+	  yMin:			0
+	  xMax:			1133
+	  yMax:			1574
+
+	EndPoints
+	---------
+	  0:  16
+	  1:  60
+
+	  Length of Instructions:	347
+	00000: NPUSHB      (22):   153    37   163    21   163    22   179    21   179    22 
+	                           197    21   197    22     7   132    22     1    23     8 
+	                            30    34 
+	00024: PUSHW[1]            686 
+	00027: NPUSHB      (16):    15    32    31    32     2    32    92    35    32    32 
+	                            34    35    34    30    49    53 
+	00045: PUSHW[1]            686 
+	00048: NPUSHB      (11):    51    92    54    51    51    53    54    34    49    29 
+	                            25 
+	00061: PUSHW[1]            686 
+	00064: NPUSHB      (14):     0    27     1    27    92    24    27    27    25    24 
+	                            34    29    48    44 
+	00080: PUSHW[1]            686 
+	00083: NPUSHB      (11):    46    92    43    46    46    44    43    34    48    60 
+	                            56 
+	00096: PUSHW[1]            686 
+	00099: NPUSHB      (61):    58    47    55    58    58    56    55    34    60    18 
+	                            42    39    49     0    59     9     9     6    12    64 
+	                             9    13    52    12    12    60    39    33    20    49 
+	                            48    48    30    30    29    60     0    20     7    29 
+	                            10    15     3     1     3     3     9    14    14     0 
+	                             9     9    54    23    24    32    36   223    35     1 
+	                            35 
+	00162: PUSHW[1]            675 
+	00165: NPUSHB      (11):    62    17    43    32    55   191    54   207    54     2 
+	                            54 
+	00178: PUSHW[1]            491 
+	00181: PUSHB[4]             61    71    97    24 
+	00186: CALL       
+	00187: SRP0       
+	00188: MIRP[srp0,nmd,rd,2] 
+	00189: DELTAP1    
+	00190: ALIGNRP    
+	00191: MIRP[srp0,md,rd,1] 
+	00192: ALIGNRP    
+	00193: SRP0       
+	00194: MIRP[srp0,nmd,rd,0] 
+	00195: DELTAP1    
+	00196: ALIGNRP    
+	00197: MIRP[srp0,md,rd,1] 
+	00198: ALIGNRP    
+	00199: SRP1       
+	00200: IP         
+	00201: MDAP[rd]   
+	00202: ALIGNRP    
+	00203: SHP[rp1,zp0] 
+	00204: MDAP[rd]   
+	00205: SRP1       
+	00206: SHP[rp1,zp0] 
+	00207: MDAP[rd]   
+	00208: DELTAP1    
+	00209: SVTCA[y-axis] 
+	00210: MIAP[rd+ci] 
+	00211: MIAP[rd+ci] 
+	00212: MIAP[rd+ci] 
+	00213: SRP0       
+	00214: ALIGNRP    
+	00215: SRP0       
+	00216: ALIGNRP    
+	00217: SRP0       
+	00218: ALIGNRP    
+	00219: SRP0       
+	00220: MIRP[nrp0,md,rd,1] 
+	00221: SRP1       
+	00222: SHP[rp1,zp0] 
+	00223: MDAP[rd]   
+	00224: CALL       
+	00225: ALIGNRP    
+	00226: SHP[rp1,zp0] 
+	00227: MDAP[rd]   
+	00228: MIRP[nrp0,md,rd,1] 
+	00229: SRP1       
+	00230: SRP2       
+	00231: IP         
+	00232: IP         
+	00233: SRP0       
+	00234: MIRP[srp0,md,rd,1] 
+	00235: RTDG       
+	00236: SRP2       
+	00237: IP         
+	00238: MDAP[rd]   
+	00239: RTG        
+	00240: SVTCA[x-axis] 
+	00241: SRP0       
+	00242: MIRP[srp0,nmd,rd,1] 
+	00243: MIRP[srp0,nmd,rd,0] 
+	00244: MDRP[nrp0,nmd,rd,0] 
+	00245: SVTCA[y-axis] 
+	00246: SRP0       
+	00247: MIRP[srp0,md,rd,1] 
+	00248: RTDG       
+	00249: SRP2       
+	00250: IP         
+	00251: MDAP[rd]   
+	00252: RTG        
+	00253: SVTCA[x-axis] 
+	00254: SRP0       
+	00255: MIRP[srp0,nmd,rd,1] 
+	00256: MIRP[srp0,nmd,rd,0] 
+	00257: MDRP[nrp0,nmd,rd,0] 
+	00258: SVTCA[y-axis] 
+	00259: SRP0       
+	00260: MIRP[srp0,md,rd,1] 
+	00261: RTDG       
+	00262: SRP2       
+	00263: IP         
+	00264: MDAP[rd]   
+	00265: RTG        
+	00266: SVTCA[x-axis] 
+	00267: SRP0       
+	00268: MIRP[srp0,nmd,rd,1] 
+	00269: DELTAP1    
+	00270: MIRP[srp0,nmd,rd,0] 
+	00271: MDRP[nrp0,nmd,rd,0] 
+	00272: SVTCA[y-axis] 
+	00273: SRP0       
+	00274: MIRP[srp0,md,rd,1] 
+	00275: RTDG       
+	00276: SRP2       
+	00277: IP         
+	00278: MDAP[rd]   
+	00279: RTG        
+	00280: SVTCA[x-axis] 
+	00281: SRP0       
+	00282: MIRP[srp0,nmd,rd,1] 
+	00283: MIRP[srp0,nmd,rd,0] 
+	00284: MDRP[nrp0,nmd,rd,0] 
+	00285: SVTCA[y-axis] 
+	00286: SRP0       
+	00287: MIRP[srp0,md,rd,1] 
+	00288: RTDG       
+	00289: SRP2       
+	00290: IP         
+	00291: MDAP[rd]   
+	00292: RTG        
+	00293: SVTCA[x-axis] 
+	00294: SRP0       
+	00295: MIRP[srp0,nmd,rd,1] 
+	00296: DELTAP1    
+	00297: MIRP[srp0,nmd,rd,0] 
+	00298: MDRP[nrp0,nmd,rd,0] 
+	00299: RS         
+	00300: JROF       
+	00301: NPUSHB      (14):    37    38    21    22    38    21    36    31     1    37 
+	                            22    39    31     1 
+	00317: SVTCA[y-axis] 
+	00318: CALL       
+	00319: SVTCA[x-axis] 
+	00320: CALL       
+	00321: FLIPRGON   
+	00322: FLIPRGON   
+	00323: IUP[y]     
+	00324: IUP[x]     
+	00325: SVTCA[y-axis] 
+	00326: MPPEM      
+	00327: PUSHB[1]             18 
+	00329: GTEQ       
+	00330: MPPEM      
+	00331: PUSHB[1]             36 
+	00333: LTEQ       
+	00334: AND        
+	00335: IF         
+	00336: PUSHB[4]             42    42    41    32 
+	00341: SHPIX      
+	00342: SHPIX      
+	00343: EIF        
+	00344: SVTCA[y-axis] 
+	00345: DELTAP2    
+	00346: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short         On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short On
+	 10:                      Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:                      Y-Short X-Short On
+	 18:        XDual                         On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual                         On
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                               On
+	 31:  YDual                       X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short On
+	 36:        XDual                         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:                      Y-Short X-Short Off
+	 42:                      Y-Short X-Short On
+	 43:        XDual                         On
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual         Y-Short         Off
+	 48:  YDual                       X-Short On
+	 49:  YDual                               On
+	 50:  YDual                       X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         Off
+	 53:  YDual XDual                 X-Short On
+	 54:  YDual XDual                 X-Short On
+	 55:        XDual                         On
+	 56:  YDual                       X-Short On
+	 57:  YDual                       X-Short Off
+	 58:  YDual XDual         Y-Short         On
+	 59:  YDual XDual         Y-Short         Off
+	 60:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   628,  1574)  ->  Abs (   628,  1574)
+	  1: Rel (   274,  -158)  ->  Abs (   902,  1416)
+	  2: Rel (    35,   -19)  ->  Abs (   937,  1397)
+	  3: Rel (     0,   -25)  ->  Abs (   937,  1372)
+	  4: Rel (     0,   -17)  ->  Abs (   937,  1355)
+	  5: Rel (   -23,   -25)  ->  Abs (   914,  1330)
+	  6: Rel (   -14,     0)  ->  Abs (   900,  1330)
+	  7: Rel (   -15,     0)  ->  Abs (   885,  1330)
+	  8: Rel (   -27,    15)  ->  Abs (   858,  1345)
+	  9: Rel (  -230,   133)  ->  Abs (   628,  1478)
+	 10: Rel (  -228,  -133)  ->  Abs (   400,  1345)
+	 11: Rel (   -27,   -15)  ->  Abs (   373,  1330)
+	 12: Rel (   -14,     0)  ->  Abs (   359,  1330)
+	 13: Rel (   -38,     0)  ->  Abs (   321,  1330)
+	 14: Rel (     0,    42)  ->  Abs (   321,  1372)
+	 15: Rel (     0,    24)  ->  Abs (   321,  1396)
+	 16: Rel (    35,    20)  ->  Abs (   356,  1416)
+	 17: Rel (   -18,  -161)  ->  Abs (   338,  1255)
+	 18: Rel (     0,  -517)  ->  Abs (   338,   738)
+	 19: Rel (   141,   158)  ->  Abs (   479,   896)
+	 20: Rel (   177,     0)  ->  Abs (   656,   896)
+	 21: Rel (   155,     0)  ->  Abs (   811,   896)
+	 22: Rel (   172,  -178)  ->  Abs (   983,   718)
+	 23: Rel (     0,  -113)  ->  Abs (   983,   605)
+	 24: Rel (     0,  -521)  ->  Abs (   983,    84)
+	 25: Rel (    94,     0)  ->  Abs (  1077,    84)
+	 26: Rel (    56,     0)  ->  Abs (  1133,    84)
+	 27: Rel (     0,   -42)  ->  Abs (  1133,    42)
+	 28: Rel (     0,   -42)  ->  Abs (  1133,     0)
+	 29: Rel (   -56,     0)  ->  Abs (  1077,     0)
+	 30: Rel (  -273,     0)  ->  Abs (   804,     0)
+	 31: Rel (   -57,     0)  ->  Abs (   747,     0)
+	 32: Rel (     0,    42)  ->  Abs (   747,    42)
+	 33: Rel (     0,    42)  ->  Abs (   747,    84)
+	 34: Rel (    57,     0)  ->  Abs (   804,    84)
+	 35: Rel (    94,     0)  ->  Abs (   898,    84)
+	 36: Rel (     0,   515)  ->  Abs (   898,   599)
+	 37: Rel (     0,    86)  ->  Abs (   898,   685)
+	 38: Rel (  -125,   127)  ->  Abs (   773,   812)
+	 39: Rel (  -122,     0)  ->  Abs (   651,   812)
+	 40: Rel (   -78,     0)  ->  Abs (   573,   812)
+	 41: Rel (  -116,   -60)  ->  Abs (   457,   752)
+	 42: Rel (  -119,  -136)  ->  Abs (   338,   616)
+	 43: Rel (     0,  -532)  ->  Abs (   338,    84)
+	 44: Rel (    95,     0)  ->  Abs (   433,    84)
+	 45: Rel (    56,     0)  ->  Abs (   489,    84)
+	 46: Rel (     0,   -42)  ->  Abs (   489,    42)
+	 47: Rel (     0,   -42)  ->  Abs (   489,     0)
+	 48: Rel (   -56,     0)  ->  Abs (   433,     0)
+	 49: Rel (  -274,     0)  ->  Abs (   159,     0)
+	 50: Rel (   -56,     0)  ->  Abs (   103,     0)
+	 51: Rel (     0,    42)  ->  Abs (   103,    42)
+	 52: Rel (     0,    42)  ->  Abs (   103,    84)
+	 53: Rel (    56,     0)  ->  Abs (   159,    84)
+	 54: Rel (    95,     0)  ->  Abs (   254,    84)
+	 55: Rel (     0,  1086)  ->  Abs (   254,  1170)
+	 56: Rel (  -113,     0)  ->  Abs (   141,  1170)
+	 57: Rel (   -56,     0)  ->  Abs (    85,  1170)
+	 58: Rel (     0,    42)  ->  Abs (    85,  1212)
+	 59: Rel (     0,    43)  ->  Abs (    85,  1255)
+	 60: Rel (    56,     0)  ->  Abs (   141,  1255)
+
+	Glyph 426: off = 0x0001742A, len = 672
+	  numberOfContours:	2
+	  xMin:			107
+	  yMin:			0
+	  xMax:			1135
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  65
+	  1:  69
+
+	  Length of Instructions:	502
+	00000: NPUSHB      (16):    31    36     1    36    36    29     0     3    16     3 
+	                             2     3     3    10    60    64 
+	00018: PUSHW[1]            676 
+	00021: NPUSHB      (11):    62    43    65    62    62    64    65    29    60    13 
+	                            17 
+	00034: PUSHW[1]            676 
+	00037: NPUSHB      (16):     0    15    16    15     2    15    43    18    15    15 
+	                            17    18    29    13    27    31 
+	00055: PUSHW[1]            676 
+	00058: NPUSHB      (16):     0    29    16    29     2    29    41    32    29    29 
+	                            31    32    29    27    46    50 
+	00076: PUSHW[1]            676 
+	00079: NPUSHB      (16):    15    48    31    48     2    48    43    51    48    48 
+	                            50    51    29    46    59    55 
+	00097: PUSHW[1]            676 
+	00100: NPUSHB      (11):    57    43    54    57    57    55    54    29    59    12 
+	                             8 
+	00113: PUSHW[1]            676 
+	00116: NPUSHB      (16):    15    10    31    10     2    10    41     7    10    10 
+	                             8     7    29    12    26    22 
+	00134: PUSHW[1]            676 
+	00137: NPUSHB      (16):    15    24    31    24     2    24    43    21    24    24 
+	                            22    21    29    26    45    41 
+	00155: PUSHW[1]            676 
+	00158: NPUSHB      (44):     0    43     1    43    43    40    43    43    41    40 
+	                            29    45    33    20    19     6     5    39    69    66 
+	                             0     1    20    69    68    52    51    19    66    67 
+	                            53    54    34     5    30    38     1     1    13    68 
+	                            67    30    52    53 
+	00204: PUSHW[1]            -64 
+	00207: NPUSHB      (54):     9    15    52    53    53    59    12    31    38    27 
+	                            27    26    17    38    13    22    38    26    26    13 
+	                             8    38    13    12     2    46    45    45    60    60 
+	                            59     8    32    30    21    40    30    21    51    64 
+	                            28    31    52   159    51   175    51     2   143    51 
+	                           223    51     2    51 
+	00263: PUSHW[1]            699 
+	00266: NPUSHB      (27):    71     7    30    18    18    65    30    48    54    64 
+	                            54   144    54     3    79    54   208    54     2    15 
+	                            54    95    54   111    54     3    54 
+	00295: PUSHW[5]            699    70    74   470    24 
+	00306: CALL       
+	00307: SRP0       
+	00308: MIRP[srp0,nmd,rd,0] 
+	00309: DELTAP1    
+	00310: DELTAP1    
+	00311: DELTAP2    
+	00312: MIRP[nrp0,md,rd,1] 
+	00313: ALIGNRP    
+	00314: SRP0       
+	00315: MIRP[nrp0,md,rd,1] 
+	00316: SRP0       
+	00317: MIRP[srp0,nmd,rd,0] 
+	00318: DELTAP1    
+	00319: DELTAP2    
+	00320: CALL       
+	00321: ALIGNRP    
+	00322: MIRP[nrp0,md,rd,1] 
+	00323: SRP0       
+	00324: MIRP[nrp0,md,rd,1] 
+	00325: SVTCA[y-axis] 
+	00326: MIAP[rd+ci] 
+	00327: ALIGNRP    
+	00328: SRP0       
+	00329: ALIGNRP    
+	00330: SRP0       
+	00331: ALIGNRP    
+	00332: MIAP[rd+ci] 
+	00333: ALIGNRP    
+	00334: MIRP[nrp0,md,rd,1] 
+	00335: SRP0       
+	00336: ALIGNRP    
+	00337: SRP0       
+	00338: MIRP[nrp0,md,rd,1] 
+	00339: SRP0       
+	00340: MIRP[nrp0,md,rd,1] 
+	00341: SRP0       
+	00342: ALIGNRP    
+	00343: SRP0       
+	00344: MIRP[nrp0,md,rd,1] 
+	00345: SRP1       
+	00346: SRP2       
+	00347: IP         
+	00348: MDAP[rd]   
+	00349: CALL       
+	00350: ALIGNRP    
+	00351: MIRP[srp0,md,rd,1] 
+	00352: ALIGNRP    
+	00353: SRP2       
+	00354: IP         
+	00355: MDAP[rd]   
+	00356: ALIGNRP    
+	00357: MIRP[srp0,md,rd,1] 
+	00358: ALIGNRP    
+	00359: SPVTCA[x-axis] 
+	00360: SFVTCA[x-axis] 
+	00361: SRP0       
+	00362: ALIGNRP    
+	00363: ALIGNRP    
+	00364: ALIGNRP    
+	00365: ALIGNRP    
+	00366: SRP0       
+	00367: ALIGNRP    
+	00368: ALIGNRP    
+	00369: ALIGNRP    
+	00370: ALIGNRP    
+	00371: SPVTCA[y-axis] 
+	00372: SFVTCA[y-axis] 
+	00373: SRP0       
+	00374: ALIGNRP    
+	00375: ALIGNRP    
+	00376: ALIGNRP    
+	00377: ALIGNRP    
+	00378: SRP0       
+	00379: ALIGNRP    
+	00380: ALIGNRP    
+	00381: ALIGNRP    
+	00382: ALIGNRP    
+	00383: SRP0       
+	00384: MIRP[srp0,md,rd,1] 
+	00385: RTDG       
+	00386: SRP2       
+	00387: IP         
+	00388: MDAP[rd]   
+	00389: RTG        
+	00390: SVTCA[x-axis] 
+	00391: SRP0       
+	00392: MIRP[srp0,nmd,rd,1] 
+	00393: DELTAP1    
+	00394: MIRP[srp0,nmd,rd,0] 
+	00395: MDRP[nrp0,nmd,rd,0] 
+	00396: SVTCA[y-axis] 
+	00397: SRP0       
+	00398: MIRP[srp0,md,rd,1] 
+	00399: RTDG       
+	00400: SRP2       
+	00401: IP         
+	00402: MDAP[rd]   
+	00403: RTG        
+	00404: SVTCA[x-axis] 
+	00405: SRP0       
+	00406: MIRP[srp0,nmd,rd,1] 
+	00407: DELTAP1    
+	00408: MIRP[srp0,nmd,rd,0] 
+	00409: MDRP[nrp0,nmd,rd,0] 
+	00410: SVTCA[y-axis] 
+	00411: SRP0       
+	00412: MIRP[srp0,md,rd,1] 
+	00413: RTDG       
+	00414: SRP2       
+	00415: IP         
+	00416: MDAP[rd]   
+	00417: RTG        
+	00418: SVTCA[x-axis] 
+	00419: SRP0       
+	00420: MIRP[srp0,nmd,rd,1] 
+	00421: DELTAP1    
+	00422: MIRP[srp0,nmd,rd,0] 
+	00423: MDRP[nrp0,nmd,rd,0] 
+	00424: SVTCA[y-axis] 
+	00425: SRP0       
+	00426: MIRP[srp0,md,rd,1] 
+	00427: RTDG       
+	00428: SRP2       
+	00429: IP         
+	00430: MDAP[rd]   
+	00431: RTG        
+	00432: SVTCA[x-axis] 
+	00433: SRP0       
+	00434: MIRP[srp0,nmd,rd,1] 
+	00435: MIRP[srp0,nmd,rd,0] 
+	00436: MDRP[nrp0,nmd,rd,0] 
+	00437: SVTCA[y-axis] 
+	00438: SRP0       
+	00439: MIRP[srp0,md,rd,1] 
+	00440: RTDG       
+	00441: SRP2       
+	00442: IP         
+	00443: MDAP[rd]   
+	00444: RTG        
+	00445: SVTCA[x-axis] 
+	00446: SRP0       
+	00447: MIRP[srp0,nmd,rd,1] 
+	00448: DELTAP1    
+	00449: MIRP[srp0,nmd,rd,0] 
+	00450: MDRP[nrp0,nmd,rd,0] 
+	00451: SVTCA[y-axis] 
+	00452: SRP0       
+	00453: MIRP[srp0,md,rd,1] 
+	00454: RTDG       
+	00455: SRP2       
+	00456: IP         
+	00457: MDAP[rd]   
+	00458: RTG        
+	00459: SVTCA[x-axis] 
+	00460: SRP0       
+	00461: MIRP[srp0,nmd,rd,1] 
+	00462: DELTAP1    
+	00463: MIRP[srp0,nmd,rd,0] 
+	00464: MDRP[nrp0,nmd,rd,0] 
+	00465: SVTCA[y-axis] 
+	00466: SRP0       
+	00467: MIRP[srp0,md,rd,1] 
+	00468: RTDG       
+	00469: SRP2       
+	00470: IP         
+	00471: MDAP[rd]   
+	00472: RTG        
+	00473: SVTCA[x-axis] 
+	00474: SRP0       
+	00475: MIRP[srp0,nmd,rd,1] 
+	00476: DELTAP1    
+	00477: MIRP[srp0,nmd,rd,0] 
+	00478: MDRP[nrp0,nmd,rd,0] 
+	00479: SVTCA[y-axis] 
+	00480: SRP0       
+	00481: MIRP[srp0,md,rd,1] 
+	00482: RTDG       
+	00483: SRP2       
+	00484: IP         
+	00485: MDAP[rd]   
+	00486: RTG        
+	00487: SVTCA[x-axis] 
+	00488: SRP0       
+	00489: MIRP[srp0,nmd,rd,1] 
+	00490: MIRP[srp0,nmd,rd,0] 
+	00491: MDRP[nrp0,nmd,rd,0] 
+	00492: SRP1       
+	00493: SHP[rp1,zp0] 
+	00494: MDAP[rd]   
+	00495: DELTAP1    
+	00496: SRP1       
+	00497: SHP[rp1,zp0] 
+	00498: MDAP[rd]   
+	00499: DELTAP1    
+	00500: IUP[y]     
+	00501: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short On
+	 19:        XDual         Y-Short         On
+	 20:  YDual                               On
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short On
+	 33:        XDual         Y-Short         On
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short On
+	 40:        XDual                         On
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:  YDual                       X-Short On
+	 46:  YDual                               On
+	 47:  YDual                       X-Short Off
+	 48:  YDual XDual         Y-Short         On
+	 49:  YDual XDual         Y-Short         Off
+	 50:  YDual XDual                 X-Short On
+	 51:  YDual XDual                 X-Short On
+	 52:        XDual                         On
+	 53:  YDual                               On
+	 54:        XDual                         On
+	 55:  YDual XDual                 X-Short On
+	 56:  YDual XDual                 X-Short Off
+	 57:        XDual         Y-Short         On
+	 58:        XDual         Y-Short         Off
+	 59:  YDual                       X-Short On
+	 60:  YDual                               On
+	 61:  YDual                       X-Short Off
+	 62:  YDual XDual         Y-Short         On
+	 63:  YDual XDual         Y-Short         Off
+	 64:  YDual XDual                 X-Short On
+	 65:  YDual XDual                 X-Short On
+	 66:        XDual                 X-Short On
+	 67:        XDual         Y-Short         On
+	 68:  YDual                               On
+	 69:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   258,   830)  ->  Abs (   258,   830)
+	  1: Rel (   -84,     0)  ->  Abs (   174,   830)
+	  2: Rel (   -56,     0)  ->  Abs (   118,   830)
+	  3: Rel (     0,    42)  ->  Abs (   118,   872)
+	  4: Rel (     0,    43)  ->  Abs (   118,   915)
+	  5: Rel (    56,     0)  ->  Abs (   174,   915)
+	  6: Rel (    84,     0)  ->  Abs (   258,   915)
+	  7: Rel (     0,   171)  ->  Abs (   258,  1086)
+	  8: Rel (   -52,     0)  ->  Abs (   206,  1086)
+	  9: Rel (   -57,     0)  ->  Abs (   149,  1086)
+	 10: Rel (     0,    42)  ->  Abs (   149,  1128)
+	 11: Rel (     0,    42)  ->  Abs (   149,  1170)
+	 12: Rel (    57,     0)  ->  Abs (   206,  1170)
+	 13: Rel (   249,     0)  ->  Abs (   455,  1170)
+	 14: Rel (    56,     0)  ->  Abs (   511,  1170)
+	 15: Rel (     0,   -42)  ->  Abs (   511,  1128)
+	 16: Rel (     0,   -42)  ->  Abs (   511,  1086)
+	 17: Rel (   -56,     0)  ->  Abs (   455,  1086)
+	 18: Rel (  -113,     0)  ->  Abs (   342,  1086)
+	 19: Rel (     0,  -171)  ->  Abs (   342,   915)
+	 20: Rel (   557,     0)  ->  Abs (   899,   915)
+	 21: Rel (     0,   171)  ->  Abs (   899,  1086)
+	 22: Rel (  -112,     0)  ->  Abs (   787,  1086)
+	 23: Rel (   -56,     0)  ->  Abs (   731,  1086)
+	 24: Rel (     0,    42)  ->  Abs (   731,  1128)
+	 25: Rel (     0,    42)  ->  Abs (   731,  1170)
+	 26: Rel (    56,     0)  ->  Abs (   787,  1170)
+	 27: Rel (   249,     0)  ->  Abs (  1036,  1170)
+	 28: Rel (    57,     0)  ->  Abs (  1093,  1170)
+	 29: Rel (     0,   -42)  ->  Abs (  1093,  1128)
+	 30: Rel (     0,   -42)  ->  Abs (  1093,  1086)
+	 31: Rel (   -57,     0)  ->  Abs (  1036,  1086)
+	 32: Rel (   -52,     0)  ->  Abs (   984,  1086)
+	 33: Rel (     0,  -171)  ->  Abs (   984,   915)
+	 34: Rel (    84,     0)  ->  Abs (  1068,   915)
+	 35: Rel (    56,     0)  ->  Abs (  1124,   915)
+	 36: Rel (     0,   -43)  ->  Abs (  1124,   872)
+	 37: Rel (     0,   -42)  ->  Abs (  1124,   830)
+	 38: Rel (   -56,     0)  ->  Abs (  1068,   830)
+	 39: Rel (   -84,     0)  ->  Abs (   984,   830)
+	 40: Rel (     0,  -746)  ->  Abs (   984,    84)
+	 41: Rel (    95,     0)  ->  Abs (  1079,    84)
+	 42: Rel (    56,     0)  ->  Abs (  1135,    84)
+	 43: Rel (     0,   -42)  ->  Abs (  1135,    42)
+	 44: Rel (     0,   -42)  ->  Abs (  1135,     0)
+	 45: Rel (   -56,     0)  ->  Abs (  1079,     0)
+	 46: Rel (  -292,     0)  ->  Abs (   787,     0)
+	 47: Rel (   -56,     0)  ->  Abs (   731,     0)
+	 48: Rel (     0,    42)  ->  Abs (   731,    42)
+	 49: Rel (     0,    42)  ->  Abs (   731,    84)
+	 50: Rel (    56,     0)  ->  Abs (   787,    84)
+	 51: Rel (   112,     0)  ->  Abs (   899,    84)
+	 52: Rel (     0,   482)  ->  Abs (   899,   566)
+	 53: Rel (  -557,     0)  ->  Abs (   342,   566)
+	 54: Rel (     0,  -482)  ->  Abs (   342,    84)
+	 55: Rel (   113,     0)  ->  Abs (   455,    84)
+	 56: Rel (    56,     0)  ->  Abs (   511,    84)
+	 57: Rel (     0,   -42)  ->  Abs (   511,    42)
+	 58: Rel (     0,   -42)  ->  Abs (   511,     0)
+	 59: Rel (   -56,     0)  ->  Abs (   455,     0)
+	 60: Rel (  -292,     0)  ->  Abs (   163,     0)
+	 61: Rel (   -56,     0)  ->  Abs (   107,     0)
+	 62: Rel (     0,    42)  ->  Abs (   107,    42)
+	 63: Rel (     0,    42)  ->  Abs (   107,    84)
+	 64: Rel (    56,     0)  ->  Abs (   163,    84)
+	 65: Rel (    95,     0)  ->  Abs (   258,    84)
+	 66: Rel (    84,   746)  ->  Abs (   342,   830)
+	 67: Rel (     0,  -180)  ->  Abs (   342,   650)
+	 68: Rel (   557,     0)  ->  Abs (   899,   650)
+	 69: Rel (     0,   180)  ->  Abs (   899,   830)
+
+	Glyph 427: off = 0x000176CA, len = 530
+	  numberOfContours:	1
+	  xMin:			62
+	  yMin:			0
+	  xMax:			1134
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  57
+
+	  Length of Instructions:	383
+	00000: NPUSHB      (29):   169     8   169    30     2    96    11   112     7   114 
+	                            11   131    11   142    30   142    31   147     7   148 
+	                            11   160     7   163    11   177     7    11     7 
+	00031: PUSHW[1]            -32 
+	00034: NPUSHB      (49):    23     8     0     6     7    31    32    50    44    43 
+	                             5    59     1    45    59     1    49    64    37    41 
+	                            52    49    64    25    29    52    49    64     9    19 
+	                            52    49    49    56     9     3     3    24    32     0 
+	                            47    16    47     2    47    47    54    19    23 
+	00085: PUSHW[1]            686 
+	00088: NPUSHB      (11):    21    92    24    21    21    23    24    34    19    38 
+	                            42 
+	00101: PUSHW[1]            686 
+	00104: NPUSHB      (11):    40    92    43    40    40    42    43    34    38    18 
+	                            14 
+	00117: PUSHW[1]            686 
+	00120: NPUSHB      (14):     0    16     1    16    92    13    16    16    14    13 
+	                            34    18    37    33 
+	00136: PUSHW[1]            686 
+	00139: NPUSHB      (16):     0    35    16    35     2    35    92    32    35    35 
+	                            33    32    34    37    56    52 
+	00157: PUSHW[1]            686 
+	00160: NPUSHB      (40):    15    54    31    54     2    54    47    51    54    54 
+	                            52    51    34    56     7    31    38    28    33     9 
+	                            38    37    37    19    19    18    56     0     9     7 
+	                            18    10    12    13    32    25   223    24     1    24 
+	00202: PUSHW[1]            675 
+	00205: NPUSHB      (11):    59    57    32    32    51   191    43   207    43     2 
+	                            43 
+	00218: PUSHW[1]            491 
+	00221: PUSHB[4]             58    71    97    24 
+	00226: CALL       
+	00227: SRP0       
+	00228: MIRP[srp0,nmd,rd,2] 
+	00229: DELTAP1    
+	00230: ALIGNRP    
+	00231: MIRP[srp0,md,rd,1] 
+	00232: ALIGNRP    
+	00233: SRP0       
+	00234: MIRP[srp0,nmd,rd,0] 
+	00235: DELTAP1    
+	00236: ALIGNRP    
+	00237: MIRP[srp0,md,rd,1] 
+	00238: ALIGNRP    
+	00239: SVTCA[y-axis] 
+	00240: MIAP[rd+ci] 
+	00241: MIAP[rd+ci] 
+	00242: MIAP[rd+ci] 
+	00243: SRP0       
+	00244: ALIGNRP    
+	00245: SRP0       
+	00246: ALIGNRP    
+	00247: SRP0       
+	00248: ALIGNRP    
+	00249: SRP0       
+	00250: MIRP[nrp0,md,rd,1] 
+	00251: SRP1       
+	00252: IP         
+	00253: IP         
+	00254: SRP0       
+	00255: MIRP[srp0,md,rd,1] 
+	00256: RTDG       
+	00257: SRP2       
+	00258: IP         
+	00259: MDAP[rd]   
+	00260: RTG        
+	00261: SVTCA[x-axis] 
+	00262: SRP0       
+	00263: MIRP[srp0,nmd,rd,1] 
+	00264: DELTAP1    
+	00265: MIRP[srp0,nmd,rd,0] 
+	00266: MDRP[nrp0,nmd,rd,0] 
+	00267: SVTCA[y-axis] 
+	00268: SRP0       
+	00269: MIRP[srp0,md,rd,1] 
+	00270: RTDG       
+	00271: SRP2       
+	00272: IP         
+	00273: MDAP[rd]   
+	00274: RTG        
+	00275: SVTCA[x-axis] 
+	00276: SRP0       
+	00277: MIRP[srp0,nmd,rd,1] 
+	00278: DELTAP1    
+	00279: MIRP[srp0,nmd,rd,0] 
+	00280: MDRP[nrp0,nmd,rd,0] 
+	00281: SVTCA[y-axis] 
+	00282: SRP0       
+	00283: MIRP[srp0,md,rd,1] 
+	00284: RTDG       
+	00285: SRP2       
+	00286: IP         
+	00287: MDAP[rd]   
+	00288: RTG        
+	00289: SVTCA[x-axis] 
+	00290: SRP0       
+	00291: MIRP[srp0,nmd,rd,1] 
+	00292: DELTAP1    
+	00293: MIRP[srp0,nmd,rd,0] 
+	00294: MDRP[nrp0,nmd,rd,0] 
+	00295: SVTCA[y-axis] 
+	00296: SRP0       
+	00297: MIRP[srp0,md,rd,1] 
+	00298: RTDG       
+	00299: SRP2       
+	00300: IP         
+	00301: MDAP[rd]   
+	00302: RTG        
+	00303: SVTCA[x-axis] 
+	00304: SRP0       
+	00305: MIRP[srp0,nmd,rd,1] 
+	00306: MIRP[srp0,nmd,rd,0] 
+	00307: MDRP[nrp0,nmd,rd,0] 
+	00308: SVTCA[y-axis] 
+	00309: SRP0       
+	00310: MIRP[srp0,md,rd,1] 
+	00311: RTDG       
+	00312: SRP2       
+	00313: IP         
+	00314: MDAP[rd]   
+	00315: RTG        
+	00316: SVTCA[x-axis] 
+	00317: SRP0       
+	00318: MIRP[srp0,nmd,rd,1] 
+	00319: MIRP[srp0,nmd,rd,0] 
+	00320: MDRP[nrp0,nmd,rd,0] 
+	00321: SRP1       
+	00322: SHP[rp1,zp0] 
+	00323: MDAP[rd]   
+	00324: DELTAP1    
+	00325: SRP1       
+	00326: SRP2       
+	00327: IP         
+	00328: MDAP[rd]   
+	00329: SVTCA[y-axis] 
+	00330: SRP1       
+	00331: SRP2       
+	00332: IP         
+	00333: MDAP[rd]   
+	00334: CALL       
+	00335: CALL       
+	00336: CALL       
+	00337: ALIGNRP    
+	00338: MIRP[nrp0,md,rd,1] 
+	00339: SRP0       
+	00340: MIRP[nrp0,md,rd,1] 
+	00341: SPVTCA[x-axis] 
+	00342: SFVTCA[x-axis] 
+	00343: SRP0       
+	00344: ALIGNRP    
+	00345: ALIGNRP    
+	00346: SFVTPV     
+	00347: SRP0       
+	00348: ALIGNRP    
+	00349: ALIGNRP    
+	00350: ALIGNRP    
+	00351: ALIGNRP    
+	00352: RS         
+	00353: JROF       
+	00354: NPUSHB      (14):    26    27    10    11    27    10    25    31     1    26 
+	                            11    28    31     1 
+	00370: SVTCA[y-axis] 
+	00371: CALL       
+	00372: SVTCA[x-axis] 
+	00373: CALL       
+	00374: FLIPRGON   
+	00375: FLIPRGON   
+	00376: SVTCA[y-axis] 
+	00377: SHPIX      
+	00378: IUP[y]     
+	00379: IUP[x]     
+	00380: SVTCA[y-axis] 
+	00381: DELTAP2    
+	00382: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                               On
+	  7:        XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual                         On
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                               On
+	 20:  YDual                       X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short On
+	 25:        XDual                         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:                      Y-Short X-Short Off
+	 31:                      Y-Short X-Short On
+	 32:        XDual                         On
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                               On
+	 39:  YDual                       X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short On
+	 44:        XDual                         On
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short On
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual                       X-Short On
+	 53:  YDual                       X-Short Off
+	 54:  YDual XDual         Y-Short         On
+	 55:  YDual XDual         Y-Short         Off
+	 56:  YDual XDual                 X-Short On
+	 57:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   339,  1071)  ->  Abs (   339,  1071)
+	  1: Rel (   317,     0)  ->  Abs (   656,  1071)
+	  2: Rel (    57,     0)  ->  Abs (   713,  1071)
+	  3: Rel (     0,   -42)  ->  Abs (   713,  1029)
+	  4: Rel (     0,   -42)  ->  Abs (   713,   987)
+	  5: Rel (   -57,     0)  ->  Abs (   656,   987)
+	  6: Rel (  -317,     0)  ->  Abs (   339,   987)
+	  7: Rel (     0,  -249)  ->  Abs (   339,   738)
+	  8: Rel (   141,   158)  ->  Abs (   480,   896)
+	  9: Rel (   178,     0)  ->  Abs (   658,   896)
+	 10: Rel (   154,     0)  ->  Abs (   812,   896)
+	 11: Rel (   171,  -177)  ->  Abs (   983,   719)
+	 12: Rel (     0,  -114)  ->  Abs (   983,   605)
+	 13: Rel (     0,  -521)  ->  Abs (   983,    84)
+	 14: Rel (    95,     0)  ->  Abs (  1078,    84)
+	 15: Rel (    56,     0)  ->  Abs (  1134,    84)
+	 16: Rel (     0,   -42)  ->  Abs (  1134,    42)
+	 17: Rel (     0,   -42)  ->  Abs (  1134,     0)
+	 18: Rel (   -56,     0)  ->  Abs (  1078,     0)
+	 19: Rel (  -274,     0)  ->  Abs (   804,     0)
+	 20: Rel (   -56,     0)  ->  Abs (   748,     0)
+	 21: Rel (     0,    42)  ->  Abs (   748,    42)
+	 22: Rel (     0,    42)  ->  Abs (   748,    84)
+	 23: Rel (    56,     0)  ->  Abs (   804,    84)
+	 24: Rel (    95,     0)  ->  Abs (   899,    84)
+	 25: Rel (     0,   515)  ->  Abs (   899,   599)
+	 26: Rel (     0,    86)  ->  Abs (   899,   685)
+	 27: Rel (  -126,   127)  ->  Abs (   773,   812)
+	 28: Rel (  -122,     0)  ->  Abs (   651,   812)
+	 29: Rel (   -76,     0)  ->  Abs (   575,   812)
+	 30: Rel (  -119,   -61)  ->  Abs (   456,   751)
+	 31: Rel (  -117,  -135)  ->  Abs (   339,   616)
+	 32: Rel (     0,  -532)  ->  Abs (   339,    84)
+	 33: Rel (    94,     0)  ->  Abs (   433,    84)
+	 34: Rel (    57,     0)  ->  Abs (   490,    84)
+	 35: Rel (     0,   -42)  ->  Abs (   490,    42)
+	 36: Rel (     0,   -42)  ->  Abs (   490,     0)
+	 37: Rel (   -57,     0)  ->  Abs (   433,     0)
+	 38: Rel (  -273,     0)  ->  Abs (   160,     0)
+	 39: Rel (   -56,     0)  ->  Abs (   104,     0)
+	 40: Rel (     0,    42)  ->  Abs (   104,    42)
+	 41: Rel (     0,    42)  ->  Abs (   104,    84)
+	 42: Rel (    56,     0)  ->  Abs (   160,    84)
+	 43: Rel (    94,     0)  ->  Abs (   254,    84)
+	 44: Rel (     0,   903)  ->  Abs (   254,   987)
+	 45: Rel (  -135,     0)  ->  Abs (   119,   987)
+	 46: Rel (   -57,     0)  ->  Abs (    62,   987)
+	 47: Rel (     0,    42)  ->  Abs (    62,  1029)
+	 48: Rel (     0,    42)  ->  Abs (    62,  1071)
+	 49: Rel (    57,     0)  ->  Abs (   119,  1071)
+	 50: Rel (   135,     0)  ->  Abs (   254,  1071)
+	 51: Rel (     0,    99)  ->  Abs (   254,  1170)
+	 52: Rel (  -112,     0)  ->  Abs (   142,  1170)
+	 53: Rel (   -57,     0)  ->  Abs (    85,  1170)
+	 54: Rel (     0,    42)  ->  Abs (    85,  1212)
+	 55: Rel (     0,    43)  ->  Abs (    85,  1255)
+	 56: Rel (    57,     0)  ->  Abs (   142,  1255)
+	 57: Rel (   197,     0)  ->  Abs (   339,  1255)
+
+	Glyph 428: off = 0x000178DC, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			229
+	  yMin:			0
+	  xMax:			1001
+	  yMax:			1472
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	0
+		Y WOffset:	265
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1    52    17 
+	00004: PUSHW[1]           -277 
+	00007: PUSHB[5]             72    43     1     1    41 
+	00013: PUSHW[2]            651    41 
+	00018: SVTCA[y-axis] 
+	00019: CALL       
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: SHC[rp1,zp0] 
+
+	Glyph 429: off = 0x0001790E, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			187
+	  yMin:			0
+	  xMax:			1048
+	  yMax:			1207
+
+	     0: Flags:		0x0226
+		Glyf Index:	213
+		X BOffset:	1
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	215
+		X BOffset:	-100
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              1    95    45     1    45    17 
+	00007: PUSHW[1]           -379 
+	00010: PUSHB[5]             72    43     1     1    34 
+	00016: PUSHW[2]            652    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 430: off = 0x00017942, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			229
+	  yMin:			0
+	  xMax:			1001
+	  yMax:			1425
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	216
+		X WOffset:	0
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              1    48    43     1    43     0 
+	00007: PUSHW[1]            257 
+	00010: PUSHB[5]             72    43     1     1    33 
+	00016: PUSHW[2]            798    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 431: off = 0x00017978, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			187
+	  yMin:			0
+	  xMax:			1048
+	  yMax:			1161
+
+	     0: Flags:		0x0226
+		Glyf Index:	213
+		X BOffset:	1
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	216
+		X BOffset:	-92
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              1    15    29     1    29    17 
+	00007: PUSHW[1]           -351 
+	00010: PUSHB[5]             72    43     1     1    26 
+	00016: PUSHW[2]            800    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 432: off = 0x000179AC, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			229
+	  yMin:			0
+	  xMax:			1001
+	  yMax:			1563
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	217
+		X WOffset:	0
+		Y WOffset:	265
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              1   207    55     1    55    17 
+	00007: PUSHW[1]           -259 
+	00010: PUSHB[5]             72    43     1     1    52 
+	00016: PUSHW[2]            651    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP2    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 433: off = 0x000179E2, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			187
+	  yMin:			0
+	  xMax:			1048
+	  yMax:			1298
+
+	     0: Flags:		0x0226
+		Glyf Index:	213
+		X BOffset:	1
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	217
+		X BOffset:	-71
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1    48    17 
+	00004: PUSHW[1]           -332 
+	00007: PUSHB[5]             72    43     1     1    45 
+	00013: PUSHW[2]            652    41 
+	00018: SVTCA[y-axis] 
+	00019: CALL       
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: SHC[rp1,zp0] 
+
+	Glyph 434: off = 0x00017A12, len = 370
+	  numberOfContours:	1
+	  xMin:			229
+	  yMin:			-291
+	  xMax:			1001
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  44
+
+	  Length of Instructions:	250
+	00000: PUSHB[2]             21    25 
+	00003: PUSHW[3]            676    23   -64 
+	00010: NPUSHB      (14):    11    13    52    23    54    26    23    23    25    26 
+	                            29    21    33    37 
+	00026: PUSHW[1]            676 
+	00029: NPUSHB      (16):    35    64    11    13    52    35    54    38    35    35 
+	                            37    38    29    33    44    40 
+	00047: PUSHW[1]            676 
+	00050: NPUSHB      (16):    42    64    11    13    52    42    54    39    42    42 
+	                            40    39    29    44    32    28 
+	00068: PUSHW[3]            676    30   -64 
+	00075: NPUSHB      (32):    11    13    52    30    54    27    30    30    28    27 
+	                            29    32    37    38    33    28    38    33    32     2 
+	                            40    38    44    25    38    21    21     0     0    44 
+	                             8    10 
+	00109: PUSHW[1]            344 
+	00112: PUSHB[7]             15    55     6     6    20     8     0 
+	00120: PUSHW[1]            -16 
+	00123: NPUSHB      (29):     0    20    16    20    18    12    12     3    55    18 
+	                            64    13    16    52    18    18    38    39    30    27 
+	                            79    26     1    26    25    45   140   223    24 
+	00154: CALL       
+	00155: FLIPOFF    
+	00156: SRP0       
+	00157: MIRP[srp0,nmd,rd,0] 
+	00158: DELTAP1    
+	00159: ALIGNRP    
+	00160: FLIPON     
+	00161: MIRP[srp0,md,rd,1] 
+	00162: ALIGNRP    
+	00163: SHP[rp1,zp0] 
+	00164: MDAP[rd]   
+	00165: CALL       
+	00166: MIRP[srp0,md,rd,1] 
+	00167: SHP[rp2,zp1] 
+	00168: MDAP[rd]   
+	00169: SRP1       
+	00170: IP         
+	00171: SHPIX      
+	00172: SHP[rp2,zp1] 
+	00173: SHPIX      
+	00174: SVTCA[y-axis] 
+	00175: MIAP[rd+ci] 
+	00176: SHP[rp1,zp0] 
+	00177: MDAP[rd]   
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: MIRP[nrp0,nmd,rd,0] 
+	00180: MIAP[rd+ci] 
+	00181: ALIGNRP    
+	00182: SRP0       
+	00183: ALIGNRP    
+	00184: SRP0       
+	00185: MIRP[nrp0,md,rd,1] 
+	00186: SRP0       
+	00187: MIRP[nrp0,md,rd,1] 
+	00188: MIAP[rd+ci] 
+	00189: ALIGNRP    
+	00190: MIRP[nrp0,md,rd,1] 
+	00191: SRP0       
+	00192: MIRP[nrp0,md,rd,1] 
+	00193: SRP0       
+	00194: MIRP[srp0,md,rd,1] 
+	00195: RTDG       
+	00196: SRP2       
+	00197: IP         
+	00198: MDAP[rd]   
+	00199: RTG        
+	00200: SVTCA[x-axis] 
+	00201: SRP0       
+	00202: MIRP[srp0,nmd,rd,1] 
+	00203: CALL       
+	00204: MIRP[srp0,nmd,rd,0] 
+	00205: MDRP[nrp0,nmd,rd,0] 
+	00206: SVTCA[y-axis] 
+	00207: SRP0       
+	00208: MIRP[srp0,md,rd,1] 
+	00209: RTDG       
+	00210: SRP2       
+	00211: IP         
+	00212: MDAP[rd]   
+	00213: RTG        
+	00214: SVTCA[x-axis] 
+	00215: SRP0       
+	00216: MIRP[srp0,nmd,rd,1] 
+	00217: CALL       
+	00218: MIRP[srp0,nmd,rd,0] 
+	00219: MDRP[nrp0,nmd,rd,0] 
+	00220: SVTCA[y-axis] 
+	00221: SRP0       
+	00222: MIRP[srp0,md,rd,1] 
+	00223: RTDG       
+	00224: SRP2       
+	00225: IP         
+	00226: MDAP[rd]   
+	00227: RTG        
+	00228: SVTCA[x-axis] 
+	00229: SRP0       
+	00230: MIRP[srp0,nmd,rd,1] 
+	00231: CALL       
+	00232: MIRP[srp0,nmd,rd,0] 
+	00233: MDRP[nrp0,nmd,rd,0] 
+	00234: SVTCA[y-axis] 
+	00235: SRP0       
+	00236: MIRP[srp0,md,rd,1] 
+	00237: RTDG       
+	00238: SRP2       
+	00239: IP         
+	00240: MDAP[rd]   
+	00241: RTG        
+	00242: SVTCA[x-axis] 
+	00243: SRP0       
+	00244: MIRP[srp0,nmd,rd,1] 
+	00245: CALL       
+	00246: MIRP[srp0,nmd,rd,0] 
+	00247: MDRP[nrp0,nmd,rd,0] 
+	00248: IUP[y]     
+	00249: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short Off
+	  2:                      Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual                               On
+	 27:        XDual                         On
+	 28:  YDual                               On
+	 29:  YDual                       X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual                               On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                               On
+	 39:        XDual                         On
+	 40:  YDual                               On
+	 41:  YDual XDual                 X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   688,     0)  ->  Abs (   688,     0)
+	  1: Rel (   -53,     0)  ->  Abs (   635,     0)
+	  2: Rel (   -77,   -77)  ->  Abs (   558,   -77)
+	  3: Rel (     0,   -56)  ->  Abs (   558,  -133)
+	  4: Rel (     0,   -39)  ->  Abs (   558,  -172)
+	  5: Rel (    58,   -52)  ->  Abs (   616,  -224)
+	  6: Rel (    54,     0)  ->  Abs (   670,  -224)
+	  7: Rel (    50,     0)  ->  Abs (   720,  -224)
+	  8: Rel (    36,    31)  ->  Abs (   756,  -193)
+	  9: Rel (    17,    15)  ->  Abs (   773,  -178)
+	 10: Rel (    12,     0)  ->  Abs (   785,  -178)
+	 11: Rel (    33,     0)  ->  Abs (   818,  -178)
+	 12: Rel (     0,   -33)  ->  Abs (   818,  -211)
+	 13: Rel (     0,   -30)  ->  Abs (   818,  -241)
+	 14: Rel (   -96,   -50)  ->  Abs (   722,  -291)
+	 15: Rel (   -54,     0)  ->  Abs (   668,  -291)
+	 16: Rel (   -77,     0)  ->  Abs (   591,  -291)
+	 17: Rel (  -100,    87)  ->  Abs (   491,  -204)
+	 18: Rel (     0,    77)  ->  Abs (   491,  -127)
+	 19: Rel (     0,    73)  ->  Abs (   491,   -54)
+	 20: Rel (    48,    54)  ->  Abs (   539,     0)
+	 21: Rel (  -254,     0)  ->  Abs (   285,     0)
+	 22: Rel (   -56,     0)  ->  Abs (   229,     0)
+	 23: Rel (     0,    42)  ->  Abs (   229,    42)
+	 24: Rel (     0,    42)  ->  Abs (   229,    84)
+	 25: Rel (    56,     0)  ->  Abs (   285,    84)
+	 26: Rel (   288,     0)  ->  Abs (   573,    84)
+	 27: Rel (     0,  1002)  ->  Abs (   573,  1086)
+	 28: Rel (  -288,     0)  ->  Abs (   285,  1086)
+	 29: Rel (   -56,     0)  ->  Abs (   229,  1086)
+	 30: Rel (     0,    42)  ->  Abs (   229,  1128)
+	 31: Rel (     0,    42)  ->  Abs (   229,  1170)
+	 32: Rel (    56,     0)  ->  Abs (   285,  1170)
+	 33: Rel (   660,     0)  ->  Abs (   945,  1170)
+	 34: Rel (    56,     0)  ->  Abs (  1001,  1170)
+	 35: Rel (     0,   -42)  ->  Abs (  1001,  1128)
+	 36: Rel (     0,   -42)  ->  Abs (  1001,  1086)
+	 37: Rel (   -56,     0)  ->  Abs (   945,  1086)
+	 38: Rel (  -288,     0)  ->  Abs (   657,  1086)
+	 39: Rel (     0, -1002)  ->  Abs (   657,    84)
+	 40: Rel (   288,     0)  ->  Abs (   945,    84)
+	 41: Rel (    56,     0)  ->  Abs (  1001,    84)
+	 42: Rel (     0,   -42)  ->  Abs (  1001,    42)
+	 43: Rel (     0,   -42)  ->  Abs (  1001,     0)
+	 44: Rel (   -56,     0)  ->  Abs (   945,     0)
+
+	Glyph 435: off = 0x00017B84, len = 342
+	  numberOfContours:	2
+	  xMin:			189
+	  yMin:			-291
+	  xMax:			1046
+	  yMax:			1297
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  43
+
+	  Length of Instructions:	219
+	00000: PUSHB[2]             25    29 
+	00003: PUSHW[1]            686 
+	00006: NPUSHB      (11):    27    88    30    27    27    29    30    34    25    43 
+	                            39 
+	00019: PUSHW[1]            686 
+	00022: NPUSHB      (11):    41    88    38    41    41    39    38    34    43    36 
+	                            32 
+	00035: PUSHW[1]            686 
+	00038: NPUSHB      (22):   112    34   128    34     2    80    34    96    34     2 
+	                            34   149    31    34    34    32    31    34    36    14 
+	                            89    19 
+	00062: PUSHW[3]            792    10   404 
+	00069: PUSHB[8]              4     4    24    24    25     3   197     2 
+	00078: PUSHW[1]            404 
+	00081: PUSHB[6]             36    25    43    16    16     4 
+	00088: PUSHW[1]            -16 
+	00091: PUSHB[5]              4    24    16    24     7 
+	00097: PUSHW[1]            792 
+	00100: PUSHB[5]             22    22    30     0     1 
+	00106: PUSHW[4]            351     3     2   480 
+	00115: NPUSHB      (18):    37    37    38    32    31    79    30     1    30    25 
+	                            44    36     6    43    10    81   127    24 
+	00135: CALL       
+	00136: SVTCA[y-axis] 
+	00137: MIAP[rd+ci] 
+	00138: MIAP[rd+ci] 
+	00139: SVTCA[x-axis] 
+	00140: FLIPOFF    
+	00141: SRP0       
+	00142: MIRP[srp0,nmd,rd,0] 
+	00143: DELTAP1    
+	00144: ALIGNRP    
+	00145: FLIPON     
+	00146: MIRP[srp0,md,rd,1] 
+	00147: ALIGNRP    
+	00148: SRP0       
+	00149: MIRP[srp0,md,rd,1] 
+	00150: ALIGNRP    
+	00151: MIRP[srp0,md,rd,1] 
+	00152: ALIGNRP    
+	00153: SRP1       
+	00154: SHP[rp1,zp0] 
+	00155: MDAP[rd]   
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: SHP[rp1,zp0] 
+	00158: SHPIX      
+	00159: SHP[rp2,zp1] 
+	00160: SHPIX      
+	00161: SHP[rp2,zp1] 
+	00162: MDAP[rd]   
+	00163: SVTCA[y-axis] 
+	00164: SRP0       
+	00165: ALIGNRP    
+	00166: SRP0       
+	00167: MIRP[srp0,nmd,rd,2] 
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: SRP0       
+	00170: ALIGNRP    
+	00171: SRP0       
+	00172: ALIGNRP    
+	00173: SRP0       
+	00174: MIRP[srp0,nmd,rd,2] 
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: MIRP[nrp0,nmd,rd,0] 
+	00177: SRP0       
+	00178: MIRP[srp0,md,rd,1] 
+	00179: RTDG       
+	00180: SRP2       
+	00181: IP         
+	00182: MDAP[rd]   
+	00183: RTG        
+	00184: SVTCA[x-axis] 
+	00185: SRP0       
+	00186: MIRP[srp0,nmd,rd,1] 
+	00187: DELTAP1    
+	00188: DELTAP1    
+	00189: MIRP[srp0,nmd,rd,0] 
+	00190: MDRP[nrp0,nmd,rd,0] 
+	00191: SVTCA[y-axis] 
+	00192: SRP0       
+	00193: MIRP[srp0,md,rd,1] 
+	00194: RTDG       
+	00195: SRP2       
+	00196: IP         
+	00197: MDAP[rd]   
+	00198: RTG        
+	00199: SVTCA[x-axis] 
+	00200: SRP0       
+	00201: MIRP[srp0,nmd,rd,1] 
+	00202: MIRP[srp0,nmd,rd,0] 
+	00203: MDRP[nrp0,nmd,rd,0] 
+	00204: SVTCA[y-axis] 
+	00205: SRP0       
+	00206: MIRP[srp0,md,rd,1] 
+	00207: RTDG       
+	00208: SRP2       
+	00209: IP         
+	00210: MDAP[rd]   
+	00211: RTG        
+	00212: SVTCA[x-axis] 
+	00213: SRP0       
+	00214: MIRP[srp0,nmd,rd,1] 
+	00215: MIRP[srp0,nmd,rd,0] 
+	00216: MDRP[nrp0,nmd,rd,0] 
+	00217: IUP[y]     
+	00218: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short         On
+	  4:        XDual                 X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual                               On
+	 26:  YDual                       X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual                               On
+	 31:        XDual                         On
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual                               On
+	 38:        XDual                         On
+	 39:  YDual                               On
+	 40:  YDual XDual                 X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:        XDual         Y-Short         Off
+	 43:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   656,  1297)  ->  Abs (   656,  1297)
+	  1: Rel (     0,  -217)  ->  Abs (   656,  1080)
+	  2: Rel (  -124,     0)  ->  Abs (   532,  1080)
+	  3: Rel (     0,   217)  ->  Abs (   532,  1297)
+	  4: Rel (   156, -1297)  ->  Abs (   688,     0)
+	  5: Rel (   -52,     0)  ->  Abs (   636,     0)
+	  6: Rel (   -78,   -75)  ->  Abs (   558,   -75)
+	  7: Rel (     0,   -58)  ->  Abs (   558,  -133)
+	  8: Rel (     0,   -39)  ->  Abs (   558,  -172)
+	  9: Rel (    58,   -52)  ->  Abs (   616,  -224)
+	 10: Rel (    54,     0)  ->  Abs (   670,  -224)
+	 11: Rel (    50,     0)  ->  Abs (   720,  -224)
+	 12: Rel (    36,    31)  ->  Abs (   756,  -193)
+	 13: Rel (    17,    15)  ->  Abs (   773,  -178)
+	 14: Rel (    12,     0)  ->  Abs (   785,  -178)
+	 15: Rel (    33,     0)  ->  Abs (   818,  -178)
+	 16: Rel (     0,   -33)  ->  Abs (   818,  -211)
+	 17: Rel (     0,   -25)  ->  Abs (   818,  -236)
+	 18: Rel (   -87,   -55)  ->  Abs (   731,  -291)
+	 19: Rel (   -63,     0)  ->  Abs (   668,  -291)
+	 20: Rel (   -74,     0)  ->  Abs (   594,  -291)
+	 21: Rel (  -103,    84)  ->  Abs (   491,  -207)
+	 22: Rel (     0,    80)  ->  Abs (   491,  -127)
+	 23: Rel (     0,    72)  ->  Abs (   491,   -55)
+	 24: Rel (    48,    55)  ->  Abs (   539,     0)
+	 25: Rel (  -294,     0)  ->  Abs (   245,     0)
+	 26: Rel (   -56,     0)  ->  Abs (   189,     0)
+	 27: Rel (     0,    42)  ->  Abs (   189,    42)
+	 28: Rel (     0,    42)  ->  Abs (   189,    84)
+	 29: Rel (    56,     0)  ->  Abs (   245,    84)
+	 30: Rel (   330,     0)  ->  Abs (   575,    84)
+	 31: Rel (     0,   697)  ->  Abs (   575,   781)
+	 32: Rel (  -245,     0)  ->  Abs (   330,   781)
+	 33: Rel (   -57,     0)  ->  Abs (   273,   781)
+	 34: Rel (     0,    42)  ->  Abs (   273,   823)
+	 35: Rel (     0,    43)  ->  Abs (   273,   866)
+	 36: Rel (    57,     0)  ->  Abs (   330,   866)
+	 37: Rel (   329,     0)  ->  Abs (   659,   866)
+	 38: Rel (     0,  -782)  ->  Abs (   659,    84)
+	 39: Rel (   330,     0)  ->  Abs (   989,    84)
+	 40: Rel (    57,     0)  ->  Abs (  1046,    84)
+	 41: Rel (     0,   -42)  ->  Abs (  1046,    42)
+	 42: Rel (     0,   -42)  ->  Abs (  1046,     0)
+	 43: Rel (   -57,     0)  ->  Abs (   989,     0)
+
+	Glyph 436: off = 0x00017CDA, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			171
+	  yMin:			-33
+	  xMax:			1199
+	  yMax:			1574
+
+	     0: Flags:		0x0226
+		Glyf Index:	45
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	209
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     1    79    55     1    31    55     1    55    24 
+	00011: PUSHW[1]           -333 
+	00014: PUSHB[5]             72    43     1     1    52 
+	00020: PUSHW[2]            651    41 
+	00025: SVTCA[y-axis] 
+	00026: CALL       
+	00027: SVTCA[x-axis] 
+	00028: CALL       
+	00029: DELTAP1    
+	00030: DELTAP2    
+	00031: SHC[rp1,zp0] 
+
+	Glyph 437: off = 0x00017D14, len = 260
+	  numberOfContours:	2
+	  xMin:			180
+	  yMin:			-386
+	  xMax:			885
+	  yMax:			1310
+
+	EndPoints
+	---------
+	  0:  15
+	  1:  35
+
+	  Length of Instructions:	149
+	00000: PUSHB[3]             34     8    33 
+	00004: PUSHW[6]            -12    34   -22    21    17   686 
+	00017: PUSHB[8]             79    19   143    19   159    19     3    19 
+	00026: PUSHW[1]            429 
+	00029: NPUSHB      (55):    16    19    19    17    16    34    21     0   193     8 
+	                             8     5    11    11    21    32    84    31    32    26 
+	                            27    21     6    27    14    15     3    31     3   240 
+	                             3     3     3     3     8    13    13     0     8     8 
+	                            35    29   147    36    22    23    32    35    35    79 
+	                            16     1    16    25    36 
+	00086: PUSHW[3]            437   465    24 
+	00093: CALL       
+	00094: FLIPOFF    
+	00095: SRP0       
+	00096: MIRP[srp0,nmd,rd,0] 
+	00097: DELTAP1    
+	00098: ALIGNRP    
+	00099: FLIPON     
+	00100: SRP0       
+	00101: MIRP[srp0,md,rd,1] 
+	00102: ALIGNRP    
+	00103: SRP0       
+	00104: MIRP[nrp0,nmd,rd,2] 
+	00105: SRP1       
+	00106: SHP[rp1,zp0] 
+	00107: MDAP[rd]   
+	00108: ALIGNRP    
+	00109: SHP[rp1,zp0] 
+	00110: MDAP[rd]   
+	00111: SRP1       
+	00112: SHP[rp1,zp0] 
+	00113: MDAP[rd]   
+	00114: DELTAP1    
+	00115: SVTCA[y-axis] 
+	00116: MIAP[rd+ci] 
+	00117: MIAP[rd+ci] 
+	00118: SRP0       
+	00119: ALIGNRP    
+	00120: MIRP[srp0,md,rd,1] 
+	00121: MIRP[nrp0,nmd,rd,0] 
+	00122: SRP1       
+	00123: SHP[rp1,zp0] 
+	00124: MDAP[rd]   
+	00125: ALIGNRP    
+	00126: SHP[rp1,zp0] 
+	00127: MDAP[rd]   
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: SRP0       
+	00130: MIRP[srp0,md,rd,1] 
+	00131: RTDG       
+	00132: SRP2       
+	00133: IP         
+	00134: MDAP[rd]   
+	00135: RTG        
+	00136: SVTCA[x-axis] 
+	00137: SRP0       
+	00138: MIRP[srp0,nmd,rd,1] 
+	00139: DELTAP1    
+	00140: MIRP[srp0,nmd,rd,0] 
+	00141: MDRP[nrp0,nmd,rd,0] 
+	00142: IUP[y]     
+	00143: IUP[x]     
+	00144: SVTCA[y-axis] 
+	00145: SHPIX      
+	00146: SHPIX      
+	00147: SVTCA[y-axis] 
+	00148: SHPIX      
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short         On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short On
+	  9:                      Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:                                      On
+	 17:  YDual                               On
+	 18:  YDual                       X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual                               On
+	 23:        XDual                         On
+	 24:        XDual         Y-Short         Off
+	 25:                      Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                               On
+	 28:  YDual                       X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual                 X-Short On
+	 32:                      Y-Short         On
+	 33:  YDual XDual                 X-Short Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   586,  1310)  ->  Abs (   586,  1310)
+	  1: Rel (   271,  -206)  ->  Abs (   857,  1104)
+	  2: Rel (    28,   -21)  ->  Abs (   885,  1083)
+	  3: Rel (     0,   -21)  ->  Abs (   885,  1062)
+	  4: Rel (     0,   -42)  ->  Abs (   885,  1020)
+	  5: Rel (   -43,     0)  ->  Abs (   842,  1020)
+	  6: Rel (   -13,     0)  ->  Abs (   829,  1020)
+	  7: Rel (   -22,    17)  ->  Abs (   807,  1037)
+	  8: Rel (  -221,   169)  ->  Abs (   586,  1206)
+	  9: Rel (  -220,  -169)  ->  Abs (   366,  1037)
+	 10: Rel (   -23,   -17)  ->  Abs (   343,  1020)
+	 11: Rel (   -13,     0)  ->  Abs (   330,  1020)
+	 12: Rel (   -42,     0)  ->  Abs (   288,  1020)
+	 13: Rel (     0,    42)  ->  Abs (   288,  1062)
+	 14: Rel (     0,    21)  ->  Abs (   288,  1083)
+	 15: Rel (    27,    21)  ->  Abs (   315,  1104)
+	 16: Rel (   425,  -323)  ->  Abs (   740,   781)
+	 17: Rel (  -499,     0)  ->  Abs (   241,   781)
+	 18: Rel (   -56,     0)  ->  Abs (   185,   781)
+	 19: Rel (     0,    42)  ->  Abs (   185,   823)
+	 20: Rel (     0,    43)  ->  Abs (   185,   866)
+	 21: Rel (    56,     0)  ->  Abs (   241,   866)
+	 22: Rel (   583,     0)  ->  Abs (   824,   866)
+	 23: Rel (     0,  -925)  ->  Abs (   824,   -59)
+	 24: Rel (     0,  -149)  ->  Abs (   824,  -208)
+	 25: Rel (  -187,  -178)  ->  Abs (   637,  -386)
+	 26: Rel (  -134,     0)  ->  Abs (   503,  -386)
+	 27: Rel (  -267,     0)  ->  Abs (   236,  -386)
+	 28: Rel (   -56,     0)  ->  Abs (   180,  -386)
+	 29: Rel (     0,    42)  ->  Abs (   180,  -344)
+	 30: Rel (     0,    43)  ->  Abs (   180,  -301)
+	 31: Rel (    56,     0)  ->  Abs (   236,  -301)
+	 32: Rel (   265,    -1)  ->  Abs (   501,  -302)
+	 33: Rel (   111,     0)  ->  Abs (   612,  -302)
+	 34: Rel (   128,   147)  ->  Abs (   740,  -155)
+	 35: Rel (     0,    96)  ->  Abs (   740,   -59)
+
+	Glyph 438: off = 0x00017E18, len = 42
+	  numberOfContours:	-1  (Composite)
+	  xMin:			89
+	  yMin:			-333
+	  xMax:			1177
+	  yMax:			1170
+
+	     0: Flags:		0x0226
+		Glyf Index:	46
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	494
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1     0    84    16    84     2     0    84    84     1 
+	                            63    64 
+	00014: SVTCA[x-axis] 
+	00015: CALL       
+	00016: DELTAP1    
+	00017: SHC[rp1,zp0] 
+
+	Glyph 439: off = 0x00017E42, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			191
+	  yMin:			-333
+	  xMax:			1171
+	  yMax:			1255
+
+	     0: Flags:		0x0226
+		Glyf Index:	78
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	494
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    75    75    53    53    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 440: off = 0x00017E66, len = 418
+	  numberOfContours:	1
+	  xMin:			146
+	  yMin:			0
+	  xMax:			1082
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  49
+
+	  Length of Instructions:	281
+	00000: NPUSHB     (105):    33     1    33    24     2    12     1     9    12    10 
+	                            22    39    12   138    22   139    24     6    54    12 
+	                           134    12   166    14   182    14     4     1     0     0 
+	                            32    25    12    20    25    25    12    25    24     0 
+	                            13     4    32    12    12    25     1     1     0     2 
+	                            48    49    38    11    39    59    43    16    27    26 
+	                            37    17    36    59    32     7     6     6    44    44 
+	                            43     6    21    22    22    31    31    32    10    24 
+	                            13    22    16     1    12     6    19    15     4     1 
+	                            95     4   175     4   191     4     3     4     4    15 
+	                             9     1     9     9    13 
+	00107: PUSHW[1]           -128 
+	00110: NPUSHB      (41):    21    36    52    22   128    21    36    52    24   128 
+	                            21    36    52    15    19    47    19     2    19    19 
+	                            37    29     0    46    16    46     2    46    46    29 
+	                            41    41    37    34    34    49    26    38    26    59 
+	                            37 
+	00153: MDAP[rd]   
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: ALIGNRP    
+	00156: SRP0       
+	00157: ALIGNRP    
+	00158: SHP[rp1,zp0] 
+	00159: MDAP[rd]   
+	00160: SRP1       
+	00161: SHP[rp1,zp0] 
+	00162: MDAP[rd]   
+	00163: SHP[rp2,zp1] 
+	00164: SHP[rp2,zp1] 
+	00165: MDAP[rd]   
+	00166: DELTAP1    
+	00167: MDAP[rd]   
+	00168: SRP1       
+	00169: SHP[rp1,zp0] 
+	00170: MDAP[rd]   
+	00171: DELTAP1    
+	00172: CALL       
+	00173: CALL       
+	00174: CALL       
+	00175: SHP[rp1,zp0] 
+	00176: MDAP[rd]   
+	00177: DELTAP2    
+	00178: SHP[rp1,zp0] 
+	00179: MDAP[rd]   
+	00180: DELTAP1    
+	00181: DELTAP2    
+	00182: SRP1       
+	00183: SLOOP      
+	00184: IP         
+	00185: SVTCA[y-axis] 
+	00186: MIAP[rd+ci] 
+	00187: ALIGNRP    
+	00188: SRP0       
+	00189: ALIGNRP    
+	00190: SRP0       
+	00191: ALIGNRP    
+	00192: MIAP[rd+ci] 
+	00193: ALIGNRP    
+	00194: SRP0       
+	00195: ALIGNRP    
+	00196: SRP0       
+	00197: ALIGNRP    
+	00198: SRP0       
+	00199: MIRP[srp0,md,rd,1] 
+	00200: ALIGNRP    
+	00201: ALIGNRP    
+	00202: ALIGNRP    
+	00203: SFVTPV     
+	00204: ALIGNRP    
+	00205: ALIGNRP    
+	00206: SRP0       
+	00207: MIRP[srp0,md,rd,1] 
+	00208: ALIGNRP    
+	00209: ALIGNRP    
+	00210: ALIGNRP    
+	00211: SFVTPV     
+	00212: ALIGNRP    
+	00213: ALIGNRP    
+	00214: SFVTL[=p1,p2] 
+	00215: ALIGNRP    
+	00216: SFVTL[=p1,p2] 
+	00217: ALIGNRP    
+	00218: SVTCA[y-axis] 
+	00219: SRP2       
+	00220: SLOOP      
+	00221: IP         
+	00222: SDPVTL[1]  
+	00223: MDAP[nrd]  
+	00224: CALL       
+	00225: SFVTCA[x-axis] 
+	00226: RDTG       
+	00227: SRP0       
+	00228: MDRP[nrp0,nmd,rd,0] 
+	00229: PUSHB[2]              6     2 
+	00232: RS         
+	00233: EQ         
+	00234: IF         
+	00235: PUSHW[2]              1   -32 
+	00240: PUSHB[4]             26    36    52     0 
+	00245: PUSHW[1]            -32 
+	00248: PUSHB[4]             26    36    52     1 
+	00253: PUSHW[1]            -24 
+	00256: PUSHB[4]             15    25    52     0 
+	00261: PUSHW[1]            -24 
+	00264: PUSHB[3]             15    25    52 
+	00268: SVTCA[y-axis] 
+	00269: CALL       
+	00270: CALL       
+	00271: CALL       
+	00272: CALL       
+	00273: EIF        
+	00274: IUP[y]     
+	00275: IUP[x]     
+	00276: SVTCA[x-axis] 
+	00277: DELTAP1    
+	00278: DELTAP2    
+	00279: SVTCA[y-axis] 
+	00280: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual                               On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short On
+	 13:                                      On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short On
+	 23:                              X-Short Off
+	 24:  YDual               Y-Short         On
+	 25:                      Y-Short X-Short On
+	 26:        XDual                         On
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                               On
+	 33:  YDual                       X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short On
+	 38:        XDual                         On
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual                               On
+	 45:  YDual XDual                 X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual         Y-Short         Off
+	 48:  YDual                       X-Short On
+	 49:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   399,   481)  ->  Abs (   399,   481)
+	  1: Rel (   357,   300)  ->  Abs (   756,   781)
+	  2: Rel (   -43,     0)  ->  Abs (   713,   781)
+	  3: Rel (   -56,     0)  ->  Abs (   657,   781)
+	  4: Rel (     0,    42)  ->  Abs (   657,   823)
+	  5: Rel (     0,    43)  ->  Abs (   657,   866)
+	  6: Rel (    56,     0)  ->  Abs (   713,   866)
+	  7: Rel (   269,     0)  ->  Abs (   982,   866)
+	  8: Rel (    57,     0)  ->  Abs (  1039,   866)
+	  9: Rel (     0,   -43)  ->  Abs (  1039,   823)
+	 10: Rel (     0,   -42)  ->  Abs (  1039,   781)
+	 11: Rel (   -57,     0)  ->  Abs (   982,   781)
+	 12: Rel (   -97,     0)  ->  Abs (   885,   781)
+	 13: Rel (  -318,  -266)  ->  Abs (   567,   515)
+	 14: Rel (   128,   -63)  ->  Abs (   695,   452)
+	 15: Rel (   164,  -192)  ->  Abs (   859,   260)
+	 16: Rel (    76,  -176)  ->  Abs (   935,    84)
+	 17: Rel (    91,     0)  ->  Abs (  1026,    84)
+	 18: Rel (    56,     0)  ->  Abs (  1082,    84)
+	 19: Rel (     0,   -42)  ->  Abs (  1082,    42)
+	 20: Rel (     0,   -42)  ->  Abs (  1082,     0)
+	 21: Rel (   -56,     0)  ->  Abs (  1026,     0)
+	 22: Rel (  -153,     0)  ->  Abs (   873,     0)
+	 23: Rel (  -122,   358)  ->  Abs (   751,   358)
+	 24: Rel (  -256,    97)  ->  Abs (   495,   455)
+	 25: Rel (   -96,   -81)  ->  Abs (   399,   374)
+	 26: Rel (     0,  -290)  ->  Abs (   399,    84)
+	 27: Rel (   113,     0)  ->  Abs (   512,    84)
+	 28: Rel (    56,     0)  ->  Abs (   568,    84)
+	 29: Rel (     0,   -42)  ->  Abs (   568,    42)
+	 30: Rel (     0,   -42)  ->  Abs (   568,     0)
+	 31: Rel (   -56,     0)  ->  Abs (   512,     0)
+	 32: Rel (  -310,     0)  ->  Abs (   202,     0)
+	 33: Rel (   -56,     0)  ->  Abs (   146,     0)
+	 34: Rel (     0,    42)  ->  Abs (   146,    42)
+	 35: Rel (     0,    42)  ->  Abs (   146,    84)
+	 36: Rel (    56,     0)  ->  Abs (   202,    84)
+	 37: Rel (   113,     0)  ->  Abs (   315,    84)
+	 38: Rel (     0,   697)  ->  Abs (   315,   781)
+	 39: Rel (  -113,     0)  ->  Abs (   202,   781)
+	 40: Rel (   -56,     0)  ->  Abs (   146,   781)
+	 41: Rel (     0,    42)  ->  Abs (   146,   823)
+	 42: Rel (     0,    43)  ->  Abs (   146,   866)
+	 43: Rel (    56,     0)  ->  Abs (   202,   866)
+	 44: Rel (   310,     0)  ->  Abs (   512,   866)
+	 45: Rel (    56,     0)  ->  Abs (   568,   866)
+	 46: Rel (     0,   -43)  ->  Abs (   568,   823)
+	 47: Rel (     0,   -42)  ->  Abs (   568,   781)
+	 48: Rel (   -56,     0)  ->  Abs (   512,   781)
+	 49: Rel (  -113,     0)  ->  Abs (   399,   781)
+
+	Glyph 441: off = 0x00018008, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-333
+	  xMax:			1112
+	  yMax:			1170
+
+	     0: Flags:		0x0226
+		Glyf Index:	47
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	494
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    51    51    18     2    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 442: off = 0x0001802C, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			187
+	  yMin:			-333
+	  xMax:			1044
+	  yMax:			1255
+
+	     0: Flags:		0x0226
+		Glyf Index:	79
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	494
+		X BOffset:	-13
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    25    25    16    16    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 443: off = 0x00018050, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			46
+	  yMin:			-333
+	  xMax:			1153
+	  yMax:			1170
+
+	     0: Flags:		0x0226
+		Glyf Index:	49
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	494
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    66    66    18     0    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 444: off = 0x00018074, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			108
+	  yMin:			-333
+	  xMax:			1111
+	  yMax:			896
+
+	     0: Flags:		0x0226
+		Glyf Index:	81
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	494
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     1   144    78   160    78   176    78     3     0    78 
+	                             1     0    78    78    48    10    64 
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: DELTAP2    
+	00022: DELTAP1    
+	00023: SHC[rp1,zp0] 
+
+	Glyph 445: off = 0x000180A4, len = 362
+	  numberOfContours:	1
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1107
+	  yMax:			1198
+
+	EndPoints
+	---------
+	  0:  55
+
+	  Length of Instructions:	211
+	00000: NPUSHB      (19):   168    47   184    47     2   133    26   167    29     2 
+	                            10    51     1   139    51   251    51     2    25 
+	00021: PUSHW[1]            -20 
+	00024: NPUSHB      (93):     9    60    52    55    32     9    60    52     0    38 
+	                             7    15    38     7     8     8    41    41    45    38 
+	                            35     9    16    17    38    24    23     2    53    38 
+	                            27     3     0     4    16     4     2     4     4     0 
+	                            47    38    63    38     2    38    38     0    49    38 
+	                           207    31     1    79    31   159    31     2    31    31 
+	                            20    20    11    11    24    25    25    55    55     0 
+	                            16    15    30    48     0    64     0   144     0     3 
+	                            79     0   208     0     2    15     0    95     0   111 
+	                             0     3     0 
+	00119: PUSHW[2]            699    56 
+	00124: SRP0       
+	00125: MIRP[srp0,nmd,rd,0] 
+	00126: DELTAP1    
+	00127: DELTAP1    
+	00128: DELTAP2    
+	00129: MIRP[srp0,md,rd,1] 
+	00130: ALIGNRP    
+	00131: SRP0       
+	00132: ALIGNRP    
+	00133: SRP0       
+	00134: ALIGNRP    
+	00135: SRP0       
+	00136: ALIGNRP    
+	00137: SHP[rp2,zp1] 
+	00138: MDAP[rd]   
+	00139: SHP[rp2,zp1] 
+	00140: MDAP[rd]   
+	00141: SHP[rp2,zp1] 
+	00142: MDAP[rd]   
+	00143: DELTAP1    
+	00144: DELTAP2    
+	00145: MIRP[nrp0,md,rd,1] 
+	00146: SRP1       
+	00147: IP         
+	00148: MDAP[rd]   
+	00149: DELTAP1    
+	00150: SRP1       
+	00151: SHP[rp1,zp0] 
+	00152: MDAP[rd]   
+	00153: DELTAP1    
+	00154: SVTCA[y-axis] 
+	00155: MIAP[rd+ci] 
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: MIAP[rd+ci] 
+	00158: ALIGNRP    
+	00159: MIRP[srp0,md,rd,1] 
+	00160: ALIGNRP    
+	00161: MIAP[rd+ci] 
+	00162: MIRP[srp0,md,rd,1] 
+	00163: SHP[rp2,zp1] 
+	00164: MDAP[rd]   
+	00165: MIAP[rd+ci] 
+	00166: ALIGNRP    
+	00167: MIRP[nrp0,md,rd,1] 
+	00168: SRP0       
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: CALL       
+	00171: CALL       
+	00172: PUSHB[2]              6     2 
+	00175: RS         
+	00176: EQ         
+	00177: IF         
+	00178: PUSHW[2]             25   -64 
+	00183: PUSHB[4]             27    36    52    25 
+	00188: PUSHW[1]            -32 
+	00191: PUSHB[5]             17    26    52    25    27 
+	00197: SVTCA[y-axis] 
+	00198: SRP1       
+	00199: SHP[rp1,zp0] 
+	00200: CALL       
+	00201: CALL       
+	00202: EIF        
+	00203: IUP[y]     
+	00204: IUP[x]     
+	00205: SVTCA[y-axis] 
+	00206: DELTAP1    
+	00207: SVTCA[x-axis] 
+	00208: DELTAP2    
+	00209: DELTAP1    
+	00210: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short On
+	 16:        XDual                         On
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short On
+	 25:        XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual                         Off
+	 33:                      Y-Short X-Short Off
+	 34:                      Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:        XDual         Y-Short X-Short On
+	 44:        XDual         Y-Short X-Short Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:        XDual                         On
+	 50:  YDual XDual         Y-Short         Off
+	 51:  YDual               Y-Short X-Short Off
+	 52:  YDual               Y-Short X-Short Off
+	 53:  YDual                       X-Short On
+	 54:  YDual                       X-Short Off
+	 55:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   342,    84)  ->  Abs (   342,    84)
+	  1: Rel (    20,     0)  ->  Abs (   362,    84)
+	  2: Rel (    71,     0)  ->  Abs (   433,    84)
+	  3: Rel (    35,   -15)  ->  Abs (   468,    69)
+	  4: Rel (     0,   -27)  ->  Abs (   468,    42)
+	  5: Rel (     0,   -27)  ->  Abs (   468,    15)
+	  6: Rel (   -36,   -15)  ->  Abs (   432,     0)
+	  7: Rel (   -70,     0)  ->  Abs (   362,     0)
+	  8: Rel (  -125,     0)  ->  Abs (   237,     0)
+	  9: Rel (   -70,     0)  ->  Abs (   167,     0)
+	 10: Rel (   -37,    15)  ->  Abs (   130,    15)
+	 11: Rel (     0,    27)  ->  Abs (   130,    42)
+	 12: Rel (     0,    27)  ->  Abs (   130,    69)
+	 13: Rel (    36,    15)  ->  Abs (   166,    84)
+	 14: Rel (    71,     0)  ->  Abs (   237,    84)
+	 15: Rel (    20,     0)  ->  Abs (   257,    84)
+	 16: Rel (     0,  1002)  ->  Abs (   257,  1086)
+	 17: Rel (   -37,     0)  ->  Abs (   220,  1086)
+	 18: Rel (   -58,     0)  ->  Abs (   162,  1086)
+	 19: Rel (   -34,    17)  ->  Abs (   128,  1103)
+	 20: Rel (     0,    25)  ->  Abs (   128,  1128)
+	 21: Rel (     0,    25)  ->  Abs (   128,  1153)
+	 22: Rel (    32,    17)  ->  Abs (   160,  1170)
+	 23: Rel (    59,     0)  ->  Abs (   219,  1170)
+	 24: Rel (   123,     0)  ->  Abs (   342,  1170)
+	 25: Rel (     0,  -185)  ->  Abs (   342,   985)
+	 26: Rel (   188,   213)  ->  Abs (   530,  1198)
+	 27: Rel (   228,     0)  ->  Abs (   758,  1198)
+	 28: Rel (   108,     0)  ->  Abs (   866,  1198)
+	 29: Rel (   162,  -118)  ->  Abs (  1028,  1080)
+	 30: Rel (    79,  -184)  ->  Abs (  1107,   896)
+	 31: Rel (     0,  -188)  ->  Abs (  1107,   708)
+	 32: Rel (     0,  -343)  ->  Abs (  1107,   365)
+	 33: Rel (   -33,  -250)  ->  Abs (  1074,   115)
+	 34: Rel (  -143,  -148)  ->  Abs (   931,   -33)
+	 35: Rel (  -114,     0)  ->  Abs (   817,   -33)
+	 36: Rel (   -72,     0)  ->  Abs (   745,   -33)
+	 37: Rel (  -116,    55)  ->  Abs (   629,    22)
+	 38: Rel (     0,    30)  ->  Abs (   629,    52)
+	 39: Rel (     0,    13)  ->  Abs (   629,    65)
+	 40: Rel (    23,    24)  ->  Abs (   652,    89)
+	 41: Rel (    15,     0)  ->  Abs (   667,    89)
+	 42: Rel (    14,     0)  ->  Abs (   681,    89)
+	 43: Rel (    18,    -8)  ->  Abs (   699,    81)
+	 44: Rel (    82,   -33)  ->  Abs (   781,    48)
+	 45: Rel (    51,     0)  ->  Abs (   832,    48)
+	 46: Rel (    74,     0)  ->  Abs (   906,    48)
+	 47: Rel (    94,   106)  ->  Abs (  1000,   154)
+	 48: Rel (    26,   204)  ->  Abs (  1026,   358)
+	 49: Rel (     0,   306)  ->  Abs (  1026,   664)
+	 50: Rel (     0,   210)  ->  Abs (  1026,   874)
+	 51: Rel (   -78,   166)  ->  Abs (   948,  1040)
+	 52: Rel (  -124,    74)  ->  Abs (   824,  1114)
+	 53: Rel (   -62,     0)  ->  Abs (   762,  1114)
+	 54: Rel (  -209,     0)  ->  Abs (   553,  1114)
+	 55: Rel (  -211,  -254)  ->  Abs (   342,   860)
+
+	Glyph 446: off = 0x0001820E, len = 428
+	  numberOfContours:	1
+	  xMin:			108
+	  yMin:			-386
+	  xMax:			984
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  46
+
+	  Length of Instructions:	302
+	00000: NPUSHB      (49):   213    46     1   196    46     1   163    46   178    46 
+	                             2   100    16   100    46     2   135    12   150    12 
+	                           155    16   165    12     4   123    20   179    41   180 
+	                            42     3    28    20   106    20     2     0    41     4 
+	                            42     2    23     8    41    21    22    28    32 
+	00051: PUSHW[1]            686 
+	00054: NPUSHB      (11):    30    92    33    30    30    32    33    34    28    27 
+	                            23 
+	00067: PUSHW[1]            686 
+	00070: NPUSHB      (11):    25    92    22    25    25    23    22    34    27    39 
+	                            35 
+	00083: PUSHW[1]            686 
+	00086: NPUSHB      (13):    37    70    34    37    37    35    34    34    35    59 
+	                            39     6    41 
+	00101: PUSHW[1]            480 
+	00104: NPUSHB      (25):    21   147    18    33    44     7    28    27    10     4 
+	                             9    59     5    14     7     7    22     0     1    32 
+	                            15   223    14     1    14 
+	00131: PUSHW[1]            675 
+	00134: NPUSHB      (11):    48    40    22    32    34    33    25    47    71    97 
+	                            24 
+	00147: CALL       
+	00148: FLIPOFF    
+	00149: SRP0       
+	00150: MIRP[srp0,nmd,rd,0] 
+	00151: ALIGNRP    
+	00152: FLIPON     
+	00153: MIRP[srp0,md,rd,1] 
+	00154: ALIGNRP    
+	00155: SRP0       
+	00156: MIRP[srp0,nmd,rd,0] 
+	00157: DELTAP1    
+	00158: ALIGNRP    
+	00159: MIRP[srp0,md,rd,1] 
+	00160: ALIGNRP    
+	00161: SRP1       
+	00162: IP         
+	00163: MDAP[rd]   
+	00164: SVTCA[y-axis] 
+	00165: MIAP[rd+ci] 
+	00166: MIRP[nrp0,md,rd,1] 
+	00167: ALIGNRP    
+	00168: MIAP[rd+ci] 
+	00169: ALIGNRP    
+	00170: MIAP[rd+ci] 
+	00171: MIRP[srp0,md,rd,1] 
+	00172: MIRP[srp0,nmd,rd,0] 
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: MIAP[rd+ci] 
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: MIRP[srp0,md,rd,1] 
+	00177: RTDG       
+	00178: SRP2       
+	00179: IP         
+	00180: MDAP[rd]   
+	00181: RTG        
+	00182: SVTCA[x-axis] 
+	00183: SRP0       
+	00184: MIRP[srp0,nmd,rd,1] 
+	00185: MIRP[srp0,nmd,rd,0] 
+	00186: MDRP[nrp0,nmd,rd,0] 
+	00187: SVTCA[y-axis] 
+	00188: SRP0       
+	00189: MIRP[srp0,md,rd,1] 
+	00190: RTDG       
+	00191: SRP2       
+	00192: IP         
+	00193: MDAP[rd]   
+	00194: RTG        
+	00195: SVTCA[x-axis] 
+	00196: SRP0       
+	00197: MIRP[srp0,nmd,rd,1] 
+	00198: MIRP[srp0,nmd,rd,0] 
+	00199: MDRP[nrp0,nmd,rd,0] 
+	00200: SVTCA[y-axis] 
+	00201: SRP0       
+	00202: MIRP[srp0,md,rd,1] 
+	00203: RTDG       
+	00204: SRP2       
+	00205: IP         
+	00206: MDAP[rd]   
+	00207: RTG        
+	00208: SVTCA[x-axis] 
+	00209: SRP0       
+	00210: MIRP[srp0,nmd,rd,1] 
+	00211: MIRP[srp0,nmd,rd,0] 
+	00212: MDRP[nrp0,nmd,rd,0] 
+	00213: SFVTPV     
+	00214: SRP0       
+	00215: ALIGNRP    
+	00216: ALIGNRP    
+	00217: RS         
+	00218: JROF       
+	00219: NPUSHB      (14):    45    46    16    17    17    45    15    31     1    16 
+	                            46    18    31     1 
+	00235: SVTCA[y-axis] 
+	00236: CALL       
+	00237: SVTCA[x-axis] 
+	00238: CALL       
+	00239: FLIPRGON   
+	00240: FLIPRGON   
+	00241: SVTCA[y-axis] 
+	00242: MPPEM      
+	00243: PUSHB[1]             27 
+	00245: GTEQ       
+	00246: MPPEM      
+	00247: PUSHB[1]             36 
+	00249: LTEQ       
+	00250: AND        
+	00251: IF         
+	00252: PUSHW[2]             13   -20 
+	00257: PUSHB[3]             20    20    41 
+	00261: PUSHW[1]            -34 
+	00264: PUSHB[2]             16    24 
+	00267: SHPIX      
+	00268: SHPIX      
+	00269: SHPIX      
+	00270: SHPIX      
+	00271: EIF        
+	00272: PUSHB[2]              6     2 
+	00275: RS         
+	00276: EQ         
+	00277: IF         
+	00278: PUSHW[2]             41   -32 
+	00283: PUSHB[3]             17    36    52 
+	00287: SVTCA[y-axis] 
+	00288: CALL       
+	00289: EIF        
+	00290: IUP[y]     
+	00291: IUP[x]     
+	00292: SVTCA[y-axis] 
+	00293: DELTAP2    
+	00294: DELTAP2    
+	00295: DELTAP2    
+	00296: DELTAP1    
+	00297: SVTCA[x-axis] 
+	00298: DELTAP2    
+	00299: DELTAP1    
+	00300: DELTAP1    
+	00301: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual         Y-Short X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:        XDual                         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:        XDual                         On
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                               On
+	 29:  YDual                       X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short On
+	 34:        XDual                         On
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short On
+	 41:        XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short Off
+	 46:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   984,   613)  ->  Abs (   984,   613)
+	  1: Rel (     0,  -672)  ->  Abs (   984,   -59)
+	  2: Rel (     0,  -153)  ->  Abs (   984,  -212)
+	  3: Rel (  -192,  -174)  ->  Abs (   792,  -386)
+	  4: Rel (  -129,     0)  ->  Abs (   663,  -386)
+	  5: Rel (  -146,     0)  ->  Abs (   517,  -386)
+	  6: Rel (   -56,     0)  ->  Abs (   461,  -386)
+	  7: Rel (     0,    42)  ->  Abs (   461,  -344)
+	  8: Rel (     0,    43)  ->  Abs (   461,  -301)
+	  9: Rel (    56,     0)  ->  Abs (   517,  -301)
+	 10: Rel (   145,    -1)  ->  Abs (   662,  -302)
+	 11: Rel (    73,     0)  ->  Abs (   735,  -302)
+	 12: Rel (   101,    61)  ->  Abs (   836,  -241)
+	 13: Rel (    64,   118)  ->  Abs (   900,  -123)
+	 14: Rel (     0,    64)  ->  Abs (   900,   -59)
+	 15: Rel (     0,   658)  ->  Abs (   900,   599)
+	 16: Rel (     0,    84)  ->  Abs (   900,   683)
+	 17: Rel (  -124,   128)  ->  Abs (   776,   811)
+	 18: Rel (  -116,     0)  ->  Abs (   660,   811)
+	 19: Rel (   -92,     0)  ->  Abs (   568,   811)
+	 20: Rel (  -140,   -91)  ->  Abs (   428,   720)
+	 21: Rel (   -85,   -97)  ->  Abs (   343,   623)
+	 22: Rel (     0,  -539)  ->  Abs (   343,    84)
+	 23: Rel (    95,     0)  ->  Abs (   438,    84)
+	 24: Rel (    56,     0)  ->  Abs (   494,    84)
+	 25: Rel (     0,   -42)  ->  Abs (   494,    42)
+	 26: Rel (     0,   -42)  ->  Abs (   494,     0)
+	 27: Rel (   -56,     0)  ->  Abs (   438,     0)
+	 28: Rel (  -274,     0)  ->  Abs (   164,     0)
+	 29: Rel (   -56,     0)  ->  Abs (   108,     0)
+	 30: Rel (     0,    42)  ->  Abs (   108,    42)
+	 31: Rel (     0,    42)  ->  Abs (   108,    84)
+	 32: Rel (    56,     0)  ->  Abs (   164,    84)
+	 33: Rel (    95,     0)  ->  Abs (   259,    84)
+	 34: Rel (     0,   697)  ->  Abs (   259,   781)
+	 35: Rel (   -71,     0)  ->  Abs (   188,   781)
+	 36: Rel (   -56,     0)  ->  Abs (   132,   781)
+	 37: Rel (     0,    42)  ->  Abs (   132,   823)
+	 38: Rel (     0,    43)  ->  Abs (   132,   866)
+	 39: Rel (    56,     0)  ->  Abs (   188,   866)
+	 40: Rel (   155,     0)  ->  Abs (   343,   866)
+	 41: Rel (     0,  -127)  ->  Abs (   343,   739)
+	 42: Rel (    86,    88)  ->  Abs (   429,   827)
+	 43: Rel (   143,    69)  ->  Abs (   572,   896)
+	 44: Rel (    91,     0)  ->  Abs (   663,   896)
+	 45: Rel (   149,     0)  ->  Abs (   812,   896)
+	 46: Rel (   172,  -177)  ->  Abs (   984,   719)
+
+	Glyph 447: off = 0x000183BA, len = 24
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-33
+	  xMax:			1024
+	  yMax:			1425
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0007
+		Glyf Index:	216
+		X WOffset:	-90
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 448: off = 0x000183D2, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1084
+	  yMax:			1161
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	216
+		X BOffset:	-1
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              2     0    28     1    28     9 
+	00007: PUSHW[1]           -300 
+	00010: PUSHB[5]             72    43     2     1    25 
+	00016: PUSHW[2]            800    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 449: off = 0x00018406, len = 24
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-33
+	  xMax:			1024
+	  yMax:			1563
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0007
+		Glyf Index:	217
+		X WOffset:	-90
+		Y WOffset:	265
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 450: off = 0x0001841E, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1084
+	  yMax:			1298
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	217
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              2    47     9 
+	00004: PUSHW[1]           -301 
+	00007: PUSHB[5]             72    43     2     1    44 
+	00013: PUSHW[2]            652    41 
+	00018: SVTCA[y-axis] 
+	00019: CALL       
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: SHC[rp1,zp0] 
+
+	Glyph 451: off = 0x0001844E, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			-333
+	  xMax:			1214
+	  yMax:			1170
+
+	     0: Flags:		0x0226
+		Glyf Index:	53
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	494
+		X BOffset:	-13
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2     0    58    58    16    34    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 452: off = 0x00018472, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			171
+	  yMin:			-333
+	  xMax:			1114
+	  yMax:			887
+
+	     0: Flags:		0x0226
+		Glyf Index:	85
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	494
+		X BOffset:	-63
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    65    65    35    20    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 453: off = 0x00018496, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			185
+	  yMin:			-33
+	  xMax:			1044
+	  yMax:			1574
+
+	     0: Flags:		0x0226
+		Glyf Index:	54
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	14
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              1    31    85     1    85    67 
+	00007: PUSHW[1]           -282 
+	00010: PUSHB[5]             72    43     1     1    82 
+	00016: PUSHW[2]            651    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP3    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 454: off = 0x000184CC, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			207
+	  yMin:			-33
+	  xMax:			1022
+	  yMax:			1310
+
+	     0: Flags:		0x0226
+		Glyf Index:	86
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	214
+		X BOffset:	14
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              1    31    85     1    85    67 
+	00007: PUSHW[1]           -279 
+	00010: PUSHB[5]             72    43     1     1    82 
+	00016: PUSHW[2]            652    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 455: off = 0x00018500, len = 414
+	  numberOfContours:	1
+	  xMin:			143
+	  yMin:			0
+	  xMax:			1084
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  43
+
+	  Length of Instructions:	291
+	00000: NPUSHB      (19):    21    21    26    41    41    37    17    25    26     0 
+	                            38    37    18    38    24    24    43    38    39 
+	00021: PUSHW[1]            -64 
+	00024: NPUSHB      (14):    14    18    52     0    39    16    39     2    39    39 
+	                             8    31    32    36 
+	00040: PUSHW[1]            676 
+	00043: PUSHB[6]             47    34    63    34     2    34 
+	00050: PUSHW[1]            794 
+	00053: NPUSHB       (9):    37    34    34    36    37    29    32    10    14 
+	00064: PUSHW[1]            676 
+	00067: NPUSHB      (14):   111    12     1    12    54    15    12    12    14    15 
+	                            29    10    31    27 
+	00083: PUSHW[1]            676 
+	00086: PUSHB[6]             32    29    48    29     2    29 
+	00093: PUSHW[1]            794 
+	00096: NPUSHB       (9):    26    29    29    27    26    29    31     7     3 
+	00107: PUSHW[1]            676 
+	00110: NPUSHB      (24):   111     5     1     5    54     2     5     5     3     2 
+	                            29     7    15     2    30     9     8    32    31     8 
+	                             2    31     8     7 
+	00136: PUSHW[1]            367 
+	00139: PUSHB[7]             37    37     1    30    16    16    26 
+	00147: PUSHW[1]            367 
+	00150: NPUSHB      (35):   207    10     1    16    10    47    10    96    10     3 
+	                           143    10   175    10   223    10     3    95    10   112 
+	                            10     2    15    10    63    10    79    10     3    10 
+	                           233    45   194   111    24 
+	00187: CALL       
+	00188: SRP0       
+	00189: MIRP[srp0,nmd,rd,2] 
+	00190: DELTAP1    
+	00191: DELTAP1    
+	00192: DELTAP1    
+	00193: DELTAP2    
+	00194: DELTAP2    
+	00195: MIRP[srp0,nmd,rd,0] 
+	00196: ALIGNRP    
+	00197: SRP0       
+	00198: MIRP[srp0,md,rd,1] 
+	00199: ALIGNRP    
+	00200: SRP0       
+	00201: MIRP[nrp0,nmd,rd,0] 
+	00202: SVTCA[y-axis] 
+	00203: MIAP[rd+ci] 
+	00204: MIAP[rd+ci] 
+	00205: SRP0       
+	00206: ALIGNRP    
+	00207: SRP0       
+	00208: ALIGNRP    
+	00209: MIRP[srp0,md,rd,1] 
+	00210: ALIGNRP    
+	00211: SVTCA[x-axis] 
+	00212: SRP0       
+	00213: MIRP[srp0,md,rd,1] 
+	00214: RTDG       
+	00215: SRP2       
+	00216: IP         
+	00217: MDAP[rd]   
+	00218: RTG        
+	00219: SVTCA[y-axis] 
+	00220: SRP0       
+	00221: MIRP[srp0,nmd,rd,1] 
+	00222: DELTAP1    
+	00223: MIRP[srp0,nmd,rd,0] 
+	00224: MDRP[nrp0,nmd,rd,0] 
+	00225: SRP0       
+	00226: MIRP[srp0,md,rd,1] 
+	00227: RTDG       
+	00228: SRP2       
+	00229: IP         
+	00230: MDAP[rd]   
+	00231: RTG        
+	00232: SVTCA[x-axis] 
+	00233: SRP0       
+	00234: MIRP[srp0,nmd,rd,1] 
+	00235: DELTAP1    
+	00236: MIRP[srp0,nmd,rd,0] 
+	00237: MDRP[nrp0,nmd,rd,0] 
+	00238: SRP0       
+	00239: MIRP[srp0,md,rd,1] 
+	00240: RTDG       
+	00241: SRP2       
+	00242: IP         
+	00243: MDAP[rd]   
+	00244: RTG        
+	00245: SVTCA[y-axis] 
+	00246: SRP0       
+	00247: MIRP[srp0,nmd,rd,1] 
+	00248: DELTAP1    
+	00249: MIRP[srp0,nmd,rd,0] 
+	00250: MDRP[nrp0,nmd,rd,0] 
+	00251: SRP0       
+	00252: MIRP[srp0,md,rd,1] 
+	00253: RTDG       
+	00254: SRP2       
+	00255: IP         
+	00256: MDAP[rd]   
+	00257: RTG        
+	00258: SVTCA[x-axis] 
+	00259: SRP0       
+	00260: MIRP[srp0,nmd,rd,1] 
+	00261: DELTAP1    
+	00262: MIRP[srp0,nmd,rd,0] 
+	00263: MDRP[nrp0,nmd,rd,0] 
+	00264: SVTCA[y-axis] 
+	00265: SRP1       
+	00266: SRP2       
+	00267: IP         
+	00268: MDAP[rd]   
+	00269: DELTAP1    
+	00270: CALL       
+	00271: MIRP[nrp0,md,rd,1] 
+	00272: ALIGNRP    
+	00273: SRP0       
+	00274: MIRP[nrp0,md,rd,1] 
+	00275: SPVTCA[x-axis] 
+	00276: SFVTCA[x-axis] 
+	00277: SRP0       
+	00278: ALIGNRP    
+	00279: ALIGNRP    
+	00280: SRP0       
+	00281: ALIGNRP    
+	00282: ALIGNRP    
+	00283: SRP1       
+	00284: SHP[rp1,zp0] 
+	00285: MDAP[rd]   
+	00286: SRP1       
+	00287: SHP[rp1,zp0] 
+	00288: MDAP[rd]   
+	00289: IUP[y]     
+	00290: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:        XDual         Y-Short         Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:        XDual                         On
+	  9:  YDual                               On
+	 10:        XDual                         On
+	 11:        XDual         Y-Short         Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:        XDual                         On
+	 16:  YDual                               On
+	 17:        XDual                         On
+	 18:  YDual                               On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                               On
+	 26:        XDual                         On
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                               On
+	 33:  YDual                       X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short On
+	 38:        XDual                         On
+	 39:  YDual                               On
+	 40:  YDual                       X-Short Off
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   571,   618)  ->  Abs (   571,   618)
+	  1: Rel (     0,   468)  ->  Abs (   571,  1086)
+	  2: Rel (  -344,     0)  ->  Abs (   227,  1086)
+	  3: Rel (     0,  -291)  ->  Abs (   227,   795)
+	  4: Rel (     0,   -57)  ->  Abs (   227,   738)
+	  5: Rel (   -42,     0)  ->  Abs (   185,   738)
+	  6: Rel (   -42,     0)  ->  Abs (   143,   738)
+	  7: Rel (     0,    57)  ->  Abs (   143,   795)
+	  8: Rel (     0,   375)  ->  Abs (   143,  1170)
+	  9: Rel (   941,     0)  ->  Abs (  1084,  1170)
+	 10: Rel (     0,  -375)  ->  Abs (  1084,   795)
+	 11: Rel (     0,   -57)  ->  Abs (  1084,   738)
+	 12: Rel (   -42,     0)  ->  Abs (  1042,   738)
+	 13: Rel (   -42,     0)  ->  Abs (  1000,   738)
+	 14: Rel (     0,    57)  ->  Abs (  1000,   795)
+	 15: Rel (     0,   291)  ->  Abs (  1000,  1086)
+	 16: Rel (  -344,     0)  ->  Abs (   656,  1086)
+	 17: Rel (     0,  -468)  ->  Abs (   656,   618)
+	 18: Rel (   264,     0)  ->  Abs (   920,   618)
+	 19: Rel (    49,     0)  ->  Abs (   969,   618)
+	 20: Rel (    31,   -18)  ->  Abs (  1000,   600)
+	 21: Rel (     0,   -24)  ->  Abs (  1000,   576)
+	 22: Rel (     0,   -25)  ->  Abs (  1000,   551)
+	 23: Rel (   -30,   -18)  ->  Abs (   970,   533)
+	 24: Rel (   -49,     0)  ->  Abs (   921,   533)
+	 25: Rel (  -265,     0)  ->  Abs (   656,   533)
+	 26: Rel (     0,  -449)  ->  Abs (   656,    84)
+	 27: Rel (   218,     0)  ->  Abs (   874,    84)
+	 28: Rel (    56,     0)  ->  Abs (   930,    84)
+	 29: Rel (     0,   -42)  ->  Abs (   930,    42)
+	 30: Rel (     0,   -42)  ->  Abs (   930,     0)
+	 31: Rel (   -56,     0)  ->  Abs (   874,     0)
+	 32: Rel (  -521,     0)  ->  Abs (   353,     0)
+	 33: Rel (   -56,     0)  ->  Abs (   297,     0)
+	 34: Rel (     0,    42)  ->  Abs (   297,    42)
+	 35: Rel (     0,    42)  ->  Abs (   297,    84)
+	 36: Rel (    56,     0)  ->  Abs (   353,    84)
+	 37: Rel (   218,     0)  ->  Abs (   571,    84)
+	 38: Rel (     0,   449)  ->  Abs (   571,   533)
+	 39: Rel (  -277,     0)  ->  Abs (   294,   533)
+	 40: Rel (   -67,     0)  ->  Abs (   227,   533)
+	 41: Rel (     0,    43)  ->  Abs (   227,   576)
+	 42: Rel (     0,    42)  ->  Abs (   227,   618)
+	 43: Rel (    70,     0)  ->  Abs (   297,   618)
+
+	Glyph 456: off = 0x0001869E, len = 382
+	  numberOfContours:	1
+	  xMin:			122
+	  yMin:			-33
+	  xMax:			1083
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  49
+
+	  Length of Instructions:	253
+	00000: NPUSHB      (64):   251    42     1    13    42    26    42     2   211    28 
+	                           228    28     2   164    28   181    28   194    28     3 
+	                           166    32   198    29   214    29     3   118    32   134 
+	                            32   149    32     3    26    44    45    20     0    49 
+	                            13    19    20    26    27     7     1     0    44    43 
+	                             0    23     1    23    23    27    47    47     4    23 
+	                             8    16    14    18 
+	00066: PUSHW[3]            686    16   370 
+	00073: NPUSHB      (38):    19    16    16    18    19    34    14    25    59    21 
+	                            21    45    59    49    49    13    40    10     2     2 
+	                            59     6     6    18    59    14    14    13     6    35 
+	                            35    30    33    40    11    37   136    16 
+	00113: PUSHW[1]            425 
+	00116: NPUSHB      (21):    12    12    27    32     8     4   198   112    43   191 
+	                            43     2    32    43     1     0    43    16    43     2 
+	                            43 
+	00139: PUSHW[1]            741 
+	00142: PUSHB[4]             50    42   173    24 
+	00147: CALL       
+	00148: SRP0       
+	00149: MIRP[srp0,nmd,rd,2] 
+	00150: DELTAP1    
+	00151: DELTAP1    
+	00152: DELTAP1    
+	00153: MIRP[nrp0,nmd,rd,0] 
+	00154: ALIGNRP    
+	00155: MIRP[srp0,md,rd,1] 
+	00156: ALIGNRP    
+	00157: SRP0       
+	00158: MIRP[srp0,nmd,rd,0] 
+	00159: MIRP[nrp0,nmd,rd,0] 
+	00160: SVTCA[y-axis] 
+	00161: MIAP[rd+ci] 
+	00162: MIRP[srp0,md,rd,1] 
+	00163: SHP[rp2,zp1] 
+	00164: MDAP[rd]   
+	00165: MIAP[rd+ci] 
+	00166: ALIGNRP    
+	00167: SRP0       
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: ALIGNRP    
+	00170: SRP0       
+	00171: MIRP[nrp0,md,rd,1] 
+	00172: MIAP[rd+ci] 
+	00173: SRP1       
+	00174: SRP2       
+	00175: IP         
+	00176: MDAP[rd]   
+	00177: MIRP[nrp0,md,rd,1] 
+	00178: ALIGNRP    
+	00179: SRP0       
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: SRP0       
+	00182: MIRP[srp0,md,rd,1] 
+	00183: RTDG       
+	00184: SRP2       
+	00185: IP         
+	00186: MDAP[rd]   
+	00187: RTG        
+	00188: SVTCA[x-axis] 
+	00189: SRP0       
+	00190: MIRP[srp0,nmd,rd,1] 
+	00191: MIRP[srp0,nmd,rd,0] 
+	00192: MDRP[nrp0,nmd,rd,0] 
+	00193: MDAP[rd]   
+	00194: RS         
+	00195: JROF       
+	00196: NPUSHB      (14):    41    42    28    29    29    41    27    31     0    28 
+	                            42    30    31     0 
+	00212: SVTCA[y-axis] 
+	00213: CALL       
+	00214: SVTCA[x-axis] 
+	00215: CALL       
+	00216: FLIPRGON   
+	00217: FLIPRGON   
+	00218: SRP1       
+	00219: SHP[rp1,zp0] 
+	00220: MDAP[rd]   
+	00221: SRP1       
+	00222: SHP[rp1,zp0] 
+	00223: MDAP[rd]   
+	00224: DELTAP1    
+	00225: SRP0       
+	00226: ALIGNRP    
+	00227: ALIGNRP    
+	00228: ALIGNRP    
+	00229: ALIGNRP    
+	00230: SRP0       
+	00231: ALIGNRP    
+	00232: ALIGNRP    
+	00233: ALIGNRP    
+	00234: ALIGNRP    
+	00235: SPVTCA[y-axis] 
+	00236: SFVTCA[y-axis] 
+	00237: SRP0       
+	00238: ALIGNRP    
+	00239: ALIGNRP    
+	00240: SRP0       
+	00241: ALIGNRP    
+	00242: ALIGNRP    
+	00243: IUP[y]     
+	00244: IUP[x]     
+	00245: SVTCA[y-axis] 
+	00246: DELTAP2    
+	00247: DELTAP2    
+	00248: DELTAP1    
+	00249: DELTAP1    
+	00250: SVTCA[x-axis] 
+	00251: DELTAP2    
+	00252: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         On
+	 14:  YDual                               On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                               On
+	 20:        XDual         Y-Short         On
+	 21:  YDual                               On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                               On
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:                      Y-Short         Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   357,   544)  ->  Abs (   357,   544)
+	  1: Rel (     0,   237)  ->  Abs (   357,   781)
+	  2: Rel (  -155,     0)  ->  Abs (   202,   781)
+	  3: Rel (   -56,     0)  ->  Abs (   146,   781)
+	  4: Rel (     0,    42)  ->  Abs (   146,   823)
+	  5: Rel (     0,    43)  ->  Abs (   146,   866)
+	  6: Rel (    56,     0)  ->  Abs (   202,   866)
+	  7: Rel (   155,     0)  ->  Abs (   357,   866)
+	  8: Rel (     0,   248)  ->  Abs (   357,  1114)
+	  9: Rel (     0,    56)  ->  Abs (   357,  1170)
+	 10: Rel (    42,     0)  ->  Abs (   399,  1170)
+	 11: Rel (    43,     0)  ->  Abs (   442,  1170)
+	 12: Rel (     0,   -56)  ->  Abs (   442,  1114)
+	 13: Rel (     0,  -248)  ->  Abs (   442,   866)
+	 14: Rel (   456,     0)  ->  Abs (   898,   866)
+	 15: Rel (    57,     0)  ->  Abs (   955,   866)
+	 16: Rel (     0,   -43)  ->  Abs (   955,   823)
+	 17: Rel (     0,   -42)  ->  Abs (   955,   781)
+	 18: Rel (   -57,     0)  ->  Abs (   898,   781)
+	 19: Rel (  -456,     0)  ->  Abs (   442,   781)
+	 20: Rel (     0,  -237)  ->  Abs (   442,   544)
+	 21: Rel (   311,     0)  ->  Abs (   753,   544)
+	 22: Rel (    57,     0)  ->  Abs (   810,   544)
+	 23: Rel (     0,   -42)  ->  Abs (   810,   502)
+	 24: Rel (     0,   -43)  ->  Abs (   810,   459)
+	 25: Rel (   -57,     0)  ->  Abs (   753,   459)
+	 26: Rel (  -311,     0)  ->  Abs (   442,   459)
+	 27: Rel (     0,  -237)  ->  Abs (   442,   222)
+	 28: Rel (     0,   -66)  ->  Abs (   442,   156)
+	 29: Rel (   106,  -105)  ->  Abs (   548,    51)
+	 30: Rel (   120,     0)  ->  Abs (   668,    51)
+	 31: Rel (    93,     0)  ->  Abs (   761,    51)
+	 32: Rel (   197,    52)  ->  Abs (   958,   103)
+	 33: Rel (    52,    31)  ->  Abs (  1010,   134)
+	 34: Rel (    20,    13)  ->  Abs (  1030,   147)
+	 35: Rel (    13,     0)  ->  Abs (  1043,   147)
+	 36: Rel (    40,     0)  ->  Abs (  1083,   147)
+	 37: Rel (     0,   -42)  ->  Abs (  1083,   105)
+	 38: Rel (     0,   -40)  ->  Abs (  1083,    65)
+	 39: Rel (  -269,   -98)  ->  Abs (   814,   -33)
+	 40: Rel (  -136,     0)  ->  Abs (   678,   -33)
+	 41: Rel (  -142,     0)  ->  Abs (   536,   -33)
+	 42: Rel (  -179,   136)  ->  Abs (   357,   103)
+	 43: Rel (     0,   119)  ->  Abs (   357,   222)
+	 44: Rel (     0,   237)  ->  Abs (   357,   459)
+	 45: Rel (  -179,     0)  ->  Abs (   178,   459)
+	 46: Rel (   -56,     0)  ->  Abs (   122,   459)
+	 47: Rel (     0,    43)  ->  Abs (   122,   502)
+	 48: Rel (     0,    42)  ->  Abs (   122,   544)
+	 49: Rel (    56,     0)  ->  Abs (   178,   544)
+
+	Glyph 457: off = 0x0001881C, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1148
+	  yMax:			1502
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	0
+		Y WOffset:	295
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     1     0    69    16    69     2    69    25     2    72 
+	                            43     1     1    58 
+	00016: PUSHW[2]            651    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 458: off = 0x00018852, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1113
+	  yMax:			1207
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	215
+		X BOffset:	-14
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              1     0    60    16    60     2    60    16 
+	00009: PUSHW[1]            -62 
+	00012: PUSHB[5]             72    43     1     1    49 
+	00018: PUSHW[2]            652    41 
+	00023: SVTCA[y-axis] 
+	00024: CALL       
+	00025: SVTCA[x-axis] 
+	00026: CALL       
+	00027: DELTAP1    
+	00028: SHC[rp1,zp0] 
+
+	Glyph 459: off = 0x00018888, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1148
+	  yMax:			1425
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	216
+		X WOffset:	0
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1    60    29 
+	00004: PUSHW[1]            298 
+	00007: PUSHB[5]             72    43     1     1    50 
+	00013: PUSHW[2]            798    41 
+	00018: SVTCA[y-axis] 
+	00019: CALL       
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: SHC[rp1,zp0] 
+
+	Glyph 460: off = 0x000188BA, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1113
+	  yMax:			1161
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	216
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              1    64    44     1    44    16 
+	00007: PUSHW[1]            -28 
+	00010: PUSHB[5]             72    43     1     1    41 
+	00016: PUSHW[2]            800    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP2    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 461: off = 0x000188EE, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1148
+	  yMax:			1563
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	217
+		X WOffset:	0
+		Y WOffset:	265
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     1    72    25    20    72    43     1     1    69 
+	00011: PUSHW[2]            651    41 
+	00016: SVTCA[y-axis] 
+	00017: CALL       
+	00018: SVTCA[x-axis] 
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+
+	Glyph 462: off = 0x0001891E, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1113
+	  yMax:			1298
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	217
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1    63    16 
+	00004: PUSHW[1]            -30 
+	00007: PUSHB[5]             72    43     1     1    60 
+	00013: PUSHW[2]            652    41 
+	00018: SVTCA[y-axis] 
+	00019: CALL       
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: SHC[rp1,zp0] 
+
+	Glyph 463: off = 0x0001894E, len = 488
+	  numberOfContours:	1
+	  xMin:			83
+	  yMin:			-291
+	  xMax:			1148
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  56
+
+	  Length of Instructions:	339
+	00000: PUSHW[4]             18    -8    20    -8 
+	00009: NPUSHB      (27):   112     1   117    17   118    21   141    36   154    36 
+	                           154    37   230    21   245    21     8    11    36   140 
+	                             2   140    36     3    20    16    18 
+	00038: PUSHW[3]             -8    17    -8 
+	00045: PUSHB[5]            118    36     1    10    14 
+	00051: PUSHW[1]            676 
+	00054: NPUSHB      (16):     0    12    16    12     2    12    51    15    12    12 
+	                            14    15    29    10    29    33 
+	00072: PUSHW[1]            676 
+	00075: NPUSHB      (14):     0    31     1    31    41    34    31    31    33    34 
+	                            29    29     9     5 
+	00091: PUSHW[1]            676 
+	00094: NPUSHB      (11):     7    41     4     7     7     5     4    29     9    28 
+	                            24 
+	00107: PUSHW[1]            676 
+	00110: NPUSHB      (13):    26    51    23    26    26    24    23    29    28     0 
+	                            19    38    47 
+	00125: PUSHW[1]            344 
+	00128: NPUSHB      (26):    52    55    43    43    38    33    38    29    29    24 
+	                            38    28    28    14    38    10     5    38    10     9 
+	                             2    19    37    38     9    38 
+	00156: PUSHW[1]            -16 
+	00159: NPUSHB      (59):    38     0    16     0    55    49    49    40    55     0 
+	                            55   115    55     2    55    55    16    23    22    30 
+	                            35    35   111    34   143    34     2    15    34    79 
+	                            34    95    34     3    34    26    58    15    16    30 
+	                             3     3    79     4    95     4   111     4   127     4 
+	                           143     4     5     4    25    57    58   107    24 
+	00220: CALL       
+	00221: FLIPOFF    
+	00222: SRP0       
+	00223: MIRP[srp0,nmd,rd,0] 
+	00224: DELTAP1    
+	00225: ALIGNRP    
+	00226: FLIPON     
+	00227: SRP0       
+	00228: MIRP[srp0,md,rd,1] 
+	00229: ALIGNRP    
+	00230: FLIPOFF    
+	00231: SRP0       
+	00232: MIRP[srp0,nmd,rd,2] 
+	00233: DELTAP1    
+	00234: DELTAP1    
+	00235: ALIGNRP    
+	00236: FLIPON     
+	00237: SRP0       
+	00238: MIRP[srp0,md,rd,1] 
+	00239: ALIGNRP    
+	00240: SRP2       
+	00241: IP         
+	00242: MDAP[rd]   
+	00243: DELTAP1    
+	00244: MIRP[srp0,md,rd,1] 
+	00245: SHP[rp2,zp1] 
+	00246: MDAP[rd]   
+	00247: SRP1       
+	00248: IP         
+	00249: SHPIX      
+	00250: SHP[rp2,zp1] 
+	00251: SHPIX      
+	00252: SVTCA[y-axis] 
+	00253: MIAP[rd+ci] 
+	00254: MIRP[nrp0,md,rd,1] 
+	00255: MIAP[rd+ci] 
+	00256: ALIGNRP    
+	00257: MIRP[nrp0,md,rd,1] 
+	00258: SRP0       
+	00259: MIRP[nrp0,md,rd,1] 
+	00260: ALIGNRP    
+	00261: SRP0       
+	00262: MIRP[nrp0,md,rd,1] 
+	00263: ALIGNRP    
+	00264: SRP0       
+	00265: MIRP[nrp0,md,rd,1] 
+	00266: SRP1       
+	00267: SHP[rp1,zp0] 
+	00268: MDAP[rd]   
+	00269: MIRP[nrp0,md,rd,1] 
+	00270: MIRP[nrp0,nmd,rd,0] 
+	00271: SRP1       
+	00272: SRP2       
+	00273: IP         
+	00274: SRP0       
+	00275: MIRP[srp0,md,rd,1] 
+	00276: RTDG       
+	00277: SRP2       
+	00278: IP         
+	00279: MDAP[rd]   
+	00280: RTG        
+	00281: SVTCA[x-axis] 
+	00282: SRP0       
+	00283: MIRP[srp0,nmd,rd,1] 
+	00284: MIRP[srp0,nmd,rd,0] 
+	00285: MDRP[nrp0,nmd,rd,0] 
+	00286: SVTCA[y-axis] 
+	00287: SRP0       
+	00288: MIRP[srp0,md,rd,1] 
+	00289: RTDG       
+	00290: SRP2       
+	00291: IP         
+	00292: MDAP[rd]   
+	00293: RTG        
+	00294: SVTCA[x-axis] 
+	00295: SRP0       
+	00296: MIRP[srp0,nmd,rd,1] 
+	00297: MIRP[srp0,nmd,rd,0] 
+	00298: MDRP[nrp0,nmd,rd,0] 
+	00299: SVTCA[y-axis] 
+	00300: SRP0       
+	00301: MIRP[srp0,md,rd,1] 
+	00302: RTDG       
+	00303: SRP2       
+	00304: IP         
+	00305: MDAP[rd]   
+	00306: RTG        
+	00307: SVTCA[x-axis] 
+	00308: SRP0       
+	00309: MIRP[srp0,nmd,rd,1] 
+	00310: DELTAP1    
+	00311: MIRP[srp0,nmd,rd,0] 
+	00312: MDRP[nrp0,nmd,rd,0] 
+	00313: SVTCA[y-axis] 
+	00314: SRP0       
+	00315: MIRP[srp0,md,rd,1] 
+	00316: RTDG       
+	00317: SRP2       
+	00318: IP         
+	00319: MDAP[rd]   
+	00320: RTG        
+	00321: SVTCA[x-axis] 
+	00322: SRP0       
+	00323: MIRP[srp0,nmd,rd,1] 
+	00324: DELTAP1    
+	00325: MIRP[srp0,nmd,rd,0] 
+	00326: MDRP[nrp0,nmd,rd,0] 
+	00327: IUP[y]     
+	00328: IUP[x]     
+	00329: SVTCA[x-axis] 
+	00330: DELTAP1    
+	00331: SHPIX      
+	00332: SHPIX      
+	00333: SHPIX      
+	00334: SVTCA[y-axis] 
+	00335: DELTAP2    
+	00336: DELTAP1    
+	00337: SHPIX      
+	00338: SHPIX      
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:        XDual                         On
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual                               On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short On
+	 16:        XDual                         On
+	 17:        XDual         Y-Short         Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:        XDual                         On
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual                               On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short On
+	 35:        XDual                         On
+	 36:        XDual         Y-Short         Off
+	 37:                      Y-Short X-Short Off
+	 38:                      Y-Short X-Short On
+	 39:                      Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:        XDual         Y-Short X-Short Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:  YDual XDual         Y-Short X-Short On
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short Off
+	 49:        XDual         Y-Short         On
+	 50:        XDual         Y-Short         Off
+	 51:                      Y-Short X-Short Off
+	 52:  YDual                       X-Short On
+	 53:  YDual                       X-Short Off
+	 54:  YDual               Y-Short X-Short Off
+	 55:  YDual XDual         Y-Short         On
+	 56:  YDual XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   549,   -28)  ->  Abs (   549,   -28)
+	  1: Rel (  -155,    27)  ->  Abs (   394,    -1)
+	  2: Rel (  -184,   237)  ->  Abs (   210,   236)
+	  3: Rel (     0,   148)  ->  Abs (   210,   384)
+	  4: Rel (     0,   702)  ->  Abs (   210,  1086)
+	  5: Rel (   -71,     0)  ->  Abs (   139,  1086)
+	  6: Rel (   -56,     0)  ->  Abs (    83,  1086)
+	  7: Rel (     0,    42)  ->  Abs (    83,  1128)
+	  8: Rel (     0,    42)  ->  Abs (    83,  1170)
+	  9: Rel (    56,     0)  ->  Abs (   139,  1170)
+	 10: Rel (   310,     0)  ->  Abs (   449,  1170)
+	 11: Rel (    56,     0)  ->  Abs (   505,  1170)
+	 12: Rel (     0,   -42)  ->  Abs (   505,  1128)
+	 13: Rel (     0,   -42)  ->  Abs (   505,  1086)
+	 14: Rel (   -56,     0)  ->  Abs (   449,  1086)
+	 15: Rel (  -155,     0)  ->  Abs (   294,  1086)
+	 16: Rel (     0,  -702)  ->  Abs (   294,   384)
+	 17: Rel (     0,  -141)  ->  Abs (   294,   243)
+	 18: Rel (   192,  -192)  ->  Abs (   486,    51)
+	 19: Rel (   130,     0)  ->  Abs (   616,    51)
+	 20: Rel (   133,     0)  ->  Abs (   749,    51)
+	 21: Rel (   188,   197)  ->  Abs (   937,   248)
+	 22: Rel (     0,   136)  ->  Abs (   937,   384)
+	 23: Rel (     0,   702)  ->  Abs (   937,  1086)
+	 24: Rel (  -155,     0)  ->  Abs (   782,  1086)
+	 25: Rel (   -56,     0)  ->  Abs (   726,  1086)
+	 26: Rel (     0,    42)  ->  Abs (   726,  1128)
+	 27: Rel (     0,    42)  ->  Abs (   726,  1170)
+	 28: Rel (    56,     0)  ->  Abs (   782,  1170)
+	 29: Rel (   310,     0)  ->  Abs (  1092,  1170)
+	 30: Rel (    56,     0)  ->  Abs (  1148,  1170)
+	 31: Rel (     0,   -42)  ->  Abs (  1148,  1128)
+	 32: Rel (     0,   -42)  ->  Abs (  1148,  1086)
+	 33: Rel (   -56,     0)  ->  Abs (  1092,  1086)
+	 34: Rel (   -71,     0)  ->  Abs (  1021,  1086)
+	 35: Rel (     0,  -702)  ->  Abs (  1021,   384)
+	 36: Rel (     0,  -170)  ->  Abs (  1021,   214)
+	 37: Rel (  -220,  -238)  ->  Abs (   801,   -24)
+	 38: Rel (  -168,    -9)  ->  Abs (   633,   -33)
+	 39: Rel (   -44,   -42)  ->  Abs (   589,   -75)
+	 40: Rel (     0,   -58)  ->  Abs (   589,  -133)
+	 41: Rel (     0,   -41)  ->  Abs (   589,  -174)
+	 42: Rel (    61,   -50)  ->  Abs (   650,  -224)
+	 43: Rel (    51,     0)  ->  Abs (   701,  -224)
+	 44: Rel (    50,     0)  ->  Abs (   751,  -224)
+	 45: Rel (    36,    31)  ->  Abs (   787,  -193)
+	 46: Rel (    17,    15)  ->  Abs (   804,  -178)
+	 47: Rel (    12,     0)  ->  Abs (   816,  -178)
+	 48: Rel (    33,     0)  ->  Abs (   849,  -178)
+	 49: Rel (     0,   -33)  ->  Abs (   849,  -211)
+	 50: Rel (     0,   -30)  ->  Abs (   849,  -241)
+	 51: Rel (   -97,   -50)  ->  Abs (   752,  -291)
+	 52: Rel (   -53,     0)  ->  Abs (   699,  -291)
+	 53: Rel (   -77,     0)  ->  Abs (   622,  -291)
+	 54: Rel (  -100,    87)  ->  Abs (   522,  -204)
+	 55: Rel (     0,    77)  ->  Abs (   522,  -127)
+	 56: Rel (     0,    48)  ->  Abs (   522,   -79)
+
+	Glyph 464: off = 0x00018B36, len = 448
+	  numberOfContours:	1
+	  xMin:			91
+	  yMin:			-291
+	  xMax:			1181
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  51
+
+	  Length of Instructions:	313
+	00000: PUSHB[7]            182    39     1     9    24     1    38 
+	00008: PUSHW[1]            -22 
+	00011: PUSHB[4]              9    36    52    39 
+	00016: PUSHW[1]            -32 
+	00019: PUSHB[4]              9    36    52     0 
+	00024: PUSHW[1]            -16 
+	00027: PUSHB[4]             23     8    32    28 
+	00032: PUSHW[1]            686 
+	00035: NPUSHB      (11):    30    47    27    30    30    28    27    34    32    45 
+	                            41 
+	00048: PUSHW[1]            686 
+	00051: NPUSHB      (11):    43    78    40    43    43    41    40    34    45     0 
+	                            48 
+	00064: PUSHW[1]            686 
+	00067: NPUSHB      (19):     0    50     1    50    70    47    50    50    48    47 
+	                            34     0    39    21    32    37    10    89    15 
+	00088: PUSHW[1]            792 
+	00091: NPUSHB      (44):     6     6    47    48    59    20     0    10    40    41 
+	                            59    46    45    45    33    27    28    59    33    32 
+	                             6    37    33    23    11     0   176    12   192    12 
+	                             2    80    12    96    12     2    48    12    64    12 
+	                             2    12    12     3 
+	00137: PUSHW[1]            792 
+	00140: NPUSHB      (12):     0    18     1    18    18    47    32    21    20    20 
+	                            40    39 
+	00154: PUSHW[1]            675 
+	00157: NPUSHB       (9):    53    33    34    32    27   207    26     1    26 
+	00168: PUSHW[1]            491 
+	00171: PUSHB[4]             52    71    97    24 
+	00176: CALL       
+	00177: SRP0       
+	00178: MIRP[srp0,nmd,rd,0] 
+	00179: DELTAP1    
+	00180: ALIGNRP    
+	00181: MIRP[srp0,md,rd,1] 
+	00182: ALIGNRP    
+	00183: SRP0       
+	00184: MIRP[srp0,nmd,rd,0] 
+	00185: ALIGNRP    
+	00186: ALIGNRP    
+	00187: SRP0       
+	00188: ALIGNRP    
+	00189: MIRP[nrp0,md,rd,1] 
+	00190: SHP[rp1,zp0] 
+	00191: MDAP[rd]   
+	00192: DELTAP1    
+	00193: MIRP[srp0,md,rd,1] 
+	00194: SHP[rp2,zp1] 
+	00195: MDAP[rd]   
+	00196: DELTAP1    
+	00197: DELTAP1    
+	00198: DELTAP1    
+	00199: SHP[rp2,zp1] 
+	00200: SVTCA[y-axis] 
+	00201: MIAP[rd+ci] 
+	00202: MIRP[nrp0,md,rd,1] 
+	00203: MIAP[rd+ci] 
+	00204: ALIGNRP    
+	00205: MIRP[srp0,md,rd,1] 
+	00206: ALIGNRP    
+	00207: SRP0       
+	00208: ALIGNRP    
+	00209: SRP0       
+	00210: ALIGNRP    
+	00211: MIRP[srp0,md,rd,1] 
+	00212: ALIGNRP    
+	00213: MIAP[rd+ci] 
+	00214: ALIGNRP    
+	00215: MIRP[srp0,md,rd,1] 
+	00216: ALIGNRP    
+	00217: SHP[rp1,zp0] 
+	00218: MDAP[rd]   
+	00219: MIRP[nrp0,md,rd,1] 
+	00220: MIRP[nrp0,nmd,rd,0] 
+	00221: SRP1       
+	00222: SRP2       
+	00223: IP         
+	00224: IP         
+	00225: SRP0       
+	00226: MIRP[srp0,md,rd,1] 
+	00227: RTDG       
+	00228: SRP2       
+	00229: IP         
+	00230: MDAP[rd]   
+	00231: RTG        
+	00232: SVTCA[x-axis] 
+	00233: SRP0       
+	00234: MIRP[srp0,nmd,rd,1] 
+	00235: DELTAP1    
+	00236: MIRP[srp0,nmd,rd,0] 
+	00237: MDRP[nrp0,nmd,rd,0] 
+	00238: SVTCA[y-axis] 
+	00239: SRP0       
+	00240: MIRP[srp0,md,rd,1] 
+	00241: RTDG       
+	00242: SRP2       
+	00243: IP         
+	00244: MDAP[rd]   
+	00245: RTG        
+	00246: SVTCA[x-axis] 
+	00247: SRP0       
+	00248: MIRP[srp0,nmd,rd,1] 
+	00249: MIRP[srp0,nmd,rd,0] 
+	00250: MDRP[nrp0,nmd,rd,0] 
+	00251: SVTCA[y-axis] 
+	00252: SRP0       
+	00253: MIRP[srp0,md,rd,1] 
+	00254: RTDG       
+	00255: SRP2       
+	00256: IP         
+	00257: MDAP[rd]   
+	00258: RTG        
+	00259: SVTCA[x-axis] 
+	00260: SRP0       
+	00261: MIRP[srp0,nmd,rd,1] 
+	00262: MIRP[srp0,nmd,rd,0] 
+	00263: MDRP[nrp0,nmd,rd,0] 
+	00264: RS         
+	00265: JROF       
+	00266: NPUSHB      (14):    35    36    24    25    36    24    34    31     0    35 
+	                            25    37    31     0 
+	00282: SVTCA[y-axis] 
+	00283: CALL       
+	00284: SVTCA[x-axis] 
+	00285: CALL       
+	00286: FLIPRGON   
+	00287: FLIPRGON   
+	00288: SHPIX      
+	00289: SVTCA[y-axis] 
+	00290: CALL       
+	00291: CALL       
+	00292: PUSHB[2]              6     2 
+	00295: RS         
+	00296: EQ         
+	00297: IF         
+	00298: PUSHB[5]             21    32    17    36    52 
+	00304: SVTCA[y-axis] 
+	00305: CALL       
+	00306: EIF        
+	00307: IUP[y]     
+	00308: IUP[x]     
+	00309: SVTCA[x-axis] 
+	00310: DELTAP2    
+	00311: SVTCA[y-axis] 
+	00312: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short Off
+	  2:                      Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short         On
+	 22:                      Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:        XDual                         On
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short On
+	 34:        XDual                         On
+	 35:        XDual         Y-Short         Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:        XDual                         On
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short On
+	 47:        XDual                         On
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual                 X-Short Off
+	 50:        XDual         Y-Short         On
+	 51:        XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1051,     0)  ->  Abs (  1051,     0)
+	  1: Rel (   -53,     0)  ->  Abs (   998,     0)
+	  2: Rel (   -77,   -77)  ->  Abs (   921,   -77)
+	  3: Rel (     0,   -56)  ->  Abs (   921,  -133)
+	  4: Rel (     0,   -41)  ->  Abs (   921,  -174)
+	  5: Rel (    61,   -50)  ->  Abs (   982,  -224)
+	  6: Rel (    51,     0)  ->  Abs (  1033,  -224)
+	  7: Rel (    50,     0)  ->  Abs (  1083,  -224)
+	  8: Rel (    36,    31)  ->  Abs (  1119,  -193)
+	  9: Rel (    17,    15)  ->  Abs (  1136,  -178)
+	 10: Rel (    12,     0)  ->  Abs (  1148,  -178)
+	 11: Rel (    33,     0)  ->  Abs (  1181,  -178)
+	 12: Rel (     0,   -33)  ->  Abs (  1181,  -211)
+	 13: Rel (     0,   -30)  ->  Abs (  1181,  -241)
+	 14: Rel (   -96,   -50)  ->  Abs (  1085,  -291)
+	 15: Rel (   -54,     0)  ->  Abs (  1031,  -291)
+	 16: Rel (   -74,     0)  ->  Abs (   957,  -291)
+	 17: Rel (  -103,    84)  ->  Abs (   854,  -207)
+	 18: Rel (     0,    80)  ->  Abs (   854,  -127)
+	 19: Rel (     0,    72)  ->  Abs (   854,   -55)
+	 20: Rel (    48,    55)  ->  Abs (   902,     0)
+	 21: Rel (     0,   123)  ->  Abs (   902,   123)
+	 22: Rel (  -172,  -156)  ->  Abs (   730,   -33)
+	 23: Rel (  -201,     0)  ->  Abs (   529,   -33)
+	 24: Rel (  -127,     0)  ->  Abs (   402,   -33)
+	 25: Rel (  -142,   162)  ->  Abs (   260,   129)
+	 26: Rel (     0,   110)  ->  Abs (   260,   239)
+	 27: Rel (     0,   542)  ->  Abs (   260,   781)
+	 28: Rel (  -113,     0)  ->  Abs (   147,   781)
+	 29: Rel (   -56,     0)  ->  Abs (    91,   781)
+	 30: Rel (     0,    42)  ->  Abs (    91,   823)
+	 31: Rel (     0,    43)  ->  Abs (    91,   866)
+	 32: Rel (    56,     0)  ->  Abs (   147,   866)
+	 33: Rel (   197,     0)  ->  Abs (   344,   866)
+	 34: Rel (     0,  -627)  ->  Abs (   344,   239)
+	 35: Rel (     0,   -77)  ->  Abs (   344,   162)
+	 36: Rel (   100,  -111)  ->  Abs (   444,    51)
+	 37: Rel (    82,     0)  ->  Abs (   526,    51)
+	 38: Rel (   205,     0)  ->  Abs (   731,    51)
+	 39: Rel (   171,   188)  ->  Abs (   902,   239)
+	 40: Rel (     0,   542)  ->  Abs (   902,   781)
+	 41: Rel (  -155,     0)  ->  Abs (   747,   781)
+	 42: Rel (   -56,     0)  ->  Abs (   691,   781)
+	 43: Rel (     0,    42)  ->  Abs (   691,   823)
+	 44: Rel (     0,    43)  ->  Abs (   691,   866)
+	 45: Rel (    56,     0)  ->  Abs (   747,   866)
+	 46: Rel (   239,     0)  ->  Abs (   986,   866)
+	 47: Rel (     0,  -782)  ->  Abs (   986,    84)
+	 48: Rel (    71,     0)  ->  Abs (  1057,    84)
+	 49: Rel (    56,     0)  ->  Abs (  1113,    84)
+	 50: Rel (     0,   -42)  ->  Abs (  1113,    42)
+	 51: Rel (     0,   -42)  ->  Abs (  1113,     0)
+
+	Glyph 465: off = 0x00018CF6, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			37
+	  yMin:			0
+	  xMax:			1188
+	  yMax:			1574
+
+	     0: Flags:		0x0226
+		Glyf Index:	58
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	0
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              1    95    57   207    57     2    57     2 
+	00009: PUSHW[1]           -297 
+	00012: PUSHB[5]             72    43     1     1    54 
+	00018: PUSHW[2]            651    41 
+	00023: SVTCA[y-axis] 
+	00024: CALL       
+	00025: SVTCA[x-axis] 
+	00026: CALL       
+	00027: DELTAP1    
+	00028: SHC[rp1,zp0] 
+
+	Glyph 466: off = 0x00018D2E, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			56
+	  yMin:			-1
+	  xMax:			1172
+	  yMax:			1310
+
+	     0: Flags:		0x0226
+		Glyf Index:	90
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	214
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              1    95    57   207    57     2    57     2 
+	00009: PUSHW[1]           -299 
+	00012: PUSHB[5]             72    43     1     1    54 
+	00018: PUSHW[2]            652    41 
+	00023: SVTCA[y-axis] 
+	00024: CALL       
+	00025: SVTCA[x-axis] 
+	00026: CALL       
+	00027: DELTAP1    
+	00028: SHC[rp1,zp0] 
+
+	Glyph 467: off = 0x00018D64, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			0
+	  xMax:			1128
+	  yMax:			1574
+
+	     0: Flags:		0x0226
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	214
+		X WOffset:	0
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (11):     1    79    67     1    95    67   207    67     2    67 
+	                            34 
+	00013: PUSHW[1]           -301 
+	00016: PUSHB[5]             72    43     1     1    64 
+	00022: PUSHW[2]            651    41 
+	00027: SVTCA[y-axis] 
+	00028: CALL       
+	00029: SVTCA[x-axis] 
+	00030: CALL       
+	00031: DELTAP1    
+	00032: DELTAP2    
+	00033: SHC[rp1,zp0] 
+
+	Glyph 468: off = 0x00018DA0, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			149
+	  yMin:			-386
+	  xMax:			1176
+	  yMax:			1310
+
+	     0: Flags:		0x0226
+		Glyf Index:	92
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	214
+		X BOffset:	57
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1    67    18 
+	00004: PUSHW[1]           -292 
+	00007: PUSHB[5]             72    43     1     1    64 
+	00013: PUSHW[2]            652    41 
+	00018: SVTCA[y-axis] 
+	00019: CALL       
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: SHC[rp1,zp0] 
+
+	Glyph 469: off = 0x00018DD0, len = 302
+	  numberOfContours:	1
+	  xMin:			215
+	  yMin:			0
+	  xMax:			1114
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  35
+
+	  Length of Instructions:	205
+	00000: NPUSHB      (14):   223    34     1   166    34   178    34   195    34     3 
+	                            23     8     6    10 
+	00016: PUSHW[3]            686     8   -64 
+	00023: NPUSHB      (14):    13    20    52     8   200    11     8     8    10    11 
+	                            34     6     5     1 
+	00039: PUSHW[1]            686 
+	00042: NPUSHB      (39):     3    64    13    20    52     3   200     0     3     3 
+	                             1     0    34     5    28    93    32    33    22    12 
+	                            13    32    17    17    18     6     5    22     0    18 
+	                             6     5    10    15    26    63    26     2    26 
+	00083: PUSHW[1]            396 
+	00086: NPUSHB       (9):    37    35     0    32    19   207    11     1    11 
+	00097: PUSHW[1]            405 
+	00100: NPUSHB      (13):    63    15    64    15   112    15   208    15     4    15 
+	                            25    36   117 
+	00115: PUSHW[2]            460    24 
+	00120: CALL       
+	00121: FLIPOFF    
+	00122: SRP0       
+	00123: MIRP[srp0,nmd,rd,0] 
+	00124: DELTAP1    
+	00125: FLIPON     
+	00126: MIRP[srp0,nmd,rd,0] 
+	00127: DELTAP1    
+	00128: ALIGNRP    
+	00129: MIRP[srp0,md,rd,1] 
+	00130: ALIGNRP    
+	00131: SRP0       
+	00132: MIRP[nrp0,nmd,rd,2] 
+	00133: DELTAP1    
+	00134: SVTCA[y-axis] 
+	00135: MIAP[rd+ci] 
+	00136: MIAP[rd+ci] 
+	00137: MIAP[rd+ci] 
+	00138: SRP0       
+	00139: ALIGNRP    
+	00140: SRP0       
+	00141: ALIGNRP    
+	00142: SRP0       
+	00143: MIRP[srp0,md,rd,1] 
+	00144: ALIGNRP    
+	00145: SRP0       
+	00146: MIRP[srp0,md,rd,1] 
+	00147: MIRP[nrp0,nmd,rd,0] 
+	00148: SRP0       
+	00149: MIRP[srp0,md,rd,1] 
+	00150: RTDG       
+	00151: SRP2       
+	00152: IP         
+	00153: MDAP[rd]   
+	00154: RTG        
+	00155: SVTCA[x-axis] 
+	00156: SRP0       
+	00157: MIRP[srp0,nmd,rd,1] 
+	00158: CALL       
+	00159: MIRP[srp0,nmd,rd,0] 
+	00160: MDRP[nrp0,nmd,rd,0] 
+	00161: SVTCA[y-axis] 
+	00162: SRP0       
+	00163: MIRP[srp0,md,rd,1] 
+	00164: RTDG       
+	00165: SRP2       
+	00166: IP         
+	00167: MDAP[rd]   
+	00168: RTG        
+	00169: SVTCA[x-axis] 
+	00170: SRP0       
+	00171: MIRP[srp0,nmd,rd,1] 
+	00172: CALL       
+	00173: MIRP[srp0,nmd,rd,0] 
+	00174: MDRP[nrp0,nmd,rd,0] 
+	00175: RS         
+	00176: JROF       
+	00177: NPUSHB      (14):    33    34    20    21    33    21    35    31     0    34 
+	                            20    32    31     1 
+	00193: SVTCA[y-axis] 
+	00194: CALL       
+	00195: SVTCA[x-axis] 
+	00196: CALL       
+	00197: FLIPRGON   
+	00198: FLIPRGON   
+	00199: IUP[y]     
+	00200: IUP[x]     
+	00201: SVTCA[x-axis] 
+	00202: DELTAP1    
+	00203: SVTCA[y-axis] 
+	00204: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                               On
+	  7:  YDual                       X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                         On
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short On
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:                      Y-Short X-Short Off
+	 35:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   559,    84)  ->  Abs (   559,    84)
+	  1: Rel (   203,     0)  ->  Abs (   762,    84)
+	  2: Rel (    56,     0)  ->  Abs (   818,    84)
+	  3: Rel (     0,   -42)  ->  Abs (   818,    42)
+	  4: Rel (     0,   -42)  ->  Abs (   818,     0)
+	  5: Rel (   -56,     0)  ->  Abs (   762,     0)
+	  6: Rel (  -491,     0)  ->  Abs (   271,     0)
+	  7: Rel (   -56,     0)  ->  Abs (   215,     0)
+	  8: Rel (     0,    42)  ->  Abs (   215,    42)
+	  9: Rel (     0,    42)  ->  Abs (   215,    84)
+	 10: Rel (    56,     0)  ->  Abs (   271,    84)
+	 11: Rel (   203,     0)  ->  Abs (   474,    84)
+	 12: Rel (     0,   697)  ->  Abs (   474,   781)
+	 13: Rel (  -182,     0)  ->  Abs (   292,   781)
+	 14: Rel (   -56,     0)  ->  Abs (   236,   781)
+	 15: Rel (     0,    42)  ->  Abs (   236,   823)
+	 16: Rel (     0,    43)  ->  Abs (   236,   866)
+	 17: Rel (    56,     0)  ->  Abs (   292,   866)
+	 18: Rel (   182,     0)  ->  Abs (   474,   866)
+	 19: Rel (     0,   127)  ->  Abs (   474,   993)
+	 20: Rel (     0,   109)  ->  Abs (   474,  1102)
+	 21: Rel (   174,   153)  ->  Abs (   648,  1255)
+	 22: Rel (   140,     0)  ->  Abs (   788,  1255)
+	 23: Rel (    70,     0)  ->  Abs (   858,  1255)
+	 24: Rel (   236,   -26)  ->  Abs (  1094,  1229)
+	 25: Rel (    20,   -28)  ->  Abs (  1114,  1201)
+	 26: Rel (     0,   -16)  ->  Abs (  1114,  1185)
+	 27: Rel (     0,   -41)  ->  Abs (  1114,  1144)
+	 28: Rel (   -44,     0)  ->  Abs (  1070,  1144)
+	 29: Rel (    -8,     0)  ->  Abs (  1062,  1144)
+	 30: Rel (   -19,     3)  ->  Abs (  1043,  1147)
+	 31: Rel (  -151,    23)  ->  Abs (   892,  1170)
+	 32: Rel (  -104,     0)  ->  Abs (   788,  1170)
+	 33: Rel (  -109,     0)  ->  Abs (   679,  1170)
+	 34: Rel (  -120,  -106)  ->  Abs (   559,  1064)
+	 35: Rel (     0,   -71)  ->  Abs (   559,   993)
+
+	Glyph 470: off = 0x00018EFE, len = 82
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1948
+
+	     0: Flags:		0x0236
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0037
+		Glyf Index:	219
+		X WOffset:	-51
+		Y WOffset:	239
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     2: Flags:		0x0117
+		Glyf Index:	141
+		X WOffset:	24
+		Y WOffset:	619
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (21):     4     0    72    72    56    56    64     3     2    48 
+	                            50     1     0    50    50    45    44    64     4     1 
+	                            74 
+	00023: PUSHW[1]            807 
+	00026: PUSHB[4]             41     3     1    50 
+	00031: PUSHW[2]            808    41 
+	00036: SVTCA[y-axis] 
+	00037: CALL       
+	00038: CALL       
+	00039: IUP[y]     
+	00040: IUP[x]     
+	00041: SVTCA[x-axis] 
+	00042: CALL       
+	00043: DELTAP1    
+	00044: SHC[rp1,zp0] 
+	00045: SHC[rp1,zp0] 
+	00046: CALL       
+	00047: SHC[rp1,zp0] 
+
+	Glyph 471: off = 0x00018F50, len = 86
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			1708
+
+	     0: Flags:		0x0236
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0036
+		Glyf Index:	219
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     2: Flags:		0x0117
+		Glyf Index:	141
+		X WOffset:	61
+		Y WOffset:	379
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (27):     4     0    80    80    64    64    64     3     2    32 
+	                            58    48    58    80    58    96    58     4     0    58 
+	                            58    29    29    64     4     1    82 
+	00029: PUSHW[1]            809 
+	00032: PUSHB[4]             41     3     1    58 
+	00037: PUSHW[2]            652    41 
+	00042: SVTCA[y-axis] 
+	00043: CALL       
+	00044: CALL       
+	00045: IUP[y]     
+	00046: IUP[x]     
+	00047: SVTCA[x-axis] 
+	00048: CALL       
+	00049: DELTAP1    
+	00050: SHC[rp1,zp0] 
+	00051: SHC[rp1,zp0] 
+	00052: CALL       
+	00053: SHC[rp1,zp0] 
+
+	Glyph 472: off = 0x00018FA6, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			18
+	  yMin:			0
+	  xMax:			1212
+	  yMax:			1593
+
+	     0: Flags:		0x0236
+		Glyf Index:	144
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	141
+		X WOffset:	133
+		Y WOffset:	264
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    85    94    17    26    64     2     1    82 
+	00012: PUSHW[2]            651    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 473: off = 0x00018FD6, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			16
+	  yMin:			-33
+	  xMax:			1192
+	  yMax:			1329
+
+	     0: Flags:		0x0236
+		Glyf Index:	160
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	141
+		X BOffset:	110
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     3     0    96    96    63    63    64     3     1    98 
+	00012: PUSHW[2]            652    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 474: off = 0x00019004, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			80
+	  yMin:			-84
+	  xMax:			1149
+	  yMax:			1593
+
+	     0: Flags:		0x0236
+		Glyf Index:	145
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	141
+		X WOffset:	61
+		Y WOffset:	264
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     3     0    56    65    39    47    64     3     1    53 
+	00012: PUSHW[2]            651    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 475: off = 0x00019034, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			112
+	  yMin:			-86
+	  xMax:			1122
+	  yMax:			1329
+
+	     0: Flags:		0x0236
+		Glyf Index:	161
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	141
+		X BOffset:	61
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     3     0    54    63    37    45    64     3     1    51 
+	00012: PUSHW[2]            652    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 476: off = 0x00019062, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			461
+	  yMin:			501
+	  xMax:			769
+	  yMax:			772
+
+	     0: Flags:		0x0216
+		Glyf Index:	194
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 477: off = 0x00019072, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			37
+	  yMin:			0
+	  xMax:			1188
+	  yMax:			1593
+
+	     0: Flags:		0x0236
+		Glyf Index:	58
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	67
+		X WOffset:	-60
+		Y WOffset:	264
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     1    16    53    32    53   192    53     3     0    53 
+	                            45     5    40    64     1     1    48 
+	00019: PUSHW[2]            651    41 
+	00024: SVTCA[y-axis] 
+	00025: CALL       
+	00026: SVTCA[x-axis] 
+	00027: CALL       
+	00028: DELTAP1    
+	00029: SHC[rp1,zp0] 
+
+	Glyph 478: off = 0x000190AA, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			56
+	  yMin:			-1
+	  xMax:			1172
+	  yMax:			1329
+
+	     0: Flags:		0x0236
+		Glyf Index:	90
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	67
+		X BOffset:	-60
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     1     0    53    16    53    32    53    64    53     4 
+	                             0    53    45     5    40    64     1     1    48 
+	00021: PUSHW[2]            652    41 
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: SHC[rp1,zp0] 
+
+	Glyph 479: off = 0x000190E2, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			37
+	  yMin:			0
+	  xMax:			1188
+	  yMax:			1593
+
+	     0: Flags:		0x0236
+		Glyf Index:	58
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	141
+		X WOffset:	61
+		Y WOffset:	264
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    47    56    20    25    64     1     1    44 
+	00012: PUSHW[2]            651    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 480: off = 0x00019112, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			56
+	  yMin:			-1
+	  xMax:			1172
+	  yMax:			1329
+
+	     0: Flags:		0x0236
+		Glyf Index:	90
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	141
+		X BOffset:	60
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    47    56    20    25    64     1     1    44 
+	00012: PUSHW[2]            652    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 481: off = 0x00019140, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			37
+	  yMin:			0
+	  xMax:			1188
+	  yMax:			1493
+
+	     0: Flags:		0x0236
+		Glyf Index:	58
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	142
+		X WOffset:	0
+		Y WOffset:	264
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     2     1     0    47    53     5    40    64     1     2 
+	                             2    44 
+	00014: PUSHW[2]            651    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: SHC[rp1,zp0] 
+	00024: SHC[rp1,zp0] 
+
+	Glyph 482: off = 0x00019174, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			56
+	  yMin:			-1
+	  xMax:			1172
+	  yMax:			1229
+
+	     0: Flags:		0x0236
+		Glyf Index:	90
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	142
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     2     1     0    47    53     5    40    64     1     2 
+	                             2    44 
+	00014: PUSHW[2]            652    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: SHC[rp1,zp0] 
+	00024: SHC[rp1,zp0] 
+
+	Glyph 483: off = 0x000191A6, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			0
+	  xMax:			1128
+	  yMax:			1593
+
+	     0: Flags:		0x0236
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	67
+		X WOffset:	-60
+		Y WOffset:	264
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     1     0    63    16    63    32    63     3     0    63 
+	                            55    33    35    64     1     1    58 
+	00019: PUSHW[2]            651    41 
+	00024: SVTCA[y-axis] 
+	00025: CALL       
+	00026: SVTCA[x-axis] 
+	00027: CALL       
+	00028: DELTAP1    
+	00029: SHC[rp1,zp0] 
+
+	Glyph 484: off = 0x000191DE, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			149
+	  yMin:			-386
+	  xMax:			1176
+	  yMax:			1329
+
+	     0: Flags:		0x0236
+		Glyf Index:	92
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	67
+		X BOffset:	-60
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     1     0    63    16    63    96    63     3     0    63 
+	                            55     1    34    64     1     1    58 
+	00019: PUSHW[2]            652    41 
+	00024: SVTCA[y-axis] 
+	00025: CALL       
+	00026: SVTCA[x-axis] 
+	00027: CALL       
+	00028: DELTAP1    
+	00029: SHC[rp1,zp0] 
+
+	Glyph 485: off = 0x00019214, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			509
+	  yMin:			653
+	  xMax:			931
+	  yMax:			1255
+
+	     0: Flags:		0x0216
+		Glyf Index:	181
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 486: off = 0x00019224, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			316
+	  yMin:			1076
+	  xMax:			914
+	  yMax:			1161
+
+	     0: Flags:		0x0216
+		Glyf Index:	216
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 487: off = 0x00019234, len = 394
+	  numberOfContours:	1
+	  xMin:			136
+	  yMin:			0
+	  xMax:			1070
+	  yMax:			1202
+
+	EndPoints
+	---------
+	  0:  70
+
+	  Length of Instructions:	212
+	00000: NPUSHB      (11):   168    31   185    31   201    31     3   118    52     1 
+	                            52 
+	00013: PUSHW[1]            -64 
+	00016: NPUSHB      (15):    35    36    52    34    40    42     3    32    14     8 
+	                             7     6     4    16    67 
+	00033: PUSHW[1]            771 
+	00036: PUSHB[5]             52    47    25     1    25 
+	00042: PUSHW[1]            773 
+	00045: NPUSHB      (17):    29    36    19    35    13    36    39    79     9     1 
+	                             9     9    43     5    36    47     1 
+	00064: PUSHW[1]            -64 
+	00067: NPUSHB      (35):    11    16    52     1     1    19    63    32    57    48 
+	                            57     2    57   210    53    52    36    62    63    19 
+	                             3    63    10    48   225    50     0    70    37    45 
+	                            11     3    55    44    59 
+	00104: PUSHW[3]            353    22   281 
+	00111: NPUSHB      (19):    16    50    44    70   132    32    44   192    16   208 
+	                            16     2    16   210    65    47    45     1    45 
+	00132: PUSHW[1]            725 
+	00135: PUSHB[3]             65    62     3 
+	00139: PUSHW[3]            401   402    24 
+	00146: CALL       
+	00147: MDAP[rd]   
+	00148: MIRP[nrp0,nmd,rd,0] 
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: DELTAP1    
+	00151: SRP0       
+	00152: MIRP[srp0,nmd,rd,0] 
+	00153: DELTAP2    
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: MIRP[srp0,nmd,rd,0] 
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: SRP0       
+	00158: MIRP[srp0,md,rd,1] 
+	00159: MIRP[srp0,nmd,rd,0] 
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: SRP0       
+	00162: ALIGNRP    
+	00163: SRP0       
+	00164: ALIGNRP    
+	00165: SRP0       
+	00166: ALIGNRP    
+	00167: SRP0       
+	00168: MIRP[nrp0,nmd,rd,0] 
+	00169: SVTCA[y-axis] 
+	00170: MIAP[rd+ci] 
+	00171: MIAP[rd+ci] 
+	00172: SRP0       
+	00173: ALIGNRP    
+	00174: MIRP[srp0,md,rd,1] 
+	00175: ALIGNRP    
+	00176: MIRP[nrp0,nmd,rd,0] 
+	00177: DELTAP1    
+	00178: SRP1       
+	00179: SRP2       
+	00180: IP         
+	00181: MDAP[rd]   
+	00182: CALL       
+	00183: ALIGNRP    
+	00184: MIRP[srp0,md,rd,1] 
+	00185: ALIGNRP    
+	00186: SHP[rp2,zp1] 
+	00187: MDAP[rd]   
+	00188: DELTAP2    
+	00189: ALIGNRP    
+	00190: MIRP[srp0,md,rd,1] 
+	00191: ALIGNRP    
+	00192: SRP0       
+	00193: MIRP[srp0,md,rd,1] 
+	00194: MIRP[nrp0,nmd,rd,0] 
+	00195: DELTAP1    
+	00196: SRP0       
+	00197: MIRP[nrp0,nmd,rd,2] 
+	00198: SVTCA[x-axis] 
+	00199: SRP1       
+	00200: SLOOP      
+	00201: SHP[rp1,zp0] 
+	00202: SRP1       
+	00203: SLOOP      
+	00204: SHP[rp1,zp0] 
+	00205: CALL       
+	00206: IUP[y]     
+	00207: IUP[x]     
+	00208: SVTCA[x-axis] 
+	00209: DELTAP1    
+	00210: SVTCA[y-axis] 
+	00211: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:                      Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:        XDual         Y-Short X-Short On
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short On
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short X-Short On
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short On
+	 49:        XDual         Y-Short X-Short Off
+	 50:        XDual         Y-Short         On
+	 51:        XDual         Y-Short         Off
+	 52:                      Y-Short X-Short On
+	 53:  YDual                               On
+	 54:  YDual XDual                 X-Short Off
+	 55:  YDual XDual         Y-Short X-Short On
+	 56:  YDual XDual         Y-Short X-Short Off
+	 57:  YDual XDual                 X-Short On
+	 58:  YDual XDual                 X-Short Off
+	 59:        XDual         Y-Short         On
+	 60:        XDual         Y-Short         Off
+	 61:                      Y-Short X-Short Off
+	 62:  YDual                       X-Short On
+	 63:  YDual                               On
+	 64:  YDual                       X-Short Off
+	 65:  YDual XDual         Y-Short         On
+	 66:  YDual XDual         Y-Short         Off
+	 67:  YDual XDual         Y-Short X-Short On
+	 68:  YDual XDual         Y-Short X-Short Off
+	 69:  YDual XDual         Y-Short X-Short Off
+	 70:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   407,   476)  ->  Abs (   407,   476)
+	  1: Rel (  -215,     0)  ->  Abs (   192,   476)
+	  2: Rel (   -56,     0)  ->  Abs (   136,   476)
+	  3: Rel (     0,    42)  ->  Abs (   136,   518)
+	  4: Rel (     0,    42)  ->  Abs (   136,   560)
+	  5: Rel (    56,     0)  ->  Abs (   192,   560)
+	  6: Rel (   206,     0)  ->  Abs (   398,   560)
+	  7: Rel (    -7,    35)  ->  Abs (   391,   595)
+	  8: Rel (   -19,    62)  ->  Abs (   372,   657)
+	  9: Rel (  -180,     0)  ->  Abs (   192,   657)
+	 10: Rel (   -56,     0)  ->  Abs (   136,   657)
+	 11: Rel (     0,    42)  ->  Abs (   136,   699)
+	 12: Rel (     0,    42)  ->  Abs (   136,   741)
+	 13: Rel (    56,     0)  ->  Abs (   192,   741)
+	 14: Rel (   155,     0)  ->  Abs (   347,   741)
+	 15: Rel (   -29,   105)  ->  Abs (   318,   846)
+	 16: Rel (     0,    58)  ->  Abs (   318,   904)
+	 17: Rel (     0,   120)  ->  Abs (   318,  1024)
+	 18: Rel (   171,   178)  ->  Abs (   489,  1202)
+	 19: Rel (   123,     0)  ->  Abs (   612,  1202)
+	 20: Rel (   108,     0)  ->  Abs (   720,  1202)
+	 21: Rel (   161,  -137)  ->  Abs (   881,  1065)
+	 22: Rel (     0,   -37)  ->  Abs (   881,  1028)
+	 23: Rel (     0,   -14)  ->  Abs (   881,  1014)
+	 24: Rel (   -26,   -25)  ->  Abs (   855,   989)
+	 25: Rel (   -16,     0)  ->  Abs (   839,   989)
+	 26: Rel (   -18,     0)  ->  Abs (   821,   989)
+	 27: Rel (   -20,    25)  ->  Abs (   801,  1014)
+	 28: Rel (   -80,   103)  ->  Abs (   721,  1117)
+	 29: Rel (  -106,     0)  ->  Abs (   615,  1117)
+	 30: Rel (   -94,     0)  ->  Abs (   521,  1117)
+	 31: Rel (  -118,  -133)  ->  Abs (   403,   984)
+	 32: Rel (     0,   -80)  ->  Abs (   403,   904)
+	 33: Rel (     0,   -56)  ->  Abs (   403,   848)
+	 34: Rel (    31,  -107)  ->  Abs (   434,   741)
+	 35: Rel (   244,     0)  ->  Abs (   678,   741)
+	 36: Rel (    56,     0)  ->  Abs (   734,   741)
+	 37: Rel (     0,   -42)  ->  Abs (   734,   699)
+	 38: Rel (     0,   -42)  ->  Abs (   734,   657)
+	 39: Rel (   -56,     0)  ->  Abs (   678,   657)
+	 40: Rel (  -219,     0)  ->  Abs (   459,   657)
+	 41: Rel (    16,   -59)  ->  Abs (   475,   598)
+	 42: Rel (     6,   -38)  ->  Abs (   481,   560)
+	 43: Rel (   197,     0)  ->  Abs (   678,   560)
+	 44: Rel (    56,     0)  ->  Abs (   734,   560)
+	 45: Rel (     0,   -42)  ->  Abs (   734,   518)
+	 46: Rel (     0,   -42)  ->  Abs (   734,   476)
+	 47: Rel (   -56,     0)  ->  Abs (   678,   476)
+	 48: Rel (  -189,     0)  ->  Abs (   489,   476)
+	 49: Rel (     1,   -22)  ->  Abs (   490,   454)
+	 50: Rel (     0,   -11)  ->  Abs (   490,   443)
+	 51: Rel (     0,  -210)  ->  Abs (   490,   233)
+	 52: Rel (  -118,  -149)  ->  Abs (   372,    84)
+	 53: Rel (   503,     0)  ->  Abs (   875,    84)
+	 54: Rel (   102,     0)  ->  Abs (   977,    84)
+	 55: Rel (     9,   108)  ->  Abs (   986,   192)
+	 56: Rel (     4,    47)  ->  Abs (   990,   239)
+	 57: Rel (    38,     0)  ->  Abs (  1028,   239)
+	 58: Rel (    42,     0)  ->  Abs (  1070,   239)
+	 59: Rel (     0,   -46)  ->  Abs (  1070,   193)
+	 60: Rel (     0,   -64)  ->  Abs (  1070,   129)
+	 61: Rel (   -89,  -129)  ->  Abs (   981,     0)
+	 62: Rel (   -98,     0)  ->  Abs (   883,     0)
+	 63: Rel (  -656,     0)  ->  Abs (   227,     0)
+	 64: Rel (   -56,     0)  ->  Abs (   171,     0)
+	 65: Rel (     0,    42)  ->  Abs (   171,    42)
+	 66: Rel (     0,    39)  ->  Abs (   171,    81)
+	 67: Rel (    47,     2)  ->  Abs (   218,    83)
+	 68: Rel (    77,     4)  ->  Abs (   295,    87)
+	 69: Rel (   112,   228)  ->  Abs (   407,   315)
+	 70: Rel (     0,   137)  ->  Abs (   407,   452)
+
+	Glyph 488: off = 0x000193BE, len = 218
+	  numberOfContours:	2
+	  xMin:			90
+	  yMin:			-34
+	  xMax:			1148
+	  yMax:			1096
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  26
+
+	  Length of Instructions:	121
+	00000: NPUSHB      (15):    70     5    75    18     2    86     9     1    21    25 
+	                            23    26     1     7     6 
+	00017: PUSHW[1]            -64 
+	00020: NPUSHB      (12):     9    10    52     6     6     3    26    30    64     0 
+	                             1     0 
+	00034: PUSHW[1]            -64 
+	00037: NPUSHB      (17):     9    10    52     0     0     3    23    30    16     3 
+	                            30    10     7    30     6     6    20 
+	00056: PUSHW[3]            488    19   -64 
+	00063: PUSHB[8]             10    12    52    19    19    28    26     1 
+	00072: PUSHW[1]            488 
+	00075: PUSHB[6]             13    64     9    11    52    13 
+	00082: MDAP[rd]   
+	00083: CALL       
+	00084: MIRP[srp0,md,rd,1] 
+	00085: ALIGNRP    
+	00086: SRP1       
+	00087: SHP[rp1,zp0] 
+	00088: MDAP[rd]   
+	00089: CALL       
+	00090: MIRP[srp0,md,rd,1] 
+	00091: IP         
+	00092: MDAP[rd]   
+	00093: MIRP[nrp0,md,rd,1] 
+	00094: SVTCA[y-axis] 
+	00095: MDAP[rd]   
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: MDAP[rd]   
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: SRP1       
+	00100: IP         
+	00101: MDAP[rd]   
+	00102: CALL       
+	00103: DELTAP1    
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: SRP2       
+	00106: IP         
+	00107: MDAP[rd]   
+	00108: CALL       
+	00109: SHP[rp1,zp0] 
+	00110: IP         
+	00111: SRP1       
+	00112: SRP2       
+	00113: IP         
+	00114: IP         
+	00115: IUP[y]     
+	00116: IUP[x]     
+	00117: SVTCA[x-axis] 
+	00118: DELTAP1    
+	00119: SVTCA[y-axis] 
+	00120: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:                                      Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:                                      Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:                                      Off
+	 19:        XDual                 X-Short On
+	 20:  YDual               Y-Short X-Short On
+	 21:        XDual                         On
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:                      Y-Short X-Short On
+	 26:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   321,   531)  ->  Abs (   321,   531)
+	  1: Rel (     0,  -371)  ->  Abs (   321,   160)
+	  2: Rel (   120,  -121)  ->  Abs (   441,    39)
+	  3: Rel (   178,     0)  ->  Abs (   619,    39)
+	  4: Rel (   140,     0)  ->  Abs (   759,    39)
+	  5: Rel (   183,   128)  ->  Abs (   942,   167)
+	  6: Rel (    72,   118)  ->  Abs (  1014,   285)
+	  7: Rel (    72,   -43)  ->  Abs (  1086,   242)
+	  8: Rel (  -117,  -169)  ->  Abs (   969,    73)
+	  9: Rel (  -229,  -107)  ->  Abs (   740,   -34)
+	 10: Rel (  -121,     0)  ->  Abs (   619,   -34)
+	 11: Rel (  -232,     0)  ->  Abs (   387,   -34)
+	 12: Rel (  -297,   317)  ->  Abs (    90,   283)
+	 13: Rel (     0,   248)  ->  Abs (    90,   531)
+	 14: Rel (     0,   249)  ->  Abs (    90,   780)
+	 15: Rel (   298,   316)  ->  Abs (   388,  1096)
+	 16: Rel (   231,     0)  ->  Abs (   619,  1096)
+	 17: Rel (   214,     0)  ->  Abs (   833,  1096)
+	 18: Rel (   304,  -284)  ->  Abs (  1137,   812)
+	 19: Rel (    11,  -281)  ->  Abs (  1148,   531)
+	 20: Rel (  -231,    74)  ->  Abs (   917,   605)
+	 21: Rel (     0,   297)  ->  Abs (   917,   902)
+	 22: Rel (  -128,   121)  ->  Abs (   789,  1023)
+	 23: Rel (  -172,     0)  ->  Abs (   617,  1023)
+	 24: Rel (  -175,     0)  ->  Abs (   442,  1023)
+	 25: Rel (  -121,  -122)  ->  Abs (   321,   901)
+	 26: Rel (     0,  -296)  ->  Abs (   321,   605)
+
+	Glyph 489: off = 0x00019498, len = 636
+	  numberOfContours:	5
+	  xMin:			12
+	  yMin:			-15
+	  xMax:			1215
+	  yMax:			1282
+
+	EndPoints
+	---------
+	  0:  20
+	  1:  34
+	  2:  54
+	  3:  66
+	  4:  78
+
+	  Length of Instructions:	415
+	00000: NPUSHB      (46):   214    59     1    73    38    73    42     2   119    39 
+	                           119    51     2   103    51   135    51     2    31    35 
+	                            16    45   103    39     3    15    35     0    45     2 
+	                           133    35   138    45     2    71    49    73    51     2 
+	                            56    32    24    36    52    66 
+	00048: PUSHW[1]            -32 
+	00051: NPUSHB       (9):    24    36    52    60    32    24    36    52    62 
+	00062: PUSHW[1]            -32 
+	00065: NPUSHB       (9):    24    36    52    68    32    24    36    52    78 
+	00076: PUSHW[1]            -32 
+	00079: NPUSHB       (9):    24    36    52    72    32    24    36    52    74 
+	00090: PUSHW[1]            -32 
+	00093: PUSHB[5]             24    36    52     7    11 
+	00099: PUSHW[1]            686 
+	00102: PUSHB[7]              9    78    12     9     9    11    12 
+	00110: PUSHW[1]            345 
+	00113: PUSHB[3]              7     6     2 
+	00117: PUSHW[1]            686 
+	00120: PUSHB[7]              4    78     1     4     4     2     1 
+	00128: PUSHW[1]            345 
+	00131: NPUSHB     (139):     6    35    45    64    70    22    21    33    29    28 
+	                            26     6    31    24    24    28    22    21    29    31 
+	                             6    33    26    21    22    22    32    28    29    20 
+	                            28    28    29    79    31   223    31     2   143    31 
+	                             1    47    31    63    31    79    31     3    31    31 
+	                            40    80    24     1   128    24     1    24    24     0 
+	                            40    33    33    79    26    26    80    79    64    98 
+	                            70    70    40    58    98    64    50     1    47    50 
+	                            63    50    79    50     3    50    50    76    98    40 
+	                            11     6     7     7    20    13    14     3     0    16 
+	                            16     0     5    35    55    45    61    33   223    47 
+	                             1    47    47    73    33    43    43    37    55    33 
+	                           208    53     1    53    53    67    33    37    37    80 
+	                            18   197     0    91    13     1    91    13    12 
+	00272: PUSHW[2]            404    79 
+	00277: SRP0       
+	00278: MIRP[srp0,nmd,rd,2] 
+	00279: ALIGNRP    
+	00280: MIRP[nrp0,md,rd,1] 
+	00281: SRP0       
+	00282: MIRP[nrp0,md,rd,1] 
+	00283: MIRP[nrp0,md,rd,1] 
+	00284: SRP1       
+	00285: SHP[rp1,zp0] 
+	00286: MDAP[rd]   
+	00287: MIRP[nrp0,md,rd,1] 
+	00288: IP         
+	00289: MDAP[rd]   
+	00290: DELTAP3    
+	00291: MIRP[nrp0,md,rd,1] 
+	00292: SRP1       
+	00293: SHP[rp1,zp0] 
+	00294: MDAP[rd]   
+	00295: MIRP[nrp0,md,rd,1] 
+	00296: IP         
+	00297: MDAP[rd]   
+	00298: DELTAP3    
+	00299: MIRP[srp0,md,rd,1] 
+	00300: SHP[rp2,zp1] 
+	00301: SRP1       
+	00302: SHP[rp1,zp0] 
+	00303: SVTCA[y-axis] 
+	00304: MIAP[rd+ci] 
+	00305: SHP[rp1,zp0] 
+	00306: MDAP[rd]   
+	00307: SRP2       
+	00308: SLOOP      
+	00309: IP         
+	00310: SHP[rp2,zp1] 
+	00311: MDAP[rd]   
+	00312: ALIGNRP    
+	00313: MIAP[rd+ci] 
+	00314: MIRP[nrp0,md,rd,1] 
+	00315: SHP[rp1,zp0] 
+	00316: MDAP[rd]   
+	00317: DELTAP1    
+	00318: DELTAP2    
+	00319: MIRP[nrp0,md,rd,1] 
+	00320: SRP2       
+	00321: IP         
+	00322: MDAP[rd]   
+	00323: MIRP[nrp0,md,rd,1] 
+	00324: SVTCA[x-axis] 
+	00325: SRP1       
+	00326: SRP2       
+	00327: IP         
+	00328: MDAP[rd]   
+	00329: SRP1       
+	00330: IP         
+	00331: MDAP[rd]   
+	00332: SVTCA[y-axis] 
+	00333: SRP1       
+	00334: SRP2       
+	00335: IP         
+	00336: MDAP[rd]   
+	00337: DELTAP1    
+	00338: DELTAP3    
+	00339: SRP1       
+	00340: IP         
+	00341: MDAP[rd]   
+	00342: DELTAP1    
+	00343: DELTAP1    
+	00344: DELTAP2    
+	00345: SDPVTL[1]  
+	00346: SFVTPV     
+	00347: MDAP[nrd]  
+	00348: CALL       
+	00349: SFVTPV     
+	00350: RDTG       
+	00351: SRP0       
+	00352: MDRP[nrp0,nmd,rd,0] 
+	00353: SVTCA[x-axis] 
+	00354: SRP1       
+	00355: SRP2       
+	00356: SLOOP      
+	00357: IP         
+	00358: SVTCA[y-axis] 
+	00359: SRP1       
+	00360: SRP2       
+	00361: SLOOP      
+	00362: IP         
+	00363: SRP1       
+	00364: SRP2       
+	00365: IP         
+	00366: IP         
+	00367: RTG        
+	00368: SRP0       
+	00369: MIRP[srp0,md,rd,1] 
+	00370: RTDG       
+	00371: SRP2       
+	00372: IP         
+	00373: MDAP[rd]   
+	00374: RTG        
+	00375: SVTCA[x-axis] 
+	00376: SRP0       
+	00377: MIRP[srp0,nmd,rd,1] 
+	00378: MIRP[srp0,nmd,rd,0] 
+	00379: MDRP[nrp0,nmd,rd,0] 
+	00380: SVTCA[y-axis] 
+	00381: SRP0       
+	00382: MIRP[srp0,md,rd,1] 
+	00383: RTDG       
+	00384: SRP2       
+	00385: IP         
+	00386: MDAP[rd]   
+	00387: RTG        
+	00388: SVTCA[x-axis] 
+	00389: SRP0       
+	00390: MIRP[srp0,nmd,rd,1] 
+	00391: MIRP[srp0,nmd,rd,0] 
+	00392: MDRP[nrp0,nmd,rd,0] 
+	00393: IUP[y]     
+	00394: IUP[x]     
+	00395: SVTCA[y-axis] 
+	00396: CALL       
+	00397: CALL       
+	00398: CALL       
+	00399: CALL       
+	00400: CALL       
+	00401: CALL       
+	00402: CALL       
+	00403: CALL       
+	00404: SVTCA[x-axis] 
+	00405: DELTAP2    
+	00406: DELTAP2    
+	00407: DELTAP1    
+	00408: DELTAP1    
+	00409: DELTAP1    
+	00410: DELTAP1    
+	00411: SVTCA[y-axis] 
+	00412: DELTAP2    
+	00413: SVTCA[x-axis] 
+	00414: DELTAP3    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                               On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:                                      On
+	 22:                                      On
+	 23:                      Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:                                      On
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:                              X-Short On
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:                      Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual XDual         Y-Short X-Short On
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual XDual         Y-Short X-Short Off
+	 50:  YDual XDual                 X-Short On
+	 51:  YDual XDual                 X-Short Off
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short         On
+	 54:        XDual         Y-Short         Off
+	 55:  YDual               Y-Short X-Short On
+	 56:  YDual XDual         Y-Short         Off
+	 57:  YDual               Y-Short X-Short Off
+	 58:  YDual                       X-Short On
+	 59:  YDual                       X-Short Off
+	 60:                      Y-Short X-Short Off
+	 61:        XDual         Y-Short         On
+	 62:        XDual         Y-Short         Off
+	 63:        XDual         Y-Short X-Short Off
+	 64:  YDual XDual                 X-Short On
+	 65:  YDual XDual                 X-Short Off
+	 66:  YDual XDual         Y-Short X-Short Off
+	 67:        XDual                 X-Short On
+	 68:  YDual XDual         Y-Short         Off
+	 69:  YDual               Y-Short X-Short Off
+	 70:  YDual                       X-Short On
+	 71:  YDual                       X-Short Off
+	 72:                      Y-Short X-Short Off
+	 73:        XDual         Y-Short         On
+	 74:        XDual         Y-Short         Off
+	 75:        XDual         Y-Short X-Short Off
+	 76:  YDual XDual                 X-Short On
+	 77:  YDual XDual                 X-Short Off
+	 78:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   289,  1282)  ->  Abs (   289,  1282)
+	  1: Rel (     0,  -609)  ->  Abs (   289,   673)
+	  2: Rel (   157,     0)  ->  Abs (   446,   673)
+	  3: Rel (    46,     0)  ->  Abs (   492,   673)
+	  4: Rel (     0,   -29)  ->  Abs (   492,   644)
+	  5: Rel (     0,   -28)  ->  Abs (   492,   616)
+	  6: Rel (   -46,     0)  ->  Abs (   446,   616)
+	  7: Rel (  -389,     0)  ->  Abs (    57,   616)
+	  8: Rel (   -45,     0)  ->  Abs (    12,   616)
+	  9: Rel (     0,    28)  ->  Abs (    12,   644)
+	 10: Rel (     0,    29)  ->  Abs (    12,   673)
+	 11: Rel (    45,     0)  ->  Abs (    57,   673)
+	 12: Rel (   158,     0)  ->  Abs (   215,   673)
+	 13: Rel (     0,   529)  ->  Abs (   215,  1202)
+	 14: Rel (  -148,   -40)  ->  Abs (    67,  1162)
+	 15: Rel (   -11,    -3)  ->  Abs (    56,  1159)
+	 16: Rel (    -8,     0)  ->  Abs (    48,  1159)
+	 17: Rel (   -35,     0)  ->  Abs (    13,  1159)
+	 18: Rel (     0,    28)  ->  Abs (    13,  1187)
+	 19: Rel (     0,    20)  ->  Abs (    13,  1207)
+	 20: Rel (    35,     9)  ->  Abs (    48,  1216)
+	 21: Rel (  1094,  -323)  ->  Abs (  1142,   893)
+	 22: Rel (  -915,  -590)  ->  Abs (   227,   303)
+	 23: Rel (   -23,   -14)  ->  Abs (   204,   289)
+	 24: Rel (   -12,     0)  ->  Abs (   192,   289)
+	 25: Rel (   -42,     0)  ->  Abs (   150,   289)
+	 26: Rel (     0,    42)  ->  Abs (   150,   331)
+	 27: Rel (     0,    23)  ->  Abs (   150,   354)
+	 28: Rel (    31,    20)  ->  Abs (   181,   374)
+	 29: Rel (   915,   590)  ->  Abs (  1096,   964)
+	 30: Rel (    23,    14)  ->  Abs (  1119,   978)
+	 31: Rel (    12,     0)  ->  Abs (  1131,   978)
+	 32: Rel (    42,     0)  ->  Abs (  1173,   978)
+	 33: Rel (     0,   -42)  ->  Abs (  1173,   936)
+	 34: Rel (     0,   -23)  ->  Abs (  1173,   913)
+	 35: Rel (   -78,  -574)  ->  Abs (  1095,   339)
+	 36: Rel (   120,   -55)  ->  Abs (  1215,   284)
+	 37: Rel (     0,  -106)  ->  Abs (  1215,   178)
+	 38: Rel (     0,   -80)  ->  Abs (  1215,    98)
+	 39: Rel (  -143,  -113)  ->  Abs (  1072,   -15)
+	 40: Rel (   -96,     0)  ->  Abs (   976,   -15)
+	 41: Rel (   -96,     0)  ->  Abs (   880,   -15)
+	 42: Rel (  -143,   113)  ->  Abs (   737,    98)
+	 43: Rel (     0,    80)  ->  Abs (   737,   178)
+	 44: Rel (     0,   105)  ->  Abs (   737,   283)
+	 45: Rel (   120,    56)  ->  Abs (   857,   339)
+	 46: Rel (  -107,    56)  ->  Abs (   750,   395)
+	 47: Rel (     0,    91)  ->  Abs (   750,   486)
+	 48: Rel (     0,    72)  ->  Abs (   750,   558)
+	 49: Rel (   132,   110)  ->  Abs (   882,   668)
+	 50: Rel (    94,     0)  ->  Abs (   976,   668)
+	 51: Rel (    93,     0)  ->  Abs (  1069,   668)
+	 52: Rel (   133,  -110)  ->  Abs (  1202,   558)
+	 53: Rel (     0,   -72)  ->  Abs (  1202,   486)
+	 54: Rel (     0,   -93)  ->  Abs (  1202,   393)
+	 55: Rel (   -75,    91)  ->  Abs (  1127,   484)
+	 56: Rel (     0,    52)  ->  Abs (  1127,   536)
+	 57: Rel (   -87,    76)  ->  Abs (  1040,   612)
+	 58: Rel (   -65,     0)  ->  Abs (   975,   612)
+	 59: Rel (   -62,     0)  ->  Abs (   913,   612)
+	 60: Rel (   -89,   -74)  ->  Abs (   824,   538)
+	 61: Rel (     0,   -54)  ->  Abs (   824,   484)
+	 62: Rel (     0,   -49)  ->  Abs (   824,   435)
+	 63: Rel (    89,   -69)  ->  Abs (   913,   366)
+	 64: Rel (    62,     0)  ->  Abs (   975,   366)
+	 65: Rel (    61,     0)  ->  Abs (  1036,   366)
+	 66: Rel (    91,    68)  ->  Abs (  1127,   434)
+	 67: Rel (    14,  -256)  ->  Abs (  1141,   178)
+	 68: Rel (     0,    53)  ->  Abs (  1141,   231)
+	 69: Rel (   -93,    80)  ->  Abs (  1048,   311)
+	 70: Rel (   -72,     0)  ->  Abs (   976,   311)
+	 71: Rel (   -72,     0)  ->  Abs (   904,   311)
+	 72: Rel (   -93,   -80)  ->  Abs (   811,   231)
+	 73: Rel (     0,   -53)  ->  Abs (   811,   178)
+	 74: Rel (     0,   -53)  ->  Abs (   811,   125)
+	 75: Rel (    91,   -84)  ->  Abs (   902,    41)
+	 76: Rel (    74,     0)  ->  Abs (   976,    41)
+	 77: Rel (    76,     0)  ->  Abs (  1052,    41)
+	 78: Rel (    89,    86)  ->  Abs (  1141,   127)
+
+	Glyph 490: off = 0x00019714, len = 734
+	  numberOfContours:	5
+	  xMin:			17
+	  yMin:			-15
+	  xMax:			1213
+	  yMax:			1285
+
+	EndPoints
+	---------
+	  0:  46
+	  1:  60
+	  2:  81
+	  3:  93
+	  4:  105
+
+	  Length of Instructions:	448
+	00000: NPUSHB      (45):   214    86     1    73    65    73    69     2   119    66 
+	                           119    78     2   103    78   135    78     2    31    61 
+	                            31    62    16    72   103    66     4    15    61    15 
+	                            62     0    72     3   133    61   138    72     2    71 
+	                            76    73    78     2    29 
+	00047: PUSHW[1]            -32 
+	00050: NPUSHB      (14):    24    36    52    31    32    24    36    52    83    32 
+	                            24    36    52    93 
+	00066: PUSHW[1]            -32 
+	00069: NPUSHB       (9):    24    36    52    87    32    24    36    52    89 
+	00080: PUSHW[1]            -32 
+	00083: NPUSHB       (9):    24    36    52    95    42    24    36    52   105 
+	00094: PUSHW[1]            -32 
+	00097: NPUSHB       (9):    24    36    52    99    32    24    36    52   101 
+	00108: PUSHW[1]            -32 
+	00111: NPUSHB      (97):    24    36    52    61    72    91    97    48    47    59 
+	                            55    54    52     6    57    50    50    54    48    47 
+	                            55    57     6    59    52    47    48    48    32    54 
+	                            55    20    54    54    55    79    57   223    57     2 
+	                           143    57     1    47    57    63    57    79    57     3 
+	                            57    57    67    80    50     1   128    50   224    50 
+	                             2    50    50    42    67    59    59   106    52    52 
+	                           107   106    91    98    97    97    67    85    98    64 
+	                            77     1    47    77    63    77    79    77     3    77 
+	                            77   103    98    67    11     0    26 
+	00210: PUSHW[1]            792 
+	00213: NPUSHB      (76):   176    22   192    22   208    22     3    80    22    96 
+	                            22   112    22     3    22    22     7    42   127    37 
+	                           143    37     2    37    37    33   112    12     1    12 
+	                            12    16    98    79     7     1     7     7    33    98 
+	                            42     5    61    82    72    88    33   223    74     1 
+	                            74    74   100    33    70    70    64    82    33   208 
+	                            80     1    80    80    94    33    64    64   107    24 
+	                            24     4    39    39    10     2 
+	00291: PUSHW[1]            -16 
+	00294: NPUSHB      (14):     0    30    33    45    45    30    19    33   208     4 
+	                             1     4     4    10 
+	00310: MDAP[rd]   
+	00311: SHP[rp1,zp0] 
+	00312: MDAP[rd]   
+	00313: DELTAP1    
+	00314: MIRP[nrp0,md,rd,1] 
+	00315: SRP2       
+	00316: IP         
+	00317: MDAP[rd]   
+	00318: MIRP[srp0,md,rd,1] 
+	00319: SHP[rp2,zp1] 
+	00320: SVTCA[y-axis] 
+	00321: SHPIX      
+	00322: SVTCA[x-axis] 
+	00323: SRP1       
+	00324: SHP[rp1,zp0] 
+	00325: MDAP[rd]   
+	00326: SRP1       
+	00327: SHP[rp1,zp0] 
+	00328: MDAP[rd]   
+	00329: SRP1       
+	00330: SHP[rp1,zp0] 
+	00331: MDAP[rd]   
+	00332: MIRP[nrp0,md,rd,1] 
+	00333: IP         
+	00334: MDAP[rd]   
+	00335: DELTAP3    
+	00336: MIRP[nrp0,md,rd,1] 
+	00337: SRP1       
+	00338: SHP[rp1,zp0] 
+	00339: MDAP[rd]   
+	00340: MIRP[nrp0,md,rd,1] 
+	00341: IP         
+	00342: MDAP[rd]   
+	00343: DELTAP3    
+	00344: MIRP[srp0,md,rd,1] 
+	00345: SHP[rp2,zp1] 
+	00346: SRP1       
+	00347: SHP[rp1,zp0] 
+	00348: SVTCA[y-axis] 
+	00349: MIAP[rd+ci] 
+	00350: MIRP[nrp0,md,rd,1] 
+	00351: SHP[rp1,zp0] 
+	00352: MDAP[rd]   
+	00353: DELTAP2    
+	00354: MIRP[srp0,md,rd,1] 
+	00355: SHP[rp2,zp1] 
+	00356: MDAP[rd]   
+	00357: DELTAP1    
+	00358: SRP1       
+	00359: SHP[rp1,zp0] 
+	00360: MDAP[rd]   
+	00361: DELTAP1    
+	00362: SRP1       
+	00363: SRP2       
+	00364: IP         
+	00365: MDAP[rd]   
+	00366: DELTAP1    
+	00367: DELTAP1    
+	00368: MIRP[nrp0,md,rd,1] 
+	00369: IP         
+	00370: MIAP[rd+ci] 
+	00371: MIRP[nrp0,md,rd,1] 
+	00372: SHP[rp1,zp0] 
+	00373: MDAP[rd]   
+	00374: DELTAP1    
+	00375: DELTAP2    
+	00376: MIRP[nrp0,md,rd,1] 
+	00377: SRP2       
+	00378: IP         
+	00379: MDAP[rd]   
+	00380: MIRP[nrp0,md,rd,1] 
+	00381: SVTCA[x-axis] 
+	00382: SRP1       
+	00383: SRP2       
+	00384: IP         
+	00385: MDAP[rd]   
+	00386: SRP1       
+	00387: IP         
+	00388: MDAP[rd]   
+	00389: SVTCA[y-axis] 
+	00390: SRP1       
+	00391: SRP2       
+	00392: IP         
+	00393: MDAP[rd]   
+	00394: DELTAP1    
+	00395: DELTAP3    
+	00396: SRP1       
+	00397: IP         
+	00398: MDAP[rd]   
+	00399: DELTAP1    
+	00400: DELTAP1    
+	00401: DELTAP2    
+	00402: SDPVTL[1]  
+	00403: SFVTPV     
+	00404: MDAP[nrd]  
+	00405: CALL       
+	00406: SFVTPV     
+	00407: RDTG       
+	00408: SRP0       
+	00409: MDRP[nrp0,nmd,rd,0] 
+	00410: SVTCA[x-axis] 
+	00411: SRP1       
+	00412: SRP2       
+	00413: SLOOP      
+	00414: IP         
+	00415: SVTCA[y-axis] 
+	00416: SRP1       
+	00417: SRP2       
+	00418: SLOOP      
+	00419: IP         
+	00420: SRP1       
+	00421: SRP2       
+	00422: IP         
+	00423: IP         
+	00424: IUP[y]     
+	00425: IUP[x]     
+	00426: SVTCA[y-axis] 
+	00427: CALL       
+	00428: CALL       
+	00429: CALL       
+	00430: CALL       
+	00431: CALL       
+	00432: CALL       
+	00433: CALL       
+	00434: CALL       
+	00435: CALL       
+	00436: CALL       
+	00437: SVTCA[x-axis] 
+	00438: DELTAP2    
+	00439: DELTAP2    
+	00440: DELTAP1    
+	00441: DELTAP1    
+	00442: DELTAP1    
+	00443: DELTAP1    
+	00444: SVTCA[y-axis] 
+	00445: DELTAP2    
+	00446: SVTCA[x-axis] 
+	00447: DELTAP3    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:                      Y-Short X-Short On
+	 36:                      Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:        XDual         Y-Short X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         Off
+	 47:                      Y-Short         On
+	 48:                                      On
+	 49:                      Y-Short X-Short Off
+	 50:  YDual                       X-Short On
+	 51:  YDual                       X-Short Off
+	 52:  YDual XDual         Y-Short         On
+	 53:  YDual XDual         Y-Short         Off
+	 54:  YDual XDual         Y-Short X-Short On
+	 55:                                      On
+	 56:  YDual XDual         Y-Short X-Short Off
+	 57:  YDual XDual                 X-Short On
+	 58:  YDual XDual                 X-Short Off
+	 59:        XDual         Y-Short         On
+	 60:        XDual         Y-Short         Off
+	 61:                              X-Short On
+	 62:        XDual         Y-Short X-Short On
+	 63:        XDual         Y-Short X-Short Off
+	 64:        XDual         Y-Short         On
+	 65:        XDual         Y-Short         Off
+	 66:                      Y-Short X-Short Off
+	 67:  YDual                       X-Short On
+	 68:  YDual                       X-Short Off
+	 69:  YDual               Y-Short X-Short Off
+	 70:  YDual XDual         Y-Short         On
+	 71:  YDual XDual         Y-Short         Off
+	 72:  YDual XDual         Y-Short X-Short On
+	 73:  YDual               Y-Short X-Short Off
+	 74:  YDual XDual         Y-Short         On
+	 75:  YDual XDual         Y-Short         Off
+	 76:  YDual XDual         Y-Short X-Short Off
+	 77:  YDual XDual                 X-Short On
+	 78:  YDual XDual                 X-Short Off
+	 79:        XDual         Y-Short X-Short Off
+	 80:        XDual         Y-Short         On
+	 81:        XDual         Y-Short         Off
+	 82:  YDual               Y-Short X-Short On
+	 83:  YDual XDual         Y-Short         Off
+	 84:  YDual               Y-Short X-Short Off
+	 85:  YDual                       X-Short On
+	 86:  YDual                       X-Short Off
+	 87:                      Y-Short X-Short Off
+	 88:        XDual         Y-Short         On
+	 89:        XDual         Y-Short         Off
+	 90:        XDual         Y-Short X-Short Off
+	 91:  YDual XDual                 X-Short On
+	 92:  YDual XDual                 X-Short Off
+	 93:  YDual XDual         Y-Short X-Short Off
+	 94:        XDual                 X-Short On
+	 95:  YDual XDual         Y-Short         Off
+	 96:  YDual               Y-Short X-Short Off
+	 97:  YDual                       X-Short On
+	 98:  YDual                       X-Short Off
+	 99:                      Y-Short X-Short Off
+	100:        XDual         Y-Short         On
+	101:        XDual         Y-Short         Off
+	102:        XDual         Y-Short X-Short Off
+	103:  YDual XDual                 X-Short On
+	104:  YDual XDual                 X-Short Off
+	105:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   398,   972)  ->  Abs (   398,   972)
+	  1: Rel (     2,    -1)  ->  Abs (   400,   971)
+	  2: Rel (    55,   -23)  ->  Abs (   455,   948)
+	  3: Rel (    76,   -93)  ->  Abs (   531,   855)
+	  4: Rel (     0,   -53)  ->  Abs (   531,   802)
+	  5: Rel (     0,   -78)  ->  Abs (   531,   724)
+	  6: Rel (  -151,  -123)  ->  Abs (   380,   601)
+	  7: Rel (  -114,     0)  ->  Abs (   266,   601)
+	  8: Rel (   -79,     0)  ->  Abs (   187,   601)
+	  9: Rel (  -170,    69)  ->  Abs (    17,   670)
+	 10: Rel (     0,    26)  ->  Abs (    17,   696)
+	 11: Rel (     0,    27)  ->  Abs (    17,   723)
+	 12: Rel (    34,     0)  ->  Abs (    51,   723)
+	 13: Rel (    15,     0)  ->  Abs (    66,   723)
+	 14: Rel (    29,   -17)  ->  Abs (    95,   706)
+	 15: Rel (    78,   -49)  ->  Abs (   173,   657)
+	 16: Rel (    93,     0)  ->  Abs (   266,   657)
+	 17: Rel (    81,     0)  ->  Abs (   347,   657)
+	 18: Rel (   110,    89)  ->  Abs (   457,   746)
+	 19: Rel (     0,    55)  ->  Abs (   457,   801)
+	 20: Rel (     0,    58)  ->  Abs (   457,   859)
+	 21: Rel (  -116,    87)  ->  Abs (   341,   946)
+	 22: Rel (   -92,     2)  ->  Abs (   249,   948)
+	 23: Rel (   -45,     1)  ->  Abs (   204,   949)
+	 24: Rel (     0,    28)  ->  Abs (   204,   977)
+	 25: Rel (     0,    27)  ->  Abs (   204,  1004)
+	 26: Rel (    43,     0)  ->  Abs (   247,  1004)
+	 27: Rel (    41,     0)  ->  Abs (   288,  1004)
+	 28: Rel (    65,     0)  ->  Abs (   353,  1004)
+	 29: Rel (    77,    67)  ->  Abs (   430,  1071)
+	 30: Rel (     0,    43)  ->  Abs (   430,  1114)
+	 31: Rel (     0,    42)  ->  Abs (   430,  1156)
+	 32: Rel (   -79,    73)  ->  Abs (   351,  1229)
+	 33: Rel (   -73,     0)  ->  Abs (   278,  1229)
+	 34: Rel (  -103,     0)  ->  Abs (   175,  1229)
+	 35: Rel (   -54,   -57)  ->  Abs (   121,  1172)
+	 36: Rel (   -13,   -15)  ->  Abs (   108,  1157)
+	 37: Rel (   -20,     0)  ->  Abs (    88,  1157)
+	 38: Rel (   -36,     0)  ->  Abs (    52,  1157)
+	 39: Rel (     0,    26)  ->  Abs (    52,  1183)
+	 40: Rel (     0,    24)  ->  Abs (    52,  1207)
+	 41: Rel (   136,    78)  ->  Abs (   188,  1285)
+	 42: Rel (    90,     0)  ->  Abs (   278,  1285)
+	 43: Rel (   100,     0)  ->  Abs (   378,  1285)
+	 44: Rel (   126,  -102)  ->  Abs (   504,  1183)
+	 45: Rel (     0,   -69)  ->  Abs (   504,  1114)
+	 46: Rel (     0,   -94)  ->  Abs (   504,  1020)
+	 47: Rel (   592,  -127)  ->  Abs (  1096,   893)
+	 48: Rel (  -916,  -590)  ->  Abs (   180,   303)
+	 49: Rel (   -22,   -14)  ->  Abs (   158,   289)
+	 50: Rel (   -12,     0)  ->  Abs (   146,   289)
+	 51: Rel (   -43,     0)  ->  Abs (   103,   289)
+	 52: Rel (     0,    42)  ->  Abs (   103,   331)
+	 53: Rel (     0,    23)  ->  Abs (   103,   354)
+	 54: Rel (    31,    20)  ->  Abs (   134,   374)
+	 55: Rel (   916,   590)  ->  Abs (  1050,   964)
+	 56: Rel (    22,    14)  ->  Abs (  1072,   978)
+	 57: Rel (    12,     0)  ->  Abs (  1084,   978)
+	 58: Rel (    43,     0)  ->  Abs (  1127,   978)
+	 59: Rel (     0,   -42)  ->  Abs (  1127,   936)
+	 60: Rel (     0,   -23)  ->  Abs (  1127,   913)
+	 61: Rel (   -34,  -574)  ->  Abs (  1093,   339)
+	 62: Rel (     2,    -1)  ->  Abs (  1095,   338)
+	 63: Rel (   118,   -52)  ->  Abs (  1213,   286)
+	 64: Rel (     0,  -108)  ->  Abs (  1213,   178)
+	 65: Rel (     0,   -79)  ->  Abs (  1213,    99)
+	 66: Rel (  -143,  -114)  ->  Abs (  1070,   -15)
+	 67: Rel (   -96,     0)  ->  Abs (   974,   -15)
+	 68: Rel (   -96,     0)  ->  Abs (   878,   -15)
+	 69: Rel (  -143,   113)  ->  Abs (   735,    98)
+	 70: Rel (     0,    80)  ->  Abs (   735,   178)
+	 71: Rel (     0,   105)  ->  Abs (   735,   283)
+	 72: Rel (   120,    56)  ->  Abs (   855,   339)
+	 73: Rel (  -107,    56)  ->  Abs (   748,   395)
+	 74: Rel (     0,    91)  ->  Abs (   748,   486)
+	 75: Rel (     0,    72)  ->  Abs (   748,   558)
+	 76: Rel (   132,   110)  ->  Abs (   880,   668)
+	 77: Rel (    94,     0)  ->  Abs (   974,   668)
+	 78: Rel (    94,     0)  ->  Abs (  1068,   668)
+	 79: Rel (   132,  -109)  ->  Abs (  1200,   559)
+	 80: Rel (     0,   -73)  ->  Abs (  1200,   486)
+	 81: Rel (     0,   -93)  ->  Abs (  1200,   393)
+	 82: Rel (   -75,    91)  ->  Abs (  1125,   484)
+	 83: Rel (     0,    54)  ->  Abs (  1125,   538)
+	 84: Rel (   -90,    74)  ->  Abs (  1035,   612)
+	 85: Rel (   -62,     0)  ->  Abs (   973,   612)
+	 86: Rel (   -62,     0)  ->  Abs (   911,   612)
+	 87: Rel (   -89,   -74)  ->  Abs (   822,   538)
+	 88: Rel (     0,   -54)  ->  Abs (   822,   484)
+	 89: Rel (     0,   -50)  ->  Abs (   822,   434)
+	 90: Rel (    91,   -68)  ->  Abs (   913,   366)
+	 91: Rel (    60,     0)  ->  Abs (   973,   366)
+	 92: Rel (    61,     0)  ->  Abs (  1034,   366)
+	 93: Rel (    91,    68)  ->  Abs (  1125,   434)
+	 94: Rel (    14,  -256)  ->  Abs (  1139,   178)
+	 95: Rel (     0,    46)  ->  Abs (  1139,   224)
+	 96: Rel (   -85,    87)  ->  Abs (  1054,   311)
+	 97: Rel (   -80,     0)  ->  Abs (   974,   311)
+	 98: Rel (   -72,     0)  ->  Abs (   902,   311)
+	 99: Rel (   -93,   -80)  ->  Abs (   809,   231)
+	100: Rel (     0,   -53)  ->  Abs (   809,   178)
+	101: Rel (     0,   -55)  ->  Abs (   809,   123)
+	102: Rel (    94,   -82)  ->  Abs (   903,    41)
+	103: Rel (    71,     0)  ->  Abs (   974,    41)
+	104: Rel (    76,     0)  ->  Abs (  1050,    41)
+	105: Rel (    89,    86)  ->  Abs (  1139,   127)
+
+	Glyph 491: off = 0x000199F2, len = 666
+	  numberOfContours:	5
+	  xMin:			11
+	  yMin:			-15
+	  xMax:			1212
+	  yMax:			1269
+
+	EndPoints
+	---------
+	  0:  36
+	  1:  50
+	  2:  71
+	  3:  83
+	  4:  95
+
+	  Length of Instructions:	405
+	00000: NPUSHB      (54):   214    76     1    73    55    73    59     2   255     7 
+	                             1   119    56   119    68     2   103    68   135    68 
+	                             2    16    62   103    56     2    31    51    31    52 
+	                             2    15    51    15    52     0    62     3   133    51 
+	                           138    62     2    71    66    73    68     2    73    32 
+	                            24    36    52    83 
+	00056: PUSHW[1]            -32 
+	00059: NPUSHB       (9):    24    36    52    77    32    24    36    52    79 
+	00070: PUSHW[1]            -32 
+	00073: NPUSHB       (9):    24    36    52    85    42    24    36    52    95 
+	00084: PUSHW[1]            -32 
+	00087: NPUSHB       (9):    24    36    52    89    32    24    36    52    91 
+	00098: PUSHW[1]            -32 
+	00101: NPUSHB      (96):    24    36    52    51    62    81    87    38    37    49 
+	                            45    44    42     6    47    40    40    44    38    37 
+	                            45    47     6    49    42    37    38    38    32    44 
+	                            45    20    44    44    45   191    47     1    47    47 
+	                            57     0    40     1   176    40     1   128    40   144 
+	                            40     2    40    40    31    57    49    49    96    42 
+	                            42    97    96    81    98    87    87    57    75    98 
+	                            64    67     1    47    67    63    67    79    67     3 
+	                            67    67    93    98    57    11    28    28     1    24 
+	                            98     3     3     9    31    14 
+	00199: PUSHW[1]            -64 
+	00202: NPUSHB      (23):    13    16    52    14    14    18    98    64     9     1 
+	                            32     9    48     9     2     0     9    16     9     2 
+	                             9     9     0 
+	00227: PUSHW[1]            686 
+	00230: NPUSHB      (45):    31     5    51    72    62    78    33   223    64     1 
+	                            64    64    90    33    60    60    54    72    33   208 
+	                            70     1    70    70    84    33    54    54    97     0 
+	                             1    91    30    30    12    15    34     1    34    34 
+	                            21    33     6     6    12 
+	00277: MDAP[rd]   
+	00278: SHP[rp1,zp0] 
+	00279: MDAP[rd]   
+	00280: MIRP[nrp0,md,rd,1] 
+	00281: SHP[rp1,zp0] 
+	00282: MDAP[rd]   
+	00283: DELTAP1    
+	00284: SRP1       
+	00285: SHP[rp1,zp0] 
+	00286: MDAP[rd]   
+	00287: MIRP[srp0,md,rd,1] 
+	00288: ALIGNRP    
+	00289: SRP1       
+	00290: SHP[rp1,zp0] 
+	00291: MDAP[rd]   
+	00292: MIRP[nrp0,md,rd,1] 
+	00293: IP         
+	00294: MDAP[rd]   
+	00295: DELTAP3    
+	00296: MIRP[nrp0,md,rd,1] 
+	00297: SRP1       
+	00298: SHP[rp1,zp0] 
+	00299: MDAP[rd]   
+	00300: MIRP[nrp0,md,rd,1] 
+	00301: IP         
+	00302: MDAP[rd]   
+	00303: DELTAP3    
+	00304: MIRP[srp0,md,rd,1] 
+	00305: SHP[rp2,zp1] 
+	00306: SRP1       
+	00307: SHP[rp1,zp0] 
+	00308: SVTCA[y-axis] 
+	00309: MIAP[rd+ci] 
+	00310: MIRP[nrp0,md,rd,1] 
+	00311: SHP[rp1,zp0] 
+	00312: MDAP[rd]   
+	00313: DELTAP1    
+	00314: DELTAP1    
+	00315: DELTAP1    
+	00316: MIRP[srp0,md,rd,1] 
+	00317: SHP[rp2,zp1] 
+	00318: MDAP[rd]   
+	00319: CALL       
+	00320: SRP1       
+	00321: SRP2       
+	00322: IP         
+	00323: MDAP[rd]   
+	00324: MIRP[nrp0,md,rd,1] 
+	00325: IP         
+	00326: SHP[rp2,zp1] 
+	00327: MDAP[rd]   
+	00328: MIAP[rd+ci] 
+	00329: MIRP[nrp0,md,rd,1] 
+	00330: SHP[rp1,zp0] 
+	00331: MDAP[rd]   
+	00332: DELTAP1    
+	00333: DELTAP2    
+	00334: MIRP[nrp0,md,rd,1] 
+	00335: SRP2       
+	00336: IP         
+	00337: MDAP[rd]   
+	00338: MIRP[nrp0,md,rd,1] 
+	00339: SVTCA[x-axis] 
+	00340: SRP1       
+	00341: SRP2       
+	00342: IP         
+	00343: MDAP[rd]   
+	00344: SRP1       
+	00345: IP         
+	00346: MDAP[rd]   
+	00347: SVTCA[y-axis] 
+	00348: SRP1       
+	00349: SRP2       
+	00350: IP         
+	00351: MDAP[rd]   
+	00352: DELTAP1    
+	00353: DELTAP1    
+	00354: DELTAP2    
+	00355: SRP1       
+	00356: IP         
+	00357: MDAP[rd]   
+	00358: DELTAP1    
+	00359: SDPVTL[1]  
+	00360: SFVTPV     
+	00361: MDAP[nrd]  
+	00362: CALL       
+	00363: SFVTPV     
+	00364: RDTG       
+	00365: SRP0       
+	00366: MDRP[nrp0,nmd,rd,0] 
+	00367: SVTCA[x-axis] 
+	00368: SRP1       
+	00369: SRP2       
+	00370: SLOOP      
+	00371: IP         
+	00372: SVTCA[y-axis] 
+	00373: SRP1       
+	00374: SRP2       
+	00375: SLOOP      
+	00376: IP         
+	00377: SRP1       
+	00378: SRP2       
+	00379: IP         
+	00380: IP         
+	00381: IUP[y]     
+	00382: IUP[x]     
+	00383: SVTCA[y-axis] 
+	00384: CALL       
+	00385: CALL       
+	00386: CALL       
+	00387: CALL       
+	00388: CALL       
+	00389: CALL       
+	00390: CALL       
+	00391: CALL       
+	00392: SVTCA[x-axis] 
+	00393: DELTAP2    
+	00394: DELTAP2    
+	00395: DELTAP1    
+	00396: DELTAP1    
+	00397: DELTAP1    
+	00398: DELTAP1    
+	00399: DELTAP1    
+	00400: SVTCA[y-axis] 
+	00401: DELTAP1    
+	00402: DELTAP2    
+	00403: SVTCA[x-axis] 
+	00404: DELTAP3    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:                      Y-Short X-Short On
+	 27:                      Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:        XDual                         On
+	 32:  YDual                               On
+	 33:  YDual XDual                 X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:  YDual                       X-Short On
+	 37:                                      On
+	 38:                                      On
+	 39:                      Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual XDual         Y-Short X-Short On
+	 45:                                      On
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short Off
+	 49:        XDual         Y-Short         On
+	 50:        XDual         Y-Short         Off
+	 51:                              X-Short On
+	 52:        XDual         Y-Short X-Short On
+	 53:        XDual         Y-Short X-Short Off
+	 54:        XDual         Y-Short         On
+	 55:        XDual         Y-Short         Off
+	 56:                      Y-Short X-Short Off
+	 57:  YDual                       X-Short On
+	 58:  YDual                       X-Short Off
+	 59:  YDual               Y-Short X-Short Off
+	 60:  YDual XDual         Y-Short         On
+	 61:  YDual XDual         Y-Short         Off
+	 62:  YDual XDual         Y-Short X-Short On
+	 63:  YDual               Y-Short X-Short Off
+	 64:  YDual XDual         Y-Short         On
+	 65:  YDual XDual         Y-Short         Off
+	 66:  YDual XDual         Y-Short X-Short Off
+	 67:  YDual XDual                 X-Short On
+	 68:  YDual XDual                 X-Short Off
+	 69:        XDual         Y-Short X-Short Off
+	 70:        XDual         Y-Short         On
+	 71:        XDual         Y-Short         Off
+	 72:  YDual               Y-Short X-Short On
+	 73:  YDual XDual         Y-Short         Off
+	 74:  YDual               Y-Short X-Short Off
+	 75:  YDual                       X-Short On
+	 76:  YDual                       X-Short Off
+	 77:                      Y-Short X-Short Off
+	 78:        XDual         Y-Short         On
+	 79:        XDual         Y-Short         Off
+	 80:        XDual         Y-Short X-Short Off
+	 81:  YDual XDual                 X-Short On
+	 82:  YDual XDual                 X-Short Off
+	 83:  YDual XDual         Y-Short X-Short Off
+	 84:        XDual         Y-Short X-Short On
+	 85:  YDual XDual         Y-Short         Off
+	 86:  YDual               Y-Short X-Short Off
+	 87:  YDual                       X-Short On
+	 88:  YDual                       X-Short Off
+	 89:                      Y-Short X-Short Off
+	 90:        XDual         Y-Short         On
+	 91:        XDual         Y-Short         Off
+	 92:        XDual         Y-Short X-Short Off
+	 93:  YDual XDual                 X-Short On
+	 94:  YDual XDual                 X-Short Off
+	 95:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   145,  1213)  ->  Abs (   145,  1213)
+	  1: Rel (     0,  -191)  ->  Abs (   145,  1022)
+	  2: Rel (    70,    26)  ->  Abs (   215,  1048)
+	  3: Rel (    76,     0)  ->  Abs (   291,  1048)
+	  4: Rel (   105,     0)  ->  Abs (   396,  1048)
+	  5: Rel (   128,  -122)  ->  Abs (   524,   926)
+	  6: Rel (     0,   -90)  ->  Abs (   524,   836)
+	  7: Rel (     0,  -100)  ->  Abs (   524,   736)
+	  8: Rel (  -145,  -135)  ->  Abs (   379,   601)
+	  9: Rel (  -115,     0)  ->  Abs (   264,   601)
+	 10: Rel (   -99,     0)  ->  Abs (   165,   601)
+	 11: Rel (  -154,    89)  ->  Abs (    11,   690)
+	 12: Rel (     0,    19)  ->  Abs (    11,   709)
+	 13: Rel (     0,    29)  ->  Abs (    11,   738)
+	 14: Rel (    35,     0)  ->  Abs (    46,   738)
+	 15: Rel (    16,     0)  ->  Abs (    62,   738)
+	 16: Rel (    26,   -20)  ->  Abs (    88,   718)
+	 17: Rel (    79,   -61)  ->  Abs (   167,   657)
+	 18: Rel (    96,     0)  ->  Abs (   263,   657)
+	 19: Rel (    88,     0)  ->  Abs (   351,   657)
+	 20: Rel (    99,   106)  ->  Abs (   450,   763)
+	 21: Rel (     0,    75)  ->  Abs (   450,   838)
+	 22: Rel (     0,    66)  ->  Abs (   450,   904)
+	 23: Rel (   -87,    88)  ->  Abs (   363,   992)
+	 24: Rel (   -76,     0)  ->  Abs (   287,   992)
+	 25: Rel (   -71,     0)  ->  Abs (   216,   992)
+	 26: Rel (   -79,   -35)  ->  Abs (   137,   957)
+	 27: Rel (   -18,    -8)  ->  Abs (   119,   949)
+	 28: Rel (   -12,     0)  ->  Abs (   107,   949)
+	 29: Rel (   -36,     0)  ->  Abs (    71,   949)
+	 30: Rel (     0,    30)  ->  Abs (    71,   979)
+	 31: Rel (     0,   290)  ->  Abs (    71,  1269)
+	 32: Rel (   358,     0)  ->  Abs (   429,  1269)
+	 33: Rel (    46,     0)  ->  Abs (   475,  1269)
+	 34: Rel (     0,   -28)  ->  Abs (   475,  1241)
+	 35: Rel (     0,   -28)  ->  Abs (   475,  1213)
+	 36: Rel (   -46,     0)  ->  Abs (   429,  1213)
+	 37: Rel (   663,  -320)  ->  Abs (  1092,   893)
+	 38: Rel (  -915,  -590)  ->  Abs (   177,   303)
+	 39: Rel (   -23,   -14)  ->  Abs (   154,   289)
+	 40: Rel (   -11,     0)  ->  Abs (   143,   289)
+	 41: Rel (   -43,     0)  ->  Abs (   100,   289)
+	 42: Rel (     0,    42)  ->  Abs (   100,   331)
+	 43: Rel (     0,    23)  ->  Abs (   100,   354)
+	 44: Rel (    31,    20)  ->  Abs (   131,   374)
+	 45: Rel (   915,   590)  ->  Abs (  1046,   964)
+	 46: Rel (    23,    14)  ->  Abs (  1069,   978)
+	 47: Rel (    12,     0)  ->  Abs (  1081,   978)
+	 48: Rel (    42,     0)  ->  Abs (  1123,   978)
+	 49: Rel (     0,   -42)  ->  Abs (  1123,   936)
+	 50: Rel (     0,   -23)  ->  Abs (  1123,   913)
+	 51: Rel (   -31,  -574)  ->  Abs (  1092,   339)
+	 52: Rel (     2,    -1)  ->  Abs (  1094,   338)
+	 53: Rel (   118,   -52)  ->  Abs (  1212,   286)
+	 54: Rel (     0,  -108)  ->  Abs (  1212,   178)
+	 55: Rel (     0,   -79)  ->  Abs (  1212,    99)
+	 56: Rel (  -142,  -114)  ->  Abs (  1070,   -15)
+	 57: Rel (   -97,     0)  ->  Abs (   973,   -15)
+	 58: Rel (   -96,     0)  ->  Abs (   877,   -15)
+	 59: Rel (  -143,   113)  ->  Abs (   734,    98)
+	 60: Rel (     0,    80)  ->  Abs (   734,   178)
+	 61: Rel (     0,   105)  ->  Abs (   734,   283)
+	 62: Rel (   120,    56)  ->  Abs (   854,   339)
+	 63: Rel (  -107,    56)  ->  Abs (   747,   395)
+	 64: Rel (     0,    91)  ->  Abs (   747,   486)
+	 65: Rel (     0,    72)  ->  Abs (   747,   558)
+	 66: Rel (   133,   110)  ->  Abs (   880,   668)
+	 67: Rel (    93,     0)  ->  Abs (   973,   668)
+	 68: Rel (    94,     0)  ->  Abs (  1067,   668)
+	 69: Rel (   132,  -109)  ->  Abs (  1199,   559)
+	 70: Rel (     0,   -73)  ->  Abs (  1199,   486)
+	 71: Rel (     0,   -93)  ->  Abs (  1199,   393)
+	 72: Rel (   -74,    91)  ->  Abs (  1125,   484)
+	 73: Rel (     0,    52)  ->  Abs (  1125,   536)
+	 74: Rel (   -87,    76)  ->  Abs (  1038,   612)
+	 75: Rel (   -65,     0)  ->  Abs (   973,   612)
+	 76: Rel (   -62,     0)  ->  Abs (   911,   612)
+	 77: Rel (   -90,   -73)  ->  Abs (   821,   539)
+	 78: Rel (     0,   -55)  ->  Abs (   821,   484)
+	 79: Rel (     0,   -49)  ->  Abs (   821,   435)
+	 80: Rel (    89,   -69)  ->  Abs (   910,   366)
+	 81: Rel (    63,     0)  ->  Abs (   973,   366)
+	 82: Rel (    58,     0)  ->  Abs (  1031,   366)
+	 83: Rel (    94,    66)  ->  Abs (  1125,   432)
+	 84: Rel (    13,  -254)  ->  Abs (  1138,   178)
+	 85: Rel (     0,    46)  ->  Abs (  1138,   224)
+	 86: Rel (   -84,    87)  ->  Abs (  1054,   311)
+	 87: Rel (   -81,     0)  ->  Abs (   973,   311)
+	 88: Rel (   -72,     0)  ->  Abs (   901,   311)
+	 89: Rel (   -93,   -80)  ->  Abs (   808,   231)
+	 90: Rel (     0,   -53)  ->  Abs (   808,   178)
+	 91: Rel (     0,   -55)  ->  Abs (   808,   123)
+	 92: Rel (    94,   -82)  ->  Abs (   902,    41)
+	 93: Rel (    71,     0)  ->  Abs (   973,    41)
+	 94: Rel (    72,     0)  ->  Abs (  1045,    41)
+	 95: Rel (    93,    83)  ->  Abs (  1138,   124)
+
+	Glyph 492: off = 0x00019C8C, len = 598
+	  numberOfContours:	5
+	  xMin:			27
+	  yMin:			-15
+	  xMax:			1213
+	  yMax:			1269
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  33
+	  2:  53
+	  3:  65
+	  4:  77
+
+	  Length of Instructions:	378
+	00000: NPUSHB      (49):   214    58     1    73    37    73    41     2   119    38 
+	                           121    41   119    50     3   103    50   135    50     2 
+	                            16    44   103    38     2    31    34     1    15    34 
+	                             0    44     2   133    34   138    44     2    71    48 
+	                            73    50     2    55    32    24    36    52    65 
+	00051: PUSHW[1]            -32 
+	00054: NPUSHB       (9):    24    36    52    59    32    24    36    52    61 
+	00065: PUSHW[1]            -32 
+	00068: NPUSHB       (9):    24    36    52    67    42    24    36    52    77 
+	00079: PUSHW[1]            -32 
+	00082: NPUSHB       (9):    24    36    52    71    32    24    36    52    73 
+	00093: PUSHW[1]            -32 
+	00096: NPUSHB      (42):    24    36    52    34    44    63    69    21    20    32 
+	                            28    27    25     6    30    23    23    27    21    20 
+	                            28    30     6    32    25     0    10    19    18    17 
+	                            16    15    14    12    11    10    13     2     9    10 
+	                            11    11 
+	00140: PUSHW[1]            295 
+	00143: NPUSHB     (107):    15     0    20    15    15     0    20    21    21    32 
+	                            27    28    20    27    27    28    30    30    39   208 
+	                            23     1   144    23     1    23    23     8    39    15 
+	                            32     1    32    32    78    25    25    79    78    63 
+	                            98    69    69    39    57    98    64    49     1    47 
+	                            49    63    49    79    49     3    49    49    75    98 
+	                            39    11    13    13     8     5     5     2    98     8 
+	                             5    34    54    44    60    33   223    46     1    46 
+	                            46    72    33    42    42    36    54    33   208    52 
+	                             1    52    52    66    33    36    36    79    10     0 
+	                             0    11    15    15     3    98     7 
+	00252: MDAP[rd]   
+	00253: MIRP[nrp0,md,rd,1] 
+	00254: SHP[rp1,zp0] 
+	00255: MDAP[rd]   
+	00256: SHP[rp1,zp0] 
+	00257: SHP[rp1,zp0] 
+	00258: MDAP[rd]   
+	00259: SHP[rp1,zp0] 
+	00260: SRP1       
+	00261: SHP[rp1,zp0] 
+	00262: MDAP[rd]   
+	00263: MIRP[nrp0,md,rd,1] 
+	00264: IP         
+	00265: MDAP[rd]   
+	00266: DELTAP3    
+	00267: MIRP[nrp0,md,rd,1] 
+	00268: SRP1       
+	00269: SHP[rp1,zp0] 
+	00270: MDAP[rd]   
+	00271: MIRP[nrp0,md,rd,1] 
+	00272: IP         
+	00273: MDAP[rd]   
+	00274: DELTAP3    
+	00275: MIRP[srp0,md,rd,1] 
+	00276: SHP[rp2,zp1] 
+	00277: SRP1       
+	00278: SHP[rp1,zp0] 
+	00279: SVTCA[y-axis] 
+	00280: MIAP[rd+ci] 
+	00281: MIRP[srp0,md,rd,1] 
+	00282: SHP[rp2,zp1] 
+	00283: MDAP[rd]   
+	00284: SRP1       
+	00285: SHP[rp1,zp0] 
+	00286: MDAP[rd]   
+	00287: MIAP[rd+ci] 
+	00288: MIRP[nrp0,md,rd,1] 
+	00289: SHP[rp1,zp0] 
+	00290: MDAP[rd]   
+	00291: DELTAP1    
+	00292: DELTAP2    
+	00293: MIRP[nrp0,md,rd,1] 
+	00294: SRP2       
+	00295: IP         
+	00296: MDAP[rd]   
+	00297: MIRP[nrp0,md,rd,1] 
+	00298: SVTCA[x-axis] 
+	00299: SRP1       
+	00300: SRP2       
+	00301: IP         
+	00302: MDAP[rd]   
+	00303: SRP1       
+	00304: IP         
+	00305: MDAP[rd]   
+	00306: DELTAP1    
+	00307: SVTCA[y-axis] 
+	00308: SRP1       
+	00309: SRP2       
+	00310: IP         
+	00311: MDAP[rd]   
+	00312: DELTAP1    
+	00313: DELTAP2    
+	00314: SRP1       
+	00315: IP         
+	00316: MDAP[rd]   
+	00317: SDPVTL[1]  
+	00318: SFVTPV     
+	00319: MDAP[nrd]  
+	00320: CALL       
+	00321: SFVTPV     
+	00322: RDTG       
+	00323: SRP0       
+	00324: MDRP[nrp0,nmd,rd,0] 
+	00325: SDPVTL[1]  
+	00326: SFVTPV     
+	00327: MDAP[nrd]  
+	00328: RTG        
+	00329: CALL       
+	00330: SFVTPV     
+	00331: RDTG       
+	00332: SRP0       
+	00333: MDRP[nrp0,nmd,rd,0] 
+	00334: SVTCA[x-axis] 
+	00335: SHP[rp2,zp1] 
+	00336: SVTCA[y-axis] 
+	00337: SRP1       
+	00338: SRP2       
+	00339: SLOOP      
+	00340: IP         
+	00341: SVTCA[x-axis] 
+	00342: SRP1       
+	00343: SRP2       
+	00344: SLOOP      
+	00345: IP         
+	00346: SVTCA[y-axis] 
+	00347: SRP1       
+	00348: SRP2       
+	00349: SLOOP      
+	00350: IP         
+	00351: SRP1       
+	00352: SRP2       
+	00353: IP         
+	00354: IP         
+	00355: IUP[y]     
+	00356: IUP[x]     
+	00357: SVTCA[y-axis] 
+	00358: CALL       
+	00359: CALL       
+	00360: CALL       
+	00361: CALL       
+	00362: CALL       
+	00363: CALL       
+	00364: CALL       
+	00365: CALL       
+	00366: SVTCA[x-axis] 
+	00367: DELTAP2    
+	00368: DELTAP2    
+	00369: DELTAP1    
+	00370: DELTAP1    
+	00371: DELTAP1    
+	00372: DELTAP1    
+	00373: DELTAP1    
+	00374: SVTCA[y-axis] 
+	00375: DELTAP2    
+	00376: SVTCA[x-axis] 
+	00377: DELTAP3    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual                               On
+	 10:        XDual         Y-Short         On
+	 11:                              X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual               Y-Short         On
+	 21:                                      On
+	 22:                      Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:                                      On
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:        XDual                 X-Short On
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual XDual         Y-Short X-Short On
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short         On
+	 47:  YDual XDual         Y-Short         Off
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:        XDual         Y-Short X-Short Off
+	 52:        XDual         Y-Short         On
+	 53:        XDual         Y-Short         Off
+	 54:  YDual               Y-Short X-Short On
+	 55:  YDual XDual         Y-Short         Off
+	 56:  YDual               Y-Short X-Short Off
+	 57:  YDual                       X-Short On
+	 58:  YDual                       X-Short Off
+	 59:                      Y-Short X-Short Off
+	 60:        XDual         Y-Short         On
+	 61:        XDual         Y-Short         Off
+	 62:        XDual         Y-Short X-Short Off
+	 63:  YDual XDual                 X-Short On
+	 64:  YDual XDual                 X-Short Off
+	 65:  YDual XDual         Y-Short X-Short Off
+	 66:        XDual                 X-Short On
+	 67:  YDual XDual         Y-Short         Off
+	 68:  YDual               Y-Short X-Short Off
+	 69:  YDual                       X-Short On
+	 70:  YDual                       X-Short Off
+	 71:                      Y-Short X-Short Off
+	 72:        XDual         Y-Short         On
+	 73:        XDual         Y-Short         Off
+	 74:        XDual         Y-Short X-Short Off
+	 75:  YDual XDual                 X-Short On
+	 76:  YDual XDual                 X-Short Off
+	 77:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   432,  1200)  ->  Abs (   432,  1200)
+	  1: Rel (     0,    13)  ->  Abs (   432,  1213)
+	  2: Rel (  -331,     0)  ->  Abs (   101,  1213)
+	  3: Rel (     0,   -31)  ->  Abs (   101,  1182)
+	  4: Rel (     0,   -35)  ->  Abs (   101,  1147)
+	  5: Rel (   -37,     0)  ->  Abs (    64,  1147)
+	  6: Rel (   -37,     0)  ->  Abs (    27,  1147)
+	  7: Rel (     0,    35)  ->  Abs (    27,  1182)
+	  8: Rel (     0,    87)  ->  Abs (    27,  1269)
+	  9: Rel (   479,     0)  ->  Abs (   506,  1269)
+	 10: Rel (     0,   -74)  ->  Abs (   506,  1195)
+	 11: Rel (  -201,  -555)  ->  Abs (   305,   640)
+	 12: Rel (    -9,   -24)  ->  Abs (   296,   616)
+	 13: Rel (   -28,     0)  ->  Abs (   268,   616)
+	 14: Rel (   -36,     0)  ->  Abs (   232,   616)
+	 15: Rel (     0,    26)  ->  Abs (   232,   642)
+	 16: Rel (     0,     7)  ->  Abs (   232,   649)
+	 17: Rel (     3,     7)  ->  Abs (   235,   656)
+	 18: Rel (     1,     3)  ->  Abs (   236,   659)
+	 19: Rel (     1,     2)  ->  Abs (   237,   661)
+	 20: Rel (   815,   232)  ->  Abs (  1052,   893)
+	 21: Rel (  -915,  -590)  ->  Abs (   137,   303)
+	 22: Rel (   -22,   -14)  ->  Abs (   115,   289)
+	 23: Rel (   -12,     0)  ->  Abs (   103,   289)
+	 24: Rel (   -43,     0)  ->  Abs (    60,   289)
+	 25: Rel (     0,    42)  ->  Abs (    60,   331)
+	 26: Rel (     0,    23)  ->  Abs (    60,   354)
+	 27: Rel (    31,    20)  ->  Abs (    91,   374)
+	 28: Rel (   916,   590)  ->  Abs (  1007,   964)
+	 29: Rel (    22,    14)  ->  Abs (  1029,   978)
+	 30: Rel (    12,     0)  ->  Abs (  1041,   978)
+	 31: Rel (    43,     0)  ->  Abs (  1084,   978)
+	 32: Rel (     0,   -42)  ->  Abs (  1084,   936)
+	 33: Rel (     0,   -23)  ->  Abs (  1084,   913)
+	 34: Rel (    10,  -574)  ->  Abs (  1094,   339)
+	 35: Rel (   119,   -55)  ->  Abs (  1213,   284)
+	 36: Rel (     0,  -106)  ->  Abs (  1213,   178)
+	 37: Rel (     0,   -80)  ->  Abs (  1213,    98)
+	 38: Rel (  -142,  -113)  ->  Abs (  1071,   -15)
+	 39: Rel (   -96,     0)  ->  Abs (   975,   -15)
+	 40: Rel (   -97,     0)  ->  Abs (   878,   -15)
+	 41: Rel (  -142,   113)  ->  Abs (   736,    98)
+	 42: Rel (     0,    80)  ->  Abs (   736,   178)
+	 43: Rel (     0,   108)  ->  Abs (   736,   286)
+	 44: Rel (   119,    53)  ->  Abs (   855,   339)
+	 45: Rel (  -107,    56)  ->  Abs (   748,   395)
+	 46: Rel (     0,    91)  ->  Abs (   748,   486)
+	 47: Rel (     0,    72)  ->  Abs (   748,   558)
+	 48: Rel (   133,   110)  ->  Abs (   881,   668)
+	 49: Rel (    94,     0)  ->  Abs (   975,   668)
+	 50: Rel (    93,     0)  ->  Abs (  1068,   668)
+	 51: Rel (   133,  -109)  ->  Abs (  1201,   559)
+	 52: Rel (     0,   -73)  ->  Abs (  1201,   486)
+	 53: Rel (     0,   -93)  ->  Abs (  1201,   393)
+	 54: Rel (   -75,    91)  ->  Abs (  1126,   484)
+	 55: Rel (     0,    52)  ->  Abs (  1126,   536)
+	 56: Rel (   -87,    76)  ->  Abs (  1039,   612)
+	 57: Rel (   -65,     0)  ->  Abs (   974,   612)
+	 58: Rel (   -61,     0)  ->  Abs (   913,   612)
+	 59: Rel (   -91,   -73)  ->  Abs (   822,   539)
+	 60: Rel (     0,   -55)  ->  Abs (   822,   484)
+	 61: Rel (     0,   -50)  ->  Abs (   822,   434)
+	 62: Rel (    92,   -68)  ->  Abs (   914,   366)
+	 63: Rel (    60,     0)  ->  Abs (   974,   366)
+	 64: Rel (    61,     0)  ->  Abs (  1035,   366)
+	 65: Rel (    91,    68)  ->  Abs (  1126,   434)
+	 66: Rel (    13,  -256)  ->  Abs (  1139,   178)
+	 67: Rel (     0,    46)  ->  Abs (  1139,   224)
+	 68: Rel (   -84,    87)  ->  Abs (  1055,   311)
+	 69: Rel (   -80,     0)  ->  Abs (   975,   311)
+	 70: Rel (   -72,     0)  ->  Abs (   903,   311)
+	 71: Rel (   -93,   -80)  ->  Abs (   810,   231)
+	 72: Rel (     0,   -53)  ->  Abs (   810,   178)
+	 73: Rel (     0,   -55)  ->  Abs (   810,   123)
+	 74: Rel (    94,   -82)  ->  Abs (   904,    41)
+	 75: Rel (    70,     0)  ->  Abs (   974,    41)
+	 76: Rel (    72,     0)  ->  Abs (  1046,    41)
+	 77: Rel (    93,    83)  ->  Abs (  1139,   124)
+
+	Glyph 493: off = 0x00019EE2, len = 138
+	  numberOfContours:	1
+	  xMin:			520
+	  yMin:			-441
+	  xMax:			709
+	  yMax:			-109
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	81
+	00000: NPUSHB      (12):   137    17     1   138    16     1    16    64     9    16 
+	                            52    10 
+	00014: PUSHW[1]            -64 
+	00017: NPUSHB      (21):     9    16    52   128    12     1    12    12   143     1 
+	                             1     1     1     0     7     1     7     0     9     3 
+	                            14 
+	00040: PUSHW[1]            -64 
+	00043: NPUSHB       (9):     9    16    52    14    14     3     9     9     3 
+	00054: MDAP[rd]   
+	00055: SHP[rp1,zp0] 
+	00056: MDAP[rd]   
+	00057: SRP1       
+	00058: SHP[rp1,zp0] 
+	00059: MDAP[rd]   
+	00060: CALL       
+	00061: SRP1       
+	00062: SRP2       
+	00063: IP         
+	00064: SVTCA[y-axis] 
+	00065: MDAP[rd]   
+	00066: DELTAP1    
+	00067: SHP[rp1,zp0] 
+	00068: MDAP[rd]   
+	00069: DELTAP2    
+	00070: SHP[rp1,zp0] 
+	00071: MDAP[rd]   
+	00072: DELTAP1    
+	00073: IUP[y]     
+	00074: IUP[x]     
+	00075: SVTCA[y-axis] 
+	00076: CALL       
+	00077: CALL       
+	00078: SVTCA[x-axis] 
+	00079: DELTAP1    
+	00080: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   624,  -268)  ->  Abs (   624,  -268)
+	  1: Rel (   -24,     0)  ->  Abs (   600,  -268)
+	  2: Rel (   -80,     0)  ->  Abs (   520,  -268)
+	  3: Rel (     0,    77)  ->  Abs (   520,  -191)
+	  4: Rel (     0,    35)  ->  Abs (   520,  -156)
+	  5: Rel (    43,    47)  ->  Abs (   563,  -109)
+	  6: Rel (    37,     0)  ->  Abs (   600,  -109)
+	  7: Rel (    30,     0)  ->  Abs (   630,  -109)
+	  8: Rel (    79,     0)  ->  Abs (   709,  -109)
+	  9: Rel (     0,   -84)  ->  Abs (   709,  -193)
+	 10: Rel (     0,   -75)  ->  Abs (   709,  -268)
+	 11: Rel (  -121,  -173)  ->  Abs (   588,  -441)
+	 12: Rel (   -27,     0)  ->  Abs (   561,  -441)
+	 13: Rel (   -36,     0)  ->  Abs (   525,  -441)
+	 14: Rel (     0,    30)  ->  Abs (   525,  -411)
+	 15: Rel (     0,    16)  ->  Abs (   525,  -395)
+	 16: Rel (    30,    31)  ->  Abs (   555,  -364)
+	 17: Rel (    59,    62)  ->  Abs (   614,  -302)
+
+	Glyph 494: off = 0x00019F6C, len = 148
+	  numberOfContours:	1
+	  xMin:			468
+	  yMin:			-333
+	  xMax:			763
+	  yMax:			-101
+
+	EndPoints
+	---------
+	  0:  22
+
+	  Length of Instructions:	79
+	00000: PUSHB[5]             10    10    14     5     5 
+	00006: PUSHW[1]            803 
+	00009: NPUSHB      (20):     0    14    16    14    32    14     3    16    14    80 
+	                            14     2    14    64    10    17    52    14    14    19 
+	00031: PUSHW[1]            803 
+	00034: PUSHB[8]              0     0     1     0    21    21     8    17 
+	00043: PUSHW[1]            803 
+	00046: PUSHB[8]             15     2    31     2     2     2     2     8 
+	00055: MDAP[rd]   
+	00056: SHP[rp1,zp0] 
+	00057: MDAP[rd]   
+	00058: DELTAP1    
+	00059: MIRP[nrp0,md,rd,1] 
+	00060: SRP2       
+	00061: IP         
+	00062: MDAP[rd]   
+	00063: SVTCA[y-axis] 
+	00064: MDAP[rd]   
+	00065: DELTAP1    
+	00066: MIRP[srp0,md,rd,1] 
+	00067: SHP[rp2,zp1] 
+	00068: MDAP[rd]   
+	00069: CALL       
+	00070: DELTAP3    
+	00071: DELTAP2    
+	00072: MIRP[srp0,md,rd,1] 
+	00073: MDAP[rd]   
+	00074: SRP1       
+	00075: SHP[rp1,zp0] 
+	00076: MDAP[rd]   
+	00077: IUP[y]     
+	00078: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:        XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual               Y-Short X-Short On
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   601,  -101)  ->  Abs (   601,  -101)
+	  1: Rel (   162,     0)  ->  Abs (   763,  -101)
+	  2: Rel (     0,  -115)  ->  Abs (   763,  -216)
+	  3: Rel (     0,   -47)  ->  Abs (   763,  -263)
+	  4: Rel (   -72,   -70)  ->  Abs (   691,  -333)
+	  5: Rel (   -71,     0)  ->  Abs (   620,  -333)
+	  6: Rel (   -40,     0)  ->  Abs (   580,  -333)
+	  7: Rel (  -112,    30)  ->  Abs (   468,  -303)
+	  8: Rel (     0,    32)  ->  Abs (   468,  -271)
+	  9: Rel (     0,    29)  ->  Abs (   468,  -242)
+	 10: Rel (    27,     0)  ->  Abs (   495,  -242)
+	 11: Rel (    10,     0)  ->  Abs (   505,  -242)
+	 12: Rel (    25,   -11)  ->  Abs (   530,  -253)
+	 13: Rel (    46,   -20)  ->  Abs (   576,  -273)
+	 14: Rel (    43,     0)  ->  Abs (   619,  -273)
+	 15: Rel (    35,     0)  ->  Abs (   654,  -273)
+	 16: Rel (    49,    33)  ->  Abs (   703,  -240)
+	 17: Rel (     0,    26)  ->  Abs (   703,  -214)
+	 18: Rel (     0,    48)  ->  Abs (   703,  -166)
+	 19: Rel (   -92,     3)  ->  Abs (   611,  -163)
+	 20: Rel (   -54,     2)  ->  Abs (   557,  -161)
+	 21: Rel (     0,    29)  ->  Abs (   557,  -132)
+	 22: Rel (     0,    31)  ->  Abs (   557,  -101)
+
+	Glyph 495: off = 0x0001A000, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			443
+	  yMin:			1021
+	  xMax:			785
+	  yMax:			1329
+
+	     0: Flags:		0x0216
+		Glyf Index:	141
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 496: off = 0x0001A010, len = 208
+	  numberOfContours:	3
+	  xMin:			264
+	  yMin:			1021
+	  xMax:			964
+	  yMax:			1329
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  25
+	  2:  37
+
+	  Length of Instructions:	94
+	00000: NPUSHB      (22):     1     7     0     8     4    10     3     7     1     8 
+	                             0     4    12     5   111    10   127    10   143    10 
+	                             3    10 
+	00024: PUSHW[1]            498 
+	00027: NPUSHB      (18):     3   128     3    29    17   112    35    23     3    26 
+	                           112    32    32    12    20   112    14    14 
+	00047: PUSHW[7]            272    12   503     5   163   336    24 
+	00062: CALL       
+	00063: MDAP[rd]   
+	00064: MIRP[nrp0,md,rd,1] 
+	00065: MIRP[srp0,md,rd,2] 
+	00066: MDAP[rd]   
+	00067: MIRP[nrp0,md,rd,1] 
+	00068: SRP1       
+	00069: SHP[rp1,zp0] 
+	00070: MDAP[rd]   
+	00071: MIRP[nrp0,md,rd,1] 
+	00072: SVTCA[y-axis] 
+	00073: MIAP[rd+ci] 
+	00074: ALIGNRP    
+	00075: MIRP[srp0,md,rd,1] 
+	00076: ALIGNRP    
+	00077: ALIGNRP    
+	00078: SMD        
+	00079: SRP0       
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: DELTAP1    
+	00082: SVTCA[x-axis] 
+	00083: SRP1       
+	00084: SRP2       
+	00085: SLOOP      
+	00086: IP         
+	00087: SVTCA[y-axis] 
+	00088: SRP1       
+	00089: SRP2       
+	00090: SLOOP      
+	00091: IP         
+	00092: IUP[y]     
+	00093: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:                      Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:                      Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   811,  1245)  ->  Abs (   811,  1245)
+	  1: Rel (  -236,  -204)  ->  Abs (   575,  1041)
+	  2: Rel (   -23,   -20)  ->  Abs (   552,  1021)
+	  3: Rel (   -15,     0)  ->  Abs (   537,  1021)
+	  4: Rel (   -43,     0)  ->  Abs (   494,  1021)
+	  5: Rel (     0,    43)  ->  Abs (   494,  1064)
+	  6: Rel (     0,    19)  ->  Abs (   494,  1083)
+	  7: Rel (    25,    22)  ->  Abs (   519,  1105)
+	  8: Rel (   237,   204)  ->  Abs (   756,  1309)
+	  9: Rel (    22,    20)  ->  Abs (   778,  1329)
+	 10: Rel (    16,     0)  ->  Abs (   794,  1329)
+	 11: Rel (    42,     0)  ->  Abs (   836,  1329)
+	 12: Rel (     0,   -43)  ->  Abs (   836,  1286)
+	 13: Rel (     0,   -19)  ->  Abs (   836,  1267)
+	 14: Rel (  -409,  -164)  ->  Abs (   427,  1103)
+	 15: Rel (     0,   -33)  ->  Abs (   427,  1070)
+	 16: Rel (   -47,   -49)  ->  Abs (   380,  1021)
+	 17: Rel (   -35,     0)  ->  Abs (   345,  1021)
+	 18: Rel (   -34,     0)  ->  Abs (   311,  1021)
+	 19: Rel (   -47,    48)  ->  Abs (   264,  1069)
+	 20: Rel (     0,    34)  ->  Abs (   264,  1103)
+	 21: Rel (     0,    32)  ->  Abs (   264,  1135)
+	 22: Rel (    47,    49)  ->  Abs (   311,  1184)
+	 23: Rel (    34,     0)  ->  Abs (   345,  1184)
+	 24: Rel (    34,     0)  ->  Abs (   379,  1184)
+	 25: Rel (    48,   -48)  ->  Abs (   427,  1136)
+	 26: Rel (   537,   -33)  ->  Abs (   964,  1103)
+	 27: Rel (     0,   -34)  ->  Abs (   964,  1069)
+	 28: Rel (   -48,   -48)  ->  Abs (   916,  1021)
+	 29: Rel (   -33,     0)  ->  Abs (   883,  1021)
+	 30: Rel (   -34,     0)  ->  Abs (   849,  1021)
+	 31: Rel (   -48,    48)  ->  Abs (   801,  1069)
+	 32: Rel (     0,    34)  ->  Abs (   801,  1103)
+	 33: Rel (     0,    32)  ->  Abs (   801,  1135)
+	 34: Rel (    47,    49)  ->  Abs (   848,  1184)
+	 35: Rel (    35,     0)  ->  Abs (   883,  1184)
+	 36: Rel (    34,     0)  ->  Abs (   917,  1184)
+	 37: Rel (    47,   -48)  ->  Abs (   964,  1136)
+
+	Glyph 497: off = 0x0001A0E0, len = 612
+	  numberOfContours:	3
+	  xMin:			64
+	  yMin:			0
+	  xMax:			1264
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  46
+	  2:  50
+
+	  Length of Instructions:	461
+	00000: NPUSHB      (47):    53    28    56    34    57    48    51    49    70    28 
+	                            73    34    73    48    70    49     8     5     1     8 
+	                            12     4    10     3     3    10    10    33     1    38 
+	                           192     5     1     5     5     8    38    16    12    32 
+	                            12     2    12   207    31    22    26 
+	00049: PUSHW[1]            676 
+	00052: NPUSHB      (14):    24    24    41    27    24    24    26    27    29    22 
+	                            27    28    41    45 
+	00068: PUSHW[1]            676 
+	00071: NPUSHB      (14):    43    43    51    46    43    43    45    46    29    41 
+	                            46    48    21    17 
+	00087: PUSHW[1]            676 
+	00090: NPUSHB      (14):    19    19    51    16    19    19    17    16    29    21 
+	                            16    49    33    29 
+	00106: PUSHW[1]            676 
+	00109: NPUSHB       (9):    31    47    31    63    31    95    31     3    31 
+	00120: PUSHW[1]            794 
+	00123: NPUSHB      (11):    28    31    31    29    28    29    33    28    27    40 
+	                            36 
+	00136: PUSHW[1]            676 
+	00139: PUSHB[5]             38   128    38     1    38 
+	00145: PUSHW[1]            -64 
+	00148: NPUSHB      (73):    22    33    52    38    41    35    38    38    36    35 
+	                            29    40    35    34    47    14    46    46    48    50 
+	                            15    16    28    27    27    30    16    49    20    16 
+	                            16    49    34    48    46    46    30    35    34    20 
+	                            35    35    34    40    41    41    21    21    22     8 
+	                            14    15    30    47    15    50    31    50     2    50 
+	                            50    21    48    49    49    28    28    29    38    34 
+	                            33     2    34 
+	00223: PUSHW[1]            344 
+	00226: NPUSHB      (11):   239    48     1    79    48    95    48   175    48     3 
+	                            48 
+	00239: PUSHW[1]            734 
+	00242: NPUSHB      (12):    46    38    32    35    48    35    64    35    80    35 
+	                             4    35 
+	00256: PUSHW[1]            296 
+	00259: NPUSHB      (10):    52    16    38    27    49    38    80    28     1    28 
+	00271: PUSHW[1]            318 
+	00274: NPUSHB      (12):    16    27     1   224    27     1     0    27    79    27 
+	                             2    27 
+	00288: PUSHW[5]            793    51   294   390    24 
+	00299: CALL       
+	00300: SRP0       
+	00301: MIRP[srp0,nmd,rd,2] 
+	00302: DELTAP1    
+	00303: DELTAP2    
+	00304: DELTAP3    
+	00305: MIRP[srp0,nmd,rd,0] 
+	00306: DELTAP1    
+	00307: MIRP[nrp0,md,rd,1] 
+	00308: SRP0       
+	00309: MIRP[nrp0,md,rd,1] 
+	00310: SRP0       
+	00311: MIRP[srp0,nmd,rd,0] 
+	00312: DELTAP1    
+	00313: MIRP[srp0,md,rd,1] 
+	00314: MIRP[srp0,nmd,rd,0] 
+	00315: DELTAP1    
+	00316: DELTAP2    
+	00317: MIRP[nrp0,md,rd,1] 
+	00318: SVTCA[y-axis] 
+	00319: MIAP[rd+ci] 
+	00320: ALIGNRP    
+	00321: MIRP[srp0,md,rd,1] 
+	00322: ALIGNRP    
+	00323: SRP0       
+	00324: ALIGNRP    
+	00325: SRP0       
+	00326: ALIGNRP    
+	00327: SRP2       
+	00328: IP         
+	00329: MDAP[rd]   
+	00330: DELTAP1    
+	00331: ALIGNRP    
+	00332: MIRP[srp0,md,rd,1] 
+	00333: ALIGNRP    
+	00334: MIAP[rd+ci] 
+	00335: ALIGNRP    
+	00336: SRP0       
+	00337: ALIGNRP    
+	00338: SRP0       
+	00339: ALIGNRP    
+	00340: SDPVTL[1]  
+	00341: SFVTCA[x-axis] 
+	00342: MDAP[nrd]  
+	00343: CALL       
+	00344: SDPVTL[1]  
+	00345: RDTG       
+	00346: MDRP[nrp0,nmd,rd,0] 
+	00347: SDPVTL[1]  
+	00348: MDAP[nrd]  
+	00349: RTG        
+	00350: CALL       
+	00351: RDTG       
+	00352: SRP0       
+	00353: MDRP[nrp0,nmd,rd,0] 
+	00354: SRP0       
+	00355: ALIGNRP    
+	00356: ALIGNRP    
+	00357: SPVTL[p1,p2] 
+	00358: SRP0       
+	00359: ALIGNRP    
+	00360: ALIGNRP    
+	00361: RTG        
+	00362: SVTCA[y-axis] 
+	00363: SFVTL[=p1,p2] 
+	00364: SRP0       
+	00365: MIRP[srp0,md,rd,1] 
+	00366: RTDG       
+	00367: SRP2       
+	00368: IP         
+	00369: MDAP[rd]   
+	00370: RTG        
+	00371: SVTCA[x-axis] 
+	00372: SRP0       
+	00373: MIRP[srp0,nmd,nrd,1] 
+	00374: CALL       
+	00375: DELTAP2    
+	00376: MDAP[rd]   
+	00377: MIRP[srp0,nmd,rd,0] 
+	00378: MDRP[nrp0,nmd,rd,0] 
+	00379: SVTCA[y-axis] 
+	00380: SFVTL[=p1,p2] 
+	00381: SRP0       
+	00382: MIRP[srp0,md,rd,1] 
+	00383: RTDG       
+	00384: SRP2       
+	00385: IP         
+	00386: MDAP[rd]   
+	00387: RTG        
+	00388: SVTCA[x-axis] 
+	00389: SRP0       
+	00390: MIRP[srp0,nmd,nrd,1] 
+	00391: DELTAP1    
+	00392: MDAP[rd]   
+	00393: MIRP[srp0,nmd,rd,0] 
+	00394: MDRP[nrp0,nmd,rd,0] 
+	00395: SVTCA[y-axis] 
+	00396: SFVTL[=p1,p2] 
+	00397: SRP0       
+	00398: MIRP[srp0,md,rd,1] 
+	00399: RTDG       
+	00400: SRP2       
+	00401: IP         
+	00402: MDAP[rd]   
+	00403: RTG        
+	00404: SVTCA[x-axis] 
+	00405: SRP0       
+	00406: MIRP[srp0,nmd,nrd,1] 
+	00407: MDAP[rd]   
+	00408: MIRP[srp0,nmd,rd,0] 
+	00409: MDRP[nrp0,nmd,rd,0] 
+	00410: SVTCA[y-axis] 
+	00411: SFVTL[=p1,p2] 
+	00412: SRP0       
+	00413: MIRP[srp0,md,rd,1] 
+	00414: RTDG       
+	00415: SRP2       
+	00416: IP         
+	00417: MDAP[rd]   
+	00418: RTG        
+	00419: SVTCA[x-axis] 
+	00420: SRP0       
+	00421: MIRP[srp0,nmd,nrd,1] 
+	00422: MDAP[rd]   
+	00423: MIRP[srp0,nmd,rd,0] 
+	00424: MDRP[nrp0,nmd,rd,0] 
+	00425: SVTCA[y-axis] 
+	00426: SFVTL[=p1,p2] 
+	00427: SRP0       
+	00428: MIRP[srp0,md,rd,1] 
+	00429: RTDG       
+	00430: SRP2       
+	00431: IP         
+	00432: MDAP[rd]   
+	00433: RTG        
+	00434: SVTCA[x-axis] 
+	00435: SRP0       
+	00436: MIRP[srp0,nmd,nrd,1] 
+	00437: MDAP[rd]   
+	00438: MIRP[srp0,nmd,rd,0] 
+	00439: MDRP[nrp0,nmd,rd,0] 
+	00440: SRP0       
+	00441: MIRP[srp0,nmd,rd,2] 
+	00442: DELTAP1    
+	00443: MIRP[nrp0,md,rd,1] 
+	00444: SHP[rp1,zp0] 
+	00445: MDAP[rd]   
+	00446: DELTAP2    
+	00447: MIRP[nrp0,md,rd,1] 
+	00448: SVTCA[y-axis] 
+	00449: SRP0       
+	00450: ALIGNRP    
+	00451: SRP1       
+	00452: SHP[rp1,zp0] 
+	00453: MDAP[rd]   
+	00454: SRP2       
+	00455: SLOOP      
+	00456: IP         
+	00457: IUP[y]     
+	00458: IUP[x]     
+	00459: SVTCA[x-axis] 
+	00460: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:                              X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual                 X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                                      On
+	 15:  YDual                               On
+	 16:                              X-Short On
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                               On
+	 23:  YDual                       X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short On
+	 28:                                      On
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual                               On
+	 35:                                      On
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                               On
+	 42:  YDual                       X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short On
+	 47:                              X-Short On
+	 48:                              X-Short On
+	 49:  YDual                       X-Short On
+	 50:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   200,  1107)  ->  Abs (   200,  1107)
+	  1: Rel (   -50,  -308)  ->  Abs (   150,   799)
+	  2: Rel (    -8,   -50)  ->  Abs (   142,   749)
+	  3: Rel (   -35,     0)  ->  Abs (   107,   749)
+	  4: Rel (   -43,     0)  ->  Abs (    64,   749)
+	  5: Rel (     0,    38)  ->  Abs (    64,   787)
+	  6: Rel (     0,     8)  ->  Abs (    64,   795)
+	  7: Rel (     3,    17)  ->  Abs (    67,   812)
+	  8: Rel (    49,   309)  ->  Abs (   116,  1121)
+	  9: Rel (     8,    49)  ->  Abs (   124,  1170)
+	 10: Rel (    36,     0)  ->  Abs (   160,  1170)
+	 11: Rel (    42,     0)  ->  Abs (   202,  1170)
+	 12: Rel (     0,   -41)  ->  Abs (   202,  1129)
+	 13: Rel (     0,    -9)  ->  Abs (   202,  1120)
+	 14: Rel (   737,  -729)  ->  Abs (   939,   391)
+	 15: Rel (  -552,     0)  ->  Abs (   387,   391)
+	 16: Rel (  -113,  -307)  ->  Abs (   274,    84)
+	 17: Rel (   161,     0)  ->  Abs (   435,    84)
+	 18: Rel (    56,     0)  ->  Abs (   491,    84)
+	 19: Rel (     0,   -42)  ->  Abs (   491,    42)
+	 20: Rel (     0,   -42)  ->  Abs (   491,     0)
+	 21: Rel (   -56,     0)  ->  Abs (   435,     0)
+	 22: Rel (  -313,     0)  ->  Abs (   122,     0)
+	 23: Rel (   -56,     0)  ->  Abs (    66,     0)
+	 24: Rel (     0,    42)  ->  Abs (    66,    42)
+	 25: Rel (     0,    42)  ->  Abs (    66,    84)
+	 26: Rel (    56,     0)  ->  Abs (   122,    84)
+	 27: Rel (    64,     0)  ->  Abs (   186,    84)
+	 28: Rel (   372,  1002)  ->  Abs (   558,  1086)
+	 29: Rel (  -225,     0)  ->  Abs (   333,  1086)
+	 30: Rel (   -56,     0)  ->  Abs (   277,  1086)
+	 31: Rel (     0,    42)  ->  Abs (   277,  1128)
+	 32: Rel (     0,    42)  ->  Abs (   277,  1170)
+	 33: Rel (    56,     0)  ->  Abs (   333,  1170)
+	 34: Rel (   399,     0)  ->  Abs (   732,  1170)
+	 35: Rel (   411, -1086)  ->  Abs (  1143,    84)
+	 36: Rel (    64,     0)  ->  Abs (  1207,    84)
+	 37: Rel (    57,     0)  ->  Abs (  1264,    84)
+	 38: Rel (     0,   -42)  ->  Abs (  1264,    42)
+	 39: Rel (     0,   -42)  ->  Abs (  1264,     0)
+	 40: Rel (   -57,     0)  ->  Abs (  1207,     0)
+	 41: Rel (  -313,     0)  ->  Abs (   894,     0)
+	 42: Rel (   -56,     0)  ->  Abs (   838,     0)
+	 43: Rel (     0,    42)  ->  Abs (   838,    42)
+	 44: Rel (     0,    42)  ->  Abs (   838,    84)
+	 45: Rel (    56,     0)  ->  Abs (   894,    84)
+	 46: Rel (   161,     0)  ->  Abs (  1055,    84)
+	 47: Rel (  -147,   391)  ->  Abs (   908,   475)
+	 48: Rel (  -232,   611)  ->  Abs (   676,  1086)
+	 49: Rel (   -31,     0)  ->  Abs (   645,  1086)
+	 50: Rel (  -226,  -611)  ->  Abs (   419,   475)
+
+	Glyph 498: off = 0x0001A344, len = 550
+	  numberOfContours:	2
+	  xMin:			-4
+	  yMin:			0
+	  xMax:			1157
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  55
+
+	  Length of Instructions:	399
+	00000: NPUSHB      (55):     0    45     0    47     0    49    15    50    15    52 
+	                            15    54    16    45    16    47    31    50    31    52 
+	                            31    54    11     5     1     8    12     4    10     3 
+	                             3    10    10    34     1    38     5     5     8    38 
+	                           111    12     1    63    12    79    12    95    12     3 
+	                            12   207    32    23    27 
+	00057: PUSHW[1]            676 
+	00060: NPUSHB      (14):   175    25     1    25    43    28    25    25    27    28 
+	                            29    23    36    40 
+	00076: PUSHW[1]            676 
+	00079: NPUSHB      (11):    38    53    41    38    38    40    41    29    36    21 
+	                            17 
+	00092: PUSHW[1]            676 
+	00095: NPUSHB      (11):    19    86    16    19    19    17    16    29    21    34 
+	                            30 
+	00108: PUSHW[1]            676 
+	00111: NPUSHB      (26):    15    32    31    32     2   255    32     1   175    32 
+	                           191    32   239    32     3    32    43    29    32    32 
+	                            30    29    29    34    50    54 
+	00139: PUSHW[1]            676 
+	00142: NPUSHB      (11):    52    43    55    52    52    54    55    29    50    49 
+	                            45 
+	00155: PUSHW[1]            676 
+	00158: NPUSHB      (16):     0    47     1    47    43    44    47    47    45    44 
+	                            29    49    15    38     1    38 
+	00176: PUSHW[1]            364 
+	00179: NPUSHB      (41):    35    16    15    38    23    41    42    38    34    55 
+	                            14    44    43    30    14    14    23    34     2    23 
+	                             8    40    38   128    36     1    36    65    17    38 
+	                            21    55    44    38    50    80    49   160    49     2 
+	                            49 
+	00222: PUSHW[1]            734 
+	00225: NPUSHB      (23):    43    43    42    14    15    30   160    21     1     0 
+	                            21    80    21   208    21     3    21    82    29    96 
+	                            28     1    28 
+	00250: PUSHW[3]            795   340    24 
+	00257: CALL       
+	00258: MDAP[rd]   
+	00259: DELTAP1    
+	00260: ALIGNRP    
+	00261: MIRP[nrp0,md,rd,1] 
+	00262: DELTAP1    
+	00263: DELTAP1    
+	00264: MIRP[srp0,md,rd,1] 
+	00265: ALIGNRP    
+	00266: ALIGNRP    
+	00267: ALIGNRP    
+	00268: SRP0       
+	00269: MIRP[srp0,nmd,rd,0] 
+	00270: DELTAP1    
+	00271: ALIGNRP    
+	00272: MIRP[srp0,md,rd,1] 
+	00273: ALIGNRP    
+	00274: SRP0       
+	00275: MIRP[nrp0,md,rd,1] 
+	00276: MIRP[srp0,nmd,rd,0] 
+	00277: DELTAP1    
+	00278: MIRP[nrp0,md,rd,1] 
+	00279: SVTCA[y-axis] 
+	00280: MIAP[rd+ci] 
+	00281: MIAP[rd+ci] 
+	00282: SRP2       
+	00283: IP         
+	00284: MDAP[rd]   
+	00285: MIRP[srp0,md,rd,1] 
+	00286: ALIGNRP    
+	00287: SRP0       
+	00288: ALIGNRP    
+	00289: SRP0       
+	00290: MIRP[srp0,md,rd,1] 
+	00291: ALIGNRP    
+	00292: SRP0       
+	00293: MIRP[srp0,md,rd,1] 
+	00294: ALIGNRP    
+	00295: SRP0       
+	00296: MIRP[nrp0,md,rd,1] 
+	00297: DELTAP1    
+	00298: SVTCA[x-axis] 
+	00299: SRP0       
+	00300: MIRP[srp0,md,rd,1] 
+	00301: RTDG       
+	00302: SRP2       
+	00303: IP         
+	00304: MDAP[rd]   
+	00305: RTG        
+	00306: SVTCA[y-axis] 
+	00307: SRP0       
+	00308: MIRP[srp0,nmd,rd,1] 
+	00309: DELTAP1    
+	00310: MIRP[srp0,nmd,rd,0] 
+	00311: MDRP[nrp0,nmd,rd,0] 
+	00312: SVTCA[x-axis] 
+	00313: SRP0       
+	00314: MIRP[srp0,md,rd,1] 
+	00315: RTDG       
+	00316: SRP2       
+	00317: IP         
+	00318: MDAP[rd]   
+	00319: RTG        
+	00320: SVTCA[y-axis] 
+	00321: SRP0       
+	00322: MIRP[srp0,nmd,rd,1] 
+	00323: MIRP[srp0,nmd,rd,0] 
+	00324: MDRP[nrp0,nmd,rd,0] 
+	00325: SRP0       
+	00326: MIRP[srp0,md,rd,1] 
+	00327: RTDG       
+	00328: SRP2       
+	00329: IP         
+	00330: MDAP[rd]   
+	00331: RTG        
+	00332: SVTCA[x-axis] 
+	00333: SRP0       
+	00334: MIRP[srp0,nmd,rd,1] 
+	00335: DELTAP1    
+	00336: DELTAP1    
+	00337: DELTAP2    
+	00338: MIRP[srp0,nmd,rd,0] 
+	00339: MDRP[nrp0,nmd,rd,0] 
+	00340: SRP0       
+	00341: MIRP[srp0,md,rd,1] 
+	00342: RTDG       
+	00343: SRP2       
+	00344: IP         
+	00345: MDAP[rd]   
+	00346: RTG        
+	00347: SVTCA[y-axis] 
+	00348: SRP0       
+	00349: MIRP[srp0,nmd,rd,1] 
+	00350: MIRP[srp0,nmd,rd,0] 
+	00351: MDRP[nrp0,nmd,rd,0] 
+	00352: SVTCA[x-axis] 
+	00353: SRP0       
+	00354: MIRP[srp0,md,rd,1] 
+	00355: RTDG       
+	00356: SRP2       
+	00357: IP         
+	00358: MDAP[rd]   
+	00359: RTG        
+	00360: SVTCA[y-axis] 
+	00361: SRP0       
+	00362: MIRP[srp0,nmd,rd,1] 
+	00363: MIRP[srp0,nmd,rd,0] 
+	00364: MDRP[nrp0,nmd,rd,0] 
+	00365: SRP0       
+	00366: MIRP[srp0,md,rd,1] 
+	00367: RTDG       
+	00368: SRP2       
+	00369: IP         
+	00370: MDAP[rd]   
+	00371: RTG        
+	00372: SVTCA[x-axis] 
+	00373: SRP0       
+	00374: MIRP[srp0,nmd,rd,1] 
+	00375: DELTAP1    
+	00376: MIRP[srp0,nmd,rd,0] 
+	00377: MDRP[nrp0,nmd,rd,0] 
+	00378: SRP0       
+	00379: MIRP[srp0,nmd,rd,2] 
+	00380: DELTAP1    
+	00381: DELTAP1    
+	00382: MIRP[nrp0,md,rd,1] 
+	00383: SHP[rp1,zp0] 
+	00384: MDAP[rd]   
+	00385: MIRP[nrp0,md,rd,1] 
+	00386: SVTCA[y-axis] 
+	00387: SRP0       
+	00388: ALIGNRP    
+	00389: SRP1       
+	00390: SHP[rp1,zp0] 
+	00391: MDAP[rd]   
+	00392: SRP2       
+	00393: SLOOP      
+	00394: IP         
+	00395: SVTCA[y-axis] 
+	00396: DELTAP1    
+	00397: IUP[y]     
+	00398: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:                              X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual                 X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                                      On
+	 15:        XDual                         On
+	 16:  YDual                               On
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual                         On
+	 23:  YDual                               On
+	 24:  YDual                       X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short On
+	 29:        XDual                         On
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual                               On
+	 36:        XDual                         On
+	 37:        XDual         Y-Short         Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual                               On
+	 43:        XDual                         On
+	 44:  YDual                               On
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short Off
+	 49:        XDual         Y-Short         On
+	 50:        XDual                         On
+	 51:        XDual         Y-Short         Off
+	 52:  YDual                       X-Short On
+	 53:  YDual                       X-Short Off
+	 54:  YDual XDual         Y-Short         On
+	 55:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   132,  1107)  ->  Abs (   132,  1107)
+	  1: Rel (   -50,  -308)  ->  Abs (    82,   799)
+	  2: Rel (    -8,   -50)  ->  Abs (    74,   749)
+	  3: Rel (   -35,     0)  ->  Abs (    39,   749)
+	  4: Rel (   -43,     0)  ->  Abs (    -4,   749)
+	  5: Rel (     0,    38)  ->  Abs (    -4,   787)
+	  6: Rel (     0,     8)  ->  Abs (    -4,   795)
+	  7: Rel (     3,    17)  ->  Abs (    -1,   812)
+	  8: Rel (    49,   309)  ->  Abs (    48,  1121)
+	  9: Rel (     8,    49)  ->  Abs (    56,  1170)
+	 10: Rel (    36,     0)  ->  Abs (    92,  1170)
+	 11: Rel (    42,     0)  ->  Abs (   134,  1170)
+	 12: Rel (     0,   -41)  ->  Abs (   134,  1129)
+	 13: Rel (     0,    -9)  ->  Abs (   134,  1120)
+	 14: Rel (   293,  -555)  ->  Abs (   427,   565)
+	 15: Rel (     0,  -481)  ->  Abs (   427,    84)
+	 16: Rel (   645,     0)  ->  Abs (  1072,    84)
+	 17: Rel (     0,   248)  ->  Abs (  1072,   332)
+	 18: Rel (     0,    56)  ->  Abs (  1072,   388)
+	 19: Rel (    43,     0)  ->  Abs (  1115,   388)
+	 20: Rel (    42,     0)  ->  Abs (  1157,   388)
+	 21: Rel (     0,   -56)  ->  Abs (  1157,   332)
+	 22: Rel (     0,  -332)  ->  Abs (  1157,     0)
+	 23: Rel (  -892,     0)  ->  Abs (   265,     0)
+	 24: Rel (   -57,     0)  ->  Abs (   208,     0)
+	 25: Rel (     0,    42)  ->  Abs (   208,    42)
+	 26: Rel (     0,    42)  ->  Abs (   208,    84)
+	 27: Rel (    57,     0)  ->  Abs (   265,    84)
+	 28: Rel (    77,     0)  ->  Abs (   342,    84)
+	 29: Rel (     0,  1002)  ->  Abs (   342,  1086)
+	 30: Rel (   -77,     0)  ->  Abs (   265,  1086)
+	 31: Rel (   -57,     0)  ->  Abs (   208,  1086)
+	 32: Rel (     0,    42)  ->  Abs (   208,  1128)
+	 33: Rel (     0,    42)  ->  Abs (   208,  1170)
+	 34: Rel (    57,     0)  ->  Abs (   265,  1170)
+	 35: Rel (   848,     0)  ->  Abs (  1113,  1170)
+	 36: Rel (     0,  -289)  ->  Abs (  1113,   881)
+	 37: Rel (     0,   -56)  ->  Abs (  1113,   825)
+	 38: Rel (   -43,     0)  ->  Abs (  1070,   825)
+	 39: Rel (   -42,     0)  ->  Abs (  1028,   825)
+	 40: Rel (     0,    56)  ->  Abs (  1028,   881)
+	 41: Rel (     0,   205)  ->  Abs (  1028,  1086)
+	 42: Rel (  -601,     0)  ->  Abs (   427,  1086)
+	 43: Rel (     0,  -437)  ->  Abs (   427,   649)
+	 44: Rel (   301,     0)  ->  Abs (   728,   649)
+	 45: Rel (     0,    95)  ->  Abs (   728,   744)
+	 46: Rel (     0,    56)  ->  Abs (   728,   800)
+	 47: Rel (    42,     0)  ->  Abs (   770,   800)
+	 48: Rel (    42,     0)  ->  Abs (   812,   800)
+	 49: Rel (     0,   -56)  ->  Abs (   812,   744)
+	 50: Rel (     0,  -274)  ->  Abs (   812,   470)
+	 51: Rel (     0,   -56)  ->  Abs (   812,   414)
+	 52: Rel (   -42,     0)  ->  Abs (   770,   414)
+	 53: Rel (   -42,     0)  ->  Abs (   728,   414)
+	 54: Rel (     0,    56)  ->  Abs (   728,   470)
+	 55: Rel (     0,    95)  ->  Abs (   728,   565)
+
+	Glyph 499: off = 0x0001A56A, len = 648
+	  numberOfContours:	2
+	  xMin:			19
+	  yMin:			0
+	  xMax:			1200
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  65
+
+	  Length of Instructions:	479
+	00000: NPUSHB      (64):     0    34     0    36     0    38    15    60    15    62 
+	                            15    64    16    34    16    36    16    38    31    60 
+	                            31    62    31    64    12     5     1     8    12     4 
+	                            10     3     3    10    10    33     1    38     5     5 
+	                             8    38   159    12     1    63    12    79    12    95 
+	                            12     3    63    12   111    12   143    12     3    12 
+	                           207    31    48    52 
+	00066: PUSHW[1]            676 
+	00069: NPUSHB      (18):     0    50    16    50    32    50     3    50    41    53 
+	                            50    50    52    53    29    48    47    43 
+	00089: PUSHW[1]            676 
+	00092: NPUSHB      (11):    45    43    42    45    45    43    42    29    47    34 
+	                            38 
+	00105: PUSHW[1]            676 
+	00108: NPUSHB      (11):    36    43    39    36    36    38    39    29    34    33 
+	                            29 
+	00121: PUSHW[1]            676 
+	00124: NPUSHB      (33):    15    31     1    31    31    47    31    79    31     3 
+	                           223    31   255    31     2    15    31   207    31   239 
+	                            31     3    31   144    28    31    31    29    28    29 
+	                            33    22    26 
+	00159: PUSHW[1]            676 
+	00162: NPUSHB      (11):    24   144    27    24    24    26    27    29    22    21 
+	                            17 
+	00175: PUSHW[1]            676 
+	00178: NPUSHB      (11):    19    43    16    19    19    17    16    29    21    60 
+	                            64 
+	00191: PUSHW[1]            676 
+	00194: NPUSHB      (11):    62    43    65    62    62    64    65    29    60    59 
+	                            55 
+	00207: PUSHW[1]            676 
+	00210: NPUSHB      (58):   160    57   176    57     2     0    57    16    57    32 
+	                            57     3    57    43    54    57    57    55    54    29 
+	                            59    41    40    30    14    15    15    22    48    47 
+	                            47    34    34    33     2    59    60    60    22    21 
+	                             8    53    30    42    54    30    42   191    65     1 
+	                            63    65    79    65    95    65     3    65 
+	00270: PUSHW[1]            310 
+	00273: NPUSHB      (25):    67    28    30    39    39    27    30    63    16    64 
+	                            16     2   159    16   239    16     2    31    16    47 
+	                            16   127    16     3    16 
+	00300: PUSHW[5]            734    66   795   287    24 
+	00311: CALL       
+	00312: SRP0       
+	00313: MIRP[srp0,nmd,rd,0] 
+	00314: DELTAP1    
+	00315: DELTAP1    
+	00316: DELTAP2    
+	00317: MIRP[nrp0,md,rd,1] 
+	00318: ALIGNRP    
+	00319: SRP0       
+	00320: MIRP[nrp0,md,rd,1] 
+	00321: SRP0       
+	00322: MIRP[srp0,nmd,rd,0] 
+	00323: DELTAP2    
+	00324: DELTAP1    
+	00325: ALIGNRP    
+	00326: MIRP[nrp0,md,rd,1] 
+	00327: SRP0       
+	00328: MIRP[nrp0,md,rd,1] 
+	00329: SVTCA[y-axis] 
+	00330: MIAP[rd+ci] 
+	00331: ALIGNRP    
+	00332: ALIGNRP    
+	00333: SRP0       
+	00334: ALIGNRP    
+	00335: MIAP[rd+ci] 
+	00336: ALIGNRP    
+	00337: SRP0       
+	00338: ALIGNRP    
+	00339: SRP0       
+	00340: ALIGNRP    
+	00341: SRP2       
+	00342: IP         
+	00343: MDAP[rd]   
+	00344: ALIGNRP    
+	00345: MIRP[srp0,md,rd,1] 
+	00346: ALIGNRP    
+	00347: SRP0       
+	00348: MIRP[srp0,md,rd,1] 
+	00349: RTDG       
+	00350: SRP2       
+	00351: IP         
+	00352: MDAP[rd]   
+	00353: RTG        
+	00354: SVTCA[x-axis] 
+	00355: SRP0       
+	00356: MIRP[srp0,nmd,rd,1] 
+	00357: DELTAP1    
+	00358: DELTAP1    
+	00359: MIRP[srp0,nmd,rd,0] 
+	00360: MDRP[nrp0,nmd,rd,0] 
+	00361: SVTCA[y-axis] 
+	00362: SRP0       
+	00363: MIRP[srp0,md,rd,1] 
+	00364: RTDG       
+	00365: SRP2       
+	00366: IP         
+	00367: MDAP[rd]   
+	00368: RTG        
+	00369: SVTCA[x-axis] 
+	00370: SRP0       
+	00371: MIRP[srp0,nmd,rd,1] 
+	00372: MIRP[srp0,nmd,rd,0] 
+	00373: MDRP[nrp0,nmd,rd,0] 
+	00374: SVTCA[y-axis] 
+	00375: SRP0       
+	00376: MIRP[srp0,md,rd,1] 
+	00377: RTDG       
+	00378: SRP2       
+	00379: IP         
+	00380: MDAP[rd]   
+	00381: RTG        
+	00382: SVTCA[x-axis] 
+	00383: SRP0       
+	00384: MIRP[srp0,nmd,rd,1] 
+	00385: MIRP[srp0,nmd,rd,0] 
+	00386: MDRP[nrp0,nmd,rd,0] 
+	00387: SVTCA[y-axis] 
+	00388: SRP0       
+	00389: MIRP[srp0,md,rd,1] 
+	00390: RTDG       
+	00391: SRP2       
+	00392: IP         
+	00393: MDAP[rd]   
+	00394: RTG        
+	00395: SVTCA[x-axis] 
+	00396: SRP0       
+	00397: MIRP[srp0,nmd,rd,1] 
+	00398: MIRP[srp0,nmd,rd,0] 
+	00399: MDRP[nrp0,nmd,rd,0] 
+	00400: SVTCA[y-axis] 
+	00401: SRP0       
+	00402: MIRP[srp0,md,rd,1] 
+	00403: RTDG       
+	00404: SRP2       
+	00405: IP         
+	00406: MDAP[rd]   
+	00407: RTG        
+	00408: SVTCA[x-axis] 
+	00409: SRP0       
+	00410: MIRP[srp0,nmd,rd,1] 
+	00411: DELTAP1    
+	00412: DELTAP1    
+	00413: DELTAP2    
+	00414: DELTAP2    
+	00415: MIRP[srp0,nmd,rd,0] 
+	00416: MDRP[nrp0,nmd,rd,0] 
+	00417: SVTCA[y-axis] 
+	00418: SRP0       
+	00419: MIRP[srp0,md,rd,1] 
+	00420: RTDG       
+	00421: SRP2       
+	00422: IP         
+	00423: MDAP[rd]   
+	00424: RTG        
+	00425: SVTCA[x-axis] 
+	00426: SRP0       
+	00427: MIRP[srp0,nmd,rd,1] 
+	00428: MIRP[srp0,nmd,rd,0] 
+	00429: MDRP[nrp0,nmd,rd,0] 
+	00430: SVTCA[y-axis] 
+	00431: SRP0       
+	00432: MIRP[srp0,md,rd,1] 
+	00433: RTDG       
+	00434: SRP2       
+	00435: IP         
+	00436: MDAP[rd]   
+	00437: RTG        
+	00438: SVTCA[x-axis] 
+	00439: SRP0       
+	00440: MIRP[srp0,nmd,rd,1] 
+	00441: MIRP[srp0,nmd,rd,0] 
+	00442: MDRP[nrp0,nmd,rd,0] 
+	00443: SVTCA[y-axis] 
+	00444: SRP0       
+	00445: MIRP[srp0,md,rd,1] 
+	00446: RTDG       
+	00447: SRP2       
+	00448: IP         
+	00449: MDAP[rd]   
+	00450: RTG        
+	00451: SVTCA[x-axis] 
+	00452: SRP0       
+	00453: MIRP[srp0,nmd,rd,1] 
+	00454: DELTAP1    
+	00455: MIRP[srp0,nmd,rd,0] 
+	00456: MDRP[nrp0,nmd,rd,0] 
+	00457: SRP0       
+	00458: MIRP[srp0,nmd,rd,2] 
+	00459: DELTAP1    
+	00460: DELTAP1    
+	00461: DELTAP2    
+	00462: MIRP[nrp0,md,rd,1] 
+	00463: SHP[rp1,zp0] 
+	00464: MDAP[rd]   
+	00465: MIRP[nrp0,md,rd,1] 
+	00466: SVTCA[y-axis] 
+	00467: SRP0       
+	00468: ALIGNRP    
+	00469: SRP1       
+	00470: SHP[rp1,zp0] 
+	00471: MDAP[rd]   
+	00472: SRP2       
+	00473: SLOOP      
+	00474: IP         
+	00475: SVTCA[x-axis] 
+	00476: DELTAP1    
+	00477: IUP[y]     
+	00478: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:                              X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual                 X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                                      On
+	 15:  YDual                               On
+	 16:        XDual                         On
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short On
+	 28:        XDual                         On
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short On
+	 40:        XDual                         On
+	 41:  YDual                               On
+	 42:        XDual                         On
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual                 X-Short Off
+	 50:        XDual         Y-Short         On
+	 51:        XDual         Y-Short         Off
+	 52:  YDual                       X-Short On
+	 53:  YDual                       X-Short On
+	 54:        XDual                         On
+	 55:  YDual XDual                 X-Short On
+	 56:  YDual XDual                 X-Short Off
+	 57:        XDual         Y-Short         On
+	 58:        XDual         Y-Short         Off
+	 59:  YDual                       X-Short On
+	 60:  YDual                               On
+	 61:  YDual                       X-Short Off
+	 62:  YDual XDual         Y-Short         On
+	 63:  YDual XDual         Y-Short         Off
+	 64:  YDual XDual                 X-Short On
+	 65:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   155,  1107)  ->  Abs (   155,  1107)
+	  1: Rel (   -50,  -308)  ->  Abs (   105,   799)
+	  2: Rel (    -8,   -50)  ->  Abs (    97,   749)
+	  3: Rel (   -35,     0)  ->  Abs (    62,   749)
+	  4: Rel (   -43,     0)  ->  Abs (    19,   749)
+	  5: Rel (     0,    38)  ->  Abs (    19,   787)
+	  6: Rel (     0,     8)  ->  Abs (    19,   795)
+	  7: Rel (     3,    17)  ->  Abs (    22,   812)
+	  8: Rel (    49,   309)  ->  Abs (    71,  1121)
+	  9: Rel (     8,    49)  ->  Abs (    79,  1170)
+	 10: Rel (    36,     0)  ->  Abs (   115,  1170)
+	 11: Rel (    42,     0)  ->  Abs (   157,  1170)
+	 12: Rel (     0,   -41)  ->  Abs (   157,  1129)
+	 13: Rel (     0,    -9)  ->  Abs (   157,  1120)
+	 14: Rel (   808,  -554)  ->  Abs (   965,   566)
+	 15: Rel (  -557,     0)  ->  Abs (   408,   566)
+	 16: Rel (     0,  -482)  ->  Abs (   408,    84)
+	 17: Rel (   112,     0)  ->  Abs (   520,    84)
+	 18: Rel (    57,     0)  ->  Abs (   577,    84)
+	 19: Rel (     0,   -42)  ->  Abs (   577,    42)
+	 20: Rel (     0,   -42)  ->  Abs (   577,     0)
+	 21: Rel (   -57,     0)  ->  Abs (   520,     0)
+	 22: Rel (  -232,     0)  ->  Abs (   288,     0)
+	 23: Rel (   -56,     0)  ->  Abs (   232,     0)
+	 24: Rel (     0,    42)  ->  Abs (   232,    42)
+	 25: Rel (     0,    42)  ->  Abs (   232,    84)
+	 26: Rel (    56,     0)  ->  Abs (   288,    84)
+	 27: Rel (    35,     0)  ->  Abs (   323,    84)
+	 28: Rel (     0,  1002)  ->  Abs (   323,  1086)
+	 29: Rel (   -35,     0)  ->  Abs (   288,  1086)
+	 30: Rel (   -56,     0)  ->  Abs (   232,  1086)
+	 31: Rel (     0,    42)  ->  Abs (   232,  1128)
+	 32: Rel (     0,    42)  ->  Abs (   232,  1170)
+	 33: Rel (    56,     0)  ->  Abs (   288,  1170)
+	 34: Rel (   232,     0)  ->  Abs (   520,  1170)
+	 35: Rel (    57,     0)  ->  Abs (   577,  1170)
+	 36: Rel (     0,   -42)  ->  Abs (   577,  1128)
+	 37: Rel (     0,   -42)  ->  Abs (   577,  1086)
+	 38: Rel (   -57,     0)  ->  Abs (   520,  1086)
+	 39: Rel (  -112,     0)  ->  Abs (   408,  1086)
+	 40: Rel (     0,  -436)  ->  Abs (   408,   650)
+	 41: Rel (   557,     0)  ->  Abs (   965,   650)
+	 42: Rel (     0,   436)  ->  Abs (   965,  1086)
+	 43: Rel (  -113,     0)  ->  Abs (   852,  1086)
+	 44: Rel (   -56,     0)  ->  Abs (   796,  1086)
+	 45: Rel (     0,    42)  ->  Abs (   796,  1128)
+	 46: Rel (     0,    42)  ->  Abs (   796,  1170)
+	 47: Rel (    56,     0)  ->  Abs (   852,  1170)
+	 48: Rel (   250,     0)  ->  Abs (  1102,  1170)
+	 49: Rel (    56,     0)  ->  Abs (  1158,  1170)
+	 50: Rel (     0,   -42)  ->  Abs (  1158,  1128)
+	 51: Rel (     0,   -42)  ->  Abs (  1158,  1086)
+	 52: Rel (   -56,     0)  ->  Abs (  1102,  1086)
+	 53: Rel (   -53,     0)  ->  Abs (  1049,  1086)
+	 54: Rel (     0, -1002)  ->  Abs (  1049,    84)
+	 55: Rel (    95,     0)  ->  Abs (  1144,    84)
+	 56: Rel (    56,     0)  ->  Abs (  1200,    84)
+	 57: Rel (     0,   -42)  ->  Abs (  1200,    42)
+	 58: Rel (     0,   -42)  ->  Abs (  1200,     0)
+	 59: Rel (   -56,     0)  ->  Abs (  1144,     0)
+	 60: Rel (  -292,     0)  ->  Abs (   852,     0)
+	 61: Rel (   -56,     0)  ->  Abs (   796,     0)
+	 62: Rel (     0,    42)  ->  Abs (   796,    42)
+	 63: Rel (     0,    42)  ->  Abs (   796,    84)
+	 64: Rel (    56,     0)  ->  Abs (   852,    84)
+	 65: Rel (   113,     0)  ->  Abs (   965,    84)
+
+	Glyph 500: off = 0x0001A7F2, len = 302
+	  numberOfContours:	2
+	  xMin:			65
+	  yMin:			0
+	  xMax:			1050
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  37
+
+	  Length of Instructions:	192
+	00000: NPUSHB      (32):     5     1     8    12     4    10     3     3    10    10 
+	                            33     1    38   192     5     1     5     5     8    38 
+	                             0    12    16    12    32    12     3    12   207    30 
+	                            33    37 
+	00034: PUSHW[1]            676 
+	00037: NPUSHB      (11):    35    54    14    35    35    37    14    29    33    32 
+	                            28 
+	00050: PUSHW[1]            676 
+	00053: NPUSHB      (11):    30    54    27    30    30    28    27    29    32    20 
+	                            16 
+	00066: PUSHW[1]            676 
+	00069: NPUSHB      (11):    18    54    15    18    18    16    15    29    20    21 
+	                            25 
+	00082: PUSHW[1]            676 
+	00085: NPUSHB      (19):    23    54    26    23    23    25    26    29    20    21 
+	                             8    33    32     2    14    15    30    27    26 
+	00106: PUSHW[3]            313   287    24 
+	00113: CALL       
+	00114: MDAP[rd]   
+	00115: ALIGNRP    
+	00116: MIRP[srp0,md,rd,1] 
+	00117: ALIGNRP    
+	00118: SVTCA[y-axis] 
+	00119: MIAP[rd+ci] 
+	00120: ALIGNRP    
+	00121: MIAP[rd+ci] 
+	00122: ALIGNRP    
+	00123: MIRP[srp0,md,rd,1] 
+	00124: RTDG       
+	00125: SRP2       
+	00126: IP         
+	00127: MDAP[rd]   
+	00128: RTG        
+	00129: SVTCA[x-axis] 
+	00130: SRP0       
+	00131: MIRP[srp0,nmd,rd,1] 
+	00132: MIRP[srp0,nmd,rd,0] 
+	00133: MDRP[nrp0,nmd,rd,0] 
+	00134: SVTCA[y-axis] 
+	00135: SRP0       
+	00136: MIRP[srp0,md,rd,1] 
+	00137: RTDG       
+	00138: SRP2       
+	00139: IP         
+	00140: MDAP[rd]   
+	00141: RTG        
+	00142: SVTCA[x-axis] 
+	00143: SRP0       
+	00144: MIRP[srp0,nmd,rd,1] 
+	00145: MIRP[srp0,nmd,rd,0] 
+	00146: MDRP[nrp0,nmd,rd,0] 
+	00147: SVTCA[y-axis] 
+	00148: SRP0       
+	00149: MIRP[srp0,md,rd,1] 
+	00150: RTDG       
+	00151: SRP2       
+	00152: IP         
+	00153: MDAP[rd]   
+	00154: RTG        
+	00155: SVTCA[x-axis] 
+	00156: SRP0       
+	00157: MIRP[srp0,nmd,rd,1] 
+	00158: MIRP[srp0,nmd,rd,0] 
+	00159: MDRP[nrp0,nmd,rd,0] 
+	00160: SVTCA[y-axis] 
+	00161: SRP0       
+	00162: MIRP[srp0,md,rd,1] 
+	00163: RTDG       
+	00164: SRP2       
+	00165: IP         
+	00166: MDAP[rd]   
+	00167: RTG        
+	00168: SVTCA[x-axis] 
+	00169: SRP0       
+	00170: MIRP[srp0,nmd,rd,1] 
+	00171: MIRP[srp0,nmd,rd,0] 
+	00172: MDRP[nrp0,nmd,rd,0] 
+	00173: SRP0       
+	00174: MIRP[srp0,nmd,rd,2] 
+	00175: DELTAP1    
+	00176: MIRP[nrp0,md,rd,1] 
+	00177: SHP[rp1,zp0] 
+	00178: MDAP[rd]   
+	00179: DELTAP2    
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: SVTCA[y-axis] 
+	00182: SRP0       
+	00183: ALIGNRP    
+	00184: SRP1       
+	00185: SHP[rp1,zp0] 
+	00186: MDAP[rd]   
+	00187: SRP2       
+	00188: SLOOP      
+	00189: IP         
+	00190: IUP[y]     
+	00191: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:                              X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual                 X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short         On
+	 15:        XDual                         On
+	 16:  YDual                               On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                               On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual                               On
+	 27:        XDual                         On
+	 28:  YDual                               On
+	 29:  YDual                       X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual                               On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   201,  1107)  ->  Abs (   201,  1107)
+	  1: Rel (   -50,  -308)  ->  Abs (   151,   799)
+	  2: Rel (    -8,   -50)  ->  Abs (   143,   749)
+	  3: Rel (   -35,     0)  ->  Abs (   108,   749)
+	  4: Rel (   -43,     0)  ->  Abs (    65,   749)
+	  5: Rel (     0,    38)  ->  Abs (    65,   787)
+	  6: Rel (     0,     8)  ->  Abs (    65,   795)
+	  7: Rel (     3,    17)  ->  Abs (    68,   812)
+	  8: Rel (    49,   309)  ->  Abs (   117,  1121)
+	  9: Rel (     8,    49)  ->  Abs (   125,  1170)
+	 10: Rel (    36,     0)  ->  Abs (   161,  1170)
+	 11: Rel (    42,     0)  ->  Abs (   203,  1170)
+	 12: Rel (     0,   -41)  ->  Abs (   203,  1129)
+	 13: Rel (     0,    -9)  ->  Abs (   203,  1120)
+	 14: Rel (   503,   -34)  ->  Abs (   706,  1086)
+	 15: Rel (     0, -1002)  ->  Abs (   706,    84)
+	 16: Rel (   288,     0)  ->  Abs (   994,    84)
+	 17: Rel (    56,     0)  ->  Abs (  1050,    84)
+	 18: Rel (     0,   -42)  ->  Abs (  1050,    42)
+	 19: Rel (     0,   -42)  ->  Abs (  1050,     0)
+	 20: Rel (   -56,     0)  ->  Abs (   994,     0)
+	 21: Rel (  -660,     0)  ->  Abs (   334,     0)
+	 22: Rel (   -56,     0)  ->  Abs (   278,     0)
+	 23: Rel (     0,    42)  ->  Abs (   278,    42)
+	 24: Rel (     0,    42)  ->  Abs (   278,    84)
+	 25: Rel (    56,     0)  ->  Abs (   334,    84)
+	 26: Rel (   288,     0)  ->  Abs (   622,    84)
+	 27: Rel (     0,  1002)  ->  Abs (   622,  1086)
+	 28: Rel (  -288,     0)  ->  Abs (   334,  1086)
+	 29: Rel (   -56,     0)  ->  Abs (   278,  1086)
+	 30: Rel (     0,    42)  ->  Abs (   278,  1128)
+	 31: Rel (     0,    42)  ->  Abs (   278,  1170)
+	 32: Rel (    56,     0)  ->  Abs (   334,  1170)
+	 33: Rel (   660,     0)  ->  Abs (   994,  1170)
+	 34: Rel (    56,     0)  ->  Abs (  1050,  1170)
+	 35: Rel (     0,   -42)  ->  Abs (  1050,  1128)
+	 36: Rel (     0,   -42)  ->  Abs (  1050,  1086)
+	 37: Rel (   -56,     0)  ->  Abs (   994,  1086)
+
+	Glyph 501: off = 0x0001A920, len = 322
+	  numberOfContours:	3
+	  xMin:			-10
+	  yMin:			-33
+	  xMax:			1160
+	  yMax:			1197
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  25
+	  2:  39
+
+	  Length of Instructions:	189
+	00000: NPUSHB      (48):    56     2    56    12   130     2   141     5   142     9 
+	                           130    11   132    12   139    19   140    21   146     2 
+	                           156     5   156     9   145    11   145    12   148    16 
+	                           156    19   156    21   199    21    18    15    64    25 
+	                            36    52    19    64    25    36    52    25 
+	00050: PUSHW[1]            -64 
+	00053: PUSHB[4]             25    36    52    21 
+	00058: PUSHW[1]            -64 
+	00061: NPUSHB      (14):    25    36    52    15    44     9    24    52    19    44 
+	                             9    24    52    25 
+	00077: PUSHW[1]            -44 
+	00080: PUSHB[4]              9    24    52    21 
+	00085: PUSHW[1]            -44 
+	00088: NPUSHB      (27):    10    24    52   196     8   196    19   203    21     3 
+	                            31    27    34    38     4    36    29    29    36     2 
+	                            27    38    31    31    34    38    38 
+	00117: PUSHW[1]            387 
+	00120: NPUSHB      (23):     7    17    38    10     3    23    38     4     9    14 
+	                            38    16     0    48     0    79     0     3     0    20 
+	                            38     7   194 
+	00145: PUSHW[2]            340    24 
+	00150: CALL       
+	00151: MDAP[rd]   
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: MDAP[rd]   
+	00154: DELTAP1    
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: SVTCA[y-axis] 
+	00157: MIAP[rd+ci] 
+	00158: MIRP[nrp0,md,rd,1] 
+	00159: MIAP[rd+ci] 
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: SVTCA[x-axis] 
+	00162: SRP0       
+	00163: MIRP[srp0,nmd,rd,2] 
+	00164: MIRP[nrp0,md,rd,1] 
+	00165: SHP[rp1,zp0] 
+	00166: MDAP[rd]   
+	00167: MIRP[nrp0,md,rd,1] 
+	00168: SVTCA[y-axis] 
+	00169: MIAP[rd+ci] 
+	00170: SHP[rp1,zp0] 
+	00171: MDAP[rd]   
+	00172: SRP2       
+	00173: SLOOP      
+	00174: IP         
+	00175: IUP[y]     
+	00176: IUP[x]     
+	00177: SVTCA[y-axis] 
+	00178: DELTAP1    
+	00179: CALL       
+	00180: CALL       
+	00181: CALL       
+	00182: CALL       
+	00183: CALL       
+	00184: CALL       
+	00185: CALL       
+	00186: CALL       
+	00187: SVTCA[x-axis] 
+	00188: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                              X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                                      Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:                                      Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual                 X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:  YDual XDual         Y-Short         Off
+	 16:                              X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:                              X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:        XDual                 X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual                 X-Short Off
+	 26:                                      On
+	 27:                              X-Short On
+	 28:                      Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:        XDual                 X-Short On
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1160,   582)  ->  Abs (  1160,   582)
+	  1: Rel (     0,  -146)  ->  Abs (  1160,   436)
+	  2: Rel (  -113,  -278)  ->  Abs (  1047,   158)
+	  3: Rel (  -244,  -191)  ->  Abs (   803,   -33)
+	  4: Rel (  -155,     0)  ->  Abs (   648,   -33)
+	  5: Rel (  -215,     0)  ->  Abs (   433,   -33)
+	  6: Rel (  -297,   361)  ->  Abs (   136,   328)
+	  7: Rel (     0,   254)  ->  Abs (   136,   582)
+	  8: Rel (     0,   254)  ->  Abs (   136,   836)
+	  9: Rel (   297,   361)  ->  Abs (   433,  1197)
+	 10: Rel (   215,     0)  ->  Abs (   648,  1197)
+	 11: Rel (   152,     0)  ->  Abs (   800,  1197)
+	 12: Rel (   240,  -183)  ->  Abs (  1040,  1014)
+	 13: Rel (   120,  -275)  ->  Abs (  1160,   739)
+	 14: Rel (   -84,  -157)  ->  Abs (  1076,   582)
+	 15: Rel (     0,   213)  ->  Abs (  1076,   795)
+	 16: Rel (  -245,   318)  ->  Abs (   831,  1113)
+	 17: Rel (  -183,     0)  ->  Abs (   648,  1113)
+	 18: Rel (  -173,     0)  ->  Abs (   475,  1113)
+	 19: Rel (  -254,  -307)  ->  Abs (   221,   806)
+	 20: Rel (     0,  -224)  ->  Abs (   221,   582)
+	 21: Rel (     0,  -217)  ->  Abs (   221,   365)
+	 22: Rel (   249,  -314)  ->  Abs (   470,    51)
+	 23: Rel (   178,     0)  ->  Abs (   648,    51)
+	 24: Rel (   175,     0)  ->  Abs (   823,    51)
+	 25: Rel (   253,   311)  ->  Abs (  1076,   362)
+	 26: Rel (  -950,   745)  ->  Abs (   126,  1107)
+	 27: Rel (   -50,  -308)  ->  Abs (    76,   799)
+	 28: Rel (    -8,   -50)  ->  Abs (    68,   749)
+	 29: Rel (   -35,     0)  ->  Abs (    33,   749)
+	 30: Rel (   -43,     0)  ->  Abs (   -10,   749)
+	 31: Rel (     0,    38)  ->  Abs (   -10,   787)
+	 32: Rel (     0,     8)  ->  Abs (   -10,   795)
+	 33: Rel (     3,    17)  ->  Abs (    -7,   812)
+	 34: Rel (    49,   309)  ->  Abs (    42,  1121)
+	 35: Rel (     8,    49)  ->  Abs (    50,  1170)
+	 36: Rel (    36,     0)  ->  Abs (    86,  1170)
+	 37: Rel (    42,     0)  ->  Abs (   128,  1170)
+	 38: Rel (     0,   -41)  ->  Abs (   128,  1129)
+	 39: Rel (     0,    -9)  ->  Abs (   128,  1120)
+
+	Glyph 502: off = 0x0001AA62, len = 490
+	  numberOfContours:	2
+	  xMin:			42
+	  yMin:			0
+	  xMax:			1178
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  48
+
+	  Length of Instructions:	352
+	00000: NPUSHB      (33):    12    28    15    35     2     5     1     8    12     4 
+	                            10     3     3    10    10    29     1    38   192     5 
+	                             1     5     5     8    38    63    12     1    12   207 
+	                            28    43    47 
+	00035: PUSHW[1]            676 
+	00038: PUSHB[5]             45     0    45     1    45 
+	00044: PUSHW[1]            706 
+	00047: NPUSHB      (11):    48    45    45    47    48    29    43    48    14    42 
+	                            38 
+	00060: PUSHW[1]            676 
+	00063: NPUSHB      (14):    40    40    43    37    40    40    38    37    29    42 
+	                            37    36    30    34 
+	00079: PUSHW[1]            676 
+	00082: NPUSHB      (17):    32    63    32     1    32    43    35    32    32    34 
+	                            35    29    30    35    36    21    25 
+	00101: PUSHW[3]            676    23   794 
+	00108: NPUSHB       (9):    26    23    23    25    26    29    21    20    16 
+	00119: PUSHW[3]            676    18   794 
+	00126: NPUSHB      (56):    15    18    18    16    15    29    20    37    48    14 
+	                            14    30    36    37    20    36    36    37    28    27 
+	                            27    30    36    35    20    36    36    35    27    14 
+	                            36     3    29    21    36    15    26    43    42    42 
+	                            30    30    29     2    20    21     8    37    38     0 
+	                            48     1     0    48     1    48 
+	00184: PUSHW[1]            703 
+	00187: NPUSHB      (11):    14    14    15    38    27    80    26   175    26     2 
+	                            26 
+	00200: PUSHW[1]            703 
+	00203: PUSHB[7]             35    38    29    28    74   111    24 
+	00211: CALL       
+	00212: MDAP[rd]   
+	00213: ALIGNRP    
+	00214: MIRP[nrp0,md,rd,1] 
+	00215: MIRP[srp0,nmd,rd,0] 
+	00216: DELTAP1    
+	00217: ALIGNRP    
+	00218: MIRP[srp0,md,rd,1] 
+	00219: ALIGNRP    
+	00220: SRP0       
+	00221: MIRP[srp0,nmd,rd,0] 
+	00222: DELTAP1    
+	00223: DELTAP2    
+	00224: MIRP[nrp0,md,rd,1] 
+	00225: SVTCA[y-axis] 
+	00226: MIAP[rd+ci] 
+	00227: ALIGNRP    
+	00228: MIAP[rd+ci] 
+	00229: ALIGNRP    
+	00230: SRP0       
+	00231: ALIGNRP    
+	00232: SRP0       
+	00233: ALIGNRP    
+	00234: SVTCA[x-axis] 
+	00235: SRP1       
+	00236: SRP2       
+	00237: IP         
+	00238: SVTCA[y-axis] 
+	00239: SRP1       
+	00240: SRP2       
+	00241: SLOOP      
+	00242: IP         
+	00243: SDPVTL[1]  
+	00244: MDAP[nrd]  
+	00245: CALL       
+	00246: RDTG       
+	00247: SRP0       
+	00248: MDRP[nrp0,nmd,rd,0] 
+	00249: SDPVTL[1]  
+	00250: MDAP[nrd]  
+	00251: RTG        
+	00252: CALL       
+	00253: SDPVTL[1]  
+	00254: SFVTCA[x-axis] 
+	00255: RDTG       
+	00256: MDRP[nrp0,nmd,rd,0] 
+	00257: RTG        
+	00258: SVTCA[y-axis] 
+	00259: SRP0       
+	00260: MIRP[srp0,md,rd,1] 
+	00261: RTDG       
+	00262: SRP2       
+	00263: IP         
+	00264: MDAP[rd]   
+	00265: RTG        
+	00266: SVTCA[x-axis] 
+	00267: SRP0       
+	00268: MIRP[srp0,nmd,rd,1] 
+	00269: MIRP[srp0,nmd,rd,0] 
+	00270: MDRP[nrp0,nmd,rd,0] 
+	00271: SVTCA[y-axis] 
+	00272: SRP0       
+	00273: MIRP[srp0,md,rd,1] 
+	00274: RTDG       
+	00275: SRP2       
+	00276: IP         
+	00277: MDAP[rd]   
+	00278: RTG        
+	00279: SVTCA[x-axis] 
+	00280: SRP0       
+	00281: MIRP[srp0,nmd,rd,1] 
+	00282: MIRP[srp0,nmd,rd,0] 
+	00283: MDRP[nrp0,nmd,rd,0] 
+	00284: SVTCA[y-axis] 
+	00285: SFVTL[=p1,p2] 
+	00286: SRP0       
+	00287: MIRP[srp0,md,rd,1] 
+	00288: RTDG       
+	00289: SRP2       
+	00290: IP         
+	00291: MDAP[rd]   
+	00292: RTG        
+	00293: SVTCA[x-axis] 
+	00294: SRP0       
+	00295: MIRP[srp0,nmd,nrd,1] 
+	00296: DELTAP1    
+	00297: MDAP[rd]   
+	00298: MIRP[srp0,nmd,rd,0] 
+	00299: MDRP[nrp0,nmd,rd,0] 
+	00300: SVTCA[y-axis] 
+	00301: SFVTL[=p1,p2] 
+	00302: SRP0       
+	00303: MIRP[srp0,md,rd,1] 
+	00304: RTDG       
+	00305: SRP2       
+	00306: IP         
+	00307: MDAP[rd]   
+	00308: RTG        
+	00309: SVTCA[x-axis] 
+	00310: SRP0       
+	00311: MIRP[srp0,nmd,nrd,1] 
+	00312: MDAP[rd]   
+	00313: MIRP[srp0,nmd,rd,0] 
+	00314: MDRP[nrp0,nmd,rd,0] 
+	00315: SVTCA[y-axis] 
+	00316: SFVTL[=p1,p2] 
+	00317: SRP0       
+	00318: MIRP[srp0,md,rd,1] 
+	00319: RTDG       
+	00320: SRP2       
+	00321: IP         
+	00322: MDAP[rd]   
+	00323: RTG        
+	00324: SVTCA[x-axis] 
+	00325: SRP0       
+	00326: MIRP[srp0,nmd,nrd,1] 
+	00327: DELTAP1    
+	00328: MDAP[rd]   
+	00329: MIRP[srp0,nmd,rd,0] 
+	00330: MDRP[nrp0,nmd,rd,0] 
+	00331: SRP0       
+	00332: MIRP[srp0,nmd,rd,2] 
+	00333: DELTAP1    
+	00334: MIRP[nrp0,md,rd,1] 
+	00335: SHP[rp1,zp0] 
+	00336: MDAP[rd]   
+	00337: DELTAP2    
+	00338: MIRP[nrp0,md,rd,1] 
+	00339: SVTCA[y-axis] 
+	00340: SRP0       
+	00341: ALIGNRP    
+	00342: SRP1       
+	00343: SHP[rp1,zp0] 
+	00344: MDAP[rd]   
+	00345: SRP2       
+	00346: SLOOP      
+	00347: IP         
+	00348: IUP[y]     
+	00349: IUP[x]     
+	00350: SVTCA[x-axis] 
+	00351: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:                              X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual                 X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                                      On
+	 15:        XDual                         On
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                               On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short On
+	 27:        XDual                         On
+	 28:                                      On
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short On
+	 36:                                      On
+	 37:                                      On
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   178,  1107)  ->  Abs (   178,  1107)
+	  1: Rel (   -50,  -308)  ->  Abs (   128,   799)
+	  2: Rel (    -8,   -50)  ->  Abs (   120,   749)
+	  3: Rel (   -35,     0)  ->  Abs (    85,   749)
+	  4: Rel (   -43,     0)  ->  Abs (    42,   749)
+	  5: Rel (     0,    38)  ->  Abs (    42,   787)
+	  6: Rel (     0,     8)  ->  Abs (    42,   795)
+	  7: Rel (     3,    17)  ->  Abs (    45,   812)
+	  8: Rel (    49,   309)  ->  Abs (    94,  1121)
+	  9: Rel (     8,    49)  ->  Abs (   102,  1170)
+	 10: Rel (    36,     0)  ->  Abs (   138,  1170)
+	 11: Rel (    42,     0)  ->  Abs (   180,  1170)
+	 12: Rel (     0,   -41)  ->  Abs (   180,  1129)
+	 13: Rel (     0,    -9)  ->  Abs (   180,  1120)
+	 14: Rel (   528,  -592)  ->  Abs (   708,   528)
+	 15: Rel (     0,  -444)  ->  Abs (   708,    84)
+	 16: Rel (   218,     0)  ->  Abs (   926,    84)
+	 17: Rel (    57,     0)  ->  Abs (   983,    84)
+	 18: Rel (     0,   -42)  ->  Abs (   983,    42)
+	 19: Rel (     0,   -42)  ->  Abs (   983,     0)
+	 20: Rel (   -57,     0)  ->  Abs (   926,     0)
+	 21: Rel (  -520,     0)  ->  Abs (   406,     0)
+	 22: Rel (   -57,     0)  ->  Abs (   349,     0)
+	 23: Rel (     0,    42)  ->  Abs (   349,    42)
+	 24: Rel (     0,    42)  ->  Abs (   349,    84)
+	 25: Rel (    57,     0)  ->  Abs (   406,    84)
+	 26: Rel (   218,     0)  ->  Abs (   624,    84)
+	 27: Rel (     0,   444)  ->  Abs (   624,   528)
+	 28: Rel (  -370,   558)  ->  Abs (   254,  1086)
+	 29: Rel (     0,    84)  ->  Abs (   254,  1170)
+	 30: Rel (   181,     0)  ->  Abs (   435,  1170)
+	 31: Rel (    57,     0)  ->  Abs (   492,  1170)
+	 32: Rel (     0,   -42)  ->  Abs (   492,  1128)
+	 33: Rel (     0,   -42)  ->  Abs (   492,  1086)
+	 34: Rel (   -57,     0)  ->  Abs (   435,  1086)
+	 35: Rel (   -82,     0)  ->  Abs (   353,  1086)
+	 36: Rel (   313,  -473)  ->  Abs (   666,   613)
+	 37: Rel (   308,   473)  ->  Abs (   974,  1086)
+	 38: Rel (   -83,     0)  ->  Abs (   891,  1086)
+	 39: Rel (   -56,     0)  ->  Abs (   835,  1086)
+	 40: Rel (     0,    42)  ->  Abs (   835,  1128)
+	 41: Rel (     0,    42)  ->  Abs (   835,  1170)
+	 42: Rel (    56,     0)  ->  Abs (   891,  1170)
+	 43: Rel (   230,     0)  ->  Abs (  1121,  1170)
+	 44: Rel (    57,     0)  ->  Abs (  1178,  1170)
+	 45: Rel (     0,   -42)  ->  Abs (  1178,  1128)
+	 46: Rel (     0,   -42)  ->  Abs (  1178,  1086)
+	 47: Rel (   -57,     0)  ->  Abs (  1121,  1086)
+	 48: Rel (   -49,     0)  ->  Abs (  1072,  1086)
+
+	Glyph 503: off = 0x0001AC4C, len = 458
+	  numberOfContours:	2
+	  xMin:			-44
+	  yMin:			0
+	  xMax:			1202
+	  yMax:			1197
+
+	EndPoints
+	---------
+	  0:  43
+	  1:  57
+
+	  Length of Instructions:	291
+	00000: PUSHW[2]             26   -64 
+	00005: PUSHB[4]             25    31    52    34 
+	00010: PUSHW[1]            -64 
+	00013: NPUSHB      (14):    25    31    52    28    32    12    31    52    32    32 
+	                            12    31    52    26 
+	00029: PUSHW[1]            -64 
+	00032: PUSHB[4]             19    24    52    34 
+	00037: PUSHW[1]            -64 
+	00040: PUSHB[4]             19    24    52    26 
+	00045: PUSHW[1]            -52 
+	00048: PUSHB[4]             12    16    52    34 
+	00053: PUSHW[1]            -52 
+	00056: NPUSHB      (82):    12    16    52    49    45    52    56     4    54    47 
+	                            47    54     2    45    38    49    49    52    38   192 
+	                            56   208    56     2    56    56     5    15     1     0 
+	                            19     0    41    16    41    32    41    48    41     4 
+	                            41    41     0    24     0    36     1    36    37    14 
+	                             2   207     0    16    15    15     1     1     0    38 
+	                            38    22    23    23    37    37    38     8    30    37 
+	                             8     3    15    14    30    23    63    24   127    24 
+	                             2    24 
+	00140: PUSHW[1]            737 
+	00143: NPUSHB      (30):    11    17    16    30    21    22    22    27    37     0 
+	                            11     1   224    11   240    11     2    11     1     2 
+	                            30    37    48    36   112    36   192    36     3    36 
+	00175: PUSHW[1]            737 
+	00178: NPUSHB      (23):     5    43     0    30    39    38    38    33    37     5 
+	                            64    21    32    52    15     5    31     5     2     5 
+	                            67   108    24 
+	00203: CALL       
+	00204: MDAP[rd]   
+	00205: DELTAP1    
+	00206: CALL       
+	00207: MIRP[nrp0,md,rd,1] 
+	00208: SHP[rp1,zp0] 
+	00209: MDAP[rd]   
+	00210: ALIGNRP    
+	00211: MIRP[srp0,md,rd,1] 
+	00212: ALIGNRP    
+	00213: SRP0       
+	00214: MIRP[srp0,md,rd,1] 
+	00215: DELTAP1    
+	00216: ALIGNRP    
+	00217: MIRP[srp0,md,rd,1] 
+	00218: ALIGNRP    
+	00219: MDAP[rd]   
+	00220: DELTAP1    
+	00221: DELTAP2    
+	00222: MIRP[nrp0,md,rd,1] 
+	00223: SHP[rp1,zp0] 
+	00224: MDAP[rd]   
+	00225: ALIGNRP    
+	00226: MIRP[srp0,md,rd,1] 
+	00227: ALIGNRP    
+	00228: SRP0       
+	00229: MIRP[srp0,md,rd,1] 
+	00230: DELTAP1    
+	00231: ALIGNRP    
+	00232: MIRP[srp0,md,rd,1] 
+	00233: ALIGNRP    
+	00234: SVTCA[y-axis] 
+	00235: MIAP[rd+ci] 
+	00236: MIRP[nrp0,md,rd,1] 
+	00237: MIAP[rd+ci] 
+	00238: ALIGNRP    
+	00239: SRP0       
+	00240: ALIGNRP    
+	00241: SRP0       
+	00242: ALIGNRP    
+	00243: SRP0       
+	00244: MIRP[srp0,md,rd,1] 
+	00245: ALIGNRP    
+	00246: SRP0       
+	00247: ALIGNRP    
+	00248: SRP0       
+	00249: ALIGNRP    
+	00250: SRP0       
+	00251: MIRP[srp0,md,rd,2] 
+	00252: ALIGNRP    
+	00253: MIRP[srp0,md,rd,1] 
+	00254: DELTAP1    
+	00255: ALIGNRP    
+	00256: SRP1       
+	00257: SHP[rp1,zp0] 
+	00258: MDAP[rd]   
+	00259: DELTAP1    
+	00260: ALIGNRP    
+	00261: SRP0       
+	00262: ALIGNRP    
+	00263: ALIGNRP    
+	00264: SVTCA[x-axis] 
+	00265: SRP0       
+	00266: ALIGNRP    
+	00267: SRP0       
+	00268: DELTAP1    
+	00269: MIRP[nrp0,md,rd,1] 
+	00270: SHP[rp1,zp0] 
+	00271: MDAP[rd]   
+	00272: MIRP[nrp0,md,rd,1] 
+	00273: SVTCA[y-axis] 
+	00274: MIAP[rd+ci] 
+	00275: SHP[rp1,zp0] 
+	00276: MDAP[rd]   
+	00277: SRP2       
+	00278: SLOOP      
+	00279: IP         
+	00280: IUP[y]     
+	00281: IUP[x]     
+	00282: SVTCA[y-axis] 
+	00283: CALL       
+	00284: CALL       
+	00285: CALL       
+	00286: CALL       
+	00287: CALL       
+	00288: CALL       
+	00289: CALL       
+	00290: CALL       
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual               Y-Short X-Short Off
+	  4:                              X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:                                      Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:                                      Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                              X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:        XDual         Y-Short         On
+	 16:  YDual                               On
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         On
+	 23:  YDual                               On
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:                              X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:                              X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short X-Short On
+	 37:        XDual         Y-Short         On
+	 38:  YDual                               On
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:                              X-Short On
+	 45:                              X-Short On
+	 46:                      Y-Short X-Short Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short Off
+	 49:  YDual XDual         Y-Short         On
+	 50:  YDual XDual         Y-Short         Off
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:        XDual                 X-Short On
+	 53:  YDual XDual         Y-Short X-Short Off
+	 54:  YDual XDual                 X-Short On
+	 55:  YDual XDual                 X-Short Off
+	 56:        XDual         Y-Short         On
+	 57:        XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   178,    84)  ->  Abs (   178,    84)
+	  1: Rel (   281,     0)  ->  Abs (   459,    84)
+	  2: Rel (     0,    85)  ->  Abs (   459,   169)
+	  3: Rel (  -183,    49)  ->  Abs (   276,   218)
+	  4: Rel (  -182,   260)  ->  Abs (    94,   478)
+	  5: Rel (     0,   178)  ->  Abs (    94,   656)
+	  6: Rel (     0,   235)  ->  Abs (    94,   891)
+	  7: Rel (   325,   306)  ->  Abs (   419,  1197)
+	  8: Rel (   229,     0)  ->  Abs (   648,  1197)
+	  9: Rel (   229,     0)  ->  Abs (   877,  1197)
+	 10: Rel (   325,  -306)  ->  Abs (  1202,   891)
+	 11: Rel (     0,  -235)  ->  Abs (  1202,   656)
+	 12: Rel (     0,  -171)  ->  Abs (  1202,   485)
+	 13: Rel (  -174,  -264)  ->  Abs (  1028,   221)
+	 14: Rel (  -191,   -52)  ->  Abs (   837,   169)
+	 15: Rel (     0,   -85)  ->  Abs (   837,    84)
+	 16: Rel (   281,     0)  ->  Abs (  1118,    84)
+	 17: Rel (     0,    64)  ->  Abs (  1118,   148)
+	 18: Rel (     0,    56)  ->  Abs (  1118,   204)
+	 19: Rel (    42,     0)  ->  Abs (  1160,   204)
+	 20: Rel (    42,     0)  ->  Abs (  1202,   204)
+	 21: Rel (     0,   -56)  ->  Abs (  1202,   148)
+	 22: Rel (     0,  -148)  ->  Abs (  1202,     0)
+	 23: Rel (  -449,     0)  ->  Abs (   753,     0)
+	 24: Rel (     0,   237)  ->  Abs (   753,   237)
+	 25: Rel (   180,    29)  ->  Abs (   933,   266)
+	 26: Rel (   184,   226)  ->  Abs (  1117,   492)
+	 27: Rel (     0,   163)  ->  Abs (  1117,   655)
+	 28: Rel (     0,   177)  ->  Abs (  1117,   832)
+	 29: Rel (  -238,   281)  ->  Abs (   879,  1113)
+	 30: Rel (  -231,     0)  ->  Abs (   648,  1113)
+	 31: Rel (  -230,     0)  ->  Abs (   418,  1113)
+	 32: Rel (  -239,  -280)  ->  Abs (   179,   833)
+	 33: Rel (     0,  -178)  ->  Abs (   179,   655)
+	 34: Rel (     0,  -164)  ->  Abs (   179,   491)
+	 35: Rel (   182,  -222)  ->  Abs (   361,   269)
+	 36: Rel (   183,   -32)  ->  Abs (   544,   237)
+	 37: Rel (     0,  -237)  ->  Abs (   544,     0)
+	 38: Rel (  -450,     0)  ->  Abs (    94,     0)
+	 39: Rel (     0,   148)  ->  Abs (    94,   148)
+	 40: Rel (     0,    56)  ->  Abs (    94,   204)
+	 41: Rel (    42,     0)  ->  Abs (   136,   204)
+	 42: Rel (    42,     0)  ->  Abs (   178,   204)
+	 43: Rel (     0,   -56)  ->  Abs (   178,   148)
+	 44: Rel (   -86,   959)  ->  Abs (    92,  1107)
+	 45: Rel (   -50,  -308)  ->  Abs (    42,   799)
+	 46: Rel (    -8,   -50)  ->  Abs (    34,   749)
+	 47: Rel (   -35,     0)  ->  Abs (    -1,   749)
+	 48: Rel (   -43,     0)  ->  Abs (   -44,   749)
+	 49: Rel (     0,    38)  ->  Abs (   -44,   787)
+	 50: Rel (     0,     8)  ->  Abs (   -44,   795)
+	 51: Rel (     3,    17)  ->  Abs (   -41,   812)
+	 52: Rel (    49,   309)  ->  Abs (     8,  1121)
+	 53: Rel (     8,    49)  ->  Abs (    16,  1170)
+	 54: Rel (    36,     0)  ->  Abs (    52,  1170)
+	 55: Rel (    42,     0)  ->  Abs (    94,  1170)
+	 56: Rel (     0,   -41)  ->  Abs (    94,  1129)
+	 57: Rel (     0,    -9)  ->  Abs (    94,  1120)
+
+	Glyph 504: off = 0x0001AE16, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			242
+	  yMin:			-33
+	  xMax:			942
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	538
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	496
+		X BOffset:	-22
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              3     2     1    25    16 
+	00006: PUSHW[1]            -50 
+	00009: PUSHB[7]             72    43     1     2     3     3    37 
+	00017: PUSHW[2]            652    41 
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+	00026: SHC[rp1,zp0] 
+	00027: SHC[rp1,zp0] 
+	00028: SHC[rp1,zp0] 
+
+	Glyph 505: off = 0x0001AE4C, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 506: off = 0x0001AE5C, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			87
+	  yMin:			0
+	  xMax:			1113
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	37
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 507: off = 0x0001AE6C, len = 180
+	  numberOfContours:	2
+	  xMin:			101
+	  yMin:			0
+	  xMax:			1127
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	134
+	00000: NPUSHB      (58):   102     1   105     2   105     3   105     5   105     6 
+	                           103     7   120     5   119     6     8     5     4     4 
+	                            30     0     3    20     0     0     3     6     7     7 
+	                            30     1     2    20     1     1     2     5     6    38 
+	                             3     2     2     4     7    38     0     1     8     4 
+	                             3     0   111     0   127     0     2     0 
+	00060: PUSHW[1]            367 
+	00063: PUSHB[8]              3     7     2   160     1     1     1     1 
+	00072: PUSHW[1]            367 
+	00075: NPUSHB      (13):     5     6     3   233    79     2   143     2     2     2 
+	                            67   122    24 
+	00090: CALL       
+	00091: MDAP[rd]   
+	00092: DELTAP1    
+	00093: MIRP[nrp0,nmd,rd,2] 
+	00094: SHP[rp1,zp0] 
+	00095: SHP[rp2,zp1] 
+	00096: MIRP[srp0,nmd,rd,0] 
+	00097: MDAP[rd]   
+	00098: DELTAP1    
+	00099: SRP1       
+	00100: IP         
+	00101: SRP0       
+	00102: MIRP[srp0,nmd,rd,0] 
+	00103: DELTAP1    
+	00104: MDAP[rd]   
+	00105: SRP2       
+	00106: IP         
+	00107: SVTCA[y-axis] 
+	00108: MIAP[rd+ci] 
+	00109: ALIGNRP    
+	00110: MIRP[srp0,md,rd,1] 
+	00111: ALIGNRP    
+	00112: MIAP[rd+ci] 
+	00113: ALIGNRP    
+	00114: MIRP[srp0,md,rd,1] 
+	00115: ALIGNRP    
+	00116: SDPVTL[1]  
+	00117: SFVTCA[x-axis] 
+	00118: MDAP[nrd]  
+	00119: CALL       
+	00120: RDTG       
+	00121: SRP0       
+	00122: MDRP[nrp0,nmd,rd,0] 
+	00123: SDPVTL[1]  
+	00124: MDAP[nrd]  
+	00125: RTG        
+	00126: CALL       
+	00127: RDTG       
+	00128: SRP0       
+	00129: MDRP[nrp0,nmd,rd,0] 
+	00130: IUP[y]     
+	00131: IUP[x]     
+	00132: SVTCA[x-axis] 
+	00133: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                               On
+	  2:                                      On
+	  3:  YDual XDual                 X-Short On
+	  4:                                      On
+	  5:                                      On
+	  6:  YDual                       X-Short On
+	  7:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (  1127,     0)  ->  Abs (  1127,     0)
+	  1: Rel ( -1026,     0)  ->  Abs (   101,     0)
+	  2: Rel (   433,  1170)  ->  Abs (   534,  1170)
+	  3: Rel (   143,     0)  ->  Abs (   677,  1170)
+	  4: Rel (   323, -1086)  ->  Abs (  1000,    84)
+	  5: Rel (  -379,  1002)  ->  Abs (   621,  1086)
+	  6: Rel (   -31,     0)  ->  Abs (   590,  1086)
+	  7: Rel (  -371, -1002)  ->  Abs (   219,    84)
+
+	Glyph 508: off = 0x0001AF20, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 509: off = 0x0001AF30, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			213
+	  yMin:			0
+	  xMax:			1022
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	61
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 510: off = 0x0001AF40, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			107
+	  yMin:			0
+	  xMax:			1135
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	43
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 511: off = 0x0001AF50, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			229
+	  yMin:			0
+	  xMax:			1001
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 512: off = 0x0001AF60, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			89
+	  yMin:			0
+	  xMax:			1177
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	46
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 513: off = 0x0001AF70, len = 444
+	  numberOfContours:	1
+	  xMin:			15
+	  yMin:			0
+	  xMax:			1213
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  32
+
+	  Length of Instructions:	349
+	00000: NPUSHB      (58):    15     0     2     1     0     8     1     9     2    10 
+	                             1    11     2    14    12    20    29     0    19     1 
+	                            19    14    25    20    26    21    26    32   106     0 
+	                           100     1   100    14   106    20    18     0    17    15 
+	                            27    15    29    15    31    16    17    31    27    31 
+	                            29    31    31    96    17     9    19    15 
+	00060: PUSHW[1]            676 
+	00063: NPUSHB      (14):    17    17    86    14    17    17    15    14    29    19 
+	                            14    13    26    22 
+	00079: PUSHW[1]            676 
+	00082: NPUSHB      (22):   128    24     1   208    24   240    24     2    24    24 
+	                            41    21    24    24    22    21    29    26    21    20 
+	                            27    31 
+	00106: PUSHW[1]            676 
+	00109: NPUSHB      (14):    29    29    51    32    29    29    31    32    29    27 
+	                            32     0     7     3 
+	00125: PUSHW[1]            676 
+	00128: NPUSHB      (14):     5     5    51     2     5     5     3     2    29     7 
+	                             2     1     8    12 
+	00144: PUSHW[1]            676 
+	00147: NPUSHB      (77):   143    10     1   207    10   223    10     2    10    10 
+	                            41    13    10    10    12    13    29     8    13    14 
+	                             0    32    32    30    21    20    20    21    21    20 
+	                             1     2     2    30    13    14    20    13    13    14 
+	                            26    27    27     7     7     8     8    15    14    14 
+	                             1     1     0    38    19    20     2    14     1     0 
+	                            20     4    13    32    21     2    79    13    95    13 
+	                           111    13     3    13   194   121    24 
+	00226: CALL       
+	00227: MDAP[rd]   
+	00228: DELTAP1    
+	00229: SHP[rp1,zp0] 
+	00230: MDAP[rd]   
+	00231: SHP[rp1,zp0] 
+	00232: SRP2       
+	00233: SLOOP      
+	00234: IP         
+	00235: SVTCA[y-axis] 
+	00236: MIAP[rd+ci] 
+	00237: ALIGNRP    
+	00238: MIRP[srp0,md,rd,1] 
+	00239: ALIGNRP    
+	00240: SRP0       
+	00241: ALIGNRP    
+	00242: SRP0       
+	00243: ALIGNRP    
+	00244: MIAP[rd+ci] 
+	00245: ALIGNRP    
+	00246: SRP0       
+	00247: ALIGNRP    
+	00248: SRP0       
+	00249: ALIGNRP    
+	00250: SDPVTL[1]  
+	00251: SFVTCA[x-axis] 
+	00252: MDAP[nrd]  
+	00253: CALL       
+	00254: RDTG       
+	00255: SRP0       
+	00256: MDRP[nrp0,nmd,rd,0] 
+	00257: SDPVTL[1]  
+	00258: MDAP[nrd]  
+	00259: RTG        
+	00260: CALL       
+	00261: RDTG       
+	00262: SRP0       
+	00263: MDRP[nrp0,nmd,rd,0] 
+	00264: RTG        
+	00265: SVTCA[y-axis] 
+	00266: SFVTL[=p1,p2] 
+	00267: SRP0       
+	00268: MIRP[srp0,md,rd,1] 
+	00269: RTDG       
+	00270: SRP2       
+	00271: IP         
+	00272: MDAP[rd]   
+	00273: RTG        
+	00274: SVTCA[x-axis] 
+	00275: SRP0       
+	00276: MIRP[srp0,nmd,nrd,1] 
+	00277: MDAP[rd]   
+	00278: DELTAP1    
+	00279: DELTAP2    
+	00280: MIRP[srp0,nmd,rd,0] 
+	00281: MDRP[nrp0,nmd,rd,0] 
+	00282: SVTCA[y-axis] 
+	00283: SFVTL[=p1,p2] 
+	00284: SRP0       
+	00285: MIRP[srp0,md,rd,1] 
+	00286: RTDG       
+	00287: SRP2       
+	00288: IP         
+	00289: MDAP[rd]   
+	00290: RTG        
+	00291: SVTCA[x-axis] 
+	00292: SRP0       
+	00293: MIRP[srp0,nmd,nrd,1] 
+	00294: MDAP[rd]   
+	00295: MIRP[srp0,nmd,rd,0] 
+	00296: MDRP[nrp0,nmd,rd,0] 
+	00297: SVTCA[y-axis] 
+	00298: SFVTL[=p1,p2] 
+	00299: SRP0       
+	00300: MIRP[srp0,md,rd,1] 
+	00301: RTDG       
+	00302: SRP2       
+	00303: IP         
+	00304: MDAP[rd]   
+	00305: RTG        
+	00306: SVTCA[x-axis] 
+	00307: SRP0       
+	00308: MIRP[srp0,nmd,nrd,1] 
+	00309: MDAP[rd]   
+	00310: MIRP[srp0,nmd,rd,0] 
+	00311: MDRP[nrp0,nmd,rd,0] 
+	00312: SVTCA[y-axis] 
+	00313: SFVTL[=p1,p2] 
+	00314: SRP0       
+	00315: MIRP[srp0,md,rd,1] 
+	00316: RTDG       
+	00317: SRP2       
+	00318: IP         
+	00319: MDAP[rd]   
+	00320: RTG        
+	00321: SVTCA[x-axis] 
+	00322: SRP0       
+	00323: MIRP[srp0,nmd,nrd,1] 
+	00324: MDAP[rd]   
+	00325: DELTAP1    
+	00326: DELTAP2    
+	00327: MIRP[srp0,nmd,rd,0] 
+	00328: MDRP[nrp0,nmd,rd,0] 
+	00329: SVTCA[y-axis] 
+	00330: SFVTL[=p1,p2] 
+	00331: SRP0       
+	00332: MIRP[srp0,md,rd,1] 
+	00333: RTDG       
+	00334: SRP2       
+	00335: IP         
+	00336: MDAP[rd]   
+	00337: RTG        
+	00338: SVTCA[x-axis] 
+	00339: SRP0       
+	00340: MIRP[srp0,nmd,nrd,1] 
+	00341: MDAP[rd]   
+	00342: MIRP[srp0,nmd,rd,0] 
+	00343: MDRP[nrp0,nmd,rd,0] 
+	00344: DELTAP1    
+	00345: IUP[y]     
+	00346: IUP[x]     
+	00347: SVTCA[x-axis] 
+	00348: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:                                      On
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                               On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short On
+	 14:                                      On
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual                               On
+	 21:                                      On
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                               On
+	 28:  YDual                       X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   625,  1086)  ->  Abs (   625,  1086)
+	  1: Rel (   -31,     0)  ->  Abs (   594,  1086)
+	  2: Rel (  -370, -1002)  ->  Abs (   224,    84)
+	  3: Rel (   161,     0)  ->  Abs (   385,    84)
+	  4: Rel (    56,     0)  ->  Abs (   441,    84)
+	  5: Rel (     0,   -42)  ->  Abs (   441,    42)
+	  6: Rel (     0,   -42)  ->  Abs (   441,     0)
+	  7: Rel (   -56,     0)  ->  Abs (   385,     0)
+	  8: Rel (  -314,     0)  ->  Abs (    71,     0)
+	  9: Rel (   -56,     0)  ->  Abs (    15,     0)
+	 10: Rel (     0,    42)  ->  Abs (    15,    42)
+	 11: Rel (     0,    42)  ->  Abs (    15,    84)
+	 12: Rel (    56,     0)  ->  Abs (    71,    84)
+	 13: Rel (    65,     0)  ->  Abs (   136,    84)
+	 14: Rel (   371,  1002)  ->  Abs (   507,  1086)
+	 15: Rel (  -248,     0)  ->  Abs (   259,  1086)
+	 16: Rel (   -56,     0)  ->  Abs (   203,  1086)
+	 17: Rel (     0,    42)  ->  Abs (   203,  1128)
+	 18: Rel (     0,    42)  ->  Abs (   203,  1170)
+	 19: Rel (    56,     0)  ->  Abs (   259,  1170)
+	 20: Rel (   423,     0)  ->  Abs (   682,  1170)
+	 21: Rel (   410, -1086)  ->  Abs (  1092,    84)
+	 22: Rel (    65,     0)  ->  Abs (  1157,    84)
+	 23: Rel (    56,     0)  ->  Abs (  1213,    84)
+	 24: Rel (     0,   -42)  ->  Abs (  1213,    42)
+	 25: Rel (     0,   -42)  ->  Abs (  1213,     0)
+	 26: Rel (   -56,     0)  ->  Abs (  1157,     0)
+	 27: Rel (  -313,     0)  ->  Abs (   844,     0)
+	 28: Rel (   -57,     0)  ->  Abs (   787,     0)
+	 29: Rel (     0,    42)  ->  Abs (   787,    42)
+	 30: Rel (     0,    42)  ->  Abs (   787,    84)
+	 31: Rel (    57,     0)  ->  Abs (   844,    84)
+	 32: Rel (   160,     0)  ->  Abs (  1004,    84)
+
+	Glyph 514: off = 0x0001B12C, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			24
+	  yMin:			0
+	  xMax:			1216
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	48
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 515: off = 0x0001B13C, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			46
+	  yMin:			0
+	  xMax:			1153
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	49
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 516: off = 0x0001B14C, len = 456
+	  numberOfContours:	3
+	  xMin:			147
+	  yMin:			0
+	  xMax:			1082
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  37
+	  2:  51
+
+	  Length of Instructions:	315
+	00000: PUSHB[8]             15    26    25    14    27    28     9    13 
+	00009: PUSHW[1]            676 
+	00012: NPUSHB      (11):    11    53     0    11    11    13     0    29     9     6 
+	                             2 
+	00025: PUSHW[1]            676 
+	00028: NPUSHB      (11):     4    53     1     4     4     2     1    29     6    44 
+	                            40 
+	00041: PUSHW[1]            676 
+	00044: NPUSHB      (11):    42    53    39    42    42    40    39    29    44    47 
+	                            51 
+	00057: PUSHW[1]            676 
+	00060: NPUSHB      (11):    49    53    38    49    49    51    38    29    47    18 
+	                            35 
+	00073: PUSHW[1]            -64 
+	00076: NPUSHB      (52):     9    10    52    32    35    48    35     2    35    35 
+	                            23    30    64     9    10    52    47    30    63    30 
+	                             2    30    30    15    14    38    26    27    27     1 
+	                            39    38    38    45    46     8     0     1    38     8 
+	                             7     2    16    25    30    20    47    21    63    21 
+	                             2    21 
+	00130: PUSHW[1]            300 
+	00133: NPUSHB      (30):    39     0    13    13    40    40    39    30    45     8 
+	                             9     9    44    44    79    45    95    45     2    45 
+	                            37    28    30    33    32    32    48    32     2    32 
+	00165: PUSHW[1]            300 
+	00168: NPUSHB      (18):    38     1     2     2    51    51    38    30    46     7 
+	                             6     6    47    47    46   194   111    24 
+	00188: CALL       
+	00189: MDAP[rd]   
+	00190: ALIGNRP    
+	00191: SRP0       
+	00192: ALIGNRP    
+	00193: SRP0       
+	00194: ALIGNRP    
+	00195: SRP0       
+	00196: MIRP[srp0,md,rd,1] 
+	00197: ALIGNRP    
+	00198: SRP0       
+	00199: ALIGNRP    
+	00200: SRP0       
+	00201: ALIGNRP    
+	00202: SRP0       
+	00203: MIRP[srp0,nmd,rd,2] 
+	00204: DELTAP1    
+	00205: ALIGNRP    
+	00206: MIRP[srp0,md,rd,1] 
+	00207: ALIGNRP    
+	00208: MDAP[rd]   
+	00209: DELTAP1    
+	00210: ALIGNRP    
+	00211: SRP0       
+	00212: ALIGNRP    
+	00213: SRP0       
+	00214: ALIGNRP    
+	00215: SRP0       
+	00216: MIRP[srp0,md,rd,1] 
+	00217: ALIGNRP    
+	00218: SRP0       
+	00219: ALIGNRP    
+	00220: SRP0       
+	00221: ALIGNRP    
+	00222: SRP0       
+	00223: MIRP[srp0,nmd,rd,2] 
+	00224: DELTAP1    
+	00225: ALIGNRP    
+	00226: MIRP[srp0,md,rd,1] 
+	00227: ALIGNRP    
+	00228: SVTCA[y-axis] 
+	00229: MIAP[rd+ci] 
+	00230: ALIGNRP    
+	00231: MIRP[srp0,md,rd,1] 
+	00232: ALIGNRP    
+	00233: MIAP[rd+ci] 
+	00234: ALIGNRP    
+	00235: MIRP[srp0,md,rd,1] 
+	00236: ALIGNRP    
+	00237: SRP1       
+	00238: IP         
+	00239: MDAP[rd]   
+	00240: ALIGNRP    
+	00241: MIRP[srp0,md,rd,1] 
+	00242: ALIGNRP    
+	00243: SHP[rp1,zp0] 
+	00244: MDAP[rd]   
+	00245: DELTAP1    
+	00246: CALL       
+	00247: ALIGNRP    
+	00248: SHP[rp2,zp1] 
+	00249: MDAP[rd]   
+	00250: DELTAP1    
+	00251: CALL       
+	00252: ALIGNRP    
+	00253: SVTCA[x-axis] 
+	00254: SRP0       
+	00255: MIRP[srp0,md,rd,1] 
+	00256: RTDG       
+	00257: SRP2       
+	00258: IP         
+	00259: MDAP[rd]   
+	00260: RTG        
+	00261: SVTCA[y-axis] 
+	00262: SRP0       
+	00263: MIRP[srp0,nmd,rd,1] 
+	00264: MIRP[srp0,nmd,rd,0] 
+	00265: MDRP[nrp0,nmd,rd,0] 
+	00266: SVTCA[x-axis] 
+	00267: SRP0       
+	00268: MIRP[srp0,md,rd,1] 
+	00269: RTDG       
+	00270: SRP2       
+	00271: IP         
+	00272: MDAP[rd]   
+	00273: RTG        
+	00274: SVTCA[y-axis] 
+	00275: SRP0       
+	00276: MIRP[srp0,nmd,rd,1] 
+	00277: MIRP[srp0,nmd,rd,0] 
+	00278: MDRP[nrp0,nmd,rd,0] 
+	00279: SVTCA[x-axis] 
+	00280: SRP0       
+	00281: MIRP[srp0,md,rd,1] 
+	00282: RTDG       
+	00283: SRP2       
+	00284: IP         
+	00285: MDAP[rd]   
+	00286: RTG        
+	00287: SVTCA[y-axis] 
+	00288: SRP0       
+	00289: MIRP[srp0,nmd,rd,1] 
+	00290: MIRP[srp0,nmd,rd,0] 
+	00291: MDRP[nrp0,nmd,rd,0] 
+	00292: SVTCA[x-axis] 
+	00293: SRP0       
+	00294: MIRP[srp0,md,rd,1] 
+	00295: RTDG       
+	00296: SRP2       
+	00297: IP         
+	00298: MDAP[rd]   
+	00299: RTG        
+	00300: SVTCA[y-axis] 
+	00301: SRP0       
+	00302: MIRP[srp0,nmd,rd,1] 
+	00303: MIRP[srp0,nmd,rd,0] 
+	00304: MDRP[nrp0,nmd,rd,0] 
+	00305: SPVTCA[x-axis] 
+	00306: SFVTCA[x-axis] 
+	00307: SRP0       
+	00308: ALIGNRP    
+	00309: ALIGNRP    
+	00310: SRP0       
+	00311: ALIGNRP    
+	00312: ALIGNRP    
+	00313: IUP[y]     
+	00314: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:        XDual                         On
+	  8:  YDual                               On
+	  9:        XDual                         On
+	 10:        XDual         Y-Short         Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:                      Y-Short         On
+	 15:  YDual                               On
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual                         On
+	 22:        XDual         Y-Short         Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual                               On
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:        XDual                         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:                              X-Short On
+	 39:  YDual                               On
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:        XDual         Y-Short         On
+	 45:        XDual                         On
+	 46:  YDual                               On
+	 47:        XDual                         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   997,  1086)  ->  Abs (   997,  1086)
+	  1: Rel (  -766,     0)  ->  Abs (   231,  1086)
+	  2: Rel (     0,  -205)  ->  Abs (   231,   881)
+	  3: Rel (     0,   -57)  ->  Abs (   231,   824)
+	  4: Rel (   -42,     0)  ->  Abs (   189,   824)
+	  5: Rel (   -42,     0)  ->  Abs (   147,   824)
+	  6: Rel (     0,    57)  ->  Abs (   147,   881)
+	  7: Rel (     0,   289)  ->  Abs (   147,  1170)
+	  8: Rel (   935,     0)  ->  Abs (  1082,  1170)
+	  9: Rel (     0,  -289)  ->  Abs (  1082,   881)
+	 10: Rel (     0,   -57)  ->  Abs (  1082,   824)
+	 11: Rel (   -43,     0)  ->  Abs (  1039,   824)
+	 12: Rel (   -42,     0)  ->  Abs (   997,   824)
+	 13: Rel (     0,    57)  ->  Abs (   997,   881)
+	 14: Rel (  -575,  -254)  ->  Abs (   422,   627)
+	 15: Rel (   385,     0)  ->  Abs (   807,   627)
+	 16: Rel (     0,    87)  ->  Abs (   807,   714)
+	 17: Rel (     0,    56)  ->  Abs (   807,   770)
+	 18: Rel (    42,     0)  ->  Abs (   849,   770)
+	 19: Rel (    42,     0)  ->  Abs (   891,   770)
+	 20: Rel (     0,   -56)  ->  Abs (   891,   714)
+	 21: Rel (     0,  -257)  ->  Abs (   891,   457)
+	 22: Rel (     0,   -57)  ->  Abs (   891,   400)
+	 23: Rel (   -42,     0)  ->  Abs (   849,   400)
+	 24: Rel (   -42,     0)  ->  Abs (   807,   400)
+	 25: Rel (     0,    57)  ->  Abs (   807,   457)
+	 26: Rel (     0,    86)  ->  Abs (   807,   543)
+	 27: Rel (  -385,     0)  ->  Abs (   422,   543)
+	 28: Rel (     0,   -86)  ->  Abs (   422,   457)
+	 29: Rel (     0,   -57)  ->  Abs (   422,   400)
+	 30: Rel (   -42,     0)  ->  Abs (   380,   400)
+	 31: Rel (   -42,     0)  ->  Abs (   338,   400)
+	 32: Rel (     0,    57)  ->  Abs (   338,   457)
+	 33: Rel (     0,   257)  ->  Abs (   338,   714)
+	 34: Rel (     0,    56)  ->  Abs (   338,   770)
+	 35: Rel (    42,     0)  ->  Abs (   380,   770)
+	 36: Rel (    42,     0)  ->  Abs (   422,   770)
+	 37: Rel (     0,   -56)  ->  Abs (   422,   714)
+	 38: Rel (  -191,  -630)  ->  Abs (   231,    84)
+	 39: Rel (   766,     0)  ->  Abs (   997,    84)
+	 40: Rel (     0,   205)  ->  Abs (   997,   289)
+	 41: Rel (     0,    57)  ->  Abs (   997,   346)
+	 42: Rel (    42,     0)  ->  Abs (  1039,   346)
+	 43: Rel (    43,     0)  ->  Abs (  1082,   346)
+	 44: Rel (     0,   -57)  ->  Abs (  1082,   289)
+	 45: Rel (     0,  -289)  ->  Abs (  1082,     0)
+	 46: Rel (  -935,     0)  ->  Abs (   147,     0)
+	 47: Rel (     0,   289)  ->  Abs (   147,   289)
+	 48: Rel (     0,    57)  ->  Abs (   147,   346)
+	 49: Rel (    42,     0)  ->  Abs (   189,   346)
+	 50: Rel (    42,     0)  ->  Abs (   231,   346)
+	 51: Rel (     0,   -57)  ->  Abs (   231,   289)
+
+	Glyph 517: off = 0x0001B314, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-33
+	  xMax:			1024
+	  yMax:			1197
+
+	     0: Flags:		0x0216
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 518: off = 0x0001B324, len = 402
+	  numberOfContours:	1
+	  xMin:			100
+	  yMin:			0
+	  xMax:			1128
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  37
+
+	  Length of Instructions:	301
+	00000: NPUSHB      (19):    25     0     1    14    15    32    15    34    15    36 
+	                            31    32    31    34    31    36     6    20    24 
+	00021: PUSHW[1]            676 
+	00024: NPUSHB      (14):     0    22     1    22    43    25    22    22    24    25 
+	                            29    20    31    27 
+	00040: PUSHW[1]            676 
+	00043: NPUSHB      (14):     0    29     1    29    43    26    29    29    27    26 
+	                            29    31    32    36 
+	00059: PUSHW[1]            676 
+	00062: NPUSHB      (11):    34    43    37    34    34    36    37    29    32    19 
+	                            15 
+	00075: PUSHW[1]            676 
+	00078: NPUSHB      (11):    17    43    14    17    17    15    14    29    19     7 
+	                             3 
+	00091: PUSHW[1]            676 
+	00094: NPUSHB      (11):     5    43     2     5     5     3     2    29     7     8 
+	                            12 
+	00107: PUSHW[1]            676 
+	00110: NPUSHB      (61):    10    43    13    10    10    12    13    29     8    31 
+	                            32    32     7     7     8     8    24    25    25     0 
+	                             0     1     1    14    14    15    38    20    19     2 
+	                             0    37    30    25    95    26   111    26   143    26 
+	                             3    79    26     1    15    26    79    26     2    26 
+	                             1     2    30    14    64    13     1    13    26    39 
+	                            74 
+	00173: PUSHW[2]            470    24 
+	00178: CALL       
+	00179: SRP1       
+	00180: SHP[rp1,zp0] 
+	00181: MDAP[rd]   
+	00182: DELTAP2    
+	00183: ALIGNRP    
+	00184: MIRP[srp0,md,rd,1] 
+	00185: ALIGNRP    
+	00186: MDAP[rd]   
+	00187: DELTAP1    
+	00188: DELTAP2    
+	00189: DELTAP1    
+	00190: ALIGNRP    
+	00191: MIRP[srp0,md,rd,1] 
+	00192: ALIGNRP    
+	00193: SVTCA[y-axis] 
+	00194: MIAP[rd+ci] 
+	00195: ALIGNRP    
+	00196: MIRP[srp0,md,rd,1] 
+	00197: ALIGNRP    
+	00198: SRP0       
+	00199: ALIGNRP    
+	00200: SRP0       
+	00201: ALIGNRP    
+	00202: SRP0       
+	00203: ALIGNRP    
+	00204: SRP0       
+	00205: ALIGNRP    
+	00206: MIAP[rd+ci] 
+	00207: ALIGNRP    
+	00208: SRP0       
+	00209: ALIGNRP    
+	00210: SRP0       
+	00211: ALIGNRP    
+	00212: SRP0       
+	00213: MIRP[srp0,md,rd,1] 
+	00214: RTDG       
+	00215: SRP2       
+	00216: IP         
+	00217: MDAP[rd]   
+	00218: RTG        
+	00219: SVTCA[x-axis] 
+	00220: SRP0       
+	00221: MIRP[srp0,nmd,rd,1] 
+	00222: MIRP[srp0,nmd,rd,0] 
+	00223: MDRP[nrp0,nmd,rd,0] 
+	00224: SVTCA[y-axis] 
+	00225: SRP0       
+	00226: MIRP[srp0,md,rd,1] 
+	00227: RTDG       
+	00228: SRP2       
+	00229: IP         
+	00230: MDAP[rd]   
+	00231: RTG        
+	00232: SVTCA[x-axis] 
+	00233: SRP0       
+	00234: MIRP[srp0,nmd,rd,1] 
+	00235: MIRP[srp0,nmd,rd,0] 
+	00236: MDRP[nrp0,nmd,rd,0] 
+	00237: SVTCA[y-axis] 
+	00238: SRP0       
+	00239: MIRP[srp0,md,rd,1] 
+	00240: RTDG       
+	00241: SRP2       
+	00242: IP         
+	00243: MDAP[rd]   
+	00244: RTG        
+	00245: SVTCA[x-axis] 
+	00246: SRP0       
+	00247: MIRP[srp0,nmd,rd,1] 
+	00248: MIRP[srp0,nmd,rd,0] 
+	00249: MDRP[nrp0,nmd,rd,0] 
+	00250: SVTCA[y-axis] 
+	00251: SRP0       
+	00252: MIRP[srp0,md,rd,1] 
+	00253: RTDG       
+	00254: SRP2       
+	00255: IP         
+	00256: MDAP[rd]   
+	00257: RTG        
+	00258: SVTCA[x-axis] 
+	00259: SRP0       
+	00260: MIRP[srp0,nmd,rd,1] 
+	00261: MIRP[srp0,nmd,rd,0] 
+	00262: MDRP[nrp0,nmd,rd,0] 
+	00263: SVTCA[y-axis] 
+	00264: SRP0       
+	00265: MIRP[srp0,md,rd,1] 
+	00266: RTDG       
+	00267: SRP2       
+	00268: IP         
+	00269: MDAP[rd]   
+	00270: RTG        
+	00271: SVTCA[x-axis] 
+	00272: SRP0       
+	00273: MIRP[srp0,nmd,rd,1] 
+	00274: DELTAP1    
+	00275: MIRP[srp0,nmd,rd,0] 
+	00276: MDRP[nrp0,nmd,rd,0] 
+	00277: SVTCA[y-axis] 
+	00278: SRP0       
+	00279: MIRP[srp0,md,rd,1] 
+	00280: RTDG       
+	00281: SRP2       
+	00282: IP         
+	00283: MDAP[rd]   
+	00284: RTG        
+	00285: SVTCA[x-axis] 
+	00286: SRP0       
+	00287: MIRP[srp0,nmd,rd,1] 
+	00288: DELTAP1    
+	00289: MIRP[srp0,nmd,rd,0] 
+	00290: MDRP[nrp0,nmd,rd,0] 
+	00291: SVTCA[x-axis] 
+	00292: DELTAP1    
+	00293: SPVTCA[y-axis] 
+	00294: SFVTCA[y-axis] 
+	00295: ALIGNRP    
+	00296: ALIGNRP    
+	00297: ALIGNRP    
+	00298: ALIGNRP    
+	00299: IUP[y]     
+	00300: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                               On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual                         On
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual                               On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short On
+	 26:        XDual                         On
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                               On
+	 33:  YDual                       X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   892,  1086)  ->  Abs (   892,  1086)
+	  1: Rel (  -557,     0)  ->  Abs (   335,  1086)
+	  2: Rel (     0, -1002)  ->  Abs (   335,    84)
+	  3: Rel (   113,     0)  ->  Abs (   448,    84)
+	  4: Rel (    56,     0)  ->  Abs (   504,    84)
+	  5: Rel (     0,   -42)  ->  Abs (   504,    42)
+	  6: Rel (     0,   -42)  ->  Abs (   504,     0)
+	  7: Rel (   -56,     0)  ->  Abs (   448,     0)
+	  8: Rel (  -292,     0)  ->  Abs (   156,     0)
+	  9: Rel (   -56,     0)  ->  Abs (   100,     0)
+	 10: Rel (     0,    42)  ->  Abs (   100,    42)
+	 11: Rel (     0,    42)  ->  Abs (   100,    84)
+	 12: Rel (    56,     0)  ->  Abs (   156,    84)
+	 13: Rel (    95,     0)  ->  Abs (   251,    84)
+	 14: Rel (     0,  1002)  ->  Abs (   251,  1086)
+	 15: Rel (   -95,     0)  ->  Abs (   156,  1086)
+	 16: Rel (   -56,     0)  ->  Abs (   100,  1086)
+	 17: Rel (     0,    42)  ->  Abs (   100,  1128)
+	 18: Rel (     0,    42)  ->  Abs (   100,  1170)
+	 19: Rel (    56,     0)  ->  Abs (   156,  1170)
+	 20: Rel (   916,     0)  ->  Abs (  1072,  1170)
+	 21: Rel (    56,     0)  ->  Abs (  1128,  1170)
+	 22: Rel (     0,   -42)  ->  Abs (  1128,  1128)
+	 23: Rel (     0,   -42)  ->  Abs (  1128,  1086)
+	 24: Rel (   -56,     0)  ->  Abs (  1072,  1086)
+	 25: Rel (   -95,     0)  ->  Abs (   977,  1086)
+	 26: Rel (     0, -1002)  ->  Abs (   977,    84)
+	 27: Rel (    95,     0)  ->  Abs (  1072,    84)
+	 28: Rel (    56,     0)  ->  Abs (  1128,    84)
+	 29: Rel (     0,   -42)  ->  Abs (  1128,    42)
+	 30: Rel (     0,   -42)  ->  Abs (  1128,     0)
+	 31: Rel (   -56,     0)  ->  Abs (  1072,     0)
+	 32: Rel (  -292,     0)  ->  Abs (   780,     0)
+	 33: Rel (   -56,     0)  ->  Abs (   724,     0)
+	 34: Rel (     0,    42)  ->  Abs (   724,    42)
+	 35: Rel (     0,    42)  ->  Abs (   724,    84)
+	 36: Rel (    56,     0)  ->  Abs (   780,    84)
+	 37: Rel (   112,     0)  ->  Abs (   892,    84)
+
+	Glyph 519: off = 0x0001B4B6, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			179
+	  yMin:			0
+	  xMax:			1115
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	51
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 520: off = 0x0001B4C6, len = 312
+	  numberOfContours:	1
+	  xMin:			196
+	  yMin:			0
+	  xMax:			1002
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  21
+
+	  Length of Instructions:	233
+	00000: NPUSHB      (23):    70     9    71    20    86     9    87    20   184     9 
+	                           184    20   200     9   200    20   250     9   250    20 
+	                            10     2     6 
+	00025: PUSHW[1]            676 
+	00028: NPUSHB      (11):     4    86     7     4     4     6     7    29     2    16 
+	                            12 
+	00041: PUSHW[1]            676 
+	00044: NPUSHB      (94):    96    14   112    14     2    14    54    11    14    14 
+	                            12    11    29    16     8     9     9    30    20    21 
+	                            20    20     9    10    20    21     9    10     9     8 
+	                            10    30    19    20    20    19    19    20    19    20 
+	                             9    21     4     8    11    10    38    17    18     8 
+	                             7     8    38     1     0     2    10     8    20     3 
+	                             9     9    18     7     6     6    12    12    11    30 
+	                            17     1     2     2    16    16    15    17    47    17 
+	                            79    17     3    17     0    21    21    19    19   111 
+	                            18     1    18   157 
+	00140: PUSHW[2]            470    24 
+	00145: CALL       
+	00146: MDAP[rd]   
+	00147: DELTAP1    
+	00148: ALIGNRP    
+	00149: SRP0       
+	00150: ALIGNRP    
+	00151: SRP0       
+	00152: ALIGNRP    
+	00153: MDAP[rd]   
+	00154: DELTAP1    
+	00155: ALIGNRP    
+	00156: SRP0       
+	00157: ALIGNRP    
+	00158: SRP0       
+	00159: ALIGNRP    
+	00160: SRP0       
+	00161: MIRP[srp0,md,rd,1] 
+	00162: ALIGNRP    
+	00163: SRP0       
+	00164: ALIGNRP    
+	00165: SRP0       
+	00166: ALIGNRP    
+	00167: SRP2       
+	00168: IP         
+	00169: MDAP[rd]   
+	00170: SLOOP      
+	00171: IP         
+	00172: SVTCA[y-axis] 
+	00173: MIAP[rd+ci] 
+	00174: ALIGNRP    
+	00175: MIRP[srp0,md,rd,1] 
+	00176: ALIGNRP    
+	00177: MIAP[rd+ci] 
+	00178: ALIGNRP    
+	00179: MIRP[srp0,md,rd,1] 
+	00180: ALIGNRP    
+	00181: SRP1       
+	00182: SLOOP      
+	00183: IP         
+	00184: SDPVTL[1]  
+	00185: SFVTCA[x-axis] 
+	00186: MDAP[nrd]  
+	00187: CALL       
+	00188: SFVTL[=p1,p2] 
+	00189: RDTG       
+	00190: SRP0       
+	00191: MDRP[nrp0,nmd,rd,0] 
+	00192: SDPVTL[1]  
+	00193: SFVTL[=p1,p2] 
+	00194: MDAP[nrd]  
+	00195: RTG        
+	00196: CALL       
+	00197: SFVTCA[x-axis] 
+	00198: RDTG       
+	00199: SRP0       
+	00200: MDRP[nrp0,nmd,rd,0] 
+	00201: RTG        
+	00202: SVTCA[x-axis] 
+	00203: SRP0       
+	00204: MIRP[srp0,md,rd,1] 
+	00205: RTDG       
+	00206: SRP2       
+	00207: IP         
+	00208: MDAP[rd]   
+	00209: RTG        
+	00210: SVTCA[y-axis] 
+	00211: SRP0       
+	00212: MIRP[srp0,nmd,rd,1] 
+	00213: DELTAP1    
+	00214: MIRP[srp0,nmd,rd,0] 
+	00215: MDRP[nrp0,nmd,rd,0] 
+	00216: SVTCA[x-axis] 
+	00217: SRP0       
+	00218: MIRP[srp0,md,rd,1] 
+	00219: RTDG       
+	00220: SRP2       
+	00221: IP         
+	00222: MDAP[rd]   
+	00223: RTG        
+	00224: SVTCA[y-axis] 
+	00225: SRP0       
+	00226: MIRP[srp0,nmd,rd,1] 
+	00227: MIRP[srp0,nmd,rd,0] 
+	00228: MDRP[nrp0,nmd,rd,0] 
+	00229: IUP[y]     
+	00230: IUP[x]     
+	00231: SVTCA[x-axis] 
+	00232: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:        XDual         Y-Short         Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:                                      On
+	 10:                                      On
+	 11:  YDual                               On
+	 12:        XDual                         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual                         On
+	 18:  YDual                               On
+	 19:  YDual XDual         Y-Short         On
+	 20:                                      On
+	 21:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   196,  1170)  ->  Abs (   196,  1170)
+	  1: Rel (   806,     0)  ->  Abs (  1002,  1170)
+	  2: Rel (     0,  -331)  ->  Abs (  1002,   839)
+	  3: Rel (     0,   -57)  ->  Abs (  1002,   782)
+	  4: Rel (   -42,     0)  ->  Abs (   960,   782)
+	  5: Rel (   -42,     0)  ->  Abs (   918,   782)
+	  6: Rel (     0,    57)  ->  Abs (   918,   839)
+	  7: Rel (     0,   247)  ->  Abs (   918,  1086)
+	  8: Rel (  -637,     0)  ->  Abs (   281,  1086)
+	  9: Rel (   396,  -501)  ->  Abs (   677,   585)
+	 10: Rel (  -396,  -501)  ->  Abs (   281,    84)
+	 11: Rel (   637,     0)  ->  Abs (   918,    84)
+	 12: Rel (     0,   293)  ->  Abs (   918,   377)
+	 13: Rel (     0,    57)  ->  Abs (   918,   434)
+	 14: Rel (    42,     0)  ->  Abs (   960,   434)
+	 15: Rel (    42,     0)  ->  Abs (  1002,   434)
+	 16: Rel (     0,   -57)  ->  Abs (  1002,   377)
+	 17: Rel (     0,  -377)  ->  Abs (  1002,     0)
+	 18: Rel (  -806,     0)  ->  Abs (   196,     0)
+	 19: Rel (     0,   102)  ->  Abs (   196,   102)
+	 20: Rel (   375,   483)  ->  Abs (   571,   585)
+	 21: Rel (  -375,   484)  ->  Abs (   196,  1069)
+
+	Glyph 521: off = 0x0001B5FE, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			143
+	  yMin:			0
+	  xMax:			1084
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	55
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 522: off = 0x0001B60E, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			0
+	  xMax:			1128
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 523: off = 0x0001B61E, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			80
+	  yMin:			0
+	  xMax:			1152
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	59
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 524: off = 0x0001B62E, len = 550
+	  numberOfContours:	1
+	  xMin:			29
+	  yMin:			0
+	  xMax:			1201
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  57
+
+	  Length of Instructions:	398
+	00000: PUSHW[2]              3   -32 
+	00005: PUSHB[4]             22    23    52     3 
+	00010: PUSHW[1]            -32 
+	00013: PUSHB[4]             13    17    52    44 
+	00018: PUSHW[1]            -32 
+	00021: NPUSHB      (11):    13    17    52     1    17    18    46    30    29     7 
+	                            11 
+	00034: PUSHW[1]            676 
+	00037: NPUSHB      (29):   144     9     1   176     9   240     9     2    80     9 
+	                           160     9     2     0     9    64     9     2     9    43 
+	                            12     9     9    11    12    29     7    40    36 
+	00068: PUSHW[1]            676 
+	00071: NPUSHB      (19):   175    38     1    15    38    31    38     2    38    43 
+	                            35    38    38    36    35    29    40    53    57 
+	00092: PUSHW[1]            676 
+	00095: NPUSHB      (10):     0    55    16    55    32    55    48    55     4    55 
+	00107: PUSHW[1]            354 
+	00110: NPUSHB      (12):     0     0    55     1    55    55    57     0    29    53 
+	                            52    48 
+	00124: PUSHW[1]            676 
+	00127: NPUSHB      (10):    15    50    31    50    47    50    63    50     4    50 
+	00139: PUSHW[1]            354 
+	00142: NPUSHB      (12):    47    15    50     1    50    50    48    47    29    52 
+	                            23    19 
+	00156: PUSHW[3]            676    21   354 
+	00163: NPUSHB       (9):    18    21    21    19    18    29    23    24    28 
+	00174: PUSHW[3]            676    26   354 
+	00181: NPUSHB      (67):    29    26    26    28    29    29    24    34    42     5 
+	                            13     4    52     1    46    37    17    30    30    52 
+	                            24     7     6     6    53    53    52    52    41    41 
+	                            40     2    23    24     8     6     5    12     5    30 
+	                           224    13     1    13    13    18    41    42    35    42 
+	                            30    34    34     0    18    30    47     0    29    16 
+	                            29     2   143    29     1    29   157 
+	00250: PUSHW[2]            287    24 
+	00255: CALL       
+	00256: MDAP[rd]   
+	00257: DELTAP2    
+	00258: DELTAP1    
+	00259: ALIGNRP    
+	00260: MIRP[srp0,md,rd,1] 
+	00261: ALIGNRP    
+	00262: SHP[rp1,zp0] 
+	00263: MDAP[rd]   
+	00264: MIRP[nrp0,md,rd,1] 
+	00265: ALIGNRP    
+	00266: SRP0       
+	00267: ALIGNRP    
+	00268: SRP1       
+	00269: SHP[rp1,zp0] 
+	00270: MDAP[rd]   
+	00271: DELTAP1    
+	00272: MIRP[nrp0,md,rd,1] 
+	00273: ALIGNRP    
+	00274: SRP0       
+	00275: ALIGNRP    
+	00276: SVTCA[y-axis] 
+	00277: MIAP[rd+ci] 
+	00278: ALIGNRP    
+	00279: MIAP[rd+ci] 
+	00280: ALIGNRP    
+	00281: SRP0       
+	00282: ALIGNRP    
+	00283: SRP0       
+	00284: ALIGNRP    
+	00285: SRP0       
+	00286: ALIGNRP    
+	00287: SRP0       
+	00288: ALIGNRP    
+	00289: SRP1       
+	00290: SRP2       
+	00291: IP         
+	00292: MDAP[rd]   
+	00293: ALIGNRP    
+	00294: MIRP[srp0,md,rd,1] 
+	00295: ALIGNRP    
+	00296: SRP1       
+	00297: SLOOP      
+	00298: IP         
+	00299: SRP0       
+	00300: MIRP[srp0,md,rd,1] 
+	00301: RTDG       
+	00302: SRP2       
+	00303: IP         
+	00304: MDAP[rd]   
+	00305: RTG        
+	00306: SVTCA[x-axis] 
+	00307: SRP0       
+	00308: MIRP[srp0,nmd,rd,1] 
+	00309: MIRP[srp0,nmd,rd,0] 
+	00310: MDRP[nrp0,nmd,rd,0] 
+	00311: SVTCA[y-axis] 
+	00312: SRP0       
+	00313: MIRP[srp0,md,rd,1] 
+	00314: RTDG       
+	00315: SRP2       
+	00316: IP         
+	00317: MDAP[rd]   
+	00318: RTG        
+	00319: SVTCA[x-axis] 
+	00320: SRP0       
+	00321: MIRP[srp0,nmd,rd,1] 
+	00322: MIRP[srp0,nmd,rd,0] 
+	00323: MDRP[nrp0,nmd,rd,0] 
+	00324: SVTCA[y-axis] 
+	00325: SRP0       
+	00326: MIRP[srp0,md,rd,1] 
+	00327: RTDG       
+	00328: SRP2       
+	00329: IP         
+	00330: MDAP[rd]   
+	00331: DELTAP1    
+	00332: RTG        
+	00333: SVTCA[x-axis] 
+	00334: SRP0       
+	00335: MIRP[srp0,nmd,rd,1] 
+	00336: DELTAP1    
+	00337: MIRP[srp0,nmd,rd,0] 
+	00338: MDRP[nrp0,nmd,rd,0] 
+	00339: SVTCA[y-axis] 
+	00340: SRP0       
+	00341: MIRP[srp0,md,rd,1] 
+	00342: RTDG       
+	00343: SRP2       
+	00344: IP         
+	00345: MDAP[rd]   
+	00346: DELTAP1    
+	00347: RTG        
+	00348: SVTCA[x-axis] 
+	00349: SRP0       
+	00350: MIRP[srp0,nmd,rd,1] 
+	00351: DELTAP1    
+	00352: MIRP[srp0,nmd,rd,0] 
+	00353: MDRP[nrp0,nmd,rd,0] 
+	00354: SVTCA[y-axis] 
+	00355: SRP0       
+	00356: MIRP[srp0,md,rd,1] 
+	00357: RTDG       
+	00358: SRP2       
+	00359: IP         
+	00360: MDAP[rd]   
+	00361: RTG        
+	00362: SVTCA[x-axis] 
+	00363: SRP0       
+	00364: MIRP[srp0,nmd,rd,1] 
+	00365: DELTAP1    
+	00366: DELTAP1    
+	00367: MIRP[srp0,nmd,rd,0] 
+	00368: MDRP[nrp0,nmd,rd,0] 
+	00369: SVTCA[y-axis] 
+	00370: SRP0       
+	00371: MIRP[srp0,md,rd,1] 
+	00372: RTDG       
+	00373: SRP2       
+	00374: IP         
+	00375: MDAP[rd]   
+	00376: RTG        
+	00377: SVTCA[x-axis] 
+	00378: SRP0       
+	00379: MIRP[srp0,nmd,rd,1] 
+	00380: DELTAP1    
+	00381: DELTAP1    
+	00382: DELTAP1    
+	00383: DELTAP2    
+	00384: MIRP[srp0,nmd,rd,0] 
+	00385: MDRP[nrp0,nmd,rd,0] 
+	00386: SRP0       
+	00387: ALIGNRP    
+	00388: ALIGNRP    
+	00389: SRP0       
+	00390: ALIGNRP    
+	00391: ALIGNRP    
+	00392: IUP[y]     
+	00393: IUP[x]     
+	00394: SVTCA[y-axis] 
+	00395: CALL       
+	00396: CALL       
+	00397: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual Rep-  2 Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:        XDual                         On
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short On
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:        XDual                         On
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                               On
+	 25:  YDual                       X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short On
+	 30:        XDual                         On
+	 31:  YDual       Rep-  2 Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short On
+	 42:        XDual                         On
+	 43:        XDual         Y-Short         Off
+	 44:        XDual         Y-Short X-Short Off
+	 45:        XDual         Y-Short X-Short Off
+	 46:        XDual         Y-Short X-Short On
+	 47:        XDual                         On
+	 48:  YDual                       X-Short On
+	 49:  YDual                       X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual XDual                 X-Short On
+	 53:  YDual                               On
+	 54:  YDual XDual                 X-Short Off
+	 55:        XDual         Y-Short         On
+	 56:        XDual         Y-Short         Off
+	 57:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   657,  1086)  ->  Abs (   657,  1086)
+	  1: Rel (     0,  -627)  ->  Abs (   657,   459)
+	  2: Rel (   115,     2)  ->  Abs (   772,   461)
+	  3: Rel (   139,    90)  ->  Abs (   911,   551)
+	  4: Rel (    62,   161)  ->  Abs (   973,   712)
+	  5: Rel (     0,   177)  ->  Abs (   973,   889)
+	  6: Rel (     0,   281)  ->  Abs (   973,  1170)
+	  7: Rel (   171,     0)  ->  Abs (  1144,  1170)
+	  8: Rel (    57,     0)  ->  Abs (  1201,  1170)
+	  9: Rel (     0,   -42)  ->  Abs (  1201,  1128)
+	 10: Rel (     0,   -42)  ->  Abs (  1201,  1086)
+	 11: Rel (   -57,     0)  ->  Abs (  1144,  1086)
+	 12: Rel (   -87,     0)  ->  Abs (  1057,  1086)
+	 13: Rel (     0,  -197)  ->  Abs (  1057,   889)
+	 14: Rel (     0,  -197)  ->  Abs (  1057,   692)
+	 15: Rel (   -71,  -196)  ->  Abs (   986,   496)
+	 16: Rel (  -194,  -120)  ->  Abs (   792,   376)
+	 17: Rel (  -135,    -2)  ->  Abs (   657,   374)
+	 18: Rel (     0,  -290)  ->  Abs (   657,    84)
+	 19: Rel (   122,     0)  ->  Abs (   779,    84)
+	 20: Rel (    57,     0)  ->  Abs (   836,    84)
+	 21: Rel (     0,   -42)  ->  Abs (   836,    42)
+	 22: Rel (     0,   -42)  ->  Abs (   836,     0)
+	 23: Rel (   -57,     0)  ->  Abs (   779,     0)
+	 24: Rel (  -329,     0)  ->  Abs (   450,     0)
+	 25: Rel (   -56,     0)  ->  Abs (   394,     0)
+	 26: Rel (     0,    42)  ->  Abs (   394,    42)
+	 27: Rel (     0,    42)  ->  Abs (   394,    84)
+	 28: Rel (    56,     0)  ->  Abs (   450,    84)
+	 29: Rel (   123,     0)  ->  Abs (   573,    84)
+	 30: Rel (     0,   290)  ->  Abs (   573,   374)
+	 31: Rel (  -140,     2)  ->  Abs (   433,   376)
+	 32: Rel (  -194,   128)  ->  Abs (   239,   504)
+	 33: Rel (   -67,   201)  ->  Abs (   172,   705)
+	 34: Rel (     0,   184)  ->  Abs (   172,   889)
+	 35: Rel (     0,   197)  ->  Abs (   172,  1086)
+	 36: Rel (   -87,     0)  ->  Abs (    85,  1086)
+	 37: Rel (   -56,     0)  ->  Abs (    29,  1086)
+	 38: Rel (     0,    42)  ->  Abs (    29,  1128)
+	 39: Rel (     0,    42)  ->  Abs (    29,  1170)
+	 40: Rel (    56,     0)  ->  Abs (    85,  1170)
+	 41: Rel (   172,     0)  ->  Abs (   257,  1170)
+	 42: Rel (     0,  -281)  ->  Abs (   257,   889)
+	 43: Rel (     0,  -181)  ->  Abs (   257,   708)
+	 44: Rel (    63,  -164)  ->  Abs (   320,   544)
+	 45: Rel (   149,   -83)  ->  Abs (   469,   461)
+	 46: Rel (   104,    -2)  ->  Abs (   573,   459)
+	 47: Rel (     0,   627)  ->  Abs (   573,  1086)
+	 48: Rel (  -123,     0)  ->  Abs (   450,  1086)
+	 49: Rel (   -56,     0)  ->  Abs (   394,  1086)
+	 50: Rel (     0,    42)  ->  Abs (   394,  1128)
+	 51: Rel (     0,    42)  ->  Abs (   394,  1170)
+	 52: Rel (    56,     0)  ->  Abs (   450,  1170)
+	 53: Rel (   329,     0)  ->  Abs (   779,  1170)
+	 54: Rel (    57,     0)  ->  Abs (   836,  1170)
+	 55: Rel (     0,   -42)  ->  Abs (   836,  1128)
+	 56: Rel (     0,   -42)  ->  Abs (   836,  1086)
+	 57: Rel (   -57,     0)  ->  Abs (   779,  1086)
+
+	Glyph 525: off = 0x0001B854, len = 406
+	  numberOfContours:	1
+	  xMin:			60
+	  yMin:			0
+	  xMax:			1168
+	  yMax:			1197
+
+	EndPoints
+	---------
+	  0:  43
+
+	  Length of Instructions:	279
+	00000: NPUSHB      (32):    56     6    54    10    72     6    71    10    89     6 
+	                            86    10   127     3   112    13   167     6   169     9 
+	                           168    10   169    28   171    29   166    31   167    32 
+	                            15    26 
+	00034: PUSHW[1]            -42 
+	00037: PUSHB[4]             25    31    52    34 
+	00042: PUSHW[1]            -42 
+	00045: NPUSHB      (14):    25    31    52    28    32    22    31    52    32    32 
+	                            22    31    52    26 
+	00061: PUSHW[1]            -64 
+	00064: PUSHB[4]             19    20    52    34 
+	00069: PUSHW[1]            -64 
+	00072: PUSHB[4]             19    20    52    26 
+	00077: PUSHW[1]            -32 
+	00080: PUSHB[4]             12    15    52    34 
+	00085: PUSHW[1]            -32 
+	00088: NPUSHB      (51):    12    15    52    15     1     0    19     0    41    16 
+	                            41    32    41     3    41    41     0    24    36    37 
+	                            14     2   207     0    16    15    15     1     1     0 
+	                            38    38    22    23    23    37    37    38     8    30 
+	                            37     8     3    15    14    30    23   127    24     1 
+	                            24 
+	00141: PUSHW[1]            737 
+	00144: NPUSHB      (26):    11    17    16    30    21    22    22    27    37    64 
+	                            11     1    79    11   160    11     2    11     1     2 
+	                            30    37   112    36     1    36 
+	00172: PUSHW[1]            737 
+	00175: NPUSHB      (22):     5    43     0    30    39    38    38    33    37   207 
+	                             5     1    79     5    95     5   111     5   127     5 
+	                             4     5 
+	00199: PUSHW[3]            294   340    24 
+	00206: CALL       
+	00207: MDAP[rd]   
+	00208: DELTAP1    
+	00209: DELTAP2    
+	00210: MIRP[nrp0,md,rd,1] 
+	00211: SHP[rp1,zp0] 
+	00212: MDAP[rd]   
+	00213: ALIGNRP    
+	00214: MIRP[srp0,md,rd,1] 
+	00215: ALIGNRP    
+	00216: SRP0       
+	00217: MIRP[srp0,md,rd,1] 
+	00218: DELTAP1    
+	00219: ALIGNRP    
+	00220: MIRP[srp0,md,rd,1] 
+	00221: ALIGNRP    
+	00222: MDAP[rd]   
+	00223: DELTAP1    
+	00224: DELTAP2    
+	00225: MIRP[nrp0,md,rd,1] 
+	00226: SHP[rp1,zp0] 
+	00227: MDAP[rd]   
+	00228: ALIGNRP    
+	00229: MIRP[srp0,md,rd,1] 
+	00230: ALIGNRP    
+	00231: SRP0       
+	00232: MIRP[srp0,md,rd,1] 
+	00233: DELTAP1    
+	00234: ALIGNRP    
+	00235: MIRP[srp0,md,rd,1] 
+	00236: ALIGNRP    
+	00237: SVTCA[y-axis] 
+	00238: MIAP[rd+ci] 
+	00239: MIRP[nrp0,md,rd,1] 
+	00240: MIAP[rd+ci] 
+	00241: ALIGNRP    
+	00242: SRP0       
+	00243: ALIGNRP    
+	00244: SRP0       
+	00245: ALIGNRP    
+	00246: SRP0       
+	00247: MIRP[srp0,md,rd,1] 
+	00248: ALIGNRP    
+	00249: SRP0       
+	00250: ALIGNRP    
+	00251: SRP0       
+	00252: ALIGNRP    
+	00253: SRP0       
+	00254: MIRP[srp0,md,rd,2] 
+	00255: ALIGNRP    
+	00256: MIRP[srp0,md,rd,1] 
+	00257: ALIGNRP    
+	00258: SRP1       
+	00259: SHP[rp1,zp0] 
+	00260: MDAP[rd]   
+	00261: DELTAP1    
+	00262: ALIGNRP    
+	00263: SRP0       
+	00264: ALIGNRP    
+	00265: ALIGNRP    
+	00266: IUP[y]     
+	00267: IUP[x]     
+	00268: SVTCA[y-axis] 
+	00269: CALL       
+	00270: CALL       
+	00271: CALL       
+	00272: CALL       
+	00273: CALL       
+	00274: CALL       
+	00275: CALL       
+	00276: CALL       
+	00277: SVTCA[x-axis] 
+	00278: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual               Y-Short X-Short Off
+	  4:                              X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:                                      Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:                                      Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                              X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:        XDual         Y-Short         On
+	 16:  YDual                               On
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         On
+	 23:  YDual                               On
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:                              X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:                              X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short X-Short On
+	 37:        XDual         Y-Short         On
+	 38:  YDual                               On
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   144,    84)  ->  Abs (   144,    84)
+	  1: Rel (   281,     0)  ->  Abs (   425,    84)
+	  2: Rel (     0,    85)  ->  Abs (   425,   169)
+	  3: Rel (  -183,    49)  ->  Abs (   242,   218)
+	  4: Rel (  -182,   260)  ->  Abs (    60,   478)
+	  5: Rel (     0,   178)  ->  Abs (    60,   656)
+	  6: Rel (     0,   235)  ->  Abs (    60,   891)
+	  7: Rel (   325,   306)  ->  Abs (   385,  1197)
+	  8: Rel (   229,     0)  ->  Abs (   614,  1197)
+	  9: Rel (   221,     0)  ->  Abs (   835,  1197)
+	 10: Rel (   333,  -297)  ->  Abs (  1168,   900)
+	 11: Rel (     0,  -244)  ->  Abs (  1168,   656)
+	 12: Rel (     0,  -178)  ->  Abs (  1168,   478)
+	 13: Rel (  -182,  -260)  ->  Abs (   986,   218)
+	 14: Rel (  -183,   -49)  ->  Abs (   803,   169)
+	 15: Rel (     0,   -85)  ->  Abs (   803,    84)
+	 16: Rel (   281,     0)  ->  Abs (  1084,    84)
+	 17: Rel (     0,    64)  ->  Abs (  1084,   148)
+	 18: Rel (     0,    56)  ->  Abs (  1084,   204)
+	 19: Rel (    42,     0)  ->  Abs (  1126,   204)
+	 20: Rel (    42,     0)  ->  Abs (  1168,   204)
+	 21: Rel (     0,   -56)  ->  Abs (  1168,   148)
+	 22: Rel (     0,  -148)  ->  Abs (  1168,     0)
+	 23: Rel (  -449,     0)  ->  Abs (   719,     0)
+	 24: Rel (     0,   237)  ->  Abs (   719,   237)
+	 25: Rel (   180,    29)  ->  Abs (   899,   266)
+	 26: Rel (   185,   226)  ->  Abs (  1084,   492)
+	 27: Rel (     0,   163)  ->  Abs (  1084,   655)
+	 28: Rel (     0,   177)  ->  Abs (  1084,   832)
+	 29: Rel (  -239,   281)  ->  Abs (   845,  1113)
+	 30: Rel (  -231,     0)  ->  Abs (   614,  1113)
+	 31: Rel (  -230,     0)  ->  Abs (   384,  1113)
+	 32: Rel (  -239,  -280)  ->  Abs (   145,   833)
+	 33: Rel (     0,  -178)  ->  Abs (   145,   655)
+	 34: Rel (     0,  -163)  ->  Abs (   145,   492)
+	 35: Rel (   184,  -226)  ->  Abs (   329,   266)
+	 36: Rel (   181,   -29)  ->  Abs (   510,   237)
+	 37: Rel (     0,  -237)  ->  Abs (   510,     0)
+	 38: Rel (  -450,     0)  ->  Abs (    60,     0)
+	 39: Rel (     0,   148)  ->  Abs (    60,   148)
+	 40: Rel (     0,    56)  ->  Abs (    60,   204)
+	 41: Rel (    42,     0)  ->  Abs (   102,   204)
+	 42: Rel (    42,     0)  ->  Abs (   144,   204)
+	 43: Rel (     0,   -56)  ->  Abs (   144,   148)
+
+	Glyph 526: off = 0x0001B9EA, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			229
+	  yMin:			0
+	  xMax:			1001
+	  yMax:			1493
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	0
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2     1    63    32     1    32    17 
+	00008: PUSHW[1]            -85 
+	00011: PUSHB[6]             72    43     1     2     2    35 
+	00018: PUSHW[2]            651    41 
+	00023: SVTCA[y-axis] 
+	00024: CALL       
+	00025: SVTCA[x-axis] 
+	00026: CALL       
+	00027: DELTAP1    
+	00028: SHC[rp1,zp0] 
+	00029: SHC[rp1,zp0] 
+
+	Glyph 527: off = 0x0001BA22, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			0
+	  xMax:			1128
+	  yMax:			1493
+
+	     0: Flags:		0x0226
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	0
+		Y WOffset:	264
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     1   208    51     1    63    51     1    51    16 
+	00012: PUSHW[1]            -87 
+	00015: PUSHB[6]             72    43     1     2     2    54 
+	00022: PUSHW[2]            651    41 
+	00027: SVTCA[y-axis] 
+	00028: CALL       
+	00029: SVTCA[x-axis] 
+	00030: CALL       
+	00031: DELTAP1    
+	00032: DELTAP3    
+	00033: SHC[rp1,zp0] 
+	00034: SHC[rp1,zp0] 
+
+	Glyph 528: off = 0x0001BA60, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			98
+	  yMin:			-33
+	  xMax:			1137
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	302
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	141
+		X BOffset:	-16
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     2    46    35   235    72    43     2     1    43 
+	00011: PUSHW[2]            652    41 
+	00016: SVTCA[y-axis] 
+	00017: CALL       
+	00018: SVTCA[x-axis] 
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+
+	Glyph 529: off = 0x0001BA8E, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			283
+	  yMin:			-33
+	  xMax:			978
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	304
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	495
+		X BOffset:	52
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     1    15    63    79    63     2    63    32   100    72 
+	                            43     1     1    60 
+	00016: PUSHW[2]            652    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP2    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 530: off = 0x0001BAC2, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			139
+	  yMin:			-386
+	  xMax:			1015
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	536
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	495
+		X BOffset:	53
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     1     0    44    16    44     2    44     0   120    72 
+	                            43     1     1    41 
+	00016: PUSHW[2]            652    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 531: off = 0x0001BAF6, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			443
+	  yMin:			-33
+	  xMax:			879
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	538
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	495
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              1    79    26     1    26    16 
+	00007: PUSHW[1]            -80 
+	00010: PUSHB[5]             72    43     1     1    23 
+	00016: PUSHW[2]            652    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 532: off = 0x0001BB2A, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			87
+	  yMin:			-33
+	  xMax:			1142
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	547
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	496
+		X BOffset:	1
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (25):     3     2     1     0    42   160    42   176    42     3 
+	                           192    42   208    42     2    42    27   165    72    43 
+	                             1     2     3     3    54 
+	00027: PUSHW[2]            652    41 
+	00032: SVTCA[y-axis] 
+	00033: CALL       
+	00034: SVTCA[x-axis] 
+	00035: CALL       
+	00036: DELTAP1    
+	00037: DELTAP1    
+	00038: SHC[rp1,zp0] 
+	00039: SHC[rp1,zp0] 
+	00040: SHC[rp1,zp0] 
+
+	Glyph 533: off = 0x0001BB6C, len = 288
+	  numberOfContours:	2
+	  xMin:			260
+	  yMin:			-386
+	  xMax:			1039
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  22
+	  1:  43
+
+	  Length of Instructions:	162
+	00000: NPUSHB      (14):    58    15    73    16     2    87    17     1     0    64 
+	                            33    36    52    40 
+	00016: PUSHW[1]            -32 
+	00019: PUSHB[4]             24    26    52    26 
+	00024: PUSHW[1]            -64 
+	00027: NPUSHB      (19):    24    28    52     0    64    23    26    52    28    42 
+	                            19    22    52    32    32    17    18    52    40 
+	00048: PUSHW[1]            -32 
+	00051: NPUSHB      (56):    15    16    52   176    25     1    33    34    35     0 
+	                             1    34     0    38    15    24    59    32    23     1 
+	                            23    23    38    30    33    10     1    38    33    21 
+	                            11     3    15    15    24    23    23     1    27    33 
+	                            13    13    41    33    18    32     1    32     7    48 
+	                             5     1     5    71   128    24 
+	00109: CALL       
+	00110: MDAP[rd]   
+	00111: DELTAP1    
+	00112: ALIGNRP    
+	00113: MIRP[srp0,md,rd,1] 
+	00114: ALIGNRP    
+	00115: MDAP[rd]   
+	00116: MIRP[nrp0,md,rd,1] 
+	00117: SHP[rp1,zp0] 
+	00118: MDAP[rd]   
+	00119: MIRP[nrp0,md,rd,1] 
+	00120: SRP1       
+	00121: IP         
+	00122: MDAP[rd]   
+	00123: ALIGNRP    
+	00124: IP         
+	00125: SVTCA[y-axis] 
+	00126: MIAP[rd+ci] 
+	00127: MIAP[rd+ci] 
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: MIAP[rd+ci] 
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: SRP1       
+	00132: IP         
+	00133: MDAP[rd]   
+	00134: DELTAP1    
+	00135: MIRP[nrp0,md,rd,1] 
+	00136: IP         
+	00137: SRP2       
+	00138: IP         
+	00139: IP         
+	00140: SPVTCA[x-axis] 
+	00141: SFVTPV     
+	00142: SRP0       
+	00143: ALIGNRP    
+	00144: ALIGNRP    
+	00145: ALIGNRP    
+	00146: ALIGNRP    
+	00147: IUP[y]     
+	00148: IUP[x]     
+	00149: SVTCA[y-axis] 
+	00150: DELTAP2    
+	00151: CALL       
+	00152: CALL       
+	00153: CALL       
+	00154: CALL       
+	00155: CALL       
+	00156: CALL       
+	00157: CALL       
+	00158: SVTCA[x-axis] 
+	00159: DELTAP1    
+	00160: SVTCA[y-axis] 
+	00161: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:        XDual                         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short On
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:        XDual                 X-Short On
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:                      Y-Short X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual                         On
+	 35:        XDual         Y-Short         Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   344,   119)  ->  Abs (   344,   119)
+	  1: Rel (     0,  -449)  ->  Abs (   344,  -330)
+	  2: Rel (     0,   -56)  ->  Abs (   344,  -386)
+	  3: Rel (   -42,     0)  ->  Abs (   302,  -386)
+	  4: Rel (   -42,     0)  ->  Abs (   260,  -386)
+	  5: Rel (     0,    56)  ->  Abs (   260,  -330)
+	  6: Rel (     0,  1111)  ->  Abs (   260,   781)
+	  7: Rel (     0,   161)  ->  Abs (   260,   942)
+	  8: Rel (    50,   183)  ->  Abs (   310,  1125)
+	  9: Rel (   170,   130)  ->  Abs (   480,  1255)
+	 10: Rel (   119,     0)  ->  Abs (   599,  1255)
+	 11: Rel (   142,     0)  ->  Abs (   741,  1255)
+	 12: Rel (   174,  -169)  ->  Abs (   915,  1086)
+	 13: Rel (     0,  -120)  ->  Abs (   915,   966)
+	 14: Rel (     0,  -187)  ->  Abs (   915,   779)
+	 15: Rel (  -245,   -91)  ->  Abs (   670,   688)
+	 16: Rel (   183,   -17)  ->  Abs (   853,   671)
+	 17: Rel (   186,  -186)  ->  Abs (  1039,   485)
+	 18: Rel (     0,  -129)  ->  Abs (  1039,   356)
+	 19: Rel (     0,  -162)  ->  Abs (  1039,   194)
+	 20: Rel (  -217,  -227)  ->  Abs (   822,   -33)
+	 21: Rel (  -154,     0)  ->  Abs (   668,   -33)
+	 22: Rel (  -162,     0)  ->  Abs (   506,   -33)
+	 23: Rel (    42,   659)  ->  Abs (   548,   626)
+	 24: Rel (     0,   103)  ->  Abs (   548,   729)
+	 25: Rel (   121,    15)  ->  Abs (   669,   744)
+	 26: Rel (   162,   134)  ->  Abs (   831,   878)
+	 27: Rel (     0,    88)  ->  Abs (   831,   966)
+	 28: Rel (     0,    92)  ->  Abs (   831,  1058)
+	 29: Rel (  -126,   112)  ->  Abs (   705,  1170)
+	 30: Rel (  -109,     0)  ->  Abs (   596,  1170)
+	 31: Rel (  -119,     0)  ->  Abs (   477,  1170)
+	 32: Rel (  -133,  -149)  ->  Abs (   344,  1021)
+	 33: Rel (     0,  -194)  ->  Abs (   344,   827)
+	 34: Rel (     0,  -434)  ->  Abs (   344,   393)
+	 35: Rel (     0,  -109)  ->  Abs (   344,   284)
+	 36: Rel (    48,  -115)  ->  Abs (   392,   169)
+	 37: Rel (   176,  -118)  ->  Abs (   568,    51)
+	 38: Rel (   107,     0)  ->  Abs (   675,    51)
+	 39: Rel (   130,     0)  ->  Abs (   805,    51)
+	 40: Rel (   150,   180)  ->  Abs (   955,   231)
+	 41: Rel (     0,   120)  ->  Abs (   955,   351)
+	 42: Rel (     0,   144)  ->  Abs (   955,   495)
+	 43: Rel (  -228,   131)  ->  Abs (   727,   626)
+
+	Glyph 534: off = 0x0001BC8C, len = 292
+	  numberOfContours:	1
+	  xMin:			70
+	  yMin:			-386
+	  xMax:			1217
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  30
+
+	  Length of Instructions:	198
+	00000: NPUSHB     (125):     5    12     1     9     0     9    14     9    23    25 
+	                             0    25    14    25    23     6    13    14    14    32 
+	                             0     1    20     0    14    16     0     1    24    23 
+	                            23    32     0    30    20     0    23    21     0    30 
+	                            16    21    19     0     1    13     3    10    23     9 
+	                            10    10    24    24    25    32    29     5     4     4 
+	                            30    30    29     6    14    23    11    19    15     1 
+	                            13    10     4     4     7    14    30    24    23    27 
+	                            16     7    68     7    80     7   176     7   240     7 
+	                             5     7     7    27    27     0    23    64    16    80 
+	                            16    96    16     3    16    16    21    21    14    59 
+	                             0    23    16    23    64    23   112    23   128    23 
+	                             5    23   196   125    24 
+	00127: CALL       
+	00128: MDAP[rd]   
+	00129: DELTAP1    
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: SHP[rp1,zp0] 
+	00132: MDAP[rd]   
+	00133: SHP[rp2,zp1] 
+	00134: MDAP[rd]   
+	00135: DELTAP2    
+	00136: SRP1       
+	00137: IP         
+	00138: SHP[rp1,zp0] 
+	00139: MDAP[rd]   
+	00140: SHP[rp2,zp1] 
+	00141: MDAP[rd]   
+	00142: DELTAP1    
+	00143: SRP1       
+	00144: SRP2       
+	00145: IP         
+	00146: IP         
+	00147: SRP1       
+	00148: SRP2       
+	00149: SLOOP      
+	00150: IP         
+	00151: SVTCA[y-axis] 
+	00152: MIAP[rd+ci] 
+	00153: MIAP[rd+ci] 
+	00154: ALIGNRP    
+	00155: MIAP[rd+ci] 
+	00156: ALIGNRP    
+	00157: SRP0       
+	00158: ALIGNRP    
+	00159: SRP0       
+	00160: ALIGNRP    
+	00161: SRP0       
+	00162: MIRP[srp0,md,rd,1] 
+	00163: ALIGNRP    
+	00164: SRP0       
+	00165: ALIGNRP    
+	00166: SRP0       
+	00167: ALIGNRP    
+	00168: SRP1       
+	00169: SRP2       
+	00170: SLOOP      
+	00171: IP         
+	00172: SRP2       
+	00173: IP         
+	00174: IP         
+	00175: SDPVTL[1]  
+	00176: SFVTL[=p1,p2] 
+	00177: MDAP[nrd]  
+	00178: CALL       
+	00179: SFVTCA[x-axis] 
+	00180: RDTG       
+	00181: SRP0       
+	00182: MDRP[nrp0,nmd,rd,0] 
+	00183: SDPVTL[1]  
+	00184: SFVTL[=p1,p2] 
+	00185: MDAP[nrd]  
+	00186: RTG        
+	00187: CALL       
+	00188: SFVTPV     
+	00189: RDTG       
+	00190: SRP0       
+	00191: MDRP[nrp0,nmd,rd,0] 
+	00192: IUP[y]     
+	00193: IUP[x]     
+	00194: SVTCA[y-axis] 
+	00195: DELTAP1    
+	00196: SVTCA[x-axis] 
+	00197: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                                      On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:                      Y-Short X-Short Off
+	 13:                      Y-Short X-Short On
+	 14:                                      On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:                                      On
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   614,   101)  ->  Abs (   614,   101)
+	  1: Rel (   305,   614)  ->  Abs (   919,   715)
+	  2: Rel (    47,    95)  ->  Abs (   966,   810)
+	  3: Rel (    77,    56)  ->  Abs (  1043,   866)
+	  4: Rel (    61,     0)  ->  Abs (  1104,   866)
+	  5: Rel (    56,     0)  ->  Abs (  1160,   866)
+	  6: Rel (    57,     0)  ->  Abs (  1217,   866)
+	  7: Rel (     0,   -43)  ->  Abs (  1217,   823)
+	  8: Rel (     0,   -42)  ->  Abs (  1217,   781)
+	  9: Rel (   -57,     0)  ->  Abs (  1160,   781)
+	 10: Rel (   -45,     0)  ->  Abs (  1115,   781)
+	 11: Rel (   -42,     0)  ->  Abs (  1073,   781)
+	 12: Rel (   -51,   -45)  ->  Abs (  1022,   736)
+	 13: Rel (   -28,   -57)  ->  Abs (   994,   679)
+	 14: Rel (  -342,  -696)  ->  Abs (   652,   -17)
+	 15: Rel (    35,  -139)  ->  Abs (   687,  -156)
+	 16: Rel (     0,   -90)  ->  Abs (   687,  -246)
+	 17: Rel (     0,   -66)  ->  Abs (   687,  -312)
+	 18: Rel (   -40,   -74)  ->  Abs (   647,  -386)
+	 19: Rel (   -29,     0)  ->  Abs (   618,  -386)
+	 20: Rel (   -76,     0)  ->  Abs (   542,  -386)
+	 21: Rel (     0,   144)  ->  Abs (   542,  -242)
+	 22: Rel (     0,    73)  ->  Abs (   542,  -169)
+	 23: Rel (    33,   152)  ->  Abs (   575,   -17)
+	 24: Rel (  -390,   798)  ->  Abs (   185,   781)
+	 25: Rel (   -59,     0)  ->  Abs (   126,   781)
+	 26: Rel (   -56,     0)  ->  Abs (    70,   781)
+	 27: Rel (     0,    42)  ->  Abs (    70,   823)
+	 28: Rel (     0,    43)  ->  Abs (    70,   866)
+	 29: Rel (    56,     0)  ->  Abs (   126,   866)
+	 30: Rel (   112,     0)  ->  Abs (   238,   866)
+
+	Glyph 535: off = 0x0001BDB0, len = 258
+	  numberOfContours:	1
+	  xMin:			342
+	  yMin:			-386
+	  xMax:			1007
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  37
+
+	  Length of Instructions:	145
+	00000: NPUSHB      (99):   217    16   217    31   233    16   233    31     4    27 
+	                            32    21    26    52     0    32    12    18    52   121 
+	                             0   134     9   153     0   185     0     4     9    37 
+	                            25     0    25    37    41    37     4    88     7   132 
+	                            13   154     8   178    17   185    34   196    13     6 
+	                            15    32     1    26    33    22    15     7     0     0 
+	                             1    32     6     5     1     0    33     6     7     7 
+	                            19    24    24    29    33    15    19    16    19    48 
+	                            19    80    19   112    19     5    19     3     3    11 
+	                            33    16    36    48    36   112    36     3    36 
+	00101: PUSHW[1]            413 
+	00104: PUSHB[2]            128    24 
+	00107: CALL       
+	00108: MDAP[rd]   
+	00109: DELTAP1    
+	00110: MIRP[nrp0,md,rd,1] 
+	00111: SHP[rp1,zp0] 
+	00112: MDAP[rd]   
+	00113: MDAP[rd]   
+	00114: DELTAP1    
+	00115: MIRP[nrp0,md,rd,1] 
+	00116: SHP[rp1,zp0] 
+	00117: MDAP[rd]   
+	00118: SRP1       
+	00119: SHP[rp1,zp0] 
+	00120: MDAP[rd]   
+	00121: ALIGNRP    
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: SVTCA[y-axis] 
+	00124: MIAP[rd+ci] 
+	00125: ALIGNRP    
+	00126: MIRP[srp0,md,rd,1] 
+	00127: ALIGNRP    
+	00128: SRP0       
+	00129: ALIGNRP    
+	00130: MIAP[rd+ci] 
+	00131: MIRP[srp0,md,rd,1] 
+	00132: SRP1       
+	00133: IP         
+	00134: IP         
+	00135: IUP[y]     
+	00136: IUP[x]     
+	00137: SVTCA[x-axis] 
+	00138: DELTAP1    
+	00139: DELTAP2    
+	00140: DELTAP2    
+	00141: CALL       
+	00142: CALL       
+	00143: SVTCA[y-axis] 
+	00144: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               On
+	  7:        XDual         Y-Short         On
+	  8:                      Y-Short X-Short Off
+	  9:                                      Off
+	 10:                      Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short On
+	 16:        XDual Rep-  2 Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual               Y-Short X-Short On
+	 33:  YDual       Rep-  2 Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:        XDual                         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   847,  1170)  ->  Abs (   847,  1170)
+	  1: Rel (  -326,     0)  ->  Abs (   521,  1170)
+	  2: Rel (   -56,     0)  ->  Abs (   465,  1170)
+	  3: Rel (     0,    42)  ->  Abs (   465,  1212)
+	  4: Rel (     0,    43)  ->  Abs (   465,  1255)
+	  5: Rel (    56,     0)  ->  Abs (   521,  1255)
+	  6: Rel (   433,     0)  ->  Abs (   954,  1255)
+	  7: Rel (     0,   -85)  ->  Abs (   954,  1170)
+	  8: Rel (  -168,  -172)  ->  Abs (   786,   998)
+	  9: Rel (  -256,  -333)  ->  Abs (   530,   665)
+	 10: Rel (  -104,  -226)  ->  Abs (   426,   439)
+	 11: Rel (     0,  -100)  ->  Abs (   426,   339)
+	 12: Rel (     0,   -99)  ->  Abs (   426,   240)
+	 13: Rel (    85,  -134)  ->  Abs (   511,   106)
+	 14: Rel (   132,   -55)  ->  Abs (   643,    51)
+	 15: Rel (   131,   -18)  ->  Abs (   774,    33)
+	 16: Rel (    84,   -13)  ->  Abs (   858,    20)
+	 17: Rel (    88,   -34)  ->  Abs (   946,   -14)
+	 18: Rel (    61,   -87)  ->  Abs (  1007,  -101)
+	 19: Rel (     0,   -58)  ->  Abs (  1007,  -159)
+	 20: Rel (     0,   -88)  ->  Abs (  1007,  -247)
+	 21: Rel (  -150,  -139)  ->  Abs (   857,  -386)
+	 22: Rel (  -138,     0)  ->  Abs (   719,  -386)
+	 23: Rel (   -58,     0)  ->  Abs (   661,  -386)
+	 24: Rel (     0,    43)  ->  Abs (   661,  -343)
+	 25: Rel (     0,    41)  ->  Abs (   661,  -302)
+	 26: Rel (    58,     0)  ->  Abs (   719,  -302)
+	 27: Rel (   108,     0)  ->  Abs (   827,  -302)
+	 28: Rel (    96,    89)  ->  Abs (   923,  -213)
+	 29: Rel (     0,    51)  ->  Abs (   923,  -162)
+	 30: Rel (     0,    54)  ->  Abs (   923,  -108)
+	 31: Rel (   -76,    47)  ->  Abs (   847,   -61)
+	 32: Rel (  -104,    14)  ->  Abs (   743,   -47)
+	 33: Rel (  -141,    19)  ->  Abs (   602,   -28)
+	 34: Rel (  -153,    70)  ->  Abs (   449,    42)
+	 35: Rel (  -107,   183)  ->  Abs (   342,   225)
+	 36: Rel (     0,   106)  ->  Abs (   342,   331)
+	 37: Rel (     0,   332)  ->  Abs (   342,   663)
+
+	Glyph 536: off = 0x0001BEB2, len = 370
+	  numberOfContours:	1
+	  xMin:			139
+	  yMin:			-386
+	  xMax:			1015
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  37
+
+	  Length of Instructions:	266
+	00000: NPUSHB      (14):   154    15   160     5   180     2   179     5   183     6 
+	                           196     5     6     2 
+	00016: PUSHW[1]            -32 
+	00019: PUSHB[4]             20    36    52     1 
+	00024: PUSHW[1]            -64 
+	00027: NPUSHB      (14):    20    36    52     1    19    16    26    23     8     1 
+	                            19    20    37    33 
+	00043: PUSHW[1]            686 
+	00046: NPUSHB      (11):    35    70    32    35    35    33    32    34    37    25 
+	                            21 
+	00059: PUSHW[1]            686 
+	00062: NPUSHB      (11):    23    92    20    23    23    21    20    34    25    26 
+	                            30 
+	00075: PUSHW[1]            686 
+	00078: NPUSHB      (59):    28    92    31    28    28    30    31    34    26     1 
+	                            19    26    16    33     4     7     0    37     6    10 
+	                            15    25    26    10    13    12    32     7    15     8 
+	                            47     8    79     8   111     8   207     8   240     8 
+	                             6     8     0    20    32    32    32    31    48    31 
+	                           144    31   160    31     4    31   244   128    24 
+	00139: CALL       
+	00140: MDAP[rd]   
+	00141: DELTAP1    
+	00142: ALIGNRP    
+	00143: MIRP[srp0,md,rd,1] 
+	00144: ALIGNRP    
+	00145: MDAP[rd]   
+	00146: DELTAP1    
+	00147: ALIGNRP    
+	00148: MIRP[srp0,md,rd,1] 
+	00149: ALIGNRP    
+	00150: SVTCA[y-axis] 
+	00151: MIAP[rd+ci] 
+	00152: ALIGNRP    
+	00153: MIAP[rd+ci] 
+	00154: MIAP[rd+ci] 
+	00155: ALIGNRP    
+	00156: MIAP[rd+ci] 
+	00157: MIRP[nrp0,md,rd,1] 
+	00158: SRP1       
+	00159: IP         
+	00160: IP         
+	00161: SRP0       
+	00162: MIRP[srp0,md,rd,1] 
+	00163: RTDG       
+	00164: SRP2       
+	00165: IP         
+	00166: MDAP[rd]   
+	00167: RTG        
+	00168: SVTCA[x-axis] 
+	00169: SRP0       
+	00170: MIRP[srp0,nmd,rd,1] 
+	00171: MIRP[srp0,nmd,rd,0] 
+	00172: MDRP[nrp0,nmd,rd,0] 
+	00173: SVTCA[y-axis] 
+	00174: SRP0       
+	00175: MIRP[srp0,md,rd,1] 
+	00176: RTDG       
+	00177: SRP2       
+	00178: IP         
+	00179: MDAP[rd]   
+	00180: RTG        
+	00181: SVTCA[x-axis] 
+	00182: SRP0       
+	00183: MIRP[srp0,nmd,rd,1] 
+	00184: MIRP[srp0,nmd,rd,0] 
+	00185: MDRP[nrp0,nmd,rd,0] 
+	00186: SVTCA[y-axis] 
+	00187: SRP0       
+	00188: MIRP[srp0,md,rd,1] 
+	00189: RTDG       
+	00190: SRP2       
+	00191: IP         
+	00192: MDAP[rd]   
+	00193: RTG        
+	00194: SVTCA[x-axis] 
+	00195: SRP0       
+	00196: MIRP[srp0,nmd,rd,1] 
+	00197: MIRP[srp0,nmd,rd,0] 
+	00198: MDRP[nrp0,nmd,rd,0] 
+	00199: SFVTPV     
+	00200: SRP0       
+	00201: ALIGNRP    
+	00202: ALIGNRP    
+	00203: RS         
+	00204: JROF       
+	00205: NPUSHB      (14):    14    15     5     6    15     5    13    31     1    14 
+	                             6    16    31     1 
+	00221: SVTCA[y-axis] 
+	00222: CALL       
+	00223: SVTCA[x-axis] 
+	00224: CALL       
+	00225: FLIPRGON   
+	00226: FLIPRGON   
+	00227: SVTCA[y-axis] 
+	00228: SRP1       
+	00229: SRP2       
+	00230: IP         
+	00231: IP         
+	00232: PUSHB[2]              6     2 
+	00235: RS         
+	00236: EQ         
+	00237: IF         
+	00238: PUSHW[2]              1   -64 
+	00243: PUSHB[4]             27    36    52     1 
+	00248: PUSHW[1]            -32 
+	00251: PUSHB[3]             17    26    52 
+	00255: SVTCA[y-axis] 
+	00256: CALL       
+	00257: CALL       
+	00258: EIF        
+	00259: IUP[y]     
+	00260: IUP[x]     
+	00261: SVTCA[y-axis] 
+	00262: CALL       
+	00263: CALL       
+	00264: SVTCA[x-axis] 
+	00265: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual                         On
+	  9:        XDual         Y-Short         Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:        XDual                         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:        XDual                         On
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                               On
+	 27:  YDual                       X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short On
+	 32:        XDual                         On
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   374,   866)  ->  Abs (   374,   866)
+	  1: Rel (     0,  -127)  ->  Abs (   374,   739)
+	  2: Rel (    86,    88)  ->  Abs (   460,   827)
+	  3: Rel (   143,    69)  ->  Abs (   603,   896)
+	  4: Rel (    91,     0)  ->  Abs (   694,   896)
+	  5: Rel (   149,     0)  ->  Abs (   843,   896)
+	  6: Rel (   172,  -177)  ->  Abs (  1015,   719)
+	  7: Rel (     0,  -106)  ->  Abs (  1015,   613)
+	  8: Rel (     0,  -943)  ->  Abs (  1015,  -330)
+	  9: Rel (     0,   -56)  ->  Abs (  1015,  -386)
+	 10: Rel (   -42,     0)  ->  Abs (   973,  -386)
+	 11: Rel (   -42,     0)  ->  Abs (   931,  -386)
+	 12: Rel (     0,    56)  ->  Abs (   931,  -330)
+	 13: Rel (     0,   929)  ->  Abs (   931,   599)
+	 14: Rel (     0,    97)  ->  Abs (   931,   696)
+	 15: Rel (  -139,   115)  ->  Abs (   792,   811)
+	 16: Rel (  -101,     0)  ->  Abs (   691,   811)
+	 17: Rel (   -88,     0)  ->  Abs (   603,   811)
+	 18: Rel (  -125,   -74)  ->  Abs (   478,   737)
+	 19: Rel (  -104,  -126)  ->  Abs (   374,   611)
+	 20: Rel (     0,  -527)  ->  Abs (   374,    84)
+	 21: Rel (    95,     0)  ->  Abs (   469,    84)
+	 22: Rel (    56,     0)  ->  Abs (   525,    84)
+	 23: Rel (     0,   -42)  ->  Abs (   525,    42)
+	 24: Rel (     0,   -42)  ->  Abs (   525,     0)
+	 25: Rel (   -56,     0)  ->  Abs (   469,     0)
+	 26: Rel (  -274,     0)  ->  Abs (   195,     0)
+	 27: Rel (   -56,     0)  ->  Abs (   139,     0)
+	 28: Rel (     0,    42)  ->  Abs (   139,    42)
+	 29: Rel (     0,    42)  ->  Abs (   139,    84)
+	 30: Rel (    56,     0)  ->  Abs (   195,    84)
+	 31: Rel (    95,     0)  ->  Abs (   290,    84)
+	 32: Rel (     0,   697)  ->  Abs (   290,   781)
+	 33: Rel (   -71,     0)  ->  Abs (   219,   781)
+	 34: Rel (   -56,     0)  ->  Abs (   163,   781)
+	 35: Rel (     0,    42)  ->  Abs (   163,   823)
+	 36: Rel (     0,    43)  ->  Abs (   163,   866)
+	 37: Rel (    56,     0)  ->  Abs (   219,   866)
+
+	Glyph 537: off = 0x0001C024, len = 286
+	  numberOfContours:	3
+	  xMin:			179
+	  yMin:			-33
+	  xMax:			1051
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  18
+	  2:  25
+
+	  Length of Instructions:	187
+	00000: NPUSHB      (39):    53     2    56     4    57     8    54    10    56    14 
+	                            53    16    54    21    57    23    69     2    74     4 
+	                            75     8    68    10    74    14    69    16    67    21 
+	                            77    23    16    14    32    32    35    52    16 
+	00041: PUSHW[1]            -32 
+	00044: NPUSHB       (9):    32    35    52    14    32    25    26    52    16 
+	00055: PUSHW[1]            -32 
+	00058: NPUSHB       (9):    25    26    52    23    32    25    26    52    21 
+	00069: PUSHW[1]            -32 
+	00072: NPUSHB       (9):    25    26    52    14    32    20    21    52    16 
+	00083: PUSHW[1]            -32 
+	00086: NPUSHB       (9):    20    21    52    23    32    19    20    52    21 
+	00097: PUSHW[1]            -32 
+	00100: NPUSHB      (47):    19    20    52   212    17     1    38    20    54    17 
+	                           118    20   118    24     4    12    18    32    25    19 
+	                            19    22    15    33     3     1    22    33     9    11 
+	                            12    25    33   191     6     1     6    18    19    33 
+	                           160     0     1     0   196   172    24 
+	00149: CALL       
+	00150: MDAP[rd]   
+	00151: DELTAP1    
+	00152: MIRP[srp0,md,rd,1] 
+	00153: ALIGNRP    
+	00154: MDAP[rd]   
+	00155: DELTAP1    
+	00156: MIRP[srp0,md,rd,1] 
+	00157: ALIGNRP    
+	00158: SVTCA[y-axis] 
+	00159: MIAP[rd+ci] 
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: MIAP[rd+ci] 
+	00162: MIRP[nrp0,md,rd,1] 
+	00163: SRP1       
+	00164: IP         
+	00165: MDAP[rd]   
+	00166: ALIGNRP    
+	00167: MIRP[srp0,md,rd,1] 
+	00168: ALIGNRP    
+	00169: IUP[y]     
+	00170: IUP[x]     
+	00171: SVTCA[y-axis] 
+	00172: DELTAP1    
+	00173: DELTAP1    
+	00174: SVTCA[x-axis] 
+	00175: CALL       
+	00176: CALL       
+	00177: CALL       
+	00178: CALL       
+	00179: CALL       
+	00180: CALL       
+	00181: CALL       
+	00182: CALL       
+	00183: CALL       
+	00184: CALL       
+	00185: SVTCA[x-axis] 
+	00186: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         Off
+	  2:        XDual                 X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual                 X-Short Off
+	  6:        XDual                         On
+	  7:        XDual                         Off
+	  8:                              X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:                              X-Short Off
+	 12:                                      On
+	 13:  YDual               Y-Short X-Short Off
+	 14:                              X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                              X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual                 X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual                 X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   179,   611)  ->  Abs (   179,   611)
+	  1: Rel (     0,   283)  ->  Abs (   179,   894)
+	  2: Rel (   242,   361)  ->  Abs (   421,  1255)
+	  3: Rel (   194,     0)  ->  Abs (   615,  1255)
+	  4: Rel (   195,     0)  ->  Abs (   810,  1255)
+	  5: Rel (   241,  -363)  ->  Abs (  1051,   892)
+	  6: Rel (     0,  -281)  ->  Abs (  1051,   611)
+	  7: Rel (     0,  -280)  ->  Abs (  1051,   331)
+	  8: Rel (  -244,  -364)  ->  Abs (   807,   -33)
+	  9: Rel (  -192,     0)  ->  Abs (   615,   -33)
+	 10: Rel (  -192,     0)  ->  Abs (   423,   -33)
+	 11: Rel (  -244,   360)  ->  Abs (   179,   327)
+	 12: Rel (   787,   326)  ->  Abs (   966,   653)
+	 13: Rel (    -4,   224)  ->  Abs (   962,   877)
+	 14: Rel (  -186,   293)  ->  Abs (   776,  1170)
+	 15: Rel (  -161,     0)  ->  Abs (   615,  1170)
+	 16: Rel (  -157,     0)  ->  Abs (   458,  1170)
+	 17: Rel (  -194,  -293)  ->  Abs (   264,   877)
+	 18: Rel (    -1,  -224)  ->  Abs (   263,   653)
+	 19: Rel (     0,   -85)  ->  Abs (   263,   568)
+	 20: Rel (     1,  -223)  ->  Abs (   264,   345)
+	 21: Rel (   194,  -294)  ->  Abs (   458,    51)
+	 22: Rel (   157,     0)  ->  Abs (   615,    51)
+	 23: Rel (   157,     0)  ->  Abs (   772,    51)
+	 24: Rel (   193,   293)  ->  Abs (   965,   344)
+	 25: Rel (     1,   224)  ->  Abs (   966,   568)
+
+	Glyph 538: off = 0x0001C142, len = 104
+	  numberOfContours:	1
+	  xMin:			527
+	  yMin:			-33
+	  xMax:			879
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	41
+	00000: NPUSHB      (24):    18     7     7     7     3    33    13    11    10    10 
+	                             0     1    32    16    16    15    48    15    80    15 
+	                           144    15     4    15 
+	00026: MDAP[rd]   
+	00027: DELTAP1    
+	00028: ALIGNRP    
+	00029: MIRP[srp0,md,rd,1] 
+	00030: ALIGNRP    
+	00031: SHP[rp2,zp1] 
+	00032: MDAP[rd]   
+	00033: SVTCA[y-axis] 
+	00034: MIAP[rd+ci] 
+	00035: MIRP[nrp0,md,rd,1] 
+	00036: SHP[rp1,zp0] 
+	00037: MDAP[rd]   
+	00038: MIAP[rd+ci] 
+	00039: IUP[y]     
+	00040: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:        XDual                         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   611,   839)  ->  Abs (   611,   839)
+	  1: Rel (     0,  -705)  ->  Abs (   611,   134)
+	  2: Rel (     0,   -83)  ->  Abs (   611,    51)
+	  3: Rel (    80,     0)  ->  Abs (   691,    51)
+	  4: Rel (    60,     0)  ->  Abs (   751,    51)
+	  5: Rel (    48,    25)  ->  Abs (   799,    76)
+	  6: Rel (    28,    15)  ->  Abs (   827,    91)
+	  7: Rel (    13,     0)  ->  Abs (   840,    91)
+	  8: Rel (    13,     0)  ->  Abs (   853,    91)
+	  9: Rel (    26,   -24)  ->  Abs (   879,    67)
+	 10: Rel (     0,   -19)  ->  Abs (   879,    48)
+	 11: Rel (     0,   -34)  ->  Abs (   879,    14)
+	 12: Rel (  -114,   -47)  ->  Abs (   765,   -33)
+	 13: Rel (   -86,     0)  ->  Abs (   679,   -33)
+	 14: Rel (  -152,     0)  ->  Abs (   527,   -33)
+	 15: Rel (     0,   146)  ->  Abs (   527,   113)
+	 16: Rel (     0,   726)  ->  Abs (   527,   839)
+	 17: Rel (     0,    57)  ->  Abs (   527,   896)
+	 18: Rel (    42,     0)  ->  Abs (   569,   896)
+	 19: Rel (    42,     0)  ->  Abs (   611,   896)
+
+	Glyph 539: off = 0x0001C1AA, len = 552
+	  numberOfContours:	1
+	  xMin:			158
+	  yMin:			0
+	  xMax:			1128
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  45
+
+	  Length of Instructions:	428
+	00000: NPUSHB      (62):    23    32    34    36    52    24    32    27    36    52 
+	                            24    32    20    21    52     5    14    23    14    36 
+	                             1    32     2    32    13    79    19    95     2   134 
+	                            14   153     1     9    31     4    31     5    31     6 
+	                            31     7     4    15     5    15     6    15     7    75 
+	                             1   224    13     5     0    13     1     0    26    27 
+	                             8    12 
+	00064: PUSHW[1]            686 
+	00067: PUSHB[7]             10   159    10   191    10     2    10 
+	00075: PUSHW[1]            779 
+	00078: NPUSHB      (11):    13    10    10    12    13    34     8    13    14     7 
+	                             3 
+	00091: PUSHW[1]            686 
+	00094: PUSHB[7]              5    47     5    63     5     2     5 
+	00102: PUSHW[1]            779 
+	00105: NPUSHB      (11):     2     5     5     3     2    34     7     2     1    44 
+	                            40 
+	00118: PUSHW[1]            686 
+	00121: NPUSHB      (11):    42    47    39    42    42    40    39    34    44    32 
+	                            28 
+	00134: PUSHW[1]            686 
+	00137: NPUSHB      (20):     0    30    16    30    32    30    48    30     4    30 
+	                            47    27    30    30    28    27    34    32    33    37 
+	00159: PUSHW[1]            686 
+	00162: NPUSHB      (93):    35    47    38    35    35    37    38    34    33    13 
+	                            14    14    32     1     2    20     1    14    15     1 
+	                             2    14     1     0    32    25    26    26    45    33 
+	                             8     7     7    45    45    44     6    17    16    32 
+	                            21    22    22    32    32    33    10    16    19    22 
+	                             2    13    45     1    25    14     3    22    27    31 
+	                            13    48    13   111    13   160    13   176    13   208 
+	                            13     6    13    13    19   197   240    22     1    22 
+	                            45    27    32    39    16    38    32    38   240    38 
+	                             3    38    42 
+	00257: PUSHW[2]            263    24 
+	00262: CALL       
+	00263: MDAP[rd]   
+	00264: DELTAP1    
+	00265: ALIGNRP    
+	00266: MIRP[srp0,md,rd,1] 
+	00267: ALIGNRP    
+	00268: MDAP[rd]   
+	00269: DELTAP1    
+	00270: MIRP[nrp0,md,rd,1] 
+	00271: SHP[rp1,zp0] 
+	00272: MDAP[rd]   
+	00273: DELTAP1    
+	00274: SRP1       
+	00275: SRP2       
+	00276: SLOOP      
+	00277: IP         
+	00278: SRP1       
+	00279: SRP2       
+	00280: IP         
+	00281: SRP1       
+	00282: SRP2       
+	00283: IP         
+	00284: SVTCA[y-axis] 
+	00285: MIAP[rd+ci] 
+	00286: ALIGNRP    
+	00287: SRP0       
+	00288: ALIGNRP    
+	00289: SRP0       
+	00290: ALIGNRP    
+	00291: MIRP[srp0,md,rd,1] 
+	00292: ALIGNRP    
+	00293: MIAP[rd+ci] 
+	00294: ALIGNRP    
+	00295: SRP0       
+	00296: ALIGNRP    
+	00297: SRP0       
+	00298: ALIGNRP    
+	00299: SRP1       
+	00300: SRP2       
+	00301: IP         
+	00302: MDAP[rd]   
+	00303: ALIGNRP    
+	00304: MIRP[srp0,md,rd,1] 
+	00305: ALIGNRP    
+	00306: IP         
+	00307: SDPVTL[1]  
+	00308: SFVTL[=p1,p2] 
+	00309: MDAP[nrd]  
+	00310: CALL       
+	00311: SFVTCA[x-axis] 
+	00312: RDTG       
+	00313: SRP0       
+	00314: MDRP[nrp0,nmd,rd,0] 
+	00315: RTG        
+	00316: SVTCA[y-axis] 
+	00317: SRP0       
+	00318: MIRP[srp0,md,rd,1] 
+	00319: RTDG       
+	00320: SRP2       
+	00321: IP         
+	00322: MDAP[rd]   
+	00323: RTG        
+	00324: SVTCA[x-axis] 
+	00325: SRP0       
+	00326: MIRP[srp0,nmd,rd,1] 
+	00327: MIRP[srp0,nmd,rd,0] 
+	00328: MDRP[nrp0,nmd,rd,0] 
+	00329: SVTCA[y-axis] 
+	00330: SRP0       
+	00331: MIRP[srp0,md,rd,1] 
+	00332: RTDG       
+	00333: SRP2       
+	00334: IP         
+	00335: MDAP[rd]   
+	00336: RTG        
+	00337: SVTCA[x-axis] 
+	00338: SRP0       
+	00339: MIRP[srp0,nmd,rd,1] 
+	00340: DELTAP1    
+	00341: MIRP[srp0,nmd,rd,0] 
+	00342: MDRP[nrp0,nmd,rd,0] 
+	00343: SVTCA[y-axis] 
+	00344: SRP0       
+	00345: MIRP[srp0,md,rd,1] 
+	00346: RTDG       
+	00347: SRP2       
+	00348: IP         
+	00349: MDAP[rd]   
+	00350: RTG        
+	00351: SVTCA[x-axis] 
+	00352: SRP0       
+	00353: MIRP[srp0,nmd,rd,1] 
+	00354: MIRP[srp0,nmd,rd,0] 
+	00355: MDRP[nrp0,nmd,rd,0] 
+	00356: SVTCA[y-axis] 
+	00357: SFVTL[=p1,p2] 
+	00358: SRP0       
+	00359: MIRP[srp0,md,rd,1] 
+	00360: RTDG       
+	00361: SRP2       
+	00362: IP         
+	00363: MDAP[rd]   
+	00364: RTG        
+	00365: SVTCA[x-axis] 
+	00366: SRP0       
+	00367: MIRP[srp0,nmd,nrd,1] 
+	00368: DELTAP1    
+	00369: MDAP[rd]   
+	00370: MIRP[srp0,nmd,rd,0] 
+	00371: MDRP[nrp0,nmd,rd,0] 
+	00372: SVTCA[y-axis] 
+	00373: SFVTL[=p1,p2] 
+	00374: SRP0       
+	00375: MIRP[srp0,md,rd,1] 
+	00376: RTDG       
+	00377: SRP2       
+	00378: IP         
+	00379: MDAP[rd]   
+	00380: RTG        
+	00381: SVTCA[x-axis] 
+	00382: SRP0       
+	00383: MIRP[srp0,nmd,nrd,1] 
+	00384: DELTAP1    
+	00385: MDAP[rd]   
+	00386: MIRP[srp0,nmd,rd,0] 
+	00387: MDRP[nrp0,nmd,rd,0] 
+	00388: SRP0       
+	00389: ALIGNRP    
+	00390: ALIGNRP    
+	00391: PUSHB[2]              6     2 
+	00394: RS         
+	00395: EQ         
+	00396: IF         
+	00397: PUSHW[2]              2   -32 
+	00402: PUSHB[4]             15    36    52     1 
+	00407: PUSHW[1]            -32 
+	00410: PUSHB[3]             15    36    52 
+	00414: SVTCA[y-axis] 
+	00415: CALL       
+	00416: CALL       
+	00417: EIF        
+	00418: IUP[y]     
+	00419: IUP[x]     
+	00420: SVTCA[x-axis] 
+	00421: DELTAP2    
+	00422: DELTAP1    
+	00423: DELTAP1    
+	00424: DELTAP1    
+	00425: CALL       
+	00426: CALL       
+	00427: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:                                      On
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short On
+	 14:                                      On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual                 X-Short On
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short On
+	 27:        XDual                         On
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                               On
+	 34:  YDual                       X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short On
+	 39:        XDual                         On
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   411,   486)  ->  Abs (   411,   486)
+	  1: Rel (    98,     0)  ->  Abs (   509,   486)
+	  2: Rel (   324,   295)  ->  Abs (   833,   781)
+	  3: Rel (   -47,     0)  ->  Abs (   786,   781)
+	  4: Rel (   -56,     0)  ->  Abs (   730,   781)
+	  5: Rel (     0,    42)  ->  Abs (   730,   823)
+	  6: Rel (     0,    43)  ->  Abs (   730,   866)
+	  7: Rel (    56,     0)  ->  Abs (   786,   866)
+	  8: Rel (   205,     0)  ->  Abs (   991,   866)
+	  9: Rel (    56,     0)  ->  Abs (  1047,   866)
+	 10: Rel (     0,   -43)  ->  Abs (  1047,   823)
+	 11: Rel (     0,   -42)  ->  Abs (  1047,   781)
+	 12: Rel (   -56,     0)  ->  Abs (   991,   781)
+	 13: Rel (   -36,     0)  ->  Abs (   955,   781)
+	 14: Rel (  -348,  -313)  ->  Abs (   607,   468)
+	 15: Rel (   177,   -58)  ->  Abs (   784,   410)
+	 16: Rel (   171,  -326)  ->  Abs (   955,    84)
+	 17: Rel (   116,     0)  ->  Abs (  1071,    84)
+	 18: Rel (    57,     0)  ->  Abs (  1128,    84)
+	 19: Rel (     0,   -42)  ->  Abs (  1128,    42)
+	 20: Rel (     0,   -42)  ->  Abs (  1128,     0)
+	 21: Rel (   -57,     0)  ->  Abs (  1071,     0)
+	 22: Rel (  -171,     0)  ->  Abs (   900,     0)
+	 23: Rel (   -79,   179)  ->  Abs (   821,   179)
+	 24: Rel (  -206,   222)  ->  Abs (   615,   401)
+	 25: Rel (  -141,     0)  ->  Abs (   474,   401)
+	 26: Rel (   -63,     0)  ->  Abs (   411,   401)
+	 27: Rel (     0,  -317)  ->  Abs (   411,    84)
+	 28: Rel (   112,     0)  ->  Abs (   523,    84)
+	 29: Rel (    56,     0)  ->  Abs (   579,    84)
+	 30: Rel (     0,   -42)  ->  Abs (   579,    42)
+	 31: Rel (     0,   -42)  ->  Abs (   579,     0)
+	 32: Rel (   -56,     0)  ->  Abs (   523,     0)
+	 33: Rel (  -309,     0)  ->  Abs (   214,     0)
+	 34: Rel (   -56,     0)  ->  Abs (   158,     0)
+	 35: Rel (     0,    42)  ->  Abs (   158,    42)
+	 36: Rel (     0,    42)  ->  Abs (   158,    84)
+	 37: Rel (    56,     0)  ->  Abs (   214,    84)
+	 38: Rel (   112,     0)  ->  Abs (   326,    84)
+	 39: Rel (     0,   697)  ->  Abs (   326,   781)
+	 40: Rel (  -112,     0)  ->  Abs (   214,   781)
+	 41: Rel (   -56,     0)  ->  Abs (   158,   781)
+	 42: Rel (     0,    42)  ->  Abs (   158,   823)
+	 43: Rel (     0,    43)  ->  Abs (   158,   866)
+	 44: Rel (    56,     0)  ->  Abs (   214,   866)
+	 45: Rel (   197,     0)  ->  Abs (   411,   866)
+
+	Glyph 540: off = 0x0001C3D2, len = 432
+	  numberOfContours:	1
+	  xMin:			65
+	  yMin:			0
+	  xMax:			1198
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  32
+
+	  Length of Instructions:	336
+	00000: NPUSHB      (22):    24     1    43     1    58     1    56     8    56    21 
+	                             5     1     1     0    21    20    21    22    20     2 
+	                            14    10 
+	00024: PUSHW[1]            686 
+	00027: PUSHB[5]             12    64    12     1    12 
+	00033: PUSHW[1]            779 
+	00036: NPUSHB      (11):     9    12    12    10     9    34    14     9     8    15 
+	                            19 
+	00049: PUSHW[1]            686 
+	00052: NPUSHB      (14):    17    17    92    20    17    17    19    20    34    15 
+	                            20     2     7     3 
+	00068: PUSHW[1]            686 
+	00071: NPUSHB      (14):     5     5    47     2     5     5     3     2    34     7 
+	                             2    20    27    23 
+	00087: PUSHW[1]            686 
+	00090: NPUSHB      (14):    25    25    92    22    25    25    23    22    34    27 
+	                            22    21    28    32 
+	00106: PUSHW[1]            686 
+	00109: PUSHB[5]             30    32    30     1    30 
+	00115: PUSHW[1]            779 
+	00118: NPUSHB      (80):     0    30    30    32     0    34    28     0     1     2 
+	                            20    20    32     9     8    20     9     9     8    21 
+	                            22    21    20    22    32     0     1    20     0     0 
+	                             1     1    21     8    28     8     7     1    14    15 
+	                            15    27    27    28    10    20     9     1     8     2 
+	                            22    21     2     2    21    27     9    48     9    91 
+	                             9     3     9     9    21     0     0    16     0    48 
+	                             0   112     0     4     0     0    21   196   173    24 
+	00200: CALL       
+	00201: MDAP[rd]   
+	00202: SHP[rp1,zp0] 
+	00203: MDAP[rd]   
+	00204: DELTAP1    
+	00205: SRP1       
+	00206: SHP[rp1,zp0] 
+	00207: MDAP[rd]   
+	00208: DELTAP1    
+	00209: SRP1       
+	00210: SHP[rp1,zp0] 
+	00211: MDAP[rd]   
+	00212: SRP1       
+	00213: IP         
+	00214: SRP2       
+	00215: IP         
+	00216: IP         
+	00217: SRP2       
+	00218: IP         
+	00219: SVTCA[y-axis] 
+	00220: MIAP[rd+ci] 
+	00221: ALIGNRP    
+	00222: SRP0       
+	00223: ALIGNRP    
+	00224: SRP0       
+	00225: ALIGNRP    
+	00226: MIAP[rd+ci] 
+	00227: ALIGNRP    
+	00228: SRP1       
+	00229: SRP2       
+	00230: IP         
+	00231: IP         
+	00232: SDPVTL[1]  
+	00233: SFVTCA[x-axis] 
+	00234: MDAP[nrd]  
+	00235: CALL       
+	00236: SFVTL[=p1,p2] 
+	00237: RDTG       
+	00238: SRP0       
+	00239: MDRP[nrp0,nmd,rd,0] 
+	00240: SDPVTL[1]  
+	00241: SFVTCA[x-axis] 
+	00242: MDAP[nrd]  
+	00243: RTG        
+	00244: CALL       
+	00245: RDTG       
+	00246: SRP0       
+	00247: MDRP[nrp0,nmd,rd,0] 
+	00248: RTG        
+	00249: SVTCA[y-axis] 
+	00250: SFVTL[=p1,p2] 
+	00251: SRP0       
+	00252: MIRP[srp0,md,rd,1] 
+	00253: RTDG       
+	00254: SRP2       
+	00255: IP         
+	00256: MDAP[rd]   
+	00257: RTG        
+	00258: SVTCA[x-axis] 
+	00259: SRP0       
+	00260: MIRP[srp0,nmd,nrd,1] 
+	00261: DELTAP1    
+	00262: MDAP[rd]   
+	00263: MIRP[srp0,nmd,rd,0] 
+	00264: MDRP[nrp0,nmd,rd,0] 
+	00265: SVTCA[y-axis] 
+	00266: SFVTL[=p1,p2] 
+	00267: SRP0       
+	00268: MIRP[srp0,md,rd,1] 
+	00269: RTDG       
+	00270: SRP2       
+	00271: IP         
+	00272: MDAP[rd]   
+	00273: RTG        
+	00274: SVTCA[x-axis] 
+	00275: SRP0       
+	00276: MIRP[srp0,nmd,nrd,1] 
+	00277: MDAP[rd]   
+	00278: MIRP[srp0,nmd,rd,0] 
+	00279: MDRP[nrp0,nmd,rd,0] 
+	00280: SVTCA[y-axis] 
+	00281: SFVTL[=p1,p2] 
+	00282: SRP0       
+	00283: MIRP[srp0,md,rd,1] 
+	00284: RTDG       
+	00285: SRP2       
+	00286: IP         
+	00287: MDAP[rd]   
+	00288: RTG        
+	00289: SVTCA[x-axis] 
+	00290: SRP0       
+	00291: MIRP[srp0,nmd,nrd,1] 
+	00292: MDAP[rd]   
+	00293: MIRP[srp0,nmd,rd,0] 
+	00294: MDRP[nrp0,nmd,rd,0] 
+	00295: SVTCA[y-axis] 
+	00296: SFVTL[=p1,p2] 
+	00297: SRP0       
+	00298: MIRP[srp0,md,rd,1] 
+	00299: RTDG       
+	00300: SRP2       
+	00301: IP         
+	00302: MDAP[rd]   
+	00303: RTG        
+	00304: SVTCA[x-axis] 
+	00305: SRP0       
+	00306: MIRP[srp0,nmd,nrd,1] 
+	00307: MDAP[rd]   
+	00308: MIRP[srp0,nmd,rd,0] 
+	00309: MDRP[nrp0,nmd,rd,0] 
+	00310: SVTCA[y-axis] 
+	00311: SFVTL[=p1,p2] 
+	00312: SRP0       
+	00313: MIRP[srp0,md,rd,1] 
+	00314: RTDG       
+	00315: SRP2       
+	00316: IP         
+	00317: MDAP[rd]   
+	00318: RTG        
+	00319: SVTCA[x-axis] 
+	00320: SRP0       
+	00321: MIRP[srp0,nmd,nrd,1] 
+	00322: DELTAP2    
+	00323: MDAP[rd]   
+	00324: MIRP[srp0,nmd,rd,0] 
+	00325: MDRP[nrp0,nmd,rd,0] 
+	00326: SPVTL[p1,p2] 
+	00327: SFVTL[=p1,p2] 
+	00328: SRP0       
+	00329: ALIGNRP    
+	00330: SFVTL[=p1,p2] 
+	00331: ALIGNRP    
+	00332: IUP[y]     
+	00333: IUP[x]     
+	00334: SVTCA[x-axis] 
+	00335: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:                                      On
+	  2:                              X-Short On
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short On
+	  9:                                      On
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short On
+	 21:                                      On
+	 22:                                      On
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   182,    84)  ->  Abs (   182,    84)
+	  1: Rel (   383,   732)  ->  Abs (   565,   816)
+	  2: Rel (  -198,   354)  ->  Abs (   367,  1170)
+	  3: Rel (  -113,     0)  ->  Abs (   254,  1170)
+	  4: Rel (   -56,     0)  ->  Abs (   198,  1170)
+	  5: Rel (     0,    42)  ->  Abs (   198,  1212)
+	  6: Rel (     0,    43)  ->  Abs (   198,  1255)
+	  7: Rel (    56,     0)  ->  Abs (   254,  1255)
+	  8: Rel (   168,     0)  ->  Abs (   422,  1255)
+	  9: Rel (   659, -1171)  ->  Abs (  1081,    84)
+	 10: Rel (    61,     0)  ->  Abs (  1142,    84)
+	 11: Rel (    56,     0)  ->  Abs (  1198,    84)
+	 12: Rel (     0,   -42)  ->  Abs (  1198,    42)
+	 13: Rel (     0,   -42)  ->  Abs (  1198,     0)
+	 14: Rel (   -56,     0)  ->  Abs (  1142,     0)
+	 15: Rel (  -246,     0)  ->  Abs (   896,     0)
+	 16: Rel (   -56,     0)  ->  Abs (   840,     0)
+	 17: Rel (     0,    42)  ->  Abs (   840,    42)
+	 18: Rel (     0,    42)  ->  Abs (   840,    84)
+	 19: Rel (    56,     0)  ->  Abs (   896,    84)
+	 20: Rel (    83,     0)  ->  Abs (   979,    84)
+	 21: Rel (  -364,   644)  ->  Abs (   615,   728)
+	 22: Rel (  -336,  -644)  ->  Abs (   279,    84)
+	 23: Rel (    86,     0)  ->  Abs (   365,    84)
+	 24: Rel (    57,     0)  ->  Abs (   422,    84)
+	 25: Rel (     0,   -42)  ->  Abs (   422,    42)
+	 26: Rel (     0,   -42)  ->  Abs (   422,     0)
+	 27: Rel (   -57,     0)  ->  Abs (   365,     0)
+	 28: Rel (  -244,     0)  ->  Abs (   121,     0)
+	 29: Rel (   -56,     0)  ->  Abs (    65,     0)
+	 30: Rel (     0,    42)  ->  Abs (    65,    42)
+	 31: Rel (     0,    42)  ->  Abs (    65,    84)
+	 32: Rel (    56,     0)  ->  Abs (   121,    84)
+
+	Glyph 541: off = 0x0001C582, len = 340
+	  numberOfContours:	1
+	  xMin:			84
+	  yMin:			-386
+	  xMax:			1140
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  38
+
+	  Length of Instructions:	235
+	00000: PUSHB[4]            249    37     1    37 
+	00005: PUSHW[1]            -32 
+	00008: NPUSHB      (23):    34    36    52    18    64    25    36    52    14    64 
+	                            25    36    52    38    37    14    13    31    32    18 
+	                            19     5     1 
+	00033: PUSHW[1]            686 
+	00036: NPUSHB      (11):     3    47     0     3     3     1     0    34     5    29 
+	                            25 
+	00049: PUSHW[1]            686 
+	00052: NPUSHB      (11):    27    47    24    27    27    25    24    34    29    12 
+	                             8 
+	00065: PUSHW[1]            686 
+	00068: NPUSHB      (56):     0    10     1    10    47     7    10    10     8     7 
+	                            34    12    18    14    30     6     5     5    30    30 
+	                            29     6    12    13    10    21    15    35    33    16 
+	                            11     0    13    32     6    15     7    47     7    79 
+	                             7   207     7   223     7     5     7    30    19    32 
+	                            24   191    23     1    23    71 
+	00126: PUSHW[2]            789    24 
+	00131: CALL       
+	00132: MDAP[rd]   
+	00133: DELTAP1    
+	00134: ALIGNRP    
+	00135: MIRP[srp0,md,rd,1] 
+	00136: ALIGNRP    
+	00137: MDAP[rd]   
+	00138: DELTAP1    
+	00139: ALIGNRP    
+	00140: MIRP[srp0,md,rd,1] 
+	00141: ALIGNRP    
+	00142: SVTCA[y-axis] 
+	00143: MIAP[rd+ci] 
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: MIAP[rd+ci] 
+	00146: MIAP[rd+ci] 
+	00147: ALIGNRP    
+	00148: MIAP[rd+ci] 
+	00149: ALIGNRP    
+	00150: SRP0       
+	00151: ALIGNRP    
+	00152: SRP0       
+	00153: ALIGNRP    
+	00154: SRP1       
+	00155: IP         
+	00156: IP         
+	00157: SRP0       
+	00158: MIRP[srp0,md,rd,1] 
+	00159: RTDG       
+	00160: SRP2       
+	00161: IP         
+	00162: MDAP[rd]   
+	00163: RTG        
+	00164: SVTCA[x-axis] 
+	00165: SRP0       
+	00166: MIRP[srp0,nmd,rd,1] 
+	00167: DELTAP1    
+	00168: MIRP[srp0,nmd,rd,0] 
+	00169: MDRP[nrp0,nmd,rd,0] 
+	00170: SVTCA[y-axis] 
+	00171: SRP0       
+	00172: MIRP[srp0,md,rd,1] 
+	00173: RTDG       
+	00174: SRP2       
+	00175: IP         
+	00176: MDAP[rd]   
+	00177: RTG        
+	00178: SVTCA[x-axis] 
+	00179: SRP0       
+	00180: MIRP[srp0,nmd,rd,1] 
+	00181: MIRP[srp0,nmd,rd,0] 
+	00182: MDRP[nrp0,nmd,rd,0] 
+	00183: SVTCA[y-axis] 
+	00184: SRP0       
+	00185: MIRP[srp0,md,rd,1] 
+	00186: RTDG       
+	00187: SRP2       
+	00188: IP         
+	00189: MDAP[rd]   
+	00190: RTG        
+	00191: SVTCA[x-axis] 
+	00192: SRP0       
+	00193: MIRP[srp0,nmd,rd,1] 
+	00194: MIRP[srp0,nmd,rd,0] 
+	00195: MDRP[nrp0,nmd,rd,0] 
+	00196: SFVTPV     
+	00197: SRP0       
+	00198: ALIGNRP    
+	00199: ALIGNRP    
+	00200: ALIGNRP    
+	00201: SRP0       
+	00202: ALIGNRP    
+	00203: ALIGNRP    
+	00204: ALIGNRP    
+	00205: PUSHB[2]              6     2 
+	00208: RS         
+	00209: EQ         
+	00210: IF         
+	00211: NPUSHB      (10):    14    64    27    36    52    14    32    17    26    52 
+	00223: SVTCA[y-axis] 
+	00224: CALL       
+	00225: CALL       
+	00226: EIF        
+	00227: IUP[y]     
+	00228: IUP[x]     
+	00229: SVTCA[y-axis] 
+	00230: CALL       
+	00231: CALL       
+	00232: CALL       
+	00233: SVTCA[x-axis] 
+	00234: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short On
+	 14:  YDual XDual         Y-Short         On
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short On
+	 19:        XDual                         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:        XDual                         On
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short On
+	 31:        XDual                         On
+	 32:        XDual         Y-Short         Off
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   888,   781)  ->  Abs (   888,   781)
+	  1: Rel (  -113,     0)  ->  Abs (   775,   781)
+	  2: Rel (   -56,     0)  ->  Abs (   719,   781)
+	  3: Rel (     0,    42)  ->  Abs (   719,   823)
+	  4: Rel (     0,    43)  ->  Abs (   719,   866)
+	  5: Rel (    56,     0)  ->  Abs (   775,   866)
+	  6: Rel (   197,     0)  ->  Abs (   972,   866)
+	  7: Rel (     0,  -782)  ->  Abs (   972,    84)
+	  8: Rel (   112,     0)  ->  Abs (  1084,    84)
+	  9: Rel (    56,     0)  ->  Abs (  1140,    84)
+	 10: Rel (     0,   -42)  ->  Abs (  1140,    42)
+	 11: Rel (     0,   -42)  ->  Abs (  1140,     0)
+	 12: Rel (   -56,     0)  ->  Abs (  1084,     0)
+	 13: Rel (  -196,     0)  ->  Abs (   888,     0)
+	 14: Rel (     0,   104)  ->  Abs (   888,   104)
+	 15: Rel (  -115,  -137)  ->  Abs (   773,   -33)
+	 16: Rel (  -175,     0)  ->  Abs (   598,   -33)
+	 17: Rel (  -153,     0)  ->  Abs (   445,   -33)
+	 18: Rel (  -108,   123)  ->  Abs (   337,    90)
+	 19: Rel (     0,  -420)  ->  Abs (   337,  -330)
+	 20: Rel (     0,   -56)  ->  Abs (   337,  -386)
+	 21: Rel (   -42,     0)  ->  Abs (   295,  -386)
+	 22: Rel (   -43,     0)  ->  Abs (   252,  -386)
+	 23: Rel (     0,    56)  ->  Abs (   252,  -330)
+	 24: Rel (     0,  1111)  ->  Abs (   252,   781)
+	 25: Rel (  -112,     0)  ->  Abs (   140,   781)
+	 26: Rel (   -56,     0)  ->  Abs (    84,   781)
+	 27: Rel (     0,    42)  ->  Abs (    84,   823)
+	 28: Rel (     0,    43)  ->  Abs (    84,   866)
+	 29: Rel (    56,     0)  ->  Abs (   140,   866)
+	 30: Rel (   197,     0)  ->  Abs (   337,   866)
+	 31: Rel (     0,  -475)  ->  Abs (   337,   391)
+	 32: Rel (     0,  -119)  ->  Abs (   337,   272)
+	 33: Rel (    45,  -124)  ->  Abs (   382,   148)
+	 34: Rel (   138,   -97)  ->  Abs (   520,    51)
+	 35: Rel (    86,     0)  ->  Abs (   606,    51)
+	 36: Rel (   114,     0)  ->  Abs (   720,    51)
+	 37: Rel (   168,   158)  ->  Abs (   888,   209)
+	 38: Rel (     0,   182)  ->  Abs (   888,   391)
+
+	Glyph 542: off = 0x0001C6D6, len = 240
+	  numberOfContours:	1
+	  xMin:			74
+	  yMin:			0
+	  xMax:			1022
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  24
+
+	  Length of Instructions:	161
+	00000: PUSHW[2]             16   -64 
+	00005: NPUSHB      (27):    23    36    52   167     0   167    15   167    16   183 
+	                             0   183    15   182    16   182    24   199     0   198 
+	                            15     9     7    24     1    23    19 
+	00034: PUSHW[1]            686 
+	00037: NPUSHB      (67):    21    21    92    18    21    21    19    18    34    23 
+	                            18    17    24    18    17    17    32     0    24    20 
+	                             0     0    24     0     3    13     5     4    24    16 
+	                            17    10    10     7    24    23     6    16     8    17 
+	                            24     0    18     7     7     3    33    47    13    79 
+	                            13   191    13     3    13    13    48    18   191    18 
+	                             2    18    18     0    94   128    24 
+	00106: CALL       
+	00107: MDAP[rd]   
+	00108: SHP[rp1,zp0] 
+	00109: MDAP[rd]   
+	00110: DELTAP1    
+	00111: SHP[rp2,zp1] 
+	00112: MDAP[rd]   
+	00113: DELTAP1    
+	00114: MIRP[nrp0,md,rd,1] 
+	00115: SHP[rp1,zp0] 
+	00116: MDAP[rd]   
+	00117: SRP1       
+	00118: SRP2       
+	00119: IP         
+	00120: IP         
+	00121: SRP1       
+	00122: IP         
+	00123: SVTCA[y-axis] 
+	00124: MIAP[rd+ci] 
+	00125: ALIGNRP    
+	00126: MIAP[rd+ci] 
+	00127: MIAP[rd+ci] 
+	00128: ALIGNRP    
+	00129: SRP2       
+	00130: SLOOP      
+	00131: IP         
+	00132: SDPVTL[1]  
+	00133: SFVTCA[x-axis] 
+	00134: MDAP[nrd]  
+	00135: CALL       
+	00136: SDPVTL[1]  
+	00137: RDTG       
+	00138: MDRP[nrp0,nmd,rd,0] 
+	00139: RTG        
+	00140: SVTCA[y-axis] 
+	00141: SFVTL[=p1,p2] 
+	00142: SRP0       
+	00143: MIRP[srp0,md,rd,1] 
+	00144: RTDG       
+	00145: SRP2       
+	00146: IP         
+	00147: MDAP[rd]   
+	00148: RTG        
+	00149: SVTCA[x-axis] 
+	00150: SRP0       
+	00151: MIRP[srp0,nmd,nrd,1] 
+	00152: MDAP[rd]   
+	00153: MIRP[srp0,nmd,rd,0] 
+	00154: MDRP[nrp0,nmd,rd,0] 
+	00155: IUP[y]     
+	00156: IUP[x]     
+	00157: SVTCA[x-axis] 
+	00158: DELTAP2    
+	00159: DELTAP1    
+	00160: CALL       
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                              X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:  YDual                       X-Short On
+	 18:                                      On
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   638,    84)  ->  Abs (   638,    84)
+	  1: Rel (   169,   202)  ->  Abs (   807,   286)
+	  2: Rel (   124,   229)  ->  Abs (   931,   515)
+	  3: Rel (     0,    92)  ->  Abs (   931,   607)
+	  4: Rel (     0,   108)  ->  Abs (   931,   715)
+	  5: Rel (   -71,    99)  ->  Abs (   860,   814)
+	  6: Rel (   -17,    25)  ->  Abs (   843,   839)
+	  7: Rel (     0,    13)  ->  Abs (   843,   852)
+	  8: Rel (     0,    17)  ->  Abs (   843,   869)
+	  9: Rel (    28,    27)  ->  Abs (   871,   896)
+	 10: Rel (    17,     0)  ->  Abs (   888,   896)
+	 11: Rel (    37,     0)  ->  Abs (   925,   896)
+	 12: Rel (    97,  -188)  ->  Abs (  1022,   708)
+	 13: Rel (     0,  -103)  ->  Abs (  1022,   605)
+	 14: Rel (     0,  -109)  ->  Abs (  1022,   496)
+	 15: Rel (  -159,  -281)  ->  Abs (   863,   215)
+	 16: Rel (  -192,  -215)  ->  Abs (   671,     0)
+	 17: Rel (   -88,     0)  ->  Abs (   583,     0)
+	 18: Rel (  -361,   781)  ->  Abs (   222,   781)
+	 19: Rel (   -92,     0)  ->  Abs (   130,   781)
+	 20: Rel (   -56,     0)  ->  Abs (    74,   781)
+	 21: Rel (     0,    42)  ->  Abs (    74,   823)
+	 22: Rel (     0,    43)  ->  Abs (    74,   866)
+	 23: Rel (    56,     0)  ->  Abs (   130,   866)
+	 24: Rel (   149,     0)  ->  Abs (   279,   866)
+
+	Glyph 543: off = 0x0001C7C6, len = 418
+	  numberOfContours:	1
+	  xMin:			325
+	  yMin:			-386
+	  xMax:			1006
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  51
+
+	  Length of Instructions:	271
+	00000: NPUSHB      (35):     8     0    10    31    10    46     8    47    24    47 
+	                           139    47     6   186    30   191    31   191    46   186 
+	                            47   202    30   206    31   206    46   202    47   216 
+	                             0   220    17    10    21 
+	00037: PUSHW[1]            -32 
+	00040: PUSHB[4]             24    27    52    17 
+	00045: PUSHW[1]            -32 
+	00048: NPUSHB      (14):    24    36    52    43    32    22    23    52    46    32 
+	                            22    23    52    29 
+	00064: PUSHW[1]            -32 
+	00067: PUSHB[4]             20    29    52    26 
+	00072: PUSHW[1]            -32 
+	00075: PUSHB[4]             20    34    52    21 
+	00080: PUSHW[1]            -42 
+	00083: NPUSHB     (120):    17    18    52     6    32     6    35    22    35   171 
+	                             4   171     5   187     4   187     5     7    73     4 
+	                           155     4   155     5     3    40    48    79     4    79 
+	                             5    79    16    77    17    72    27    76    51    89 
+	                             4   105     5   105    17   123     5   123    17   137 
+	                             5   137    17   168     2   246    35    16     0    23 
+	                            30    47    42    23    59    24    24    37    15     5 
+	                             5     6    32    11    10     1    42    33    37    15 
+	                             0    24     5    39    19   143    13     1    13    13 
+	                            34    23    47    24     1    24    24    44    33    15 
+	                            34     1    34     8     8    19    33    64     3   112 
+	                             3     2     3     3    28    33    15    50     1    50 
+	00205: PUSHW[1]            780 
+	00208: PUSHB[2]            128    24 
+	00211: CALL       
+	00212: MDAP[rd]   
+	00213: DELTAP1    
+	00214: MIRP[nrp0,md,rd,1] 
+	00215: SHP[rp1,zp0] 
+	00216: MDAP[rd]   
+	00217: DELTAP1    
+	00218: MIRP[nrp0,md,rd,1] 
+	00219: SHP[rp1,zp0] 
+	00220: MDAP[rd]   
+	00221: MDAP[rd]   
+	00222: DELTAP1    
+	00223: MIRP[nrp0,md,rd,1] 
+	00224: SHP[rp1,zp0] 
+	00225: MDAP[rd]   
+	00226: DELTAP1    
+	00227: ALIGNRP    
+	00228: SRP1       
+	00229: SHP[rp1,zp0] 
+	00230: MDAP[rd]   
+	00231: DELTAP1    
+	00232: SRP1       
+	00233: SRP2       
+	00234: IP         
+	00235: SRP1       
+	00236: IP         
+	00237: SVTCA[y-axis] 
+	00238: MIAP[rd+ci] 
+	00239: MIRP[nrp0,md,rd,1] 
+	00240: MIAP[rd+ci] 
+	00241: ALIGNRP    
+	00242: MIRP[srp0,md,rd,1] 
+	00243: ALIGNRP    
+	00244: SRP0       
+	00245: ALIGNRP    
+	00246: SRP2       
+	00247: IP         
+	00248: MDAP[rd]   
+	00249: MIRP[nrp0,md,rd,1] 
+	00250: SRP2       
+	00251: IP         
+	00252: IP         
+	00253: SRP2       
+	00254: IP         
+	00255: IUP[y]     
+	00256: IUP[x]     
+	00257: SVTCA[x-axis] 
+	00258: DELTAP1    
+	00259: DELTAP2    
+	00260: DELTAP2    
+	00261: CALL       
+	00262: CALL       
+	00263: CALL       
+	00264: CALL       
+	00265: CALL       
+	00266: CALL       
+	00267: CALL       
+	00268: SVTCA[y-axis] 
+	00269: DELTAP1    
+	00270: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual                               On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short On
+	 16:              Rep-  2 Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short On
+	 24:        XDual         Y-Short         On
+	 25:  YDual                       X-Short Off
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:                      Y-Short         On
+	 31:        XDual Rep-  2 Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:                      Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual               Y-Short X-Short On
+	 48:  YDual               Y-Short X-Short Off
+	 49:  YDual               Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:        XDual                         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   629,   651)  ->  Abs (   629,   651)
+	  1: Rel (   -99,    28)  ->  Abs (   530,   679)
+	  2: Rel (  -127,   150)  ->  Abs (   403,   829)
+	  3: Rel (     0,    93)  ->  Abs (   403,   922)
+	  4: Rel (     0,   171)  ->  Abs (   403,  1093)
+	  5: Rel (   181,    77)  ->  Abs (   584,  1170)
+	  6: Rel (  -125,     0)  ->  Abs (   459,  1170)
+	  7: Rel (   -56,     0)  ->  Abs (   403,  1170)
+	  8: Rel (     0,    42)  ->  Abs (   403,  1212)
+	  9: Rel (     0,    43)  ->  Abs (   403,  1255)
+	 10: Rel (    56,     0)  ->  Abs (   459,  1255)
+	 11: Rel (   421,     0)  ->  Abs (   880,  1255)
+	 12: Rel (    57,     0)  ->  Abs (   937,  1255)
+	 13: Rel (     0,   -43)  ->  Abs (   937,  1212)
+	 14: Rel (     0,   -39)  ->  Abs (   937,  1173)
+	 15: Rel (   -47,    -3)  ->  Abs (   890,  1170)
+	 16: Rel (  -141,    -7)  ->  Abs (   749,  1163)
+	 17: Rel (  -159,   -46)  ->  Abs (   590,  1117)
+	 18: Rel (  -103,  -116)  ->  Abs (   487,  1001)
+	 19: Rel (     0,   -71)  ->  Abs (   487,   930)
+	 20: Rel (     0,   -71)  ->  Abs (   487,   859)
+	 21: Rel (   102,  -122)  ->  Abs (   589,   737)
+	 22: Rel (   136,   -42)  ->  Abs (   725,   695)
+	 23: Rel (   132,    -9)  ->  Abs (   857,   686)
+	 24: Rel (     0,   -85)  ->  Abs (   857,   601)
+	 25: Rel (  -149,     0)  ->  Abs (   708,   601)
+	 26: Rel (  -171,   -55)  ->  Abs (   537,   546)
+	 27: Rel (  -128,  -152)  ->  Abs (   409,   394)
+	 28: Rel (     0,   -98)  ->  Abs (   409,   296)
+	 29: Rel (     0,  -221)  ->  Abs (   409,    75)
+	 30: Rel (   313,   -34)  ->  Abs (   722,    41)
+	 31: Rel (   112,   -12)  ->  Abs (   834,    29)
+	 32: Rel (   107,   -35)  ->  Abs (   941,    -6)
+	 33: Rel (    65,   -86)  ->  Abs (  1006,   -92)
+	 34: Rel (     0,   -64)  ->  Abs (  1006,  -156)
+	 35: Rel (     0,   -94)  ->  Abs (  1006,  -250)
+	 36: Rel (  -171,  -136)  ->  Abs (   835,  -386)
+	 37: Rel (  -118,     0)  ->  Abs (   717,  -386)
+	 38: Rel (   -53,     0)  ->  Abs (   664,  -386)
+	 39: Rel (     0,    43)  ->  Abs (   664,  -343)
+	 40: Rel (     0,    19)  ->  Abs (   664,  -324)
+	 41: Rel (    26,    16)  ->  Abs (   690,  -308)
+	 42: Rel (    41,     5)  ->  Abs (   731,  -303)
+	 43: Rel (   191,    25)  ->  Abs (   922,  -278)
+	 44: Rel (     0,   117)  ->  Abs (   922,  -161)
+	 45: Rel (     0,    60)  ->  Abs (   922,  -101)
+	 46: Rel (   -87,    46)  ->  Abs (   835,   -55)
+	 47: Rel (  -121,    12)  ->  Abs (   714,   -43)
+	 48: Rel (  -215,    20)  ->  Abs (   499,   -23)
+	 49: Rel (  -174,   195)  ->  Abs (   325,   172)
+	 50: Rel (     0,   126)  ->  Abs (   325,   298)
+	 51: Rel (     0,   257)  ->  Abs (   325,   555)
+
+	Glyph 544: off = 0x0001C968, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1084
+	  yMax:			896
+
+	     0: Flags:		0x0216
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 545: off = 0x0001C978, len = 196
+	  numberOfContours:	2
+	  xMin:			202
+	  yMin:			-386
+	  xMax:			1111
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  16
+	  1:  28
+
+	  Length of Instructions:	103
+	00000: PUSHW[2]             19   -32 
+	00005: NPUSHB      (14):    18    36    52    21    64    12    36    52    25    32 
+	                            12    36    52    27 
+	00021: PUSHW[1]            -64 
+	00024: NPUSHB      (50):    12    36    52   216    28   234    13   234    22   232 
+	                            28     4     0    20    26    33     9     7    20    33 
+	                            15    11     3    15    23    33    48    12    80    12 
+	                           144    12     3    12    17    33     6     0     1    32 
+	                             6   111     5   144     5     2     5    94   142    24 
+	00076: CALL       
+	00077: MDAP[rd]   
+	00078: DELTAP1    
+	00079: ALIGNRP    
+	00080: MIRP[srp0,md,rd,1] 
+	00081: ALIGNRP    
+	00082: SRP0       
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: MDAP[rd]   
+	00085: DELTAP1    
+	00086: MIRP[nrp0,md,rd,1] 
+	00087: SVTCA[y-axis] 
+	00088: MIAP[rd+ci] 
+	00089: MIAP[rd+ci] 
+	00090: MIRP[nrp0,md,rd,1] 
+	00091: MIAP[rd+ci] 
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: SRP1       
+	00094: IP         
+	00095: IUP[y]     
+	00096: IUP[x]     
+	00097: SVTCA[x-axis] 
+	00098: DELTAP1    
+	00099: CALL       
+	00100: CALL       
+	00101: CALL       
+	00102: CALL       
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:        XDual                         On
+	  7:        XDual                         Off
+	  8:  YDual               Y-Short         Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                                      Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                              X-Short On
+	 18:        XDual         Y-Short         Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   286,   169)  ->  Abs (   286,   169)
+	  1: Rel (     0,  -499)  ->  Abs (   286,  -330)
+	  2: Rel (     0,   -56)  ->  Abs (   286,  -386)
+	  3: Rel (   -42,     0)  ->  Abs (   244,  -386)
+	  4: Rel (   -42,     0)  ->  Abs (   202,  -386)
+	  5: Rel (     0,    56)  ->  Abs (   202,  -330)
+	  6: Rel (     0,   700)  ->  Abs (   202,   370)
+	  7: Rel (     0,   281)  ->  Abs (   202,   651)
+	  8: Rel (   272,   245)  ->  Abs (   474,   896)
+	  9: Rel (   191,     0)  ->  Abs (   665,   896)
+	 10: Rel (   214,     0)  ->  Abs (   879,   896)
+	 11: Rel (   232,  -286)  ->  Abs (  1111,   610)
+	 12: Rel (     0,  -173)  ->  Abs (  1111,   437)
+	 13: Rel (     0,  -198)  ->  Abs (  1111,   239)
+	 14: Rel (  -267,  -272)  ->  Abs (   844,   -33)
+	 15: Rel (  -177,     0)  ->  Abs (   667,   -33)
+	 16: Rel (  -219,     0)  ->  Abs (   448,   -33)
+	 17: Rel (  -162,   470)  ->  Abs (   286,   437)
+	 18: Rel (     0,  -167)  ->  Abs (   286,   270)
+	 19: Rel (   238,  -219)  ->  Abs (   524,    51)
+	 20: Rel (   143,     0)  ->  Abs (   667,    51)
+	 21: Rel (   134,     0)  ->  Abs (   801,    51)
+	 22: Rel (   225,   216)  ->  Abs (  1026,   267)
+	 23: Rel (     0,   170)  ->  Abs (  1026,   437)
+	 24: Rel (     0,   159)  ->  Abs (  1026,   596)
+	 25: Rel (  -200,   215)  ->  Abs (   826,   811)
+	 26: Rel (  -161,     0)  ->  Abs (   665,   811)
+	 27: Rel (  -160,     0)  ->  Abs (   505,   811)
+	 28: Rel (  -219,  -204)  ->  Abs (   286,   607)
+
+	Glyph 546: off = 0x0001CA3C, len = 288
+	  numberOfContours:	1
+	  xMin:			207
+	  yMin:			-386
+	  xMax:			1097
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  54
+
+	  Length of Instructions:	135
+	00000: NPUSHB      (15):     9    48    24    48   179    30   229    30     4    19 
+	                            32    23    36    52    25 
+	00017: PUSHW[1]            -32 
+	00020: PUSHB[4]             23    36    52    41 
+	00025: PUSHW[1]            -32 
+	00028: NPUSHB      (64):    22    36    52    23    64    12    36    52    31    28 
+	                           212    30   230    28   230    46   249    47     5     0 
+	                            21    15    28     1    28    46    15    39    33    35 
+	                            15    15    15    21    33     3    53     7     9     1 
+	                             0    33     5    17    33    16     5     1     5    84 
+	                            13    13    32    37    37    42    33    32    24    33 
+	                            50    94   173    24 
+	00094: CALL       
+	00095: MDAP[rd]   
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: MDAP[rd]   
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: SHP[rp1,zp0] 
+	00100: MDAP[rd]   
+	00101: SRP1       
+	00102: SHP[rp1,zp0] 
+	00103: MDAP[rd]   
+	00104: MIRP[nrp0,nmd,rd,0] 
+	00105: DELTAP1    
+	00106: MIRP[nrp0,md,rd,1] 
+	00107: SRP0       
+	00108: MIRP[srp0,md,rd,1] 
+	00109: IP         
+	00110: IP         
+	00111: SVTCA[y-axis] 
+	00112: MIAP[rd+ci] 
+	00113: ALIGNRP    
+	00114: MIRP[nrp0,md,rd,1] 
+	00115: SHP[rp1,zp0] 
+	00116: MDAP[rd]   
+	00117: MIAP[rd+ci] 
+	00118: MIRP[srp0,md,rd,1] 
+	00119: SRP1       
+	00120: IP         
+	00121: IP         
+	00122: DELTAP1    
+	00123: SRP2       
+	00124: IP         
+	00125: IUP[y]     
+	00126: IUP[x]     
+	00127: SVTCA[y-axis] 
+	00128: DELTAP1    
+	00129: CALL       
+	00130: CALL       
+	00131: CALL       
+	00132: CALL       
+	00133: SVTCA[x-axis] 
+	00134: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:        XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual       Rep-  2 Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:                      Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short X-Short On
+	 29:        XDual Rep-  2 Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:                      Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual               Y-Short X-Short Off
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual               Y-Short X-Short On
+	 47:  YDual       Rep-  2 Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         Off
+	 52:                                      Off
+	 53:  YDual XDual                 X-Short On
+	 54:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   989,   809)  ->  Abs (   989,   809)
+	  1: Rel (    24,    54)  ->  Abs (  1013,   863)
+	  2: Rel (    15,    33)  ->  Abs (  1028,   896)
+	  3: Rel (    27,     0)  ->  Abs (  1055,   896)
+	  4: Rel (    42,     0)  ->  Abs (  1097,   896)
+	  5: Rel (     0,   -48)  ->  Abs (  1097,   848)
+	  6: Rel (     0,   -25)  ->  Abs (  1097,   823)
+	  7: Rel (    -5,   -48)  ->  Abs (  1092,   775)
+	  8: Rel (    -5,   -54)  ->  Abs (  1087,   721)
+	  9: Rel (     0,   -30)  ->  Abs (  1087,   691)
+	 10: Rel (     0,   -23)  ->  Abs (  1087,   668)
+	 11: Rel (     4,   -30)  ->  Abs (  1091,   638)
+	 12: Rel (     4,   -35)  ->  Abs (  1095,   603)
+	 13: Rel (     0,   -11)  ->  Abs (  1095,   592)
+	 14: Rel (     0,   -44)  ->  Abs (  1095,   548)
+	 15: Rel (   -44,     0)  ->  Abs (  1051,   548)
+	 16: Rel (   -30,     0)  ->  Abs (  1021,   548)
+	 17: Rel (   -12,    40)  ->  Abs (  1009,   588)
+	 18: Rel (   -25,    87)  ->  Abs (   984,   675)
+	 19: Rel (   -53,    77)  ->  Abs (   931,   752)
+	 20: Rel (  -142,    59)  ->  Abs (   789,   811)
+	 21: Rel (   -96,     0)  ->  Abs (   693,   811)
+	 22: Rel (  -172,     0)  ->  Abs (   521,   811)
+	 23: Rel (  -230,  -215)  ->  Abs (   291,   596)
+	 24: Rel (     0,  -185)  ->  Abs (   291,   411)
+	 25: Rel (     0,  -107)  ->  Abs (   291,   304)
+	 26: Rel (    79,  -169)  ->  Abs (   370,   135)
+	 27: Rel (   135,   -79)  ->  Abs (   505,    56)
+	 28: Rel (   130,   -17)  ->  Abs (   635,    39)
+	 29: Rel (   128,   -18)  ->  Abs (   763,    21)
+	 30: Rel (   103,   -33)  ->  Abs (   866,   -12)
+	 31: Rel (    70,   -95)  ->  Abs (   936,  -107)
+	 32: Rel (     0,   -59)  ->  Abs (   936,  -166)
+	 33: Rel (     0,   -84)  ->  Abs (   936,  -250)
+	 34: Rel (  -152,  -136)  ->  Abs (   784,  -386)
+	 35: Rel (  -132,     0)  ->  Abs (   652,  -386)
+	 36: Rel (   -59,     0)  ->  Abs (   593,  -386)
+	 37: Rel (     0,    42)  ->  Abs (   593,  -344)
+	 38: Rel (     0,    43)  ->  Abs (   593,  -301)
+	 39: Rel (    57,     0)  ->  Abs (   650,  -301)
+	 40: Rel (   104,     0)  ->  Abs (   754,  -301)
+	 41: Rel (    97,    86)  ->  Abs (   851,  -215)
+	 42: Rel (     0,    54)  ->  Abs (   851,  -161)
+	 43: Rel (     0,    32)  ->  Abs (   851,  -129)
+	 44: Rel (   -51,    54)  ->  Abs (   800,   -75)
+	 45: Rel (   -70,    18)  ->  Abs (   730,   -57)
+	 46: Rel (  -118,    14)  ->  Abs (   612,   -43)
+	 47: Rel (  -132,    15)  ->  Abs (   480,   -28)
+	 48: Rel (  -171,    98)  ->  Abs (   309,    70)
+	 49: Rel (  -102,   209)  ->  Abs (   207,   279)
+	 50: Rel (     0,   124)  ->  Abs (   207,   403)
+	 51: Rel (     0,   206)  ->  Abs (   207,   609)
+	 52: Rel (   258,   287)  ->  Abs (   465,   896)
+	 53: Rel (   228,     0)  ->  Abs (   693,   896)
+	 54: Rel (   165,     0)  ->  Abs (   858,   896)
+
+	Glyph 547: off = 0x0001CB5C, len = 338
+	  numberOfContours:	1
+	  xMin:			87
+	  yMin:			-33
+	  xMax:			1142
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  36
+
+	  Length of Instructions:	234
+	00000: NPUSHB      (21):   153    14   153    18     2     6    14     9    18    22 
+	                            14    25    18   150    15   152    17   215    30     7 
+	                            34 
+	00023: PUSHW[1]            -32 
+	00026: PUSHB[4]             32    36    52    30 
+	00031: PUSHW[1]            -32 
+	00034: PUSHB[4]             32    36    52    34 
+	00039: PUSHW[1]            -32 
+	00042: PUSHB[4]             23    26    52    30 
+	00047: PUSHW[1]            -32 
+	00050: PUSHB[4]             23    26    52    34 
+	00055: PUSHW[1]            -32 
+	00058: PUSHB[4]             16    17    52    30 
+	00063: PUSHW[1]            -32 
+	00066: PUSHB[5]             16    17    52     6    10 
+	00072: PUSHW[1]            686 
+	00075: NPUSHB      (14):     0     8     1     8    47    11     8     8    10    11 
+	                            34     6     5     1 
+	00091: PUSHW[1]            686 
+	00094: NPUSHB      (11):     3    47     0     3     3     1     0    34     5    26 
+	                            22 
+	00107: PUSHW[1]            686 
+	00110: NPUSHB      (45):    24    47    21    24    24    22    21    34    26     6 
+	                             5     5    27    27    26     6    32    33    16    11 
+	                             0    36    32    11    15    12    47    12    79    12 
+	                           223    12     4    12    27    28    32    21    48    20 
+	                           191    20     2    20    71 
+	00157: PUSHW[2]            789    24 
+	00162: CALL       
+	00163: MDAP[rd]   
+	00164: DELTAP1    
+	00165: ALIGNRP    
+	00166: MIRP[srp0,md,rd,1] 
+	00167: ALIGNRP    
+	00168: MDAP[rd]   
+	00169: DELTAP1    
+	00170: ALIGNRP    
+	00171: MIRP[srp0,md,rd,1] 
+	00172: ALIGNRP    
+	00173: SVTCA[y-axis] 
+	00174: MIAP[rd+ci] 
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: MIAP[rd+ci] 
+	00177: ALIGNRP    
+	00178: SRP0       
+	00179: ALIGNRP    
+	00180: SRP0       
+	00181: ALIGNRP    
+	00182: SRP0       
+	00183: MIRP[srp0,md,rd,1] 
+	00184: RTDG       
+	00185: SRP2       
+	00186: IP         
+	00187: MDAP[rd]   
+	00188: RTG        
+	00189: SVTCA[x-axis] 
+	00190: SRP0       
+	00191: MIRP[srp0,nmd,rd,1] 
+	00192: MIRP[srp0,nmd,rd,0] 
+	00193: MDRP[nrp0,nmd,rd,0] 
+	00194: SVTCA[y-axis] 
+	00195: SRP0       
+	00196: MIRP[srp0,md,rd,1] 
+	00197: RTDG       
+	00198: SRP2       
+	00199: IP         
+	00200: MDAP[rd]   
+	00201: RTG        
+	00202: SVTCA[x-axis] 
+	00203: SRP0       
+	00204: MIRP[srp0,nmd,rd,1] 
+	00205: MIRP[srp0,nmd,rd,0] 
+	00206: MDRP[nrp0,nmd,rd,0] 
+	00207: SVTCA[y-axis] 
+	00208: SRP0       
+	00209: MIRP[srp0,md,rd,1] 
+	00210: RTDG       
+	00211: SRP2       
+	00212: IP         
+	00213: MDAP[rd]   
+	00214: RTG        
+	00215: SVTCA[x-axis] 
+	00216: SRP0       
+	00217: MIRP[srp0,nmd,rd,1] 
+	00218: DELTAP1    
+	00219: MIRP[srp0,nmd,rd,0] 
+	00220: MDRP[nrp0,nmd,rd,0] 
+	00221: IUP[y]     
+	00222: IUP[x]     
+	00223: SVTCA[y-axis] 
+	00224: CALL       
+	00225: CALL       
+	00226: CALL       
+	00227: CALL       
+	00228: CALL       
+	00229: CALL       
+	00230: SVTCA[x-axis] 
+	00231: DELTAP1    
+	00232: SVTCA[y-axis] 
+	00233: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short On
+	 12:        XDual                         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:        XDual                         On
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short On
+	 28:        XDual                         On
+	 29:        XDual         Y-Short         Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   890,   781)  ->  Abs (   890,   781)
+	  1: Rel (  -112,     0)  ->  Abs (   778,   781)
+	  2: Rel (   -57,     0)  ->  Abs (   721,   781)
+	  3: Rel (     0,    42)  ->  Abs (   721,   823)
+	  4: Rel (     0,    43)  ->  Abs (   721,   866)
+	  5: Rel (    57,     0)  ->  Abs (   778,   866)
+	  6: Rel (   308,     0)  ->  Abs (  1086,   866)
+	  7: Rel (    56,     0)  ->  Abs (  1142,   866)
+	  8: Rel (     0,   -43)  ->  Abs (  1142,   823)
+	  9: Rel (     0,   -42)  ->  Abs (  1142,   781)
+	 10: Rel (   -56,     0)  ->  Abs (  1086,   781)
+	 11: Rel (  -112,     0)  ->  Abs (   974,   781)
+	 12: Rel (     0,  -322)  ->  Abs (   974,   459)
+	 13: Rel (     0,  -186)  ->  Abs (   974,   273)
+	 14: Rel (   -69,  -192)  ->  Abs (   905,    81)
+	 15: Rel (  -170,  -114)  ->  Abs (   735,   -33)
+	 16: Rel (  -124,     0)  ->  Abs (   611,   -33)
+	 17: Rel (  -129,     0)  ->  Abs (   482,   -33)
+	 18: Rel (  -163,   123)  ->  Abs (   319,    90)
+	 19: Rel (   -64,   189)  ->  Abs (   255,   279)
+	 20: Rel (     0,   170)  ->  Abs (   255,   449)
+	 21: Rel (     0,   332)  ->  Abs (   255,   781)
+	 22: Rel (  -112,     0)  ->  Abs (   143,   781)
+	 23: Rel (   -56,     0)  ->  Abs (    87,   781)
+	 24: Rel (     0,    42)  ->  Abs (    87,   823)
+	 25: Rel (     0,    43)  ->  Abs (    87,   866)
+	 26: Rel (    56,     0)  ->  Abs (   143,   866)
+	 27: Rel (   197,     0)  ->  Abs (   340,   866)
+	 28: Rel (     0,  -407)  ->  Abs (   340,   459)
+	 29: Rel (     0,  -148)  ->  Abs (   340,   311)
+	 30: Rel (    48,  -159)  ->  Abs (   388,   152)
+	 31: Rel (   135,  -101)  ->  Abs (   523,    51)
+	 32: Rel (    91,     0)  ->  Abs (   614,    51)
+	 33: Rel (    94,     0)  ->  Abs (   708,    51)
+	 34: Rel (   130,    96)  ->  Abs (   838,   147)
+	 35: Rel (    52,   158)  ->  Abs (   890,   305)
+	 36: Rel (     0,   154)  ->  Abs (   890,   459)
+
+	Glyph 548: off = 0x0001CCAE, len = 418
+	  numberOfContours:	1
+	  xMin:			153
+	  yMin:			-386
+	  xMax:			1126
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  31
+
+	  Length of Instructions:	311
+	00000: NPUSHB      (83):    26     0    28     8    28    16    28    24    45     8 
+	                            45    16    45    24    60     0    63     8    63    16 
+	                            63    24    79     8    79    16    79    24    87     0 
+	                            15   164    21     1    24     9    40     9    58     9 
+	                            73     8    74     9    90     0    87     8    91    24 
+	                           105    24   164     7    10     3     7     1    19    17 
+	                            23    16    25    15    17     7     8    31     9    17 
+	                             7     0    31     9    23     1    24    25    15    23 
+	                             1    14    10 
+	00085: PUSHW[1]            686 
+	00088: NPUSHB      (14):    12    12    92     9    12    12    10     9    34    14 
+	                             9    31    30    26 
+	00104: PUSHW[1]            686 
+	00107: NPUSHB      (92):    28    28    92    25    28    28    26    25    34    30 
+	                            25    15    25    15    15    32     9    31    20     9 
+	                             9    31     7    17    17    32    23     1    20    23 
+	                            23     1    16    24     8     0     4    30    15     3 
+	                             7    31    30     6    14    15    15    19    15     8 
+	                            15     9     1     7    17    23    24    31    16    25 
+	                            15     7     1    63     7    95     7   111     7     3 
+	                             7     7    16     9     9    16    25    25    16    23 
+	                            23     0    15    16     1    48    16   111    16     2 
+	                            16   117 
+	00201: PUSHW[2]            263    24 
+	00206: CALL       
+	00207: MDAP[rd]   
+	00208: DELTAP1    
+	00209: DELTAP2    
+	00210: ALIGNRP    
+	00211: SHP[rp1,zp0] 
+	00212: MDAP[rd]   
+	00213: SRP1       
+	00214: SHP[rp1,zp0] 
+	00215: MDAP[rd]   
+	00216: SRP1       
+	00217: SHP[rp1,zp0] 
+	00218: MDAP[rd]   
+	00219: SRP1       
+	00220: SHP[rp1,zp0] 
+	00221: MDAP[rd]   
+	00222: DELTAP1    
+	00223: DELTAP2    
+	00224: SRP1       
+	00225: SRP2       
+	00226: IP         
+	00227: IP         
+	00228: SRP1       
+	00229: IP         
+	00230: SRP1       
+	00231: IP         
+	00232: SRP1       
+	00233: IP         
+	00234: IP         
+	00235: SVTCA[y-axis] 
+	00236: MIAP[rd+ci] 
+	00237: ALIGNRP    
+	00238: SRP0       
+	00239: ALIGNRP    
+	00240: MIAP[rd+ci] 
+	00241: ALIGNRP    
+	00242: MIAP[rd+ci] 
+	00243: SRP1       
+	00244: SRP2       
+	00245: SLOOP      
+	00246: IP         
+	00247: SDPVTL[1]  
+	00248: SFVTPV     
+	00249: MDAP[nrd]  
+	00250: CALL       
+	00251: SFVTPV     
+	00252: RDTG       
+	00253: SRP0       
+	00254: MDRP[nrp0,nmd,rd,0] 
+	00255: SDPVTL[1]  
+	00256: SFVTCA[x-axis] 
+	00257: MDAP[nrd]  
+	00258: RTG        
+	00259: CALL       
+	00260: RDTG       
+	00261: SRP0       
+	00262: MDRP[nrp0,nmd,rd,0] 
+	00263: RTG        
+	00264: SVTCA[y-axis] 
+	00265: SFVTL[=p1,p2] 
+	00266: SRP0       
+	00267: MIRP[srp0,md,rd,1] 
+	00268: RTDG       
+	00269: SRP2       
+	00270: IP         
+	00271: MDAP[rd]   
+	00272: RTG        
+	00273: SVTCA[x-axis] 
+	00274: SRP0       
+	00275: MIRP[srp0,nmd,nrd,1] 
+	00276: MDAP[rd]   
+	00277: MIRP[srp0,nmd,rd,0] 
+	00278: MDRP[nrp0,nmd,rd,0] 
+	00279: SVTCA[y-axis] 
+	00280: SFVTL[=p1,p2] 
+	00281: SRP0       
+	00282: MIRP[srp0,md,rd,1] 
+	00283: RTDG       
+	00284: SRP2       
+	00285: IP         
+	00286: MDAP[rd]   
+	00287: RTG        
+	00288: SVTCA[x-axis] 
+	00289: SRP0       
+	00290: MIRP[srp0,nmd,nrd,1] 
+	00291: MDAP[rd]   
+	00292: MIRP[srp0,nmd,rd,0] 
+	00293: MDRP[nrp0,nmd,rd,0] 
+	00294: ISECT      
+	00295: ISECT      
+	00296: ISECT      
+	00297: ISECT      
+	00298: SRP1       
+	00299: SRP2       
+	00300: IP         
+	00301: SRP1       
+	00302: SRP2       
+	00303: IP         
+	00304: IUP[y]     
+	00305: IUP[x]     
+	00306: SVTCA[x-axis] 
+	00307: DELTAP1    
+	00308: DELTAP2    
+	00309: SVTCA[y-axis] 
+	00310: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short On
+	  8:                                      On
+	  9:                                      On
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short On
+	 16:                                      On
+	 17:                                      On
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:                                      On
+	 25:                                      On
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   611,   377)  ->  Abs (   611,   377)
+	  1: Rel (   261,   470)  ->  Abs (   872,   847)
+	  2: Rel (    27,    49)  ->  Abs (   899,   896)
+	  3: Rel (    24,     0)  ->  Abs (   923,   896)
+	  4: Rel (    41,     0)  ->  Abs (   964,   896)
+	  5: Rel (     0,   -39)  ->  Abs (   964,   857)
+	  6: Rel (     0,   -18)  ->  Abs (   964,   839)
+	  7: Rel (   -20,   -36)  ->  Abs (   944,   803)
+	  8: Rel (  -286,  -512)  ->  Abs (   658,   291)
+	  9: Rel (   326,  -593)  ->  Abs (   984,  -302)
+	 10: Rel (    86,     0)  ->  Abs (  1070,  -302)
+	 11: Rel (    56,     0)  ->  Abs (  1126,  -302)
+	 12: Rel (     0,   -42)  ->  Abs (  1126,  -344)
+	 13: Rel (     0,   -42)  ->  Abs (  1126,  -386)
+	 14: Rel (   -56,     0)  ->  Abs (  1070,  -386)
+	 15: Rel (  -131,     0)  ->  Abs (   939,  -386)
+	 16: Rel (  -328,   592)  ->  Abs (   611,   206)
+	 17: Rel (  -295,  -543)  ->  Abs (   316,  -337)
+	 18: Rel (   -27,   -49)  ->  Abs (   289,  -386)
+	 19: Rel (   -25,     0)  ->  Abs (   264,  -386)
+	 20: Rel (   -41,     0)  ->  Abs (   223,  -386)
+	 21: Rel (     0,    39)  ->  Abs (   223,  -347)
+	 22: Rel (     0,    17)  ->  Abs (   223,  -330)
+	 23: Rel (    21,    37)  ->  Abs (   244,  -293)
+	 24: Rel (   320,   584)  ->  Abs (   564,   291)
+	 25: Rel (  -271,   490)  ->  Abs (   293,   781)
+	 26: Rel (   -84,     0)  ->  Abs (   209,   781)
+	 27: Rel (   -56,     0)  ->  Abs (   153,   781)
+	 28: Rel (     0,    42)  ->  Abs (   153,   823)
+	 29: Rel (     0,    43)  ->  Abs (   153,   866)
+	 30: Rel (    56,     0)  ->  Abs (   209,   866)
+	 31: Rel (   129,     0)  ->  Abs (   338,   866)
+
+	Glyph 549: off = 0x0001CE50, len = 310
+	  numberOfContours:	1
+	  xMin:			69
+	  yMin:			-386
+	  xMax:			1160
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  42
+
+	  Length of Instructions:	190
+	00000: PUSHW[2]              2   -32 
+	00005: PUSHB[4]             17    36    52    35 
+	00010: PUSHW[1]            -32 
+	00013: NPUSHB      (11):    17    36    52     0    16    17    37    22    21     6 
+	                            10 
+	00026: PUSHW[1]            686 
+	00029: NPUSHB      (16):     0     8    16     8     2     8    47    11     8     8 
+	                            10    11    34     6    31    27 
+	00047: PUSHW[1]            686 
+	00050: NPUSHB      (65):    15    29     1    29    47    26    29    29    27    26 
+	                            34    31    25    33     4    12     4    32     0    37 
+	                            33    16    22    11     6     5     5    32    32    31 
+	                             6    19    15    40     1     5     4    32    11    15 
+	                            12     1    12    12    17    32    33    32    26     0 
+	                            25     1    25    25    42    17    32    38     0    21 
+	                             1    21   117    97    24 
+	00117: CALL       
+	00118: MDAP[rd]   
+	00119: DELTAP1    
+	00120: ALIGNRP    
+	00121: MIRP[srp0,md,rd,1] 
+	00122: ALIGNRP    
+	00123: SHP[rp1,zp0] 
+	00124: MDAP[rd]   
+	00125: DELTAP1    
+	00126: ALIGNRP    
+	00127: MIRP[srp0,md,rd,1] 
+	00128: ALIGNRP    
+	00129: SRP1       
+	00130: SHP[rp1,zp0] 
+	00131: MDAP[rd]   
+	00132: DELTAP1    
+	00133: ALIGNRP    
+	00134: MIRP[srp0,md,rd,1] 
+	00135: ALIGNRP    
+	00136: SVTCA[y-axis] 
+	00137: MIAP[rd+ci] 
+	00138: MIAP[rd+ci] 
+	00139: MIAP[rd+ci] 
+	00140: ALIGNRP    
+	00141: SRP0       
+	00142: ALIGNRP    
+	00143: SRP0       
+	00144: ALIGNRP    
+	00145: MIAP[rd+ci] 
+	00146: ALIGNRP    
+	00147: MIRP[srp0,md,rd,1] 
+	00148: ALIGNRP    
+	00149: SRP1       
+	00150: SLOOP      
+	00151: IP         
+	00152: SRP0       
+	00153: MIRP[srp0,md,rd,1] 
+	00154: RTDG       
+	00155: SRP2       
+	00156: IP         
+	00157: MDAP[rd]   
+	00158: RTG        
+	00159: SVTCA[x-axis] 
+	00160: SRP0       
+	00161: MIRP[srp0,nmd,rd,1] 
+	00162: DELTAP1    
+	00163: MIRP[srp0,nmd,rd,0] 
+	00164: MDRP[nrp0,nmd,rd,0] 
+	00165: SVTCA[y-axis] 
+	00166: SRP0       
+	00167: MIRP[srp0,md,rd,1] 
+	00168: RTDG       
+	00169: SRP2       
+	00170: IP         
+	00171: MDAP[rd]   
+	00172: RTG        
+	00173: SVTCA[x-axis] 
+	00174: SRP0       
+	00175: MIRP[srp0,nmd,rd,1] 
+	00176: DELTAP1    
+	00177: MIRP[srp0,nmd,rd,0] 
+	00178: MDRP[nrp0,nmd,rd,0] 
+	00179: SRP0       
+	00180: ALIGNRP    
+	00181: ALIGNRP    
+	00182: SRP0       
+	00183: ALIGNRP    
+	00184: ALIGNRP    
+	00185: IUP[y]     
+	00186: IUP[x]     
+	00187: SVTCA[y-axis] 
+	00188: CALL       
+	00189: CALL       
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual Rep-  2 Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short On
+	 12:        XDual                         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:        XDual                         On
+	 18:        XDual         Y-Short         Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:        XDual                         On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:        XDual                         On
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short On
+	 33:        XDual                         On
+	 34:        XDual         Y-Short         Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short X-Short On
+	 38:        XDual                         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   657,    51)  ->  Abs (   657,    51)
+	  1: Rel (   107,     5)  ->  Abs (   764,    56)
+	  2: Rel (   101,    62)  ->  Abs (   865,   118)
+	  3: Rel (    42,   111)  ->  Abs (   907,   229)
+	  4: Rel (     0,   120)  ->  Abs (   907,   349)
+	  5: Rel (     0,   517)  ->  Abs (   907,   866)
+	  6: Rel (   197,     0)  ->  Abs (  1104,   866)
+	  7: Rel (    56,     0)  ->  Abs (  1160,   866)
+	  8: Rel (     0,   -43)  ->  Abs (  1160,   823)
+	  9: Rel (     0,   -42)  ->  Abs (  1160,   781)
+	 10: Rel (   -56,     0)  ->  Abs (  1104,   781)
+	 11: Rel (  -112,     0)  ->  Abs (   992,   781)
+	 12: Rel (     0,  -432)  ->  Abs (   992,   349)
+	 13: Rel (     0,  -157)  ->  Abs (   992,   192)
+	 14: Rel (   -81,  -150)  ->  Abs (   911,    42)
+	 15: Rel (  -129,   -69)  ->  Abs (   782,   -27)
+	 16: Rel (  -125,    -6)  ->  Abs (   657,   -33)
+	 17: Rel (     0,  -297)  ->  Abs (   657,  -330)
+	 18: Rel (     0,   -56)  ->  Abs (   657,  -386)
+	 19: Rel (   -42,     0)  ->  Abs (   615,  -386)
+	 20: Rel (   -43,     0)  ->  Abs (   572,  -386)
+	 21: Rel (     0,    56)  ->  Abs (   572,  -330)
+	 22: Rel (     0,   297)  ->  Abs (   572,   -33)
+	 23: Rel (  -176,     3)  ->  Abs (   396,   -30)
+	 24: Rel (  -159,   178)  ->  Abs (   237,   148)
+	 25: Rel (     0,   201)  ->  Abs (   237,   349)
+	 26: Rel (     0,   432)  ->  Abs (   237,   781)
+	 27: Rel (  -112,     0)  ->  Abs (   125,   781)
+	 28: Rel (   -56,     0)  ->  Abs (    69,   781)
+	 29: Rel (     0,    42)  ->  Abs (    69,   823)
+	 30: Rel (     0,    43)  ->  Abs (    69,   866)
+	 31: Rel (    56,     0)  ->  Abs (   125,   866)
+	 32: Rel (   197,     0)  ->  Abs (   322,   866)
+	 33: Rel (     0,  -517)  ->  Abs (   322,   349)
+	 34: Rel (     0,  -122)  ->  Abs (   322,   227)
+	 35: Rel (    35,   -97)  ->  Abs (   357,   130)
+	 36: Rel (   101,   -75)  ->  Abs (   458,    55)
+	 37: Rel (   114,    -4)  ->  Abs (   572,    51)
+	 38: Rel (     0,  1147)  ->  Abs (   572,  1198)
+	 39: Rel (     0,    57)  ->  Abs (   572,  1255)
+	 40: Rel (    43,     0)  ->  Abs (   615,  1255)
+	 41: Rel (    42,     0)  ->  Abs (   657,  1255)
+	 42: Rel (     0,   -57)  ->  Abs (   657,  1198)
+
+	Glyph 550: off = 0x0001CF86, len = 314
+	  numberOfContours:	1
+	  xMin:			117
+	  yMin:			-33
+	  xMax:			1112
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  48
+
+	  Length of Instructions:	178
+	00000: NPUSHB      (31):    47    32    17    36    52     2    32    17    36    52 
+	                            34    32    24    36    52    14    32    24    36    52 
+	                            33    44    22    36    52    15    44    22    36    52 
+	                            31 
+	00033: PUSHW[1]            -64 
+	00036: PUSHB[4]             16    36    52    17 
+	00041: PUSHW[1]            -64 
+	00044: NPUSHB      (49):    16    36    52    68     8    68    15    68    44     3 
+	                           203    17     1     0    27    21     0    21    27    22 
+	                            26     5    24    24     9    29    19    33    46     3 
+	                            11    34    39    14    39     9     7     0    27    21 
+	                            37    37    27    32    33    43    43    27    11 
+	00095: PUSHW[1]            -64 
+	00098: NPUSHB      (23):    25    29    52    11    11    21    16    33     6     6 
+	                            26    27    32    22     0    21   240    21     2    21 
+	                           230   142    24 
+	00123: CALL       
+	00124: MDAP[rd]   
+	00125: DELTAP1    
+	00126: ALIGNRP    
+	00127: MIRP[srp0,md,rd,1] 
+	00128: ALIGNRP    
+	00129: SHP[rp1,zp0] 
+	00130: MDAP[rd]   
+	00131: MIRP[srp0,md,rd,1] 
+	00132: SRP1       
+	00133: IP         
+	00134: MDAP[rd]   
+	00135: CALL       
+	00136: SRP1       
+	00137: SHP[rp1,zp0] 
+	00138: MDAP[rd]   
+	00139: MIRP[nrp0,md,rd,1] 
+	00140: SRP1       
+	00141: IP         
+	00142: MDAP[rd]   
+	00143: SRP1       
+	00144: SRP2       
+	00145: IP         
+	00146: SVTCA[y-axis] 
+	00147: MIAP[rd+ci] 
+	00148: ALIGNRP    
+	00149: SHP[rp1,zp0] 
+	00150: SRP1       
+	00151: SHP[rp1,zp0] 
+	00152: MIAP[rd+ci] 
+	00153: ALIGNRP    
+	00154: MIRP[srp0,md,rd,1] 
+	00155: ALIGNRP    
+	00156: SRP1       
+	00157: IP         
+	00158: MDAP[rd]   
+	00159: SLOOP      
+	00160: IP         
+	00161: SVTCA[x-axis] 
+	00162: SRP1       
+	00163: SRP2       
+	00164: IP         
+	00165: IUP[y]     
+	00166: IUP[x]     
+	00167: SVTCA[y-axis] 
+	00168: DELTAP1    
+	00169: DELTAP2    
+	00170: CALL       
+	00171: CALL       
+	00172: CALL       
+	00173: CALL       
+	00174: CALL       
+	00175: CALL       
+	00176: CALL       
+	00177: CALL       
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:        XDual                 X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:        XDual                         On
+	 17:        XDual         Y-Short         Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual                         On
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         On
+	 28:        XDual                         Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:        XDual                         Off
+	 34:  YDual               Y-Short X-Short On
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:                      Y-Short X-Short Off
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   614,   121)  ->  Abs (   614,   121)
+	  1: Rel (   -32,   -83)  ->  Abs (   582,    38)
+	  2: Rel (  -125,   -71)  ->  Abs (   457,   -33)
+	  3: Rel (   -57,     0)  ->  Abs (   400,   -33)
+	  4: Rel (  -109,     0)  ->  Abs (   291,   -33)
+	  5: Rel (  -174,   204)  ->  Abs (   117,   171)
+	  6: Rel (     0,   210)  ->  Abs (   117,   381)
+	  7: Rel (     0,   250)  ->  Abs (   117,   631)
+	  8: Rel (   230,   265)  ->  Abs (   347,   896)
+	  9: Rel (    70,     0)  ->  Abs (   417,   896)
+	 10: Rel (    44,     0)  ->  Abs (   461,   896)
+	 11: Rel (     0,   -42)  ->  Abs (   461,   854)
+	 12: Rel (     0,   -16)  ->  Abs (   461,   838)
+	 13: Rel (   -18,   -17)  ->  Abs (   443,   821)
+	 14: Rel (   -42,   -21)  ->  Abs (   401,   800)
+	 15: Rel (  -200,  -104)  ->  Abs (   201,   696)
+	 16: Rel (     0,  -315)  ->  Abs (   201,   381)
+	 17: Rel (     0,  -168)  ->  Abs (   201,   213)
+	 18: Rel (   118,  -162)  ->  Abs (   319,    51)
+	 19: Rel (    82,     0)  ->  Abs (   401,    51)
+	 20: Rel (   171,     0)  ->  Abs (   572,    51)
+	 21: Rel (     0,   355)  ->  Abs (   572,   406)
+	 22: Rel (     0,    68)  ->  Abs (   572,   474)
+	 23: Rel (     0,    57)  ->  Abs (   572,   531)
+	 24: Rel (    42,     0)  ->  Abs (   614,   531)
+	 25: Rel (    43,     0)  ->  Abs (   657,   531)
+	 26: Rel (     0,   -57)  ->  Abs (   657,   474)
+	 27: Rel (     0,   -68)  ->  Abs (   657,   406)
+	 28: Rel (     0,  -355)  ->  Abs (   657,    51)
+	 29: Rel (   171,     0)  ->  Abs (   828,    51)
+	 30: Rel (    87,     0)  ->  Abs (   915,    51)
+	 31: Rel (   112,   171)  ->  Abs (  1027,   222)
+	 32: Rel (     0,   153)  ->  Abs (  1027,   375)
+	 33: Rel (     0,   322)  ->  Abs (  1027,   697)
+	 34: Rel (  -199,   103)  ->  Abs (   828,   800)
+	 35: Rel (   -41,    21)  ->  Abs (   787,   821)
+	 36: Rel (   -19,    17)  ->  Abs (   768,   838)
+	 37: Rel (     0,    16)  ->  Abs (   768,   854)
+	 38: Rel (     0,    42)  ->  Abs (   768,   896)
+	 39: Rel (    44,     0)  ->  Abs (   812,   896)
+	 40: Rel (    41,     0)  ->  Abs (   853,   896)
+	 41: Rel (   168,  -138)  ->  Abs (  1021,   758)
+	 42: Rel (    91,  -230)  ->  Abs (  1112,   528)
+	 43: Rel (     0,  -145)  ->  Abs (  1112,   383)
+	 44: Rel (     0,  -212)  ->  Abs (  1112,   171)
+	 45: Rel (  -174,  -204)  ->  Abs (   938,   -33)
+	 46: Rel (  -109,     0)  ->  Abs (   829,   -33)
+	 47: Rel (   -57,     0)  ->  Abs (   772,   -33)
+	 48: Rel (  -125,    71)  ->  Abs (   647,    38)
+
+	Glyph 551: off = 0x0001D0C0, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			296
+	  yMin:			-33
+	  xMax:			888
+	  yMax:			1185
+
+	     0: Flags:		0x0226
+		Glyf Index:	538
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	142
+		X BOffset:	-23
+		Y BOffset:	-44
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     2     1   207    20   223    20     2   112    20   128 
+	                            20   144    20     3    20    16 
+	00018: PUSHW[1]            -50 
+	00021: PUSHB[6]             72    43     1     2     2    23 
+	00028: PUSHW[2]            652    41 
+	00033: SVTCA[y-axis] 
+	00034: CALL       
+	00035: SVTCA[x-axis] 
+	00036: CALL       
+	00037: DELTAP1    
+	00038: DELTAP1    
+	00039: SHC[rp1,zp0] 
+	00040: SHC[rp1,zp0] 
+
+	Glyph 552: off = 0x0001D102, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			87
+	  yMin:			-33
+	  xMax:			1142
+	  yMax:			1185
+
+	     0: Flags:		0x0226
+		Glyf Index:	547
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	142
+		X BOffset:	0
+		Y BOffset:	-44
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     2     1   192    43   208    43     2    64    43    96 
+	                            43   128    43     3    43    27 
+	00018: PUSHW[1]            -20 
+	00021: PUSHB[6]             72    43     1     2     2    40 
+	00028: PUSHW[2]            652    41 
+	00033: SVTCA[y-axis] 
+	00034: CALL       
+	00035: SVTCA[x-axis] 
+	00036: CALL       
+	00037: DELTAP1    
+	00038: DELTAP2    
+	00039: SHC[rp1,zp0] 
+	00040: SHC[rp1,zp0] 
+
+	Glyph 553: off = 0x0001D144, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1084
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	495
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     2     0    30    16    30     2    30    18   220    72 
+	                            43     2     1    27 
+	00016: PUSHW[2]            652    41 
+	00021: SVTCA[y-axis] 
+	00022: CALL       
+	00023: SVTCA[x-axis] 
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 554: off = 0x0001D178, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			87
+	  yMin:			-33
+	  xMax:			1142
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	547
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	495
+		X BOffset:	-1
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     1    43    27   100    72    43     1     1    40 
+	00011: PUSHW[2]            652    41 
+	00016: SVTCA[y-axis] 
+	00017: CALL       
+	00018: SVTCA[x-axis] 
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+
+	Glyph 555: off = 0x0001D1A6, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			117
+	  yMin:			-33
+	  xMax:			1112
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	550
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	495
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1    47    55    63    55    79    55    95    55     4 
+	                            55    21 
+	00014: PUSHW[1]           -100 
+	00017: PUSHB[5]             72    43     1     1    52 
+	00023: PUSHW[2]            652    41 
+	00028: SVTCA[y-axis] 
+	00029: CALL       
+	00030: SVTCA[x-axis] 
+	00031: CALL       
+	00032: DELTAP1    
+	00033: SHC[rp1,zp0] 
+
+	Glyph 556: off = 0x0001D1E0, len = 80
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1496
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	0
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (26):     2     1   208    72   224    72     2   224    72     1 
+	                            64    72    80    72   160    72     3     0    72    16 
+	                            72    32    72     3    72    36 
+	00028: PUSHW[1]            407 
+	00031: PUSHB[6]             72    43     1     2     2    69 
+	00038: PUSHW[2]            651    41 
+	00043: SVTCA[y-axis] 
+	00044: CALL       
+	00045: SVTCA[x-axis] 
+	00046: CALL       
+	00047: DELTAP1    
+	00048: DELTAP1    
+	00049: DELTAP1    
+	00050: DELTAP2    
+	00051: SHC[rp1,zp0] 
+	00052: SHC[rp1,zp0] 
+
+	Glyph 557: off = 0x0001D230, len = 394
+	  numberOfContours:	1
+	  xMin:			17
+	  yMin:			-33
+	  xMax:			1165
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  58
+
+	  Length of Instructions:	232
+	00000: PUSHB[8]            203    56     1    52    56    16     2    53 
+	00009: PUSHW[4]            -16     6     2   676 
+	00018: PUSHB[6]              0     4    16     4     2     4 
+	00025: PUSHW[1]            354 
+	00028: NPUSHB       (9):     1     4     4     2     1    29     6     7    11 
+	00039: PUSHW[3]            676     9   354 
+	00046: NPUSHB      (62):    12     9     9    11    12    29     7    39    38     0 
+	                             0     7    57     0    17    16    17    32    17     3 
+	                            17    15    34    31    34    47    34     3    34    34 
+	                            14    41     2    38    11    38     7    51    38    47 
+	                            41    38    57    57     7    25    47     9     7     8 
+	                            38    14    38    25     2    49    49     1    54    36 
+	                            38    31 
+	00110: PUSHW[1]            734 
+	00113: PUSHB[5]             38     1    38    13    12 
+	00119: PUSHW[1]            734 
+	00122: NPUSHB      (17):    19    54    38    79    44    95    44     2    44    26 
+	                            60    15    38    19    25    59    69 
+	00141: PUSHW[2]            340    24 
+	00146: CALL       
+	00147: FLIPOFF    
+	00148: SRP0       
+	00149: MIRP[srp0,nmd,rd,0] 
+	00150: FLIPON     
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: FLIPOFF    
+	00153: SRP0       
+	00154: MIRP[srp0,nmd,rd,2] 
+	00155: DELTAP1    
+	00156: FLIPON     
+	00157: MIRP[nrp0,md,rd,1] 
+	00158: SRP0       
+	00159: MIRP[srp0,nmd,rd,0] 
+	00160: ALIGNRP    
+	00161: MIRP[srp0,md,rd,1] 
+	00162: ALIGNRP    
+	00163: MIRP[srp0,nmd,rd,0] 
+	00164: MIRP[nrp0,md,rd,1] 
+	00165: SRP1       
+	00166: SRP2       
+	00167: IP         
+	00168: MDAP[rd]   
+	00169: SVTCA[y-axis] 
+	00170: MIAP[rd+ci] 
+	00171: MIRP[srp0,md,rd,1] 
+	00172: ALIGNRP    
+	00173: MIAP[rd+ci] 
+	00174: MIAP[rd+ci] 
+	00175: SRP1       
+	00176: SRP2       
+	00177: IP         
+	00178: MDAP[rd]   
+	00179: MIRP[nrp0,md,rd,1] 
+	00180: SRP0       
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: SRP0       
+	00183: MIRP[nrp0,md,rd,1] 
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: SRP1       
+	00186: SRP2       
+	00187: IP         
+	00188: MDAP[rd]   
+	00189: DELTAP1    
+	00190: ALIGNRP    
+	00191: DELTAP1    
+	00192: SRP1       
+	00193: SRP2       
+	00194: IP         
+	00195: MDAP[rd]   
+	00196: MIRP[nrp0,md,rd,1] 
+	00197: SRP0       
+	00198: MIRP[srp0,md,rd,1] 
+	00199: RTDG       
+	00200: SRP2       
+	00201: IP         
+	00202: MDAP[rd]   
+	00203: RTG        
+	00204: SVTCA[x-axis] 
+	00205: SRP0       
+	00206: MIRP[srp0,nmd,rd,1] 
+	00207: MIRP[srp0,nmd,rd,0] 
+	00208: MDRP[nrp0,nmd,rd,0] 
+	00209: SVTCA[y-axis] 
+	00210: SRP0       
+	00211: MIRP[srp0,md,rd,1] 
+	00212: RTDG       
+	00213: SRP2       
+	00214: IP         
+	00215: MDAP[rd]   
+	00216: RTG        
+	00217: SVTCA[x-axis] 
+	00218: SRP0       
+	00219: MIRP[srp0,nmd,rd,1] 
+	00220: DELTAP1    
+	00221: MIRP[srp0,nmd,rd,0] 
+	00222: MDRP[nrp0,nmd,rd,0] 
+	00223: IUP[y]     
+	00224: IUP[x]     
+	00225: SVTCA[y-axis] 
+	00226: SHPIX      
+	00227: SVTCA[x-axis] 
+	00228: SLOOP      
+	00229: SHPIX      
+	00230: SVTCA[x-axis] 
+	00231: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                               On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:  YDual                               On
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual                               On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short On
+	 30:        XDual         Y-Short X-Short On
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:  YDual               Y-Short X-Short On
+	 37:  YDual               Y-Short X-Short On
+	 38:  YDual                               On
+	 39:        XDual                         On
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:        XDual         Y-Short X-Short Off
+	 44:        XDual         Y-Short         On
+	 45:        XDual         Y-Short         Off
+	 46:                      Y-Short X-Short Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short Off
+	 49:  YDual XDual         Y-Short         On
+	 50:  YDual XDual         Y-Short         Off
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short X-Short Off
+	 54:  YDual XDual         Y-Short         On
+	 55:  YDual XDual         Y-Short         Off
+	 56:  YDual               Y-Short X-Short Off
+	 57:  YDual                       X-Short On
+	 58:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   491,   430)  ->  Abs (   491,   430)
+	  1: Rel (     0,  -346)  ->  Abs (   491,    84)
+	  2: Rel (    97,     0)  ->  Abs (   588,    84)
+	  3: Rel (    70,     0)  ->  Abs (   658,    84)
+	  4: Rel (     0,   -42)  ->  Abs (   658,    42)
+	  5: Rel (     0,   -42)  ->  Abs (   658,     0)
+	  6: Rel (   -70,     0)  ->  Abs (   588,     0)
+	  7: Rel (  -289,     0)  ->  Abs (   299,     0)
+	  8: Rel (   -71,     0)  ->  Abs (   228,     0)
+	  9: Rel (     0,    42)  ->  Abs (   228,    42)
+	 10: Rel (     0,    42)  ->  Abs (   228,    84)
+	 11: Rel (    71,     0)  ->  Abs (   299,    84)
+	 12: Rel (   107,     0)  ->  Abs (   406,    84)
+	 13: Rel (     0,  1002)  ->  Abs (   406,  1086)
+	 14: Rel (  -288,     0)  ->  Abs (   118,  1086)
+	 15: Rel (   -16,  -230)  ->  Abs (   102,   856)
+	 16: Rel (    -4,   -67)  ->  Abs (    98,   789)
+	 17: Rel (   -39,     0)  ->  Abs (    59,   789)
+	 18: Rel (   -42,     0)  ->  Abs (    17,   789)
+	 19: Rel (     0,    45)  ->  Abs (    17,   834)
+	 20: Rel (     0,     6)  ->  Abs (    17,   840)
+	 21: Rel (     2,    22)  ->  Abs (    19,   862)
+	 22: Rel (    17,   241)  ->  Abs (    36,  1103)
+	 23: Rel (     3,    46)  ->  Abs (    39,  1149)
+	 24: Rel (    22,    21)  ->  Abs (    61,  1170)
+	 25: Rel (    47,     0)  ->  Abs (   108,  1170)
+	 26: Rel (   676,     0)  ->  Abs (   784,  1170)
+	 27: Rel (    44,     0)  ->  Abs (   828,  1170)
+	 28: Rel (    25,   -21)  ->  Abs (   853,  1149)
+	 29: Rel (     4,   -46)  ->  Abs (   857,  1103)
+	 30: Rel (    21,  -241)  ->  Abs (   878,   862)
+	 31: Rel (     2,   -23)  ->  Abs (   880,   839)
+	 32: Rel (     0,    -8)  ->  Abs (   880,   831)
+	 33: Rel (     0,   -42)  ->  Abs (   880,   789)
+	 34: Rel (   -41,     0)  ->  Abs (   839,   789)
+	 35: Rel (   -39,     0)  ->  Abs (   800,   789)
+	 36: Rel (    -6,    67)  ->  Abs (   794,   856)
+	 37: Rel (   -19,   230)  ->  Abs (   775,  1086)
+	 38: Rel (  -284,     0)  ->  Abs (   491,  1086)
+	 39: Rel (     0,  -553)  ->  Abs (   491,   533)
+	 40: Rel (   214,   158)  ->  Abs (   705,   691)
+	 41: Rel (   159,     0)  ->  Abs (   864,   691)
+	 42: Rel (   143,     0)  ->  Abs (  1007,   691)
+	 43: Rel (   158,  -198)  ->  Abs (  1165,   493)
+	 44: Rel (     0,  -154)  ->  Abs (  1165,   339)
+	 45: Rel (     0,  -175)  ->  Abs (  1165,   164)
+	 46: Rel (  -183,  -197)  ->  Abs (   982,   -33)
+	 47: Rel (  -111,     0)  ->  Abs (   871,   -33)
+	 48: Rel (   -58,     0)  ->  Abs (   813,   -33)
+	 49: Rel (     0,    44)  ->  Abs (   813,    11)
+	 50: Rel (     0,    40)  ->  Abs (   813,    51)
+	 51: Rel (    64,     6)  ->  Abs (   877,    57)
+	 52: Rel (   100,     9)  ->  Abs (   977,    66)
+	 53: Rel (   101,   161)  ->  Abs (  1078,   227)
+	 54: Rel (     0,   120)  ->  Abs (  1078,   347)
+	 55: Rel (     0,   121)  ->  Abs (  1078,   468)
+	 56: Rel (  -117,   137)  ->  Abs (   961,   605)
+	 57: Rel (   -97,     0)  ->  Abs (   864,   605)
+	 58: Rel (  -162,     0)  ->  Abs (   702,   605)
+
+	Glyph 558: off = 0x0001D3BA, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			127
+	  yMin:			0
+	  xMax:			1111
+	  yMax:			1593
+
+	     0: Flags:		0x0236
+		Glyf Index:	573
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	141
+		X WOffset:	0
+		Y WOffset:	264
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1    42    25 
+	00004: PUSHW[1]            350 
+	00007: PUSHB[5]             72    43     1     1    29 
+	00013: PUSHW[2]            651    41 
+	00018: SVTCA[y-axis] 
+	00019: CALL       
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: SHC[rp1,zp0] 
+
+	Glyph 559: off = 0x0001D3EC, len = 342
+	  numberOfContours:	1
+	  xMin:			127
+	  yMin:			-33
+	  xMax:			1100
+	  yMax:			1197
+
+	EndPoints
+	---------
+	  0:  45
+
+	  Length of Instructions:	213
+	00000: NPUSHB      (20):   184    12     1    40    64    28    32    52    55    12 
+	                             1   138    44     1    24    32    12    15    52     8 
+	00022: PUSHW[1]            -40 
+	00025: PUSHB[5]             12    15    52    21    20 
+	00031: PUSHW[1]            -19 
+	00034: PUSHB[3]              2     9     8 
+	00038: PUSHW[1]            -26 
+	00041: NPUSHB     (102):     2    11    38    44    38    43    26    17    38    14 
+	                            28    38    39    39    41    47    36    63    36     2 
+	                            36     0    38     0     6     1     6     6    19    14 
+	                            14    26    19    36    31     2    41    38    26     3 
+	                            10    38    19     9     3     3     0    34    29    38 
+	                            33    38    38    33    34    65    47    16     1    15 
+	                            16   143    16     2    16    64    21    24    52    16 
+	                            26    47     0     6    38    47    22     1    15    22 
+	                            31    22    47    22    63    22   111    22   143    22 
+	                             6    22    64    21    24    52    22    25    46   135 
+	                           121    24 
+	00145: CALL       
+	00146: FLIPOFF    
+	00147: SRP0       
+	00148: MIRP[srp0,nmd,rd,0] 
+	00149: CALL       
+	00150: DELTAP1    
+	00151: DELTAP2    
+	00152: FLIPON     
+	00153: MIRP[srp0,md,rd,1] 
+	00154: ALIGNRP    
+	00155: FLIPOFF    
+	00156: SRP0       
+	00157: MIRP[srp0,nmd,rd,2] 
+	00158: CALL       
+	00159: DELTAP1    
+	00160: DELTAP2    
+	00161: FLIPON     
+	00162: MIRP[srp0,nmd,rd,0] 
+	00163: ALIGNRP    
+	00164: MIRP[nrp0,md,rd,1] 
+	00165: SRP0       
+	00166: MIRP[nrp0,md,rd,1] 
+	00167: SRP1       
+	00168: SRP2       
+	00169: IP         
+	00170: MDAP[rd]   
+	00171: SVTCA[y-axis] 
+	00172: MIAP[rd+ci] 
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: MIAP[rd+ci] 
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: MIAP[rd+ci] 
+	00177: MDAP[rd]   
+	00178: SRP1       
+	00179: SRP2       
+	00180: IP         
+	00181: MDAP[rd]   
+	00182: SRP1       
+	00183: IP         
+	00184: MDAP[rd]   
+	00185: DELTAP1    
+	00186: MIRP[nrp0,md,rd,1] 
+	00187: SRP1       
+	00188: DELTAP1    
+	00189: SRP2       
+	00190: IP         
+	00191: MDAP[rd]   
+	00192: MIRP[nrp0,md,rd,1] 
+	00193: SRP0       
+	00194: MIRP[nrp0,md,rd,1] 
+	00195: IUP[y]     
+	00196: IUP[x]     
+	00197: SHPIX      
+	00198: SHPIX      
+	00199: SVTCA[x-axis] 
+	00200: SHPIX      
+	00201: SLOOP      
+	00202: SHPIX      
+	00203: SLOOP      
+	00204: SHPIX      
+	00205: SVTCA[y-axis] 
+	00206: CALL       
+	00207: CALL       
+	00208: DELTAP2    
+	00209: SVTCA[x-axis] 
+	00210: DELTAP1    
+	00211: CALL       
+	00212: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                               On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                               On
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:        XDual                 X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short         Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:                                      Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:                                      Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short X-Short On
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:  YDual               Y-Short X-Short On
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:                      Y-Short X-Short Off
+	 44:                      Y-Short X-Short Off
+	 45:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   211,   649)  ->  Abs (   211,   649)
+	  1: Rel (   526,     0)  ->  Abs (   737,   649)
+	  2: Rel (    57,     0)  ->  Abs (   794,   649)
+	  3: Rel (     0,   -39)  ->  Abs (   794,   610)
+	  4: Rel (     0,   -45)  ->  Abs (   794,   565)
+	  5: Rel (   -57,     0)  ->  Abs (   737,   565)
+	  6: Rel (  -526,     0)  ->  Abs (   211,   565)
+	  7: Rel (     0,   -49)  ->  Abs (   211,   516)
+	  8: Rel (     0,  -168)  ->  Abs (   211,   348)
+	  9: Rel (   253,  -297)  ->  Abs (   464,    51)
+	 10: Rel (   199,     0)  ->  Abs (   663,    51)
+	 11: Rel (   200,     0)  ->  Abs (   863,    51)
+	 12: Rel (   159,   189)  ->  Abs (  1022,   240)
+	 13: Rel (    17,    21)  ->  Abs (  1039,   261)
+	 14: Rel (    21,     0)  ->  Abs (  1060,   261)
+	 15: Rel (    40,     0)  ->  Abs (  1100,   261)
+	 16: Rel (     0,   -39)  ->  Abs (  1100,   222)
+	 17: Rel (     0,   -49)  ->  Abs (  1100,   173)
+	 18: Rel (  -266,  -206)  ->  Abs (   834,   -33)
+	 19: Rel (  -171,     0)  ->  Abs (   663,   -33)
+	 20: Rel (  -220,     0)  ->  Abs (   443,   -33)
+	 21: Rel (  -316,   346)  ->  Abs (   127,   313)
+	 22: Rel (     0,   191)  ->  Abs (   127,   504)
+	 23: Rel (     0,   171)  ->  Abs (   127,   675)
+	 24: Rel (     0,   193)  ->  Abs (   127,   868)
+	 25: Rel (   274,   329)  ->  Abs (   401,  1197)
+	 26: Rel (   225,     0)  ->  Abs (   626,  1197)
+	 27: Rel (   208,     0)  ->  Abs (   834,  1197)
+	 28: Rel (   150,  -142)  ->  Abs (   984,  1055)
+	 29: Rel (     0,    59)  ->  Abs (   984,  1114)
+	 30: Rel (     0,    56)  ->  Abs (   984,  1170)
+	 31: Rel (    42,     0)  ->  Abs (  1026,  1170)
+	 32: Rel (    42,     0)  ->  Abs (  1068,  1170)
+	 33: Rel (     0,   -56)  ->  Abs (  1068,  1114)
+	 34: Rel (     0,  -233)  ->  Abs (  1068,   881)
+	 35: Rel (     0,   -57)  ->  Abs (  1068,   824)
+	 36: Rel (   -42,     0)  ->  Abs (  1026,   824)
+	 37: Rel (   -39,     0)  ->  Abs (   987,   824)
+	 38: Rel (    -3,    51)  ->  Abs (   984,   875)
+	 39: Rel (    -6,    96)  ->  Abs (   978,   971)
+	 40: Rel (  -221,   142)  ->  Abs (   757,  1113)
+	 41: Rel (  -130,     0)  ->  Abs (   627,  1113)
+	 42: Rel (   -90,     0)  ->  Abs (   537,  1113)
+	 43: Rel (  -181,   -84)  ->  Abs (   356,  1029)
+	 44: Rel (  -145,  -240)  ->  Abs (   211,   789)
+	 45: Rel (     0,  -114)  ->  Abs (   211,   675)
+
+	Glyph 560: off = 0x0001D542, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			185
+	  yMin:			-33
+	  xMax:			1044
+	  yMax:			1197
+
+	     0: Flags:		0x0216
+		Glyf Index:	54
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 561: off = 0x0001D552, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			229
+	  yMin:			0
+	  xMax:			1001
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 562: off = 0x0001D562, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			229
+	  yMin:			0
+	  xMax:			1001
+	  yMax:			1496
+
+	     0: Flags:		0x0226
+		Glyf Index:	561
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	142
+		X WOffset:	0
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (24):     2     1    50    64    26    30    52   112    50     1 
+	                            32    50    48    50     2    50     0   100    72    43 
+	                             1     2     2    47 
+	00026: PUSHW[2]            651    41 
+	00031: SVTCA[y-axis] 
+	00032: CALL       
+	00033: SVTCA[x-axis] 
+	00034: CALL       
+	00035: DELTAP1    
+	00036: DELTAP2    
+	00037: CALL       
+	00038: SHC[rp1,zp0] 
+	00039: SHC[rp1,zp0] 
+
+	Glyph 563: off = 0x0001D5A4, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			171
+	  yMin:			-33
+	  xMax:			1199
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	45
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 564: off = 0x0001D5B4, len = 406
+	  numberOfContours:	2
+	  xMin:			35
+	  yMin:			-33
+	  xMax:			1188
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  45
+	  1:  52
+
+	  Length of Instructions:	261
+	00000: NPUSHB      (20):   181     6     1    56    49     1    56    51    71    49 
+	                            73    51    86    49   181    49     5    52    16    48 
+	00022: PUSHW[4]            -16    33    32   -18 
+	00031: PUSHB[3]              2     9    13 
+	00035: PUSHW[3]            784    11   354 
+	00042: NPUSHB       (9):    14    11    11    13    14    29     9    40    36 
+	00053: PUSHW[3]            784    38   354 
+	00060: NPUSHB       (9):    35    38    38    36    35    29    40    41    45 
+	00071: PUSHW[3]            784    43   354 
+	00078: NPUSHB      (79):     0    43    43    45     0    29    41     0    26    16 
+	                            26     2    26    26    41    31    38    19    47    13 
+	                            38     8     1    38    46    46     8    16    36    36 
+	                            45    38    41    40     2    41     2    19     9     8 
+	                             8    35    38    17    17    23     0    47    38    14 
+	                            14    23    50    38   143     4     1     4    64    13 
+	                            15    52     4    26    54    29    38   143    23     1 
+	                            23    64    13    15    52    23    25    53    69 
+	00159: PUSHW[2]            340    24 
+	00164: CALL       
+	00165: FLIPOFF    
+	00166: SRP0       
+	00167: MIRP[srp0,nmd,rd,0] 
+	00168: CALL       
+	00169: DELTAP1    
+	00170: FLIPON     
+	00171: MIRP[nrp0,md,rd,1] 
+	00172: FLIPOFF    
+	00173: SRP0       
+	00174: MIRP[srp0,nmd,rd,2] 
+	00175: CALL       
+	00176: DELTAP1    
+	00177: FLIPON     
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: SRP2       
+	00180: IP         
+	00181: MDAP[rd]   
+	00182: MIRP[srp0,md,rd,1] 
+	00183: ALIGNRP    
+	00184: SRP2       
+	00185: IP         
+	00186: MDAP[rd]   
+	00187: MIRP[nrp0,md,rd,1] 
+	00188: SVTCA[y-axis] 
+	00189: MIAP[rd+ci] 
+	00190: MIAP[rd+ci] 
+	00191: MIAP[rd+ci] 
+	00192: MIAP[rd+ci] 
+	00193: SRP0       
+	00194: MIRP[srp0,md,rd,1] 
+	00195: ALIGNRP    
+	00196: SRP0       
+	00197: ALIGNRP    
+	00198: SRP2       
+	00199: IP         
+	00200: MDAP[rd]   
+	00201: MIRP[nrp0,md,rd,1] 
+	00202: SRP0       
+	00203: MIRP[srp0,md,rd,1] 
+	00204: ALIGNRP    
+	00205: SRP0       
+	00206: MIRP[srp0,md,rd,1] 
+	00207: SRP1       
+	00208: IP         
+	00209: MDAP[rd]   
+	00210: DELTAP1    
+	00211: SRP0       
+	00212: MIRP[srp0,md,rd,1] 
+	00213: RTDG       
+	00214: SRP2       
+	00215: IP         
+	00216: MDAP[rd]   
+	00217: RTG        
+	00218: SVTCA[x-axis] 
+	00219: SRP0       
+	00220: MIRP[srp0,nmd,rd,1] 
+	00221: MIRP[srp0,nmd,rd,0] 
+	00222: MDRP[nrp0,nmd,rd,0] 
+	00223: SVTCA[y-axis] 
+	00224: SRP0       
+	00225: MIRP[srp0,md,rd,1] 
+	00226: RTDG       
+	00227: SRP2       
+	00228: IP         
+	00229: MDAP[rd]   
+	00230: RTG        
+	00231: SVTCA[x-axis] 
+	00232: SRP0       
+	00233: MIRP[srp0,nmd,rd,1] 
+	00234: MIRP[srp0,nmd,rd,0] 
+	00235: MDRP[nrp0,nmd,rd,0] 
+	00236: SVTCA[y-axis] 
+	00237: SRP0       
+	00238: MIRP[srp0,md,rd,1] 
+	00239: RTDG       
+	00240: SRP2       
+	00241: IP         
+	00242: MDAP[rd]   
+	00243: RTG        
+	00244: SVTCA[x-axis] 
+	00245: SRP0       
+	00246: MIRP[srp0,nmd,rd,1] 
+	00247: MIRP[srp0,nmd,rd,0] 
+	00248: MDRP[nrp0,nmd,rd,0] 
+	00249: IUP[y]     
+	00250: IUP[x]     
+	00251: SVTCA[y-axis] 
+	00252: SLOOP      
+	00253: SHPIX      
+	00254: SHPIX      
+	00255: SHPIX      
+	00256: SVTCA[y-axis] 
+	00257: DELTAP2    
+	00258: SVTCA[x-axis] 
+	00259: DELTAP2    
+	00260: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short On
+	 15:        XDual                         On
+	 16:  YDual                       X-Short On
+	 17:        XDual                         On
+	 18:        XDual                         Off
+	 19:  YDual                               On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:        XDual                         On
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual                               On
+	 42:  YDual XDual                 X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:  YDual                       X-Short On
+	 46:                              X-Short On
+	 47:        XDual                         On
+	 48:  YDual XDual                 X-Short Off
+	 49:  YDual XDual         Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   786,  1086)  ->  Abs (   786,  1086)
+	  1: Rel (     0,  -434)  ->  Abs (   786,   652)
+	  2: Rel (   217,     0)  ->  Abs (  1003,   652)
+	  3: Rel (   185,  -186)  ->  Abs (  1188,   466)
+	  4: Rel (     0,  -141)  ->  Abs (  1188,   325)
+	  5: Rel (     0,  -117)  ->  Abs (  1188,   208)
+	  6: Rel (  -118,  -162)  ->  Abs (  1070,    46)
+	  7: Rel (  -167,   -46)  ->  Abs (   903,     0)
+	  8: Rel (  -195,     0)  ->  Abs (   708,     0)
+	  9: Rel (  -106,     0)  ->  Abs (   602,     0)
+	 10: Rel (   -70,     0)  ->  Abs (   532,     0)
+	 11: Rel (     0,    42)  ->  Abs (   532,    42)
+	 12: Rel (     0,    42)  ->  Abs (   532,    84)
+	 13: Rel (    70,     0)  ->  Abs (   602,    84)
+	 14: Rel (   100,     0)  ->  Abs (   702,    84)
+	 15: Rel (     0,  1002)  ->  Abs (   702,  1086)
+	 16: Rel (  -220,     0)  ->  Abs (   482,  1086)
+	 17: Rel (     0,  -685)  ->  Abs (   482,   401)
+	 18: Rel (     0,  -434)  ->  Abs (   482,   -33)
+	 19: Rel (  -266,     0)  ->  Abs (   216,   -33)
+	 20: Rel (   -63,     0)  ->  Abs (   153,   -33)
+	 21: Rel (  -100,    25)  ->  Abs (    53,    -8)
+	 22: Rel (   -18,    26)  ->  Abs (    35,    18)
+	 23: Rel (     0,    41)  ->  Abs (    35,    59)
+	 24: Rel (     0,   126)  ->  Abs (    35,   185)
+	 25: Rel (     0,    64)  ->  Abs (    35,   249)
+	 26: Rel (    43,     0)  ->  Abs (    78,   249)
+	 27: Rel (    41,     0)  ->  Abs (   119,   249)
+	 28: Rel (     0,   -58)  ->  Abs (   119,   191)
+	 29: Rel (     0,  -124)  ->  Abs (   119,    67)
+	 30: Rel (    55,   -17)  ->  Abs (   174,    50)
+	 31: Rel (    39,     0)  ->  Abs (   213,    50)
+	 32: Rel (    80,     0)  ->  Abs (   293,    50)
+	 33: Rel (   105,   163)  ->  Abs (   398,   213)
+	 34: Rel (     0,   188)  ->  Abs (   398,   401)
+	 35: Rel (     0,   685)  ->  Abs (   398,  1086)
+	 36: Rel (  -116,     0)  ->  Abs (   282,  1086)
+	 37: Rel (   -70,     0)  ->  Abs (   212,  1086)
+	 38: Rel (     0,    42)  ->  Abs (   212,  1128)
+	 39: Rel (     0,    42)  ->  Abs (   212,  1170)
+	 40: Rel (    70,     0)  ->  Abs (   282,  1170)
+	 41: Rel (   620,     0)  ->  Abs (   902,  1170)
+	 42: Rel (    70,     0)  ->  Abs (   972,  1170)
+	 43: Rel (     0,   -42)  ->  Abs (   972,  1128)
+	 44: Rel (     0,   -42)  ->  Abs (   972,  1086)
+	 45: Rel (   -70,     0)  ->  Abs (   902,  1086)
+	 46: Rel (  -116,  -522)  ->  Abs (   786,   564)
+	 47: Rel (     0,  -480)  ->  Abs (   786,    84)
+	 48: Rel (   186,     0)  ->  Abs (   972,    84)
+	 49: Rel (   123,   137)  ->  Abs (  1095,   221)
+	 50: Rel (     0,   103)  ->  Abs (  1095,   324)
+	 51: Rel (     0,   123)  ->  Abs (  1095,   447)
+	 52: Rel (  -147,   117)  ->  Abs (   948,   564)
+
+	Glyph 565: off = 0x0001D74A, len = 630
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  53
+	  1:  62
+
+	  Length of Instructions:	473
+	00000: PUSHB[2]             57    56 
+	00003: PUSHW[1]            -19 
+	00006: NPUSHB      (35):     2    59    45    33    64    11    14    52    29    64 
+	                            11    14    52    31    64    11    14    52    48    64 
+	                            11    14    52    52    64    11    14    52    50    64 
+	                            11    14    52    19    15 
+	00043: PUSHW[1]            676 
+	00046: NPUSHB      (25):   223    17   239    17   255    17     3    47    17    63 
+	                            17   207    17     3    17    41    14    17    17    15 
+	                            14    29    19    20    24 
+	00073: PUSHW[1]            676 
+	00076: NPUSHB      (11):    22    41    25    22    22    24    25    29    20    33 
+	                            29 
+	00089: PUSHW[1]            676 
+	00092: NPUSHB      (20):   207    31   223    31   239    31   255    31     4    31 
+	                            41    28    31    31    29    28    29    33    34    38 
+	00114: PUSHW[1]            676 
+	00117: NPUSHB      (11):    36    43    39    36    36    38    39    29    34    48 
+	                            52 
+	00130: PUSHW[1]            676 
+	00133: NPUSHB      (20):   207    50   223    50   239    50   255    50     4    50 
+	                            41    53    50    50    52    53    29    48     7     3 
+	00155: PUSHW[1]            676 
+	00158: NPUSHB      (11):     5    41     2     5     5     3     2    29     7     8 
+	                            12 
+	00171: PUSHW[1]            676 
+	00174: NPUSHB     (128):   223    10   239    10   255    10     3    47    10    63 
+	                            10   207    10     3    10    41    13    10    10    12 
+	                            13    29     8    38    29    29    24    15    38    19 
+	                             1    62    26    62    38    40    40    33    13     2 
+	                             2    54    53    38    48    34    33    33    20    19 
+	                             2    47    48    48     7     8     8    39    54    28 
+	                            54    38    53    64    37    42    52    53    64    48 
+	                            52    52    53    64    30    32    52    53    64    25 
+	                            27    52   159    53   175    53     2   111    53   127 
+	                            53   143    53   223    53     4    53    53    13    25 
+	                             2    58    38   207    44   239    44     2    44    26 
+	                            64     2    38    14   239    13     1    32    13    48 
+	                            13     2    13    25    63   135   108    24 
+	00304: CALL       
+	00305: FLIPOFF    
+	00306: SRP0       
+	00307: MIRP[srp0,nmd,rd,0] 
+	00308: DELTAP1    
+	00309: DELTAP2    
+	00310: ALIGNRP    
+	00311: FLIPON     
+	00312: MIRP[nrp0,md,rd,1] 
+	00313: FLIPOFF    
+	00314: SRP0       
+	00315: MIRP[srp0,nmd,rd,2] 
+	00316: DELTAP2    
+	00317: FLIPON     
+	00318: MIRP[nrp0,md,rd,1] 
+	00319: SRP0       
+	00320: ALIGNRP    
+	00321: SRP2       
+	00322: IP         
+	00323: MDAP[rd]   
+	00324: DELTAP1    
+	00325: DELTAP2    
+	00326: CALL       
+	00327: CALL       
+	00328: CALL       
+	00329: CALL       
+	00330: MIRP[nrp0,md,rd,1] 
+	00331: ALIGNRP    
+	00332: SRP0       
+	00333: ALIGNRP    
+	00334: SVTCA[y-axis] 
+	00335: MIAP[rd+ci] 
+	00336: ALIGNRP    
+	00337: ALIGNRP    
+	00338: SRP0       
+	00339: ALIGNRP    
+	00340: MIAP[rd+ci] 
+	00341: ALIGNRP    
+	00342: ALIGNRP    
+	00343: SRP0       
+	00344: ALIGNRP    
+	00345: SRP0       
+	00346: MIRP[srp0,md,rd,1] 
+	00347: ALIGNRP    
+	00348: ALIGNRP    
+	00349: SRP0       
+	00350: ALIGNRP    
+	00351: SRP2       
+	00352: IP         
+	00353: MDAP[rd]   
+	00354: MIRP[nrp0,md,rd,1] 
+	00355: ALIGNRP    
+	00356: SRP0       
+	00357: ALIGNRP    
+	00358: SRP0       
+	00359: MIRP[srp0,md,rd,1] 
+	00360: ALIGNRP    
+	00361: ALIGNRP    
+	00362: SRP0       
+	00363: ALIGNRP    
+	00364: SRP0       
+	00365: MIRP[srp0,md,rd,1] 
+	00366: RTDG       
+	00367: SRP2       
+	00368: IP         
+	00369: MDAP[rd]   
+	00370: RTG        
+	00371: SVTCA[x-axis] 
+	00372: SRP0       
+	00373: MIRP[srp0,nmd,rd,1] 
+	00374: DELTAP1    
+	00375: DELTAP1    
+	00376: MIRP[srp0,nmd,rd,0] 
+	00377: MDRP[nrp0,nmd,rd,0] 
+	00378: SVTCA[y-axis] 
+	00379: SRP0       
+	00380: MIRP[srp0,md,rd,1] 
+	00381: RTDG       
+	00382: SRP2       
+	00383: IP         
+	00384: MDAP[rd]   
+	00385: RTG        
+	00386: SVTCA[x-axis] 
+	00387: SRP0       
+	00388: MIRP[srp0,nmd,rd,1] 
+	00389: MIRP[srp0,nmd,rd,0] 
+	00390: MDRP[nrp0,nmd,rd,0] 
+	00391: SVTCA[y-axis] 
+	00392: SRP0       
+	00393: MIRP[srp0,md,rd,1] 
+	00394: RTDG       
+	00395: SRP2       
+	00396: IP         
+	00397: MDAP[rd]   
+	00398: RTG        
+	00399: SVTCA[x-axis] 
+	00400: SRP0       
+	00401: MIRP[srp0,nmd,rd,1] 
+	00402: DELTAP1    
+	00403: MIRP[srp0,nmd,rd,0] 
+	00404: MDRP[nrp0,nmd,rd,0] 
+	00405: SVTCA[y-axis] 
+	00406: SRP0       
+	00407: MIRP[srp0,md,rd,1] 
+	00408: RTDG       
+	00409: SRP2       
+	00410: IP         
+	00411: MDAP[rd]   
+	00412: RTG        
+	00413: SVTCA[x-axis] 
+	00414: SRP0       
+	00415: MIRP[srp0,nmd,rd,1] 
+	00416: MIRP[srp0,nmd,rd,0] 
+	00417: MDRP[nrp0,nmd,rd,0] 
+	00418: SVTCA[y-axis] 
+	00419: SRP0       
+	00420: MIRP[srp0,md,rd,1] 
+	00421: RTDG       
+	00422: SRP2       
+	00423: IP         
+	00424: MDAP[rd]   
+	00425: RTG        
+	00426: SVTCA[x-axis] 
+	00427: SRP0       
+	00428: MIRP[srp0,nmd,rd,1] 
+	00429: DELTAP1    
+	00430: MIRP[srp0,nmd,rd,0] 
+	00431: MDRP[nrp0,nmd,rd,0] 
+	00432: SVTCA[y-axis] 
+	00433: SRP0       
+	00434: MIRP[srp0,md,rd,1] 
+	00435: RTDG       
+	00436: SRP2       
+	00437: IP         
+	00438: MDAP[rd]   
+	00439: RTG        
+	00440: SVTCA[x-axis] 
+	00441: SRP0       
+	00442: MIRP[srp0,nmd,rd,1] 
+	00443: MIRP[srp0,nmd,rd,0] 
+	00444: MDRP[nrp0,nmd,rd,0] 
+	00445: SVTCA[y-axis] 
+	00446: SRP0       
+	00447: MIRP[srp0,md,rd,1] 
+	00448: RTDG       
+	00449: SRP2       
+	00450: IP         
+	00451: MDAP[rd]   
+	00452: RTG        
+	00453: SVTCA[x-axis] 
+	00454: SRP0       
+	00455: MIRP[srp0,nmd,rd,1] 
+	00456: DELTAP1    
+	00457: DELTAP1    
+	00458: MIRP[srp0,nmd,rd,0] 
+	00459: MDRP[nrp0,nmd,rd,0] 
+	00460: SVTCA[x-axis] 
+	00461: CALL       
+	00462: CALL       
+	00463: CALL       
+	00464: CALL       
+	00465: CALL       
+	00466: CALL       
+	00467: IUP[y]     
+	00468: IUP[x]     
+	00469: SVTCA[y-axis] 
+	00470: SHPIX      
+	00471: SLOOP      
+	00472: SHPIX      
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual                         On
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short On
+	 26:        XDual                         On
+	 27:  YDual                               On
+	 28:        XDual                         On
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual                               On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short On
+	 40:        XDual                         On
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:        XDual         Y-Short X-Short Off
+	 44:        XDual         Y-Short         On
+	 45:        XDual         Y-Short         Off
+	 46:                      Y-Short X-Short Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                               On
+	 49:  YDual                       X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual XDual Rep-  3         X-Short On
+	 56:  YDual XDual                 X-Short Off
+	 57:  YDual XDual         Y-Short X-Short Off
+	 58:  YDual XDual         Y-Short         On
+	 59:  YDual XDual         Y-Short         Off
+	 60:  YDual               Y-Short X-Short Off
+	 61:  YDual                       X-Short On
+	 62:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   547,   565)  ->  Abs (   547,   565)
+	  1: Rel (  -336,     0)  ->  Abs (   211,   565)
+	  2: Rel (     0,  -481)  ->  Abs (   211,    84)
+	  3: Rel (    65,     0)  ->  Abs (   276,    84)
+	  4: Rel (    56,     0)  ->  Abs (   332,    84)
+	  5: Rel (     0,   -42)  ->  Abs (   332,    42)
+	  6: Rel (     0,   -42)  ->  Abs (   332,     0)
+	  7: Rel (   -56,     0)  ->  Abs (   276,     0)
+	  8: Rel (  -220,     0)  ->  Abs (    56,     0)
+	  9: Rel (   -56,     0)  ->  Abs (     0,     0)
+	 10: Rel (     0,    42)  ->  Abs (     0,    42)
+	 11: Rel (     0,    42)  ->  Abs (     0,    84)
+	 12: Rel (    56,     0)  ->  Abs (    56,    84)
+	 13: Rel (    71,     0)  ->  Abs (   127,    84)
+	 14: Rel (     0,  1002)  ->  Abs (   127,  1086)
+	 15: Rel (   -53,     0)  ->  Abs (    74,  1086)
+	 16: Rel (   -56,     0)  ->  Abs (    18,  1086)
+	 17: Rel (     0,    42)  ->  Abs (    18,  1128)
+	 18: Rel (     0,    42)  ->  Abs (    18,  1170)
+	 19: Rel (    56,     0)  ->  Abs (    74,  1170)
+	 20: Rel (   202,     0)  ->  Abs (   276,  1170)
+	 21: Rel (    56,     0)  ->  Abs (   332,  1170)
+	 22: Rel (     0,   -42)  ->  Abs (   332,  1128)
+	 23: Rel (     0,   -42)  ->  Abs (   332,  1086)
+	 24: Rel (   -56,     0)  ->  Abs (   276,  1086)
+	 25: Rel (   -65,     0)  ->  Abs (   211,  1086)
+	 26: Rel (     0,  -436)  ->  Abs (   211,   650)
+	 27: Rel (   336,     0)  ->  Abs (   547,   650)
+	 28: Rel (     0,   436)  ->  Abs (   547,  1086)
+	 29: Rel (   -64,     0)  ->  Abs (   483,  1086)
+	 30: Rel (   -57,     0)  ->  Abs (   426,  1086)
+	 31: Rel (     0,    42)  ->  Abs (   426,  1128)
+	 32: Rel (     0,    42)  ->  Abs (   426,  1170)
+	 33: Rel (    57,     0)  ->  Abs (   483,  1170)
+	 34: Rel (   261,     0)  ->  Abs (   744,  1170)
+	 35: Rel (    56,     0)  ->  Abs (   800,  1170)
+	 36: Rel (     0,   -42)  ->  Abs (   800,  1128)
+	 37: Rel (     0,   -42)  ->  Abs (   800,  1086)
+	 38: Rel (   -56,     0)  ->  Abs (   744,  1086)
+	 39: Rel (  -112,     0)  ->  Abs (   632,  1086)
+	 40: Rel (     0,  -436)  ->  Abs (   632,   650)
+	 41: Rel (   133,     0)  ->  Abs (   765,   650)
+	 42: Rel (   220,     0)  ->  Abs (   985,   650)
+	 43: Rel (   244,  -170)  ->  Abs (  1229,   480)
+	 44: Rel (     0,  -155)  ->  Abs (  1229,   325)
+	 45: Rel (     0,  -142)  ->  Abs (  1229,   183)
+	 46: Rel (  -204,  -183)  ->  Abs (  1025,     0)
+	 47: Rel (  -138,     0)  ->  Abs (   887,     0)
+	 48: Rel (  -404,     0)  ->  Abs (   483,     0)
+	 49: Rel (   -57,     0)  ->  Abs (   426,     0)
+	 50: Rel (     0,    42)  ->  Abs (   426,    42)
+	 51: Rel (     0,    42)  ->  Abs (   426,    84)
+	 52: Rel (    57,     0)  ->  Abs (   483,    84)
+	 53: Rel (    64,     0)  ->  Abs (   547,    84)
+	 54: Rel (    85,     0)  ->  Abs (   632,    84)
+	 55: Rel (   249,     0)  ->  Abs (   881,    84)
+	 56: Rel (   118,     0)  ->  Abs (   999,    84)
+	 57: Rel (   145,   143)  ->  Abs (  1144,   227)
+	 58: Rel (     0,    96)  ->  Abs (  1144,   323)
+	 59: Rel (     0,    91)  ->  Abs (  1144,   414)
+	 60: Rel (  -172,   151)  ->  Abs (   972,   565)
+	 61: Rel (  -213,     0)  ->  Abs (   759,   565)
+	 62: Rel (  -127,     0)  ->  Abs (   632,   565)
+
+	Glyph 566: off = 0x0001D9C0, len = 488
+	  numberOfContours:	1
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1204
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  62
+
+	  Length of Instructions:	320
+	00000: NPUSHB      (29):    36     4   217    19   249    19     3   168    22     1 
+	                            19    32    16    64    10    14    52    14    64    10 
+	                            14    52    12    64    10    14    52    11     7 
+	00031: PUSHW[1]            676 
+	00034: PUSHB[4]              0     9     1     9 
+	00039: PUSHW[1]            354 
+	00042: NPUSHB       (9):     6     9     9     7     6    29    11    30    26 
+	00053: PUSHW[1]            676 
+	00056: PUSHB[4]              0    28     1    28 
+	00061: PUSHW[1]            354 
+	00064: NPUSHB       (9):    25    28    28    26    25    29    30    12    16 
+	00075: PUSHW[1]            784 
+	00078: PUSHB[4]             15    14     1    14 
+	00083: PUSHW[1]            354 
+	00086: NPUSHB       (9):    17    14    14    16    17    29    12    31    35 
+	00097: PUSHW[3]            784    33   354 
+	00104: NPUSHB      (64):    36    33    33    35    36    29    31     0    38    24 
+	                            24    31    21     0    41    16    41    32    41     3 
+	                            41    58    64    25    29    52    15    58    31    58 
+	                            47    58     3    58    58    61     2     6    17    17 
+	                            25    36    38    31     2    38    21    21    49    12 
+	                            31     8    61    37    38    49     2    60    38    56 
+	                            39    38    43    56 
+	00170: PUSHW[1]            734 
+	00173: PUSHB[4]             62    25    38    36 
+	00178: PUSHW[1]            734 
+	00181: NPUSHB      (20):    43    18    17     5    17    38    15     6   175     6 
+	                             2     6    26    64    43    25    63    69   111    24 
+	00203: CALL       
+	00204: FLIPOFF    
+	00205: SRP0       
+	00206: MIRP[nrp0,nmd,rd,0] 
+	00207: SRP0       
+	00208: MIRP[srp0,nmd,rd,2] 
+	00209: DELTAP1    
+	00210: FLIPON     
+	00211: MIRP[nrp0,md,rd,1] 
+	00212: ALIGNRP    
+	00213: SRP0       
+	00214: ALIGNRP    
+	00215: SRP0       
+	00216: MIRP[srp0,nmd,rd,0] 
+	00217: MIRP[srp0,md,rd,1] 
+	00218: ALIGNRP    
+	00219: MIRP[nrp0,nmd,rd,0] 
+	00220: SRP0       
+	00221: MIRP[nrp0,md,rd,1] 
+	00222: SRP0       
+	00223: MIRP[nrp0,md,rd,1] 
+	00224: SVTCA[y-axis] 
+	00225: MIAP[rd+ci] 
+	00226: MIRP[srp0,md,rd,1] 
+	00227: ALIGNRP    
+	00228: MIAP[rd+ci] 
+	00229: ALIGNRP    
+	00230: SRP2       
+	00231: IP         
+	00232: MDAP[rd]   
+	00233: MIRP[nrp0,md,rd,1] 
+	00234: SRP0       
+	00235: MIRP[srp0,md,rd,1] 
+	00236: ALIGNRP    
+	00237: ALIGNRP    
+	00238: SRP0       
+	00239: ALIGNRP    
+	00240: SRP1       
+	00241: SRP2       
+	00242: IP         
+	00243: MDAP[rd]   
+	00244: DELTAP1    
+	00245: CALL       
+	00246: ALIGNRP    
+	00247: DELTAP1    
+	00248: RTHG       
+	00249: SRP1       
+	00250: SRP2       
+	00251: IP         
+	00252: MDAP[rd]   
+	00253: RTG        
+	00254: MIRP[nrp0,md,rd,1] 
+	00255: SRP0       
+	00256: MIRP[srp0,md,rd,1] 
+	00257: RTDG       
+	00258: SRP2       
+	00259: IP         
+	00260: MDAP[rd]   
+	00261: RTG        
+	00262: SVTCA[x-axis] 
+	00263: SRP0       
+	00264: MIRP[srp0,nmd,rd,1] 
+	00265: MIRP[srp0,nmd,rd,0] 
+	00266: MDRP[nrp0,nmd,rd,0] 
+	00267: SVTCA[y-axis] 
+	00268: SRP0       
+	00269: MIRP[srp0,md,rd,1] 
+	00270: RTDG       
+	00271: SRP2       
+	00272: IP         
+	00273: MDAP[rd]   
+	00274: RTG        
+	00275: SVTCA[x-axis] 
+	00276: SRP0       
+	00277: MIRP[srp0,nmd,rd,1] 
+	00278: DELTAP1    
+	00279: MIRP[srp0,nmd,rd,0] 
+	00280: MDRP[nrp0,nmd,rd,0] 
+	00281: SVTCA[y-axis] 
+	00282: SRP0       
+	00283: MIRP[srp0,md,rd,1] 
+	00284: RTDG       
+	00285: SRP2       
+	00286: IP         
+	00287: MDAP[rd]   
+	00288: RTG        
+	00289: SVTCA[x-axis] 
+	00290: SRP0       
+	00291: MIRP[srp0,nmd,rd,1] 
+	00292: DELTAP1    
+	00293: MIRP[srp0,nmd,rd,0] 
+	00294: MDRP[nrp0,nmd,rd,0] 
+	00295: SVTCA[y-axis] 
+	00296: SRP0       
+	00297: MIRP[srp0,md,rd,1] 
+	00298: RTDG       
+	00299: SRP2       
+	00300: IP         
+	00301: MDAP[rd]   
+	00302: RTG        
+	00303: SVTCA[x-axis] 
+	00304: SRP0       
+	00305: MIRP[srp0,nmd,rd,1] 
+	00306: DELTAP1    
+	00307: MIRP[srp0,nmd,rd,0] 
+	00308: MDRP[nrp0,nmd,rd,0] 
+	00309: SVTCA[x-axis] 
+	00310: CALL       
+	00311: CALL       
+	00312: CALL       
+	00313: IUP[y]     
+	00314: IUP[x]     
+	00315: SVTCA[y-axis] 
+	00316: SHPIX      
+	00317: SVTCA[y-axis] 
+	00318: DELTAP2    
+	00319: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual                         On
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short On
+	 18:        XDual                         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short X-Short On
+	 25:        XDual                         On
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                               On
+	 32:  YDual                       X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short On
+	 37:        XDual                         On
+	 38:  YDual                               On
+	 39:                      Y-Short X-Short On
+	 40:                      Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual XDual         Y-Short X-Short On
+	 46:  YDual XDual         Y-Short X-Short On
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual                               On
+	 51:  YDual XDual                 X-Short Off
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short X-Short On
+	 54:        XDual         Y-Short X-Short On
+	 55:        XDual         Y-Short X-Short Off
+	 56:        XDual         Y-Short         On
+	 57:        XDual         Y-Short         Off
+	 58:  YDual                       X-Short On
+	 59:  YDual                       X-Short Off
+	 60:  YDual               Y-Short X-Short On
+	 61:  YDual               Y-Short X-Short On
+	 62:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   491,   533)  ->  Abs (   491,   533)
+	  1: Rel (   161,   158)  ->  Abs (   652,   691)
+	  2: Rel (   154,     0)  ->  Abs (   806,   691)
+	  3: Rel (   116,     0)  ->  Abs (   922,   691)
+	  4: Rel (   156,  -170)  ->  Abs (  1078,   521)
+	  5: Rel (     0,  -169)  ->  Abs (  1078,   352)
+	  6: Rel (     0,  -268)  ->  Abs (  1078,    84)
+	  7: Rel (    56,     0)  ->  Abs (  1134,    84)
+	  8: Rel (    70,     0)  ->  Abs (  1204,    84)
+	  9: Rel (     0,   -42)  ->  Abs (  1204,    42)
+	 10: Rel (     0,   -42)  ->  Abs (  1204,     0)
+	 11: Rel (   -70,     0)  ->  Abs (  1134,     0)
+	 12: Rel (  -253,     0)  ->  Abs (   881,     0)
+	 13: Rel (   -70,     0)  ->  Abs (   811,     0)
+	 14: Rel (     0,    42)  ->  Abs (   811,    42)
+	 15: Rel (     0,    42)  ->  Abs (   811,    84)
+	 16: Rel (    70,     0)  ->  Abs (   881,    84)
+	 17: Rel (   113,     0)  ->  Abs (   994,    84)
+	 18: Rel (     0,   258)  ->  Abs (   994,   342)
+	 19: Rel (     0,   135)  ->  Abs (   994,   477)
+	 20: Rel (  -114,   128)  ->  Abs (   880,   605)
+	 21: Rel (   -82,     0)  ->  Abs (   798,   605)
+	 22: Rel (   -66,     0)  ->  Abs (   732,   605)
+	 23: Rel (  -135,   -75)  ->  Abs (   597,   530)
+	 24: Rel (  -106,  -102)  ->  Abs (   491,   428)
+	 25: Rel (     0,  -344)  ->  Abs (   491,    84)
+	 26: Rel (    98,     0)  ->  Abs (   589,    84)
+	 27: Rel (    70,     0)  ->  Abs (   659,    84)
+	 28: Rel (     0,   -42)  ->  Abs (   659,    42)
+	 29: Rel (     0,   -42)  ->  Abs (   659,     0)
+	 30: Rel (   -70,     0)  ->  Abs (   589,     0)
+	 31: Rel (  -290,     0)  ->  Abs (   299,     0)
+	 32: Rel (   -71,     0)  ->  Abs (   228,     0)
+	 33: Rel (     0,    42)  ->  Abs (   228,    42)
+	 34: Rel (     0,    42)  ->  Abs (   228,    84)
+	 35: Rel (    71,     0)  ->  Abs (   299,    84)
+	 36: Rel (   107,     0)  ->  Abs (   406,    84)
+	 37: Rel (     0,  1002)  ->  Abs (   406,  1086)
+	 38: Rel (  -288,     0)  ->  Abs (   118,  1086)
+	 39: Rel (   -16,  -230)  ->  Abs (   102,   856)
+	 40: Rel (    -4,   -67)  ->  Abs (    98,   789)
+	 41: Rel (   -39,     0)  ->  Abs (    59,   789)
+	 42: Rel (   -42,     0)  ->  Abs (    17,   789)
+	 43: Rel (     0,    45)  ->  Abs (    17,   834)
+	 44: Rel (     0,     6)  ->  Abs (    17,   840)
+	 45: Rel (     2,    22)  ->  Abs (    19,   862)
+	 46: Rel (    17,   241)  ->  Abs (    36,  1103)
+	 47: Rel (     3,    45)  ->  Abs (    39,  1148)
+	 48: Rel (    21,    22)  ->  Abs (    60,  1170)
+	 49: Rel (    48,     0)  ->  Abs (   108,  1170)
+	 50: Rel (   684,     0)  ->  Abs (   792,  1170)
+	 51: Rel (    46,     0)  ->  Abs (   838,  1170)
+	 52: Rel (    23,   -20)  ->  Abs (   861,  1150)
+	 53: Rel (     3,   -47)  ->  Abs (   864,  1103)
+	 54: Rel (    17,  -241)  ->  Abs (   881,   862)
+	 55: Rel (     2,   -21)  ->  Abs (   883,   841)
+	 56: Rel (     0,    -7)  ->  Abs (   883,   834)
+	 57: Rel (     0,   -45)  ->  Abs (   883,   789)
+	 58: Rel (   -42,     0)  ->  Abs (   841,   789)
+	 59: Rel (   -40,     0)  ->  Abs (   801,   789)
+	 60: Rel (    -4,    67)  ->  Abs (   797,   856)
+	 61: Rel (   -16,   230)  ->  Abs (   781,  1086)
+	 62: Rel (  -290,     0)  ->  Abs (   491,  1086)
+
+	Glyph 567: off = 0x0001DBA8, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			119
+	  yMin:			0
+	  xMax:			1202
+	  yMax:			1593
+
+	     0: Flags:		0x0236
+		Glyf Index:	580
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	141
+		X WOffset:	43
+		Y WOffset:	264
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     1    32    79   176    79   240    79     3    79    64 
+	                            33    36    52    79    46 
+	00017: PUSHW[1]            480 
+	00020: PUSHB[5]             72    43     1     1    66 
+	00026: PUSHW[2]            651    41 
+	00031: SVTCA[y-axis] 
+	00032: CALL       
+	00033: SVTCA[x-axis] 
+	00034: CALL       
+	00035: CALL       
+	00036: DELTAP1    
+	00037: SHC[rp1,zp0] 
+
+	Glyph 568: off = 0x0001DBE8, len = 80
+	  numberOfContours:	-1  (Composite)
+	  xMin:			44
+	  yMin:			-34
+	  xMax:			1211
+	  yMax:			1563
+
+	     0: Flags:		0x0236
+		Glyf Index:	589
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	217
+		X WOffset:	36
+		Y WOffset:	265
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1   160    62   208    62     2    79    62    95    62 
+	                             2    62 
+	00014: PUSHW[1]            -64 
+	00017: PUSHB[4]             24    26    52    62 
+	00022: PUSHW[1]            -64 
+	00025: PUSHB[5]             29    32    52    62    13 
+	00031: PUSHW[1]           -125 
+	00034: PUSHB[5]             72    43     1     1    65 
+	00040: PUSHW[2]            651    41 
+	00045: SVTCA[y-axis] 
+	00046: CALL       
+	00047: SVTCA[x-axis] 
+	00048: CALL       
+	00049: CALL       
+	00050: CALL       
+	00051: DELTAP1    
+	00052: DELTAP2    
+	00053: SHC[rp1,zp0] 
+
+	Glyph 569: off = 0x0001DC38, len = 440
+	  numberOfContours:	1
+	  xMin:			100
+	  yMin:			-286
+	  xMax:			1128
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  44
+
+	  Length of Instructions:	326
+	00000: PUSHB[2]             12     8 
+	00003: PUSHW[1]            676 
+	00006: NPUSHB      (11):    10    43     7    10    10     8     7    29    12    13 
+	                            17 
+	00019: PUSHW[1]            676 
+	00022: NPUSHB      (14):    16    15     1    15    43    18    15    15    17    18 
+	                            29    13    26    22 
+	00038: PUSHW[1]            676 
+	00041: NPUSHB      (11):    24    43    21    24    24    22    21    29    26    27 
+	                            31 
+	00054: PUSHW[1]            676 
+	00057: NPUSHB      (11):    29    43    32    29    29    31    32    29    27    38 
+	                            34 
+	00070: PUSHW[1]            676 
+	00073: NPUSHB      (11):    36    43    33    36    36    34    33    29    38     1 
+	                             5 
+	00086: PUSHW[1]            676 
+	00089: NPUSHB      (67):     3    43     6     3     3     5     6    29     1    31 
+	                            22    22    17    17     8    38    12    34    20    20 
+	                            19    19     5    38     1    42    38    39    39     0 
+	                             0     1     8    27    26    26    13    12     2    40 
+	                            38     0     0     6    18    19     7     6    21    20 
+	                            32     0    33     1    33    38   159    20   175    20 
+	                             2   143    20   223    20     2    20 
+	00158: PUSHW[1]            699 
+	00161: NPUSHB      (22):    46     6    38    48    19    64    19   144    19     3 
+	                            15    19    79    19    95    19   111    19   208    19 
+	                             5    19 
+	00185: PUSHW[5]            699    45    74   470    24 
+	00196: CALL       
+	00197: SRP0       
+	00198: MIRP[srp0,nmd,rd,0] 
+	00199: DELTAP1    
+	00200: DELTAP2    
+	00201: MIRP[nrp0,md,rd,1] 
+	00202: SRP0       
+	00203: MIRP[srp0,nmd,rd,0] 
+	00204: DELTAP1    
+	00205: DELTAP2    
+	00206: MIRP[srp0,md,rd,1] 
+	00207: DELTAP1    
+	00208: ALIGNRP    
+	00209: SRP0       
+	00210: ALIGNRP    
+	00211: SRP0       
+	00212: ALIGNRP    
+	00213: SRP0       
+	00214: ALIGNRP    
+	00215: SRP1       
+	00216: IP         
+	00217: MDAP[rd]   
+	00218: MIRP[nrp0,md,rd,1] 
+	00219: SVTCA[y-axis] 
+	00220: MIAP[rd+ci] 
+	00221: ALIGNRP    
+	00222: ALIGNRP    
+	00223: SRP0       
+	00224: ALIGNRP    
+	00225: MIAP[rd+ci] 
+	00226: ALIGNRP    
+	00227: SRP0       
+	00228: ALIGNRP    
+	00229: SRP0       
+	00230: ALIGNRP    
+	00231: MDAP[rd]   
+	00232: SRP0       
+	00233: MIRP[srp0,md,rd,1] 
+	00234: ALIGNRP    
+	00235: SRP0       
+	00236: ALIGNRP    
+	00237: SRP0       
+	00238: ALIGNRP    
+	00239: SRP0       
+	00240: MIRP[srp0,md,rd,1] 
+	00241: ALIGNRP    
+	00242: SRP0       
+	00243: ALIGNRP    
+	00244: SRP0       
+	00245: ALIGNRP    
+	00246: SRP0       
+	00247: MIRP[srp0,md,rd,1] 
+	00248: RTDG       
+	00249: SRP2       
+	00250: IP         
+	00251: MDAP[rd]   
+	00252: RTG        
+	00253: SVTCA[x-axis] 
+	00254: SRP0       
+	00255: MIRP[srp0,nmd,rd,1] 
+	00256: MIRP[srp0,nmd,rd,0] 
+	00257: MDRP[nrp0,nmd,rd,0] 
+	00258: SVTCA[y-axis] 
+	00259: SRP0       
+	00260: MIRP[srp0,md,rd,1] 
+	00261: RTDG       
+	00262: SRP2       
+	00263: IP         
+	00264: MDAP[rd]   
+	00265: RTG        
+	00266: SVTCA[x-axis] 
+	00267: SRP0       
+	00268: MIRP[srp0,nmd,rd,1] 
+	00269: MIRP[srp0,nmd,rd,0] 
+	00270: MDRP[nrp0,nmd,rd,0] 
+	00271: SVTCA[y-axis] 
+	00272: SRP0       
+	00273: MIRP[srp0,md,rd,1] 
+	00274: RTDG       
+	00275: SRP2       
+	00276: IP         
+	00277: MDAP[rd]   
+	00278: RTG        
+	00279: SVTCA[x-axis] 
+	00280: SRP0       
+	00281: MIRP[srp0,nmd,rd,1] 
+	00282: MIRP[srp0,nmd,rd,0] 
+	00283: MDRP[nrp0,nmd,rd,0] 
+	00284: SVTCA[y-axis] 
+	00285: SRP0       
+	00286: MIRP[srp0,md,rd,1] 
+	00287: RTDG       
+	00288: SRP2       
+	00289: IP         
+	00290: MDAP[rd]   
+	00291: RTG        
+	00292: SVTCA[x-axis] 
+	00293: SRP0       
+	00294: MIRP[srp0,nmd,rd,1] 
+	00295: MIRP[srp0,nmd,rd,0] 
+	00296: MDRP[nrp0,nmd,rd,0] 
+	00297: SVTCA[y-axis] 
+	00298: SRP0       
+	00299: MIRP[srp0,md,rd,1] 
+	00300: RTDG       
+	00301: SRP2       
+	00302: IP         
+	00303: MDAP[rd]   
+	00304: RTG        
+	00305: SVTCA[x-axis] 
+	00306: SRP0       
+	00307: MIRP[srp0,nmd,rd,1] 
+	00308: DELTAP1    
+	00309: MIRP[srp0,nmd,rd,0] 
+	00310: MDRP[nrp0,nmd,rd,0] 
+	00311: SVTCA[y-axis] 
+	00312: SRP0       
+	00313: MIRP[srp0,md,rd,1] 
+	00314: RTDG       
+	00315: SRP2       
+	00316: IP         
+	00317: MDAP[rd]   
+	00318: RTG        
+	00319: SVTCA[x-axis] 
+	00320: SRP0       
+	00321: MIRP[srp0,nmd,rd,1] 
+	00322: MIRP[srp0,nmd,rd,0] 
+	00323: MDRP[nrp0,nmd,rd,0] 
+	00324: IUP[y]     
+	00325: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual                               On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short On
+	 19:        XDual                         On
+	 20:  YDual                               On
+	 21:        XDual                         On
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual                               On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short On
+	 33:        XDual                         On
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                               On
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:  YDual                       X-Short On
+	 43:  YDual                       X-Short Off
+	 44:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   572,     0)  ->  Abs (   572,     0)
+	  1: Rel (  -416,     0)  ->  Abs (   156,     0)
+	  2: Rel (   -56,     0)  ->  Abs (   100,     0)
+	  3: Rel (     0,    42)  ->  Abs (   100,    42)
+	  4: Rel (     0,    42)  ->  Abs (   100,    84)
+	  5: Rel (    56,     0)  ->  Abs (   156,    84)
+	  6: Rel (    95,     0)  ->  Abs (   251,    84)
+	  7: Rel (     0,  1002)  ->  Abs (   251,  1086)
+	  8: Rel (   -95,     0)  ->  Abs (   156,  1086)
+	  9: Rel (   -56,     0)  ->  Abs (   100,  1086)
+	 10: Rel (     0,    42)  ->  Abs (   100,  1128)
+	 11: Rel (     0,    42)  ->  Abs (   100,  1170)
+	 12: Rel (    56,     0)  ->  Abs (   156,  1170)
+	 13: Rel (   292,     0)  ->  Abs (   448,  1170)
+	 14: Rel (    56,     0)  ->  Abs (   504,  1170)
+	 15: Rel (     0,   -42)  ->  Abs (   504,  1128)
+	 16: Rel (     0,   -42)  ->  Abs (   504,  1086)
+	 17: Rel (   -56,     0)  ->  Abs (   448,  1086)
+	 18: Rel (  -113,     0)  ->  Abs (   335,  1086)
+	 19: Rel (     0, -1002)  ->  Abs (   335,    84)
+	 20: Rel (   558,     0)  ->  Abs (   893,    84)
+	 21: Rel (     0,  1002)  ->  Abs (   893,  1086)
+	 22: Rel (  -113,     0)  ->  Abs (   780,  1086)
+	 23: Rel (   -56,     0)  ->  Abs (   724,  1086)
+	 24: Rel (     0,    42)  ->  Abs (   724,  1128)
+	 25: Rel (     0,    42)  ->  Abs (   724,  1170)
+	 26: Rel (    56,     0)  ->  Abs (   780,  1170)
+	 27: Rel (   292,     0)  ->  Abs (  1072,  1170)
+	 28: Rel (    56,     0)  ->  Abs (  1128,  1170)
+	 29: Rel (     0,   -42)  ->  Abs (  1128,  1128)
+	 30: Rel (     0,   -42)  ->  Abs (  1128,  1086)
+	 31: Rel (   -56,     0)  ->  Abs (  1072,  1086)
+	 32: Rel (   -95,     0)  ->  Abs (   977,  1086)
+	 33: Rel (     0, -1002)  ->  Abs (   977,    84)
+	 34: Rel (    95,     0)  ->  Abs (  1072,    84)
+	 35: Rel (    56,     0)  ->  Abs (  1128,    84)
+	 36: Rel (     0,   -42)  ->  Abs (  1128,    42)
+	 37: Rel (     0,   -42)  ->  Abs (  1128,     0)
+	 38: Rel (   -56,     0)  ->  Abs (  1072,     0)
+	 39: Rel (  -416,     0)  ->  Abs (   656,     0)
+	 40: Rel (     0,  -219)  ->  Abs (   656,  -219)
+	 41: Rel (     0,   -67)  ->  Abs (   656,  -286)
+	 42: Rel (   -41,     0)  ->  Abs (   615,  -286)
+	 43: Rel (   -43,     0)  ->  Abs (   572,  -286)
+	 44: Rel (     0,    64)  ->  Abs (   572,  -222)
+
+	Glyph 570: off = 0x0001DDF0, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 571: off = 0x0001DE00, len = 294
+	  numberOfContours:	2
+	  xMin:			87
+	  yMin:			0
+	  xMax:			1113
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  27
+	  1:  36
+
+	  Length of Instructions:	186
+	00000: NPUSHB      (11):   153    30   169    30     2    58    30    73    30     2 
+	                            31 
+	00013: PUSHW[3]            -26    11   -26 
+	00020: PUSHB[4]             33    26    27    23 
+	00025: PUSHW[1]            676 
+	00028: NPUSHB      (11):    25    43    22    25    25    23    22    29    27    16 
+	                            20 
+	00041: PUSHW[1]            676 
+	00044: NPUSHB      (30):    18    43    21    18    18    20    21    29    16     3 
+	                             3    27     8    38    36    36    16     7    23    30 
+	                            27     2    28    20    30    16     8     5    38     1 
+	00076: PUSHW[1]            296 
+	00079: NPUSHB      (32):    32    38    16    12     1    12    26    38     7    28 
+	                            22    21    30    48    28    64    28   144    28     3 
+	                            15    28    79    28    95    28   111    28   208    28 
+	                             5    28 
+	00113: PUSHW[1]            699 
+	00116: PUSHB[4]             37    74   121    24 
+	00121: CALL       
+	00122: SRP0       
+	00123: MIRP[srp0,nmd,rd,0] 
+	00124: DELTAP1    
+	00125: DELTAP2    
+	00126: MIRP[srp0,md,rd,1] 
+	00127: ALIGNRP    
+	00128: SRP0       
+	00129: ALIGNRP    
+	00130: FLIPOFF    
+	00131: SRP0       
+	00132: MIRP[srp0,nmd,rd,2] 
+	00133: DELTAP2    
+	00134: FLIPON     
+	00135: MIRP[nrp0,md,rd,1] 
+	00136: MIRP[srp0,nmd,rd,0] 
+	00137: MIRP[nrp0,md,rd,1] 
+	00138: SVTCA[y-axis] 
+	00139: MIAP[rd+ci] 
+	00140: MIRP[srp0,md,rd,1] 
+	00141: ALIGNRP    
+	00142: MIAP[rd+ci] 
+	00143: MIRP[srp0,md,rd,1] 
+	00144: ALIGNRP    
+	00145: SRP2       
+	00146: IP         
+	00147: MDAP[rd]   
+	00148: MIRP[srp0,md,rd,1] 
+	00149: SRP1       
+	00150: IP         
+	00151: MDAP[rd]   
+	00152: SRP0       
+	00153: MIRP[srp0,md,rd,1] 
+	00154: RTDG       
+	00155: SRP2       
+	00156: IP         
+	00157: MDAP[rd]   
+	00158: RTG        
+	00159: SVTCA[x-axis] 
+	00160: SRP0       
+	00161: MIRP[srp0,nmd,rd,1] 
+	00162: MIRP[srp0,nmd,rd,0] 
+	00163: MDRP[nrp0,nmd,rd,0] 
+	00164: SVTCA[y-axis] 
+	00165: SRP0       
+	00166: MIRP[srp0,md,rd,1] 
+	00167: RTDG       
+	00168: SRP2       
+	00169: IP         
+	00170: MDAP[rd]   
+	00171: RTG        
+	00172: SVTCA[x-axis] 
+	00173: SRP0       
+	00174: MIRP[srp0,nmd,rd,1] 
+	00175: MIRP[srp0,nmd,rd,0] 
+	00176: MDRP[nrp0,nmd,rd,0] 
+	00177: IUP[y]     
+	00178: IUP[x]     
+	00179: SVTCA[y-axis] 
+	00180: SHPIX      
+	00181: SHPIX      
+	00182: SHPIX      
+	00183: SVTCA[x-axis] 
+	00184: DELTAP2    
+	00185: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual                               On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                               On
+	 17:  YDual                       X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short On
+	 22:        XDual                         On
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual                 X-Short On
+	 28:        XDual                 X-Short On
+	 29:  YDual                               On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1029,  1170)  ->  Abs (  1029,  1170)
+	  1: Rel (     0,  -289)  ->  Abs (  1029,   881)
+	  2: Rel (     0,   -56)  ->  Abs (  1029,   825)
+	  3: Rel (   -43,     0)  ->  Abs (   986,   825)
+	  4: Rel (   -42,     0)  ->  Abs (   944,   825)
+	  5: Rel (     0,    56)  ->  Abs (   944,   881)
+	  6: Rel (     0,   205)  ->  Abs (   944,  1086)
+	  7: Rel (  -604,     0)  ->  Abs (   340,  1086)
+	  8: Rel (     0,  -436)  ->  Abs (   340,   650)
+	  9: Rel (   309,     0)  ->  Abs (   649,   650)
+	 10: Rel (   219,     0)  ->  Abs (   868,   650)
+	 11: Rel (   245,  -169)  ->  Abs (  1113,   481)
+	 12: Rel (     0,  -156)  ->  Abs (  1113,   325)
+	 13: Rel (     0,  -142)  ->  Abs (  1113,   183)
+	 14: Rel (  -204,  -183)  ->  Abs (   909,     0)
+	 15: Rel (  -138,     0)  ->  Abs (   771,     0)
+	 16: Rel (  -628,     0)  ->  Abs (   143,     0)
+	 17: Rel (   -56,     0)  ->  Abs (    87,     0)
+	 18: Rel (     0,    42)  ->  Abs (    87,    42)
+	 19: Rel (     0,    42)  ->  Abs (    87,    84)
+	 20: Rel (    56,     0)  ->  Abs (   143,    84)
+	 21: Rel (   113,     0)  ->  Abs (   256,    84)
+	 22: Rel (     0,  1002)  ->  Abs (   256,  1086)
+	 23: Rel (  -113,     0)  ->  Abs (   143,  1086)
+	 24: Rel (   -56,     0)  ->  Abs (    87,  1086)
+	 25: Rel (     0,    42)  ->  Abs (    87,  1128)
+	 26: Rel (     0,    42)  ->  Abs (    87,  1170)
+	 27: Rel (    56,     0)  ->  Abs (   143,  1170)
+	 28: Rel (   197, -1086)  ->  Abs (   340,    84)
+	 29: Rel (   425,     0)  ->  Abs (   765,    84)
+	 30: Rel (   117,     0)  ->  Abs (   882,    84)
+	 31: Rel (   146,   144)  ->  Abs (  1028,   228)
+	 32: Rel (     0,    95)  ->  Abs (  1028,   323)
+	 33: Rel (     0,    91)  ->  Abs (  1028,   414)
+	 34: Rel (  -172,   151)  ->  Abs (   856,   565)
+	 35: Rel (  -214,     0)  ->  Abs (   642,   565)
+	 36: Rel (  -302,     0)  ->  Abs (   340,   565)
+
+	Glyph 572: off = 0x0001DF26, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			87
+	  yMin:			0
+	  xMax:			1113
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	37
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 573: off = 0x0001DF36, len = 278
+	  numberOfContours:	1
+	  xMin:			127
+	  yMin:			0
+	  xMax:			1111
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	203
+	00000: PUSHB[2]             19    23 
+	00003: PUSHW[1]            676 
+	00006: NPUSHB      (11):    21   219    24    21    21    23    24    29    19    17 
+	                            13 
+	00019: PUSHW[1]            676 
+	00022: NPUSHB      (11):    15    53    12    15    15    13    12    29    17     5 
+	                             1 
+	00035: PUSHW[1]            676 
+	00038: NPUSHB      (11):     3    53     0     3     3     1     0    29     5     6 
+	                            10 
+	00051: PUSHW[1]            676 
+	00054: NPUSHB      (65):     8    53    11     8     8    10    11    29     6     1 
+	                            10    38     6    13    38    17    24    25    30    18 
+	                            17     2     5     6     8    19    18    25     0    30 
+	                             0    18    32    18     2     0    18    80    18   160 
+	                            18   208    18   224    18   240    18     6    18    82 
+	                            12    32    11     1   111    11   208    11   240    11 
+	                             3    11    25    26   246 
+	00121: PUSHW[2]            264    24 
+	00126: CALL       
+	00127: SRP0       
+	00128: MIRP[srp0,nmd,rd,2] 
+	00129: DELTAP1    
+	00130: DELTAP2    
+	00131: ALIGNRP    
+	00132: MIRP[nrp0,md,rd,1] 
+	00133: DELTAP1    
+	00134: DELTAP2    
+	00135: MIRP[srp0,md,rd,1] 
+	00136: ALIGNRP    
+	00137: SRP0       
+	00138: ALIGNRP    
+	00139: SVTCA[y-axis] 
+	00140: MIAP[rd+ci] 
+	00141: ALIGNRP    
+	00142: MIAP[rd+ci] 
+	00143: ALIGNRP    
+	00144: MIRP[srp0,md,rd,1] 
+	00145: ALIGNRP    
+	00146: SRP0       
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: SRP0       
+	00149: MIRP[srp0,md,rd,1] 
+	00150: ALIGNRP    
+	00151: SRP0       
+	00152: MIRP[srp0,md,rd,1] 
+	00153: RTDG       
+	00154: SRP2       
+	00155: IP         
+	00156: MDAP[rd]   
+	00157: RTG        
+	00158: SVTCA[x-axis] 
+	00159: SRP0       
+	00160: MIRP[srp0,nmd,rd,1] 
+	00161: MIRP[srp0,nmd,rd,0] 
+	00162: MDRP[nrp0,nmd,rd,0] 
+	00163: SVTCA[y-axis] 
+	00164: SRP0       
+	00165: MIRP[srp0,md,rd,1] 
+	00166: RTDG       
+	00167: SRP2       
+	00168: IP         
+	00169: MDAP[rd]   
+	00170: RTG        
+	00171: SVTCA[x-axis] 
+	00172: SRP0       
+	00173: MIRP[srp0,nmd,rd,1] 
+	00174: MIRP[srp0,nmd,rd,0] 
+	00175: MDRP[nrp0,nmd,rd,0] 
+	00176: SVTCA[y-axis] 
+	00177: SRP0       
+	00178: MIRP[srp0,md,rd,1] 
+	00179: RTDG       
+	00180: SRP2       
+	00181: IP         
+	00182: MDAP[rd]   
+	00183: RTG        
+	00184: SVTCA[x-axis] 
+	00185: SRP0       
+	00186: MIRP[srp0,nmd,rd,1] 
+	00187: MIRP[srp0,nmd,rd,0] 
+	00188: MDRP[nrp0,nmd,rd,0] 
+	00189: SRP0       
+	00190: MIRP[srp0,md,rd,1] 
+	00191: RTDG       
+	00192: SRP2       
+	00193: IP         
+	00194: MDAP[rd]   
+	00195: RTG        
+	00196: SVTCA[y-axis] 
+	00197: SRP0       
+	00198: MIRP[srp0,nmd,rd,1] 
+	00199: MIRP[srp0,nmd,rd,0] 
+	00200: MDRP[nrp0,nmd,rd,0] 
+	00201: IUP[y]     
+	00202: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                               On
+	  7:  YDual                       X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                         On
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual                               On
+	 19:        XDual                         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:        XDual                         On
+	 25:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   468,    84)  ->  Abs (   468,    84)
+	  1: Rel (   200,     0)  ->  Abs (   668,    84)
+	  2: Rel (    56,     0)  ->  Abs (   724,    84)
+	  3: Rel (     0,   -42)  ->  Abs (   724,    42)
+	  4: Rel (     0,   -42)  ->  Abs (   724,     0)
+	  5: Rel (   -56,     0)  ->  Abs (   668,     0)
+	  6: Rel (  -485,     0)  ->  Abs (   183,     0)
+	  7: Rel (   -56,     0)  ->  Abs (   127,     0)
+	  8: Rel (     0,    42)  ->  Abs (   127,    42)
+	  9: Rel (     0,    42)  ->  Abs (   127,    84)
+	 10: Rel (    56,     0)  ->  Abs (   183,    84)
+	 11: Rel (   200,     0)  ->  Abs (   383,    84)
+	 12: Rel (     0,  1002)  ->  Abs (   383,  1086)
+	 13: Rel (  -200,     0)  ->  Abs (   183,  1086)
+	 14: Rel (   -56,     0)  ->  Abs (   127,  1086)
+	 15: Rel (     0,    42)  ->  Abs (   127,  1128)
+	 16: Rel (     0,    42)  ->  Abs (   127,  1170)
+	 17: Rel (    56,     0)  ->  Abs (   183,  1170)
+	 18: Rel (   928,     0)  ->  Abs (  1111,  1170)
+	 19: Rel (     0,  -418)  ->  Abs (  1111,   752)
+	 20: Rel (     0,   -56)  ->  Abs (  1111,   696)
+	 21: Rel (   -42,     0)  ->  Abs (  1069,   696)
+	 22: Rel (   -43,     0)  ->  Abs (  1026,   696)
+	 23: Rel (     0,    56)  ->  Abs (  1026,   752)
+	 24: Rel (     0,   334)  ->  Abs (  1026,  1086)
+	 25: Rel (  -558,     0)  ->  Abs (   468,  1086)
+
+	Glyph 574: off = 0x0001E04C, len = 314
+	  numberOfContours:	2
+	  xMin:			74
+	  yMin:			-286
+	  xMax:			1154
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  36
+	  1:  42
+
+	  Length of Instructions:	193
+	00000: PUSHB[2]             20    16 
+	00003: PUSHW[3]            784    18   354 
+	00010: NPUSHB       (9):    15    18    18    16    15    29    20    21    25 
+	00021: PUSHW[1]            784 
+	00024: NPUSHB      (39):    23    43    26    23    23    25    26    29    21    11 
+	                            27    40    38     1    25    37    16    38    21    20 
+	                             2    34     4     0     1     8    11    30    40    40 
+	                             2    14    37    30    14    96    15     1    15 
+	00065: PUSHW[1]            629 
+	00068: NPUSHB      (44):    26    41    30    96    27   112    27     2   144    27 
+	                             1    27    27     7    36    38    31     2    38     7 
+	                            15    31    79    31    95    31   111    31     4    31 
+	                            26    44    79     7    95     7   111     7   143     7 
+	                             4     7    25    43 
+	00114: PUSHW[3]            294   264    24 
+	00121: CALL       
+	00122: FLIPOFF    
+	00123: SRP0       
+	00124: MIRP[nrp0,nmd,rd,0] 
+	00125: DELTAP1    
+	00126: SRP0       
+	00127: MIRP[nrp0,nmd,rd,2] 
+	00128: DELTAP1    
+	00129: FLIPON     
+	00130: SRP0       
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: SRP0       
+	00133: MIRP[nrp0,md,rd,1] 
+	00134: SRP2       
+	00135: IP         
+	00136: MDAP[rd]   
+	00137: DELTAP1    
+	00138: DELTAP2    
+	00139: MIRP[nrp0,md,rd,1] 
+	00140: ALIGNRP    
+	00141: MIRP[srp0,md,rd,1] 
+	00142: DELTAP1    
+	00143: ALIGNRP    
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: RTHG       
+	00146: SRP1       
+	00147: SRP2       
+	00148: IP         
+	00149: MDAP[rd]   
+	00150: RTG        
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: SVTCA[y-axis] 
+	00153: MIAP[rd+ci] 
+	00154: ALIGNRP    
+	00155: MDAP[rd]   
+	00156: ALIGNRP    
+	00157: MIAP[rd+ci] 
+	00158: ALIGNRP    
+	00159: MIRP[srp0,md,rd,1] 
+	00160: ALIGNRP    
+	00161: ALIGNRP    
+	00162: SRP0       
+	00163: MIRP[srp0,md,rd,1] 
+	00164: ALIGNRP    
+	00165: SHP[rp2,zp1] 
+	00166: SRP0       
+	00167: MIRP[srp0,md,rd,1] 
+	00168: RTDG       
+	00169: SRP2       
+	00170: IP         
+	00171: MDAP[rd]   
+	00172: RTG        
+	00173: SVTCA[x-axis] 
+	00174: SRP0       
+	00175: MIRP[srp0,nmd,rd,1] 
+	00176: MIRP[srp0,nmd,rd,0] 
+	00177: MDRP[nrp0,nmd,rd,0] 
+	00178: SVTCA[y-axis] 
+	00179: SRP0       
+	00180: MIRP[srp0,md,rd,1] 
+	00181: RTDG       
+	00182: SRP2       
+	00183: IP         
+	00184: MDAP[rd]   
+	00185: RTG        
+	00186: SVTCA[x-axis] 
+	00187: SRP0       
+	00188: MIRP[srp0,nmd,rd,1] 
+	00189: MIRP[srp0,nmd,rd,0] 
+	00190: MDRP[nrp0,nmd,rd,0] 
+	00191: IUP[y]     
+	00192: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:        XDual                         On
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual                               On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short On
+	 27:        XDual                         On
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:                                      On
+	 38:        XDual                         On
+	 39:        XDual                         Off
+	 40:                      Y-Short X-Short On
+	 41:  YDual                               On
+	 42:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1070,     0)  ->  Abs (  1070,     0)
+	  1: Rel (  -912,     0)  ->  Abs (   158,     0)
+	  2: Rel (     0,  -221)  ->  Abs (   158,  -221)
+	  3: Rel (     0,   -65)  ->  Abs (   158,  -286)
+	  4: Rel (   -43,     0)  ->  Abs (   115,  -286)
+	  5: Rel (   -41,     0)  ->  Abs (    74,  -286)
+	  6: Rel (     0,    68)  ->  Abs (    74,  -218)
+	  7: Rel (     0,   233)  ->  Abs (    74,    15)
+	  8: Rel (     0,    42)  ->  Abs (    74,    57)
+	  9: Rel (    19,    27)  ->  Abs (    93,    84)
+	 10: Rel (    28,     2)  ->  Abs (   121,    86)
+	 11: Rel (    68,     4)  ->  Abs (   189,    90)
+	 12: Rel (   147,   126)  ->  Abs (   336,   216)
+	 13: Rel (    61,   180)  ->  Abs (   397,   396)
+	 14: Rel (     0,   178)  ->  Abs (   397,   574)
+	 15: Rel (     0,   512)  ->  Abs (   397,  1086)
+	 16: Rel (  -115,     0)  ->  Abs (   282,  1086)
+	 17: Rel (   -70,     0)  ->  Abs (   212,  1086)
+	 18: Rel (     0,    42)  ->  Abs (   212,  1128)
+	 19: Rel (     0,    42)  ->  Abs (   212,  1170)
+	 20: Rel (    70,     0)  ->  Abs (   282,  1170)
+	 21: Rel (   801,     0)  ->  Abs (  1083,  1170)
+	 22: Rel (    71,     0)  ->  Abs (  1154,  1170)
+	 23: Rel (     0,   -42)  ->  Abs (  1154,  1128)
+	 24: Rel (     0,   -42)  ->  Abs (  1154,  1086)
+	 25: Rel (   -71,     0)  ->  Abs (  1083,  1086)
+	 26: Rel (   -87,     0)  ->  Abs (   996,  1086)
+	 27: Rel (     0, -1002)  ->  Abs (   996,    84)
+	 28: Rel (    87,     0)  ->  Abs (  1083,    84)
+	 29: Rel (    45,     0)  ->  Abs (  1128,    84)
+	 30: Rel (    26,   -19)  ->  Abs (  1154,    65)
+	 31: Rel (     0,   -50)  ->  Abs (  1154,    15)
+	 32: Rel (     0,  -233)  ->  Abs (  1154,  -218)
+	 33: Rel (     0,   -68)  ->  Abs (  1154,  -286)
+	 34: Rel (   -41,     0)  ->  Abs (  1113,  -286)
+	 35: Rel (   -43,     0)  ->  Abs (  1070,  -286)
+	 36: Rel (     0,    65)  ->  Abs (  1070,  -221)
+	 37: Rel (  -589,  1307)  ->  Abs (   481,  1086)
+	 38: Rel (     0,  -512)  ->  Abs (   481,   574)
+	 39: Rel (     0,  -364)  ->  Abs (   481,   210)
+	 40: Rel (  -171,  -126)  ->  Abs (   310,    84)
+	 41: Rel (   601,     0)  ->  Abs (   911,    84)
+	 42: Rel (     0,  1002)  ->  Abs (   911,  1086)
+
+	Glyph 575: off = 0x0001E186, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 576: off = 0x0001E196, len = 1044
+	  numberOfContours:	1
+	  xMin:			-5
+	  yMin:			0
+	  xMax:			1235
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  99
+
+	  Length of Instructions:	785
+	00000: NPUSHB      (65):    15     7    10    24    10    35     5    54     5    65 
+	                             0    82    31     7    27    24    27    35    40     5 
+	                            40    19    56     5    56    19    75    67    64    69 
+	                            68    84    64    85    95     4    89     5    89    19 
+	                            92    20    95    21    90    23    90    36   137     4 
+	                           137    21   137    24   137    35   181    67    29    20 
+	                             8    17    19    52    44 
+	00067: PUSHW[1]            -64 
+	00070: PUSHB[3]             19    53    40 
+	00074: PUSHW[1]            -64 
+	00077: PUSHB[3]             19    53    42 
+	00081: PUSHW[1]            -64 
+	00084: PUSHB[3]             19    53    99 
+	00088: PUSHW[1]            -64 
+	00091: PUSHB[3]             19    53    95 
+	00095: PUSHW[1]            -64 
+	00098: PUSHB[3]             19    53    97 
+	00102: PUSHW[1]            -64 
+	00105: NPUSHB      (43):    19    53    45    64    19    53    49    64    19    53 
+	                            47    64    19    53    90    64    19    53    94    64 
+	                            19    53    92    64    19    20    52    45    64     9 
+	                            13    52    49    64     9    13    52    47    64     9 
+	                            13    52    44 
+	00150: PUSHW[1]            -64 
+	00153: PUSHB[4]              9    13    52    40 
+	00158: PUSHW[1]            -64 
+	00161: PUSHB[4]              9    13    52    42 
+	00166: PUSHW[1]            -64 
+	00169: PUSHB[4]              9    14    52    95 
+	00174: PUSHW[1]            -64 
+	00177: PUSHB[4]              9    13    52    99 
+	00182: PUSHW[1]            -64 
+	00185: PUSHB[4]              9    13    52    97 
+	00190: PUSHW[1]            -64 
+	00193: NPUSHB      (20):     9    14    52    94    64     9    13    52    90    64 
+	                             9    13    52    92    64     9    13    52    94    90 
+	00215: PUSHW[1]            784 
+	00218: NPUSHB      (11):    92    43    89    92    92    90    89    29    94    95 
+	                            99 
+	00231: PUSHW[1]            784 
+	00234: NPUSHB      (11):    97    43     0    97    97    99     0    29    95    44 
+	                            40 
+	00247: PUSHW[1]            784 
+	00250: NPUSHB      (11):    42    43    39    42    42    40    39    29    44    45 
+	                            49 
+	00263: PUSHW[1]            784 
+	00266: NPUSHB     (176):    47    43    50    47    47    49    50    29    45    53 
+	                            56    56    30    64    66    20    64    64    66    36 
+	                            33    33    30    25    23    20    25    25    23    83 
+	                            85    85    30    68    70    20    68    68    70     6 
+	                             4     4    30    21    19    20    21    21    19    22 
+	                            67     1    66    53    56    64    33    25    36    23 
+	                             8    45    51     6    19     4    21    83    70    85 
+	                            68     8     1    72    17    38     8    99    90    38 
+	                            94    26    38    30    63    38    59    75   102    47 
+	                            14    63    14    95    14     3    15    14    63    14 
+	                            79    14     3    14     1    88    38    38    32    51 
+	                             1    51    51    94    30    59    59    44    45     8 
+	                             8    95    94    94    81     2    53    56    66    64 
+	                             4    61    85    68    83    70     4    73    50     4 
+	                            21    19     6     4    16    36    23    33    25     4 
+	                            28    39    67    64    34    37    52    67    64    25 
+	                            29    52    67    64    20    23    52    67    32     9 
+	                            12    52    67    61    50    22 
+	00444: PUSHW[1]            -64 
+	00447: PUSHB[4]             34    37    52    22 
+	00452: PUSHW[1]            -64 
+	00455: PUSHB[4]             25    29    52    22 
+	00460: PUSHW[1]            -64 
+	00463: PUSHB[4]             20    22    52    22 
+	00468: PUSHW[1]            -32 
+	00471: NPUSHB      (50):     9    12    52    22    39    12    73    38   224    77 
+	                             1    77    16    38    47    12   159    12     2   239 
+	                            12   255    12     2    12    65    28    77    65    61 
+	                            32    28   144    28     2   112    28   128    28   240 
+	                            28     3     0    28    16    28    80    28     3    28 
+	00523: PUSHW[1]            783 
+	00526: NPUSHB      (12):    39   191    61     1    15    61    79    61   127    61 
+	                             3    61 
+	00540: PUSHW[1]            783 
+	00543: NPUSHB      (17):    50     0    39    89    39    30    95    50     1     0 
+	                            50    64    50   176    50     3    50 
+	00562: PUSHW[3]            294   340    24 
+	00569: CALL       
+	00570: MDAP[rd]   
+	00571: DELTAP1    
+	00572: DELTAP2    
+	00573: MIRP[nrp0,md,rd,1] 
+	00574: ALIGNRP    
+	00575: SRP0       
+	00576: ALIGNRP    
+	00577: SRP0       
+	00578: MIRP[nrp0,nmd,rd,0] 
+	00579: DELTAP1    
+	00580: DELTAP1    
+	00581: SRP0       
+	00582: MIRP[nrp0,nmd,rd,0] 
+	00583: DELTAP1    
+	00584: DELTAP1    
+	00585: DELTAP2    
+	00586: SRP0       
+	00587: MIRP[nrp0,nmd,rd,0] 
+	00588: SRP0       
+	00589: MIRP[srp0,nmd,rd,0] 
+	00590: DELTAP1    
+	00591: DELTAP2    
+	00592: MIRP[nrp0,md,rd,1] 
+	00593: SRP0       
+	00594: DELTAP1    
+	00595: MIRP[nrp0,md,rd,1] 
+	00596: SRP1       
+	00597: SRP2       
+	00598: IP         
+	00599: CALL       
+	00600: CALL       
+	00601: CALL       
+	00602: CALL       
+	00603: SRP1       
+	00604: SRP2       
+	00605: IP         
+	00606: CALL       
+	00607: CALL       
+	00608: CALL       
+	00609: CALL       
+	00610: SRP1       
+	00611: SRP2       
+	00612: SLOOP      
+	00613: IP         
+	00614: SRP2       
+	00615: SLOOP      
+	00616: IP         
+	00617: SRP1       
+	00618: SRP2       
+	00619: SLOOP      
+	00620: IP         
+	00621: SRP2       
+	00622: SLOOP      
+	00623: IP         
+	00624: SVTCA[y-axis] 
+	00625: MIAP[rd+ci] 
+	00626: ALIGNRP    
+	00627: SRP0       
+	00628: ALIGNRP    
+	00629: ALIGNRP    
+	00630: MIAP[rd+ci] 
+	00631: ALIGNRP    
+	00632: ALIGNRP    
+	00633: SRP0       
+	00634: ALIGNRP    
+	00635: SRP2       
+	00636: IP         
+	00637: MDAP[rd]   
+	00638: DELTAP1    
+	00639: ALIGNRP    
+	00640: MIRP[srp0,md,rd,1] 
+	00641: ALIGNRP    
+	00642: MDAP[rd]   
+	00643: DELTAP1    
+	00644: DELTAP1    
+	00645: MIRP[nrp0,nmd,rd,0] 
+	00646: SRP0       
+	00647: MIRP[nrp0,md,rd,1] 
+	00648: SRP0       
+	00649: MIRP[nrp0,md,rd,1] 
+	00650: SRP0       
+	00651: MIRP[srp0,md,rd,1] 
+	00652: ALIGNRP    
+	00653: SRP0       
+	00654: MIRP[srp0,md,rd,1] 
+	00655: ALIGNRP    
+	00656: SRP1       
+	00657: SLOOP      
+	00658: IP         
+	00659: SRP1       
+	00660: SRP2       
+	00661: SLOOP      
+	00662: IP         
+	00663: SRP2       
+	00664: IP         
+	00665: IP         
+	00666: SDPVTL[1]  
+	00667: SFVTPV     
+	00668: MDAP[nrd]  
+	00669: CALL       
+	00670: SFVTPV     
+	00671: RDTG       
+	00672: SRP0       
+	00673: MDRP[nrp0,nmd,rd,0] 
+	00674: SDPVTL[1]  
+	00675: SFVTPV     
+	00676: MDAP[nrd]  
+	00677: RTG        
+	00678: CALL       
+	00679: SFVTPV     
+	00680: RDTG       
+	00681: SRP0       
+	00682: MDRP[nrp0,nmd,rd,0] 
+	00683: SDPVTL[1]  
+	00684: SFVTPV     
+	00685: MDAP[nrd]  
+	00686: RTG        
+	00687: CALL       
+	00688: SFVTPV     
+	00689: RDTG       
+	00690: SRP0       
+	00691: MDRP[nrp0,nmd,rd,0] 
+	00692: SDPVTL[1]  
+	00693: SFVTPV     
+	00694: MDAP[nrd]  
+	00695: RTG        
+	00696: CALL       
+	00697: SFVTPV     
+	00698: RDTG       
+	00699: SRP0       
+	00700: MDRP[nrp0,nmd,rd,0] 
+	00701: RTG        
+	00702: SVTCA[y-axis] 
+	00703: SRP0       
+	00704: MIRP[srp0,md,rd,1] 
+	00705: RTDG       
+	00706: SRP2       
+	00707: IP         
+	00708: MDAP[rd]   
+	00709: RTG        
+	00710: SVTCA[x-axis] 
+	00711: SRP0       
+	00712: MIRP[srp0,nmd,rd,1] 
+	00713: MIRP[srp0,nmd,rd,0] 
+	00714: MDRP[nrp0,nmd,rd,0] 
+	00715: SVTCA[y-axis] 
+	00716: SRP0       
+	00717: MIRP[srp0,md,rd,1] 
+	00718: RTDG       
+	00719: SRP2       
+	00720: IP         
+	00721: MDAP[rd]   
+	00722: RTG        
+	00723: SVTCA[x-axis] 
+	00724: SRP0       
+	00725: MIRP[srp0,nmd,rd,1] 
+	00726: MIRP[srp0,nmd,rd,0] 
+	00727: MDRP[nrp0,nmd,rd,0] 
+	00728: SVTCA[y-axis] 
+	00729: SRP0       
+	00730: MIRP[srp0,md,rd,1] 
+	00731: RTDG       
+	00732: SRP2       
+	00733: IP         
+	00734: MDAP[rd]   
+	00735: RTG        
+	00736: SVTCA[x-axis] 
+	00737: SRP0       
+	00738: MIRP[srp0,nmd,rd,1] 
+	00739: MIRP[srp0,nmd,rd,0] 
+	00740: MDRP[nrp0,nmd,rd,0] 
+	00741: SVTCA[y-axis] 
+	00742: SRP0       
+	00743: MIRP[srp0,md,rd,1] 
+	00744: RTDG       
+	00745: SRP2       
+	00746: IP         
+	00747: MDAP[rd]   
+	00748: RTG        
+	00749: SVTCA[x-axis] 
+	00750: SRP0       
+	00751: MIRP[srp0,nmd,rd,1] 
+	00752: MIRP[srp0,nmd,rd,0] 
+	00753: MDRP[nrp0,nmd,rd,0] 
+	00754: SVTCA[x-axis] 
+	00755: CALL       
+	00756: CALL       
+	00757: CALL       
+	00758: CALL       
+	00759: CALL       
+	00760: CALL       
+	00761: CALL       
+	00762: CALL       
+	00763: CALL       
+	00764: CALL       
+	00765: CALL       
+	00766: CALL       
+	00767: CALL       
+	00768: CALL       
+	00769: CALL       
+	00770: CALL       
+	00771: CALL       
+	00772: CALL       
+	00773: CALL       
+	00774: CALL       
+	00775: CALL       
+	00776: CALL       
+	00777: CALL       
+	00778: CALL       
+	00779: IUP[y]     
+	00780: IUP[x]     
+	00781: SVTCA[y-axis] 
+	00782: CALL       
+	00783: SVTCA[x-axis] 
+	00784: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         On
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:                      Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual                 X-Short On
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual               Y-Short X-Short On
+	 35:                              X-Short On
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short On
+	 39:        XDual                         On
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short On
+	 51:        XDual                         On
+	 52:  YDual                       X-Short On
+	 53:  YDual                       X-Short Off
+	 54:                      Y-Short X-Short On
+	 55:                              X-Short On
+	 56:                      Y-Short X-Short Off
+	 57:                      Y-Short X-Short Off
+	 58:  YDual                       X-Short On
+	 59:  YDual                       X-Short On
+	 60:  YDual                       X-Short Off
+	 61:  YDual XDual         Y-Short         On
+	 62:  YDual XDual         Y-Short         Off
+	 63:  YDual XDual                 X-Short On
+	 64:  YDual XDual                 X-Short On
+	 65:        XDual                 X-Short On
+	 66:  YDual XDual         Y-Short X-Short Off
+	 67:  YDual XDual         Y-Short X-Short On
+	 68:  YDual               Y-Short X-Short Off
+	 69:  YDual               Y-Short X-Short On
+	 70:  YDual               Y-Short X-Short Off
+	 71:  YDual               Y-Short X-Short Off
+	 72:  YDual                       X-Short On
+	 73:        XDual         Y-Short         On
+	 74:        XDual         Y-Short         Off
+	 75:  YDual                       X-Short On
+	 76:  YDual                       X-Short Off
+	 77:  YDual XDual         Y-Short         On
+	 78:  YDual XDual         Y-Short         On
+	 79:  YDual XDual         Y-Short         Off
+	 80:  YDual XDual         Y-Short X-Short Off
+	 81:  YDual XDual                 X-Short On
+	 82:  YDual XDual                 X-Short Off
+	 83:        XDual         Y-Short X-Short Off
+	 84:        XDual         Y-Short X-Short On
+	 85:        XDual         Y-Short X-Short Off
+	 86:        XDual         Y-Short X-Short Off
+	 87:  YDual XDual                 X-Short On
+	 88:  YDual XDual                 X-Short On
+	 89:        XDual                         On
+	 90:  YDual                       X-Short On
+	 91:  YDual                       X-Short Off
+	 92:  YDual XDual         Y-Short         On
+	 93:  YDual XDual         Y-Short         Off
+	 94:  YDual XDual                 X-Short On
+	 95:  YDual XDual                 X-Short On
+	 96:  YDual XDual                 X-Short Off
+	 97:        XDual         Y-Short         On
+	 98:        XDual         Y-Short         Off
+	 99:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   656,  1086)  ->  Abs (   656,  1086)
+	  1: Rel (     0,  -415)  ->  Abs (   656,   671)
+	  2: Rel (    22,     0)  ->  Abs (   678,   671)
+	  3: Rel (    44,     0)  ->  Abs (   722,   671)
+	  4: Rel (    61,    77)  ->  Abs (   783,   748)
+	  5: Rel (    78,   171)  ->  Abs (   861,   919)
+	  6: Rel (    76,   164)  ->  Abs (   937,  1083)
+	  7: Rel (    86,    87)  ->  Abs (  1023,  1170)
+	  8: Rel (   102,     0)  ->  Abs (  1125,  1170)
+	  9: Rel (    40,     0)  ->  Abs (  1165,  1170)
+	 10: Rel (    21,   -27)  ->  Abs (  1186,  1143)
+	 11: Rel (     0,   -43)  ->  Abs (  1186,  1100)
+	 12: Rel (     0,  -115)  ->  Abs (  1186,   985)
+	 13: Rel (     0,   -65)  ->  Abs (  1186,   920)
+	 14: Rel (   -39,     0)  ->  Abs (  1147,   920)
+	 15: Rel (   -45,     0)  ->  Abs (  1102,   920)
+	 16: Rel (     0,    59)  ->  Abs (  1102,   979)
+	 17: Rel (     0,   110)  ->  Abs (  1102,  1089)
+	 18: Rel (   -53,    -1)  ->  Abs (  1049,  1088)
+	 19: Rel (   -74,  -121)  ->  Abs (   975,   967)
+	 20: Rel (   -39,   -85)  ->  Abs (   936,   882)
+	 21: Rel (   -92,  -201)  ->  Abs (   844,   681)
+	 22: Rel (   -48,   -45)  ->  Abs (   796,   636)
+	 23: Rel (   104,   -59)  ->  Abs (   900,   577)
+	 24: Rel (    82,  -199)  ->  Abs (   982,   378)
+	 25: Rel (   120,  -294)  ->  Abs (  1102,    84)
+	 26: Rel (    62,     0)  ->  Abs (  1164,    84)
+	 27: Rel (    71,     0)  ->  Abs (  1235,    84)
+	 28: Rel (     0,   -42)  ->  Abs (  1235,    42)
+	 29: Rel (     0,   -42)  ->  Abs (  1235,     0)
+	 30: Rel (   -71,     0)  ->  Abs (  1164,     0)
+	 31: Rel (   -65,     0)  ->  Abs (  1099,     0)
+	 32: Rel (   -41,     0)  ->  Abs (  1058,     0)
+	 33: Rel (   -22,    14)  ->  Abs (  1036,    14)
+	 34: Rel (   -15,    38)  ->  Abs (  1021,    52)
+	 35: Rel (  -118,   290)  ->  Abs (   903,   342)
+	 36: Rel (   -98,   243)  ->  Abs (   805,   585)
+	 37: Rel (  -119,     0)  ->  Abs (   686,   585)
+	 38: Rel (   -30,     0)  ->  Abs (   656,   585)
+	 39: Rel (     0,  -501)  ->  Abs (   656,    84)
+	 40: Rel (    65,     0)  ->  Abs (   721,    84)
+	 41: Rel (    71,     0)  ->  Abs (   792,    84)
+	 42: Rel (     0,   -42)  ->  Abs (   792,    42)
+	 43: Rel (     0,   -42)  ->  Abs (   792,     0)
+	 44: Rel (   -71,     0)  ->  Abs (   721,     0)
+	 45: Rel (  -213,     0)  ->  Abs (   508,     0)
+	 46: Rel (   -70,     0)  ->  Abs (   438,     0)
+	 47: Rel (     0,    42)  ->  Abs (   438,    42)
+	 48: Rel (     0,    42)  ->  Abs (   438,    84)
+	 49: Rel (    70,     0)  ->  Abs (   508,    84)
+	 50: Rel (    64,     0)  ->  Abs (   572,    84)
+	 51: Rel (     0,   501)  ->  Abs (   572,   585)
+	 52: Rel (   -30,     0)  ->  Abs (   542,   585)
+	 53: Rel (  -117,     0)  ->  Abs (   425,   585)
+	 54: Rel (   -98,  -243)  ->  Abs (   327,   342)
+	 55: Rel (  -118,  -290)  ->  Abs (   209,    52)
+	 56: Rel (   -15,   -37)  ->  Abs (   194,    15)
+	 57: Rel (   -21,   -15)  ->  Abs (   173,     0)
+	 58: Rel (   -42,     0)  ->  Abs (   131,     0)
+	 59: Rel (   -66,     0)  ->  Abs (    65,     0)
+	 60: Rel (   -70,     0)  ->  Abs (    -5,     0)
+	 61: Rel (     0,    42)  ->  Abs (    -5,    42)
+	 62: Rel (     0,    42)  ->  Abs (    -5,    84)
+	 63: Rel (    70,     0)  ->  Abs (    65,    84)
+	 64: Rel (    63,     0)  ->  Abs (   128,    84)
+	 65: Rel (   120,   294)  ->  Abs (   248,   378)
+	 66: Rel (    82,   201)  ->  Abs (   330,   579)
+	 67: Rel (   103,    57)  ->  Abs (   433,   636)
+	 68: Rel (   -46,    48)  ->  Abs (   387,   684)
+	 69: Rel (   -93,   198)  ->  Abs (   294,   882)
+	 70: Rel (   -66,   139)  ->  Abs (   228,  1021)
+	 71: Rel (   -59,    68)  ->  Abs (   169,  1089)
+	 72: Rel (   -41,     0)  ->  Abs (   128,  1089)
+	 73: Rel (     0,  -110)  ->  Abs (   128,   979)
+	 74: Rel (     0,   -58)  ->  Abs (   128,   921)
+	 75: Rel (   -44,     0)  ->  Abs (    84,   921)
+	 76: Rel (   -41,     0)  ->  Abs (    43,   921)
+	 77: Rel (     0,    64)  ->  Abs (    43,   985)
+	 78: Rel (     0,   115)  ->  Abs (    43,  1100)
+	 79: Rel (     0,    43)  ->  Abs (    43,  1143)
+	 80: Rel (    22,    27)  ->  Abs (    65,  1170)
+	 81: Rel (    34,     0)  ->  Abs (    99,  1170)
+	 82: Rel (   102,     0)  ->  Abs (   201,  1170)
+	 83: Rel (    91,   -88)  ->  Abs (   292,  1082)
+	 84: Rel (    77,  -163)  ->  Abs (   369,   919)
+	 85: Rel (    78,  -165)  ->  Abs (   447,   754)
+	 86: Rel (    65,   -83)  ->  Abs (   512,   671)
+	 87: Rel (    38,     0)  ->  Abs (   550,   671)
+	 88: Rel (    22,     0)  ->  Abs (   572,   671)
+	 89: Rel (     0,   415)  ->  Abs (   572,  1086)
+	 90: Rel (   -64,     0)  ->  Abs (   508,  1086)
+	 91: Rel (   -70,     0)  ->  Abs (   438,  1086)
+	 92: Rel (     0,    42)  ->  Abs (   438,  1128)
+	 93: Rel (     0,    42)  ->  Abs (   438,  1170)
+	 94: Rel (    70,     0)  ->  Abs (   508,  1170)
+	 95: Rel (   213,     0)  ->  Abs (   721,  1170)
+	 96: Rel (    71,     0)  ->  Abs (   792,  1170)
+	 97: Rel (     0,   -42)  ->  Abs (   792,  1128)
+	 98: Rel (     0,   -42)  ->  Abs (   792,  1086)
+	 99: Rel (   -71,     0)  ->  Abs (   721,  1086)
+
+	Glyph 577: off = 0x0001E5AA, len = 390
+	  numberOfContours:	1
+	  xMin:			114
+	  yMin:			-33
+	  xMax:			1094
+	  yMax:			1197
+
+	EndPoints
+	---------
+	  0:  63
+
+	  Length of Instructions:	218
+	00000: NPUSHB      (36):    54    30     1   136     3   153    20   165     1     3 
+	                             0    32    13    18    52   187    33   187    60     2 
+	                            23    58   139     4   139    17   157     4   157    17 
+	                             5    32    32    21    16    30 
+	00038: PUSHW[7]            -16    14   -32     4   -13    14   -32 
+	00053: NPUSHB      (62):    30    26    20    18    19     2     0    29    23    36 
+	                            38    55    55    39    51     3    39    39    59     5 
+	                             7    38    11    11    59     5    29    38    23    23 
+	                             5    34    38    59     3    16    38     5     9    67 
+	                             0    84     0     2     0    31    26    64    12    15 
+	                            52    26    26     2    41    53    38    49   102    37 
+	                            38    41 
+	00117: PUSHW[1]            393 
+	00120: NPUSHB      (23):     8    31    38    62    65    19    38     2    26    65 
+	                            13    38     8    64    13    15    52     8    25    64 
+	                            67   121    24 
+	00145: CALL       
+	00146: FLIPOFF    
+	00147: SRP0       
+	00148: MIRP[srp0,nmd,rd,0] 
+	00149: CALL       
+	00150: FLIPON     
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: FLIPOFF    
+	00153: SRP0       
+	00154: MIRP[srp0,nmd,rd,2] 
+	00155: FLIPON     
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: MIRP[srp0,nmd,rd,0] 
+	00158: MIRP[nrp0,md,rd,1] 
+	00159: SRP0       
+	00160: MIRP[srp0,nmd,rd,0] 
+	00161: MIRP[nrp0,md,rd,1] 
+	00162: MIRP[srp0,nmd,rd,0] 
+	00163: MIRP[nrp0,md,rd,1] 
+	00164: SRP1       
+	00165: SRP2       
+	00166: IP         
+	00167: MDAP[rd]   
+	00168: CALL       
+	00169: SRP2       
+	00170: IP         
+	00171: DELTAP2    
+	00172: SVTCA[y-axis] 
+	00173: MIAP[rd+ci] 
+	00174: MIRP[nrp0,md,rd,1] 
+	00175: MIAP[rd+ci] 
+	00176: MIRP[nrp0,md,rd,1] 
+	00177: SRP2       
+	00178: IP         
+	00179: MDAP[rd]   
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: SRP1       
+	00182: SRP2       
+	00183: IP         
+	00184: MDAP[rd]   
+	00185: MIRP[nrp0,md,rd,1] 
+	00186: SRP1       
+	00187: SRP2       
+	00188: IP         
+	00189: MDAP[rd]   
+	00190: MIAP[rd+ci] 
+	00191: SRP2       
+	00192: IP         
+	00193: MDAP[rd]   
+	00194: MIRP[nrp0,md,rd,1] 
+	00195: SRP1       
+	00196: SRP2       
+	00197: IP         
+	00198: IUP[y]     
+	00199: IUP[x]     
+	00200: SVTCA[x-axis] 
+	00201: SLOOP      
+	00202: SHPIX      
+	00203: SHPIX      
+	00204: SHPIX      
+	00205: SHPIX      
+	00206: SVTCA[y-axis] 
+	00207: SHPIX      
+	00208: SHPIX      
+	00209: SHPIX      
+	00210: SHPIX      
+	00211: SVTCA[x-axis] 
+	00212: DELTAP1    
+	00213: DELTAP1    
+	00214: CALL       
+	00215: SVTCA[y-axis] 
+	00216: DELTAP1    
+	00217: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short         Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short         Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual                               Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:                      Y-Short X-Short Off
+	 37:                      Y-Short X-Short On
+	 38:                      Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual               Y-Short X-Short On
+	 48:  YDual               Y-Short X-Short Off
+	 49:  YDual XDual         Y-Short         On
+	 50:  YDual XDual         Y-Short         Off
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short Off
+	 53:        XDual         Y-Short X-Short On
+	 54:        XDual         Y-Short X-Short Off
+	 55:  YDual XDual                 X-Short On
+	 56:  YDual XDual                 X-Short Off
+	 57:  YDual XDual         Y-Short X-Short On
+	 58:  YDual XDual         Y-Short X-Short Off
+	 59:  YDual XDual                 X-Short On
+	 60:  YDual XDual                 X-Short Off
+	 61:        XDual         Y-Short X-Short Off
+	 62:        XDual         Y-Short         On
+	 63:        XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   826,   608)  ->  Abs (   826,   608)
+	  1: Rel (   268,   -63)  ->  Abs (  1094,   545)
+	  2: Rel (     0,  -230)  ->  Abs (  1094,   315)
+	  3: Rel (     0,  -142)  ->  Abs (  1094,   173)
+	  4: Rel (  -228,  -206)  ->  Abs (   866,   -33)
+	  5: Rel (  -251,     0)  ->  Abs (   615,   -33)
+	  6: Rel (  -201,     0)  ->  Abs (   414,   -33)
+	  7: Rel (  -300,   132)  ->  Abs (   114,    99)
+	  8: Rel (     0,    43)  ->  Abs (   114,   142)
+	  9: Rel (     0,    22)  ->  Abs (   114,   164)
+	 10: Rel (    30,    26)  ->  Abs (   144,   190)
+	 11: Rel (    13,     0)  ->  Abs (   157,   190)
+	 12: Rel (    15,     0)  ->  Abs (   172,   190)
+	 13: Rel (    22,   -13)  ->  Abs (   194,   177)
+	 14: Rel (   127,   -73)  ->  Abs (   321,   104)
+	 15: Rel (   168,   -53)  ->  Abs (   489,    51)
+	 16: Rel (   137,     0)  ->  Abs (   626,    51)
+	 17: Rel (   187,     0)  ->  Abs (   813,    51)
+	 18: Rel (   188,   151)  ->  Abs (  1001,   202)
+	 19: Rel (     0,   115)  ->  Abs (  1001,   317)
+	 20: Rel (     0,    83)  ->  Abs (  1001,   400)
+	 21: Rel (  -121,   121)  ->  Abs (   880,   521)
+	 22: Rel (  -185,    35)  ->  Abs (   695,   556)
+	 23: Rel (  -173,     0)  ->  Abs (   522,   556)
+	 24: Rel (   -58,     0)  ->  Abs (   464,   556)
+	 25: Rel (   -71,     0)  ->  Abs (   393,   556)
+	 26: Rel (     0,    42)  ->  Abs (   393,   598)
+	 27: Rel (     0,    43)  ->  Abs (   393,   641)
+	 28: Rel (    71,     0)  ->  Abs (   464,   641)
+	 29: Rel (    58,     0)  ->  Abs (   522,   641)
+	 30: Rel (   434,     0)  ->  Abs (   956,   641)
+	 31: Rel (     0,   242)  ->  Abs (   956,   883)
+	 32: Rel (     0,   109)  ->  Abs (   956,   992)
+	 33: Rel (  -188,   121)  ->  Abs (   768,  1113)
+	 34: Rel (  -141,     0)  ->  Abs (   627,  1113)
+	 35: Rel (  -165,     0)  ->  Abs (   462,  1113)
+	 36: Rel (  -187,  -174)  ->  Abs (   275,   939)
+	 37: Rel (   -26,  -133)  ->  Abs (   249,   806)
+	 38: Rel (    -8,   -43)  ->  Abs (   241,   763)
+	 39: Rel (   -31,     0)  ->  Abs (   210,   763)
+	 40: Rel (   -39,     0)  ->  Abs (   171,   763)
+	 41: Rel (     0,    39)  ->  Abs (   171,   802)
+	 42: Rel (     0,    26)  ->  Abs (   171,   828)
+	 43: Rel (     9,    66)  ->  Abs (   180,   894)
+	 44: Rel (     4,    39)  ->  Abs (   184,   933)
+	 45: Rel (     0,    25)  ->  Abs (   184,   958)
+	 46: Rel (     0,     7)  ->  Abs (   184,   965)
+	 47: Rel (    -3,    92)  ->  Abs (   181,  1057)
+	 48: Rel (    -4,    87)  ->  Abs (   177,  1144)
+	 49: Rel (     0,     1)  ->  Abs (   177,  1145)
+	 50: Rel (     0,    39)  ->  Abs (   177,  1184)
+	 51: Rel (    38,     0)  ->  Abs (   215,  1184)
+	 52: Rel (    33,     0)  ->  Abs (   248,  1184)
+	 53: Rel (     9,   -58)  ->  Abs (   257,  1126)
+	 54: Rel (    10,   -61)  ->  Abs (   267,  1065)
+	 55: Rel (    28,     0)  ->  Abs (   295,  1065)
+	 56: Rel (    10,     0)  ->  Abs (   305,  1065)
+	 57: Rel (    18,    15)  ->  Abs (   323,  1080)
+	 58: Rel (   141,   117)  ->  Abs (   464,  1197)
+	 59: Rel (   172,     0)  ->  Abs (   636,  1197)
+	 60: Rel (   198,     0)  ->  Abs (   834,  1197)
+	 61: Rel (   215,  -178)  ->  Abs (  1049,  1019)
+	 62: Rel (     0,  -133)  ->  Abs (  1049,   886)
+	 63: Rel (     0,  -196)  ->  Abs (  1049,   690)
+
+	Glyph 578: off = 0x0001E730, len = 436
+	  numberOfContours:	1
+	  xMin:			40
+	  yMin:			0
+	  xMax:			1189
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  39
+
+	  Length of Instructions:	329
+	00000: PUSHB[7]             42    33   168    33     2    26    22 
+	00008: PUSHW[1]            676 
+	00011: NPUSHB      (14):     0    24     1    24    43    21    24    24    22    21 
+	                            29    26    27    31 
+	00027: PUSHW[1]            676 
+	00030: NPUSHB      (11):    29    43    32    29    29    31    32    29    27    15 
+	                            19 
+	00043: PUSHW[1]            676 
+	00046: NPUSHB      (14):     0    17     1    17    43    20    17    17    19    20 
+	                            29    15     7    11 
+	00062: PUSHW[1]            676 
+	00065: NPUSHB      (11):     9    51    12     9     9    11    12    29     7     6 
+	                             2 
+	00078: PUSHW[1]            676 
+	00081: NPUSHB      (11):     4    43     1     4     4     2     1    29     6    35 
+	                            39 
+	00094: PUSHW[1]            676 
+	00097: NPUSHB      (92):    37    43     0    37    37    39     0    29    35    33 
+	                            14    13    13    30    34    33    20    34    34    33 
+	                            33    13    14    34    22    31    31    39    38    35 
+	                            19    11    11     2    38     6    26    27    27    35 
+	                            35    34     8    15    14    14     7     6     2    14 
+	                            34    33    13    33    32    30    20    15    21    79 
+	                            21    95    21   111    21   143    21   223    21     6 
+	                            21    26    41    12    13    30     1    95     0   111 
+	                             0   143     0   240     0     4     0    25    40    58 
+	                           107    24 
+	00191: CALL       
+	00192: FLIPOFF    
+	00193: SRP0       
+	00194: MIRP[srp0,nmd,rd,0] 
+	00195: DELTAP1    
+	00196: ALIGNRP    
+	00197: FLIPON     
+	00198: MIRP[srp0,md,rd,1] 
+	00199: ALIGNRP    
+	00200: FLIPOFF    
+	00201: SRP0       
+	00202: MIRP[srp0,nmd,rd,2] 
+	00203: DELTAP1    
+	00204: ALIGNRP    
+	00205: FLIPON     
+	00206: MIRP[srp0,md,rd,1] 
+	00207: ALIGNRP    
+	00208: SRP1       
+	00209: SRP2       
+	00210: IP         
+	00211: IP         
+	00212: SVTCA[y-axis] 
+	00213: MIAP[rd+ci] 
+	00214: ALIGNRP    
+	00215: ALIGNRP    
+	00216: SRP0       
+	00217: ALIGNRP    
+	00218: MIAP[rd+ci] 
+	00219: ALIGNRP    
+	00220: SRP0       
+	00221: ALIGNRP    
+	00222: SRP0       
+	00223: ALIGNRP    
+	00224: SRP0       
+	00225: MIRP[srp0,md,rd,1] 
+	00226: ALIGNRP    
+	00227: SRP0       
+	00228: ALIGNRP    
+	00229: SRP0       
+	00230: MIRP[srp0,md,rd,1] 
+	00231: ALIGNRP    
+	00232: SRP0       
+	00233: ALIGNRP    
+	00234: SRP1       
+	00235: SRP2       
+	00236: IP         
+	00237: IP         
+	00238: SDPVTL[1]  
+	00239: MDAP[nrd]  
+	00240: CALL       
+	00241: SDPVTL[1]  
+	00242: RDTG       
+	00243: MDRP[nrp0,nmd,rd,0] 
+	00244: RTG        
+	00245: SVTCA[y-axis] 
+	00246: SRP0       
+	00247: MIRP[srp0,md,rd,1] 
+	00248: RTDG       
+	00249: SRP2       
+	00250: IP         
+	00251: MDAP[rd]   
+	00252: RTG        
+	00253: SVTCA[x-axis] 
+	00254: SRP0       
+	00255: MIRP[srp0,nmd,rd,1] 
+	00256: MIRP[srp0,nmd,rd,0] 
+	00257: MDRP[nrp0,nmd,rd,0] 
+	00258: SVTCA[y-axis] 
+	00259: SRP0       
+	00260: MIRP[srp0,md,rd,1] 
+	00261: RTDG       
+	00262: SRP2       
+	00263: IP         
+	00264: MDAP[rd]   
+	00265: RTG        
+	00266: SVTCA[x-axis] 
+	00267: SRP0       
+	00268: MIRP[srp0,nmd,rd,1] 
+	00269: MIRP[srp0,nmd,rd,0] 
+	00270: MDRP[nrp0,nmd,rd,0] 
+	00271: SVTCA[y-axis] 
+	00272: SRP0       
+	00273: MIRP[srp0,md,rd,1] 
+	00274: RTDG       
+	00275: SRP2       
+	00276: IP         
+	00277: MDAP[rd]   
+	00278: RTG        
+	00279: SVTCA[x-axis] 
+	00280: SRP0       
+	00281: MIRP[srp0,nmd,rd,1] 
+	00282: MIRP[srp0,nmd,rd,0] 
+	00283: MDRP[nrp0,nmd,rd,0] 
+	00284: SVTCA[y-axis] 
+	00285: SRP0       
+	00286: MIRP[srp0,md,rd,1] 
+	00287: RTDG       
+	00288: SRP2       
+	00289: IP         
+	00290: MDAP[rd]   
+	00291: RTG        
+	00292: SVTCA[x-axis] 
+	00293: SRP0       
+	00294: MIRP[srp0,nmd,rd,1] 
+	00295: DELTAP1    
+	00296: MIRP[srp0,nmd,rd,0] 
+	00297: MDRP[nrp0,nmd,rd,0] 
+	00298: SVTCA[y-axis] 
+	00299: SRP0       
+	00300: MIRP[srp0,md,rd,1] 
+	00301: RTDG       
+	00302: SRP2       
+	00303: IP         
+	00304: MDAP[rd]   
+	00305: RTG        
+	00306: SVTCA[x-axis] 
+	00307: SRP0       
+	00308: MIRP[srp0,nmd,rd,1] 
+	00309: MIRP[srp0,nmd,rd,0] 
+	00310: MDRP[nrp0,nmd,rd,0] 
+	00311: SVTCA[y-axis] 
+	00312: SRP0       
+	00313: MIRP[srp0,md,rd,1] 
+	00314: RTDG       
+	00315: SRP2       
+	00316: IP         
+	00317: MDAP[rd]   
+	00318: RTG        
+	00319: SVTCA[x-axis] 
+	00320: SRP0       
+	00321: MIRP[srp0,nmd,rd,1] 
+	00322: DELTAP1    
+	00323: MIRP[srp0,nmd,rd,0] 
+	00324: MDRP[nrp0,nmd,rd,0] 
+	00325: IUP[y]     
+	00326: IUP[x]     
+	00327: SVTCA[y-axis] 
+	00328: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual                               On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short On
+	 13:        XDual                         On
+	 14:                                      On
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short On
+	 21:        XDual                         On
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                               On
+	 28:  YDual                       X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short On
+	 33:        XDual                         On
+	 34:                                      On
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   209,    84)  ->  Abs (   209,    84)
+	  1: Rel (     0,  1002)  ->  Abs (   209,  1086)
+	  2: Rel (  -113,     0)  ->  Abs (    96,  1086)
+	  3: Rel (   -56,     0)  ->  Abs (    40,  1086)
+	  4: Rel (     0,    42)  ->  Abs (    40,  1128)
+	  5: Rel (     0,    42)  ->  Abs (    40,  1170)
+	  6: Rel (    56,     0)  ->  Abs (    96,  1170)
+	  7: Rel (   352,     0)  ->  Abs (   448,  1170)
+	  8: Rel (    57,     0)  ->  Abs (   505,  1170)
+	  9: Rel (     0,   -42)  ->  Abs (   505,  1128)
+	 10: Rel (     0,   -42)  ->  Abs (   505,  1086)
+	 11: Rel (   -57,     0)  ->  Abs (   448,  1086)
+	 12: Rel (  -155,     0)  ->  Abs (   293,  1086)
+	 13: Rel (     0,  -965)  ->  Abs (   293,   121)
+	 14: Rel (   620,  1049)  ->  Abs (   913,  1170)
+	 15: Rel (   220,     0)  ->  Abs (  1133,  1170)
+	 16: Rel (    56,     0)  ->  Abs (  1189,  1170)
+	 17: Rel (     0,   -42)  ->  Abs (  1189,  1128)
+	 18: Rel (     0,   -42)  ->  Abs (  1189,  1086)
+	 19: Rel (   -56,     0)  ->  Abs (  1133,  1086)
+	 20: Rel (  -113,     0)  ->  Abs (  1020,  1086)
+	 21: Rel (     0, -1002)  ->  Abs (  1020,    84)
+	 22: Rel (   113,     0)  ->  Abs (  1133,    84)
+	 23: Rel (    56,     0)  ->  Abs (  1189,    84)
+	 24: Rel (     0,   -42)  ->  Abs (  1189,    42)
+	 25: Rel (     0,   -42)  ->  Abs (  1189,     0)
+	 26: Rel (   -56,     0)  ->  Abs (  1133,     0)
+	 27: Rel (  -310,     0)  ->  Abs (   823,     0)
+	 28: Rel (   -56,     0)  ->  Abs (   767,     0)
+	 29: Rel (     0,    42)  ->  Abs (   767,    42)
+	 30: Rel (     0,    42)  ->  Abs (   767,    84)
+	 31: Rel (    56,     0)  ->  Abs (   823,    84)
+	 32: Rel (   113,     0)  ->  Abs (   936,    84)
+	 33: Rel (     0,   963)  ->  Abs (   936,  1047)
+	 34: Rel (  -619, -1047)  ->  Abs (   317,     0)
+	 35: Rel (  -221,     0)  ->  Abs (    96,     0)
+	 36: Rel (   -56,     0)  ->  Abs (    40,     0)
+	 37: Rel (     0,    42)  ->  Abs (    40,    42)
+	 38: Rel (     0,    42)  ->  Abs (    40,    84)
+	 39: Rel (    56,     0)  ->  Abs (    96,    84)
+
+	Glyph 579: off = 0x0001E8E4, len = 70
+	  numberOfContours:	-1  (Composite)
+	  xMin:			40
+	  yMin:			0
+	  xMax:			1189
+	  yMax:			1563
+
+	     0: Flags:		0x0236
+		Glyf Index:	578
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	217
+		X WOffset:	36
+		Y WOffset:	265
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (20):     1    80    57   160    57   192    57     3    96    57 
+	                             1    63    57    95    57   175    57     3    57    20 
+	00022: PUSHW[1]            -95 
+	00025: PUSHB[5]             72    43     1     1    60 
+	00031: PUSHW[2]            651    41 
+	00036: SVTCA[y-axis] 
+	00037: CALL       
+	00038: SVTCA[x-axis] 
+	00039: CALL       
+	00040: DELTAP1    
+	00041: DELTAP2    
+	00042: DELTAP3    
+	00043: SHC[rp1,zp0] 
+
+	Glyph 580: off = 0x0001E92A, len = 556
+	  numberOfContours:	1
+	  xMin:			119
+	  yMin:			0
+	  xMax:			1202
+	  yMax:			1171
+
+	EndPoints
+	---------
+	  0:  62
+
+	  Length of Instructions:	388
+	00000: NPUSHB      (42):    10     3    10    51    24    52    47     3    47    51 
+	                            55     6    56    52    69     6    72    52    87     6 
+	                            10   152    19   183     6     2    53     6    70     6 
+	                            85     6   180     6     4     2    10    19     3    50 
+	                            32     5 
+	00044: PUSHW[6]            -26    40    36   784    38   354 
+	00057: NPUSHB       (9):    35    38    38    36    35    29    40    41    45 
+	00068: PUSHW[1]            784 
+	00071: PUSHB[4]              0    43     1    43 
+	00076: PUSHW[1]            354 
+	00079: NPUSHB       (9):    46    43    43    45    46    29    41    28    24 
+	00090: PUSHW[1]            784 
+	00093: PUSHB[4]              0    26     1    26 
+	00098: PUSHW[1]            354 
+	00101: NPUSHB       (9):    23    26    26    24    23    29    28    29    33 
+	00112: PUSHW[3]            784    31   354 
+	00119: NPUSHB      (95):    34    31    31    33    34    29    29    52    50    50 
+	                            30     4     2    20     4     4     2    19    16    16 
+	                            30     8     6    20     8     8     6     6    19    16 
+	                             3    14    47     4    50     2    52     4    54     5 
+	                            47    38    32    22     1    22    22    54     8     9 
+	                            38    13    13    14    14    28    60    60    28    54 
+	                            45    36    38    40     0    38    54     2    41    40 
+	                             2    24    33    38    28    29     8    19     6    16 
+	                             8     4    11    50     4    52     2     4    62     5 
+	                            11    23    62    38    58 
+	00216: PUSHW[1]            296 
+	00219: NPUSHB      (16):   112    11     1    11    26    64    46    23    30    35 
+	                            48    34     1    34    25    63 
+	00237: PUSHW[1]            313 
+	00240: PUSHB[2]            108    24 
+	00243: CALL       
+	00244: FLIPOFF    
+	00245: SRP0       
+	00246: MIRP[srp0,nmd,rd,0] 
+	00247: DELTAP1    
+	00248: ALIGNRP    
+	00249: FLIPON     
+	00250: MIRP[srp0,md,rd,1] 
+	00251: ALIGNRP    
+	00252: FLIPOFF    
+	00253: SRP0       
+	00254: MIRP[srp0,nmd,rd,2] 
+	00255: DELTAP1    
+	00256: FLIPON     
+	00257: MIRP[srp0,nmd,rd,0] 
+	00258: MIRP[nrp0,md,rd,1] 
+	00259: SRP1       
+	00260: SRP2       
+	00261: IP         
+	00262: SRP2       
+	00263: SLOOP      
+	00264: IP         
+	00265: SRP2       
+	00266: SLOOP      
+	00267: IP         
+	00268: SVTCA[y-axis] 
+	00269: MIAP[rd+ci] 
+	00270: ALIGNRP    
+	00271: MIRP[srp0,md,rd,1] 
+	00272: ALIGNRP    
+	00273: MIAP[rd+ci] 
+	00274: ALIGNRP    
+	00275: MIAP[rd+ci] 
+	00276: MIRP[nrp0,md,rd,1] 
+	00277: SRP0       
+	00278: MIRP[srp0,md,rd,1] 
+	00279: ALIGNRP    
+	00280: SRP1       
+	00281: SRP2       
+	00282: IP         
+	00283: MDAP[rd]   
+	00284: SRP0       
+	00285: ALIGNRP    
+	00286: SRP0       
+	00287: ALIGNRP    
+	00288: SRP0       
+	00289: MIRP[srp0,md,rd,1] 
+	00290: ALIGNRP    
+	00291: SRP2       
+	00292: IP         
+	00293: MDAP[rd]   
+	00294: DELTAP1    
+	00295: MIRP[nrp0,md,rd,1] 
+	00296: IP         
+	00297: SRP2       
+	00298: SLOOP      
+	00299: IP         
+	00300: SRP1       
+	00301: SRP2       
+	00302: SLOOP      
+	00303: IP         
+	00304: SDPVTL[1]  
+	00305: SFVTPV     
+	00306: MDAP[nrd]  
+	00307: CALL       
+	00308: SFVTPV     
+	00309: RDTG       
+	00310: SRP0       
+	00311: MDRP[nrp0,nmd,rd,0] 
+	00312: SDPVTL[1]  
+	00313: SFVTPV     
+	00314: MDAP[nrd]  
+	00315: RTG        
+	00316: CALL       
+	00317: SFVTPV     
+	00318: RDTG       
+	00319: SRP0       
+	00320: MDRP[nrp0,nmd,rd,0] 
+	00321: RTG        
+	00322: SVTCA[y-axis] 
+	00323: SRP0       
+	00324: MIRP[srp0,md,rd,1] 
+	00325: RTDG       
+	00326: SRP2       
+	00327: IP         
+	00328: MDAP[rd]   
+	00329: RTG        
+	00330: SVTCA[x-axis] 
+	00331: SRP0       
+	00332: MIRP[srp0,nmd,rd,1] 
+	00333: MIRP[srp0,nmd,rd,0] 
+	00334: MDRP[nrp0,nmd,rd,0] 
+	00335: SVTCA[y-axis] 
+	00336: SRP0       
+	00337: MIRP[srp0,md,rd,1] 
+	00338: RTDG       
+	00339: SRP2       
+	00340: IP         
+	00341: MDAP[rd]   
+	00342: RTG        
+	00343: SVTCA[x-axis] 
+	00344: SRP0       
+	00345: MIRP[srp0,nmd,rd,1] 
+	00346: DELTAP1    
+	00347: MIRP[srp0,nmd,rd,0] 
+	00348: MDRP[nrp0,nmd,rd,0] 
+	00349: SVTCA[y-axis] 
+	00350: SRP0       
+	00351: MIRP[srp0,md,rd,1] 
+	00352: RTDG       
+	00353: SRP2       
+	00354: IP         
+	00355: MDAP[rd]   
+	00356: RTG        
+	00357: SVTCA[x-axis] 
+	00358: SRP0       
+	00359: MIRP[srp0,nmd,rd,1] 
+	00360: DELTAP1    
+	00361: MIRP[srp0,nmd,rd,0] 
+	00362: MDRP[nrp0,nmd,rd,0] 
+	00363: SVTCA[y-axis] 
+	00364: SRP0       
+	00365: MIRP[srp0,md,rd,1] 
+	00366: RTDG       
+	00367: SRP2       
+	00368: IP         
+	00369: MDAP[rd]   
+	00370: RTG        
+	00371: SVTCA[x-axis] 
+	00372: SRP0       
+	00373: MIRP[srp0,nmd,rd,1] 
+	00374: MIRP[srp0,nmd,rd,0] 
+	00375: MDRP[nrp0,nmd,rd,0] 
+	00376: IUP[y]     
+	00377: IUP[x]     
+	00378: SHPIX      
+	00379: SHPIX      
+	00380: SHPIX      
+	00381: SVTCA[y-axis] 
+	00382: SHPIX      
+	00383: SVTCA[y-axis] 
+	00384: DELTAP1    
+	00385: DELTAP2    
+	00386: SVTCA[x-axis] 
+	00387: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short On
+	  4:                      Y-Short X-Short Off
+	  5:                      Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short X-Short On
+	  8:        XDual                 X-Short On
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:                              X-Short On
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short On
+	 23:        XDual                         On
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                               On
+	 30:  YDual                       X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short On
+	 35:        XDual                         On
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual                               On
+	 42:  YDual XDual                 X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short On
+	 47:        XDual                         On
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual                 X-Short Off
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short X-Short Off
+	 54:  YDual XDual                 X-Short On
+	 55:  YDual XDual                 X-Short Off
+	 56:        XDual         Y-Short X-Short Off
+	 57:        XDual         Y-Short         On
+	 58:        XDual         Y-Short         On
+	 59:        XDual         Y-Short         Off
+	 60:  YDual                       X-Short On
+	 61:  YDual                       X-Short Off
+	 62:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1041,  1089)  ->  Abs (  1041,  1089)
+	  1: Rel (   -71,     0)  ->  Abs (   970,  1089)
+	  2: Rel (   -79,   -59)  ->  Abs (   891,  1030)
+	  3: Rel (   -87,  -149)  ->  Abs (   804,   881)
+	  4: Rel (  -129,  -222)  ->  Abs (   675,   659)
+	  5: Rel (   -47,   -21)  ->  Abs (   628,   638)
+	  6: Rel (   125,   -50)  ->  Abs (   753,   588)
+	  7: Rel (   106,  -210)  ->  Abs (   859,   378)
+	  8: Rel (   149,  -294)  ->  Abs (  1008,    84)
+	  9: Rel (   124,     0)  ->  Abs (  1132,    84)
+	 10: Rel (    70,     0)  ->  Abs (  1202,    84)
+	 11: Rel (     0,   -42)  ->  Abs (  1202,    42)
+	 12: Rel (     0,   -42)  ->  Abs (  1202,     0)
+	 13: Rel (   -70,     0)  ->  Abs (  1132,     0)
+	 14: Rel (  -121,     0)  ->  Abs (  1011,     0)
+	 15: Rel (   -40,     0)  ->  Abs (   971,     0)
+	 16: Rel (   -20,    12)  ->  Abs (   951,    12)
+	 17: Rel (   -19,    36)  ->  Abs (   932,    48)
+	 18: Rel (  -150,   294)  ->  Abs (   782,   342)
+	 19: Rel (   -77,   151)  ->  Abs (   705,   493)
+	 20: Rel (  -143,    92)  ->  Abs (   562,   585)
+	 21: Rel (  -117,     0)  ->  Abs (   445,   585)
+	 22: Rel (   -64,     0)  ->  Abs (   381,   585)
+	 23: Rel (     0,  -501)  ->  Abs (   381,    84)
+	 24: Rel (   109,     0)  ->  Abs (   490,    84)
+	 25: Rel (    71,     0)  ->  Abs (   561,    84)
+	 26: Rel (     0,   -42)  ->  Abs (   561,    42)
+	 27: Rel (     0,   -42)  ->  Abs (   561,     0)
+	 28: Rel (   -71,     0)  ->  Abs (   490,     0)
+	 29: Rel (  -301,     0)  ->  Abs (   189,     0)
+	 30: Rel (   -70,     0)  ->  Abs (   119,     0)
+	 31: Rel (     0,    42)  ->  Abs (   119,    42)
+	 32: Rel (     0,    42)  ->  Abs (   119,    84)
+	 33: Rel (    70,     0)  ->  Abs (   189,    84)
+	 34: Rel (   107,     0)  ->  Abs (   296,    84)
+	 35: Rel (     0,  1002)  ->  Abs (   296,  1086)
+	 36: Rel (  -107,     0)  ->  Abs (   189,  1086)
+	 37: Rel (   -70,     0)  ->  Abs (   119,  1086)
+	 38: Rel (     0,    42)  ->  Abs (   119,  1128)
+	 39: Rel (     0,    42)  ->  Abs (   119,  1170)
+	 40: Rel (    70,     0)  ->  Abs (   189,  1170)
+	 41: Rel (   301,     0)  ->  Abs (   490,  1170)
+	 42: Rel (    71,     0)  ->  Abs (   561,  1170)
+	 43: Rel (     0,   -42)  ->  Abs (   561,  1128)
+	 44: Rel (     0,   -42)  ->  Abs (   561,  1086)
+	 45: Rel (   -71,     0)  ->  Abs (   490,  1086)
+	 46: Rel (  -109,     0)  ->  Abs (   381,  1086)
+	 47: Rel (     0,  -415)  ->  Abs (   381,   671)
+	 48: Rel (    64,     0)  ->  Abs (   445,   671)
+	 49: Rel (    91,     0)  ->  Abs (   536,   671)
+	 50: Rel (    93,    81)  ->  Abs (   629,   752)
+	 51: Rel (   100,   170)  ->  Abs (   729,   922)
+	 52: Rel (    93,   157)  ->  Abs (   822,  1079)
+	 53: Rel (   105,    92)  ->  Abs (   927,  1171)
+	 54: Rel (   118,     0)  ->  Abs (  1045,  1171)
+	 55: Rel (    57,     0)  ->  Abs (  1102,  1171)
+	 56: Rel (    24,   -26)  ->  Abs (  1126,  1145)
+	 57: Rel (     0,   -45)  ->  Abs (  1126,  1100)
+	 58: Rel (     0,  -111)  ->  Abs (  1126,   989)
+	 59: Rel (     0,   -69)  ->  Abs (  1126,   920)
+	 60: Rel (   -42,     0)  ->  Abs (  1084,   920)
+	 61: Rel (   -43,     0)  ->  Abs (  1041,   920)
+	 62: Rel (     0,    65)  ->  Abs (  1041,   985)
+
+	Glyph 581: off = 0x0001EB56, len = 360
+	  numberOfContours:	1
+	  xMin:			35
+	  yMin:			-33
+	  xMax:			1155
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  43
+
+	  Length of Instructions:	243
+	00000: PUSHB[4]            202    17     1    17 
+	00005: PUSHW[1]            -13 
+	00008: PUSHB[4]             31    26    38    34 
+	00013: PUSHW[3]            784    36   354 
+	00020: NPUSHB       (9):    33    36    36    34    33    29    38    39    43 
+	00031: PUSHW[1]            784 
+	00034: NPUSHB      (14):     0    41     1    41    43     0    41    41    43     0 
+	                            29    39     6     2 
+	00050: PUSHW[1]            784 
+	00053: NPUSHB      (14):     0     4     1     4    43     1     4     4     2     1 
+	                            29     6     7    11 
+	00069: PUSHW[1]            784 
+	00072: NPUSHB      (68):     9    43    12     9     9    11    12    29     7    43 
+	                            14    14    34    38    39    38     2    25    30    38 
+	                            18     2    11    38     6     7     8    18     9    14 
+	                            15    30    33    96    32     1    32    32    23    13 
+	                            12    30     0    15     1    79     1    95     1   111 
+	                             1     4     1    26    45    27    38    79    23    95 
+	                            23   111    23     3    23    25    44    69 
+	00142: PUSHW[2]            470    24 
+	00147: CALL       
+	00148: FLIPOFF    
+	00149: SRP0       
+	00150: MIRP[srp0,nmd,rd,0] 
+	00151: DELTAP1    
+	00152: FLIPON     
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: FLIPOFF    
+	00155: SRP0       
+	00156: MIRP[srp0,nmd,rd,2] 
+	00157: DELTAP1    
+	00158: ALIGNRP    
+	00159: FLIPON     
+	00160: MIRP[srp0,md,rd,1] 
+	00161: ALIGNRP    
+	00162: SRP2       
+	00163: IP         
+	00164: MDAP[rd]   
+	00165: DELTAP1    
+	00166: ALIGNRP    
+	00167: MIRP[srp0,md,rd,1] 
+	00168: ALIGNRP    
+	00169: SVTCA[y-axis] 
+	00170: MIAP[rd+ci] 
+	00171: MIAP[rd+ci] 
+	00172: ALIGNRP    
+	00173: MIRP[srp0,md,rd,1] 
+	00174: ALIGNRP    
+	00175: SRP0       
+	00176: MIRP[nrp0,md,rd,1] 
+	00177: MDAP[rd]   
+	00178: MIAP[rd+ci] 
+	00179: ALIGNRP    
+	00180: MIRP[srp0,md,rd,1] 
+	00181: ALIGNRP    
+	00182: SRP0       
+	00183: ALIGNRP    
+	00184: SRP0       
+	00185: MIRP[srp0,md,rd,1] 
+	00186: RTDG       
+	00187: SRP2       
+	00188: IP         
+	00189: MDAP[rd]   
+	00190: RTG        
+	00191: SVTCA[x-axis] 
+	00192: SRP0       
+	00193: MIRP[srp0,nmd,rd,1] 
+	00194: MIRP[srp0,nmd,rd,0] 
+	00195: MDRP[nrp0,nmd,rd,0] 
+	00196: SVTCA[y-axis] 
+	00197: SRP0       
+	00198: MIRP[srp0,md,rd,1] 
+	00199: RTDG       
+	00200: SRP2       
+	00201: IP         
+	00202: MDAP[rd]   
+	00203: RTG        
+	00204: SVTCA[x-axis] 
+	00205: SRP0       
+	00206: MIRP[srp0,nmd,rd,1] 
+	00207: DELTAP1    
+	00208: MIRP[srp0,nmd,rd,0] 
+	00209: MDRP[nrp0,nmd,rd,0] 
+	00210: SVTCA[y-axis] 
+	00211: SRP0       
+	00212: MIRP[srp0,md,rd,1] 
+	00213: RTDG       
+	00214: SRP2       
+	00215: IP         
+	00216: MDAP[rd]   
+	00217: RTG        
+	00218: SVTCA[x-axis] 
+	00219: SRP0       
+	00220: MIRP[srp0,nmd,rd,1] 
+	00221: DELTAP1    
+	00222: MIRP[srp0,nmd,rd,0] 
+	00223: MDRP[nrp0,nmd,rd,0] 
+	00224: SVTCA[y-axis] 
+	00225: SRP0       
+	00226: MIRP[srp0,md,rd,1] 
+	00227: RTDG       
+	00228: SRP2       
+	00229: IP         
+	00230: MDAP[rd]   
+	00231: RTG        
+	00232: SVTCA[x-axis] 
+	00233: SRP0       
+	00234: MIRP[srp0,nmd,rd,1] 
+	00235: MIRP[srp0,nmd,rd,0] 
+	00236: MDRP[nrp0,nmd,rd,0] 
+	00237: IUP[y]     
+	00238: IUP[x]     
+	00239: SHPIX      
+	00240: SHPIX      
+	00241: SVTCA[x-axis] 
+	00242: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                               On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:  YDual                               On
+	 15:        XDual                         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:        XDual                         On
+	 33:        XDual                         On
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual                               On
+	 40:  YDual XDual                 X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:        XDual         Y-Short         Off
+	 43:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   997,  1086)  ->  Abs (   997,  1086)
+	  1: Rel (     0, -1002)  ->  Abs (   997,    84)
+	  2: Rel (    88,     0)  ->  Abs (  1085,    84)
+	  3: Rel (    70,     0)  ->  Abs (  1155,    84)
+	  4: Rel (     0,   -42)  ->  Abs (  1155,    42)
+	  5: Rel (     0,   -42)  ->  Abs (  1155,     0)
+	  6: Rel (   -70,     0)  ->  Abs (  1085,     0)
+	  7: Rel (  -262,     0)  ->  Abs (   823,     0)
+	  8: Rel (   -70,     0)  ->  Abs (   753,     0)
+	  9: Rel (     0,    42)  ->  Abs (   753,    42)
+	 10: Rel (     0,    42)  ->  Abs (   753,    84)
+	 11: Rel (    70,     0)  ->  Abs (   823,    84)
+	 12: Rel (    89,     0)  ->  Abs (   912,    84)
+	 13: Rel (     0,  1002)  ->  Abs (   912,  1086)
+	 14: Rel (  -430,     0)  ->  Abs (   482,  1086)
+	 15: Rel (     0,  -685)  ->  Abs (   482,   401)
+	 16: Rel (     0,  -239)  ->  Abs (   482,   162)
+	 17: Rel (  -159,  -195)  ->  Abs (   323,   -33)
+	 18: Rel (  -114,     0)  ->  Abs (   209,   -33)
+	 19: Rel (   -52,     0)  ->  Abs (   157,   -33)
+	 20: Rel (  -103,    24)  ->  Abs (    54,    -9)
+	 21: Rel (   -19,    27)  ->  Abs (    35,    18)
+	 22: Rel (     0,    41)  ->  Abs (    35,    59)
+	 23: Rel (     0,   125)  ->  Abs (    35,   184)
+	 24: Rel (     0,    66)  ->  Abs (    35,   250)
+	 25: Rel (    43,     0)  ->  Abs (    78,   250)
+	 26: Rel (    41,     0)  ->  Abs (   119,   250)
+	 27: Rel (     0,   -59)  ->  Abs (   119,   191)
+	 28: Rel (     0,  -129)  ->  Abs (   119,    62)
+	 29: Rel (    43,   -12)  ->  Abs (   162,    50)
+	 30: Rel (    34,     0)  ->  Abs (   196,    50)
+	 31: Rel (   202,     0)  ->  Abs (   398,    50)
+	 32: Rel (     0,   351)  ->  Abs (   398,   401)
+	 33: Rel (     0,   685)  ->  Abs (   398,  1086)
+	 34: Rel (  -116,     0)  ->  Abs (   282,  1086)
+	 35: Rel (   -70,     0)  ->  Abs (   212,  1086)
+	 36: Rel (     0,    42)  ->  Abs (   212,  1128)
+	 37: Rel (     0,    42)  ->  Abs (   212,  1170)
+	 38: Rel (    70,     0)  ->  Abs (   282,  1170)
+	 39: Rel (   803,     0)  ->  Abs (  1085,  1170)
+	 40: Rel (    70,     0)  ->  Abs (  1155,  1170)
+	 41: Rel (     0,   -42)  ->  Abs (  1155,  1128)
+	 42: Rel (     0,   -42)  ->  Abs (  1155,  1086)
+	 43: Rel (   -70,     0)  ->  Abs (  1085,  1086)
+
+	Glyph 582: off = 0x0001ECBE, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			24
+	  yMin:			0
+	  xMax:			1216
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	48
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 583: off = 0x0001ECCE, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			107
+	  yMin:			0
+	  xMax:			1135
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	43
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 584: off = 0x0001ECDE, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-33
+	  xMax:			1024
+	  yMax:			1197
+
+	     0: Flags:		0x0216
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 585: off = 0x0001ECEE, len = 402
+	  numberOfContours:	1
+	  xMin:			100
+	  yMin:			0
+	  xMax:			1128
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  37
+
+	  Length of Instructions:	301
+	00000: PUSHB[2]             32    36 
+	00003: PUSHW[1]            676 
+	00006: NPUSHB      (11):    34    43    37    34    34    36    37    29    32    31 
+	                            27 
+	00019: PUSHW[1]            676 
+	00022: NPUSHB      (14):     0    29     1    29    43    26    29    29    27    26 
+	                            29    31    19    15 
+	00038: PUSHW[1]            676 
+	00041: NPUSHB      (11):    17    43    14    17    17    15    14    29    19    20 
+	                            24 
+	00054: PUSHW[1]            676 
+	00057: NPUSHB      (14):     0    22     1    22    43    25    22    22    24    25 
+	                            29    20     7     3 
+	00073: PUSHW[1]            676 
+	00076: NPUSHB      (11):     5    43     2     5     5     3     2    29     7     8 
+	                            12 
+	00089: PUSHW[1]            676 
+	00092: NPUSHB      (50):    10    43    13    10    10    12    13    29     8    27 
+	                            36    36     3    12    38     8    31    32    32     7 
+	                             8     8    24     1    15    38    20    19     2     0 
+	                            37    25    26    30   159    37   175    37     2   143 
+	                            37   223    37     2    37    64    28    31    52    37 
+	00144: PUSHW[1]            699 
+	00147: NPUSHB      (25):    39    14    13     1    13    30    48     2    64     2 
+	                           144     2     3    15     2    79     2    95     2   111 
+	                             2   208     2     5     2 
+	00174: PUSHW[5]            699    38    74   470    24 
+	00185: CALL       
+	00186: SRP0       
+	00187: MIRP[srp0,nmd,rd,0] 
+	00188: DELTAP1    
+	00189: DELTAP2    
+	00190: MIRP[nrp0,md,rd,1] 
+	00191: ALIGNRP    
+	00192: SRP0       
+	00193: ALIGNRP    
+	00194: SRP0       
+	00195: MIRP[srp0,nmd,rd,0] 
+	00196: CALL       
+	00197: DELTAP1    
+	00198: DELTAP2    
+	00199: MIRP[srp0,md,rd,1] 
+	00200: ALIGNRP    
+	00201: SRP0       
+	00202: ALIGNRP    
+	00203: SVTCA[y-axis] 
+	00204: MIAP[rd+ci] 
+	00205: ALIGNRP    
+	00206: MIRP[srp0,md,rd,1] 
+	00207: ALIGNRP    
+	00208: ALIGNRP    
+	00209: MIAP[rd+ci] 
+	00210: ALIGNRP    
+	00211: ALIGNRP    
+	00212: SRP0       
+	00213: ALIGNRP    
+	00214: SRP0       
+	00215: MIRP[srp0,md,rd,1] 
+	00216: ALIGNRP    
+	00217: ALIGNRP    
+	00218: SRP0       
+	00219: ALIGNRP    
+	00220: SRP0       
+	00221: MIRP[srp0,md,rd,1] 
+	00222: RTDG       
+	00223: SRP2       
+	00224: IP         
+	00225: MDAP[rd]   
+	00226: RTG        
+	00227: SVTCA[x-axis] 
+	00228: SRP0       
+	00229: MIRP[srp0,nmd,rd,1] 
+	00230: MIRP[srp0,nmd,rd,0] 
+	00231: MDRP[nrp0,nmd,rd,0] 
+	00232: SVTCA[y-axis] 
+	00233: SRP0       
+	00234: MIRP[srp0,md,rd,1] 
+	00235: RTDG       
+	00236: SRP2       
+	00237: IP         
+	00238: MDAP[rd]   
+	00239: RTG        
+	00240: SVTCA[x-axis] 
+	00241: SRP0       
+	00242: MIRP[srp0,nmd,rd,1] 
+	00243: MIRP[srp0,nmd,rd,0] 
+	00244: MDRP[nrp0,nmd,rd,0] 
+	00245: SVTCA[y-axis] 
+	00246: SRP0       
+	00247: MIRP[srp0,md,rd,1] 
+	00248: RTDG       
+	00249: SRP2       
+	00250: IP         
+	00251: MDAP[rd]   
+	00252: RTG        
+	00253: SVTCA[x-axis] 
+	00254: SRP0       
+	00255: MIRP[srp0,nmd,rd,1] 
+	00256: DELTAP1    
+	00257: MIRP[srp0,nmd,rd,0] 
+	00258: MDRP[nrp0,nmd,rd,0] 
+	00259: SVTCA[y-axis] 
+	00260: SRP0       
+	00261: MIRP[srp0,md,rd,1] 
+	00262: RTDG       
+	00263: SRP2       
+	00264: IP         
+	00265: MDAP[rd]   
+	00266: RTG        
+	00267: SVTCA[x-axis] 
+	00268: SRP0       
+	00269: MIRP[srp0,nmd,rd,1] 
+	00270: MIRP[srp0,nmd,rd,0] 
+	00271: MDRP[nrp0,nmd,rd,0] 
+	00272: SVTCA[y-axis] 
+	00273: SRP0       
+	00274: MIRP[srp0,md,rd,1] 
+	00275: RTDG       
+	00276: SRP2       
+	00277: IP         
+	00278: MDAP[rd]   
+	00279: RTG        
+	00280: SVTCA[x-axis] 
+	00281: SRP0       
+	00282: MIRP[srp0,nmd,rd,1] 
+	00283: DELTAP1    
+	00284: MIRP[srp0,nmd,rd,0] 
+	00285: MDRP[nrp0,nmd,rd,0] 
+	00286: SVTCA[y-axis] 
+	00287: SRP0       
+	00288: MIRP[srp0,md,rd,1] 
+	00289: RTDG       
+	00290: SRP2       
+	00291: IP         
+	00292: MDAP[rd]   
+	00293: RTG        
+	00294: SVTCA[x-axis] 
+	00295: SRP0       
+	00296: MIRP[srp0,nmd,rd,1] 
+	00297: MIRP[srp0,nmd,rd,0] 
+	00298: MDRP[nrp0,nmd,rd,0] 
+	00299: IUP[y]     
+	00300: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                               On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual                         On
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual                               On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short On
+	 26:        XDual                         On
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                               On
+	 33:  YDual                       X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   892,  1086)  ->  Abs (   892,  1086)
+	  1: Rel (  -557,     0)  ->  Abs (   335,  1086)
+	  2: Rel (     0, -1002)  ->  Abs (   335,    84)
+	  3: Rel (   113,     0)  ->  Abs (   448,    84)
+	  4: Rel (    56,     0)  ->  Abs (   504,    84)
+	  5: Rel (     0,   -42)  ->  Abs (   504,    42)
+	  6: Rel (     0,   -42)  ->  Abs (   504,     0)
+	  7: Rel (   -56,     0)  ->  Abs (   448,     0)
+	  8: Rel (  -292,     0)  ->  Abs (   156,     0)
+	  9: Rel (   -56,     0)  ->  Abs (   100,     0)
+	 10: Rel (     0,    42)  ->  Abs (   100,    42)
+	 11: Rel (     0,    42)  ->  Abs (   100,    84)
+	 12: Rel (    56,     0)  ->  Abs (   156,    84)
+	 13: Rel (    95,     0)  ->  Abs (   251,    84)
+	 14: Rel (     0,  1002)  ->  Abs (   251,  1086)
+	 15: Rel (   -95,     0)  ->  Abs (   156,  1086)
+	 16: Rel (   -56,     0)  ->  Abs (   100,  1086)
+	 17: Rel (     0,    42)  ->  Abs (   100,  1128)
+	 18: Rel (     0,    42)  ->  Abs (   100,  1170)
+	 19: Rel (    56,     0)  ->  Abs (   156,  1170)
+	 20: Rel (   916,     0)  ->  Abs (  1072,  1170)
+	 21: Rel (    56,     0)  ->  Abs (  1128,  1170)
+	 22: Rel (     0,   -42)  ->  Abs (  1128,  1128)
+	 23: Rel (     0,   -42)  ->  Abs (  1128,  1086)
+	 24: Rel (   -56,     0)  ->  Abs (  1072,  1086)
+	 25: Rel (   -95,     0)  ->  Abs (   977,  1086)
+	 26: Rel (     0, -1002)  ->  Abs (   977,    84)
+	 27: Rel (    95,     0)  ->  Abs (  1072,    84)
+	 28: Rel (    56,     0)  ->  Abs (  1128,    84)
+	 29: Rel (     0,   -42)  ->  Abs (  1128,    42)
+	 30: Rel (     0,   -42)  ->  Abs (  1128,     0)
+	 31: Rel (   -56,     0)  ->  Abs (  1072,     0)
+	 32: Rel (  -292,     0)  ->  Abs (   780,     0)
+	 33: Rel (   -56,     0)  ->  Abs (   724,     0)
+	 34: Rel (     0,    42)  ->  Abs (   724,    42)
+	 35: Rel (     0,    42)  ->  Abs (   724,    84)
+	 36: Rel (    56,     0)  ->  Abs (   780,    84)
+	 37: Rel (   112,     0)  ->  Abs (   892,    84)
+
+	Glyph 586: off = 0x0001EE80, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			179
+	  yMin:			0
+	  xMax:			1115
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	51
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 587: off = 0x0001EE90, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			127
+	  yMin:			-33
+	  xMax:			1100
+	  yMax:			1197
+
+	     0: Flags:		0x0216
+		Glyf Index:	38
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 588: off = 0x0001EEA0, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			143
+	  yMin:			0
+	  xMax:			1084
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	55
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 589: off = 0x0001EEB0, len = 476
+	  numberOfContours:	1
+	  xMin:			44
+	  yMin:			-34
+	  xMax:			1211
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  44
+
+	  Length of Instructions:	350
+	00000: NPUSHB      (37):    88     2   119     0   120     1   121     2   121    13 
+	                           119    34     6   135     1   140    14   153    14   155 
+	                            33   165     1   195     1     6     1     1     0    33 
+	                            32    33    34    32     2    39    35 
+	00039: PUSHW[1]            676 
+	00042: NPUSHB      (14):    37    37    41    34    37    37    35    34    29    39 
+	                            34    33    40    44 
+	00058: PUSHW[1]            676 
+	00061: NPUSHB      (14):    42    42    43     0    42    42    44     0    29    40 
+	                             0     1     7     3 
+	00077: PUSHW[1]            676 
+	00080: NPUSHB      (14):     5     5    43     2     5     5     3     2    29     7 
+	                             2    32     8    12 
+	00096: PUSHW[1]            676 
+	00099: NPUSHB     (117):    10    80    10    96    10   112    10     3    96    10 
+	                           176    10     2    10    41    13    10    10    12    13 
+	                            29     8    13    14    32     2     2    30    13    14 
+	                            20    13    13    14     1     0     1     2     0    30 
+	                            34    33    20    34    34    33    33     1    32    14 
+	                             4    39    17    24    29    38    17     9    12     3 
+	                             3    44    44    35    38    39     8     7     7    40 
+	                            39     2     0     2     1    33    32    14     6    13 
+	                            34    26    38    22    64    22    80    22     2    22 
+	                            34   127    13   191    13     2    13   128    15    53 
+	                            13    26    46   191    34     1    34    64    13    16 
+	                            52    34    25    45   157   111    24 
+	00218: CALL       
+	00219: FLIPOFF    
+	00220: SRP0       
+	00221: MIRP[nrp0,nmd,rd,0] 
+	00222: CALL       
+	00223: DELTAP1    
+	00224: SRP0       
+	00225: MIRP[nrp0,nmd,rd,2] 
+	00226: CALL       
+	00227: DELTAP1    
+	00228: SRP0       
+	00229: ALIGNRP    
+	00230: DELTAP1    
+	00231: FLIPON     
+	00232: SRP0       
+	00233: MIRP[nrp0,md,rd,1] 
+	00234: SRP1       
+	00235: SRP2       
+	00236: SLOOP      
+	00237: IP         
+	00238: SVTCA[y-axis] 
+	00239: MIAP[rd+ci] 
+	00240: ALIGNRP    
+	00241: ALIGNRP    
+	00242: SRP0       
+	00243: ALIGNRP    
+	00244: SRP0       
+	00245: MIRP[srp0,md,rd,1] 
+	00246: ALIGNRP    
+	00247: SRP0       
+	00248: ALIGNRP    
+	00249: SRP0       
+	00250: ALIGNRP    
+	00251: MIAP[rd+ci] 
+	00252: MIRP[nrp0,md,rd,1] 
+	00253: MDAP[rd]   
+	00254: SRP1       
+	00255: SRP2       
+	00256: SLOOP      
+	00257: IP         
+	00258: SDPVTL[1]  
+	00259: SFVTCA[x-axis] 
+	00260: MDAP[nrd]  
+	00261: CALL       
+	00262: SFVTL[=p1,p2] 
+	00263: RDTG       
+	00264: SRP0       
+	00265: MDRP[nrp0,nmd,rd,0] 
+	00266: SDPVTL[1]  
+	00267: SFVTCA[x-axis] 
+	00268: MDAP[nrd]  
+	00269: RTG        
+	00270: CALL       
+	00271: SFVTPV     
+	00272: RDTG       
+	00273: SRP0       
+	00274: MDRP[nrp0,nmd,rd,0] 
+	00275: RTG        
+	00276: SVTCA[y-axis] 
+	00277: SFVTL[=p1,p2] 
+	00278: SRP0       
+	00279: MIRP[srp0,md,rd,1] 
+	00280: RTDG       
+	00281: SRP2       
+	00282: IP         
+	00283: MDAP[rd]   
+	00284: RTG        
+	00285: SVTCA[x-axis] 
+	00286: SRP0       
+	00287: MIRP[srp0,nmd,nrd,1] 
+	00288: DELTAP1    
+	00289: DELTAP2    
+	00290: MDAP[rd]   
+	00291: MIRP[srp0,nmd,rd,0] 
+	00292: MDRP[nrp0,nmd,rd,0] 
+	00293: SVTCA[y-axis] 
+	00294: SFVTL[=p1,p2] 
+	00295: SRP0       
+	00296: MIRP[srp0,md,rd,1] 
+	00297: RTDG       
+	00298: SRP2       
+	00299: IP         
+	00300: MDAP[rd]   
+	00301: RTG        
+	00302: SVTCA[x-axis] 
+	00303: SRP0       
+	00304: MIRP[srp0,nmd,nrd,1] 
+	00305: MDAP[rd]   
+	00306: MIRP[srp0,nmd,rd,0] 
+	00307: MDRP[nrp0,nmd,rd,0] 
+	00308: SVTCA[y-axis] 
+	00309: SFVTL[=p1,p2] 
+	00310: SRP0       
+	00311: MIRP[srp0,md,rd,1] 
+	00312: RTDG       
+	00313: SRP2       
+	00314: IP         
+	00315: MDAP[rd]   
+	00316: RTG        
+	00317: SVTCA[x-axis] 
+	00318: SRP0       
+	00319: MIRP[srp0,nmd,nrd,1] 
+	00320: MDAP[rd]   
+	00321: MIRP[srp0,nmd,rd,0] 
+	00322: MDRP[nrp0,nmd,rd,0] 
+	00323: SVTCA[y-axis] 
+	00324: SFVTL[=p1,p2] 
+	00325: SRP0       
+	00326: MIRP[srp0,md,rd,1] 
+	00327: RTDG       
+	00328: SRP2       
+	00329: IP         
+	00330: MDAP[rd]   
+	00331: RTG        
+	00332: SVTCA[x-axis] 
+	00333: SRP0       
+	00334: MIRP[srp0,nmd,nrd,1] 
+	00335: MDAP[rd]   
+	00336: MIRP[srp0,nmd,rd,0] 
+	00337: MDRP[nrp0,nmd,rd,0] 
+	00338: SPVTL[p1,p2] 
+	00339: SFVTL[=p1,p2] 
+	00340: SRP0       
+	00341: ALIGNRP    
+	00342: SFVTL[=p1,p2] 
+	00343: ALIGNRP    
+	00344: IUP[y]     
+	00345: IUP[x]     
+	00346: SVTCA[y-axis] 
+	00347: DELTAP3    
+	00348: SVTCA[x-axis] 
+	00349: DELTAP1    
+
+	Flags
+	-----
+	  0:              Rep-  2                 On
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short On
+	 14:                                      On
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:                                      On
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   270,  1086)  ->  Abs (   270,  1086)
+	  1: Rel (   362,  -667)  ->  Abs (   632,   419)
+	  2: Rel (   362,   667)  ->  Abs (   994,  1086)
+	  3: Rel (   -77,     0)  ->  Abs (   917,  1086)
+	  4: Rel (   -71,     0)  ->  Abs (   846,  1086)
+	  5: Rel (     0,    42)  ->  Abs (   846,  1128)
+	  6: Rel (     0,    42)  ->  Abs (   846,  1170)
+	  7: Rel (    71,     0)  ->  Abs (   917,  1170)
+	  8: Rel (   224,     0)  ->  Abs (  1141,  1170)
+	  9: Rel (    70,     0)  ->  Abs (  1211,  1170)
+	 10: Rel (     0,   -42)  ->  Abs (  1211,  1128)
+	 11: Rel (     0,   -42)  ->  Abs (  1211,  1086)
+	 12: Rel (   -70,     0)  ->  Abs (  1141,  1086)
+	 13: Rel (   -50,     0)  ->  Abs (  1091,  1086)
+	 14: Rel (  -501,  -918)  ->  Abs (   590,   168)
+	 15: Rel (   -51,   -95)  ->  Abs (   539,    73)
+	 16: Rel (  -118,  -107)  ->  Abs (   421,   -34)
+	 17: Rel (   -91,     0)  ->  Abs (   330,   -34)
+	 18: Rel (   -50,     0)  ->  Abs (   280,   -34)
+	 19: Rel (   -94,    24)  ->  Abs (   186,   -10)
+	 20: Rel (   -18,    30)  ->  Abs (   168,    20)
+	 21: Rel (     0,    40)  ->  Abs (   168,    60)
+	 22: Rel (     0,   121)  ->  Abs (   168,   181)
+	 23: Rel (     0,    69)  ->  Abs (   168,   250)
+	 24: Rel (    41,     0)  ->  Abs (   209,   250)
+	 25: Rel (    43,     0)  ->  Abs (   252,   250)
+	 26: Rel (     0,   -64)  ->  Abs (   252,   186)
+	 27: Rel (     0,  -121)  ->  Abs (   252,    65)
+	 28: Rel (    51,   -14)  ->  Abs (   303,    51)
+	 29: Rel (    35,     0)  ->  Abs (   338,    51)
+	 30: Rel (    56,     0)  ->  Abs (   394,    51)
+	 31: Rel (    73,    67)  ->  Abs (   467,   118)
+	 32: Rel (    48,    89)  ->  Abs (   515,   207)
+	 33: Rel (    65,   120)  ->  Abs (   580,   327)
+	 34: Rel (  -412,   759)  ->  Abs (   168,  1086)
+	 35: Rel (   -54,     0)  ->  Abs (   114,  1086)
+	 36: Rel (   -70,     0)  ->  Abs (    44,  1086)
+	 37: Rel (     0,    42)  ->  Abs (    44,  1128)
+	 38: Rel (     0,    42)  ->  Abs (    44,  1170)
+	 39: Rel (    70,     0)  ->  Abs (   114,  1170)
+	 40: Rel (   233,     0)  ->  Abs (   347,  1170)
+	 41: Rel (    70,     0)  ->  Abs (   417,  1170)
+	 42: Rel (     0,   -42)  ->  Abs (   417,  1128)
+	 43: Rel (     0,   -42)  ->  Abs (   417,  1086)
+	 44: Rel (   -70,     0)  ->  Abs (   347,  1086)
+
+	Glyph 590: off = 0x0001F08C, len = 440
+	  numberOfContours:	3
+	  xMin:			99
+	  yMin:			0
+	  xMax:			1130
+	  yMax:			1171
+
+	EndPoints
+	---------
+	  0:  37
+	  1:  45
+	  2:  52
+
+	  Length of Instructions:	297
+	00000: NPUSHB      (69):     9    47    25    47    85    40    88    44    88    47 
+	                             5     6    40     6    41     9    44    22    40    22 
+	                            41    25    44     6   249     6   249    21   249    47 
+	                             3   246    25   246    40   249    44     3   151    25 
+	                           152    47   152    50     3   136    51   136    53   152 
+	                             2   152     6     4   136     2   136     6   135    25 
+	                             3    40    41    32     2    43    48    44    47 
+	00071: PUSHW[1]            -26 
+	00074: NPUSHB      (12):     4    50    51    26     2    35    84    11    30    16 
+	                            13     9 
+	00088: PUSHW[1]            686 
+	00091: NPUSHB      (15):    11    92     8    11    11     9     8    34    13    52 
+	                            38    38    64     1    26 
+	00108: PUSHW[1]            -64 
+	00111: PUSHB[4]             37    42    52    26 
+	00116: PUSHW[1]            -64 
+	00119: PUSHB[4]             25    30    52    26 
+	00124: PUSHW[1]            400 
+	00127: NPUSHB      (18):    32   128    46    45    38    64     7    20    64    37 
+	                            42    52    20    64    25    30    52    20 
+	00147: PUSHW[1]            400 
+	00150: NPUSHB      (21):    14   128     9    18    59    13    14     8    37    28 
+	                            59    32    32    33     2    16   195    19    42    59 
+	                            23 
+	00173: PUSHW[1]            517 
+	00176: PUSHB[4]             19    49    59     4 
+	00181: PUSHW[1]            517 
+	00184: NPUSHB      (26):     1    46     8    26    45     8    32   111    19   127 
+	                            19   175    19     3    95    19   143    19     2     0 
+	                            19   240    19     2    19   230 
+	00212: PUSHW[2]            263    24 
+	00217: CALL       
+	00218: MDAP[rd]   
+	00219: DELTAP1    
+	00220: DELTAP2    
+	00221: DELTAP3    
+	00222: MIRP[nrp0,md,rd,1] 
+	00223: ALIGNRP    
+	00224: ALIGNRP    
+	00225: SRP0       
+	00226: ALIGNRP    
+	00227: ALIGNRP    
+	00228: MIRP[srp0,nmd,rd,0] 
+	00229: MIRP[nrp0,md,rd,1] 
+	00230: SRP0       
+	00231: MIRP[srp0,nmd,rd,0] 
+	00232: MIRP[nrp0,md,rd,1] 
+	00233: SRP0       
+	00234: MIRP[nrp0,nmd,rd,0] 
+	00235: SVTCA[y-axis] 
+	00236: MIAP[rd+ci] 
+	00237: ALIGNRP    
+	00238: SRP0       
+	00239: MIRP[srp0,md,rd,1] 
+	00240: ALIGNRP    
+	00241: MIAP[rd+ci] 
+	00242: ALIGNRP    
+	00243: MIRP[srp0,md,rd,1] 
+	00244: ALIGNRP    
+	00245: SMD        
+	00246: SRP0       
+	00247: MIRP[srp0,md,rd,0] 
+	00248: CALL       
+	00249: CALL       
+	00250: ALIGNRP    
+	00251: SMD        
+	00252: MIRP[srp0,md,rd,1] 
+	00253: ALIGNRP    
+	00254: SMD        
+	00255: SRP0       
+	00256: MIRP[srp0,md,rd,0] 
+	00257: CALL       
+	00258: CALL       
+	00259: ALIGNRP    
+	00260: SMD        
+	00261: MIRP[srp0,md,rd,1] 
+	00262: ALIGNRP    
+	00263: SRP0       
+	00264: MIRP[srp0,md,rd,1] 
+	00265: RTDG       
+	00266: SRP2       
+	00267: IP         
+	00268: MDAP[rd]   
+	00269: RTG        
+	00270: SVTCA[x-axis] 
+	00271: SRP0       
+	00272: MIRP[srp0,nmd,rd,1] 
+	00273: MIRP[srp0,nmd,rd,0] 
+	00274: MDRP[nrp0,nmd,rd,0] 
+	00275: SRP0       
+	00276: ALIGNRP    
+	00277: SRP0       
+	00278: MIRP[nrp0,nmd,rd,0] 
+	00279: IUP[y]     
+	00280: IUP[x]     
+	00281: SVTCA[y-axis] 
+	00282: SLOOP      
+	00283: SHPIX      
+	00284: SLOOP      
+	00285: SHPIX      
+	00286: SLOOP      
+	00287: SHPIX      
+	00288: SVTCA[x-axis] 
+	00289: DELTAP1    
+	00290: DELTAP1    
+	00291: DELTAP1    
+	00292: SVTCA[y-axis] 
+	00293: DELTAP1    
+	00294: DELTAP1    
+	00295: DELTAP2    
+	00296: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:        XDual         Y-Short         On
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:        XDual         Y-Short X-Short On
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:  YDual               Y-Short X-Short On
+	 38:                      Y-Short X-Short On
+	 39:              Rep-  2 Y-Short X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:        XDual         Y-Short X-Short Off
+	 45:        XDual         Y-Short X-Short On
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual         Y-Short         On
+	 50:  YDual XDual         Y-Short         Off
+	 51:  YDual               Y-Short X-Short Off
+	 52:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   656,  1086)  ->  Abs (   656,  1086)
+	  1: Rel (     0,   -92)  ->  Abs (   656,   994)
+	  2: Rel (   236,     0)  ->  Abs (   892,   994)
+	  3: Rel (   238,  -238)  ->  Abs (  1130,   756)
+	  4: Rel (     0,  -171)  ->  Abs (  1130,   585)
+	  5: Rel (     0,  -167)  ->  Abs (  1130,   418)
+	  6: Rel (  -232,  -242)  ->  Abs (   898,   176)
+	  7: Rel (  -242,     0)  ->  Abs (   656,   176)
+	  8: Rel (     0,   -92)  ->  Abs (   656,    84)
+	  9: Rel (    82,     0)  ->  Abs (   738,    84)
+	 10: Rel (    74,     0)  ->  Abs (   812,    84)
+	 11: Rel (     0,   -40)  ->  Abs (   812,    44)
+	 12: Rel (     0,   -44)  ->  Abs (   812,     0)
+	 13: Rel (   -74,     0)  ->  Abs (   738,     0)
+	 14: Rel (  -247,     0)  ->  Abs (   491,     0)
+	 15: Rel (   -79,     0)  ->  Abs (   412,     0)
+	 16: Rel (     0,    41)  ->  Abs (   412,    41)
+	 17: Rel (     0,    40)  ->  Abs (   412,    81)
+	 18: Rel (    79,     3)  ->  Abs (   491,    84)
+	 19: Rel (    81,     0)  ->  Abs (   572,    84)
+	 20: Rel (     0,    92)  ->  Abs (   572,   176)
+	 21: Rel (  -236,     0)  ->  Abs (   336,   176)
+	 22: Rel (  -237,   238)  ->  Abs (    99,   414)
+	 23: Rel (     0,   171)  ->  Abs (    99,   585)
+	 24: Rel (     0,   171)  ->  Abs (    99,   756)
+	 25: Rel (   237,   238)  ->  Abs (   336,   994)
+	 26: Rel (   236,     0)  ->  Abs (   572,   994)
+	 27: Rel (     0,    92)  ->  Abs (   572,  1086)
+	 28: Rel (   -75,     0)  ->  Abs (   497,  1086)
+	 29: Rel (   -85,     0)  ->  Abs (   412,  1086)
+	 30: Rel (     0,    44)  ->  Abs (   412,  1130)
+	 31: Rel (     0,    41)  ->  Abs (   412,  1171)
+	 32: Rel (    95,    -1)  ->  Abs (   507,  1170)
+	 33: Rel (   231,     0)  ->  Abs (   738,  1170)
+	 34: Rel (    75,     0)  ->  Abs (   813,  1170)
+	 35: Rel (     0,   -42)  ->  Abs (   813,  1128)
+	 36: Rel (     0,   -43)  ->  Abs (   813,  1085)
+	 37: Rel (   -75,     1)  ->  Abs (   738,  1086)
+	 38: Rel (  -166,  -177)  ->  Abs (   572,   909)
+	 39: Rel (  -155,    -9)  ->  Abs (   417,   900)
+	 40: Rel (  -159,   -96)  ->  Abs (   258,   804)
+	 41: Rel (   -75,  -140)  ->  Abs (   183,   664)
+	 42: Rel (     0,   -79)  ->  Abs (   183,   585)
+	 43: Rel (     0,  -127)  ->  Abs (   183,   458)
+	 44: Rel (   182,  -187)  ->  Abs (   365,   271)
+	 45: Rel (   207,   -10)  ->  Abs (   572,   261)
+	 46: Rel (    84,     0)  ->  Abs (   656,   261)
+	 47: Rel (   208,    10)  ->  Abs (   864,   271)
+	 48: Rel (   181,   187)  ->  Abs (  1045,   458)
+	 49: Rel (     0,   127)  ->  Abs (  1045,   585)
+	 50: Rel (     0,   126)  ->  Abs (  1045,   711)
+	 51: Rel (  -180,   187)  ->  Abs (   865,   898)
+	 52: Rel (  -209,    11)  ->  Abs (   656,   909)
+
+	Glyph 591: off = 0x0001F244, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			80
+	  yMin:			0
+	  xMax:			1152
+	  yMax:			1170
+
+	     0: Flags:		0x0216
+		Glyf Index:	59
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 592: off = 0x0001F254, len = 374
+	  numberOfContours:	1
+	  xMin:			89
+	  yMin:			-286
+	  xMax:			1144
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  42
+
+	  Length of Instructions:	263
+	00000: PUSHB[2]             36    32 
+	00003: PUSHW[1]            676 
+	00006: NPUSHB      (11):    34    43    31    34    34    32    31    29    36    37 
+	                            41 
+	00019: PUSHW[1]            676 
+	00022: NPUSHB      (11):    39    43    42    39    39    41    42    29    37    23 
+	                            27 
+	00035: PUSHW[1]            676 
+	00038: NPUSHB      (11):    25    43    28    25    25    27    28    29    23    22 
+	                            18 
+	00051: PUSHW[1]            676 
+	00054: NPUSHB      (11):    20    43    17    20    20    18    17    29    22    11 
+	                            15 
+	00067: PUSHW[1]            676 
+	00070: NPUSHB      (36):    13    43    16    13    13    15    16    29    11    41 
+	                            32    32    27    18    38    22    37    36    36    23 
+	                            22     2     1    29    15    38    11     7    10    11 
+	                             8    31    30    30    42     0 
+	00108: PUSHW[1]            400 
+	00111: NPUSHB      (20):     9    38     5    64    12    15    52     5    64    17 
+	                            22    52     5    26    44    28    29    30    17    16 
+	00133: PUSHW[1]            -64 
+	00136: PUSHB[4]             19    22    52    16 
+	00141: PUSHW[1]            -64 
+	00144: PUSHB[7]             24    29    52    16    25    43    74 
+	00152: PUSHW[2]            264    24 
+	00157: CALL       
+	00158: FLIPOFF    
+	00159: SRP0       
+	00160: MIRP[srp0,nmd,rd,0] 
+	00161: CALL       
+	00162: CALL       
+	00163: ALIGNRP    
+	00164: FLIPON     
+	00165: MIRP[srp0,md,rd,1] 
+	00166: ALIGNRP    
+	00167: FLIPOFF    
+	00168: SRP0       
+	00169: MIRP[srp0,nmd,rd,2] 
+	00170: CALL       
+	00171: CALL       
+	00172: FLIPON     
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: MIRP[srp0,nmd,rd,0] 
+	00175: ALIGNRP    
+	00176: MIRP[srp0,md,rd,1] 
+	00177: ALIGNRP    
+	00178: SVTCA[y-axis] 
+	00179: MIAP[rd+ci] 
+	00180: ALIGNRP    
+	00181: MDAP[rd]   
+	00182: SRP0       
+	00183: MIRP[srp0,md,rd,1] 
+	00184: ALIGNRP    
+	00185: ALIGNRP    
+	00186: MIAP[rd+ci] 
+	00187: ALIGNRP    
+	00188: ALIGNRP    
+	00189: SRP0       
+	00190: ALIGNRP    
+	00191: SRP0       
+	00192: MIRP[srp0,md,rd,1] 
+	00193: ALIGNRP    
+	00194: ALIGNRP    
+	00195: SRP0       
+	00196: ALIGNRP    
+	00197: SRP0       
+	00198: MIRP[srp0,md,rd,1] 
+	00199: RTDG       
+	00200: SRP2       
+	00201: IP         
+	00202: MDAP[rd]   
+	00203: RTG        
+	00204: SVTCA[x-axis] 
+	00205: SRP0       
+	00206: MIRP[srp0,nmd,rd,1] 
+	00207: MIRP[srp0,nmd,rd,0] 
+	00208: MDRP[nrp0,nmd,rd,0] 
+	00209: SVTCA[y-axis] 
+	00210: SRP0       
+	00211: MIRP[srp0,md,rd,1] 
+	00212: RTDG       
+	00213: SRP2       
+	00214: IP         
+	00215: MDAP[rd]   
+	00216: RTG        
+	00217: SVTCA[x-axis] 
+	00218: SRP0       
+	00219: MIRP[srp0,nmd,rd,1] 
+	00220: MIRP[srp0,nmd,rd,0] 
+	00221: MDRP[nrp0,nmd,rd,0] 
+	00222: SVTCA[y-axis] 
+	00223: SRP0       
+	00224: MIRP[srp0,md,rd,1] 
+	00225: RTDG       
+	00226: SRP2       
+	00227: IP         
+	00228: MDAP[rd]   
+	00229: RTG        
+	00230: SVTCA[x-axis] 
+	00231: SRP0       
+	00232: MIRP[srp0,nmd,rd,1] 
+	00233: MIRP[srp0,nmd,rd,0] 
+	00234: MDRP[nrp0,nmd,rd,0] 
+	00235: SVTCA[y-axis] 
+	00236: SRP0       
+	00237: MIRP[srp0,md,rd,1] 
+	00238: RTDG       
+	00239: SRP2       
+	00240: IP         
+	00241: MDAP[rd]   
+	00242: RTG        
+	00243: SVTCA[x-axis] 
+	00244: SRP0       
+	00245: MIRP[srp0,nmd,rd,1] 
+	00246: MIRP[srp0,nmd,rd,0] 
+	00247: MDRP[nrp0,nmd,rd,0] 
+	00248: SVTCA[y-axis] 
+	00249: SRP0       
+	00250: MIRP[srp0,md,rd,1] 
+	00251: RTDG       
+	00252: SRP2       
+	00253: IP         
+	00254: MDAP[rd]   
+	00255: RTG        
+	00256: SVTCA[x-axis] 
+	00257: SRP0       
+	00258: MIRP[srp0,nmd,rd,1] 
+	00259: MIRP[srp0,nmd,rd,0] 
+	00260: MDRP[nrp0,nmd,rd,0] 
+	00261: IUP[y]     
+	00262: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual                               On
+	 12:  YDual                       X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual                               On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short On
+	 29:        XDual                         On
+	 30:  YDual                               On
+	 31:        XDual                         On
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual                               On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   966,    84)  ->  Abs (   966,    84)
+	  1: Rel (   107,     0)  ->  Abs (  1073,    84)
+	  2: Rel (    45,     0)  ->  Abs (  1118,    84)
+	  3: Rel (    26,   -24)  ->  Abs (  1144,    60)
+	  4: Rel (     0,   -46)  ->  Abs (  1144,    14)
+	  5: Rel (     0,  -233)  ->  Abs (  1144,  -219)
+	  6: Rel (     0,   -67)  ->  Abs (  1144,  -286)
+	  7: Rel (   -41,     0)  ->  Abs (  1103,  -286)
+	  8: Rel (   -43,     0)  ->  Abs (  1060,  -286)
+	  9: Rel (     0,    64)  ->  Abs (  1060,  -222)
+	 10: Rel (     0,   222)  ->  Abs (  1060,     0)
+	 11: Rel (  -915,     0)  ->  Abs (   145,     0)
+	 12: Rel (   -56,     0)  ->  Abs (    89,     0)
+	 13: Rel (     0,    42)  ->  Abs (    89,    42)
+	 14: Rel (     0,    42)  ->  Abs (    89,    84)
+	 15: Rel (    56,     0)  ->  Abs (   145,    84)
+	 16: Rel (    95,     0)  ->  Abs (   240,    84)
+	 17: Rel (     0,  1002)  ->  Abs (   240,  1086)
+	 18: Rel (   -95,     0)  ->  Abs (   145,  1086)
+	 19: Rel (   -56,     0)  ->  Abs (    89,  1086)
+	 20: Rel (     0,    42)  ->  Abs (    89,  1128)
+	 21: Rel (     0,    42)  ->  Abs (    89,  1170)
+	 22: Rel (    56,     0)  ->  Abs (   145,  1170)
+	 23: Rel (   292,     0)  ->  Abs (   437,  1170)
+	 24: Rel (    56,     0)  ->  Abs (   493,  1170)
+	 25: Rel (     0,   -42)  ->  Abs (   493,  1128)
+	 26: Rel (     0,   -42)  ->  Abs (   493,  1086)
+	 27: Rel (   -56,     0)  ->  Abs (   437,  1086)
+	 28: Rel (  -113,     0)  ->  Abs (   324,  1086)
+	 29: Rel (     0, -1002)  ->  Abs (   324,    84)
+	 30: Rel (   558,     0)  ->  Abs (   882,    84)
+	 31: Rel (     0,  1002)  ->  Abs (   882,  1086)
+	 32: Rel (  -113,     0)  ->  Abs (   769,  1086)
+	 33: Rel (   -56,     0)  ->  Abs (   713,  1086)
+	 34: Rel (     0,    42)  ->  Abs (   713,  1128)
+	 35: Rel (     0,    42)  ->  Abs (   713,  1170)
+	 36: Rel (    56,     0)  ->  Abs (   769,  1170)
+	 37: Rel (   291,     0)  ->  Abs (  1060,  1170)
+	 38: Rel (    57,     0)  ->  Abs (  1117,  1170)
+	 39: Rel (     0,   -42)  ->  Abs (  1117,  1128)
+	 40: Rel (     0,   -42)  ->  Abs (  1117,  1086)
+	 41: Rel (   -57,     0)  ->  Abs (  1060,  1086)
+	 42: Rel (   -94,     0)  ->  Abs (   966,  1086)
+
+	Glyph 593: off = 0x0001F3CA, len = 450
+	  numberOfContours:	1
+	  xMin:			41
+	  yMin:			0
+	  xMax:			1121
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  48
+
+	  Length of Instructions:	323
+	00000: PUSHB[6]              6    38    11    15    52    22 
+	00007: PUSHW[1]             -8 
+	00010: PUSHB[5]             22    24    52    24    21 
+	00016: PUSHW[1]            -16 
+	00019: PUSHB[3]              2    13     9 
+	00023: PUSHW[1]            784 
+	00026: NPUSHB      (11):    11    43     8    11    11     9     8    29    13    14 
+	                            18 
+	00039: PUSHW[3]            784    16   354 
+	00046: NPUSHB       (9):    19    16    16    18    19    29    14    31    27 
+	00057: PUSHW[1]            784 
+	00060: NPUSHB      (11):    29    43    26    29    29    27    26    29    31    32 
+	                            36 
+	00073: PUSHW[1]            784 
+	00076: NPUSHB      (11):    34    43    37    34    34    36    37    29    32    44 
+	                            48 
+	00089: PUSHW[1]            784 
+	00092: NPUSHB      (11):    46    86     0    46    46    48     0    29    44    43 
+	                            39 
+	00105: PUSHW[1]            784 
+	00108: NPUSHB      (76):    41    43    38    41    41    39    38    29    43     1 
+	                            38    25    25    13     4    38    15    23    31    23 
+	                             2    23    23    44    36    27    27    18     9    38 
+	                            13    32    31    31    14    13     2    39    48    38 
+	                            43    44     8    26     0    30    38   111    37     1 
+	                            37    64    11    14    52    37    26    50    20    19 
+	                            30     7   111     8     1    79     8    95     8   159 
+	                             8     3     8    25    49    58 
+	00186: PUSHW[2]            469    24 
+	00191: CALL       
+	00192: FLIPOFF    
+	00193: SRP0       
+	00194: MIRP[srp0,nmd,rd,0] 
+	00195: DELTAP1    
+	00196: DELTAP2    
+	00197: ALIGNRP    
+	00198: FLIPON     
+	00199: MIRP[srp0,md,rd,1] 
+	00200: ALIGNRP    
+	00201: FLIPOFF    
+	00202: SRP0       
+	00203: MIRP[srp0,nmd,rd,2] 
+	00204: CALL       
+	00205: DELTAP2    
+	00206: ALIGNRP    
+	00207: FLIPON     
+	00208: MIRP[srp0,md,rd,1] 
+	00209: ALIGNRP    
+	00210: SVTCA[y-axis] 
+	00211: MIAP[rd+ci] 
+	00212: ALIGNRP    
+	00213: MIRP[srp0,md,rd,1] 
+	00214: ALIGNRP    
+	00215: MIAP[rd+ci] 
+	00216: ALIGNRP    
+	00217: ALIGNRP    
+	00218: SRP0       
+	00219: ALIGNRP    
+	00220: SRP0       
+	00221: MIRP[srp0,md,rd,1] 
+	00222: ALIGNRP    
+	00223: ALIGNRP    
+	00224: SRP0       
+	00225: ALIGNRP    
+	00226: SRP2       
+	00227: IP         
+	00228: MDAP[rd]   
+	00229: DELTAP1    
+	00230: MIRP[nrp0,md,rd,1] 
+	00231: RTHG       
+	00232: SRP2       
+	00233: IP         
+	00234: MDAP[rd]   
+	00235: RTG        
+	00236: MIRP[nrp0,md,rd,1] 
+	00237: SRP0       
+	00238: MIRP[srp0,md,rd,1] 
+	00239: RTDG       
+	00240: SRP2       
+	00241: IP         
+	00242: MDAP[rd]   
+	00243: RTG        
+	00244: SVTCA[x-axis] 
+	00245: SRP0       
+	00246: MIRP[srp0,nmd,rd,1] 
+	00247: MIRP[srp0,nmd,rd,0] 
+	00248: MDRP[nrp0,nmd,rd,0] 
+	00249: SVTCA[y-axis] 
+	00250: SRP0       
+	00251: MIRP[srp0,md,rd,1] 
+	00252: RTDG       
+	00253: SRP2       
+	00254: IP         
+	00255: MDAP[rd]   
+	00256: RTG        
+	00257: SVTCA[x-axis] 
+	00258: SRP0       
+	00259: MIRP[srp0,nmd,rd,1] 
+	00260: MIRP[srp0,nmd,rd,0] 
+	00261: MDRP[nrp0,nmd,rd,0] 
+	00262: SVTCA[y-axis] 
+	00263: SRP0       
+	00264: MIRP[srp0,md,rd,1] 
+	00265: RTDG       
+	00266: SRP2       
+	00267: IP         
+	00268: MDAP[rd]   
+	00269: RTG        
+	00270: SVTCA[x-axis] 
+	00271: SRP0       
+	00272: MIRP[srp0,nmd,rd,1] 
+	00273: MIRP[srp0,nmd,rd,0] 
+	00274: MDRP[nrp0,nmd,rd,0] 
+	00275: SVTCA[y-axis] 
+	00276: SRP0       
+	00277: MIRP[srp0,md,rd,1] 
+	00278: RTDG       
+	00279: SRP2       
+	00280: IP         
+	00281: MDAP[rd]   
+	00282: RTG        
+	00283: SVTCA[x-axis] 
+	00284: SRP0       
+	00285: MIRP[srp0,nmd,rd,1] 
+	00286: MIRP[srp0,nmd,rd,0] 
+	00287: MDRP[nrp0,nmd,rd,0] 
+	00288: SVTCA[y-axis] 
+	00289: SRP0       
+	00290: MIRP[srp0,md,rd,1] 
+	00291: RTDG       
+	00292: SRP2       
+	00293: IP         
+	00294: MDAP[rd]   
+	00295: RTG        
+	00296: SVTCA[x-axis] 
+	00297: SRP0       
+	00298: MIRP[srp0,nmd,rd,1] 
+	00299: MIRP[srp0,nmd,rd,0] 
+	00300: MDRP[nrp0,nmd,rd,0] 
+	00301: SVTCA[y-axis] 
+	00302: SRP0       
+	00303: MIRP[srp0,md,rd,1] 
+	00304: RTDG       
+	00305: SRP2       
+	00306: IP         
+	00307: MDAP[rd]   
+	00308: RTG        
+	00309: SVTCA[x-axis] 
+	00310: SRP0       
+	00311: MIRP[srp0,nmd,rd,1] 
+	00312: MIRP[srp0,nmd,rd,0] 
+	00313: MDRP[nrp0,nmd,rd,0] 
+	00314: IUP[y]     
+	00315: IUP[x]     
+	00316: SVTCA[y-axis] 
+	00317: SLOOP      
+	00318: SHPIX      
+	00319: SVTCA[x-axis] 
+	00320: CALL       
+	00321: SVTCA[y-axis] 
+	00322: CALL       
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual                         On
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:        XDual                         On
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual                               On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short On
+	 20:        XDual                         On
+	 21:        XDual         Y-Short         Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:        XDual                         On
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual                               On
+	 33:  YDual XDual                 X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short On
+	 38:        XDual                         On
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:        XDual         Y-Short         Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                               On
+	 45:  YDual                       X-Short Off
+	 46:  YDual XDual         Y-Short         On
+	 47:  YDual XDual         Y-Short         Off
+	 48:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   874,    84)  ->  Abs (   874,    84)
+	  1: Rel (     0,   467)  ->  Abs (   874,   551)
+	  2: Rel (   -74,   -54)  ->  Abs (   800,   497)
+	  3: Rel (  -140,  -103)  ->  Abs (   660,   394)
+	  4: Rel (  -175,     0)  ->  Abs (   485,   394)
+	  5: Rel (  -114,     0)  ->  Abs (   371,   394)
+	  6: Rel (  -170,   124)  ->  Abs (   201,   518)
+	  7: Rel (     0,   214)  ->  Abs (   201,   732)
+	  8: Rel (     0,   354)  ->  Abs (   201,  1086)
+	  9: Rel (   -90,     0)  ->  Abs (   111,  1086)
+	 10: Rel (   -70,     0)  ->  Abs (    41,  1086)
+	 11: Rel (     0,    42)  ->  Abs (    41,  1128)
+	 12: Rel (     0,    42)  ->  Abs (    41,  1170)
+	 13: Rel (    70,     0)  ->  Abs (   111,  1170)
+	 14: Rel (   288,     0)  ->  Abs (   399,  1170)
+	 15: Rel (    70,     0)  ->  Abs (   469,  1170)
+	 16: Rel (     0,   -42)  ->  Abs (   469,  1128)
+	 17: Rel (     0,   -42)  ->  Abs (   469,  1086)
+	 18: Rel (   -70,     0)  ->  Abs (   399,  1086)
+	 19: Rel (  -114,     0)  ->  Abs (   285,  1086)
+	 20: Rel (     0,  -344)  ->  Abs (   285,   742)
+	 21: Rel (     0,  -144)  ->  Abs (   285,   598)
+	 22: Rel (    89,  -119)  ->  Abs (   374,   479)
+	 23: Rel (   115,     0)  ->  Abs (   489,   479)
+	 24: Rel (   175,     0)  ->  Abs (   664,   479)
+	 25: Rel (   210,   178)  ->  Abs (   874,   657)
+	 26: Rel (     0,   429)  ->  Abs (   874,  1086)
+	 27: Rel (   -98,     0)  ->  Abs (   776,  1086)
+	 28: Rel (   -70,     0)  ->  Abs (   706,  1086)
+	 29: Rel (     0,    42)  ->  Abs (   706,  1128)
+	 30: Rel (     0,    42)  ->  Abs (   706,  1170)
+	 31: Rel (    70,     0)  ->  Abs (   776,  1170)
+	 32: Rel (   275,     0)  ->  Abs (  1051,  1170)
+	 33: Rel (    70,     0)  ->  Abs (  1121,  1170)
+	 34: Rel (     0,   -42)  ->  Abs (  1121,  1128)
+	 35: Rel (     0,   -42)  ->  Abs (  1121,  1086)
+	 36: Rel (   -70,     0)  ->  Abs (  1051,  1086)
+	 37: Rel (   -92,     0)  ->  Abs (   959,  1086)
+	 38: Rel (     0, -1002)  ->  Abs (   959,    84)
+	 39: Rel (    92,     0)  ->  Abs (  1051,    84)
+	 40: Rel (    70,     0)  ->  Abs (  1121,    84)
+	 41: Rel (     0,   -42)  ->  Abs (  1121,    42)
+	 42: Rel (     0,   -42)  ->  Abs (  1121,     0)
+	 43: Rel (   -70,     0)  ->  Abs (  1051,     0)
+	 44: Rel (  -417,     0)  ->  Abs (   634,     0)
+	 45: Rel (   -70,     0)  ->  Abs (   564,     0)
+	 46: Rel (     0,    42)  ->  Abs (   564,    42)
+	 47: Rel (     0,    42)  ->  Abs (   564,    84)
+	 48: Rel (    70,     0)  ->  Abs (   634,    84)
+
+	Glyph 594: off = 0x0001F58C, len = 798
+	  numberOfContours:	1
+	  xMin:			4
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  51
+
+	  Length of Instructions:	670
+	00000: PUSHW[2]             14   -64 
+	00005: PUSHB[3]             19    53    18 
+	00009: PUSHW[1]            -64 
+	00012: PUSHB[3]             19    53    16 
+	00016: PUSHW[1]            -64 
+	00019: NPUSHB      (32):    19    53    23    64    19    53    19    64    19    53 
+	                            21    64    19    53    30    64    19    53    26    64 
+	                            19    53    28    64    19    53    44    64    11    12 
+	                            52    45 
+	00053: PUSHW[1]            -64 
+	00056: NPUSHB       (9):    11    12    52    40    64    11    12    52    49 
+	00067: PUSHW[1]            -64 
+	00070: NPUSHB       (9):    11    12    52    42    64    11    12    52    47 
+	00081: PUSHW[1]            -64 
+	00084: NPUSHB       (9):    11    12    52    30    64    11    12    52     7 
+	00095: PUSHW[1]            -64 
+	00098: NPUSHB       (9):    11    12    52    26    64    11    12    52    11 
+	00109: PUSHW[1]            -64 
+	00112: NPUSHB       (9):    11    12    52     6    64    11    16    52    31 
+	00123: PUSHW[1]            -64 
+	00126: NPUSHB       (9):    11    16    52     2    64    11    16    52    35 
+	00137: PUSHW[1]            -64 
+	00140: NPUSHB       (9):    11    16    52     4    64    11    16    52    33 
+	00151: PUSHW[1]            -64 
+	00154: PUSHB[4]             11    16    52    33 
+	00159: PUSHW[1]            -64 
+	00162: PUSHB[4]             21    26    52    33 
+	00167: PUSHW[1]            -64 
+	00170: PUSHB[4]             34    35    52    33 
+	00175: PUSHW[1]            -64 
+	00178: PUSHB[4]             37    40    52    33 
+	00183: PUSHW[1]            -64 
+	00186: NPUSHB      (10):    48    50    52   207     4   207    42     2    18    14 
+	00198: PUSHW[1]            676 
+	00201: NPUSHB      (31):    32    16     1   240    16     1    80    16   176    16 
+	                           224    16     3     0    16    16    16    64    16     3 
+	                            16    43    13    16    16    14    13    29    18    30 
+	                            26 
+	00234: PUSHW[1]            676 
+	00237: NPUSHB      (14):    15    28     1    28    43    25    28    28    26    25 
+	                            29    30    44    40 
+	00253: PUSHW[1]            676 
+	00256: NPUSHB      (14):   223    42     1    42    41    39    42    42    40    39 
+	                            29    44     6     2 
+	00272: PUSHW[1]            676 
+	00275: NPUSHB      (18):    15     4   143     4   223     4     3     4    41     1 
+	                             4     4     2     1    29     6    19    23 
+	00295: PUSHW[1]            676 
+	00298: NPUSHB      (14):    15    21     1    21    43    24    21    21    23    24 
+	                            29    19    31    35 
+	00314: PUSHW[1]            676 
+	00317: NPUSHB      (16):     0    33   128    33     2    33    41    36    33    33 
+	                            35    36    29    31    45    49 
+	00335: PUSHW[1]            676 
+	00338: PUSHB[4]             15    47     1    47 
+	00343: PUSHW[1]            706 
+	00346: NPUSHB       (9):    50    47    47    49    50    29    45     7    11 
+	00357: PUSHW[1]            676 
+	00360: PUSHB[8]             16     9    64     9    80     9     3     9 
+	00369: PUSHW[1]            706 
+	00372: NPUSHB      (50):    12     9     9    11    12    29     7    11     2     2 
+	                            49    49    40    40    35    26    38    30     7     6 
+	                             6    45    45    44    44    31    30     2    14    51 
+	                            51    37    37    23    30    18    19     8    36    37 
+	                            30    25    63    24   143    24   223    24     3    24 
+	00424: PUSHW[1]            367 
+	00427: NPUSHB      (13):    38     1     0    30    12    48    13   128    13   208 
+	                            13     3    13 
+	00442: PUSHW[1]            367 
+	00445: NPUSHB      (29):    50    51    30    39    15    38   111    38   175    38 
+	                           239    38     4    31    38    95    38   143    38     3 
+	                             0    38   239    38     2    38   194   111    24 
+	00476: CALL       
+	00477: MDAP[rd]   
+	00478: DELTAP1    
+	00479: DELTAP2    
+	00480: DELTAP3    
+	00481: ALIGNRP    
+	00482: MIRP[srp0,md,rd,1] 
+	00483: ALIGNRP    
+	00484: MIRP[srp0,nmd,rd,0] 
+	00485: DELTAP1    
+	00486: ALIGNRP    
+	00487: MIRP[srp0,md,rd,1] 
+	00488: ALIGNRP    
+	00489: SRP0       
+	00490: MIRP[srp0,nmd,rd,0] 
+	00491: DELTAP1    
+	00492: ALIGNRP    
+	00493: MIRP[srp0,md,rd,1] 
+	00494: ALIGNRP    
+	00495: SVTCA[y-axis] 
+	00496: MIAP[rd+ci] 
+	00497: ALIGNRP    
+	00498: MIRP[srp0,md,rd,1] 
+	00499: ALIGNRP    
+	00500: SRP0       
+	00501: ALIGNRP    
+	00502: SRP0       
+	00503: ALIGNRP    
+	00504: MIAP[rd+ci] 
+	00505: ALIGNRP    
+	00506: ALIGNRP    
+	00507: SRP0       
+	00508: ALIGNRP    
+	00509: SRP0       
+	00510: ALIGNRP    
+	00511: SRP0       
+	00512: ALIGNRP    
+	00513: SRP0       
+	00514: MIRP[srp0,md,rd,1] 
+	00515: ALIGNRP    
+	00516: ALIGNRP    
+	00517: SRP0       
+	00518: ALIGNRP    
+	00519: SRP0       
+	00520: ALIGNRP    
+	00521: SRP0       
+	00522: ALIGNRP    
+	00523: SRP0       
+	00524: MIRP[srp0,md,rd,1] 
+	00525: RTDG       
+	00526: SRP2       
+	00527: IP         
+	00528: MDAP[rd]   
+	00529: RTG        
+	00530: SVTCA[x-axis] 
+	00531: SRP0       
+	00532: MIRP[srp0,nmd,rd,1] 
+	00533: DELTAP1    
+	00534: MIRP[srp0,nmd,rd,0] 
+	00535: MDRP[nrp0,nmd,rd,0] 
+	00536: SVTCA[y-axis] 
+	00537: SRP0       
+	00538: MIRP[srp0,md,rd,1] 
+	00539: RTDG       
+	00540: SRP2       
+	00541: IP         
+	00542: MDAP[rd]   
+	00543: RTG        
+	00544: SVTCA[x-axis] 
+	00545: SRP0       
+	00546: MIRP[srp0,nmd,rd,1] 
+	00547: DELTAP1    
+	00548: MIRP[srp0,nmd,rd,0] 
+	00549: MDRP[nrp0,nmd,rd,0] 
+	00550: SVTCA[y-axis] 
+	00551: SRP0       
+	00552: MIRP[srp0,md,rd,1] 
+	00553: RTDG       
+	00554: SRP2       
+	00555: IP         
+	00556: MDAP[rd]   
+	00557: RTG        
+	00558: SVTCA[x-axis] 
+	00559: SRP0       
+	00560: MIRP[srp0,nmd,rd,1] 
+	00561: DELTAP1    
+	00562: MIRP[srp0,nmd,rd,0] 
+	00563: MDRP[nrp0,nmd,rd,0] 
+	00564: SVTCA[y-axis] 
+	00565: SRP0       
+	00566: MIRP[srp0,md,rd,1] 
+	00567: RTDG       
+	00568: SRP2       
+	00569: IP         
+	00570: MDAP[rd]   
+	00571: RTG        
+	00572: SVTCA[x-axis] 
+	00573: SRP0       
+	00574: MIRP[srp0,nmd,rd,1] 
+	00575: DELTAP1    
+	00576: MIRP[srp0,nmd,rd,0] 
+	00577: MDRP[nrp0,nmd,rd,0] 
+	00578: SVTCA[y-axis] 
+	00579: SRP0       
+	00580: MIRP[srp0,md,rd,1] 
+	00581: RTDG       
+	00582: SRP2       
+	00583: IP         
+	00584: MDAP[rd]   
+	00585: RTG        
+	00586: SVTCA[x-axis] 
+	00587: SRP0       
+	00588: MIRP[srp0,nmd,rd,1] 
+	00589: DELTAP1    
+	00590: MIRP[srp0,nmd,rd,0] 
+	00591: MDRP[nrp0,nmd,rd,0] 
+	00592: SVTCA[y-axis] 
+	00593: SRP0       
+	00594: MIRP[srp0,md,rd,1] 
+	00595: RTDG       
+	00596: SRP2       
+	00597: IP         
+	00598: MDAP[rd]   
+	00599: RTG        
+	00600: SVTCA[x-axis] 
+	00601: SRP0       
+	00602: MIRP[srp0,nmd,rd,1] 
+	00603: DELTAP1    
+	00604: MIRP[srp0,nmd,rd,0] 
+	00605: MDRP[nrp0,nmd,rd,0] 
+	00606: SVTCA[y-axis] 
+	00607: SRP0       
+	00608: MIRP[srp0,md,rd,1] 
+	00609: RTDG       
+	00610: SRP2       
+	00611: IP         
+	00612: MDAP[rd]   
+	00613: RTG        
+	00614: SVTCA[x-axis] 
+	00615: SRP0       
+	00616: MIRP[srp0,nmd,rd,1] 
+	00617: DELTAP1    
+	00618: MIRP[srp0,nmd,rd,0] 
+	00619: MDRP[nrp0,nmd,rd,0] 
+	00620: SVTCA[y-axis] 
+	00621: SRP0       
+	00622: MIRP[srp0,md,rd,1] 
+	00623: RTDG       
+	00624: SRP2       
+	00625: IP         
+	00626: MDAP[rd]   
+	00627: RTG        
+	00628: SVTCA[x-axis] 
+	00629: SRP0       
+	00630: MIRP[srp0,nmd,rd,1] 
+	00631: DELTAP1    
+	00632: DELTAP1    
+	00633: DELTAP1    
+	00634: DELTAP2    
+	00635: MIRP[srp0,nmd,rd,0] 
+	00636: MDRP[nrp0,nmd,rd,0] 
+	00637: SVTCA[x-axis] 
+	00638: DELTAP1    
+	00639: CALL       
+	00640: CALL       
+	00641: CALL       
+	00642: CALL       
+	00643: CALL       
+	00644: CALL       
+	00645: CALL       
+	00646: CALL       
+	00647: CALL       
+	00648: CALL       
+	00649: CALL       
+	00650: CALL       
+	00651: CALL       
+	00652: CALL       
+	00653: CALL       
+	00654: CALL       
+	00655: CALL       
+	00656: CALL       
+	00657: CALL       
+	00658: CALL       
+	00659: CALL       
+	00660: CALL       
+	00661: CALL       
+	00662: CALL       
+	00663: CALL       
+	00664: CALL       
+	00665: CALL       
+	00666: CALL       
+	00667: CALL       
+	00668: IUP[y]     
+	00669: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short On
+	 13:        XDual                         On
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                               On
+	 20:  YDual                       X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short On
+	 25:        XDual                         On
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short On
+	 37:        XDual                         On
+	 38:  YDual                               On
+	 39:        XDual                         On
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:        XDual         Y-Short         On
+	 48:        XDual         Y-Short         Off
+	 49:  YDual                       X-Short On
+	 50:  YDual                       X-Short On
+	 51:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   992,    84)  ->  Abs (   992,    84)
+	  1: Rel (     0,  1002)  ->  Abs (   992,  1086)
+	  2: Rel (   -63,     0)  ->  Abs (   929,  1086)
+	  3: Rel (   -57,     0)  ->  Abs (   872,  1086)
+	  4: Rel (     0,    42)  ->  Abs (   872,  1128)
+	  5: Rel (     0,    42)  ->  Abs (   872,  1170)
+	  6: Rel (    57,     0)  ->  Abs (   929,  1170)
+	  7: Rel (   192,     0)  ->  Abs (  1121,  1170)
+	  8: Rel (    57,     0)  ->  Abs (  1178,  1170)
+	  9: Rel (     0,   -42)  ->  Abs (  1178,  1128)
+	 10: Rel (     0,   -42)  ->  Abs (  1178,  1086)
+	 11: Rel (   -57,     0)  ->  Abs (  1121,  1086)
+	 12: Rel (   -45,     0)  ->  Abs (  1076,  1086)
+	 13: Rel (     0, -1002)  ->  Abs (  1076,    84)
+	 14: Rel (    83,     0)  ->  Abs (  1159,    84)
+	 15: Rel (    56,     0)  ->  Abs (  1215,    84)
+	 16: Rel (     0,   -42)  ->  Abs (  1215,    42)
+	 17: Rel (     0,   -42)  ->  Abs (  1215,     0)
+	 18: Rel (   -56,     0)  ->  Abs (  1159,     0)
+	 19: Rel ( -1087,     0)  ->  Abs (    72,     0)
+	 20: Rel (   -56,     0)  ->  Abs (    16,     0)
+	 21: Rel (     0,    42)  ->  Abs (    16,    42)
+	 22: Rel (     0,    42)  ->  Abs (    16,    84)
+	 23: Rel (    56,     0)  ->  Abs (    72,    84)
+	 24: Rel (    83,     0)  ->  Abs (   155,    84)
+	 25: Rel (     0,  1002)  ->  Abs (   155,  1086)
+	 26: Rel (   -95,     0)  ->  Abs (    60,  1086)
+	 27: Rel (   -56,     0)  ->  Abs (     4,  1086)
+	 28: Rel (     0,    42)  ->  Abs (     4,  1128)
+	 29: Rel (     0,    42)  ->  Abs (     4,  1170)
+	 30: Rel (    56,     0)  ->  Abs (    60,  1170)
+	 31: Rel (   242,     0)  ->  Abs (   302,  1170)
+	 32: Rel (    57,     0)  ->  Abs (   359,  1170)
+	 33: Rel (     0,   -42)  ->  Abs (   359,  1128)
+	 34: Rel (     0,   -42)  ->  Abs (   359,  1086)
+	 35: Rel (   -57,     0)  ->  Abs (   302,  1086)
+	 36: Rel (   -63,     0)  ->  Abs (   239,  1086)
+	 37: Rel (     0, -1002)  ->  Abs (   239,    84)
+	 38: Rel (   334,     0)  ->  Abs (   573,    84)
+	 39: Rel (     0,  1002)  ->  Abs (   573,  1086)
+	 40: Rel (   -63,     0)  ->  Abs (   510,  1086)
+	 41: Rel (   -56,     0)  ->  Abs (   454,  1086)
+	 42: Rel (     0,    42)  ->  Abs (   454,  1128)
+	 43: Rel (     0,    42)  ->  Abs (   454,  1170)
+	 44: Rel (    56,     0)  ->  Abs (   510,  1170)
+	 45: Rel (   193,     0)  ->  Abs (   703,  1170)
+	 46: Rel (    56,     0)  ->  Abs (   759,  1170)
+	 47: Rel (     0,   -42)  ->  Abs (   759,  1128)
+	 48: Rel (     0,   -42)  ->  Abs (   759,  1086)
+	 49: Rel (   -56,     0)  ->  Abs (   703,  1086)
+	 50: Rel (   -45,     0)  ->  Abs (   658,  1086)
+	 51: Rel (     0, -1002)  ->  Abs (   658,    84)
+
+	Glyph 595: off = 0x0001F8AA, len = 772
+	  numberOfContours:	1
+	  xMin:			4
+	  yMin:			-286
+	  xMax:			1240
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  56
+
+	  Length of Instructions:	632
+	00000: NPUSHB      (30):    11    64    19    53    15    64    19    53    13    64 
+	                            19    53    18    64    19    53    22    64    19    53 
+	                            20    64    19    53    36    64    11    12    52    37 
+	00032: PUSHW[1]            -64 
+	00035: NPUSHB       (9):    11    12    52    32    64    11    12    52    41 
+	00046: PUSHW[1]            -64 
+	00049: NPUSHB       (9):    11    12    52    34    64    11    12    52    39 
+	00060: PUSHW[1]            -64 
+	00063: NPUSHB       (9):    11    12    52    22    64    11    12    52    51 
+	00074: PUSHW[1]            -64 
+	00077: NPUSHB       (9):    11    12    52    18    64    11    12    52    55 
+	00088: PUSHW[1]            -64 
+	00091: NPUSHB       (9):    11    12    52    50    64    11    16    52    23 
+	00102: PUSHW[1]            -64 
+	00105: NPUSHB       (9):    11    16    52    46    64    11    16    52    27 
+	00116: PUSHW[1]            -64 
+	00119: NPUSHB       (9):    11    16    52    48    64    11    16    52    25 
+	00130: PUSHW[1]            -64 
+	00133: PUSHB[4]             11    16    52    25 
+	00138: PUSHW[1]            -64 
+	00141: PUSHB[4]             21    26    52    25 
+	00146: PUSHW[1]            -64 
+	00149: PUSHB[4]             34    35    52    25 
+	00154: PUSHW[1]            -64 
+	00157: PUSHB[4]             37    40    52    25 
+	00162: PUSHW[1]            -64 
+	00165: NPUSHB      (10):    48    50    52   207    34   207    48     2    11    15 
+	00177: PUSHW[1]            676 
+	00180: NPUSHB      (14):    15    13     1    13    43    16    13    13    15    16 
+	                            29    11    22    18 
+	00196: PUSHW[1]            676 
+	00199: NPUSHB      (14):    15    20     1    20    43    17    20    20    18    17 
+	                            29    22    23    27 
+	00215: PUSHW[1]            676 
+	00218: NPUSHB      (16):     0    25   128    25     2    25    41    28    25    25 
+	                            27    28    29    23    50    46 
+	00236: PUSHW[1]            676 
+	00239: NPUSHB      (16):   143    48   223    48     2    48    41    45    48    48 
+	                            46    45    29    50    51    55 
+	00257: PUSHW[1]            676 
+	00260: PUSHB[8]             16    53    64    53    80    53     3    53 
+	00269: PUSHW[1]            706 
+	00272: NPUSHB       (9):    56    53    53    55    56    29    51    36    32 
+	00283: PUSHW[1]            676 
+	00286: NPUSHB      (14):   223    34     1    34    41    31    34    34    32    31 
+	                            29    36    37    41 
+	00302: PUSHW[3]            676    39   706 
+	00309: NPUSHB      (69):    42    39    39    41    42    29    37     7     1    43 
+	                            43    29    15    30    10    11     8    55    46    46 
+	                            41    32    32    27    18    38    22    51    50    50 
+	                            37    36    36    23    22     2     9    38   224     4 
+	                           240     4     2   144     4   160     4   176     4     3 
+	                             0     4    16     4    64     4    80     4     4    32 
+	                             4   112     4   128     4   144     4     4     4 
+	00380: PUSHW[1]            400 
+	00383: NPUSHB      (13):     0    28    29    30    17    63    16   143    16   223 
+	                            16     3    16 
+	00398: PUSHW[1]            367 
+	00401: NPUSHB      (14):    30    45    44    56    44    30    48     0   128     0 
+	                           208     0     3     0 
+	00417: PUSHW[1]            367 
+	00420: NPUSHB      (30):    42    43    31    43    30    15    30   111    30   175 
+	                            30   239    30     4    31    30    95    30   143    30 
+	                             3     0    30   239    30     2    30   194   111    24 
+	00452: CALL       
+	00453: MDAP[rd]   
+	00454: DELTAP1    
+	00455: DELTAP2    
+	00456: DELTAP3    
+	00457: MIRP[nrp0,md,rd,1] 
+	00458: ALIGNRP    
+	00459: SRP0       
+	00460: ALIGNRP    
+	00461: MIRP[srp0,nmd,rd,0] 
+	00462: DELTAP1    
+	00463: MIRP[nrp0,md,rd,1] 
+	00464: ALIGNRP    
+	00465: SRP0       
+	00466: ALIGNRP    
+	00467: SRP0       
+	00468: MIRP[srp0,nmd,rd,0] 
+	00469: DELTAP1    
+	00470: ALIGNRP    
+	00471: MIRP[srp0,md,rd,1] 
+	00472: ALIGNRP    
+	00473: SRP0       
+	00474: MIRP[srp0,nmd,rd,0] 
+	00475: DELTAP2    
+	00476: DELTAP1    
+	00477: DELTAP1    
+	00478: DELTAP1    
+	00479: MIRP[nrp0,md,rd,1] 
+	00480: SVTCA[y-axis] 
+	00481: MIAP[rd+ci] 
+	00482: ALIGNRP    
+	00483: ALIGNRP    
+	00484: SRP0       
+	00485: ALIGNRP    
+	00486: ALIGNRP    
+	00487: SRP0       
+	00488: ALIGNRP    
+	00489: SRP0       
+	00490: MIRP[srp0,md,rd,1] 
+	00491: ALIGNRP    
+	00492: ALIGNRP    
+	00493: SRP0       
+	00494: ALIGNRP    
+	00495: ALIGNRP    
+	00496: SRP0       
+	00497: ALIGNRP    
+	00498: MIAP[rd+ci] 
+	00499: ALIGNRP    
+	00500: MIRP[srp0,md,rd,1] 
+	00501: ALIGNRP    
+	00502: ALIGNRP    
+	00503: SRP0       
+	00504: ALIGNRP    
+	00505: MDAP[rd]   
+	00506: SRP0       
+	00507: MIRP[srp0,md,rd,1] 
+	00508: RTDG       
+	00509: SRP2       
+	00510: IP         
+	00511: MDAP[rd]   
+	00512: RTG        
+	00513: SVTCA[x-axis] 
+	00514: SRP0       
+	00515: MIRP[srp0,nmd,rd,1] 
+	00516: MIRP[srp0,nmd,rd,0] 
+	00517: MDRP[nrp0,nmd,rd,0] 
+	00518: SVTCA[y-axis] 
+	00519: SRP0       
+	00520: MIRP[srp0,md,rd,1] 
+	00521: RTDG       
+	00522: SRP2       
+	00523: IP         
+	00524: MDAP[rd]   
+	00525: RTG        
+	00526: SVTCA[x-axis] 
+	00527: SRP0       
+	00528: MIRP[srp0,nmd,rd,1] 
+	00529: DELTAP1    
+	00530: MIRP[srp0,nmd,rd,0] 
+	00531: MDRP[nrp0,nmd,rd,0] 
+	00532: SVTCA[y-axis] 
+	00533: SRP0       
+	00534: MIRP[srp0,md,rd,1] 
+	00535: RTDG       
+	00536: SRP2       
+	00537: IP         
+	00538: MDAP[rd]   
+	00539: RTG        
+	00540: SVTCA[x-axis] 
+	00541: SRP0       
+	00542: MIRP[srp0,nmd,rd,1] 
+	00543: DELTAP1    
+	00544: MIRP[srp0,nmd,rd,0] 
+	00545: MDRP[nrp0,nmd,rd,0] 
+	00546: SVTCA[y-axis] 
+	00547: SRP0       
+	00548: MIRP[srp0,md,rd,1] 
+	00549: RTDG       
+	00550: SRP2       
+	00551: IP         
+	00552: MDAP[rd]   
+	00553: RTG        
+	00554: SVTCA[x-axis] 
+	00555: SRP0       
+	00556: MIRP[srp0,nmd,rd,1] 
+	00557: DELTAP1    
+	00558: MIRP[srp0,nmd,rd,0] 
+	00559: MDRP[nrp0,nmd,rd,0] 
+	00560: SVTCA[y-axis] 
+	00561: SRP0       
+	00562: MIRP[srp0,md,rd,1] 
+	00563: RTDG       
+	00564: SRP2       
+	00565: IP         
+	00566: MDAP[rd]   
+	00567: RTG        
+	00568: SVTCA[x-axis] 
+	00569: SRP0       
+	00570: MIRP[srp0,nmd,rd,1] 
+	00571: DELTAP1    
+	00572: MIRP[srp0,nmd,rd,0] 
+	00573: MDRP[nrp0,nmd,rd,0] 
+	00574: SVTCA[y-axis] 
+	00575: SRP0       
+	00576: MIRP[srp0,md,rd,1] 
+	00577: RTDG       
+	00578: SRP2       
+	00579: IP         
+	00580: MDAP[rd]   
+	00581: RTG        
+	00582: SVTCA[x-axis] 
+	00583: SRP0       
+	00584: MIRP[srp0,nmd,rd,1] 
+	00585: DELTAP1    
+	00586: MIRP[srp0,nmd,rd,0] 
+	00587: MDRP[nrp0,nmd,rd,0] 
+	00588: SVTCA[y-axis] 
+	00589: SRP0       
+	00590: MIRP[srp0,md,rd,1] 
+	00591: RTDG       
+	00592: SRP2       
+	00593: IP         
+	00594: MDAP[rd]   
+	00595: RTG        
+	00596: SVTCA[x-axis] 
+	00597: SRP0       
+	00598: MIRP[srp0,nmd,rd,1] 
+	00599: DELTAP1    
+	00600: MIRP[srp0,nmd,rd,0] 
+	00601: MDRP[nrp0,nmd,rd,0] 
+	00602: SVTCA[x-axis] 
+	00603: DELTAP1    
+	00604: CALL       
+	00605: CALL       
+	00606: CALL       
+	00607: CALL       
+	00608: CALL       
+	00609: CALL       
+	00610: CALL       
+	00611: CALL       
+	00612: CALL       
+	00613: CALL       
+	00614: CALL       
+	00615: CALL       
+	00616: CALL       
+	00617: CALL       
+	00618: CALL       
+	00619: CALL       
+	00620: CALL       
+	00621: CALL       
+	00622: CALL       
+	00623: CALL       
+	00624: CALL       
+	00625: CALL       
+	00626: CALL       
+	00627: CALL       
+	00628: CALL       
+	00629: CALL       
+	00630: IUP[y]     
+	00631: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual                               On
+	 12:  YDual                       X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short On
+	 29:        XDual                         On
+	 30:  YDual                               On
+	 31:        XDual                         On
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short On
+	 43:        XDual                         On
+	 44:  YDual                               On
+	 45:        XDual                         On
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:  YDual XDual         Y-Short         On
+	 49:  YDual XDual         Y-Short         Off
+	 50:  YDual XDual                 X-Short On
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short Off
+	 53:        XDual         Y-Short         On
+	 54:        XDual         Y-Short         Off
+	 55:  YDual                       X-Short On
+	 56:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1076,    84)  ->  Abs (  1076,    84)
+	  1: Rel (    94,     0)  ->  Abs (  1170,    84)
+	  2: Rel (    46,     0)  ->  Abs (  1216,    84)
+	  3: Rel (    24,   -22)  ->  Abs (  1240,    62)
+	  4: Rel (     0,   -48)  ->  Abs (  1240,    14)
+	  5: Rel (     0,  -233)  ->  Abs (  1240,  -219)
+	  6: Rel (     0,   -67)  ->  Abs (  1240,  -286)
+	  7: Rel (   -41,     0)  ->  Abs (  1199,  -286)
+	  8: Rel (   -43,     0)  ->  Abs (  1156,  -286)
+	  9: Rel (     0,    64)  ->  Abs (  1156,  -222)
+	 10: Rel (     0,   222)  ->  Abs (  1156,     0)
+	 11: Rel ( -1084,     0)  ->  Abs (    72,     0)
+	 12: Rel (   -56,     0)  ->  Abs (    16,     0)
+	 13: Rel (     0,    42)  ->  Abs (    16,    42)
+	 14: Rel (     0,    42)  ->  Abs (    16,    84)
+	 15: Rel (    56,     0)  ->  Abs (    72,    84)
+	 16: Rel (    83,     0)  ->  Abs (   155,    84)
+	 17: Rel (     0,  1002)  ->  Abs (   155,  1086)
+	 18: Rel (   -95,     0)  ->  Abs (    60,  1086)
+	 19: Rel (   -56,     0)  ->  Abs (     4,  1086)
+	 20: Rel (     0,    42)  ->  Abs (     4,  1128)
+	 21: Rel (     0,    42)  ->  Abs (     4,  1170)
+	 22: Rel (    56,     0)  ->  Abs (    60,  1170)
+	 23: Rel (   242,     0)  ->  Abs (   302,  1170)
+	 24: Rel (    57,     0)  ->  Abs (   359,  1170)
+	 25: Rel (     0,   -42)  ->  Abs (   359,  1128)
+	 26: Rel (     0,   -42)  ->  Abs (   359,  1086)
+	 27: Rel (   -57,     0)  ->  Abs (   302,  1086)
+	 28: Rel (   -63,     0)  ->  Abs (   239,  1086)
+	 29: Rel (     0, -1002)  ->  Abs (   239,    84)
+	 30: Rel (   334,     0)  ->  Abs (   573,    84)
+	 31: Rel (     0,  1002)  ->  Abs (   573,  1086)
+	 32: Rel (   -63,     0)  ->  Abs (   510,  1086)
+	 33: Rel (   -56,     0)  ->  Abs (   454,  1086)
+	 34: Rel (     0,    42)  ->  Abs (   454,  1128)
+	 35: Rel (     0,    42)  ->  Abs (   454,  1170)
+	 36: Rel (    56,     0)  ->  Abs (   510,  1170)
+	 37: Rel (   193,     0)  ->  Abs (   703,  1170)
+	 38: Rel (    56,     0)  ->  Abs (   759,  1170)
+	 39: Rel (     0,   -42)  ->  Abs (   759,  1128)
+	 40: Rel (     0,   -42)  ->  Abs (   759,  1086)
+	 41: Rel (   -56,     0)  ->  Abs (   703,  1086)
+	 42: Rel (   -45,     0)  ->  Abs (   658,  1086)
+	 43: Rel (     0, -1002)  ->  Abs (   658,    84)
+	 44: Rel (   334,     0)  ->  Abs (   992,    84)
+	 45: Rel (     0,  1002)  ->  Abs (   992,  1086)
+	 46: Rel (   -63,     0)  ->  Abs (   929,  1086)
+	 47: Rel (   -57,     0)  ->  Abs (   872,  1086)
+	 48: Rel (     0,    42)  ->  Abs (   872,  1128)
+	 49: Rel (     0,    42)  ->  Abs (   872,  1170)
+	 50: Rel (    57,     0)  ->  Abs (   929,  1170)
+	 51: Rel (   192,     0)  ->  Abs (  1121,  1170)
+	 52: Rel (    57,     0)  ->  Abs (  1178,  1170)
+	 53: Rel (     0,   -42)  ->  Abs (  1178,  1128)
+	 54: Rel (     0,   -42)  ->  Abs (  1178,  1086)
+	 55: Rel (   -57,     0)  ->  Abs (  1121,  1086)
+	 56: Rel (   -45,     0)  ->  Abs (  1076,  1086)
+
+	Glyph 596: off = 0x0001FBAE, len = 296
+	  numberOfContours:	2
+	  xMin:			2
+	  yMin:			0
+	  xMax:			1197
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  27
+	  1:  36
+
+	  Length of Instructions:	191
+	00000: NPUSHB      (11):   170    19   169    30     2    22    16     1    18    32 
+	                            16 
+	00013: PUSHW[3]            -32    19   -19 
+	00020: PUSHB[6]             34    45    15    38    21    25 
+	00027: PUSHW[3]            676    23   706 
+	00034: NPUSHB       (9):    26    23    23    25    26    29    21     7    11 
+	00045: PUSHW[1]            676 
+	00048: NPUSHB      (68):     9    43    12     9     9    11    12    29     7    13 
+	                            38    36    36     6    21     3    11    38     7     7 
+	                             0    38     6    29    25    38    20    21     8     6 
+	                             2    12    28    30    27    79    26    95    26   175 
+	                            26     3    26    26     5    32    38    17    26    38 
+	                             1    38   143     5   175     5     2     5    64    13 
+	                            15    52     5    25    37    69   108    24 
+	00118: CALL       
+	00119: FLIPOFF    
+	00120: SRP0       
+	00121: MIRP[srp0,nmd,rd,0] 
+	00122: CALL       
+	00123: DELTAP1    
+	00124: FLIPON     
+	00125: MIRP[nrp0,md,rd,1] 
+	00126: FLIPOFF    
+	00127: SRP0       
+	00128: MIRP[srp0,nmd,rd,2] 
+	00129: FLIPON     
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: SRP2       
+	00132: IP         
+	00133: MDAP[rd]   
+	00134: DELTAP1    
+	00135: ALIGNRP    
+	00136: MIRP[srp0,md,rd,1] 
+	00137: ALIGNRP    
+	00138: SVTCA[y-axis] 
+	00139: MIAP[rd+ci] 
+	00140: MIAP[rd+ci] 
+	00141: ALIGNRP    
+	00142: MIRP[srp0,md,rd,1] 
+	00143: ALIGNRP    
+	00144: SRP0       
+	00145: MIRP[nrp0,md,rd,1] 
+	00146: ALIGNRP    
+	00147: SRP0       
+	00148: MIRP[nrp0,md,rd,1] 
+	00149: MDAP[rd]   
+	00150: SRP1       
+	00151: SRP2       
+	00152: IP         
+	00153: MDAP[rd]   
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: SRP0       
+	00156: MIRP[srp0,md,rd,1] 
+	00157: RTDG       
+	00158: SRP2       
+	00159: IP         
+	00160: MDAP[rd]   
+	00161: RTG        
+	00162: SVTCA[x-axis] 
+	00163: SRP0       
+	00164: MIRP[srp0,nmd,rd,1] 
+	00165: MIRP[srp0,nmd,rd,0] 
+	00166: MDRP[nrp0,nmd,rd,0] 
+	00167: SVTCA[y-axis] 
+	00168: SRP0       
+	00169: MIRP[srp0,md,rd,1] 
+	00170: RTDG       
+	00171: SRP2       
+	00172: IP         
+	00173: MDAP[rd]   
+	00174: RTG        
+	00175: SVTCA[x-axis] 
+	00176: SRP0       
+	00177: MIRP[srp0,nmd,rd,1] 
+	00178: MIRP[srp0,nmd,rd,0] 
+	00179: MDRP[nrp0,nmd,rd,0] 
+	00180: IUP[y]     
+	00181: IUP[x]     
+	00182: SHPIX      
+	00183: SHPIX      
+	00184: SHPIX      
+	00185: SVTCA[y-axis] 
+	00186: SHPIX      
+	00187: SHPIX      
+	00188: DELTAP2    
+	00189: SVTCA[x-axis] 
+	00190: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:        XDual                         On
+	  7:  YDual                               On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short On
+	 13:        XDual                         On
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                               On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short On
+	 27:        XDual                         On
+	 28:        XDual                 X-Short On
+	 29:  YDual                               On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    86,  1086)  ->  Abs (    86,  1086)
+	  1: Rel (     0,  -334)  ->  Abs (    86,   752)
+	  2: Rel (     0,   -56)  ->  Abs (    86,   696)
+	  3: Rel (   -42,     0)  ->  Abs (    44,   696)
+	  4: Rel (   -42,     0)  ->  Abs (     2,   696)
+	  5: Rel (     0,    56)  ->  Abs (     2,   752)
+	  6: Rel (     0,   418)  ->  Abs (     2,  1170)
+	  7: Rel (   600,     0)  ->  Abs (   602,  1170)
+	  8: Rel (    56,     0)  ->  Abs (   658,  1170)
+	  9: Rel (     0,   -42)  ->  Abs (   658,  1128)
+	 10: Rel (     0,   -42)  ->  Abs (   658,  1086)
+	 11: Rel (   -56,     0)  ->  Abs (   602,  1086)
+	 12: Rel (  -113,     0)  ->  Abs (   489,  1086)
+	 13: Rel (     0,  -436)  ->  Abs (   489,   650)
+	 14: Rel (   245,     0)  ->  Abs (   734,   650)
+	 15: Rel (   238,     0)  ->  Abs (   972,   650)
+	 16: Rel (   225,  -184)  ->  Abs (  1197,   466)
+	 17: Rel (     0,  -141)  ->  Abs (  1197,   325)
+	 18: Rel (     0,  -139)  ->  Abs (  1197,   186)
+	 19: Rel (  -196,  -186)  ->  Abs (  1001,     0)
+	 20: Rel (  -145,     0)  ->  Abs (   856,     0)
+	 21: Rel (  -500,     0)  ->  Abs (   356,     0)
+	 22: Rel (   -56,     0)  ->  Abs (   300,     0)
+	 23: Rel (     0,    42)  ->  Abs (   300,    42)
+	 24: Rel (     0,    42)  ->  Abs (   300,    84)
+	 25: Rel (    56,     0)  ->  Abs (   356,    84)
+	 26: Rel (    49,     0)  ->  Abs (   405,    84)
+	 27: Rel (     0,  1002)  ->  Abs (   405,  1086)
+	 28: Rel (    84, -1002)  ->  Abs (   489,    84)
+	 29: Rel (   361,     0)  ->  Abs (   850,    84)
+	 30: Rel (   117,     0)  ->  Abs (   967,    84)
+	 31: Rel (   146,   144)  ->  Abs (  1113,   228)
+	 32: Rel (     0,    95)  ->  Abs (  1113,   323)
+	 33: Rel (     0,    91)  ->  Abs (  1113,   414)
+	 34: Rel (  -173,   151)  ->  Abs (   940,   565)
+	 35: Rel (  -213,     0)  ->  Abs (   727,   565)
+	 36: Rel (  -238,     0)  ->  Abs (   489,   565)
+
+	Glyph 597: off = 0x0001FCD6, len = 582
+	  numberOfContours:	3
+	  xMin:			2
+	  yMin:			0
+	  xMax:			1223
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  25
+	  1:  34
+	  2:  58
+
+	  Length of Instructions:	426
+	00000: PUSHW[2]              7   -16 
+	00005: NPUSHB      (19):   167     4   168     6   183     4   185     6     4   118 
+	                             6   118    29   135     4   167     4     4     4 
+	00026: PUSHW[1]            -16 
+	00029: PUSHB[6]             31     6    16     2     9    13 
+	00036: PUSHW[1]            676 
+	00039: NPUSHB      (11):    11    43    14    11    11    13    14    29     9    41 
+	                            37 
+	00052: PUSHW[1]            676 
+	00055: NPUSHB      (16):     0    39   160    39     2    39    43    36    39    39 
+	                            37    36    29    41    42    46 
+	00073: PUSHW[1]            676 
+	00076: NPUSHB      (11):    44    43    47    44    44    46    47    29    42    54 
+	                            58 
+	00089: PUSHW[1]            676 
+	00092: NPUSHB      (16):     0    56   160    56     2    56    43    35    56    56 
+	                            58    35    29    54    53    49 
+	00110: PUSHW[1]            676 
+	00113: NPUSHB      (11):    51    43    48    51    51    49    48    29    53    21 
+	                            25 
+	00126: PUSHW[1]            676 
+	00129: NPUSHB      (14):     0    23     1    23    43     0    23    23    25     0 
+	                            29    21    20    16 
+	00145: PUSHW[1]            676 
+	00148: NPUSHB      (52):    18    43    15    18    18    16    15    29    20     1 
+	                            38    34    34    21     9    58    38    54    49    38 
+	                            53    25    38    21    16    38    20    37    38    41 
+	                            46    38    42    26    13    38     9    41    42    42 
+	                             8     9     8    54    53    53    21    20     2    30 
+	                            38     5 
+	00202: PUSHW[1]            -64 
+	00205: PUSHB[4]             11    14    52     5 
+	00210: PUSHW[1]            -64 
+	00213: NPUSHB      (46):    21    27    52     5     5    14    48    47    30    35 
+	                            15    36    95    36     2    15    36    95    36   111 
+	                            36   127    36     4    36    64    17    19    52    36 
+	                            26    60     0    26    30    15    95    14     1   175 
+	                            14     1    14    25    59   157 
+	00261: PUSHW[2]            287    24 
+	00266: CALL       
+	00267: FLIPOFF    
+	00268: SRP0       
+	00269: MIRP[srp0,nmd,rd,0] 
+	00270: DELTAP1    
+	00271: DELTAP2    
+	00272: ALIGNRP    
+	00273: FLIPON     
+	00274: MIRP[srp0,md,rd,1] 
+	00275: ALIGNRP    
+	00276: FLIPOFF    
+	00277: SRP0       
+	00278: MIRP[srp0,nmd,rd,2] 
+	00279: CALL       
+	00280: DELTAP1    
+	00281: DELTAP2    
+	00282: ALIGNRP    
+	00283: FLIPON     
+	00284: MIRP[srp0,md,rd,1] 
+	00285: ALIGNRP    
+	00286: SRP2       
+	00287: IP         
+	00288: MDAP[rd]   
+	00289: CALL       
+	00290: CALL       
+	00291: MIRP[nrp0,md,rd,1] 
+	00292: SVTCA[y-axis] 
+	00293: MIAP[rd+ci] 
+	00294: ALIGNRP    
+	00295: ALIGNRP    
+	00296: SRP0       
+	00297: ALIGNRP    
+	00298: MIAP[rd+ci] 
+	00299: ALIGNRP    
+	00300: ALIGNRP    
+	00301: SRP0       
+	00302: ALIGNRP    
+	00303: SRP0       
+	00304: MIRP[srp0,md,rd,1] 
+	00305: ALIGNRP    
+	00306: SRP0       
+	00307: MIRP[nrp0,md,rd,1] 
+	00308: SRP0       
+	00309: MIRP[nrp0,md,rd,1] 
+	00310: SRP0       
+	00311: MIRP[nrp0,md,rd,1] 
+	00312: SRP0       
+	00313: MIRP[nrp0,md,rd,1] 
+	00314: SRP0       
+	00315: MIRP[nrp0,md,rd,1] 
+	00316: SRP0       
+	00317: MIRP[nrp0,md,rd,1] 
+	00318: SRP1       
+	00319: SRP2       
+	00320: IP         
+	00321: MDAP[rd]   
+	00322: MIRP[nrp0,md,rd,1] 
+	00323: SRP0       
+	00324: MIRP[srp0,md,rd,1] 
+	00325: RTDG       
+	00326: SRP2       
+	00327: IP         
+	00328: MDAP[rd]   
+	00329: RTG        
+	00330: SVTCA[x-axis] 
+	00331: SRP0       
+	00332: MIRP[srp0,nmd,rd,1] 
+	00333: MIRP[srp0,nmd,rd,0] 
+	00334: MDRP[nrp0,nmd,rd,0] 
+	00335: SVTCA[y-axis] 
+	00336: SRP0       
+	00337: MIRP[srp0,md,rd,1] 
+	00338: RTDG       
+	00339: SRP2       
+	00340: IP         
+	00341: MDAP[rd]   
+	00342: RTG        
+	00343: SVTCA[x-axis] 
+	00344: SRP0       
+	00345: MIRP[srp0,nmd,rd,1] 
+	00346: DELTAP1    
+	00347: MIRP[srp0,nmd,rd,0] 
+	00348: MDRP[nrp0,nmd,rd,0] 
+	00349: SVTCA[y-axis] 
+	00350: SRP0       
+	00351: MIRP[srp0,md,rd,1] 
+	00352: RTDG       
+	00353: SRP2       
+	00354: IP         
+	00355: MDAP[rd]   
+	00356: RTG        
+	00357: SVTCA[x-axis] 
+	00358: SRP0       
+	00359: MIRP[srp0,nmd,rd,1] 
+	00360: MIRP[srp0,nmd,rd,0] 
+	00361: MDRP[nrp0,nmd,rd,0] 
+	00362: SVTCA[y-axis] 
+	00363: SRP0       
+	00364: MIRP[srp0,md,rd,1] 
+	00365: RTDG       
+	00366: SRP2       
+	00367: IP         
+	00368: MDAP[rd]   
+	00369: RTG        
+	00370: SVTCA[x-axis] 
+	00371: SRP0       
+	00372: MIRP[srp0,nmd,rd,1] 
+	00373: DELTAP1    
+	00374: MIRP[srp0,nmd,rd,0] 
+	00375: MDRP[nrp0,nmd,rd,0] 
+	00376: SVTCA[y-axis] 
+	00377: SRP0       
+	00378: MIRP[srp0,md,rd,1] 
+	00379: RTDG       
+	00380: SRP2       
+	00381: IP         
+	00382: MDAP[rd]   
+	00383: RTG        
+	00384: SVTCA[x-axis] 
+	00385: SRP0       
+	00386: MIRP[srp0,nmd,rd,1] 
+	00387: MIRP[srp0,nmd,rd,0] 
+	00388: MDRP[nrp0,nmd,rd,0] 
+	00389: SVTCA[y-axis] 
+	00390: SRP0       
+	00391: MIRP[srp0,md,rd,1] 
+	00392: RTDG       
+	00393: SRP2       
+	00394: IP         
+	00395: MDAP[rd]   
+	00396: RTG        
+	00397: SVTCA[x-axis] 
+	00398: SRP0       
+	00399: MIRP[srp0,nmd,rd,1] 
+	00400: DELTAP1    
+	00401: MIRP[srp0,nmd,rd,0] 
+	00402: MDRP[nrp0,nmd,rd,0] 
+	00403: SVTCA[y-axis] 
+	00404: SRP0       
+	00405: MIRP[srp0,md,rd,1] 
+	00406: RTDG       
+	00407: SRP2       
+	00408: IP         
+	00409: MDAP[rd]   
+	00410: RTG        
+	00411: SVTCA[x-axis] 
+	00412: SRP0       
+	00413: MIRP[srp0,nmd,rd,1] 
+	00414: MIRP[srp0,nmd,rd,0] 
+	00415: MDRP[nrp0,nmd,rd,0] 
+	00416: IUP[y]     
+	00417: IUP[x]     
+	00418: SVTCA[y-axis] 
+	00419: SLOOP      
+	00420: SHPIX      
+	00421: SHPIX      
+	00422: DELTAP1    
+	00423: DELTAP2    
+	00424: SVTCA[x-axis] 
+	00425: SHPIX      
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short On
+	 15:        XDual                         On
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual                               On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:  YDual                       X-Short On
+	 26:                              X-Short On
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short On
+	 35:                                      On
+	 36:        XDual                         On
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                               On
+	 43:  YDual                       X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short On
+	 48:        XDual                         On
+	 49:  YDual                       X-Short On
+	 50:  YDual                       X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         Off
+	 53:  YDual XDual                 X-Short On
+	 54:  YDual                               On
+	 55:  YDual XDual                 X-Short Off
+	 56:        XDual         Y-Short         On
+	 57:        XDual         Y-Short         Off
+	 58:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   255,  1086)  ->  Abs (   255,  1086)
+	  1: Rel (     0,  -436)  ->  Abs (   255,   650)
+	  2: Rel (   134,     0)  ->  Abs (   389,   650)
+	  3: Rel (   219,     0)  ->  Abs (   608,   650)
+	  4: Rel (   245,  -169)  ->  Abs (   853,   481)
+	  5: Rel (     0,  -156)  ->  Abs (   853,   325)
+	  6: Rel (     0,  -142)  ->  Abs (   853,   183)
+	  7: Rel (  -204,  -183)  ->  Abs (   649,     0)
+	  8: Rel (  -138,     0)  ->  Abs (   511,     0)
+	  9: Rel (  -453,     0)  ->  Abs (    58,     0)
+	 10: Rel (   -56,     0)  ->  Abs (     2,     0)
+	 11: Rel (     0,    42)  ->  Abs (     2,    42)
+	 12: Rel (     0,    42)  ->  Abs (     2,    84)
+	 13: Rel (    56,     0)  ->  Abs (    58,    84)
+	 14: Rel (   113,     0)  ->  Abs (   171,    84)
+	 15: Rel (     0,  1002)  ->  Abs (   171,  1086)
+	 16: Rel (  -113,     0)  ->  Abs (    58,  1086)
+	 17: Rel (   -56,     0)  ->  Abs (     2,  1086)
+	 18: Rel (     0,    42)  ->  Abs (     2,  1128)
+	 19: Rel (     0,    42)  ->  Abs (     2,  1170)
+	 20: Rel (    56,     0)  ->  Abs (    58,  1170)
+	 21: Rel (   310,     0)  ->  Abs (   368,  1170)
+	 22: Rel (    56,     0)  ->  Abs (   424,  1170)
+	 23: Rel (     0,   -42)  ->  Abs (   424,  1128)
+	 24: Rel (     0,   -42)  ->  Abs (   424,  1086)
+	 25: Rel (   -56,     0)  ->  Abs (   368,  1086)
+	 26: Rel (  -113, -1002)  ->  Abs (   255,    84)
+	 27: Rel (   250,     0)  ->  Abs (   505,    84)
+	 28: Rel (   117,     0)  ->  Abs (   622,    84)
+	 29: Rel (   146,   143)  ->  Abs (   768,   227)
+	 30: Rel (     0,    96)  ->  Abs (   768,   323)
+	 31: Rel (     0,   108)  ->  Abs (   768,   431)
+	 32: Rel (  -197,   134)  ->  Abs (   571,   565)
+	 33: Rel (  -189,     0)  ->  Abs (   382,   565)
+	 34: Rel (  -127,     0)  ->  Abs (   255,   565)
+	 35: Rel (   799,   521)  ->  Abs (  1054,  1086)
+	 36: Rel (     0, -1002)  ->  Abs (  1054,    84)
+	 37: Rel (   112,     0)  ->  Abs (  1166,    84)
+	 38: Rel (    57,     0)  ->  Abs (  1223,    84)
+	 39: Rel (     0,   -42)  ->  Abs (  1223,    42)
+	 40: Rel (     0,   -42)  ->  Abs (  1223,     0)
+	 41: Rel (   -57,     0)  ->  Abs (  1166,     0)
+	 42: Rel (  -309,     0)  ->  Abs (   857,     0)
+	 43: Rel (   -57,     0)  ->  Abs (   800,     0)
+	 44: Rel (     0,    42)  ->  Abs (   800,    42)
+	 45: Rel (     0,    42)  ->  Abs (   800,    84)
+	 46: Rel (    57,     0)  ->  Abs (   857,    84)
+	 47: Rel (   112,     0)  ->  Abs (   969,    84)
+	 48: Rel (     0,  1002)  ->  Abs (   969,  1086)
+	 49: Rel (  -112,     0)  ->  Abs (   857,  1086)
+	 50: Rel (   -57,     0)  ->  Abs (   800,  1086)
+	 51: Rel (     0,    42)  ->  Abs (   800,  1128)
+	 52: Rel (     0,    42)  ->  Abs (   800,  1170)
+	 53: Rel (    57,     0)  ->  Abs (   857,  1170)
+	 54: Rel (   309,     0)  ->  Abs (  1166,  1170)
+	 55: Rel (    57,     0)  ->  Abs (  1223,  1170)
+	 56: Rel (     0,   -42)  ->  Abs (  1223,  1128)
+	 57: Rel (     0,   -42)  ->  Abs (  1223,  1086)
+	 58: Rel (   -57,     0)  ->  Abs (  1166,  1086)
+
+	Glyph 598: off = 0x0001FF1C, len = 308
+	  numberOfContours:	2
+	  xMin:			87
+	  yMin:			0
+	  xMax:			1113
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  25
+	  1:  34
+
+	  Length of Instructions:	205
+	00000: NPUSHB      (17):   152    31   169    29   169    31   184    29   184    31 
+	                             5   135     4   167     4     2     7 
+	00019: PUSHW[3]            -16     4   -19 
+	00026: PUSHB[6]             31     6    19     2     9    13 
+	00033: PUSHW[1]            676 
+	00036: NPUSHB      (11):    11    43    14    11    11    13    14    29     9    20 
+	                            16 
+	00049: PUSHW[1]            676 
+	00052: NPUSHB      (11):    18    43    15    18    18    16    15    29    20    21 
+	                            25 
+	00065: PUSHW[1]            676 
+	00068: NPUSHB      (29):    23    43     0    23    23    25     0    29    21     1 
+	                            38    34    34     9    25    16    38    21    20     2 
+	                            26    13    38     8     9     8    30    38     5 
+	00099: PUSHW[1]            -64 
+	00102: NPUSHB      (11):    23    26    52     5    26    36     0    26    30    15 
+	                            14 
+	00115: PUSHW[1]            -64 
+	00118: NPUSHB       (9):    24    26    52    14    25    35    74   121    24 
+	00129: CALL       
+	00130: FLIPOFF    
+	00131: SRP0       
+	00132: MIRP[srp0,nmd,rd,0] 
+	00133: CALL       
+	00134: ALIGNRP    
+	00135: FLIPON     
+	00136: MIRP[srp0,md,rd,1] 
+	00137: ALIGNRP    
+	00138: FLIPOFF    
+	00139: SRP0       
+	00140: MIRP[srp0,nmd,rd,2] 
+	00141: CALL       
+	00142: FLIPON     
+	00143: MIRP[nrp0,md,rd,1] 
+	00144: SVTCA[y-axis] 
+	00145: MIAP[rd+ci] 
+	00146: ALIGNRP    
+	00147: MIRP[srp0,md,rd,1] 
+	00148: ALIGNRP    
+	00149: MIAP[rd+ci] 
+	00150: ALIGNRP    
+	00151: MIRP[srp0,md,rd,1] 
+	00152: ALIGNRP    
+	00153: SRP2       
+	00154: IP         
+	00155: MDAP[rd]   
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: SRP0       
+	00158: MIRP[srp0,md,rd,1] 
+	00159: RTDG       
+	00160: SRP2       
+	00161: IP         
+	00162: MDAP[rd]   
+	00163: RTG        
+	00164: SVTCA[x-axis] 
+	00165: SRP0       
+	00166: MIRP[srp0,nmd,rd,1] 
+	00167: MIRP[srp0,nmd,rd,0] 
+	00168: MDRP[nrp0,nmd,rd,0] 
+	00169: SVTCA[y-axis] 
+	00170: SRP0       
+	00171: MIRP[srp0,md,rd,1] 
+	00172: RTDG       
+	00173: SRP2       
+	00174: IP         
+	00175: MDAP[rd]   
+	00176: RTG        
+	00177: SVTCA[x-axis] 
+	00178: SRP0       
+	00179: MIRP[srp0,nmd,rd,1] 
+	00180: MIRP[srp0,nmd,rd,0] 
+	00181: MDRP[nrp0,nmd,rd,0] 
+	00182: SVTCA[y-axis] 
+	00183: SRP0       
+	00184: MIRP[srp0,md,rd,1] 
+	00185: RTDG       
+	00186: SRP2       
+	00187: IP         
+	00188: MDAP[rd]   
+	00189: RTG        
+	00190: SVTCA[x-axis] 
+	00191: SRP0       
+	00192: MIRP[srp0,nmd,rd,1] 
+	00193: MIRP[srp0,nmd,rd,0] 
+	00194: MDRP[nrp0,nmd,rd,0] 
+	00195: IUP[y]     
+	00196: IUP[x]     
+	00197: SVTCA[y-axis] 
+	00198: SLOOP      
+	00199: SHPIX      
+	00200: SHPIX      
+	00201: SVTCA[x-axis] 
+	00202: SHPIX      
+	00203: DELTAP1    
+	00204: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual                       X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short On
+	 15:        XDual                         On
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual                               On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:  YDual                       X-Short On
+	 26:                              X-Short On
+	 27:  YDual                               On
+	 28:  YDual XDual                 X-Short Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   340,  1086)  ->  Abs (   340,  1086)
+	  1: Rel (     0,  -436)  ->  Abs (   340,   650)
+	  2: Rel (   309,     0)  ->  Abs (   649,   650)
+	  3: Rel (   219,     0)  ->  Abs (   868,   650)
+	  4: Rel (   245,  -169)  ->  Abs (  1113,   481)
+	  5: Rel (     0,  -156)  ->  Abs (  1113,   325)
+	  6: Rel (     0,  -142)  ->  Abs (  1113,   183)
+	  7: Rel (  -204,  -183)  ->  Abs (   909,     0)
+	  8: Rel (  -138,     0)  ->  Abs (   771,     0)
+	  9: Rel (  -628,     0)  ->  Abs (   143,     0)
+	 10: Rel (   -56,     0)  ->  Abs (    87,     0)
+	 11: Rel (     0,    42)  ->  Abs (    87,    42)
+	 12: Rel (     0,    42)  ->  Abs (    87,    84)
+	 13: Rel (    56,     0)  ->  Abs (   143,    84)
+	 14: Rel (   113,     0)  ->  Abs (   256,    84)
+	 15: Rel (     0,  1002)  ->  Abs (   256,  1086)
+	 16: Rel (  -113,     0)  ->  Abs (   143,  1086)
+	 17: Rel (   -56,     0)  ->  Abs (    87,  1086)
+	 18: Rel (     0,    42)  ->  Abs (    87,  1128)
+	 19: Rel (     0,    42)  ->  Abs (    87,  1170)
+	 20: Rel (    56,     0)  ->  Abs (   143,  1170)
+	 21: Rel (   310,     0)  ->  Abs (   453,  1170)
+	 22: Rel (    56,     0)  ->  Abs (   509,  1170)
+	 23: Rel (     0,   -42)  ->  Abs (   509,  1128)
+	 24: Rel (     0,   -42)  ->  Abs (   509,  1086)
+	 25: Rel (   -56,     0)  ->  Abs (   453,  1086)
+	 26: Rel (  -113, -1002)  ->  Abs (   340,    84)
+	 27: Rel (   425,     0)  ->  Abs (   765,    84)
+	 28: Rel (   117,     0)  ->  Abs (   882,    84)
+	 29: Rel (   146,   144)  ->  Abs (  1028,   228)
+	 30: Rel (     0,    95)  ->  Abs (  1028,   323)
+	 31: Rel (     0,    91)  ->  Abs (  1028,   414)
+	 32: Rel (  -172,   151)  ->  Abs (   856,   565)
+	 33: Rel (  -214,     0)  ->  Abs (   642,   565)
+	 34: Rel (  -302,     0)  ->  Abs (   340,   565)
+
+	Glyph 599: off = 0x00020050, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			129
+	  yMin:			-33
+	  xMax:			1102
+	  yMax:			1197
+
+	     0: Flags:		0x0153
+		Glyf Index:	559
+		X WOffset:	1229
+		Y WOffset:	0
+		X Scale:	-1.000000
+		Y Scale:	 1.000000
+		Other:		                   No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              0    23    15    23    79    23     2    23 
+	00009: PUSHW[1]            -64 
+	00012: PUSHB[6]             21    26    52    23   121    47 
+	00019: FLIPOFF    
+	00020: SRP0       
+	00021: MIRP[srp0,nmd,rd,2] 
+	00022: CALL       
+	00023: DELTAP1    
+	00024: SRP1       
+	00025: SHC[rp1,zp0] 
+
+	Glyph 600: off = 0x00020082, len = 468
+	  numberOfContours:	2
+	  xMin:			22
+	  yMin:			-33
+	  xMax:			1217
+	  yMax:			1197
+
+	EndPoints
+	---------
+	  0:  41
+	  1:  53
+
+	  Length of Instructions:	320
+	00000: NPUSHB      (17):   123     2   123     3   121    12   121    13   139     2 
+	                           136    12   169    12     7     5    10 
+	00019: PUSHW[1]            -16 
+	00022: PUSHB[4]              2    44    45     6 
+	00027: PUSHW[1]            -16 
+	00030: NPUSHB      (12):     3    54     2   134    44     2    53    26     9    16 
+	                            34    30 
+	00044: PUSHW[1]            676 
+	00047: NPUSHB      (18):    31    32    47    32    63    32     3    32    41    29 
+	                            32    32    30    29    29    34    35    39 
+	00067: PUSHW[1]            676 
+	00070: NPUSHB      (11):    37    43    40    37    37    39    40    29    35    23 
+	                            27 
+	00083: PUSHW[1]            676 
+	00086: NPUSHB      (18):    31    25    47    25    63    25     3    25    41    28 
+	                            25    25    27    28    29    23    22    18 
+	00106: PUSHW[1]            676 
+	00109: NPUSHB      (57):    20    43    17    20    20    18    17    29    22    41 
+	                            38    16    16    22    39    30    38    34    34    35 
+	                             2    18    27    38    22    23    22     8    46    38 
+	                            11    51    38     4    11     9     4     3    42    38 
+	                             0   143    14     1    79    14    95    14   128    14 
+	                             3    14    14    17    49    38     7 
+	00168: PUSHW[1]            -64 
+	00171: NPUSHB      (14):    25    29    52   192     7     1     7    26    55    40 
+	                            17    30    29    28 
+	00187: PUSHW[1]            -64 
+	00190: NPUSHB      (17):    26    28    52    28    64    19    24    52   143    28 
+	                             1    28    25    54   135   108    24 
+	00209: CALL       
+	00210: FLIPOFF    
+	00211: SRP0       
+	00212: MIRP[srp0,nmd,rd,0] 
+	00213: DELTAP1    
+	00214: CALL       
+	00215: CALL       
+	00216: ALIGNRP    
+	00217: FLIPON     
+	00218: MIRP[srp0,md,rd,1] 
+	00219: ALIGNRP    
+	00220: FLIPOFF    
+	00221: SRP0       
+	00222: MIRP[srp0,nmd,rd,2] 
+	00223: DELTAP1    
+	00224: CALL       
+	00225: FLIPON     
+	00226: MIRP[nrp0,md,rd,1] 
+	00227: SRP2       
+	00228: IP         
+	00229: MDAP[rd]   
+	00230: DELTAP1    
+	00231: DELTAP2    
+	00232: ALIGNRP    
+	00233: MIRP[nrp0,md,rd,1] 
+	00234: SVTCA[y-axis] 
+	00235: MIAP[rd+ci] 
+	00236: MIAP[rd+ci] 
+	00237: SRP0       
+	00238: MIRP[nrp0,md,rd,1] 
+	00239: SRP0       
+	00240: MIRP[nrp0,md,rd,1] 
+	00241: MIAP[rd+ci] 
+	00242: SRP0       
+	00243: ALIGNRP    
+	00244: MIRP[srp0,md,rd,1] 
+	00245: ALIGNRP    
+	00246: MIAP[rd+ci] 
+	00247: ALIGNRP    
+	00248: SRP0       
+	00249: MIRP[srp0,md,rd,1] 
+	00250: ALIGNRP    
+	00251: SRP2       
+	00252: IP         
+	00253: MDAP[rd]   
+	00254: MIRP[nrp0,md,rd,1] 
+	00255: SRP0       
+	00256: MIRP[srp0,md,rd,1] 
+	00257: RTDG       
+	00258: SRP2       
+	00259: IP         
+	00260: MDAP[rd]   
+	00261: RTG        
+	00262: SVTCA[x-axis] 
+	00263: SRP0       
+	00264: MIRP[srp0,nmd,rd,1] 
+	00265: MIRP[srp0,nmd,rd,0] 
+	00266: MDRP[nrp0,nmd,rd,0] 
+	00267: SVTCA[y-axis] 
+	00268: SRP0       
+	00269: MIRP[srp0,md,rd,1] 
+	00270: RTDG       
+	00271: SRP2       
+	00272: IP         
+	00273: MDAP[rd]   
+	00274: RTG        
+	00275: SVTCA[x-axis] 
+	00276: SRP0       
+	00277: MIRP[srp0,nmd,rd,1] 
+	00278: DELTAP2    
+	00279: MIRP[srp0,nmd,rd,0] 
+	00280: MDRP[nrp0,nmd,rd,0] 
+	00281: SVTCA[y-axis] 
+	00282: SRP0       
+	00283: MIRP[srp0,md,rd,1] 
+	00284: RTDG       
+	00285: SRP2       
+	00286: IP         
+	00287: MDAP[rd]   
+	00288: RTG        
+	00289: SVTCA[x-axis] 
+	00290: SRP0       
+	00291: MIRP[srp0,nmd,rd,1] 
+	00292: MIRP[srp0,nmd,rd,0] 
+	00293: MDRP[nrp0,nmd,rd,0] 
+	00294: SVTCA[y-axis] 
+	00295: SRP0       
+	00296: MIRP[srp0,md,rd,1] 
+	00297: RTDG       
+	00298: SRP2       
+	00299: IP         
+	00300: MDAP[rd]   
+	00301: RTG        
+	00302: SVTCA[x-axis] 
+	00303: SRP0       
+	00304: MIRP[srp0,nmd,rd,1] 
+	00305: DELTAP2    
+	00306: MIRP[srp0,nmd,rd,0] 
+	00307: MDRP[nrp0,nmd,rd,0] 
+	00308: IUP[y]     
+	00309: IUP[x]     
+	00310: SVTCA[y-axis] 
+	00311: SHPIX      
+	00312: SHPIX      
+	00313: DELTAP2    
+	00314: SLOOP      
+	00315: SHPIX      
+	00316: SVTCA[x-axis] 
+	00317: SLOOP      
+	00318: SHPIX      
+	00319: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:        XDual                         Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual                         On
+	  8:        XDual         Y-Short         On
+	  9:        XDual                         Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:                              X-Short Off
+	 14:        XDual                         On
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual                       X-Short On
+	 17:        XDual                         On
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short On
+	 29:        XDual                         On
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short On
+	 41:        XDual                         On
+	 42:  YDual               Y-Short         On
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:        XDual         Y-Short X-Short Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual                               Off
+	 48:        XDual                         On
+	 49:  YDual XDual         Y-Short         On
+	 50:        XDual                         Off
+	 51:  YDual                               On
+	 52:  YDual                       X-Short Off
+	 53:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   435,   650)  ->  Abs (   435,   650)
+	  1: Rel (     0,    29)  ->  Abs (   435,   679)
+	  2: Rel (     0,   277)  ->  Abs (   435,   956)
+	  3: Rel (   238,   241)  ->  Abs (   673,  1197)
+	  4: Rel (   157,     0)  ->  Abs (   830,  1197)
+	  5: Rel (   175,     0)  ->  Abs (  1005,  1197)
+	  6: Rel (   212,  -251)  ->  Abs (  1217,   946)
+	  7: Rel (     0,  -267)  ->  Abs (  1217,   679)
+	  8: Rel (     0,  -193)  ->  Abs (  1217,   486)
+	  9: Rel (     0,  -269)  ->  Abs (  1217,   217)
+	 10: Rel (  -214,  -250)  ->  Abs (  1003,   -33)
+	 11: Rel (  -172,     0)  ->  Abs (   831,   -33)
+	 12: Rel (  -177,     0)  ->  Abs (   654,   -33)
+	 13: Rel (  -219,   257)  ->  Abs (   435,   224)
+	 14: Rel (     0,   262)  ->  Abs (   435,   486)
+	 15: Rel (     0,    80)  ->  Abs (   435,   566)
+	 16: Rel (  -220,     0)  ->  Abs (   215,   566)
+	 17: Rel (     0,  -482)  ->  Abs (   215,    84)
+	 18: Rel (    89,     0)  ->  Abs (   304,    84)
+	 19: Rel (    56,     0)  ->  Abs (   360,    84)
+	 20: Rel (     0,   -42)  ->  Abs (   360,    42)
+	 21: Rel (     0,   -42)  ->  Abs (   360,     0)
+	 22: Rel (   -56,     0)  ->  Abs (   304,     0)
+	 23: Rel (  -226,     0)  ->  Abs (    78,     0)
+	 24: Rel (   -56,     0)  ->  Abs (    22,     0)
+	 25: Rel (     0,    42)  ->  Abs (    22,    42)
+	 26: Rel (     0,    42)  ->  Abs (    22,    84)
+	 27: Rel (    56,     0)  ->  Abs (    78,    84)
+	 28: Rel (    53,     0)  ->  Abs (   131,    84)
+	 29: Rel (     0,  1002)  ->  Abs (   131,  1086)
+	 30: Rel (   -53,     0)  ->  Abs (    78,  1086)
+	 31: Rel (   -56,     0)  ->  Abs (    22,  1086)
+	 32: Rel (     0,    42)  ->  Abs (    22,  1128)
+	 33: Rel (     0,    42)  ->  Abs (    22,  1170)
+	 34: Rel (    56,     0)  ->  Abs (    78,  1170)
+	 35: Rel (   226,     0)  ->  Abs (   304,  1170)
+	 36: Rel (    56,     0)  ->  Abs (   360,  1170)
+	 37: Rel (     0,   -42)  ->  Abs (   360,  1128)
+	 38: Rel (     0,   -42)  ->  Abs (   360,  1086)
+	 39: Rel (   -56,     0)  ->  Abs (   304,  1086)
+	 40: Rel (   -89,     0)  ->  Abs (   215,  1086)
+	 41: Rel (     0,  -436)  ->  Abs (   215,   650)
+	 42: Rel (   304,    29)  ->  Abs (   519,   679)
+	 43: Rel (     0,  -193)  ->  Abs (   519,   486)
+	 44: Rel (     0,  -210)  ->  Abs (   519,   276)
+	 45: Rel (   166,  -225)  ->  Abs (   685,    51)
+	 46: Rel (   144,     0)  ->  Abs (   829,    51)
+	 47: Rel (   303,     0)  ->  Abs (  1132,    51)
+	 48: Rel (     0,   435)  ->  Abs (  1132,   486)
+	 49: Rel (     0,   193)  ->  Abs (  1132,   679)
+	 50: Rel (     0,   434)  ->  Abs (  1132,  1113)
+	 51: Rel (  -302,     0)  ->  Abs (   830,  1113)
+	 52: Rel (  -139,     0)  ->  Abs (   691,  1113)
+	 53: Rel (  -172,  -218)  ->  Abs (   519,   895)
+
+	Glyph 601: off = 0x00020256, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			15
+	  yMin:			0
+	  xMax:			1141
+	  yMax:			1170
+
+	     0: Flags:		0x0153
+		Glyf Index:	53
+		X WOffset:	1229
+		Y WOffset:	0
+		X Scale:	-1.000000
+		Y Scale:	 1.000000
+		Other:		                   No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     1     0     1    79     1   159     1   175     1     3 
+	                             0     1   143     1   192     1     3     1 
+	00020: PUSHW[5]            699    57    74   470    24 
+	00031: CALL       
+	00032: SRP0       
+	00033: MIRP[srp0,nmd,rd,2] 
+	00034: DELTAP1    
+	00035: DELTAP2    
+	00036: SRP1       
+	00037: SHC[rp1,zp0] 
+	00038: SHC[rp1,zp0] 
+
+	Glyph 602: off = 0x00020296, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			896
+
+	     0: Flags:		0x0216
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 603: off = 0x000202A6, len = 294
+	  numberOfContours:	2
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1112
+	  yMax:			1230
+
+	EndPoints
+	---------
+	  0:  31
+	  1:  43
+
+	  Length of Instructions:	164
+	00000: NPUSHB      (36):     6    15    22    15    38    15    86    33   116    33 
+	                           164    18   180    18     7   119     3   121    30   138 
+	                            30   154    30   203    30   202    31   235    31     7 
+	                            36    40    16     2    34    42 
+	00038: PUSHW[1]            -16 
+	00041: PUSHB[3]              2    37    33 
+	00045: PUSHW[1]            -26 
+	00048: NPUSHB      (67):     2    39    26    43    38   164     0   180     0     2 
+	                             0     0     8    41    22   136    16    38    63    28 
+	                           223    28   255    28     3    28    41    38     2     7 
+	                            35    38     8    11     0    32    19    59    24   195 
+	                            38    59   112     5   144     5   224     5     3     5 
+	                            26    45    32    59   111    12   191    12   224    12 
+	                             3    12    25    44    42   142    24 
+	00117: CALL       
+	00118: FLIPOFF    
+	00119: SRP0       
+	00120: MIRP[srp0,nmd,rd,0] 
+	00121: DELTAP1    
+	00122: FLIPON     
+	00123: MIRP[nrp0,md,rd,1] 
+	00124: FLIPOFF    
+	00125: SRP0       
+	00126: MIRP[srp0,nmd,rd,2] 
+	00127: DELTAP1    
+	00128: FLIPON     
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: MIRP[srp0,nmd,rd,0] 
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: SRP1       
+	00133: SHP[rp1,zp0] 
+	00134: SVTCA[y-axis] 
+	00135: MIAP[rd+ci] 
+	00136: MIRP[nrp0,md,rd,1] 
+	00137: MIAP[rd+ci] 
+	00138: MIRP[nrp0,md,rd,1] 
+	00139: MDAP[rd]   
+	00140: DELTAP1    
+	00141: MIRP[srp0,md,rd,1] 
+	00142: MIRP[nrp0,nmd,rd,0] 
+	00143: RTHG       
+	00144: SRP1       
+	00145: SRP2       
+	00146: IP         
+	00147: MDAP[rd]   
+	00148: DELTAP2    
+	00149: RTG        
+	00150: MIRP[nrp0,md,rd,1] 
+	00151: IUP[y]     
+	00152: IUP[x]     
+	00153: SHPIX      
+	00154: SLOOP      
+	00155: SHPIX      
+	00156: SVTCA[x-axis] 
+	00157: SLOOP      
+	00158: SHPIX      
+	00159: SLOOP      
+	00160: SHPIX      
+	00161: SVTCA[y-axis] 
+	00162: DELTAP1    
+	00163: DELTAP2    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:                                      Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                                      Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:        XDual                         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:                      Y-Short X-Short Off
+	 31:                      Y-Short X-Short Off
+	 32:                              X-Short On
+	 33:        XDual         Y-Short         Off
+	 34:        XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   219,   701)  ->  Abs (   219,   701)
+	  1: Rel (   150,   195)  ->  Abs (   369,   896)
+	  2: Rel (   254,     0)  ->  Abs (   623,   896)
+	  3: Rel (   226,     0)  ->  Abs (   849,   896)
+	  4: Rel (   263,  -269)  ->  Abs (  1112,   627)
+	  5: Rel (     0,  -196)  ->  Abs (  1112,   431)
+	  6: Rel (     0,  -196)  ->  Abs (  1112,   235)
+	  7: Rel (  -267,  -268)  ->  Abs (   845,   -33)
+	  8: Rel (  -224,     0)  ->  Abs (   621,   -33)
+	  9: Rel (  -160,     0)  ->  Abs (   461,   -33)
+	 10: Rel (  -227,   137)  ->  Abs (   234,   104)
+	 11: Rel (  -106,   211)  ->  Abs (   128,   315)
+	 12: Rel (     0,   196)  ->  Abs (   128,   511)
+	 13: Rel (     0,   275)  ->  Abs (   128,   786)
+	 14: Rel (    70,   211)  ->  Abs (   198,   997)
+	 15: Rel (   166,   122)  ->  Abs (   364,  1119)
+	 16: Rel (   155,     0)  ->  Abs (   519,  1119)
+	 17: Rel (   191,     0)  ->  Abs (   710,  1119)
+	 18: Rel (   149,     0)  ->  Abs (   859,  1119)
+	 19: Rel (    20,    61)  ->  Abs (   879,  1180)
+	 20: Rel (    12,    34)  ->  Abs (   891,  1214)
+	 21: Rel (    16,    16)  ->  Abs (   907,  1230)
+	 22: Rel (    20,     0)  ->  Abs (   927,  1230)
+	 23: Rel (    47,     0)  ->  Abs (   974,  1230)
+	 24: Rel (     0,   -49)  ->  Abs (   974,  1181)
+	 25: Rel (     0,   -56)  ->  Abs (   974,  1125)
+	 26: Rel (  -112,   -90)  ->  Abs (   862,  1035)
+	 27: Rel (  -142,     0)  ->  Abs (   720,  1035)
+	 28: Rel (  -201,     0)  ->  Abs (   519,  1035)
+	 29: Rel (  -100,     0)  ->  Abs (   419,  1035)
+	 30: Rel (  -129,   -69)  ->  Abs (   290,   966)
+	 31: Rel (   -57,  -124)  ->  Abs (   233,   842)
+	 32: Rel (   -13,  -409)  ->  Abs (   220,   433)
+	 33: Rel (     0,  -145)  ->  Abs (   220,   288)
+	 34: Rel (   204,  -234)  ->  Abs (   424,    54)
+	 35: Rel (   197,     0)  ->  Abs (   621,    54)
+	 36: Rel (   181,     0)  ->  Abs (   802,    54)
+	 37: Rel (   219,   221)  ->  Abs (  1021,   275)
+	 38: Rel (     0,   158)  ->  Abs (  1021,   433)
+	 39: Rel (     0,   158)  ->  Abs (  1021,   591)
+	 40: Rel (  -219,   220)  ->  Abs (   802,   811)
+	 41: Rel (  -181,     0)  ->  Abs (   621,   811)
+	 42: Rel (  -182,     0)  ->  Abs (   439,   811)
+	 43: Rel (  -219,  -220)  ->  Abs (   220,   591)
+
+	Glyph 604: off = 0x000203CC, len = 330
+	  numberOfContours:	3
+	  xMin:			123
+	  yMin:			0
+	  xMax:			1065
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  20
+	  1:  28
+	  2:  36
+
+	  Length of Instructions:	220
+	00000: NPUSHB      (19):    26    31     1    37     8    43    14    53     8    56 
+	                            14    74    11   139    11   136    12     7    12 
+	00021: PUSHW[1]            -16 
+	00024: NPUSHB      (11):    33    16    23    58    31    11    26    32     3     6 
+	                             2 
+	00037: PUSHW[1]            686 
+	00040: NPUSHB      (11):     4    47     1     4     4     2     1    34     6    16 
+	                            20 
+	00053: PUSHW[1]            686 
+	00056: NPUSHB      (86):    18    47     0    18    18    20     0    34    16    11 
+	                            21    33    36    36     7    16    27     2    59     6 
+	                             6     7    29    20    59    16     7     6    16    10 
+	                            11    29    24    59    63     9     1     9   154    32 
+	                            59    96    13   112    13     2    79    13    95    13 
+	                           127    13   144    13   160    13   191    13     6    13 
+	                            26    38    28    29    32     1    96     0   112     0 
+	                             2    47     0   144     0   160     0   191     0     4 
+	                             0    25    37   244   172    24 
+	00144: CALL       
+	00145: FLIPOFF    
+	00146: SRP0       
+	00147: MIRP[srp0,nmd,rd,0] 
+	00148: DELTAP1    
+	00149: DELTAP2    
+	00150: ALIGNRP    
+	00151: FLIPON     
+	00152: MIRP[srp0,md,rd,1] 
+	00153: ALIGNRP    
+	00154: FLIPOFF    
+	00155: SRP0       
+	00156: MIRP[srp0,nmd,rd,2] 
+	00157: DELTAP1    
+	00158: DELTAP2    
+	00159: FLIPON     
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: MIRP[srp0,nmd,rd,0] 
+	00162: DELTAP1    
+	00163: MIRP[srp0,md,rd,1] 
+	00164: SRP1       
+	00165: IP         
+	00166: SVTCA[y-axis] 
+	00167: MIAP[rd+ci] 
+	00168: MIAP[rd+ci] 
+	00169: SRP0       
+	00170: MIRP[srp0,md,rd,1] 
+	00171: ALIGNRP    
+	00172: SRP0       
+	00173: ALIGNRP    
+	00174: SRP0       
+	00175: MIRP[srp0,md,rd,1] 
+	00176: ALIGNRP    
+	00177: SRP1       
+	00178: SRP2       
+	00179: IP         
+	00180: MDAP[rd]   
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: IP         
+	00183: SRP0       
+	00184: MIRP[srp0,md,rd,1] 
+	00185: RTDG       
+	00186: SRP2       
+	00187: IP         
+	00188: MDAP[rd]   
+	00189: RTG        
+	00190: SVTCA[x-axis] 
+	00191: SRP0       
+	00192: MIRP[srp0,nmd,rd,1] 
+	00193: MIRP[srp0,nmd,rd,0] 
+	00194: MDRP[nrp0,nmd,rd,0] 
+	00195: SVTCA[y-axis] 
+	00196: SRP0       
+	00197: MIRP[srp0,md,rd,1] 
+	00198: RTDG       
+	00199: SRP2       
+	00200: IP         
+	00201: MDAP[rd]   
+	00202: RTG        
+	00203: SVTCA[x-axis] 
+	00204: SRP0       
+	00205: MIRP[srp0,nmd,rd,1] 
+	00206: MIRP[srp0,nmd,rd,0] 
+	00207: MDRP[nrp0,nmd,rd,0] 
+	00208: IUP[y]     
+	00209: IUP[x]     
+	00210: SLOOP      
+	00211: SHPIX      
+	00212: SHPIX      
+	00213: SHPIX      
+	00214: SVTCA[y-axis] 
+	00215: SHPIX      
+	00216: SVTCA[y-axis] 
+	00217: DELTAP1    
+	00218: SVTCA[x-axis] 
+	00219: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual                               On
+	  8:  YDual                               Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short On
+	 12:                      Y-Short         Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:  YDual                               On
+	 16:  YDual                               On
+	 17:  YDual                       X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual                 X-Short On
+	 21:        XDual                 X-Short On
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual                               Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                               On
+	 29:        XDual                         On
+	 30:  YDual                               On
+	 31:  YDual XDual                 X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   292,    84)  ->  Abs (   292,    84)
+	  1: Rel (     0,   697)  ->  Abs (   292,   781)
+	  2: Rel (  -113,     0)  ->  Abs (   179,   781)
+	  3: Rel (   -56,     0)  ->  Abs (   123,   781)
+	  4: Rel (     0,    42)  ->  Abs (   123,   823)
+	  5: Rel (     0,    43)  ->  Abs (   123,   866)
+	  6: Rel (    56,     0)  ->  Abs (   179,   866)
+	  7: Rel (   456,     0)  ->  Abs (   635,   866)
+	  8: Rel (   341,     0)  ->  Abs (   976,   866)
+	  9: Rel (     0,  -216)  ->  Abs (   976,   650)
+	 10: Rel (     0,  -135)  ->  Abs (   976,   515)
+	 11: Rel (  -176,   -38)  ->  Abs (   800,   477)
+	 12: Rel (   265,   -35)  ->  Abs (  1065,   442)
+	 13: Rel (     0,  -195)  ->  Abs (  1065,   247)
+	 14: Rel (     0,  -247)  ->  Abs (  1065,     0)
+	 15: Rel (  -330,     0)  ->  Abs (   735,     0)
+	 16: Rel (  -556,     0)  ->  Abs (   179,     0)
+	 17: Rel (   -56,     0)  ->  Abs (   123,     0)
+	 18: Rel (     0,    42)  ->  Abs (   123,    42)
+	 19: Rel (     0,    42)  ->  Abs (   123,    84)
+	 20: Rel (    56,     0)  ->  Abs (   179,    84)
+	 21: Rel (   197,   431)  ->  Abs (   376,   515)
+	 22: Rel (   225,     0)  ->  Abs (   601,   515)
+	 23: Rel (   291,     0)  ->  Abs (   892,   515)
+	 24: Rel (     0,   140)  ->  Abs (   892,   655)
+	 25: Rel (     0,    59)  ->  Abs (   892,   714)
+	 26: Rel (   -98,    67)  ->  Abs (   794,   781)
+	 27: Rel (  -158,     0)  ->  Abs (   636,   781)
+	 28: Rel (  -260,     0)  ->  Abs (   376,   781)
+	 29: Rel (     0,  -697)  ->  Abs (   376,    84)
+	 30: Rel (   352,     0)  ->  Abs (   728,    84)
+	 31: Rel (   252,     0)  ->  Abs (   980,    84)
+	 32: Rel (     0,   162)  ->  Abs (   980,   246)
+	 33: Rel (     0,    79)  ->  Abs (   980,   325)
+	 34: Rel (  -128,   106)  ->  Abs (   852,   431)
+	 35: Rel (  -246,     0)  ->  Abs (   606,   431)
+	 36: Rel (  -230,     0)  ->  Abs (   376,   431)
+
+	Glyph 605: off = 0x00020516, len = 272
+	  numberOfContours:	1
+	  xMin:			152
+	  yMin:			0
+	  xMax:			1088
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	197
+	00000: PUSHB[2]             17    13 
+	00003: PUSHW[1]            686 
+	00006: NPUSHB      (11):    15   200    12    15    15    13    12    34    17     6 
+	                            10 
+	00019: PUSHW[1]            686 
+	00022: NPUSHB      (11):     8   200    11     8     8    10    11    34     6     5 
+	                             1 
+	00035: PUSHW[1]            686 
+	00038: NPUSHB      (41):     3   200     0     3     3     1     0    34     5    21 
+	                            10    59     6     1    59     5     5     6    10    25 
+	                            13    32    17     6    23    59    19    19   160    18 
+	                             1    15    18   192    18   224    18   240    18     4 
+	                            18 
+	00081: PUSHW[1]            -64 
+	00084: NPUSHB      (23):    16    19    52    18    26    27    25     0    32    12 
+	                           160    11     1    64    11    80    11   224    11   240 
+	                            11     4    11 
+	00109: PUSHW[1]            -64 
+	00112: PUSHB[6]             16    19    52    11    25    26 
+	00119: PUSHW[1]            780 
+	00122: PUSHB[2]            173    24 
+	00125: CALL       
+	00126: FLIPOFF    
+	00127: SRP0       
+	00128: MIRP[srp0,nmd,rd,0] 
+	00129: CALL       
+	00130: DELTAP1    
+	00131: DELTAP2    
+	00132: ALIGNRP    
+	00133: FLIPON     
+	00134: MIRP[srp0,md,rd,1] 
+	00135: ALIGNRP    
+	00136: FLIPOFF    
+	00137: SRP0       
+	00138: MIRP[srp0,nmd,rd,2] 
+	00139: CALL       
+	00140: DELTAP1    
+	00141: DELTAP2    
+	00142: ALIGNRP    
+	00143: FLIPON     
+	00144: SRP0       
+	00145: MIRP[nrp0,md,rd,1] 
+	00146: SVTCA[y-axis] 
+	00147: MIAP[rd+ci] 
+	00148: MIRP[srp0,md,rd,1] 
+	00149: ALIGNRP    
+	00150: MIAP[rd+ci] 
+	00151: ALIGNRP    
+	00152: SRP0       
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: SRP0       
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: MDAP[rd]   
+	00157: SRP0       
+	00158: MIRP[srp0,md,rd,1] 
+	00159: RTDG       
+	00160: SRP2       
+	00161: IP         
+	00162: MDAP[rd]   
+	00163: RTG        
+	00164: SVTCA[x-axis] 
+	00165: SRP0       
+	00166: MIRP[srp0,nmd,rd,1] 
+	00167: MIRP[srp0,nmd,rd,0] 
+	00168: MDRP[nrp0,nmd,rd,0] 
+	00169: SVTCA[y-axis] 
+	00170: SRP0       
+	00171: MIRP[srp0,md,rd,1] 
+	00172: RTDG       
+	00173: SRP2       
+	00174: IP         
+	00175: MDAP[rd]   
+	00176: RTG        
+	00177: SVTCA[x-axis] 
+	00178: SRP0       
+	00179: MIRP[srp0,nmd,rd,1] 
+	00180: MIRP[srp0,nmd,rd,0] 
+	00181: MDRP[nrp0,nmd,rd,0] 
+	00182: SVTCA[y-axis] 
+	00183: SRP0       
+	00184: MIRP[srp0,md,rd,1] 
+	00185: RTDG       
+	00186: SRP2       
+	00187: IP         
+	00188: MDAP[rd]   
+	00189: RTG        
+	00190: SVTCA[x-axis] 
+	00191: SRP0       
+	00192: MIRP[srp0,nmd,rd,1] 
+	00193: MIRP[srp0,nmd,rd,0] 
+	00194: MDRP[nrp0,nmd,rd,0] 
+	00195: IUP[y]     
+	00196: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                               On
+	  7:  YDual                       X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                         On
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual                               On
+	 19:        XDual                         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:        XDual                         On
+	 25:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   493,    84)  ->  Abs (   493,    84)
+	  1: Rel (   200,     0)  ->  Abs (   693,    84)
+	  2: Rel (    56,     0)  ->  Abs (   749,    84)
+	  3: Rel (     0,   -42)  ->  Abs (   749,    42)
+	  4: Rel (     0,   -42)  ->  Abs (   749,     0)
+	  5: Rel (   -56,     0)  ->  Abs (   693,     0)
+	  6: Rel (  -485,     0)  ->  Abs (   208,     0)
+	  7: Rel (   -56,     0)  ->  Abs (   152,     0)
+	  8: Rel (     0,    42)  ->  Abs (   152,    42)
+	  9: Rel (     0,    42)  ->  Abs (   152,    84)
+	 10: Rel (    56,     0)  ->  Abs (   208,    84)
+	 11: Rel (   200,     0)  ->  Abs (   408,    84)
+	 12: Rel (     0,   697)  ->  Abs (   408,   781)
+	 13: Rel (  -200,     0)  ->  Abs (   208,   781)
+	 14: Rel (   -56,     0)  ->  Abs (   152,   781)
+	 15: Rel (     0,    42)  ->  Abs (   152,   823)
+	 16: Rel (     0,    43)  ->  Abs (   152,   866)
+	 17: Rel (    56,     0)  ->  Abs (   208,   866)
+	 18: Rel (   880,     0)  ->  Abs (  1088,   866)
+	 19: Rel (     0,  -419)  ->  Abs (  1088,   447)
+	 20: Rel (     0,   -56)  ->  Abs (  1088,   391)
+	 21: Rel (   -43,     0)  ->  Abs (  1045,   391)
+	 22: Rel (   -42,     0)  ->  Abs (  1003,   391)
+	 23: Rel (     0,    56)  ->  Abs (  1003,   447)
+	 24: Rel (     0,   334)  ->  Abs (  1003,   781)
+	 25: Rel (  -510,     0)  ->  Abs (   493,   781)
+
+	Glyph 606: off = 0x00020626, len = 340
+	  numberOfContours:	2
+	  xMin:			90
+	  yMin:			-211
+	  xMax:			1139
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  35
+	  1:  41
+
+	  Length of Instructions:	222
+	00000: PUSHW[2]             39   -32 
+	00005: NPUSHB      (10):    25    28    52   103    12   102    38     2    19    15 
+	00017: PUSHW[1]            686 
+	00020: NPUSHB      (11):    17    47    14    17    17    15    14    34    19    20 
+	                            24 
+	00033: PUSHW[1]            686 
+	00036: NPUSHB      (43):    22    92    25    22    22    24    25    34    20    11 
+	                            39    24    36    36    15    59    20    19     6    10 
+	                            84    39    27    40    40    39    59     0     1    10 
+	                            33     4    11    32    39    39     7    36    32    48 
+	                            14     1    14 
+	00081: PUSHW[1]            787 
+	00084: NPUSHB      (11):    26    41    40    32    25    26    26     7    35    59 
+	                            30 
+	00097: PUSHW[1]            -64 
+	00100: NPUSHB      (18):    31    35    52    15    30    32    30    63    30   144 
+	                            30     4    30    26    43     2    59     7 
+	00120: PUSHW[1]            -64 
+	00123: NPUSHB      (14):    31    35    52    15     7    32     7   144     7     3 
+	                             7    25    42   230 
+	00139: PUSHW[2]            338    24 
+	00144: CALL       
+	00145: FLIPOFF    
+	00146: SRP0       
+	00147: MIRP[srp0,nmd,rd,0] 
+	00148: DELTAP1    
+	00149: CALL       
+	00150: FLIPON     
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: FLIPOFF    
+	00153: SRP0       
+	00154: MIRP[srp0,nmd,rd,2] 
+	00155: DELTAP1    
+	00156: CALL       
+	00157: FLIPON     
+	00158: MIRP[nrp0,md,rd,1] 
+	00159: SRP2       
+	00160: IP         
+	00161: MDAP[rd]   
+	00162: ALIGNRP    
+	00163: MIRP[srp0,md,rd,1] 
+	00164: ALIGNRP    
+	00165: SRP0       
+	00166: MIRP[srp0,md,rd,1] 
+	00167: DELTAP1    
+	00168: MIRP[srp0,md,rd,1] 
+	00169: SRP1       
+	00170: IP         
+	00171: MDAP[rd]   
+	00172: MIRP[nrp0,md,rd,1] 
+	00173: SVTCA[y-axis] 
+	00174: MDAP[rd]   
+	00175: ALIGNRP    
+	00176: MIAP[rd+ci] 
+	00177: ALIGNRP    
+	00178: MIRP[srp0,md,rd,1] 
+	00179: ALIGNRP    
+	00180: SRP0       
+	00181: ALIGNRP    
+	00182: SRP0       
+	00183: MIRP[nrp0,nmd,rd,0] 
+	00184: MIAP[rd+ci] 
+	00185: ALIGNRP    
+	00186: MIRP[srp0,md,rd,1] 
+	00187: ALIGNRP    
+	00188: SRP0       
+	00189: ALIGNRP    
+	00190: SRP1       
+	00191: SHP[rp1,zp0] 
+	00192: SRP0       
+	00193: MIRP[srp0,md,rd,1] 
+	00194: RTDG       
+	00195: SRP2       
+	00196: IP         
+	00197: MDAP[rd]   
+	00198: RTG        
+	00199: SVTCA[x-axis] 
+	00200: SRP0       
+	00201: MIRP[srp0,nmd,rd,1] 
+	00202: MIRP[srp0,nmd,rd,0] 
+	00203: MDRP[nrp0,nmd,rd,0] 
+	00204: SVTCA[y-axis] 
+	00205: SRP0       
+	00206: MIRP[srp0,md,rd,1] 
+	00207: RTDG       
+	00208: SRP2       
+	00209: IP         
+	00210: MDAP[rd]   
+	00211: RTG        
+	00212: SVTCA[x-axis] 
+	00213: SRP0       
+	00214: MIRP[srp0,nmd,rd,1] 
+	00215: MIRP[srp0,nmd,rd,0] 
+	00216: MDRP[nrp0,nmd,rd,0] 
+	00217: IUP[y]     
+	00218: IUP[x]     
+	00219: SVTCA[x-axis] 
+	00220: DELTAP1    
+	00221: CALL       
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                               On
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:        XDual                         On
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual                               On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short On
+	 26:        XDual                         On
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:                                      On
+	 37:        XDual                         On
+	 38:        XDual         Y-Short         Off
+	 39:                      Y-Short X-Short On
+	 40:  YDual                               On
+	 41:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1055,     0)  ->  Abs (  1055,     0)
+	  1: Rel (  -881,     0)  ->  Abs (   174,     0)
+	  2: Rel (     0,  -148)  ->  Abs (   174,  -148)
+	  3: Rel (     0,   -63)  ->  Abs (   174,  -211)
+	  4: Rel (   -43,     0)  ->  Abs (   131,  -211)
+	  5: Rel (   -41,     0)  ->  Abs (    90,  -211)
+	  6: Rel (     0,    67)  ->  Abs (    90,  -144)
+	  7: Rel (     0,   159)  ->  Abs (    90,    15)
+	  8: Rel (     0,    52)  ->  Abs (    90,    67)
+	  9: Rel (    25,    17)  ->  Abs (   115,    84)
+	 10: Rel (    27,     2)  ->  Abs (   142,    86)
+	 11: Rel (    72,     5)  ->  Abs (   214,    91)
+	 12: Rel (   190,   131)  ->  Abs (   404,   222)
+	 13: Rel (     0,   202)  ->  Abs (   404,   424)
+	 14: Rel (     0,   357)  ->  Abs (   404,   781)
+	 15: Rel (  -110,     0)  ->  Abs (   294,   781)
+	 16: Rel (   -71,     0)  ->  Abs (   223,   781)
+	 17: Rel (     0,    42)  ->  Abs (   223,   823)
+	 18: Rel (     0,    43)  ->  Abs (   223,   866)
+	 19: Rel (    71,     0)  ->  Abs (   294,   866)
+	 20: Rel (   775,     0)  ->  Abs (  1069,   866)
+	 21: Rel (    70,     0)  ->  Abs (  1139,   866)
+	 22: Rel (     0,   -43)  ->  Abs (  1139,   823)
+	 23: Rel (     0,   -42)  ->  Abs (  1139,   781)
+	 24: Rel (   -70,     0)  ->  Abs (  1069,   781)
+	 25: Rel (   -83,     0)  ->  Abs (   986,   781)
+	 26: Rel (     0,  -697)  ->  Abs (   986,    84)
+	 27: Rel (    83,     0)  ->  Abs (  1069,    84)
+	 28: Rel (    45,     0)  ->  Abs (  1114,    84)
+	 29: Rel (    25,   -23)  ->  Abs (  1139,    61)
+	 30: Rel (     0,   -46)  ->  Abs (  1139,    15)
+	 31: Rel (     0,  -159)  ->  Abs (  1139,  -144)
+	 32: Rel (     0,   -67)  ->  Abs (  1139,  -211)
+	 33: Rel (   -41,     0)  ->  Abs (  1098,  -211)
+	 34: Rel (   -43,     0)  ->  Abs (  1055,  -211)
+	 35: Rel (     0,    63)  ->  Abs (  1055,  -148)
+	 36: Rel (  -567,   929)  ->  Abs (   488,   781)
+	 37: Rel (     0,  -357)  ->  Abs (   488,   424)
+	 38: Rel (     0,  -247)  ->  Abs (   488,   177)
+	 39: Rel (  -142,   -93)  ->  Abs (   346,    84)
+	 40: Rel (   555,     0)  ->  Abs (   901,    84)
+	 41: Rel (     0,   697)  ->  Abs (   901,   781)
+
+	Glyph 607: off = 0x0002077A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1071
+	  yMax:			896
+
+	     0: Flags:		0x0216
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 608: off = 0x0002078A, len = 892
+	  numberOfContours:	1
+	  xMin:			20
+	  yMin:			0
+	  xMax:			1208
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  99
+
+	  Length of Instructions:	639
+	00000: PUSHB[4]             26    35     1    86 
+	00005: PUSHW[1]            -16 
+	00008: NPUSHB       (9):    29    31    52    36    16    32    34    52    53 
+	00019: PUSHW[1]            -16 
+	00022: PUSHB[4]             32    34    52    22 
+	00027: PUSHW[1]            -16 
+	00030: NPUSHB      (55):    17    20    52     6    22     6    54     9    67    28 
+	                             4    28     5    28    24    28    35    19    85    42 
+	                             4    42    20    36    69    36    85    51    22    59 
+	                            67    64    22    90     4    90    20    89    23    89 
+	                            36   198    54   231    53   231    54   246    53    23 
+	                            19    70    16     2    44 
+	00087: PUSHW[1]            -64 
+	00090: PUSHB[4]              9    14    52    40 
+	00095: PUSHW[1]            -64 
+	00098: PUSHB[4]              9    14    52    42 
+	00103: PUSHW[1]            -64 
+	00106: PUSHB[4]              9    14    52    99 
+	00111: PUSHW[1]            -64 
+	00114: PUSHB[4]              9    14    52    95 
+	00119: PUSHW[1]            -64 
+	00122: PUSHB[4]              9    14    52    97 
+	00127: PUSHW[1]            -64 
+	00130: NPUSHB      (44):     9    14    52    90    64     9    12    52    94    64 
+	                             9    12    52    92    64     9    12    52    45    64 
+	                             9    12    52    49    64     9    12    52    47    64 
+	                             9    12    52    48    42    63    47    63    92    48 
+	                            97     4    94    90 
+	00176: PUSHW[1]            686 
+	00179: NPUSHB      (14):   207    92     1    92    70    89    92    92    90    89 
+	                            34    94    95    99 
+	00195: PUSHW[1]            686 
+	00198: NPUSHB      (17):   192    97     1   128    97     1    97    70     0    97 
+	                            97    99     0    34    95    44    40 
+	00217: PUSHW[1]            686 
+	00220: NPUSHB      (11):    42    70    39    42    42    40    39    34    44    45 
+	                            49 
+	00233: PUSHW[1]            686 
+	00236: NPUSHB     (174):    47    70    50    47    47    49    50    34    45    53 
+	                            56    56    32    64    66    20    64    64    66    36 
+	                            33    33    32    25    23    20    25    25    23    83 
+	                            85    85    32    68    70    20    68    68    70     6 
+	                             4     4    32    21    19    20    21    21    19    22 
+	                            67     1    66    53    56    64    33    25    36    23 
+	                             8    45    51     6    19     4    21    83    70    85 
+	                            68     8     1    72    17    59     8    99    90    59 
+	                            94    26    59    30    63    59    59    75    14     1 
+	                            16    88     1    88    33    38    52    51    51    94 
+	                            30    59    59    44    45    10     8    95    94    94 
+	                            81     6    53    56    66    64     4    61    85    68 
+	                            83    70     4    73    50     4    21    19     6     4 
+	                            16    36    23    33    25     4    28    39    67    61 
+	                            50    22    39    12    73    59    77    16    59   239 
+	                            12     1    12    89    28   224    77   240    77     2 
+	                            77    89    61   128    28     1    16    28    64    28 
+	                            80    28     3    28 
+	00412: PUSHW[1]            646 
+	00415: PUSHB[5]             39   255    61     1    61 
+	00421: PUSHW[1]            646 
+	00424: NPUSHB      (12):    50     0    39    89    39    32     0    50   240    50 
+	                             2    50 
+	00438: MDAP[rd]   
+	00439: DELTAP1    
+	00440: MIRP[nrp0,md,rd,1] 
+	00441: ALIGNRP    
+	00442: SRP0       
+	00443: ALIGNRP    
+	00444: SRP0       
+	00445: MIRP[nrp0,nmd,rd,0] 
+	00446: DELTAP1    
+	00447: SRP0       
+	00448: MIRP[nrp0,nmd,rd,0] 
+	00449: DELTAP1    
+	00450: DELTAP1    
+	00451: SRP0       
+	00452: MIRP[nrp0,nmd,rd,0] 
+	00453: DELTAP1    
+	00454: SRP0       
+	00455: MIRP[srp0,nmd,rd,0] 
+	00456: DELTAP1    
+	00457: MIRP[nrp0,md,rd,1] 
+	00458: SRP0       
+	00459: MIRP[nrp0,md,rd,1] 
+	00460: SRP1       
+	00461: SRP2       
+	00462: IP         
+	00463: SRP1       
+	00464: SRP2       
+	00465: IP         
+	00466: SRP1       
+	00467: SRP2       
+	00468: SLOOP      
+	00469: IP         
+	00470: SRP2       
+	00471: SLOOP      
+	00472: IP         
+	00473: SRP1       
+	00474: SRP2       
+	00475: SLOOP      
+	00476: IP         
+	00477: SRP2       
+	00478: SLOOP      
+	00479: IP         
+	00480: SVTCA[y-axis] 
+	00481: MIAP[rd+ci] 
+	00482: ALIGNRP    
+	00483: SRP0       
+	00484: ALIGNRP    
+	00485: ALIGNRP    
+	00486: MIAP[rd+ci] 
+	00487: ALIGNRP    
+	00488: ALIGNRP    
+	00489: SRP0       
+	00490: ALIGNRP    
+	00491: SRP2       
+	00492: IP         
+	00493: MDAP[rd]   
+	00494: ALIGNRP    
+	00495: ALIGNRP    
+	00496: MIRP[srp0,md,rd,1] 
+	00497: DELTAP3    
+	00498: ALIGNRP    
+	00499: MDAP[rd]   
+	00500: ALIGNRP    
+	00501: SRP0       
+	00502: MIRP[nrp0,md,rd,1] 
+	00503: SRP0       
+	00504: MIRP[nrp0,md,rd,1] 
+	00505: SRP0       
+	00506: MIRP[srp0,md,rd,1] 
+	00507: ALIGNRP    
+	00508: SRP0       
+	00509: MIRP[srp0,md,rd,1] 
+	00510: ALIGNRP    
+	00511: SRP1       
+	00512: SLOOP      
+	00513: IP         
+	00514: SRP1       
+	00515: SRP2       
+	00516: SLOOP      
+	00517: IP         
+	00518: SRP2       
+	00519: IP         
+	00520: IP         
+	00521: SDPVTL[1]  
+	00522: SFVTPV     
+	00523: MDAP[nrd]  
+	00524: CALL       
+	00525: SFVTPV     
+	00526: RDTG       
+	00527: SRP0       
+	00528: MDRP[nrp0,nmd,rd,0] 
+	00529: SDPVTL[1]  
+	00530: SFVTPV     
+	00531: MDAP[nrd]  
+	00532: RTG        
+	00533: CALL       
+	00534: SFVTPV     
+	00535: RDTG       
+	00536: SRP0       
+	00537: MDRP[nrp0,nmd,rd,0] 
+	00538: SDPVTL[1]  
+	00539: SFVTPV     
+	00540: MDAP[nrd]  
+	00541: RTG        
+	00542: CALL       
+	00543: SFVTPV     
+	00544: RDTG       
+	00545: SRP0       
+	00546: MDRP[nrp0,nmd,rd,0] 
+	00547: SDPVTL[1]  
+	00548: SFVTPV     
+	00549: MDAP[nrd]  
+	00550: RTG        
+	00551: CALL       
+	00552: SFVTPV     
+	00553: RDTG       
+	00554: SRP0       
+	00555: MDRP[nrp0,nmd,rd,0] 
+	00556: RTG        
+	00557: SVTCA[y-axis] 
+	00558: SRP0       
+	00559: MIRP[srp0,md,rd,1] 
+	00560: RTDG       
+	00561: SRP2       
+	00562: IP         
+	00563: MDAP[rd]   
+	00564: RTG        
+	00565: SVTCA[x-axis] 
+	00566: SRP0       
+	00567: MIRP[srp0,nmd,rd,1] 
+	00568: MIRP[srp0,nmd,rd,0] 
+	00569: MDRP[nrp0,nmd,rd,0] 
+	00570: SVTCA[y-axis] 
+	00571: SRP0       
+	00572: MIRP[srp0,md,rd,1] 
+	00573: RTDG       
+	00574: SRP2       
+	00575: IP         
+	00576: MDAP[rd]   
+	00577: RTG        
+	00578: SVTCA[x-axis] 
+	00579: SRP0       
+	00580: MIRP[srp0,nmd,rd,1] 
+	00581: MIRP[srp0,nmd,rd,0] 
+	00582: MDRP[nrp0,nmd,rd,0] 
+	00583: SVTCA[y-axis] 
+	00584: SRP0       
+	00585: MIRP[srp0,md,rd,1] 
+	00586: RTDG       
+	00587: SRP2       
+	00588: IP         
+	00589: MDAP[rd]   
+	00590: RTG        
+	00591: SVTCA[x-axis] 
+	00592: SRP0       
+	00593: MIRP[srp0,nmd,rd,1] 
+	00594: DELTAP1    
+	00595: DELTAP2    
+	00596: MIRP[srp0,nmd,rd,0] 
+	00597: MDRP[nrp0,nmd,rd,0] 
+	00598: SVTCA[y-axis] 
+	00599: SRP0       
+	00600: MIRP[srp0,md,rd,1] 
+	00601: RTDG       
+	00602: SRP2       
+	00603: IP         
+	00604: MDAP[rd]   
+	00605: RTG        
+	00606: SVTCA[x-axis] 
+	00607: SRP0       
+	00608: MIRP[srp0,nmd,rd,1] 
+	00609: DELTAP2    
+	00610: MIRP[srp0,nmd,rd,0] 
+	00611: MDRP[nrp0,nmd,rd,0] 
+	00612: SVTCA[x-axis] 
+	00613: DELTAP1    
+	00614: CALL       
+	00615: CALL       
+	00616: CALL       
+	00617: CALL       
+	00618: CALL       
+	00619: CALL       
+	00620: CALL       
+	00621: CALL       
+	00622: CALL       
+	00623: CALL       
+	00624: CALL       
+	00625: CALL       
+	00626: IUP[y]     
+	00627: IUP[x]     
+	00628: SVTCA[y-axis] 
+	00629: SLOOP      
+	00630: SHPIX      
+	00631: SVTCA[x-axis] 
+	00632: DELTAP1    
+	00633: CALL       
+	00634: CALL       
+	00635: CALL       
+	00636: CALL       
+	00637: SVTCA[y-axis] 
+	00638: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual                       X-Short Off
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:                      Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short On
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual               Y-Short X-Short On
+	 35:  YDual               Y-Short X-Short On
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short On
+	 39:        XDual                         On
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short On
+	 51:        XDual                         On
+	 52:  YDual                       X-Short On
+	 53:  YDual                       X-Short Off
+	 54:                      Y-Short X-Short On
+	 55:                      Y-Short X-Short On
+	 56:                      Y-Short X-Short Off
+	 57:                      Y-Short X-Short Off
+	 58:  YDual                       X-Short On
+	 59:  YDual                       X-Short On
+	 60:  YDual                       X-Short Off
+	 61:  YDual XDual         Y-Short         On
+	 62:  YDual XDual         Y-Short         Off
+	 63:  YDual XDual                 X-Short On
+	 64:  YDual XDual                 X-Short On
+	 65:  YDual XDual         Y-Short X-Short On
+	 66:  YDual XDual         Y-Short X-Short Off
+	 67:  YDual XDual         Y-Short X-Short On
+	 68:  YDual               Y-Short X-Short Off
+	 69:  YDual               Y-Short X-Short On
+	 70:  YDual               Y-Short X-Short Off
+	 71:  YDual               Y-Short X-Short Off
+	 72:  YDual                       X-Short On
+	 73:        XDual         Y-Short         On
+	 74:        XDual         Y-Short         Off
+	 75:  YDual                       X-Short On
+	 76:  YDual                       X-Short Off
+	 77:  YDual XDual         Y-Short         On
+	 78:  YDual XDual         Y-Short         On
+	 79:  YDual XDual         Y-Short         Off
+	 80:  YDual XDual         Y-Short X-Short Off
+	 81:  YDual XDual                 X-Short On
+	 82:  YDual XDual                 X-Short Off
+	 83:        XDual         Y-Short X-Short Off
+	 84:        XDual         Y-Short X-Short On
+	 85:        XDual         Y-Short X-Short Off
+	 86:        XDual         Y-Short X-Short Off
+	 87:  YDual XDual                 X-Short On
+	 88:  YDual XDual                 X-Short On
+	 89:        XDual                         On
+	 90:  YDual                       X-Short On
+	 91:  YDual                       X-Short Off
+	 92:  YDual XDual         Y-Short         On
+	 93:  YDual XDual         Y-Short         Off
+	 94:  YDual XDual                 X-Short On
+	 95:  YDual XDual                 X-Short On
+	 96:  YDual XDual                 X-Short Off
+	 97:        XDual         Y-Short         On
+	 98:        XDual         Y-Short         Off
+	 99:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   657,   781)  ->  Abs (   657,   781)
+	  1: Rel (     0,  -274)  ->  Abs (   657,   507)
+	  2: Rel (    20,     0)  ->  Abs (   677,   507)
+	  3: Rel (    40,     0)  ->  Abs (   717,   507)
+	  4: Rel (    62,    62)  ->  Abs (   779,   569)
+	  5: Rel (    74,   115)  ->  Abs (   853,   684)
+	  6: Rel (    75,   117)  ->  Abs (   928,   801)
+	  7: Rel (    87,    65)  ->  Abs (  1015,   866)
+	  8: Rel (    84,     0)  ->  Abs (  1099,   866)
+	  9: Rel (    46,     0)  ->  Abs (  1145,   866)
+	 10: Rel (    24,   -28)  ->  Abs (  1169,   838)
+	 11: Rel (     0,   -43)  ->  Abs (  1169,   795)
+	 12: Rel (     0,   -70)  ->  Abs (  1169,   725)
+	 13: Rel (     0,   -64)  ->  Abs (  1169,   661)
+	 14: Rel (   -41,     0)  ->  Abs (  1128,   661)
+	 15: Rel (   -44,     0)  ->  Abs (  1084,   661)
+	 16: Rel (     0,    57)  ->  Abs (  1084,   718)
+	 17: Rel (     0,    63)  ->  Abs (  1084,   781)
+	 18: Rel (   -44,     0)  ->  Abs (  1040,   781)
+	 19: Rel (   -61,   -45)  ->  Abs (   979,   736)
+	 20: Rel (   -60,   -96)  ->  Abs (   919,   640)
+	 21: Rel (   -80,  -131)  ->  Abs (   839,   509)
+	 22: Rel (   -42,   -30)  ->  Abs (   797,   479)
+	 23: Rel (    92,   -51)  ->  Abs (   889,   428)
+	 24: Rel (    82,  -146)  ->  Abs (   971,   282)
+	 25: Rel (   110,  -198)  ->  Abs (  1081,    84)
+	 26: Rel (    57,     0)  ->  Abs (  1138,    84)
+	 27: Rel (    70,     0)  ->  Abs (  1208,    84)
+	 28: Rel (     0,   -42)  ->  Abs (  1208,    42)
+	 29: Rel (     0,   -42)  ->  Abs (  1208,     0)
+	 30: Rel (   -70,     0)  ->  Abs (  1138,     0)
+	 31: Rel (   -54,     0)  ->  Abs (  1084,     0)
+	 32: Rel (   -41,     0)  ->  Abs (  1043,     0)
+	 33: Rel (   -20,    11)  ->  Abs (  1023,    11)
+	 34: Rel (   -19,    35)  ->  Abs (  1004,    46)
+	 35: Rel (  -110,   198)  ->  Abs (   894,   244)
+	 36: Rel (   -99,   179)  ->  Abs (   795,   423)
+	 37: Rel (  -110,     0)  ->  Abs (   685,   423)
+	 38: Rel (   -28,     0)  ->  Abs (   657,   423)
+	 39: Rel (     0,  -339)  ->  Abs (   657,    84)
+	 40: Rel (    58,     0)  ->  Abs (   715,    84)
+	 41: Rel (    71,     0)  ->  Abs (   786,    84)
+	 42: Rel (     0,   -42)  ->  Abs (   786,    42)
+	 43: Rel (     0,   -42)  ->  Abs (   786,     0)
+	 44: Rel (   -71,     0)  ->  Abs (   715,     0)
+	 45: Rel (  -202,     0)  ->  Abs (   513,     0)
+	 46: Rel (   -71,     0)  ->  Abs (   442,     0)
+	 47: Rel (     0,    42)  ->  Abs (   442,    42)
+	 48: Rel (     0,    42)  ->  Abs (   442,    84)
+	 49: Rel (    71,     0)  ->  Abs (   513,    84)
+	 50: Rel (    59,     0)  ->  Abs (   572,    84)
+	 51: Rel (     0,   339)  ->  Abs (   572,   423)
+	 52: Rel (   -29,     0)  ->  Abs (   543,   423)
+	 53: Rel (  -110,     0)  ->  Abs (   433,   423)
+	 54: Rel (   -99,  -179)  ->  Abs (   334,   244)
+	 55: Rel (  -110,  -198)  ->  Abs (   224,    46)
+	 56: Rel (   -19,   -34)  ->  Abs (   205,    12)
+	 57: Rel (   -19,   -12)  ->  Abs (   186,     0)
+	 58: Rel (   -39,     0)  ->  Abs (   147,     0)
+	 59: Rel (   -57,     0)  ->  Abs (    90,     0)
+	 60: Rel (   -70,     0)  ->  Abs (    20,     0)
+	 61: Rel (     0,    42)  ->  Abs (    20,    42)
+	 62: Rel (     0,    42)  ->  Abs (    20,    84)
+	 63: Rel (    70,     0)  ->  Abs (    90,    84)
+	 64: Rel (    57,     0)  ->  Abs (   147,    84)
+	 65: Rel (   111,   198)  ->  Abs (   258,   282)
+	 66: Rel (    75,   134)  ->  Abs (   333,   416)
+	 67: Rel (    98,    63)  ->  Abs (   431,   479)
+	 68: Rel (   -42,    34)  ->  Abs (   389,   513)
+	 69: Rel (   -80,   127)  ->  Abs (   309,   640)
+	 70: Rel (   -61,    95)  ->  Abs (   248,   735)
+	 71: Rel (   -59,    46)  ->  Abs (   189,   781)
+	 72: Rel (   -45,     0)  ->  Abs (   144,   781)
+	 73: Rel (     0,   -63)  ->  Abs (   144,   718)
+	 74: Rel (     0,   -57)  ->  Abs (   144,   661)
+	 75: Rel (   -42,     0)  ->  Abs (   102,   661)
+	 76: Rel (   -43,     0)  ->  Abs (    59,   661)
+	 77: Rel (     0,    64)  ->  Abs (    59,   725)
+	 78: Rel (     0,    70)  ->  Abs (    59,   795)
+	 79: Rel (     0,    43)  ->  Abs (    59,   838)
+	 80: Rel (    22,    28)  ->  Abs (    81,   866)
+	 81: Rel (    35,     0)  ->  Abs (   116,   866)
+	 82: Rel (    88,     0)  ->  Abs (   204,   866)
+	 83: Rel (   101,   -65)  ->  Abs (   305,   801)
+	 84: Rel (    71,  -117)  ->  Abs (   376,   684)
+	 85: Rel (    74,  -123)  ->  Abs (   450,   561)
+	 86: Rel (    71,   -54)  ->  Abs (   521,   507)
+	 87: Rel (    30,     0)  ->  Abs (   551,   507)
+	 88: Rel (    21,     0)  ->  Abs (   572,   507)
+	 89: Rel (     0,   274)  ->  Abs (   572,   781)
+	 90: Rel (   -59,     0)  ->  Abs (   513,   781)
+	 91: Rel (   -71,     0)  ->  Abs (   442,   781)
+	 92: Rel (     0,    42)  ->  Abs (   442,   823)
+	 93: Rel (     0,    43)  ->  Abs (   442,   866)
+	 94: Rel (    71,     0)  ->  Abs (   513,   866)
+	 95: Rel (   202,     0)  ->  Abs (   715,   866)
+	 96: Rel (    71,     0)  ->  Abs (   786,   866)
+	 97: Rel (     0,   -43)  ->  Abs (   786,   823)
+	 98: Rel (     0,   -42)  ->  Abs (   786,   781)
+	 99: Rel (   -71,     0)  ->  Abs (   715,   781)
+
+	Glyph 609: off = 0x00020B06, len = 338
+	  numberOfContours:	1
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1094
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  52
+
+	  Length of Instructions:	196
+	00000: PUSHB[8]             54    50     1    32    21    26     2    30 
+	00009: PUSHW[3]            -38    19   -32 
+	00016: NPUSHB      (49):   218     0   234     0     2     8     9    26     2     9 
+	                            33    13    36    33    46    64    58    53    46    64 
+	                            11    15    52    46    46    38    34     0    29    33 
+	                           192    23     1    23    23    48     7    15    38    63 
+	                            38     2    38    64    11    15    52    38    13 
+	00067: PUSHW[1]            302 
+	00070: NPUSHB      (61):     7    43     7    34    33    48     7    17    33     7 
+	                            11   223    26     1    26    26    40    31    59   208 
+	                            51     1    51    89    20    59    96     4   112     4 
+	                             2   112     4   144     4   192     4     3     4    26 
+	                            54    45    59    36    59    40    89   111    10     1 
+	                            10    64    20    22    52    10    25    53    42   173 
+	                            24 
+	00133: CALL       
+	00134: FLIPOFF    
+	00135: SRP0       
+	00136: MIRP[srp0,nmd,rd,0] 
+	00137: CALL       
+	00138: DELTAP1    
+	00139: FLIPON     
+	00140: MIRP[srp0,nmd,rd,0] 
+	00141: MIRP[nrp0,md,rd,1] 
+	00142: MIRP[nrp0,md,rd,1] 
+	00143: FLIPOFF    
+	00144: SRP0       
+	00145: MIRP[srp0,nmd,rd,2] 
+	00146: DELTAP1    
+	00147: DELTAP2    
+	00148: FLIPON     
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: MIRP[srp0,nmd,rd,0] 
+	00151: DELTAP1    
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: SRP1       
+	00154: IP         
+	00155: MDAP[rd]   
+	00156: DELTAP1    
+	00157: SVTCA[y-axis] 
+	00158: MIAP[rd+ci] 
+	00159: MIRP[nrp0,md,rd,1] 
+	00160: MIAP[rd+ci] 
+	00161: MIRP[nrp0,md,rd,1] 
+	00162: MIAP[rd+ci] 
+	00163: SRP0       
+	00164: MIRP[nrp0,md,rd,1] 
+	00165: MDAP[rd]   
+	00166: CALL       
+	00167: DELTAP1    
+	00168: SRP1       
+	00169: SRP2       
+	00170: IP         
+	00171: MDAP[rd]   
+	00172: DELTAP2    
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: IP         
+	00175: SRP1       
+	00176: SRP2       
+	00177: IP         
+	00178: MDAP[rd]   
+	00179: CALL       
+	00180: CALL       
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: SRP0       
+	00183: MIRP[nrp0,md,rd,1] 
+	00184: IUP[y]     
+	00185: IUP[x]     
+	00186: SVTCA[x-axis] 
+	00187: SLOOP      
+	00188: SHPIX      
+	00189: DELTAP1    
+	00190: SVTCA[y-axis] 
+	00191: SHPIX      
+	00192: SHPIX      
+	00193: SLOOP      
+	00194: SHPIX      
+	00195: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short         Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short X-Short On
+	 16:        XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                               On
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual                               Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                               Off
+	 36:                      Y-Short X-Short On
+	 37:                      Y-Short X-Short Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         On
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual                 X-Short Off
+	 50:        XDual         Y-Short X-Short Off
+	 51:        XDual         Y-Short         On
+	 52:        XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   864,   458)  ->  Abs (   864,   458)
+	  1: Rel (    61,   -14)  ->  Abs (   925,   444)
+	  2: Rel (    67,   -15)  ->  Abs (   992,   429)
+	  3: Rel (   102,  -115)  ->  Abs (  1094,   314)
+	  4: Rel (     0,   -77)  ->  Abs (  1094,   237)
+	  5: Rel (     0,  -119)  ->  Abs (  1094,   118)
+	  6: Rel (  -217,  -151)  ->  Abs (   877,   -33)
+	  7: Rel (  -243,     0)  ->  Abs (   634,   -33)
+	  8: Rel (  -160,     0)  ->  Abs (   474,   -33)
+	  9: Rel (  -330,    93)  ->  Abs (   144,    60)
+	 10: Rel (     0,    52)  ->  Abs (   144,   112)
+	 11: Rel (     0,    19)  ->  Abs (   144,   131)
+	 12: Rel (    28,    27)  ->  Abs (   172,   158)
+	 13: Rel (    14,     0)  ->  Abs (   186,   158)
+	 14: Rel (    13,     0)  ->  Abs (   199,   158)
+	 15: Rel (    22,   -11)  ->  Abs (   221,   147)
+	 16: Rel (   195,   -96)  ->  Abs (   416,    51)
+	 17: Rel (   226,     0)  ->  Abs (   642,    51)
+	 18: Rel (   180,     0)  ->  Abs (   822,    51)
+	 19: Rel (   181,   105)  ->  Abs (  1003,   156)
+	 20: Rel (     0,    81)  ->  Abs (  1003,   237)
+	 21: Rel (     0,    92)  ->  Abs (  1003,   329)
+	 22: Rel (  -209,    77)  ->  Abs (   794,   406)
+	 23: Rel (  -256,     0)  ->  Abs (   538,   406)
+	 24: Rel (   -55,     0)  ->  Abs (   483,   406)
+	 25: Rel (   -70,     0)  ->  Abs (   413,   406)
+	 26: Rel (     0,    39)  ->  Abs (   413,   445)
+	 27: Rel (     0,    46)  ->  Abs (   413,   491)
+	 28: Rel (    70,     0)  ->  Abs (   483,   491)
+	 29: Rel (    55,     0)  ->  Abs (   538,   491)
+	 30: Rel (   422,     0)  ->  Abs (   960,   491)
+	 31: Rel (     0,   167)  ->  Abs (   960,   658)
+	 32: Rel (     0,    70)  ->  Abs (   960,   728)
+	 33: Rel (  -167,    83)  ->  Abs (   793,   811)
+	 34: Rel (  -157,     0)  ->  Abs (   636,   811)
+	 35: Rel (  -307,     0)  ->  Abs (   329,   811)
+	 36: Rel (   -48,  -198)  ->  Abs (   281,   613)
+	 37: Rel (   -13,   -54)  ->  Abs (   268,   559)
+	 38: Rel (   -31,     0)  ->  Abs (   237,   559)
+	 39: Rel (   -37,     0)  ->  Abs (   200,   559)
+	 40: Rel (     0,    44)  ->  Abs (   200,   603)
+	 41: Rel (     0,   221)  ->  Abs (   200,   824)
+	 42: Rel (     0,    72)  ->  Abs (   200,   896)
+	 43: Rel (    41,     0)  ->  Abs (   241,   896)
+	 44: Rel (    43,     0)  ->  Abs (   284,   896)
+	 45: Rel (     0,   -72)  ->  Abs (   284,   824)
+	 46: Rel (     0,   -63)  ->  Abs (   284,   761)
+	 47: Rel (   129,   135)  ->  Abs (   413,   896)
+	 48: Rel (   243,     0)  ->  Abs (   656,   896)
+	 49: Rel (   174,     0)  ->  Abs (   830,   896)
+	 50: Rel (   220,  -125)  ->  Abs (  1050,   771)
+	 51: Rel (     0,  -112)  ->  Abs (  1050,   659)
+	 52: Rel (     0,  -142)  ->  Abs (  1050,   517)
+
+	Glyph 610: off = 0x00020C58, len = 472
+	  numberOfContours:	1
+	  xMin:			58
+	  yMin:			0
+	  xMax:			1171
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  39
+
+	  Length of Instructions:	367
+	00000: PUSHB[5]            120    39     1    33    37 
+	00006: PUSHW[1]            686 
+	00009: NPUSHB      (11):    35    47    38    35    35    37    38    34    33    32 
+	                            28 
+	00022: PUSHW[1]            686 
+	00025: NPUSHB      (14):     0    30     1    30    47    27    30    30    28    27 
+	                            34    32    21    25 
+	00041: PUSHW[1]            686 
+	00044: NPUSHB      (14):     0    23     1    23    47    26    23    23    25    26 
+	                            34    21     1     5 
+	00060: PUSHW[1]            686 
+	00063: NPUSHB      (11):     3    92     6     3     3     5     6    34     1    13 
+	                            17 
+	00076: PUSHW[1]            686 
+	00079: NPUSHB      (11):    15    47    18    15    15    17    18    34    13    12 
+	                             8 
+	00092: PUSHW[1]            686 
+	00095: NPUSHB      (32):    10    92     7    10    10     8     7    34    12    39 
+	                            20    19    19    32     0    39    20     0     0    39 
+	                            39    19    20     0    25    26    26    17     8    59 
+	                            12    26 
+	00129: PUSHW[1]            577 
+	00132: NPUSHB      (66):    27    27    38    38    37    37     6     6     5    59 
+	                             1    32    33    33     0     1    10    21    20     6 
+	                            13    12     6    20     0    39    19    39    38    32 
+	                            26    15    27    79    27    95    27   175    27   191 
+	                            27   223    27     6    27    26    41    18    19    32 
+	                             7    79     6    95     6   191     6   223     6     4 
+	                             6    25    40    94    97    24 
+	00200: CALL       
+	00201: FLIPOFF    
+	00202: SRP0       
+	00203: MIRP[srp0,nmd,rd,0] 
+	00204: DELTAP1    
+	00205: ALIGNRP    
+	00206: FLIPON     
+	00207: MIRP[srp0,md,rd,1] 
+	00208: ALIGNRP    
+	00209: FLIPOFF    
+	00210: SRP0       
+	00211: MIRP[srp0,nmd,rd,2] 
+	00212: DELTAP1    
+	00213: ALIGNRP    
+	00214: FLIPON     
+	00215: MIRP[srp0,md,rd,1] 
+	00216: ALIGNRP    
+	00217: SRP1       
+	00218: SRP2       
+	00219: IP         
+	00220: IP         
+	00221: SVTCA[y-axis] 
+	00222: MIAP[rd+ci] 
+	00223: ALIGNRP    
+	00224: MIAP[rd+ci] 
+	00225: ALIGNRP    
+	00226: MIAP[rd+ci] 
+	00227: ALIGNRP    
+	00228: ALIGNRP    
+	00229: SRP0       
+	00230: ALIGNRP    
+	00231: SRP0       
+	00232: MIRP[srp0,md,rd,1] 
+	00233: ALIGNRP    
+	00234: SRP0       
+	00235: ALIGNRP    
+	00236: SRP0       
+	00237: ALIGNRP    
+	00238: SRP0       
+	00239: ALIGNRP    
+	00240: SRP0       
+	00241: MIRP[nrp0,md,rd,2] 
+	00242: SRP0       
+	00243: MIRP[srp0,md,rd,1] 
+	00244: ALIGNRP    
+	00245: ALIGNRP    
+	00246: SRP0       
+	00247: ALIGNRP    
+	00248: SRP1       
+	00249: SRP2       
+	00250: IP         
+	00251: IP         
+	00252: SDPVTL[1]  
+	00253: MDAP[nrd]  
+	00254: CALL       
+	00255: SDPVTL[1]  
+	00256: RDTG       
+	00257: MDRP[nrp0,nmd,rd,0] 
+	00258: RTG        
+	00259: SVTCA[y-axis] 
+	00260: SRP0       
+	00261: MIRP[srp0,md,rd,1] 
+	00262: RTDG       
+	00263: SRP2       
+	00264: IP         
+	00265: MDAP[rd]   
+	00266: RTG        
+	00267: SVTCA[x-axis] 
+	00268: SRP0       
+	00269: MIRP[srp0,nmd,rd,1] 
+	00270: MIRP[srp0,nmd,rd,0] 
+	00271: MDRP[nrp0,nmd,rd,0] 
+	00272: SVTCA[y-axis] 
+	00273: SRP0       
+	00274: MIRP[srp0,md,rd,1] 
+	00275: RTDG       
+	00276: SRP2       
+	00277: IP         
+	00278: MDAP[rd]   
+	00279: RTG        
+	00280: SVTCA[x-axis] 
+	00281: SRP0       
+	00282: MIRP[srp0,nmd,rd,1] 
+	00283: MIRP[srp0,nmd,rd,0] 
+	00284: MDRP[nrp0,nmd,rd,0] 
+	00285: SVTCA[y-axis] 
+	00286: SRP0       
+	00287: MIRP[srp0,md,rd,1] 
+	00288: RTDG       
+	00289: SRP2       
+	00290: IP         
+	00291: MDAP[rd]   
+	00292: RTG        
+	00293: SVTCA[x-axis] 
+	00294: SRP0       
+	00295: MIRP[srp0,nmd,rd,1] 
+	00296: MIRP[srp0,nmd,rd,0] 
+	00297: MDRP[nrp0,nmd,rd,0] 
+	00298: SVTCA[y-axis] 
+	00299: SRP0       
+	00300: MIRP[srp0,md,rd,1] 
+	00301: RTDG       
+	00302: SRP2       
+	00303: IP         
+	00304: MDAP[rd]   
+	00305: RTG        
+	00306: SVTCA[x-axis] 
+	00307: SRP0       
+	00308: MIRP[srp0,nmd,rd,1] 
+	00309: DELTAP1    
+	00310: MIRP[srp0,nmd,rd,0] 
+	00311: MDRP[nrp0,nmd,rd,0] 
+	00312: SVTCA[y-axis] 
+	00313: SRP0       
+	00314: MIRP[srp0,md,rd,1] 
+	00315: RTDG       
+	00316: SRP2       
+	00317: IP         
+	00318: MDAP[rd]   
+	00319: RTG        
+	00320: SVTCA[x-axis] 
+	00321: SRP0       
+	00322: MIRP[srp0,nmd,rd,1] 
+	00323: DELTAP1    
+	00324: MIRP[srp0,nmd,rd,0] 
+	00325: MDRP[nrp0,nmd,rd,0] 
+	00326: SVTCA[y-axis] 
+	00327: SRP0       
+	00328: MIRP[srp0,md,rd,1] 
+	00329: RTDG       
+	00330: SRP2       
+	00331: IP         
+	00332: MDAP[rd]   
+	00333: RTG        
+	00334: SVTCA[x-axis] 
+	00335: SRP0       
+	00336: MIRP[srp0,nmd,rd,1] 
+	00337: MIRP[srp0,nmd,rd,0] 
+	00338: MDRP[nrp0,nmd,rd,0] 
+	00339: PUSHB[2]              6     2 
+	00342: RS         
+	00343: EQ         
+	00344: IF         
+	00345: PUSHB[6]             39    32    17    36    52    19 
+	00352: PUSHW[1]            -32 
+	00355: PUSHB[3]             17    36    52 
+	00359: SVTCA[y-axis] 
+	00360: CALL       
+	00361: CALL       
+	00362: EIF        
+	00363: IUP[y]     
+	00364: IUP[x]     
+	00365: SVTCA[y-axis] 
+	00366: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual                               On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short On
+	 19:        XDual                         On
+	 20:                                      On
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short On
+	 27:        XDual                         On
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                               On
+	 34:  YDual                       X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short On
+	 39:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   314,     0)  ->  Abs (   314,     0)
+	  1: Rel (  -200,     0)  ->  Abs (   114,     0)
+	  2: Rel (   -56,     0)  ->  Abs (    58,     0)
+	  3: Rel (     0,    42)  ->  Abs (    58,    42)
+	  4: Rel (     0,    42)  ->  Abs (    58,    84)
+	  5: Rel (    56,     0)  ->  Abs (   114,    84)
+	  6: Rel (   101,     0)  ->  Abs (   215,    84)
+	  7: Rel (     0,   697)  ->  Abs (   215,   781)
+	  8: Rel (  -101,     0)  ->  Abs (   114,   781)
+	  9: Rel (   -56,     0)  ->  Abs (    58,   781)
+	 10: Rel (     0,    42)  ->  Abs (    58,   823)
+	 11: Rel (     0,    43)  ->  Abs (    58,   866)
+	 12: Rel (    56,     0)  ->  Abs (   114,   866)
+	 13: Rel (   298,     0)  ->  Abs (   412,   866)
+	 14: Rel (    56,     0)  ->  Abs (   468,   866)
+	 15: Rel (     0,   -43)  ->  Abs (   468,   823)
+	 16: Rel (     0,   -42)  ->  Abs (   468,   781)
+	 17: Rel (   -56,     0)  ->  Abs (   412,   781)
+	 18: Rel (  -113,     0)  ->  Abs (   299,   781)
+	 19: Rel (     0,  -660)  ->  Abs (   299,   121)
+	 20: Rel (   605,   745)  ->  Abs (   904,   866)
+	 21: Rel (   211,     0)  ->  Abs (  1115,   866)
+	 22: Rel (    56,     0)  ->  Abs (  1171,   866)
+	 23: Rel (     0,   -43)  ->  Abs (  1171,   823)
+	 24: Rel (     0,   -42)  ->  Abs (  1171,   781)
+	 25: Rel (   -56,     0)  ->  Abs (  1115,   781)
+	 26: Rel (  -113,     0)  ->  Abs (  1002,   781)
+	 27: Rel (     0,  -697)  ->  Abs (  1002,    84)
+	 28: Rel (   113,     0)  ->  Abs (  1115,    84)
+	 29: Rel (    56,     0)  ->  Abs (  1171,    84)
+	 30: Rel (     0,   -42)  ->  Abs (  1171,    42)
+	 31: Rel (     0,   -42)  ->  Abs (  1171,     0)
+	 32: Rel (   -56,     0)  ->  Abs (  1115,     0)
+	 33: Rel (  -310,     0)  ->  Abs (   805,     0)
+	 34: Rel (   -56,     0)  ->  Abs (   749,     0)
+	 35: Rel (     0,    42)  ->  Abs (   749,    42)
+	 36: Rel (     0,    42)  ->  Abs (   749,    84)
+	 37: Rel (    56,     0)  ->  Abs (   805,    84)
+	 38: Rel (   113,     0)  ->  Abs (   918,    84)
+	 39: Rel (     0,   659)  ->  Abs (   918,   743)
+
+	Glyph 611: off = 0x00020E30, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			58
+	  yMin:			0
+	  xMax:			1171
+	  yMax:			1258
+
+	     0: Flags:		0x0236
+		Glyf Index:	610
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	217
+		X BOffset:	16
+		Y BOffset:	-40
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     1   192    57     1   208    57     1    32    57     1 
+	                            57    64    14    20    52    57    26 
+	00019: PUSHW[1]            -75 
+	00022: PUSHB[5]             72    43     1     1    60 
+	00028: PUSHW[2]            652    41 
+	00033: SVTCA[y-axis] 
+	00034: CALL       
+	00035: SVTCA[x-axis] 
+	00036: CALL       
+	00037: CALL       
+	00038: DELTAP1    
+	00039: DELTAP2    
+	00040: DELTAP3    
+	00041: SHC[rp1,zp0] 
+
+	Glyph 612: off = 0x00020E72, len = 526
+	  numberOfContours:	1
+	  xMin:			120
+	  yMin:			0
+	  xMax:			1172
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  64
+
+	  Length of Instructions:	355
+	00000: NPUSHB      (40):   185     8   185    20     2    89     2    86     7   105 
+	                             2   102     7   121     2   121     4     6   103    53 
+	                           149     7   168     3   165     7   184     3   249     2 
+	                             6     3     8    11    14    52     5     4    42    38 
+	00042: PUSHW[1]            686 
+	00045: NPUSHB      (11):    40    47    37    40    40    38    37    34    42    43 
+	                            47 
+	00058: PUSHW[1]            686 
+	00061: NPUSHB      (11):    45    47    48    45    45    47    48    34    43    31 
+	                            35 
+	00074: PUSHW[1]            686 
+	00077: NPUSHB      (11):    33    47    36    33    33    35    36    34    31    30 
+	                            26 
+	00090: PUSHW[1]            686 
+	00093: NPUSHB     (118):    28    47    25    28    28    26    25    34    30     2 
+	                            54    52    52    32     4     2    20     4     4     2 
+	                            21     7     9     9    32    18    21    20    18    18 
+	                            21     4    52     2    54     4    56    24    18     9 
+	                            21     7     4    15    62     5    49    33    24    24 
+	                            42    31     0    59    56     6    47    38    59    43 
+	                            42     6    26    35    59    31     9    10    59    14 
+	                            14    15    15    30    31    10    52     4     2    54 
+	                             4    60    21     7    18     9     4     5    12    25 
+	                            64    59    60   154    96    12     1    15    12    32 
+	                            12     2    12    26    66    48    25    32    37    32 
+	                            36    48    36     2    36    25    65   244 
+	00213: PUSHW[2]            289    24 
+	00218: CALL       
+	00219: FLIPOFF    
+	00220: SRP0       
+	00221: MIRP[srp0,nmd,rd,0] 
+	00222: DELTAP1    
+	00223: ALIGNRP    
+	00224: FLIPON     
+	00225: MIRP[srp0,md,rd,1] 
+	00226: ALIGNRP    
+	00227: FLIPOFF    
+	00228: SRP0       
+	00229: MIRP[srp0,nmd,rd,2] 
+	00230: DELTAP1    
+	00231: DELTAP2    
+	00232: FLIPON     
+	00233: MIRP[srp0,nmd,rd,0] 
+	00234: MIRP[nrp0,md,rd,1] 
+	00235: SRP1       
+	00236: SRP2       
+	00237: IP         
+	00238: SLOOP      
+	00239: IP         
+	00240: SRP2       
+	00241: SLOOP      
+	00242: IP         
+	00243: SVTCA[y-axis] 
+	00244: MIAP[rd+ci] 
+	00245: ALIGNRP    
+	00246: ALIGNRP    
+	00247: SRP0       
+	00248: ALIGNRP    
+	00249: SRP0       
+	00250: MIRP[srp0,md,rd,1] 
+	00251: ALIGNRP    
+	00252: SRP0       
+	00253: MIRP[srp0,md,rd,1] 
+	00254: ALIGNRP    
+	00255: MIAP[rd+ci] 
+	00256: ALIGNRP    
+	00257: MIRP[srp0,md,rd,1] 
+	00258: ALIGNRP    
+	00259: MIAP[rd+ci] 
+	00260: MIRP[nrp0,md,rd,1] 
+	00261: SRP1       
+	00262: SRP2       
+	00263: IP         
+	00264: MDAP[rd]   
+	00265: MIRP[nrp0,md,rd,1] 
+	00266: IP         
+	00267: MDAP[rd]   
+	00268: SRP1       
+	00269: SLOOP      
+	00270: IP         
+	00271: SRP1       
+	00272: SRP2       
+	00273: SLOOP      
+	00274: IP         
+	00275: SDPVTL[1]  
+	00276: SFVTCA[x-axis] 
+	00277: MDAP[nrd]  
+	00278: CALL       
+	00279: SDPVTL[1]  
+	00280: SFVTPV     
+	00281: RDTG       
+	00282: MDRP[nrp0,nmd,rd,0] 
+	00283: SDPVTL[1]  
+	00284: SFVTPV     
+	00285: MDAP[nrd]  
+	00286: RTG        
+	00287: CALL       
+	00288: SDPVTL[1]  
+	00289: SFVTPV     
+	00290: RDTG       
+	00291: MDRP[nrp0,nmd,rd,0] 
+	00292: RTG        
+	00293: SVTCA[y-axis] 
+	00294: SRP0       
+	00295: MIRP[srp0,md,rd,1] 
+	00296: RTDG       
+	00297: SRP2       
+	00298: IP         
+	00299: MDAP[rd]   
+	00300: RTG        
+	00301: SVTCA[x-axis] 
+	00302: SRP0       
+	00303: MIRP[srp0,nmd,rd,1] 
+	00304: MIRP[srp0,nmd,rd,0] 
+	00305: MDRP[nrp0,nmd,rd,0] 
+	00306: SVTCA[y-axis] 
+	00307: SRP0       
+	00308: MIRP[srp0,md,rd,1] 
+	00309: RTDG       
+	00310: SRP2       
+	00311: IP         
+	00312: MDAP[rd]   
+	00313: RTG        
+	00314: SVTCA[x-axis] 
+	00315: SRP0       
+	00316: MIRP[srp0,nmd,rd,1] 
+	00317: MIRP[srp0,nmd,rd,0] 
+	00318: MDRP[nrp0,nmd,rd,0] 
+	00319: SVTCA[y-axis] 
+	00320: SRP0       
+	00321: MIRP[srp0,md,rd,1] 
+	00322: RTDG       
+	00323: SRP2       
+	00324: IP         
+	00325: MDAP[rd]   
+	00326: RTG        
+	00327: SVTCA[x-axis] 
+	00328: SRP0       
+	00329: MIRP[srp0,nmd,rd,1] 
+	00330: MIRP[srp0,nmd,rd,0] 
+	00331: MDRP[nrp0,nmd,rd,0] 
+	00332: SVTCA[y-axis] 
+	00333: SRP0       
+	00334: MIRP[srp0,md,rd,1] 
+	00335: RTDG       
+	00336: SRP2       
+	00337: IP         
+	00338: MDAP[rd]   
+	00339: RTG        
+	00340: SVTCA[x-axis] 
+	00341: SRP0       
+	00342: MIRP[srp0,nmd,rd,1] 
+	00343: MIRP[srp0,nmd,rd,0] 
+	00344: MDRP[nrp0,nmd,rd,0] 
+	00345: SRP1       
+	00346: SHP[rp1,zp0] 
+	00347: IUP[y]     
+	00348: IUP[x]     
+	00349: SVTCA[y-axis] 
+	00350: CALL       
+	00351: DELTAP1    
+	00352: DELTAP2    
+	00353: SVTCA[x-axis] 
+	00354: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short On
+	  4:                      Y-Short X-Short Off
+	  5:                      Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short On
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual               Y-Short X-Short On
+	 20:  YDual               Y-Short X-Short On
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short On
+	 25:        XDual                         On
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                               On
+	 32:  YDual                       X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short On
+	 37:        XDual                         On
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual                               On
+	 44:  YDual XDual                 X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short On
+	 49:        XDual                         On
+	 50:  YDual XDual                 X-Short On
+	 51:  YDual XDual                 X-Short Off
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:  YDual XDual         Y-Short X-Short Off
+	 55:  YDual XDual         Y-Short X-Short Off
+	 56:  YDual XDual                 X-Short On
+	 57:  YDual XDual                 X-Short Off
+	 58:        XDual         Y-Short X-Short Off
+	 59:        XDual         Y-Short         On
+	 60:        XDual         Y-Short         On
+	 61:        XDual         Y-Short         Off
+	 62:  YDual                       X-Short On
+	 63:  YDual                       X-Short Off
+	 64:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1014,   781)  ->  Abs (  1014,   781)
+	  1: Rel (   -75,     0)  ->  Abs (   939,   781)
+	  2: Rel (   -70,   -43)  ->  Abs (   869,   738)
+	  3: Rel (   -84,  -103)  ->  Abs (   785,   635)
+	  4: Rel (  -106,  -130)  ->  Abs (   679,   505)
+	  5: Rel (   -54,   -33)  ->  Abs (   625,   472)
+	  6: Rel (    48,   -12)  ->  Abs (   673,   460)
+	  7: Rel (    83,   -52)  ->  Abs (   756,   408)
+	  8: Rel (    88,  -125)  ->  Abs (   844,   283)
+	  9: Rel (   140,  -199)  ->  Abs (   984,    84)
+	 10: Rel (   118,     0)  ->  Abs (  1102,    84)
+	 11: Rel (    70,     0)  ->  Abs (  1172,    84)
+	 12: Rel (     0,   -42)  ->  Abs (  1172,    42)
+	 13: Rel (     0,   -42)  ->  Abs (  1172,     0)
+	 14: Rel (   -70,     0)  ->  Abs (  1102,     0)
+	 15: Rel (  -118,     0)  ->  Abs (   984,     0)
+	 16: Rel (   -51,     0)  ->  Abs (   933,     0)
+	 17: Rel (   -17,    26)  ->  Abs (   916,    26)
+	 18: Rel (    -3,     6)  ->  Abs (   913,    32)
+	 19: Rel (    -7,    10)  ->  Abs (   906,    42)
+	 20: Rel (  -142,   210)  ->  Abs (   764,   252)
+	 21: Rel (   -72,   107)  ->  Abs (   692,   359)
+	 22: Rel (  -144,    64)  ->  Abs (   548,   423)
+	 23: Rel (  -109,     0)  ->  Abs (   439,   423)
+	 24: Rel (   -62,     0)  ->  Abs (   377,   423)
+	 25: Rel (     0,  -339)  ->  Abs (   377,    84)
+	 26: Rel (   102,     0)  ->  Abs (   479,    84)
+	 27: Rel (    70,     0)  ->  Abs (   549,    84)
+	 28: Rel (     0,   -42)  ->  Abs (   549,    42)
+	 29: Rel (     0,   -42)  ->  Abs (   549,     0)
+	 30: Rel (   -70,     0)  ->  Abs (   479,     0)
+	 31: Rel (  -289,     0)  ->  Abs (   190,     0)
+	 32: Rel (   -70,     0)  ->  Abs (   120,     0)
+	 33: Rel (     0,    42)  ->  Abs (   120,    42)
+	 34: Rel (     0,    42)  ->  Abs (   120,    84)
+	 35: Rel (    70,     0)  ->  Abs (   190,    84)
+	 36: Rel (   102,     0)  ->  Abs (   292,    84)
+	 37: Rel (     0,   697)  ->  Abs (   292,   781)
+	 38: Rel (  -102,     0)  ->  Abs (   190,   781)
+	 39: Rel (   -70,     0)  ->  Abs (   120,   781)
+	 40: Rel (     0,    42)  ->  Abs (   120,   823)
+	 41: Rel (     0,    43)  ->  Abs (   120,   866)
+	 42: Rel (    70,     0)  ->  Abs (   190,   866)
+	 43: Rel (   289,     0)  ->  Abs (   479,   866)
+	 44: Rel (    70,     0)  ->  Abs (   549,   866)
+	 45: Rel (     0,   -43)  ->  Abs (   549,   823)
+	 46: Rel (     0,   -42)  ->  Abs (   549,   781)
+	 47: Rel (   -70,     0)  ->  Abs (   479,   781)
+	 48: Rel (  -102,     0)  ->  Abs (   377,   781)
+	 49: Rel (     0,  -274)  ->  Abs (   377,   507)
+	 50: Rel (    62,     0)  ->  Abs (   439,   507)
+	 51: Rel (    81,     0)  ->  Abs (   520,   507)
+	 52: Rel (    86,    48)  ->  Abs (   606,   555)
+	 53: Rel (    71,    87)  ->  Abs (   677,   642)
+	 54: Rel (   123,   150)  ->  Abs (   800,   792)
+	 55: Rel (   108,    74)  ->  Abs (   908,   866)
+	 56: Rel (   108,     0)  ->  Abs (  1016,   866)
+	 57: Rel (    51,     0)  ->  Abs (  1067,   866)
+	 58: Rel (    31,   -24)  ->  Abs (  1098,   842)
+	 59: Rel (     0,   -47)  ->  Abs (  1098,   795)
+	 60: Rel (     0,  -115)  ->  Abs (  1098,   680)
+	 61: Rel (     0,   -60)  ->  Abs (  1098,   620)
+	 62: Rel (   -43,     0)  ->  Abs (  1055,   620)
+	 63: Rel (   -41,     0)  ->  Abs (  1014,   620)
+	 64: Rel (     0,    53)  ->  Abs (  1014,   673)
+
+	Glyph 613: off = 0x00021080, len = 352
+	  numberOfContours:	1
+	  xMin:			51
+	  yMin:			-33
+	  xMax:			1139
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  43
+
+	  Length of Instructions:	236
+	00000: PUSHW[5]             17   -26    39    43   686 
+	00011: NPUSHB      (14):     0    41     1    41    92     0    41    41    43     0 
+	                            34    39    38    34 
+	00027: PUSHW[1]            686 
+	00030: NPUSHB      (11):    36    47    33    36    36    34    33    34    38     7 
+	                            11 
+	00043: PUSHW[1]            686 
+	00046: NPUSHB      (14):    31     9     1     9    92    12     9     9    11    12 
+	                            34     7     6     2 
+	00062: PUSHW[1]            686 
+	00065: NPUSHB      (72):     0     4     1     4    92     1     4     4     2     1 
+	                            34     6    25   162    30    33    18     2    11    59 
+	                             6     7    11    18    11    43    14    14    34    59 
+	                            39    38     6    14    15    32    33    32    32    22 
+	                            13    12    32     0    15     1    79     1    95     1 
+	                           175     1   191     1     5     1    26    45    27    59 
+	                            79    22    95    22   111    22   144    22     4    22 
+	                            25    44 
+	00139: PUSHW[1]            293 
+	00142: PUSHB[2]             97    24 
+	00145: CALL       
+	00146: SRP0       
+	00147: MIRP[srp0,nmd,rd,2] 
+	00148: DELTAP1    
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: FLIPOFF    
+	00151: SRP0       
+	00152: MIRP[srp0,nmd,rd,2] 
+	00153: DELTAP1    
+	00154: ALIGNRP    
+	00155: FLIPON     
+	00156: MIRP[srp0,md,rd,1] 
+	00157: ALIGNRP    
+	00158: SRP2       
+	00159: IP         
+	00160: MDAP[rd]   
+	00161: ALIGNRP    
+	00162: MIRP[srp0,md,rd,1] 
+	00163: ALIGNRP    
+	00164: SVTCA[y-axis] 
+	00165: MIAP[rd+ci] 
+	00166: ALIGNRP    
+	00167: MIRP[srp0,md,rd,1] 
+	00168: ALIGNRP    
+	00169: SRP0       
+	00170: ALIGNRP    
+	00171: MIAP[rd+ci] 
+	00172: MIAP[rd+ci] 
+	00173: ALIGNRP    
+	00174: MIRP[srp0,md,rd,1] 
+	00175: ALIGNRP    
+	00176: SRP0       
+	00177: MIRP[nrp0,md,rd,1] 
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: SRP0       
+	00180: MIRP[srp0,md,rd,1] 
+	00181: RTDG       
+	00182: SRP2       
+	00183: IP         
+	00184: MDAP[rd]   
+	00185: RTG        
+	00186: SVTCA[x-axis] 
+	00187: SRP0       
+	00188: MIRP[srp0,nmd,rd,1] 
+	00189: DELTAP1    
+	00190: MIRP[srp0,nmd,rd,0] 
+	00191: MDRP[nrp0,nmd,rd,0] 
+	00192: SVTCA[y-axis] 
+	00193: SRP0       
+	00194: MIRP[srp0,md,rd,1] 
+	00195: RTDG       
+	00196: SRP2       
+	00197: IP         
+	00198: MDAP[rd]   
+	00199: RTG        
+	00200: SVTCA[x-axis] 
+	00201: SRP0       
+	00202: MIRP[srp0,nmd,rd,1] 
+	00203: DELTAP1    
+	00204: MIRP[srp0,nmd,rd,0] 
+	00205: MDRP[nrp0,nmd,rd,0] 
+	00206: SVTCA[y-axis] 
+	00207: SRP0       
+	00208: MIRP[srp0,md,rd,1] 
+	00209: RTDG       
+	00210: SRP2       
+	00211: IP         
+	00212: MDAP[rd]   
+	00213: RTG        
+	00214: SVTCA[x-axis] 
+	00215: SRP0       
+	00216: MIRP[srp0,nmd,rd,1] 
+	00217: MIRP[srp0,nmd,rd,0] 
+	00218: MDRP[nrp0,nmd,rd,0] 
+	00219: SVTCA[y-axis] 
+	00220: SRP0       
+	00221: MIRP[srp0,md,rd,1] 
+	00222: RTDG       
+	00223: SRP2       
+	00224: IP         
+	00225: MDAP[rd]   
+	00226: RTG        
+	00227: SVTCA[x-axis] 
+	00228: SRP0       
+	00229: MIRP[srp0,nmd,rd,1] 
+	00230: DELTAP1    
+	00231: MIRP[srp0,nmd,rd,0] 
+	00232: MDRP[nrp0,nmd,rd,0] 
+	00233: IUP[y]     
+	00234: IUP[x]     
+	00235: SHPIX      
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:  YDual                               On
+	 15:        XDual                         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:        XDual                         On
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual                               On
+	 40:  YDual XDual                 X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:        XDual         Y-Short         Off
+	 43:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   985,   781)  ->  Abs (   985,   781)
+	  1: Rel (     0,  -697)  ->  Abs (   985,    84)
+	  2: Rel (    84,     0)  ->  Abs (  1069,    84)
+	  3: Rel (    70,     0)  ->  Abs (  1139,    84)
+	  4: Rel (     0,   -42)  ->  Abs (  1139,    42)
+	  5: Rel (     0,   -42)  ->  Abs (  1139,     0)
+	  6: Rel (   -70,     0)  ->  Abs (  1069,     0)
+	  7: Rel (  -251,     0)  ->  Abs (   818,     0)
+	  8: Rel (   -70,     0)  ->  Abs (   748,     0)
+	  9: Rel (     0,    42)  ->  Abs (   748,    42)
+	 10: Rel (     0,    42)  ->  Abs (   748,    84)
+	 11: Rel (    70,     0)  ->  Abs (   818,    84)
+	 12: Rel (    83,     0)  ->  Abs (   901,    84)
+	 13: Rel (     0,   697)  ->  Abs (   901,   781)
+	 14: Rel (  -413,     0)  ->  Abs (   488,   781)
+	 15: Rel (     0,  -483)  ->  Abs (   488,   298)
+	 16: Rel (     0,  -175)  ->  Abs (   488,   123)
+	 17: Rel (  -152,  -156)  ->  Abs (   336,   -33)
+	 18: Rel (  -121,     0)  ->  Abs (   215,   -33)
+	 19: Rel (   -50,     0)  ->  Abs (   165,   -33)
+	 20: Rel (   -96,    24)  ->  Abs (    69,    -9)
+	 21: Rel (   -18,    27)  ->  Abs (    51,    18)
+	 22: Rel (     0,    41)  ->  Abs (    51,    59)
+	 23: Rel (     0,    83)  ->  Abs (    51,   142)
+	 24: Rel (     0,    63)  ->  Abs (    51,   205)
+	 25: Rel (    45,     0)  ->  Abs (    96,   205)
+	 26: Rel (    39,     0)  ->  Abs (   135,   205)
+	 27: Rel (     0,   -58)  ->  Abs (   135,   147)
+	 28: Rel (     0,   -82)  ->  Abs (   135,    65)
+	 29: Rel (    46,   -11)  ->  Abs (   181,    54)
+	 30: Rel (    36,     0)  ->  Abs (   217,    54)
+	 31: Rel (   186,     0)  ->  Abs (   403,    54)
+	 32: Rel (     0,   244)  ->  Abs (   403,   298)
+	 33: Rel (     0,   483)  ->  Abs (   403,   781)
+	 34: Rel (  -110,     0)  ->  Abs (   293,   781)
+	 35: Rel (   -70,     0)  ->  Abs (   223,   781)
+	 36: Rel (     0,    42)  ->  Abs (   223,   823)
+	 37: Rel (     0,    43)  ->  Abs (   223,   866)
+	 38: Rel (    70,     0)  ->  Abs (   293,   866)
+	 39: Rel (   776,     0)  ->  Abs (  1069,   866)
+	 40: Rel (    70,     0)  ->  Abs (  1139,   866)
+	 41: Rel (     0,   -43)  ->  Abs (  1139,   823)
+	 42: Rel (     0,   -42)  ->  Abs (  1139,   781)
+	 43: Rel (   -70,     0)  ->  Abs (  1069,   781)
+
+	Glyph 614: off = 0x000211E0, len = 630
+	  numberOfContours:	1
+	  xMin:			31
+	  yMin:			0
+	  xMax:			1199
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  44
+
+	  Length of Instructions:	509
+	00000: NPUSHB      (41):   199     0   200     1   212    22   219    24   228    22 
+	                           235    24     6    45     2    32    44     2     8    23 
+	                            24    23    32     2    40    23    32    44    60     2 
+	                            60    44   121     2   121    44   135    23    10    21 
+	                            17 
+	00043: PUSHW[1]            686 
+	00046: PUSHB[4]             31    19     1    19 
+	00051: PUSHW[1]            779 
+	00054: NPUSHB       (9):    16    19    19    17    16    34    21    25    29 
+	00065: PUSHW[3]            686    27   779 
+	00072: NPUSHB       (9):    30    27    27    29    30    34    25    37    41 
+	00083: PUSHW[1]            686 
+	00086: NPUSHB      (16):    15    39    31    39     2    39    78    42    39    39 
+	                            41    42    34    37    36    32 
+	00104: PUSHW[1]            686 
+	00107: NPUSHB      (17):    32    34     1     0    34     1    34    70    31    34 
+	                            34    32    31    34    36     9     5 
+	00126: PUSHW[1]            686 
+	00129: NPUSHB      (16):     0     7    16     7     2     7    78     4     7     7 
+	                             5     4    34     9    10    14 
+	00147: PUSHW[1]            686 
+	00150: NPUSHB     (120):   255    12     1    15    12    31    12   239    12     3 
+	                            12    70    15    12    12    14    15    34    10    23 
+	                            23    22     0    44    44    32    24    23    20    24 
+	                            24    23    23    23    24     1     2     2    32    22 
+	                            23    20    22    22    23    23     0     1    64    11 
+	                            15    52     1     1    22     9    44    43    43    29 
+	                            59    25     2     3     3    17    59    21    25    24 
+	                            24    22    21     6    32    41    41     5     5    14 
+	                            59    10    36    37    37     9    10    10    24     0 
+	                            42    22     1     4    23    44    32    30    43    42 
+	                            32    64    30   160    31   176    31     2    75    31 
+	                            84    31   100    31   139    31   208    31     5    31 
+	00272: PUSHW[1]            423 
+	00275: NPUSHB      (17):   160    23   176    23     2    75    23    84    23   100 
+	                            23   139    23   208    23     5    23 
+	00294: PUSHW[1]            423 
+	00297: NPUSHB      (31):    32     2    32    15     3     4    32    16   224    15 
+	                           240    15     2     0    15    16    15   111    15     3 
+	                            15    64    20    22    52    15    25    45    42   172 
+	                            24 
+	00330: CALL       
+	00331: FLIPOFF    
+	00332: SRP0       
+	00333: MIRP[srp0,nmd,rd,0] 
+	00334: CALL       
+	00335: DELTAP1    
+	00336: DELTAP1    
+	00337: ALIGNRP    
+	00338: FLIPON     
+	00339: MIRP[srp0,md,rd,1] 
+	00340: ALIGNRP    
+	00341: SRP0       
+	00342: MIRP[nrp0,nmd,rd,0] 
+	00343: SMD        
+	00344: RTHG       
+	00345: MIRP[srp0,md,rd,1] 
+	00346: DELTAP1    
+	00347: DELTAP2    
+	00348: MIRP[srp0,md,rd,1] 
+	00349: DELTAP1    
+	00350: DELTAP2    
+	00351: ALIGNRP    
+	00352: SMD        
+	00353: RTG        
+	00354: MIRP[srp0,md,rd,1] 
+	00355: ALIGNRP    
+	00356: SRP0       
+	00357: MIRP[nrp0,nmd,rd,0] 
+	00358: SRP1       
+	00359: SRP2       
+	00360: IP         
+	00361: IP         
+	00362: SRP2       
+	00363: IP         
+	00364: IP         
+	00365: SVTCA[y-axis] 
+	00366: MIAP[rd+ci] 
+	00367: ALIGNRP    
+	00368: ALIGNRP    
+	00369: SRP0       
+	00370: ALIGNRP    
+	00371: SRP0       
+	00372: MIRP[srp0,md,rd,1] 
+	00373: ALIGNRP    
+	00374: SRP0       
+	00375: ALIGNRP    
+	00376: SRP0       
+	00377: ALIGNRP    
+	00378: MIAP[rd+ci] 
+	00379: ALIGNRP    
+	00380: ALIGNRP    
+	00381: SRP0       
+	00382: ALIGNRP    
+	00383: SRP0       
+	00384: MIRP[srp0,md,rd,1] 
+	00385: ALIGNRP    
+	00386: SRP0       
+	00387: ALIGNRP    
+	00388: SRP0       
+	00389: MIRP[srp0,md,rd,1] 
+	00390: ALIGNRP    
+	00391: SRP0       
+	00392: ALIGNRP    
+	00393: SRP1       
+	00394: SRP2       
+	00395: IP         
+	00396: MDAP[rd]   
+	00397: CALL       
+	00398: ALIGNRP    
+	00399: IP         
+	00400: SDPVTL[1]  
+	00401: MDAP[nrd]  
+	00402: CALL       
+	00403: SDPVTL[1]  
+	00404: SFVTL[=p1,p2] 
+	00405: RDTG       
+	00406: MDRP[nrp0,nmd,rd,0] 
+	00407: SDPVTL[1]  
+	00408: SFVTCA[y-axis] 
+	00409: MDAP[nrd]  
+	00410: RTG        
+	00411: CALL       
+	00412: SDPVTL[1]  
+	00413: SFVTL[=p1,p2] 
+	00414: RDTG       
+	00415: MDRP[nrp0,nmd,rd,0] 
+	00416: RTG        
+	00417: SVTCA[y-axis] 
+	00418: SRP0       
+	00419: MIRP[srp0,md,rd,1] 
+	00420: RTDG       
+	00421: SRP2       
+	00422: IP         
+	00423: MDAP[rd]   
+	00424: RTG        
+	00425: SVTCA[x-axis] 
+	00426: SRP0       
+	00427: MIRP[srp0,nmd,rd,1] 
+	00428: DELTAP1    
+	00429: DELTAP1    
+	00430: MIRP[srp0,nmd,rd,0] 
+	00431: MDRP[nrp0,nmd,rd,0] 
+	00432: SVTCA[y-axis] 
+	00433: SRP0       
+	00434: MIRP[srp0,md,rd,1] 
+	00435: RTDG       
+	00436: SRP2       
+	00437: IP         
+	00438: MDAP[rd]   
+	00439: RTG        
+	00440: SVTCA[x-axis] 
+	00441: SRP0       
+	00442: MIRP[srp0,nmd,rd,1] 
+	00443: DELTAP1    
+	00444: MIRP[srp0,nmd,rd,0] 
+	00445: MDRP[nrp0,nmd,rd,0] 
+	00446: SVTCA[y-axis] 
+	00447: SRP0       
+	00448: MIRP[srp0,md,rd,1] 
+	00449: RTDG       
+	00450: SRP2       
+	00451: IP         
+	00452: MDAP[rd]   
+	00453: RTG        
+	00454: SVTCA[x-axis] 
+	00455: SRP0       
+	00456: MIRP[srp0,nmd,rd,1] 
+	00457: DELTAP1    
+	00458: DELTAP2    
+	00459: MIRP[srp0,nmd,rd,0] 
+	00460: MDRP[nrp0,nmd,rd,0] 
+	00461: SVTCA[y-axis] 
+	00462: SRP0       
+	00463: MIRP[srp0,md,rd,1] 
+	00464: RTDG       
+	00465: SRP2       
+	00466: IP         
+	00467: MDAP[rd]   
+	00468: RTG        
+	00469: SVTCA[x-axis] 
+	00470: SRP0       
+	00471: MIRP[srp0,nmd,rd,1] 
+	00472: DELTAP1    
+	00473: MIRP[srp0,nmd,rd,0] 
+	00474: MDRP[nrp0,nmd,rd,0] 
+	00475: SVTCA[y-axis] 
+	00476: SRP0       
+	00477: MIRP[srp0,md,rd,1] 
+	00478: RTDG       
+	00479: SRP2       
+	00480: IP         
+	00481: MDAP[rd]   
+	00482: RTG        
+	00483: SVTCA[x-axis] 
+	00484: SRP0       
+	00485: MIRP[srp0,nmd,rd,1] 
+	00486: MIRP[srp0,nmd,rd,0] 
+	00487: MDRP[nrp0,nmd,rd,0] 
+	00488: SVTCA[y-axis] 
+	00489: SRP0       
+	00490: MIRP[srp0,md,rd,1] 
+	00491: RTDG       
+	00492: SRP2       
+	00493: IP         
+	00494: MDAP[rd]   
+	00495: RTG        
+	00496: SVTCA[x-axis] 
+	00497: SRP0       
+	00498: MIRP[srp0,nmd,rd,1] 
+	00499: DELTAP1    
+	00500: MIRP[srp0,nmd,rd,0] 
+	00501: MDRP[nrp0,nmd,rd,0] 
+	00502: IUP[y]     
+	00503: IUP[x]     
+	00504: SVTCA[y-axis] 
+	00505: DELTAP1    
+	00506: SVTCA[x-axis] 
+	00507: DELTAP1    
+	00508: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual                       X-Short On
+	  2:                                      On
+	  3:  YDual                       X-Short On
+	  4:        XDual                         On
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                               On
+	 11:  YDual                       X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short On
+	 16:        XDual                         On
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short On
+	 23:                                      On
+	 24:                                      On
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short On
+	 31:        XDual                         On
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                               On
+	 38:  YDual                       X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short On
+	 43:        XDual                         On
+	 44:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   665,    84)  ->  Abs (   665,    84)
+	  1: Rel (   -96,     0)  ->  Abs (   569,    84)
+	  2: Rel (  -323,   697)  ->  Abs (   246,   781)
+	  3: Rel (    -4,     0)  ->  Abs (   242,   781)
+	  4: Rel (     0,  -697)  ->  Abs (   242,    84)
+	  5: Rel (   155,     0)  ->  Abs (   397,    84)
+	  6: Rel (    56,     0)  ->  Abs (   453,    84)
+	  7: Rel (     0,   -42)  ->  Abs (   453,    42)
+	  8: Rel (     0,   -42)  ->  Abs (   453,     0)
+	  9: Rel (   -56,     0)  ->  Abs (   397,     0)
+	 10: Rel (  -310,     0)  ->  Abs (    87,     0)
+	 11: Rel (   -56,     0)  ->  Abs (    31,     0)
+	 12: Rel (     0,    42)  ->  Abs (    31,    42)
+	 13: Rel (     0,    42)  ->  Abs (    31,    84)
+	 14: Rel (    56,     0)  ->  Abs (    87,    84)
+	 15: Rel (    71,     0)  ->  Abs (   158,    84)
+	 16: Rel (     0,   697)  ->  Abs (   158,   781)
+	 17: Rel (   -53,     0)  ->  Abs (   105,   781)
+	 18: Rel (   -56,     0)  ->  Abs (    49,   781)
+	 19: Rel (     0,    42)  ->  Abs (    49,   823)
+	 20: Rel (     0,    43)  ->  Abs (    49,   866)
+	 21: Rel (    56,     0)  ->  Abs (   105,   866)
+	 22: Rel (   194,     0)  ->  Abs (   299,   866)
+	 23: Rel (   318,  -687)  ->  Abs (   617,   179)
+	 24: Rel (   313,   687)  ->  Abs (   930,   866)
+	 25: Rel (   194,     0)  ->  Abs (  1124,   866)
+	 26: Rel (    57,     0)  ->  Abs (  1181,   866)
+	 27: Rel (     0,   -43)  ->  Abs (  1181,   823)
+	 28: Rel (     0,   -42)  ->  Abs (  1181,   781)
+	 29: Rel (   -57,     0)  ->  Abs (  1124,   781)
+	 30: Rel (   -52,     0)  ->  Abs (  1072,   781)
+	 31: Rel (     0,  -697)  ->  Abs (  1072,    84)
+	 32: Rel (    70,     0)  ->  Abs (  1142,    84)
+	 33: Rel (    57,     0)  ->  Abs (  1199,    84)
+	 34: Rel (     0,   -42)  ->  Abs (  1199,    42)
+	 35: Rel (     0,   -42)  ->  Abs (  1199,     0)
+	 36: Rel (   -57,     0)  ->  Abs (  1142,     0)
+	 37: Rel (  -309,     0)  ->  Abs (   833,     0)
+	 38: Rel (   -57,     0)  ->  Abs (   776,     0)
+	 39: Rel (     0,    42)  ->  Abs (   776,    42)
+	 40: Rel (     0,    42)  ->  Abs (   776,    84)
+	 41: Rel (    57,     0)  ->  Abs (   833,    84)
+	 42: Rel (   154,     0)  ->  Abs (   987,    84)
+	 43: Rel (     0,   697)  ->  Abs (   987,   781)
+	 44: Rel (    -5,     0)  ->  Abs (   982,   781)
+
+	Glyph 615: off = 0x00021456, len = 524
+	  numberOfContours:	1
+	  xMin:			107
+	  yMin:			0
+	  xMax:			1122
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  51
+
+	  Length of Instructions:	394
+	00000: PUSHB[2]             33    29 
+	00003: PUSHW[1]            686 
+	00006: NPUSHB       (9):     0    31    64    31     2    31    31     1    31 
+	00017: PUSHW[1]            779 
+	00020: NPUSHB       (9):    28    31    31    29    28    34    33    34    38 
+	00031: PUSHW[1]            686 
+	00034: PUSHB[4]             15    36     1    36 
+	00039: PUSHW[1]            779 
+	00042: NPUSHB       (9):    39    36    36    38    39    34    34    19    15 
+	00053: PUSHW[1]            686 
+	00056: PUSHB[4]              0    17     1    17 
+	00061: PUSHW[1]            779 
+	00064: NPUSHB       (9):    14    17    17    15    14    34    19    20    24 
+	00075: PUSHW[1]            686 
+	00078: NPUSHB       (9):    15    22    79    22     2    16    22     1    22 
+	00089: PUSHW[1]            779 
+	00092: NPUSHB       (9):    25    22    22    24    25    34    20    45    41 
+	00103: PUSHW[1]            686 
+	00106: NPUSHB      (11):    43    92    40    43    43    41    40    34    45    46 
+	                            50 
+	00119: PUSHW[1]            686 
+	00122: NPUSHB      (14):    15    48     1    48    92    51    48    48    50    51 
+	                            34    46     7     3 
+	00138: PUSHW[1]            686 
+	00141: NPUSHB      (16):     0     5    16     5     2     5    92     2     5     5 
+	                             3     2    34     7     8    12 
+	00159: PUSHW[1]            686 
+	00162: NPUSHB      (73):    10    92    13    10    10    12    13    34     8    26 
+	                            32     1     1    19    41    50    50     3    12    59 
+	                             8    38    29    29    24    15    59    19    34    33 
+	                            33    20    19     6    45    46    46     7     8    10 
+	                            28    51    32    39    79    40    95    40   175    40 
+	                           191    40   223    40     5    40    26    53    25     2 
+	                            32    14   144    13   160    13     2    13    25    52 
+	                            71    97    24 
+	00237: CALL       
+	00238: FLIPOFF    
+	00239: SRP0       
+	00240: MIRP[srp0,nmd,rd,0] 
+	00241: DELTAP1    
+	00242: ALIGNRP    
+	00243: FLIPON     
+	00244: MIRP[srp0,md,rd,1] 
+	00245: ALIGNRP    
+	00246: FLIPOFF    
+	00247: SRP0       
+	00248: MIRP[srp0,nmd,rd,2] 
+	00249: DELTAP1    
+	00250: ALIGNRP    
+	00251: FLIPON     
+	00252: MIRP[srp0,md,rd,1] 
+	00253: ALIGNRP    
+	00254: SVTCA[y-axis] 
+	00255: MIAP[rd+ci] 
+	00256: ALIGNRP    
+	00257: ALIGNRP    
+	00258: SRP0       
+	00259: ALIGNRP    
+	00260: MIAP[rd+ci] 
+	00261: ALIGNRP    
+	00262: ALIGNRP    
+	00263: SRP0       
+	00264: ALIGNRP    
+	00265: SRP0       
+	00266: MIRP[srp0,md,rd,1] 
+	00267: ALIGNRP    
+	00268: ALIGNRP    
+	00269: SRP0       
+	00270: ALIGNRP    
+	00271: SRP0       
+	00272: MIRP[srp0,md,rd,1] 
+	00273: ALIGNRP    
+	00274: ALIGNRP    
+	00275: SRP0       
+	00276: ALIGNRP    
+	00277: SRP2       
+	00278: IP         
+	00279: MDAP[rd]   
+	00280: MIRP[nrp0,md,rd,1] 
+	00281: SRP0       
+	00282: MIRP[srp0,md,rd,1] 
+	00283: RTDG       
+	00284: SRP2       
+	00285: IP         
+	00286: MDAP[rd]   
+	00287: RTG        
+	00288: SVTCA[x-axis] 
+	00289: SRP0       
+	00290: MIRP[srp0,nmd,rd,1] 
+	00291: MIRP[srp0,nmd,rd,0] 
+	00292: MDRP[nrp0,nmd,rd,0] 
+	00293: SVTCA[y-axis] 
+	00294: SRP0       
+	00295: MIRP[srp0,md,rd,1] 
+	00296: RTDG       
+	00297: SRP2       
+	00298: IP         
+	00299: MDAP[rd]   
+	00300: RTG        
+	00301: SVTCA[x-axis] 
+	00302: SRP0       
+	00303: MIRP[srp0,nmd,rd,1] 
+	00304: DELTAP1    
+	00305: MIRP[srp0,nmd,rd,0] 
+	00306: MDRP[nrp0,nmd,rd,0] 
+	00307: SVTCA[y-axis] 
+	00308: SRP0       
+	00309: MIRP[srp0,md,rd,1] 
+	00310: RTDG       
+	00311: SRP2       
+	00312: IP         
+	00313: MDAP[rd]   
+	00314: RTG        
+	00315: SVTCA[x-axis] 
+	00316: SRP0       
+	00317: MIRP[srp0,nmd,rd,1] 
+	00318: DELTAP1    
+	00319: MIRP[srp0,nmd,rd,0] 
+	00320: MDRP[nrp0,nmd,rd,0] 
+	00321: SVTCA[y-axis] 
+	00322: SRP0       
+	00323: MIRP[srp0,md,rd,1] 
+	00324: RTDG       
+	00325: SRP2       
+	00326: IP         
+	00327: MDAP[rd]   
+	00328: RTG        
+	00329: SVTCA[x-axis] 
+	00330: SRP0       
+	00331: MIRP[srp0,nmd,rd,1] 
+	00332: MIRP[srp0,nmd,rd,0] 
+	00333: MDRP[nrp0,nmd,rd,0] 
+	00334: SVTCA[y-axis] 
+	00335: SRP0       
+	00336: MIRP[srp0,md,rd,1] 
+	00337: RTDG       
+	00338: SRP2       
+	00339: IP         
+	00340: MDAP[rd]   
+	00341: RTG        
+	00342: SVTCA[x-axis] 
+	00343: SRP0       
+	00344: MIRP[srp0,nmd,rd,1] 
+	00345: DELTAP1    
+	00346: DELTAP2    
+	00347: MIRP[srp0,nmd,rd,0] 
+	00348: MDRP[nrp0,nmd,rd,0] 
+	00349: SVTCA[y-axis] 
+	00350: SRP0       
+	00351: MIRP[srp0,md,rd,1] 
+	00352: RTDG       
+	00353: SRP2       
+	00354: IP         
+	00355: MDAP[rd]   
+	00356: RTG        
+	00357: SVTCA[x-axis] 
+	00358: SRP0       
+	00359: MIRP[srp0,nmd,rd,1] 
+	00360: DELTAP1    
+	00361: MIRP[srp0,nmd,rd,0] 
+	00362: MDRP[nrp0,nmd,rd,0] 
+	00363: SVTCA[y-axis] 
+	00364: SRP0       
+	00365: MIRP[srp0,md,rd,1] 
+	00366: RTDG       
+	00367: SRP2       
+	00368: IP         
+	00369: MDAP[rd]   
+	00370: RTG        
+	00371: SVTCA[x-axis] 
+	00372: SRP0       
+	00373: MIRP[srp0,nmd,rd,1] 
+	00374: DELTAP1    
+	00375: MIRP[srp0,nmd,rd,0] 
+	00376: MDRP[nrp0,nmd,rd,0] 
+	00377: SVTCA[y-axis] 
+	00378: SRP0       
+	00379: MIRP[srp0,md,rd,1] 
+	00380: RTDG       
+	00381: SRP2       
+	00382: IP         
+	00383: MDAP[rd]   
+	00384: RTG        
+	00385: SVTCA[x-axis] 
+	00386: SRP0       
+	00387: MIRP[srp0,nmd,rd,1] 
+	00388: DELTAP1    
+	00389: DELTAP2    
+	00390: MIRP[srp0,nmd,rd,0] 
+	00391: MDRP[nrp0,nmd,rd,0] 
+	00392: IUP[y]     
+	00393: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                               On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual                         On
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short On
+	 26:        XDual                         On
+	 27:  YDual                               On
+	 28:        XDual                         On
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short On
+	 40:        XDual                         On
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:  YDual                       X-Short On
+	 46:  YDual                               On
+	 47:  YDual                       X-Short Off
+	 48:  YDual XDual         Y-Short         On
+	 49:  YDual XDual         Y-Short         Off
+	 50:  YDual XDual                 X-Short On
+	 51:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   887,   413)  ->  Abs (   887,   413)
+	  1: Rel (  -545,     0)  ->  Abs (   342,   413)
+	  2: Rel (     0,  -329)  ->  Abs (   342,    84)
+	  3: Rel (    95,     0)  ->  Abs (   437,    84)
+	  4: Rel (    56,     0)  ->  Abs (   493,    84)
+	  5: Rel (     0,   -42)  ->  Abs (   493,    42)
+	  6: Rel (     0,   -42)  ->  Abs (   493,     0)
+	  7: Rel (   -56,     0)  ->  Abs (   437,     0)
+	  8: Rel (  -274,     0)  ->  Abs (   163,     0)
+	  9: Rel (   -56,     0)  ->  Abs (   107,     0)
+	 10: Rel (     0,    42)  ->  Abs (   107,    42)
+	 11: Rel (     0,    42)  ->  Abs (   107,    84)
+	 12: Rel (    56,     0)  ->  Abs (   163,    84)
+	 13: Rel (    95,     0)  ->  Abs (   258,    84)
+	 14: Rel (     0,   697)  ->  Abs (   258,   781)
+	 15: Rel (   -65,     0)  ->  Abs (   193,   781)
+	 16: Rel (   -56,     0)  ->  Abs (   137,   781)
+	 17: Rel (     0,    42)  ->  Abs (   137,   823)
+	 18: Rel (     0,    43)  ->  Abs (   137,   866)
+	 19: Rel (    56,     0)  ->  Abs (   193,   866)
+	 20: Rel (   214,     0)  ->  Abs (   407,   866)
+	 21: Rel (    56,     0)  ->  Abs (   463,   866)
+	 22: Rel (     0,   -43)  ->  Abs (   463,   823)
+	 23: Rel (     0,   -42)  ->  Abs (   463,   781)
+	 24: Rel (   -56,     0)  ->  Abs (   407,   781)
+	 25: Rel (   -65,     0)  ->  Abs (   342,   781)
+	 26: Rel (     0,  -283)  ->  Abs (   342,   498)
+	 27: Rel (   545,     0)  ->  Abs (   887,   498)
+	 28: Rel (     0,   283)  ->  Abs (   887,   781)
+	 29: Rel (   -64,     0)  ->  Abs (   823,   781)
+	 30: Rel (   -57,     0)  ->  Abs (   766,   781)
+	 31: Rel (     0,    42)  ->  Abs (   766,   823)
+	 32: Rel (     0,    43)  ->  Abs (   766,   866)
+	 33: Rel (    57,     0)  ->  Abs (   823,   866)
+	 34: Rel (   213,     0)  ->  Abs (  1036,   866)
+	 35: Rel (    56,     0)  ->  Abs (  1092,   866)
+	 36: Rel (     0,   -43)  ->  Abs (  1092,   823)
+	 37: Rel (     0,   -42)  ->  Abs (  1092,   781)
+	 38: Rel (   -56,     0)  ->  Abs (  1036,   781)
+	 39: Rel (   -65,     0)  ->  Abs (   971,   781)
+	 40: Rel (     0,  -697)  ->  Abs (   971,    84)
+	 41: Rel (    95,     0)  ->  Abs (  1066,    84)
+	 42: Rel (    56,     0)  ->  Abs (  1122,    84)
+	 43: Rel (     0,   -42)  ->  Abs (  1122,    42)
+	 44: Rel (     0,   -42)  ->  Abs (  1122,     0)
+	 45: Rel (   -56,     0)  ->  Abs (  1066,     0)
+	 46: Rel (  -274,     0)  ->  Abs (   792,     0)
+	 47: Rel (   -56,     0)  ->  Abs (   736,     0)
+	 48: Rel (     0,    42)  ->  Abs (   736,    42)
+	 49: Rel (     0,    42)  ->  Abs (   736,    84)
+	 50: Rel (    56,     0)  ->  Abs (   792,    84)
+	 51: Rel (    95,     0)  ->  Abs (   887,    84)
+
+	Glyph 616: off = 0x00021662, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1084
+	  yMax:			896
+
+	     0: Flags:		0x0216
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 617: off = 0x00021672, len = 390
+	  numberOfContours:	1
+	  xMin:			107
+	  yMin:			0
+	  xMax:			1122
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  37
+
+	  Length of Instructions:	289
+	00000: PUSHB[2]             19    15 
+	00003: PUSHW[1]            686 
+	00006: PUSHB[4]              0    17     1    17 
+	00011: PUSHW[1]            779 
+	00014: NPUSHB       (9):    14    17    17    15    14    34    19    20    24 
+	00025: PUSHW[1]            686 
+	00028: PUSHB[4]             15    22     1    22 
+	00033: PUSHW[1]            779 
+	00036: NPUSHB       (9):    25    22    22    24    25    34    20    31    27 
+	00047: PUSHW[1]            686 
+	00050: NPUSHB      (11):    29    92    26    29    29    27    26    34    31    32 
+	                            36 
+	00063: PUSHW[1]            686 
+	00066: NPUSHB      (11):    34    92    37    34    34    36    37    34    32     8 
+	                            12 
+	00079: PUSHW[1]            686 
+	00082: NPUSHB      (11):    10    92    13    10    10    12    13    34     8     7 
+	                             3 
+	00095: PUSHW[1]            686 
+	00098: NPUSHB      (70):     5    92     2     5     5     3     2    34     7    27 
+	                            36    36     3     3    12    59     8     8     7     7 
+	                            31    31    32    24     1    15    32    20    19    32 
+	                            10    19     6     0    37    32    25    79    26    95 
+	                            26   111    26   159    26   175    26   191    26   223 
+	                            26     7    26    26    39     1     2    32    14   144 
+	                            13   160    13     2    13    25    38    71    97    24 
+	00170: CALL       
+	00171: FLIPOFF    
+	00172: SRP0       
+	00173: MIRP[srp0,nmd,rd,0] 
+	00174: DELTAP1    
+	00175: ALIGNRP    
+	00176: FLIPON     
+	00177: MIRP[srp0,md,rd,1] 
+	00178: ALIGNRP    
+	00179: FLIPOFF    
+	00180: SRP0       
+	00181: MIRP[srp0,nmd,rd,2] 
+	00182: DELTAP1    
+	00183: ALIGNRP    
+	00184: FLIPON     
+	00185: MIRP[srp0,md,rd,1] 
+	00186: ALIGNRP    
+	00187: SVTCA[y-axis] 
+	00188: MIAP[rd+ci] 
+	00189: MIAP[rd+ci] 
+	00190: SRP0       
+	00191: ALIGNRP    
+	00192: MIRP[srp0,md,rd,1] 
+	00193: ALIGNRP    
+	00194: ALIGNRP    
+	00195: SRP0       
+	00196: ALIGNRP    
+	00197: SRP0       
+	00198: ALIGNRP    
+	00199: SRP0       
+	00200: ALIGNRP    
+	00201: SRP0       
+	00202: MIRP[srp0,md,rd,1] 
+	00203: ALIGNRP    
+	00204: SRP0       
+	00205: ALIGNRP    
+	00206: SRP0       
+	00207: ALIGNRP    
+	00208: SRP0       
+	00209: MIRP[srp0,md,rd,1] 
+	00210: RTDG       
+	00211: SRP2       
+	00212: IP         
+	00213: MDAP[rd]   
+	00214: RTG        
+	00215: SVTCA[x-axis] 
+	00216: SRP0       
+	00217: MIRP[srp0,nmd,rd,1] 
+	00218: MIRP[srp0,nmd,rd,0] 
+	00219: MDRP[nrp0,nmd,rd,0] 
+	00220: SVTCA[y-axis] 
+	00221: SRP0       
+	00222: MIRP[srp0,md,rd,1] 
+	00223: RTDG       
+	00224: SRP2       
+	00225: IP         
+	00226: MDAP[rd]   
+	00227: RTG        
+	00228: SVTCA[x-axis] 
+	00229: SRP0       
+	00230: MIRP[srp0,nmd,rd,1] 
+	00231: MIRP[srp0,nmd,rd,0] 
+	00232: MDRP[nrp0,nmd,rd,0] 
+	00233: SVTCA[y-axis] 
+	00234: SRP0       
+	00235: MIRP[srp0,md,rd,1] 
+	00236: RTDG       
+	00237: SRP2       
+	00238: IP         
+	00239: MDAP[rd]   
+	00240: RTG        
+	00241: SVTCA[x-axis] 
+	00242: SRP0       
+	00243: MIRP[srp0,nmd,rd,1] 
+	00244: MIRP[srp0,nmd,rd,0] 
+	00245: MDRP[nrp0,nmd,rd,0] 
+	00246: SVTCA[y-axis] 
+	00247: SRP0       
+	00248: MIRP[srp0,md,rd,1] 
+	00249: RTDG       
+	00250: SRP2       
+	00251: IP         
+	00252: MDAP[rd]   
+	00253: RTG        
+	00254: SVTCA[x-axis] 
+	00255: SRP0       
+	00256: MIRP[srp0,nmd,rd,1] 
+	00257: MIRP[srp0,nmd,rd,0] 
+	00258: MDRP[nrp0,nmd,rd,0] 
+	00259: SVTCA[y-axis] 
+	00260: SRP0       
+	00261: MIRP[srp0,md,rd,1] 
+	00262: RTDG       
+	00263: SRP2       
+	00264: IP         
+	00265: MDAP[rd]   
+	00266: RTG        
+	00267: SVTCA[x-axis] 
+	00268: SRP0       
+	00269: MIRP[srp0,nmd,rd,1] 
+	00270: DELTAP1    
+	00271: MIRP[srp0,nmd,rd,0] 
+	00272: MDRP[nrp0,nmd,rd,0] 
+	00273: SVTCA[y-axis] 
+	00274: SRP0       
+	00275: MIRP[srp0,md,rd,1] 
+	00276: RTDG       
+	00277: SRP2       
+	00278: IP         
+	00279: MDAP[rd]   
+	00280: RTG        
+	00281: SVTCA[x-axis] 
+	00282: SRP0       
+	00283: MIRP[srp0,nmd,rd,1] 
+	00284: DELTAP1    
+	00285: MIRP[srp0,nmd,rd,0] 
+	00286: MDRP[nrp0,nmd,rd,0] 
+	00287: IUP[y]     
+	00288: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                               On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual                         On
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual                               On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short On
+	 26:        XDual                         On
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                               On
+	 33:  YDual                       X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   887,   781)  ->  Abs (   887,   781)
+	  1: Rel (  -545,     0)  ->  Abs (   342,   781)
+	  2: Rel (     0,  -697)  ->  Abs (   342,    84)
+	  3: Rel (    95,     0)  ->  Abs (   437,    84)
+	  4: Rel (    56,     0)  ->  Abs (   493,    84)
+	  5: Rel (     0,   -42)  ->  Abs (   493,    42)
+	  6: Rel (     0,   -42)  ->  Abs (   493,     0)
+	  7: Rel (   -56,     0)  ->  Abs (   437,     0)
+	  8: Rel (  -274,     0)  ->  Abs (   163,     0)
+	  9: Rel (   -56,     0)  ->  Abs (   107,     0)
+	 10: Rel (     0,    42)  ->  Abs (   107,    42)
+	 11: Rel (     0,    42)  ->  Abs (   107,    84)
+	 12: Rel (    56,     0)  ->  Abs (   163,    84)
+	 13: Rel (    95,     0)  ->  Abs (   258,    84)
+	 14: Rel (     0,   697)  ->  Abs (   258,   781)
+	 15: Rel (   -65,     0)  ->  Abs (   193,   781)
+	 16: Rel (   -56,     0)  ->  Abs (   137,   781)
+	 17: Rel (     0,    42)  ->  Abs (   137,   823)
+	 18: Rel (     0,    43)  ->  Abs (   137,   866)
+	 19: Rel (    56,     0)  ->  Abs (   193,   866)
+	 20: Rel (   843,     0)  ->  Abs (  1036,   866)
+	 21: Rel (    56,     0)  ->  Abs (  1092,   866)
+	 22: Rel (     0,   -43)  ->  Abs (  1092,   823)
+	 23: Rel (     0,   -42)  ->  Abs (  1092,   781)
+	 24: Rel (   -56,     0)  ->  Abs (  1036,   781)
+	 25: Rel (   -65,     0)  ->  Abs (   971,   781)
+	 26: Rel (     0,  -697)  ->  Abs (   971,    84)
+	 27: Rel (    95,     0)  ->  Abs (  1066,    84)
+	 28: Rel (    56,     0)  ->  Abs (  1122,    84)
+	 29: Rel (     0,   -42)  ->  Abs (  1122,    42)
+	 30: Rel (     0,   -42)  ->  Abs (  1122,     0)
+	 31: Rel (   -56,     0)  ->  Abs (  1066,     0)
+	 32: Rel (  -274,     0)  ->  Abs (   792,     0)
+	 33: Rel (   -56,     0)  ->  Abs (   736,     0)
+	 34: Rel (     0,    42)  ->  Abs (   736,    42)
+	 35: Rel (     0,    42)  ->  Abs (   736,    84)
+	 36: Rel (    56,     0)  ->  Abs (   792,    84)
+	 37: Rel (    95,     0)  ->  Abs (   887,    84)
+
+	Glyph 618: off = 0x000217F8, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			45
+	  yMin:			-386
+	  xMax:			1111
+	  yMax:			896
+
+	     0: Flags:		0x0216
+		Glyf Index:	83
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 619: off = 0x00021808, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			171
+	  yMin:			-33
+	  xMax:			1099
+	  yMax:			896
+
+	     0: Flags:		0x0216
+		Glyf Index:	70
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 620: off = 0x00021818, len = 214
+	  numberOfContours:	1
+	  xMin:			166
+	  yMin:			0
+	  xMax:			1063
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  27
+
+	  Length of Instructions:	131
+	00000: PUSHB[2]              7    11 
+	00003: PUSHW[1]            686 
+	00006: NPUSHB      (11):     9   200    12     9     9    11    12    34     7     6 
+	                             2 
+	00019: PUSHW[1]            686 
+	00022: NPUSHB      (29):     4   200     1     4     4     2     1    34     6     2 
+	                            11    59     7    24    17    27    14    59    21    20 
+	                             6     6     7    10    27    26    59    21    22 
+	00053: PUSHW[1]            788 
+	00056: PUSHB[6]              1    14    15    59    20    19 
+	00063: PUSHW[1]            788 
+	00066: NPUSHB      (10):     1    32    13     0    12     1    12   196   172    24 
+	00078: CALL       
+	00079: MDAP[rd]   
+	00080: DELTAP1    
+	00081: ALIGNRP    
+	00082: MIRP[nrp0,md,rd,1] 
+	00083: MIRP[srp0,nmd,rd,0] 
+	00084: ALIGNRP    
+	00085: MIRP[srp0,md,rd,1] 
+	00086: ALIGNRP    
+	00087: SRP0       
+	00088: MIRP[srp0,nmd,rd,0] 
+	00089: ALIGNRP    
+	00090: MIRP[srp0,md,rd,1] 
+	00091: ALIGNRP    
+	00092: SVTCA[y-axis] 
+	00093: MIAP[rd+ci] 
+	00094: ALIGNRP    
+	00095: MIAP[rd+ci] 
+	00096: ALIGNRP    
+	00097: MIRP[srp0,md,rd,1] 
+	00098: ALIGNRP    
+	00099: MDAP[rd]   
+	00100: ALIGNRP    
+	00101: SRP0       
+	00102: MIRP[srp0,md,rd,1] 
+	00103: ALIGNRP    
+	00104: SRP0       
+	00105: MIRP[srp0,md,rd,1] 
+	00106: RTDG       
+	00107: SRP2       
+	00108: IP         
+	00109: MDAP[rd]   
+	00110: RTG        
+	00111: SVTCA[x-axis] 
+	00112: SRP0       
+	00113: MIRP[srp0,nmd,rd,1] 
+	00114: MIRP[srp0,nmd,rd,0] 
+	00115: MDRP[nrp0,nmd,rd,0] 
+	00116: SVTCA[y-axis] 
+	00117: SRP0       
+	00118: MIRP[srp0,md,rd,1] 
+	00119: RTDG       
+	00120: SRP2       
+	00121: IP         
+	00122: MDAP[rd]   
+	00123: RTG        
+	00124: SVTCA[x-axis] 
+	00125: SRP0       
+	00126: MIRP[srp0,nmd,rd,1] 
+	00127: MIRP[srp0,nmd,rd,0] 
+	00128: MDRP[nrp0,nmd,rd,0] 
+	00129: IUP[y]     
+	00130: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                               On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:  YDual                               On
+	 15:        XDual                         On
+	 16:        XDual         Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:        XDual                         On
+	 21:  YDual                               On
+	 22:        XDual                         On
+	 23:        XDual         Y-Short         Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   656,   781)  ->  Abs (   656,   781)
+	  1: Rel (     0,  -697)  ->  Abs (   656,    84)
+	  2: Rel (   218,     0)  ->  Abs (   874,    84)
+	  3: Rel (    57,     0)  ->  Abs (   931,    84)
+	  4: Rel (     0,   -42)  ->  Abs (   931,    42)
+	  5: Rel (     0,   -42)  ->  Abs (   931,     0)
+	  6: Rel (   -57,     0)  ->  Abs (   874,     0)
+	  7: Rel (  -520,     0)  ->  Abs (   354,     0)
+	  8: Rel (   -57,     0)  ->  Abs (   297,     0)
+	  9: Rel (     0,    42)  ->  Abs (   297,    42)
+	 10: Rel (     0,    42)  ->  Abs (   297,    84)
+	 11: Rel (    57,     0)  ->  Abs (   354,    84)
+	 12: Rel (   218,     0)  ->  Abs (   572,    84)
+	 13: Rel (     0,   697)  ->  Abs (   572,   781)
+	 14: Rel (  -322,     0)  ->  Abs (   250,   781)
+	 15: Rel (     0,  -291)  ->  Abs (   250,   490)
+	 16: Rel (     0,   -56)  ->  Abs (   250,   434)
+	 17: Rel (   -42,     0)  ->  Abs (   208,   434)
+	 18: Rel (   -42,     0)  ->  Abs (   166,   434)
+	 19: Rel (     0,    56)  ->  Abs (   166,   490)
+	 20: Rel (     0,   376)  ->  Abs (   166,   866)
+	 21: Rel (   897,     0)  ->  Abs (  1063,   866)
+	 22: Rel (     0,  -376)  ->  Abs (  1063,   490)
+	 23: Rel (     0,   -56)  ->  Abs (  1063,   434)
+	 24: Rel (   -42,     0)  ->  Abs (  1021,   434)
+	 25: Rel (   -43,     0)  ->  Abs (   978,   434)
+	 26: Rel (     0,    56)  ->  Abs (   978,   490)
+	 27: Rel (     0,   291)  ->  Abs (   978,   781)
+
+	Glyph 621: off = 0x000218EE, len = 470
+	  numberOfContours:	1
+	  xMin:			60
+	  yMin:			-306
+	  xMax:			1194
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  44
+
+	  Length of Instructions:	343
+	00000: NPUSHB      (29):   133    16     1    40    14    40    32    56     1    57 
+	                            14    57    31   104     0   104    34     7     1     1 
+	                             0    33    32    33    34    32     2    39    35 
+	00031: PUSHW[4]            686    37    37   779 
+	00040: NPUSHB      (11):    34    37    37    35    34    34    39    34    33    40 
+	                            44 
+	00053: PUSHW[1]            686 
+	00056: NPUSHB      (14):    42    42    92     0    42    42    44     0    34    40 
+	                             0     1     7     3 
+	00072: PUSHW[1]            686 
+	00075: NPUSHB      (14):     5     5    92     2     5     5     3     2    34     7 
+	                             2    32     8    12 
+	00091: PUSHW[4]            686    10    10   779 
+	00100: NPUSHB     (111):    13    10    10    12    13    34     8    13    14    32 
+	                             2     2    32    13    14    20    13    13    14     1 
+	                             0     1     2     0    32    34    33    20    34    34 
+	                            33    33     1    32    14     4    39    17    24    29 
+	                            38    17    12     3     3    44    44    35    59    39 
+	                             8     7     7    40    39     6     0     2     1    33 
+	                            32    14     6    13    34    26    59    22    22    34 
+	                            79    13     1    15    13    31    13   111    13   143 
+	                            13   144    13     5    13    64    20    22    52    13 
+	                            26    46    79    34     1   143    34   144    34     2 
+	                            34    64    20    22    52    34    25    45   196   172 
+	                            24 
+	00213: CALL       
+	00214: FLIPOFF    
+	00215: SRP0       
+	00216: MIRP[nrp0,nmd,rd,0] 
+	00217: CALL       
+	00218: DELTAP1    
+	00219: DELTAP2    
+	00220: SRP0       
+	00221: MIRP[nrp0,nmd,rd,2] 
+	00222: CALL       
+	00223: DELTAP1    
+	00224: DELTAP2    
+	00225: SRP0       
+	00226: ALIGNRP    
+	00227: FLIPON     
+	00228: SRP0       
+	00229: MIRP[nrp0,md,rd,1] 
+	00230: SRP1       
+	00231: SRP2       
+	00232: SLOOP      
+	00233: IP         
+	00234: SVTCA[y-axis] 
+	00235: MIAP[rd+ci] 
+	00236: ALIGNRP    
+	00237: ALIGNRP    
+	00238: SRP0       
+	00239: ALIGNRP    
+	00240: SRP0       
+	00241: MIRP[srp0,md,rd,1] 
+	00242: ALIGNRP    
+	00243: SRP0       
+	00244: ALIGNRP    
+	00245: SRP0       
+	00246: ALIGNRP    
+	00247: MDAP[rd]   
+	00248: MIRP[nrp0,md,rd,1] 
+	00249: MDAP[rd]   
+	00250: SRP1       
+	00251: SRP2       
+	00252: SLOOP      
+	00253: IP         
+	00254: SDPVTL[1]  
+	00255: SFVTCA[x-axis] 
+	00256: MDAP[nrd]  
+	00257: CALL       
+	00258: SFVTL[=p1,p2] 
+	00259: RDTG       
+	00260: SRP0       
+	00261: MDRP[nrp0,nmd,rd,0] 
+	00262: SDPVTL[1]  
+	00263: SFVTCA[x-axis] 
+	00264: MDAP[nrd]  
+	00265: RTG        
+	00266: CALL       
+	00267: SFVTPV     
+	00268: RDTG       
+	00269: SRP0       
+	00270: MDRP[nrp0,nmd,rd,0] 
+	00271: RTG        
+	00272: SVTCA[y-axis] 
+	00273: SFVTL[=p1,p2] 
+	00274: SRP0       
+	00275: MIRP[srp0,md,rd,1] 
+	00276: RTDG       
+	00277: SRP2       
+	00278: IP         
+	00279: MDAP[rd]   
+	00280: RTG        
+	00281: SVTCA[x-axis] 
+	00282: SRP0       
+	00283: MIRP[srp0,nmd,nrd,1] 
+	00284: MDAP[rd]   
+	00285: MIRP[srp0,nmd,rd,0] 
+	00286: MDRP[nrp0,nmd,rd,0] 
+	00287: SVTCA[y-axis] 
+	00288: SFVTL[=p1,p2] 
+	00289: SRP0       
+	00290: MIRP[srp0,md,rd,1] 
+	00291: RTDG       
+	00292: SRP2       
+	00293: IP         
+	00294: MDAP[rd]   
+	00295: RTG        
+	00296: SVTCA[x-axis] 
+	00297: SRP0       
+	00298: MIRP[srp0,nmd,nrd,1] 
+	00299: MDAP[rd]   
+	00300: MIRP[srp0,nmd,rd,0] 
+	00301: MDRP[nrp0,nmd,rd,0] 
+	00302: SVTCA[y-axis] 
+	00303: SFVTL[=p1,p2] 
+	00304: SRP0       
+	00305: MIRP[srp0,md,rd,1] 
+	00306: RTDG       
+	00307: SRP2       
+	00308: IP         
+	00309: MDAP[rd]   
+	00310: RTG        
+	00311: SVTCA[x-axis] 
+	00312: SRP0       
+	00313: MIRP[srp0,nmd,nrd,1] 
+	00314: MDAP[rd]   
+	00315: MIRP[srp0,nmd,rd,0] 
+	00316: MDRP[nrp0,nmd,rd,0] 
+	00317: SVTCA[y-axis] 
+	00318: SFVTL[=p1,p2] 
+	00319: SRP0       
+	00320: MIRP[srp0,md,rd,1] 
+	00321: RTDG       
+	00322: SRP2       
+	00323: IP         
+	00324: MDAP[rd]   
+	00325: RTG        
+	00326: SVTCA[x-axis] 
+	00327: SRP0       
+	00328: MIRP[srp0,nmd,nrd,1] 
+	00329: MDAP[rd]   
+	00330: MIRP[srp0,nmd,rd,0] 
+	00331: MDRP[nrp0,nmd,rd,0] 
+	00332: SPVTL[p1,p2] 
+	00333: SFVTL[=p1,p2] 
+	00334: SRP0       
+	00335: ALIGNRP    
+	00336: SFVTL[=p1,p2] 
+	00337: ALIGNRP    
+	00338: IUP[y]     
+	00339: IUP[x]     
+	00340: SVTCA[x-axis] 
+	00341: DELTAP1    
+	00342: DELTAP2    
+
+	Flags
+	-----
+	  0:              Rep-  2                 On
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short On
+	 14:                                      On
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:                                      On
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   276,   781)  ->  Abs (   276,   781)
+	  1: Rel (   355,  -644)  ->  Abs (   631,   137)
+	  2: Rel (   352,   644)  ->  Abs (   983,   781)
+	  3: Rel (   -74,     0)  ->  Abs (   909,   781)
+	  4: Rel (   -70,     0)  ->  Abs (   839,   781)
+	  5: Rel (     0,    42)  ->  Abs (   839,   823)
+	  6: Rel (     0,    43)  ->  Abs (   839,   866)
+	  7: Rel (    70,     0)  ->  Abs (   909,   866)
+	  8: Rel (   215,     0)  ->  Abs (  1124,   866)
+	  9: Rel (    70,     0)  ->  Abs (  1194,   866)
+	 10: Rel (     0,   -43)  ->  Abs (  1194,   823)
+	 11: Rel (     0,   -42)  ->  Abs (  1194,   781)
+	 12: Rel (   -70,     0)  ->  Abs (  1124,   781)
+	 13: Rel (   -47,     0)  ->  Abs (  1077,   781)
+	 14: Rel (  -486,  -889)  ->  Abs (   591,  -108)
+	 15: Rel (   -61,  -111)  ->  Abs (   530,  -219)
+	 16: Rel (  -112,   -87)  ->  Abs (   418,  -306)
+	 17: Rel (   -71,     0)  ->  Abs (   347,  -306)
+	 18: Rel (   -54,     0)  ->  Abs (   293,  -306)
+	 19: Rel (   -85,    21)  ->  Abs (   208,  -285)
+	 20: Rel (   -28,    30)  ->  Abs (   180,  -255)
+	 21: Rel (     0,    44)  ->  Abs (   180,  -211)
+	 22: Rel (     0,   116)  ->  Abs (   180,   -95)
+	 23: Rel (     0,    68)  ->  Abs (   180,   -27)
+	 24: Rel (    42,     0)  ->  Abs (   222,   -27)
+	 25: Rel (    42,     0)  ->  Abs (   264,   -27)
+	 26: Rel (     0,   -63)  ->  Abs (   264,   -90)
+	 27: Rel (     0,  -123)  ->  Abs (   264,  -213)
+	 28: Rel (    37,    -9)  ->  Abs (   301,  -222)
+	 29: Rel (    32,     0)  ->  Abs (   333,  -222)
+	 30: Rel (    60,     0)  ->  Abs (   393,  -222)
+	 31: Rel (    73,    58)  ->  Abs (   466,  -164)
+	 32: Rel (    51,    94)  ->  Abs (   517,   -70)
+	 33: Rel (    64,   117)  ->  Abs (   581,    47)
+	 34: Rel (  -401,   734)  ->  Abs (   180,   781)
+	 35: Rel (   -50,     0)  ->  Abs (   130,   781)
+	 36: Rel (   -70,     0)  ->  Abs (    60,   781)
+	 37: Rel (     0,    42)  ->  Abs (    60,   823)
+	 38: Rel (     0,    43)  ->  Abs (    60,   866)
+	 39: Rel (    70,     0)  ->  Abs (   130,   866)
+	 40: Rel (   223,     0)  ->  Abs (   353,   866)
+	 41: Rel (    70,     0)  ->  Abs (   423,   866)
+	 42: Rel (     0,   -43)  ->  Abs (   423,   823)
+	 43: Rel (     0,   -42)  ->  Abs (   423,   781)
+	 44: Rel (   -70,     0)  ->  Abs (   353,   781)
+
+	Glyph 622: off = 0x00021AC4, len = 432
+	  numberOfContours:	3
+	  xMin:			119
+	  yMin:			-320
+	  xMax:			1110
+	  yMax:			1231
+
+	EndPoints
+	---------
+	  0:  46
+	  1:  57
+	  2:  68
+
+	  Length of Instructions:	243
+	00000: NPUSHB      (20):    74     4    71    27     2   120     7   120    26   136 
+	                            26   152    26   215     6   230     6     6    30     3 
+	00022: PUSHW[1]            -19 
+	00025: NPUSHB      (13):     2    27    19    70    30     1    50    54    19     2 
+	                             7    66    62 
+	00040: PUSHW[1]            -19 
+	00043: PUSHB[3]              3    16    12 
+	00047: PUSHW[1]            686 
+	00050: NPUSHB      (11):    14   200    11    14    14    12    11    34    16    17 
+	                            21 
+	00063: PUSHW[1]            686 
+	00066: NPUSHB      (52):    19   200    22    19    19    21    22    34    17    34 
+	                            38    63    44     1    44    33     0    38    59    57 
+	                            89    61    55    38    31     2     7    23    10    38 
+	                            58    84    47    16    25    29    52    47    89    49 
+	                            49    67    38     8    25    11    12    21    59    16 
+	                            17    39 
+	00120: PUSHW[1]            355 
+	00123: PUSHB[4]             22    64    59    28 
+	00128: PUSHW[1]            517 
+	00131: PUSHB[4]             22    52    59     5 
+	00136: PUSHW[1]            517 
+	00139: NPUSHB      (19):    11    46    47    47    11    32    22    34    58    58 
+	                             0    22   240    22     2    22   230   142    24 
+	00160: CALL       
+	00161: MDAP[rd]   
+	00162: DELTAP1    
+	00163: ALIGNRP    
+	00164: SRP0       
+	00165: ALIGNRP    
+	00166: SRP0       
+	00167: MIRP[srp0,md,rd,1] 
+	00168: ALIGNRP    
+	00169: SRP0       
+	00170: ALIGNRP    
+	00171: SRP0       
+	00172: MIRP[srp0,nmd,rd,0] 
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: SRP0       
+	00175: MIRP[srp0,nmd,rd,0] 
+	00176: MIRP[nrp0,md,rd,1] 
+	00177: SRP0       
+	00178: MIRP[nrp0,nmd,rd,0] 
+	00179: SVTCA[y-axis] 
+	00180: MDAP[rd]   
+	00181: ALIGNRP    
+	00182: MIRP[srp0,md,rd,1] 
+	00183: ALIGNRP    
+	00184: MIAP[rd+ci] 
+	00185: ALIGNRP    
+	00186: MIRP[srp0,md,rd,1] 
+	00187: ALIGNRP    
+	00188: SRP0       
+	00189: MIRP[srp0,nmd,rd,0] 
+	00190: CALL       
+	00191: MIRP[nrp0,nmd,rd,0] 
+	00192: MIRP[srp0,md,rd,1] 
+	00193: ALIGNRP    
+	00194: MIAP[rd+ci] 
+	00195: ALIGNRP    
+	00196: MIRP[srp0,md,rd,1] 
+	00197: ALIGNRP    
+	00198: MIRP[srp0,nmd,rd,0] 
+	00199: ALIGNRP    
+	00200: MIRP[srp0,md,rd,1] 
+	00201: ALIGNRP    
+	00202: MDAP[rd]   
+	00203: DELTAP1    
+	00204: MIRP[nrp0,md,rd,1] 
+	00205: SRP0       
+	00206: MIRP[srp0,md,rd,1] 
+	00207: RTDG       
+	00208: SRP2       
+	00209: IP         
+	00210: MDAP[rd]   
+	00211: RTG        
+	00212: SVTCA[x-axis] 
+	00213: SRP0       
+	00214: MIRP[srp0,nmd,rd,1] 
+	00215: MIRP[srp0,nmd,rd,0] 
+	00216: MDRP[nrp0,nmd,rd,0] 
+	00217: SVTCA[y-axis] 
+	00218: SRP0       
+	00219: MIRP[srp0,md,rd,1] 
+	00220: RTDG       
+	00221: SRP2       
+	00222: IP         
+	00223: MDAP[rd]   
+	00224: RTG        
+	00225: SVTCA[x-axis] 
+	00226: SRP0       
+	00227: MIRP[srp0,nmd,rd,1] 
+	00228: MIRP[srp0,nmd,rd,0] 
+	00229: MDRP[nrp0,nmd,rd,0] 
+	00230: IUP[y]     
+	00231: IUP[x]     
+	00232: SLOOP      
+	00233: SHPIX      
+	00234: SLOOP      
+	00235: SHPIX      
+	00236: DELTAP2    
+	00237: SVTCA[y-axis] 
+	00238: SHPIX      
+	00239: SLOOP      
+	00240: SHPIX      
+	00241: DELTAP1    
+	00242: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual                 X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                              X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:        XDual         Y-Short         On
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                               On
+	 18:  YDual                       X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual         Y-Short         On
+	 24:                      Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:        XDual                 X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual         Y-Short X-Short On
+	 34:        XDual                         On
+	 35:                      Y-Short X-Short On
+	 36:                      Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual                         On
+	 48:        XDual         Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:  YDual XDual         Y-Short X-Short Off
+	 52:  YDual XDual         Y-Short         On
+	 53:  YDual XDual         Y-Short         Off
+	 54:  YDual               Y-Short X-Short Off
+	 55:  YDual                       X-Short On
+	 56:  YDual                       X-Short Off
+	 57:                      Y-Short X-Short On
+	 58:                              X-Short On
+	 59:        XDual                         On
+	 60:  YDual               Y-Short X-Short Off
+	 61:  YDual                       X-Short On
+	 62:  YDual                       X-Short Off
+	 63:                      Y-Short X-Short Off
+	 64:        XDual         Y-Short         On
+	 65:        XDual         Y-Short         Off
+	 66:        XDual         Y-Short X-Short Off
+	 67:  YDual XDual                 X-Short On
+	 68:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   657,   856)  ->  Abs (   657,   856)
+	  1: Rel (    72,    40)  ->  Abs (   729,   896)
+	  2: Rel (    67,     0)  ->  Abs (   796,   896)
+	  3: Rel (   136,     0)  ->  Abs (   932,   896)
+	  4: Rel (   178,  -270)  ->  Abs (  1110,   626)
+	  5: Rel (     0,  -197)  ->  Abs (  1110,   429)
+	  6: Rel (     0,  -181)  ->  Abs (  1110,   248)
+	  7: Rel (  -166,  -275)  ->  Abs (   944,   -27)
+	  8: Rel (  -157,     0)  ->  Abs (   787,   -27)
+	  9: Rel (   -72,     0)  ->  Abs (   715,   -27)
+	 10: Rel (   -58,    27)  ->  Abs (   657,     0)
+	 11: Rel (     0,  -237)  ->  Abs (   657,  -237)
+	 12: Rel (   180,     0)  ->  Abs (   837,  -237)
+	 13: Rel (    69,     0)  ->  Abs (   906,  -237)
+	 14: Rel (     0,   -42)  ->  Abs (   906,  -279)
+	 15: Rel (     0,   -41)  ->  Abs (   906,  -320)
+	 16: Rel (   -69,     0)  ->  Abs (   837,  -320)
+	 17: Rel (  -444,     0)  ->  Abs (   393,  -320)
+	 18: Rel (   -70,     0)  ->  Abs (   323,  -320)
+	 19: Rel (     0,    41)  ->  Abs (   323,  -279)
+	 20: Rel (     0,    42)  ->  Abs (   323,  -237)
+	 21: Rel (    70,     0)  ->  Abs (   393,  -237)
+	 22: Rel (   180,     0)  ->  Abs (   573,  -237)
+	 23: Rel (     0,   237)  ->  Abs (   573,     0)
+	 24: Rel (   -56,   -27)  ->  Abs (   517,   -27)
+	 25: Rel (   -73,     0)  ->  Abs (   444,   -27)
+	 26: Rel (  -143,     0)  ->  Abs (   301,   -27)
+	 27: Rel (  -182,   251)  ->  Abs (   119,   224)
+	 28: Rel (     0,   205)  ->  Abs (   119,   429)
+	 29: Rel (     0,   199)  ->  Abs (   119,   628)
+	 30: Rel (   177,   268)  ->  Abs (   296,   896)
+	 31: Rel (   139,     0)  ->  Abs (   435,   896)
+	 32: Rel (    69,     0)  ->  Abs (   504,   896)
+	 33: Rel (    69,   -40)  ->  Abs (   573,   856)
+	 34: Rel (     0,   286)  ->  Abs (   573,  1142)
+	 35: Rel (  -121,    -9)  ->  Abs (   452,  1133)
+	 36: Rel (   -22,    -1)  ->  Abs (   430,  1132)
+	 37: Rel (    -7,     0)  ->  Abs (   423,  1132)
+	 38: Rel (   -47,     0)  ->  Abs (   376,  1132)
+	 39: Rel (     0,    43)  ->  Abs (   376,  1175)
+	 40: Rel (     0,    41)  ->  Abs (   376,  1216)
+	 41: Rel (    70,     4)  ->  Abs (   446,  1220)
+	 42: Rel (   137,    10)  ->  Abs (   583,  1230)
+	 43: Rel (    21,     1)  ->  Abs (   604,  1231)
+	 44: Rel (     8,     0)  ->  Abs (   612,  1231)
+	 45: Rel (    45,     0)  ->  Abs (   657,  1231)
+	 46: Rel (     0,   -70)  ->  Abs (   657,  1161)
+	 47: Rel (     0, -1048)  ->  Abs (   657,   113)
+	 48: Rel (    59,   -56)  ->  Abs (   716,    57)
+	 49: Rel (    65,     0)  ->  Abs (   781,    57)
+	 50: Rel (   113,     0)  ->  Abs (   894,    57)
+	 51: Rel (   125,   226)  ->  Abs (  1019,   283)
+	 52: Rel (     0,   146)  ->  Abs (  1019,   429)
+	 53: Rel (     0,   150)  ->  Abs (  1019,   579)
+	 54: Rel (  -125,   232)  ->  Abs (   894,   811)
+	 55: Rel (  -111,     0)  ->  Abs (   783,   811)
+	 56: Rel (   -73,     0)  ->  Abs (   710,   811)
+	 57: Rel (   -53,   -53)  ->  Abs (   657,   758)
+	 58: Rel (   -84,  -646)  ->  Abs (   573,   112)
+	 59: Rel (     0,   646)  ->  Abs (   573,   758)
+	 60: Rel (   -46,    53)  ->  Abs (   527,   811)
+	 61: Rel (   -77,     0)  ->  Abs (   450,   811)
+	 62: Rel (  -115,     0)  ->  Abs (   335,   811)
+	 63: Rel (  -125,  -234)  ->  Abs (   210,   577)
+	 64: Rel (     0,  -147)  ->  Abs (   210,   430)
+	 65: Rel (     0,  -148)  ->  Abs (   210,   282)
+	 66: Rel (   125,  -225)  ->  Abs (   335,    57)
+	 67: Rel (   112,     0)  ->  Abs (   447,    57)
+	 68: Rel (    76,     0)  ->  Abs (   523,    57)
+
+	Glyph 623: off = 0x00021C74, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			101
+	  yMin:			0
+	  xMax:			1130
+	  yMax:			866
+
+	     0: Flags:		0x0216
+		Glyf Index:	91
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 624: off = 0x00021C84, len = 406
+	  numberOfContours:	1
+	  xMin:			77
+	  yMin:			-211
+	  xMax:			1139
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  42
+
+	  Length of Instructions:	298
+	00000: PUSHB[2]              1     5 
+	00003: PUSHW[1]            686 
+	00006: NPUSHB      (11):     3    92     6     3     3     5     6    34     1    27 
+	                            31 
+	00019: PUSHW[1]            686 
+	00022: PUSHB[4]             15    29     1    29 
+	00027: PUSHW[1]            779 
+	00030: NPUSHB       (9):    32    29    29    31    32    34    27    26    22 
+	00041: PUSHW[3]            686    24   779 
+	00048: NPUSHB       (9):    21    24    24    22    21    34    26    13    17 
+	00059: PUSHW[3]            686    15   779 
+	00066: NPUSHB       (9):    18    15    15    17    18    34    13    12     8 
+	00077: PUSHW[1]            686 
+	00080: PUSHB[4]              0    10     1    10 
+	00085: PUSHW[1]            779 
+	00088: NPUSHB      (88):     7    10    10     8     7    34    12    34    19    19 
+	                             5    59     1    31    22    22    17     8    59    12 
+	                            27    26    26    13    12     6    40     0     1    10 
+	                            21    20    32    32    33    33     6    42    59    38 
+	                            64    37    39    52    79    38    95    38     2   143 
+	                            38     1    38    64    19    22    52    38    64    10 
+	                            15    52    38    26    44    18    19    32     7    79 
+	                             6    95     6     2     6    64    20    22    52     6 
+	                            64    13    15    52     6    25    43   117 
+	00178: PUSHW[2]            338    24 
+	00183: CALL       
+	00184: FLIPOFF    
+	00185: SRP0       
+	00186: MIRP[srp0,nmd,rd,0] 
+	00187: CALL       
+	00188: CALL       
+	00189: DELTAP2    
+	00190: ALIGNRP    
+	00191: FLIPON     
+	00192: MIRP[srp0,md,rd,1] 
+	00193: ALIGNRP    
+	00194: FLIPOFF    
+	00195: SRP0       
+	00196: MIRP[srp0,nmd,rd,2] 
+	00197: CALL       
+	00198: CALL       
+	00199: DELTAP1    
+	00200: DELTAP2    
+	00201: CALL       
+	00202: FLIPON     
+	00203: MIRP[nrp0,md,rd,1] 
+	00204: SRP2       
+	00205: IP         
+	00206: MDAP[rd]   
+	00207: ALIGNRP    
+	00208: MIRP[srp0,md,rd,1] 
+	00209: ALIGNRP    
+	00210: SVTCA[y-axis] 
+	00211: MIAP[rd+ci] 
+	00212: ALIGNRP    
+	00213: MDAP[rd]   
+	00214: MIAP[rd+ci] 
+	00215: ALIGNRP    
+	00216: ALIGNRP    
+	00217: SRP0       
+	00218: ALIGNRP    
+	00219: SRP0       
+	00220: MIRP[srp0,md,rd,1] 
+	00221: ALIGNRP    
+	00222: ALIGNRP    
+	00223: SRP0       
+	00224: ALIGNRP    
+	00225: SRP0       
+	00226: MIRP[srp0,md,rd,1] 
+	00227: ALIGNRP    
+	00228: SRP0       
+	00229: ALIGNRP    
+	00230: SRP0       
+	00231: MIRP[srp0,md,rd,1] 
+	00232: RTDG       
+	00233: SRP2       
+	00234: IP         
+	00235: MDAP[rd]   
+	00236: RTG        
+	00237: SVTCA[x-axis] 
+	00238: SRP0       
+	00239: MIRP[srp0,nmd,rd,1] 
+	00240: DELTAP1    
+	00241: MIRP[srp0,nmd,rd,0] 
+	00242: MDRP[nrp0,nmd,rd,0] 
+	00243: SVTCA[y-axis] 
+	00244: SRP0       
+	00245: MIRP[srp0,md,rd,1] 
+	00246: RTDG       
+	00247: SRP2       
+	00248: IP         
+	00249: MDAP[rd]   
+	00250: RTG        
+	00251: SVTCA[x-axis] 
+	00252: SRP0       
+	00253: MIRP[srp0,nmd,rd,1] 
+	00254: MIRP[srp0,nmd,rd,0] 
+	00255: MDRP[nrp0,nmd,rd,0] 
+	00256: SVTCA[y-axis] 
+	00257: SRP0       
+	00258: MIRP[srp0,md,rd,1] 
+	00259: RTDG       
+	00260: SRP2       
+	00261: IP         
+	00262: MDAP[rd]   
+	00263: RTG        
+	00264: SVTCA[x-axis] 
+	00265: SRP0       
+	00266: MIRP[srp0,nmd,rd,1] 
+	00267: MIRP[srp0,nmd,rd,0] 
+	00268: MDRP[nrp0,nmd,rd,0] 
+	00269: SVTCA[y-axis] 
+	00270: SRP0       
+	00271: MIRP[srp0,md,rd,1] 
+	00272: RTDG       
+	00273: SRP2       
+	00274: IP         
+	00275: MDAP[rd]   
+	00276: RTG        
+	00277: SVTCA[x-axis] 
+	00278: SRP0       
+	00279: MIRP[srp0,nmd,rd,1] 
+	00280: DELTAP1    
+	00281: MIRP[srp0,nmd,rd,0] 
+	00282: MDRP[nrp0,nmd,rd,0] 
+	00283: SVTCA[y-axis] 
+	00284: SRP0       
+	00285: MIRP[srp0,md,rd,1] 
+	00286: RTDG       
+	00287: SRP2       
+	00288: IP         
+	00289: MDAP[rd]   
+	00290: RTG        
+	00291: SVTCA[x-axis] 
+	00292: SRP0       
+	00293: MIRP[srp0,nmd,rd,1] 
+	00294: MIRP[srp0,nmd,rd,0] 
+	00295: MDRP[nrp0,nmd,rd,0] 
+	00296: IUP[y]     
+	00297: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short On
+	 19:        XDual                         On
+	 20:  YDual                               On
+	 21:        XDual                         On
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short On
+	 33:        XDual                         On
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1054,     0)  ->  Abs (  1054,     0)
+	  1: Rel (  -921,     0)  ->  Abs (   133,     0)
+	  2: Rel (   -56,     0)  ->  Abs (    77,     0)
+	  3: Rel (     0,    42)  ->  Abs (    77,    42)
+	  4: Rel (     0,    42)  ->  Abs (    77,    84)
+	  5: Rel (    56,     0)  ->  Abs (   133,    84)
+	  6: Rel (    95,     0)  ->  Abs (   228,    84)
+	  7: Rel (     0,   697)  ->  Abs (   228,   781)
+	  8: Rel (   -65,     0)  ->  Abs (   163,   781)
+	  9: Rel (   -56,     0)  ->  Abs (   107,   781)
+	 10: Rel (     0,    42)  ->  Abs (   107,   823)
+	 11: Rel (     0,    43)  ->  Abs (   107,   866)
+	 12: Rel (    56,     0)  ->  Abs (   163,   866)
+	 13: Rel (   214,     0)  ->  Abs (   377,   866)
+	 14: Rel (    56,     0)  ->  Abs (   433,   866)
+	 15: Rel (     0,   -43)  ->  Abs (   433,   823)
+	 16: Rel (     0,   -42)  ->  Abs (   433,   781)
+	 17: Rel (   -56,     0)  ->  Abs (   377,   781)
+	 18: Rel (   -65,     0)  ->  Abs (   312,   781)
+	 19: Rel (     0,  -697)  ->  Abs (   312,    84)
+	 20: Rel (   545,     0)  ->  Abs (   857,    84)
+	 21: Rel (     0,   697)  ->  Abs (   857,   781)
+	 22: Rel (   -64,     0)  ->  Abs (   793,   781)
+	 23: Rel (   -57,     0)  ->  Abs (   736,   781)
+	 24: Rel (     0,    42)  ->  Abs (   736,   823)
+	 25: Rel (     0,    43)  ->  Abs (   736,   866)
+	 26: Rel (    57,     0)  ->  Abs (   793,   866)
+	 27: Rel (   213,     0)  ->  Abs (  1006,   866)
+	 28: Rel (    56,     0)  ->  Abs (  1062,   866)
+	 29: Rel (     0,   -43)  ->  Abs (  1062,   823)
+	 30: Rel (     0,   -42)  ->  Abs (  1062,   781)
+	 31: Rel (   -56,     0)  ->  Abs (  1006,   781)
+	 32: Rel (   -65,     0)  ->  Abs (   941,   781)
+	 33: Rel (     0,  -697)  ->  Abs (   941,    84)
+	 34: Rel (   127,     0)  ->  Abs (  1068,    84)
+	 35: Rel (    45,     0)  ->  Abs (  1113,    84)
+	 36: Rel (    26,   -24)  ->  Abs (  1139,    60)
+	 37: Rel (     0,   -46)  ->  Abs (  1139,    14)
+	 38: Rel (     0,  -157)  ->  Abs (  1139,  -143)
+	 39: Rel (     0,   -68)  ->  Abs (  1139,  -211)
+	 40: Rel (   -42,     0)  ->  Abs (  1097,  -211)
+	 41: Rel (   -43,     0)  ->  Abs (  1054,  -211)
+	 42: Rel (     0,    65)  ->  Abs (  1054,  -146)
+
+	Glyph 625: off = 0x00021E1A, len = 472
+	  numberOfContours:	1
+	  xMin:			70
+	  yMin:			0
+	  xMax:			1119
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  47
+
+	  Length of Instructions:	349
+	00000: NPUSHB      (33):    12     5    30     5    44     5    56     2    57     5 
+	                            73     2   182    23     7   106     5     1    31    26 
+	                            31    28    31    30    47    26    47    28    47    30 
+	                             6    12     8 
+	00035: PUSHW[1]            686 
+	00038: NPUSHB      (11):    10    92     7    10    10     8     7    34    12    13 
+	                            17 
+	00051: PUSHW[1]            686 
+	00054: NPUSHB      (14):     0    15     1    15    47    18    15    15    17    18 
+	                            34    13    30    26 
+	00070: PUSHW[1]            686 
+	00073: NPUSHB      (14):    15    28     1    28    47    25    28    28    26    25 
+	                            34    30    31    35 
+	00089: PUSHW[1]            686 
+	00092: NPUSHB      (11):    33    92    36    33    33    35    36    34    31    43 
+	                            47 
+	00105: PUSHW[1]            686 
+	00108: NPUSHB      (11):    45   149     0    45    45    47     0    34    43    42 
+	                            38 
+	00121: PUSHW[1]            686 
+	00124: NPUSHB      (89):    40    92    37    40    40    38    37    34    42    35 
+	                            26    26    17     8    59    12     1    38    24    24 
+	                            12    22    38     3     3    12    38    47    59    42 
+	                            43    10    31    30    30    13    12     6    25     0 
+	                            32    36    16    37    96    37     2    63    37    79 
+	                            37    95    37   112    37   144    37   191    37   224 
+	                            37   240    37     8    37    26    49    18    19    32 
+	                             7    96     6     1   112     6   144     6   191     6 
+	                           224     6   240     6     5     6    25    48   117 
+	00215: PUSHW[2]            789    24 
+	00220: CALL       
+	00221: FLIPOFF    
+	00222: SRP0       
+	00223: MIRP[srp0,nmd,rd,0] 
+	00224: DELTAP1    
+	00225: DELTAP2    
+	00226: ALIGNRP    
+	00227: FLIPON     
+	00228: MIRP[srp0,md,rd,1] 
+	00229: ALIGNRP    
+	00230: FLIPOFF    
+	00231: SRP0       
+	00232: MIRP[srp0,nmd,rd,2] 
+	00233: DELTAP1    
+	00234: DELTAP2    
+	00235: ALIGNRP    
+	00236: FLIPON     
+	00237: MIRP[srp0,md,rd,1] 
+	00238: ALIGNRP    
+	00239: SVTCA[y-axis] 
+	00240: MIAP[rd+ci] 
+	00241: ALIGNRP    
+	00242: ALIGNRP    
+	00243: SRP0       
+	00244: ALIGNRP    
+	00245: MIAP[rd+ci] 
+	00246: ALIGNRP    
+	00247: MIRP[srp0,md,rd,1] 
+	00248: ALIGNRP    
+	00249: SRP2       
+	00250: IP         
+	00251: MDAP[rd]   
+	00252: MIRP[srp0,md,rd,1] 
+	00253: SRP1       
+	00254: IP         
+	00255: MDAP[rd]   
+	00256: MIRP[nrp0,md,rd,1] 
+	00257: SRP0       
+	00258: MIRP[srp0,md,rd,1] 
+	00259: ALIGNRP    
+	00260: ALIGNRP    
+	00261: SRP0       
+	00262: ALIGNRP    
+	00263: SRP0       
+	00264: MIRP[srp0,md,rd,1] 
+	00265: RTDG       
+	00266: SRP2       
+	00267: IP         
+	00268: MDAP[rd]   
+	00269: RTG        
+	00270: SVTCA[x-axis] 
+	00271: SRP0       
+	00272: MIRP[srp0,nmd,rd,1] 
+	00273: MIRP[srp0,nmd,rd,0] 
+	00274: MDRP[nrp0,nmd,rd,0] 
+	00275: SVTCA[y-axis] 
+	00276: SRP0       
+	00277: MIRP[srp0,md,rd,1] 
+	00278: RTDG       
+	00279: SRP2       
+	00280: IP         
+	00281: MDAP[rd]   
+	00282: RTG        
+	00283: SVTCA[x-axis] 
+	00284: SRP0       
+	00285: MIRP[srp0,nmd,rd,1] 
+	00286: MIRP[srp0,nmd,rd,0] 
+	00287: MDRP[nrp0,nmd,rd,0] 
+	00288: SVTCA[y-axis] 
+	00289: SRP0       
+	00290: MIRP[srp0,md,rd,1] 
+	00291: RTDG       
+	00292: SRP2       
+	00293: IP         
+	00294: MDAP[rd]   
+	00295: RTG        
+	00296: SVTCA[x-axis] 
+	00297: SRP0       
+	00298: MIRP[srp0,nmd,rd,1] 
+	00299: MIRP[srp0,nmd,rd,0] 
+	00300: MDRP[nrp0,nmd,rd,0] 
+	00301: SVTCA[y-axis] 
+	00302: SRP0       
+	00303: MIRP[srp0,md,rd,1] 
+	00304: RTDG       
+	00305: SRP2       
+	00306: IP         
+	00307: MDAP[rd]   
+	00308: RTG        
+	00309: SVTCA[x-axis] 
+	00310: SRP0       
+	00311: MIRP[srp0,nmd,rd,1] 
+	00312: DELTAP1    
+	00313: MIRP[srp0,nmd,rd,0] 
+	00314: MDRP[nrp0,nmd,rd,0] 
+	00315: SVTCA[y-axis] 
+	00316: SRP0       
+	00317: MIRP[srp0,md,rd,1] 
+	00318: RTDG       
+	00319: SRP2       
+	00320: IP         
+	00321: MDAP[rd]   
+	00322: RTG        
+	00323: SVTCA[x-axis] 
+	00324: SRP0       
+	00325: MIRP[srp0,nmd,rd,1] 
+	00326: DELTAP1    
+	00327: MIRP[srp0,nmd,rd,0] 
+	00328: MDRP[nrp0,nmd,rd,0] 
+	00329: SVTCA[y-axis] 
+	00330: SRP0       
+	00331: MIRP[srp0,md,rd,1] 
+	00332: RTDG       
+	00333: SRP2       
+	00334: IP         
+	00335: MDAP[rd]   
+	00336: RTG        
+	00337: SVTCA[x-axis] 
+	00338: SRP0       
+	00339: MIRP[srp0,nmd,rd,1] 
+	00340: MIRP[srp0,nmd,rd,0] 
+	00341: MDRP[nrp0,nmd,rd,0] 
+	00342: SVTCA[x-axis] 
+	00343: DELTAP1    
+	00344: IUP[y]     
+	00345: IUP[x]     
+	00346: SVTCA[y-axis] 
+	00347: DELTAP1    
+	00348: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual                         On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual                               On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short On
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:        XDual                         On
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual                               On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short On
+	 37:        XDual                         On
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:  YDual                       X-Short On
+	 43:  YDual                               On
+	 44:  YDual                       X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   877,    84)  ->  Abs (   877,    84)
+	  1: Rel (     0,   314)  ->  Abs (   877,   398)
+	  2: Rel (  -166,  -116)  ->  Abs (   711,   282)
+	  3: Rel (  -207,     0)  ->  Abs (   504,   282)
+	  4: Rel (  -112,     0)  ->  Abs (   392,   282)
+	  5: Rel (  -167,    98)  ->  Abs (   225,   380)
+	  6: Rel (     0,   165)  ->  Abs (   225,   545)
+	  7: Rel (     0,   236)  ->  Abs (   225,   781)
+	  8: Rel (   -85,     0)  ->  Abs (   140,   781)
+	  9: Rel (   -70,     0)  ->  Abs (    70,   781)
+	 10: Rel (     0,    42)  ->  Abs (    70,   823)
+	 11: Rel (     0,    43)  ->  Abs (    70,   866)
+	 12: Rel (    70,     0)  ->  Abs (   140,   866)
+	 13: Rel (   276,     0)  ->  Abs (   416,   866)
+	 14: Rel (    71,     0)  ->  Abs (   487,   866)
+	 15: Rel (     0,   -43)  ->  Abs (   487,   823)
+	 16: Rel (     0,   -42)  ->  Abs (   487,   781)
+	 17: Rel (   -71,     0)  ->  Abs (   416,   781)
+	 18: Rel (  -107,     0)  ->  Abs (   309,   781)
+	 19: Rel (     0,  -236)  ->  Abs (   309,   545)
+	 20: Rel (     0,   -95)  ->  Abs (   309,   450)
+	 21: Rel (    82,   -85)  ->  Abs (   391,   365)
+	 22: Rel (   113,     0)  ->  Abs (   504,   365)
+	 23: Rel (   173,     0)  ->  Abs (   677,   365)
+	 24: Rel (   200,   129)  ->  Abs (   877,   494)
+	 25: Rel (     0,   287)  ->  Abs (   877,   781)
+	 26: Rel (   -89,     0)  ->  Abs (   788,   781)
+	 27: Rel (   -71,     0)  ->  Abs (   717,   781)
+	 28: Rel (     0,    42)  ->  Abs (   717,   823)
+	 29: Rel (     0,    43)  ->  Abs (   717,   866)
+	 30: Rel (    71,     0)  ->  Abs (   788,   866)
+	 31: Rel (   261,     0)  ->  Abs (  1049,   866)
+	 32: Rel (    70,     0)  ->  Abs (  1119,   866)
+	 33: Rel (     0,   -43)  ->  Abs (  1119,   823)
+	 34: Rel (     0,   -42)  ->  Abs (  1119,   781)
+	 35: Rel (   -70,     0)  ->  Abs (  1049,   781)
+	 36: Rel (   -87,     0)  ->  Abs (   962,   781)
+	 37: Rel (     0,  -697)  ->  Abs (   962,    84)
+	 38: Rel (    87,     0)  ->  Abs (  1049,    84)
+	 39: Rel (    70,     0)  ->  Abs (  1119,    84)
+	 40: Rel (     0,   -42)  ->  Abs (  1119,    42)
+	 41: Rel (     0,   -42)  ->  Abs (  1119,     0)
+	 42: Rel (   -70,     0)  ->  Abs (  1049,     0)
+	 43: Rel (  -399,     0)  ->  Abs (   650,     0)
+	 44: Rel (   -71,     0)  ->  Abs (   579,     0)
+	 45: Rel (     0,    42)  ->  Abs (   579,    42)
+	 46: Rel (     0,    42)  ->  Abs (   579,    84)
+	 47: Rel (    71,     0)  ->  Abs (   650,    84)
+
+	Glyph 626: off = 0x00021FF2, len = 608
+	  numberOfContours:	1
+	  xMin:			33
+	  yMin:			0
+	  xMax:			1196
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  51
+
+	  Length of Instructions:	480
+	00000: PUSHW[2]             35   -64 
+	00005: PUSHB[4]             12    17    52    31 
+	00010: PUSHW[1]            -64 
+	00013: PUSHB[4]             12    17    52    33 
+	00018: PUSHW[1]            -64 
+	00021: NPUSHB      (20):    12    17    52     6    64    12    17    52     2    64 
+	                            12    17    52     4    64    12    17    52    18    14 
+	00043: PUSHW[1]            686 
+	00046: PUSHB[6]             64    16    80    16     2    16 
+	00053: PUSHW[1]            779 
+	00056: NPUSHB       (9):    13    16    16    14    13    34    18    30    26 
+	00067: PUSHW[1]            686 
+	00070: PUSHB[4]             31    28     1    28 
+	00075: PUSHW[1]            779 
+	00078: NPUSHB       (9):    25    28    28    26    25    34    30    44    40 
+	00089: PUSHW[1]            686 
+	00092: PUSHB[8]             31    42    47    42    63    42     3    42 
+	00101: PUSHW[1]            779 
+	00104: NPUSHB       (9):    39    42    42    40    39    34    44     6     2 
+	00115: PUSHW[1]            686 
+	00118: PUSHB[6]             31     4    47     4     2     4 
+	00125: PUSHW[1]            779 
+	00128: NPUSHB       (9):     1     4     4     2     1    34     6    19    23 
+	00139: PUSHW[1]            686 
+	00142: PUSHB[4]             31    21     1    21 
+	00147: PUSHW[1]            779 
+	00150: NPUSHB       (9):    24    21    21    23    24    34    19    31    35 
+	00161: PUSHW[1]            686 
+	00164: PUSHB[6]             16    33    32    33     2    33 
+	00171: PUSHW[1]            779 
+	00174: NPUSHB       (9):    36    33    33    35    36    34    31    45    49 
+	00185: PUSHW[1]            686 
+	00188: PUSHB[8]             16    47    32    47    48    47     3    47 
+	00197: PUSHW[1]            779 
+	00200: NPUSHB       (9):    50    47    47    49    50    34    45     7    11 
+	00211: PUSHW[1]            686 
+	00214: PUSHB[6]             64     9    80     9     2     9 
+	00221: PUSHW[1]            779 
+	00224: NPUSHB      (43):    12     9     9    11    12    34     7    11     2     2 
+	                            49    49    40    40    35    26    59    30     7     6 
+	                             6    45    45    44    44    31    30     6    14    51 
+	                            51    37    37    23    32    18    19    10    36    37 
+	                            32    25    24 
+	00269: PUSHW[1]            788 
+	00272: PUSHB[6]             38     1     0    32    12    13 
+	00279: PUSHW[1]            788 
+	00282: NPUSHB      (31):    50    51    32    39    16    38   128    38   144    38 
+	                             3    32    38   144    38   160    38     3     0    38 
+	                            16    38   128    38   240    38     4    38    42   172 
+	                            24 
+	00315: CALL       
+	00316: MDAP[rd]   
+	00317: DELTAP1    
+	00318: DELTAP2    
+	00319: DELTAP3    
+	00320: ALIGNRP    
+	00321: MIRP[srp0,md,rd,1] 
+	00322: ALIGNRP    
+	00323: MIRP[srp0,nmd,rd,0] 
+	00324: ALIGNRP    
+	00325: MIRP[srp0,md,rd,1] 
+	00326: ALIGNRP    
+	00327: SRP0       
+	00328: MIRP[srp0,nmd,rd,0] 
+	00329: ALIGNRP    
+	00330: MIRP[srp0,md,rd,1] 
+	00331: ALIGNRP    
+	00332: SVTCA[y-axis] 
+	00333: MIAP[rd+ci] 
+	00334: ALIGNRP    
+	00335: MIRP[srp0,md,rd,1] 
+	00336: ALIGNRP    
+	00337: SRP0       
+	00338: ALIGNRP    
+	00339: SRP0       
+	00340: ALIGNRP    
+	00341: MIAP[rd+ci] 
+	00342: ALIGNRP    
+	00343: ALIGNRP    
+	00344: SRP0       
+	00345: ALIGNRP    
+	00346: SRP0       
+	00347: ALIGNRP    
+	00348: SRP0       
+	00349: ALIGNRP    
+	00350: SRP0       
+	00351: MIRP[srp0,md,rd,1] 
+	00352: ALIGNRP    
+	00353: ALIGNRP    
+	00354: SRP0       
+	00355: ALIGNRP    
+	00356: SRP0       
+	00357: ALIGNRP    
+	00358: SRP0       
+	00359: ALIGNRP    
+	00360: SRP0       
+	00361: MIRP[srp0,md,rd,1] 
+	00362: RTDG       
+	00363: SRP2       
+	00364: IP         
+	00365: MDAP[rd]   
+	00366: RTG        
+	00367: SVTCA[x-axis] 
+	00368: SRP0       
+	00369: MIRP[srp0,nmd,rd,1] 
+	00370: DELTAP1    
+	00371: MIRP[srp0,nmd,rd,0] 
+	00372: MDRP[nrp0,nmd,rd,0] 
+	00373: SVTCA[y-axis] 
+	00374: SRP0       
+	00375: MIRP[srp0,md,rd,1] 
+	00376: RTDG       
+	00377: SRP2       
+	00378: IP         
+	00379: MDAP[rd]   
+	00380: RTG        
+	00381: SVTCA[x-axis] 
+	00382: SRP0       
+	00383: MIRP[srp0,nmd,rd,1] 
+	00384: DELTAP1    
+	00385: MIRP[srp0,nmd,rd,0] 
+	00386: MDRP[nrp0,nmd,rd,0] 
+	00387: SVTCA[y-axis] 
+	00388: SRP0       
+	00389: MIRP[srp0,md,rd,1] 
+	00390: RTDG       
+	00391: SRP2       
+	00392: IP         
+	00393: MDAP[rd]   
+	00394: RTG        
+	00395: SVTCA[x-axis] 
+	00396: SRP0       
+	00397: MIRP[srp0,nmd,rd,1] 
+	00398: DELTAP1    
+	00399: MIRP[srp0,nmd,rd,0] 
+	00400: MDRP[nrp0,nmd,rd,0] 
+	00401: SVTCA[y-axis] 
+	00402: SRP0       
+	00403: MIRP[srp0,md,rd,1] 
+	00404: RTDG       
+	00405: SRP2       
+	00406: IP         
+	00407: MDAP[rd]   
+	00408: RTG        
+	00409: SVTCA[x-axis] 
+	00410: SRP0       
+	00411: MIRP[srp0,nmd,rd,1] 
+	00412: DELTAP1    
+	00413: MIRP[srp0,nmd,rd,0] 
+	00414: MDRP[nrp0,nmd,rd,0] 
+	00415: SVTCA[y-axis] 
+	00416: SRP0       
+	00417: MIRP[srp0,md,rd,1] 
+	00418: RTDG       
+	00419: SRP2       
+	00420: IP         
+	00421: MDAP[rd]   
+	00422: RTG        
+	00423: SVTCA[x-axis] 
+	00424: SRP0       
+	00425: MIRP[srp0,nmd,rd,1] 
+	00426: DELTAP1    
+	00427: MIRP[srp0,nmd,rd,0] 
+	00428: MDRP[nrp0,nmd,rd,0] 
+	00429: SVTCA[y-axis] 
+	00430: SRP0       
+	00431: MIRP[srp0,md,rd,1] 
+	00432: RTDG       
+	00433: SRP2       
+	00434: IP         
+	00435: MDAP[rd]   
+	00436: RTG        
+	00437: SVTCA[x-axis] 
+	00438: SRP0       
+	00439: MIRP[srp0,nmd,rd,1] 
+	00440: DELTAP1    
+	00441: MIRP[srp0,nmd,rd,0] 
+	00442: MDRP[nrp0,nmd,rd,0] 
+	00443: SVTCA[y-axis] 
+	00444: SRP0       
+	00445: MIRP[srp0,md,rd,1] 
+	00446: RTDG       
+	00447: SRP2       
+	00448: IP         
+	00449: MDAP[rd]   
+	00450: RTG        
+	00451: SVTCA[x-axis] 
+	00452: SRP0       
+	00453: MIRP[srp0,nmd,rd,1] 
+	00454: DELTAP1    
+	00455: MIRP[srp0,nmd,rd,0] 
+	00456: MDRP[nrp0,nmd,rd,0] 
+	00457: SVTCA[y-axis] 
+	00458: SRP0       
+	00459: MIRP[srp0,md,rd,1] 
+	00460: RTDG       
+	00461: SRP2       
+	00462: IP         
+	00463: MDAP[rd]   
+	00464: RTG        
+	00465: SVTCA[x-axis] 
+	00466: SRP0       
+	00467: MIRP[srp0,nmd,rd,1] 
+	00468: DELTAP1    
+	00469: MIRP[srp0,nmd,rd,0] 
+	00470: MDRP[nrp0,nmd,rd,0] 
+	00471: SVTCA[x-axis] 
+	00472: CALL       
+	00473: CALL       
+	00474: CALL       
+	00475: CALL       
+	00476: CALL       
+	00477: CALL       
+	00478: IUP[y]     
+	00479: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short On
+	 13:        XDual                         On
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                               On
+	 20:  YDual                       X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short On
+	 25:        XDual                         On
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short On
+	 37:        XDual                         On
+	 38:  YDual                               On
+	 39:        XDual                         On
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:        XDual         Y-Short         On
+	 48:        XDual         Y-Short         Off
+	 49:  YDual                       X-Short On
+	 50:  YDual                       X-Short On
+	 51:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   991,    84)  ->  Abs (   991,    84)
+	  1: Rel (     0,   697)  ->  Abs (   991,   781)
+	  2: Rel (   -47,     0)  ->  Abs (   944,   781)
+	  3: Rel (   -56,     0)  ->  Abs (   888,   781)
+	  4: Rel (     0,    42)  ->  Abs (   888,   823)
+	  5: Rel (     0,    43)  ->  Abs (   888,   866)
+	  6: Rel (    56,     0)  ->  Abs (   944,   866)
+	  7: Rel (   177,     0)  ->  Abs (  1121,   866)
+	  8: Rel (    57,     0)  ->  Abs (  1178,   866)
+	  9: Rel (     0,   -43)  ->  Abs (  1178,   823)
+	 10: Rel (     0,   -42)  ->  Abs (  1178,   781)
+	 11: Rel (   -57,     0)  ->  Abs (  1121,   781)
+	 12: Rel (   -46,     0)  ->  Abs (  1075,   781)
+	 13: Rel (     0,  -697)  ->  Abs (  1075,    84)
+	 14: Rel (    64,     0)  ->  Abs (  1139,    84)
+	 15: Rel (    57,     0)  ->  Abs (  1196,    84)
+	 16: Rel (     0,   -42)  ->  Abs (  1196,    42)
+	 17: Rel (     0,   -42)  ->  Abs (  1196,     0)
+	 18: Rel (   -57,     0)  ->  Abs (  1139,     0)
+	 19: Rel ( -1050,     0)  ->  Abs (    89,     0)
+	 20: Rel (   -56,     0)  ->  Abs (    33,     0)
+	 21: Rel (     0,    42)  ->  Abs (    33,    42)
+	 22: Rel (     0,    42)  ->  Abs (    33,    84)
+	 23: Rel (    56,     0)  ->  Abs (    89,    84)
+	 24: Rel (    65,     0)  ->  Abs (   154,    84)
+	 25: Rel (     0,   697)  ->  Abs (   154,   781)
+	 26: Rel (   -47,     0)  ->  Abs (   107,   781)
+	 27: Rel (   -56,     0)  ->  Abs (    51,   781)
+	 28: Rel (     0,    42)  ->  Abs (    51,   823)
+	 29: Rel (     0,    43)  ->  Abs (    51,   866)
+	 30: Rel (    56,     0)  ->  Abs (   107,   866)
+	 31: Rel (   177,     0)  ->  Abs (   284,   866)
+	 32: Rel (    57,     0)  ->  Abs (   341,   866)
+	 33: Rel (     0,   -43)  ->  Abs (   341,   823)
+	 34: Rel (     0,   -42)  ->  Abs (   341,   781)
+	 35: Rel (   -57,     0)  ->  Abs (   284,   781)
+	 36: Rel (   -46,     0)  ->  Abs (   238,   781)
+	 37: Rel (     0,  -697)  ->  Abs (   238,    84)
+	 38: Rel (   334,     0)  ->  Abs (   572,    84)
+	 39: Rel (     0,   697)  ->  Abs (   572,   781)
+	 40: Rel (   -46,     0)  ->  Abs (   526,   781)
+	 41: Rel (   -56,     0)  ->  Abs (   470,   781)
+	 42: Rel (     0,    42)  ->  Abs (   470,   823)
+	 43: Rel (     0,    43)  ->  Abs (   470,   866)
+	 44: Rel (    56,     0)  ->  Abs (   526,   866)
+	 45: Rel (   177,     0)  ->  Abs (   703,   866)
+	 46: Rel (    56,     0)  ->  Abs (   759,   866)
+	 47: Rel (     0,   -43)  ->  Abs (   759,   823)
+	 48: Rel (     0,   -42)  ->  Abs (   759,   781)
+	 49: Rel (   -56,     0)  ->  Abs (   703,   781)
+	 50: Rel (   -46,     0)  ->  Abs (   657,   781)
+	 51: Rel (     0,  -697)  ->  Abs (   657,    84)
+
+	Glyph 627: off = 0x00022252, len = 600
+	  numberOfContours:	1
+	  xMin:			33
+	  yMin:			-211
+	  xMax:			1229
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  56
+
+	  Length of Instructions:	460
+	00000: PUSHW[2]             23   -64 
+	00005: PUSHB[4]             12    17    52    27 
+	00010: PUSHW[1]            -64 
+	00013: PUSHB[4]             12    17    52    25 
+	00018: PUSHW[1]            -64 
+	00021: NPUSHB      (20):    12    17    52    46    64    12    17    52    50    64 
+	                            12    17    52    48    64    12    17    52    11    15 
+	00043: PUSHW[1]            686 
+	00046: PUSHB[4]             31    13     1    13 
+	00051: PUSHW[1]            779 
+	00054: NPUSHB       (9):    16    13    13    15    16    34    11    22    18 
+	00065: PUSHW[1]            686 
+	00068: PUSHB[4]             31    20     1    20 
+	00073: PUSHW[1]            779 
+	00076: NPUSHB       (9):    17    20    20    18    17    34    22    23    27 
+	00087: PUSHW[1]            686 
+	00090: PUSHB[6]             16    25    32    25     2    25 
+	00097: PUSHW[1]            779 
+	00100: NPUSHB       (9):    28    25    25    27    28    34    23    50    46 
+	00111: PUSHW[1]            686 
+	00114: PUSHB[6]             31    48    47    48     2    48 
+	00121: PUSHW[1]            779 
+	00124: NPUSHB       (9):    45    48    48    46    45    34    50    51    55 
+	00135: PUSHW[1]            686 
+	00138: PUSHB[6]             64    53    80    53     2    53 
+	00145: PUSHW[1]            779 
+	00148: NPUSHB       (9):    56    53    53    55    56    34    51    36    32 
+	00159: PUSHW[1]            686 
+	00162: PUSHB[8]             31    34    47    34    63    34     3    34 
+	00171: PUSHW[1]            779 
+	00174: NPUSHB       (9):    31    34    34    32    31    34    36    37    41 
+	00185: PUSHW[1]            686 
+	00188: PUSHB[8]             16    39    32    39    48    39     3    39 
+	00197: PUSHW[1]            779 
+	00200: NPUSHB      (53):    42    39    39    41    42    34    37     7     1    43 
+	                            43    29    15    32    10    11    10    55    46    46 
+	                            41    32    32    27    18    59    22    51    50    50 
+	                            37    36    36    23    22     6     9    59     0     4 
+	                            64     4    80     4     3     4   195     0    28    29 
+	                            32    17    16 
+	00255: PUSHW[1]            788 
+	00258: PUSHB[7]             30    45    44    56    44    32     0 
+	00266: PUSHW[1]            788 
+	00269: NPUSHB      (34):    42    43    31    43    32    16    30   128    30   144 
+	                            30     3    32    30   144    30   160    30   208    30 
+	                             4     0    30    16    30   128    30   240    30     4 
+	                            30    42   172    24 
+	00305: CALL       
+	00306: MDAP[rd]   
+	00307: DELTAP1    
+	00308: DELTAP2    
+	00309: DELTAP3    
+	00310: MIRP[nrp0,md,rd,1] 
+	00311: ALIGNRP    
+	00312: SRP0       
+	00313: ALIGNRP    
+	00314: MIRP[srp0,nmd,rd,0] 
+	00315: MIRP[nrp0,md,rd,1] 
+	00316: ALIGNRP    
+	00317: SRP0       
+	00318: ALIGNRP    
+	00319: SRP0       
+	00320: MIRP[srp0,nmd,rd,0] 
+	00321: ALIGNRP    
+	00322: MIRP[srp0,md,rd,1] 
+	00323: ALIGNRP    
+	00324: SRP0       
+	00325: MIRP[srp0,nmd,rd,0] 
+	00326: DELTAP1    
+	00327: MIRP[nrp0,md,rd,1] 
+	00328: SVTCA[y-axis] 
+	00329: MIAP[rd+ci] 
+	00330: ALIGNRP    
+	00331: ALIGNRP    
+	00332: SRP0       
+	00333: ALIGNRP    
+	00334: ALIGNRP    
+	00335: SRP0       
+	00336: ALIGNRP    
+	00337: SRP0       
+	00338: MIRP[srp0,md,rd,1] 
+	00339: ALIGNRP    
+	00340: ALIGNRP    
+	00341: SRP0       
+	00342: ALIGNRP    
+	00343: ALIGNRP    
+	00344: SRP0       
+	00345: ALIGNRP    
+	00346: MIAP[rd+ci] 
+	00347: ALIGNRP    
+	00348: MIRP[srp0,md,rd,1] 
+	00349: ALIGNRP    
+	00350: ALIGNRP    
+	00351: SRP0       
+	00352: ALIGNRP    
+	00353: MDAP[rd]   
+	00354: SRP0       
+	00355: MIRP[srp0,md,rd,1] 
+	00356: RTDG       
+	00357: SRP2       
+	00358: IP         
+	00359: MDAP[rd]   
+	00360: RTG        
+	00361: SVTCA[x-axis] 
+	00362: SRP0       
+	00363: MIRP[srp0,nmd,rd,1] 
+	00364: DELTAP1    
+	00365: MIRP[srp0,nmd,rd,0] 
+	00366: MDRP[nrp0,nmd,rd,0] 
+	00367: SVTCA[y-axis] 
+	00368: SRP0       
+	00369: MIRP[srp0,md,rd,1] 
+	00370: RTDG       
+	00371: SRP2       
+	00372: IP         
+	00373: MDAP[rd]   
+	00374: RTG        
+	00375: SVTCA[x-axis] 
+	00376: SRP0       
+	00377: MIRP[srp0,nmd,rd,1] 
+	00378: DELTAP1    
+	00379: MIRP[srp0,nmd,rd,0] 
+	00380: MDRP[nrp0,nmd,rd,0] 
+	00381: SVTCA[y-axis] 
+	00382: SRP0       
+	00383: MIRP[srp0,md,rd,1] 
+	00384: RTDG       
+	00385: SRP2       
+	00386: IP         
+	00387: MDAP[rd]   
+	00388: RTG        
+	00389: SVTCA[x-axis] 
+	00390: SRP0       
+	00391: MIRP[srp0,nmd,rd,1] 
+	00392: DELTAP1    
+	00393: MIRP[srp0,nmd,rd,0] 
+	00394: MDRP[nrp0,nmd,rd,0] 
+	00395: SVTCA[y-axis] 
+	00396: SRP0       
+	00397: MIRP[srp0,md,rd,1] 
+	00398: RTDG       
+	00399: SRP2       
+	00400: IP         
+	00401: MDAP[rd]   
+	00402: RTG        
+	00403: SVTCA[x-axis] 
+	00404: SRP0       
+	00405: MIRP[srp0,nmd,rd,1] 
+	00406: DELTAP1    
+	00407: MIRP[srp0,nmd,rd,0] 
+	00408: MDRP[nrp0,nmd,rd,0] 
+	00409: SVTCA[y-axis] 
+	00410: SRP0       
+	00411: MIRP[srp0,md,rd,1] 
+	00412: RTDG       
+	00413: SRP2       
+	00414: IP         
+	00415: MDAP[rd]   
+	00416: RTG        
+	00417: SVTCA[x-axis] 
+	00418: SRP0       
+	00419: MIRP[srp0,nmd,rd,1] 
+	00420: DELTAP1    
+	00421: MIRP[srp0,nmd,rd,0] 
+	00422: MDRP[nrp0,nmd,rd,0] 
+	00423: SVTCA[y-axis] 
+	00424: SRP0       
+	00425: MIRP[srp0,md,rd,1] 
+	00426: RTDG       
+	00427: SRP2       
+	00428: IP         
+	00429: MDAP[rd]   
+	00430: RTG        
+	00431: SVTCA[x-axis] 
+	00432: SRP0       
+	00433: MIRP[srp0,nmd,rd,1] 
+	00434: DELTAP1    
+	00435: MIRP[srp0,nmd,rd,0] 
+	00436: MDRP[nrp0,nmd,rd,0] 
+	00437: SVTCA[y-axis] 
+	00438: SRP0       
+	00439: MIRP[srp0,md,rd,1] 
+	00440: RTDG       
+	00441: SRP2       
+	00442: IP         
+	00443: MDAP[rd]   
+	00444: RTG        
+	00445: SVTCA[x-axis] 
+	00446: SRP0       
+	00447: MIRP[srp0,nmd,rd,1] 
+	00448: DELTAP1    
+	00449: MIRP[srp0,nmd,rd,0] 
+	00450: MDRP[nrp0,nmd,rd,0] 
+	00451: SVTCA[x-axis] 
+	00452: CALL       
+	00453: CALL       
+	00454: CALL       
+	00455: CALL       
+	00456: CALL       
+	00457: CALL       
+	00458: IUP[y]     
+	00459: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual                               On
+	 12:  YDual                       X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short On
+	 29:        XDual                         On
+	 30:  YDual                               On
+	 31:        XDual                         On
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short On
+	 43:        XDual                         On
+	 44:  YDual                               On
+	 45:        XDual                         On
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:  YDual XDual         Y-Short         On
+	 49:  YDual XDual         Y-Short         Off
+	 50:  YDual XDual                 X-Short On
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short Off
+	 53:        XDual         Y-Short         On
+	 54:        XDual         Y-Short         Off
+	 55:  YDual                       X-Short On
+	 56:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1075,    84)  ->  Abs (  1075,    84)
+	  1: Rel (    83,     0)  ->  Abs (  1158,    84)
+	  2: Rel (    47,     0)  ->  Abs (  1205,    84)
+	  3: Rel (    24,   -22)  ->  Abs (  1229,    62)
+	  4: Rel (     0,   -48)  ->  Abs (  1229,    14)
+	  5: Rel (     0,  -157)  ->  Abs (  1229,  -143)
+	  6: Rel (     0,   -68)  ->  Abs (  1229,  -211)
+	  7: Rel (   -42,     0)  ->  Abs (  1187,  -211)
+	  8: Rel (   -43,     0)  ->  Abs (  1144,  -211)
+	  9: Rel (     0,    65)  ->  Abs (  1144,  -146)
+	 10: Rel (     0,   146)  ->  Abs (  1144,     0)
+	 11: Rel ( -1055,     0)  ->  Abs (    89,     0)
+	 12: Rel (   -56,     0)  ->  Abs (    33,     0)
+	 13: Rel (     0,    42)  ->  Abs (    33,    42)
+	 14: Rel (     0,    42)  ->  Abs (    33,    84)
+	 15: Rel (    56,     0)  ->  Abs (    89,    84)
+	 16: Rel (    65,     0)  ->  Abs (   154,    84)
+	 17: Rel (     0,   697)  ->  Abs (   154,   781)
+	 18: Rel (   -47,     0)  ->  Abs (   107,   781)
+	 19: Rel (   -56,     0)  ->  Abs (    51,   781)
+	 20: Rel (     0,    42)  ->  Abs (    51,   823)
+	 21: Rel (     0,    43)  ->  Abs (    51,   866)
+	 22: Rel (    56,     0)  ->  Abs (   107,   866)
+	 23: Rel (   177,     0)  ->  Abs (   284,   866)
+	 24: Rel (    57,     0)  ->  Abs (   341,   866)
+	 25: Rel (     0,   -43)  ->  Abs (   341,   823)
+	 26: Rel (     0,   -42)  ->  Abs (   341,   781)
+	 27: Rel (   -57,     0)  ->  Abs (   284,   781)
+	 28: Rel (   -46,     0)  ->  Abs (   238,   781)
+	 29: Rel (     0,  -697)  ->  Abs (   238,    84)
+	 30: Rel (   334,     0)  ->  Abs (   572,    84)
+	 31: Rel (     0,   697)  ->  Abs (   572,   781)
+	 32: Rel (   -46,     0)  ->  Abs (   526,   781)
+	 33: Rel (   -56,     0)  ->  Abs (   470,   781)
+	 34: Rel (     0,    42)  ->  Abs (   470,   823)
+	 35: Rel (     0,    43)  ->  Abs (   470,   866)
+	 36: Rel (    56,     0)  ->  Abs (   526,   866)
+	 37: Rel (   177,     0)  ->  Abs (   703,   866)
+	 38: Rel (    56,     0)  ->  Abs (   759,   866)
+	 39: Rel (     0,   -43)  ->  Abs (   759,   823)
+	 40: Rel (     0,   -42)  ->  Abs (   759,   781)
+	 41: Rel (   -56,     0)  ->  Abs (   703,   781)
+	 42: Rel (   -46,     0)  ->  Abs (   657,   781)
+	 43: Rel (     0,  -697)  ->  Abs (   657,    84)
+	 44: Rel (   334,     0)  ->  Abs (   991,    84)
+	 45: Rel (     0,   697)  ->  Abs (   991,   781)
+	 46: Rel (   -47,     0)  ->  Abs (   944,   781)
+	 47: Rel (   -56,     0)  ->  Abs (   888,   781)
+	 48: Rel (     0,    42)  ->  Abs (   888,   823)
+	 49: Rel (     0,    43)  ->  Abs (   888,   866)
+	 50: Rel (    56,     0)  ->  Abs (   944,   866)
+	 51: Rel (   177,     0)  ->  Abs (  1121,   866)
+	 52: Rel (    57,     0)  ->  Abs (  1178,   866)
+	 53: Rel (     0,   -43)  ->  Abs (  1178,   823)
+	 54: Rel (     0,   -42)  ->  Abs (  1178,   781)
+	 55: Rel (   -57,     0)  ->  Abs (  1121,   781)
+	 56: Rel (   -46,     0)  ->  Abs (  1075,   781)
+
+	Glyph 628: off = 0x000224AA, len = 304
+	  numberOfContours:	2
+	  xMin:			75
+	  yMin:			0
+	  xMax:			1164
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  26
+	  1:  35
+
+	  Length of Instructions:	201
+	00000: PUSHB[6]             17    40    22    26    52    15 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (11):    22    26    52   182    30     1   198    30     1    20 
+	                            24 
+	00023: PUSHW[3]            686    22   779 
+	00030: NPUSHB       (9):    25    22    22    24    25    34    20     7    11 
+	00041: PUSHW[1]            686 
+	00044: NPUSHB      (77):     9    47    12     9     9    11    12    34     7    13 
+	                            59    35    35     6    28    24    59    19    20     3 
+	                            11    59     7     7     0    59     6    20    10     6 
+	                             6    12    27    26    27    32   143    25   159    25 
+	                             2    64    25    80    25     2    25    25     5    31 
+	                            59    79    16   112    16   191    16   223    16     4 
+	                            16    26    37     1    59    79     5   112     5   191 
+	                             5   223     5     4     5    25    36 
+	00123: PUSHW[3]            297   289    24 
+	00130: CALL       
+	00131: FLIPOFF    
+	00132: SRP0       
+	00133: MIRP[srp0,nmd,rd,0] 
+	00134: DELTAP1    
+	00135: FLIPON     
+	00136: MIRP[nrp0,md,rd,1] 
+	00137: FLIPOFF    
+	00138: SRP0       
+	00139: MIRP[srp0,nmd,rd,2] 
+	00140: DELTAP1    
+	00141: FLIPON     
+	00142: MIRP[nrp0,md,rd,1] 
+	00143: SRP2       
+	00144: IP         
+	00145: MDAP[rd]   
+	00146: DELTAP1    
+	00147: DELTAP2    
+	00148: MIRP[nrp0,md,rd,1] 
+	00149: ALIGNRP    
+	00150: SRP0       
+	00151: ALIGNRP    
+	00152: SVTCA[y-axis] 
+	00153: MIAP[rd+ci] 
+	00154: MIAP[rd+ci] 
+	00155: SRP0       
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: ALIGNRP    
+	00158: SRP0       
+	00159: MIRP[nrp0,md,rd,1] 
+	00160: MDAP[rd]   
+	00161: SRP0       
+	00162: ALIGNRP    
+	00163: MIRP[srp0,md,rd,1] 
+	00164: ALIGNRP    
+	00165: SRP2       
+	00166: IP         
+	00167: MDAP[rd]   
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: SRP0       
+	00170: MIRP[srp0,md,rd,1] 
+	00171: RTDG       
+	00172: SRP2       
+	00173: IP         
+	00174: MDAP[rd]   
+	00175: RTG        
+	00176: SVTCA[x-axis] 
+	00177: SRP0       
+	00178: MIRP[srp0,nmd,rd,1] 
+	00179: MIRP[srp0,nmd,rd,0] 
+	00180: MDRP[nrp0,nmd,rd,0] 
+	00181: SVTCA[y-axis] 
+	00182: SRP0       
+	00183: MIRP[srp0,md,rd,1] 
+	00184: RTDG       
+	00185: SRP2       
+	00186: IP         
+	00187: MDAP[rd]   
+	00188: RTG        
+	00189: SVTCA[x-axis] 
+	00190: SRP0       
+	00191: MIRP[srp0,nmd,rd,1] 
+	00192: MIRP[srp0,nmd,rd,0] 
+	00193: MDRP[nrp0,nmd,rd,0] 
+	00194: IUP[y]     
+	00195: IUP[x]     
+	00196: SVTCA[y-axis] 
+	00197: DELTAP1    
+	00198: DELTAP2    
+	00199: CALL       
+	00200: CALL       
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual         Y-Short         On
+	  2:        XDual         Y-Short         Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:        XDual                         On
+	  7:  YDual                               On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short On
+	 13:        XDual                         On
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual                               Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                               On
+	 20:  YDual                               On
+	 21:  YDual                       X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short On
+	 26:        XDual                         On
+	 27:        XDual                 X-Short On
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   159,   781)  ->  Abs (   159,   781)
+	  1: Rel (     0,  -205)  ->  Abs (   159,   576)
+	  2: Rel (     0,   -56)  ->  Abs (   159,   520)
+	  3: Rel (   -42,     0)  ->  Abs (   117,   520)
+	  4: Rel (   -42,     0)  ->  Abs (    75,   520)
+	  5: Rel (     0,    56)  ->  Abs (    75,   576)
+	  6: Rel (     0,   290)  ->  Abs (    75,   866)
+	  7: Rel (   585,     0)  ->  Abs (   660,   866)
+	  8: Rel (    56,     0)  ->  Abs (   716,   866)
+	  9: Rel (     0,   -43)  ->  Abs (   716,   823)
+	 10: Rel (     0,   -42)  ->  Abs (   716,   781)
+	 11: Rel (   -56,     0)  ->  Abs (   660,   781)
+	 12: Rel (  -113,     0)  ->  Abs (   547,   781)
+	 13: Rel (     0,  -283)  ->  Abs (   547,   498)
+	 14: Rel (   229,     0)  ->  Abs (   776,   498)
+	 15: Rel (   388,     0)  ->  Abs (  1164,   498)
+	 16: Rel (     0,  -238)  ->  Abs (  1164,   260)
+	 17: Rel (     0,  -103)  ->  Abs (  1164,   157)
+	 18: Rel (  -130,  -157)  ->  Abs (  1034,     0)
+	 19: Rel (  -258,     0)  ->  Abs (   776,     0)
+	 20: Rel (  -362,     0)  ->  Abs (   414,     0)
+	 21: Rel (   -56,     0)  ->  Abs (   358,     0)
+	 22: Rel (     0,    42)  ->  Abs (   358,    42)
+	 23: Rel (     0,    42)  ->  Abs (   358,    84)
+	 24: Rel (    56,     0)  ->  Abs (   414,    84)
+	 25: Rel (    49,     0)  ->  Abs (   463,    84)
+	 26: Rel (     0,   697)  ->  Abs (   463,   781)
+	 27: Rel (    84,  -697)  ->  Abs (   547,    84)
+	 28: Rel (   225,     0)  ->  Abs (   772,    84)
+	 29: Rel (   190,     0)  ->  Abs (   962,    84)
+	 30: Rel (   116,    90)  ->  Abs (  1078,   174)
+	 31: Rel (     0,    82)  ->  Abs (  1078,   256)
+	 32: Rel (     0,    90)  ->  Abs (  1078,   346)
+	 33: Rel (  -139,    67)  ->  Abs (   939,   413)
+	 34: Rel (  -170,     0)  ->  Abs (   769,   413)
+	 35: Rel (  -222,     0)  ->  Abs (   547,   413)
+
+	Glyph 629: off = 0x000225DA, len = 556
+	  numberOfContours:	3
+	  xMin:			24
+	  yMin:			0
+	  xMax:			1223
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  23
+	  1:  48
+	  2:  57
+
+	  Length of Instructions:	403
+	00000: NPUSHB      (14):    18    30     1    30    32    22    26    52    29    32 
+	                            22    26    52    27 
+	00016: PUSHW[1]            -40 
+	00019: NPUSHB      (11):    22    25    52    21    27   120    30   168    30     3 
+	                            52 
+	00032: PUSHW[1]             -8 
+	00035: PUSHB[5]             18    21    52    44    48 
+	00041: PUSHW[1]            686 
+	00044: NPUSHB      (16):     0    46    16    46     2    46    47    24    46    46 
+	                            48    24    34    44    43    39 
+	00062: PUSHW[3]            686    41   779 
+	00069: NPUSHB       (9):    38    41    41    39    38    34    43    32    36 
+	00080: PUSHW[3]            686    34   779 
+	00087: NPUSHB       (9):    37    34    34    36    37    34    32     7    11 
+	00098: PUSHW[1]            686 
+	00101: NPUSHB      (14):    31     9     1     9    47    12     9     9    11    12 
+	                            34     7     6     2 
+	00117: PUSHW[1]            686 
+	00120: NPUSHB      (14):     0     4     1     4    47     1     4     4     2     1 
+	                            34     6    18    14 
+	00136: PUSHW[1]            686 
+	00139: NPUSHB      (14):    31    16     1    16    47    13    16    16    14    13 
+	                            34    18    19    23 
+	00155: PUSHW[1]            686 
+	00158: NPUSHB      (88):     0    21     1    21    47     0    21    21    23     0 
+	                            34    19     2    11    59     7    49    36    59    32 
+	                            25    33    57    57    32    23    14    14    48    48 
+	                            39    59    43    19    18    18    44    43     6     8 
+	                             7     7    31    32    10    53    59     0    28    32 
+	                            28    48    28   160    28   176    28     5    28    28 
+	                            37    13    12    32     0    15     1   191     1     2 
+	                             1    26    59    24    49    32    38     0    37   191 
+	                            37     2    37    25    58    42   172    24 
+	00248: CALL       
+	00249: FLIPOFF    
+	00250: SRP0       
+	00251: MIRP[srp0,nmd,rd,0] 
+	00252: DELTAP1    
+	00253: ALIGNRP    
+	00254: FLIPON     
+	00255: MIRP[srp0,md,rd,1] 
+	00256: ALIGNRP    
+	00257: FLIPOFF    
+	00258: SRP0       
+	00259: MIRP[srp0,nmd,rd,2] 
+	00260: DELTAP1    
+	00261: ALIGNRP    
+	00262: FLIPON     
+	00263: MIRP[srp0,md,rd,1] 
+	00264: ALIGNRP    
+	00265: SRP2       
+	00266: IP         
+	00267: MDAP[rd]   
+	00268: DELTAP1    
+	00269: MIRP[nrp0,md,rd,1] 
+	00270: SVTCA[y-axis] 
+	00271: MIAP[rd+ci] 
+	00272: ALIGNRP    
+	00273: ALIGNRP    
+	00274: SRP0       
+	00275: ALIGNRP    
+	00276: MIAP[rd+ci] 
+	00277: ALIGNRP    
+	00278: ALIGNRP    
+	00279: SRP0       
+	00280: ALIGNRP    
+	00281: SRP0       
+	00282: MIRP[srp0,md,rd,1] 
+	00283: ALIGNRP    
+	00284: SRP0       
+	00285: ALIGNRP    
+	00286: SRP0       
+	00287: ALIGNRP    
+	00288: SRP2       
+	00289: IP         
+	00290: MDAP[rd]   
+	00291: MIRP[nrp0,md,rd,1] 
+	00292: SRP0       
+	00293: MIRP[srp0,md,rd,1] 
+	00294: ALIGNRP    
+	00295: SRP0       
+	00296: MIRP[srp0,md,rd,1] 
+	00297: ALIGNRP    
+	00298: SRP0       
+	00299: MIRP[srp0,md,rd,1] 
+	00300: RTDG       
+	00301: SRP2       
+	00302: IP         
+	00303: MDAP[rd]   
+	00304: RTG        
+	00305: SVTCA[x-axis] 
+	00306: SRP0       
+	00307: MIRP[srp0,nmd,rd,1] 
+	00308: DELTAP1    
+	00309: MIRP[srp0,nmd,rd,0] 
+	00310: MDRP[nrp0,nmd,rd,0] 
+	00311: SVTCA[y-axis] 
+	00312: SRP0       
+	00313: MIRP[srp0,md,rd,1] 
+	00314: RTDG       
+	00315: SRP2       
+	00316: IP         
+	00317: MDAP[rd]   
+	00318: RTG        
+	00319: SVTCA[x-axis] 
+	00320: SRP0       
+	00321: MIRP[srp0,nmd,rd,1] 
+	00322: DELTAP1    
+	00323: MIRP[srp0,nmd,rd,0] 
+	00324: MDRP[nrp0,nmd,rd,0] 
+	00325: SVTCA[y-axis] 
+	00326: SRP0       
+	00327: MIRP[srp0,md,rd,1] 
+	00328: RTDG       
+	00329: SRP2       
+	00330: IP         
+	00331: MDAP[rd]   
+	00332: RTG        
+	00333: SVTCA[x-axis] 
+	00334: SRP0       
+	00335: MIRP[srp0,nmd,rd,1] 
+	00336: DELTAP1    
+	00337: MIRP[srp0,nmd,rd,0] 
+	00338: MDRP[nrp0,nmd,rd,0] 
+	00339: SVTCA[y-axis] 
+	00340: SRP0       
+	00341: MIRP[srp0,md,rd,1] 
+	00342: RTDG       
+	00343: SRP2       
+	00344: IP         
+	00345: MDAP[rd]   
+	00346: RTG        
+	00347: SVTCA[x-axis] 
+	00348: SRP0       
+	00349: MIRP[srp0,nmd,rd,1] 
+	00350: DELTAP1    
+	00351: MIRP[srp0,nmd,rd,0] 
+	00352: MDRP[nrp0,nmd,rd,0] 
+	00353: SVTCA[y-axis] 
+	00354: SRP0       
+	00355: MIRP[srp0,md,rd,1] 
+	00356: RTDG       
+	00357: SRP2       
+	00358: IP         
+	00359: MDAP[rd]   
+	00360: RTG        
+	00361: SVTCA[x-axis] 
+	00362: SRP0       
+	00363: MIRP[srp0,nmd,rd,1] 
+	00364: MIRP[srp0,nmd,rd,0] 
+	00365: MDRP[nrp0,nmd,rd,0] 
+	00366: SVTCA[y-axis] 
+	00367: SRP0       
+	00368: MIRP[srp0,md,rd,1] 
+	00369: RTDG       
+	00370: SRP2       
+	00371: IP         
+	00372: MDAP[rd]   
+	00373: RTG        
+	00374: SVTCA[x-axis] 
+	00375: SRP0       
+	00376: MIRP[srp0,nmd,rd,1] 
+	00377: MIRP[srp0,nmd,rd,0] 
+	00378: MDRP[nrp0,nmd,rd,0] 
+	00379: SVTCA[y-axis] 
+	00380: SRP0       
+	00381: MIRP[srp0,md,rd,1] 
+	00382: RTDG       
+	00383: SRP2       
+	00384: IP         
+	00385: MDAP[rd]   
+	00386: RTG        
+	00387: SVTCA[x-axis] 
+	00388: SRP0       
+	00389: MIRP[srp0,nmd,rd,1] 
+	00390: DELTAP1    
+	00391: MIRP[srp0,nmd,rd,0] 
+	00392: MDRP[nrp0,nmd,rd,0] 
+	00393: IUP[y]     
+	00394: IUP[x]     
+	00395: SVTCA[y-axis] 
+	00396: CALL       
+	00397: DELTAP2    
+	00398: CALL       
+	00399: CALL       
+	00400: CALL       
+	00401: SVTCA[x-axis] 
+	00402: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                               On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual                               On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                               On
+	 25:        XDual                         On
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual                               Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:                      Y-Short X-Short Off
+	 31:  YDual                               On
+	 32:  YDual                               On
+	 33:  YDual                       X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short On
+	 38:        XDual                         On
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual         Y-Short         Off
+	 48:  YDual                       X-Short On
+	 49:                              X-Short On
+	 50:  YDual XDual                 X-Short On
+	 51:  YDual XDual                 X-Short Off
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short         On
+	 54:  YDual XDual         Y-Short         Off
+	 55:  YDual               Y-Short X-Short Off
+	 56:  YDual                       X-Short On
+	 57:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1054,   781)  ->  Abs (  1054,   781)
+	  1: Rel (     0,  -697)  ->  Abs (  1054,    84)
+	  2: Rel (   112,     0)  ->  Abs (  1166,    84)
+	  3: Rel (    57,     0)  ->  Abs (  1223,    84)
+	  4: Rel (     0,   -42)  ->  Abs (  1223,    42)
+	  5: Rel (     0,   -42)  ->  Abs (  1223,     0)
+	  6: Rel (   -57,     0)  ->  Abs (  1166,     0)
+	  7: Rel (  -309,     0)  ->  Abs (   857,     0)
+	  8: Rel (   -56,     0)  ->  Abs (   801,     0)
+	  9: Rel (     0,    42)  ->  Abs (   801,    42)
+	 10: Rel (     0,    42)  ->  Abs (   801,    84)
+	 11: Rel (    56,     0)  ->  Abs (   857,    84)
+	 12: Rel (   112,     0)  ->  Abs (   969,    84)
+	 13: Rel (     0,   697)  ->  Abs (   969,   781)
+	 14: Rel (  -112,     0)  ->  Abs (   857,   781)
+	 15: Rel (   -56,     0)  ->  Abs (   801,   781)
+	 16: Rel (     0,    42)  ->  Abs (   801,   823)
+	 17: Rel (     0,    43)  ->  Abs (   801,   866)
+	 18: Rel (    56,     0)  ->  Abs (   857,   866)
+	 19: Rel (   309,     0)  ->  Abs (  1166,   866)
+	 20: Rel (    57,     0)  ->  Abs (  1223,   866)
+	 21: Rel (     0,   -43)  ->  Abs (  1223,   823)
+	 22: Rel (     0,   -42)  ->  Abs (  1223,   781)
+	 23: Rel (   -57,     0)  ->  Abs (  1166,   781)
+	 24: Rel (  -953,     0)  ->  Abs (   213,   781)
+	 25: Rel (     0,  -283)  ->  Abs (   213,   498)
+	 26: Rel (   197,     0)  ->  Abs (   410,   498)
+	 27: Rel (   388,     0)  ->  Abs (   798,   498)
+	 28: Rel (     0,  -238)  ->  Abs (   798,   260)
+	 29: Rel (     0,  -103)  ->  Abs (   798,   157)
+	 30: Rel (  -130,  -157)  ->  Abs (   668,     0)
+	 31: Rel (  -258,     0)  ->  Abs (   410,     0)
+	 32: Rel (  -330,     0)  ->  Abs (    80,     0)
+	 33: Rel (   -56,     0)  ->  Abs (    24,     0)
+	 34: Rel (     0,    42)  ->  Abs (    24,    42)
+	 35: Rel (     0,    42)  ->  Abs (    24,    84)
+	 36: Rel (    56,     0)  ->  Abs (    80,    84)
+	 37: Rel (    49,     0)  ->  Abs (   129,    84)
+	 38: Rel (     0,   697)  ->  Abs (   129,   781)
+	 39: Rel (   -45,     0)  ->  Abs (    84,   781)
+	 40: Rel (   -57,     0)  ->  Abs (    27,   781)
+	 41: Rel (     0,    42)  ->  Abs (    27,   823)
+	 42: Rel (     0,    43)  ->  Abs (    27,   866)
+	 43: Rel (    57,     0)  ->  Abs (    84,   866)
+	 44: Rel (   242,     0)  ->  Abs (   326,   866)
+	 45: Rel (    56,     0)  ->  Abs (   382,   866)
+	 46: Rel (     0,   -43)  ->  Abs (   382,   823)
+	 47: Rel (     0,   -42)  ->  Abs (   382,   781)
+	 48: Rel (   -56,     0)  ->  Abs (   326,   781)
+	 49: Rel (  -113,  -697)  ->  Abs (   213,    84)
+	 50: Rel (   193,     0)  ->  Abs (   406,    84)
+	 51: Rel (   174,     0)  ->  Abs (   580,    84)
+	 52: Rel (   132,    78)  ->  Abs (   712,   162)
+	 53: Rel (     0,    94)  ->  Abs (   712,   256)
+	 54: Rel (     0,    90)  ->  Abs (   712,   346)
+	 55: Rel (  -139,    67)  ->  Abs (   573,   413)
+	 56: Rel (  -170,     0)  ->  Abs (   403,   413)
+	 57: Rel (  -190,     0)  ->  Abs (   213,   413)
+
+	Glyph 630: off = 0x00022806, len = 314
+	  numberOfContours:	2
+	  xMin:			166
+	  yMin:			0
+	  xMax:			994
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  24
+	  1:  33
+
+	  Length of Instructions:	216
+	00000: PUSHB[6]              5    40    22    26    52     3 
+	00007: PUSHW[1]            -40 
+	00010: NPUSHB      (14):    22    26    52   136     6   152     6   166    28   182 
+	                            28     4    19    15 
+	00026: PUSHW[3]            686    17   779 
+	00033: NPUSHB       (9):    14    17    17    15    14    34    19    20    24 
+	00044: PUSHW[1]            686 
+	00047: NPUSHB      (11):    22    47     0    22    22    24     0    34    20     8 
+	                            12 
+	00060: PUSHW[3]            686    10   779 
+	00067: NPUSHB      (72):    13    10    10    12    13    34     8     1    59    33 
+	                            33     8    24    15    59    20    19     6    26    12 
+	                            59     8     8     7    10    29    59    15     4   239 
+	                             4     2    79     4    95     4   111     4   159     4 
+	                           175     4   191     4   223     4     7     4    26    35 
+	                             0    25    32    14    15    13    31    13   191    13 
+	                             3    47    13   111    13     2    13    25    34    71 
+	                            97    24 
+	00141: CALL       
+	00142: FLIPOFF    
+	00143: SRP0       
+	00144: MIRP[srp0,nmd,rd,0] 
+	00145: DELTAP1    
+	00146: DELTAP2    
+	00147: ALIGNRP    
+	00148: FLIPON     
+	00149: MIRP[srp0,md,rd,1] 
+	00150: ALIGNRP    
+	00151: FLIPOFF    
+	00152: SRP0       
+	00153: MIRP[srp0,nmd,rd,2] 
+	00154: DELTAP1    
+	00155: DELTAP2    
+	00156: FLIPON     
+	00157: MIRP[nrp0,md,rd,1] 
+	00158: SVTCA[y-axis] 
+	00159: MIAP[rd+ci] 
+	00160: ALIGNRP    
+	00161: SRP0       
+	00162: MIRP[srp0,md,rd,1] 
+	00163: ALIGNRP    
+	00164: MIAP[rd+ci] 
+	00165: ALIGNRP    
+	00166: MIRP[srp0,md,rd,1] 
+	00167: ALIGNRP    
+	00168: SRP2       
+	00169: IP         
+	00170: MDAP[rd]   
+	00171: MIRP[nrp0,md,rd,1] 
+	00172: SRP0       
+	00173: MIRP[srp0,md,rd,1] 
+	00174: RTDG       
+	00175: SRP2       
+	00176: IP         
+	00177: MDAP[rd]   
+	00178: RTG        
+	00179: SVTCA[x-axis] 
+	00180: SRP0       
+	00181: MIRP[srp0,nmd,rd,1] 
+	00182: MIRP[srp0,nmd,rd,0] 
+	00183: MDRP[nrp0,nmd,rd,0] 
+	00184: SVTCA[y-axis] 
+	00185: SRP0       
+	00186: MIRP[srp0,md,rd,1] 
+	00187: RTDG       
+	00188: SRP2       
+	00189: IP         
+	00190: MDAP[rd]   
+	00191: RTG        
+	00192: SVTCA[x-axis] 
+	00193: SRP0       
+	00194: MIRP[srp0,nmd,rd,1] 
+	00195: MIRP[srp0,nmd,rd,0] 
+	00196: MDRP[nrp0,nmd,rd,0] 
+	00197: SVTCA[y-axis] 
+	00198: SRP0       
+	00199: MIRP[srp0,md,rd,1] 
+	00200: RTDG       
+	00201: SRP2       
+	00202: IP         
+	00203: MDAP[rd]   
+	00204: RTG        
+	00205: SVTCA[x-axis] 
+	00206: SRP0       
+	00207: MIRP[srp0,nmd,rd,1] 
+	00208: MIRP[srp0,nmd,rd,0] 
+	00209: MDRP[nrp0,nmd,rd,0] 
+	00210: IUP[y]     
+	00211: IUP[x]     
+	00212: SVTCA[y-axis] 
+	00213: DELTAP2    
+	00214: CALL       
+	00215: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual                               Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                               On
+	  8:  YDual                               On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual                         On
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:  YDual                       X-Short On
+	 25:                              X-Short On
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   355,   781)  ->  Abs (   355,   781)
+	  1: Rel (     0,  -283)  ->  Abs (   355,   498)
+	  2: Rel (   251,     0)  ->  Abs (   606,   498)
+	  3: Rel (   388,     0)  ->  Abs (   994,   498)
+	  4: Rel (     0,  -238)  ->  Abs (   994,   260)
+	  5: Rel (     0,  -103)  ->  Abs (   994,   157)
+	  6: Rel (  -131,  -157)  ->  Abs (   863,     0)
+	  7: Rel (  -257,     0)  ->  Abs (   606,     0)
+	  8: Rel (  -384,     0)  ->  Abs (   222,     0)
+	  9: Rel (   -56,     0)  ->  Abs (   166,     0)
+	 10: Rel (     0,    42)  ->  Abs (   166,    42)
+	 11: Rel (     0,    42)  ->  Abs (   166,    84)
+	 12: Rel (    56,     0)  ->  Abs (   222,    84)
+	 13: Rel (    49,     0)  ->  Abs (   271,    84)
+	 14: Rel (     0,   697)  ->  Abs (   271,   781)
+	 15: Rel (   -45,     0)  ->  Abs (   226,   781)
+	 16: Rel (   -57,     0)  ->  Abs (   169,   781)
+	 17: Rel (     0,    42)  ->  Abs (   169,   823)
+	 18: Rel (     0,    43)  ->  Abs (   169,   866)
+	 19: Rel (    57,     0)  ->  Abs (   226,   866)
+	 20: Rel (   242,     0)  ->  Abs (   468,   866)
+	 21: Rel (    56,     0)  ->  Abs (   524,   866)
+	 22: Rel (     0,   -43)  ->  Abs (   524,   823)
+	 23: Rel (     0,   -42)  ->  Abs (   524,   781)
+	 24: Rel (   -56,     0)  ->  Abs (   468,   781)
+	 25: Rel (  -113,  -697)  ->  Abs (   355,    84)
+	 26: Rel (   247,     0)  ->  Abs (   602,    84)
+	 27: Rel (   189,     0)  ->  Abs (   791,    84)
+	 28: Rel (   116,    90)  ->  Abs (   907,   174)
+	 29: Rel (     0,    82)  ->  Abs (   907,   256)
+	 30: Rel (     0,    95)  ->  Abs (   907,   351)
+	 31: Rel (  -152,    62)  ->  Abs (   755,   413)
+	 32: Rel (  -157,     0)  ->  Abs (   598,   413)
+	 33: Rel (  -243,     0)  ->  Abs (   355,   413)
+
+	Glyph 631: off = 0x00022940, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			130
+	  yMin:			-33
+	  xMax:			1058
+	  yMax:			896
+
+	     0: Flags:		0x0153
+		Glyf Index:	637
+		X WOffset:	1229
+		Y WOffset:	0
+		X Scale:	-1.000000
+		Y Scale:	 1.000000
+		Other:		                   No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (11):     0    21    21    64    19    22    52   112    21     1 
+	                            21 
+	00013: PUSHW[1]            485 
+	00016: PUSHB[4]             43    42   172    24 
+	00021: CALL       
+	00022: SRP0       
+	00023: MIRP[srp0,nmd,rd,2] 
+	00024: DELTAP1    
+	00025: CALL       
+	00026: SRP1       
+	00027: SHC[rp1,zp0] 
+
+	Glyph 632: off = 0x00022974, len = 482
+	  numberOfContours:	2
+	  xMin:			36
+	  yMin:			-33
+	  xMax:			1192
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  38
+	  1:  50
+
+	  Length of Instructions:	344
+	00000: NPUSHB      (70):     7    31    53    28    53    32    56    34   118    40 
+	                           118    44   122    46   122    50   132    44   140    46 
+	                           140    50   148    40   148    44   154    46   167    32 
+	                           183    32    16   121    28   115    40   115    44   124 
+	                            46   124    50   135    29   135    31   136    35   214 
+	                            38   214    40   214    44   218    46   218    50   230 
+	                            28   230    31   232    35   247    31    17    19    15 
+	00072: PUSHW[1]            686 
+	00075: PUSHB[4]              0    17     1    17 
+	00080: PUSHW[1]            779 
+	00083: NPUSHB       (9):    14    17    17    15    14    34    19    20    24 
+	00094: PUSHW[1]            686 
+	00097: NPUSHB      (16):     0    22    16    22     2    22    47    25    22    22 
+	                            24    25    34    20     7     3 
+	00115: PUSHW[1]            686 
+	00118: NPUSHB      (14):     0     5     1     5    47     2     5     5     3     2 
+	                            34     7     8    12 
+	00134: PUSHW[1]            686 
+	00137: NPUSHB      (97):   255    10     1   207    10   239    10     2    10    92 
+	                            13    10    10    12    13    34     8    26    59     1 
+	                             1    19     8     3    59     7    12    59     7     8 
+	                            10    24    15    59    20    19     6    48    59    30 
+	                             7    42    59    36    11    27    39    59     0    64 
+	                            29    33    52   111     0   127     0   207     0     3 
+	                             0     0     2    45    59   111    33   224    33   240 
+	                            33     3    33    26    52    25     2    32    14   144 
+	                            13   160    13   192    13   224    13   240    13     5 
+	                           160    13     1    13    25    51   196 
+	00236: PUSHW[2]            290    24 
+	00241: CALL       
+	00242: FLIPOFF    
+	00243: SRP0       
+	00244: MIRP[srp0,nmd,rd,0] 
+	00245: DELTAP2    
+	00246: DELTAP1    
+	00247: ALIGNRP    
+	00248: FLIPON     
+	00249: MIRP[srp0,md,rd,1] 
+	00250: ALIGNRP    
+	00251: FLIPOFF    
+	00252: SRP0       
+	00253: MIRP[srp0,nmd,rd,2] 
+	00254: DELTAP1    
+	00255: FLIPON     
+	00256: MIRP[nrp0,md,rd,1] 
+	00257: SRP2       
+	00258: IP         
+	00259: MDAP[rd]   
+	00260: DELTAP1    
+	00261: CALL       
+	00262: MIRP[nrp0,md,rd,1] 
+	00263: SHP[rp1,zp0] 
+	00264: SVTCA[y-axis] 
+	00265: MIAP[rd+ci] 
+	00266: MIRP[nrp0,md,rd,1] 
+	00267: MIAP[rd+ci] 
+	00268: MIRP[nrp0,md,rd,1] 
+	00269: MIAP[rd+ci] 
+	00270: ALIGNRP    
+	00271: MIRP[srp0,md,rd,1] 
+	00272: ALIGNRP    
+	00273: MIAP[rd+ci] 
+	00274: ALIGNRP    
+	00275: MIRP[nrp0,md,rd,1] 
+	00276: SRP0       
+	00277: MIRP[nrp0,md,rd,1] 
+	00278: SRP1       
+	00279: SRP2       
+	00280: IP         
+	00281: MDAP[rd]   
+	00282: MIRP[nrp0,md,rd,1] 
+	00283: SRP0       
+	00284: MIRP[srp0,md,rd,1] 
+	00285: RTDG       
+	00286: SRP2       
+	00287: IP         
+	00288: MDAP[rd]   
+	00289: RTG        
+	00290: SVTCA[x-axis] 
+	00291: SRP0       
+	00292: MIRP[srp0,nmd,rd,1] 
+	00293: DELTAP1    
+	00294: DELTAP1    
+	00295: MIRP[srp0,nmd,rd,0] 
+	00296: MDRP[nrp0,nmd,rd,0] 
+	00297: SVTCA[y-axis] 
+	00298: SRP0       
+	00299: MIRP[srp0,md,rd,1] 
+	00300: RTDG       
+	00301: SRP2       
+	00302: IP         
+	00303: MDAP[rd]   
+	00304: RTG        
+	00305: SVTCA[x-axis] 
+	00306: SRP0       
+	00307: MIRP[srp0,nmd,rd,1] 
+	00308: DELTAP1    
+	00309: MIRP[srp0,nmd,rd,0] 
+	00310: MDRP[nrp0,nmd,rd,0] 
+	00311: SVTCA[y-axis] 
+	00312: SRP0       
+	00313: MIRP[srp0,md,rd,1] 
+	00314: RTDG       
+	00315: SRP2       
+	00316: IP         
+	00317: MDAP[rd]   
+	00318: RTG        
+	00319: SVTCA[x-axis] 
+	00320: SRP0       
+	00321: MIRP[srp0,nmd,rd,1] 
+	00322: DELTAP1    
+	00323: MIRP[srp0,nmd,rd,0] 
+	00324: MDRP[nrp0,nmd,rd,0] 
+	00325: SVTCA[y-axis] 
+	00326: SRP0       
+	00327: MIRP[srp0,md,rd,1] 
+	00328: RTDG       
+	00329: SRP2       
+	00330: IP         
+	00331: MDAP[rd]   
+	00332: RTG        
+	00333: SVTCA[x-axis] 
+	00334: SRP0       
+	00335: MIRP[srp0,nmd,rd,1] 
+	00336: DELTAP1    
+	00337: MIRP[srp0,nmd,rd,0] 
+	00338: MDRP[nrp0,nmd,rd,0] 
+	00339: IUP[y]     
+	00340: IUP[x]     
+	00341: SVTCA[y-axis] 
+	00342: DELTAP1    
+	00343: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                               On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual                         On
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short On
+	 26:        XDual                         On
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:        XDual                 X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:                              X-Short Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:        XDual         Y-Short         Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual               Y-Short X-Short Off
+	 48:  YDual                       X-Short On
+	 49:  YDual                       X-Short Off
+	 50:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   442,   413)  ->  Abs (   442,   413)
+	  1: Rel (  -171,     0)  ->  Abs (   271,   413)
+	  2: Rel (     0,  -329)  ->  Abs (   271,    84)
+	  3: Rel (   113,     0)  ->  Abs (   384,    84)
+	  4: Rel (    56,     0)  ->  Abs (   440,    84)
+	  5: Rel (     0,   -42)  ->  Abs (   440,    42)
+	  6: Rel (     0,   -42)  ->  Abs (   440,     0)
+	  7: Rel (   -56,     0)  ->  Abs (   384,     0)
+	  8: Rel (  -292,     0)  ->  Abs (    92,     0)
+	  9: Rel (   -56,     0)  ->  Abs (    36,     0)
+	 10: Rel (     0,    42)  ->  Abs (    36,    42)
+	 11: Rel (     0,    42)  ->  Abs (    36,    84)
+	 12: Rel (    56,     0)  ->  Abs (    92,    84)
+	 13: Rel (    95,     0)  ->  Abs (   187,    84)
+	 14: Rel (     0,   697)  ->  Abs (   187,   781)
+	 15: Rel (   -52,     0)  ->  Abs (   135,   781)
+	 16: Rel (   -57,     0)  ->  Abs (    78,   781)
+	 17: Rel (     0,    42)  ->  Abs (    78,   823)
+	 18: Rel (     0,    43)  ->  Abs (    78,   866)
+	 19: Rel (    57,     0)  ->  Abs (   135,   866)
+	 20: Rel (   249,     0)  ->  Abs (   384,   866)
+	 21: Rel (    56,     0)  ->  Abs (   440,   866)
+	 22: Rel (     0,   -43)  ->  Abs (   440,   823)
+	 23: Rel (     0,   -42)  ->  Abs (   440,   781)
+	 24: Rel (   -56,     0)  ->  Abs (   384,   781)
+	 25: Rel (  -113,     0)  ->  Abs (   271,   781)
+	 26: Rel (     0,  -283)  ->  Abs (   271,   498)
+	 27: Rel (   174,     0)  ->  Abs (   445,   498)
+	 28: Rel (    20,   170)  ->  Abs (   465,   668)
+	 29: Rel (   202,   228)  ->  Abs (   667,   896)
+	 30: Rel (   155,     0)  ->  Abs (   822,   896)
+	 31: Rel (   171,     0)  ->  Abs (   993,   896)
+	 32: Rel (   199,  -263)  ->  Abs (  1192,   633)
+	 33: Rel (     0,  -195)  ->  Abs (  1192,   438)
+	 34: Rel (     0,  -207)  ->  Abs (  1192,   231)
+	 35: Rel (  -212,  -264)  ->  Abs (   980,   -33)
+	 36: Rel (  -165,     0)  ->  Abs (   815,   -33)
+	 37: Rel (  -149,     0)  ->  Abs (   666,   -33)
+	 38: Rel (  -210,   233)  ->  Abs (   456,   200)
+	 39: Rel (    70,   224)  ->  Abs (   526,   424)
+	 40: Rel (     0,  -160)  ->  Abs (   526,   264)
+	 41: Rel (   159,  -213)  ->  Abs (   685,    51)
+	 42: Rel (   132,     0)  ->  Abs (   817,    51)
+	 43: Rel (   130,     0)  ->  Abs (   947,    51)
+	 44: Rel (   161,   211)  ->  Abs (  1108,   262)
+	 45: Rel (     0,   171)  ->  Abs (  1108,   433)
+	 46: Rel (     0,   170)  ->  Abs (  1108,   603)
+	 47: Rel (  -161,   208)  ->  Abs (   947,   811)
+	 48: Rel (  -129,     0)  ->  Abs (   818,   811)
+	 49: Rel (  -139,     0)  ->  Abs (   679,   811)
+	 50: Rel (  -153,  -220)  ->  Abs (   526,   591)
+
+	Glyph 633: off = 0x00022B56, len = 462
+	  numberOfContours:	2
+	  xMin:			131
+	  yMin:			0
+	  xMax:			1087
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  34
+	  1:  42
+
+	  Length of Instructions:	343
+	00000: NPUSHB      (20):    38    14    86    40   101    40   148    40     4   201 
+	                            39   216    11     2    12    58    18    23    52    15 
+	00022: PUSHW[1]            -16 
+	00025: PUSHB[4]             34    36    52    14 
+	00030: PUSHW[1]            -32 
+	00033: PUSHB[4]             22    26    52    15 
+	00038: PUSHW[1]            -32 
+	00041: NPUSHB      (13):    22    26    52    38     2    70     1    84     2   233 
+	                            11     4     1 
+	00056: PUSHW[1]            -42 
+	00059: PUSHB[4]             27    36    52     2 
+	00064: PUSHW[1]            -42 
+	00067: PUSHB[5]             27    36    52    17    21 
+	00073: PUSHW[1]            686 
+	00076: NPUSHB      (11):    19    70    22    19    19    21    22    34    17    29 
+	                            33 
+	00089: PUSHW[1]            686 
+	00092: NPUSHB      (11):    31    47    34    31    31    33    34    34    29    28 
+	                            24 
+	00105: PUSHW[1]            686 
+	00108: NPUSHB      (49):    26    70    23    26    26    24    23    34    28    11 
+	                             1    24    33    59    29    35    59     1     0     0 
+	                            16    29     9     8    59     3     4    10    28    29 
+	                            10    21    37    59    17    16     6     1    11     9 
+	                            39    59     0    13     1    13   195     6     3 
+	00159: PUSHW[1]            -32 
+	00162: PUSHB[4]             22    26    52     3 
+	00167: PUSHW[1]            -32 
+	00170: NPUSHB      (11):    16    18    52    52     3    68     3    84     3     3 
+	                             3 
+	00183: PUSHW[1]            792 
+	00186: NPUSHB      (48):    47     9     1     9   154   128     6   240     6     2 
+	                            32     6    48     6   224     6   240     6     4     6 
+	                            25    43    36    34    32    22    16    23   128    23 
+	                           240    23     3    32    23    79    23    95    23   224 
+	                            23   240    23     5    23    26    44    42 
+	00236: PUSHW[2]            789    24 
+	00241: CALL       
+	00242: FLIPOFF    
+	00243: SRP0       
+	00244: MIRP[srp0,nmd,rd,2] 
+	00245: DELTAP1    
+	00246: DELTAP2    
+	00247: ALIGNRP    
+	00248: FLIPON     
+	00249: MIRP[srp0,md,rd,1] 
+	00250: ALIGNRP    
+	00251: FLIPOFF    
+	00252: SRP0       
+	00253: MIRP[srp0,nmd,rd,0] 
+	00254: DELTAP1    
+	00255: DELTAP2    
+	00256: FLIPON     
+	00257: MIRP[srp0,nmd,rd,0] 
+	00258: DELTAP1    
+	00259: MIRP[nrp0,md,rd,1] 
+	00260: DELTAP1    
+	00261: CALL       
+	00262: CALL       
+	00263: SRP0       
+	00264: MIRP[srp0,nmd,rd,0] 
+	00265: DELTAP1    
+	00266: MIRP[nrp0,md,rd,1] 
+	00267: SRP1       
+	00268: SHP[rp1,zp0] 
+	00269: SHP[rp1,zp0] 
+	00270: SVTCA[y-axis] 
+	00271: MIAP[rd+ci] 
+	00272: ALIGNRP    
+	00273: MIRP[srp0,md,rd,1] 
+	00274: ALIGNRP    
+	00275: MIAP[rd+ci] 
+	00276: ALIGNRP    
+	00277: MIAP[rd+ci] 
+	00278: ALIGNRP    
+	00279: MIRP[srp0,md,rd,1] 
+	00280: ALIGNRP    
+	00281: SRP1       
+	00282: SRP2       
+	00283: IP         
+	00284: MDAP[rd]   
+	00285: ALIGNRP    
+	00286: MIRP[nrp0,md,rd,1] 
+	00287: SRP0       
+	00288: MIRP[srp0,md,rd,1] 
+	00289: ALIGNRP    
+	00290: SRP1       
+	00291: SHP[rp1,zp0] 
+	00292: SRP0       
+	00293: MIRP[srp0,md,rd,1] 
+	00294: RTDG       
+	00295: SRP2       
+	00296: IP         
+	00297: MDAP[rd]   
+	00298: RTG        
+	00299: SVTCA[x-axis] 
+	00300: SRP0       
+	00301: MIRP[srp0,nmd,rd,1] 
+	00302: MIRP[srp0,nmd,rd,0] 
+	00303: MDRP[nrp0,nmd,rd,0] 
+	00304: SVTCA[y-axis] 
+	00305: SRP0       
+	00306: MIRP[srp0,md,rd,1] 
+	00307: RTDG       
+	00308: SRP2       
+	00309: IP         
+	00310: MDAP[rd]   
+	00311: RTG        
+	00312: SVTCA[x-axis] 
+	00313: SRP0       
+	00314: MIRP[srp0,nmd,rd,1] 
+	00315: MIRP[srp0,nmd,rd,0] 
+	00316: MDRP[nrp0,nmd,rd,0] 
+	00317: SVTCA[y-axis] 
+	00318: SRP0       
+	00319: MIRP[srp0,md,rd,1] 
+	00320: RTDG       
+	00321: SRP2       
+	00322: IP         
+	00323: MDAP[rd]   
+	00324: RTG        
+	00325: SVTCA[x-axis] 
+	00326: SRP0       
+	00327: MIRP[srp0,nmd,rd,1] 
+	00328: MIRP[srp0,nmd,rd,0] 
+	00329: MDRP[nrp0,nmd,rd,0] 
+	00330: IUP[y]     
+	00331: IUP[x]     
+	00332: SVTCA[x-axis] 
+	00333: CALL       
+	00334: CALL       
+	00335: DELTAP1    
+	00336: SVTCA[y-axis] 
+	00337: CALL       
+	00338: CALL       
+	00339: CALL       
+	00340: CALL       
+	00341: DELTAP1    
+	00342: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:                      Y-Short         Off
+	  3:                      Y-Short X-Short On
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual                               On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short On
+	 23:        XDual                         On
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                               On
+	 30:  YDual                       X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short On
+	 35:        XDual                         On
+	 36:        XDual                         On
+	 37:  YDual                               On
+	 38:  YDual                       X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   865,   347)  ->  Abs (   865,   347)
+	  1: Rel (  -242,     0)  ->  Abs (   623,   347)
+	  2: Rel (  -289,  -118)  ->  Abs (   334,   229)
+	  3: Rel (   -40,  -229)  ->  Abs (   294,     0)
+	  4: Rel (  -116,     0)  ->  Abs (   178,     0)
+	  5: Rel (   -47,     0)  ->  Abs (   131,     0)
+	  6: Rel (     0,    42)  ->  Abs (   131,    42)
+	  7: Rel (     0,    42)  ->  Abs (   131,    84)
+	  8: Rel (    47,     0)  ->  Abs (   178,    84)
+	  9: Rel (    51,     0)  ->  Abs (   229,    84)
+	 10: Rel (    65,   186)  ->  Abs (   294,   270)
+	 11: Rel (   216,    95)  ->  Abs (   510,   365)
+	 12: Rel (  -232,    49)  ->  Abs (   278,   414)
+	 13: Rel (     0,   207)  ->  Abs (   278,   621)
+	 14: Rel (     0,   108)  ->  Abs (   278,   729)
+	 15: Rel (   145,   137)  ->  Abs (   423,   866)
+	 16: Rel (   153,     0)  ->  Abs (   576,   866)
+	 17: Rel (   464,     0)  ->  Abs (  1040,   866)
+	 18: Rel (    47,     0)  ->  Abs (  1087,   866)
+	 19: Rel (     0,   -43)  ->  Abs (  1087,   823)
+	 20: Rel (     0,   -42)  ->  Abs (  1087,   781)
+	 21: Rel (   -47,     0)  ->  Abs (  1040,   781)
+	 22: Rel (   -90,     0)  ->  Abs (   950,   781)
+	 23: Rel (     0,  -697)  ->  Abs (   950,    84)
+	 24: Rel (    90,     0)  ->  Abs (  1040,    84)
+	 25: Rel (    47,     0)  ->  Abs (  1087,    84)
+	 26: Rel (     0,   -42)  ->  Abs (  1087,    42)
+	 27: Rel (     0,   -42)  ->  Abs (  1087,     0)
+	 28: Rel (   -47,     0)  ->  Abs (  1040,     0)
+	 29: Rel (  -298,     0)  ->  Abs (   742,     0)
+	 30: Rel (   -47,     0)  ->  Abs (   695,     0)
+	 31: Rel (     0,    42)  ->  Abs (   695,    42)
+	 32: Rel (     0,    42)  ->  Abs (   695,    84)
+	 33: Rel (    47,     0)  ->  Abs (   742,    84)
+	 34: Rel (   123,     0)  ->  Abs (   865,    84)
+	 35: Rel (     0,   347)  ->  Abs (   865,   431)
+	 36: Rel (     0,   350)  ->  Abs (   865,   781)
+	 37: Rel (  -271,     0)  ->  Abs (   594,   781)
+	 38: Rel (  -231,     0)  ->  Abs (   363,   781)
+	 39: Rel (     0,  -163)  ->  Abs (   363,   618)
+	 40: Rel (     0,   -94)  ->  Abs (   363,   524)
+	 41: Rel (   124,   -93)  ->  Abs (   487,   431)
+	 42: Rel (   172,     0)  ->  Abs (   659,   431)
+
+	Glyph 634: off = 0x00022D24, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1071
+	  yMax:			1228
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	142
+		X BOffset:	4
+		Y BOffset:	-1
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     2     3     2    51    23   152    72    39     2     3 
+	                             2    36 
+	00014: PUSHW[3]            652    41   300 
+	00021: SCANCTRL   
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+
+	Glyph 635: off = 0x00022D56, len = 496
+	  numberOfContours:	1
+	  xMin:			142
+	  yMin:			-386
+	  xMax:			1063
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  59
+
+	  Length of Instructions:	343
+	00000: NPUSHB      (22):   169    51   186    51     2     1    38    19    38    39 
+	                            38   169    55   185    55   198    38   215    38     7 
+	                            51    52 
+	00024: PUSHW[1]            -19 
+	00027: NPUSHB      (20):     2    55    16    21    64     9    19    52    25    64 
+	                             9    19    52    23    64     9    19    52    25    21 
+	00049: PUSHW[1]            686 
+	00052: NPUSHB      (11):    23    47    20    23    23    21    20    34    25     7 
+	                            11 
+	00065: PUSHW[1]            686 
+	00068: NPUSHB      (11):     9    92    12     9     9    11    12    34     7     6 
+	                             2 
+	00081: PUSHW[1]            686 
+	00084: NPUSHB      (35):     4    92     1     4     4     2     1    34     6    28 
+	                            18    59    14    14    32    64    25    29    52    32 
+	                            32    25    36    48    38    44    14    34    38     0 
+	                             0     7    57    38    36 
+	00121: PUSHW[1]            -64 
+	00124: NPUSHB      (24):    11    13    52    36     7    26    21    59    25     0 
+	                             2    11    59     6     7     8    30    30     1    46 
+	                             1    53    32    40 
+	00150: PUSHW[1]            -64 
+	00153: PUSHB[4]             28    36    52    40 
+	00158: PUSHW[1]            -64 
+	00161: NPUSHB      (22):    18    19    52    15    40   112    40   240    40     3 
+	                           208    40     1    40    26    61    26    34     0    34 
+	                             1    16 
+	00185: PUSHW[1]            355 
+	00188: NPUSHB      (10):    20    19    19    13    12    32   208     1     1     1 
+	00200: PUSHW[1]            -64 
+	00203: PUSHB[4]             28    36    52     1 
+	00208: PUSHW[1]            -64 
+	00211: NPUSHB      (11):    18    19    52    15     1   240     1     2     1    25 
+	                            60 
+	00224: PUSHW[1]            780 
+	00227: PUSHB[2]            172    24 
+	00230: CALL       
+	00231: FLIPOFF    
+	00232: SRP0       
+	00233: MIRP[srp0,nmd,rd,0] 
+	00234: DELTAP1    
+	00235: CALL       
+	00236: CALL       
+	00237: DELTAP2    
+	00238: FLIPON     
+	00239: MIRP[srp0,md,rd,1] 
+	00240: ALIGNRP    
+	00241: ALIGNRP    
+	00242: SRP0       
+	00243: ALIGNRP    
+	00244: MIRP[nrp0,nmd,rd,0] 
+	00245: SRP0       
+	00246: ALIGNRP    
+	00247: ALIGNRP    
+	00248: SRP0       
+	00249: ALIGNRP    
+	00250: FLIPOFF    
+	00251: SRP0       
+	00252: MIRP[srp0,nmd,rd,2] 
+	00253: DELTAP2    
+	00254: DELTAP1    
+	00255: CALL       
+	00256: CALL       
+	00257: FLIPON     
+	00258: MIRP[nrp0,md,rd,1] 
+	00259: SRP0       
+	00260: ALIGNRP    
+	00261: SRP1       
+	00262: IP         
+	00263: MDAP[rd]   
+	00264: SVTCA[y-axis] 
+	00265: MIAP[rd+ci] 
+	00266: ALIGNRP    
+	00267: MIRP[srp0,md,rd,1] 
+	00268: ALIGNRP    
+	00269: MIAP[rd+ci] 
+	00270: MIRP[nrp0,md,rd,1] 
+	00271: ALIGNRP    
+	00272: MIAP[rd+ci] 
+	00273: CALL       
+	00274: MIRP[nrp0,md,rd,1] 
+	00275: RTHG       
+	00276: SRP1       
+	00277: IP         
+	00278: MDAP[rd]   
+	00279: RTG        
+	00280: MIRP[nrp0,md,rd,1] 
+	00281: MIAP[rd+ci] 
+	00282: MIRP[nrp0,md,rd,1] 
+	00283: SRP1       
+	00284: SRP2       
+	00285: IP         
+	00286: MDAP[rd]   
+	00287: CALL       
+	00288: ALIGNRP    
+	00289: SRP0       
+	00290: MIRP[srp0,md,rd,1] 
+	00291: ALIGNRP    
+	00292: SRP0       
+	00293: MIRP[srp0,md,rd,1] 
+	00294: RTDG       
+	00295: SRP2       
+	00296: IP         
+	00297: MDAP[rd]   
+	00298: RTG        
+	00299: SVTCA[x-axis] 
+	00300: SRP0       
+	00301: MIRP[srp0,nmd,rd,1] 
+	00302: MIRP[srp0,nmd,rd,0] 
+	00303: MDRP[nrp0,nmd,rd,0] 
+	00304: SVTCA[y-axis] 
+	00305: SRP0       
+	00306: MIRP[srp0,md,rd,1] 
+	00307: RTDG       
+	00308: SRP2       
+	00309: IP         
+	00310: MDAP[rd]   
+	00311: RTG        
+	00312: SVTCA[x-axis] 
+	00313: SRP0       
+	00314: MIRP[srp0,nmd,rd,1] 
+	00315: MIRP[srp0,nmd,rd,0] 
+	00316: MDRP[nrp0,nmd,rd,0] 
+	00317: SVTCA[y-axis] 
+	00318: SRP0       
+	00319: MIRP[srp0,md,rd,1] 
+	00320: RTDG       
+	00321: SRP2       
+	00322: IP         
+	00323: MDAP[rd]   
+	00324: RTG        
+	00325: SVTCA[x-axis] 
+	00326: SRP0       
+	00327: MIRP[srp0,nmd,rd,1] 
+	00328: MIRP[srp0,nmd,rd,0] 
+	00329: MDRP[nrp0,nmd,rd,0] 
+	00330: SVTCA[x-axis] 
+	00331: CALL       
+	00332: CALL       
+	00333: CALL       
+	00334: IUP[y]     
+	00335: IUP[x]     
+	00336: SVTCA[y-axis] 
+	00337: SHPIX      
+	00338: SLOOP      
+	00339: SHPIX      
+	00340: DELTAP1    
+	00341: SVTCA[x-axis] 
+	00342: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                               On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short On
+	 27:        XDual         Y-Short         On
+	 28:  YDual                               On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                               On
+	 34:        XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:        XDual         Y-Short X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual                         On
+	 41:        XDual         Y-Short         Off
+	 42:                      Y-Short X-Short Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                               On
+	 45:  YDual                       X-Short Off
+	 46:  YDual XDual         Y-Short         On
+	 47:  YDual XDual         Y-Short         Off
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual                               On
+	 50:  YDual XDual                 X-Short Off
+	 51:  YDual XDual         Y-Short X-Short Off
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short         On
+	 54:        XDual                         On
+	 55:  YDual XDual         Y-Short         Off
+	 56:  YDual               Y-Short X-Short Off
+	 57:  YDual                       X-Short On
+	 58:  YDual                       X-Short Off
+	 59:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   419,   616)  ->  Abs (   419,   616)
+	  1: Rel (     0,  -532)  ->  Abs (   419,    84)
+	  2: Rel (    94,     0)  ->  Abs (   513,    84)
+	  3: Rel (    57,     0)  ->  Abs (   570,    84)
+	  4: Rel (     0,   -42)  ->  Abs (   570,    42)
+	  5: Rel (     0,   -42)  ->  Abs (   570,     0)
+	  6: Rel (   -57,     0)  ->  Abs (   513,     0)
+	  7: Rel (  -273,     0)  ->  Abs (   240,     0)
+	  8: Rel (   -56,     0)  ->  Abs (   184,     0)
+	  9: Rel (     0,    42)  ->  Abs (   184,    42)
+	 10: Rel (     0,    42)  ->  Abs (   184,    84)
+	 11: Rel (    56,     0)  ->  Abs (   240,    84)
+	 12: Rel (    94,     0)  ->  Abs (   334,    84)
+	 13: Rel (     0,   903)  ->  Abs (   334,   987)
+	 14: Rel (  -135,     0)  ->  Abs (   199,   987)
+	 15: Rel (   -57,     0)  ->  Abs (   142,   987)
+	 16: Rel (     0,    43)  ->  Abs (   142,  1030)
+	 17: Rel (     0,    41)  ->  Abs (   142,  1071)
+	 18: Rel (    57,     0)  ->  Abs (   199,  1071)
+	 19: Rel (   135,     0)  ->  Abs (   334,  1071)
+	 20: Rel (     0,    99)  ->  Abs (   334,  1170)
+	 21: Rel (  -112,     0)  ->  Abs (   222,  1170)
+	 22: Rel (   -57,     0)  ->  Abs (   165,  1170)
+	 23: Rel (     0,    42)  ->  Abs (   165,  1212)
+	 24: Rel (     0,    43)  ->  Abs (   165,  1255)
+	 25: Rel (    57,     0)  ->  Abs (   222,  1255)
+	 26: Rel (   197,     0)  ->  Abs (   419,  1255)
+	 27: Rel (     0,  -184)  ->  Abs (   419,  1071)
+	 28: Rel (   317,     0)  ->  Abs (   736,  1071)
+	 29: Rel (    57,     0)  ->  Abs (   793,  1071)
+	 30: Rel (     0,   -42)  ->  Abs (   793,  1029)
+	 31: Rel (     0,   -42)  ->  Abs (   793,   987)
+	 32: Rel (   -57,     0)  ->  Abs (   736,   987)
+	 33: Rel (  -317,     0)  ->  Abs (   419,   987)
+	 34: Rel (     0,  -249)  ->  Abs (   419,   738)
+	 35: Rel (   141,   158)  ->  Abs (   560,   896)
+	 36: Rel (   178,     0)  ->  Abs (   738,   896)
+	 37: Rel (   154,     0)  ->  Abs (   892,   896)
+	 38: Rel (   171,  -177)  ->  Abs (  1063,   719)
+	 39: Rel (     0,  -114)  ->  Abs (  1063,   605)
+	 40: Rel (     0,  -664)  ->  Abs (  1063,   -59)
+	 41: Rel (     0,  -150)  ->  Abs (  1063,  -209)
+	 42: Rel (  -188,  -177)  ->  Abs (   875,  -386)
+	 43: Rel (  -134,     0)  ->  Abs (   741,  -386)
+	 44: Rel (  -266,     0)  ->  Abs (   475,  -386)
+	 45: Rel (   -56,     0)  ->  Abs (   419,  -386)
+	 46: Rel (     0,    42)  ->  Abs (   419,  -344)
+	 47: Rel (     0,    42)  ->  Abs (   419,  -302)
+	 48: Rel (    56,     0)  ->  Abs (   475,  -302)
+	 49: Rel (   266,     0)  ->  Abs (   741,  -302)
+	 50: Rel (    56,     0)  ->  Abs (   797,  -302)
+	 51: Rel (   106,    47)  ->  Abs (   903,  -255)
+	 52: Rel (    76,   124)  ->  Abs (   979,  -131)
+	 53: Rel (     0,    72)  ->  Abs (   979,   -59)
+	 54: Rel (     0,   658)  ->  Abs (   979,   599)
+	 55: Rel (     0,    86)  ->  Abs (   979,   685)
+	 56: Rel (  -126,   127)  ->  Abs (   853,   812)
+	 57: Rel (  -122,     0)  ->  Abs (   731,   812)
+	 58: Rel (   -76,     0)  ->  Abs (   655,   812)
+	 59: Rel (  -119,   -61)  ->  Abs (   536,   751)
+
+	Glyph 636: off = 0x00022F46, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			152
+	  yMin:			0
+	  xMax:			1088
+	  yMax:			1329
+
+	     0: Flags:		0x0236
+		Glyf Index:	605
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	141
+		X BOffset:	43
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1    42    25 
+	00004: PUSHW[1]            350 
+	00007: PUSHB[5]             72    43     1     1    29 
+	00013: PUSHW[2]            652    41 
+	00018: SVTCA[y-axis] 
+	00019: CALL       
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: SHC[rp1,zp0] 
+
+	Glyph 637: off = 0x00022F76, len = 292
+	  numberOfContours:	1
+	  xMin:			171
+	  yMin:			-33
+	  xMax:			1099
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  41
+
+	  Length of Instructions:	171
+	00000: NPUSHB       (9):   176    23   176    40     2    39    26     1    10 
+	00011: PUSHW[1]             -8 
+	00014: PUSHB[6]             16    19    52    10    16    41 
+	00021: PUSHW[1]            -16 
+	00024: PUSHB[6]             38    16    41    26     7     8 
+	00031: PUSHW[1]            -19 
+	00034: NPUSHB      (77):     2    16    33    13    26    33    37    37    39    34 
+	                            29     6    13   162    18    15    34    63    34     2 
+	                            34     0    33   223     6   239     6     2     6     6 
+	                            18    39    33    24     7     9    33    18    11    11 
+	                            59    15     3     3    21    26    36    59    31    32 
+	                            89   112    15   144    15     2    15    26    43     0 
+	                             6    59    15    21    31    21   111    21   144    21 
+	                             4    21    25    42   196   142    24 
+	00113: CALL       
+	00114: FLIPOFF    
+	00115: SRP0       
+	00116: MIRP[srp0,nmd,rd,0] 
+	00117: DELTAP1    
+	00118: FLIPON     
+	00119: MIRP[srp0,md,rd,1] 
+	00120: ALIGNRP    
+	00121: FLIPOFF    
+	00122: SRP0       
+	00123: MIRP[srp0,nmd,rd,2] 
+	00124: DELTAP1    
+	00125: FLIPON     
+	00126: MIRP[srp0,nmd,rd,0] 
+	00127: ALIGNRP    
+	00128: MIRP[srp0,md,rd,1] 
+	00129: ALIGNRP    
+	00130: SRP2       
+	00131: IP         
+	00132: MDAP[rd]   
+	00133: SRP0       
+	00134: MIRP[nrp0,md,rd,1] 
+	00135: SVTCA[y-axis] 
+	00136: MIAP[rd+ci] 
+	00137: MIRP[nrp0,md,rd,1] 
+	00138: MIAP[rd+ci] 
+	00139: MIRP[nrp0,md,rd,1] 
+	00140: SRP2       
+	00141: IP         
+	00142: MDAP[rd]   
+	00143: DELTAP1    
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: MDAP[rd]   
+	00146: DELTAP1    
+	00147: SRP0       
+	00148: MIRP[nrp0,md,rd,1] 
+	00149: MIAP[rd+ci] 
+	00150: SRP1       
+	00151: SRP2       
+	00152: IP         
+	00153: MDAP[rd]   
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: SRP0       
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: IUP[y]     
+	00158: IUP[x]     
+	00159: SLOOP      
+	00160: SHPIX      
+	00161: SHPIX      
+	00162: SHPIX      
+	00163: SVTCA[x-axis] 
+	00164: SHPIX      
+	00165: SHPIX      
+	00166: SVTCA[y-axis] 
+	00167: CALL       
+	00168: DELTAP2    
+	00169: SVTCA[x-axis] 
+	00170: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                               On
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short         Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:                                      Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:                                      Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:  YDual               Y-Short X-Short On
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   257,   468)  ->  Abs (   257,   468)
+	  1: Rel (   443,     0)  ->  Abs (   700,   468)
+	  2: Rel (    57,     0)  ->  Abs (   757,   468)
+	  3: Rel (     0,   -42)  ->  Abs (   757,   426)
+	  4: Rel (     0,   -42)  ->  Abs (   757,   384)
+	  5: Rel (   -57,     0)  ->  Abs (   700,   384)
+	  6: Rel (  -443,     0)  ->  Abs (   257,   384)
+	  7: Rel (    19,  -157)  ->  Abs (   276,   227)
+	  8: Rel (   213,  -176)  ->  Abs (   489,    51)
+	  9: Rel (   150,     0)  ->  Abs (   639,    51)
+	 10: Rel (   227,     0)  ->  Abs (   866,    51)
+	 11: Rel (   156,   152)  ->  Abs (  1022,   203)
+	 12: Rel (    21,    20)  ->  Abs (  1043,   223)
+	 13: Rel (    16,     0)  ->  Abs (  1059,   223)
+	 14: Rel (    40,     0)  ->  Abs (  1099,   223)
+	 15: Rel (     0,   -40)  ->  Abs (  1099,   183)
+	 16: Rel (     0,   -53)  ->  Abs (  1099,   130)
+	 17: Rel (  -288,  -163)  ->  Abs (   811,   -33)
+	 18: Rel (  -176,     0)  ->  Abs (   635,   -33)
+	 19: Rel (  -206,     0)  ->  Abs (   429,   -33)
+	 20: Rel (  -258,   262)  ->  Abs (   171,   229)
+	 21: Rel (     0,   196)  ->  Abs (   171,   425)
+	 22: Rel (     0,   200)  ->  Abs (   171,   625)
+	 23: Rel (   265,   271)  ->  Abs (   436,   896)
+	 24: Rel (   205,     0)  ->  Abs (   641,   896)
+	 25: Rel (   193,     0)  ->  Abs (   834,   896)
+	 26: Rel (   131,  -115)  ->  Abs (   965,   781)
+	 27: Rel (     0,    28)  ->  Abs (   965,   809)
+	 28: Rel (     0,    57)  ->  Abs (   965,   866)
+	 29: Rel (    42,     0)  ->  Abs (  1007,   866)
+	 30: Rel (    43,     0)  ->  Abs (  1050,   866)
+	 31: Rel (     0,   -57)  ->  Abs (  1050,   809)
+	 32: Rel (     0,  -190)  ->  Abs (  1050,   619)
+	 33: Rel (     0,   -57)  ->  Abs (  1050,   562)
+	 34: Rel (   -43,     0)  ->  Abs (  1007,   562)
+	 35: Rel (   -38,     0)  ->  Abs (   969,   562)
+	 36: Rel (    -4,    50)  ->  Abs (   965,   612)
+	 37: Rel (    -7,    81)  ->  Abs (   958,   693)
+	 38: Rel (  -191,   118)  ->  Abs (   767,   811)
+	 39: Rel (  -131,     0)  ->  Abs (   636,   811)
+	 40: Rel (  -154,     0)  ->  Abs (   482,   811)
+	 41: Rel (  -205,  -180)  ->  Abs (   277,   631)
+
+	Glyph 638: off = 0x0002309A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			207
+	  yMin:			-33
+	  xMax:			1022
+	  yMax:			896
+
+	     0: Flags:		0x0216
+		Glyf Index:	86
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 639: off = 0x000230AA, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			189
+	  yMin:			0
+	  xMax:			1046
+	  yMax:			1297
+
+	     0: Flags:		0x0216
+		Glyf Index:	76
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 640: off = 0x000230BA, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			186
+	  yMin:			0
+	  xMax:			1047
+	  yMax:			1228
+
+	     0: Flags:		0x0226
+		Glyf Index:	213
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	142
+		X BOffset:	-84
+		Y BOffset:	-1
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              2     1    43 
+	00004: PUSHW[1]            -64 
+	00007: NPUSHB      (12):    19    25    52    43     0    60    72    43     1     2 
+	                             2    28 
+	00021: PUSHW[2]            652    41 
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: CALL       
+	00031: SHC[rp1,zp0] 
+	00032: SHC[rp1,zp0] 
+
+	Glyph 641: off = 0x000230F4, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			180
+	  yMin:			-386
+	  xMax:			824
+	  yMax:			1297
+
+	     0: Flags:		0x0216
+		Glyf Index:	77
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 642: off = 0x00023104, len = 396
+	  numberOfContours:	2
+	  xMin:			51
+	  yMin:			-33
+	  xMax:			1172
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  45
+	  1:  53
+
+	  Length of Instructions:	253
+	00000: NPUSHB      (21):    51    19    49    38    32    38    47     8    47    10 
+	                            47    12    63     8    63    10    63    12     6     8 
+	                            12 
+	00023: PUSHW[1]            686 
+	00026: NPUSHB      (11):    10    70    13    10    10    12    13    34     8    40 
+	                            36 
+	00039: PUSHW[1]            686 
+	00042: NPUSHB      (11):    38    47    35    38    38    36    35    34    40    41 
+	                            45 
+	00055: PUSHW[1]            686 
+	00058: NPUSHB      (90):    43    92     0    43    43    45     0    34    41    48 
+	                            26     1    26    26    40    19     1    38   192    46 
+	                             1     0    46    16    46     2    46    46     8    45 
+	                            15    15    36    32    41    40     6    31    38    19 
+	                            11    48    12    59     7     8    10    35    34    32 
+	                            16    16    23     0     1     1    47    32    64    13 
+	                            80    13     2    13    13    23    50    59    15     4 
+	                            79     4    95     4   111     4   191     4     5     4 
+	                            26    55    28    59   191    23     1    23    25    54 
+	00150: PUSHW[3]            293   289    24 
+	00157: CALL       
+	00158: FLIPOFF    
+	00159: SRP0       
+	00160: MIRP[srp0,nmd,rd,0] 
+	00161: DELTAP1    
+	00162: FLIPON     
+	00163: MIRP[nrp0,md,rd,1] 
+	00164: FLIPOFF    
+	00165: SRP0       
+	00166: MIRP[srp0,nmd,rd,2] 
+	00167: DELTAP1    
+	00168: FLIPON     
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: SRP2       
+	00171: IP         
+	00172: MDAP[rd]   
+	00173: DELTAP1    
+	00174: MIRP[srp0,md,rd,1] 
+	00175: ALIGNRP    
+	00176: SRP0       
+	00177: ALIGNRP    
+	00178: SRP2       
+	00179: IP         
+	00180: MDAP[rd]   
+	00181: MIRP[srp0,md,rd,1] 
+	00182: ALIGNRP    
+	00183: SVTCA[y-axis] 
+	00184: MIAP[rd+ci] 
+	00185: ALIGNRP    
+	00186: MIRP[srp0,md,rd,1] 
+	00187: ALIGNRP    
+	00188: MIAP[rd+ci] 
+	00189: MIRP[nrp0,md,rd,1] 
+	00190: MIAP[rd+ci] 
+	00191: ALIGNRP    
+	00192: MIRP[srp0,md,rd,1] 
+	00193: ALIGNRP    
+	00194: SRP0       
+	00195: ALIGNRP    
+	00196: SRP2       
+	00197: IP         
+	00198: MDAP[rd]   
+	00199: DELTAP1    
+	00200: DELTAP2    
+	00201: MIRP[nrp0,md,rd,1] 
+	00202: SRP1       
+	00203: SRP2       
+	00204: IP         
+	00205: MDAP[rd]   
+	00206: DELTAP1    
+	00207: SRP0       
+	00208: MIRP[srp0,md,rd,1] 
+	00209: RTDG       
+	00210: SRP2       
+	00211: IP         
+	00212: MDAP[rd]   
+	00213: RTG        
+	00214: SVTCA[x-axis] 
+	00215: SRP0       
+	00216: MIRP[srp0,nmd,rd,1] 
+	00217: MIRP[srp0,nmd,rd,0] 
+	00218: MDRP[nrp0,nmd,rd,0] 
+	00219: SVTCA[y-axis] 
+	00220: SRP0       
+	00221: MIRP[srp0,md,rd,1] 
+	00222: RTDG       
+	00223: SRP2       
+	00224: IP         
+	00225: MDAP[rd]   
+	00226: RTG        
+	00227: SVTCA[x-axis] 
+	00228: SRP0       
+	00229: MIRP[srp0,nmd,rd,1] 
+	00230: MIRP[srp0,nmd,rd,0] 
+	00231: MDRP[nrp0,nmd,rd,0] 
+	00232: SVTCA[y-axis] 
+	00233: SRP0       
+	00234: MIRP[srp0,md,rd,1] 
+	00235: RTDG       
+	00236: SRP2       
+	00237: IP         
+	00238: MDAP[rd]   
+	00239: RTG        
+	00240: SVTCA[x-axis] 
+	00241: SRP0       
+	00242: MIRP[srp0,nmd,rd,1] 
+	00243: MIRP[srp0,nmd,rd,0] 
+	00244: MDRP[nrp0,nmd,rd,0] 
+	00245: SVTCA[x-axis] 
+	00246: DELTAP1    
+	00247: IUP[y]     
+	00248: IUP[x]     
+	00249: SHPIX      
+	00250: SHPIX      
+	00251: SVTCA[y-axis] 
+	00252: SHPIX      
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual                               Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short On
+	 14:        XDual                         On
+	 15:  YDual                       X-Short On
+	 16:        XDual                         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:        XDual                         On
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual                               On
+	 42:  YDual XDual                 X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:  YDual                       X-Short On
+	 46:                              X-Short On
+	 47:        XDual                         On
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual                 X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual               Y-Short X-Short Off
+	 53:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   781,   781)  ->  Abs (   781,   781)
+	  1: Rel (     0,  -290)  ->  Abs (   781,   491)
+	  2: Rel (    67,     0)  ->  Abs (   848,   491)
+	  3: Rel (   324,     0)  ->  Abs (  1172,   491)
+	  4: Rel (     0,  -244)  ->  Abs (  1172,   247)
+	  5: Rel (     0,   -94)  ->  Abs (  1172,   153)
+	  6: Rel (  -134,  -153)  ->  Abs (  1038,     0)
+	  7: Rel (  -212,     0)  ->  Abs (   826,     0)
+	  8: Rel (  -189,     0)  ->  Abs (   637,     0)
+	  9: Rel (   -70,     0)  ->  Abs (   567,     0)
+	 10: Rel (     0,    42)  ->  Abs (   567,    42)
+	 11: Rel (     0,    42)  ->  Abs (   567,    84)
+	 12: Rel (    70,     0)  ->  Abs (   637,    84)
+	 13: Rel (    60,     0)  ->  Abs (   697,    84)
+	 14: Rel (     0,   697)  ->  Abs (   697,   781)
+	 15: Rel (  -209,     0)  ->  Abs (   488,   781)
+	 16: Rel (     0,  -483)  ->  Abs (   488,   298)
+	 17: Rel (     0,  -177)  ->  Abs (   488,   121)
+	 18: Rel (  -155,  -154)  ->  Abs (   333,   -33)
+	 19: Rel (  -112,     0)  ->  Abs (   221,   -33)
+	 20: Rel (   -56,     0)  ->  Abs (   165,   -33)
+	 21: Rel (   -94,    23)  ->  Abs (    71,   -10)
+	 22: Rel (   -20,    27)  ->  Abs (    51,    17)
+	 23: Rel (     0,    42)  ->  Abs (    51,    59)
+	 24: Rel (     0,    83)  ->  Abs (    51,   142)
+	 25: Rel (     0,    63)  ->  Abs (    51,   205)
+	 26: Rel (    42,     0)  ->  Abs (    93,   205)
+	 27: Rel (    42,     0)  ->  Abs (   135,   205)
+	 28: Rel (     0,   -58)  ->  Abs (   135,   147)
+	 29: Rel (     0,   -82)  ->  Abs (   135,    65)
+	 30: Rel (    55,   -11)  ->  Abs (   190,    54)
+	 31: Rel (    34,     0)  ->  Abs (   224,    54)
+	 32: Rel (    63,     0)  ->  Abs (   287,    54)
+	 33: Rel (   116,   101)  ->  Abs (   403,   155)
+	 34: Rel (     0,   143)  ->  Abs (   403,   298)
+	 35: Rel (     0,   483)  ->  Abs (   403,   781)
+	 36: Rel (  -110,     0)  ->  Abs (   293,   781)
+	 37: Rel (   -70,     0)  ->  Abs (   223,   781)
+	 38: Rel (     0,    42)  ->  Abs (   223,   823)
+	 39: Rel (     0,    43)  ->  Abs (   223,   866)
+	 40: Rel (    70,     0)  ->  Abs (   293,   866)
+	 41: Rel (   571,     0)  ->  Abs (   864,   866)
+	 42: Rel (    71,     0)  ->  Abs (   935,   866)
+	 43: Rel (     0,   -43)  ->  Abs (   935,   823)
+	 44: Rel (     0,   -42)  ->  Abs (   935,   781)
+	 45: Rel (   -71,     0)  ->  Abs (   864,   781)
+	 46: Rel (   -83,  -374)  ->  Abs (   781,   407)
+	 47: Rel (     0,  -323)  ->  Abs (   781,    84)
+	 48: Rel (    73,     0)  ->  Abs (   854,    84)
+	 49: Rel (   227,     0)  ->  Abs (  1081,    84)
+	 50: Rel (     0,   164)  ->  Abs (  1081,   248)
+	 51: Rel (     0,    74)  ->  Abs (  1081,   322)
+	 52: Rel (   -92,    85)  ->  Abs (   989,   407)
+	 53: Rel (  -142,     0)  ->  Abs (   847,   407)
+
+	Glyph 643: off = 0x00023290, len = 618
+	  numberOfContours:	2
+	  xMin:			-18
+	  yMin:			0
+	  xMax:			1248
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  52
+	  1:  61
+
+	  Length of Instructions:	458
+	00000: PUSHB[8]             41    18     1    58    15    13     2    56 
+	00009: PUSHW[1]            -26 
+	00012: NPUSHB      (32):     2    64    11    15    52     6    64    11    15    52 
+	                             4    64    11    15    52    20    64    11    15    52 
+	                            24    64    11    15    52    22    64    11    15    52 
+	                            33    29 
+	00046: PUSHW[1]            686 
+	00049: PUSHB[8]             16    31    32    31    48    31     3    31 
+	00058: PUSHW[1]            779 
+	00061: NPUSHB       (9):    28    31    31    29    28    34    33    45    41 
+	00072: PUSHW[3]            686    43   779 
+	00079: NPUSHB       (9):    40    43    43    41    40    34    45     6     2 
+	00090: PUSHW[1]            686 
+	00093: PUSHB[4]             31     4     1     4 
+	00098: PUSHW[1]            779 
+	00101: NPUSHB       (9):     1     4     4     2     1    34     6     7    11 
+	00112: PUSHW[1]            686 
+	00115: NPUSHB      (16):     0     9    16     9     2     9    47    12     9     9 
+	                            11    12    34     7    46    50 
+	00133: PUSHW[1]            686 
+	00136: PUSHB[8]             16    48    32    48    48    48     3    48 
+	00145: PUSHW[1]            779 
+	00148: NPUSHB       (9):    51    48    48    50    51    34    46    34    38 
+	00159: PUSHW[1]            686 
+	00162: NPUSHB      (21):   223    36   239    36     2    15    36   207    36     2 
+	                            36    92    39    36    36    38    39    34    34    20 
+	                            24 
+	00185: PUSHW[1]            686 
+	00188: PUSHB[4]             31    22     1    22 
+	00193: PUSHW[1]            779 
+	00196: NPUSHB      (91):    25    22    22    24    25    34    20    52    13    38 
+	                            27    27   192    61     1    61    61    45    53    24 
+	                            59    20    38    29    59    34    33    33    20    10 
+	                            11     2     2    50    50    41    59    45     7     6 
+	                             6    46    45     6     1    25    32    12    15    53 
+	                            31    53    63    53    79    53    95    53   127    53 
+	                           143    53   191    53     8    53    53    39    57    59 
+	                            48    16   224    16     2    16    26    63    51    28 
+	                            32    40     0    39   224    39     2    39    25    62 
+	                            42 
+	00289: PUSHW[2]            389    24 
+	00294: CALL       
+	00295: FLIPOFF    
+	00296: SRP0       
+	00297: MIRP[srp0,nmd,rd,0] 
+	00298: DELTAP1    
+	00299: ALIGNRP    
+	00300: FLIPON     
+	00301: MIRP[srp0,md,rd,1] 
+	00302: ALIGNRP    
+	00303: FLIPOFF    
+	00304: SRP0       
+	00305: MIRP[srp0,nmd,rd,2] 
+	00306: DELTAP1    
+	00307: FLIPON     
+	00308: MIRP[nrp0,md,rd,1] 
+	00309: SRP2       
+	00310: IP         
+	00311: MDAP[rd]   
+	00312: DELTAP1    
+	00313: ALIGNRP    
+	00314: MIRP[srp0,md,rd,1] 
+	00315: ALIGNRP    
+	00316: SVTCA[y-axis] 
+	00317: MIAP[rd+ci] 
+	00318: ALIGNRP    
+	00319: ALIGNRP    
+	00320: SRP0       
+	00321: ALIGNRP    
+	00322: SRP0       
+	00323: MIRP[srp0,md,rd,1] 
+	00324: ALIGNRP    
+	00325: SRP0       
+	00326: ALIGNRP    
+	00327: SRP0       
+	00328: ALIGNRP    
+	00329: MIAP[rd+ci] 
+	00330: ALIGNRP    
+	00331: SRP0       
+	00332: ALIGNRP    
+	00333: MIRP[srp0,md,rd,1] 
+	00334: ALIGNRP    
+	00335: SRP0       
+	00336: MIRP[srp0,md,rd,1] 
+	00337: ALIGNRP    
+	00338: SRP2       
+	00339: IP         
+	00340: MDAP[rd]   
+	00341: DELTAP2    
+	00342: ALIGNRP    
+	00343: SRP0       
+	00344: MIRP[srp0,md,rd,1] 
+	00345: ALIGNRP    
+	00346: SRP0       
+	00347: MIRP[srp0,md,rd,1] 
+	00348: RTDG       
+	00349: SRP2       
+	00350: IP         
+	00351: MDAP[rd]   
+	00352: RTG        
+	00353: SVTCA[x-axis] 
+	00354: SRP0       
+	00355: MIRP[srp0,nmd,rd,1] 
+	00356: DELTAP1    
+	00357: MIRP[srp0,nmd,rd,0] 
+	00358: MDRP[nrp0,nmd,rd,0] 
+	00359: SVTCA[y-axis] 
+	00360: SRP0       
+	00361: MIRP[srp0,md,rd,1] 
+	00362: RTDG       
+	00363: SRP2       
+	00364: IP         
+	00365: MDAP[rd]   
+	00366: RTG        
+	00367: SVTCA[x-axis] 
+	00368: SRP0       
+	00369: MIRP[srp0,nmd,rd,1] 
+	00370: DELTAP1    
+	00371: DELTAP1    
+	00372: MIRP[srp0,nmd,rd,0] 
+	00373: MDRP[nrp0,nmd,rd,0] 
+	00374: SVTCA[y-axis] 
+	00375: SRP0       
+	00376: MIRP[srp0,md,rd,1] 
+	00377: RTDG       
+	00378: SRP2       
+	00379: IP         
+	00380: MDAP[rd]   
+	00381: RTG        
+	00382: SVTCA[x-axis] 
+	00383: SRP0       
+	00384: MIRP[srp0,nmd,rd,1] 
+	00385: DELTAP1    
+	00386: MIRP[srp0,nmd,rd,0] 
+	00387: MDRP[nrp0,nmd,rd,0] 
+	00388: SVTCA[y-axis] 
+	00389: SRP0       
+	00390: MIRP[srp0,md,rd,1] 
+	00391: RTDG       
+	00392: SRP2       
+	00393: IP         
+	00394: MDAP[rd]   
+	00395: RTG        
+	00396: SVTCA[x-axis] 
+	00397: SRP0       
+	00398: MIRP[srp0,nmd,rd,1] 
+	00399: DELTAP1    
+	00400: MIRP[srp0,nmd,rd,0] 
+	00401: MDRP[nrp0,nmd,rd,0] 
+	00402: SVTCA[y-axis] 
+	00403: SRP0       
+	00404: MIRP[srp0,md,rd,1] 
+	00405: RTDG       
+	00406: SRP2       
+	00407: IP         
+	00408: MDAP[rd]   
+	00409: RTG        
+	00410: SVTCA[x-axis] 
+	00411: SRP0       
+	00412: MIRP[srp0,nmd,rd,1] 
+	00413: DELTAP1    
+	00414: MIRP[srp0,nmd,rd,0] 
+	00415: MDRP[nrp0,nmd,rd,0] 
+	00416: SVTCA[y-axis] 
+	00417: SRP0       
+	00418: MIRP[srp0,md,rd,1] 
+	00419: RTDG       
+	00420: SRP2       
+	00421: IP         
+	00422: MDAP[rd]   
+	00423: RTG        
+	00424: SVTCA[x-axis] 
+	00425: SRP0       
+	00426: MIRP[srp0,nmd,rd,1] 
+	00427: MIRP[srp0,nmd,rd,0] 
+	00428: MDRP[nrp0,nmd,rd,0] 
+	00429: SVTCA[y-axis] 
+	00430: SRP0       
+	00431: MIRP[srp0,md,rd,1] 
+	00432: RTDG       
+	00433: SRP2       
+	00434: IP         
+	00435: MDAP[rd]   
+	00436: RTG        
+	00437: SVTCA[x-axis] 
+	00438: SRP0       
+	00439: MIRP[srp0,nmd,rd,1] 
+	00440: DELTAP1    
+	00441: MIRP[srp0,nmd,rd,0] 
+	00442: MDRP[nrp0,nmd,rd,0] 
+	00443: SVTCA[x-axis] 
+	00444: CALL       
+	00445: CALL       
+	00446: CALL       
+	00447: CALL       
+	00448: CALL       
+	00449: CALL       
+	00450: IUP[y]     
+	00451: IUP[x]     
+	00452: SVTCA[y-axis] 
+	00453: SHPIX      
+	00454: SLOOP      
+	00455: SHPIX      
+	00456: SVTCA[y-axis] 
+	00457: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short On
+	 13:        XDual                         On
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual                               Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                               On
+	 20:  YDual                               On
+	 21:  YDual                       X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short On
+	 26:        XDual                         On
+	 27:  YDual                               On
+	 28:        XDual                         On
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short On
+	 40:        XDual                         On
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:        XDual         Y-Short         On
+	 49:        XDual         Y-Short         Off
+	 50:  YDual                       X-Short On
+	 51:  YDual                       X-Short On
+	 52:        XDual                         On
+	 53:                                      On
+	 54:  YDual XDual                 X-Short On
+	 55:  YDual XDual                 X-Short Off
+	 56:  YDual XDual         Y-Short X-Short Off
+	 57:  YDual XDual         Y-Short         On
+	 58:  YDual XDual         Y-Short         Off
+	 59:  YDual               Y-Short X-Short Off
+	 60:  YDual                       X-Short On
+	 61:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   578,   498)  ->  Abs (   578,   498)
+	  1: Rel (     0,   283)  ->  Abs (   578,   781)
+	  2: Rel (   -45,     0)  ->  Abs (   533,   781)
+	  3: Rel (   -56,     0)  ->  Abs (   477,   781)
+	  4: Rel (     0,    42)  ->  Abs (   477,   823)
+	  5: Rel (     0,    43)  ->  Abs (   477,   866)
+	  6: Rel (    56,     0)  ->  Abs (   533,   866)
+	  7: Rel (   242,     0)  ->  Abs (   775,   866)
+	  8: Rel (    57,     0)  ->  Abs (   832,   866)
+	  9: Rel (     0,   -43)  ->  Abs (   832,   823)
+	 10: Rel (     0,   -42)  ->  Abs (   832,   781)
+	 11: Rel (   -57,     0)  ->  Abs (   775,   781)
+	 12: Rel (  -112,     0)  ->  Abs (   663,   781)
+	 13: Rel (     0,  -283)  ->  Abs (   663,   498)
+	 14: Rel (   197,     0)  ->  Abs (   860,   498)
+	 15: Rel (   388,     0)  ->  Abs (  1248,   498)
+	 16: Rel (     0,  -238)  ->  Abs (  1248,   260)
+	 17: Rel (     0,  -103)  ->  Abs (  1248,   157)
+	 18: Rel (  -131,  -157)  ->  Abs (  1117,     0)
+	 19: Rel (  -257,     0)  ->  Abs (   860,     0)
+	 20: Rel (  -330,     0)  ->  Abs (   530,     0)
+	 21: Rel (   -57,     0)  ->  Abs (   473,     0)
+	 22: Rel (     0,    42)  ->  Abs (   473,    42)
+	 23: Rel (     0,    42)  ->  Abs (   473,    84)
+	 24: Rel (    57,     0)  ->  Abs (   530,    84)
+	 25: Rel (    48,     0)  ->  Abs (   578,    84)
+	 26: Rel (     0,   329)  ->  Abs (   578,   413)
+	 27: Rel (  -361,     0)  ->  Abs (   217,   413)
+	 28: Rel (     0,  -329)  ->  Abs (   217,    84)
+	 29: Rel (    65,     0)  ->  Abs (   282,    84)
+	 30: Rel (    56,     0)  ->  Abs (   338,    84)
+	 31: Rel (     0,   -42)  ->  Abs (   338,    42)
+	 32: Rel (     0,   -42)  ->  Abs (   338,     0)
+	 33: Rel (   -56,     0)  ->  Abs (   282,     0)
+	 34: Rel (  -244,     0)  ->  Abs (    38,     0)
+	 35: Rel (   -56,     0)  ->  Abs (   -18,     0)
+	 36: Rel (     0,    42)  ->  Abs (   -18,    42)
+	 37: Rel (     0,    42)  ->  Abs (   -18,    84)
+	 38: Rel (    56,     0)  ->  Abs (    38,    84)
+	 39: Rel (    95,     0)  ->  Abs (   133,    84)
+	 40: Rel (     0,   697)  ->  Abs (   133,   781)
+	 41: Rel (   -65,     0)  ->  Abs (    68,   781)
+	 42: Rel (   -56,     0)  ->  Abs (    12,   781)
+	 43: Rel (     0,    42)  ->  Abs (    12,   823)
+	 44: Rel (     0,    43)  ->  Abs (    12,   866)
+	 45: Rel (    56,     0)  ->  Abs (    68,   866)
+	 46: Rel (   214,     0)  ->  Abs (   282,   866)
+	 47: Rel (    56,     0)  ->  Abs (   338,   866)
+	 48: Rel (     0,   -43)  ->  Abs (   338,   823)
+	 49: Rel (     0,   -42)  ->  Abs (   338,   781)
+	 50: Rel (   -56,     0)  ->  Abs (   282,   781)
+	 51: Rel (   -65,     0)  ->  Abs (   217,   781)
+	 52: Rel (     0,  -283)  ->  Abs (   217,   498)
+	 53: Rel (   446,  -414)  ->  Abs (   663,    84)
+	 54: Rel (   192,     0)  ->  Abs (   855,    84)
+	 55: Rel (   188,     0)  ->  Abs (  1043,    84)
+	 56: Rel (   118,    89)  ->  Abs (  1161,   173)
+	 57: Rel (     0,    83)  ->  Abs (  1161,   256)
+	 58: Rel (     0,    95)  ->  Abs (  1161,   351)
+	 59: Rel (  -151,    62)  ->  Abs (  1010,   413)
+	 60: Rel (  -158,     0)  ->  Abs (   852,   413)
+	 61: Rel (  -189,     0)  ->  Abs (   663,   413)
+
+	Glyph 644: off = 0x000234FA, len = 496
+	  numberOfContours:	1
+	  xMin:			62
+	  yMin:			0
+	  xMax:			1134
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  57
+
+	  Length of Instructions:	349
+	00000: NPUSHB      (13):     5    11    21    11    39    11   163    11   179    11 
+	                             5    11    10 
+	00015: PUSHW[1]             -6 
+	00018: NPUSHB      (20):     2    26    19    56    64     9    19    52    52    64 
+	                             9    19    52    54    64     9    19    52    56    52 
+	00040: PUSHW[1]            686 
+	00043: NPUSHB      (11):    54    47    51    54    54    52    51    34    56    18 
+	                            14 
+	00056: PUSHW[1]            686 
+	00059: NPUSHB      (14):     0    16     1    16    92    13    16    16    14    13 
+	                            34    18    19    23 
+	00075: PUSHW[1]            686 
+	00078: NPUSHB      (11):    21    92    24    21    21    23    24    34    19    37 
+	                            33 
+	00091: PUSHW[1]            686 
+	00094: NPUSHB      (16):     0    35    16    35     2    35    92    32    35    35 
+	                            33    32    34    37    38    42 
+	00112: PUSHW[1]            686 
+	00115: NPUSHB      (34):    40    92    43    40    40    42    43    34    38     1 
+	                            49    32    45    45     5    64    25    29    52     5 
+	                             5     9    52    59    56     0     7    33    31    31 
+	                            38    28    33     9 
+	00151: PUSHW[1]            -64 
+	00154: NPUSHB      (24):    11    13    52     9     7    14    23    23    33    33 
+	                            42    59    38    18    19    19    37    38    10     3 
+	                             3    24    32    47 
+	00180: PUSHW[1]            355 
+	00183: NPUSHB      (14):    43     7    57    32    51    32    32    43    13    32 
+	                           223    24     1    24 
+	00199: PUSHW[1]            675 
+	00202: PUSHB[7]             59   191    43   207    43     2    43 
+	00210: PUSHW[1]            491 
+	00213: PUSHB[4]             58    71    97    24 
+	00218: CALL       
+	00219: FLIPOFF    
+	00220: SRP0       
+	00221: MIRP[nrp0,nmd,rd,0] 
+	00222: DELTAP1    
+	00223: FLIPON     
+	00224: SRP0       
+	00225: MIRP[srp0,nmd,rd,0] 
+	00226: DELTAP1    
+	00227: MIRP[nrp0,md,rd,1] 
+	00228: SRP0       
+	00229: MIRP[nrp0,md,rd,1] 
+	00230: ALIGNRP    
+	00231: SRP0       
+	00232: ALIGNRP    
+	00233: ALIGNRP    
+	00234: SRP0       
+	00235: MIRP[nrp0,nmd,rd,0] 
+	00236: SRP1       
+	00237: SRP2       
+	00238: IP         
+	00239: MDAP[rd]   
+	00240: SVTCA[y-axis] 
+	00241: MIAP[rd+ci] 
+	00242: ALIGNRP    
+	00243: ALIGNRP    
+	00244: SRP0       
+	00245: ALIGNRP    
+	00246: SRP0       
+	00247: MIRP[srp0,md,rd,1] 
+	00248: ALIGNRP    
+	00249: SRP0       
+	00250: ALIGNRP    
+	00251: SRP0       
+	00252: ALIGNRP    
+	00253: MIAP[rd+ci] 
+	00254: CALL       
+	00255: MIRP[srp0,md,rd,1] 
+	00256: RTHG       
+	00257: SRP1       
+	00258: IP         
+	00259: MDAP[rd]   
+	00260: RTG        
+	00261: MIRP[nrp0,md,rd,1] 
+	00262: MIAP[rd+ci] 
+	00263: MIRP[nrp0,md,rd,1] 
+	00264: SRP2       
+	00265: IP         
+	00266: MDAP[rd]   
+	00267: CALL       
+	00268: ALIGNRP    
+	00269: SRP0       
+	00270: MIRP[srp0,md,rd,1] 
+	00271: ALIGNRP    
+	00272: SRP0       
+	00273: MIRP[srp0,md,rd,1] 
+	00274: RTDG       
+	00275: SRP2       
+	00276: IP         
+	00277: MDAP[rd]   
+	00278: RTG        
+	00279: SVTCA[x-axis] 
+	00280: SRP0       
+	00281: MIRP[srp0,nmd,rd,1] 
+	00282: MIRP[srp0,nmd,rd,0] 
+	00283: MDRP[nrp0,nmd,rd,0] 
+	00284: SVTCA[y-axis] 
+	00285: SRP0       
+	00286: MIRP[srp0,md,rd,1] 
+	00287: RTDG       
+	00288: SRP2       
+	00289: IP         
+	00290: MDAP[rd]   
+	00291: RTG        
+	00292: SVTCA[x-axis] 
+	00293: SRP0       
+	00294: MIRP[srp0,nmd,rd,1] 
+	00295: DELTAP1    
+	00296: MIRP[srp0,nmd,rd,0] 
+	00297: MDRP[nrp0,nmd,rd,0] 
+	00298: SVTCA[y-axis] 
+	00299: SRP0       
+	00300: MIRP[srp0,md,rd,1] 
+	00301: RTDG       
+	00302: SRP2       
+	00303: IP         
+	00304: MDAP[rd]   
+	00305: RTG        
+	00306: SVTCA[x-axis] 
+	00307: SRP0       
+	00308: MIRP[srp0,nmd,rd,1] 
+	00309: MIRP[srp0,nmd,rd,0] 
+	00310: MDRP[nrp0,nmd,rd,0] 
+	00311: SVTCA[y-axis] 
+	00312: SRP0       
+	00313: MIRP[srp0,md,rd,1] 
+	00314: RTDG       
+	00315: SRP2       
+	00316: IP         
+	00317: MDAP[rd]   
+	00318: RTG        
+	00319: SVTCA[x-axis] 
+	00320: SRP0       
+	00321: MIRP[srp0,nmd,rd,1] 
+	00322: DELTAP1    
+	00323: MIRP[srp0,nmd,rd,0] 
+	00324: MDRP[nrp0,nmd,rd,0] 
+	00325: SVTCA[y-axis] 
+	00326: SRP0       
+	00327: MIRP[srp0,md,rd,1] 
+	00328: RTDG       
+	00329: SRP2       
+	00330: IP         
+	00331: MDAP[rd]   
+	00332: RTG        
+	00333: SVTCA[x-axis] 
+	00334: SRP0       
+	00335: MIRP[srp0,nmd,rd,1] 
+	00336: MIRP[srp0,nmd,rd,0] 
+	00337: MDRP[nrp0,nmd,rd,0] 
+	00338: SVTCA[x-axis] 
+	00339: CALL       
+	00340: CALL       
+	00341: CALL       
+	00342: IUP[y]     
+	00343: IUP[x]     
+	00344: SVTCA[y-axis] 
+	00345: SHPIX      
+	00346: SLOOP      
+	00347: SHPIX      
+	00348: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                               On
+	  7:        XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual                         On
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                               On
+	 20:  YDual                       X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short On
+	 25:        XDual                         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:                      Y-Short X-Short Off
+	 31:                      Y-Short X-Short On
+	 32:        XDual                         On
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                               On
+	 39:  YDual                       X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short On
+	 44:        XDual                         On
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short On
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual                       X-Short On
+	 53:  YDual                       X-Short Off
+	 54:  YDual XDual         Y-Short         On
+	 55:  YDual XDual         Y-Short         Off
+	 56:  YDual XDual                 X-Short On
+	 57:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   339,  1071)  ->  Abs (   339,  1071)
+	  1: Rel (   317,     0)  ->  Abs (   656,  1071)
+	  2: Rel (    57,     0)  ->  Abs (   713,  1071)
+	  3: Rel (     0,   -42)  ->  Abs (   713,  1029)
+	  4: Rel (     0,   -42)  ->  Abs (   713,   987)
+	  5: Rel (   -57,     0)  ->  Abs (   656,   987)
+	  6: Rel (  -317,     0)  ->  Abs (   339,   987)
+	  7: Rel (     0,  -249)  ->  Abs (   339,   738)
+	  8: Rel (   141,   158)  ->  Abs (   480,   896)
+	  9: Rel (   178,     0)  ->  Abs (   658,   896)
+	 10: Rel (   154,     0)  ->  Abs (   812,   896)
+	 11: Rel (   171,  -177)  ->  Abs (   983,   719)
+	 12: Rel (     0,  -114)  ->  Abs (   983,   605)
+	 13: Rel (     0,  -521)  ->  Abs (   983,    84)
+	 14: Rel (    95,     0)  ->  Abs (  1078,    84)
+	 15: Rel (    56,     0)  ->  Abs (  1134,    84)
+	 16: Rel (     0,   -42)  ->  Abs (  1134,    42)
+	 17: Rel (     0,   -42)  ->  Abs (  1134,     0)
+	 18: Rel (   -56,     0)  ->  Abs (  1078,     0)
+	 19: Rel (  -274,     0)  ->  Abs (   804,     0)
+	 20: Rel (   -56,     0)  ->  Abs (   748,     0)
+	 21: Rel (     0,    42)  ->  Abs (   748,    42)
+	 22: Rel (     0,    42)  ->  Abs (   748,    84)
+	 23: Rel (    56,     0)  ->  Abs (   804,    84)
+	 24: Rel (    95,     0)  ->  Abs (   899,    84)
+	 25: Rel (     0,   515)  ->  Abs (   899,   599)
+	 26: Rel (     0,    86)  ->  Abs (   899,   685)
+	 27: Rel (  -126,   127)  ->  Abs (   773,   812)
+	 28: Rel (  -122,     0)  ->  Abs (   651,   812)
+	 29: Rel (   -76,     0)  ->  Abs (   575,   812)
+	 30: Rel (  -119,   -61)  ->  Abs (   456,   751)
+	 31: Rel (  -117,  -135)  ->  Abs (   339,   616)
+	 32: Rel (     0,  -532)  ->  Abs (   339,    84)
+	 33: Rel (    94,     0)  ->  Abs (   433,    84)
+	 34: Rel (    57,     0)  ->  Abs (   490,    84)
+	 35: Rel (     0,   -42)  ->  Abs (   490,    42)
+	 36: Rel (     0,   -42)  ->  Abs (   490,     0)
+	 37: Rel (   -57,     0)  ->  Abs (   433,     0)
+	 38: Rel (  -273,     0)  ->  Abs (   160,     0)
+	 39: Rel (   -56,     0)  ->  Abs (   104,     0)
+	 40: Rel (     0,    42)  ->  Abs (   104,    42)
+	 41: Rel (     0,    42)  ->  Abs (   104,    84)
+	 42: Rel (    56,     0)  ->  Abs (   160,    84)
+	 43: Rel (    94,     0)  ->  Abs (   254,    84)
+	 44: Rel (     0,   903)  ->  Abs (   254,   987)
+	 45: Rel (  -135,     0)  ->  Abs (   119,   987)
+	 46: Rel (   -57,     0)  ->  Abs (    62,   987)
+	 47: Rel (     0,    42)  ->  Abs (    62,  1029)
+	 48: Rel (     0,    42)  ->  Abs (    62,  1071)
+	 49: Rel (    57,     0)  ->  Abs (   119,  1071)
+	 50: Rel (   135,     0)  ->  Abs (   254,  1071)
+	 51: Rel (     0,    99)  ->  Abs (   254,  1170)
+	 52: Rel (  -112,     0)  ->  Abs (   142,  1170)
+	 53: Rel (   -57,     0)  ->  Abs (    85,  1170)
+	 54: Rel (     0,    42)  ->  Abs (    85,  1212)
+	 55: Rel (     0,    43)  ->  Abs (    85,  1255)
+	 56: Rel (    57,     0)  ->  Abs (   142,  1255)
+	 57: Rel (   197,     0)  ->  Abs (   339,  1255)
+
+	Glyph 645: off = 0x000236EA, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			120
+	  yMin:			0
+	  xMax:			1172
+	  yMax:			1329
+
+	     0: Flags:		0x0236
+		Glyf Index:	612
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	141
+		X BOffset:	43
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (11):     1   176    81     1    81    64    33    35    52    81 
+	                            48 
+	00013: PUSHW[1]            460 
+	00016: PUSHB[5]             72    43     1     1    68 
+	00022: PUSHW[2]            652    41 
+	00027: SVTCA[y-axis] 
+	00028: CALL       
+	00029: SVTCA[x-axis] 
+	00030: CALL       
+	00031: CALL       
+	00032: DELTAP1    
+	00033: SHC[rp1,zp0] 
+
+	Glyph 646: off = 0x00023724, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			60
+	  yMin:			-306
+	  xMax:			1194
+	  yMax:			1258
+
+	     0: Flags:		0x0236
+		Glyf Index:	621
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	217
+		X BOffset:	16
+		Y BOffset:	-40
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     1    80    62     1   208    62   240    62     2    63 
+	                            62     1    62    13 
+	00016: PUSHW[1]           -145 
+	00019: PUSHB[5]             72    43     1     1    65 
+	00025: PUSHW[2]            652    41 
+	00030: SVTCA[y-axis] 
+	00031: CALL       
+	00032: SVTCA[x-axis] 
+	00033: CALL       
+	00034: DELTAP1    
+	00035: DELTAP2    
+	00036: DELTAP3    
+	00037: SHC[rp1,zp0] 
+
+	Glyph 647: off = 0x00023762, len = 408
+	  numberOfContours:	1
+	  xMin:			107
+	  yMin:			-286
+	  xMax:			1122
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  44
+
+	  Length of Instructions:	297
+	00000: PUSHB[2]             33    37 
+	00003: PUSHW[1]            686 
+	00006: PUSHB[4]             15    35     1    35 
+	00011: PUSHW[1]            779 
+	00014: NPUSHB       (9):    38    35    35    37    38    34    33    32    28 
+	00025: PUSHW[3]            686    30   779 
+	00032: NPUSHB       (9):    27    30    30    28    27    34    32    18    14 
+	00043: PUSHW[1]            686 
+	00046: PUSHB[4]              0    16     1    16 
+	00051: PUSHW[1]            779 
+	00054: NPUSHB       (9):    13    16    16    14    13    34    18    19    23 
+	00065: PUSHW[1]            686 
+	00068: PUSHB[4]             16    21     1    21 
+	00073: PUSHW[1]            779 
+	00076: NPUSHB       (9):    24    21    21    23    24    34    19    44    40 
+	00087: PUSHW[1]            686 
+	00090: NPUSHB      (11):    42    92    39    42    42    40    39    34    44     7 
+	                            11 
+	00103: PUSHW[1]            686 
+	00106: NPUSHB      (66):     9    92    12     9     9    11    12    34     7    25 
+	                            40    11    59     7     3    44     7    10    37    28 
+	                            28    23    23    14    59    18    33    32    32    19 
+	                            18     6     1    59     6     6    12    27    26    32 
+	                            38    79    39    95    39   191    39     3    39    26 
+	                            46    24    25    32    13   144    12   160    12     2 
+	                            12    25    45    71    97    24 
+	00174: CALL       
+	00175: FLIPOFF    
+	00176: SRP0       
+	00177: MIRP[srp0,nmd,rd,0] 
+	00178: DELTAP1    
+	00179: ALIGNRP    
+	00180: FLIPON     
+	00181: MIRP[srp0,md,rd,1] 
+	00182: ALIGNRP    
+	00183: FLIPOFF    
+	00184: SRP0       
+	00185: MIRP[srp0,nmd,rd,2] 
+	00186: DELTAP1    
+	00187: ALIGNRP    
+	00188: FLIPON     
+	00189: MIRP[srp0,md,rd,1] 
+	00190: ALIGNRP    
+	00191: SRP2       
+	00192: IP         
+	00193: MDAP[rd]   
+	00194: MIRP[nrp0,md,rd,1] 
+	00195: SVTCA[y-axis] 
+	00196: MIAP[rd+ci] 
+	00197: ALIGNRP    
+	00198: ALIGNRP    
+	00199: SRP0       
+	00200: ALIGNRP    
+	00201: SRP0       
+	00202: MIRP[srp0,md,rd,1] 
+	00203: ALIGNRP    
+	00204: SRP0       
+	00205: ALIGNRP    
+	00206: SRP0       
+	00207: ALIGNRP    
+	00208: MIAP[rd+ci] 
+	00209: ALIGNRP    
+	00210: MDAP[rd]   
+	00211: SRP0       
+	00212: MIRP[srp0,md,rd,1] 
+	00213: ALIGNRP    
+	00214: ALIGNRP    
+	00215: SRP0       
+	00216: MIRP[srp0,md,rd,1] 
+	00217: RTDG       
+	00218: SRP2       
+	00219: IP         
+	00220: MDAP[rd]   
+	00221: RTG        
+	00222: SVTCA[x-axis] 
+	00223: SRP0       
+	00224: MIRP[srp0,nmd,rd,1] 
+	00225: MIRP[srp0,nmd,rd,0] 
+	00226: MDRP[nrp0,nmd,rd,0] 
+	00227: SVTCA[y-axis] 
+	00228: SRP0       
+	00229: MIRP[srp0,md,rd,1] 
+	00230: RTDG       
+	00231: SRP2       
+	00232: IP         
+	00233: MDAP[rd]   
+	00234: RTG        
+	00235: SVTCA[x-axis] 
+	00236: SRP0       
+	00237: MIRP[srp0,nmd,rd,1] 
+	00238: MIRP[srp0,nmd,rd,0] 
+	00239: MDRP[nrp0,nmd,rd,0] 
+	00240: SVTCA[y-axis] 
+	00241: SRP0       
+	00242: MIRP[srp0,md,rd,1] 
+	00243: RTDG       
+	00244: SRP2       
+	00245: IP         
+	00246: MDAP[rd]   
+	00247: RTG        
+	00248: SVTCA[x-axis] 
+	00249: SRP0       
+	00250: MIRP[srp0,nmd,rd,1] 
+	00251: DELTAP1    
+	00252: MIRP[srp0,nmd,rd,0] 
+	00253: MDRP[nrp0,nmd,rd,0] 
+	00254: SVTCA[y-axis] 
+	00255: SRP0       
+	00256: MIRP[srp0,md,rd,1] 
+	00257: RTDG       
+	00258: SRP2       
+	00259: IP         
+	00260: MDAP[rd]   
+	00261: RTG        
+	00262: SVTCA[x-axis] 
+	00263: SRP0       
+	00264: MIRP[srp0,nmd,rd,1] 
+	00265: DELTAP1    
+	00266: MIRP[srp0,nmd,rd,0] 
+	00267: MDRP[nrp0,nmd,rd,0] 
+	00268: SVTCA[y-axis] 
+	00269: SRP0       
+	00270: MIRP[srp0,md,rd,1] 
+	00271: RTDG       
+	00272: SRP2       
+	00273: IP         
+	00274: MDAP[rd]   
+	00275: RTG        
+	00276: SVTCA[x-axis] 
+	00277: SRP0       
+	00278: MIRP[srp0,nmd,rd,1] 
+	00279: MIRP[srp0,nmd,rd,0] 
+	00280: MDRP[nrp0,nmd,rd,0] 
+	00281: SVTCA[y-axis] 
+	00282: SRP0       
+	00283: MIRP[srp0,md,rd,1] 
+	00284: RTDG       
+	00285: SRP2       
+	00286: IP         
+	00287: MDAP[rd]   
+	00288: RTG        
+	00289: SVTCA[x-axis] 
+	00290: SRP0       
+	00291: MIRP[srp0,nmd,rd,1] 
+	00292: DELTAP1    
+	00293: MIRP[srp0,nmd,rd,0] 
+	00294: MDRP[nrp0,nmd,rd,0] 
+	00295: IUP[y]     
+	00296: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual         Y-Short         On
+	  2:        XDual         Y-Short         Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                               On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short On
+	 25:        XDual                         On
+	 26:  YDual                               On
+	 27:        XDual                         On
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short On
+	 39:        XDual                         On
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   657,     0)  ->  Abs (   657,     0)
+	  1: Rel (     0,  -219)  ->  Abs (   657,  -219)
+	  2: Rel (     0,   -67)  ->  Abs (   657,  -286)
+	  3: Rel (   -41,     0)  ->  Abs (   616,  -286)
+	  4: Rel (   -44,     0)  ->  Abs (   572,  -286)
+	  5: Rel (     0,    64)  ->  Abs (   572,  -222)
+	  6: Rel (     0,   222)  ->  Abs (   572,     0)
+	  7: Rel (  -409,     0)  ->  Abs (   163,     0)
+	  8: Rel (   -56,     0)  ->  Abs (   107,     0)
+	  9: Rel (     0,    42)  ->  Abs (   107,    42)
+	 10: Rel (     0,    42)  ->  Abs (   107,    84)
+	 11: Rel (    56,     0)  ->  Abs (   163,    84)
+	 12: Rel (    95,     0)  ->  Abs (   258,    84)
+	 13: Rel (     0,   697)  ->  Abs (   258,   781)
+	 14: Rel (   -65,     0)  ->  Abs (   193,   781)
+	 15: Rel (   -56,     0)  ->  Abs (   137,   781)
+	 16: Rel (     0,    42)  ->  Abs (   137,   823)
+	 17: Rel (     0,    43)  ->  Abs (   137,   866)
+	 18: Rel (    56,     0)  ->  Abs (   193,   866)
+	 19: Rel (   214,     0)  ->  Abs (   407,   866)
+	 20: Rel (    56,     0)  ->  Abs (   463,   866)
+	 21: Rel (     0,   -43)  ->  Abs (   463,   823)
+	 22: Rel (     0,   -42)  ->  Abs (   463,   781)
+	 23: Rel (   -56,     0)  ->  Abs (   407,   781)
+	 24: Rel (   -65,     0)  ->  Abs (   342,   781)
+	 25: Rel (     0,  -697)  ->  Abs (   342,    84)
+	 26: Rel (   545,     0)  ->  Abs (   887,    84)
+	 27: Rel (     0,   697)  ->  Abs (   887,   781)
+	 28: Rel (   -64,     0)  ->  Abs (   823,   781)
+	 29: Rel (   -57,     0)  ->  Abs (   766,   781)
+	 30: Rel (     0,    42)  ->  Abs (   766,   823)
+	 31: Rel (     0,    43)  ->  Abs (   766,   866)
+	 32: Rel (    57,     0)  ->  Abs (   823,   866)
+	 33: Rel (   213,     0)  ->  Abs (  1036,   866)
+	 34: Rel (    56,     0)  ->  Abs (  1092,   866)
+	 35: Rel (     0,   -43)  ->  Abs (  1092,   823)
+	 36: Rel (     0,   -42)  ->  Abs (  1092,   781)
+	 37: Rel (   -56,     0)  ->  Abs (  1036,   781)
+	 38: Rel (   -65,     0)  ->  Abs (   971,   781)
+	 39: Rel (     0,  -697)  ->  Abs (   971,    84)
+	 40: Rel (    95,     0)  ->  Abs (  1066,    84)
+	 41: Rel (    56,     0)  ->  Abs (  1122,    84)
+	 42: Rel (     0,   -42)  ->  Abs (  1122,    42)
+	 43: Rel (     0,   -42)  ->  Abs (  1122,     0)
+	 44: Rel (   -56,     0)  ->  Abs (  1066,     0)
+
+	Glyph 648: off = 0x000238FA, len = 236
+	  numberOfContours:	1
+	  xMin:			127
+	  yMin:			0
+	  xMax:			1111
+	  yMax:			1439
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	161
+	00000: PUSHB[2]             25    21 
+	00003: PUSHW[1]            676 
+	00006: NPUSHB      (11):    23    53    20    23    23    21    20    29    25    13 
+	                             9 
+	00019: PUSHW[1]            676 
+	00022: NPUSHB      (11):    11    53     8    11    11     9     8    29    13    14 
+	                            18 
+	00035: PUSHW[1]            676 
+	00038: NPUSHB      (10):    16    53    19    16    16    18    19    29    14     3 
+	00050: PUSHW[1]            310 
+	00053: NPUSHB      (40):    25     6    21    30    25     2     9    18    38    13 
+	                            14     8     0    38    15     5     1     5    26    27 
+	                             7     8    30    20    79    19    95    19     2    15 
+	                            19    31    19     2    19    25    26   165   121    24 
+	00095: CALL       
+	00096: FLIPOFF    
+	00097: SRP0       
+	00098: MIRP[srp0,nmd,rd,0] 
+	00099: DELTAP1    
+	00100: DELTAP2    
+	00101: ALIGNRP    
+	00102: FLIPON     
+	00103: MIRP[srp0,md,rd,1] 
+	00104: ALIGNRP    
+	00105: FLIPOFF    
+	00106: SRP0       
+	00107: MIRP[srp0,nmd,rd,2] 
+	00108: DELTAP1    
+	00109: FLIPON     
+	00110: MIRP[nrp0,md,rd,1] 
+	00111: SVTCA[y-axis] 
+	00112: MIAP[rd+ci] 
+	00113: ALIGNRP    
+	00114: MIRP[srp0,md,rd,1] 
+	00115: ALIGNRP    
+	00116: MIAP[rd+ci] 
+	00117: MIRP[srp0,md,rd,1] 
+	00118: ALIGNRP    
+	00119: SRP0       
+	00120: MIRP[nrp0,md,rd,0] 
+	00121: SRP0       
+	00122: MIRP[srp0,md,rd,1] 
+	00123: RTDG       
+	00124: SRP2       
+	00125: IP         
+	00126: MDAP[rd]   
+	00127: RTG        
+	00128: SVTCA[x-axis] 
+	00129: SRP0       
+	00130: MIRP[srp0,nmd,rd,1] 
+	00131: MIRP[srp0,nmd,rd,0] 
+	00132: MDRP[nrp0,nmd,rd,0] 
+	00133: SVTCA[y-axis] 
+	00134: SRP0       
+	00135: MIRP[srp0,md,rd,1] 
+	00136: RTDG       
+	00137: SRP2       
+	00138: IP         
+	00139: MDAP[rd]   
+	00140: RTG        
+	00141: SVTCA[x-axis] 
+	00142: SRP0       
+	00143: MIRP[srp0,nmd,rd,1] 
+	00144: MIRP[srp0,nmd,rd,0] 
+	00145: MDRP[nrp0,nmd,rd,0] 
+	00146: SVTCA[y-axis] 
+	00147: SRP0       
+	00148: MIRP[srp0,md,rd,1] 
+	00149: RTDG       
+	00150: SRP2       
+	00151: IP         
+	00152: MDAP[rd]   
+	00153: RTG        
+	00154: SVTCA[x-axis] 
+	00155: SRP0       
+	00156: MIRP[srp0,nmd,rd,1] 
+	00157: MIRP[srp0,nmd,rd,0] 
+	00158: MDRP[nrp0,nmd,rd,0] 
+	00159: IUP[y]     
+	00160: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short         Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual                         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                               On
+	 15:  YDual                       X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short On
+	 20:        XDual                         On
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1026,  1170)  ->  Abs (  1026,  1170)
+	  1: Rel (     0,   213)  ->  Abs (  1026,  1383)
+	  2: Rel (     0,    56)  ->  Abs (  1026,  1439)
+	  3: Rel (    43,     0)  ->  Abs (  1069,  1439)
+	  4: Rel (    42,     0)  ->  Abs (  1111,  1439)
+	  5: Rel (     0,   -56)  ->  Abs (  1111,  1383)
+	  6: Rel (     0,  -297)  ->  Abs (  1111,  1086)
+	  7: Rel (  -643,     0)  ->  Abs (   468,  1086)
+	  8: Rel (     0, -1002)  ->  Abs (   468,    84)
+	  9: Rel (   200,     0)  ->  Abs (   668,    84)
+	 10: Rel (    56,     0)  ->  Abs (   724,    84)
+	 11: Rel (     0,   -42)  ->  Abs (   724,    42)
+	 12: Rel (     0,   -42)  ->  Abs (   724,     0)
+	 13: Rel (   -56,     0)  ->  Abs (   668,     0)
+	 14: Rel (  -485,     0)  ->  Abs (   183,     0)
+	 15: Rel (   -56,     0)  ->  Abs (   127,     0)
+	 16: Rel (     0,    42)  ->  Abs (   127,    42)
+	 17: Rel (     0,    42)  ->  Abs (   127,    84)
+	 18: Rel (    56,     0)  ->  Abs (   183,    84)
+	 19: Rel (   200,     0)  ->  Abs (   383,    84)
+	 20: Rel (     0,  1002)  ->  Abs (   383,  1086)
+	 21: Rel (  -200,     0)  ->  Abs (   183,  1086)
+	 22: Rel (   -56,     0)  ->  Abs (   127,  1086)
+	 23: Rel (     0,    42)  ->  Abs (   127,  1128)
+	 24: Rel (     0,    42)  ->  Abs (   127,  1170)
+	 25: Rel (    56,     0)  ->  Abs (   183,  1170)
+
+	Glyph 649: off = 0x000239E6, len = 234
+	  numberOfContours:	1
+	  xMin:			152
+	  yMin:			0
+	  xMax:			1088
+	  yMax:			1135
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	159
+	00000: PUSHB[2]             25    21 
+	00003: PUSHW[1]            686 
+	00006: NPUSHB      (11):    23   200    20    23    23    21    20    34    25    13 
+	                             9 
+	00019: PUSHW[1]            686 
+	00022: NPUSHB      (11):    11   200     8    11    11     9     8    34    13    14 
+	                            18 
+	00035: PUSHW[1]            686 
+	00038: NPUSHB      (10):    16   200    19    16    16    18    19    34    14     3 
+	00050: PUSHW[1]            360 
+	00053: NPUSHB      (32):    25     6    21    32    25     6     9    59    13    18 
+	                            59    13    14    10     0    59     6     5    26    27 
+	                             7     8    32    20   144    19   160    19     2    19 
+	                            25    26 
+	00087: PUSHW[1]            780 
+	00090: PUSHB[2]            173    24 
+	00093: CALL       
+	00094: FLIPOFF    
+	00095: SRP0       
+	00096: MIRP[srp0,nmd,rd,0] 
+	00097: DELTAP1    
+	00098: ALIGNRP    
+	00099: FLIPON     
+	00100: MIRP[srp0,md,rd,1] 
+	00101: ALIGNRP    
+	00102: FLIPOFF    
+	00103: SRP0       
+	00104: MIRP[srp0,nmd,rd,2] 
+	00105: ALIGNRP    
+	00106: FLIPON     
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: SVTCA[y-axis] 
+	00109: MIAP[rd+ci] 
+	00110: ALIGNRP    
+	00111: MIRP[nrp0,md,rd,1] 
+	00112: SRP0       
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: MIAP[rd+ci] 
+	00115: MIRP[srp0,md,rd,1] 
+	00116: ALIGNRP    
+	00117: SRP0       
+	00118: MIRP[nrp0,nmd,rd,0] 
+	00119: SRP0       
+	00120: MIRP[srp0,md,rd,1] 
+	00121: RTDG       
+	00122: SRP2       
+	00123: IP         
+	00124: MDAP[rd]   
+	00125: RTG        
+	00126: SVTCA[x-axis] 
+	00127: SRP0       
+	00128: MIRP[srp0,nmd,rd,1] 
+	00129: MIRP[srp0,nmd,rd,0] 
+	00130: MDRP[nrp0,nmd,rd,0] 
+	00131: SVTCA[y-axis] 
+	00132: SRP0       
+	00133: MIRP[srp0,md,rd,1] 
+	00134: RTDG       
+	00135: SRP2       
+	00136: IP         
+	00137: MDAP[rd]   
+	00138: RTG        
+	00139: SVTCA[x-axis] 
+	00140: SRP0       
+	00141: MIRP[srp0,nmd,rd,1] 
+	00142: MIRP[srp0,nmd,rd,0] 
+	00143: MDRP[nrp0,nmd,rd,0] 
+	00144: SVTCA[y-axis] 
+	00145: SRP0       
+	00146: MIRP[srp0,md,rd,1] 
+	00147: RTDG       
+	00148: SRP2       
+	00149: IP         
+	00150: MDAP[rd]   
+	00151: RTG        
+	00152: SVTCA[x-axis] 
+	00153: SRP0       
+	00154: MIRP[srp0,nmd,rd,1] 
+	00155: MIRP[srp0,nmd,rd,0] 
+	00156: MDRP[nrp0,nmd,rd,0] 
+	00157: IUP[y]     
+	00158: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short         Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual                         On
+	  7:  YDual                               On
+	  8:        XDual                         On
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                               On
+	 15:  YDual                       X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short On
+	 20:        XDual                         On
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1003,   866)  ->  Abs (  1003,   866)
+	  1: Rel (     0,   213)  ->  Abs (  1003,  1079)
+	  2: Rel (     0,    56)  ->  Abs (  1003,  1135)
+	  3: Rel (    42,     0)  ->  Abs (  1045,  1135)
+	  4: Rel (    43,     0)  ->  Abs (  1088,  1135)
+	  5: Rel (     0,   -56)  ->  Abs (  1088,  1079)
+	  6: Rel (     0,  -298)  ->  Abs (  1088,   781)
+	  7: Rel (  -595,     0)  ->  Abs (   493,   781)
+	  8: Rel (     0,  -697)  ->  Abs (   493,    84)
+	  9: Rel (   200,     0)  ->  Abs (   693,    84)
+	 10: Rel (    56,     0)  ->  Abs (   749,    84)
+	 11: Rel (     0,   -42)  ->  Abs (   749,    42)
+	 12: Rel (     0,   -42)  ->  Abs (   749,     0)
+	 13: Rel (   -56,     0)  ->  Abs (   693,     0)
+	 14: Rel (  -485,     0)  ->  Abs (   208,     0)
+	 15: Rel (   -56,     0)  ->  Abs (   152,     0)
+	 16: Rel (     0,    42)  ->  Abs (   152,    42)
+	 17: Rel (     0,    42)  ->  Abs (   152,    84)
+	 18: Rel (    56,     0)  ->  Abs (   208,    84)
+	 19: Rel (   200,     0)  ->  Abs (   408,    84)
+	 20: Rel (     0,   697)  ->  Abs (   408,   781)
+	 21: Rel (  -200,     0)  ->  Abs (   208,   781)
+	 22: Rel (   -56,     0)  ->  Abs (   152,   781)
+	 23: Rel (     0,    42)  ->  Abs (   152,   823)
+	 24: Rel (     0,    43)  ->  Abs (   152,   866)
+	 25: Rel (    56,     0)  ->  Abs (   208,   866)
+
+	Glyph 650: off = 0x00023AD0, len = 52
+	  numberOfContours:	1
+	  xMin:			43
+	  yMin:			544
+	  xMax:			1187
+	  yMax:			629
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	13
+	00000: PUSHB[5]              5    91     1     8     3 
+	00006: MDAP[rd]   
+	00007: MDAP[rd]   
+	00008: SVTCA[y-axis] 
+	00009: MDAP[rd]   
+	00010: MIRP[nrp0,md,rd,1] 
+	00011: IUP[y]     
+	00012: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1130,   544)  ->  Abs (  1130,   544)
+	  1: Rel ( -1031,     0)  ->  Abs (    99,   544)
+	  2: Rel (   -56,     0)  ->  Abs (    43,   544)
+	  3: Rel (     0,    42)  ->  Abs (    43,   586)
+	  4: Rel (     0,    43)  ->  Abs (    43,   629)
+	  5: Rel (    56,     0)  ->  Abs (    99,   629)
+	  6: Rel (  1031,     0)  ->  Abs (  1130,   629)
+	  7: Rel (    57,     0)  ->  Abs (  1187,   629)
+	  8: Rel (     0,   -43)  ->  Abs (  1187,   586)
+	  9: Rel (     0,   -42)  ->  Abs (  1187,   544)
+
+	Glyph 651: off = 0x00023B04, len = 638
+	  numberOfContours:	4
+	  xMin:			49
+	  yMin:			0
+	  xMax:			1172
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  42
+	  1:  55
+	  2:  65
+	  3:  75
+
+	  Length of Instructions:	437
+	00000: NPUSHB      (23):    16    10    31    30     2    16    10    31    30     2 
+	                           183    10   199    10     2    16    10    31    30    45 
+	                            30     3    10 
+	00025: PUSHW[1]            -16 
+	00028: NPUSHB      (13):    11    16    52    45    16    25    29    52     8    48 
+	                             1    16    12 
+	00043: PUSHW[1]            784 
+	00046: PUSHB[4]             31    14     1    14 
+	00051: PUSHW[1]            354 
+	00054: NPUSHB       (9):    11    14    14    12    11    29    16    17    21 
+	00065: PUSHW[1]            784 
+	00068: NPUSHB      (11):    19    41    22    19    19    21    22    29    17     5 
+	                             1 
+	00081: PUSHW[1]            784 
+	00084: NPUSHB      (11):     3    41     0     3     3     1     0    29     5    36 
+	                            32 
+	00097: PUSHW[1]            784 
+	00100: PUSHB[4]             16    34     1    34 
+	00105: PUSHW[1]            354 
+	00108: NPUSHB       (9):    31    34    34    32    31    29    36    37    41 
+	00119: PUSHW[1]            784 
+	00122: NPUSHB      (39):    39    41    42    39    39    41    42    29    37    10 
+	                            29    30    30    30     9    10    20     9     9    10 
+	                            30    10     9    29     4    26     5    29     9    10 
+	                            30    66    38    71    71    37    58    38    46 
+	00163: PUSHW[1]            582 
+	00166: NPUSHB      (60):    63    38    53    53    37     5    26     8    41    32 
+	                            38    36    36    37     8    21    12    12     1    38 
+	                             5    17    16    16     5     2    69    69    44    74 
+	                            74    50    44    11    10    30    22    47    23    63 
+	                            23    96    23     3    23    23    77    76    15    50 
+	                            31    50    47    50    63    50     4    50    38    56 
+	00228: PUSHW[1]            -64 
+	00231: NPUSHB      (40):    25    33    52    56    64    12    14    52    56   207 
+	                            60    38    44    44   207    43   223    43     2    43 
+	                            64    13    19    52    43    64    25    29    52    43 
+	                            26    77    30    31    30     0    42    25    76   157 
+	00273: PUSHW[2]            340    24 
+	00278: CALL       
+	00279: FLIPOFF    
+	00280: SRP0       
+	00281: MIRP[srp0,nmd,rd,0] 
+	00282: ALIGNRP    
+	00283: FLIPON     
+	00284: MIRP[srp0,md,rd,1] 
+	00285: ALIGNRP    
+	00286: FLIPOFF    
+	00287: SRP0       
+	00288: MIRP[srp0,nmd,rd,2] 
+	00289: CALL       
+	00290: CALL       
+	00291: DELTAP2    
+	00292: ALIGNRP    
+	00293: FLIPON     
+	00294: SRP0       
+	00295: MIRP[srp0,md,rd,1] 
+	00296: MIRP[srp0,nmd,rd,2] 
+	00297: CALL       
+	00298: CALL       
+	00299: MIRP[nrp0,md,rd,1] 
+	00300: DELTAP1    
+	00301: SRP1       
+	00302: SRP2       
+	00303: IP         
+	00304: MDAP[rd]   
+	00305: DELTAP1    
+	00306: ALIGNRP    
+	00307: MIRP[srp0,md,rd,1] 
+	00308: ALIGNRP    
+	00309: SRP1       
+	00310: SRP2       
+	00311: IP         
+	00312: MDAP[rd]   
+	00313: SRP1       
+	00314: IP         
+	00315: MDAP[rd]   
+	00316: SVTCA[y-axis] 
+	00317: MIAP[rd+ci] 
+	00318: ALIGNRP    
+	00319: SRP0       
+	00320: ALIGNRP    
+	00321: SRP0       
+	00322: MIRP[srp0,md,rd,1] 
+	00323: ALIGNRP    
+	00324: SRP0       
+	00325: ALIGNRP    
+	00326: MIAP[rd+ci] 
+	00327: ALIGNRP    
+	00328: SRP0       
+	00329: MIRP[srp0,md,rd,1] 
+	00330: ALIGNRP    
+	00331: MIAP[rd+ci] 
+	00332: SRP1       
+	00333: SRP2       
+	00334: IP         
+	00335: MDAP[rd]   
+	00336: MIRP[nrp0,md,rd,1] 
+	00337: MIRP[srp0,md,rd,1] 
+	00338: MIRP[nrp0,md,rd,1] 
+	00339: SRP2       
+	00340: IP         
+	00341: MDAP[rd]   
+	00342: MIRP[nrp0,md,rd,1] 
+	00343: SVTCA[x-axis] 
+	00344: SRP1       
+	00345: SRP2       
+	00346: IP         
+	00347: IP         
+	00348: SVTCA[y-axis] 
+	00349: SRP1       
+	00350: SRP2       
+	00351: SLOOP      
+	00352: IP         
+	00353: SDPVTL[1]  
+	00354: MDAP[nrd]  
+	00355: CALL       
+	00356: SDPVTL[1]  
+	00357: RDTG       
+	00358: MDRP[nrp0,nmd,rd,0] 
+	00359: RTG        
+	00360: SVTCA[y-axis] 
+	00361: SRP0       
+	00362: MIRP[srp0,md,rd,1] 
+	00363: RTDG       
+	00364: SRP2       
+	00365: IP         
+	00366: MDAP[rd]   
+	00367: RTG        
+	00368: SVTCA[x-axis] 
+	00369: SRP0       
+	00370: MIRP[srp0,nmd,rd,1] 
+	00371: MIRP[srp0,nmd,rd,0] 
+	00372: MDRP[nrp0,nmd,rd,0] 
+	00373: SVTCA[y-axis] 
+	00374: SRP0       
+	00375: MIRP[srp0,md,rd,1] 
+	00376: RTDG       
+	00377: SRP2       
+	00378: IP         
+	00379: MDAP[rd]   
+	00380: RTG        
+	00381: SVTCA[x-axis] 
+	00382: SRP0       
+	00383: MIRP[srp0,nmd,rd,1] 
+	00384: DELTAP1    
+	00385: MIRP[srp0,nmd,rd,0] 
+	00386: MDRP[nrp0,nmd,rd,0] 
+	00387: SVTCA[y-axis] 
+	00388: SRP0       
+	00389: MIRP[srp0,md,rd,1] 
+	00390: RTDG       
+	00391: SRP2       
+	00392: IP         
+	00393: MDAP[rd]   
+	00394: RTG        
+	00395: SVTCA[x-axis] 
+	00396: SRP0       
+	00397: MIRP[srp0,nmd,rd,1] 
+	00398: MIRP[srp0,nmd,rd,0] 
+	00399: MDRP[nrp0,nmd,rd,0] 
+	00400: SVTCA[y-axis] 
+	00401: SRP0       
+	00402: MIRP[srp0,md,rd,1] 
+	00403: RTDG       
+	00404: SRP2       
+	00405: IP         
+	00406: MDAP[rd]   
+	00407: RTG        
+	00408: SVTCA[x-axis] 
+	00409: SRP0       
+	00410: MIRP[srp0,nmd,rd,1] 
+	00411: MIRP[srp0,nmd,rd,0] 
+	00412: MDRP[nrp0,nmd,rd,0] 
+	00413: SVTCA[y-axis] 
+	00414: SRP0       
+	00415: MIRP[srp0,md,rd,1] 
+	00416: RTDG       
+	00417: SRP2       
+	00418: IP         
+	00419: MDAP[rd]   
+	00420: RTG        
+	00421: SVTCA[x-axis] 
+	00422: SRP0       
+	00423: MIRP[srp0,nmd,rd,1] 
+	00424: DELTAP1    
+	00425: MIRP[srp0,nmd,rd,0] 
+	00426: MDRP[nrp0,nmd,rd,0] 
+	00427: IUP[y]     
+	00428: IUP[x]     
+	00429: SVTCA[y-axis] 
+	00430: DELTAP2    
+	00431: CALL       
+	00432: CALL       
+	00433: DELTAP1    
+	00434: DELTAP1    
+	00435: DELTAP1    
+	00436: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short On
+	 10:                                      On
+	 11:        XDual                         On
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short On
+	 23:        XDual                         On
+	 24:        XDual         Y-Short         Off
+	 25:                      Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:                                      On
+	 31:        XDual                         On
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short On
+	 43:                                      On
+	 44:        XDual         Y-Short         On
+	 45:        XDual         Y-Short         Off
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:  YDual               Y-Short X-Short Off
+	 49:  YDual               Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual                 X-Short On
+	 54:  YDual XDual                 X-Short Off
+	 55:        XDual         Y-Short X-Short Off
+	 56:                              X-Short On
+	 57:        XDual         Y-Short         Off
+	 58:  YDual XDual                 X-Short On
+	 59:  YDual XDual                 X-Short Off
+	 60:  YDual XDual         Y-Short         On
+	 61:  YDual XDual         Y-Short         On
+	 62:  YDual XDual         Y-Short         Off
+	 63:  YDual                       X-Short On
+	 64:  YDual                       X-Short Off
+	 65:        XDual         Y-Short         On
+	 66:        XDual                 X-Short On
+	 67:  YDual                       X-Short On
+	 68:  YDual                       X-Short Off
+	 69:  YDual XDual         Y-Short         On
+	 70:  YDual XDual         Y-Short         Off
+	 71:  YDual XDual                 X-Short On
+	 72:  YDual XDual                 X-Short Off
+	 73:        XDual         Y-Short X-Short Off
+	 74:        XDual         Y-Short         On
+	 75:        XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   171,  1086)  ->  Abs (   171,  1086)
+	  1: Rel (   -52,     0)  ->  Abs (   119,  1086)
+	  2: Rel (   -70,     0)  ->  Abs (    49,  1086)
+	  3: Rel (     0,    42)  ->  Abs (    49,  1128)
+	  4: Rel (     0,    42)  ->  Abs (    49,  1170)
+	  5: Rel (    70,     0)  ->  Abs (   119,  1170)
+	  6: Rel (   109,     0)  ->  Abs (   228,  1170)
+	  7: Rel (    41,     0)  ->  Abs (   269,  1170)
+	  8: Rel (    22,   -14)  ->  Abs (   291,  1156)
+	  9: Rel (    15,   -39)  ->  Abs (   306,  1117)
+	 10: Rel (   371,  -959)  ->  Abs (   677,   158)
+	 11: Rel (     0,   928)  ->  Abs (   677,  1086)
+	 12: Rel (  -103,     0)  ->  Abs (   574,  1086)
+	 13: Rel (   -70,     0)  ->  Abs (   504,  1086)
+	 14: Rel (     0,    42)  ->  Abs (   504,  1128)
+	 15: Rel (     0,    42)  ->  Abs (   504,  1170)
+	 16: Rel (    70,     0)  ->  Abs (   574,  1170)
+	 17: Rel (   240,     0)  ->  Abs (   814,  1170)
+	 18: Rel (    70,     0)  ->  Abs (   884,  1170)
+	 19: Rel (     0,   -42)  ->  Abs (   884,  1128)
+	 20: Rel (     0,   -42)  ->  Abs (   884,  1086)
+	 21: Rel (   -70,     0)  ->  Abs (   814,  1086)
+	 22: Rel (   -53,     0)  ->  Abs (   761,  1086)
+	 23: Rel (     0,  -979)  ->  Abs (   761,   107)
+	 24: Rel (     0,   -61)  ->  Abs (   761,    46)
+	 25: Rel (   -28,   -46)  ->  Abs (   733,     0)
+	 26: Rel (   -36,     0)  ->  Abs (   697,     0)
+	 27: Rel (   -28,     0)  ->  Abs (   669,     0)
+	 28: Rel (   -28,    30)  ->  Abs (   641,    30)
+	 29: Rel (   -19,    51)  ->  Abs (   622,    81)
+	 30: Rel (  -366,   946)  ->  Abs (   256,  1027)
+	 31: Rel (     0,  -943)  ->  Abs (   256,    84)
+	 32: Rel (   102,     0)  ->  Abs (   358,    84)
+	 33: Rel (    71,     0)  ->  Abs (   429,    84)
+	 34: Rel (     0,   -42)  ->  Abs (   429,    42)
+	 35: Rel (     0,   -42)  ->  Abs (   429,     0)
+	 36: Rel (   -71,     0)  ->  Abs (   358,     0)
+	 37: Rel (  -239,     0)  ->  Abs (   119,     0)
+	 38: Rel (   -70,     0)  ->  Abs (    49,     0)
+	 39: Rel (     0,    42)  ->  Abs (    49,    42)
+	 40: Rel (     0,    42)  ->  Abs (    49,    84)
+	 41: Rel (    70,     0)  ->  Abs (   119,    84)
+	 42: Rel (    52,     0)  ->  Abs (   171,    84)
+	 43: Rel (  1001,   820)  ->  Abs (  1172,   904)
+	 44: Rel (     0,  -231)  ->  Abs (  1172,   673)
+	 45: Rel (     0,  -144)  ->  Abs (  1172,   529)
+	 46: Rel (  -129,     0)  ->  Abs (  1043,   529)
+	 47: Rel (   -48,     0)  ->  Abs (   995,   529)
+	 48: Rel (   -73,    55)  ->  Abs (   922,   584)
+	 49: Rel (   -10,    68)  ->  Abs (   912,   652)
+	 50: Rel (     0,   239)  ->  Abs (   912,   891)
+	 51: Rel (     0,    67)  ->  Abs (   912,   958)
+	 52: Rel (    78,    83)  ->  Abs (   990,  1041)
+	 53: Rel (    50,     0)  ->  Abs (  1040,  1041)
+	 54: Rel (    57,     0)  ->  Abs (  1097,  1041)
+	 55: Rel (    75,   -80)  ->  Abs (  1172,   961)
+	 56: Rel (  -175,  -288)  ->  Abs (   997,   673)
+	 57: Rel (     0,   -58)  ->  Abs (   997,   615)
+	 58: Rel (    45,     0)  ->  Abs (  1042,   615)
+	 59: Rel (    46,     0)  ->  Abs (  1088,   615)
+	 60: Rel (     0,    58)  ->  Abs (  1088,   673)
+	 61: Rel (     0,   231)  ->  Abs (  1088,   904)
+	 62: Rel (     0,    51)  ->  Abs (  1088,   955)
+	 63: Rel (   -45,     0)  ->  Abs (  1043,   955)
+	 64: Rel (   -46,     0)  ->  Abs (   997,   955)
+	 65: Rel (     0,   -51)  ->  Abs (   997,   904)
+	 66: Rel (    83,  -607)  ->  Abs (  1080,   297)
+	 67: Rel (   -77,     0)  ->  Abs (  1003,   297)
+	 68: Rel (   -72,     0)  ->  Abs (   931,   297)
+	 69: Rel (     0,    43)  ->  Abs (   931,   340)
+	 70: Rel (     0,    43)  ->  Abs (   931,   383)
+	 71: Rel (    53,     0)  ->  Abs (   984,   383)
+	 72: Rel (   130,     0)  ->  Abs (  1114,   383)
+	 73: Rel (    38,   -12)  ->  Abs (  1152,   371)
+	 74: Rel (     0,   -31)  ->  Abs (  1152,   340)
+	 75: Rel (     0,   -43)  ->  Abs (  1152,   297)
+
+	Glyph 652: off = 0x00023D82, len = 448
+	  numberOfContours:	1
+	  xMin:			104
+	  yMin:			0
+	  xMax:			1125
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  37
+
+	  Length of Instructions:	347
+	00000: NPUSHB      (72):    79     7    79     9    79    10    79    11     4    64 
+	                            16    64    17    64    18    64    20     4    63     7 
+	                            63     9    63    10    63    11     4    48    16    48 
+	                            17    48    18    48    20     4    47     7    47     9 
+	                            47    10    47    11     4    15     7    15     9    15 
+	                            11    31     7    31     9    31    11    32    16    32 
+	                            17    32    18    32    20    10     0    13    14    27 
+	                            33    37 
+	00074: PUSHW[1]            686 
+	00077: NPUSHB      (14):     0    35     1    35    47     0    35    35    37     0 
+	                            34    33     6     2 
+	00093: PUSHW[1]            686 
+	00096: NPUSHB      (14):     0     4     1     4    47     1     4     4     2     1 
+	                            34     6     7    11 
+	00112: PUSHW[1]            686 
+	00115: NPUSHB      (16):    48     9    64     9     2     9    92    12     9     9 
+	                            11    12    34     7    32    28 
+	00133: PUSHW[1]            686 
+	00136: NPUSHB      (11):    30    47    27    30    30    28    27    34    32    20 
+	                            16 
+	00149: PUSHW[1]            686 
+	00152: NPUSHB      (16):    63    18    79    18     2    18    92    15    18    18 
+	                            16    15    34    20    21    25 
+	00170: PUSHW[1]            686 
+	00173: NPUSHB      (49):    23    47    26    23    23    25    26    34    21    37 
+	                            28    32    33    32     6     6     7     7    20    20 
+	                            21    10    13    12    32     0    15     1    79     1 
+	                           127     1   191     1   223     1     5     1    14    15 
+	                            32    27    48    26   160    26     2    26    71 
+	00224: PUSHW[2]            789    24 
+	00229: CALL       
+	00230: MDAP[rd]   
+	00231: DELTAP1    
+	00232: ALIGNRP    
+	00233: MIRP[srp0,md,rd,1] 
+	00234: ALIGNRP    
+	00235: MDAP[rd]   
+	00236: DELTAP1    
+	00237: ALIGNRP    
+	00238: MIRP[srp0,md,rd,1] 
+	00239: ALIGNRP    
+	00240: SVTCA[y-axis] 
+	00241: MIAP[rd+ci] 
+	00242: ALIGNRP    
+	00243: SRP0       
+	00244: ALIGNRP    
+	00245: SRP0       
+	00246: ALIGNRP    
+	00247: MIAP[rd+ci] 
+	00248: ALIGNRP    
+	00249: MIRP[srp0,md,rd,1] 
+	00250: ALIGNRP    
+	00251: SRP0       
+	00252: MIRP[srp0,md,rd,1] 
+	00253: RTDG       
+	00254: SRP2       
+	00255: IP         
+	00256: MDAP[rd]   
+	00257: RTG        
+	00258: SVTCA[x-axis] 
+	00259: SRP0       
+	00260: MIRP[srp0,nmd,rd,1] 
+	00261: MIRP[srp0,nmd,rd,0] 
+	00262: MDRP[nrp0,nmd,rd,0] 
+	00263: SVTCA[y-axis] 
+	00264: SRP0       
+	00265: MIRP[srp0,md,rd,1] 
+	00266: RTDG       
+	00267: SRP2       
+	00268: IP         
+	00269: MDAP[rd]   
+	00270: RTG        
+	00271: SVTCA[x-axis] 
+	00272: SRP0       
+	00273: MIRP[srp0,nmd,rd,1] 
+	00274: DELTAP1    
+	00275: MIRP[srp0,nmd,rd,0] 
+	00276: MDRP[nrp0,nmd,rd,0] 
+	00277: SVTCA[y-axis] 
+	00278: SRP0       
+	00279: MIRP[srp0,md,rd,1] 
+	00280: RTDG       
+	00281: SRP2       
+	00282: IP         
+	00283: MDAP[rd]   
+	00284: RTG        
+	00285: SVTCA[x-axis] 
+	00286: SRP0       
+	00287: MIRP[srp0,nmd,rd,1] 
+	00288: MIRP[srp0,nmd,rd,0] 
+	00289: MDRP[nrp0,nmd,rd,0] 
+	00290: SVTCA[y-axis] 
+	00291: SRP0       
+	00292: MIRP[srp0,md,rd,1] 
+	00293: RTDG       
+	00294: SRP2       
+	00295: IP         
+	00296: MDAP[rd]   
+	00297: RTG        
+	00298: SVTCA[x-axis] 
+	00299: SRP0       
+	00300: MIRP[srp0,nmd,rd,1] 
+	00301: DELTAP1    
+	00302: MIRP[srp0,nmd,rd,0] 
+	00303: MDRP[nrp0,nmd,rd,0] 
+	00304: SVTCA[y-axis] 
+	00305: SRP0       
+	00306: MIRP[srp0,md,rd,1] 
+	00307: RTDG       
+	00308: SRP2       
+	00309: IP         
+	00310: MDAP[rd]   
+	00311: RTG        
+	00312: SVTCA[x-axis] 
+	00313: SRP0       
+	00314: MIRP[srp0,nmd,rd,1] 
+	00315: DELTAP1    
+	00316: MIRP[srp0,nmd,rd,0] 
+	00317: MDRP[nrp0,nmd,rd,0] 
+	00318: SVTCA[y-axis] 
+	00319: SRP0       
+	00320: MIRP[srp0,md,rd,1] 
+	00321: RTDG       
+	00322: SRP2       
+	00323: IP         
+	00324: MDAP[rd]   
+	00325: RTG        
+	00326: SVTCA[x-axis] 
+	00327: SRP0       
+	00328: MIRP[srp0,nmd,rd,1] 
+	00329: DELTAP1    
+	00330: MIRP[srp0,nmd,rd,0] 
+	00331: MDRP[nrp0,nmd,rd,0] 
+	00332: SPVTCA[y-axis] 
+	00333: SFVTCA[y-axis] 
+	00334: ALIGNRP    
+	00335: ALIGNRP    
+	00336: ALIGNRP    
+	00337: ALIGNRP    
+	00338: SVTCA[x-axis] 
+	00339: DELTAP1    
+	00340: DELTAP1    
+	00341: DELTAP1    
+	00342: DELTAP1    
+	00343: DELTAP1    
+	00344: DELTAP1    
+	00345: IUP[y]     
+	00346: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                               On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:  YDual                               On
+	 15:        XDual                         On
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                               On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short On
+	 27:        XDual                         On
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual                               On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   957,   781)  ->  Abs (   957,   781)
+	  1: Rel (     0,  -697)  ->  Abs (   957,    84)
+	  2: Rel (   112,     0)  ->  Abs (  1069,    84)
+	  3: Rel (    56,     0)  ->  Abs (  1125,    84)
+	  4: Rel (     0,   -42)  ->  Abs (  1125,    42)
+	  5: Rel (     0,   -42)  ->  Abs (  1125,     0)
+	  6: Rel (   -56,     0)  ->  Abs (  1069,     0)
+	  7: Rel (  -287,     0)  ->  Abs (   782,     0)
+	  8: Rel (   -56,     0)  ->  Abs (   726,     0)
+	  9: Rel (     0,    42)  ->  Abs (   726,    42)
+	 10: Rel (     0,    42)  ->  Abs (   726,    84)
+	 11: Rel (    56,     0)  ->  Abs (   782,    84)
+	 12: Rel (    90,     0)  ->  Abs (   872,    84)
+	 13: Rel (     0,   697)  ->  Abs (   872,   781)
+	 14: Rel (  -515,     0)  ->  Abs (   357,   781)
+	 15: Rel (     0,  -697)  ->  Abs (   357,    84)
+	 16: Rel (    89,     0)  ->  Abs (   446,    84)
+	 17: Rel (    57,     0)  ->  Abs (   503,    84)
+	 18: Rel (     0,   -42)  ->  Abs (   503,    42)
+	 19: Rel (     0,   -42)  ->  Abs (   503,     0)
+	 20: Rel (   -57,     0)  ->  Abs (   446,     0)
+	 21: Rel (  -286,     0)  ->  Abs (   160,     0)
+	 22: Rel (   -56,     0)  ->  Abs (   104,     0)
+	 23: Rel (     0,    42)  ->  Abs (   104,    42)
+	 24: Rel (     0,    42)  ->  Abs (   104,    84)
+	 25: Rel (    56,     0)  ->  Abs (   160,    84)
+	 26: Rel (   112,     0)  ->  Abs (   272,    84)
+	 27: Rel (     0,   697)  ->  Abs (   272,   781)
+	 28: Rel (  -112,     0)  ->  Abs (   160,   781)
+	 29: Rel (   -56,     0)  ->  Abs (   104,   781)
+	 30: Rel (     0,    42)  ->  Abs (   104,   823)
+	 31: Rel (     0,    43)  ->  Abs (   104,   866)
+	 32: Rel (    56,     0)  ->  Abs (   160,   866)
+	 33: Rel (   909,     0)  ->  Abs (  1069,   866)
+	 34: Rel (    56,     0)  ->  Abs (  1125,   866)
+	 35: Rel (     0,   -43)  ->  Abs (  1125,   823)
+	 36: Rel (     0,   -42)  ->  Abs (  1125,   781)
+	 37: Rel (   -56,     0)  ->  Abs (  1069,   781)
+
+	Glyph 653: off = 0x00023F42, len = 96
+	  numberOfContours:	2
+	  xMin:			549
+	  yMin:			-535
+	  xMax:			681
+	  yMax:			-167
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  15
+
+	  Length of Instructions:	46
+	00000: PUSHW[2]              2   850 
+	00005: PUSHB[8]              6    64    25    32    52     6     6    10 
+	00014: PUSHW[1]            850 
+	00017: PUSHB[3]             14    12     4 
+	00021: PUSHW[1]            850 
+	00024: PUSHB[7]              8    16     0    79     0     2     0 
+	00032: MDAP[rd]   
+	00033: DELTAP1    
+	00034: ALIGNRP    
+	00035: MIRP[srp0,md,rd,1] 
+	00036: ALIGNRP    
+	00037: SVTCA[y-axis] 
+	00038: MDAP[rd]   
+	00039: MIRP[srp0,md,rd,1] 
+	00040: SHP[rp2,zp1] 
+	00041: MDAP[rd]   
+	00042: CALL       
+	00043: MIRP[nrp0,md,rd,1] 
+	00044: IUP[y]     
+	00045: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   549,  -233)  ->  Abs (   549,  -233)
+	  1: Rel (     0,    66)  ->  Abs (   549,  -167)
+	  2: Rel (    66,     0)  ->  Abs (   615,  -167)
+	  3: Rel (    66,     0)  ->  Abs (   681,  -167)
+	  4: Rel (     0,   -66)  ->  Abs (   681,  -233)
+	  5: Rel (     0,   -66)  ->  Abs (   681,  -299)
+	  6: Rel (   -66,     0)  ->  Abs (   615,  -299)
+	  7: Rel (   -66,     0)  ->  Abs (   549,  -299)
+	  8: Rel (     0,  -170)  ->  Abs (   549,  -469)
+	  9: Rel (     0,    66)  ->  Abs (   549,  -403)
+	 10: Rel (    66,     0)  ->  Abs (   615,  -403)
+	 11: Rel (    66,     0)  ->  Abs (   681,  -403)
+	 12: Rel (     0,   -66)  ->  Abs (   681,  -469)
+	 13: Rel (     0,   -66)  ->  Abs (   681,  -535)
+	 14: Rel (   -66,     0)  ->  Abs (   615,  -535)
+	 15: Rel (   -66,     0)  ->  Abs (   549,  -535)
+
+	Glyph 654: off = 0x00023FA2, len = 258
+	  numberOfContours:	5
+	  xMin:			330
+	  yMin:			-535
+	  xMax:			898
+	  yMax:			-167
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  15
+	  2:  23
+	  3:  31
+	  4:  39
+
+	  Length of Instructions:	139
+	00000: PUSHW[2]              6   850 
+	00005: PUSHB[4]              2     2    18    14 
+	00010: PUSHW[1]            850 
+	00013: PUSHB[3]             10    10    22 
+	00017: PUSHW[1]            850 
+	00020: NPUSHB       (9):    18    64    25    32    52    18    18    38    30 
+	00031: PUSHW[1]            850 
+	00034: PUSHB[3]             26    26    38 
+	00038: NPUSHW      (10):   850    34    32   850    36   267    20   850    16   -64 
+	00060: PUSHB[7]             25    33    52    16    91    12    28 
+	00068: PUSHW[1]            850 
+	00071: PUSHB[3]             24    24     0 
+	00075: PUSHW[1]            850 
+	00078: PUSHB[8]              4    64    25    33    52     4    91     8 
+	00087: PUSHW[1]            850 
+	00090: NPUSHB       (9):    16    12   143    12     2    12    12    41    40 
+	00101: SRP1       
+	00102: SRP2       
+	00103: IP         
+	00104: MDAP[rd]   
+	00105: DELTAP1    
+	00106: MIRP[srp0,md,rd,1] 
+	00107: MIRP[srp0,md,rd,2] 
+	00108: CALL       
+	00109: MIRP[srp0,md,rd,1] 
+	00110: ALIGNRP    
+	00111: SRP0       
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: SRP0       
+	00114: MIRP[srp0,md,rd,2] 
+	00115: CALL       
+	00116: MIRP[nrp0,md,rd,1] 
+	00117: MIRP[srp0,nmd,rd,1] 
+	00118: MIRP[nrp0,md,rd,1] 
+	00119: SVTCA[y-axis] 
+	00120: MDAP[rd]   
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: ALIGNRP    
+	00123: SRP0       
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: SRP1       
+	00126: SHP[rp1,zp0] 
+	00127: MDAP[rd]   
+	00128: CALL       
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: ALIGNRP    
+	00131: SRP0       
+	00132: MIRP[nrp0,md,rd,1] 
+	00133: SRP0       
+	00134: ALIGNRP    
+	00135: SRP0       
+	00136: MIRP[nrp0,md,rd,1] 
+	00137: IUP[y]     
+	00138: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:                      Y-Short X-Short On
+	  9:        XDual         Y-Short         Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:        XDual         Y-Short         Off
+	 18:  YDual                       X-Short On
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual               Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:                                      On
+	 25:                      Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:                      Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   898,  -233)  ->  Abs (   898,  -233)
+	  1: Rel (    -2,   -64)  ->  Abs (   896,  -297)
+	  2: Rel (   -64,    -2)  ->  Abs (   832,  -299)
+	  3: Rel (   -67,     0)  ->  Abs (   765,  -299)
+	  4: Rel (     0,    66)  ->  Abs (   765,  -233)
+	  5: Rel (     0,    66)  ->  Abs (   765,  -167)
+	  6: Rel (    67,     0)  ->  Abs (   832,  -167)
+	  7: Rel (    62,     0)  ->  Abs (   894,  -167)
+	  8: Rel (  -214,   -66)  ->  Abs (   680,  -233)
+	  9: Rel (     0,   -66)  ->  Abs (   680,  -299)
+	 10: Rel (   -66,     0)  ->  Abs (   614,  -299)
+	 11: Rel (   -66,     0)  ->  Abs (   548,  -299)
+	 12: Rel (     0,    66)  ->  Abs (   548,  -233)
+	 13: Rel (     0,    66)  ->  Abs (   548,  -167)
+	 14: Rel (    66,     0)  ->  Abs (   614,  -167)
+	 15: Rel (    66,     0)  ->  Abs (   680,  -167)
+	 16: Rel (  -217,   -66)  ->  Abs (   463,  -233)
+	 17: Rel (     0,   -66)  ->  Abs (   463,  -299)
+	 18: Rel (   -67,     0)  ->  Abs (   396,  -299)
+	 19: Rel (   -65,     4)  ->  Abs (   331,  -295)
+	 20: Rel (    -1,    62)  ->  Abs (   330,  -233)
+	 21: Rel (     1,    65)  ->  Abs (   331,  -168)
+	 22: Rel (    65,     1)  ->  Abs (   396,  -167)
+	 23: Rel (    67,     0)  ->  Abs (   463,  -167)
+	 24: Rel (   435,  -302)  ->  Abs (   898,  -469)
+	 25: Rel (    -4,   -66)  ->  Abs (   894,  -535)
+	 26: Rel (   -62,     0)  ->  Abs (   832,  -535)
+	 27: Rel (   -67,     0)  ->  Abs (   765,  -535)
+	 28: Rel (     0,    66)  ->  Abs (   765,  -469)
+	 29: Rel (     0,    66)  ->  Abs (   765,  -403)
+	 30: Rel (    67,     0)  ->  Abs (   832,  -403)
+	 31: Rel (    62,     0)  ->  Abs (   894,  -403)
+	 32: Rel (  -322,   -66)  ->  Abs (   572,  -469)
+	 33: Rel (     0,   -66)  ->  Abs (   572,  -535)
+	 34: Rel (   -66,     0)  ->  Abs (   506,  -535)
+	 35: Rel (   -66,     0)  ->  Abs (   440,  -535)
+	 36: Rel (     0,    66)  ->  Abs (   440,  -469)
+	 37: Rel (     0,    66)  ->  Abs (   440,  -403)
+	 38: Rel (    66,     0)  ->  Abs (   506,  -403)
+	 39: Rel (    66,     0)  ->  Abs (   572,  -403)
+
+	Glyph 655: off = 0x000240A4, len = 158
+	  numberOfContours:	3
+	  xMin:			329
+	  yMin:			-535
+	  xMax:			883
+	  yMax:			-167
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  17
+	  2:  25
+
+	  Length of Instructions:	80
+	00000: PUSHB[5]             14    59     8    52     6 
+	00006: PUSHW[1]            850 
+	00009: PUSHB[8]              2    64    25    32    52     2     2    24 
+	00018: PUSHW[1]            850 
+	00021: PUSHB[5]             20    18     0    22     0 
+	00027: PUSHW[3]            850     4   348 
+	00034: NPUSHB      (19):    11     0    16     1    16    16     0    11    32    11 
+	                            48    11   143    11     4    11    11    27    26 
+	00055: SRP1       
+	00056: SRP2       
+	00057: IP         
+	00058: MDAP[rd]   
+	00059: DELTAP1    
+	00060: SHP[rp1,zp0] 
+	00061: MDAP[rd]   
+	00062: DELTAP1    
+	00063: SRP0       
+	00064: MIRP[srp0,md,rd,2] 
+	00065: MIRP[nrp0,md,rd,1] 
+	00066: ALIGNRP    
+	00067: SRP0       
+	00068: ALIGNRP    
+	00069: SVTCA[y-axis] 
+	00070: MDAP[rd]   
+	00071: MIRP[srp0,md,rd,1] 
+	00072: SHP[rp2,zp1] 
+	00073: MDAP[rd]   
+	00074: CALL       
+	00075: MIRP[srp0,md,rd,1] 
+	00076: MIRP[srp0,nmd,rd,0] 
+	00077: MIRP[nrp0,md,rd,1] 
+	00078: IUP[y]     
+	00079: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:                      Y-Short         On
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:                                      On
+	 19:        XDual         Y-Short         Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   883,  -233)  ->  Abs (   883,  -233)
+	  1: Rel (     0,   -66)  ->  Abs (   883,  -299)
+	  2: Rel (   -66,     0)  ->  Abs (   817,  -299)
+	  3: Rel (   -66,     0)  ->  Abs (   751,  -299)
+	  4: Rel (     0,    66)  ->  Abs (   751,  -233)
+	  5: Rel (     0,    66)  ->  Abs (   751,  -167)
+	  6: Rel (    66,     0)  ->  Abs (   817,  -167)
+	  7: Rel (    66,     0)  ->  Abs (   883,  -167)
+	  8: Rel (  -506,    -3)  ->  Abs (   377,  -170)
+	  9: Rel (   236,     0)  ->  Abs (   613,  -170)
+	 10: Rel (    48,     0)  ->  Abs (   661,  -170)
+	 11: Rel (     0,   -49)  ->  Abs (   661,  -219)
+	 12: Rel (     0,   -48)  ->  Abs (   661,  -267)
+	 13: Rel (   -48,     0)  ->  Abs (   613,  -267)
+	 14: Rel (  -236,     0)  ->  Abs (   377,  -267)
+	 15: Rel (   -48,     0)  ->  Abs (   329,  -267)
+	 16: Rel (     0,    49)  ->  Abs (   329,  -218)
+	 17: Rel (     0,    48)  ->  Abs (   329,  -170)
+	 18: Rel (   554,  -299)  ->  Abs (   883,  -469)
+	 19: Rel (     0,   -66)  ->  Abs (   883,  -535)
+	 20: Rel (   -66,     0)  ->  Abs (   817,  -535)
+	 21: Rel (   -66,     0)  ->  Abs (   751,  -535)
+	 22: Rel (     0,    66)  ->  Abs (   751,  -469)
+	 23: Rel (     0,    66)  ->  Abs (   751,  -403)
+	 24: Rel (    66,     0)  ->  Abs (   817,  -403)
+	 25: Rel (    66,     0)  ->  Abs (   883,  -403)
+
+	Glyph 656: off = 0x00024142, len = 182
+	  numberOfContours:	3
+	  xMin:			329
+	  yMin:			-535
+	  xMax:			883
+	  yMax:			-167
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  24
+	  2:  32
+
+	  Length of Instructions:	91
+	00000: PUSHB[8]             22    22    18     9    59    13    52     6 
+	00009: PUSHW[1]            850 
+	00012: PUSHB[6]              2    64    25    32    52     2 
+	00019: PUSHW[3]            692    31   850 
+	00026: PUSHB[3]             27    25     0 
+	00030: PUSHW[4]            850    29     4   348 
+	00039: NPUSHB      (23):    16    11   193     8    32    19   193    79    16    95 
+	                            16   143    16     3   224    16   240    16     2    16 
+	                            16    34    33 
+	00064: SRP1       
+	00065: SRP2       
+	00066: IP         
+	00067: MDAP[rd]   
+	00068: DELTAP1    
+	00069: DELTAP1    
+	00070: MIRP[srp0,nmd,rd,0] 
+	00071: MIRP[srp0,md,rd,1] 
+	00072: MIRP[nrp0,nmd,rd,0] 
+	00073: SRP0       
+	00074: MIRP[srp0,md,rd,2] 
+	00075: ALIGNRP    
+	00076: MIRP[srp0,md,rd,1] 
+	00077: ALIGNRP    
+	00078: SVTCA[y-axis] 
+	00079: MDAP[rd]   
+	00080: MIRP[srp0,md,rd,1] 
+	00081: MIRP[srp0,nmd,rd,2] 
+	00082: CALL       
+	00083: MIRP[srp0,md,rd,1] 
+	00084: MIRP[srp0,nmd,rd,0] 
+	00085: MIRP[srp0,md,rd,1] 
+	00086: ALIGNRP    
+	00087: SHP[rp2,zp1] 
+	00088: MDAP[rd]   
+	00089: IUP[y]     
+	00090: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:                      Y-Short         On
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short On
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:                      Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   883,  -233)  ->  Abs (   883,  -233)
+	  1: Rel (     0,   -66)  ->  Abs (   883,  -299)
+	  2: Rel (   -66,     0)  ->  Abs (   817,  -299)
+	  3: Rel (   -66,     0)  ->  Abs (   751,  -299)
+	  4: Rel (     0,    66)  ->  Abs (   751,  -233)
+	  5: Rel (     0,    66)  ->  Abs (   751,  -167)
+	  6: Rel (    66,     0)  ->  Abs (   817,  -167)
+	  7: Rel (    66,     0)  ->  Abs (   883,  -167)
+	  8: Rel (  -437,  -100)  ->  Abs (   446,  -267)
+	  9: Rel (   -69,     0)  ->  Abs (   377,  -267)
+	 10: Rel (   -48,     0)  ->  Abs (   329,  -267)
+	 11: Rel (     0,    49)  ->  Abs (   329,  -218)
+	 12: Rel (     0,    48)  ->  Abs (   329,  -170)
+	 13: Rel (    48,     0)  ->  Abs (   377,  -170)
+	 14: Rel (   236,     0)  ->  Abs (   613,  -170)
+	 15: Rel (    48,     0)  ->  Abs (   661,  -170)
+	 16: Rel (     0,   -49)  ->  Abs (   661,  -219)
+	 17: Rel (     0,   -48)  ->  Abs (   661,  -267)
+	 18: Rel (   -48,     0)  ->  Abs (   613,  -267)
+	 19: Rel (   -70,     0)  ->  Abs (   543,  -267)
+	 20: Rel (     0,  -125)  ->  Abs (   543,  -392)
+	 21: Rel (     0,   -48)  ->  Abs (   543,  -440)
+	 22: Rel (   -49,     0)  ->  Abs (   494,  -440)
+	 23: Rel (   -48,     0)  ->  Abs (   446,  -440)
+	 24: Rel (     0,    48)  ->  Abs (   446,  -392)
+	 25: Rel (   437,   -77)  ->  Abs (   883,  -469)
+	 26: Rel (     0,   -66)  ->  Abs (   883,  -535)
+	 27: Rel (   -66,     0)  ->  Abs (   817,  -535)
+	 28: Rel (   -66,     0)  ->  Abs (   751,  -535)
+	 29: Rel (     0,    66)  ->  Abs (   751,  -469)
+	 30: Rel (     0,    66)  ->  Abs (   751,  -403)
+	 31: Rel (    66,     0)  ->  Abs (   817,  -403)
+	 32: Rel (    66,     0)  ->  Abs (   883,  -403)
+
+	Glyph 657: off = 0x000241F8, len = 62
+	  numberOfContours:	1
+	  xMin:			548
+	  yMin:			-301
+	  xMax:			681
+	  yMax:			-169
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	28
+	00000: PUSHW[6]              2   850     6   814     0   850 
+	00013: PUSHB[6]             16     4    79     4     2     4 
+	00020: MDAP[rd]   
+	00021: DELTAP1    
+	00022: MIRP[nrp0,md,rd,1] 
+	00023: SVTCA[y-axis] 
+	00024: MIAP[rd+ci] 
+	00025: MIRP[nrp0,md,rd,1] 
+	00026: IUP[y]     
+	00027: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   681,  -235)  ->  Abs (   681,  -235)
+	  1: Rel (    -3,   -66)  ->  Abs (   678,  -301)
+	  2: Rel (   -63,     0)  ->  Abs (   615,  -301)
+	  3: Rel (   -67,     0)  ->  Abs (   548,  -301)
+	  4: Rel (     0,    66)  ->  Abs (   548,  -235)
+	  5: Rel (     0,    66)  ->  Abs (   548,  -169)
+	  6: Rel (    67,     0)  ->  Abs (   615,  -169)
+	  7: Rel (    63,     0)  ->  Abs (   678,  -169)
+
+	Glyph 658: off = 0x00024236, len = 116
+	  numberOfContours:	2
+	  xMin:			439
+	  yMin:			-302
+	  xMax:			790
+	  yMax:			-168
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  15
+
+	  Length of Instructions:	55
+	00000: PUSHB[2]              2    10 
+	00003: PUSHW[6]            850     6    14   814     0   850 
+	00016: PUSHB[8]              4    64    25    33    52     4    91    12 
+	00025: PUSHW[1]            850 
+	00028: NPUSHB       (9):    16     8   112     8     2     8     8    17    16 
+	00039: SRP1       
+	00040: SRP2       
+	00041: IP         
+	00042: MDAP[rd]   
+	00043: DELTAP1    
+	00044: MIRP[nrp0,md,rd,1] 
+	00045: MIRP[srp0,md,rd,2] 
+	00046: CALL       
+	00047: MIRP[nrp0,md,rd,1] 
+	00048: SVTCA[y-axis] 
+	00049: MIAP[rd+ci] 
+	00050: ALIGNRP    
+	00051: MIRP[srp0,md,rd,1] 
+	00052: ALIGNRP    
+	00053: IUP[y]     
+	00054: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual               Y-Short X-Short On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:                      Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   790,  -236)  ->  Abs (   790,  -236)
+	  1: Rel (    -4,   -65)  ->  Abs (   786,  -301)
+	  2: Rel (   -62,    -1)  ->  Abs (   724,  -302)
+	  3: Rel (   -66,     1)  ->  Abs (   658,  -301)
+	  4: Rel (    -1,    65)  ->  Abs (   657,  -236)
+	  5: Rel (     0,    67)  ->  Abs (   657,  -169)
+	  6: Rel (    67,     0)  ->  Abs (   724,  -169)
+	  7: Rel (    62,     1)  ->  Abs (   786,  -168)
+	  8: Rel (  -214,   -68)  ->  Abs (   572,  -236)
+	  9: Rel (    -4,   -65)  ->  Abs (   568,  -301)
+	 10: Rel (   -62,    -1)  ->  Abs (   506,  -302)
+	 11: Rel (   -66,     1)  ->  Abs (   440,  -301)
+	 12: Rel (    -1,    65)  ->  Abs (   439,  -236)
+	 13: Rel (     0,    67)  ->  Abs (   439,  -169)
+	 14: Rel (    67,     0)  ->  Abs (   506,  -169)
+	 15: Rel (    62,     1)  ->  Abs (   568,  -168)
+
+	Glyph 659: off = 0x000242AA, len = 170
+	  numberOfContours:	3
+	  xMin:			439
+	  yMin:			-534
+	  xMax:			790
+	  yMax:			-169
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  15
+	  2:  23
+
+	  Length of Instructions:	83
+	00000: PUSHB[2]              6    14 
+	00003: PUSHW[1]            850 
+	00006: NPUSHB      (10):    10    10     2    64    25    32    52     2     2    22 
+	00018: PUSHW[4]            850    18    16   850 
+	00027: PUSHB[4]             20    20    12     0 
+	00032: PUSHW[1]            850 
+	00035: PUSHB[8]              4    64    25    33    52     4    91    12 
+	00044: PUSHW[1]            850 
+	00047: NPUSHB       (9):    16     8   112     8     2     8     8    25    24 
+	00058: SRP1       
+	00059: SRP2       
+	00060: IP         
+	00061: MDAP[rd]   
+	00062: DELTAP1    
+	00063: MIRP[nrp0,md,rd,1] 
+	00064: MIRP[srp0,md,rd,2] 
+	00065: CALL       
+	00066: MIRP[nrp0,md,rd,1] 
+	00067: SRP1       
+	00068: IP         
+	00069: MDAP[rd]   
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: SVTCA[y-axis] 
+	00072: MDAP[rd]   
+	00073: MIRP[srp0,md,rd,1] 
+	00074: SHP[rp2,zp1] 
+	00075: MDAP[rd]   
+	00076: CALL       
+	00077: ALIGNRP    
+	00078: SRP0       
+	00079: MIRP[srp0,md,rd,1] 
+	00080: ALIGNRP    
+	00081: IUP[y]     
+	00082: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual               Y-Short X-Short On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual         Y-Short X-Short Off
+	  8:                      Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual                 X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual                 X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual               Y-Short X-Short On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual                 X-Short On
+	 23:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   790,  -236)  ->  Abs (   790,  -236)
+	  1: Rel (    -1,   -65)  ->  Abs (   789,  -301)
+	  2: Rel (   -65,    -1)  ->  Abs (   724,  -302)
+	  3: Rel (   -65,     1)  ->  Abs (   659,  -301)
+	  4: Rel (    -2,    65)  ->  Abs (   657,  -236)
+	  5: Rel (     0,    67)  ->  Abs (   657,  -169)
+	  6: Rel (    67,     0)  ->  Abs (   724,  -169)
+	  7: Rel (    66,    -4)  ->  Abs (   790,  -173)
+	  8: Rel (  -218,   -63)  ->  Abs (   572,  -236)
+	  9: Rel (    -1,   -65)  ->  Abs (   571,  -301)
+	 10: Rel (   -65,    -1)  ->  Abs (   506,  -302)
+	 11: Rel (   -65,     1)  ->  Abs (   441,  -301)
+	 12: Rel (    -2,    65)  ->  Abs (   439,  -236)
+	 13: Rel (     0,    67)  ->  Abs (   439,  -169)
+	 14: Rel (    67,     0)  ->  Abs (   506,  -169)
+	 15: Rel (    66,    -4)  ->  Abs (   572,  -173)
+	 16: Rel (   109,  -295)  ->  Abs (   681,  -468)
+	 17: Rel (    -1,   -65)  ->  Abs (   680,  -533)
+	 18: Rel (   -65,    -1)  ->  Abs (   615,  -534)
+	 19: Rel (   -65,     1)  ->  Abs (   550,  -533)
+	 20: Rel (    -2,    65)  ->  Abs (   548,  -468)
+	 21: Rel (     0,    67)  ->  Abs (   548,  -401)
+	 22: Rel (    67,     0)  ->  Abs (   615,  -401)
+	 23: Rel (    66,    -4)  ->  Abs (   681,  -405)
+
+	Glyph 660: off = 0x00024354, len = 68
+	  numberOfContours:	1
+	  xMin:			408
+	  yMin:			-267
+	  xMax:			820
+	  yMax:			-170
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	30
+	00000: PUSHB[3]              6    59     0 
+	00004: PUSHW[1]            814 
+	00007: NPUSHB       (9):     3     3    11     0     8     1     8     8    10 
+	00018: SRP1       
+	00019: SHP[rp1,zp0] 
+	00020: MDAP[rd]   
+	00021: DELTAP1    
+	00022: SRP1       
+	00023: SHP[rp1,zp0] 
+	00024: MDAP[rd]   
+	00025: SVTCA[y-axis] 
+	00026: MIAP[rd+ci] 
+	00027: MIRP[nrp0,md,rd,1] 
+	00028: IUP[y]     
+	00029: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual                               On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                               On
+	  7:  YDual                       X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   456,  -170)  ->  Abs (   456,  -170)
+	  1: Rel (   316,     0)  ->  Abs (   772,  -170)
+	  2: Rel (    48,     0)  ->  Abs (   820,  -170)
+	  3: Rel (     0,   -49)  ->  Abs (   820,  -219)
+	  4: Rel (     0,   -48)  ->  Abs (   820,  -267)
+	  5: Rel (   -48,     0)  ->  Abs (   772,  -267)
+	  6: Rel (  -316,     0)  ->  Abs (   456,  -267)
+	  7: Rel (   -48,     0)  ->  Abs (   408,  -267)
+	  8: Rel (     0,    49)  ->  Abs (   408,  -218)
+	  9: Rel (     0,    48)  ->  Abs (   408,  -170)
+
+	Glyph 661: off = 0x00024398, len = 96
+	  numberOfContours:	1
+	  xMin:			408
+	  yMin:			-440
+	  xMax:			820
+	  yMax:			-170
+
+	EndPoints
+	---------
+	  0:  16
+
+	  Length of Instructions:	43
+	00000: NPUSHB      (24):     5    59    11     0     0    16    14    32    14     2 
+	                            14     8   232    11    32     3   232    16     0     1 
+	                             0     0    18    17 
+	00026: SRP1       
+	00027: SRP2       
+	00028: IP         
+	00029: MDAP[rd]   
+	00030: DELTAP1    
+	00031: MIRP[nrp0,nmd,rd,0] 
+	00032: MIRP[srp0,md,rd,1] 
+	00033: MIRP[nrp0,nmd,rd,0] 
+	00034: SVTCA[y-axis] 
+	00035: MDAP[rd]   
+	00036: DELTAP1    
+	00037: SHP[rp1,zp0] 
+	00038: MDAP[rd]   
+	00039: ALIGNRP    
+	00040: MIRP[nrp0,md,rd,1] 
+	00041: IUP[y]     
+	00042: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short On
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   566,  -267)  ->  Abs (   566,  -267)
+	  1: Rel (  -110,     0)  ->  Abs (   456,  -267)
+	  2: Rel (   -48,     0)  ->  Abs (   408,  -267)
+	  3: Rel (     0,    49)  ->  Abs (   408,  -218)
+	  4: Rel (     0,    48)  ->  Abs (   408,  -170)
+	  5: Rel (    48,     0)  ->  Abs (   456,  -170)
+	  6: Rel (   316,     0)  ->  Abs (   772,  -170)
+	  7: Rel (    48,     0)  ->  Abs (   820,  -170)
+	  8: Rel (     0,   -49)  ->  Abs (   820,  -219)
+	  9: Rel (     0,   -48)  ->  Abs (   820,  -267)
+	 10: Rel (   -48,     0)  ->  Abs (   772,  -267)
+	 11: Rel (  -109,     0)  ->  Abs (   663,  -267)
+	 12: Rel (     0,  -125)  ->  Abs (   663,  -392)
+	 13: Rel (     0,   -48)  ->  Abs (   663,  -440)
+	 14: Rel (   -49,     0)  ->  Abs (   614,  -440)
+	 15: Rel (   -48,     0)  ->  Abs (   566,  -440)
+	 16: Rel (     0,    48)  ->  Abs (   566,  -392)
+
+	Glyph 662: off = 0x000243F8, len = 74
+	  numberOfContours:	1
+	  xMin:			548
+	  yMin:			1145
+	  xMax:			681
+	  yMax:			1286
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	33
+	00000: PUSHW[2]              2   850 
+	00005: PUSHB[8]              6    64     9    11    52     6     0     0 
+	00014: PUSHW[1]            850 
+	00017: PUSHB[6]             16     4    79     4     2     4 
+	00024: MDAP[rd]   
+	00025: DELTAP1    
+	00026: MIRP[nrp0,md,rd,1] 
+	00027: SVTCA[y-axis] 
+	00028: MIAP[rd+ci] 
+	00029: CALL       
+	00030: MIRP[nrp0,md,rd,1] 
+	00031: IUP[y]     
+	00032: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual               Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   681,  1212)  ->  Abs (   681,  1212)
+	  1: Rel (    -3,   -67)  ->  Abs (   678,  1145)
+	  2: Rel (   -63,     1)  ->  Abs (   615,  1146)
+	  3: Rel (   -60,     3)  ->  Abs (   555,  1149)
+	  4: Rel (    -7,    63)  ->  Abs (   548,  1212)
+	  5: Rel (     7,    74)  ->  Abs (   555,  1286)
+	  6: Rel (    60,    -7)  ->  Abs (   615,  1279)
+	  7: Rel (    63,    -1)  ->  Abs (   678,  1278)
+
+	Glyph 663: off = 0x00024442, len = 144
+	  numberOfContours:	3
+	  xMin:			331
+	  yMin:			-535
+	  xMax:			897
+	  yMax:			-168
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  15
+	  2:  23
+
+	  Length of Instructions:	73
+	00000: PUSHW[2]              6   850 
+	00005: PUSHB[3]              2     2    14 
+	00009: PUSHW[1]            850 
+	00012: PUSHB[3]             10    10    22 
+	00016: PUSHW[4]            850    18    16   850 
+	00025: PUSHB[4]             20    91     8     4 
+	00030: PUSHW[1]            850 
+	00033: PUSHB[3]              0    91     8 
+	00037: PUSHW[1]            850 
+	00040: NPUSHB       (9):    16    12   143    12     2    12    12    25    24 
+	00051: SRP1       
+	00052: SRP2       
+	00053: IP         
+	00054: MDAP[rd]   
+	00055: DELTAP1    
+	00056: MIRP[nrp0,md,rd,1] 
+	00057: MIRP[srp0,nmd,rd,2] 
+	00058: MIRP[nrp0,md,rd,1] 
+	00059: SRP0       
+	00060: MIRP[srp0,nmd,rd,2] 
+	00061: MIRP[nrp0,md,rd,1] 
+	00062: SVTCA[y-axis] 
+	00063: MDAP[rd]   
+	00064: MIRP[nrp0,md,rd,1] 
+	00065: SHP[rp1,zp0] 
+	00066: MDAP[rd]   
+	00067: MIRP[nrp0,md,rd,1] 
+	00068: SHP[rp1,zp0] 
+	00069: MDAP[rd]   
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: IUP[y]     
+	00072: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short         Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short         Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   463,  -234)  ->  Abs (   463,  -234)
+	  1: Rel (     0,   -66)  ->  Abs (   463,  -300)
+	  2: Rel (   -66,     0)  ->  Abs (   397,  -300)
+	  3: Rel (   -66,     0)  ->  Abs (   331,  -300)
+	  4: Rel (     0,    66)  ->  Abs (   331,  -234)
+	  5: Rel (     0,    66)  ->  Abs (   331,  -168)
+	  6: Rel (    66,     0)  ->  Abs (   397,  -168)
+	  7: Rel (    66,     0)  ->  Abs (   463,  -168)
+	  8: Rel (   217,  -183)  ->  Abs (   680,  -351)
+	  9: Rel (     0,   -67)  ->  Abs (   680,  -418)
+	 10: Rel (   -66,     0)  ->  Abs (   614,  -418)
+	 11: Rel (   -66,     0)  ->  Abs (   548,  -418)
+	 12: Rel (     0,    67)  ->  Abs (   548,  -351)
+	 13: Rel (     7,    66)  ->  Abs (   555,  -285)
+	 14: Rel (    59,     0)  ->  Abs (   614,  -285)
+	 15: Rel (    62,     0)  ->  Abs (   676,  -285)
+	 16: Rel (   221,  -184)  ->  Abs (   897,  -469)
+	 17: Rel (     0,   -66)  ->  Abs (   897,  -535)
+	 18: Rel (   -66,     0)  ->  Abs (   831,  -535)
+	 19: Rel (   -66,     0)  ->  Abs (   765,  -535)
+	 20: Rel (     0,    66)  ->  Abs (   765,  -469)
+	 21: Rel (     0,    66)  ->  Abs (   765,  -403)
+	 22: Rel (    66,     0)  ->  Abs (   831,  -403)
+	 23: Rel (    66,     0)  ->  Abs (   897,  -403)
+
+	Glyph 664: off = 0x000244D2, len = 68
+	  numberOfContours:	1
+	  xMin:			548
+	  yMin:			454
+	  xMax:			681
+	  yMax:			594
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	32
+	00000: PUSHW[2]              2   850 
+	00005: PUSHB[7]              6    64    11    12    52     6     0 
+	00013: PUSHW[1]            850 
+	00016: PUSHB[6]             16     4    79     4     2     4 
+	00023: MDAP[rd]   
+	00024: DELTAP1    
+	00025: MIRP[nrp0,md,rd,1] 
+	00026: SVTCA[y-axis] 
+	00027: MDAP[rd]   
+	00028: CALL       
+	00029: MIRP[nrp0,md,rd,1] 
+	00030: IUP[y]     
+	00031: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   681,   520)  ->  Abs (   681,   520)
+	  1: Rel (     0,   -66)  ->  Abs (   681,   454)
+	  2: Rel (   -66,     0)  ->  Abs (   615,   454)
+	  3: Rel (   -67,     0)  ->  Abs (   548,   454)
+	  4: Rel (     0,    66)  ->  Abs (   548,   520)
+	  5: Rel (     1,    74)  ->  Abs (   549,   594)
+	  6: Rel (    66,    -7)  ->  Abs (   615,   587)
+	  7: Rel (    66,     0)  ->  Abs (   681,   587)
+
+	Glyph 665: off = 0x00024516, len = 70
+	  numberOfContours:	1
+	  xMin:			566
+	  yMin:			-534
+	  xMax:			663
+	  yMax:			-168
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	30
+	00000: NPUSHB      (16):     8    15     3     1     3     5    32    16     1   112 
+	                             1     2     1     1    11    10 
+	00018: SRP1       
+	00019: SRP2       
+	00020: IP         
+	00021: MDAP[rd]   
+	00022: DELTAP1    
+	00023: MIRP[nrp0,md,rd,1] 
+	00024: SVTCA[y-axis] 
+	00025: MDAP[rd]   
+	00026: DELTAP1    
+	00027: MDAP[rd]   
+	00028: IUP[y]     
+	00029: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual         Y-Short         Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual                         On
+	  7:        XDual         Y-Short         Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   566,  -486)  ->  Abs (   566,  -486)
+	  1: Rel (     0,   270)  ->  Abs (   566,  -216)
+	  2: Rel (     0,    48)  ->  Abs (   566,  -168)
+	  3: Rel (    49,     0)  ->  Abs (   615,  -168)
+	  4: Rel (    48,     0)  ->  Abs (   663,  -168)
+	  5: Rel (     0,   -48)  ->  Abs (   663,  -216)
+	  6: Rel (     0,  -270)  ->  Abs (   663,  -486)
+	  7: Rel (     0,   -48)  ->  Abs (   663,  -534)
+	  8: Rel (   -49,     0)  ->  Abs (   614,  -534)
+	  9: Rel (   -48,     0)  ->  Abs (   566,  -534)
+
+	Glyph 666: off = 0x0002455C, len = 60
+	  numberOfContours:	1
+	  xMin:			181
+	  yMin:			895
+	  xMax:			1048
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	22
+	00000: NPUSHB       (9):     0    91     4     7     7    11     2     2    10 
+	00011: SRP1       
+	00012: SHP[rp1,zp0] 
+	00013: MDAP[rd]   
+	00014: SRP1       
+	00015: SHP[rp1,zp0] 
+	00016: MDAP[rd]   
+	00017: SVTCA[y-axis] 
+	00018: MDAP[rd]   
+	00019: MIRP[srp0,md,rd,1] 
+	00020: IUP[y]     
+	00021: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual                       X-Short Off
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual                               On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   229,   895)  ->  Abs (   229,   895)
+	  1: Rel (   -48,     0)  ->  Abs (   181,   895)
+	  2: Rel (     0,    42)  ->  Abs (   181,   937)
+	  3: Rel (     0,    42)  ->  Abs (   181,   979)
+	  4: Rel (    48,     0)  ->  Abs (   229,   979)
+	  5: Rel (   771,     0)  ->  Abs (  1000,   979)
+	  6: Rel (    48,     0)  ->  Abs (  1048,   979)
+	  7: Rel (     0,   -42)  ->  Abs (  1048,   937)
+	  8: Rel (     0,   -42)  ->  Abs (  1048,   895)
+	  9: Rel (   -48,     0)  ->  Abs (  1000,   895)
+
+	Glyph 667: off = 0x00024598, len = 80
+	  numberOfContours:	1
+	  xMin:			408
+	  yMin:			1147
+	  xMax:			820
+	  yMax:			1244
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	40
+	00000: PUSHB[3]              6    59     0 
+	00004: PUSHW[1]            836 
+	00007: NPUSHB      (17):   159     3     1     3    64    13    14    52     3     3 
+	                            11     0     8     1     8     8    10 
+	00026: SRP1       
+	00027: SHP[rp1,zp0] 
+	00028: MDAP[rd]   
+	00029: DELTAP1    
+	00030: SRP1       
+	00031: SHP[rp1,zp0] 
+	00032: MDAP[rd]   
+	00033: CALL       
+	00034: DELTAP1    
+	00035: SVTCA[y-axis] 
+	00036: MIAP[rd+ci] 
+	00037: MIRP[nrp0,md,rd,1] 
+	00038: IUP[y]     
+	00039: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                               On
+	  7:  YDual                       X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   456,  1244)  ->  Abs (   456,  1244)
+	  1: Rel (   316,     0)  ->  Abs (   772,  1244)
+	  2: Rel (    48,     0)  ->  Abs (   820,  1244)
+	  3: Rel (     0,   -49)  ->  Abs (   820,  1195)
+	  4: Rel (     0,   -48)  ->  Abs (   820,  1147)
+	  5: Rel (   -48,     0)  ->  Abs (   772,  1147)
+	  6: Rel (  -316,     0)  ->  Abs (   456,  1147)
+	  7: Rel (   -48,     0)  ->  Abs (   408,  1147)
+	  8: Rel (     0,    49)  ->  Abs (   408,  1196)
+	  9: Rel (     0,    48)  ->  Abs (   408,  1244)
+
+	Glyph 668: off = 0x000245E8, len = 72
+	  numberOfContours:	1
+	  xMin:			572
+	  yMin:			-11
+	  xMax:			656
+	  yMax:			991
+
+	EndPoints
+	---------
+	  0:  9
+
+	  Length of Instructions:	34
+	00000: NPUSHB       (9):     3     8    11     1     0     5     6    91     0 
+	00011: PUSHW[1]            -64 
+	00014: PUSHB[6]              9    10    52     0     0    10 
+	00021: SRP1       
+	00022: SHP[rp1,zp0] 
+	00023: MDAP[rd]   
+	00024: CALL       
+	00025: MIRP[srp0,md,rd,1] 
+	00026: ALIGNRP    
+	00027: SRP0       
+	00028: ALIGNRP    
+	00029: SVTCA[y-axis] 
+	00030: MIAP[rd+ci] 
+	00031: MDAP[rd]   
+	00032: IUP[y]     
+	00033: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual                         On
+	  2:  YDual XDual         Y-Short         Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual                         On
+	  7:        XDual         Y-Short         Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   572,    37)  ->  Abs (   572,    37)
+	  1: Rel (     0,   906)  ->  Abs (   572,   943)
+	  2: Rel (     0,    48)  ->  Abs (   572,   991)
+	  3: Rel (    42,     0)  ->  Abs (   614,   991)
+	  4: Rel (    42,     0)  ->  Abs (   656,   991)
+	  5: Rel (     0,   -48)  ->  Abs (   656,   943)
+	  6: Rel (     0,  -906)  ->  Abs (   656,    37)
+	  7: Rel (     0,   -48)  ->  Abs (   656,   -11)
+	  8: Rel (   -42,     0)  ->  Abs (   614,   -11)
+	  9: Rel (   -42,     0)  ->  Abs (   572,   -11)
+
+	Glyph 669: off = 0x00024630, len = 56
+	  numberOfContours:	1
+	  xMin:			907
+	  yMin:			1146
+	  xMax:			1045
+	  yMax:			1280
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	21
+	00000: PUSHW[2]              2   850 
+	00005: PUSHB[3]              6     0     0 
+	00009: PUSHW[2]            850     4 
+	00014: MDAP[rd]   
+	00015: MIRP[nrp0,md,rd,1] 
+	00016: SVTCA[y-axis] 
+	00017: MIAP[rd+ci] 
+	00018: MIRP[nrp0,md,rd,1] 
+	00019: IUP[y]     
+	00020: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual               Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1045,  1212)  ->  Abs (  1045,  1212)
+	  1: Rel (     0,   -66)  ->  Abs (  1045,  1146)
+	  2: Rel (   -66,     0)  ->  Abs (   979,  1146)
+	  3: Rel (   -67,     0)  ->  Abs (   912,  1146)
+	  4: Rel (     0,    66)  ->  Abs (   912,  1212)
+	  5: Rel (    -5,    68)  ->  Abs (   907,  1280)
+	  6: Rel (    72,    -1)  ->  Abs (   979,  1279)
+	  7: Rel (    66,     0)  ->  Abs (  1045,  1279)
+
+	Glyph 670: off = 0x00024668, len = 56
+	  numberOfContours:	1
+	  xMin:			185
+	  yMin:			1146
+	  xMax:			318
+	  yMax:			1284
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	21
+	00000: PUSHW[2]              2   850 
+	00005: PUSHB[3]              6     0     0 
+	00009: PUSHW[2]            850     4 
+	00014: MDAP[rd]   
+	00015: MIRP[nrp0,md,rd,1] 
+	00016: SVTCA[y-axis] 
+	00017: MIAP[rd+ci] 
+	00018: MIRP[nrp0,md,rd,1] 
+	00019: IUP[y]     
+	00020: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   318,  1212)  ->  Abs (   318,  1212)
+	  1: Rel (     0,   -66)  ->  Abs (   318,  1146)
+	  2: Rel (   -66,     0)  ->  Abs (   252,  1146)
+	  3: Rel (   -67,     0)  ->  Abs (   185,  1146)
+	  4: Rel (     0,    66)  ->  Abs (   185,  1212)
+	  5: Rel (     1,    72)  ->  Abs (   186,  1284)
+	  6: Rel (    66,    -5)  ->  Abs (   252,  1279)
+	  7: Rel (    66,     0)  ->  Abs (   318,  1279)
+
+	Glyph 671: off = 0x000246A0, len = 118
+	  numberOfContours:	2
+	  xMin:			460
+	  yMin:			-13
+	  xMax:			769
+	  yMax:			996
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	32
+	00000: NPUSHB      (12):     3   178     9     9    15   178    21    11    18     6 
+	                            12     6 
+	00014: PUSHW[2]            278     0 
+	00019: MDAP[rd]   
+	00020: MIRP[nrp0,md,rd,1] 
+	00021: ALIGNRP    
+	00022: SRP0       
+	00023: ALIGNRP    
+	00024: SVTCA[y-axis] 
+	00025: MIAP[rd+ci] 
+	00026: MIRP[srp0,md,rd,1] 
+	00027: SHP[rp2,zp1] 
+	00028: MDAP[rd]   
+	00029: MIRP[nrp0,md,rd,1] 
+	00030: IUP[y]     
+	00031: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:                      Y-Short X-Short Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:                              X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:  YDual               Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   460,   854)  ->  Abs (   460,   854)
+	  1: Rel (     5,    75)  ->  Abs (   465,   929)
+	  2: Rel (    92,    61)  ->  Abs (   557,   990)
+	  3: Rel (    57,     0)  ->  Abs (   614,   990)
+	  4: Rel (    60,     6)  ->  Abs (   674,   996)
+	  5: Rel (    95,   -78)  ->  Abs (   769,   918)
+	  6: Rel (     0,   -64)  ->  Abs (   769,   854)
+	  7: Rel (    -2,   -61)  ->  Abs (   767,   793)
+	  8: Rel (   -83,   -75)  ->  Abs (   684,   718)
+	  9: Rel (   -70,     0)  ->  Abs (   614,   718)
+	 10: Rel (   -64,    -2)  ->  Abs (   550,   716)
+	 11: Rel (   -86,    72)  ->  Abs (   464,   788)
+	 12: Rel (    -4,  -663)  ->  Abs (   460,   125)
+	 13: Rel (     5,    69)  ->  Abs (   465,   194)
+	 14: Rel (    85,    67)  ->  Abs (   550,   261)
+	 15: Rel (    64,     0)  ->  Abs (   614,   261)
+	 16: Rel (    60,     6)  ->  Abs (   674,   267)
+	 17: Rel (    95,   -79)  ->  Abs (   769,   188)
+	 18: Rel (     0,   -63)  ->  Abs (   769,   125)
+	 19: Rel (     0,   -57)  ->  Abs (   769,    68)
+	 20: Rel (   -85,   -80)  ->  Abs (   684,   -12)
+	 21: Rel (   -70,     1)  ->  Abs (   614,   -11)
+	 22: Rel (   -64,    -2)  ->  Abs (   550,   -13)
+	 23: Rel (   -86,    72)  ->  Abs (   464,    59)
+
+	Glyph 672: off = 0x00024716, len = 364
+	  numberOfContours:	1
+	  xMin:			208
+	  yMin:			-12
+	  xMax:			1029
+	  yMax:			1008
+
+	EndPoints
+	---------
+	  0:  40
+
+	  Length of Instructions:	244
+	00000: NPUSHB      (42):   165    20   166    33   180    11   178    21     4   102 
+	                            21   103    31   130    11   158    32     4    11    29 
+	                           170    12     1   152    20   185    12   247    20   248 
+	                            40     4   122    12   153     0   153    12     3    11 
+	                            29    12 
+	00044: PUSHW[5]            -29    11   -29    21   -29 
+	00055: PUSHB[3]             31    29     1 
+	00059: PUSHW[1]            -41 
+	00062: NPUSHB      (59):    19    17     9    20    33    34    33    31    34    19 
+	                            12     0    40    40    13    15    13    36    19    34 
+	                            34    32    40    13    20    40    40    13    40    34 
+	                            33    20     0    12    13    19     8    17     9    31 
+	                            21    38    28    11     1     9    17    38    10    38 
+	                             3    59     9    10    17    17    24    59    28 
+	00123: PUSHW[1]            812 
+	00126: NPUSHB      (36):    40    34    33    20     0    12    13    19     8    29 
+	                             9    26    26    23    32     0    29     1     0    29 
+	                           192    29   224    29     3    29     6     6     3    32 
+	                             0     9    79     9     2     9 
+	00164: MDAP[rd]   
+	00165: DELTAP1    
+	00166: MIRP[nrp0,md,rd,1] 
+	00167: SHP[rp1,zp0] 
+	00168: MDAP[rd]   
+	00169: MDAP[rd]   
+	00170: DELTAP1    
+	00171: DELTAP2    
+	00172: MIRP[nrp0,md,rd,1] 
+	00173: SHP[rp1,zp0] 
+	00174: MDAP[rd]   
+	00175: SRP1       
+	00176: SRP2       
+	00177: SLOOP      
+	00178: IP         
+	00179: SVTCA[y-axis] 
+	00180: MIAP[rd+ci] 
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: SHP[rp1,zp0] 
+	00183: MDAP[rd]   
+	00184: MIAP[rd+ci] 
+	00185: MIRP[nrp0,md,rd,1] 
+	00186: SHP[rp1,zp0] 
+	00187: MIAP[rd+ci] 
+	00188: SRP1       
+	00189: SRP2       
+	00190: IP         
+	00191: IP         
+	00192: SRP1       
+	00193: SRP2       
+	00194: IP         
+	00195: IP         
+	00196: SRP1       
+	00197: SRP2       
+	00198: SLOOP      
+	00199: IP         
+	00200: SDPVTL[1]  
+	00201: SFVTPV     
+	00202: MDAP[nrd]  
+	00203: CALL       
+	00204: SFVTPV     
+	00205: RDTG       
+	00206: SRP0       
+	00207: MDRP[nrp0,nmd,rd,0] 
+	00208: SVTCA[x-axis] 
+	00209: SHP[rp1,zp0] 
+	00210: SRP1       
+	00211: SHP[rp1,zp0] 
+	00212: SPVTL[p1,p2] 
+	00213: SFVTPV     
+	00214: SRP0       
+	00215: ALIGNRP    
+	00216: ALIGNRP    
+	00217: SPVTL[p1,p2] 
+	00218: SFVTL[=p1,p2] 
+	00219: SRP0       
+	00220: ALIGNRP    
+	00221: SFVTPV     
+	00222: ALIGNRP    
+	00223: SVTCA[y-axis] 
+	00224: SRP1       
+	00225: SRP2       
+	00226: IP         
+	00227: IUP[y]     
+	00228: IUP[x]     
+	00229: SHPIX      
+	00230: SHPIX      
+	00231: SHPIX      
+	00232: SHPIX      
+	00233: SHPIX      
+	00234: SVTCA[x-axis] 
+	00235: SHPIX      
+	00236: SVTCA[x-axis] 
+	00237: DELTAP1    
+	00238: DELTAP1    
+	00239: DELTAP2    
+	00240: SHPIX      
+	00241: SVTCA[y-axis] 
+	00242: DELTAP2    
+	00243: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual                         On
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short On
+	 10:        XDual                         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:                                      On
+	 21:  YDual               Y-Short         Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short On
+	 30:        XDual                         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short         On
+	 33:  YDual               Y-Short X-Short On
+	 34:                                      On
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short Off
+	 40:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   483,   617)  ->  Abs (   483,   617)
+	  1: Rel (  -191,   -82)  ->  Abs (   292,   535)
+	  2: Rel (     0,  -132)  ->  Abs (   292,   403)
+	  3: Rel (     0,  -319)  ->  Abs (   292,    84)
+	  4: Rel (   139,     0)  ->  Abs (   431,    84)
+	  5: Rel (    48,     0)  ->  Abs (   479,    84)
+	  6: Rel (     0,   -42)  ->  Abs (   479,    42)
+	  7: Rel (     0,   -42)  ->  Abs (   479,     0)
+	  8: Rel (   -48,     0)  ->  Abs (   431,     0)
+	  9: Rel (  -223,     0)  ->  Abs (   208,     0)
+	 10: Rel (     0,   399)  ->  Abs (   208,   399)
+	 11: Rel (     0,   175)  ->  Abs (   208,   574)
+	 12: Rel (   224,   111)  ->  Abs (   432,   685)
+	 13: Rel (  -185,   251)  ->  Abs (   247,   936)
+	 14: Rel (   -12,    16)  ->  Abs (   235,   952)
+	 15: Rel (     0,    16)  ->  Abs (   235,   968)
+	 16: Rel (     0,    40)  ->  Abs (   235,  1008)
+	 17: Rel (    42,     0)  ->  Abs (   277,  1008)
+	 18: Rel (    21,     0)  ->  Abs (   298,  1008)
+	 19: Rel (    17,   -22)  ->  Abs (   315,   986)
+	 20: Rel (   367,  -498)  ->  Abs (   682,   488)
+	 21: Rel (   263,    92)  ->  Abs (   945,   580)
+	 22: Rel (     0,   127)  ->  Abs (   945,   707)
+	 23: Rel (     0,   188)  ->  Abs (   945,   895)
+	 24: Rel (  -157,     0)  ->  Abs (   788,   895)
+	 25: Rel (   -48,     0)  ->  Abs (   740,   895)
+	 26: Rel (     0,    42)  ->  Abs (   740,   937)
+	 27: Rel (     0,    42)  ->  Abs (   740,   979)
+	 28: Rel (    48,     0)  ->  Abs (   788,   979)
+	 29: Rel (   241,     0)  ->  Abs (  1029,   979)
+	 30: Rel (     0,  -288)  ->  Abs (  1029,   691)
+	 31: Rel (     0,  -179)  ->  Abs (  1029,   512)
+	 32: Rel (  -298,   -89)  ->  Abs (   731,   423)
+	 33: Rel (    -8,    10)  ->  Abs (   723,   433)
+	 34: Rel (   275,  -373)  ->  Abs (   998,    60)
+	 35: Rel (    11,   -16)  ->  Abs (  1009,    44)
+	 36: Rel (     0,   -16)  ->  Abs (  1009,    28)
+	 37: Rel (     0,   -40)  ->  Abs (  1009,   -12)
+	 38: Rel (   -41,     0)  ->  Abs (   968,   -12)
+	 39: Rel (   -22,     0)  ->  Abs (   946,   -12)
+	 40: Rel (   -16,    22)  ->  Abs (   930,    10)
+
+	Glyph 673: off = 0x00024882, len = 120
+	  numberOfContours:	1
+	  xMin:			158
+	  yMin:			0
+	  xMax:			1069
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  24
+
+	  Length of Instructions:	47
+	00000: PUSHB[3]             16    91    20 
+	00004: PUSHW[1]            812 
+	00007: NPUSHB      (19):     0    11     1     1    10    59     6    10    11    32 
+	                             0     0     3    18    18    79     8     1     8 
+	00028: MDAP[rd]   
+	00029: DELTAP1    
+	00030: SHP[rp1,zp0] 
+	00031: MDAP[rd]   
+	00032: MDAP[rd]   
+	00033: SHP[rp1,zp0] 
+	00034: MDAP[rd]   
+	00035: MIRP[nrp0,md,rd,1] 
+	00036: SVTCA[y-axis] 
+	00037: MIAP[rd+ci] 
+	00038: MIRP[srp0,md,rd,1] 
+	00039: ALIGNRP    
+	00040: SRP1       
+	00041: IP         
+	00042: IP         
+	00043: MIAP[rd+ci] 
+	00044: MIRP[nrp0,md,rd,1] 
+	00045: IUP[y]     
+	00046: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                               On
+	  7:  YDual                       X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual                               On
+	 12:        XDual                         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                               On
+	 17:  YDual                       X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual                               On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   902,    84)  ->  Abs (   902,    84)
+	  1: Rel (   119,     0)  ->  Abs (  1021,    84)
+	  2: Rel (    48,     0)  ->  Abs (  1069,    84)
+	  3: Rel (     0,   -42)  ->  Abs (  1069,    42)
+	  4: Rel (     0,   -42)  ->  Abs (  1069,     0)
+	  5: Rel (   -48,     0)  ->  Abs (  1021,     0)
+	  6: Rel (  -815,     0)  ->  Abs (   206,     0)
+	  7: Rel (   -48,     0)  ->  Abs (   158,     0)
+	  8: Rel (     0,    42)  ->  Abs (   158,    42)
+	  9: Rel (     0,    42)  ->  Abs (   158,    84)
+	 10: Rel (    48,     0)  ->  Abs (   206,    84)
+	 11: Rel (   612,     0)  ->  Abs (   818,    84)
+	 12: Rel (     0,   593)  ->  Abs (   818,   677)
+	 13: Rel (     0,   131)  ->  Abs (   818,   808)
+	 14: Rel (   -89,    87)  ->  Abs (   729,   895)
+	 15: Rel (  -103,     0)  ->  Abs (   626,   895)
+	 16: Rel (  -412,     0)  ->  Abs (   214,   895)
+	 17: Rel (   -48,     0)  ->  Abs (   166,   895)
+	 18: Rel (     0,    42)  ->  Abs (   166,   937)
+	 19: Rel (     0,    42)  ->  Abs (   166,   979)
+	 20: Rel (    48,     0)  ->  Abs (   214,   979)
+	 21: Rel (   382,     0)  ->  Abs (   596,   979)
+	 22: Rel (   173,     0)  ->  Abs (   769,   979)
+	 23: Rel (   133,  -135)  ->  Abs (   902,   844)
+	 24: Rel (     0,  -171)  ->  Abs (   902,   673)
+
+	Glyph 674: off = 0x000248FA, len = 218
+	  numberOfContours:	1
+	  xMin:			277
+	  yMin:			-11
+	  xMax:			913
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  30
+
+	  Length of Instructions:	125
+	00000: NPUSHB      (18):    10     1    29     1    35     9    60     1    53     9 
+	                            67     9   140     1   143     3     8    17 
+	00020: PUSHW[5]            -22     1   -22     0   -22 
+	00031: NPUSHB      (31):    20     6    36     6    48     6    68     6     4     6 
+	                             8     8    32     0     1    20     0     0     1     0 
+	                             8     8    26    15    59     5    11    10    22    59 
+	                            26 
+	00064: PUSHW[1]            812 
+	00067: NPUSHB      (17):     8     8    17    32    63     0     1     0    96    24 
+	                             1    24    24    31    13     1    13 
+	00086: MDAP[rd]   
+	00087: DELTAP1    
+	00088: SHP[rp1,zp0] 
+	00089: MDAP[rd]   
+	00090: DELTAP1    
+	00091: MDAP[rd]   
+	00092: DELTAP1    
+	00093: MIRP[srp0,md,rd,1] 
+	00094: RTHG       
+	00095: IP         
+	00096: MDAP[rd]   
+	00097: SVTCA[y-axis] 
+	00098: RTG        
+	00099: MIAP[rd+ci] 
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: MIAP[rd+ci] 
+	00102: SHP[rp1,zp0] 
+	00103: MIRP[nrp0,md,rd,1] 
+	00104: SRP2       
+	00105: IP         
+	00106: MDAP[rd]   
+	00107: SHP[rp1,zp0] 
+	00108: SDPVTL[1]  
+	00109: SFVTPV     
+	00110: MDAP[nrd]  
+	00111: CALL       
+	00112: SFVTPV     
+	00113: RDTG       
+	00114: SRP0       
+	00115: MDRP[nrp0,nmd,rd,0] 
+	00116: DELTAP1    
+	00117: IUP[y]     
+	00118: IUP[x]     
+	00119: SVTCA[y-axis] 
+	00120: SHPIX      
+	00121: SHPIX      
+	00122: SHPIX      
+	00123: SVTCA[x-axis] 
+	00124: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual               Y-Short         Off
+	 17:        XDual                         On
+	 18:        XDual                         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   736,   320)  ->  Abs (   736,   320)
+	  1: Rel (   160,  -249)  ->  Abs (   896,    71)
+	  2: Rel (    17,   -26)  ->  Abs (   913,    45)
+	  3: Rel (     0,   -19)  ->  Abs (   913,    26)
+	  4: Rel (     0,   -37)  ->  Abs (   913,   -11)
+	  5: Rel (   -41,     0)  ->  Abs (   872,   -11)
+	  6: Rel (   -23,     0)  ->  Abs (   849,   -11)
+	  7: Rel (   -25,    37)  ->  Abs (   824,    26)
+	  8: Rel (  -134,   201)  ->  Abs (   690,   227)
+	  9: Rel (   -64,  -100)  ->  Abs (   626,   127)
+	 10: Rel (  -215,  -137)  ->  Abs (   411,   -10)
+	 11: Rel (   -92,     0)  ->  Abs (   319,   -10)
+	 12: Rel (   -42,     0)  ->  Abs (   277,   -10)
+	 13: Rel (     0,    40)  ->  Abs (   277,    30)
+	 14: Rel (     0,    34)  ->  Abs (   277,    64)
+	 15: Rel (    43,    11)  ->  Abs (   320,    75)
+	 16: Rel (   332,    79)  ->  Abs (   652,   154)
+	 17: Rel (     0,   289)  ->  Abs (   652,   443)
+	 18: Rel (     0,   326)  ->  Abs (   652,   769)
+	 19: Rel (     0,    64)  ->  Abs (   652,   833)
+	 20: Rel (   -40,    62)  ->  Abs (   612,   895)
+	 21: Rel (   -73,     0)  ->  Abs (   539,   895)
+	 22: Rel (  -143,     0)  ->  Abs (   396,   895)
+	 23: Rel (   -48,     0)  ->  Abs (   348,   895)
+	 24: Rel (     0,    42)  ->  Abs (   348,   937)
+	 25: Rel (     0,    42)  ->  Abs (   348,   979)
+	 26: Rel (    48,     0)  ->  Abs (   396,   979)
+	 27: Rel (   140,     0)  ->  Abs (   536,   979)
+	 28: Rel (    97,     0)  ->  Abs (   633,   979)
+	 29: Rel (   103,   -81)  ->  Abs (   736,   898)
+	 30: Rel (     0,  -150)  ->  Abs (   736,   748)
+
+	Glyph 675: off = 0x000249D4, len = 108
+	  numberOfContours:	1
+	  xMin:			163
+	  yMin:			-11
+	  xMax:			1070
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  16
+
+	  Length of Instructions:	54
+	00000: NPUSHB       (9):    14    10    11     0    10    10     1    59     5 
+	00011: PUSHW[1]            812 
+	00014: PUSHB[7]              0    32    11    11     8     8     3 
+	00022: PUSHW[1]            -64 
+	00025: NPUSHB       (9):    20    36    52     0     3   128     3     2     3 
+	00036: MDAP[rd]   
+	00037: DELTAP1    
+	00038: CALL       
+	00039: SHP[rp1,zp0] 
+	00040: MDAP[rd]   
+	00041: SHP[rp1,zp0] 
+	00042: MDAP[rd]   
+	00043: MIRP[nrp0,md,rd,1] 
+	00044: SVTCA[y-axis] 
+	00045: MIAP[rd+ci] 
+	00046: MIRP[srp0,md,rd,1] 
+	00047: ALIGNRP    
+	00048: SRP1       
+	00049: IP         
+	00050: IP         
+	00051: MIAP[rd+ci] 
+	00052: IUP[y]     
+	00053: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short On
+	 12:        XDual                         On
+	 13:        XDual         Y-Short         Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   786,   895)  ->  Abs (   786,   895)
+	  1: Rel (  -575,     0)  ->  Abs (   211,   895)
+	  2: Rel (   -48,     0)  ->  Abs (   163,   895)
+	  3: Rel (     0,    42)  ->  Abs (   163,   937)
+	  4: Rel (     0,    42)  ->  Abs (   163,   979)
+	  5: Rel (    48,     0)  ->  Abs (   211,   979)
+	  6: Rel (   811,     0)  ->  Abs (  1022,   979)
+	  7: Rel (    48,     0)  ->  Abs (  1070,   979)
+	  8: Rel (     0,   -42)  ->  Abs (  1070,   937)
+	  9: Rel (     0,   -42)  ->  Abs (  1070,   895)
+	 10: Rel (   -48,     0)  ->  Abs (  1022,   895)
+	 11: Rel (  -152,     0)  ->  Abs (   870,   895)
+	 12: Rel (     0,  -858)  ->  Abs (   870,    37)
+	 13: Rel (     0,   -48)  ->  Abs (   870,   -11)
+	 14: Rel (   -42,     0)  ->  Abs (   828,   -11)
+	 15: Rel (   -42,     0)  ->  Abs (   786,   -11)
+	 16: Rel (     0,    48)  ->  Abs (   786,    37)
+
+	Glyph 676: off = 0x00024A40, len = 132
+	  numberOfContours:	2
+	  xMin:			160
+	  yMin:			-11
+	  xMax:			1021
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  17
+	  1:  27
+
+	  Length of Instructions:	46
+	00000: PUSHB[7]             21    12    26    10     1    59     5 
+	00008: PUSHW[1]            812 
+	00011: PUSHB[3]             14    32    10 
+	00015: PUSHW[1]            841 
+	00018: PUSHB[6]             29     3     3    24    32    18 
+	00025: PUSHW[2]            840    28 
+	00030: SRP0       
+	00031: MIRP[srp0,nmd,rd,2] 
+	00032: MIRP[nrp0,md,rd,1] 
+	00033: SHP[rp1,zp0] 
+	00034: MDAP[rd]   
+	00035: SRP0       
+	00036: MIRP[srp0,nmd,rd,2] 
+	00037: MIRP[nrp0,md,rd,1] 
+	00038: SVTCA[y-axis] 
+	00039: MIAP[rd+ci] 
+	00040: MIRP[nrp0,md,rd,1] 
+	00041: MIAP[rd+ci] 
+	00042: ALIGNRP    
+	00043: MDAP[rd]   
+	00044: IUP[y]     
+	00045: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual                         On
+	 11:        XDual         Y-Short         Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:        XDual                         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:                                      On
+	 19:        XDual                         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual                         On
+	 25:        XDual         Y-Short         Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   745,   895)  ->  Abs (   745,   895)
+	  1: Rel (  -537,     0)  ->  Abs (   208,   895)
+	  2: Rel (   -48,     0)  ->  Abs (   160,   895)
+	  3: Rel (     0,    42)  ->  Abs (   160,   937)
+	  4: Rel (     0,    42)  ->  Abs (   160,   979)
+	  5: Rel (    48,     0)  ->  Abs (   208,   979)
+	  6: Rel (   507,     0)  ->  Abs (   715,   979)
+	  7: Rel (   171,     0)  ->  Abs (   886,   979)
+	  8: Rel (   135,  -133)  ->  Abs (  1021,   846)
+	  9: Rel (     0,  -173)  ->  Abs (  1021,   673)
+	 10: Rel (     0,  -636)  ->  Abs (  1021,    37)
+	 11: Rel (     0,   -48)  ->  Abs (  1021,   -11)
+	 12: Rel (   -42,     0)  ->  Abs (   979,   -11)
+	 13: Rel (   -42,     0)  ->  Abs (   937,   -11)
+	 14: Rel (     0,    48)  ->  Abs (   937,    37)
+	 15: Rel (     0,   640)  ->  Abs (   937,   677)
+	 16: Rel (     0,   109)  ->  Abs (   937,   786)
+	 17: Rel (   -71,   109)  ->  Abs (   866,   895)
+	 18: Rel (  -657,  -858)  ->  Abs (   209,    37)
+	 19: Rel (     0,   556)  ->  Abs (   209,   593)
+	 20: Rel (     0,    48)  ->  Abs (   209,   641)
+	 21: Rel (    42,     0)  ->  Abs (   251,   641)
+	 22: Rel (    42,     0)  ->  Abs (   293,   641)
+	 23: Rel (     0,   -48)  ->  Abs (   293,   593)
+	 24: Rel (     0,  -556)  ->  Abs (   293,    37)
+	 25: Rel (     0,   -48)  ->  Abs (   293,   -11)
+	 26: Rel (   -42,     0)  ->  Abs (   251,   -11)
+	 27: Rel (   -42,     0)  ->  Abs (   209,   -11)
+
+	Glyph 677: off = 0x00024AC4, len = 82
+	  numberOfContours:	1
+	  xMin:			375
+	  yMin:			-11
+	  xMax:			693
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	38
+	00000: PUSHB[5]              9    10     1    59     5 
+	00006: PUSHW[1]            812 
+	00009: NPUSHB      (15):     0    32    15     6     1     6     6     0     3    63 
+	                             3    79     3     3     3 
+	00026: MDAP[rd]   
+	00027: DELTAP1    
+	00028: SHP[rp1,zp0] 
+	00029: MDAP[rd]   
+	00030: DELTAP1    
+	00031: MIRP[nrp0,md,rd,1] 
+	00032: SVTCA[y-axis] 
+	00033: MIAP[rd+ci] 
+	00034: MIRP[nrp0,md,rd,1] 
+	00035: MIAP[rd+ci] 
+	00036: IUP[y]     
+	00037: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               On
+	  7:        XDual                         On
+	  8:        XDual         Y-Short         Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   609,   895)  ->  Abs (   609,   895)
+	  1: Rel (  -186,     0)  ->  Abs (   423,   895)
+	  2: Rel (   -48,     0)  ->  Abs (   375,   895)
+	  3: Rel (     0,    42)  ->  Abs (   375,   937)
+	  4: Rel (     0,    42)  ->  Abs (   375,   979)
+	  5: Rel (    48,     0)  ->  Abs (   423,   979)
+	  6: Rel (   270,     0)  ->  Abs (   693,   979)
+	  7: Rel (     0,  -942)  ->  Abs (   693,    37)
+	  8: Rel (     0,   -48)  ->  Abs (   693,   -11)
+	  9: Rel (   -42,     0)  ->  Abs (   651,   -11)
+	 10: Rel (   -42,     0)  ->  Abs (   609,   -11)
+	 11: Rel (     0,    48)  ->  Abs (   609,    37)
+
+	Glyph 678: off = 0x00024B16, len = 120
+	  numberOfContours:	1
+	  xMin:			329
+	  yMin:			-11
+	  xMax:			912
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  20
+
+	  Length of Instructions:	57
+	00000: NPUSHB       (9):    16    10    11     0    10    10     1    59     5 
+	00011: PUSHW[1]            812 
+	00014: NPUSHB      (20):    11     0     8     3    19    32    79    14    95    14 
+	                             2    14    14     8    16     3   112     3     2     3 
+	00036: MDAP[rd]   
+	00037: DELTAP1    
+	00038: MDAP[rd]   
+	00039: SHP[rp1,zp0] 
+	00040: MDAP[rd]   
+	00041: DELTAP1    
+	00042: MIRP[nrp0,md,rd,1] 
+	00043: SRP1       
+	00044: SRP2       
+	00045: IP         
+	00046: IP         
+	00047: SVTCA[y-axis] 
+	00048: MIAP[rd+ci] 
+	00049: MIRP[srp0,md,rd,1] 
+	00050: ALIGNRP    
+	00051: SRP1       
+	00052: IP         
+	00053: IP         
+	00054: MIAP[rd+ci] 
+	00055: IUP[y]     
+	00056: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual                         On
+	 15:        XDual         Y-Short         Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:        XDual                         On
+	 20:  YDual XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   664,   895)  ->  Abs (   664,   895)
+	  1: Rel (  -287,     0)  ->  Abs (   377,   895)
+	  2: Rel (   -48,     0)  ->  Abs (   329,   895)
+	  3: Rel (     0,    42)  ->  Abs (   329,   937)
+	  4: Rel (     0,    42)  ->  Abs (   329,   979)
+	  5: Rel (    48,     0)  ->  Abs (   377,   979)
+	  6: Rel (   487,     0)  ->  Abs (   864,   979)
+	  7: Rel (    48,     0)  ->  Abs (   912,   979)
+	  8: Rel (     0,   -42)  ->  Abs (   912,   937)
+	  9: Rel (     0,   -42)  ->  Abs (   912,   895)
+	 10: Rel (   -48,     0)  ->  Abs (   864,   895)
+	 11: Rel (   -51,     0)  ->  Abs (   813,   895)
+	 12: Rel (  -156,     0)  ->  Abs (   657,   895)
+	 13: Rel (     0,  -247)  ->  Abs (   657,   648)
+	 14: Rel (     0,  -611)  ->  Abs (   657,    37)
+	 15: Rel (     0,   -48)  ->  Abs (   657,   -11)
+	 16: Rel (   -42,     0)  ->  Abs (   615,   -11)
+	 17: Rel (   -42,     0)  ->  Abs (   573,   -11)
+	 18: Rel (     0,    48)  ->  Abs (   573,    37)
+	 19: Rel (     0,   639)  ->  Abs (   573,   676)
+	 20: Rel (     0,   166)  ->  Abs (   573,   842)
+
+	Glyph 679: off = 0x00024B8E, len = 140
+	  numberOfContours:	1
+	  xMin:			146
+	  yMin:			-11
+	  xMax:			1083
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  23
+
+	  Length of Instructions:	69
+	00000: NPUSHB      (13):    14    21    10     0    18    17    11     4    10    10 
+	                             1    59     5 
+	00015: PUSHW[1]            812 
+	00018: PUSHB[5]              8     8    17    32    11 
+	00024: PUSHW[1]            -64 
+	00027: PUSHB[4]             10    13    52    11 
+	00032: PUSHW[1]            843 
+	00035: PUSHB[6]             25     3     3    18    32     0 
+	00042: PUSHW[2]            842    24 
+	00047: SRP0       
+	00048: MIRP[srp0,nmd,rd,2] 
+	00049: MIRP[nrp0,md,rd,1] 
+	00050: SHP[rp1,zp0] 
+	00051: MDAP[rd]   
+	00052: SRP0       
+	00053: MIRP[srp0,nmd,rd,0] 
+	00054: CALL       
+	00055: MIRP[nrp0,md,rd,1] 
+	00056: SHP[rp1,zp0] 
+	00057: MDAP[rd]   
+	00058: SVTCA[y-axis] 
+	00059: MIAP[rd+ci] 
+	00060: MIRP[srp0,md,rd,1] 
+	00061: ALIGNRP    
+	00062: SRP1       
+	00063: SLOOP      
+	00064: IP         
+	00065: MIAP[rd+ci] 
+	00066: ALIGNRP    
+	00067: IUP[y]     
+	00068: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short On
+	 12:        XDual                         On
+	 13:        XDual         Y-Short         Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:        XDual                         On
+	 18:  YDual                               On
+	 19:        XDual                         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   330,   895)  ->  Abs (   330,   895)
+	  1: Rel (  -136,     0)  ->  Abs (   194,   895)
+	  2: Rel (   -48,     0)  ->  Abs (   146,   895)
+	  3: Rel (     0,    42)  ->  Abs (   146,   937)
+	  4: Rel (     0,    42)  ->  Abs (   146,   979)
+	  5: Rel (    48,     0)  ->  Abs (   194,   979)
+	  6: Rel (   841,     0)  ->  Abs (  1035,   979)
+	  7: Rel (    48,     0)  ->  Abs (  1083,   979)
+	  8: Rel (     0,   -42)  ->  Abs (  1083,   937)
+	  9: Rel (     0,   -42)  ->  Abs (  1083,   895)
+	 10: Rel (   -48,     0)  ->  Abs (  1035,   895)
+	 11: Rel (  -137,     0)  ->  Abs (   898,   895)
+	 12: Rel (     0,  -858)  ->  Abs (   898,    37)
+	 13: Rel (     0,   -48)  ->  Abs (   898,   -11)
+	 14: Rel (   -42,     0)  ->  Abs (   856,   -11)
+	 15: Rel (   -42,     0)  ->  Abs (   814,   -11)
+	 16: Rel (     0,    48)  ->  Abs (   814,    37)
+	 17: Rel (     0,   858)  ->  Abs (   814,   895)
+	 18: Rel (  -400,     0)  ->  Abs (   414,   895)
+	 19: Rel (     0,  -858)  ->  Abs (   414,    37)
+	 20: Rel (     0,   -48)  ->  Abs (   414,   -11)
+	 21: Rel (   -42,     0)  ->  Abs (   372,   -11)
+	 22: Rel (   -42,     0)  ->  Abs (   330,   -11)
+	 23: Rel (     0,    48)  ->  Abs (   330,    37)
+
+	Glyph 680: off = 0x00024C1A, len = 220
+	  numberOfContours:	1
+	  xMin:			104
+	  yMin:			-11
+	  xMax:			1021
+	  yMax:			989
+
+	EndPoints
+	---------
+	  0:  32
+
+	  Length of Instructions:	126
+	00000: PUSHB[6]            182    23   187    25     2     2 
+	00007: PUSHW[1]            -29 
+	00010: PUSHB[3]              4    29    23 
+	00014: PUSHW[1]            -29 
+	00017: NPUSHB      (15):    25    29     3    91    24    10    13    64     9    12 
+	                            52    13     8    59    19 
+	00034: PUSHW[1]            388 
+	00037: PUSHB[3]             28    59    32 
+	00041: PUSHW[1]            812 
+	00044: NPUSHB      (23):    15    16    63    16     2    16    91    10    64     9 
+	                            10    52    10    64    16    17    52    10    10     6 
+	                            32    21    21 
+	00069: PUSHW[1]            841 
+	00072: NPUSHB      (12):    34   111    30     1    30    30     0    32   240    27 
+	                             1    27 
+	00086: PUSHW[2]            844    33 
+	00091: SRP0       
+	00092: MIRP[srp0,nmd,rd,2] 
+	00093: DELTAP1    
+	00094: MIRP[nrp0,md,rd,1] 
+	00095: SHP[rp1,zp0] 
+	00096: MDAP[rd]   
+	00097: DELTAP1    
+	00098: SRP0       
+	00099: MIRP[srp0,nmd,rd,2] 
+	00100: MDAP[rd]   
+	00101: MIRP[srp0,md,rd,1] 
+	00102: SHP[rp2,zp1] 
+	00103: MDAP[rd]   
+	00104: CALL       
+	00105: CALL       
+	00106: MIRP[nrp0,md,rd,1] 
+	00107: DELTAP1    
+	00108: SVTCA[y-axis] 
+	00109: MIAP[rd+ci] 
+	00110: MIRP[nrp0,md,rd,1] 
+	00111: MIRP[srp0,nmd,rd,0] 
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: MDAP[rd]   
+	00114: CALL       
+	00115: MIAP[rd+ci] 
+	00116: MIRP[nrp0,md,rd,1] 
+	00117: IUP[y]     
+	00118: IUP[x]     
+	00119: SVTCA[x-axis] 
+	00120: SHPIX      
+	00121: SHPIX      
+	00122: SHPIX      
+	00123: SHPIX      
+	00124: SVTCA[x-axis] 
+	00125: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:  YDual                               On
+	  4:  YDual                               Off
+	  5:  YDual XDual         Y-Short         On
+	  6:        XDual                         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual                         On
+	 23:        XDual                         Off
+	 24:  YDual                               On
+	 25:  YDual                               Off
+	 26:        XDual                         On
+	 27:        XDual                         On
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   400,   979)  ->  Abs (   400,   979)
+	  1: Rel (     0,  -664)  ->  Abs (   400,   315)
+	  2: Rel (     0,  -242)  ->  Abs (   400,    73)
+	  3: Rel (   267,     0)  ->  Abs (   667,    73)
+	  4: Rel (   270,     0)  ->  Abs (   937,    73)
+	  5: Rel (     0,   253)  ->  Abs (   937,   326)
+	  6: Rel (     0,   460)  ->  Abs (   937,   786)
+	  7: Rel (     0,   118)  ->  Abs (   937,   904)
+	  8: Rel (  -101,     0)  ->  Abs (   836,   904)
+	  9: Rel (  -100,     0)  ->  Abs (   736,   904)
+	 10: Rel (     0,  -117)  ->  Abs (   736,   787)
+	 11: Rel (     0,   -59)  ->  Abs (   736,   728)
+	 12: Rel (     0,   -48)  ->  Abs (   736,   680)
+	 13: Rel (   -42,     0)  ->  Abs (   694,   680)
+	 14: Rel (   -42,     0)  ->  Abs (   652,   680)
+	 15: Rel (     0,    48)  ->  Abs (   652,   728)
+	 16: Rel (     0,    59)  ->  Abs (   652,   787)
+	 17: Rel (     0,    92)  ->  Abs (   652,   879)
+	 18: Rel (    99,   110)  ->  Abs (   751,   989)
+	 19: Rel (    81,     0)  ->  Abs (   832,   989)
+	 20: Rel (   189,     0)  ->  Abs (  1021,   989)
+	 21: Rel (     0,  -194)  ->  Abs (  1021,   795)
+	 22: Rel (     0,  -498)  ->  Abs (  1021,   297)
+	 23: Rel (     0,  -308)  ->  Abs (  1021,   -11)
+	 24: Rel (  -352,     0)  ->  Abs (   669,   -11)
+	 25: Rel (  -353,     0)  ->  Abs (   316,   -11)
+	 26: Rel (     0,   308)  ->  Abs (   316,   297)
+	 27: Rel (     0,   598)  ->  Abs (   316,   895)
+	 28: Rel (  -164,     0)  ->  Abs (   152,   895)
+	 29: Rel (   -48,     0)  ->  Abs (   104,   895)
+	 30: Rel (     0,    42)  ->  Abs (   104,   937)
+	 31: Rel (     0,    42)  ->  Abs (   104,   979)
+	 32: Rel (    48,     0)  ->  Abs (   152,   979)
+
+	Glyph 681: off = 0x00024CF6, len = 76
+	  numberOfContours:	1
+	  xMin:			371
+	  yMin:			539
+	  xMax:			703
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	32
+	00000: PUSHB[7]             16     9     1     9     1    59     5 
+	00008: PUSHW[1]            812 
+	00011: PUSHB[8]              6    32     0     0     0     3     1     3 
+	00020: MDAP[rd]   
+	00021: DELTAP1    
+	00022: SHP[rp1,zp0] 
+	00023: MDAP[rd]   
+	00024: MIRP[nrp0,md,rd,1] 
+	00025: SVTCA[y-axis] 
+	00026: MIAP[rd+ci] 
+	00027: MIRP[nrp0,md,rd,1] 
+	00028: MDAP[rd]   
+	00029: DELTAP1    
+	00030: IUP[y]     
+	00031: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               On
+	  7:        XDual                         On
+	  8:        XDual         Y-Short         Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   619,   895)  ->  Abs (   619,   895)
+	  1: Rel (  -200,     0)  ->  Abs (   419,   895)
+	  2: Rel (   -48,     0)  ->  Abs (   371,   895)
+	  3: Rel (     0,    42)  ->  Abs (   371,   937)
+	  4: Rel (     0,    42)  ->  Abs (   371,   979)
+	  5: Rel (    48,     0)  ->  Abs (   419,   979)
+	  6: Rel (   284,     0)  ->  Abs (   703,   979)
+	  7: Rel (     0,  -392)  ->  Abs (   703,   587)
+	  8: Rel (     0,   -48)  ->  Abs (   703,   539)
+	  9: Rel (   -42,     0)  ->  Abs (   661,   539)
+	 10: Rel (   -42,     0)  ->  Abs (   619,   539)
+	 11: Rel (     0,    48)  ->  Abs (   619,   587)
+
+	Glyph 682: off = 0x00024D42, len = 126
+	  numberOfContours:	1
+	  xMin:			149
+	  yMin:			-223
+	  xMax:			1063
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  18
+
+	  Length of Instructions:	68
+	00000: PUSHB[3]             12    59    18 
+	00004: PUSHW[1]            815 
+	00007: PUSHB[7]             11     0    10    10     1    59     5 
+	00015: PUSHW[1]            812 
+	00018: NPUSHB      (10):    15    15     8     0    32    11    11     8     8     3 
+	00030: PUSHW[1]            -64 
+	00033: NPUSHB      (11):    20    36    52     0     3    96     3   128     3     3 
+	                             3 
+	00046: MDAP[rd]   
+	00047: DELTAP1    
+	00048: CALL       
+	00049: SHP[rp1,zp0] 
+	00050: MDAP[rd]   
+	00051: SHP[rp1,zp0] 
+	00052: MDAP[rd]   
+	00053: MIRP[nrp0,md,rd,1] 
+	00054: SRP1       
+	00055: SHP[rp1,zp0] 
+	00056: MDAP[rd]   
+	00057: SVTCA[y-axis] 
+	00058: MIAP[rd+ci] 
+	00059: MIRP[srp0,md,rd,1] 
+	00060: ALIGNRP    
+	00061: SRP1       
+	00062: IP         
+	00063: IP         
+	00064: MIAP[rd+ci] 
+	00065: MIRP[nrp0,md,rd,1] 
+	00066: IUP[y]     
+	00067: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short On
+	 12:        XDual                         On
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   761,   895)  ->  Abs (   761,   895)
+	  1: Rel (  -564,     0)  ->  Abs (   197,   895)
+	  2: Rel (   -48,     0)  ->  Abs (   149,   895)
+	  3: Rel (     0,    42)  ->  Abs (   149,   937)
+	  4: Rel (     0,    42)  ->  Abs (   149,   979)
+	  5: Rel (    48,     0)  ->  Abs (   197,   979)
+	  6: Rel (   818,     0)  ->  Abs (  1015,   979)
+	  7: Rel (    48,     0)  ->  Abs (  1063,   979)
+	  8: Rel (     0,   -42)  ->  Abs (  1063,   937)
+	  9: Rel (     0,   -42)  ->  Abs (  1063,   895)
+	 10: Rel (   -48,     0)  ->  Abs (  1015,   895)
+	 11: Rel (  -170,     0)  ->  Abs (   845,   895)
+	 12: Rel (     0, -1034)  ->  Abs (   845,  -139)
+	 13: Rel (   151,     0)  ->  Abs (   996,  -139)
+	 14: Rel (    48,     0)  ->  Abs (  1044,  -139)
+	 15: Rel (     0,   -42)  ->  Abs (  1044,  -181)
+	 16: Rel (     0,   -42)  ->  Abs (  1044,  -223)
+	 17: Rel (   -48,     0)  ->  Abs (   996,  -223)
+	 18: Rel (  -235,     0)  ->  Abs (   761,  -223)
+
+	Glyph 683: off = 0x00024DC0, len = 150
+	  numberOfContours:	1
+	  xMin:			180
+	  yMin:			0
+	  xMax:			1015
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	82
+	00000: NPUSHB      (34):    23     1    39     1   148     1   165     1     4   133 
+	                             3   217     3   216    11   233     3   232    11     5 
+	                            88    13   104    13   132     1     3    13    10    11 
+	                            35    15    59    19 
+	00036: PUSHW[1]            812 
+	00039: NPUSHB      (20):     9    59     5    10    12    32    47     2     1     2 
+	                            17    17    79     7    95     7   111     7     3     7 
+	00061: MDAP[rd]   
+	00062: DELTAP1    
+	00063: SHP[rp1,zp0] 
+	00064: MDAP[rd]   
+	00065: MDAP[rd]   
+	00066: DELTAP1    
+	00067: MIRP[nrp0,md,rd,1] 
+	00068: SVTCA[y-axis] 
+	00069: MIAP[rd+ci] 
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: MIAP[rd+ci] 
+	00072: MIRP[nrp0,md,rd,1] 
+	00073: IUP[y]     
+	00074: IUP[x]     
+	00075: SVTCA[x-axis] 
+	00076: SHPIX      
+	00077: SHPIX      
+	00078: SVTCA[x-axis] 
+	00079: DELTAP1    
+	00080: DELTAP1    
+	00081: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               Off
+	  2:        XDual                         On
+	  3:        XDual                         Off
+	  4:  YDual                               On
+	  5:  YDual                               On
+	  6:  YDual                       X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual                               On
+	 11:  YDual                               Off
+	 12:        XDual                         On
+	 13:        XDual                         Off
+	 14:  YDual                               On
+	 15:  YDual                               On
+	 16:  YDual                       X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   568,   979)  ->  Abs (   568,   979)
+	  1: Rel (   447,     0)  ->  Abs (  1015,   979)
+	  2: Rel (     0,  -458)  ->  Abs (  1015,   521)
+	  3: Rel (     0,  -521)  ->  Abs (  1015,     0)
+	  4: Rel (  -446,     0)  ->  Abs (   569,     0)
+	  5: Rel (  -341,     0)  ->  Abs (   228,     0)
+	  6: Rel (   -48,     0)  ->  Abs (   180,     0)
+	  7: Rel (     0,    42)  ->  Abs (   180,    42)
+	  8: Rel (     0,    42)  ->  Abs (   180,    84)
+	  9: Rel (    48,     0)  ->  Abs (   228,    84)
+	 10: Rel (   346,     0)  ->  Abs (   574,    84)
+	 11: Rel (   355,     0)  ->  Abs (   929,    84)
+	 12: Rel (     0,   435)  ->  Abs (   929,   519)
+	 13: Rel (     0,   376)  ->  Abs (   929,   895)
+	 14: Rel (  -329,     0)  ->  Abs (   600,   895)
+	 15: Rel (  -372,     0)  ->  Abs (   228,   895)
+	 16: Rel (   -48,     0)  ->  Abs (   180,   895)
+	 17: Rel (     0,    42)  ->  Abs (   180,   937)
+	 18: Rel (     0,    42)  ->  Abs (   180,   979)
+	 19: Rel (    48,     0)  ->  Abs (   228,   979)
+
+	Glyph 684: off = 0x00024E56, len = 238
+	  numberOfContours:	1
+	  xMin:			192
+	  yMin:			0
+	  xMax:			949
+	  yMax:			1289
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	150
+	00000: NPUSHB      (71):    52     3    48    19    52    20    85    18     4    31 
+	                            19   108    19   124    19   223    19   223    20   251 
+	                            21     6    27     4    27    21    44     3    47    20 
+	                            47    21     5   114     3   132     3   175    19   175 
+	                            20     4     5     3    20     3    79    19     3    19 
+	                            21    21    36     3     5    20     3     3     5    20 
+	                             4    19     3    24    59     0    10    12     9    59 
+	                            15 
+	00073: PUSHW[1]            812 
+	00076: NPUSHB      (32):     0    32    24    24    15    27    63    27     2    27 
+	                            27     8    32    48    16    95    16     2    16    15 
+	                            32     9    64    21    47    52     9    64    13    15 
+	                            52     9 
+	00110: MDAP[rd]   
+	00111: CALL       
+	00112: CALL       
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: MDAP[rd]   
+	00115: DELTAP1    
+	00116: MIRP[nrp0,md,rd,1] 
+	00117: SHP[rp1,zp0] 
+	00118: MDAP[rd]   
+	00119: DELTAP1    
+	00120: SHP[rp1,zp0] 
+	00121: MDAP[rd]   
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: SVTCA[y-axis] 
+	00124: MIAP[rd+ci] 
+	00125: MIRP[nrp0,md,rd,1] 
+	00126: MDAP[rd]   
+	00127: MIAP[rd+ci] 
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: SRP1       
+	00130: SRP2       
+	00131: IP         
+	00132: IP         
+	00133: SDPVTL[1]  
+	00134: SFVTPV     
+	00135: MDAP[nrd]  
+	00136: CALL       
+	00137: SFVTPV     
+	00138: RDTG       
+	00139: SRP0       
+	00140: MDRP[nrp0,nmd,rd,0] 
+	00141: IUP[y]     
+	00142: IUP[x]     
+	00143: SVTCA[y-axis] 
+	00144: DELTAP2    
+	00145: DELTAP2    
+	00146: DELTAP1    
+	00147: DELTAP1    
+	00148: SVTCA[x-axis] 
+	00149: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short         Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual                               On
+	 10:        XDual                         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual                         On
+	 16:  YDual                               On
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:                      Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         On
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   532,     0)  ->  Abs (   532,     0)
+	  1: Rel (     0,   158)  ->  Abs (   532,   158)
+	  2: Rel (     0,   128)  ->  Abs (   532,   286)
+	  3: Rel (    89,   134)  ->  Abs (   621,   420)
+	  4: Rel (   123,    62)  ->  Abs (   744,   482)
+	  5: Rel (    81,    41)  ->  Abs (   825,   523)
+	  6: Rel (    40,    99)  ->  Abs (   865,   622)
+	  7: Rel (     0,   103)  ->  Abs (   865,   725)
+	  8: Rel (     0,   170)  ->  Abs (   865,   895)
+	  9: Rel (  -673,     0)  ->  Abs (   192,   895)
+	 10: Rel (     0,   346)  ->  Abs (   192,  1241)
+	 11: Rel (     0,    48)  ->  Abs (   192,  1289)
+	 12: Rel (    42,     0)  ->  Abs (   234,  1289)
+	 13: Rel (    42,     0)  ->  Abs (   276,  1289)
+	 14: Rel (     0,   -48)  ->  Abs (   276,  1241)
+	 15: Rel (     0,  -262)  ->  Abs (   276,   979)
+	 16: Rel (   673,     0)  ->  Abs (   949,   979)
+	 17: Rel (     0,  -254)  ->  Abs (   949,   725)
+	 18: Rel (     0,  -164)  ->  Abs (   949,   561)
+	 19: Rel (   -81,  -107)  ->  Abs (   868,   454)
+	 20: Rel (   -84,   -43)  ->  Abs (   784,   411)
+	 21: Rel (   -98,   -51)  ->  Abs (   686,   360)
+	 22: Rel (   -70,  -108)  ->  Abs (   616,   252)
+	 23: Rel (     0,  -109)  ->  Abs (   616,   143)
+	 24: Rel (     0,   -59)  ->  Abs (   616,    84)
+	 25: Rel (   140,     0)  ->  Abs (   756,    84)
+	 26: Rel (    48,     0)  ->  Abs (   804,    84)
+	 27: Rel (     0,   -42)  ->  Abs (   804,    42)
+	 28: Rel (     0,   -42)  ->  Abs (   804,     0)
+	 29: Rel (   -48,     0)  ->  Abs (   756,     0)
+
+	Glyph 685: off = 0x00024F44, len = 152
+	  numberOfContours:	2
+	  xMin:			109
+	  yMin:			0
+	  xMax:			996
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  22
+
+	  Length of Instructions:	78
+	00000: PUSHW[4]             12   -16    11   -22 
+	00009: NPUSHB      (15):     4    16     3    16    22    59     1    10    19     4 
+	                            18    18     5    59     9 
+	00026: PUSHW[1]            812 
+	00029: PUSHB[6]             19     4     7    14    32     0 
+	00036: PUSHW[1]            837 
+	00039: PUSHB[6]             24     7     7    22    32     1 
+	00046: PUSHW[2]            838    23 
+	00051: SRP0       
+	00052: MIRP[srp0,nmd,rd,2] 
+	00053: MIRP[nrp0,md,rd,1] 
+	00054: SHP[rp1,zp0] 
+	00055: MDAP[rd]   
+	00056: SRP0       
+	00057: MIRP[srp0,nmd,rd,2] 
+	00058: MIRP[nrp0,md,rd,1] 
+	00059: SRP1       
+	00060: IP         
+	00061: IP         
+	00062: SVTCA[y-axis] 
+	00063: MIAP[rd+ci] 
+	00064: MIRP[srp0,md,rd,1] 
+	00065: ALIGNRP    
+	00066: SRP1       
+	00067: IP         
+	00068: IP         
+	00069: MIAP[rd+ci] 
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: IUP[y]     
+	00072: IUP[x]     
+	00073: SVTCA[x-axis] 
+	00074: SHPIX      
+	00075: SHPIX      
+	00076: SHPIX      
+	00077: SHPIX      
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                               On
+	  2:        XDual                         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual                               On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:                              X-Short On
+	 15:        XDual                         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   996,     0)  ->  Abs (   996,     0)
+	  1: Rel (  -728,     0)  ->  Abs (   268,     0)
+	  2: Rel (     0,   676)  ->  Abs (   268,   676)
+	  3: Rel (     0,   161)  ->  Abs (   268,   837)
+	  4: Rel (    96,    58)  ->  Abs (   364,   895)
+	  5: Rel (  -207,     0)  ->  Abs (   157,   895)
+	  6: Rel (   -48,     0)  ->  Abs (   109,   895)
+	  7: Rel (     0,    42)  ->  Abs (   109,   937)
+	  8: Rel (     0,    42)  ->  Abs (   109,   979)
+	  9: Rel (    48,     0)  ->  Abs (   157,   979)
+	 10: Rel (   550,     0)  ->  Abs (   707,   979)
+	 11: Rel (   167,     0)  ->  Abs (   874,   979)
+	 12: Rel (   122,  -144)  ->  Abs (   996,   835)
+	 13: Rel (     0,  -148)  ->  Abs (   996,   687)
+	 14: Rel (   -84,  -603)  ->  Abs (   912,    84)
+	 15: Rel (     0,   594)  ->  Abs (   912,   678)
+	 16: Rel (     0,   143)  ->  Abs (   912,   821)
+	 17: Rel (  -103,    74)  ->  Abs (   809,   895)
+	 18: Rel (  -103,     0)  ->  Abs (   706,   895)
+	 19: Rel (  -193,     0)  ->  Abs (   513,   895)
+	 20: Rel (  -161,     0)  ->  Abs (   352,   895)
+	 21: Rel (     0,  -246)  ->  Abs (   352,   649)
+	 22: Rel (     0,  -565)  ->  Abs (   352,    84)
+
+	Glyph 686: off = 0x00024FDC, len = 244
+	  numberOfContours:	1
+	  xMin:			133
+	  yMin:			-11
+	  xMax:			1005
+	  yMax:			990
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	157
+	00000: PUSHW[4]              4   -22     1   -22 
+	00009: NPUSHB      (45):   148     4   159    17   164     4   175    17   183     1 
+	                           190    17     6     4     4    66     1   123    13   121 
+	                            17     4    15     1   143     1   143    17   220    13 
+	                           235    13   244     4     6   149     1   149    17   197 
+	                             1   198    17     4     2 
+	00056: PUSHW[3]            -16     1   -16 
+	00063: NPUSHB      (19):    13    16    18     1     0     7    21    10    11    59 
+	                             7    10    15    59     3   189    25    59    29 
+	00084: PUSHW[1]            812 
+	00087: PUSHB[8]             15     9     1     9     9    12    32     6 
+	00096: PUSHW[1]            846 
+	00099: NPUSHB      (11):    31    27    27    24    18     1    19    19     0    32 
+	                            24 
+	00112: PUSHW[2]            845    30 
+	00117: SRP0       
+	00118: MIRP[srp0,nmd,rd,2] 
+	00119: MIRP[srp0,md,rd,1] 
+	00120: ALIGNRP    
+	00121: SRP1       
+	00122: IP         
+	00123: IP         
+	00124: SRP1       
+	00125: SHP[rp1,zp0] 
+	00126: MDAP[rd]   
+	00127: SRP0       
+	00128: MIRP[srp0,nmd,rd,2] 
+	00129: MIRP[srp0,md,rd,1] 
+	00130: SHP[rp2,zp1] 
+	00131: MDAP[rd]   
+	00132: DELTAP1    
+	00133: SVTCA[y-axis] 
+	00134: MIAP[rd+ci] 
+	00135: MIRP[nrp0,md,rd,1] 
+	00136: MIRP[srp0,nmd,rd,0] 
+	00137: MIRP[nrp0,md,rd,1] 
+	00138: MIAP[rd+ci] 
+	00139: MIRP[nrp0,md,rd,1] 
+	00140: MIAP[rd+ci] 
+	00141: SRP1       
+	00142: SRP2       
+	00143: IP         
+	00144: IP         
+	00145: IUP[y]     
+	00146: IUP[x]     
+	00147: SHPIX      
+	00148: SHPIX      
+	00149: SHPIX      
+	00150: SVTCA[y-axis] 
+	00151: DELTAP1    
+	00152: DELTAP1    
+	00153: DELTAP2    
+	00154: DELTAP2    
+	00155: SHPIX      
+	00156: SHPIX      
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual                               Off
+	  5:        XDual                         On
+	  6:        XDual                         On
+	  7:  YDual                               On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual                         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual                         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:        XDual                         On
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   376,   979)  ->  Abs (   376,   979)
+	  1: Rel (     0,  -190)  ->  Abs (   376,   789)
+	  2: Rel (   114,   201)  ->  Abs (   490,   990)
+	  3: Rel (   213,     0)  ->  Abs (   703,   990)
+	  4: Rel (   302,     0)  ->  Abs (  1005,   990)
+	  5: Rel (     0,  -286)  ->  Abs (  1005,   704)
+	  6: Rel (     0,  -704)  ->  Abs (  1005,     0)
+	  7: Rel (  -288,     0)  ->  Abs (   717,     0)
+	  8: Rel (   -48,     0)  ->  Abs (   669,     0)
+	  9: Rel (     0,    42)  ->  Abs (   669,    42)
+	 10: Rel (     0,    42)  ->  Abs (   669,    84)
+	 11: Rel (    48,     0)  ->  Abs (   717,    84)
+	 12: Rel (   204,     0)  ->  Abs (   921,    84)
+	 13: Rel (     0,   596)  ->  Abs (   921,   680)
+	 14: Rel (     0,   224)  ->  Abs (   921,   904)
+	 15: Rel (  -224,     0)  ->  Abs (   697,   904)
+	 16: Rel (  -134,     0)  ->  Abs (   563,   904)
+	 17: Rel (  -187,  -246)  ->  Abs (   376,   658)
+	 18: Rel (     0,  -121)  ->  Abs (   376,   537)
+	 19: Rel (     0,  -500)  ->  Abs (   376,    37)
+	 20: Rel (     0,   -48)  ->  Abs (   376,   -11)
+	 21: Rel (   -42,     0)  ->  Abs (   334,   -11)
+	 22: Rel (   -42,     0)  ->  Abs (   292,   -11)
+	 23: Rel (     0,    48)  ->  Abs (   292,    37)
+	 24: Rel (     0,   858)  ->  Abs (   292,   895)
+	 25: Rel (  -111,     0)  ->  Abs (   181,   895)
+	 26: Rel (   -48,     0)  ->  Abs (   133,   895)
+	 27: Rel (     0,    42)  ->  Abs (   133,   937)
+	 28: Rel (     0,    42)  ->  Abs (   133,   979)
+	 29: Rel (    48,     0)  ->  Abs (   181,   979)
+
+	Glyph 687: off = 0x000250D0, len = 104
+	  numberOfContours:	1
+	  xMin:			374
+	  yMin:			-223
+	  xMax:			897
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	55
+	00000: PUSHB[3]              7    59    13 
+	00004: PUSHW[1]            815 
+	00007: PUSHB[3]              1    59     5 
+	00011: PUSHW[3]            812    10   695 
+	00018: PUSHB[5]              7     7     6    32     0 
+	00024: PUSHW[1]            695 
+	00027: NPUSHB      (11):     0     3     1     0     3    80     3    96     3     3 
+	                             3 
+	00040: MDAP[rd]   
+	00041: DELTAP1    
+	00042: DELTAP2    
+	00043: MIRP[srp0,nmd,rd,0] 
+	00044: MIRP[srp0,md,rd,1] 
+	00045: ALIGNRP    
+	00046: SRP0       
+	00047: MIRP[nrp0,nmd,rd,0] 
+	00048: SVTCA[y-axis] 
+	00049: MIAP[rd+ci] 
+	00050: MIRP[nrp0,md,rd,1] 
+	00051: MIAP[rd+ci] 
+	00052: MIRP[nrp0,md,rd,1] 
+	00053: IUP[y]     
+	00054: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               On
+	  7:        XDual                         On
+	  8:        XDual         Y-Short X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   619,   895)  ->  Abs (   619,   895)
+	  1: Rel (  -197,     0)  ->  Abs (   422,   895)
+	  2: Rel (   -48,     0)  ->  Abs (   374,   895)
+	  3: Rel (     0,    42)  ->  Abs (   374,   937)
+	  4: Rel (     0,    42)  ->  Abs (   374,   979)
+	  5: Rel (    48,     0)  ->  Abs (   422,   979)
+	  6: Rel (   281,     0)  ->  Abs (   703,   979)
+	  7: Rel (     0, -1116)  ->  Abs (   703,  -137)
+	  8: Rel (   146,    -2)  ->  Abs (   849,  -139)
+	  9: Rel (    48,     0)  ->  Abs (   897,  -139)
+	 10: Rel (     0,   -42)  ->  Abs (   897,  -181)
+	 11: Rel (     0,   -42)  ->  Abs (   897,  -223)
+	 12: Rel (   -48,     0)  ->  Abs (   849,  -223)
+	 13: Rel (  -230,     0)  ->  Abs (   619,  -223)
+
+	Glyph 688: off = 0x00025138, len = 92
+	  numberOfContours:	1
+	  xMin:			284
+	  yMin:			0
+	  xMax:			765
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	45
+	00000: PUSHB[7]              5    59     1    10     8    59    12 
+	00008: PUSHW[1]            812 
+	00011: NPUSHB      (16):    13    32    15     7     1   143     7     1     7     7 
+	                             0    10     1    10    10     3 
+	00029: MDAP[rd]   
+	00030: SHP[rp1,zp0] 
+	00031: MDAP[rd]   
+	00032: DELTAP1    
+	00033: SHP[rp1,zp0] 
+	00034: MDAP[rd]   
+	00035: DELTAP1    
+	00036: DELTAP2    
+	00037: MIRP[nrp0,md,rd,1] 
+	00038: SVTCA[y-axis] 
+	00039: MIAP[rd+ci] 
+	00040: MIRP[nrp0,md,rd,1] 
+	00041: MIAP[rd+ci] 
+	00042: MIRP[nrp0,md,rd,1] 
+	00043: IUP[y]     
+	00044: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               On
+	  7:        XDual                         On
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   765,     0)  ->  Abs (   765,     0)
+	  1: Rel (  -433,     0)  ->  Abs (   332,     0)
+	  2: Rel (   -48,     0)  ->  Abs (   284,     0)
+	  3: Rel (     0,    42)  ->  Abs (   284,    42)
+	  4: Rel (     0,    42)  ->  Abs (   284,    84)
+	  5: Rel (    48,     0)  ->  Abs (   332,    84)
+	  6: Rel (   349,     0)  ->  Abs (   681,    84)
+	  7: Rel (     0,   811)  ->  Abs (   681,   895)
+	  8: Rel (  -197,     0)  ->  Abs (   484,   895)
+	  9: Rel (   -48,     0)  ->  Abs (   436,   895)
+	 10: Rel (     0,    42)  ->  Abs (   436,   937)
+	 11: Rel (     0,    42)  ->  Abs (   436,   979)
+	 12: Rel (    48,     0)  ->  Abs (   484,   979)
+	 13: Rel (   281,     0)  ->  Abs (   765,   979)
+
+	Glyph 689: off = 0x00025194, len = 188
+	  numberOfContours:	2
+	  xMin:			79
+	  yMin:			-11
+	  xMax:			996
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  15
+	  1:  25
+
+	  Length of Instructions:	102
+	00000: NPUSHB      (43):   186    14     1    70    12    77    14     2    54    12 
+	                            61    14     2   150    11   155    14   166    11   171 
+	                            14   201    14   217    14     6    11    22    12    22 
+	                            14    22    24    59    13    10    21     0    20    20 
+	                             1    59     5 
+	00045: PUSHW[1]            812 
+	00048: PUSHB[3]             17    32     9 
+	00052: PUSHW[1]            837 
+	00055: NPUSHB      (11):    27     3    64    15    19    52     3     3    21    32 
+	                             0 
+	00068: PUSHW[2]            839    26 
+	00073: SRP0       
+	00074: MIRP[srp0,nmd,rd,2] 
+	00075: MIRP[nrp0,md,rd,1] 
+	00076: SHP[rp1,zp0] 
+	00077: MDAP[rd]   
+	00078: CALL       
+	00079: SRP0       
+	00080: MIRP[srp0,nmd,rd,2] 
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SVTCA[y-axis] 
+	00083: MIAP[rd+ci] 
+	00084: MIRP[srp0,md,rd,1] 
+	00085: ALIGNRP    
+	00086: SRP1       
+	00087: IP         
+	00088: IP         
+	00089: MIAP[rd+ci] 
+	00090: MIRP[nrp0,md,rd,1] 
+	00091: IUP[y]     
+	00092: IUP[x]     
+	00093: SHPIX      
+	00094: SHPIX      
+	00095: SHPIX      
+	00096: SVTCA[x-axis] 
+	00097: DELTAP1    
+	00098: DELTAP2    
+	00099: DELTAP2    
+	00100: SVTCA[y-axis] 
+	00101: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual                         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                               Off
+	 15:        XDual                         On
+	 16:  YDual               Y-Short         On
+	 17:        XDual                         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                               On
+	 22:        XDual                         On
+	 23:        XDual         Y-Short         Off
+	 24:  YDual                               On
+	 25:  YDual                               Off
+
+	Coordinates
+	-----------
+	  0: Rel (   289,   895)  ->  Abs (   289,   895)
+	  1: Rel (  -162,     0)  ->  Abs (   127,   895)
+	  2: Rel (   -48,     0)  ->  Abs (    79,   895)
+	  3: Rel (     0,    42)  ->  Abs (    79,   937)
+	  4: Rel (     0,    42)  ->  Abs (    79,   979)
+	  5: Rel (    48,     0)  ->  Abs (   127,   979)
+	  6: Rel (   578,     0)  ->  Abs (   705,   979)
+	  7: Rel (   173,     0)  ->  Abs (   878,   979)
+	  8: Rel (   118,  -148)  ->  Abs (   996,   831)
+	  9: Rel (     0,  -144)  ->  Abs (   996,   687)
+	 10: Rel (     0,  -397)  ->  Abs (   996,   290)
+	 11: Rel (     0,  -156)  ->  Abs (   996,   134)
+	 12: Rel (  -202,  -145)  ->  Abs (   794,   -11)
+	 13: Rel (  -145,     0)  ->  Abs (   649,   -11)
+	 14: Rel (  -360,     0)  ->  Abs (   289,   -11)
+	 15: Rel (     0,   306)  ->  Abs (   289,   295)
+	 16: Rel (   623,    11)  ->  Abs (   912,   306)
+	 17: Rel (     0,   376)  ->  Abs (   912,   682)
+	 18: Rel (     0,   106)  ->  Abs (   912,   788)
+	 19: Rel (   -75,   107)  ->  Abs (   837,   895)
+	 20: Rel (  -132,     0)  ->  Abs (   705,   895)
+	 21: Rel (  -332,     0)  ->  Abs (   373,   895)
+	 22: Rel (     0,  -589)  ->  Abs (   373,   306)
+	 23: Rel (     0,  -233)  ->  Abs (   373,    73)
+	 24: Rel (   268,     0)  ->  Abs (   641,    73)
+	 25: Rel (   271,     0)  ->  Abs (   912,    73)
+
+	Glyph 690: off = 0x00025250, len = 196
+	  numberOfContours:	1
+	  xMin:			192
+	  yMin:			0
+	  xMax:			984
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  26
+
+	  Length of Instructions:	116
+	00000: NPUSHB      (22):   147     2   149    19   162     2   162    19     4    35 
+	                             2    66     2    84     2   101     2     4    20     2 
+	                             1     2 
+	00024: PUSHW[1]            -16 
+	00027: NPUSHB      (17):    19    16     9    17     8     8    18    59     3    10 
+	                            22    59    26    26    11    59    15 
+	00046: PUSHW[1]            812 
+	00049: PUSHB[8]             15    24     1    24    24    21    32     0 
+	00058: PUSHW[1]            848 
+	00061: NPUSHB      (13):    28     6     6    13    13    16    32   159    10   175 
+	                            10     2    10 
+	00076: PUSHW[2]            847    27 
+	00081: SRP0       
+	00082: MIRP[srp0,nmd,rd,2] 
+	00083: DELTAP1    
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: SHP[rp1,zp0] 
+	00086: MDAP[rd]   
+	00087: SHP[rp1,zp0] 
+	00088: MDAP[rd]   
+	00089: SRP0       
+	00090: MIRP[srp0,nmd,rd,2] 
+	00091: MIRP[srp0,md,rd,1] 
+	00092: SHP[rp2,zp1] 
+	00093: MDAP[rd]   
+	00094: DELTAP1    
+	00095: SVTCA[y-axis] 
+	00096: MIAP[rd+ci] 
+	00097: MIRP[nrp0,md,rd,1] 
+	00098: ALIGNRP    
+	00099: SRP0       
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: MIAP[rd+ci] 
+	00102: MIRP[srp0,md,rd,1] 
+	00103: ALIGNRP    
+	00104: SRP1       
+	00105: IP         
+	00106: IP         
+	00107: IUP[y]     
+	00108: IUP[x]     
+	00109: SVTCA[x-axis] 
+	00110: SHPIX      
+	00111: SHPIX      
+	00112: SVTCA[x-axis] 
+	00113: DELTAP2    
+	00114: DELTAP1    
+	00115: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual                         Off
+	  3:  YDual                               On
+	  4:  YDual                               On
+	  5:  YDual                       X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual                               Off
+	 20:        XDual                         On
+	 21:        XDual                         On
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   984,   979)  ->  Abs (   984,   979)
+	  1: Rel (     0,  -450)  ->  Abs (   984,   529)
+	  2: Rel (     0,  -529)  ->  Abs (   984,     0)
+	  3: Rel (  -440,     0)  ->  Abs (   544,     0)
+	  4: Rel (  -297,     0)  ->  Abs (   247,     0)
+	  5: Rel (   -48,     0)  ->  Abs (   199,     0)
+	  6: Rel (     0,    42)  ->  Abs (   199,    42)
+	  7: Rel (     0,    42)  ->  Abs (   199,    84)
+	  8: Rel (    48,     0)  ->  Abs (   247,    84)
+	  9: Rel (   122,     0)  ->  Abs (   369,    84)
+	 10: Rel (     0,   811)  ->  Abs (   369,   895)
+	 11: Rel (  -129,     0)  ->  Abs (   240,   895)
+	 12: Rel (   -48,     0)  ->  Abs (   192,   895)
+	 13: Rel (     0,    42)  ->  Abs (   192,   937)
+	 14: Rel (     0,    42)  ->  Abs (   192,   979)
+	 15: Rel (    48,     0)  ->  Abs (   240,   979)
+	 16: Rel (   213,     0)  ->  Abs (   453,   979)
+	 17: Rel (     0,  -895)  ->  Abs (   453,    84)
+	 18: Rel (    93,     0)  ->  Abs (   546,    84)
+	 19: Rel (   354,     0)  ->  Abs (   900,    84)
+	 20: Rel (     0,   441)  ->  Abs (   900,   525)
+	 21: Rel (     0,   370)  ->  Abs (   900,   895)
+	 22: Rel (  -128,     0)  ->  Abs (   772,   895)
+	 23: Rel (   -48,     0)  ->  Abs (   724,   895)
+	 24: Rel (     0,    42)  ->  Abs (   724,   937)
+	 25: Rel (     0,    42)  ->  Abs (   724,   979)
+	 26: Rel (    48,     0)  ->  Abs (   772,   979)
+
+	Glyph 691: off = 0x00025314, len = 176
+	  numberOfContours:	1
+	  xMin:			242
+	  yMin:			-223
+	  xMax:			1105
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  26
+
+	  Length of Instructions:	97
+	00000: PUSHW[2]             15   -22 
+	00005: PUSHB[8]             25    22   213    15     1    17    59    23 
+	00014: PUSHW[1]            815 
+	00017: PUSHB[3]             10    59     4 
+	00021: PUSHW[1]            371 
+	00024: PUSHB[3]              0    59    13 
+	00028: PUSHW[3]            812    20   399 
+	00035: NPUSHB      (18):    17    17    24    32    79    16    95    16   159    16 
+	                             3    16   112     7   144     7     2     7 
+	00055: PUSHW[1]            -64 
+	00058: NPUSHB      (11):    10    13    52     7     7     0    32   208    13     1 
+	                            13 
+	00071: MDAP[rd]   
+	00072: DELTAP1    
+	00073: MIRP[srp0,md,rd,1] 
+	00074: SHP[rp2,zp1] 
+	00075: MDAP[rd]   
+	00076: CALL       
+	00077: DELTAP1    
+	00078: MDAP[rd]   
+	00079: DELTAP1    
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: ALIGNRP    
+	00082: SRP0       
+	00083: MIRP[nrp0,nmd,rd,0] 
+	00084: SVTCA[y-axis] 
+	00085: MIAP[rd+ci] 
+	00086: MIRP[nrp0,md,rd,1] 
+	00087: MIRP[srp0,nmd,rd,0] 
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: MIAP[rd+ci] 
+	00090: MIRP[nrp0,md,rd,1] 
+	00091: IUP[y]     
+	00092: IUP[x]     
+	00093: SVTCA[x-axis] 
+	00094: DELTAP1    
+	00095: SHPIX      
+	00096: SHPIX      
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:        XDual                         On
+	 14:  YDual                               On
+	 15:  YDual                               Off
+	 16:        XDual                         On
+	 17:        XDual                         On
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short On
+	 24:        XDual                         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   326,   895)  ->  Abs (   326,   895)
+	  1: Rel (     0,  -296)  ->  Abs (   326,   599)
+	  2: Rel (     0,   -71)  ->  Abs (   326,   528)
+	  3: Rel (    61,   -73)  ->  Abs (   387,   455)
+	  4: Rel (   107,     0)  ->  Abs (   494,   455)
+	  5: Rel (   124,     0)  ->  Abs (   618,   455)
+	  6: Rel (    48,     0)  ->  Abs (   666,   455)
+	  7: Rel (     0,   -42)  ->  Abs (   666,   413)
+	  8: Rel (     0,   -42)  ->  Abs (   666,   371)
+	  9: Rel (   -48,     0)  ->  Abs (   618,   371)
+	 10: Rel (  -126,     0)  ->  Abs (   492,   371)
+	 11: Rel (  -250,     0)  ->  Abs (   242,   371)
+	 12: Rel (     0,   214)  ->  Abs (   242,   585)
+	 13: Rel (     0,   394)  ->  Abs (   242,   979)
+	 14: Rel (   408,     0)  ->  Abs (   650,   979)
+	 15: Rel (   293,     0)  ->  Abs (   943,   979)
+	 16: Rel (     0,  -289)  ->  Abs (   943,   690)
+	 17: Rel (     0,  -829)  ->  Abs (   943,  -139)
+	 18: Rel (   114,     0)  ->  Abs (  1057,  -139)
+	 19: Rel (    48,     0)  ->  Abs (  1105,  -139)
+	 20: Rel (     0,   -42)  ->  Abs (  1105,  -181)
+	 21: Rel (     0,   -42)  ->  Abs (  1105,  -223)
+	 22: Rel (   -48,     0)  ->  Abs (  1057,  -223)
+	 23: Rel (  -198,     0)  ->  Abs (   859,  -223)
+	 24: Rel (     0,   901)  ->  Abs (   859,   678)
+	 25: Rel (     0,   217)  ->  Abs (   859,   895)
+	 26: Rel (  -219,     0)  ->  Abs (   640,   895)
+
+	Glyph 692: off = 0x000253C4, len = 198
+	  numberOfContours:	1
+	  xMin:			250
+	  yMin:			0
+	  xMax:			959
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  30
+
+	  Length of Instructions:	107
+	00000: NPUSHB      (15):   244     2   245     5     2     6     2     1    16    32 
+	                            13    29    29    16    21 
+	00017: PUSHW[3]            -10     5   -10 
+	00024: NPUSHB      (12):    28    59    22    22     0    11    59     7    10    18 
+	                            59     0 
+	00038: PUSHW[3]            812    25   -64 
+	00045: PUSHB[4]              9    13    52    25 
+	00050: PUSHW[1]            665 
+	00053: NPUSHB      (19):    19    19    18    15    32    79     3   159     3     2 
+	                             3     9     9    18    32    48     0     1     0 
+	00074: MDAP[rd]   
+	00075: DELTAP1    
+	00076: MIRP[nrp0,md,rd,1] 
+	00077: SHP[rp1,zp0] 
+	00078: MDAP[rd]   
+	00079: MDAP[rd]   
+	00080: DELTAP1    
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SRP0       
+	00083: ALIGNRP    
+	00084: SRP0       
+	00085: MIRP[nrp0,nmd,rd,0] 
+	00086: CALL       
+	00087: SVTCA[y-axis] 
+	00088: MIAP[rd+ci] 
+	00089: MIRP[nrp0,md,rd,1] 
+	00090: MIAP[rd+ci] 
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: SRP2       
+	00093: IP         
+	00094: MDAP[rd]   
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: IUP[y]     
+	00097: IUP[x]     
+	00098: SVTCA[x-axis] 
+	00099: SHPIX      
+	00100: SHPIX      
+	00101: SHPIX      
+	00102: SHPIX      
+	00103: SHPIX      
+	00104: SVTCA[x-axis] 
+	00105: DELTAP2    
+	00106: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                               Off
+	  3:        XDual                         On
+	  4:        XDual                         On
+	  5:        XDual                         Off
+	  6:  YDual                               On
+	  7:  YDual                               On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual                               On
+	 13:  YDual XDual                 X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:        XDual                         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                               On
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   258,   979)  ->  Abs (   258,   979)
+	  1: Rel (   408,     0)  ->  Abs (   666,   979)
+	  2: Rel (   293,     0)  ->  Abs (   959,   979)
+	  3: Rel (     0,  -289)  ->  Abs (   959,   690)
+	  4: Rel (     0,  -401)  ->  Abs (   959,   289)
+	  5: Rel (     0,  -289)  ->  Abs (   959,     0)
+	  6: Rel (  -293,     0)  ->  Abs (   666,     0)
+	  7: Rel (  -368,     0)  ->  Abs (   298,     0)
+	  8: Rel (   -48,     0)  ->  Abs (   250,     0)
+	  9: Rel (     0,    42)  ->  Abs (   250,    42)
+	 10: Rel (     0,    42)  ->  Abs (   250,    84)
+	 11: Rel (    48,     0)  ->  Abs (   298,    84)
+	 12: Rel (   358,     0)  ->  Abs (   656,    84)
+	 13: Rel (   219,     0)  ->  Abs (   875,    84)
+	 14: Rel (     0,   217)  ->  Abs (   875,   301)
+	 15: Rel (     0,   377)  ->  Abs (   875,   678)
+	 16: Rel (     0,   217)  ->  Abs (   875,   895)
+	 17: Rel (  -219,     0)  ->  Abs (   656,   895)
+	 18: Rel (  -314,     0)  ->  Abs (   342,   895)
+	 19: Rel (     0,  -236)  ->  Abs (   342,   659)
+	 20: Rel (     0,   -71)  ->  Abs (   342,   588)
+	 21: Rel (    61,   -73)  ->  Abs (   403,   515)
+	 22: Rel (   107,     0)  ->  Abs (   510,   515)
+	 23: Rel (   118,     0)  ->  Abs (   628,   515)
+	 24: Rel (    48,     0)  ->  Abs (   676,   515)
+	 25: Rel (     0,   -42)  ->  Abs (   676,   473)
+	 26: Rel (     0,   -42)  ->  Abs (   676,   431)
+	 27: Rel (   -48,     0)  ->  Abs (   628,   431)
+	 28: Rel (  -120,     0)  ->  Abs (   508,   431)
+	 29: Rel (  -250,     0)  ->  Abs (   258,   431)
+	 30: Rel (     0,   214)  ->  Abs (   258,   645)
+
+	Glyph 693: off = 0x0002548A, len = 196
+	  numberOfContours:	1
+	  xMin:			222
+	  yMin:			-223
+	  xMax:			970
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  28
+
+	  Length of Instructions:	114
+	00000: PUSHW[4]             13   -16    14   -22 
+	00009: NPUSHB      (18):     3    10   218     2   216    13     2     8    13     1 
+	                            15    59     1     1    28    16    59    22 
+	00029: PUSHW[1]            815 
+	00032: PUSHB[7]              6    91    10    10    24    59    28 
+	00040: PUSHW[1]            812 
+	00043: NPUSHB      (37):    15     8     1     8   160     5    32    47    11    79 
+	                            11     2    11    19   160    16    16     0    32    26 
+	                           160     0    23    16    23    48    23    80    23    96 
+	                            23   128    23   208    23     7    23 
+	00082: MDAP[rd]   
+	00083: DELTAP1    
+	00084: MIRP[nrp0,nmd,rd,0] 
+	00085: MIRP[srp0,md,rd,1] 
+	00086: ALIGNRP    
+	00087: SRP0       
+	00088: MIRP[nrp0,nmd,rd,0] 
+	00089: MDAP[rd]   
+	00090: DELTAP1    
+	00091: MIRP[srp0,md,rd,1] 
+	00092: MIRP[nrp0,nmd,rd,0] 
+	00093: DELTAP1    
+	00094: SVTCA[y-axis] 
+	00095: MIAP[rd+ci] 
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: ALIGNRP    
+	00098: SRP0       
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: MIAP[rd+ci] 
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: SRP2       
+	00103: IP         
+	00104: MDAP[rd]   
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: IUP[y]     
+	00107: IUP[x]     
+	00108: SVTCA[x-axis] 
+	00109: DELTAP1    
+	00110: DELTAP2    
+	00111: SHPIX      
+	00112: SHPIX      
+	00113: SHPIX      
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:        XDual                         On
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short On
+	 23:        XDual                         On
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   517,   979)  ->  Abs (   517,   979)
+	  1: Rel (     0,  -520)  ->  Abs (   517,   459)
+	  2: Rel (   183,    42)  ->  Abs (   700,   501)
+	  3: Rel (   186,   207)  ->  Abs (   886,   708)
+	  4: Rel (     0,   130)  ->  Abs (   886,   838)
+	  5: Rel (     0,    57)  ->  Abs (   886,   895)
+	  6: Rel (  -158,     0)  ->  Abs (   728,   895)
+	  7: Rel (   -48,     0)  ->  Abs (   680,   895)
+	  8: Rel (     0,    42)  ->  Abs (   680,   937)
+	  9: Rel (     0,    42)  ->  Abs (   680,   979)
+	 10: Rel (    48,     0)  ->  Abs (   728,   979)
+	 11: Rel (   242,     0)  ->  Abs (   970,   979)
+	 12: Rel (     0,  -142)  ->  Abs (   970,   837)
+	 13: Rel (     0,  -175)  ->  Abs (   970,   662)
+	 14: Rel (  -241,  -249)  ->  Abs (   729,   413)
+	 15: Rel (  -212,   -38)  ->  Abs (   517,   375)
+	 16: Rel (     0,  -514)  ->  Abs (   517,  -139)
+	 17: Rel (   146,     0)  ->  Abs (   663,  -139)
+	 18: Rel (    48,     0)  ->  Abs (   711,  -139)
+	 19: Rel (     0,   -42)  ->  Abs (   711,  -181)
+	 20: Rel (     0,   -42)  ->  Abs (   711,  -223)
+	 21: Rel (   -48,     0)  ->  Abs (   663,  -223)
+	 22: Rel (  -230,     0)  ->  Abs (   433,  -223)
+	 23: Rel (     0,  1118)  ->  Abs (   433,   895)
+	 24: Rel (  -163,     0)  ->  Abs (   270,   895)
+	 25: Rel (   -48,     0)  ->  Abs (   222,   895)
+	 26: Rel (     0,    42)  ->  Abs (   222,   937)
+	 27: Rel (     0,    42)  ->  Abs (   222,   979)
+	 28: Rel (    48,     0)  ->  Abs (   270,   979)
+
+	Glyph 694: off = 0x0002554E, len = 278
+	  numberOfContours:	1
+	  xMin:			162
+	  yMin:			0
+	  xMax:			954
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  36
+
+	  Length of Instructions:	175
+	00000: NPUSHB      (36):    42    29    52    16    69     3    70    16   102     3 
+	                           109    29     6    15    22    16    22    54     3    62 
+	                            15    71     3   119     4   127    15   243    15     6 
+	                            19    15    22    16     2    16 
+	00038: PUSHW[5]            -29    15   -22    14   -22 
+	00049: NPUSHB      (21):     0     3    16     3    16    30    29    28     5    36 
+	                            24    59    20    10     7    59    11    11    32    59 
+	                            36 
+	00072: PUSHW[1]            812 
+	00075: NPUSHB      (52):    25    32    47    19     1    15    19    31    19    95 
+	                            19   127    19     4    19    19    22    15     9    31 
+	                             9   111     9   127     9     4     9   160     6    32 
+	                            47    12   127    12   191    12     3    12    22    22 
+	                            34     0    32   240    31     1    31   160     0    34 
+	                             1    34 
+	00129: MDAP[rd]   
+	00130: DELTAP1    
+	00131: MIRP[srp0,nmd,rd,0] 
+	00132: DELTAP1    
+	00133: MIRP[nrp0,md,rd,1] 
+	00134: SRP1       
+	00135: SHP[rp1,zp0] 
+	00136: MDAP[rd]   
+	00137: MDAP[rd]   
+	00138: DELTAP1    
+	00139: MIRP[srp0,md,rd,1] 
+	00140: MIRP[nrp0,nmd,rd,0] 
+	00141: DELTAP1    
+	00142: SRP1       
+	00143: SHP[rp1,zp0] 
+	00144: MDAP[rd]   
+	00145: DELTAP1    
+	00146: DELTAP2    
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: SVTCA[y-axis] 
+	00149: MIAP[rd+ci] 
+	00150: MIRP[nrp0,md,rd,1] 
+	00151: ALIGNRP    
+	00152: SRP0       
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: MIAP[rd+ci] 
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: SRP2       
+	00157: SLOOP      
+	00158: IP         
+	00159: SVTCA[x-axis] 
+	00160: SRP1       
+	00161: SHP[rp1,zp0] 
+	00162: SHP[rp1,zp0] 
+	00163: IUP[y]     
+	00164: IUP[x]     
+	00165: SHPIX      
+	00166: SHPIX      
+	00167: SHPIX      
+	00168: SVTCA[y-axis] 
+	00169: DELTAP3    
+	00170: DELTAP2    
+	00171: SHPIX      
+	00172: SHPIX      
+	00173: SVTCA[x-axis] 
+	00174: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:        XDual         Y-Short         Off
+	  3:        XDual         Y-Short X-Short On
+	  4:  YDual               Y-Short         Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         On
+	 20:  YDual                               On
+	 21:  YDual                       X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual                               On
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   427,   979)  ->  Abs (   427,   979)
+	  1: Rel (     0,   -60)  ->  Abs (   427,   919)
+	  2: Rel (     0,  -228)  ->  Abs (   427,   691)
+	  3: Rel (   183,  -168)  ->  Abs (   610,   523)
+	  4: Rel (   258,    76)  ->  Abs (   868,   599)
+	  5: Rel (     0,   239)  ->  Abs (   868,   838)
+	  6: Rel (     0,    57)  ->  Abs (   868,   895)
+	  7: Rel (  -159,     0)  ->  Abs (   709,   895)
+	  8: Rel (   -48,     0)  ->  Abs (   661,   895)
+	  9: Rel (     0,    42)  ->  Abs (   661,   937)
+	 10: Rel (     0,    42)  ->  Abs (   661,   979)
+	 11: Rel (    48,     0)  ->  Abs (   709,   979)
+	 12: Rel (   245,     0)  ->  Abs (   954,   979)
+	 13: Rel (     0,  -142)  ->  Abs (   954,   837)
+	 14: Rel (     0,  -173)  ->  Abs (   954,   664)
+	 15: Rel (  -146,  -155)  ->  Abs (   808,   509)
+	 16: Rel (  -134,   -50)  ->  Abs (   674,   459)
+	 17: Rel (   160,  -162)  ->  Abs (   834,   297)
+	 18: Rel (     0,  -179)  ->  Abs (   834,   118)
+	 19: Rel (     0,  -118)  ->  Abs (   834,     0)
+	 20: Rel (  -436,     0)  ->  Abs (   398,     0)
+	 21: Rel (   -48,     0)  ->  Abs (   350,     0)
+	 22: Rel (     0,    42)  ->  Abs (   350,    42)
+	 23: Rel (     0,    42)  ->  Abs (   350,    84)
+	 24: Rel (    48,     0)  ->  Abs (   398,    84)
+	 25: Rel (   351,     0)  ->  Abs (   749,    84)
+	 26: Rel (     0,    35)  ->  Abs (   749,   119)
+	 27: Rel (     0,    91)  ->  Abs (   749,   210)
+	 28: Rel (   -76,   124)  ->  Abs (   673,   334)
+	 29: Rel (  -148,   152)  ->  Abs (   525,   486)
+	 30: Rel (  -184,   188)  ->  Abs (   341,   674)
+	 31: Rel (     0,   221)  ->  Abs (   341,   895)
+	 32: Rel (  -131,     0)  ->  Abs (   210,   895)
+	 33: Rel (   -48,     0)  ->  Abs (   162,   895)
+	 34: Rel (     0,    42)  ->  Abs (   162,   937)
+	 35: Rel (     0,    42)  ->  Abs (   162,   979)
+	 36: Rel (    48,     0)  ->  Abs (   210,   979)
+
+	Glyph 695: off = 0x00025664, len = 226
+	  numberOfContours:	2
+	  xMin:			197
+	  yMin:			-417
+	  xMax:			1017
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  27
+	  1:  37
+
+	  Length of Instructions:	118
+	00000: PUSHB[6]             39     2    55     3     2    19 
+	00007: PUSHW[1]            -16 
+	00010: NPUSHB      (18):     3    16     5    16     4    16     3     5     5    36 
+	                            17    19    20    17    17    19    31    36 
+	00030: PUSHW[1]            816 
+	00033: PUSHB[7]              8    59    14    10    23    59    27 
+	00041: PUSHW[3]            812    11   353 
+	00048: NPUSHB      (30):     8    32    47    14     1    14    14    34    22    32 
+	                            47     0    79     0   111     0   143     0     4     0 
+	                            34    32    28    28    25    64    13    15    52    25 
+	00080: MDAP[rd]   
+	00081: CALL       
+	00082: SHP[rp1,zp0] 
+	00083: MDAP[rd]   
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: MDAP[rd]   
+	00086: DELTAP1    
+	00087: MIRP[nrp0,md,rd,1] 
+	00088: SRP1       
+	00089: SHP[rp1,zp0] 
+	00090: MDAP[rd]   
+	00091: DELTAP1    
+	00092: MIRP[srp0,md,rd,1] 
+	00093: MIRP[nrp0,nmd,rd,0] 
+	00094: SVTCA[y-axis] 
+	00095: MIAP[rd+ci] 
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: MIAP[rd+ci] 
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: MIAP[rd+ci] 
+	00100: MDAP[rd]   
+	00101: SDPVTL[1]  
+	00102: SFVTPV     
+	00103: MDAP[nrd]  
+	00104: CALL       
+	00105: SFVTPV     
+	00106: RDTG       
+	00107: SRP0       
+	00108: MDRP[nrp0,nmd,rd,0] 
+	00109: IUP[y]     
+	00110: IUP[x]     
+	00111: SVTCA[y-axis] 
+	00112: SHPIX      
+	00113: SHPIX      
+	00114: SHPIX      
+	00115: SHPIX      
+	00116: SVTCA[x-axis] 
+	00117: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:        XDual         Y-Short         Off
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         On
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short On
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual                               On
+	 24:  YDual                       X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual                 X-Short On
+	 28:        XDual                 X-Short On
+	 29:        XDual                         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual                         On
+	 35:        XDual         Y-Short         Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1017,   979)  ->  Abs (  1017,   979)
+	  1: Rel (     0,  -254)  ->  Abs (  1017,   725)
+	  2: Rel (     0,  -164)  ->  Abs (  1017,   561)
+	  3: Rel (   -81,  -107)  ->  Abs (   936,   454)
+	  4: Rel (   -84,   -43)  ->  Abs (   852,   411)
+	  5: Rel (   -98,   -51)  ->  Abs (   754,   360)
+	  6: Rel (   -70,  -108)  ->  Abs (   684,   252)
+	  7: Rel (     0,  -109)  ->  Abs (   684,   143)
+	  8: Rel (     0,   -59)  ->  Abs (   684,    84)
+	  9: Rel (   140,     0)  ->  Abs (   824,    84)
+	 10: Rel (    48,     0)  ->  Abs (   872,    84)
+	 11: Rel (     0,   -42)  ->  Abs (   872,    42)
+	 12: Rel (     0,   -42)  ->  Abs (   872,     0)
+	 13: Rel (   -48,     0)  ->  Abs (   824,     0)
+	 14: Rel (  -224,     0)  ->  Abs (   600,     0)
+	 15: Rel (     0,   158)  ->  Abs (   600,   158)
+	 16: Rel (     0,   128)  ->  Abs (   600,   286)
+	 17: Rel (    89,   134)  ->  Abs (   689,   420)
+	 18: Rel (   123,    62)  ->  Abs (   812,   482)
+	 19: Rel (    82,    41)  ->  Abs (   894,   523)
+	 20: Rel (    39,   102)  ->  Abs (   933,   625)
+	 21: Rel (     0,   100)  ->  Abs (   933,   725)
+	 22: Rel (     0,   170)  ->  Abs (   933,   895)
+	 23: Rel (  -688,     0)  ->  Abs (   245,   895)
+	 24: Rel (   -48,     0)  ->  Abs (   197,   895)
+	 25: Rel (     0,    42)  ->  Abs (   197,   937)
+	 26: Rel (     0,    42)  ->  Abs (   197,   979)
+	 27: Rel (    48,     0)  ->  Abs (   245,   979)
+	 28: Rel (     1, -1348)  ->  Abs (   246,  -369)
+	 29: Rel (     0,   962)  ->  Abs (   246,   593)
+	 30: Rel (     0,    48)  ->  Abs (   246,   641)
+	 31: Rel (    42,     0)  ->  Abs (   288,   641)
+	 32: Rel (    42,     0)  ->  Abs (   330,   641)
+	 33: Rel (     0,   -48)  ->  Abs (   330,   593)
+	 34: Rel (     0,  -962)  ->  Abs (   330,  -369)
+	 35: Rel (     0,   -48)  ->  Abs (   330,  -417)
+	 36: Rel (   -42,     0)  ->  Abs (   288,  -417)
+	 37: Rel (   -42,     0)  ->  Abs (   246,  -417)
+
+	Glyph 696: off = 0x00025746, len = 96
+	  numberOfContours:	1
+	  xMin:			172
+	  yMin:			-11
+	  xMax:			952
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	36
+	00000: PUSHB[5]             12    10     1    59     5 
+	00006: PUSHW[1]            812 
+	00009: NPUSHB      (15):    15    32    16     9    48     9    80     9    96     9 
+	                           128     9     5     9     3 
+	00026: MDAP[rd]   
+	00027: MDAP[rd]   
+	00028: DELTAP1    
+	00029: MIRP[nrp0,md,rd,1] 
+	00030: SVTCA[y-axis] 
+	00031: MIAP[rd+ci] 
+	00032: MIRP[nrp0,md,rd,1] 
+	00033: MIAP[rd+ci] 
+	00034: IUP[y]     
+	00035: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual                         On
+	 11:        XDual         Y-Short         Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:        XDual                         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   676,   895)  ->  Abs (   676,   895)
+	  1: Rel (  -456,     0)  ->  Abs (   220,   895)
+	  2: Rel (   -48,     0)  ->  Abs (   172,   895)
+	  3: Rel (     0,    42)  ->  Abs (   172,   937)
+	  4: Rel (     0,    42)  ->  Abs (   172,   979)
+	  5: Rel (    48,     0)  ->  Abs (   220,   979)
+	  6: Rel (   426,     0)  ->  Abs (   646,   979)
+	  7: Rel (   172,     0)  ->  Abs (   818,   979)
+	  8: Rel (   134,  -132)  ->  Abs (   952,   847)
+	  9: Rel (     0,  -174)  ->  Abs (   952,   673)
+	 10: Rel (     0,  -636)  ->  Abs (   952,    37)
+	 11: Rel (     0,   -48)  ->  Abs (   952,   -11)
+	 12: Rel (   -42,     0)  ->  Abs (   910,   -11)
+	 13: Rel (   -42,     0)  ->  Abs (   868,   -11)
+	 14: Rel (     0,    48)  ->  Abs (   868,    37)
+	 15: Rel (     0,   640)  ->  Abs (   868,   677)
+	 16: Rel (     0,   109)  ->  Abs (   868,   786)
+	 17: Rel (   -71,   109)  ->  Abs (   797,   895)
+
+	Glyph 697: off = 0x000257A6, len = 232
+	  numberOfContours:	1
+	  xMin:			204
+	  yMin:			0
+	  xMax:			1024
+	  yMax:			990
+
+	EndPoints
+	---------
+	  0:  36
+
+	  Length of Instructions:	132
+	00000: NPUSHB       (9):     0    31     1     1    30    91    16    10    34 
+	00011: PUSHW[1]            812 
+	00014: PUSHB[5]              6    26    59    10    20 
+	00020: PUSHW[1]            812 
+	00023: NPUSHB      (33):    36    32   159    32     1    32    32    11    20     8 
+	                            64     9    14    52     8   232     5    32    15    11 
+	                            31    11     2    95    11   128    11     2   224    11 
+	                             1    11    23 
+	00058: PUSHW[1]            -64 
+	00061: NPUSHB      (36):     9    14    52    23   232    26    32    16    20    64 
+	                            20   192    20   208    20     4     0    20    16    20 
+	                            79    20    95    20    96    20   112    20   160    20 
+	                           176    20   255    20     9    20 
+	00099: MDAP[rd]   
+	00100: DELTAP1    
+	00101: DELTAP2    
+	00102: MIRP[srp0,md,rd,1] 
+	00103: MIRP[nrp0,nmd,rd,0] 
+	00104: CALL       
+	00105: MDAP[rd]   
+	00106: DELTAP1    
+	00107: DELTAP2    
+	00108: DELTAP3    
+	00109: MIRP[srp0,md,rd,1] 
+	00110: MIRP[nrp0,nmd,rd,0] 
+	00111: CALL       
+	00112: SRP1       
+	00113: SRP2       
+	00114: IP         
+	00115: MDAP[rd]   
+	00116: DELTAP2    
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: SVTCA[y-axis] 
+	00119: MIAP[rd+ci] 
+	00120: ALIGNRP    
+	00121: MIRP[srp0,md,rd,1] 
+	00122: ALIGNRP    
+	00123: MIAP[rd+ci] 
+	00124: MIAP[rd+ci] 
+	00125: MIRP[srp0,md,rd,1] 
+	00126: ALIGNRP    
+	00127: SRP1       
+	00128: IP         
+	00129: IP         
+	00130: IUP[y]     
+	00131: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:        XDual                         On
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short On
+	 27:        XDual                         On
+	 28:        XDual         Y-Short         Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short On
+	 32:        XDual                         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   656,    84)  ->  Abs (   656,    84)
+	  1: Rel (    79,     0)  ->  Abs (   735,    84)
+	  2: Rel (   131,     0)  ->  Abs (   866,    84)
+	  3: Rel (    74,   108)  ->  Abs (   940,   192)
+	  4: Rel (     0,   109)  ->  Abs (   940,   301)
+	  5: Rel (     0,   594)  ->  Abs (   940,   895)
+	  6: Rel (  -110,     0)  ->  Abs (   830,   895)
+	  7: Rel (   -48,     0)  ->  Abs (   782,   895)
+	  8: Rel (     0,    42)  ->  Abs (   782,   937)
+	  9: Rel (     0,    42)  ->  Abs (   782,   979)
+	 10: Rel (    48,     0)  ->  Abs (   830,   979)
+	 11: Rel (   194,     0)  ->  Abs (  1024,   979)
+	 12: Rel (     0,  -686)  ->  Abs (  1024,   293)
+	 13: Rel (     0,  -165)  ->  Abs (  1024,   128)
+	 14: Rel (  -137,  -128)  ->  Abs (   887,     0)
+	 15: Rel (  -153,     0)  ->  Abs (   734,     0)
+	 16: Rel (  -245,     0)  ->  Abs (   489,     0)
+	 17: Rel (  -172,     0)  ->  Abs (   317,     0)
+	 18: Rel (  -113,   153)  ->  Abs (   204,   153)
+	 19: Rel (     0,   142)  ->  Abs (   204,   295)
+	 20: Rel (     0,   684)  ->  Abs (   204,   979)
+	 21: Rel (   194,     0)  ->  Abs (   398,   979)
+	 22: Rel (    48,     0)  ->  Abs (   446,   979)
+	 23: Rel (     0,   -42)  ->  Abs (   446,   937)
+	 24: Rel (     0,   -42)  ->  Abs (   446,   895)
+	 25: Rel (   -48,     0)  ->  Abs (   398,   895)
+	 26: Rel (  -110,     0)  ->  Abs (   288,   895)
+	 27: Rel (     0,  -594)  ->  Abs (   288,   301)
+	 28: Rel (     0,  -131)  ->  Abs (   288,   170)
+	 29: Rel (    95,   -86)  ->  Abs (   383,    84)
+	 30: Rel (   109,     0)  ->  Abs (   492,    84)
+	 31: Rel (    80,     0)  ->  Abs (   572,    84)
+	 32: Rel (     0,   858)  ->  Abs (   572,   942)
+	 33: Rel (     0,    48)  ->  Abs (   572,   990)
+	 34: Rel (    42,     0)  ->  Abs (   614,   990)
+	 35: Rel (    42,     0)  ->  Abs (   656,   990)
+	 36: Rel (     0,   -48)  ->  Abs (   656,   942)
+
+	Glyph 698: off = 0x0002588E, len = 146
+	  numberOfContours:	1
+	  xMin:			160
+	  yMin:			-11
+	  xMax:			995
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  26
+
+	  Length of Instructions:	70
+	00000: NPUSHB      (13):    19    10     5    59     1    10    26     7    25    25 
+	                             8    59    12 
+	00015: PUSHW[1]            812 
+	00018: PUSHB[6]             22    32   223    16     1    16 
+	00025: PUSHW[1]            837 
+	00028: NPUSHB      (11):    28    10    10     3     3     0    32   223     6     1 
+	                             6 
+	00041: PUSHW[2]            849    27 
+	00046: SRP0       
+	00047: MIRP[srp0,nmd,rd,2] 
+	00048: DELTAP1    
+	00049: MIRP[nrp0,md,rd,1] 
+	00050: SHP[rp1,zp0] 
+	00051: MDAP[rd]   
+	00052: SHP[rp1,zp0] 
+	00053: MDAP[rd]   
+	00054: SRP0       
+	00055: MIRP[srp0,nmd,rd,2] 
+	00056: DELTAP1    
+	00057: MIRP[nrp0,md,rd,1] 
+	00058: SVTCA[y-axis] 
+	00059: MIAP[rd+ci] 
+	00060: MIRP[srp0,md,rd,1] 
+	00061: ALIGNRP    
+	00062: SRP1       
+	00063: IP         
+	00064: IP         
+	00065: MIAP[rd+ci] 
+	00066: MIRP[nrp0,md,rd,1] 
+	00067: MIAP[rd+ci] 
+	00068: IUP[y]     
+	00069: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short On
+	  7:        XDual                         On
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual                               On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual                         On
+	 18:        XDual         Y-Short         Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:        XDual                         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   421,     0)  ->  Abs (   421,     0)
+	  1: Rel (  -213,     0)  ->  Abs (   208,     0)
+	  2: Rel (   -48,     0)  ->  Abs (   160,     0)
+	  3: Rel (     0,    42)  ->  Abs (   160,    42)
+	  4: Rel (     0,    42)  ->  Abs (   160,    84)
+	  5: Rel (    48,     0)  ->  Abs (   208,    84)
+	  6: Rel (   129,     0)  ->  Abs (   337,    84)
+	  7: Rel (     0,   811)  ->  Abs (   337,   895)
+	  8: Rel (  -129,     0)  ->  Abs (   208,   895)
+	  9: Rel (   -48,     0)  ->  Abs (   160,   895)
+	 10: Rel (     0,    42)  ->  Abs (   160,   937)
+	 11: Rel (     0,    42)  ->  Abs (   160,   979)
+	 12: Rel (    48,     0)  ->  Abs (   208,   979)
+	 13: Rel (   494,     0)  ->  Abs (   702,   979)
+	 14: Rel (   176,     0)  ->  Abs (   878,   979)
+	 15: Rel (   117,  -156)  ->  Abs (   995,   823)
+	 16: Rel (     0,  -133)  ->  Abs (   995,   690)
+	 17: Rel (     0,  -653)  ->  Abs (   995,    37)
+	 18: Rel (     0,   -48)  ->  Abs (   995,   -11)
+	 19: Rel (   -42,     0)  ->  Abs (   953,   -11)
+	 20: Rel (   -42,     0)  ->  Abs (   911,   -11)
+	 21: Rel (     0,    48)  ->  Abs (   911,    37)
+	 22: Rel (     0,   640)  ->  Abs (   911,   677)
+	 23: Rel (     0,   135)  ->  Abs (   911,   812)
+	 24: Rel (  -103,    83)  ->  Abs (   808,   895)
+	 25: Rel (  -109,     0)  ->  Abs (   699,   895)
+	 26: Rel (  -278,     0)  ->  Abs (   421,   895)
+
+	Glyph 699: off = 0x00025920, len = 150
+	  numberOfContours:	2
+	  xMin:			122
+	  yMin:			-11
+	  xMax:			980
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	76
+	00000: NPUSHB      (10):     9    21    10     1    59     5     5    13    59    17 
+	00012: PUSHW[1]            812 
+	00015: NPUSHB      (19):    15    15    12    32    95    18   111    18     2    18 
+	                            18    15     3     1     3     3     0    32     6 
+	00036: PUSHW[1]            -64 
+	00039: PUSHB[7]             30    36    52   192     6     1     6 
+	00047: PUSHW[2]            837    25 
+	00052: SRP0       
+	00053: MIRP[srp0,nmd,rd,2] 
+	00054: DELTAP1    
+	00055: CALL       
+	00056: MIRP[srp0,md,rd,1] 
+	00057: SHP[rp2,zp1] 
+	00058: MDAP[rd]   
+	00059: DELTAP1    
+	00060: SHP[rp1,zp0] 
+	00061: MDAP[rd]   
+	00062: DELTAP1    
+	00063: MIRP[srp0,md,rd,1] 
+	00064: SHP[rp2,zp1] 
+	00065: MDAP[rd]   
+	00066: SVTCA[y-axis] 
+	00067: MIAP[rd+ci] 
+	00068: MIRP[nrp0,md,rd,1] 
+	00069: ALIGNRP    
+	00070: SRP0       
+	00071: MIRP[nrp0,md,rd,1] 
+	00072: MIAP[rd+ci] 
+	00073: ALIGNRP    
+	00074: IUP[y]     
+	00075: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               On
+	  7:        XDual                         On
+	  8:        XDual         Y-Short         Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:                                      On
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual                               On
+	 19:        XDual                         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   896,   895)  ->  Abs (   896,   895)
+	  1: Rel (  -186,     0)  ->  Abs (   710,   895)
+	  2: Rel (   -48,     0)  ->  Abs (   662,   895)
+	  3: Rel (     0,    42)  ->  Abs (   662,   937)
+	  4: Rel (     0,    42)  ->  Abs (   662,   979)
+	  5: Rel (    48,     0)  ->  Abs (   710,   979)
+	  6: Rel (   270,     0)  ->  Abs (   980,   979)
+	  7: Rel (     0,  -942)  ->  Abs (   980,    37)
+	  8: Rel (     0,   -48)  ->  Abs (   980,   -11)
+	  9: Rel (   -42,     0)  ->  Abs (   938,   -11)
+	 10: Rel (   -42,     0)  ->  Abs (   896,   -11)
+	 11: Rel (     0,    48)  ->  Abs (   896,    37)
+	 12: Rel (  -540,   858)  ->  Abs (   356,   895)
+	 13: Rel (  -186,     0)  ->  Abs (   170,   895)
+	 14: Rel (   -48,     0)  ->  Abs (   122,   895)
+	 15: Rel (     0,    42)  ->  Abs (   122,   937)
+	 16: Rel (     0,    42)  ->  Abs (   122,   979)
+	 17: Rel (    48,     0)  ->  Abs (   170,   979)
+	 18: Rel (   270,     0)  ->  Abs (   440,   979)
+	 19: Rel (     0,  -942)  ->  Abs (   440,    37)
+	 20: Rel (     0,   -48)  ->  Abs (   440,   -11)
+	 21: Rel (   -42,     0)  ->  Abs (   398,   -11)
+	 22: Rel (   -42,     0)  ->  Abs (   356,   -11)
+	 23: Rel (     0,    48)  ->  Abs (   356,    37)
+
+	Glyph 700: off = 0x000259B6, len = 148
+	  numberOfContours:	2
+	  xMin:			133
+	  yMin:			-11
+	  xMax:			980
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	74
+	00000: NPUSHB      (10):     9    10    21     1    59     5     5    13    59    17 
+	00012: PUSHW[1]            812 
+	00015: NPUSHB      (17):    15    15    12    32   111    18     1    18    18    15 
+	                             3     1     3     3     0    32     6 
+	00034: PUSHW[1]            -64 
+	00037: PUSHB[7]             30    36    52   192     6     1     6 
+	00045: PUSHW[2]            837    25 
+	00050: SRP0       
+	00051: MIRP[srp0,nmd,rd,2] 
+	00052: DELTAP1    
+	00053: CALL       
+	00054: MIRP[srp0,md,rd,1] 
+	00055: SHP[rp2,zp1] 
+	00056: MDAP[rd]   
+	00057: DELTAP1    
+	00058: SHP[rp1,zp0] 
+	00059: MDAP[rd]   
+	00060: DELTAP1    
+	00061: MIRP[srp0,md,rd,1] 
+	00062: SHP[rp2,zp1] 
+	00063: MDAP[rd]   
+	00064: SVTCA[y-axis] 
+	00065: MIAP[rd+ci] 
+	00066: MIRP[nrp0,md,rd,1] 
+	00067: ALIGNRP    
+	00068: SRP0       
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: MDAP[rd]   
+	00071: MIAP[rd+ci] 
+	00072: IUP[y]     
+	00073: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               On
+	  7:        XDual                         On
+	  8:        XDual         Y-Short         Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:                                      On
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual                               On
+	 19:        XDual                         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   896,   895)  ->  Abs (   896,   895)
+	  1: Rel (  -186,     0)  ->  Abs (   710,   895)
+	  2: Rel (   -48,     0)  ->  Abs (   662,   895)
+	  3: Rel (     0,    42)  ->  Abs (   662,   937)
+	  4: Rel (     0,    42)  ->  Abs (   662,   979)
+	  5: Rel (    48,     0)  ->  Abs (   710,   979)
+	  6: Rel (   270,     0)  ->  Abs (   980,   979)
+	  7: Rel (     0,  -942)  ->  Abs (   980,    37)
+	  8: Rel (     0,   -48)  ->  Abs (   980,   -11)
+	  9: Rel (   -42,     0)  ->  Abs (   938,   -11)
+	 10: Rel (   -42,     0)  ->  Abs (   896,   -11)
+	 11: Rel (     0,    48)  ->  Abs (   896,    37)
+	 12: Rel (  -535,   858)  ->  Abs (   361,   895)
+	 13: Rel (  -180,     0)  ->  Abs (   181,   895)
+	 14: Rel (   -48,     0)  ->  Abs (   133,   895)
+	 15: Rel (     0,    42)  ->  Abs (   133,   937)
+	 16: Rel (     0,    42)  ->  Abs (   133,   979)
+	 17: Rel (    48,     0)  ->  Abs (   181,   979)
+	 18: Rel (   264,     0)  ->  Abs (   445,   979)
+	 19: Rel (     0,  -392)  ->  Abs (   445,   587)
+	 20: Rel (     0,   -48)  ->  Abs (   445,   539)
+	 21: Rel (   -42,     0)  ->  Abs (   403,   539)
+	 22: Rel (   -42,     0)  ->  Abs (   361,   539)
+	 23: Rel (     0,    48)  ->  Abs (   361,   587)
+
+	Glyph 701: off = 0x00025A4A, len = 150
+	  numberOfContours:	2
+	  xMin:			133
+	  yMin:			539
+	  xMax:			980
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	75
+	00000: NPUSHB       (9):     9    21     1    59     5     5    13    59    17 
+	00011: PUSHW[1]            812 
+	00014: NPUSHB      (19):     3     3     0    32    95     6   111     6     2     6 
+	                             6    15    15     1    15    15    12    32    18 
+	00035: PUSHW[1]            -64 
+	00038: PUSHB[7]             30    36    52   192    18     1    18 
+	00046: PUSHW[2]            837    25 
+	00051: SRP0       
+	00052: MIRP[srp0,nmd,rd,2] 
+	00053: DELTAP1    
+	00054: CALL       
+	00055: MIRP[srp0,md,rd,1] 
+	00056: SHP[rp2,zp1] 
+	00057: MDAP[rd]   
+	00058: DELTAP1    
+	00059: SHP[rp1,zp0] 
+	00060: MDAP[rd]   
+	00061: DELTAP1    
+	00062: MIRP[srp0,md,rd,1] 
+	00063: SHP[rp2,zp1] 
+	00064: MDAP[rd]   
+	00065: SVTCA[y-axis] 
+	00066: MIAP[rd+ci] 
+	00067: MIRP[nrp0,md,rd,1] 
+	00068: ALIGNRP    
+	00069: SRP0       
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: MDAP[rd]   
+	00072: ALIGNRP    
+	00073: IUP[y]     
+	00074: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               On
+	  7:        XDual                         On
+	  8:        XDual         Y-Short         Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:                                      On
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual                               On
+	 19:        XDual                         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   361,   895)  ->  Abs (   361,   895)
+	  1: Rel (  -180,     0)  ->  Abs (   181,   895)
+	  2: Rel (   -48,     0)  ->  Abs (   133,   895)
+	  3: Rel (     0,    42)  ->  Abs (   133,   937)
+	  4: Rel (     0,    42)  ->  Abs (   133,   979)
+	  5: Rel (    48,     0)  ->  Abs (   181,   979)
+	  6: Rel (   264,     0)  ->  Abs (   445,   979)
+	  7: Rel (     0,  -392)  ->  Abs (   445,   587)
+	  8: Rel (     0,   -48)  ->  Abs (   445,   539)
+	  9: Rel (   -42,     0)  ->  Abs (   403,   539)
+	 10: Rel (   -42,     0)  ->  Abs (   361,   539)
+	 11: Rel (     0,    48)  ->  Abs (   361,   587)
+	 12: Rel (   535,   308)  ->  Abs (   896,   895)
+	 13: Rel (  -180,     0)  ->  Abs (   716,   895)
+	 14: Rel (   -48,     0)  ->  Abs (   668,   895)
+	 15: Rel (     0,    42)  ->  Abs (   668,   937)
+	 16: Rel (     0,    42)  ->  Abs (   668,   979)
+	 17: Rel (    48,     0)  ->  Abs (   716,   979)
+	 18: Rel (   264,     0)  ->  Abs (   980,   979)
+	 19: Rel (     0,  -392)  ->  Abs (   980,   587)
+	 20: Rel (     0,   -48)  ->  Abs (   980,   539)
+	 21: Rel (   -42,     0)  ->  Abs (   938,   539)
+	 22: Rel (   -42,     0)  ->  Abs (   896,   539)
+	 23: Rel (     0,    48)  ->  Abs (   896,   587)
+
+	Glyph 702: off = 0x00025AE0, len = 76
+	  numberOfContours:	1
+	  xMin:			447
+	  yMin:			503
+	  xMax:			782
+	  yMax:			990
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	24
+	00000: NPUSHB      (12):    31    10     1    10     3     5   193     1   160     8 
+	                           193    12 
+	00014: MDAP[rd]   
+	00015: MIRP[nrp0,md,rd,1] 
+	00016: MIRP[srp0,md,rd,0] 
+	00017: MIRP[nrp0,md,rd,1] 
+	00018: SVTCA[y-axis] 
+	00019: MDAP[rd]   
+	00020: MDAP[rd]   
+	00021: DELTAP1    
+	00022: IUP[y]     
+	00023: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                 X-Short On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short On
+	  8:                              X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   455,   598)  ->  Abs (   455,   598)
+	  1: Rel (   208,   361)  ->  Abs (   663,   959)
+	  2: Rel (    18,    31)  ->  Abs (   681,   990)
+	  3: Rel (    37,     0)  ->  Abs (   718,   990)
+	  4: Rel (    64,     0)  ->  Abs (   782,   990)
+	  5: Rel (     0,   -64)  ->  Abs (   782,   926)
+	  6: Rel (     0,   -17)  ->  Abs (   782,   909)
+	  7: Rel (    -8,   -14)  ->  Abs (   774,   895)
+	  8: Rel (  -209,  -361)  ->  Abs (   565,   534)
+	  9: Rel (   -17,   -31)  ->  Abs (   548,   503)
+	 10: Rel (   -38,     0)  ->  Abs (   510,   503)
+	 11: Rel (   -63,     0)  ->  Abs (   447,   503)
+	 12: Rel (     0,    64)  ->  Abs (   447,   567)
+	 13: Rel (     0,    17)  ->  Abs (   447,   584)
+
+	Glyph 703: off = 0x00025B2C, len = 146
+	  numberOfContours:	2
+	  xMin:			247
+	  yMin:			503
+	  xMax:			982
+	  yMax:			990
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  27
+
+	  Length of Instructions:	54
+	00000: NPUSHB      (33):    24    31    10     1    10    17     3     5   193     1 
+	                           160     8   193     0    12    16    12     2    12   174 
+	                            19   193    15   160    22   193     0    26     1     0 
+	                            26     1    26 
+	00035: MDAP[rd]   
+	00036: DELTAP1    
+	00037: DELTAP2    
+	00038: MIRP[nrp0,md,rd,1] 
+	00039: MIRP[srp0,md,rd,0] 
+	00040: MIRP[srp0,md,rd,1] 
+	00041: MIRP[srp0,md,rd,2] 
+	00042: DELTAP1    
+	00043: MIRP[nrp0,md,rd,1] 
+	00044: MIRP[srp0,md,rd,0] 
+	00045: MIRP[nrp0,md,rd,1] 
+	00046: SVTCA[y-axis] 
+	00047: MDAP[rd]   
+	00048: ALIGNRP    
+	00049: MDAP[rd]   
+	00050: DELTAP1    
+	00051: ALIGNRP    
+	00052: IUP[y]     
+	00053: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                 X-Short On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short On
+	  8:                              X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual               Y-Short         On
+	 15:        XDual                 X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short On
+	 22:                              X-Short On
+	 23:                      Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   655,   598)  ->  Abs (   655,   598)
+	  1: Rel (   208,   361)  ->  Abs (   863,   959)
+	  2: Rel (    18,    31)  ->  Abs (   881,   990)
+	  3: Rel (    37,     0)  ->  Abs (   918,   990)
+	  4: Rel (    64,     0)  ->  Abs (   982,   990)
+	  5: Rel (     0,   -64)  ->  Abs (   982,   926)
+	  6: Rel (     0,   -17)  ->  Abs (   982,   909)
+	  7: Rel (    -8,   -14)  ->  Abs (   974,   895)
+	  8: Rel (  -209,  -361)  ->  Abs (   765,   534)
+	  9: Rel (   -17,   -31)  ->  Abs (   748,   503)
+	 10: Rel (   -38,     0)  ->  Abs (   710,   503)
+	 11: Rel (   -63,     0)  ->  Abs (   647,   503)
+	 12: Rel (     0,    64)  ->  Abs (   647,   567)
+	 13: Rel (     0,    17)  ->  Abs (   647,   584)
+	 14: Rel (  -392,    14)  ->  Abs (   255,   598)
+	 15: Rel (   208,   361)  ->  Abs (   463,   959)
+	 16: Rel (    18,    31)  ->  Abs (   481,   990)
+	 17: Rel (    37,     0)  ->  Abs (   518,   990)
+	 18: Rel (    64,     0)  ->  Abs (   582,   990)
+	 19: Rel (     0,   -64)  ->  Abs (   582,   926)
+	 20: Rel (     0,   -17)  ->  Abs (   582,   909)
+	 21: Rel (    -8,   -14)  ->  Abs (   574,   895)
+	 22: Rel (  -209,  -361)  ->  Abs (   365,   534)
+	 23: Rel (   -17,   -31)  ->  Abs (   348,   503)
+	 24: Rel (   -38,     0)  ->  Abs (   310,   503)
+	 25: Rel (   -63,     0)  ->  Abs (   247,   503)
+	 26: Rel (     0,    64)  ->  Abs (   247,   567)
+	 27: Rel (     0,    17)  ->  Abs (   247,   584)
+
+	Glyph 704: off = 0x00025BBE, len = 242
+	  numberOfContours:	2
+	  xMin:			91
+	  yMin:			-11
+	  xMax:			1138
+	  yMax:			986
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  39
+
+	  Length of Instructions:	126
+	00000: NPUSHB      (11):    64     3   112     3     2   112     3   128     3     2 
+	                             3 
+	00013: PUSHW[1]            709 
+	00016: PUSHB[6]             37     6    59     0    10    13 
+	00023: PUSHW[1]            388 
+	00026: NPUSHB      (10):    20    79    27   127    27     2   143    27     1    27 
+	00038: PUSHW[1]            709 
+	00041: PUSHB[5]             21    21    34    59    20 
+	00047: PUSHW[1]            812 
+	00050: NPUSHB      (40):     5    32   127     1   143     1     2     1     1    35 
+	                            30    32   223    24     1    79    24    95    24   111 
+	                            24   223    24     4    24    24    11    32    16    15 
+	                             1    15    34    32    48    20   223    20     2    20 
+	00092: MDAP[rd]   
+	00093: DELTAP1    
+	00094: MIRP[nrp0,md,rd,1] 
+	00095: MDAP[rd]   
+	00096: DELTAP1    
+	00097: MIRP[srp0,md,rd,1] 
+	00098: SHP[rp2,zp1] 
+	00099: MDAP[rd]   
+	00100: DELTAP1    
+	00101: DELTAP2    
+	00102: MIRP[nrp0,md,rd,1] 
+	00103: SRP1       
+	00104: SHP[rp1,zp0] 
+	00105: MDAP[rd]   
+	00106: DELTAP1    
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: SVTCA[y-axis] 
+	00109: MIAP[rd+ci] 
+	00110: MIRP[nrp0,md,rd,1] 
+	00111: ALIGNRP    
+	00112: SRP0       
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: DELTAP1    
+	00115: DELTAP1    
+	00116: SRP0       
+	00117: MIRP[nrp0,nmd,rd,0] 
+	00118: MIAP[rd+ci] 
+	00119: MIRP[nrp0,md,rd,1] 
+	00120: ALIGNRP    
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: DELTAP1    
+	00123: DELTAP1    
+	00124: IUP[y]     
+	00125: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:        XDual                         On
+	  2:  YDual XDual         Y-Short         Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual                         On
+	  7:  YDual                               On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:        XDual                         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual                         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:                                      On
+	 21:  YDual                               On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual                         On
+	 26:        XDual         Y-Short         Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:        XDual                         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                               On
+	 35:        XDual                         On
+	 36:        XDual         Y-Short         Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   419,   -11)  ->  Abs (   419,   -11)
+	  1: Rel (     0,   580)  ->  Abs (   419,   569)
+	  2: Rel (     0,    48)  ->  Abs (   419,   617)
+	  3: Rel (    42,     0)  ->  Abs (   461,   617)
+	  4: Rel (    42,     0)  ->  Abs (   503,   617)
+	  5: Rel (     0,   -48)  ->  Abs (   503,   569)
+	  6: Rel (     0,  -496)  ->  Abs (   503,    73)
+	  7: Rel (   397,     0)  ->  Abs (   900,    73)
+	  8: Rel (    83,     0)  ->  Abs (   983,    73)
+	  9: Rel (    71,    69)  ->  Abs (  1054,   142)
+	 10: Rel (     0,   112)  ->  Abs (  1054,   254)
+	 11: Rel (     0,   684)  ->  Abs (  1054,   938)
+	 12: Rel (     0,    48)  ->  Abs (  1054,   986)
+	 13: Rel (    42,     0)  ->  Abs (  1096,   986)
+	 14: Rel (    42,     0)  ->  Abs (  1138,   986)
+	 15: Rel (     0,   -48)  ->  Abs (  1138,   938)
+	 16: Rel (     0,  -680)  ->  Abs (  1138,   258)
+	 17: Rel (     0,  -143)  ->  Abs (  1138,   115)
+	 18: Rel (   -87,  -126)  ->  Abs (  1051,   -11)
+	 19: Rel (  -151,     0)  ->  Abs (   900,   -11)
+	 20: Rel (  -809,   990)  ->  Abs (    91,   979)
+	 21: Rel (   481,     0)  ->  Abs (   572,   979)
+	 22: Rel (   150,     0)  ->  Abs (   722,   979)
+	 23: Rel (    88,  -126)  ->  Abs (   810,   853)
+	 24: Rel (     0,  -143)  ->  Abs (   810,   710)
+	 25: Rel (     0,  -296)  ->  Abs (   810,   414)
+	 26: Rel (     0,   -48)  ->  Abs (   810,   366)
+	 27: Rel (   -42,     0)  ->  Abs (   768,   366)
+	 28: Rel (   -42,     0)  ->  Abs (   726,   366)
+	 29: Rel (     0,    48)  ->  Abs (   726,   414)
+	 30: Rel (     0,   300)  ->  Abs (   726,   714)
+	 31: Rel (     0,   115)  ->  Abs (   726,   829)
+	 32: Rel (   -71,    66)  ->  Abs (   655,   895)
+	 33: Rel (   -83,     0)  ->  Abs (   572,   895)
+	 34: Rel (  -397,     0)  ->  Abs (   175,   895)
+	 35: Rel (     0,  -858)  ->  Abs (   175,    37)
+	 36: Rel (     0,   -48)  ->  Abs (   175,   -11)
+	 37: Rel (   -42,     0)  ->  Abs (   133,   -11)
+	 38: Rel (   -42,     0)  ->  Abs (    91,   -11)
+	 39: Rel (     0,    48)  ->  Abs (    91,    37)
+
+	Glyph 705: off = 0x00025CB0, len = 120
+	  numberOfContours:	2
+	  xMin:			232
+	  yMin:			-11
+	  xMax:			693
+	  yMax:			1291
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  19
+
+	  Length of Instructions:	54
+	00000: PUSHB[3]             17    10     6 
+	00004: PUSHW[1]            850 
+	00007: PUSHB[5]              2     2     9    59    13 
+	00013: PUSHW[3]            812     4   850 
+	00020: NPUSHB      (15):     0     0    11    14    32     8   160     0    11    63 
+	                            11    79    11     3    11 
+	00037: MDAP[rd]   
+	00038: DELTAP1    
+	00039: MIRP[srp0,nmd,rd,0] 
+	00040: MIRP[nrp0,md,rd,1] 
+	00041: SRP1       
+	00042: SHP[rp1,zp0] 
+	00043: MDAP[rd]   
+	00044: MIRP[nrp0,md,rd,1] 
+	00045: SVTCA[y-axis] 
+	00046: MIAP[rd+ci] 
+	00047: MIRP[nrp0,md,rd,1] 
+	00048: SHP[rp1,zp0] 
+	00049: MDAP[rd]   
+	00050: MIRP[nrp0,md,rd,1] 
+	00051: MIAP[rd+ci] 
+	00052: IUP[y]     
+	00053: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual               Y-Short X-Short On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual                 X-Short On
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual                               On
+	 15:        XDual                         On
+	 16:        XDual         Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   376,  1219)  ->  Abs (   376,  1219)
+	  1: Rel (    -2,   -71)  ->  Abs (   374,  1148)
+	  2: Rel (   -70,     0)  ->  Abs (   304,  1148)
+	  3: Rel (   -71,     2)  ->  Abs (   233,  1150)
+	  4: Rel (    -1,    69)  ->  Abs (   232,  1219)
+	  5: Rel (     0,    72)  ->  Abs (   232,  1291)
+	  6: Rel (    72,     0)  ->  Abs (   304,  1291)
+	  7: Rel (    72,     0)  ->  Abs (   376,  1291)
+	  8: Rel (   233,  -396)  ->  Abs (   609,   895)
+	  9: Rel (  -186,     0)  ->  Abs (   423,   895)
+	 10: Rel (   -48,     0)  ->  Abs (   375,   895)
+	 11: Rel (     0,    42)  ->  Abs (   375,   937)
+	 12: Rel (     0,    42)  ->  Abs (   375,   979)
+	 13: Rel (    48,     0)  ->  Abs (   423,   979)
+	 14: Rel (   270,     0)  ->  Abs (   693,   979)
+	 15: Rel (     0,  -942)  ->  Abs (   693,    37)
+	 16: Rel (     0,   -48)  ->  Abs (   693,   -11)
+	 17: Rel (   -42,     0)  ->  Abs (   651,   -11)
+	 18: Rel (   -42,     0)  ->  Abs (   609,   -11)
+	 19: Rel (     0,    48)  ->  Abs (   609,    37)
+
+	Glyph 706: off = 0x00025D28, len = 82
+	  numberOfContours:	-1  (Composite)
+	  xMin:			149
+	  yMin:			-223
+	  xMax:			1063
+	  yMax:			979
+
+	     0: Flags:		0x0226
+		Glyf Index:	682
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	653
+		X WOffset:	-126
+		Y WOffset:	517
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              2     1    19 
+	00004: PUSHW[1]            -64 
+	00007: PUSHB[4]             24    25    52    19 
+	00012: PUSHW[1]            -64 
+	00015: PUSHB[4]             16    19    52    19 
+	00020: PUSHW[1]            -64 
+	00023: PUSHB[3]              9    12    52 
+	00027: PUSHW[1]           -100 
+	00030: NPUSHB       (9):    19    31     3     8    64     1     2     2    21 
+	00041: PUSHW[2]            828    41 
+	00046: SVTCA[y-axis] 
+	00047: CALL       
+	00048: SVTCA[x-axis] 
+	00049: CALL       
+	00050: CALL       
+	00051: CALL       
+	00052: CALL       
+	00053: SHC[rp1,zp0] 
+	00054: SHC[rp1,zp0] 
+
+	Glyph 707: off = 0x00025D7A, len = 82
+	  numberOfContours:	-1  (Composite)
+	  xMin:			149
+	  yMin:			-223
+	  xMax:			1063
+	  yMax:			979
+
+	     0: Flags:		0x0226
+		Glyf Index:	682
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	661
+		X WOffset:	-136
+		Y WOffset:	507
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (21):     0    15    18     1    18     1   239    22   255    22 
+	                             2    15    22    47    22    63    22   176    22     4 
+	                            22 
+	00023: PUSHW[1]            -64 
+	00026: NPUSHB      (12):    15    17    52     0    22    27     3     3    64     1 
+	                             1    24 
+	00040: PUSHW[2]            829    41 
+	00045: SVTCA[y-axis] 
+	00046: CALL       
+	00047: SVTCA[x-axis] 
+	00048: CALL       
+	00049: CALL       
+	00050: DELTAP1    
+	00051: DELTAP1    
+	00052: SHC[rp1,zp0] 
+	00053: MDAP[rd]   
+	00054: DELTAP1    
+	00055: SHC[rp1,zp0] 
+
+	Glyph 708: off = 0x00025DCC, len = 70
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			949
+	  yMax:			1289
+
+	     0: Flags:		0x0026
+		Glyf Index:	684
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	662
+		X WOffset:	-548
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (26):     0    17    64    69    53    17    64    54    58    52 
+	                            17    64     9    12    52    17     1     0    34    34 
+	                            38    38    64     1     1    36 
+	00028: PUSHW[2]            830    41 
+	00033: SVTCA[y-axis] 
+	00034: CALL       
+	00035: SVTCA[x-axis] 
+	00036: CALL       
+	00037: SHC[rp1,zp0] 
+	00038: MDAP[rd]   
+	00039: CALL       
+	00040: CALL       
+	00041: CALL       
+	00042: SHC[rp1,zp0] 
+
+	Glyph 709: off = 0x00025E12, len = 140
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			949
+	  yMax:			1289
+
+	     0: Flags:		0x0226
+		Glyf Index:	684
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0027
+		Glyf Index:	662
+		X WOffset:	-548
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	664
+		X BOffset:	-65
+		Y BOffset:	117
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (28):     0    17    64    69    53    17    64    54    58    52 
+	                            17    64     9    12    52    17     1     0    34    34 
+	                            46    46    64     2   208    42     1    42 
+	00030: PUSHW[1]            -64 
+	00033: NPUSHB      (34):    13    16    52     0    42    38     9     8    64     2 
+	                           223    44     1    44    64    39    43    52    44    64 
+	                            33    36    52    44    64    25    26    52   175    44 
+	                           223    44     2    44 
+	00069: PUSHW[1]            -64 
+	00072: PUSHB[7]              9    13    52    44     1     1    36 
+	00080: PUSHW[2]            830    41 
+	00085: SVTCA[y-axis] 
+	00086: CALL       
+	00087: MDAP[rd]   
+	00088: CALL       
+	00089: DELTAP1    
+	00090: CALL       
+	00091: CALL       
+	00092: CALL       
+	00093: DELTAP3    
+	00094: SHC[rp1,zp0] 
+	00095: SVTCA[x-axis] 
+	00096: CALL       
+	00097: CALL       
+	00098: DELTAP1    
+	00099: SHC[rp1,zp0] 
+	00100: CALL       
+	00101: SHC[rp1,zp0] 
+	00102: MDAP[rd]   
+	00103: CALL       
+	00104: CALL       
+	00105: CALL       
+	00106: SHC[rp1,zp0] 
+
+	Glyph 710: off = 0x00025E9E, len = 188
+	  numberOfContours:	1
+	  xMin:			192
+	  yMin:			0
+	  xMax:			984
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  26
+
+	  Length of Instructions:	108
+	00000: NPUSHB      (22):   147     2   149    19   162     2   162    19     4    35 
+	                             2    66     2    84     2   101     2     4    20     2 
+	                             1     2 
+	00024: PUSHW[1]            -16 
+	00027: NPUSHB      (14):    19    16     8    18    59     3    10    22    59    26 
+	                            26    11    59    15 
+	00043: PUSHW[1]            812 
+	00046: PUSHB[8]             15    24     1    24    24    21    32     0 
+	00055: PUSHW[1]            848 
+	00058: NPUSHB      (11):    28     6     6    13    13    16    32   159    10     1 
+	                            10 
+	00071: PUSHW[2]            847    27 
+	00076: SRP0       
+	00077: MIRP[srp0,nmd,rd,2] 
+	00078: DELTAP1    
+	00079: MIRP[nrp0,md,rd,1] 
+	00080: SHP[rp1,zp0] 
+	00081: MDAP[rd]   
+	00082: SHP[rp1,zp0] 
+	00083: MDAP[rd]   
+	00084: SRP0       
+	00085: MIRP[srp0,nmd,rd,2] 
+	00086: MIRP[srp0,md,rd,1] 
+	00087: SHP[rp2,zp1] 
+	00088: MDAP[rd]   
+	00089: DELTAP1    
+	00090: SVTCA[y-axis] 
+	00091: MIAP[rd+ci] 
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: ALIGNRP    
+	00094: SRP0       
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: MIAP[rd+ci] 
+	00097: MIRP[srp0,md,rd,1] 
+	00098: ALIGNRP    
+	00099: IUP[y]     
+	00100: IUP[x]     
+	00101: SVTCA[x-axis] 
+	00102: SHPIX      
+	00103: SHPIX      
+	00104: SVTCA[x-axis] 
+	00105: DELTAP2    
+	00106: DELTAP1    
+	00107: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual                         Off
+	  3:  YDual                               On
+	  4:  YDual                               On
+	  5:  YDual                       X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short On
+	 10:        XDual                         On
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual                               Off
+	 20:        XDual                         On
+	 21:        XDual                         On
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   984,   979)  ->  Abs (   984,   979)
+	  1: Rel (     0,  -450)  ->  Abs (   984,   529)
+	  2: Rel (     0,  -529)  ->  Abs (   984,     0)
+	  3: Rel (  -440,     0)  ->  Abs (   544,     0)
+	  4: Rel (  -297,     0)  ->  Abs (   247,     0)
+	  5: Rel (   -48,     0)  ->  Abs (   199,     0)
+	  6: Rel (     0,    42)  ->  Abs (   199,    42)
+	  7: Rel (     0,    42)  ->  Abs (   199,    84)
+	  8: Rel (    48,     0)  ->  Abs (   247,    84)
+	  9: Rel (   122,     0)  ->  Abs (   369,    84)
+	 10: Rel (     0,   811)  ->  Abs (   369,   895)
+	 11: Rel (  -129,     0)  ->  Abs (   240,   895)
+	 12: Rel (   -48,     0)  ->  Abs (   192,   895)
+	 13: Rel (     0,    42)  ->  Abs (   192,   937)
+	 14: Rel (     0,    42)  ->  Abs (   192,   979)
+	 15: Rel (    48,     0)  ->  Abs (   240,   979)
+	 16: Rel (   213,     0)  ->  Abs (   453,   979)
+	 17: Rel (     0,  -895)  ->  Abs (   453,    84)
+	 18: Rel (    93,     0)  ->  Abs (   546,    84)
+	 19: Rel (   354,     0)  ->  Abs (   900,    84)
+	 20: Rel (     0,   441)  ->  Abs (   900,   525)
+	 21: Rel (     0,   370)  ->  Abs (   900,   895)
+	 22: Rel (  -128,     0)  ->  Abs (   772,   895)
+	 23: Rel (   -48,     0)  ->  Abs (   724,   895)
+	 24: Rel (     0,    42)  ->  Abs (   724,   937)
+	 25: Rel (     0,    42)  ->  Abs (   724,   979)
+	 26: Rel (    48,     0)  ->  Abs (   772,   979)
+
+	Glyph 711: off = 0x00025F5A, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			204
+	  yMin:			0
+	  xMax:			1031
+	  yMax:			1286
+
+	     0: Flags:		0x0226
+		Glyf Index:	697
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	662
+		X WOffset:	350
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    37    37    11    11    64     1     1    43 
+	00012: PUSHW[2]            832    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 712: off = 0x00025F8A, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			185
+	  yMin:			0
+	  xMax:			1024
+	  yMax:			1286
+
+	     0: Flags:		0x0226
+		Glyf Index:	697
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	662
+		X WOffset:	-363
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    41    41    20    20    64     1     1    43 
+	00012: PUSHW[2]            832    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 713: off = 0x00025FBA, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			204
+	  yMin:			0
+	  xMax:			1031
+	  yMax:			1286
+
+	     0: Flags:		0x0226
+		Glyf Index:	737
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	662
+		X WOffset:	350
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    45    45    11    11    64     2     1    51 
+	00012: PUSHW[2]            832    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 714: off = 0x00025FEA, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			185
+	  yMin:			0
+	  xMax:			1024
+	  yMax:			1286
+
+	     0: Flags:		0x0226
+		Glyf Index:	737
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	662
+		X WOffset:	-363
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    49    49    20    20    64     2     1    51 
+	00012: PUSHW[2]            832    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 715: off = 0x0002601A, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			208
+	  yMin:			-267
+	  xMax:			1029
+	  yMax:			1008
+
+	     0: Flags:		0x0226
+		Glyf Index:	672
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	660
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    49    44     6    26    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 716: off = 0x0002603E, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			208
+	  yMin:			-440
+	  xMax:			1029
+	  yMax:			1008
+
+	     0: Flags:		0x0226
+		Glyf Index:	672
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	661
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    44    49     6    26    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 717: off = 0x00026062, len = 438
+	  numberOfContours:	2
+	  xMin:			208
+	  yMin:			-12
+	  xMax:			1029
+	  yMax:			1008
+
+	EndPoints
+	---------
+	  0:  40
+	  1:  48
+
+	  Length of Instructions:	296
+	00000: NPUSHB      (46):   165    20   166    33   180    11   178    21     4   102 
+	                            21   103    31   130    11   158    32     4    11    29 
+	                           170    12     1    24    34    24    40   152    20   185 
+	                            12   247    20   248    40     6   122    12   153     0 
+	                           153    12     3    11    29    12 
+	00048: PUSHW[5]            -29    11   -29    21   -29 
+	00059: PUSHB[3]             31    29     1 
+	00063: PUSHW[3]            -41    43   850 
+	00070: NPUSHB      (67):    80    47    96    47     2    47    47    28    19    17 
+	                             9    20    33    34    33    31    34    19    12     0 
+	                            40    40    13    15    13    36    19    34    34    36 
+	                            40    13    20    40    40    13    40    34    33    20 
+	                             0    12    13    19     8    17     9    31    21    38 
+	                            28    11     1     9    17    38    10    38     3    59 
+	                             9    10    17    17    24    59    28 
+	00139: PUSHW[1]            812 
+	00142: NPUSHB      (27):    40    34    33    20     0    12    13    19     8    29 
+	                             9    26    26    23    32     0    29     1     0    29 
+	                           192    29   224    29     3    29     6 
+	00171: PUSHW[1]            -64 
+	00174: PUSHB[7]             12    16    52     6     6     9    41 
+	00182: PUSHW[1]            850 
+	00185: NPUSHB      (17):     0    45    16    45   224    45     3    45    45     3 
+	                            32     0     9    79     9     2     9 
+	00204: MDAP[rd]   
+	00205: DELTAP1    
+	00206: MIRP[srp0,md,rd,1] 
+	00207: SHP[rp2,zp1] 
+	00208: MDAP[rd]   
+	00209: DELTAP1    
+	00210: MIRP[nrp0,md,rd,1] 
+	00211: SRP1       
+	00212: SHP[rp1,zp0] 
+	00213: MDAP[rd]   
+	00214: CALL       
+	00215: MDAP[rd]   
+	00216: DELTAP1    
+	00217: DELTAP2    
+	00218: MIRP[nrp0,md,rd,1] 
+	00219: SHP[rp1,zp0] 
+	00220: MDAP[rd]   
+	00221: SRP1       
+	00222: SRP2       
+	00223: SLOOP      
+	00224: IP         
+	00225: SVTCA[y-axis] 
+	00226: MIAP[rd+ci] 
+	00227: MIRP[nrp0,md,rd,1] 
+	00228: SHP[rp1,zp0] 
+	00229: MDAP[rd]   
+	00230: MIAP[rd+ci] 
+	00231: MIRP[nrp0,md,rd,1] 
+	00232: SHP[rp1,zp0] 
+	00233: MIAP[rd+ci] 
+	00234: SRP1       
+	00235: SRP2       
+	00236: IP         
+	00237: IP         
+	00238: SRP1       
+	00239: SRP2       
+	00240: IP         
+	00241: IP         
+	00242: SRP1       
+	00243: SRP2       
+	00244: SLOOP      
+	00245: IP         
+	00246: SDPVTL[1]  
+	00247: SFVTPV     
+	00248: MDAP[nrd]  
+	00249: CALL       
+	00250: SFVTPV     
+	00251: RDTG       
+	00252: SRP0       
+	00253: MDRP[nrp0,nmd,rd,0] 
+	00254: SVTCA[x-axis] 
+	00255: SHP[rp1,zp0] 
+	00256: SRP1       
+	00257: SHP[rp1,zp0] 
+	00258: SPVTL[p1,p2] 
+	00259: SFVTPV     
+	00260: SRP0       
+	00261: ALIGNRP    
+	00262: ALIGNRP    
+	00263: SPVTL[p1,p2] 
+	00264: SFVTL[=p1,p2] 
+	00265: SRP0       
+	00266: ALIGNRP    
+	00267: SFVTPV     
+	00268: ALIGNRP    
+	00269: SVTCA[y-axis] 
+	00270: SRP1       
+	00271: SRP2       
+	00272: IP         
+	00273: RTG        
+	00274: SRP2       
+	00275: IP         
+	00276: MDAP[rd]   
+	00277: DELTAP1    
+	00278: MIRP[nrp0,md,rd,1] 
+	00279: IUP[y]     
+	00280: IUP[x]     
+	00281: SHPIX      
+	00282: SHPIX      
+	00283: SHPIX      
+	00284: SHPIX      
+	00285: SHPIX      
+	00286: SVTCA[x-axis] 
+	00287: SHPIX      
+	00288: SVTCA[x-axis] 
+	00289: DELTAP1    
+	00290: DELTAP1    
+	00291: DELTAP2    
+	00292: SHPIX      
+	00293: SVTCA[y-axis] 
+	00294: DELTAP2    
+	00295: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual                         On
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short On
+	 10:        XDual                         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:                                      On
+	 21:  YDual               Y-Short         Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short On
+	 30:        XDual                         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short         On
+	 33:  YDual               Y-Short X-Short On
+	 34:                                      On
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short Off
+	 40:  YDual               Y-Short X-Short On
+	 41:                                      On
+	 42:        XDual         Y-Short         Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   483,   617)  ->  Abs (   483,   617)
+	  1: Rel (  -191,   -82)  ->  Abs (   292,   535)
+	  2: Rel (     0,  -132)  ->  Abs (   292,   403)
+	  3: Rel (     0,  -319)  ->  Abs (   292,    84)
+	  4: Rel (   139,     0)  ->  Abs (   431,    84)
+	  5: Rel (    48,     0)  ->  Abs (   479,    84)
+	  6: Rel (     0,   -42)  ->  Abs (   479,    42)
+	  7: Rel (     0,   -42)  ->  Abs (   479,     0)
+	  8: Rel (   -48,     0)  ->  Abs (   431,     0)
+	  9: Rel (  -223,     0)  ->  Abs (   208,     0)
+	 10: Rel (     0,   399)  ->  Abs (   208,   399)
+	 11: Rel (     0,   175)  ->  Abs (   208,   574)
+	 12: Rel (   224,   111)  ->  Abs (   432,   685)
+	 13: Rel (  -185,   251)  ->  Abs (   247,   936)
+	 14: Rel (   -12,    16)  ->  Abs (   235,   952)
+	 15: Rel (     0,    16)  ->  Abs (   235,   968)
+	 16: Rel (     0,    40)  ->  Abs (   235,  1008)
+	 17: Rel (    42,     0)  ->  Abs (   277,  1008)
+	 18: Rel (    21,     0)  ->  Abs (   298,  1008)
+	 19: Rel (    17,   -22)  ->  Abs (   315,   986)
+	 20: Rel (   367,  -498)  ->  Abs (   682,   488)
+	 21: Rel (   263,    92)  ->  Abs (   945,   580)
+	 22: Rel (     0,   127)  ->  Abs (   945,   707)
+	 23: Rel (     0,   188)  ->  Abs (   945,   895)
+	 24: Rel (  -157,     0)  ->  Abs (   788,   895)
+	 25: Rel (   -48,     0)  ->  Abs (   740,   895)
+	 26: Rel (     0,    42)  ->  Abs (   740,   937)
+	 27: Rel (     0,    42)  ->  Abs (   740,   979)
+	 28: Rel (    48,     0)  ->  Abs (   788,   979)
+	 29: Rel (   241,     0)  ->  Abs (  1029,   979)
+	 30: Rel (     0,  -288)  ->  Abs (  1029,   691)
+	 31: Rel (     0,  -179)  ->  Abs (  1029,   512)
+	 32: Rel (  -298,   -89)  ->  Abs (   731,   423)
+	 33: Rel (    -8,    10)  ->  Abs (   723,   433)
+	 34: Rel (   275,  -373)  ->  Abs (   998,    60)
+	 35: Rel (    11,   -16)  ->  Abs (  1009,    44)
+	 36: Rel (     0,   -16)  ->  Abs (  1009,    28)
+	 37: Rel (     0,   -40)  ->  Abs (  1009,   -12)
+	 38: Rel (   -41,     0)  ->  Abs (   968,   -12)
+	 39: Rel (   -22,     0)  ->  Abs (   946,   -12)
+	 40: Rel (   -16,    22)  ->  Abs (   930,    10)
+	 41: Rel (  -361,   284)  ->  Abs (   569,   294)
+	 42: Rel (     0,   -66)  ->  Abs (   569,   228)
+	 43: Rel (   -66,     0)  ->  Abs (   503,   228)
+	 44: Rel (   -67,     0)  ->  Abs (   436,   228)
+	 45: Rel (     0,    66)  ->  Abs (   436,   294)
+	 46: Rel (     0,    67)  ->  Abs (   436,   361)
+	 47: Rel (    67,     0)  ->  Abs (   503,   361)
+	 48: Rel (    66,     0)  ->  Abs (   569,   361)
+
+	Glyph 718: off = 0x00026218, len = 44
+	  numberOfContours:	-1  (Composite)
+	  xMin:			158
+	  yMin:			0
+	  xMax:			1069
+	  yMax:			979
+
+	     0: Flags:		0x0226
+		Glyf Index:	673
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	664
+		X BOffset:	-86
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     1     0    29    16    29   159    29     3     0    29 
+	                            25    16    15    64 
+	00016: SVTCA[x-axis] 
+	00017: CALL       
+	00018: DELTAP1    
+	00019: SHC[rp1,zp0] 
+
+	Glyph 719: off = 0x00026244, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			277
+	  yMin:			-11
+	  xMax:			913
+	  yMax:			979
+
+	     0: Flags:		0x0226
+		Glyf Index:	674
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	664
+		X BOffset:	-112
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1    35 
+	00003: PUSHW[1]            -64 
+	00006: PUSHB[3]              9    10    52 
+	00010: PUSHW[1]            -80 
+	00013: PUSHB[5]             35    31    22    21    64 
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: CALL       
+	00022: SHC[rp1,zp0] 
+
+	Glyph 720: off = 0x00026274, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			163
+	  yMin:			-11
+	  xMax:			1070
+	  yMax:			979
+
+	     0: Flags:		0x0226
+		Glyf Index:	675
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	664
+		X BOffset:	-116
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1    21 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB       (9):     9    10    52     0    21    17     1     0    64 
+	00017: SVTCA[x-axis] 
+	00018: CALL       
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+
+	Glyph 721: off = 0x000262A2, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			160
+	  yMin:			-11
+	  xMax:			1021
+	  yMax:			979
+
+	     0: Flags:		0x0226
+		Glyf Index:	676
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	664
+		X BOffset:	-6
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2     0    32    28    23    15    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 722: off = 0x000262C6, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			357
+	  yMin:			-11
+	  xMax:			693
+	  yMax:			979
+
+	     0: Flags:		0x0226
+		Glyf Index:	677
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	664
+		X WOffset:	-191
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              1     0    16     1    16 
+	00006: PUSHW[1]            -64 
+	00009: NPUSHB       (9):     9    16    52     0    16    16     3     3    64 
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: CALL       
+	00023: DELTAP3    
+	00024: SHC[rp1,zp0] 
+
+	Glyph 723: off = 0x000262FA, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			312
+	  yMin:			-11
+	  xMax:			912
+	  yMax:			979
+
+	     0: Flags:		0x0226
+		Glyf Index:	678
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	664
+		X WOffset:	-236
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              1   143    25     1   224    25     1    25 
+	00009: PUSHW[1]            -64 
+	00012: PUSHB[3]              9    12    52 
+	00016: PUSHW[1]            -50 
+	00019: PUSHB[5]             25    25     3     3    64 
+	00025: SVTCA[x-axis] 
+	00026: CALL       
+	00027: CALL       
+	00028: DELTAP1    
+	00029: DELTAP2    
+	00030: SHC[rp1,zp0] 
+
+	Glyph 724: off = 0x00026334, len = 294
+	  numberOfContours:	2
+	  xMin:			104
+	  yMin:			-11
+	  xMax:			1021
+	  yMax:			989
+
+	EndPoints
+	---------
+	  0:  32
+	  1:  40
+
+	  Length of Instructions:	179
+	00000: PUSHB[6]            182    23   187    25     2     2 
+	00007: PUSHW[1]            -29 
+	00010: PUSHB[3]              4    29    23 
+	00014: PUSHW[1]            -29 
+	00017: PUSHB[3]             25    29    35 
+	00021: PUSHW[3]            850    39   -64 
+	00028: NPUSHB      (29):    11    13    52   128    39     1   112    39   208    39 
+	                             2    39    39    32     3    91    24    10    39    32 
+	                            13    64     9    12    52    13     8    59    19 
+	00059: PUSHW[1]            388 
+	00062: PUSHB[3]             28    59    32 
+	00066: PUSHW[3]            812    33   850 
+	00073: NPUSHB      (32):    48    37   160    37     2    37    37     6     1    15 
+	                            16    63    16     2    16    91    10    64     9    10 
+	                            52    10    64    16    17    52    10    10     6    32 
+	                            21    21 
+	00107: PUSHW[1]            841 
+	00110: NPUSHB      (12):    42   111    30     1    30    30     0    32   240    27 
+	                             1    27 
+	00124: PUSHW[2]            844    41 
+	00129: SRP0       
+	00130: MIRP[srp0,nmd,rd,2] 
+	00131: DELTAP1    
+	00132: MIRP[nrp0,md,rd,1] 
+	00133: SHP[rp1,zp0] 
+	00134: MDAP[rd]   
+	00135: DELTAP1    
+	00136: SRP0       
+	00137: MIRP[srp0,nmd,rd,2] 
+	00138: MDAP[rd]   
+	00139: MIRP[srp0,md,rd,1] 
+	00140: SHP[rp2,zp1] 
+	00141: MDAP[rd]   
+	00142: CALL       
+	00143: CALL       
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: DELTAP1    
+	00146: SRP1       
+	00147: SRP2       
+	00148: IP         
+	00149: MDAP[rd]   
+	00150: DELTAP1    
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: SVTCA[y-axis] 
+	00153: MIAP[rd+ci] 
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: MIRP[srp0,nmd,rd,0] 
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: MDAP[rd]   
+	00158: CALL       
+	00159: SRP1       
+	00160: SHP[rp1,zp0] 
+	00161: MIAP[rd+ci] 
+	00162: MIRP[nrp0,md,rd,1] 
+	00163: SRP2       
+	00164: IP         
+	00165: MDAP[rd]   
+	00166: DELTAP1    
+	00167: DELTAP2    
+	00168: CALL       
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: IUP[y]     
+	00171: IUP[x]     
+	00172: SVTCA[x-axis] 
+	00173: SHPIX      
+	00174: SHPIX      
+	00175: SHPIX      
+	00176: SHPIX      
+	00177: SVTCA[x-axis] 
+	00178: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:  YDual                               On
+	  4:  YDual                               Off
+	  5:  YDual XDual         Y-Short         On
+	  6:        XDual                         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual                         On
+	 23:        XDual                         Off
+	 24:  YDual                               On
+	 25:  YDual                               Off
+	 26:        XDual                         On
+	 27:        XDual                         On
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual                 X-Short On
+	 33:                                      On
+	 34:        XDual         Y-Short         Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   400,   979)  ->  Abs (   400,   979)
+	  1: Rel (     0,  -664)  ->  Abs (   400,   315)
+	  2: Rel (     0,  -242)  ->  Abs (   400,    73)
+	  3: Rel (   267,     0)  ->  Abs (   667,    73)
+	  4: Rel (   270,     0)  ->  Abs (   937,    73)
+	  5: Rel (     0,   253)  ->  Abs (   937,   326)
+	  6: Rel (     0,   460)  ->  Abs (   937,   786)
+	  7: Rel (     0,   118)  ->  Abs (   937,   904)
+	  8: Rel (  -101,     0)  ->  Abs (   836,   904)
+	  9: Rel (  -100,     0)  ->  Abs (   736,   904)
+	 10: Rel (     0,  -117)  ->  Abs (   736,   787)
+	 11: Rel (     0,   -59)  ->  Abs (   736,   728)
+	 12: Rel (     0,   -48)  ->  Abs (   736,   680)
+	 13: Rel (   -42,     0)  ->  Abs (   694,   680)
+	 14: Rel (   -42,     0)  ->  Abs (   652,   680)
+	 15: Rel (     0,    48)  ->  Abs (   652,   728)
+	 16: Rel (     0,    59)  ->  Abs (   652,   787)
+	 17: Rel (     0,    92)  ->  Abs (   652,   879)
+	 18: Rel (    99,   110)  ->  Abs (   751,   989)
+	 19: Rel (    81,     0)  ->  Abs (   832,   989)
+	 20: Rel (   189,     0)  ->  Abs (  1021,   989)
+	 21: Rel (     0,  -194)  ->  Abs (  1021,   795)
+	 22: Rel (     0,  -498)  ->  Abs (  1021,   297)
+	 23: Rel (     0,  -308)  ->  Abs (  1021,   -11)
+	 24: Rel (  -352,     0)  ->  Abs (   669,   -11)
+	 25: Rel (  -353,     0)  ->  Abs (   316,   -11)
+	 26: Rel (     0,   308)  ->  Abs (   316,   297)
+	 27: Rel (     0,   598)  ->  Abs (   316,   895)
+	 28: Rel (  -164,     0)  ->  Abs (   152,   895)
+	 29: Rel (   -48,     0)  ->  Abs (   104,   895)
+	 30: Rel (     0,    42)  ->  Abs (   104,   937)
+	 31: Rel (     0,    42)  ->  Abs (   104,   979)
+	 32: Rel (    48,     0)  ->  Abs (   152,   979)
+	 33: Rel (   616,  -459)  ->  Abs (   768,   520)
+	 34: Rel (     0,   -66)  ->  Abs (   768,   454)
+	 35: Rel (   -66,     0)  ->  Abs (   702,   454)
+	 36: Rel (   -67,     0)  ->  Abs (   635,   454)
+	 37: Rel (     0,    66)  ->  Abs (   635,   520)
+	 38: Rel (     0,    67)  ->  Abs (   635,   587)
+	 39: Rel (    67,     0)  ->  Abs (   702,   587)
+	 40: Rel (    66,     0)  ->  Abs (   768,   587)
+
+	Glyph 725: off = 0x0002645A, len = 122
+	  numberOfContours:	2
+	  xMin:			371
+	  yMin:			539
+	  xMax:			703
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  19
+
+	  Length of Instructions:	60
+	00000: PUSHB[5]             16     9     1     9    14 
+	00006: PUSHW[1]            850 
+	00009: PUSHB[8]             15    18     1    18   177     1    59     5 
+	00018: PUSHW[3]            812    16   850 
+	00025: NPUSHB      (15):    64    12     1    12   132     6    32     0     0     3 
+	                            64    11    13    52     3 
+	00042: MDAP[rd]   
+	00043: CALL       
+	00044: SHP[rp1,zp0] 
+	00045: MDAP[rd]   
+	00046: MIRP[nrp0,md,rd,1] 
+	00047: MIRP[srp0,md,rd,2] 
+	00048: DELTAP2    
+	00049: MIRP[nrp0,md,rd,1] 
+	00050: SVTCA[y-axis] 
+	00051: MIAP[rd+ci] 
+	00052: MIRP[srp0,md,rd,1] 
+	00053: MIRP[srp0,md,rd,2] 
+	00054: DELTAP2    
+	00055: MIRP[nrp0,md,rd,1] 
+	00056: MDAP[rd]   
+	00057: DELTAP1    
+	00058: IUP[y]     
+	00059: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               On
+	  7:        XDual                         On
+	  8:        XDual         Y-Short         Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual               Y-Short X-Short On
+	 13:        XDual         Y-Short         Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   619,   895)  ->  Abs (   619,   895)
+	  1: Rel (  -200,     0)  ->  Abs (   419,   895)
+	  2: Rel (   -48,     0)  ->  Abs (   371,   895)
+	  3: Rel (     0,    42)  ->  Abs (   371,   937)
+	  4: Rel (     0,    42)  ->  Abs (   371,   979)
+	  5: Rel (    48,     0)  ->  Abs (   419,   979)
+	  6: Rel (   284,     0)  ->  Abs (   703,   979)
+	  7: Rel (     0,  -392)  ->  Abs (   703,   587)
+	  8: Rel (     0,   -48)  ->  Abs (   703,   539)
+	  9: Rel (   -42,     0)  ->  Abs (   661,   539)
+	 10: Rel (   -42,     0)  ->  Abs (   619,   539)
+	 11: Rel (     0,    48)  ->  Abs (   619,   587)
+	 12: Rel (  -101,   113)  ->  Abs (   518,   700)
+	 13: Rel (     0,   -66)  ->  Abs (   518,   634)
+	 14: Rel (   -66,     0)  ->  Abs (   452,   634)
+	 15: Rel (   -67,     0)  ->  Abs (   385,   634)
+	 16: Rel (     0,    66)  ->  Abs (   385,   700)
+	 17: Rel (     0,    67)  ->  Abs (   385,   767)
+	 18: Rel (    67,     0)  ->  Abs (   452,   767)
+	 19: Rel (    66,     0)  ->  Abs (   518,   767)
+
+	Glyph 726: off = 0x000264D4, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			149
+	  yMin:			-223
+	  xMax:			1063
+	  yMax:			979
+
+	     0: Flags:		0x0226
+		Glyf Index:	682
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	664
+		X BOffset:	-123
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              1   128    23     1    23 
+	00006: PUSHW[1]            -64 
+	00009: NPUSHB       (9):     9    10    52     0    23    19     1     0    64 
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: CALL       
+	00023: DELTAP1    
+	00024: SHC[rp1,zp0] 
+
+	Glyph 727: off = 0x00026506, len = 40
+	  numberOfContours:	-1  (Composite)
+	  xMin:			180
+	  yMin:			0
+	  xMax:			1015
+	  yMax:			979
+
+	     0: Flags:		0x0226
+		Glyf Index:	683
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	664
+		X BOffset:	-41
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    24     1     0    24    20    17    12    64 
+	00012: SVTCA[x-axis] 
+	00013: CALL       
+	00014: DELTAP1    
+	00015: SHC[rp1,zp0] 
+
+	Glyph 728: off = 0x0002652E, len = 92
+	  numberOfContours:	-1  (Composite)
+	  xMin:			192
+	  yMin:			0
+	  xMax:			949
+	  yMax:			1289
+
+	     0: Flags:		0x0226
+		Glyf Index:	684
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	664
+		X BOffset:	-65
+		Y BOffset:	117
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              1   208    34     1    34 
+	00006: PUSHW[1]            -64 
+	00009: NPUSHB      (34):     9    16    52     0    34    30     9     8    64     1 
+	                           223    36     1    36    64    39    43    52    36    64 
+	                            33    36    52    36    64    25    26    52   175    36 
+	                           223    36     2    36 
+	00045: PUSHW[1]            -64 
+	00048: PUSHB[4]              9    13    52    36 
+	00053: SVTCA[y-axis] 
+	00054: MDAP[rd]   
+	00055: CALL       
+	00056: DELTAP1    
+	00057: CALL       
+	00058: CALL       
+	00059: CALL       
+	00060: DELTAP3    
+	00061: SHC[rp1,zp0] 
+	00062: SVTCA[x-axis] 
+	00063: CALL       
+	00064: CALL       
+	00065: DELTAP1    
+	00066: SHC[rp1,zp0] 
+
+	Glyph 729: off = 0x0002658A, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			133
+	  yMin:			-11
+	  xMax:			1005
+	  yMax:			990
+
+	     0: Flags:		0x0226
+		Glyf Index:	686
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	664
+		X BOffset:	50
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    34    30    18    13    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 730: off = 0x000265AE, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			284
+	  yMin:			0
+	  xMax:			765
+	  yMax:			979
+
+	     0: Flags:		0x0226
+		Glyf Index:	688
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	664
+		X BOffset:	-120
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1    18 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB       (9):     9    12    52     0    18    14     3     7    64 
+	00017: SVTCA[x-axis] 
+	00018: CALL       
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+
+	Glyph 731: off = 0x000265DC, len = 254
+	  numberOfContours:	3
+	  xMin:			79
+	  yMin:			-11
+	  xMax:			996
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  15
+	  1:  25
+	  2:  33
+
+	  Length of Instructions:	149
+	00000: NPUSHB      (28):   153    11   159    14   168    11   173    14   186    14 
+	                             5    70    12    77    14     2    54    12    61    14 
+	                             2    11    22    12    22    14    22    28 
+	00030: PUSHW[1]            850 
+	00033: NPUSHB      (14):    32    32     5    24    59    13    10    21     0    20 
+	                            20     1    59     5 
+	00049: PUSHW[5]            812    26   850    30   -64 
+	00060: NPUSHB      (26):    58    59    52     0    30   128    30     2    16    30 
+	                           128    30   144    30     3   128    30   240    30     2 
+	                            30    30    22    17    32     9 
+	00088: PUSHW[1]            837 
+	00091: NPUSHB      (11):    35     3    64    15    19    52     3     3    21    32 
+	                             0 
+	00104: PUSHW[2]            839    34 
+	00109: SRP0       
+	00110: MIRP[srp0,nmd,rd,0] 
+	00111: MIRP[nrp0,md,rd,1] 
+	00112: SHP[rp1,zp0] 
+	00113: MDAP[rd]   
+	00114: CALL       
+	00115: SRP0       
+	00116: MIRP[srp0,nmd,rd,2] 
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: SRP1       
+	00119: IP         
+	00120: MDAP[rd]   
+	00121: DELTAP1    
+	00122: DELTAP2    
+	00123: DELTAP3    
+	00124: CALL       
+	00125: MIRP[nrp0,md,rd,1] 
+	00126: SVTCA[y-axis] 
+	00127: MIAP[rd+ci] 
+	00128: MIRP[srp0,md,rd,1] 
+	00129: ALIGNRP    
+	00130: SRP1       
+	00131: IP         
+	00132: IP         
+	00133: MIAP[rd+ci] 
+	00134: MIRP[nrp0,md,rd,1] 
+	00135: SRP2       
+	00136: IP         
+	00137: MDAP[rd]   
+	00138: MIRP[nrp0,md,rd,1] 
+	00139: IUP[y]     
+	00140: IUP[x]     
+	00141: SHPIX      
+	00142: SHPIX      
+	00143: SHPIX      
+	00144: SVTCA[x-axis] 
+	00145: DELTAP2    
+	00146: DELTAP2    
+	00147: SVTCA[y-axis] 
+	00148: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual                               On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual                         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                               Off
+	 15:        XDual                         On
+	 16:  YDual               Y-Short         On
+	 17:        XDual                         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                               On
+	 22:        XDual                         On
+	 23:        XDual         Y-Short         Off
+	 24:  YDual                               On
+	 25:  YDual                               Off
+	 26:                              X-Short On
+	 27:        XDual         Y-Short         Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   289,   895)  ->  Abs (   289,   895)
+	  1: Rel (  -162,     0)  ->  Abs (   127,   895)
+	  2: Rel (   -48,     0)  ->  Abs (    79,   895)
+	  3: Rel (     0,    42)  ->  Abs (    79,   937)
+	  4: Rel (     0,    42)  ->  Abs (    79,   979)
+	  5: Rel (    48,     0)  ->  Abs (   127,   979)
+	  6: Rel (   578,     0)  ->  Abs (   705,   979)
+	  7: Rel (   173,     0)  ->  Abs (   878,   979)
+	  8: Rel (   118,  -148)  ->  Abs (   996,   831)
+	  9: Rel (     0,  -144)  ->  Abs (   996,   687)
+	 10: Rel (     0,  -397)  ->  Abs (   996,   290)
+	 11: Rel (     0,  -156)  ->  Abs (   996,   134)
+	 12: Rel (  -202,  -145)  ->  Abs (   794,   -11)
+	 13: Rel (  -145,     0)  ->  Abs (   649,   -11)
+	 14: Rel (  -360,     0)  ->  Abs (   289,   -11)
+	 15: Rel (     0,   306)  ->  Abs (   289,   295)
+	 16: Rel (   623,    11)  ->  Abs (   912,   306)
+	 17: Rel (     0,   376)  ->  Abs (   912,   682)
+	 18: Rel (     0,   106)  ->  Abs (   912,   788)
+	 19: Rel (   -75,   107)  ->  Abs (   837,   895)
+	 20: Rel (  -132,     0)  ->  Abs (   705,   895)
+	 21: Rel (  -332,     0)  ->  Abs (   373,   895)
+	 22: Rel (     0,  -589)  ->  Abs (   373,   306)
+	 23: Rel (     0,  -233)  ->  Abs (   373,    73)
+	 24: Rel (   268,     0)  ->  Abs (   641,    73)
+	 25: Rel (   271,     0)  ->  Abs (   912,    73)
+	 26: Rel (  -197,   447)  ->  Abs (   715,   520)
+	 27: Rel (     0,   -66)  ->  Abs (   715,   454)
+	 28: Rel (   -66,     0)  ->  Abs (   649,   454)
+	 29: Rel (   -67,     0)  ->  Abs (   582,   454)
+	 30: Rel (     0,    66)  ->  Abs (   582,   520)
+	 31: Rel (     0,    67)  ->  Abs (   582,   587)
+	 32: Rel (    67,     0)  ->  Abs (   649,   587)
+	 33: Rel (    66,     0)  ->  Abs (   715,   587)
+
+	Glyph 732: off = 0x000266DA, len = 256
+	  numberOfContours:	2
+	  xMin:			242
+	  yMin:			-223
+	  xMax:			1105
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  26
+	  1:  34
+
+	  Length of Instructions:	156
+	00000: PUSHW[2]             29   850 
+	00005: PUSHB[6]             33    33     4    17    59    23 
+	00012: PUSHW[1]            815 
+	00015: PUSHB[3]             10    59     4 
+	00019: PUSHW[1]            371 
+	00022: PUSHB[3]              0    59    13 
+	00026: PUSHW[3]            812    27   850 
+	00033: NPUSHB      (16):    31    64    25    55    52    31    64    10    16    52 
+	                           143    31     1    31    77     7 
+	00051: PUSHW[1]            -64 
+	00054: PUSHB[4]             64    66    52     7 
+	00059: PUSHW[1]            -64 
+	00062: PUSHB[3]             61    53     7 
+	00066: PUSHW[1]            -64 
+	00069: NPUSHB      (10):    57    53    16     7     1   127     7     1     7    20 
+	00081: PUSHW[1]            399 
+	00084: NPUSHB      (15):    17    17    24    32    79    16    95    16   127    16 
+	                           159    16     4    16     7 
+	00101: PUSHW[1]            -64 
+	00104: PUSHB[4]              9    16    52     7 
+	00109: PUSHW[1]            834 
+	00112: PUSHB[8]              0    32   207    13   208    13     2    13 
+	00121: MDAP[rd]   
+	00122: DELTAP1    
+	00123: MIRP[srp0,md,rd,1] 
+	00124: MIRP[nrp0,nmd,rd,0] 
+	00125: CALL       
+	00126: MDAP[rd]   
+	00127: DELTAP1    
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: ALIGNRP    
+	00130: SRP0       
+	00131: MIRP[nrp0,nmd,rd,0] 
+	00132: SRP0       
+	00133: DELTAP1    
+	00134: DELTAP3    
+	00135: CALL       
+	00136: CALL       
+	00137: CALL       
+	00138: MIRP[srp0,nmd,rd,2] 
+	00139: DELTAP1    
+	00140: CALL       
+	00141: CALL       
+	00142: MIRP[nrp0,md,rd,1] 
+	00143: SVTCA[y-axis] 
+	00144: MIAP[rd+ci] 
+	00145: MIRP[nrp0,md,rd,1] 
+	00146: MIRP[srp0,nmd,rd,0] 
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: MIAP[rd+ci] 
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: SRP1       
+	00151: SHP[rp1,zp0] 
+	00152: MDAP[rd]   
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: IUP[y]     
+	00155: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:        XDual                         On
+	 14:  YDual                               On
+	 15:  YDual                               Off
+	 16:        XDual                         On
+	 17:        XDual                         On
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short On
+	 24:        XDual                         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual                       X-Short On
+	 27:        XDual                 X-Short On
+	 28:        XDual         Y-Short         Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   326,   895)  ->  Abs (   326,   895)
+	  1: Rel (     0,  -296)  ->  Abs (   326,   599)
+	  2: Rel (     0,   -71)  ->  Abs (   326,   528)
+	  3: Rel (    61,   -73)  ->  Abs (   387,   455)
+	  4: Rel (   107,     0)  ->  Abs (   494,   455)
+	  5: Rel (    54,     0)  ->  Abs (   548,   455)
+	  6: Rel (    48,     0)  ->  Abs (   596,   455)
+	  7: Rel (     0,   -42)  ->  Abs (   596,   413)
+	  8: Rel (     0,   -42)  ->  Abs (   596,   371)
+	  9: Rel (   -48,     0)  ->  Abs (   548,   371)
+	 10: Rel (   -56,     0)  ->  Abs (   492,   371)
+	 11: Rel (  -250,     0)  ->  Abs (   242,   371)
+	 12: Rel (     0,   214)  ->  Abs (   242,   585)
+	 13: Rel (     0,   394)  ->  Abs (   242,   979)
+	 14: Rel (   408,     0)  ->  Abs (   650,   979)
+	 15: Rel (   293,     0)  ->  Abs (   943,   979)
+	 16: Rel (     0,  -289)  ->  Abs (   943,   690)
+	 17: Rel (     0,  -829)  ->  Abs (   943,  -139)
+	 18: Rel (   114,     0)  ->  Abs (  1057,  -139)
+	 19: Rel (    48,     0)  ->  Abs (  1105,  -139)
+	 20: Rel (     0,   -42)  ->  Abs (  1105,  -181)
+	 21: Rel (     0,   -42)  ->  Abs (  1105,  -223)
+	 22: Rel (   -48,     0)  ->  Abs (  1057,  -223)
+	 23: Rel (  -198,     0)  ->  Abs (   859,  -223)
+	 24: Rel (     0,   901)  ->  Abs (   859,   678)
+	 25: Rel (     0,   217)  ->  Abs (   859,   895)
+	 26: Rel (  -219,     0)  ->  Abs (   640,   895)
+	 27: Rel (   149,  -487)  ->  Abs (   789,   408)
+	 28: Rel (     0,   -66)  ->  Abs (   789,   342)
+	 29: Rel (   -66,     0)  ->  Abs (   723,   342)
+	 30: Rel (   -67,     0)  ->  Abs (   656,   342)
+	 31: Rel (     0,    66)  ->  Abs (   656,   408)
+	 32: Rel (     0,    67)  ->  Abs (   656,   475)
+	 33: Rel (    67,     0)  ->  Abs (   723,   475)
+	 34: Rel (    66,     0)  ->  Abs (   789,   475)
+
+	Glyph 733: off = 0x000267DA, len = 246
+	  numberOfContours:	2
+	  xMin:			250
+	  yMin:			0
+	  xMax:			959
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  30
+	  1:  38
+
+	  Length of Instructions:	131
+	00000: NPUSHB      (15):   244     2   245     5     2     6     2     1    16    32 
+	                            13    29    29    16    21 
+	00017: PUSHW[5]            -10     5   -10    33   850 
+	00028: NPUSHB      (14):    37    37    28    59    22    22     0    11    59     7 
+	                            10    18    59     0 
+	00044: PUSHW[3]            812    25   -64 
+	00051: PUSHB[6]             42    55    52    25    77    35 
+	00058: PUSHW[1]            850 
+	00061: PUSHB[6]             48    31    64    31     2    31 
+	00068: PUSHW[1]            272 
+	00071: NPUSHB      (19):    15    19    18    15    32    79     3   159     3     2 
+	                             3     9     9    18    32    48     0     1     0 
+	00092: MDAP[rd]   
+	00093: DELTAP1    
+	00094: MIRP[nrp0,md,rd,1] 
+	00095: SHP[rp1,zp0] 
+	00096: MDAP[rd]   
+	00097: MDAP[rd]   
+	00098: DELTAP1    
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: SRP0       
+	00101: ALIGNRP    
+	00102: SRP0       
+	00103: MIRP[srp0,nmd,rd,2] 
+	00104: DELTAP1    
+	00105: MIRP[srp0,md,rd,1] 
+	00106: MIRP[nrp0,md,rd,2] 
+	00107: CALL       
+	00108: SVTCA[y-axis] 
+	00109: MIAP[rd+ci] 
+	00110: MIRP[nrp0,md,rd,1] 
+	00111: MIAP[rd+ci] 
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: SRP2       
+	00114: IP         
+	00115: MDAP[rd]   
+	00116: MIRP[nrp0,md,rd,1] 
+	00117: SHP[rp1,zp0] 
+	00118: MDAP[rd]   
+	00119: MIRP[nrp0,md,rd,1] 
+	00120: IUP[y]     
+	00121: IUP[x]     
+	00122: SVTCA[x-axis] 
+	00123: SHPIX      
+	00124: SHPIX      
+	00125: SHPIX      
+	00126: SHPIX      
+	00127: SHPIX      
+	00128: SVTCA[x-axis] 
+	00129: DELTAP2    
+	00130: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                               Off
+	  3:        XDual                         On
+	  4:        XDual                         On
+	  5:        XDual                         Off
+	  6:  YDual                               On
+	  7:  YDual                               On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual                               On
+	 13:  YDual XDual                 X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:        XDual                         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                               On
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:                      Y-Short         On
+	 32:                      Y-Short X-Short Off
+	 33:                      Y-Short X-Short On
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual               Y-Short X-Short On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual XDual                 X-Short On
+	 38:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   258,   979)  ->  Abs (   258,   979)
+	  1: Rel (   408,     0)  ->  Abs (   666,   979)
+	  2: Rel (   293,     0)  ->  Abs (   959,   979)
+	  3: Rel (     0,  -289)  ->  Abs (   959,   690)
+	  4: Rel (     0,  -401)  ->  Abs (   959,   289)
+	  5: Rel (     0,  -289)  ->  Abs (   959,     0)
+	  6: Rel (  -293,     0)  ->  Abs (   666,     0)
+	  7: Rel (  -368,     0)  ->  Abs (   298,     0)
+	  8: Rel (   -48,     0)  ->  Abs (   250,     0)
+	  9: Rel (     0,    42)  ->  Abs (   250,    42)
+	 10: Rel (     0,    42)  ->  Abs (   250,    84)
+	 11: Rel (    48,     0)  ->  Abs (   298,    84)
+	 12: Rel (   358,     0)  ->  Abs (   656,    84)
+	 13: Rel (   219,     0)  ->  Abs (   875,    84)
+	 14: Rel (     0,   217)  ->  Abs (   875,   301)
+	 15: Rel (     0,   377)  ->  Abs (   875,   678)
+	 16: Rel (     0,   217)  ->  Abs (   875,   895)
+	 17: Rel (  -219,     0)  ->  Abs (   656,   895)
+	 18: Rel (  -314,     0)  ->  Abs (   342,   895)
+	 19: Rel (     0,  -236)  ->  Abs (   342,   659)
+	 20: Rel (     0,   -71)  ->  Abs (   342,   588)
+	 21: Rel (    61,   -73)  ->  Abs (   403,   515)
+	 22: Rel (   107,     0)  ->  Abs (   510,   515)
+	 23: Rel (    52,     0)  ->  Abs (   562,   515)
+	 24: Rel (    48,     0)  ->  Abs (   610,   515)
+	 25: Rel (     0,   -42)  ->  Abs (   610,   473)
+	 26: Rel (     0,   -42)  ->  Abs (   610,   431)
+	 27: Rel (   -48,     0)  ->  Abs (   562,   431)
+	 28: Rel (   -54,     0)  ->  Abs (   508,   431)
+	 29: Rel (  -250,     0)  ->  Abs (   258,   431)
+	 30: Rel (     0,   214)  ->  Abs (   258,   645)
+	 31: Rel (   543,  -171)  ->  Abs (   801,   474)
+	 32: Rel (    -2,   -61)  ->  Abs (   799,   413)
+	 33: Rel (   -64,    -5)  ->  Abs (   735,   408)
+	 34: Rel (   -61,     3)  ->  Abs (   674,   411)
+	 35: Rel (    -6,    63)  ->  Abs (   668,   474)
+	 36: Rel (     0,    67)  ->  Abs (   668,   541)
+	 37: Rel (    67,     0)  ->  Abs (   735,   541)
+	 38: Rel (    62,    -3)  ->  Abs (   797,   538)
+
+	Glyph 734: off = 0x000268D0, len = 374
+	  numberOfContours:	2
+	  xMin:			162
+	  yMin:			0
+	  xMax:			954
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  36
+	  1:  44
+
+	  Length of Instructions:	246
+	00000: NPUSHB      (49):    70    16   102     3   109    29     3    42    29    52 
+	                            16    69     3     3    43     3    56     3    78     3 
+	                            73    16    73    29     5   119     4   127    15   243 
+	                            15     3    54     3    62    15    71     3     3    19 
+	                            15    22    16     2    15    22    16    22    16 
+	00051: PUSHW[7]            -29    15   -22    14   -22    39   850 
+	00066: NPUSHB      (27):    43    64     9    12    52    43     0     3    16     3 
+	                            16    30    29    28     5    36    24    59    20    10 
+	                             7    59    11    11    32    59    36 
+	00095: PUSHW[3]            812    37   850 
+	00102: PUSHB[6]             96    41   160    41     2    41 
+	00109: PUSHW[1]            -64 
+	00112: PUSHB[4]             24    26    52    41 
+	00117: PUSHW[1]            -64 
+	00120: NPUSHB      (62):     9    14    52    41    41    34    25    32    47    19 
+	                             1    15    19    31    19    95    19   127    19     4 
+	                            19    19    22    15     9    31     9   111     9   127 
+	                             9     4     9   160     6    32    47    12    79    12 
+	                           127    12   191    12     4    12    22    22    34     0 
+	                            32   240    31     1    31   160     0    34    79    34 
+	                             2    34 
+	00184: MDAP[rd]   
+	00185: DELTAP1    
+	00186: MIRP[srp0,nmd,rd,0] 
+	00187: DELTAP1    
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: SRP1       
+	00190: SHP[rp1,zp0] 
+	00191: MDAP[rd]   
+	00192: MDAP[rd]   
+	00193: DELTAP1    
+	00194: MIRP[srp0,md,rd,1] 
+	00195: MIRP[nrp0,nmd,rd,0] 
+	00196: DELTAP1    
+	00197: SRP1       
+	00198: SHP[rp1,zp0] 
+	00199: MDAP[rd]   
+	00200: DELTAP1    
+	00201: DELTAP2    
+	00202: MIRP[nrp0,md,rd,1] 
+	00203: SRP1       
+	00204: SHP[rp1,zp0] 
+	00205: MDAP[rd]   
+	00206: CALL       
+	00207: CALL       
+	00208: DELTAP1    
+	00209: MIRP[nrp0,md,rd,1] 
+	00210: SVTCA[y-axis] 
+	00211: MIAP[rd+ci] 
+	00212: MIRP[nrp0,md,rd,1] 
+	00213: ALIGNRP    
+	00214: SRP0       
+	00215: MIRP[nrp0,md,rd,1] 
+	00216: MIAP[rd+ci] 
+	00217: MIRP[nrp0,md,rd,1] 
+	00218: SRP2       
+	00219: SLOOP      
+	00220: IP         
+	00221: SVTCA[x-axis] 
+	00222: SRP1       
+	00223: SHP[rp1,zp0] 
+	00224: SHP[rp1,zp0] 
+	00225: SVTCA[y-axis] 
+	00226: MDAP[rd]   
+	00227: CALL       
+	00228: MIRP[nrp0,md,rd,1] 
+	00229: IUP[y]     
+	00230: IUP[x]     
+	00231: SVTCA[x-axis] 
+	00232: SHPIX      
+	00233: SHPIX      
+	00234: SHPIX      
+	00235: SVTCA[y-axis] 
+	00236: SHPIX      
+	00237: SHPIX      
+	00238: SVTCA[y-axis] 
+	00239: DELTAP3    
+	00240: DELTAP2    
+	00241: DELTAP2    
+	00242: SVTCA[x-axis] 
+	00243: DELTAP1    
+	00244: DELTAP2    
+	00245: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:        XDual         Y-Short         Off
+	  3:        XDual         Y-Short X-Short On
+	  4:  YDual               Y-Short         Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short On
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         On
+	 20:  YDual                               On
+	 21:  YDual                       X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual                               On
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual                 X-Short On
+	 37:                                      On
+	 38:                      Y-Short X-Short Off
+	 39:                      Y-Short X-Short On
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual               Y-Short X-Short On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual XDual                 X-Short On
+	 44:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   427,   979)  ->  Abs (   427,   979)
+	  1: Rel (     0,   -60)  ->  Abs (   427,   919)
+	  2: Rel (     0,  -228)  ->  Abs (   427,   691)
+	  3: Rel (   183,  -168)  ->  Abs (   610,   523)
+	  4: Rel (   258,    76)  ->  Abs (   868,   599)
+	  5: Rel (     0,   239)  ->  Abs (   868,   838)
+	  6: Rel (     0,    57)  ->  Abs (   868,   895)
+	  7: Rel (  -159,     0)  ->  Abs (   709,   895)
+	  8: Rel (   -48,     0)  ->  Abs (   661,   895)
+	  9: Rel (     0,    42)  ->  Abs (   661,   937)
+	 10: Rel (     0,    42)  ->  Abs (   661,   979)
+	 11: Rel (    48,     0)  ->  Abs (   709,   979)
+	 12: Rel (   245,     0)  ->  Abs (   954,   979)
+	 13: Rel (     0,  -142)  ->  Abs (   954,   837)
+	 14: Rel (     0,  -173)  ->  Abs (   954,   664)
+	 15: Rel (  -146,  -155)  ->  Abs (   808,   509)
+	 16: Rel (  -134,   -50)  ->  Abs (   674,   459)
+	 17: Rel (   160,  -162)  ->  Abs (   834,   297)
+	 18: Rel (     0,  -179)  ->  Abs (   834,   118)
+	 19: Rel (     0,  -118)  ->  Abs (   834,     0)
+	 20: Rel (  -436,     0)  ->  Abs (   398,     0)
+	 21: Rel (   -48,     0)  ->  Abs (   350,     0)
+	 22: Rel (     0,    42)  ->  Abs (   350,    42)
+	 23: Rel (     0,    42)  ->  Abs (   350,    84)
+	 24: Rel (    48,     0)  ->  Abs (   398,    84)
+	 25: Rel (   351,     0)  ->  Abs (   749,    84)
+	 26: Rel (     0,    35)  ->  Abs (   749,   119)
+	 27: Rel (     0,    91)  ->  Abs (   749,   210)
+	 28: Rel (   -76,   124)  ->  Abs (   673,   334)
+	 29: Rel (  -148,   152)  ->  Abs (   525,   486)
+	 30: Rel (  -184,   188)  ->  Abs (   341,   674)
+	 31: Rel (     0,   221)  ->  Abs (   341,   895)
+	 32: Rel (  -131,     0)  ->  Abs (   210,   895)
+	 33: Rel (   -48,     0)  ->  Abs (   162,   895)
+	 34: Rel (     0,    42)  ->  Abs (   162,   937)
+	 35: Rel (     0,    42)  ->  Abs (   162,   979)
+	 36: Rel (    48,     0)  ->  Abs (   210,   979)
+	 37: Rel (   299,  -653)  ->  Abs (   509,   326)
+	 38: Rel (    -4,   -62)  ->  Abs (   505,   264)
+	 39: Rel (   -62,    -4)  ->  Abs (   443,   260)
+	 40: Rel (   -61,     4)  ->  Abs (   382,   264)
+	 41: Rel (    -6,    62)  ->  Abs (   376,   326)
+	 42: Rel (     0,    67)  ->  Abs (   376,   393)
+	 43: Rel (    67,     0)  ->  Abs (   443,   393)
+	 44: Rel (    59,    -2)  ->  Abs (   502,   391)
+
+	Glyph 735: off = 0x00026A46, len = 332
+	  numberOfContours:	3
+	  xMin:			197
+	  yMin:			-417
+	  xMax:			1017
+	  yMax:			979
+
+	EndPoints
+	---------
+	  0:  27
+	  1:  35
+	  2:  45
+
+	  Length of Instructions:	197
+	00000: PUSHB[6]             39     2    55     3     2    19 
+	00007: PUSHW[1]            -16 
+	00010: PUSHB[7]              3    16     5    16     4    16    30 
+	00018: PUSHW[3]            850    34   -64 
+	00025: NPUSHB      (18):     9    10    52    34    34    14    27     3     5     5 
+	                            36    17    19    20    17    17    19    44 
+	00045: PUSHW[1]            816 
+	00048: PUSHB[8]             38     8    59    14    10    23    59    27 
+	00057: PUSHW[3]            812    28   850 
+	00064: PUSHB[6]            127    32   159    32     2    32 
+	00071: PUSHW[1]            -64 
+	00074: PUSHB[4]             39    40    52    32 
+	00079: PUSHW[1]            -64 
+	00082: PUSHB[4]             25    27    52    32 
+	00087: PUSHW[1]            -64 
+	00090: PUSHB[4]             15    16    52    32 
+	00095: PUSHW[1]            -64 
+	00098: PUSHB[7]              9    10    52    32    32    41    11 
+	00106: PUSHW[1]            353 
+	00109: NPUSHB      (32):     8    32    47    14     1    14    14    41    22    32 
+	                            47     0    79     0   111     0   143     0     4     0 
+	                            41    32    37    37    79    25    95    25   111    25 
+	                             3    25 
+	00143: MDAP[rd]   
+	00144: DELTAP1    
+	00145: SHP[rp1,zp0] 
+	00146: MDAP[rd]   
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: MDAP[rd]   
+	00149: DELTAP1    
+	00150: MIRP[nrp0,md,rd,1] 
+	00151: SRP1       
+	00152: SHP[rp1,zp0] 
+	00153: MDAP[rd]   
+	00154: DELTAP1    
+	00155: MIRP[srp0,md,rd,1] 
+	00156: MIRP[nrp0,nmd,rd,0] 
+	00157: SRP1       
+	00158: SHP[rp1,zp0] 
+	00159: MDAP[rd]   
+	00160: CALL       
+	00161: CALL       
+	00162: CALL       
+	00163: CALL       
+	00164: DELTAP2    
+	00165: MIRP[nrp0,md,rd,1] 
+	00166: SVTCA[y-axis] 
+	00167: MIAP[rd+ci] 
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: MIAP[rd+ci] 
+	00170: MIRP[nrp0,md,rd,1] 
+	00171: MDAP[rd]   
+	00172: MIAP[rd+ci] 
+	00173: SDPVTL[1]  
+	00174: SFVTPV     
+	00175: MDAP[nrd]  
+	00176: CALL       
+	00177: SFVTPV     
+	00178: RDTG       
+	00179: SRP0       
+	00180: MDRP[nrp0,nmd,rd,0] 
+	00181: SVTCA[y-axis] 
+	00182: RTG        
+	00183: SRP1       
+	00184: SRP2       
+	00185: IP         
+	00186: MDAP[rd]   
+	00187: CALL       
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: IUP[y]     
+	00190: IUP[x]     
+	00191: SHPIX      
+	00192: SHPIX      
+	00193: SHPIX      
+	00194: SHPIX      
+	00195: SVTCA[x-axis] 
+	00196: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:        XDual         Y-Short         Off
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         On
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short On
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual                               On
+	 24:  YDual                       X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual                 X-Short On
+	 28:                                      On
+	 29:                      Y-Short X-Short Off
+	 30:                      Y-Short X-Short On
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual               Y-Short X-Short On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:                                      On
+	 37:        XDual                         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:        XDual                         On
+	 43:        XDual         Y-Short         Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1017,   979)  ->  Abs (  1017,   979)
+	  1: Rel (     0,  -254)  ->  Abs (  1017,   725)
+	  2: Rel (     0,  -164)  ->  Abs (  1017,   561)
+	  3: Rel (   -81,  -107)  ->  Abs (   936,   454)
+	  4: Rel (   -84,   -43)  ->  Abs (   852,   411)
+	  5: Rel (   -98,   -51)  ->  Abs (   754,   360)
+	  6: Rel (   -70,  -108)  ->  Abs (   684,   252)
+	  7: Rel (     0,  -109)  ->  Abs (   684,   143)
+	  8: Rel (     0,   -59)  ->  Abs (   684,    84)
+	  9: Rel (   140,     0)  ->  Abs (   824,    84)
+	 10: Rel (    48,     0)  ->  Abs (   872,    84)
+	 11: Rel (     0,   -42)  ->  Abs (   872,    42)
+	 12: Rel (     0,   -42)  ->  Abs (   872,     0)
+	 13: Rel (   -48,     0)  ->  Abs (   824,     0)
+	 14: Rel (  -224,     0)  ->  Abs (   600,     0)
+	 15: Rel (     0,   158)  ->  Abs (   600,   158)
+	 16: Rel (     0,   128)  ->  Abs (   600,   286)
+	 17: Rel (    89,   134)  ->  Abs (   689,   420)
+	 18: Rel (   123,    62)  ->  Abs (   812,   482)
+	 19: Rel (    82,    41)  ->  Abs (   894,   523)
+	 20: Rel (    39,   102)  ->  Abs (   933,   625)
+	 21: Rel (     0,   100)  ->  Abs (   933,   725)
+	 22: Rel (     0,   170)  ->  Abs (   933,   895)
+	 23: Rel (  -688,     0)  ->  Abs (   245,   895)
+	 24: Rel (   -48,     0)  ->  Abs (   197,   895)
+	 25: Rel (     0,    42)  ->  Abs (   197,   937)
+	 26: Rel (     0,    42)  ->  Abs (   197,   979)
+	 27: Rel (    48,     0)  ->  Abs (   245,   979)
+	 28: Rel (   426,  -358)  ->  Abs (   671,   621)
+	 29: Rel (    -1,   -62)  ->  Abs (   670,   559)
+	 30: Rel (   -65,    -4)  ->  Abs (   605,   555)
+	 31: Rel (   -61,     3)  ->  Abs (   544,   558)
+	 32: Rel (    -6,    63)  ->  Abs (   538,   621)
+	 33: Rel (     0,    67)  ->  Abs (   538,   688)
+	 34: Rel (    67,     0)  ->  Abs (   605,   688)
+	 35: Rel (    60,     0)  ->  Abs (   665,   688)
+	 36: Rel (  -419, -1057)  ->  Abs (   246,  -369)
+	 37: Rel (     0,   962)  ->  Abs (   246,   593)
+	 38: Rel (     0,    48)  ->  Abs (   246,   641)
+	 39: Rel (    42,     0)  ->  Abs (   288,   641)
+	 40: Rel (    42,     0)  ->  Abs (   330,   641)
+	 41: Rel (     0,   -48)  ->  Abs (   330,   593)
+	 42: Rel (     0,  -962)  ->  Abs (   330,  -369)
+	 43: Rel (     0,   -48)  ->  Abs (   330,  -417)
+	 44: Rel (   -42,     0)  ->  Abs (   288,  -417)
+	 45: Rel (   -42,     0)  ->  Abs (   246,  -417)
+
+	Glyph 736: off = 0x00026B92, len = 42
+	  numberOfContours:	-1  (Composite)
+	  xMin:			172
+	  yMin:			-11
+	  xMax:			952
+	  yMax:			979
+
+	     0: Flags:		0x0226
+		Glyf Index:	696
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	664
+		X BOffset:	-65
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1     0    22    16    22     2     0    22    18     3 
+	                            15    64 
+	00014: SVTCA[x-axis] 
+	00015: CALL       
+	00016: DELTAP1    
+	00017: SHC[rp1,zp0] 
+
+	Glyph 737: off = 0x00026BBC, len = 284
+	  numberOfContours:	2
+	  xMin:			204
+	  yMin:			0
+	  xMax:			1024
+	  yMax:			990
+
+	EndPoints
+	---------
+	  0:  36
+	  1:  44
+
+	  Length of Instructions:	159
+	00000: PUSHW[2]             39   850 
+	00005: NPUSHB      (16):   208    43     1    43    43    16    20     0    31     1 
+	                             1    30    91    16    10    34 
+	00023: PUSHW[1]            812 
+	00026: PUSHB[5]              6    26    59    10    20 
+	00032: PUSHW[3]            812    37   850 
+	00039: NPUSHB      (33):    41    64    29    32    52    41    41     5    36    32 
+	                            32    32    11    20     8    64     9    14    52     8 
+	                           232     5    32    15    11    31    11     2    95    11 
+	                             1    11    23 
+	00074: PUSHW[1]            -64 
+	00077: NPUSHB      (38):     9    14    52    23   232    26    32    16    20    64 
+	                            20   192    20   208    20     4     0    20    16    20 
+	                            79    20    95    20    96    20   112    20   160    20 
+	                           176    20   239    20   255    20    10    20 
+	00117: MDAP[rd]   
+	00118: DELTAP1    
+	00119: DELTAP2    
+	00120: MIRP[srp0,md,rd,1] 
+	00121: MIRP[nrp0,nmd,rd,0] 
+	00122: CALL       
+	00123: MDAP[rd]   
+	00124: DELTAP2    
+	00125: DELTAP3    
+	00126: MIRP[srp0,md,rd,1] 
+	00127: MIRP[nrp0,nmd,rd,0] 
+	00128: CALL       
+	00129: SRP1       
+	00130: SRP2       
+	00131: IP         
+	00132: MDAP[rd]   
+	00133: MIRP[srp0,md,rd,1] 
+	00134: SRP1       
+	00135: IP         
+	00136: MDAP[rd]   
+	00137: CALL       
+	00138: MIRP[nrp0,md,rd,1] 
+	00139: SVTCA[y-axis] 
+	00140: MIAP[rd+ci] 
+	00141: ALIGNRP    
+	00142: MIRP[srp0,md,rd,1] 
+	00143: ALIGNRP    
+	00144: MIAP[rd+ci] 
+	00145: MIAP[rd+ci] 
+	00146: MIRP[srp0,md,rd,1] 
+	00147: ALIGNRP    
+	00148: SRP1       
+	00149: IP         
+	00150: IP         
+	00151: SRP1       
+	00152: SRP2       
+	00153: IP         
+	00154: MDAP[rd]   
+	00155: DELTAP1    
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: IUP[y]     
+	00158: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:        XDual                         On
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short On
+	 27:        XDual                         On
+	 28:        XDual         Y-Short         Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short On
+	 32:        XDual                         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual                 X-Short On
+	 38:                      Y-Short X-Short Off
+	 39:                      Y-Short X-Short On
+	 40:                      Y-Short X-Short Off
+	 41:  YDual               Y-Short X-Short On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual XDual                 X-Short On
+	 44:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   656,    84)  ->  Abs (   656,    84)
+	  1: Rel (    79,     0)  ->  Abs (   735,    84)
+	  2: Rel (   131,     0)  ->  Abs (   866,    84)
+	  3: Rel (    74,   108)  ->  Abs (   940,   192)
+	  4: Rel (     0,   109)  ->  Abs (   940,   301)
+	  5: Rel (     0,   594)  ->  Abs (   940,   895)
+	  6: Rel (  -110,     0)  ->  Abs (   830,   895)
+	  7: Rel (   -48,     0)  ->  Abs (   782,   895)
+	  8: Rel (     0,    42)  ->  Abs (   782,   937)
+	  9: Rel (     0,    42)  ->  Abs (   782,   979)
+	 10: Rel (    48,     0)  ->  Abs (   830,   979)
+	 11: Rel (   194,     0)  ->  Abs (  1024,   979)
+	 12: Rel (     0,  -686)  ->  Abs (  1024,   293)
+	 13: Rel (     0,  -165)  ->  Abs (  1024,   128)
+	 14: Rel (  -137,  -128)  ->  Abs (   887,     0)
+	 15: Rel (  -153,     0)  ->  Abs (   734,     0)
+	 16: Rel (  -245,     0)  ->  Abs (   489,     0)
+	 17: Rel (  -172,     0)  ->  Abs (   317,     0)
+	 18: Rel (  -113,   153)  ->  Abs (   204,   153)
+	 19: Rel (     0,   142)  ->  Abs (   204,   295)
+	 20: Rel (     0,   684)  ->  Abs (   204,   979)
+	 21: Rel (   194,     0)  ->  Abs (   398,   979)
+	 22: Rel (    48,     0)  ->  Abs (   446,   979)
+	 23: Rel (     0,   -42)  ->  Abs (   446,   937)
+	 24: Rel (     0,   -42)  ->  Abs (   446,   895)
+	 25: Rel (   -48,     0)  ->  Abs (   398,   895)
+	 26: Rel (  -110,     0)  ->  Abs (   288,   895)
+	 27: Rel (     0,  -594)  ->  Abs (   288,   301)
+	 28: Rel (     0,  -131)  ->  Abs (   288,   170)
+	 29: Rel (    95,   -86)  ->  Abs (   383,    84)
+	 30: Rel (   109,     0)  ->  Abs (   492,    84)
+	 31: Rel (    80,     0)  ->  Abs (   572,    84)
+	 32: Rel (     0,   858)  ->  Abs (   572,   942)
+	 33: Rel (     0,    48)  ->  Abs (   572,   990)
+	 34: Rel (    42,     0)  ->  Abs (   614,   990)
+	 35: Rel (    42,     0)  ->  Abs (   656,   990)
+	 36: Rel (     0,   -48)  ->  Abs (   656,   942)
+	 37: Rel (   205,  -422)  ->  Abs (   861,   520)
+	 38: Rel (    -5,   -63)  ->  Abs (   856,   457)
+	 39: Rel (   -61,    -3)  ->  Abs (   795,   454)
+	 40: Rel (   -61,    -1)  ->  Abs (   734,   453)
+	 41: Rel (    -6,    67)  ->  Abs (   728,   520)
+	 42: Rel (     0,    67)  ->  Abs (   728,   587)
+	 43: Rel (    67,     0)  ->  Abs (   795,   587)
+	 44: Rel (    65,    -4)  ->  Abs (   860,   583)
+
+	Glyph 738: off = 0x00026CD8, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			160
+	  yMin:			-11
+	  xMax:			995
+	  yMax:			979
+
+	     0: Flags:		0x0226
+		Glyf Index:	698
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	664
+		X BOffset:	61
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     1   192    31     1     0    31    27     0    22    64 
+	                             1   224    33     1    33 
+	00017: SVTCA[y-axis] 
+	00018: MDAP[rd]   
+	00019: DELTAP1    
+	00020: SHC[rp1,zp0] 
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: DELTAP1    
+	00024: SHC[rp1,zp0] 
+
+	Glyph 739: off = 0x00026D0A, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			375
+	  yMin:			-11
+	  xMax:			701
+	  yMax:			1286
+
+	     0: Flags:		0x0226
+		Glyf Index:	677
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	662
+		X BOffset:	20
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    12    12     6     6    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 740: off = 0x00026D2E, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			158
+	  yMin:			0
+	  xMax:			1069
+	  yMax:			1244
+
+	     0: Flags:		0x0226
+		Glyf Index:	673
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	667
+		X BOffset:	-108
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    33    28    16    14    64     1     1    25 
+	00012: PUSHW[2]            836    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 741: off = 0x00026D5C, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			180
+	  yMin:			0
+	  xMax:			1015
+	  yMax:			1244
+
+	     0: Flags:		0x0226
+		Glyf Index:	683
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	667
+		X BOffset:	-30
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    28    23    17    12    64     1     1    20 
+	00012: PUSHW[2]            836    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 742: off = 0x00026D8A, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			250
+	  yMin:			0
+	  xMax:			959
+	  yMax:			1244
+
+	     0: Flags:		0x0226
+		Glyf Index:	692
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	667
+		X BOffset:	-30
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     1    16    39     1     0    39    34     0     3    64 
+	                             1     1    31 
+	00015: PUSHW[2]            836    41 
+	00020: SVTCA[y-axis] 
+	00021: CALL       
+	00022: SVTCA[x-axis] 
+	00023: CALL       
+	00024: DELTAP2    
+	00025: SHC[rp1,zp0] 
+
+	Glyph 743: off = 0x00026DBC, len = 324
+	  numberOfContours:	1
+	  xMin:			172
+	  yMin:			-12
+	  xMax:			1029
+	  yMax:			1289
+
+	EndPoints
+	---------
+	  0:  42
+
+	  Length of Instructions:	196
+	00000: PUSHW[4]             41   -29    10   -29 
+	00009: NPUSHB      (59):    20    29     4     8     7    39     9    22    23    22 
+	                            20    23     8    42    30    29    29     0    25     8 
+	                            23    23    32    29     0    20    29    29     0    29 
+	                            23    22     9    30    42     8     7     7    39    20 
+	                            10    27    17    41    31    39     7    27    10    27 
+	                            33    59    39    10     0    59     1    59     7 
+	00070: PUSHW[1]            812 
+	00073: PUSHB[4]              7    13    59    17 
+	00078: PUSHW[1]            812 
+	00081: NPUSHB      (40):     7    32     1     1    29    23    22     9    30    42 
+	                             0     8     8    18    39    15    15    12    32     0 
+	                            18     1     0    18   192    18   224    18     3    18 
+	                            36    36    33    32     0    39    79    39     2    39 
+	00123: MDAP[rd]   
+	00124: DELTAP1    
+	00125: MIRP[nrp0,md,rd,1] 
+	00126: SHP[rp1,zp0] 
+	00127: MDAP[rd]   
+	00128: MDAP[rd]   
+	00129: DELTAP1    
+	00130: DELTAP2    
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: SHP[rp1,zp0] 
+	00133: MDAP[rd]   
+	00134: SRP1       
+	00135: SRP2       
+	00136: SLOOP      
+	00137: IP         
+	00138: SHP[rp1,zp0] 
+	00139: MDAP[rd]   
+	00140: MIRP[nrp0,md,rd,1] 
+	00141: SVTCA[y-axis] 
+	00142: MIAP[rd+ci] 
+	00143: MIRP[srp0,md,rd,1] 
+	00144: SHP[rp2,zp1] 
+	00145: MIAP[rd+ci] 
+	00146: MIRP[nrp0,md,rd,1] 
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: MIAP[rd+ci] 
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: SHP[rp1,zp0] 
+	00151: MIAP[rd+ci] 
+	00152: SRP1       
+	00153: SRP2       
+	00154: IP         
+	00155: IP         
+	00156: SRP1       
+	00157: SRP2       
+	00158: IP         
+	00159: IP         
+	00160: SRP1       
+	00161: SRP2       
+	00162: SLOOP      
+	00163: IP         
+	00164: SDPVTL[1]  
+	00165: SFVTPV     
+	00166: MDAP[nrd]  
+	00167: CALL       
+	00168: SFVTCA[x-axis] 
+	00169: RDTG       
+	00170: SRP0       
+	00171: MDRP[nrp0,nmd,rd,0] 
+	00172: SVTCA[x-axis] 
+	00173: SHP[rp1,zp0] 
+	00174: SPVTL[p1,p2] 
+	00175: SFVTPV     
+	00176: SRP0       
+	00177: ALIGNRP    
+	00178: ALIGNRP    
+	00179: SPVTL[p1,p2] 
+	00180: SFVTL[=p1,p2] 
+	00181: SRP0       
+	00182: ALIGNRP    
+	00183: SFVTPV     
+	00184: ALIGNRP    
+	00185: SVTCA[y-axis] 
+	00186: SRP1       
+	00187: SRP2       
+	00188: IP         
+	00189: RTG        
+	00190: MDAP[rd]   
+	00191: IUP[y]     
+	00192: IUP[x]     
+	00193: SHPIX      
+	00194: SHPIX      
+	00195: SHPIX      
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short On
+	  2:        XDual                         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual XDual                 X-Short On
+	  5:  YDual XDual                 X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual                         On
+	  8:  YDual XDual                 X-Short On
+	  9:                                      On
+	 10:  YDual               Y-Short         Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short On
+	 19:        XDual                         On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short         On
+	 22:  YDual               Y-Short X-Short On
+	 23:                                      On
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:                                      On
+	 31:                      Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual                         On
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short On
+	 40:        XDual                         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   277,   894)  ->  Abs (   277,   894)
+	  1: Rel (  -105,     1)  ->  Abs (   172,   895)
+	  2: Rel (     0,   346)  ->  Abs (   172,  1241)
+	  3: Rel (     0,    48)  ->  Abs (   172,  1289)
+	  4: Rel (    42,     0)  ->  Abs (   214,  1289)
+	  5: Rel (    42,     0)  ->  Abs (   256,  1289)
+	  6: Rel (     0,   -48)  ->  Abs (   256,  1241)
+	  7: Rel (     0,  -262)  ->  Abs (   256,   979)
+	  8: Rel (    65,     0)  ->  Abs (   321,   979)
+	  9: Rel (   361,  -491)  ->  Abs (   682,   488)
+	 10: Rel (   263,    92)  ->  Abs (   945,   580)
+	 11: Rel (     0,   127)  ->  Abs (   945,   707)
+	 12: Rel (     0,   188)  ->  Abs (   945,   895)
+	 13: Rel (  -157,     0)  ->  Abs (   788,   895)
+	 14: Rel (   -48,     0)  ->  Abs (   740,   895)
+	 15: Rel (     0,    42)  ->  Abs (   740,   937)
+	 16: Rel (     0,    42)  ->  Abs (   740,   979)
+	 17: Rel (    48,     0)  ->  Abs (   788,   979)
+	 18: Rel (   241,     0)  ->  Abs (  1029,   979)
+	 19: Rel (     0,  -288)  ->  Abs (  1029,   691)
+	 20: Rel (     0,  -179)  ->  Abs (  1029,   512)
+	 21: Rel (  -298,   -89)  ->  Abs (   731,   423)
+	 22: Rel (    -8,    10)  ->  Abs (   723,   433)
+	 23: Rel (   275,  -373)  ->  Abs (   998,    60)
+	 24: Rel (    11,   -16)  ->  Abs (  1009,    44)
+	 25: Rel (     0,   -16)  ->  Abs (  1009,    28)
+	 26: Rel (     0,   -40)  ->  Abs (  1009,   -12)
+	 27: Rel (   -41,     0)  ->  Abs (   968,   -12)
+	 28: Rel (   -22,     0)  ->  Abs (   946,   -12)
+	 29: Rel (   -16,    22)  ->  Abs (   930,    10)
+	 30: Rel (  -447,   607)  ->  Abs (   483,   617)
+	 31: Rel (  -191,   -82)  ->  Abs (   292,   535)
+	 32: Rel (     0,  -132)  ->  Abs (   292,   403)
+	 33: Rel (     0,  -319)  ->  Abs (   292,    84)
+	 34: Rel (   139,     0)  ->  Abs (   431,    84)
+	 35: Rel (    48,     0)  ->  Abs (   479,    84)
+	 36: Rel (     0,   -42)  ->  Abs (   479,    42)
+	 37: Rel (     0,   -42)  ->  Abs (   479,     0)
+	 38: Rel (   -48,     0)  ->  Abs (   431,     0)
+	 39: Rel (  -223,     0)  ->  Abs (   208,     0)
+	 40: Rel (     0,   399)  ->  Abs (   208,   399)
+	 41: Rel (     0,   175)  ->  Abs (   208,   574)
+	 42: Rel (   224,   111)  ->  Abs (   432,   685)
+
+	Glyph 744: off = 0x00026F00, len = 60
+	  numberOfContours:	1
+	  xMin:			579
+	  yMin:			-275
+	  xMax:			651
+	  yMax:			1289
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	32
+	00000: PUSHW[6]              2   818     3   817     0   817 
+	00013: PUSHB[7]             16     3     1     3     3     5     4 
+	00021: SRP1       
+	00022: SRP2       
+	00023: IP         
+	00024: MDAP[rd]   
+	00025: DELTAP1    
+	00026: MIRP[nrp0,md,rd,1] 
+	00027: SVTCA[y-axis] 
+	00028: MIAP[rd+ci] 
+	00029: MIAP[rd+ci] 
+	00030: IUP[y]     
+	00031: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:  YDual                       X-Short On
+	  3:        XDual                         On
+
+	Coordinates
+	-----------
+	  0: Rel (   651,  1289)  ->  Abs (   651,  1289)
+	  1: Rel (     0, -1564)  ->  Abs (   651,  -275)
+	  2: Rel (   -72,     0)  ->  Abs (   579,  -275)
+	  3: Rel (     0,  1564)  ->  Abs (   579,  1289)
+
+	Glyph 745: off = 0x00026F3C, len = 332
+	  numberOfContours:	1
+	  xMin:			396
+	  yMin:			-275
+	  xMax:			834
+	  yMax:			1413
+
+	EndPoints
+	---------
+	  0:  14
+
+	  Length of Instructions:	271
+	00000: NPUSHB      (37):    14    64   125   125    52     2    64   125   125    52 
+	                            14     5     6     6    13    11     2     3    10     5 
+	                             6    13     4     9    11     3    10    12     7     8 
+	                             9     4     7    12    10     3     3 
+	00039: PUSHW[1]            640 
+	00042: NPUSHB       (9):     4     9    20     4     4     9    13     6     6 
+	00053: PUSHW[1]            640 
+	00056: NPUSHB      (33):     7    12    20     7     7    12     8     7    14     2 
+	                             5    12     4    12     4    10     6    10     6     7 
+	                            11     5    13    13     9     9     7     3    64    43 
+	                            47    52     3 
+	00091: PUSHW[3]            822     7   822 
+	00098: NPUSHB      (20):     5     0    13     9    13     9    10     7     3     3 
+	                             7     6    10    64    43    47    52    10    10    12 
+	00120: PUSHW[1]            -64 
+	00123: PUSHB[4]             43    47    52    12 
+	00128: PUSHW[4]            822     8     6   -64 
+	00137: NPUSHB      (11):    43    47    52     6     6     4    64    43    47    52 
+	                             4 
+	00150: PUSHW[1]            822 
+	00153: PUSHB[4]             96     8     8    14 
+	00158: PUSHW[1]            821 
+	00161: PUSHB[7]             16     2     1     2     2    16    15 
+	00169: SRP1       
+	00170: SRP2       
+	00171: IP         
+	00172: MDAP[rd]   
+	00173: DELTAP1    
+	00174: MIRP[nrp0,md,rd,1] 
+	00175: RTHG       
+	00176: IP         
+	00177: MDAP[rd]   
+	00178: SMD        
+	00179: MIRP[srp0,md,rd,1] 
+	00180: CALL       
+	00181: SHP[rp2,zp1] 
+	00182: RTG        
+	00183: MDAP[rd]   
+	00184: CALL       
+	00185: RTHG       
+	00186: SRP0       
+	00187: MIRP[srp0,md,rd,1] 
+	00188: CALL       
+	00189: SHP[rp2,zp1] 
+	00190: RTG        
+	00191: MDAP[rd]   
+	00192: CALL       
+	00193: SRP1       
+	00194: SHP[rp1,zp0] 
+	00195: SHP[rp1,zp0] 
+	00196: RTHG       
+	00197: MDAP[rd]   
+	00198: MDAP[rd]   
+	00199: SRP1       
+	00200: SHP[rp1,zp0] 
+	00201: SHP[rp1,zp0] 
+	00202: MDAP[rd]   
+	00203: MDAP[rd]   
+	00204: SVTCA[y-axis] 
+	00205: RTG        
+	00206: MDAP[rd]   
+	00207: RTHG       
+	00208: MDAP[rd]   
+	00209: MIRP[nrp0,md,rd,1] 
+	00210: MIRP[nrp0,md,rd,1] 
+	00211: CALL       
+	00212: SRP1       
+	00213: SHP[rp1,zp0] 
+	00214: RTG        
+	00215: MDAP[rd]   
+	00216: SHP[rp2,zp1] 
+	00217: MDAP[rd]   
+	00218: SRP1       
+	00219: SHP[rp1,zp0] 
+	00220: SRP1       
+	00221: SHP[rp1,zp0] 
+	00222: SHP[rp1,zp0] 
+	00223: RTHG       
+	00224: MDAP[rd]   
+	00225: MDAP[rd]   
+	00226: SHP[rp2,zp1] 
+	00227: SHP[rp2,zp1] 
+	00228: MDAP[rd]   
+	00229: MDAP[rd]   
+	00230: SRP1       
+	00231: IP         
+	00232: IP         
+	00233: SRP2       
+	00234: IP         
+	00235: SDPVTL[1]  
+	00236: SFVTPV     
+	00237: MDAP[nrd]  
+	00238: RTG        
+	00239: CALL       
+	00240: SFVTPV     
+	00241: RDTG       
+	00242: SRP0       
+	00243: MDRP[nrp0,nmd,rd,0] 
+	00244: SDPVTL[1]  
+	00245: SFVTPV     
+	00246: MDAP[nrd]  
+	00247: RTG        
+	00248: CALL       
+	00249: SFVTPV     
+	00250: RDTG       
+	00251: SRP0       
+	00252: MDRP[nrp0,nmd,rd,0] 
+	00253: ISECT      
+	00254: ISECT      
+	00255: ISECT      
+	00256: SDPVTL[1]  
+	00257: SFVTCA[y-axis] 
+	00258: MDRP[nrp0,nmd,rd,0] 
+	00259: SFVTPV     
+	00260: ALIGNRP    
+	00261: SDPVTL[1]  
+	00262: SFVTPV     
+	00263: SRP0       
+	00264: ALIGNRP    
+	00265: SFVTCA[y-axis] 
+	00266: MDRP[nrp0,nmd,rd,0] 
+	00267: CALL       
+	00268: CALL       
+	00269: IUP[y]     
+	00270: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:                      Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short On
+	 11:                      Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short On
+	 13:                      Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   651,  -275)  ->  Abs (   651,  -275)
+	  1: Rel (   -72,     0)  ->  Abs (   579,  -275)
+	  2: Rel (     0,  1389)  ->  Abs (   579,  1114)
+	  3: Rel (  -134,  -136)  ->  Abs (   445,   978)
+	  4: Rel (   -49,    49)  ->  Abs (   396,  1027)
+	  5: Rel (   171,   169)  ->  Abs (   567,  1196)
+	  6: Rel (  -171,   168)  ->  Abs (   396,  1364)
+	  7: Rel (    49,    49)  ->  Abs (   445,  1413)
+	  8: Rel (   170,  -171)  ->  Abs (   615,  1242)
+	  9: Rel (   170,   171)  ->  Abs (   785,  1413)
+	 10: Rel (    49,   -49)  ->  Abs (   834,  1364)
+	 11: Rel (  -171,  -168)  ->  Abs (   663,  1196)
+	 12: Rel (   171,  -169)  ->  Abs (   834,  1027)
+	 13: Rel (   -49,   -49)  ->  Abs (   785,   978)
+	 14: Rel (  -134,   136)  ->  Abs (   651,  1114)
+
+	Glyph 746: off = 0x00027088, len = 194
+	  numberOfContours:	1
+	  xMin:			352
+	  yMin:			-275
+	  xMax:			938
+	  yMax:			1413
+
+	EndPoints
+	---------
+	  0:  10
+
+	  Length of Instructions:	146
+	00000: PUSHB[3]              2     3     3 
+	00004: PUSHW[1]            640 
+	00007: NPUSHB       (9):     0     1    20     0     0     1     8     9     9 
+	00018: PUSHW[1]            640 
+	00021: NPUSHB      (15):    10     0    20    10    10     0     0     7     2     1 
+	                             4     9    10     7     1 
+	00038: PUSHW[7]            824     3     4   821    64    10   824 
+	00053: NPUSHB      (13):     7     5     8     7     2     9     3     8    10    10 
+	                             1     1     0 
+	00068: PUSHW[6]            823   192     5   821     6   -64 
+	00081: PUSHB[4]             14    15    52     6 
+	00086: PUSHW[1]            -64 
+	00089: PUSHB[4]              9    12    52     6 
+	00094: MDAP[rd]   
+	00095: CALL       
+	00096: CALL       
+	00097: MIRP[srp0,md,rd,1] 
+	00098: SMD        
+	00099: MIRP[srp0,md,rd,0] 
+	00100: RTHG       
+	00101: IP         
+	00102: MDAP[rd]   
+	00103: SHP[rp1,zp0] 
+	00104: MDAP[rd]   
+	00105: IP         
+	00106: IP         
+	00107: SHP[rp1,zp0] 
+	00108: SHP[rp1,zp0] 
+	00109: SVTCA[y-axis] 
+	00110: RTG        
+	00111: MDAP[rd]   
+	00112: ALIGNRP    
+	00113: MDAP[rd]   
+	00114: SRP0       
+	00115: MIRP[nrp0,nmd,rd,0] 
+	00116: SMD        
+	00117: MIRP[srp0,md,rd,1] 
+	00118: ALIGNRP    
+	00119: MIRP[nrp0,nmd,rd,0] 
+	00120: SRP1       
+	00121: SRP2       
+	00122: IP         
+	00123: SRP1       
+	00124: SRP2       
+	00125: IP         
+	00126: SRP2       
+	00127: IP         
+	00128: SDPVTL[1]  
+	00129: SFVTPV     
+	00130: MDAP[nrd]  
+	00131: CALL       
+	00132: SFVTCA[x-axis] 
+	00133: RDTG       
+	00134: SRP0       
+	00135: MDRP[nrp0,nmd,rd,0] 
+	00136: SDPVTL[1]  
+	00137: MDAP[nrd]  
+	00138: RTG        
+	00139: CALL       
+	00140: SFVTPV     
+	00141: RDTG       
+	00142: SRP0       
+	00143: MDRP[nrp0,nmd,rd,0] 
+	00144: IUP[y]     
+	00145: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual                               On
+	  5:        XDual                         On
+	  6:  YDual                       X-Short On
+	  7:        XDual                         On
+	  8:  YDual                               On
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   938,  1198)  ->  Abs (   938,  1198)
+	  1: Rel (  -217,  -214)  ->  Abs (   721,   984)
+	  2: Rel (   -49,    49)  ->  Abs (   672,  1033)
+	  3: Rel (   137,   130)  ->  Abs (   809,  1163)
+	  4: Rel (  -386,     0)  ->  Abs (   423,  1163)
+	  5: Rel (     0, -1438)  ->  Abs (   423,  -275)
+	  6: Rel (   -71,     0)  ->  Abs (   352,  -275)
+	  7: Rel (     0,  1509)  ->  Abs (   352,  1234)
+	  8: Rel (   457,     0)  ->  Abs (   809,  1234)
+	  9: Rel (  -137,   130)  ->  Abs (   672,  1364)
+	 10: Rel (    49,    49)  ->  Abs (   721,  1413)
+
+	Glyph 747: off = 0x0002714A, len = 180
+	  numberOfContours:	1
+	  xMin:			292
+	  yMin:			-275
+	  xMax:			878
+	  yMax:			1413
+
+	EndPoints
+	---------
+	  0:  10
+
+	  Length of Instructions:	132
+	00000: PUSHB[3]              9     8     8 
+	00004: PUSHW[1]            640 
+	00007: NPUSHB       (9):     7     6    20     7     7     6     3     4     4 
+	00018: PUSHW[1]            640 
+	00021: NPUSHB      (14):     5     6    20     5     5     6     4     5     6     2 
+	                             8     7    10     5 
+	00037: PUSHW[7]            824     3     2   821    64     7   824 
+	00052: NPUSHB      (12):     9    10     1     4     8     3     9     7     7     5 
+	                             5     6 
+	00066: PUSHW[4]            823   192     0   821 
+	00075: PUSHB[6]             16     1    64     1     2     1 
+	00082: MDAP[rd]   
+	00083: DELTAP1    
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: SMD        
+	00086: MIRP[srp0,md,rd,0] 
+	00087: RTHG       
+	00088: IP         
+	00089: MDAP[rd]   
+	00090: SHP[rp1,zp0] 
+	00091: MDAP[rd]   
+	00092: IP         
+	00093: IP         
+	00094: SHP[rp1,zp0] 
+	00095: SHP[rp1,zp0] 
+	00096: SVTCA[y-axis] 
+	00097: RTG        
+	00098: MDAP[rd]   
+	00099: MDAP[rd]   
+	00100: ALIGNRP    
+	00101: MIRP[nrp0,nmd,rd,0] 
+	00102: SMD        
+	00103: MIRP[srp0,md,rd,1] 
+	00104: ALIGNRP    
+	00105: MIRP[nrp0,nmd,rd,0] 
+	00106: SRP1       
+	00107: SRP2       
+	00108: IP         
+	00109: SRP2       
+	00110: IP         
+	00111: SRP1       
+	00112: IP         
+	00113: SDPVTL[1]  
+	00114: SFVTPV     
+	00115: MDAP[nrd]  
+	00116: CALL       
+	00117: SFVTCA[x-axis] 
+	00118: RDTG       
+	00119: SRP0       
+	00120: MDRP[nrp0,nmd,rd,0] 
+	00121: SDPVTL[1]  
+	00122: SFVTPV     
+	00123: MDAP[nrd]  
+	00124: RTG        
+	00125: CALL       
+	00126: SFVTCA[x-axis] 
+	00127: RDTG       
+	00128: SRP0       
+	00129: MDRP[nrp0,nmd,rd,0] 
+	00130: IUP[y]     
+	00131: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:        XDual                         On
+	  3:  YDual                               On
+	  4:        XDual         Y-Short X-Short On
+	  5:                      Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short On
+	  9:                      Y-Short X-Short On
+	 10:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   878,  -275)  ->  Abs (   878,  -275)
+	  1: Rel (   -71,     0)  ->  Abs (   807,  -275)
+	  2: Rel (     0,  1438)  ->  Abs (   807,  1163)
+	  3: Rel (  -386,     0)  ->  Abs (   421,  1163)
+	  4: Rel (   137,  -130)  ->  Abs (   558,  1033)
+	  5: Rel (   -49,   -49)  ->  Abs (   509,   984)
+	  6: Rel (  -217,   214)  ->  Abs (   292,  1198)
+	  7: Rel (   217,   215)  ->  Abs (   509,  1413)
+	  8: Rel (    49,   -49)  ->  Abs (   558,  1364)
+	  9: Rel (  -137,  -130)  ->  Abs (   421,  1234)
+	 10: Rel (   457,     0)  ->  Abs (   878,  1234)
+
+	Glyph 748: off = 0x000271FE, len = 152
+	  numberOfContours:	1
+	  xMin:			455
+	  yMin:			-12
+	  xMax:			773
+	  yMax:			497
+
+	EndPoints
+	---------
+	  0:  20
+
+	  Length of Instructions:	85
+	00000: NPUSHB      (31):   233    13   248    13     2    39    20    53    12    53 
+	                            20     3     6    20    38    12    70    12    70    20 
+	                             4   247    20     1     8    13     1    14    14     0 
+	                             2 
+	00033: PUSHW[1]            945 
+	00036: NPUSHB      (11):     8    48    16     1    16    16     0    15     5     1 
+	                             5 
+	00049: PUSHW[1]            946 
+	00052: PUSHB[5]            191    11     1    11     5 
+	00058: PUSHW[1]            340 
+	00061: SCANCTRL   
+	00062: SCANTYPE   
+	00063: MDAP[rd]   
+	00064: DELTAP1    
+	00065: MIRP[nrp0,md,rd,1] 
+	00066: DELTAP1    
+	00067: IP         
+	00068: SHP[rp2,zp1] 
+	00069: MDAP[rd]   
+	00070: DELTAP1    
+	00071: SVTCA[y-axis] 
+	00072: MDAP[rd]   
+	00073: MIRP[nrp0,md,rd,1] 
+	00074: IP         
+	00075: SHP[rp2,zp1] 
+	00076: MDAP[rd]   
+	00077: IUP[y]     
+	00078: IUP[x]     
+	00079: SVTCA[x-axis] 
+	00080: DELTAP3    
+	00081: DELTAP1    
+	00082: DELTAP2    
+	00083: DELTAP2    
+	00084: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   555,   242)  ->  Abs (   555,   242)
+	  1: Rel (    26,    13)  ->  Abs (   581,   255)
+	  2: Rel (    31,     0)  ->  Abs (   612,   255)
+	  3: Rel (    61,     0)  ->  Abs (   673,   255)
+	  4: Rel (    90,   -72)  ->  Abs (   763,   183)
+	  5: Rel (     0,   -76)  ->  Abs (   763,   107)
+	  6: Rel (     0,   -34)  ->  Abs (   763,    73)
+	  7: Rel (   -68,   -85)  ->  Abs (   695,   -12)
+	  8: Rel (   -95,     0)  ->  Abs (   600,   -12)
+	  9: Rel (   -74,     0)  ->  Abs (   526,   -12)
+	 10: Rel (   -71,    84)  ->  Abs (   455,    72)
+	 11: Rel (     0,    51)  ->  Abs (   455,   123)
+	 12: Rel (     0,   163)  ->  Abs (   455,   286)
+	 13: Rel (   201,   211)  ->  Abs (   656,   497)
+	 14: Rel (    76,     0)  ->  Abs (   732,   497)
+	 15: Rel (    41,     0)  ->  Abs (   773,   497)
+	 16: Rel (     0,   -31)  ->  Abs (   773,   466)
+	 17: Rel (     0,   -21)  ->  Abs (   773,   445)
+	 18: Rel (   -51,   -23)  ->  Abs (   722,   422)
+	 19: Rel (   -65,   -31)  ->  Abs (   657,   391)
+	 20: Rel (  -100,  -105)  ->  Abs (   557,   286)
+
+	Glyph 749: off = 0x00027296, len = 224
+	  numberOfContours:	2
+	  xMin:			455
+	  yMin:			0
+	  xMax:			773
+	  yMax:			1049
+
+	EndPoints
+	---------
+	  0:  20
+	  1:  34
+
+	  Length of Instructions:	120
+	00000: NPUSHB      (31):   233    13   248    13     2    39    20    53    12    53 
+	                            20     3     6    20    38    12    70    12    70    20 
+	                             4   245    20     1     8    13     1    14    14     0 
+	                             2 
+	00033: PUSHW[1]            945 
+	00036: NPUSHB       (9):    48     8    64     8     2     8     8    22    21 
+	00047: PUSHW[4]            945    28    29   858 
+	00056: NPUSHB      (10):    48    16     1    16    16     0    15     5     1     5 
+	00068: PUSHW[1]            946 
+	00071: PUSHB[6]             11    11    15    25     1    25 
+	00078: PUSHW[4]            946    32     5   340 
+	00087: SCANCTRL   
+	00088: SCANTYPE   
+	00089: MDAP[rd]   
+	00090: MIRP[nrp0,md,rd,1] 
+	00091: DELTAP1    
+	00092: SHP[rp1,zp0] 
+	00093: MDAP[rd]   
+	00094: MIRP[nrp0,md,rd,1] 
+	00095: DELTAP1    
+	00096: IP         
+	00097: SHP[rp2,zp1] 
+	00098: MDAP[rd]   
+	00099: DELTAP1    
+	00100: SVTCA[y-axis] 
+	00101: MIAP[rd+ci] 
+	00102: ALIGNRP    
+	00103: MIRP[srp0,md,rd,1] 
+	00104: ALIGNRP    
+	00105: SHP[rp2,zp1] 
+	00106: MDAP[rd]   
+	00107: DELTAP1    
+	00108: MIRP[nrp0,md,rd,1] 
+	00109: IP         
+	00110: SHP[rp2,zp1] 
+	00111: MDAP[rd]   
+	00112: IUP[y]     
+	00113: IUP[x]     
+	00114: SVTCA[x-axis] 
+	00115: DELTAP3    
+	00116: DELTAP1    
+	00117: DELTAP2    
+	00118: DELTAP2    
+	00119: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short Off
+	 21:        XDual                 X-Short On
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:                      Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   564,   798)  ->  Abs (   564,   798)
+	  1: Rel (    26,    12)  ->  Abs (   590,   810)
+	  2: Rel (    27,     0)  ->  Abs (   617,   810)
+	  3: Rel (    52,     0)  ->  Abs (   669,   810)
+	  4: Rel (    94,   -74)  ->  Abs (   763,   736)
+	  5: Rel (     0,   -77)  ->  Abs (   763,   659)
+	  6: Rel (     0,   -33)  ->  Abs (   763,   626)
+	  7: Rel (   -68,   -86)  ->  Abs (   695,   540)
+	  8: Rel (   -95,     0)  ->  Abs (   600,   540)
+	  9: Rel (   -74,     0)  ->  Abs (   526,   540)
+	 10: Rel (   -71,    85)  ->  Abs (   455,   625)
+	 11: Rel (     0,    51)  ->  Abs (   455,   676)
+	 12: Rel (     0,   162)  ->  Abs (   455,   838)
+	 13: Rel (   201,   211)  ->  Abs (   656,  1049)
+	 14: Rel (    76,     0)  ->  Abs (   732,  1049)
+	 15: Rel (    41,     0)  ->  Abs (   773,  1049)
+	 16: Rel (     0,   -31)  ->  Abs (   773,  1018)
+	 17: Rel (     0,   -20)  ->  Abs (   773,   998)
+	 18: Rel (   -51,   -24)  ->  Abs (   722,   974)
+	 19: Rel (   -64,   -30)  ->  Abs (   658,   944)
+	 20: Rel (   -92,  -102)  ->  Abs (   566,   842)
+	 21: Rel (    30,  -569)  ->  Abs (   596,   273)
+	 22: Rel (    37,     0)  ->  Abs (   633,   273)
+	 23: Rel (    56,     0)  ->  Abs (   689,   273)
+	 24: Rel (    79,   -80)  ->  Abs (   768,   193)
+	 25: Rel (     0,   -56)  ->  Abs (   768,   137)
+	 26: Rel (     0,   -57)  ->  Abs (   768,    80)
+	 27: Rel (   -78,   -80)  ->  Abs (   690,     0)
+	 28: Rel (   -57,     0)  ->  Abs (   633,     0)
+	 29: Rel (   -37,     0)  ->  Abs (   596,     0)
+	 30: Rel (   -56,     0)  ->  Abs (   540,     0)
+	 31: Rel (   -79,    80)  ->  Abs (   461,    80)
+	 32: Rel (     0,    57)  ->  Abs (   461,   137)
+	 33: Rel (     0,    56)  ->  Abs (   461,   193)
+	 34: Rel (    79,    80)  ->  Abs (   540,   273)
+
+	Glyph 750: off = 0x00027376, len = 270
+	  numberOfContours:	2
+	  xMin:			251
+	  yMin:			-37
+	  xMax:			978
+	  yMax:			1194
+
+	EndPoints
+	---------
+	  0:  28
+	  1:  42
+
+	  Length of Instructions:	151
+	00000: NPUSHB      (35):    74     5    89     5     2    57     4    58     5    57 
+	                            18     3   138    19   172    19   250    19     3     0 
+	                            26    23    23    26     9    15    14    10     4    15 
+	                            12     1    12    12    17 
+	00037: PUSHW[1]            949 
+	00040: NPUSHB      (29):    47     6     1     6    38    26     1    32    26     1 
+	                           112    26   128    26     2    26    26    29    42    42 
+	                            35    36    32    32    39    39    10     3    24 
+	00071: PUSHW[1]            948 
+	00074: PUSHB[7]             16    28     1    28    28     3    14 
+	00082: PUSHW[1]            948 
+	00085: PUSHB[6]             63    10     1    10    10    20 
+	00092: PUSHW[4]            948     3     5   340 
+	00101: SCANCTRL   
+	00102: SCANTYPE   
+	00103: MDAP[rd]   
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: SHP[rp1,zp0] 
+	00106: MDAP[rd]   
+	00107: DELTAP1    
+	00108: MIRP[nrp0,md,rd,1] 
+	00109: SRP2       
+	00110: IP         
+	00111: MDAP[rd]   
+	00112: DELTAP1    
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: SRP1       
+	00115: SRP2       
+	00116: IP         
+	00117: MDAP[rd]   
+	00118: SHP[rp1,zp0] 
+	00119: MDAP[rd]   
+	00120: SVTCA[y-axis] 
+	00121: MDAP[rd]   
+	00122: ALIGNRP    
+	00123: SHP[rp1,zp0] 
+	00124: MDAP[rd]   
+	00125: ALIGNRP    
+	00126: SHP[rp1,zp0] 
+	00127: MDAP[rd]   
+	00128: DELTAP1    
+	00129: DELTAP2    
+	00130: DELTAP2    
+	00131: MDAP[rd]   
+	00132: DELTAP1    
+	00133: MIRP[srp0,md,rd,1] 
+	00134: SHP[rp2,zp1] 
+	00135: MDAP[rd]   
+	00136: DELTAP1    
+	00137: SLOOP      
+	00138: IP         
+	00139: SRP1       
+	00140: SHP[rp1,zp0] 
+	00141: MDAP[rd]   
+	00142: SRP2       
+	00143: IP         
+	00144: IUP[y]     
+	00145: IUP[x]     
+	00146: SVTCA[y-axis] 
+	00147: DELTAP1    
+	00148: SVTCA[x-axis] 
+	00149: DELTAP2    
+	00150: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:                      Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short On
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:        XDual         Y-Short X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:                      Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   595,   508)  ->  Abs (   595,   508)
+	  1: Rel (  -200,    85)  ->  Abs (   395,   593)
+	  2: Rel (  -144,   140)  ->  Abs (   251,   733)
+	  3: Rel (     0,   109)  ->  Abs (   251,   842)
+	  4: Rel (     0,   146)  ->  Abs (   251,   988)
+	  5: Rel (   200,   206)  ->  Abs (   451,  1194)
+	  6: Rel (   171,     0)  ->  Abs (   622,  1194)
+	  7: Rel (   129,     0)  ->  Abs (   751,  1194)
+	  8: Rel (   168,   -74)  ->  Abs (   919,  1120)
+	  9: Rel (    59,   -26)  ->  Abs (   978,  1094)
+	 10: Rel (     0,  -142)  ->  Abs (   978,   952)
+	 11: Rel (     0,   -55)  ->  Abs (   978,   897)
+	 12: Rel (   -41,     0)  ->  Abs (   937,   897)
+	 13: Rel (   -43,     0)  ->  Abs (   894,   897)
+	 14: Rel (     0,    55)  ->  Abs (   894,   952)
+	 15: Rel (     0,    86)  ->  Abs (   894,  1038)
+	 16: Rel (  -144,    69)  ->  Abs (   750,  1107)
+	 17: Rel (  -124,     0)  ->  Abs (   626,  1107)
+	 18: Rel (  -130,     0)  ->  Abs (   496,  1107)
+	 19: Rel (  -161,  -156)  ->  Abs (   335,   951)
+	 20: Rel (     0,  -111)  ->  Abs (   335,   840)
+	 21: Rel (     0,   -79)  ->  Abs (   335,   761)
+	 22: Rel (   159,  -130)  ->  Abs (   494,   631)
+	 23: Rel (   185,   -68)  ->  Abs (   679,   563)
+	 24: Rel (     0,  -141)  ->  Abs (   679,   422)
+	 25: Rel (     0,   -55)  ->  Abs (   679,   367)
+	 26: Rel (   -43,     0)  ->  Abs (   636,   367)
+	 27: Rel (   -41,     0)  ->  Abs (   595,   367)
+	 28: Rel (     0,    55)  ->  Abs (   595,   422)
+	 29: Rel (    84,  -250)  ->  Abs (   679,   172)
+	 30: Rel (    44,     0)  ->  Abs (   723,   172)
+	 31: Rel (    60,   -61)  ->  Abs (   783,   111)
+	 32: Rel (     0,   -44)  ->  Abs (   783,    67)
+	 33: Rel (     0,   -44)  ->  Abs (   783,    23)
+	 34: Rel (   -60,   -60)  ->  Abs (   723,   -37)
+	 35: Rel (   -44,     0)  ->  Abs (   679,   -37)
+	 36: Rel (   -84,     0)  ->  Abs (   595,   -37)
+	 37: Rel (   -43,     0)  ->  Abs (   552,   -37)
+	 38: Rel (   -62,    61)  ->  Abs (   490,    24)
+	 39: Rel (     0,    43)  ->  Abs (   490,    67)
+	 40: Rel (     0,    43)  ->  Abs (   490,   110)
+	 41: Rel (    62,    62)  ->  Abs (   552,   172)
+	 42: Rel (    43,     0)  ->  Abs (   595,   172)
+
+	Glyph 751: off = 0x00027484, len = 226
+	  numberOfContours:	1
+	  xMin:			513
+	  yMin:			135
+	  xMax:			962
+	  yMax:			678
+
+	EndPoints
+	---------
+	  0:  24
+
+	  Length of Instructions:	147
+	00000: NPUSHB      (31):    72     9     1     0    16    12    15    52   217     6 
+	                             1    67    20    70    21   132    21     3    71     4 
+	                            69     5     2    22    24     4     0     1    14    14 
+	                            10 
+	00033: PUSHW[1]            -64 
+	00036: PUSHB[4]             23    25    52    10 
+	00041: PUSHW[1]            907 
+	00044: PUSHB[6]            207    17     1    17    17    24 
+	00051: PUSHW[1]            902 
+	00054: NPUSHB      (34):     0    64    13    17    52     0     0     2     1     4 
+	                             0    19     2     1     1    14    12    64     9    10 
+	                            52    15    12     1    12    12     7    24    47     0 
+	                             1     0     0    19 
+	00090: PUSHW[1]            880 
+	00093: PUSHB[4]             16     7     1     7 
+	00098: MDAP[rd]   
+	00099: DELTAP1    
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: SHP[rp1,zp0] 
+	00102: MDAP[rd]   
+	00103: DELTAP1    
+	00104: ALIGNRP    
+	00105: SRP2       
+	00106: IP         
+	00107: MDAP[rd]   
+	00108: DELTAP2    
+	00109: CALL       
+	00110: SHP[rp1,zp0] 
+	00111: SHP[rp2,zp1] 
+	00112: MDAP[rd]   
+	00113: SHP[rp1,zp0] 
+	00114: SRP1       
+	00115: SRP2       
+	00116: IP         
+	00117: SVTCA[y-axis] 
+	00118: MDAP[rd]   
+	00119: SHP[rp1,zp0] 
+	00120: SHP[rp1,zp0] 
+	00121: MDAP[rd]   
+	00122: CALL       
+	00123: MIRP[srp0,md,rd,1] 
+	00124: SHP[rp2,zp1] 
+	00125: MDAP[rd]   
+	00126: DELTAP1    
+	00127: MIRP[nrp0,md,rd,1] 
+	00128: CALL       
+	00129: SHP[rp1,zp0] 
+	00130: RUTG       
+	00131: MDAP[rd]   
+	00132: RTG        
+	00133: SRP1       
+	00134: SRP2       
+	00135: IP         
+	00136: SRP1       
+	00137: SHP[rp1,zp0] 
+	00138: IUP[y]     
+	00139: IUP[x]     
+	00140: SVTCA[y-axis] 
+	00141: DELTAP2    
+	00142: DELTAP2    
+	00143: DELTAP2    
+	00144: CALL       
+	00145: SVTCA[x-axis] 
+	00146: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short         On
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   962,   312)  ->  Abs (   962,   312)
+	  1: Rel (  -383,  -177)  ->  Abs (   579,   135)
+	  2: Rel (    12,    64)  ->  Abs (   591,   199)
+	  3: Rel (    70,    36)  ->  Abs (   661,   235)
+	  4: Rel (    41,    50)  ->  Abs (   702,   285)
+	  5: Rel (   -15,     0)  ->  Abs (   687,   285)
+	  6: Rel (  -174,     0)  ->  Abs (   513,   285)
+	  7: Rel (     0,   130)  ->  Abs (   513,   415)
+	  8: Rel (     0,    92)  ->  Abs (   513,   507)
+	  9: Rel (   127,   171)  ->  Abs (   640,   678)
+	 10: Rel (    82,     0)  ->  Abs (   722,   678)
+	 11: Rel (    88,     0)  ->  Abs (   810,   678)
+	 12: Rel (     0,   -91)  ->  Abs (   810,   587)
+	 13: Rel (     0,   -57)  ->  Abs (   810,   530)
+	 14: Rel (    -7,   -39)  ->  Abs (   803,   491)
+	 15: Rel (   -94,    46)  ->  Abs (   709,   537)
+	 16: Rel (   -44,    16)  ->  Abs (   665,   553)
+	 17: Rel (   -29,     0)  ->  Abs (   636,   553)
+	 18: Rel (   -59,     0)  ->  Abs (   577,   553)
+	 19: Rel (     0,   -47)  ->  Abs (   577,   506)
+	 20: Rel (     0,   -51)  ->  Abs (   577,   455)
+	 21: Rel (   189,   -84)  ->  Abs (   766,   371)
+	 22: Rel (    69,     0)  ->  Abs (   835,   371)
+	 23: Rel (    54,     0)  ->  Abs (   889,   371)
+	 24: Rel (    73,    42)  ->  Abs (   962,   413)
+
+	Glyph 752: off = 0x00027566, len = 46
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			123
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	20
+	00000: PUSHW[2]              2   907 
+	00005: PUSHB[5]              1     3     0     2     1 
+	00011: MDAP[rd]   
+	00012: ALIGNRP    
+	00013: MDAP[rd]   
+	00014: ALIGNRP    
+	00015: SVTCA[y-axis] 
+	00016: MDAP[rd]   
+	00017: MIRP[nrp0,md,rd,1] 
+	00018: IUP[y]     
+	00019: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,     0)  ->  Abs (  1229,     0)
+	  1: Rel ( -1229,     0)  ->  Abs (     0,     0)
+	  2: Rel (     0,   123)  ->  Abs (     0,   123)
+	  3: Rel (  1229,     0)  ->  Abs (  1229,   123)
+
+	Glyph 753: off = 0x00027594, len = 194
+	  numberOfContours:	2
+	  xMin:			476
+	  yMin:			1259
+	  xMax:			752
+	  yMax:			1579
+
+	EndPoints
+	---------
+	  0:  10
+	  1:  21
+
+	  Length of Instructions:	121
+	00000: PUSHW[5]              5   936    10     4   936 
+	00011: PUSHB[4]             16    10     1    10 
+	00016: PUSHW[1]            935 
+	00019: NPUSHB      (18):     0    64    42    48    52     0    64    25    29    52 
+	                            15     0    31     0     2     0     0    16 
+	00039: PUSHW[4]            936    21    15   936 
+	00048: PUSHB[4]             16    21     1    21 
+	00053: PUSHW[1]            935 
+	00056: NPUSHB      (12):    11     8    64    18    26    52     8    64     9    11 
+	                            52     8 
+	00070: PUSHW[1]            934 
+	00073: NPUSHB      (13):     2     2    19    64    18    26    52    19    64     9 
+	                            11    52    19 
+	00088: PUSHW[2]            934    13 
+	00093: MDAP[rd]   
+	00094: MIRP[nrp0,md,rd,1] 
+	00095: CALL       
+	00096: CALL       
+	00097: SHP[rp1,zp0] 
+	00098: MDAP[rd]   
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: CALL       
+	00101: CALL       
+	00102: SVTCA[y-axis] 
+	00103: MDAP[rd]   
+	00104: MIRP[nrp0,nmd,rd,0] 
+	00105: DELTAP1    
+	00106: MIRP[nrp0,md,rd,1] 
+	00107: SRP0       
+	00108: MIRP[srp0,md,rd,1] 
+	00109: SHP[rp2,zp1] 
+	00110: MDAP[rd]   
+	00111: DELTAP1    
+	00112: CALL       
+	00113: CALL       
+	00114: MIRP[nrp0,nmd,rd,0] 
+	00115: DELTAP1    
+	00116: MIRP[nrp0,md,rd,1] 
+	00117: SRP0       
+	00118: MIRP[nrp0,md,rd,1] 
+	00119: IUP[y]     
+	00120: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short On
+	 11:                              X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   488,  1419)  ->  Abs (   488,  1419)
+	  1: Rel (   -12,     0)  ->  Abs (   476,  1419)
+	  2: Rel (     0,    24)  ->  Abs (   476,  1443)
+	  3: Rel (     0,    25)  ->  Abs (   476,  1468)
+	  4: Rel (    14,     6)  ->  Abs (   490,  1474)
+	  5: Rel (   248,   105)  ->  Abs (   738,  1579)
+	  6: Rel (     9,     0)  ->  Abs (   747,  1579)
+	  7: Rel (     5,    -7)  ->  Abs (   752,  1572)
+	  8: Rel (     0,   -15)  ->  Abs (   752,  1557)
+	  9: Rel (     0,   -28)  ->  Abs (   752,  1529)
+	 10: Rel (   -14,    -6)  ->  Abs (   738,  1523)
+	 11: Rel (  -250,  -264)  ->  Abs (   488,  1259)
+	 12: Rel (   -11,     0)  ->  Abs (   477,  1259)
+	 13: Rel (     0,    24)  ->  Abs (   477,  1283)
+	 14: Rel (     0,    25)  ->  Abs (   477,  1308)
+	 15: Rel (    13,     6)  ->  Abs (   490,  1314)
+	 16: Rel (   248,   105)  ->  Abs (   738,  1419)
+	 17: Rel (     9,     0)  ->  Abs (   747,  1419)
+	 18: Rel (     5,    -6)  ->  Abs (   752,  1413)
+	 19: Rel (     0,   -15)  ->  Abs (   752,  1398)
+	 20: Rel (     0,   -26)  ->  Abs (   752,  1372)
+	 21: Rel (   -14,    -6)  ->  Abs (   738,  1366)
+
+	Glyph 754: off = 0x00027656, len = 418
+	  numberOfContours:	2
+	  xMin:			407
+	  yMin:			1261
+	  xMax:			774
+	  yMax:			1685
+
+	EndPoints
+	---------
+	  0:  41
+	  1:  49
+
+	  Length of Instructions:	279
+	00000: PUSHB[4]             29    37     1    21 
+	00005: PUSHW[1]            -16 
+	00008: PUSHB[4]             29    44    52    38 
+	00013: PUSHW[1]            -64 
+	00016: PUSHB[4]             29    44    52    32 
+	00021: PUSHW[1]            -44 
+	00024: NPUSHB      (27):    28    45    52    89    37   154    37     2    27    38 
+	                            22    49     2     5    38     1    71    22     1     3 
+	                             1     0     3    20    40    40    20 
+	00053: PUSHW[1]            -64 
+	00056: NPUSHB      (14):    13    16    52    20    20    35    11    64    29    35 
+	                            52    11    11    16 
+	00072: PUSHW[1]            936 
+	00075: NPUSHB      (13):     7     7    46    35    27    27    46    46    37    22 
+	                            32     3    42 
+	00090: PUSHW[1]            904 
+	00093: NPUSHB      (36):    35    32    30    42    44    37    22    48     3     0 
+	                            20    18    35    34    64    25    27    52    34    64 
+	                            11    24    52    34    34    30     0     0    13    64 
+	                            13    16    52    13    13     5 
+	00131: PUSHW[3]            879    18   -64 
+	00138: PUSHB[7]             54    83    52    18    18     1    18 
+	00146: PUSHW[1]            -64 
+	00149: NPUSHB      (12):    13    31    52    18    18    24    32    30    48    30 
+	                             2    30 
+	00163: PUSHW[1]            878 
+	00166: NPUSHB      (23):    44    64    46    63    52    44    64    29    38    52 
+	                             0    44    16    44     2    64    44    80    44     2 
+	                            44    44    48 
+	00191: PUSHW[4]            878    24     5   340 
+	00200: SCANCTRL   
+	00201: SCANTYPE   
+	00202: MDAP[rd]   
+	00203: MIRP[srp0,md,rd,1] 
+	00204: SHP[rp2,zp1] 
+	00205: MDAP[rd]   
+	00206: DELTAP1    
+	00207: DELTAP1    
+	00208: CALL       
+	00209: CALL       
+	00210: MIRP[nrp0,md,rd,1] 
+	00211: DELTAP1    
+	00212: SRP1       
+	00213: SHP[rp1,zp0] 
+	00214: MDAP[rd]   
+	00215: CALL       
+	00216: DELTAP3    
+	00217: CALL       
+	00218: MIRP[srp0,md,rd,1] 
+	00219: SHP[rp2,zp1] 
+	00220: MDAP[rd]   
+	00221: CALL       
+	00222: SHP[rp2,zp1] 
+	00223: MDAP[rd]   
+	00224: SRP1       
+	00225: SHP[rp1,zp0] 
+	00226: MDAP[rd]   
+	00227: CALL       
+	00228: CALL       
+	00229: SHP[rp1,zp0] 
+	00230: SRP1       
+	00231: IP         
+	00232: SRP1       
+	00233: IP         
+	00234: SRP1       
+	00235: SHP[rp1,zp0] 
+	00236: SHP[rp1,zp0] 
+	00237: SRP2       
+	00238: IP         
+	00239: SRP1       
+	00240: IP         
+	00241: SVTCA[y-axis] 
+	00242: MDAP[rd]   
+	00243: MIRP[nrp0,md,rd,1] 
+	00244: SLOOP      
+	00245: IP         
+	00246: SHP[rp2,zp1] 
+	00247: MDAP[rd]   
+	00248: SHP[rp1,zp0] 
+	00249: MDAP[rd]   
+	00250: SRP1       
+	00251: SRP2       
+	00252: IP         
+	00253: MDAP[rd]   
+	00254: MIRP[nrp0,md,rd,1] 
+	00255: SHP[rp1,zp0] 
+	00256: MDAP[rd]   
+	00257: CALL       
+	00258: SRP1       
+	00259: SHP[rp1,zp0] 
+	00260: MDAP[rd]   
+	00261: CALL       
+	00262: SHP[rp1,zp0] 
+	00263: MDAP[rd]   
+	00264: SRP2       
+	00265: SLOOP      
+	00266: IP         
+	00267: IUP[y]     
+	00268: IUP[x]     
+	00269: SVTCA[y-axis] 
+	00270: DELTAP1    
+	00271: DELTAP2    
+	00272: DELTAP3    
+	00273: DELTAP3    
+	00274: CALL       
+	00275: CALL       
+	00276: CALL       
+	00277: SVTCA[x-axis] 
+	00278: DELTAP3    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:                      Y-Short X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual               Y-Short X-Short On
+	 38:                      Y-Short X-Short Off
+	 39:                      Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:        XDual         Y-Short         On
+	 49:        XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   438,  1267)  ->  Abs (   438,  1267)
+	  1: Rel (     0,    12)  ->  Abs (   438,  1279)
+	  2: Rel (     7,     4)  ->  Abs (   445,  1283)
+	  3: Rel (    24,    17)  ->  Abs (   469,  1300)
+	  4: Rel (    24,    37)  ->  Abs (   493,  1337)
+	  5: Rel (     0,    59)  ->  Abs (   493,  1396)
+	  6: Rel (     0,    37)  ->  Abs (   493,  1433)
+	  7: Rel (   -22,     0)  ->  Abs (   471,  1433)
+	  8: Rel (    -9,     0)  ->  Abs (   462,  1433)
+	  9: Rel (   -21,   -19)  ->  Abs (   441,  1414)
+	 10: Rel (   -21,   -18)  ->  Abs (   420,  1396)
+	 11: Rel (    -4,     0)  ->  Abs (   416,  1396)
+	 12: Rel (    -9,     0)  ->  Abs (   407,  1396)
+	 13: Rel (     0,     7)  ->  Abs (   407,  1403)
+	 14: Rel (     0,    20)  ->  Abs (   407,  1423)
+	 15: Rel (    71,    67)  ->  Abs (   478,  1490)
+	 16: Rel (    28,     0)  ->  Abs (   506,  1490)
+	 17: Rel (    42,     0)  ->  Abs (   548,  1490)
+	 18: Rel (     0,   -52)  ->  Abs (   548,  1438)
+	 19: Rel (     0,   -46)  ->  Abs (   548,  1392)
+	 20: Rel (   -36,   -74)  ->  Abs (   512,  1318)
+	 21: Rel (    74,    34)  ->  Abs (   586,  1352)
+	 22: Rel (    53,    75)  ->  Abs (   639,  1427)
+	 23: Rel (   -58,    30)  ->  Abs (   581,  1457)
+	 24: Rel (     0,    62)  ->  Abs (   581,  1519)
+	 25: Rel (     0,    50)  ->  Abs (   581,  1569)
+	 26: Rel (    92,   116)  ->  Abs (   673,  1685)
+	 27: Rel (    35,     0)  ->  Abs (   708,  1685)
+	 28: Rel (    24,     0)  ->  Abs (   732,  1685)
+	 29: Rel (    32,   -56)  ->  Abs (   764,  1629)
+	 30: Rel (     0,   -36)  ->  Abs (   764,  1593)
+	 31: Rel (     0,   -62)  ->  Abs (   764,  1531)
+	 32: Rel (   -37,   -55)  ->  Abs (   727,  1476)
+	 33: Rel (    47,   -24)  ->  Abs (   774,  1452)
+	 34: Rel (     0,   -25)  ->  Abs (   774,  1427)
+	 35: Rel (    -4,   -47)  ->  Abs (   770,  1380)
+	 36: Rel (   -34,     0)  ->  Abs (   736,  1380)
+	 37: Rel (   -67,    31)  ->  Abs (   669,  1411)
+	 38: Rel (   -36,   -55)  ->  Abs (   633,  1356)
+	 39: Rel (  -121,   -95)  ->  Abs (   512,  1261)
+	 40: Rel (   -45,     0)  ->  Abs (   467,  1261)
+	 41: Rel (   -19,     0)  ->  Abs (   448,  1261)
+	 42: Rel (   246,   231)  ->  Abs (   694,  1492)
+	 43: Rel (    18,    32)  ->  Abs (   712,  1524)
+	 44: Rel (     0,    32)  ->  Abs (   712,  1556)
+	 45: Rel (     0,    59)  ->  Abs (   712,  1615)
+	 46: Rel (   -43,     0)  ->  Abs (   669,  1615)
+	 47: Rel (   -36,     0)  ->  Abs (   633,  1615)
+	 48: Rel (     0,   -47)  ->  Abs (   633,  1568)
+	 49: Rel (     0,   -55)  ->  Abs (   633,  1513)
+
+	Glyph 755: off = 0x000277F8, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			476
+	  yMin:			-494
+	  xMax:			752
+	  yMax:			-174
+
+	     0: Flags:		0x0317
+		Glyf Index:	753
+		X WOffset:	0
+		Y WOffset:	-1753
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1     0     0 
+	00004: PUSHW[1]            -64 
+	00007: PUSHB[4]             11    14    52     0 
+	00012: PUSHW[1]            -64 
+	00015: NPUSHB      (19):    11    16    52    32     0   144     0   160     0     3 
+	                             0     0    16     0     2     0     0     1     0 
+	00036: SVTCA[y-axis] 
+	00037: SRP1       
+	00038: DELTAP1    
+	00039: DELTAP1    
+	00040: DELTAP1    
+	00041: CALL       
+	00042: CALL       
+	00043: SHC[rp1,zp0] 
+	00044: SHC[rp1,zp0] 
+
+	Glyph 756: off = 0x0002783A, len = 104
+	  numberOfContours:	1
+	  xMin:			476
+	  yMin:			1259
+	  xMax:			751
+	  yMax:			1419
+
+	EndPoints
+	---------
+	  0:  10
+
+	  Length of Instructions:	61
+	00000: PUSHW[5]              5   936    10     4   936 
+	00011: PUSHB[4]             16    10     1    10 
+	00016: PUSHW[1]            935 
+	00019: NPUSHB      (21):    31     0    63     0   111     0   143     0     4     0 
+	                             8    64    18    26    52     8    64     9    11    52 
+	                             8 
+	00042: PUSHW[2]            934     2 
+	00047: MDAP[rd]   
+	00048: MIRP[nrp0,md,rd,1] 
+	00049: CALL       
+	00050: CALL       
+	00051: SVTCA[y-axis] 
+	00052: MDAP[rd]   
+	00053: DELTAP1    
+	00054: MIRP[nrp0,nmd,rd,0] 
+	00055: DELTAP1    
+	00056: MIRP[nrp0,md,rd,1] 
+	00057: SRP0       
+	00058: MIRP[nrp0,md,rd,1] 
+	00059: IUP[y]     
+	00060: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   487,  1259)  ->  Abs (   487,  1259)
+	  1: Rel (   -11,     0)  ->  Abs (   476,  1259)
+	  2: Rel (     0,    24)  ->  Abs (   476,  1283)
+	  3: Rel (     0,    25)  ->  Abs (   476,  1308)
+	  4: Rel (    13,     6)  ->  Abs (   489,  1314)
+	  5: Rel (   248,   105)  ->  Abs (   737,  1419)
+	  6: Rel (     9,     0)  ->  Abs (   746,  1419)
+	  7: Rel (     5,    -6)  ->  Abs (   751,  1413)
+	  8: Rel (     0,   -15)  ->  Abs (   751,  1398)
+	  9: Rel (     0,   -26)  ->  Abs (   751,  1372)
+	 10: Rel (   -14,    -6)  ->  Abs (   737,  1366)
+
+	Glyph 757: off = 0x000278A2, len = 244
+	  numberOfContours:	2
+	  xMin:			419
+	  yMin:			1259
+	  xMax:			753
+	  yMax:			1681
+
+	EndPoints
+	---------
+	  0:  23
+	  1:  31
+
+	  Length of Instructions:	148
+	00000: PUSHW[2]             13   -16 
+	00005: NPUSHB      (31):    29    33    52    25    19     1    40    20   214    13 
+	                             2     1     0    22    22    16     8     8    28    64 
+	                            29    41    52    28    28    18    20     3    13     4 
+	                            24 
+	00038: PUSHW[1]            906 
+	00041: NPUSHB      (24):    16    13    11    24    26    20     3    30     0     0 
+	                             5    16    64    34    42    52    16    64    11    28 
+	                            52    16    16    11 
+	00067: PUSHW[1]            876 
+	00070: NPUSHB      (21):    26    64    46    63    52    26    64    29    37    52 
+	                             0    26     1    64    26    80    26     2    26    26 
+	                            30 
+	00093: PUSHW[4]            879     5     4   340 
+	00102: SCANCTRL   
+	00103: SCANTYPE   
+	00104: MDAP[rd]   
+	00105: MIRP[srp0,md,rd,1] 
+	00106: SHP[rp2,zp1] 
+	00107: MDAP[rd]   
+	00108: DELTAP1    
+	00109: DELTAP1    
+	00110: CALL       
+	00111: CALL       
+	00112: MIRP[srp0,md,rd,1] 
+	00113: SHP[rp2,zp1] 
+	00114: MDAP[rd]   
+	00115: CALL       
+	00116: CALL       
+	00117: SRP1       
+	00118: SHP[rp1,zp0] 
+	00119: MDAP[rd]   
+	00120: SRP1       
+	00121: SHP[rp1,zp0] 
+	00122: SHP[rp1,zp0] 
+	00123: SRP2       
+	00124: IP         
+	00125: SRP1       
+	00126: IP         
+	00127: SVTCA[y-axis] 
+	00128: MDAP[rd]   
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: SLOOP      
+	00131: IP         
+	00132: SHP[rp2,zp1] 
+	00133: MDAP[rd]   
+	00134: CALL       
+	00135: SHP[rp1,zp0] 
+	00136: MDAP[rd]   
+	00137: SRP1       
+	00138: SHP[rp1,zp0] 
+	00139: MDAP[rd]   
+	00140: SHP[rp1,zp0] 
+	00141: SHP[rp1,zp0] 
+	00142: IUP[y]     
+	00143: IUP[x]     
+	00144: SVTCA[y-axis] 
+	00145: DELTAP2    
+	00146: DELTAP3    
+	00147: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short On
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual               Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   419,  1267)  ->  Abs (   419,  1267)
+	  1: Rel (     0,    13)  ->  Abs (   419,  1280)
+	  2: Rel (   142,    64)  ->  Abs (   561,  1344)
+	  3: Rel (    55,    79)  ->  Abs (   616,  1423)
+	  4: Rel (   -62,    39)  ->  Abs (   554,  1462)
+	  5: Rel (     0,    49)  ->  Abs (   554,  1511)
+	  6: Rel (     0,    45)  ->  Abs (   554,  1556)
+	  7: Rel (    88,   125)  ->  Abs (   642,  1681)
+	  8: Rel (    39,     0)  ->  Abs (   681,  1681)
+	  9: Rel (    23,     0)  ->  Abs (   704,  1681)
+	 10: Rel (    32,   -59)  ->  Abs (   736,  1622)
+	 11: Rel (     0,   -35)  ->  Abs (   736,  1587)
+	 12: Rel (     0,   -51)  ->  Abs (   736,  1536)
+	 13: Rel (   -32,   -64)  ->  Abs (   704,  1472)
+	 14: Rel (    49,   -24)  ->  Abs (   753,  1448)
+	 15: Rel (     0,   -27)  ->  Abs (   753,  1421)
+	 16: Rel (     0,   -51)  ->  Abs (   753,  1370)
+	 17: Rel (   -18,     0)  ->  Abs (   735,  1370)
+	 18: Rel (   -36,    15)  ->  Abs (   699,  1385)
+	 19: Rel (   -44,    20)  ->  Abs (   655,  1405)
+	 20: Rel (    -7,     2)  ->  Abs (   648,  1407)
+	 21: Rel (  -119,  -148)  ->  Abs (   529,  1259)
+	 22: Rel (   -79,     0)  ->  Abs (   450,  1259)
+	 23: Rel (   -17,     0)  ->  Abs (   433,  1259)
+	 24: Rel (   240,   229)  ->  Abs (   673,  1488)
+	 25: Rel (    17,    29)  ->  Abs (   690,  1517)
+	 26: Rel (     0,    32)  ->  Abs (   690,  1549)
+	 27: Rel (     0,    62)  ->  Abs (   690,  1611)
+	 28: Rel (   -42,     0)  ->  Abs (   648,  1611)
+	 29: Rel (   -39,     0)  ->  Abs (   609,  1611)
+	 30: Rel (     0,   -50)  ->  Abs (   609,  1561)
+	 31: Rel (     0,   -61)  ->  Abs (   609,  1500)
+
+	Glyph 758: off = 0x00027996, len = 40
+	  numberOfContours:	-1  (Composite)
+	  xMin:			476
+	  yMin:			-337
+	  xMax:			751
+	  yMax:			-177
+
+	     0: Flags:		0x0317
+		Glyf Index:	756
+		X WOffset:	0
+		Y WOffset:	-1596
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              0   112     4     1     4 
+	00006: PUSHW[1]            -64 
+	00009: PUSHB[4]              9    14    52     4 
+	00014: SVTCA[y-axis] 
+	00015: SRP1       
+	00016: CALL       
+	00017: DELTAP1    
+	00018: SHC[rp1,zp0] 
+
+	Glyph 759: off = 0x000279BE, len = 256
+	  numberOfContours:	1
+	  xMin:			458
+	  yMin:			1286
+	  xMax:			749
+	  yMax:			1571
+
+	EndPoints
+	---------
+	  0:  32
+
+	  Length of Instructions:	162
+	00000: PUSHW[2]             18   -64 
+	00005: NPUSHB      (29):    11    19    52    18    18    26     6    64    48    54 
+	                            52     6    64    11    18    52     6    64    29    32 
+	                            52     0     6     1     6     6    26    26    22 
+	00036: PUSHW[1]            -64 
+	00039: PUSHB[4]             71    71    52    22 
+	00044: PUSHW[1]            -64 
+	00047: PUSHB[4]             51    54    52    22 
+	00052: PUSHW[1]            -64 
+	00055: PUSHB[4]             30    32    52    22 
+	00060: PUSHW[4]            902    31    14   900 
+	00069: NPUSHB      (40):     2   175    31     1    31    31     2     0     0    28 
+	                            26    26    28     6     6    18    18     4    28    64 
+	                            40    45    52    28    64     9    31    52   255    28 
+	                             1    28    28     0     4    48     4     2     4     5 
+	00111: PUSHW[1]            340 
+	00114: SCANCTRL   
+	00115: SCANTYPE   
+	00116: MDAP[rd]   
+	00117: DELTAP1    
+	00118: SHP[rp1,zp0] 
+	00119: MDAP[rd]   
+	00120: DELTAP1    
+	00121: CALL       
+	00122: CALL       
+	00123: RTHG       
+	00124: SRP2       
+	00125: IP         
+	00126: MDAP[rd]   
+	00127: SHP[rp2,zp1] 
+	00128: MDAP[rd]   
+	00129: SRP1       
+	00130: SHP[rp1,zp0] 
+	00131: MDAP[rd]   
+	00132: SRP1       
+	00133: IP         
+	00134: MDAP[rd]   
+	00135: SVTCA[y-axis] 
+	00136: RTG        
+	00137: MDAP[rd]   
+	00138: SHP[rp1,zp0] 
+	00139: MDAP[rd]   
+	00140: DELTAP1    
+	00141: SRP0       
+	00142: MIRP[nrp0,md,rd,1] 
+	00143: SRP0       
+	00144: MIRP[srp0,md,rd,1] 
+	00145: CALL       
+	00146: CALL       
+	00147: CALL       
+	00148: SHP[rp2,zp1] 
+	00149: MDAP[rd]   
+	00150: SHP[rp1,zp0] 
+	00151: MDAP[rd]   
+	00152: DELTAP1    
+	00153: CALL       
+	00154: CALL       
+	00155: CALL       
+	00156: SRP2       
+	00157: IP         
+	00158: MDAP[rd]   
+	00159: CALL       
+	00160: IUP[y]     
+	00161: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:                      Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   616,  1372)  ->  Abs (   616,  1372)
+	  1: Rel (   -39,   -86)  ->  Abs (   577,  1286)
+	  2: Rel (   -51,     0)  ->  Abs (   526,  1286)
+	  3: Rel (   -68,     0)  ->  Abs (   458,  1286)
+	  4: Rel (     0,    92)  ->  Abs (   458,  1378)
+	  5: Rel (     0,    84)  ->  Abs (   458,  1462)
+	  6: Rel (    29,     0)  ->  Abs (   487,  1462)
+	  7: Rel (    13,     0)  ->  Abs (   500,  1462)
+	  8: Rel (     0,   -16)  ->  Abs (   500,  1446)
+	  9: Rel (     0,    -5)  ->  Abs (   500,  1441)
+	 10: Rel (    -1,   -12)  ->  Abs (   499,  1429)
+	 11: Rel (    -2,   -13)  ->  Abs (   497,  1416)
+	 12: Rel (     0,    -6)  ->  Abs (   497,  1410)
+	 13: Rel (     0,   -28)  ->  Abs (   497,  1382)
+	 14: Rel (    27,     0)  ->  Abs (   524,  1382)
+	 15: Rel (    43,     0)  ->  Abs (   567,  1382)
+	 16: Rel (    18,    67)  ->  Abs (   585,  1449)
+	 17: Rel (    14,    66)  ->  Abs (   599,  1515)
+	 18: Rel (     5,     0)  ->  Abs (   604,  1515)
+	 19: Rel (    15,     0)  ->  Abs (   619,  1515)
+	 20: Rel (     4,   -36)  ->  Abs (   623,  1479)
+	 21: Rel (     4,   -37)  ->  Abs (   627,  1442)
+	 22: Rel (    33,     0)  ->  Abs (   660,  1442)
+	 23: Rel (    34,     0)  ->  Abs (   694,  1442)
+	 24: Rel (     7,    65)  ->  Abs (   701,  1507)
+	 25: Rel (     8,    64)  ->  Abs (   709,  1571)
+	 26: Rel (    10,     0)  ->  Abs (   719,  1571)
+	 27: Rel (    30,     0)  ->  Abs (   749,  1571)
+	 28: Rel (     0,  -109)  ->  Abs (   749,  1462)
+	 29: Rel (     0,   -51)  ->  Abs (   749,  1411)
+	 30: Rel (   -52,   -74)  ->  Abs (   697,  1337)
+	 31: Rel (   -34,     0)  ->  Abs (   663,  1337)
+	 32: Rel (   -27,     0)  ->  Abs (   636,  1337)
+
+	Glyph 760: off = 0x00027ABE, len = 214
+	  numberOfContours:	2
+	  xMin:			475
+	  yMin:			1307
+	  xMax:			725
+	  yMax:			1598
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  20
+
+	  Length of Instructions:	146
+	00000: NPUSHB      (25):    22     1    35     1    53     1     3     8    24    12 
+	                            25    52    18    24    25    33    52   216     2   233 
+	                             2   250     2     3     9 
+	00027: PUSHW[1]            898 
+	00030: NPUSHB      (14):    19    64    38    44    52    15    19    31    19     2 
+	                             0    19     1    19 
+	00046: PUSHW[1]            -64 
+	00049: NPUSHB      (11):     9    11    52    19    19   112    14   128    14     2 
+	                            14 
+	00062: PUSHW[6]            901     3     0   878    16   -64 
+	00075: NPUSHB      (15):    20    24    52    16    64    42    44    52   128    16 
+	                             1     0    16     1    16 
+	00092: PUSHW[1]            -64 
+	00095: PUSHB[6]              9    11    52    16    16    12 
+	00102: PUSHW[1]            932 
+	00105: PUSHB[5]             48     6     1     6     5 
+	00111: PUSHW[1]            340 
+	00114: SCANCTRL   
+	00115: SCANTYPE   
+	00116: MDAP[rd]   
+	00117: DELTAP1    
+	00118: MIRP[srp0,md,rd,1] 
+	00119: SHP[rp2,zp1] 
+	00120: MDAP[rd]   
+	00121: CALL       
+	00122: DELTAP1    
+	00123: DELTAP2    
+	00124: CALL       
+	00125: CALL       
+	00126: MIRP[nrp0,md,rd,1] 
+	00127: SVTCA[y-axis] 
+	00128: MDAP[rd]   
+	00129: MIRP[srp0,md,rd,1] 
+	00130: DELTAP2    
+	00131: SHP[rp2,zp1] 
+	00132: MDAP[rd]   
+	00133: CALL       
+	00134: DELTAP1    
+	00135: DELTAP2    
+	00136: CALL       
+	00137: MIRP[nrp0,md,rd,1] 
+	00138: IUP[y]     
+	00139: IUP[x]     
+	00140: SVTCA[x-axis] 
+	00141: DELTAP2    
+	00142: CALL       
+	00143: CALL       
+	00144: SVTCA[y-axis] 
+	00145: DELTAP3    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:        XDual         Y-Short         Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   725,  1457)  ->  Abs (   725,  1457)
+	  1: Rel (     0,   -66)  ->  Abs (   725,  1391)
+	  2: Rel (  -104,   -84)  ->  Abs (   621,  1307)
+	  3: Rel (   -52,     0)  ->  Abs (   569,  1307)
+	  4: Rel (   -43,     0)  ->  Abs (   526,  1307)
+	  5: Rel (   -51,    68)  ->  Abs (   475,  1375)
+	  6: Rel (     0,    51)  ->  Abs (   475,  1426)
+	  7: Rel (     0,    67)  ->  Abs (   475,  1493)
+	  8: Rel (    70,   105)  ->  Abs (   545,  1598)
+	  9: Rel (    63,     0)  ->  Abs (   608,  1598)
+	 10: Rel (    56,     0)  ->  Abs (   664,  1598)
+	 11: Rel (    61,   -85)  ->  Abs (   725,  1513)
+	 12: Rel (  -213,   -56)  ->  Abs (   512,  1457)
+	 13: Rel (     0,   -50)  ->  Abs (   512,  1407)
+	 14: Rel (    86,     0)  ->  Abs (   598,  1407)
+	 15: Rel (    73,     0)  ->  Abs (   671,  1407)
+	 16: Rel (     0,    27)  ->  Abs (   671,  1434)
+	 17: Rel (     0,    19)  ->  Abs (   671,  1453)
+	 18: Rel (   -72,    69)  ->  Abs (   599,  1522)
+	 19: Rel (   -36,     0)  ->  Abs (   563,  1522)
+	 20: Rel (   -51,     0)  ->  Abs (   512,  1522)
+
+	Glyph 761: off = 0x00027B94, len = 128
+	  numberOfContours:	1
+	  xMin:			473
+	  yMin:			387
+	  xMax:			756
+	  yMax:			805
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	88
+	00000: NPUSHB      (36):     7    24     9    11    52   230     5   233     6   233 
+	                             7     3    52     6    76     2    67     6   185     1 
+	                             4    57     1    59     2    59     3     3   203     1 
+	                           217     1   233     1     3     2 
+	00038: PUSHW[1]            863 
+	00041: PUSHB[3]              4     4     0 
+	00045: PUSHW[1]            863 
+	00048: PUSHB[7]              6     0    64     9    13    52     0 
+	00056: PUSHW[1]            870 
+	00059: PUSHB[3]              2     2     6 
+	00063: PUSHW[2]            870     4 
+	00068: MDAP[rd]   
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: SHP[rp1,zp0] 
+	00071: MDAP[rd]   
+	00072: MIRP[nrp0,nmd,rd,0] 
+	00073: CALL       
+	00074: SVTCA[y-axis] 
+	00075: MDAP[rd]   
+	00076: MIRP[nrp0,nmd,rd,0] 
+	00077: SHP[rp1,zp0] 
+	00078: MDAP[rd]   
+	00079: MIRP[nrp0,md,rd,1] 
+	00080: IUP[y]     
+	00081: IUP[x]     
+	00082: SVTCA[x-axis] 
+	00083: DELTAP1    
+	00084: DELTAP1    
+	00085: DELTAP1    
+	00086: DELTAP1    
+	00087: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual               Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   756,   645)  ->  Abs (   756,   645)
+	  1: Rel (   -42,  -126)  ->  Abs (   714,   519)
+	  2: Rel (   -21,  -132)  ->  Abs (   693,   387)
+	  3: Rel (  -126,    65)  ->  Abs (   567,   452)
+	  4: Rel (   -94,    85)  ->  Abs (   473,   537)
+	  5: Rel (    22,   112)  ->  Abs (   495,   649)
+	  6: Rel (    56,   156)  ->  Abs (   551,   805)
+	  7: Rel (   102,   -90)  ->  Abs (   653,   715)
+
+	Glyph 762: off = 0x00027C14, len = 126
+	  numberOfContours:	1
+	  xMin:			356
+	  yMin:			-5
+	  xMax:			747
+	  yMax:			1157
+
+	EndPoints
+	---------
+	  0:  12
+
+	  Length of Instructions:	73
+	00000: NPUSHB       (9):    69     8     1     5    64    15    22    52     6 
+	00011: PUSHW[6]            866     7   855    12     0   858 
+	00024: NPUSHB      (18):    12     0     1     3    10     7     7     6    79    10 
+	                             1    10    10     0     6     1     6     4 
+	00044: PUSHW[1]            340 
+	00047: SCANCTRL   
+	00048: SCANTYPE   
+	00049: MDAP[rd]   
+	00050: DELTAP1    
+	00051: SHP[rp1,zp0] 
+	00052: MDAP[rd]   
+	00053: DELTAP1    
+	00054: SRP1       
+	00055: SHP[rp1,zp0] 
+	00056: RTHG       
+	00057: MDAP[rd]   
+	00058: SRP1       
+	00059: SLOOP      
+	00060: SHP[rp1,zp0] 
+	00061: SVTCA[y-axis] 
+	00062: RTG        
+	00063: MIAP[rd+ci] 
+	00064: ALIGNRP    
+	00065: MIAP[rd+ci] 
+	00066: MIRP[nrp0,md,rd,1] 
+	00067: IUP[y]     
+	00068: IUP[x]     
+	00069: SVTCA[y-axis] 
+	00070: CALL       
+	00071: SVTCA[x-axis] 
+	00072: DELTAP1    
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short         Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:                              X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual                 X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   684,    -5)  ->  Abs (   684,    -5)
+	  1: Rel (     0,    67)  ->  Abs (   684,    62)
+	  2: Rel (     0,   189)  ->  Abs (   684,   251)
+	  3: Rel (   -24,   157)  ->  Abs (   660,   408)
+	  4: Rel (   -80,   284)  ->  Abs (   580,   692)
+	  5: Rel (  -135,   210)  ->  Abs (   445,   902)
+	  6: Rel (   -89,    91)  ->  Abs (   356,   993)
+	  7: Rel (    47,   164)  ->  Abs (   403,  1157)
+	  8: Rel (   196,  -217)  ->  Abs (   599,   940)
+	  9: Rel (   148,  -361)  ->  Abs (   747,   579)
+	 10: Rel (     0,  -227)  ->  Abs (   747,   352)
+	 11: Rel (     0,  -188)  ->  Abs (   747,   164)
+	 12: Rel (   -32,  -169)  ->  Abs (   715,    -5)
+
+	Glyph 763: off = 0x00027C92, len = 222
+	  numberOfContours:	1
+	  xMin:			319
+	  yMin:			-4
+	  xMax:			862
+	  yMax:			1161
+
+	EndPoints
+	---------
+	  0:  26
+
+	  Length of Instructions:	131
+	00000: PUSHW[2]              0   -40 
+	00005: NPUSHB      (31):    17    22    52   199     1   196    11     2   165    24 
+	                           182    11   180    24     3   134    11   150    11   167 
+	                            11     3    75     8    73     9    70    11     3     4 
+	                             5 
+	00038: PUSHW[4]            859     0    25   863 
+	00047: NPUSHB       (9):    48    13   192    13     2    13    13    18     9 
+	00058: PUSHW[5]            864    10   856    18   854 
+	00069: NPUSHB      (23):     0     5     4     2    10    10   128     2   144     2 
+	                             2     2     2     9    15    22    79    22     2    22 
+	                            22     9     4 
+	00094: SCANTYPE   
+	00095: MDAP[rd]   
+	00096: SHP[rp1,zp0] 
+	00097: MDAP[rd]   
+	00098: DELTAP1    
+	00099: SRP2       
+	00100: IP         
+	00101: MDAP[rd]   
+	00102: DELTAP1    
+	00103: SHP[rp2,zp1] 
+	00104: RTHG       
+	00105: MDAP[rd]   
+	00106: SRP1       
+	00107: SHP[rp1,zp0] 
+	00108: SHP[rp1,zp0] 
+	00109: IP         
+	00110: SVTCA[y-axis] 
+	00111: RTG        
+	00112: MIAP[rd+ci] 
+	00113: MIAP[rd+ci] 
+	00114: MIRP[nrp0,md,rd,1] 
+	00115: SRP1       
+	00116: SHP[rp1,zp0] 
+	00117: MDAP[rd]   
+	00118: DELTAP1    
+	00119: MIRP[nrp0,md,rd,1] 
+	00120: IP         
+	00121: MIAP[rd+ci] 
+	00122: ALIGNRP    
+	00123: IUP[y]     
+	00124: IUP[x]     
+	00125: SVTCA[x-axis] 
+	00126: DELTAP2    
+	00127: DELTAP1    
+	00128: DELTAP1    
+	00129: DELTAP1    
+	00130: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                 X-Short Off
+	  2:        XDual                         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short On
+	  5:  YDual                       X-Short On
+	  6:                              X-Short Off
+	  7:                              X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   581,   780)  ->  Abs (   581,   780)
+	  1: Rel (   129,  -282)  ->  Abs (   710,   498)
+	  2: Rel (     0,  -346)  ->  Abs (   710,   152)
+	  3: Rel (     0,   -87)  ->  Abs (   710,    65)
+	  4: Rel (    -4,   -69)  ->  Abs (   706,    -4)
+	  5: Rel (   -26,     0)  ->  Abs (   680,    -4)
+	  6: Rel (   -66,   318)  ->  Abs (   614,   314)
+	  7: Rel (   -76,   257)  ->  Abs (   538,   571)
+	  8: Rel (  -128,   248)  ->  Abs (   410,   819)
+	  9: Rel (   -91,   125)  ->  Abs (   319,   944)
+	 10: Rel (    27,   197)  ->  Abs (   346,  1141)
+	 11: Rel (    97,  -156)  ->  Abs (   443,   985)
+	 12: Rel (    97,   -65)  ->  Abs (   540,   920)
+	 13: Rel (   101,     0)  ->  Abs (   641,   920)
+	 14: Rel (    79,     0)  ->  Abs (   720,   920)
+	 15: Rel (    86,    88)  ->  Abs (   806,  1008)
+	 16: Rel (    13,   139)  ->  Abs (   819,  1147)
+	 17: Rel (     6,    14)  ->  Abs (   825,  1161)
+	 18: Rel (    12,     0)  ->  Abs (   837,  1161)
+	 19: Rel (    14,     0)  ->  Abs (   851,  1161)
+	 20: Rel (     7,   -12)  ->  Abs (   858,  1149)
+	 21: Rel (     4,   -54)  ->  Abs (   862,  1095)
+	 22: Rel (     0,  -124)  ->  Abs (   862,   971)
+	 23: Rel (     0,   -93)  ->  Abs (   862,   878)
+	 24: Rel (  -106,  -112)  ->  Abs (   756,   766)
+	 25: Rel (   -80,     0)  ->  Abs (   676,   766)
+	 26: Rel (   -49,     0)  ->  Abs (   627,   766)
+
+	Glyph 764: off = 0x00027D70, len = 296
+	  numberOfContours:	1
+	  xMin:			244
+	  yMin:			-4
+	  xMax:			993
+	  yMax:			1162
+
+	EndPoints
+	---------
+	  0:  33
+
+	  Length of Instructions:	191
+	00000: NPUSHB      (23):    10    14     1   136     9   133    31   192     2   203 
+	                            14   208     2     5     6     0    70     0   136    10 
+	                             3     6     7 
+	00025: PUSHW[1]            858 
+	00028: PUSHB[4]              0    32    22     2 
+	00033: PUSHW[1]            862 
+	00036: PUSHB[5]             13    13    22    32    32 
+	00042: PUSHW[1]            861 
+	00045: PUSHB[6]            192    22   208    22     2    22 
+	00052: PUSHW[1]            -64 
+	00055: PUSHB[7]             12    17    52    22    22    11    26 
+	00063: PUSHW[1]            857 
+	00066: NPUSHB       (9):    15    11     1    11    11     0    17     1    17 
+	00077: PUSHW[1]            854 
+	00080: PUSHB[3]              0     0    15 
+	00084: PUSHW[1]            867 
+	00087: NPUSHB      (11):   128    19   160    19   176    19     3    19    19    10 
+	                            24 
+	00100: PUSHW[1]            867 
+	00103: NPUSHB      (23):    30     2     6     7     3     4     4    10   143    30 
+	                             1    47    30    63    30     2    30    30    10    11 
+	                            11    10     4 
+	00128: PUSHW[1]            340 
+	00131: SCANCTRL   
+	00132: SCANTYPE   
+	00133: MDAP[rd]   
+	00134: SHP[rp1,zp0] 
+	00135: RTHG       
+	00136: MDAP[rd]   
+	00137: SRP1       
+	00138: SHP[rp1,zp0] 
+	00139: RTG        
+	00140: MDAP[rd]   
+	00141: DELTAP1    
+	00142: DELTAP1    
+	00143: SRP2       
+	00144: IP         
+	00145: MDAP[rd]   
+	00146: SLOOP      
+	00147: SHP[rp1,zp0] 
+	00148: SRP0       
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: SRP2       
+	00151: IP         
+	00152: MDAP[rd]   
+	00153: DELTAP1    
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: SHP[rp1,zp0] 
+	00156: RTHG       
+	00157: MDAP[rd]   
+	00158: SVTCA[y-axis] 
+	00159: RTG        
+	00160: MIAP[rd+ci] 
+	00161: DELTAP1    
+	00162: SHP[rp1,zp0] 
+	00163: RUTG       
+	00164: MDAP[rd]   
+	00165: DELTAP1    
+	00166: RTG        
+	00167: MIAP[rd+ci] 
+	00168: SRP1       
+	00169: SHP[rp1,zp0] 
+	00170: MDAP[rd]   
+	00171: CALL       
+	00172: DELTAP1    
+	00173: MIRP[srp0,md,rd,1] 
+	00174: MDAP[rd]   
+	00175: SRP1       
+	00176: SHP[rp1,zp0] 
+	00177: MDAP[rd]   
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: SRP1       
+	00180: SRP2       
+	00181: IP         
+	00182: MIAP[rd+ci] 
+	00183: ALIGNRP    
+	00184: IUP[y]     
+	00185: IUP[x]     
+	00186: SVTCA[y-axis] 
+	00187: DELTAP1    
+	00188: SVTCA[x-axis] 
+	00189: DELTAP1    
+	00190: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short On
+	  7:  YDual                       X-Short On
+	  8:        XDual                         Off
+	  9:                              X-Short Off
+	 10:                              X-Short On
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short X-Short On
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   682,   874)  ->  Abs (   682,   874)
+	  1: Rel (   -56,  -108)  ->  Abs (   626,   766)
+	  2: Rel (  -143,     0)  ->  Abs (   483,   766)
+	  3: Rel (   113,  -242)  ->  Abs (   596,   524)
+	  4: Rel (     0,  -221)  ->  Abs (   596,   303)
+	  5: Rel (     0,  -138)  ->  Abs (   596,   165)
+	  6: Rel (   -31,  -169)  ->  Abs (   565,    -4)
+	  7: Rel (   -34,     0)  ->  Abs (   531,    -4)
+	  8: Rel (     0,   317)  ->  Abs (   531,   313)
+	  9: Rel (  -112,   325)  ->  Abs (   419,   638)
+	 10: Rel (  -175,   282)  ->  Abs (   244,   920)
+	 11: Rel (    28,   192)  ->  Abs (   272,  1112)
+	 12: Rel (   103,  -201)  ->  Abs (   375,   911)
+	 13: Rel (   160,     0)  ->  Abs (   535,   911)
+	 14: Rel (   150,     0)  ->  Abs (   685,   911)
+	 15: Rel (    36,   238)  ->  Abs (   721,  1149)
+	 16: Rel (     5,    13)  ->  Abs (   726,  1162)
+	 17: Rel (     7,     0)  ->  Abs (   733,  1162)
+	 18: Rel (    10,     0)  ->  Abs (   743,  1162)
+	 19: Rel (     7,   -13)  ->  Abs (   750,  1149)
+	 20: Rel (     6,  -133)  ->  Abs (   756,  1016)
+	 21: Rel (    49,   -76)  ->  Abs (   805,   940)
+	 22: Rel (    41,     0)  ->  Abs (   846,   940)
+	 23: Rel (    93,     0)  ->  Abs (   939,   940)
+	 24: Rel (    20,   199)  ->  Abs (   959,  1139)
+	 25: Rel (     6,     9)  ->  Abs (   965,  1148)
+	 26: Rel (     7,     0)  ->  Abs (   972,  1148)
+	 27: Rel (     8,     0)  ->  Abs (   980,  1148)
+	 28: Rel (     7,    -9)  ->  Abs (   987,  1139)
+	 29: Rel (     6,   -36)  ->  Abs (   993,  1103)
+	 30: Rel (     0,   -63)  ->  Abs (   993,  1040)
+	 31: Rel (     0,  -235)  ->  Abs (   993,   805)
+	 32: Rel (  -170,     0)  ->  Abs (   823,   805)
+	 33: Rel (  -100,     0)  ->  Abs (   723,   805)
+
+	Glyph 765: off = 0x00027E98, len = 278
+	  numberOfContours:	1
+	  xMin:			383
+	  yMin:			0
+	  xMax:			883
+	  yMax:			1155
+
+	EndPoints
+	---------
+	  0:  24
+
+	  Length of Instructions:	189
+	00000: NPUSHB      (12):     6     0    70     0   111     7   102    16   136    10 
+	                             5    21 
+	00014: PUSHW[1]            -24 
+	00017: PUSHB[4]             58    58    52    22 
+	00022: PUSHW[1]            -64 
+	00025: PUSHB[4]             58    58    52    24 
+	00030: PUSHW[1]            -40 
+	00033: PUSHB[4]             12    22    52    15 
+	00038: PUSHW[1]            -40 
+	00041: NPUSHB      (39):    19    22    52    53     9    69     9    87     9   211 
+	                            16     4    41    13   200    13     2    22    10   148 
+	                            22   212    22     3    20    21    36    21     2     9 
+	                             3     1    21    22     1     6     6    11     0 
+	00082: PUSHW[7]            860     1   858    12   861    11   855 
+	00097: NPUSHB      (17):     0    47     1     1     1     1     4    12    11    64 
+	                            11    13    52    11    11     8    18 
+	00116: PUSHW[1]            874 
+	00119: PUSHB[7]             18     6     1     6     6     4    14 
+	00127: PUSHW[1]            873 
+	00130: PUSHB[3]              8     8    23 
+	00134: PUSHW[1]            871 
+	00137: PUSHB[4]              0     4     1     4 
+	00142: MDAP[rd]   
+	00143: DELTAP1    
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: SHP[rp1,zp0] 
+	00146: MDAP[rd]   
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: SRP1       
+	00149: SHP[rp1,zp0] 
+	00150: MDAP[rd]   
+	00151: DELTAP1    
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: SRP1       
+	00154: SHP[rp1,zp0] 
+	00155: MDAP[rd]   
+	00156: CALL       
+	00157: SHP[rp1,zp0] 
+	00158: SRP1       
+	00159: SHP[rp1,zp0] 
+	00160: MDAP[rd]   
+	00161: DELTAP1    
+	00162: SHP[rp1,zp0] 
+	00163: SVTCA[y-axis] 
+	00164: MIAP[rd+ci] 
+	00165: MIRP[nrp0,md,rd,1] 
+	00166: MIAP[rd+ci] 
+	00167: MIRP[nrp0,md,rd,1] 
+	00168: RTHG       
+	00169: SRP2       
+	00170: IP         
+	00171: MDAP[rd]   
+	00172: SRP1       
+	00173: IP         
+	00174: IP         
+	00175: IUP[y]     
+	00176: IUP[x]     
+	00177: SVTCA[x-axis] 
+	00178: DELTAP1    
+	00179: SVTCA[y-axis] 
+	00180: DELTAP2    
+	00181: DELTAP3    
+	00182: DELTAP1    
+	00183: DELTAP1    
+	00184: CALL       
+	00185: CALL       
+	00186: CALL       
+	00187: CALL       
+	00188: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual               Y-Short         Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:                                      On
+	  7:  YDual               Y-Short         Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:                      Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short X-Short On
+	 24:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   883,   123)  ->  Abs (   883,   123)
+	  1: Rel (   -50,  -123)  ->  Abs (   833,     0)
+	  2: Rel (  -121,    13)  ->  Abs (   712,    13)
+	  3: Rel (  -329,   135)  ->  Abs (   383,   148)
+	  4: Rel (     0,    55)  ->  Abs (   383,   203)
+	  5: Rel (     0,   112)  ->  Abs (   383,   315)
+	  6: Rel (   313,   269)  ->  Abs (   696,   584)
+	  7: Rel (  -313,    96)  ->  Abs (   383,   680)
+	  8: Rel (     0,    88)  ->  Abs (   383,   768)
+	  9: Rel (     0,    91)  ->  Abs (   383,   859)
+	 10: Rel (   218,   227)  ->  Abs (   601,  1086)
+	 11: Rel (   167,    69)  ->  Abs (   768,  1155)
+	 12: Rel (   -43,  -137)  ->  Abs (   725,  1018)
+	 13: Rel (  -148,   -69)  ->  Abs (   577,   949)
+	 14: Rel (   -96,  -120)  ->  Abs (   481,   829)
+	 15: Rel (    67,   -58)  ->  Abs (   548,   771)
+	 16: Rel (   143,   -45)  ->  Abs (   691,   726)
+	 17: Rel (   110,   -33)  ->  Abs (   801,   693)
+	 18: Rel (     0,   -38)  ->  Abs (   801,   655)
+	 19: Rel (     0,   -82)  ->  Abs (   801,   573)
+	 20: Rel (   -35,   -22)  ->  Abs (   766,   551)
+	 21: Rel (  -121,   -78)  ->  Abs (   645,   473)
+	 22: Rel (  -139,  -124)  ->  Abs (   506,   349)
+	 23: Rel (   -39,   -73)  ->  Abs (   467,   276)
+	 24: Rel (    78,   -85)  ->  Abs (   545,   191)
+
+	Glyph 766: off = 0x00027FAE, len = 166
+	  numberOfContours:	2
+	  xMin:			340
+	  yMin:			119
+	  xMax:			881
+	  yMax:			842
+
+	EndPoints
+	---------
+	  0:  17
+	  1:  29
+
+	  Length of Instructions:	75
+	00000: NPUSHB      (19):   215     9     1    29    48    16    22    52    25    48 
+	                            18    20    52    55    15   197     9     2    18 
+	00021: PUSHW[7]            862     8    24   861     0    27   870 
+	00036: PUSHB[8]             15    12    79    12     2    12    12    21 
+	00045: PUSHW[1]            872 
+	00048: PUSHB[6]              0     3   111     3     2     3 
+	00055: MDAP[rd]   
+	00056: DELTAP1    
+	00057: MIRP[nrp0,md,rd,1] 
+	00058: SHP[rp1,zp0] 
+	00059: MDAP[rd]   
+	00060: DELTAP1    
+	00061: MIRP[nrp0,md,rd,1] 
+	00062: SVTCA[y-axis] 
+	00063: MDAP[rd]   
+	00064: MIRP[nrp0,md,rd,1] 
+	00065: MDAP[rd]   
+	00066: MIRP[nrp0,md,rd,1] 
+	00067: IUP[y]     
+	00068: IUP[x]     
+	00069: SVTCA[x-axis] 
+	00070: DELTAP1    
+	00071: CALL       
+	00072: CALL       
+	00073: SVTCA[y-axis] 
+	00074: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual                       X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual Rep-  2 Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:              Rep-  3 Y-Short X-Short Off
+	 18:                              X-Short On
+	 19:  YDual                       X-Short Off
+	 20:                      Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   543,   119)  ->  Abs (   543,   119)
+	  1: Rel (   -83,     0)  ->  Abs (   460,   119)
+	  2: Rel (  -120,   103)  ->  Abs (   340,   222)
+	  3: Rel (     0,    91)  ->  Abs (   340,   313)
+	  4: Rel (     0,    88)  ->  Abs (   340,   401)
+	  5: Rel (    73,   227)  ->  Abs (   413,   628)
+	  6: Rel (   103,   159)  ->  Abs (   516,   787)
+	  7: Rel (    67,    55)  ->  Abs (   583,   842)
+	  8: Rel (    56,     0)  ->  Abs (   639,   842)
+	  9: Rel (    60,     0)  ->  Abs (   699,   842)
+	 10: Rel (   120,  -103)  ->  Abs (   819,   739)
+	 11: Rel (    62,  -133)  ->  Abs (   881,   606)
+	 12: Rel (     0,   -80)  ->  Abs (   881,   526)
+	 13: Rel (     0,   -73)  ->  Abs (   881,   453)
+	 14: Rel (   -41,  -188)  ->  Abs (   840,   265)
+	 15: Rel (   -39,   -53)  ->  Abs (   801,   212)
+	 16: Rel (   -95,   -58)  ->  Abs (   706,   154)
+	 17: Rel (  -111,   -35)  ->  Abs (   595,   119)
+	 18: Rel (   -19,   577)  ->  Abs (   576,   696)
+	 19: Rel (   -50,     0)  ->  Abs (   526,   696)
+	 20: Rel (   -94,  -181)  ->  Abs (   432,   515)
+	 21: Rel (     0,   -60)  ->  Abs (   432,   455)
+	 22: Rel (     0,  -122)  ->  Abs (   432,   333)
+	 23: Rel (    69,   -83)  ->  Abs (   501,   250)
+	 24: Rel (    66,     0)  ->  Abs (   567,   250)
+	 25: Rel (    90,     0)  ->  Abs (   657,   250)
+	 26: Rel (   148,   121)  ->  Abs (   805,   371)
+	 27: Rel (     0,    51)  ->  Abs (   805,   422)
+	 28: Rel (     0,    78)  ->  Abs (   805,   500)
+	 29: Rel (  -125,   196)  ->  Abs (   680,   696)
+
+	Glyph 767: off = 0x00028054, len = 186
+	  numberOfContours:	1
+	  xMin:			311
+	  yMin:			0
+	  xMax:			881
+	  yMax:			1155
+
+	EndPoints
+	---------
+	  0:  20
+
+	  Length of Instructions:	114
+	00000: NPUSHB      (24):    97    20     1    43     3    41    20   120     3   167 
+	                            20   182    20     5    71    20    83    20    99    20 
+	                             3     6    17     8 
+	00026: PUSHW[1]            909 
+	00029: NPUSHB      (11):    47    15     1    15    15    31    15     2    15    15 
+	                            13 
+	00042: PUSHW[1]            855 
+	00045: NPUSHB      (11):     0     1     0    47     1     1     1     1    17     6 
+	                            19 
+	00058: PUSHW[1]            879 
+	00061: NPUSHB      (14):     2     4    18     4     2     4     4    11    13    13 
+	                            32    11     1    11 
+	00077: MDAP[rd]   
+	00078: DELTAP1    
+	00079: SHP[rp1,zp0] 
+	00080: RTHG       
+	00081: MDAP[rd]   
+	00082: SRP1       
+	00083: SHP[rp1,zp0] 
+	00084: RTG        
+	00085: MDAP[rd]   
+	00086: DELTAP1    
+	00087: MIRP[nrp0,md,rd,1] 
+	00088: IP         
+	00089: SHP[rp2,zp1] 
+	00090: SHP[rp1,zp0] 
+	00091: RTHG       
+	00092: MDAP[rd]   
+	00093: DELTAP1    
+	00094: SHP[rp1,zp0] 
+	00095: SVTCA[y-axis] 
+	00096: RTG        
+	00097: MDAP[rd]   
+	00098: SHP[rp1,zp0] 
+	00099: MIAP[rd+ci] 
+	00100: SHP[rp1,zp0] 
+	00101: MDAP[rd]   
+	00102: DELTAP1    
+	00103: DELTAP1    
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: SHP[rp1,zp0] 
+	00106: IP         
+	00107: IUP[y]     
+	00108: IUP[x]     
+	00109: SVTCA[x-axis] 
+	00110: DELTAP1    
+	00111: DELTAP1    
+	00112: SVTCA[y-axis] 
+	00113: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short Off
+	  3:                              X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:        XDual                         Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual                         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   881,   180)  ->  Abs (   881,   180)
+	  1: Rel (   -31,  -180)  ->  Abs (   850,     0)
+	  2: Rel (   -73,    55)  ->  Abs (   777,    55)
+	  3: Rel (  -101,   304)  ->  Abs (   676,   359)
+	  4: Rel (     0,   206)  ->  Abs (   676,   565)
+	  5: Rel (     0,   260)  ->  Abs (   676,   825)
+	  6: Rel (    22,   101)  ->  Abs (   698,   926)
+	  7: Rel (   -89,   -31)  ->  Abs (   609,   895)
+	  8: Rel (   -85,     0)  ->  Abs (   524,   895)
+	  9: Rel (   -98,     0)  ->  Abs (   426,   895)
+	 10: Rel (  -115,    80)  ->  Abs (   311,   975)
+	 11: Rel (     0,    66)  ->  Abs (   311,  1041)
+	 12: Rel (     0,    56)  ->  Abs (   311,  1097)
+	 13: Rel (    19,    58)  ->  Abs (   330,  1155)
+	 14: Rel (   123,  -127)  ->  Abs (   453,  1028)
+	 15: Rel (   151,     0)  ->  Abs (   604,  1028)
+	 16: Rel (    66,     0)  ->  Abs (   670,  1028)
+	 17: Rel (    96,    39)  ->  Abs (   766,  1067)
+	 18: Rel (   -33,  -149)  ->  Abs (   733,   918)
+	 19: Rel (     0,  -146)  ->  Abs (   733,   772)
+	 20: Rel (     0,  -375)  ->  Abs (   733,   397)
+
+	Glyph 768: off = 0x0002810E, len = 184
+	  numberOfContours:	1
+	  xMin:			264
+	  yMin:			-6
+	  xMax:			964
+	  yMax:			1163
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	115
+	00000: NPUSHB      (36):     1    24    20    22    52   202     9     1    13    16 
+	                            19    22    52   168     9   184     9     2    13    11 
+	                             5   240     1     1     1     1     0   224    10   240 
+	                            10     2    10    10    11     0 
+	00038: PUSHW[3]            854    11   855 
+	00045: NPUSHB      (23):     5     7     6     5     4     3     5    13    79     0 
+	                             1     0     0    13    10    10    11    11    13    13 
+	                            17    16     4 
+	00070: PUSHW[1]            340 
+	00073: SCANCTRL   
+	00074: SCANTYPE   
+	00075: RTHG       
+	00076: SRP1       
+	00077: SRP2       
+	00078: IP         
+	00079: MDAP[rd]   
+	00080: SHP[rp1,zp0] 
+	00081: RTG        
+	00082: MDAP[rd]   
+	00083: SHP[rp1,zp0] 
+	00084: MDAP[rd]   
+	00085: SRP1       
+	00086: SHP[rp1,zp0] 
+	00087: MDAP[rd]   
+	00088: DELTAP1    
+	00089: SRP1       
+	00090: SLOOP      
+	00091: SHP[rp1,zp0] 
+	00092: SVTCA[y-axis] 
+	00093: MDAP[rd]   
+	00094: MIAP[rd+ci] 
+	00095: MIAP[rd+ci] 
+	00096: SRP1       
+	00097: SHP[rp1,zp0] 
+	00098: MDAP[rd]   
+	00099: DELTAP1    
+	00100: SRP1       
+	00101: SHP[rp1,zp0] 
+	00102: MDAP[rd]   
+	00103: DELTAP1    
+	00104: SRP1       
+	00105: SRP2       
+	00106: IP         
+	00107: IUP[y]     
+	00108: IUP[x]     
+	00109: SVTCA[x-axis] 
+	00110: DELTAP1    
+	00111: CALL       
+	00112: SVTCA[y-axis] 
+	00113: DELTAP1    
+	00114: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         On
+	  2:                              X-Short Off
+	  3:                              X-Short On
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:                              X-Short Off
+	  9:                              X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:        XDual                 X-Short Off
+	 13:        XDual                 X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:        XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   964,  1163)  ->  Abs (   964,  1163)
+	  1: Rel (     0,  -194)  ->  Abs (   964,   969)
+	  2: Rel (  -212,  -259)  ->  Abs (   752,   710)
+	  3: Rel (   -93,  -690)  ->  Abs (   659,    20)
+	  4: Rel (    -3,   -26)  ->  Abs (   656,    -6)
+	  5: Rel (   -15,     0)  ->  Abs (   641,    -6)
+	  6: Rel (   -14,     0)  ->  Abs (   627,    -6)
+	  7: Rel (    -5,    26)  ->  Abs (   622,    20)
+	  8: Rel (   -82,   462)  ->  Abs (   540,   482)
+	  9: Rel (  -176,   378)  ->  Abs (   364,   860)
+	 10: Rel (  -100,    86)  ->  Abs (   264,   946)
+	 11: Rel (    24,   213)  ->  Abs (   288,  1159)
+	 12: Rel (   239,  -293)  ->  Abs (   527,   866)
+	 13: Rel (   126,  -553)  ->  Abs (   653,   313)
+	 14: Rel (     8,   201)  ->  Abs (   661,   514)
+	 15: Rel (   180,   494)  ->  Abs (   841,  1008)
+
+	Glyph 769: off = 0x000281C6, len = 164
+	  numberOfContours:	1
+	  xMin:			263
+	  yMin:			-4
+	  xMax:			965
+	  yMax:			1165
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	97
+	00000: NPUSHB      (22):   166    15     1     3    11     6   255     7     1     7 
+	                             7     6    96     0   112     0     2     0     0     1 
+	                             6    11 
+	00024: PUSHW[1]            855 
+	00027: NPUSHB      (24):     9    11    13     3     3     0     0     1     1     3 
+	                             7    64     6     1     6     6    79     3     1     3 
+	                             3    17    16     4 
+	00053: PUSHW[1]            340 
+	00056: SCANCTRL   
+	00057: SCANTYPE   
+	00058: RTHG       
+	00059: SRP1       
+	00060: SRP2       
+	00061: IP         
+	00062: MDAP[rd]   
+	00063: DELTAP1    
+	00064: SHP[rp1,zp0] 
+	00065: RTG        
+	00066: MDAP[rd]   
+	00067: DELTAP1    
+	00068: ALIGNRP    
+	00069: SRP1       
+	00070: SHP[rp1,zp0] 
+	00071: RTHG       
+	00072: MDAP[rd]   
+	00073: SHP[rp1,zp0] 
+	00074: RTG        
+	00075: MDAP[rd]   
+	00076: SRP1       
+	00077: SLOOP      
+	00078: SHP[rp1,zp0] 
+	00079: SVTCA[y-axis] 
+	00080: MIAP[rd+ci] 
+	00081: MDAP[rd]   
+	00082: MDAP[rd]   
+	00083: SHP[rp1,zp0] 
+	00084: MDAP[rd]   
+	00085: DELTAP1    
+	00086: SRP1       
+	00087: SHP[rp1,zp0] 
+	00088: MDAP[rd]   
+	00089: DELTAP1    
+	00090: SRP1       
+	00091: SRP2       
+	00092: IP         
+	00093: IUP[y]     
+	00094: IUP[x]     
+	00095: SVTCA[y-axis] 
+	00096: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short On
+	  2:                              X-Short Off
+	  3:                              X-Short On
+	  4:                      Y-Short X-Short Off
+	  5:                              X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:  YDual XDual         Y-Short         On
+	  8:        XDual                 X-Short Off
+	  9:        XDual                 X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:        XDual                 X-Short Off
+	 15:        XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   965,   213)  ->  Abs (   965,   213)
+	  1: Rel (   -24,  -213)  ->  Abs (   941,     0)
+	  2: Rel (  -245,   299)  ->  Abs (   696,   299)
+	  3: Rel (  -120,   547)  ->  Abs (   576,   846)
+	  4: Rel (    -9,  -205)  ->  Abs (   567,   641)
+	  5: Rel (  -180,  -492)  ->  Abs (   387,   149)
+	  6: Rel (  -124,  -153)  ->  Abs (   263,    -4)
+	  7: Rel (     0,   196)  ->  Abs (   263,   192)
+	  8: Rel (   214,   257)  ->  Abs (   477,   449)
+	  9: Rel (    93,   690)  ->  Abs (   570,  1139)
+	 10: Rel (     3,    26)  ->  Abs (   573,  1165)
+	 11: Rel (    14,     0)  ->  Abs (   587,  1165)
+	 12: Rel (    13,     0)  ->  Abs (   600,  1165)
+	 13: Rel (     5,   -26)  ->  Abs (   605,  1139)
+	 14: Rel (    81,  -456)  ->  Abs (   686,   683)
+	 15: Rel (   176,  -381)  ->  Abs (   862,   302)
+
+	Glyph 770: off = 0x0002826A, len = 202
+	  numberOfContours:	2
+	  xMin:			295
+	  yMin:			-6
+	  xMax:			878
+	  yMax:			1161
+
+	EndPoints
+	---------
+	  0:  17
+	  1:  27
+
+	  Length of Instructions:	112
+	00000: NPUSHB      (15):   138    11   134    17     2   103    17   122    11   118 
+	                            17     3     5    18     7 
+	00017: PUSHW[1]            860 
+	00020: PUSHB[8]             31    26    47    26     2    26    26    21 
+	00029: PUSHW[3]            861    12   855 
+	00036: PUSHB[7]              0     0     1     5     5    18     9 
+	00044: PUSHW[1]            871 
+	00047: NPUSHB      (11):    24    64    11    13    52    24    24     0     1     1 
+	                            18 
+	00060: PUSHW[1]            887 
+	00063: PUSHB[8]             15    15     1    15    15    29    28     4 
+	00072: PUSHW[1]            340 
+	00075: SCANCTRL   
+	00076: SCANTYPE   
+	00077: SRP1       
+	00078: SRP2       
+	00079: IP         
+	00080: MDAP[rd]   
+	00081: DELTAP1    
+	00082: MIRP[srp0,md,rd,1] 
+	00083: SHP[rp2,zp1] 
+	00084: RTHG       
+	00085: MDAP[rd]   
+	00086: SHP[rp1,zp0] 
+	00087: SHP[rp2,zp1] 
+	00088: RTG        
+	00089: MDAP[rd]   
+	00090: CALL       
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: SRP1       
+	00093: SHP[rp1,zp0] 
+	00094: MDAP[rd]   
+	00095: SVTCA[y-axis] 
+	00096: MDAP[rd]   
+	00097: SHP[rp1,zp0] 
+	00098: MDAP[rd]   
+	00099: MIAP[rd+ci] 
+	00100: MIRP[srp0,md,rd,1] 
+	00101: SHP[rp2,zp1] 
+	00102: MDAP[rd]   
+	00103: DELTAP1    
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: SHP[rp1,zp0] 
+	00106: IP         
+	00107: IUP[y]     
+	00108: IUP[x]     
+	00109: SVTCA[x-axis] 
+	00110: DELTAP1    
+	00111: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short On
+	  2:  YDual       Rep-  2 Y-Short X-Short Off
+	  5:        XDual                         On
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:        XDual                 X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual                 X-Short On
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:        XDual                 X-Short Off
+	 18:                              X-Short On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:                      Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   878,   133)  ->  Abs (   878,   133)
+	  1: Rel (   -43,  -139)  ->  Abs (   835,    -6)
+	  2: Rel (   -46,    29)  ->  Abs (   789,    23)
+	  3: Rel (   -66,   114)  ->  Abs (   723,   137)
+	  4: Rel (   -37,   179)  ->  Abs (   686,   316)
+	  5: Rel (     0,   298)  ->  Abs (   686,   614)
+	  6: Rel (  -100,   -36)  ->  Abs (   586,   578)
+	  7: Rel (   -64,     0)  ->  Abs (   522,   578)
+	  8: Rel (  -227,     0)  ->  Abs (   295,   578)
+	  9: Rel (     0,   172)  ->  Abs (   295,   750)
+	 10: Rel (     0,   112)  ->  Abs (   295,   862)
+	 11: Rel (   161,   299)  ->  Abs (   456,  1161)
+	 12: Rel (   152,     0)  ->  Abs (   608,  1161)
+	 13: Rel (   152,     0)  ->  Abs (   760,  1161)
+	 14: Rel (     6,  -337)  ->  Abs (   766,   824)
+	 15: Rel (     0,  -191)  ->  Abs (   766,   633)
+	 16: Rel (     0,   -95)  ->  Abs (   766,   538)
+	 17: Rel (    53,  -347)  ->  Abs (   819,   191)
+	 18: Rel (  -143,   530)  ->  Abs (   676,   721)
+	 19: Rel (     0,   221)  ->  Abs (   676,   942)
+	 20: Rel (   -65,    88)  ->  Abs (   611,  1030)
+	 21: Rel (   -54,     0)  ->  Abs (   557,  1030)
+	 22: Rel (   -52,     0)  ->  Abs (   505,  1030)
+	 23: Rel (  -124,  -132)  ->  Abs (   381,   898)
+	 24: Rel (     0,   -54)  ->  Abs (   381,   844)
+	 25: Rel (     0,  -142)  ->  Abs (   381,   702)
+	 26: Rel (   159,     0)  ->  Abs (   540,   702)
+	 27: Rel (    81,     0)  ->  Abs (   621,   702)
+
+	Glyph 771: off = 0x00028334, len = 218
+	  numberOfContours:	3
+	  xMin:			150
+	  yMin:			-168
+	  xMax:			1079
+	  yMax:			1389
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  27
+	  2:  41
+
+	  Length of Instructions:	89
+	00000: PUSHB[3]             10    21    22 
+	00004: PUSHW[1]            945 
+	00007: PUSHB[5]             15    14     3    29    28 
+	00013: PUSHW[1]            945 
+	00016: NPUSHB      (29):    35    36     7     8     9    10    11     0     1     2 
+	                             3     9     5   239    12     1    79    12   143    12 
+	                             2    12   112     5   240     5     2     5    39 
+	00047: PUSHW[7]            946    32    18   946    25     4   340 
+	00062: SCANCTRL   
+	00063: SCANTYPE   
+	00064: MDAP[rd]   
+	00065: MIRP[nrp0,md,rd,1] 
+	00066: MDAP[rd]   
+	00067: MIRP[nrp0,md,rd,1] 
+	00068: MDAP[rd]   
+	00069: DELTAP1    
+	00070: MDAP[rd]   
+	00071: DELTAP1    
+	00072: DELTAP1    
+	00073: SRP2       
+	00074: SLOOP      
+	00075: IP         
+	00076: SVTCA[y-axis] 
+	00077: MDAP[rd]   
+	00078: ALIGNRP    
+	00079: MIRP[srp0,md,rd,1] 
+	00080: ALIGNRP    
+	00081: MDAP[rd]   
+	00082: MDAP[rd]   
+	00083: ALIGNRP    
+	00084: MIRP[srp0,md,rd,1] 
+	00085: ALIGNRP    
+	00086: MDAP[rd]   
+	00087: IUP[y]     
+	00088: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                                      On
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:                                      On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short         On
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:                                      On
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:                      Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual               Y-Short X-Short On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   979,  1317)  ->  Abs (   979,  1317)
+	  1: Rel (  -675, -1448)  ->  Abs (   304,  -131)
+	  2: Rel (   -17,   -37)  ->  Abs (   287,  -168)
+	  3: Rel (   -25,     0)  ->  Abs (   262,  -168)
+	  4: Rel (   -44,     0)  ->  Abs (   218,  -168)
+	  5: Rel (     0,    41)  ->  Abs (   218,  -127)
+	  6: Rel (     0,    14)  ->  Abs (   218,  -113)
+	  7: Rel (     8,    17)  ->  Abs (   226,   -96)
+	  8: Rel (   676,  1448)  ->  Abs (   902,  1352)
+	  9: Rel (    18,    37)  ->  Abs (   920,  1389)
+	 10: Rel (    27,     0)  ->  Abs (   947,  1389)
+	 11: Rel (    41,     0)  ->  Abs (   988,  1389)
+	 12: Rel (     0,   -41)  ->  Abs (   988,  1348)
+	 13: Rel (     0,   -12)  ->  Abs (   988,  1336)
+	 14: Rel (  -703,   -77)  ->  Abs (   285,  1259)
+	 15: Rel (    37,     0)  ->  Abs (   322,  1259)
+	 16: Rel (    56,     0)  ->  Abs (   378,  1259)
+	 17: Rel (    79,   -80)  ->  Abs (   457,  1179)
+	 18: Rel (     0,   -56)  ->  Abs (   457,  1123)
+	 19: Rel (     0,   -57)  ->  Abs (   457,  1066)
+	 20: Rel (   -78,   -80)  ->  Abs (   379,   986)
+	 21: Rel (   -57,     0)  ->  Abs (   322,   986)
+	 22: Rel (   -37,     0)  ->  Abs (   285,   986)
+	 23: Rel (   -56,     0)  ->  Abs (   229,   986)
+	 24: Rel (   -79,    80)  ->  Abs (   150,  1066)
+	 25: Rel (     0,    57)  ->  Abs (   150,  1123)
+	 26: Rel (     0,    56)  ->  Abs (   150,  1179)
+	 27: Rel (    80,    80)  ->  Abs (   230,  1259)
+	 28: Rel (   677, -1009)  ->  Abs (   907,   250)
+	 29: Rel (    37,     0)  ->  Abs (   944,   250)
+	 30: Rel (    57,     0)  ->  Abs (  1001,   250)
+	 31: Rel (    78,   -80)  ->  Abs (  1079,   170)
+	 32: Rel (     0,   -56)  ->  Abs (  1079,   114)
+	 33: Rel (     0,   -57)  ->  Abs (  1079,    57)
+	 34: Rel (   -78,   -80)  ->  Abs (  1001,   -23)
+	 35: Rel (   -57,     0)  ->  Abs (   944,   -23)
+	 36: Rel (   -37,     0)  ->  Abs (   907,   -23)
+	 37: Rel (   -55,     0)  ->  Abs (   852,   -23)
+	 38: Rel (   -79,    80)  ->  Abs (   773,    57)
+	 39: Rel (    -1,    57)  ->  Abs (   772,   114)
+	 40: Rel (     0,    56)  ->  Abs (   772,   170)
+	 41: Rel (    80,    80)  ->  Abs (   852,   250)
+
+	Glyph 772: off = 0x0002840E, len = 134
+	  numberOfContours:	1
+	  xMin:			455
+	  yMin:			-253
+	  xMax:			773
+	  yMax:			257
+
+	EndPoints
+	---------
+	  0:  20
+
+	  Length of Instructions:	67
+	00000: NPUSHB      (19):     9    20   214    13   230    13   245    13     4   248 
+	                            20     1     6    13     1    14    14     0     8 
+	00021: PUSHW[1]            945 
+	00024: NPUSHB      (11):     2    63    16     1    16    16     0    15    11     1 
+	                            11 
+	00037: PUSHW[4]            946     5     5   340 
+	00046: SCANCTRL   
+	00047: SCANTYPE   
+	00048: MDAP[rd]   
+	00049: MIRP[nrp0,md,rd,1] 
+	00050: DELTAP1    
+	00051: IP         
+	00052: SHP[rp1,zp0] 
+	00053: MDAP[rd]   
+	00054: DELTAP1    
+	00055: SVTCA[y-axis] 
+	00056: MDAP[rd]   
+	00057: MIRP[nrp0,md,rd,1] 
+	00058: IP         
+	00059: SHP[rp1,zp0] 
+	00060: MDAP[rd]   
+	00061: IUP[y]     
+	00062: IUP[x]     
+	00063: SVTCA[x-axis] 
+	00064: DELTAP3    
+	00065: DELTAP1    
+	00066: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   674,     2)  ->  Abs (   674,     2)
+	  1: Rel (   -27,   -12)  ->  Abs (   647,   -10)
+	  2: Rel (   -31,     0)  ->  Abs (   616,   -10)
+	  3: Rel (   -60,    -1)  ->  Abs (   556,   -11)
+	  4: Rel (   -90,    71)  ->  Abs (   466,    60)
+	  5: Rel (     0,    77)  ->  Abs (   466,   137)
+	  6: Rel (     0,    35)  ->  Abs (   466,   172)
+	  7: Rel (    69,    85)  ->  Abs (   535,   257)
+	  8: Rel (    93,     0)  ->  Abs (   628,   257)
+	  9: Rel (    75,     0)  ->  Abs (   703,   257)
+	 10: Rel (    70,   -84)  ->  Abs (   773,   173)
+	 11: Rel (     0,   -52)  ->  Abs (   773,   121)
+	 12: Rel (     0,  -163)  ->  Abs (   773,   -42)
+	 13: Rel (  -200,  -211)  ->  Abs (   573,  -253)
+	 14: Rel (   -76,     0)  ->  Abs (   497,  -253)
+	 15: Rel (   -42,     0)  ->  Abs (   455,  -253)
+	 16: Rel (     0,    31)  ->  Abs (   455,  -222)
+	 17: Rel (     0,    21)  ->  Abs (   455,  -201)
+	 18: Rel (    51,    24)  ->  Abs (   506,  -177)
+	 19: Rel (    66,    31)  ->  Abs (   572,  -146)
+	 20: Rel (   100,   105)  ->  Abs (   672,   -41)
+
+	Glyph 773: off = 0x00028494, len = 228
+	  numberOfContours:	1
+	  xMin:			230
+	  yMin:			2
+	  xMax:			998
+	  yMax:			738
+
+	EndPoints
+	---------
+	  0:  37
+
+	  Length of Instructions:	111
+	00000: NPUSHB      (43):     6    13     8    29   135    13   136    29     4   167 
+	                            13   183    13   248    21     3   135     5   135    37 
+	                             2     8     8     2    34    34    21    29    13    37 
+	                             5     5    24     2    18    24    29    21    13     3 
+	                            10    32    16 
+	00045: NPUSHW      (12):   928     4    26   928     0    10   927     4    32   927 
+	                             4   886 
+	00071: PUSHB[5]              0     0     1     0     4 
+	00077: SCANTYPE   
+	00078: MDAP[rd]   
+	00079: DELTAP1    
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: MIRP[nrp0,nmd,rd,0] 
+	00082: SRP0       
+	00083: MIRP[nrp0,nmd,rd,0] 
+	00084: SRP0       
+	00085: MIRP[nrp0,nmd,rd,0] 
+	00086: SRP0       
+	00087: MIRP[nrp0,nmd,rd,0] 
+	00088: SRP1       
+	00089: SRP2       
+	00090: SLOOP      
+	00091: IP         
+	00092: SVTCA[y-axis] 
+	00093: MDAP[rd]   
+	00094: MDAP[rd]   
+	00095: MDAP[rd]   
+	00096: SRP2       
+	00097: SLOOP      
+	00098: IP         
+	00099: IP         
+	00100: MDAP[rd]   
+	00101: SRP1       
+	00102: IP         
+	00103: MDAP[rd]   
+	00104: IUP[y]     
+	00105: IUP[x]     
+	00106: SVTCA[y-axis] 
+	00107: DELTAP2    
+	00108: DELTAP1    
+	00109: SVTCA[x-axis] 
+	00110: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual                         On
+	  6:  YDual               Y-Short         On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short On
+	 13:                      Y-Short         On
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short On
+	 21:  YDual               Y-Short X-Short On
+	 22:                      Y-Short X-Short On
+	 23:                      Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual               Y-Short         On
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short X-Short On
+	 37:                      Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   572,   680)  ->  Abs (   572,   680)
+	  1: Rel (     0,    58)  ->  Abs (   572,   738)
+	  2: Rel (    41,     0)  ->  Abs (   613,   738)
+	  3: Rel (    43,     0)  ->  Abs (   656,   738)
+	  4: Rel (     0,   -58)  ->  Abs (   656,   680)
+	  5: Rel (     0,  -286)  ->  Abs (   656,   394)
+	  6: Rel (   265,    85)  ->  Abs (   921,   479)
+	  7: Rel (    28,     9)  ->  Abs (   949,   488)
+	  8: Rel (    10,     0)  ->  Abs (   959,   488)
+	  9: Rel (    39,     0)  ->  Abs (   998,   488)
+	 10: Rel (     0,   -41)  ->  Abs (   998,   447)
+	 11: Rel (     0,   -31)  ->  Abs (   998,   416)
+	 12: Rel (   -43,   -14)  ->  Abs (   955,   402)
+	 13: Rel (  -272,   -88)  ->  Abs (   683,   314)
+	 14: Rel (   168,  -234)  ->  Abs (   851,    80)
+	 15: Rel (    16,   -22)  ->  Abs (   867,    58)
+	 16: Rel (     0,   -15)  ->  Abs (   867,    43)
+	 17: Rel (     0,   -41)  ->  Abs (   867,     2)
+	 18: Rel (   -43,     0)  ->  Abs (   824,     2)
+	 19: Rel (   -20,     0)  ->  Abs (   804,     2)
+	 20: Rel (   -21,    29)  ->  Abs (   783,    31)
+	 21: Rel (  -170,   231)  ->  Abs (   613,   262)
+	 22: Rel (  -168,  -231)  ->  Abs (   445,    31)
+	 23: Rel (   -21,   -29)  ->  Abs (   424,     2)
+	 24: Rel (   -20,     0)  ->  Abs (   404,     2)
+	 25: Rel (   -41,     0)  ->  Abs (   363,     2)
+	 26: Rel (    -4,    43)  ->  Abs (   359,    45)
+	 27: Rel (     3,    15)  ->  Abs (   362,    60)
+	 28: Rel (    14,    20)  ->  Abs (   376,    80)
+	 29: Rel (   170,   234)  ->  Abs (   546,   314)
+	 30: Rel (  -275,    88)  ->  Abs (   271,   402)
+	 31: Rel (   -41,    13)  ->  Abs (   230,   415)
+	 32: Rel (     0,    32)  ->  Abs (   230,   447)
+	 33: Rel (     0,    41)  ->  Abs (   230,   488)
+	 34: Rel (    39,     0)  ->  Abs (   269,   488)
+	 35: Rel (    10,     0)  ->  Abs (   279,   488)
+	 36: Rel (    19,    -6)  ->  Abs (   298,   482)
+	 37: Rel (   274,   -88)  ->  Abs (   572,   394)
+
+	Glyph 774: off = 0x00028578, len = 96
+	  numberOfContours:	1
+	  xMin:			586
+	  yMin:			1337
+	  xMax:			652
+	  yMax:			1804
+
+	EndPoints
+	---------
+	  0:  12
+
+	  Length of Instructions:	45
+	00000: NPUSHB      (19):     0     0     5     2     6     8     3     4     0     0 
+	                             4     5     5    10    64    42    46    52    10 
+	00021: PUSHW[2]            881     4 
+	00026: MDAP[rd]   
+	00027: MIRP[srp0,md,rd,1] 
+	00028: CALL       
+	00029: SHP[rp2,zp1] 
+	00030: RTHG       
+	00031: MDAP[rd]   
+	00032: SRP1       
+	00033: SHP[rp1,zp0] 
+	00034: MDAP[rd]   
+	00035: SRP1       
+	00036: SLOOP      
+	00037: IP         
+	00038: SVTCA[y-axis] 
+	00039: RTG        
+	00040: MDAP[rd]   
+	00041: SHP[rp1,zp0] 
+	00042: MDAP[rd]   
+	00043: IUP[y]     
+	00044: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:                      Y-Short X-Short On
+	  7:        XDual         Y-Short         Off
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   606,  1337)  ->  Abs (   606,  1337)
+	  1: Rel (     0,    55)  ->  Abs (   606,  1392)
+	  2: Rel (    -9,    82)  ->  Abs (   597,  1474)
+	  3: Rel (   -11,   104)  ->  Abs (   586,  1578)
+	  4: Rel (     0,   116)  ->  Abs (   586,  1694)
+	  5: Rel (    60,   110)  ->  Abs (   646,  1804)
+	  6: Rel (    -1,  -102)  ->  Abs (   645,  1702)
+	  7: Rel (     0,   -39)  ->  Abs (   645,  1663)
+	  8: Rel (     3,   -54)  ->  Abs (   648,  1609)
+	  9: Rel (     4,   -64)  ->  Abs (   652,  1545)
+	 10: Rel (     0,   -40)  ->  Abs (   652,  1505)
+	 11: Rel (     0,   -37)  ->  Abs (   652,  1468)
+	 12: Rel (   -31,  -123)  ->  Abs (   621,  1345)
+
+	Glyph 775: off = 0x000285D8, len = 304
+	  numberOfContours:	1
+	  xMin:			465
+	  yMin:			1230
+	  xMax:			739
+	  yMax:			1603
+
+	EndPoints
+	---------
+	  0:  22
+
+	  Length of Instructions:	232
+	00000: NPUSHB      (23):    22    44    19    27    52     1    32    11    16    52 
+	                            21    17    22    18    25    22     3     4    64    17 
+	                            30    52     3 
+	00025: PUSHW[1]            -64 
+	00028: PUSHB[4]             11    16    52     1 
+	00033: PUSHW[1]            -64 
+	00036: PUSHB[6]             12    16    52     3    19    21 
+	00043: PUSHW[1]            898 
+	00046: PUSHB[4]            144    22     1    22 
+	00051: PUSHW[1]            -64 
+	00054: PUSHB[4]             28    30    52    22 
+	00059: PUSHW[1]            -64 
+	00062: PUSHB[7]             10    16    52    22    22     1     0 
+	00070: PUSHW[1]            -64 
+	00073: PUSHB[4]             47    49    52     0 
+	00078: PUSHW[1]            -64 
+	00081: NPUSHB      (11):    41    43    52    80     0     1     0     0    12    12 
+	                            14 
+	00094: PUSHW[1]            897 
+	00097: PUSHB[7]            112     8     1    63     8     1     8 
+	00105: PUSHW[1]            -64 
+	00108: NPUSHB      (26):    85    53     8    64     9    14    52     8    64    17 
+	                            19    52     8     3    22    12    12     0    10    16 
+	                            10     2    10    10    22    16 
+	00136: PUSHW[1]            875 
+	00139: NPUSHB      (27):    47     5     1     5     5     1    21   175    22     1 
+	                            22    64    11    11    52    22    64     9    11    52 
+	                            22    22    32     0     1     0     4 
+	00168: PUSHW[1]            340 
+	00171: SCANCTRL   
+	00172: SCANTYPE   
+	00173: MDAP[rd]   
+	00174: DELTAP1    
+	00175: SHP[rp1,zp0] 
+	00176: MDAP[rd]   
+	00177: CALL       
+	00178: CALL       
+	00179: DELTAP1    
+	00180: ALIGNRP    
+	00181: SHP[rp2,zp1] 
+	00182: SHP[rp2,zp1] 
+	00183: MDAP[rd]   
+	00184: DELTAP1    
+	00185: MIRP[srp0,md,rd,1] 
+	00186: SRP1       
+	00187: IP         
+	00188: MDAP[rd]   
+	00189: DELTAP1    
+	00190: SHP[rp1,zp0] 
+	00191: RTHG       
+	00192: MDAP[rd]   
+	00193: SRP1       
+	00194: IP         
+	00195: SVTCA[y-axis] 
+	00196: RTG        
+	00197: MDAP[rd]   
+	00198: CALL       
+	00199: CALL       
+	00200: CALL       
+	00201: DELTAP1    
+	00202: DELTAP3    
+	00203: MIRP[srp0,md,rd,1] 
+	00204: SHP[rp2,zp1] 
+	00205: RUTG       
+	00206: MDAP[rd]   
+	00207: RTG        
+	00208: SHP[rp2,zp1] 
+	00209: MDAP[rd]   
+	00210: DELTAP3    
+	00211: CALL       
+	00212: CALL       
+	00213: SHP[rp1,zp0] 
+	00214: SHP[rp1,zp0] 
+	00215: MDAP[rd]   
+	00216: CALL       
+	00217: CALL       
+	00218: DELTAP3    
+	00219: MIRP[nrp0,md,rd,1] 
+	00220: IP         
+	00221: IP         
+	00222: IUP[y]     
+	00223: IUP[x]     
+	00224: SVTCA[x-axis] 
+	00225: CALL       
+	00226: CALL       
+	00227: CALL       
+	00228: SVTCA[y-axis] 
+	00229: DELTAP3    
+	00230: CALL       
+	00231: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   479,  1230)  ->  Abs (   479,  1230)
+	  1: Rel (     8,    43)  ->  Abs (   487,  1273)
+	  2: Rel (    47,    33)  ->  Abs (   534,  1306)
+	  3: Rel (    29,    37)  ->  Abs (   563,  1343)
+	  4: Rel (   -98,     6)  ->  Abs (   465,  1349)
+	  5: Rel (     0,    84)  ->  Abs (   465,  1433)
+	  6: Rel (     0,    58)  ->  Abs (   465,  1491)
+	  7: Rel (    78,   112)  ->  Abs (   543,  1603)
+	  8: Rel (    51,     0)  ->  Abs (   594,  1603)
+	  9: Rel (    80,     0)  ->  Abs (   674,  1603)
+	 10: Rel (     0,   -73)  ->  Abs (   674,  1530)
+	 11: Rel (     0,   -24)  ->  Abs (   674,  1506)
+	 12: Rel (   -12,   -24)  ->  Abs (   662,  1482)
+	 13: Rel (   -73,    53)  ->  Abs (   589,  1535)
+	 14: Rel (   -32,     0)  ->  Abs (   557,  1535)
+	 15: Rel (   -51,     0)  ->  Abs (   506,  1535)
+	 16: Rel (     0,   -43)  ->  Abs (   506,  1492)
+	 17: Rel (     0,   -36)  ->  Abs (   506,  1456)
+	 18: Rel (   105,   -64)  ->  Abs (   611,  1392)
+	 19: Rel (    40,     0)  ->  Abs (   651,  1392)
+	 20: Rel (    36,     0)  ->  Abs (   687,  1392)
+	 21: Rel (    52,    22)  ->  Abs (   739,  1414)
+	 22: Rel (     0,   -73)  ->  Abs (   739,  1341)
+
+	Glyph 776: off = 0x00028708, len = 208
+	  numberOfContours:	2
+	  xMin:			499
+	  yMin:			-9
+	  xMax:			930
+	  yMax:			683
+
+	EndPoints
+	---------
+	  0:  17
+	  1:  26
+
+	  Length of Instructions:	121
+	00000: NPUSHB      (23):   122    26   133     7   165     7     3   107    26   254 
+	                            26     2   181     7   234    18   234    26     3     0 
+	                            18    22     5 
+	00025: PUSHW[1]            907 
+	00028: PUSHB[3]              2     2    22 
+	00032: PUSHW[1]            907 
+	00035: PUSHB[5]             12    18     0    24     2 
+	00041: PUSHW[1]            -64 
+	00044: PUSHB[8]             12    14    52     2     2    20    15    24 
+	00053: PUSHW[1]            931 
+	00056: NPUSHB      (13):   111     8   127     8     2     8    64     9    11    52 
+	                             8     8    20 
+	00071: PUSHW[1]            883 
+	00074: NPUSHB      (11):    96    15     1     0    15    32    15   112    15     3 
+	                            15 
+	00087: MDAP[rd]   
+	00088: DELTAP1    
+	00089: DELTAP1    
+	00090: MIRP[nrp0,md,rd,1] 
+	00091: SHP[rp1,zp0] 
+	00092: MDAP[rd]   
+	00093: CALL       
+	00094: DELTAP1    
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: RDTG       
+	00097: SRP1       
+	00098: SRP2       
+	00099: IP         
+	00100: MDAP[rd]   
+	00101: CALL       
+	00102: RTG        
+	00103: SRP1       
+	00104: IP         
+	00105: IP         
+	00106: SVTCA[y-axis] 
+	00107: MDAP[rd]   
+	00108: MIRP[srp0,md,rd,1] 
+	00109: SHP[rp2,zp1] 
+	00110: MDAP[rd]   
+	00111: MIRP[nrp0,md,rd,1] 
+	00112: SRP2       
+	00113: IP         
+	00114: IP         
+	00115: IUP[y]     
+	00116: IUP[x]     
+	00117: SVTCA[y-axis] 
+	00118: DELTAP1    
+	00119: DELTAP1    
+	00120: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   612,   547)  ->  Abs (   612,   547)
+	  1: Rel (   -17,     9)  ->  Abs (   595,   556)
+	  2: Rel (   -46,     0)  ->  Abs (   549,   556)
+	  3: Rel (    35,    89)  ->  Abs (   584,   645)
+	  4: Rel (    30,    38)  ->  Abs (   614,   683)
+	  5: Rel (    31,     0)  ->  Abs (   645,   683)
+	  6: Rel (    91,     0)  ->  Abs (   736,   683)
+	  7: Rel (   194,  -201)  ->  Abs (   930,   482)
+	  8: Rel (     0,  -124)  ->  Abs (   930,   358)
+	  9: Rel (     0,  -121)  ->  Abs (   930,   237)
+	 10: Rel (   -63,  -167)  ->  Abs (   867,    70)
+	 11: Rel (   -94,   -79)  ->  Abs (   773,    -9)
+	 12: Rel (   -99,     1)  ->  Abs (   674,    -8)
+	 13: Rel (   -81,     0)  ->  Abs (   593,    -8)
+	 14: Rel (   -93,   109)  ->  Abs (   500,   101)
+	 15: Rel (    -1,    93)  ->  Abs (   499,   194)
+	 16: Rel (     1,    83)  ->  Abs (   500,   277)
+	 17: Rel (    39,   143)  ->  Abs (   539,   420)
+	 18: Rel (   137,    97)  ->  Abs (   676,   517)
+	 19: Rel (  -105,  -167)  ->  Abs (   571,   350)
+	 20: Rel (     0,   -56)  ->  Abs (   571,   294)
+	 21: Rel (     0,  -176)  ->  Abs (   571,   118)
+	 22: Rel (   133,     0)  ->  Abs (   704,   118)
+	 23: Rel (   143,     0)  ->  Abs (   847,   118)
+	 24: Rel (     0,   144)  ->  Abs (   847,   262)
+	 25: Rel (     0,   109)  ->  Abs (   847,   371)
+	 26: Rel (   -88,   103)  ->  Abs (   759,   474)
+
+	Glyph 777: off = 0x000287D8, len = 146
+	  numberOfContours:	1
+	  xMin:			269
+	  yMin:			1313
+	  xMax:			891
+	  yMax:			1482
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	65
+	00000: NPUSHB      (13):     5    24    19    21    52    15    44     9    21    52 
+	                            24    24    16 
+	00015: PUSHW[1]            900 
+	00018: NPUSHB       (9):     7    64     9    17    52     7     7    11    20 
+	00029: PUSHW[1]            900 
+	00032: NPUSHB      (10):     3     0    64     9    11    52     0     0    13     4 
+	00044: SCANTYPE   
+	00045: MDAP[rd]   
+	00046: SHP[rp1,zp0] 
+	00047: MDAP[rd]   
+	00048: CALL       
+	00049: SVTCA[y-axis] 
+	00050: MDAP[rd]   
+	00051: MIRP[nrp0,md,rd,1] 
+	00052: ALIGNRP    
+	00053: SHP[rp1,zp0] 
+	00054: MDAP[rd]   
+	00055: CALL       
+	00056: MIRP[srp0,md,rd,1] 
+	00057: SHP[rp2,zp1] 
+	00058: MDAP[rd]   
+	00059: IUP[y]     
+	00060: IUP[x]     
+	00061: SVTCA[x-axis] 
+	00062: CALL       
+	00063: SVTCA[y-axis] 
+	00064: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   891,  1473)  ->  Abs (   891,  1473)
+	  1: Rel (     0,   -66)  ->  Abs (   891,  1407)
+	  2: Rel (  -172,   -94)  ->  Abs (   719,  1313)
+	  3: Rel (   -82,     0)  ->  Abs (   637,  1313)
+	  4: Rel (   -47,     0)  ->  Abs (   590,  1313)
+	  5: Rel (   -86,    30)  ->  Abs (   504,  1343)
+	  6: Rel (   -86,    30)  ->  Abs (   418,  1373)
+	  7: Rel (   -37,     0)  ->  Abs (   381,  1373)
+	  8: Rel (   -36,     0)  ->  Abs (   345,  1373)
+	  9: Rel (   -33,   -30)  ->  Abs (   312,  1343)
+	 10: Rel (   -34,   -30)  ->  Abs (   278,  1313)
+	 11: Rel (    -5,     0)  ->  Abs (   273,  1313)
+	 12: Rel (    -4,     0)  ->  Abs (   269,  1313)
+	 13: Rel (     0,    12)  ->  Abs (   269,  1325)
+	 14: Rel (     0,    58)  ->  Abs (   269,  1383)
+	 15: Rel (    89,    81)  ->  Abs (   358,  1464)
+	 16: Rel (    60,     0)  ->  Abs (   418,  1464)
+	 17: Rel (    24,     0)  ->  Abs (   442,  1464)
+	 18: Rel (    94,   -29)  ->  Abs (   536,  1435)
+	 19: Rel (    93,   -28)  ->  Abs (   629,  1407)
+	 20: Rel (    73,     0)  ->  Abs (   702,  1407)
+	 21: Rel (   101,     0)  ->  Abs (   803,  1407)
+	 22: Rel (    69,    65)  ->  Abs (   872,  1472)
+	 23: Rel (    10,    10)  ->  Abs (   882,  1482)
+	 24: Rel (     4,     0)  ->  Abs (   886,  1482)
+	 25: Rel (     5,    -1)  ->  Abs (   891,  1481)
+
+	Glyph 778: off = 0x0002886A, len = 286
+	  numberOfContours:	1
+	  xMin:			295
+	  yMin:			0
+	  xMax:			967
+	  yMax:			1133
+
+	EndPoints
+	---------
+	  0:  34
+
+	  Length of Instructions:	174
+	00000: NPUSHB      (31):   201     4   205    12   204    18     3   137    12   183 
+	                            15   185    18     3    17    29     0    80    34     1 
+	                             0    34   208    34     2   176    34   192    34     2 
+	                            34 
+	00033: PUSHW[1]            -64 
+	00036: NPUSHB       (9):     9    13    52    34    34   208    31     1    31 
+	00047: PUSHW[1]            -64 
+	00050: PUSHB[4]             23    25    52    31 
+	00055: PUSHW[1]            910 
+	00058: NPUSHB      (11):     0     2     1     2     2    14     9    21    22    22 
+	                            26 
+	00071: PUSHW[1]            933 
+	00074: NPUSHB      (13):    19    19    14    13    64    17    19    52    13    13 
+	                            14     8     9 
+	00089: PUSHW[1]            858 
+	00092: NPUSHB      (21):    22    21    21    34     0     0     4    17    29     3 
+	                            13     9     8     6    14    14    13     6     6    13 
+	                             4 
+	00115: SCANTYPE   
+	00116: MDAP[rd]   
+	00117: SHP[rp1,zp0] 
+	00118: MDAP[rd]   
+	00119: SRP1       
+	00120: SHP[rp1,zp0] 
+	00121: RTHG       
+	00122: MDAP[rd]   
+	00123: SRP1       
+	00124: SHP[rp1,zp0] 
+	00125: SHP[rp1,zp0] 
+	00126: SRP2       
+	00127: SLOOP      
+	00128: IP         
+	00129: SHP[rp1,zp0] 
+	00130: RTG        
+	00131: MDAP[rd]   
+	00132: SHP[rp1,zp0] 
+	00133: SHP[rp1,zp0] 
+	00134: MDAP[rd]   
+	00135: SHP[rp1,zp0] 
+	00136: SVTCA[y-axis] 
+	00137: MIAP[rd+ci] 
+	00138: ALIGNRP    
+	00139: MDAP[rd]   
+	00140: SHP[rp1,zp0] 
+	00141: MDAP[rd]   
+	00142: CALL       
+	00143: SRP1       
+	00144: SHP[rp1,zp0] 
+	00145: MDAP[rd]   
+	00146: MIRP[srp0,md,rd,1] 
+	00147: SHP[rp2,zp1] 
+	00148: RUTG       
+	00149: MDAP[rd]   
+	00150: RTG        
+	00151: IP         
+	00152: SRP1       
+	00153: SRP2       
+	00154: IP         
+	00155: MDAP[rd]   
+	00156: DELTAP1    
+	00157: MIRP[srp0,md,rd,1] 
+	00158: CALL       
+	00159: DELTAP3    
+	00160: SHP[rp2,zp1] 
+	00161: MDAP[rd]   
+	00162: CALL       
+	00163: DELTAP1    
+	00164: DELTAP2    
+	00165: DELTAP3    
+	00166: IP         
+	00167: SHP[rp2,zp1] 
+	00168: SHP[rp2,zp1] 
+	00169: IUP[y]     
+	00170: IUP[x]     
+	00171: SVTCA[x-axis] 
+	00172: DELTAP1    
+	00173: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                              X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short On
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short On
+	  9:  YDual                       X-Short On
+	 10:  YDual XDual         Y-Short         Off
+	 11:                              X-Short Off
+	 12:                              X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short X-Short On
+	 18:        XDual                 X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:                      Y-Short X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:                      Y-Short X-Short Off
+	 29:                      Y-Short X-Short On
+	 30:        XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   967,   913)  ->  Abs (   967,   913)
+	  1: Rel (   -47,  -286)  ->  Abs (   920,   627)
+	  2: Rel (  -221,     0)  ->  Abs (   699,   627)
+	  3: Rel (   -78,     0)  ->  Abs (   621,   627)
+	  4: Rel (   -80,    59)  ->  Abs (   541,   686)
+	  5: Rel (    67,  -163)  ->  Abs (   608,   523)
+	  6: Rel (     0,  -173)  ->  Abs (   608,   350)
+	  7: Rel (     0,  -129)  ->  Abs (   608,   221)
+	  8: Rel (   -44,  -221)  ->  Abs (   564,     0)
+	  9: Rel (   -31,     0)  ->  Abs (   533,     0)
+	 10: Rel (     0,   231)  ->  Abs (   533,   231)
+	 11: Rel (   -45,   285)  ->  Abs (   488,   516)
+	 12: Rel (  -107,   284)  ->  Abs (   381,   800)
+	 13: Rel (   -86,   130)  ->  Abs (   295,   930)
+	 14: Rel (    60,   196)  ->  Abs (   355,  1126)
+	 15: Rel (    88,  -194)  ->  Abs (   443,   932)
+	 16: Rel (    60,   -98)  ->  Abs (   503,   834)
+	 17: Rel (    40,   -26)  ->  Abs (   543,   808)
+	 18: Rel (    30,   325)  ->  Abs (   573,  1133)
+	 19: Rel (   163,     0)  ->  Abs (   736,  1133)
+	 20: Rel (   108,     0)  ->  Abs (   844,  1133)
+	 21: Rel (    74,  -113)  ->  Abs (   918,  1020)
+	 22: Rel (   -10,   -16)  ->  Abs (   908,  1004)
+	 23: Rel (    -1,     0)  ->  Abs (   907,  1004)
+	 24: Rel (   -42,    23)  ->  Abs (   865,  1027)
+	 25: Rel (   -43,    24)  ->  Abs (   822,  1051)
+	 26: Rel (   -41,     0)  ->  Abs (   781,  1051)
+	 27: Rel (   -64,     0)  ->  Abs (   717,  1051)
+	 28: Rel (   -92,   -90)  ->  Abs (   625,   961)
+	 29: Rel (   -39,  -172)  ->  Abs (   586,   789)
+	 30: Rel (    66,   -25)  ->  Abs (   652,   764)
+	 31: Rel (    61,     0)  ->  Abs (   713,   764)
+	 32: Rel (    53,     0)  ->  Abs (   766,   764)
+	 33: Rel (    99,    45)  ->  Abs (   865,   809)
+	 34: Rel (    82,   113)  ->  Abs (   947,   922)
+
+	Glyph 779: off = 0x00028988, len = 258
+	  numberOfContours:	2
+	  xMin:			273
+	  yMin:			0
+	  xMax:			932
+	  yMax:			1161
+
+	EndPoints
+	---------
+	  0:  16
+	  1:  31
+
+	  Length of Instructions:	154
+	00000: NPUSHB      (57):   201     7   218     7     2   222    31     1   203    17 
+	                           203    31   219    17     3   187    17   188    31   198 
+	                            11     3   153    31   170    17   172    31     3    89 
+	                             7    88    31   137    31     3    39    10     1     0 
+	                            16     7    17     9     2     8     8     9    24    64 
+	                            15    18    52    24    24     0    26 
+	00059: PUSHW[6]            907    15    22   911     2   858 
+	00072: NPUSHB      (14):     0     0    12    24    24    12     8     7    17     3 
+	                             9     9     5    29 
+	00088: PUSHW[1]            879 
+	00091: PUSHB[8]             31    12   143    12     2    12    12    20 
+	00100: PUSHW[1]            893 
+	00103: PUSHB[2]              5     4 
+	00106: SCANTYPE   
+	00107: MDAP[rd]   
+	00108: MIRP[nrp0,md,rd,1] 
+	00109: SHP[rp1,zp0] 
+	00110: MDAP[rd]   
+	00111: DELTAP1    
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: RTHG       
+	00114: SRP2       
+	00115: IP         
+	00116: MDAP[rd]   
+	00117: SLOOP      
+	00118: SHP[rp1,zp0] 
+	00119: SRP1       
+	00120: IP         
+	00121: MDAP[rd]   
+	00122: SRP1       
+	00123: IP         
+	00124: MDAP[rd]   
+	00125: SVTCA[y-axis] 
+	00126: RTG        
+	00127: MIAP[rd+ci] 
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: MDAP[rd]   
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: IP         
+	00132: SHP[rp2,zp1] 
+	00133: MDAP[rd]   
+	00134: CALL       
+	00135: MDAP[rd]   
+	00136: SHP[rp1,zp0] 
+	00137: MDAP[rd]   
+	00138: SRP1       
+	00139: SRP2       
+	00140: IP         
+	00141: IP         
+	00142: SHPIX      
+	00143: IUP[y]     
+	00144: IUP[x]     
+	00145: SVTCA[x-axis] 
+	00146: DELTAP1    
+	00147: DELTAP1    
+	00148: DELTAP1    
+	00149: DELTAP1    
+	00150: DELTAP1    
+	00151: DELTAP1    
+	00152: SVTCA[y-axis] 
+	00153: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:        XDual                         Off
+	  7:                                      On
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                              X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:                              X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:                              X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   625,    66)  ->  Abs (   625,    66)
+	  1: Rel (   -70,   -66)  ->  Abs (   555,     0)
+	  2: Rel (   -88,     0)  ->  Abs (   467,     0)
+	  3: Rel (   -90,     0)  ->  Abs (   377,     0)
+	  4: Rel (  -104,   112)  ->  Abs (   273,   112)
+	  5: Rel (     0,    87)  ->  Abs (   273,   199)
+	  6: Rel (     0,   273)  ->  Abs (   273,   472)
+	  7: Rel (   321,   417)  ->  Abs (   594,   889)
+	  8: Rel (   -69,    78)  ->  Abs (   525,   967)
+	  9: Rel (    49,   194)  ->  Abs (   574,  1161)
+	 10: Rel (   137,  -153)  ->  Abs (   711,  1008)
+	 11: Rel (   221,  -446)  ->  Abs (   932,   562)
+	 12: Rel (     0,  -193)  ->  Abs (   932,   369)
+	 13: Rel (     0,  -135)  ->  Abs (   932,   234)
+	 14: Rel (  -110,  -203)  ->  Abs (   822,    31)
+	 15: Rel (  -105,     0)  ->  Abs (   717,    31)
+	 16: Rel (   -56,     0)  ->  Abs (   661,    31)
+	 17: Rel (   -38,   819)  ->  Abs (   623,   850)
+	 18: Rel (   -67,   -76)  ->  Abs (   556,   774)
+	 19: Rel (  -162,  -352)  ->  Abs (   394,   422)
+	 20: Rel (     0,  -102)  ->  Abs (   394,   320)
+	 21: Rel (     0,  -181)  ->  Abs (   394,   139)
+	 22: Rel (   104,     0)  ->  Abs (   498,   139)
+	 23: Rel (    65,     0)  ->  Abs (   563,   139)
+	 24: Rel (    80,    68)  ->  Abs (   643,   207)
+	 25: Rel (    49,   -53)  ->  Abs (   692,   154)
+	 26: Rel (    74,     0)  ->  Abs (   766,   154)
+	 27: Rel (    45,     0)  ->  Abs (   811,   154)
+	 28: Rel (    66,    89)  ->  Abs (   877,   243)
+	 29: Rel (     0,    38)  ->  Abs (   877,   281)
+	 30: Rel (     0,   106)  ->  Abs (   877,   387)
+	 31: Rel (  -169,   364)  ->  Abs (   708,   751)
+
+	Glyph 780: off = 0x00028A8A, len = 258
+	  numberOfContours:	1
+	  xMin:			325
+	  yMin:			0
+	  xMax:			921
+	  yMax:			1165
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	173
+	00000: NPUSHB      (21):   184     2   200     2     2    22    25     1    40     7 
+	                           102     2   183     3     3     6    44    16    22    52 
+	                             2 
+	00023: PUSHW[1]            -64 
+	00026: NPUSHB       (9):    16    22    52     1     7    16     0     1     0 
+	00037: PUSHW[1]            -64 
+	00040: PUSHB[4]              9    13    52     0 
+	00045: PUSHW[1]            -64 
+	00048: NPUSHB       (9):    25    27    52   144     0     1     0     0    24 
+	00059: PUSHW[1]            913 
+	00062: NPUSHB      (18):     0     7     1     7     7    12     5    16    64    24 
+	                            30    52   239    16     1    16    16    19 
+	00082: PUSHW[6]            911    12   854     4     5   858 
+	00095: NPUSHB      (11):     7     0     5    16    15    15     1     0     0     5 
+	                            22 
+	00108: PUSHW[1]            890 
+	00111: PUSHB[3]              9     9     4 
+	00115: PUSHW[4]            944     5     5   340 
+	00124: SCANCTRL   
+	00125: SCANTYPE   
+	00126: MDAP[rd]   
+	00127: MIRP[nrp0,md,rd,1] 
+	00128: SHP[rp1,zp0] 
+	00129: MDAP[rd]   
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: SRP1       
+	00132: SHP[rp1,zp0] 
+	00133: MDAP[rd]   
+	00134: SHP[rp1,zp0] 
+	00135: SHP[rp1,zp0] 
+	00136: MDAP[rd]   
+	00137: SHP[rp1,zp0] 
+	00138: SRP1       
+	00139: SRP2       
+	00140: IP         
+	00141: SVTCA[y-axis] 
+	00142: MIAP[rd+ci] 
+	00143: ALIGNRP    
+	00144: MIAP[rd+ci] 
+	00145: MIRP[srp0,md,rd,1] 
+	00146: SHP[rp2,zp1] 
+	00147: MDAP[rd]   
+	00148: DELTAP1    
+	00149: CALL       
+	00150: SRP1       
+	00151: SRP2       
+	00152: IP         
+	00153: MDAP[rd]   
+	00154: DELTAP1    
+	00155: MIRP[srp0,md,rd,1] 
+	00156: SHP[rp2,zp1] 
+	00157: MDAP[rd]   
+	00158: DELTAP3    
+	00159: CALL       
+	00160: CALL       
+	00161: DELTAP3    
+	00162: SRP1       
+	00163: IP         
+	00164: IUP[y]     
+	00165: IUP[x]     
+	00166: SVTCA[x-axis] 
+	00167: CALL       
+	00168: CALL       
+	00169: DELTAP1    
+	00170: SVTCA[y-axis] 
+	00171: DELTAP3    
+	00172: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:                              X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:  YDual                       X-Short On
+	  6:        XDual                         Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:        XDual                 X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short On
+	 16:                      Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:                      Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   921,   883)  ->  Abs (   921,   883)
+	  1: Rel (   -39,  -193)  ->  Abs (   882,   690)
+	  2: Rel (  -159,   -63)  ->  Abs (   723,   627)
+	  3: Rel (  -221,  -393)  ->  Abs (   502,   234)
+	  4: Rel (   -23,  -234)  ->  Abs (   479,     0)
+	  5: Rel (   -27,     0)  ->  Abs (   452,     0)
+	  6: Rel (     0,   371)  ->  Abs (   452,   371)
+	  7: Rel (   123,   239)  ->  Abs (   575,   610)
+	  8: Rel (  -250,     0)  ->  Abs (   325,   610)
+	  9: Rel (     0,   138)  ->  Abs (   325,   748)
+	 10: Rel (     0,   109)  ->  Abs (   325,   857)
+	 11: Rel (   229,   308)  ->  Abs (   554,  1165)
+	 12: Rel (    91,     0)  ->  Abs (   645,  1165)
+	 13: Rel (    67,     0)  ->  Abs (   712,  1165)
+	 14: Rel (   119,  -108)  ->  Abs (   831,  1057)
+	 15: Rel (    29,   -74)  ->  Abs (   860,   983)
+	 16: Rel (   -11,   -10)  ->  Abs (   849,   973)
+	 17: Rel (   -92,    32)  ->  Abs (   757,  1005)
+	 18: Rel (   -53,    19)  ->  Abs (   704,  1024)
+	 19: Rel (   -47,     0)  ->  Abs (   657,  1024)
+	 20: Rel (   -76,     0)  ->  Abs (   581,  1024)
+	 21: Rel (  -153,   -87)  ->  Abs (   428,   937)
+	 22: Rel (     0,   -69)  ->  Abs (   428,   868)
+	 23: Rel (     0,  -110)  ->  Abs (   428,   758)
+	 24: Rel (   129,     0)  ->  Abs (   557,   758)
+	 25: Rel (   118,     0)  ->  Abs (   675,   758)
+
+	Glyph 781: off = 0x00028B8C, len = 24
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-409
+	  xMax:			1171
+	  yMax:			1190
+
+	     0: Flags:		0x0236
+		Glyf Index:	894
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0017
+		Glyf Index:	1021
+		X WOffset:	94
+		Y WOffset:	-1264
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 782: off = 0x00028BA4, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-561
+	  xMax:			1192
+	  yMax:			682
+
+	     0: Flags:		0x0236
+		Glyf Index:	1103
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1102
+		X WOffset:	284
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     4     3    15    67     1    67    64    15    17    52 
+	                            31    67    79    67     2    67 
+	00018: SVTCA[x-axis] 
+	00019: SRP1       
+	00020: DELTAP1    
+	00021: CALL       
+	00022: DELTAP2    
+	00023: SHC[rp1,zp0] 
+	00024: SHC[rp1,zp0] 
+
+	Glyph 783: off = 0x00028BD8, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-424
+	  xMax:			1187
+	  yMax:			1091
+
+	     0: Flags:		0x0236
+		Glyf Index:	1103
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	352
+		Y WOffset:	17
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              3     0    65    65    34    34    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 784: off = 0x00028BFE, len = 848
+	  numberOfContours:	4
+	  xMin:			0
+	  yMin:			-291
+	  xMax:			1229
+	  yMax:			999
+
+	EndPoints
+	---------
+	  0:  35
+	  1:  67
+	  2:  90
+	  3:  98
+
+	  Length of Instructions:	567
+	00000: NPUSHB      (82):    16    87     1    87    64    15    22    52   151    73 
+	                             1    52    12    60    86    73    73    72    87     4 
+	                           122    73   127    86   140    73     3    11    87   138 
+	                            86   223    87     3    30    86     1    66    87   213 
+	                            87   224    87   240    87     4   101    72    99    87 
+	                           130    87     3     7    29     0    87     2    94    98 
+	                            95    97    92    92    93    91    96    96    97    93 
+	                            93    95    64    52    56    52    95    64    22    29 
+	                            52    95 
+	00084: PUSHW[1]            940 
+	00087: NPUSHB      (11):    97    91    91   208    97     1     0    97     1    97 
+	                            56 
+	00100: PUSHW[1]            901 
+	00103: NPUSHB      (21):    37    64    11    13    52    37    62    63    68    69 
+	                            47    63    63    63     2    63    48     2    81    81 
+	                            74 
+	00126: PUSHW[3]            899    85   -64 
+	00133: NPUSHB      (25):    33    46    52   144    85     1     0    85   191    85 
+	                             2    48    85    64    85    96    85     3    85     0 
+	                            19     1    19    19    27 
+	00160: PUSHW[1]            903 
+	00163: NPUSHB      (12):    14    93    91    91    98    92    95    84    97    97 
+	                            96    92 
+	00177: PUSHW[1]            -64 
+	00180: PUSHB[4]             52    56    52    92 
+	00185: PUSHW[1]            -64 
+	00188: PUSHB[4]             22    29    52    92 
+	00193: PUSHW[1]            939 
+	00196: NPUSHB      (11):    96    64    52    56    52    96    64    22    29    52 
+	                            96 
+	00209: PUSHW[1]            939 
+	00212: NPUSHB      (36):    94    48    98     1    98    63    63    60    62    64 
+	                            15    25    52    62    62    60    69    69    89    31 
+	                            68     1   175    68   223    68     2    68    64    18 
+	                            25    52    68    68    89    65 
+	00250: PUSHW[1]            878 
+	00253: PUSHB[4]            128    60     1    60 
+	00258: PUSHW[1]            -64 
+	00261: PUSHB[4]             25    29    52    60 
+	00266: PUSHW[1]            -64 
+	00269: NPUSHB      (17):    15    20    52    32    60    48    60    79    60     3 
+	                            60    60    71    41    79    79    89 
+	00288: PUSHW[1]            875 
+	00291: NPUSHB      (12):    71    47    48    43    45    54    52     4    41    48 
+	                            48    50 
+	00305: PUSHW[1]            879 
+	00308: PUSHB[6]             41    64    14    17    52    41 
+	00315: PUSHW[1]            -64 
+	00318: NPUSHB      (38):    11    12    52    31    41    95    41   159    41     3 
+	                            15    41   143    41   223    41     3    79    41     1 
+	                            41    41    10    34    33    31     6     8     0    10 
+	                             2     2     4     0     0     4     4    31 
+	00358: PUSHW[1]            876 
+	00361: NPUSHB      (11):   144    10     1     0    10   128    10   208    10     3 
+	                            10 
+	00374: PUSHW[1]            -64 
+	00377: NPUSHB      (10):    13    17    52    10    10   100    16    21    21    25 
+	00389: PUSHW[4]            875    16     4   340 
+	00398: SCANCTRL   
+	00399: SCANTYPE   
+	00400: MDAP[rd]   
+	00401: MIRP[srp0,md,rd,1] 
+	00402: SHP[rp2,zp1] 
+	00403: MDAP[rd]   
+	00404: SRP1       
+	00405: SRP2       
+	00406: IP         
+	00407: MDAP[rd]   
+	00408: CALL       
+	00409: DELTAP2    
+	00410: DELTAP3    
+	00411: MIRP[nrp0,md,rd,1] 
+	00412: SHP[rp1,zp0] 
+	00413: MDAP[rd]   
+	00414: SHP[rp1,zp0] 
+	00415: MDAP[rd]   
+	00416: RTHG       
+	00417: SRP2       
+	00418: IP         
+	00419: MDAP[rd]   
+	00420: SRP1       
+	00421: SRP2       
+	00422: IP         
+	00423: IP         
+	00424: SRP1       
+	00425: IP         
+	00426: IP         
+	00427: SRP1       
+	00428: SHP[rp1,zp0] 
+	00429: RTG        
+	00430: MDAP[rd]   
+	00431: DELTAP1    
+	00432: DELTAP2    
+	00433: DELTAP3    
+	00434: CALL       
+	00435: CALL       
+	00436: MIRP[nrp0,md,rd,1] 
+	00437: RTHG       
+	00438: IP         
+	00439: MDAP[rd]   
+	00440: SRP1       
+	00441: SLOOP      
+	00442: IP         
+	00443: SRP1       
+	00444: SHP[rp1,zp0] 
+	00445: RTG        
+	00446: MDAP[rd]   
+	00447: MIRP[nrp0,md,rd,1] 
+	00448: SHP[rp1,zp0] 
+	00449: MDAP[rd]   
+	00450: SRP1       
+	00451: SRP2       
+	00452: IP         
+	00453: MDAP[rd]   
+	00454: DELTAP1    
+	00455: CALL       
+	00456: CALL       
+	00457: DELTAP2    
+	00458: MIRP[nrp0,md,rd,1] 
+	00459: SRP1       
+	00460: SHP[rp1,zp0] 
+	00461: RUTG       
+	00462: MDAP[rd]   
+	00463: CALL       
+	00464: DELTAP2    
+	00465: DELTAP3    
+	00466: RTG        
+	00467: RTHG       
+	00468: SRP2       
+	00469: IP         
+	00470: MDAP[rd]   
+	00471: SRP1       
+	00472: SHP[rp1,zp0] 
+	00473: RUTG       
+	00474: RTG        
+	00475: MDAP[rd]   
+	00476: CALL       
+	00477: RTG        
+	00478: RTHG       
+	00479: SRP2       
+	00480: IP         
+	00481: MDAP[rd]   
+	00482: RTG        
+	00483: MDAP[rd]   
+	00484: DELTAP1    
+	00485: SHP[rp1,zp0] 
+	00486: MIRP[nrp0,md,rd,1] 
+	00487: CALL       
+	00488: CALL       
+	00489: MIRP[nrp0,md,rd,1] 
+	00490: CALL       
+	00491: CALL       
+	00492: RTDG       
+	00493: SRP2       
+	00494: IP         
+	00495: MDAP[rd]   
+	00496: MIRP[nrp0,nmd,rd,2] 
+	00497: SRP1       
+	00498: SRP2       
+	00499: IP         
+	00500: MDAP[rd]   
+	00501: ALIGNRP    
+	00502: RTG        
+	00503: SVTCA[y-axis] 
+	00504: MDAP[rd]   
+	00505: MIRP[srp0,md,rd,1] 
+	00506: SHP[rp2,zp1] 
+	00507: MDAP[rd]   
+	00508: DELTAP1    
+	00509: MDAP[rd]   
+	00510: DELTAP1    
+	00511: DELTAP2    
+	00512: DELTAP3    
+	00513: CALL       
+	00514: MIRP[nrp0,md,rd,1] 
+	00515: SHP[rp1,zp0] 
+	00516: MDAP[rd]   
+	00517: MDAP[rd]   
+	00518: MDAP[rd]   
+	00519: MDAP[rd]   
+	00520: DELTAP1    
+	00521: MDAP[rd]   
+	00522: SHP[rp1,zp0] 
+	00523: SRP1       
+	00524: SHP[rp1,zp0] 
+	00525: MDAP[rd]   
+	00526: CALL       
+	00527: MIRP[nrp0,md,rd,1] 
+	00528: MDAP[rd]   
+	00529: DELTAP2    
+	00530: DELTAP3    
+	00531: SHP[rp1,zp0] 
+	00532: MDAP[rd]   
+	00533: SRP0       
+	00534: MIRP[srp0,md,rd,1] 
+	00535: CALL       
+	00536: CALL       
+	00537: SHP[rp2,zp1] 
+	00538: MDAP[rd]   
+	00539: RTDG       
+	00540: SRP1       
+	00541: IP         
+	00542: MDAP[rd]   
+	00543: SRP1       
+	00544: SRP2       
+	00545: IP         
+	00546: MDAP[rd]   
+	00547: RTG        
+	00548: SRP1       
+	00549: SRP2       
+	00550: IP         
+	00551: IP         
+	00552: IUP[y]     
+	00553: IUP[x]     
+	00554: SVTCA[y-axis] 
+	00555: DELTAP2    
+	00556: DELTAP1    
+	00557: DELTAP1    
+	00558: SVTCA[x-axis] 
+	00559: DELTAP3    
+	00560: DELTAP2    
+	00561: DELTAP1    
+	00562: DELTAP1    
+	00563: DELTAP1    
+	00564: CALL       
+	00565: SVTCA[y-axis] 
+	00566: DELTAP3    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short Off
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short X-Short On
+	 24:                      Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual               Y-Short X-Short On
+	 34:                              X-Short On
+	 35:  YDual               Y-Short X-Short Off
+	 36:                                      On
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual               Y-Short X-Short On
+	 48:  YDual XDual         Y-Short X-Short On
+	 49:        XDual         Y-Short X-Short Off
+	 50:        XDual         Y-Short         On
+	 51:        XDual         Y-Short         Off
+	 52:                      Y-Short X-Short On
+	 53:                      Y-Short X-Short Off
+	 54:        XDual         Y-Short         On
+	 55:        XDual         Y-Short         Off
+	 56:  YDual XDual                 X-Short On
+	 57:  YDual XDual                 X-Short On
+	 58:  YDual XDual                 X-Short Off
+	 59:  YDual XDual         Y-Short X-Short Off
+	 60:  YDual XDual         Y-Short         On
+	 61:  YDual XDual         Y-Short         Off
+	 62:  YDual               Y-Short X-Short On
+	 63:  YDual XDual         Y-Short X-Short On
+	 64:        XDual         Y-Short X-Short Off
+	 65:        XDual         Y-Short         On
+	 66:        XDual         Y-Short         Off
+	 67:                      Y-Short X-Short Off
+	 68:        XDual                 X-Short On
+	 69:  YDual XDual         Y-Short X-Short On
+	 70:        XDual         Y-Short X-Short Off
+	 71:        XDual                         On
+	 72:        XDual         Y-Short         Off
+	 73:                              X-Short Off
+	 74:  YDual                       X-Short On
+	 75:  YDual                       X-Short Off
+	 76:  YDual               Y-Short X-Short On
+	 77:  YDual               Y-Short X-Short On
+	 78:  YDual               Y-Short X-Short Off
+	 79:  YDual XDual         Y-Short         On
+	 80:  YDual XDual         Y-Short         Off
+	 81:  YDual XDual                 X-Short On
+	 82:  YDual XDual                 X-Short Off
+	 83:        XDual         Y-Short X-Short On
+	 84:        XDual         Y-Short X-Short Off
+	 85:  YDual XDual                 X-Short On
+	 86:  YDual XDual                 X-Short Off
+	 87:  YDual XDual         Y-Short X-Short Off
+	 88:  YDual XDual         Y-Short X-Short Off
+	 89:  YDual XDual         Y-Short         On
+	 90:  YDual XDual         Y-Short         Off
+	 91:                                      On
+	 92:        XDual         Y-Short X-Short On
+	 93:                      Y-Short X-Short On
+	 94:  YDual               Y-Short X-Short On
+	 95:                      Y-Short X-Short On
+	 96:  YDual               Y-Short X-Short On
+	 97:  YDual XDual         Y-Short X-Short On
+	 98:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   451,   889)  ->  Abs (   451,   889)
+	  1: Rel (    15,    47)  ->  Abs (   466,   936)
+	  2: Rel (    34,    63)  ->  Abs (   500,   999)
+	  3: Rel (    39,   -53)  ->  Abs (   539,   946)
+	  4: Rel (    38,   -31)  ->  Abs (   577,   915)
+	  5: Rel (   -41,   -59)  ->  Abs (   536,   856)
+	  6: Rel (     0,   -57)  ->  Abs (   536,   799)
+	  7: Rel (     0,   -63)  ->  Abs (   536,   736)
+	  8: Rel (    22,  -239)  ->  Abs (   558,   497)
+	  9: Rel (    21,  -240)  ->  Abs (   579,   257)
+	 10: Rel (     0,   -43)  ->  Abs (   579,   214)
+	 11: Rel (     0,  -126)  ->  Abs (   579,    88)
+	 12: Rel (   -64,  -104)  ->  Abs (   515,   -16)
+	 13: Rel (  -182,   -74)  ->  Abs (   333,   -90)
+	 14: Rel (  -132,     0)  ->  Abs (   201,   -90)
+	 15: Rel (  -201,     0)  ->  Abs (     0,   -90)
+	 16: Rel (     0,   184)  ->  Abs (     0,    94)
+	 17: Rel (     0,    69)  ->  Abs (     0,   163)
+	 18: Rel (    57,   175)  ->  Abs (    57,   338)
+	 19: Rel (    14,     0)  ->  Abs (    71,   338)
+	 20: Rel (    11,     0)  ->  Abs (    82,   338)
+	 21: Rel (     0,   -11)  ->  Abs (    82,   327)
+	 22: Rel (     0,    -8)  ->  Abs (    82,   319)
+	 23: Rel (   -20,   -55)  ->  Abs (    62,   264)
+	 24: Rel (   -20,   -54)  ->  Abs (    42,   210)
+	 25: Rel (     0,   -36)  ->  Abs (    42,   174)
+	 26: Rel (     0,  -156)  ->  Abs (    42,    18)
+	 27: Rel (   144,     0)  ->  Abs (   186,    18)
+	 28: Rel (   121,     0)  ->  Abs (   307,    18)
+	 29: Rel (   177,    46)  ->  Abs (   484,    64)
+	 30: Rel (    46,    48)  ->  Abs (   530,   112)
+	 31: Rel (     0,    51)  ->  Abs (   530,   163)
+	 32: Rel (     0,    64)  ->  Abs (   530,   227)
+	 33: Rel (   -13,   136)  ->  Abs (   517,   363)
+	 34: Rel (   -36,   410)  ->  Abs (   481,   773)
+	 35: Rel (    -9,   100)  ->  Abs (   472,   873)
+	 36: Rel (   409,  -799)  ->  Abs (   881,    74)
+	 37: Rel (   -86,     0)  ->  Abs (   795,    74)
+	 38: Rel (   -72,     0)  ->  Abs (   723,    74)
+	 39: Rel (   -56,    30)  ->  Abs (   667,   104)
+	 40: Rel (   -30,   103)  ->  Abs (   637,   207)
+	 41: Rel (     0,    81)  ->  Abs (   637,   288)
+	 42: Rel (     0,    51)  ->  Abs (   637,   339)
+	 43: Rel (     5,   103)  ->  Abs (   642,   442)
+	 44: Rel (     4,   102)  ->  Abs (   646,   544)
+	 45: Rel (     0,    51)  ->  Abs (   646,   595)
+	 46: Rel (     0,   215)  ->  Abs (   646,   810)
+	 47: Rel (   -33,   100)  ->  Abs (   613,   910)
+	 48: Rel (    56,    85)  ->  Abs (   669,   995)
+	 49: Rel (    29,   -96)  ->  Abs (   698,   899)
+	 50: Rel (     0,  -208)  ->  Abs (   698,   691)
+	 51: Rel (     0,   -62)  ->  Abs (   698,   629)
+	 52: Rel (    -4,  -124)  ->  Abs (   694,   505)
+	 53: Rel (    -5,  -124)  ->  Abs (   689,   381)
+	 54: Rel (     0,   -62)  ->  Abs (   689,   319)
+	 55: Rel (     0,  -147)  ->  Abs (   689,   172)
+	 56: Rel (    77,     0)  ->  Abs (   766,   172)
+	 57: Rel (    62,     0)  ->  Abs (   828,   172)
+	 58: Rel (    47,     0)  ->  Abs (   875,   172)
+	 59: Rel (   104,    52)  ->  Abs (   979,   224)
+	 60: Rel (     0,    27)  ->  Abs (   979,   251)
+	 61: Rel (     0,   142)  ->  Abs (   979,   393)
+	 62: Rel (   -71,    91)  ->  Abs (   908,   484)
+	 63: Rel (    46,   136)  ->  Abs (   954,   620)
+	 64: Rel (    79,  -139)  ->  Abs (  1033,   481)
+	 65: Rel (     0,  -154)  ->  Abs (  1033,   327)
+	 66: Rel (     0,   -82)  ->  Abs (  1033,   245)
+	 67: Rel (   -89,  -171)  ->  Abs (   944,    74)
+	 68: Rel (   127,   403)  ->  Abs (  1071,   477)
+	 69: Rel (    43,   136)  ->  Abs (  1114,   613)
+	 70: Rel (   115,  -126)  ->  Abs (  1229,   487)
+	 71: Rel (     0,  -262)  ->  Abs (  1229,   225)
+	 72: Rel (     0,  -198)  ->  Abs (  1229,    27)
+	 73: Rel (  -181,  -318)  ->  Abs (  1048,  -291)
+	 74: Rel (  -108,     0)  ->  Abs (   940,  -291)
+	 75: Rel (   -73,     0)  ->  Abs (   867,  -291)
+	 76: Rel (   -43,    15)  ->  Abs (   824,  -276)
+	 77: Rel (  -126,    44)  ->  Abs (   698,  -232)
+	 78: Rel (   -32,    11)  ->  Abs (   666,  -221)
+	 79: Rel (     0,    21)  ->  Abs (   666,  -200)
+	 80: Rel (     0,    22)  ->  Abs (   666,  -178)
+	 81: Rel (    19,     0)  ->  Abs (   685,  -178)
+	 82: Rel (    10,     0)  ->  Abs (   695,  -178)
+	 83: Rel (    53,   -13)  ->  Abs (   748,  -191)
+	 84: Rel (    54,   -12)  ->  Abs (   802,  -203)
+	 85: Rel (    36,     0)  ->  Abs (   838,  -203)
+	 86: Rel (    95,     0)  ->  Abs (   933,  -203)
+	 87: Rel (   163,   126)  ->  Abs (  1096,   -77)
+	 88: Rel (    94,   210)  ->  Abs (  1190,   133)
+	 89: Rel (     0,    29)  ->  Abs (  1190,   162)
+	 90: Rel (     0,   171)  ->  Abs (  1190,   333)
+	 91: Rel (  -275,  -314)  ->  Abs (   915,    19)
+	 92: Rel (    76,   -68)  ->  Abs (   991,   -49)
+	 93: Rel (   -76,   -73)  ->  Abs (   915,  -122)
+	 94: Rel (   -66,    65)  ->  Abs (   849,   -57)
+	 95: Rel (   -76,   -67)  ->  Abs (   773,  -124)
+	 96: Rel (   -72,    71)  ->  Abs (   701,   -53)
+	 97: Rel (    74,    72)  ->  Abs (   775,    19)
+	 98: Rel (    66,   -67)  ->  Abs (   841,   -48)
+
+	Glyph 785: off = 0x00028F4E, len = 96
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-88
+	  xMax:			1228
+	  yMax:			946
+
+	     0: Flags:		0x0236
+		Glyf Index:	868
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1102
+		X WOffset:	316
+		Y WOffset:	473
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (29):     3     2   127    54     1    15    54    31    54     2 
+	                            54    64    13    15    52    54    64    17    22    52 
+	                            54    64    38    41    52    54     3     2    57 
+	00031: PUSHW[1]            -64 
+	00034: NPUSHB      (17):    17    20    52    96    57     1   208    57   224    57 
+	                             2     0    57    57    64    64    64 
+	00053: SVTCA[x-axis] 
+	00054: CALL       
+	00055: DELTAP2    
+	00056: DELTAP1    
+	00057: CALL       
+	00058: SHC[rp1,zp0] 
+	00059: SHC[rp1,zp0] 
+	00060: SVTCA[y-axis] 
+	00061: SRP1       
+	00062: CALL       
+	00063: CALL       
+	00064: CALL       
+	00065: DELTAP1    
+	00066: DELTAP2    
+	00067: SHC[rp1,zp0] 
+	00068: SHC[rp1,zp0] 
+
+	Glyph 786: off = 0x00028FAE, len = 156
+	  numberOfContours:	-1  (Composite)
+	  xMin:			458
+	  yMin:			1286
+	  xMax:			749
+	  yMax:			1840
+
+	     0: Flags:		0x0236
+		Glyf Index:	759
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	753
+		X WOffset:	-15
+		Y WOffset:	261
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (75):     2     1    44    64    72    76    52    44    64    56 
+	                            65    52    44    64    41    47    52    44    64    33 
+	                            38    52    44    64    33    44    52    95    44   143 
+	                            44   159    44   223    44     4    15    44    31    44 
+	                            47    44    63    44     4    15    44   143    44   159 
+	                            44     3    44    64    25    30    52    47    44    63 
+	                            44   143    44   255    44     4    44    64     9    20 
+	                            52    44     2     1    46 
+	00077: PUSHW[1]            -64 
+	00080: NPUSHB      (24):    58    58    52    46    64    75    75    52   144    46 
+	                           160    46     2   192    46     1     0    46    32    46 
+	                           176    46     3    46 
+	00106: SVTCA[x-axis] 
+	00107: SRP1       
+	00108: DELTAP1    
+	00109: DELTAP2    
+	00110: DELTAP3    
+	00111: CALL       
+	00112: CALL       
+	00113: SHC[rp1,zp0] 
+	00114: SHC[rp1,zp0] 
+	00115: SVTCA[y-axis] 
+	00116: SRP1       
+	00117: CALL       
+	00118: DELTAP1    
+	00119: CALL       
+	00120: DELTAP2    
+	00121: DELTAP2    
+	00122: DELTAP3    
+	00123: CALL       
+	00124: CALL       
+	00125: CALL       
+	00126: CALL       
+	00127: CALL       
+	00128: SHC[rp1,zp0] 
+	00129: SHC[rp1,zp0] 
+
+	Glyph 787: off = 0x0002904A, len = 32
+	  numberOfContours:	-1  (Composite)
+	  xMin:			515
+	  yMin:			-561
+	  xMax:			789
+	  yMax:			-188
+
+	     0: Flags:		0x0317
+		Glyf Index:	775
+		X WOffset:	50
+		Y WOffset:	-1791
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              0     1     0 
+	00004: PUSHW[2]            953    41 
+	00009: SVTCA[y-axis] 
+	00010: CALL       
+
+	Glyph 788: off = 0x0002906A, len = 402
+	  numberOfContours:	2
+	  xMin:			513
+	  yMin:			-709
+	  xMax:			813
+	  yMax:			-188
+
+	EndPoints
+	---------
+	  0:  22
+	  1:  33
+
+	  Length of Instructions:	298
+	00000: NPUSHB      (23):    22    44    19    27    52     1    32    11    16    52 
+	                            18    17    21    18    27    22     3     4    64    17 
+	                            30    52     3 
+	00025: PUSHW[1]            -64 
+	00028: PUSHB[4]             11    16    52     1 
+	00033: PUSHW[1]            -64 
+	00036: PUSHB[4]             12    16    52    33 
+	00041: PUSHW[4]            936    28    23   936 
+	00050: PUSHB[4]             31    27     1    27 
+	00055: PUSHW[3]            935    28   -64 
+	00062: PUSHB[4]             62    70    52    28 
+	00067: PUSHW[1]            -64 
+	00070: PUSHB[4]              9    16    52    28 
+	00075: PUSHW[1]            -64 
+	00078: NPUSHB      (15):    25    54    52    28    28     0     3    19    21    22 
+	                             1     0    12    12     8 
+	00095: PUSHW[1]            897 
+	00098: NPUSHB      (17):    14    64    47    49    52    14    64    41    43    52 
+	                            95    14     1    14    14     0    21 
+	00117: PUSHW[1]            898 
+	00120: PUSHB[6]             95    22   144    22     2    22 
+	00127: PUSHW[1]            -64 
+	00130: PUSHB[4]             28    30    52    22 
+	00135: PUSHW[1]            -64 
+	00138: NPUSHB      (23):    10    16    52    22    22    48     0     1    32     0 
+	                             1     0    31    64    19    26    52    31    64     9 
+	                            11    52    31 
+	00163: PUSHW[1]            934 
+	00166: NPUSHB      (16):    25    25     0     3    22    12    12     0    10    16 
+	                            10     2    10    10    22    16 
+	00184: PUSHW[1]            875 
+	00187: NPUSHB      (27):    47     5     1     5     5     1    21   175    22     1 
+	                            22    64    11    11    52    22    64     9    11    52 
+	                            22    22    32     0     1     0     4 
+	00216: PUSHW[1]            340 
+	00219: SCANCTRL   
+	00220: SCANTYPE   
+	00221: MDAP[rd]   
+	00222: DELTAP1    
+	00223: SHP[rp1,zp0] 
+	00224: MDAP[rd]   
+	00225: CALL       
+	00226: CALL       
+	00227: DELTAP1    
+	00228: ALIGNRP    
+	00229: SHP[rp2,zp1] 
+	00230: SHP[rp2,zp1] 
+	00231: MDAP[rd]   
+	00232: DELTAP1    
+	00233: MIRP[srp0,md,rd,1] 
+	00234: SRP1       
+	00235: IP         
+	00236: MDAP[rd]   
+	00237: DELTAP1    
+	00238: SHP[rp1,zp0] 
+	00239: RTHG       
+	00240: MDAP[rd]   
+	00241: SRP1       
+	00242: IP         
+	00243: SRP1       
+	00244: SHP[rp1,zp0] 
+	00245: RTG        
+	00246: MDAP[rd]   
+	00247: MIRP[nrp0,md,rd,1] 
+	00248: CALL       
+	00249: CALL       
+	00250: SVTCA[y-axis] 
+	00251: MDAP[rd]   
+	00252: DELTAP1    
+	00253: DELTAP1    
+	00254: SHP[rp1,zp0] 
+	00255: MDAP[rd]   
+	00256: CALL       
+	00257: CALL       
+	00258: DELTAP3    
+	00259: MIRP[nrp0,md,rd,1] 
+	00260: SRP1       
+	00261: SHP[rp1,zp0] 
+	00262: MDAP[rd]   
+	00263: DELTAP3    
+	00264: CALL       
+	00265: CALL       
+	00266: MIRP[nrp0,md,rd,1] 
+	00267: SHP[rp1,zp0] 
+	00268: RDTG       
+	00269: MDAP[rd]   
+	00270: RTG        
+	00271: SRP1       
+	00272: SHP[rp1,zp0] 
+	00273: SRP1       
+	00274: SRP2       
+	00275: IP         
+	00276: IP         
+	00277: SRP1       
+	00278: SHP[rp1,zp0] 
+	00279: MDAP[rd]   
+	00280: CALL       
+	00281: CALL       
+	00282: CALL       
+	00283: MIRP[srp0,nmd,rd,0] 
+	00284: DELTAP1    
+	00285: MIRP[nrp0,md,rd,1] 
+	00286: SRP0       
+	00287: MIRP[nrp0,md,rd,1] 
+	00288: IUP[y]     
+	00289: IUP[x]     
+	00290: SVTCA[x-axis] 
+	00291: CALL       
+	00292: CALL       
+	00293: CALL       
+	00294: SVTCA[y-axis] 
+	00295: DELTAP3    
+	00296: CALL       
+	00297: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short         On
+	 23:                      Y-Short X-Short On
+	 24:                      Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   527,  -561)  ->  Abs (   527,  -561)
+	  1: Rel (     8,    43)  ->  Abs (   535,  -518)
+	  2: Rel (    47,    33)  ->  Abs (   582,  -485)
+	  3: Rel (    29,    37)  ->  Abs (   611,  -448)
+	  4: Rel (   -98,     6)  ->  Abs (   513,  -442)
+	  5: Rel (     0,    84)  ->  Abs (   513,  -358)
+	  6: Rel (     0,    58)  ->  Abs (   513,  -300)
+	  7: Rel (    78,   112)  ->  Abs (   591,  -188)
+	  8: Rel (    51,     0)  ->  Abs (   642,  -188)
+	  9: Rel (    80,     0)  ->  Abs (   722,  -188)
+	 10: Rel (     0,   -73)  ->  Abs (   722,  -261)
+	 11: Rel (     0,   -24)  ->  Abs (   722,  -285)
+	 12: Rel (   -12,   -24)  ->  Abs (   710,  -309)
+	 13: Rel (   -73,    53)  ->  Abs (   637,  -256)
+	 14: Rel (   -32,     0)  ->  Abs (   605,  -256)
+	 15: Rel (   -51,     0)  ->  Abs (   554,  -256)
+	 16: Rel (     0,   -43)  ->  Abs (   554,  -299)
+	 17: Rel (     1,   -36)  ->  Abs (   555,  -335)
+	 18: Rel (   104,   -64)  ->  Abs (   659,  -399)
+	 19: Rel (    40,     0)  ->  Abs (   699,  -399)
+	 20: Rel (    37,     0)  ->  Abs (   736,  -399)
+	 21: Rel (    51,    22)  ->  Abs (   787,  -377)
+	 22: Rel (     0,   -73)  ->  Abs (   787,  -450)
+	 23: Rel (  -238,  -254)  ->  Abs (   549,  -704)
+	 24: Rel (   -11,    -5)  ->  Abs (   538,  -709)
+	 25: Rel (     0,    29)  ->  Abs (   538,  -680)
+	 26: Rel (     0,    25)  ->  Abs (   538,  -655)
+	 27: Rel (    13,     6)  ->  Abs (   551,  -649)
+	 28: Rel (   248,   105)  ->  Abs (   799,  -544)
+	 29: Rel (     9,     0)  ->  Abs (   808,  -544)
+	 30: Rel (     5,    -8)  ->  Abs (   813,  -552)
+	 31: Rel (     0,   -14)  ->  Abs (   813,  -566)
+	 32: Rel (     0,   -29)  ->  Abs (   813,  -595)
+	 33: Rel (   -14,    -5)  ->  Abs (   799,  -600)
+
+	Glyph 789: off = 0x000291FC, len = 498
+	  numberOfContours:	3
+	  xMin:			515
+	  yMin:			-868
+	  xMax:			807
+	  yMax:			-188
+
+	EndPoints
+	---------
+	  0:  22
+	  1:  33
+	  2:  44
+
+	  Length of Instructions:	365
+	00000: NPUSHB      (30):    22     3    28     4    22    18    26    22     4    22 
+	                            44    19    27    52     1    32    11    16    52     4 
+	                            64    17    30    52    21     3    19    18     2     3 
+	00032: PUSHW[1]            -64 
+	00035: PUSHB[4]             11    16    52     1 
+	00040: PUSHW[1]            -64 
+	00043: PUSHB[4]             12    16    52    34 
+	00048: PUSHW[4]            936    38    44   936 
+	00057: PUSHB[4]             31    38     1    38 
+	00062: PUSHW[3]            935    39   -64 
+	00069: PUSHB[4]             25    29    52    39 
+	00074: PUSHW[1]            -64 
+	00077: PUSHB[7]             42    48    52    39    39    23    33 
+	00085: PUSHW[4]            936    28    23   936 
+	00094: PUSHB[4]             31    27     1    27 
+	00099: PUSHW[3]            935    28   -64 
+	00106: PUSHB[4]             25    54    52    28 
+	00111: PUSHW[1]            -64 
+	00114: NPUSHB      (15):     9    16    52    28    28     0     3    19    21    22 
+	                             1     0    12    12     8 
+	00131: PUSHW[1]            897 
+	00134: NPUSHB      (17):    14    64    47    49    52    14    64    41    43    52 
+	                            95    14     1    14    14     0    21 
+	00153: PUSHW[1]            898 
+	00156: PUSHB[6]             95    22   144    22     2    22 
+	00163: PUSHW[1]            -64 
+	00166: PUSHB[4]             28    30    52    22 
+	00171: PUSHW[1]            -64 
+	00174: NPUSHB      (22):    10    16    52    22    22    32     0    48     0     2 
+	                             0    42    64    19    26    52    42    64     9    11 
+	                            52    42 
+	00198: PUSHW[1]            934 
+	00201: NPUSHB      (13):    36    36    31    64    19    26    52    31    64     9 
+	                            11    52    31 
+	00216: PUSHW[1]            934 
+	00219: NPUSHB      (16):    25    25     0     3    22    12    12     0    10    16 
+	                            10     2    10    10    22    16 
+	00237: PUSHW[1]            875 
+	00240: NPUSHB      (27):    47     5     1     5     5     1    21   175    22     1 
+	                            22    64    11    11    52    22    64     9    11    52 
+	                            22    22    32     0     1     0     4 
+	00269: PUSHW[1]            340 
+	00272: SCANCTRL   
+	00273: SCANTYPE   
+	00274: MDAP[rd]   
+	00275: DELTAP1    
+	00276: SHP[rp1,zp0] 
+	00277: MDAP[rd]   
+	00278: CALL       
+	00279: CALL       
+	00280: DELTAP1    
+	00281: ALIGNRP    
+	00282: SHP[rp2,zp1] 
+	00283: SHP[rp2,zp1] 
+	00284: MDAP[rd]   
+	00285: DELTAP1    
+	00286: MIRP[srp0,md,rd,1] 
+	00287: SRP1       
+	00288: IP         
+	00289: MDAP[rd]   
+	00290: DELTAP1    
+	00291: SHP[rp1,zp0] 
+	00292: RTHG       
+	00293: MDAP[rd]   
+	00294: SRP1       
+	00295: IP         
+	00296: SRP1       
+	00297: SHP[rp1,zp0] 
+	00298: RTG        
+	00299: MDAP[rd]   
+	00300: MIRP[nrp0,md,rd,1] 
+	00301: CALL       
+	00302: CALL       
+	00303: SHP[rp1,zp0] 
+	00304: MDAP[rd]   
+	00305: MIRP[nrp0,md,rd,1] 
+	00306: CALL       
+	00307: CALL       
+	00308: SVTCA[y-axis] 
+	00309: MDAP[rd]   
+	00310: DELTAP1    
+	00311: SHP[rp1,zp0] 
+	00312: MDAP[rd]   
+	00313: CALL       
+	00314: CALL       
+	00315: DELTAP3    
+	00316: MIRP[nrp0,md,rd,1] 
+	00317: SRP1       
+	00318: SHP[rp1,zp0] 
+	00319: MDAP[rd]   
+	00320: DELTAP3    
+	00321: CALL       
+	00322: CALL       
+	00323: MIRP[nrp0,md,rd,1] 
+	00324: SHP[rp1,zp0] 
+	00325: RDTG       
+	00326: MDAP[rd]   
+	00327: RTG        
+	00328: SRP1       
+	00329: SHP[rp1,zp0] 
+	00330: SRP1       
+	00331: SRP2       
+	00332: IP         
+	00333: IP         
+	00334: SRP1       
+	00335: SHP[rp1,zp0] 
+	00336: MDAP[rd]   
+	00337: CALL       
+	00338: CALL       
+	00339: MIRP[srp0,nmd,rd,0] 
+	00340: DELTAP1    
+	00341: MIRP[nrp0,md,rd,1] 
+	00342: SRP0       
+	00343: MIRP[nrp0,md,rd,1] 
+	00344: SRP1       
+	00345: SHP[rp1,zp0] 
+	00346: MDAP[rd]   
+	00347: CALL       
+	00348: CALL       
+	00349: MIRP[nrp0,nmd,rd,0] 
+	00350: DELTAP1    
+	00351: MIRP[nrp0,md,rd,1] 
+	00352: SRP0       
+	00353: MIRP[nrp0,md,rd,1] 
+	00354: IUP[y]     
+	00355: IUP[x]     
+	00356: SVTCA[x-axis] 
+	00357: CALL       
+	00358: CALL       
+	00359: DELTAP3    
+	00360: CALL       
+	00361: SVTCA[y-axis] 
+	00362: CALL       
+	00363: CALL       
+	00364: DELTAP3    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short         On
+	 23:                              X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short X-Short On
+	 34:                              X-Short On
+	 35:  YDual                       X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   529,  -561)  ->  Abs (   529,  -561)
+	  1: Rel (     8,    43)  ->  Abs (   537,  -518)
+	  2: Rel (    47,    33)  ->  Abs (   584,  -485)
+	  3: Rel (    29,    37)  ->  Abs (   613,  -448)
+	  4: Rel (   -98,     6)  ->  Abs (   515,  -442)
+	  5: Rel (     0,    84)  ->  Abs (   515,  -358)
+	  6: Rel (     0,    57)  ->  Abs (   515,  -301)
+	  7: Rel (    78,   113)  ->  Abs (   593,  -188)
+	  8: Rel (    51,     0)  ->  Abs (   644,  -188)
+	  9: Rel (    80,     0)  ->  Abs (   724,  -188)
+	 10: Rel (     0,   -73)  ->  Abs (   724,  -261)
+	 11: Rel (     0,   -24)  ->  Abs (   724,  -285)
+	 12: Rel (   -12,   -24)  ->  Abs (   712,  -309)
+	 13: Rel (   -73,    53)  ->  Abs (   639,  -256)
+	 14: Rel (   -32,     0)  ->  Abs (   607,  -256)
+	 15: Rel (   -51,     0)  ->  Abs (   556,  -256)
+	 16: Rel (     0,   -43)  ->  Abs (   556,  -299)
+	 17: Rel (     0,   -36)  ->  Abs (   556,  -335)
+	 18: Rel (   105,   -64)  ->  Abs (   661,  -399)
+	 19: Rel (    40,     0)  ->  Abs (   701,  -399)
+	 20: Rel (    37,     0)  ->  Abs (   738,  -399)
+	 21: Rel (    51,    22)  ->  Abs (   789,  -377)
+	 22: Rel (     0,   -73)  ->  Abs (   789,  -450)
+	 23: Rel (  -246,  -258)  ->  Abs (   543,  -708)
+	 24: Rel (   -11,     0)  ->  Abs (   532,  -708)
+	 25: Rel (     0,    25)  ->  Abs (   532,  -683)
+	 26: Rel (     0,    25)  ->  Abs (   532,  -658)
+	 27: Rel (    13,     5)  ->  Abs (   545,  -653)
+	 28: Rel (   248,   105)  ->  Abs (   793,  -548)
+	 29: Rel (     9,     0)  ->  Abs (   802,  -548)
+	 30: Rel (     5,    -7)  ->  Abs (   807,  -555)
+	 31: Rel (     0,   -15)  ->  Abs (   807,  -570)
+	 32: Rel (     0,   -28)  ->  Abs (   807,  -598)
+	 33: Rel (   -14,    -6)  ->  Abs (   793,  -604)
+	 34: Rel (  -250,  -264)  ->  Abs (   543,  -868)
+	 35: Rel (   -11,     0)  ->  Abs (   532,  -868)
+	 36: Rel (     0,    25)  ->  Abs (   532,  -843)
+	 37: Rel (     0,    25)  ->  Abs (   532,  -818)
+	 38: Rel (    13,     5)  ->  Abs (   545,  -813)
+	 39: Rel (   248,   105)  ->  Abs (   793,  -708)
+	 40: Rel (     9,     0)  ->  Abs (   802,  -708)
+	 41: Rel (     5,    -6)  ->  Abs (   807,  -714)
+	 42: Rel (     0,   -14)  ->  Abs (   807,  -728)
+	 43: Rel (     0,   -27)  ->  Abs (   807,  -755)
+	 44: Rel (   -14,    -6)  ->  Abs (   793,  -761)
+
+	Glyph 790: off = 0x000293EE, len = 428
+	  numberOfContours:	2
+	  xMin:			418
+	  yMin:			1230
+	  xMax:			737
+	  yMax:			1806
+
+	EndPoints
+	---------
+	  0:  10
+	  1:  33
+
+	  Length of Instructions:	326
+	00000: NPUSHB      (23):    33    44    19    27    52    12    32    11    16    52 
+	                            19    28    22    29    25    33     3    15    64    17 
+	                            30    52    14 
+	00025: PUSHW[1]            -64 
+	00028: PUSHB[4]             11    16    52    12 
+	00033: PUSHW[1]            -64 
+	00036: PUSHB[4]             12    16    52     5 
+	00041: PUSHW[4]            936    10     4   936 
+	00050: PUSHB[4]             16    10     1    10 
+	00055: PUSHW[1]            935 
+	00058: NPUSHB      (14):   240     0     1     0    64     9    48    52     0     0 
+	                            19    14    30    32 
+	00074: PUSHW[1]            898 
+	00077: PUSHB[4]            144    33     1    33 
+	00082: PUSHW[1]            -64 
+	00085: PUSHB[4]             28    30    52    33 
+	00090: PUSHW[1]            -64 
+	00093: PUSHB[7]             10    16    52    33    33    12    11 
+	00101: PUSHW[1]            -64 
+	00104: PUSHB[4]             47    49    52    11 
+	00109: PUSHW[1]            -64 
+	00112: NPUSHB      (11):    41    43    52    80    11     1    11    11    23    23 
+	                            25 
+	00125: PUSHW[1]            897 
+	00128: PUSHB[7]            112    19     1    63    19     1    19 
+	00136: PUSHW[1]            -64 
+	00139: NPUSHB      (24):    85    53    19    64     9    14    52    19    64    17 
+	                            19    52    19     8    64    18    26    52     8    64 
+	                             9    11    52     8 
+	00165: PUSHW[3]            934     2   -64 
+	00172: PUSHB[4]             63    63    52     2 
+	00177: PUSHW[1]            -64 
+	00180: PUSHB[4]             58    58    52     2 
+	00185: PUSHW[1]            -64 
+	00188: NPUSHB      (19):    19    22    52     2     2    16    14    33    23    23 
+	                             0    21    16    21     2    21    21    33    27 
+	00209: PUSHW[1]            875 
+	00212: NPUSHB      (28):    47    16     1    16    16    12    11    32   175    33 
+	                             1    33    64    11    11    52    33    64     9    11 
+	                            52    33    33    32    11     1    11     4 
+	00242: PUSHW[1]            340 
+	00245: SCANCTRL   
+	00246: SCANTYPE   
+	00247: MDAP[rd]   
+	00248: DELTAP1    
+	00249: SHP[rp1,zp0] 
+	00250: MDAP[rd]   
+	00251: CALL       
+	00252: CALL       
+	00253: DELTAP1    
+	00254: ALIGNRP    
+	00255: SRP1       
+	00256: SHP[rp1,zp0] 
+	00257: SHP[rp1,zp0] 
+	00258: MDAP[rd]   
+	00259: DELTAP1    
+	00260: MIRP[srp0,md,rd,1] 
+	00261: SRP1       
+	00262: IP         
+	00263: MDAP[rd]   
+	00264: DELTAP1    
+	00265: SHP[rp1,zp0] 
+	00266: RTHG       
+	00267: MDAP[rd]   
+	00268: SRP1       
+	00269: IP         
+	00270: SRP1       
+	00271: SHP[rp1,zp0] 
+	00272: RTG        
+	00273: MDAP[rd]   
+	00274: CALL       
+	00275: CALL       
+	00276: CALL       
+	00277: MIRP[nrp0,md,rd,1] 
+	00278: CALL       
+	00279: CALL       
+	00280: SVTCA[y-axis] 
+	00281: MDAP[rd]   
+	00282: CALL       
+	00283: CALL       
+	00284: CALL       
+	00285: DELTAP1    
+	00286: DELTAP3    
+	00287: MIRP[srp0,md,rd,1] 
+	00288: SHP[rp2,zp1] 
+	00289: RUTG       
+	00290: MDAP[rd]   
+	00291: RTG        
+	00292: SHP[rp2,zp1] 
+	00293: MDAP[rd]   
+	00294: DELTAP3    
+	00295: CALL       
+	00296: CALL       
+	00297: SHP[rp1,zp0] 
+	00298: SHP[rp1,zp0] 
+	00299: MDAP[rd]   
+	00300: CALL       
+	00301: CALL       
+	00302: DELTAP3    
+	00303: MIRP[nrp0,md,rd,1] 
+	00304: IP         
+	00305: IP         
+	00306: SRP1       
+	00307: SHP[rp1,zp0] 
+	00308: MDAP[rd]   
+	00309: CALL       
+	00310: DELTAP1    
+	00311: MIRP[nrp0,nmd,rd,0] 
+	00312: DELTAP1    
+	00313: MIRP[nrp0,md,rd,1] 
+	00314: SRP0       
+	00315: MIRP[nrp0,md,rd,1] 
+	00316: IUP[y]     
+	00317: IUP[x]     
+	00318: SVTCA[x-axis] 
+	00319: CALL       
+	00320: CALL       
+	00321: CALL       
+	00322: SVTCA[y-axis] 
+	00323: DELTAP3    
+	00324: CALL       
+	00325: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short On
+	 11:                              X-Short On
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   429,  1646)  ->  Abs (   429,  1646)
+	  1: Rel (   -11,     0)  ->  Abs (   418,  1646)
+	  2: Rel (     0,    25)  ->  Abs (   418,  1671)
+	  3: Rel (     0,    25)  ->  Abs (   418,  1696)
+	  4: Rel (    13,     5)  ->  Abs (   431,  1701)
+	  5: Rel (   248,   105)  ->  Abs (   679,  1806)
+	  6: Rel (     9,     0)  ->  Abs (   688,  1806)
+	  7: Rel (     5,    -6)  ->  Abs (   693,  1800)
+	  8: Rel (     0,   -14)  ->  Abs (   693,  1786)
+	  9: Rel (     0,   -27)  ->  Abs (   693,  1759)
+	 10: Rel (   -14,    -6)  ->  Abs (   679,  1753)
+	 11: Rel (  -202,  -523)  ->  Abs (   477,  1230)
+	 12: Rel (     8,    43)  ->  Abs (   485,  1273)
+	 13: Rel (    46,    33)  ->  Abs (   531,  1306)
+	 14: Rel (    30,    37)  ->  Abs (   561,  1343)
+	 15: Rel (   -98,     6)  ->  Abs (   463,  1349)
+	 16: Rel (     0,    84)  ->  Abs (   463,  1433)
+	 17: Rel (     0,    58)  ->  Abs (   463,  1491)
+	 18: Rel (    78,   112)  ->  Abs (   541,  1603)
+	 19: Rel (    51,     0)  ->  Abs (   592,  1603)
+	 20: Rel (    80,     0)  ->  Abs (   672,  1603)
+	 21: Rel (     0,   -73)  ->  Abs (   672,  1530)
+	 22: Rel (     0,   -24)  ->  Abs (   672,  1506)
+	 23: Rel (   -12,   -24)  ->  Abs (   660,  1482)
+	 24: Rel (   -73,    53)  ->  Abs (   587,  1535)
+	 25: Rel (   -32,     0)  ->  Abs (   555,  1535)
+	 26: Rel (   -51,     0)  ->  Abs (   504,  1535)
+	 27: Rel (     0,   -43)  ->  Abs (   504,  1492)
+	 28: Rel (     0,   -35)  ->  Abs (   504,  1457)
+	 29: Rel (   105,   -65)  ->  Abs (   609,  1392)
+	 30: Rel (    40,     0)  ->  Abs (   649,  1392)
+	 31: Rel (    35,     0)  ->  Abs (   684,  1392)
+	 32: Rel (    53,    22)  ->  Abs (   737,  1414)
+	 33: Rel (     0,   -73)  ->  Abs (   737,  1341)
+
+	Glyph 791: off = 0x0002959A, len = 500
+	  numberOfContours:	3
+	  xMin:			420
+	  yMin:			1230
+	  xMax:			740
+	  yMax:			1966
+
+	EndPoints
+	---------
+	  0:  10
+	  1:  21
+	  2:  44
+
+	  Length of Instructions:	368
+	00000: NPUSHB      (23):    44    44    19    27    52    23    32    11    16    52 
+	                            19    39    22    40    26    44     3    26    64    17 
+	                            30    52    25 
+	00025: PUSHW[1]            -64 
+	00028: PUSHB[4]             11    16    52    23 
+	00033: PUSHW[1]            -64 
+	00036: PUSHB[4]             12    16    52     5 
+	00041: PUSHW[4]            936    10     4   936 
+	00050: PUSHB[4]             16    10     1    10 
+	00055: PUSHW[1]            935 
+	00058: NPUSHB      (13):     0    64    42    48    52     0    64    25    29    52 
+	                             0     0    16 
+	00073: PUSHW[4]            936    21    15   936 
+	00082: PUSHB[4]             16    21     1    21 
+	00087: PUSHW[1]            935 
+	00090: NPUSHB      (11):    11    64     9    48    52    11    11    30    25    41 
+	                            43 
+	00103: PUSHW[1]            898 
+	00106: PUSHB[4]            144    44     1    44 
+	00111: PUSHW[1]            -64 
+	00114: PUSHB[4]             28    30    52    44 
+	00119: PUSHW[1]            -64 
+	00122: PUSHB[7]             10    16    52    44    44    23    22 
+	00130: PUSHW[1]            -64 
+	00133: PUSHB[4]             47    49    52    22 
+	00138: PUSHW[1]            -64 
+	00141: NPUSHB      (11):    41    43    52    80    22     1    22    22    34    34 
+	                            36 
+	00154: PUSHW[1]            897 
+	00157: PUSHB[7]            112    30     1    63    30     1    30 
+	00165: PUSHW[1]            -64 
+	00168: NPUSHB      (24):    85    53    30    64     9    14    52    30    64    17 
+	                            19    52    30     8    64    19    26    52     8    64 
+	                             9    11    52     8 
+	00194: PUSHW[1]            934 
+	00197: NPUSHB      (13):     2     2    19    64    19    26    52    19    64     9 
+	                            11    52    19 
+	00212: PUSHW[3]            934    13   -64 
+	00219: NPUSHB      (19):    19    23    52    13    13    27    25    44    34    34 
+	                             0    32    16    32     2    32    32    44    38 
+	00240: PUSHW[1]            875 
+	00243: NPUSHB      (28):    47    27     1    27    27    23    22    43   175    44 
+	                             1    44    64    11    11    52    44    64     9    11 
+	                            52    44    44    32    22     1    22     4 
+	00273: PUSHW[1]            340 
+	00276: SCANCTRL   
+	00277: SCANTYPE   
+	00278: MDAP[rd]   
+	00279: DELTAP1    
+	00280: SHP[rp1,zp0] 
+	00281: MDAP[rd]   
+	00282: CALL       
+	00283: CALL       
+	00284: DELTAP1    
+	00285: ALIGNRP    
+	00286: SRP1       
+	00287: SHP[rp1,zp0] 
+	00288: SHP[rp1,zp0] 
+	00289: MDAP[rd]   
+	00290: DELTAP1    
+	00291: MIRP[srp0,md,rd,1] 
+	00292: SRP1       
+	00293: IP         
+	00294: MDAP[rd]   
+	00295: DELTAP1    
+	00296: SHP[rp1,zp0] 
+	00297: RTHG       
+	00298: MDAP[rd]   
+	00299: SRP1       
+	00300: IP         
+	00301: SRP1       
+	00302: SHP[rp1,zp0] 
+	00303: RTG        
+	00304: MDAP[rd]   
+	00305: CALL       
+	00306: MIRP[nrp0,md,rd,1] 
+	00307: CALL       
+	00308: CALL       
+	00309: SHP[rp1,zp0] 
+	00310: MDAP[rd]   
+	00311: MIRP[nrp0,md,rd,1] 
+	00312: CALL       
+	00313: CALL       
+	00314: SVTCA[y-axis] 
+	00315: MDAP[rd]   
+	00316: CALL       
+	00317: CALL       
+	00318: CALL       
+	00319: DELTAP1    
+	00320: DELTAP3    
+	00321: MIRP[srp0,md,rd,1] 
+	00322: SHP[rp2,zp1] 
+	00323: RUTG       
+	00324: MDAP[rd]   
+	00325: RTG        
+	00326: SHP[rp2,zp1] 
+	00327: MDAP[rd]   
+	00328: DELTAP3    
+	00329: CALL       
+	00330: CALL       
+	00331: SHP[rp1,zp0] 
+	00332: SHP[rp1,zp0] 
+	00333: MDAP[rd]   
+	00334: CALL       
+	00335: CALL       
+	00336: DELTAP3    
+	00337: MIRP[nrp0,md,rd,1] 
+	00338: IP         
+	00339: IP         
+	00340: SRP1       
+	00341: SHP[rp1,zp0] 
+	00342: MDAP[rd]   
+	00343: CALL       
+	00344: MIRP[nrp0,nmd,rd,0] 
+	00345: DELTAP1    
+	00346: MIRP[nrp0,md,rd,1] 
+	00347: SRP0       
+	00348: MIRP[srp0,md,rd,1] 
+	00349: SHP[rp2,zp1] 
+	00350: MDAP[rd]   
+	00351: CALL       
+	00352: CALL       
+	00353: MIRP[nrp0,nmd,rd,0] 
+	00354: DELTAP1    
+	00355: MIRP[nrp0,md,rd,1] 
+	00356: SRP0       
+	00357: MIRP[nrp0,md,rd,1] 
+	00358: IUP[y]     
+	00359: IUP[x]     
+	00360: SVTCA[x-axis] 
+	00361: CALL       
+	00362: CALL       
+	00363: CALL       
+	00364: SVTCA[y-axis] 
+	00365: DELTAP3    
+	00366: CALL       
+	00367: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short On
+	 11:                              X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short On
+	 22:                              X-Short On
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:                      Y-Short X-Short On
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:        XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   432,  1806)  ->  Abs (   432,  1806)
+	  1: Rel (   -12,     0)  ->  Abs (   420,  1806)
+	  2: Rel (     0,    25)  ->  Abs (   420,  1831)
+	  3: Rel (     0,    25)  ->  Abs (   420,  1856)
+	  4: Rel (    14,     5)  ->  Abs (   434,  1861)
+	  5: Rel (   248,   105)  ->  Abs (   682,  1966)
+	  6: Rel (     9,     0)  ->  Abs (   691,  1966)
+	  7: Rel (     5,    -6)  ->  Abs (   696,  1960)
+	  8: Rel (     0,   -16)  ->  Abs (   696,  1944)
+	  9: Rel (     0,   -28)  ->  Abs (   696,  1916)
+	 10: Rel (   -14,    -6)  ->  Abs (   682,  1910)
+	 11: Rel (  -250,  -264)  ->  Abs (   432,  1646)
+	 12: Rel (   -11,     0)  ->  Abs (   421,  1646)
+	 13: Rel (     0,    25)  ->  Abs (   421,  1671)
+	 14: Rel (     0,    25)  ->  Abs (   421,  1696)
+	 15: Rel (    13,     5)  ->  Abs (   434,  1701)
+	 16: Rel (   248,   105)  ->  Abs (   682,  1806)
+	 17: Rel (     9,     0)  ->  Abs (   691,  1806)
+	 18: Rel (     5,    -6)  ->  Abs (   696,  1800)
+	 19: Rel (     0,   -14)  ->  Abs (   696,  1786)
+	 20: Rel (     0,   -27)  ->  Abs (   696,  1759)
+	 21: Rel (   -14,    -6)  ->  Abs (   682,  1753)
+	 22: Rel (  -202,  -523)  ->  Abs (   480,  1230)
+	 23: Rel (     8,    43)  ->  Abs (   488,  1273)
+	 24: Rel (    46,    33)  ->  Abs (   534,  1306)
+	 25: Rel (    30,    37)  ->  Abs (   564,  1343)
+	 26: Rel (   -98,     6)  ->  Abs (   466,  1349)
+	 27: Rel (     0,    84)  ->  Abs (   466,  1433)
+	 28: Rel (     0,    58)  ->  Abs (   466,  1491)
+	 29: Rel (    78,   112)  ->  Abs (   544,  1603)
+	 30: Rel (    51,     0)  ->  Abs (   595,  1603)
+	 31: Rel (    80,     0)  ->  Abs (   675,  1603)
+	 32: Rel (     0,   -73)  ->  Abs (   675,  1530)
+	 33: Rel (     0,   -24)  ->  Abs (   675,  1506)
+	 34: Rel (   -12,   -24)  ->  Abs (   663,  1482)
+	 35: Rel (   -73,    53)  ->  Abs (   590,  1535)
+	 36: Rel (   -32,     0)  ->  Abs (   558,  1535)
+	 37: Rel (   -51,     0)  ->  Abs (   507,  1535)
+	 38: Rel (     0,   -43)  ->  Abs (   507,  1492)
+	 39: Rel (     0,   -35)  ->  Abs (   507,  1457)
+	 40: Rel (   105,   -65)  ->  Abs (   612,  1392)
+	 41: Rel (    40,     0)  ->  Abs (   652,  1392)
+	 42: Rel (    35,     0)  ->  Abs (   687,  1392)
+	 43: Rel (    53,    22)  ->  Abs (   740,  1414)
+	 44: Rel (     0,   -73)  ->  Abs (   740,  1341)
+
+	Glyph 792: off = 0x0002978E, len = 488
+	  numberOfContours:	3
+	  xMin:			427
+	  yMin:			1230
+	  xMax:			738
+	  yMax:			1953
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  20
+	  2:  43
+
+	  Length of Instructions:	362
+	00000: NPUSHB      (40):    21    38    22    39    25    43     3    22     1    35 
+	                             1    53     1     3     8    24    12    25    52    72 
+	                            18    89    18     2    43    44    19    27    52    22 
+	                            32    11    16    52    25    64    17    30    52    24 
+	00042: PUSHW[1]            -64 
+	00045: PUSHB[4]             11    16    52    22 
+	00050: PUSHW[1]            -64 
+	00053: NPUSHB      (12):    12    16    52     8    24    12    25    52    72    18 
+	                             1     9 
+	00067: PUSHW[1]            898 
+	00070: PUSHB[4]              0    19     1    19 
+	00075: PUSHW[1]            -64 
+	00078: PUSHB[6]              9    11    52    19    19    14 
+	00085: PUSHW[1]            901 
+	00088: NPUSHB      (14):    15     3     1     3    64    11    17    52     3     3 
+	                            29    24    40    42 
+	00104: PUSHW[1]            898 
+	00107: PUSHB[4]            144    43     1    43 
+	00112: PUSHW[1]            -64 
+	00115: PUSHB[4]             28    30    52    43 
+	00120: PUSHW[1]            -64 
+	00123: PUSHB[7]             10    16    52    43    43    22    21 
+	00131: PUSHW[1]            -64 
+	00134: PUSHB[4]             47    49    52    21 
+	00139: PUSHW[1]            -64 
+	00142: NPUSHB      (11):    41    43    52    80    21     1    21    21    33    33 
+	                            35 
+	00155: PUSHW[1]            897 
+	00158: PUSHB[7]            112    29     1    63    29     1    29 
+	00166: PUSHW[1]            -64 
+	00169: NPUSHB      (14):    85    53    29    64     9    14    52    29    64    17 
+	                            19    52    29     0 
+	00185: PUSHW[3]            878    16   -64 
+	00192: PUSHB[7]             20    25    52     0    16     1    16 
+	00200: PUSHW[1]            -64 
+	00203: PUSHB[6]              9    11    52    16    16    12 
+	00210: PUSHW[1]            932 
+	00213: NPUSHB      (19):    48     6     1     6     6    26    24    43    33    33 
+	                             0    31    16    31     2    31    31    43    37 
+	00234: PUSHW[1]            875 
+	00237: NPUSHB      (28):    47    26     1    26    26    22    21    42   175    43 
+	                             1    43    64    11    11    52    43    64     9    11 
+	                            52    43    43    32    21     1    21     4 
+	00267: PUSHW[1]            340 
+	00270: SCANCTRL   
+	00271: SCANTYPE   
+	00272: MDAP[rd]   
+	00273: DELTAP1    
+	00274: SHP[rp1,zp0] 
+	00275: MDAP[rd]   
+	00276: CALL       
+	00277: CALL       
+	00278: DELTAP1    
+	00279: ALIGNRP    
+	00280: SRP1       
+	00281: SHP[rp1,zp0] 
+	00282: SHP[rp1,zp0] 
+	00283: MDAP[rd]   
+	00284: DELTAP1    
+	00285: MIRP[srp0,md,rd,1] 
+	00286: SRP1       
+	00287: IP         
+	00288: MDAP[rd]   
+	00289: DELTAP1    
+	00290: SHP[rp1,zp0] 
+	00291: RTHG       
+	00292: MDAP[rd]   
+	00293: SRP1       
+	00294: IP         
+	00295: SRP1       
+	00296: SHP[rp1,zp0] 
+	00297: RTG        
+	00298: MDAP[rd]   
+	00299: DELTAP1    
+	00300: MIRP[srp0,md,rd,1] 
+	00301: SHP[rp2,zp1] 
+	00302: MDAP[rd]   
+	00303: CALL       
+	00304: DELTAP1    
+	00305: CALL       
+	00306: MIRP[nrp0,md,rd,1] 
+	00307: SVTCA[y-axis] 
+	00308: MDAP[rd]   
+	00309: CALL       
+	00310: CALL       
+	00311: CALL       
+	00312: DELTAP1    
+	00313: DELTAP3    
+	00314: MIRP[srp0,md,rd,1] 
+	00315: SHP[rp2,zp1] 
+	00316: RUTG       
+	00317: MDAP[rd]   
+	00318: RTG        
+	00319: SHP[rp2,zp1] 
+	00320: MDAP[rd]   
+	00321: DELTAP3    
+	00322: CALL       
+	00323: CALL       
+	00324: SHP[rp1,zp0] 
+	00325: SHP[rp1,zp0] 
+	00326: MDAP[rd]   
+	00327: CALL       
+	00328: CALL       
+	00329: DELTAP3    
+	00330: MIRP[nrp0,md,rd,1] 
+	00331: IP         
+	00332: IP         
+	00333: SRP1       
+	00334: SHP[rp1,zp0] 
+	00335: MDAP[rd]   
+	00336: CALL       
+	00337: DELTAP1    
+	00338: MIRP[srp0,md,rd,1] 
+	00339: SHP[rp2,zp1] 
+	00340: MDAP[rd]   
+	00341: CALL       
+	00342: DELTAP1    
+	00343: MIRP[nrp0,md,rd,1] 
+	00344: IUP[y]     
+	00345: IUP[x]     
+	00346: SVTCA[x-axis] 
+	00347: DELTAP2    
+	00348: CALL       
+	00349: SVTCA[x-axis] 
+	00350: CALL       
+	00351: CALL       
+	00352: CALL       
+	00353: SVTCA[y-axis] 
+	00354: CALL       
+	00355: CALL       
+	00356: SVTCA[x-axis] 
+	00357: DELTAP2    
+	00358: CALL       
+	00359: SVTCA[y-axis] 
+	00360: DELTAP3    
+	00361: DELTAP3    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:        XDual         Y-Short         Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:        XDual                 X-Short On
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short X-Short On
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   677,  1812)  ->  Abs (   677,  1812)
+	  1: Rel (     0,   -66)  ->  Abs (   677,  1746)
+	  2: Rel (  -104,   -84)  ->  Abs (   573,  1662)
+	  3: Rel (   -52,     0)  ->  Abs (   521,  1662)
+	  4: Rel (   -46,     0)  ->  Abs (   475,  1662)
+	  5: Rel (   -48,    73)  ->  Abs (   427,  1735)
+	  6: Rel (     0,    46)  ->  Abs (   427,  1781)
+	  7: Rel (     0,    68)  ->  Abs (   427,  1849)
+	  8: Rel (    71,   104)  ->  Abs (   498,  1953)
+	  9: Rel (    62,     0)  ->  Abs (   560,  1953)
+	 10: Rel (    56,     0)  ->  Abs (   616,  1953)
+	 11: Rel (    61,   -84)  ->  Abs (   677,  1869)
+	 12: Rel (  -213,   -57)  ->  Abs (   464,  1812)
+	 13: Rel (     0,   -50)  ->  Abs (   464,  1762)
+	 14: Rel (    86,     0)  ->  Abs (   550,  1762)
+	 15: Rel (    73,     0)  ->  Abs (   623,  1762)
+	 16: Rel (     0,    27)  ->  Abs (   623,  1789)
+	 17: Rel (     0,    20)  ->  Abs (   623,  1809)
+	 18: Rel (   -72,    68)  ->  Abs (   551,  1877)
+	 19: Rel (   -36,     0)  ->  Abs (   515,  1877)
+	 20: Rel (   -51,     0)  ->  Abs (   464,  1877)
+	 21: Rel (    14,  -647)  ->  Abs (   478,  1230)
+	 22: Rel (     8,    43)  ->  Abs (   486,  1273)
+	 23: Rel (    46,    33)  ->  Abs (   532,  1306)
+	 24: Rel (    30,    37)  ->  Abs (   562,  1343)
+	 25: Rel (   -98,     6)  ->  Abs (   464,  1349)
+	 26: Rel (     0,    84)  ->  Abs (   464,  1433)
+	 27: Rel (     0,    59)  ->  Abs (   464,  1492)
+	 28: Rel (    78,   111)  ->  Abs (   542,  1603)
+	 29: Rel (    51,     0)  ->  Abs (   593,  1603)
+	 30: Rel (    80,     0)  ->  Abs (   673,  1603)
+	 31: Rel (     0,   -73)  ->  Abs (   673,  1530)
+	 32: Rel (     0,   -23)  ->  Abs (   673,  1507)
+	 33: Rel (   -12,   -25)  ->  Abs (   661,  1482)
+	 34: Rel (   -73,    53)  ->  Abs (   588,  1535)
+	 35: Rel (   -32,     0)  ->  Abs (   556,  1535)
+	 36: Rel (   -51,     0)  ->  Abs (   505,  1535)
+	 37: Rel (     0,   -43)  ->  Abs (   505,  1492)
+	 38: Rel (     0,   -35)  ->  Abs (   505,  1457)
+	 39: Rel (   105,   -65)  ->  Abs (   610,  1392)
+	 40: Rel (    40,     0)  ->  Abs (   650,  1392)
+	 41: Rel (    35,     0)  ->  Abs (   685,  1392)
+	 42: Rel (    53,    22)  ->  Abs (   738,  1414)
+	 43: Rel (     0,   -73)  ->  Abs (   738,  1341)
+
+	Glyph 793: off = 0x00029976, len = 94
+	  numberOfContours:	-1  (Composite)
+	  xMin:			365
+	  yMin:			1230
+	  xMax:			735
+	  yMax:			2091
+
+	     0: Flags:		0x0236
+		Glyf Index:	775
+		X BOffset:	-4
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	757
+		X WOffset:	-54
+		Y WOffset:	410
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              2     1    24 
+	00004: PUSHW[1]            -64 
+	00007: NPUSHB      (38):    13    19    52    16    24     1    24     2     1   127 
+	                            39     1    63    39    95    39   143    39     3    47 
+	                            39    63    39     2    15    39    31    39    47    39 
+	                             3    39    64    11    20    52    39     4 
+	00047: PUSHW[1]            340 
+	00050: SCANCTRL   
+	00051: SCANTYPE   
+	00052: SVTCA[y-axis] 
+	00053: SRP1       
+	00054: CALL       
+	00055: DELTAP1    
+	00056: DELTAP1    
+	00057: DELTAP1    
+	00058: DELTAP2    
+	00059: SHC[rp1,zp0] 
+	00060: SHC[rp1,zp0] 
+	00061: SVTCA[x-axis] 
+	00062: SRP1       
+	00063: DELTAP1    
+	00064: CALL       
+	00065: SHC[rp1,zp0] 
+	00066: SHC[rp1,zp0] 
+
+	Glyph 794: off = 0x000299D4, len = 728
+	  numberOfContours:	3
+	  xMin:			338
+	  yMin:			1230
+	  xMax:			738
+	  yMax:			2076
+
+	EndPoints
+	---------
+	  0:  41
+	  1:  49
+	  2:  72
+
+	  Length of Instructions:	528
+	00000: PUSHW[2]             21   -16 
+	00005: PUSHB[4]             29    44    52    38 
+	00010: PUSHW[1]            -64 
+	00013: PUSHB[4]             29    44    52    32 
+	00018: PUSHW[1]            -44 
+	00021: NPUSHB      (40):    28    45    52    26    38    18    67    20    68    26 
+	                            72    89    37   154    37     6    27    37    22    49 
+	                             2     5    38     1    72    44    19    27    52    51 
+	                            32    11    16    52    54    64    17    30    52    53 
+	00063: PUSHW[1]            -64 
+	00066: PUSHB[4]             11    16    52    51 
+	00071: PUSHW[1]            -64 
+	00074: NPUSHB      (11):    12    16    52     3     1     0     3    20    40    40 
+	                            20 
+	00087: PUSHW[1]            -64 
+	00090: NPUSHB      (14):    13    16    52    20    20    35    11    64    29    35 
+	                            52    11    11    16 
+	00106: PUSHW[1]            936 
+	00109: NPUSHB      (13):     7     7    46    35    27    27    46    46    37    22 
+	                            32     3    42 
+	00124: PUSHW[1]            904 
+	00127: NPUSHB      (21):   175    35     1    35    64    12    29    52    47    35 
+	                            63    35    79    35    95    35     4    35    53    69 
+	                            71 
+	00150: PUSHW[1]            898 
+	00153: PUSHB[4]            144    72     1    72 
+	00158: PUSHW[1]            -64 
+	00161: PUSHB[4]             28    30    52    72 
+	00166: PUSHW[1]            -64 
+	00169: PUSHB[8]             10    16    52    72    72    51    51    50 
+	00178: PUSHW[1]            -64 
+	00181: PUSHB[4]             47    49    52    50 
+	00186: PUSHW[1]            -64 
+	00189: NPUSHB      (11):    41    43    52    80    50     1    50    50    62    62 
+	                            64 
+	00202: PUSHW[1]            897 
+	00205: PUSHB[7]            112    58     1    63    58     1    58 
+	00213: PUSHW[1]            -64 
+	00216: NPUSHB      (54):    85    53    58    64     9    14    52    58    64    17 
+	                            19    52    58    32    30    42    44    37    22    48 
+	                             3     0    20    18    35    34    64    25    27    52 
+	                            34    64    11    24    52    34    34    30   160     0 
+	                             1     0     0   176    13     1    13    64    13    16 
+	                            52    13    13     5 
+	00272: PUSHW[3]            882    18   -64 
+	00279: PUSHB[7]             54    83    52    16    18     1    18 
+	00287: PUSHW[1]            -64 
+	00290: NPUSHB      (12):    13    32    52    18    18    24    32    30    48    30 
+	                             2    30 
+	00304: PUSHW[1]            878 
+	00307: NPUSHB      (23):    44    64    46    63    52    44    64    29    38    52 
+	                             0    44    16    44     2    64    44    80    44     2 
+	                            44    44    48 
+	00332: PUSHW[1]            878 
+	00335: NPUSHB      (16):    24    24    55    53    72    62    62     0    60    16 
+	                            60     2    60    60    72    66 
+	00353: PUSHW[1]            875 
+	00356: NPUSHB      (28):    47    55     1    55    55    51    50    71   175    72 
+	                             1    72    64    11    11    52    72    64     9    11 
+	                            52    72    72    32    50     1    50     4 
+	00386: PUSHW[1]            340 
+	00389: SCANCTRL   
+	00390: SCANTYPE   
+	00391: MDAP[rd]   
+	00392: DELTAP1    
+	00393: SHP[rp1,zp0] 
+	00394: MDAP[rd]   
+	00395: CALL       
+	00396: CALL       
+	00397: DELTAP1    
+	00398: ALIGNRP    
+	00399: SRP1       
+	00400: SHP[rp1,zp0] 
+	00401: SHP[rp1,zp0] 
+	00402: MDAP[rd]   
+	00403: DELTAP1    
+	00404: MIRP[srp0,md,rd,1] 
+	00405: SRP1       
+	00406: IP         
+	00407: MDAP[rd]   
+	00408: DELTAP1    
+	00409: SHP[rp1,zp0] 
+	00410: RTHG       
+	00411: MDAP[rd]   
+	00412: SRP1       
+	00413: IP         
+	00414: SRP1       
+	00415: SHP[rp1,zp0] 
+	00416: RTG        
+	00417: MDAP[rd]   
+	00418: MIRP[srp0,md,rd,1] 
+	00419: SHP[rp2,zp1] 
+	00420: MDAP[rd]   
+	00421: DELTAP1    
+	00422: DELTAP1    
+	00423: CALL       
+	00424: CALL       
+	00425: MIRP[nrp0,md,rd,1] 
+	00426: DELTAP1    
+	00427: SRP1       
+	00428: SHP[rp1,zp0] 
+	00429: MDAP[rd]   
+	00430: CALL       
+	00431: DELTAP3    
+	00432: CALL       
+	00433: MIRP[srp0,md,rd,1] 
+	00434: SHP[rp2,zp1] 
+	00435: MDAP[rd]   
+	00436: CALL       
+	00437: DELTAP2    
+	00438: SHP[rp2,zp1] 
+	00439: MDAP[rd]   
+	00440: DELTAP1    
+	00441: SRP1       
+	00442: SHP[rp1,zp0] 
+	00443: MDAP[rd]   
+	00444: CALL       
+	00445: CALL       
+	00446: SHP[rp1,zp0] 
+	00447: SRP1       
+	00448: IP         
+	00449: SRP1       
+	00450: IP         
+	00451: SRP1       
+	00452: SHP[rp1,zp0] 
+	00453: SHP[rp1,zp0] 
+	00454: SRP2       
+	00455: IP         
+	00456: SRP1       
+	00457: IP         
+	00458: SVTCA[y-axis] 
+	00459: MDAP[rd]   
+	00460: CALL       
+	00461: CALL       
+	00462: CALL       
+	00463: DELTAP1    
+	00464: DELTAP3    
+	00465: MIRP[srp0,md,rd,1] 
+	00466: SHP[rp2,zp1] 
+	00467: RUTG       
+	00468: MDAP[rd]   
+	00469: RTG        
+	00470: SHP[rp2,zp1] 
+	00471: MDAP[rd]   
+	00472: DELTAP3    
+	00473: CALL       
+	00474: CALL       
+	00475: SHP[rp1,zp0] 
+	00476: SRP1       
+	00477: SHP[rp1,zp0] 
+	00478: MDAP[rd]   
+	00479: CALL       
+	00480: CALL       
+	00481: DELTAP3    
+	00482: MIRP[nrp0,md,rd,1] 
+	00483: IP         
+	00484: IP         
+	00485: MDAP[rd]   
+	00486: DELTAP1    
+	00487: CALL       
+	00488: DELTAP1    
+	00489: MIRP[nrp0,md,rd,1] 
+	00490: SLOOP      
+	00491: IP         
+	00492: SHP[rp2,zp1] 
+	00493: MDAP[rd]   
+	00494: SHP[rp1,zp0] 
+	00495: MDAP[rd]   
+	00496: SRP1       
+	00497: SRP2       
+	00498: IP         
+	00499: MDAP[rd]   
+	00500: MIRP[nrp0,md,rd,1] 
+	00501: SHP[rp1,zp0] 
+	00502: MDAP[rd]   
+	00503: CALL       
+	00504: SRP1       
+	00505: SHP[rp1,zp0] 
+	00506: MDAP[rd]   
+	00507: CALL       
+	00508: SHP[rp1,zp0] 
+	00509: MDAP[rd]   
+	00510: SRP2       
+	00511: SLOOP      
+	00512: IP         
+	00513: IUP[y]     
+	00514: IUP[x]     
+	00515: SVTCA[x-axis] 
+	00516: CALL       
+	00517: CALL       
+	00518: CALL       
+	00519: SVTCA[y-axis] 
+	00520: CALL       
+	00521: CALL       
+	00522: DELTAP2    
+	00523: DELTAP3    
+	00524: DELTAP3    
+	00525: CALL       
+	00526: CALL       
+	00527: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:                      Y-Short X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual               Y-Short X-Short On
+	 38:                      Y-Short X-Short Off
+	 39:                      Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:        XDual         Y-Short         On
+	 49:        XDual         Y-Short         Off
+	 50:                              X-Short On
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:  YDual               Y-Short X-Short Off
+	 55:  YDual XDual         Y-Short         On
+	 56:  YDual XDual         Y-Short         Off
+	 57:  YDual XDual         Y-Short X-Short Off
+	 58:  YDual XDual                 X-Short On
+	 59:  YDual XDual                 X-Short Off
+	 60:        XDual         Y-Short         On
+	 61:        XDual         Y-Short         Off
+	 62:                      Y-Short X-Short On
+	 63:  YDual               Y-Short X-Short Off
+	 64:  YDual                       X-Short On
+	 65:  YDual                       X-Short Off
+	 66:        XDual         Y-Short         On
+	 67:        XDual         Y-Short         Off
+	 68:        XDual         Y-Short X-Short Off
+	 69:  YDual XDual                 X-Short On
+	 70:  YDual XDual                 X-Short Off
+	 71:  YDual XDual         Y-Short X-Short On
+	 72:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   368,  1658)  ->  Abs (   368,  1658)
+	  1: Rel (     0,    12)  ->  Abs (   368,  1670)
+	  2: Rel (     7,     4)  ->  Abs (   375,  1674)
+	  3: Rel (    24,    17)  ->  Abs (   399,  1691)
+	  4: Rel (    24,    38)  ->  Abs (   423,  1729)
+	  5: Rel (     0,    58)  ->  Abs (   423,  1787)
+	  6: Rel (     0,    37)  ->  Abs (   423,  1824)
+	  7: Rel (   -22,     0)  ->  Abs (   401,  1824)
+	  8: Rel (    -9,     0)  ->  Abs (   392,  1824)
+	  9: Rel (   -20,   -18)  ->  Abs (   372,  1806)
+	 10: Rel (   -21,   -19)  ->  Abs (   351,  1787)
+	 11: Rel (    -5,     0)  ->  Abs (   346,  1787)
+	 12: Rel (    -8,     0)  ->  Abs (   338,  1787)
+	 13: Rel (     0,     8)  ->  Abs (   338,  1795)
+	 14: Rel (     1,    20)  ->  Abs (   339,  1815)
+	 15: Rel (    69,    66)  ->  Abs (   408,  1881)
+	 16: Rel (    28,     0)  ->  Abs (   436,  1881)
+	 17: Rel (    43,     0)  ->  Abs (   479,  1881)
+	 18: Rel (     0,   -52)  ->  Abs (   479,  1829)
+	 19: Rel (     0,   -45)  ->  Abs (   479,  1784)
+	 20: Rel (   -37,   -75)  ->  Abs (   442,  1709)
+	 21: Rel (    75,    34)  ->  Abs (   517,  1743)
+	 22: Rel (    52,    75)  ->  Abs (   569,  1818)
+	 23: Rel (   -58,    31)  ->  Abs (   511,  1849)
+	 24: Rel (     0,    61)  ->  Abs (   511,  1910)
+	 25: Rel (     1,    51)  ->  Abs (   512,  1961)
+	 26: Rel (    91,   115)  ->  Abs (   603,  2076)
+	 27: Rel (    35,     0)  ->  Abs (   638,  2076)
+	 28: Rel (    25,     0)  ->  Abs (   663,  2076)
+	 29: Rel (    31,   -56)  ->  Abs (   694,  2020)
+	 30: Rel (     0,   -36)  ->  Abs (   694,  1984)
+	 31: Rel (     0,   -61)  ->  Abs (   694,  1923)
+	 32: Rel (   -37,   -56)  ->  Abs (   657,  1867)
+	 33: Rel (    47,   -23)  ->  Abs (   704,  1844)
+	 34: Rel (     0,   -26)  ->  Abs (   704,  1818)
+	 35: Rel (    -4,   -47)  ->  Abs (   700,  1771)
+	 36: Rel (   -33,     0)  ->  Abs (   667,  1771)
+	 37: Rel (   -68,    31)  ->  Abs (   599,  1802)
+	 38: Rel (   -36,   -55)  ->  Abs (   563,  1747)
+	 39: Rel (  -120,   -95)  ->  Abs (   443,  1652)
+	 40: Rel (   -45,     0)  ->  Abs (   398,  1652)
+	 41: Rel (   -20,     0)  ->  Abs (   378,  1652)
+	 42: Rel (   246,   231)  ->  Abs (   624,  1883)
+	 43: Rel (    19,    32)  ->  Abs (   643,  1915)
+	 44: Rel (     0,    32)  ->  Abs (   643,  1947)
+	 45: Rel (     0,    59)  ->  Abs (   643,  2006)
+	 46: Rel (   -44,     0)  ->  Abs (   599,  2006)
+	 47: Rel (   -36,     0)  ->  Abs (   563,  2006)
+	 48: Rel (     0,   -47)  ->  Abs (   563,  1959)
+	 49: Rel (     0,   -55)  ->  Abs (   563,  1904)
+	 50: Rel (   -85,  -674)  ->  Abs (   478,  1230)
+	 51: Rel (     8,    43)  ->  Abs (   486,  1273)
+	 52: Rel (    47,    33)  ->  Abs (   533,  1306)
+	 53: Rel (    29,    37)  ->  Abs (   562,  1343)
+	 54: Rel (   -98,     6)  ->  Abs (   464,  1349)
+	 55: Rel (     0,    84)  ->  Abs (   464,  1433)
+	 56: Rel (     0,    59)  ->  Abs (   464,  1492)
+	 57: Rel (    78,   111)  ->  Abs (   542,  1603)
+	 58: Rel (    51,     0)  ->  Abs (   593,  1603)
+	 59: Rel (    80,     0)  ->  Abs (   673,  1603)
+	 60: Rel (     0,   -73)  ->  Abs (   673,  1530)
+	 61: Rel (     0,   -23)  ->  Abs (   673,  1507)
+	 62: Rel (   -12,   -25)  ->  Abs (   661,  1482)
+	 63: Rel (   -73,    53)  ->  Abs (   588,  1535)
+	 64: Rel (   -32,     0)  ->  Abs (   556,  1535)
+	 65: Rel (   -51,     0)  ->  Abs (   505,  1535)
+	 66: Rel (     0,   -43)  ->  Abs (   505,  1492)
+	 67: Rel (     0,   -35)  ->  Abs (   505,  1457)
+	 68: Rel (   105,   -65)  ->  Abs (   610,  1392)
+	 69: Rel (    40,     0)  ->  Abs (   650,  1392)
+	 70: Rel (    35,     0)  ->  Abs (   685,  1392)
+	 71: Rel (    53,    22)  ->  Abs (   738,  1414)
+	 72: Rel (     0,   -73)  ->  Abs (   738,  1341)
+
+	Glyph 795: off = 0x00029CAC, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			123
+
+	     0: Flags:		0x0216
+		Glyf Index:	752
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 796: off = 0x00029CBC, len = 224
+	  numberOfContours:	2
+	  xMin:			412
+	  yMin:			1273
+	  xMax:			812
+	  yMax:			1612
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  27
+
+	  Length of Instructions:	137
+	00000: NPUSHB      (13):     6     8     1    91    27   153    27   218    27     3 
+	                             0     0    20 
+	00015: PUSHW[1]            933 
+	00018: NPUSHB      (12):    10    14    64    13    19    52    14    14    79    10 
+	                             1    10 
+	00032: PUSHW[1]            -64 
+	00035: NPUSHB      (11):     9    20    52    10    10    25    64    38    44    52 
+	                            25 
+	00048: PUSHW[1]            933 
+	00051: NPUSHB      (12):    15     3   143     3     2     3    64    12    14    52 
+	                             3    20 
+	00065: PUSHW[1]            932 
+	00068: PUSHB[4]            176     0     1     0 
+	00073: PUSHW[1]            -64 
+	00076: NPUSHB      (15):    25    30    52     5     0     1     0     0    16     0 
+	                             6    16     6     2     6 
+	00093: PUSHW[1]            932 
+	00096: PUSHB[4]             23    23    16     4 
+	00101: SCANTYPE   
+	00102: MDAP[rd]   
+	00103: SHP[rp1,zp0] 
+	00104: MDAP[rd]   
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: DELTAP1    
+	00107: SRP1       
+	00108: SHP[rp1,zp0] 
+	00109: MDAP[rd]   
+	00110: DELTAP2    
+	00111: CALL       
+	00112: DELTAP3    
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: SVTCA[y-axis] 
+	00115: MDAP[rd]   
+	00116: CALL       
+	00117: DELTAP1    
+	00118: MIRP[nrp0,md,rd,1] 
+	00119: CALL       
+	00120: SHP[rp1,zp0] 
+	00121: MDAP[rd]   
+	00122: CALL       
+	00123: DELTAP1    
+	00124: SHP[rp1,zp0] 
+	00125: MDAP[rd]   
+	00126: CALL       
+	00127: SRP0       
+	00128: MIRP[srp0,md,rd,1] 
+	00129: SHP[rp2,zp1] 
+	00130: MDAP[rd]   
+	00131: IUP[y]     
+	00132: IUP[x]     
+	00133: SVTCA[y-axis] 
+	00134: DELTAP3    
+	00135: SVTCA[x-axis] 
+	00136: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short X-Short On
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   551,  1439)  ->  Abs (   551,  1439)
+	  1: Rel (   102,   134)  ->  Abs (   653,  1573)
+	  2: Rel (    75,    39)  ->  Abs (   728,  1612)
+	  3: Rel (    28,     0)  ->  Abs (   756,  1612)
+	  4: Rel (    24,     0)  ->  Abs (   780,  1612)
+	  5: Rel (    32,   -57)  ->  Abs (   812,  1555)
+	  6: Rel (     0,   -37)  ->  Abs (   812,  1518)
+	  7: Rel (     0,   -62)  ->  Abs (   812,  1456)
+	  8: Rel (   -49,   -78)  ->  Abs (   763,  1378)
+	  9: Rel (   -98,   -21)  ->  Abs (   665,  1357)
+	 10: Rel (  -166,     0)  ->  Abs (   499,  1357)
+	 11: Rel (   -32,     0)  ->  Abs (   467,  1357)
+	 12: Rel (   -14,   -32)  ->  Abs (   453,  1325)
+	 13: Rel (   -22,   -52)  ->  Abs (   431,  1273)
+	 14: Rel (    -4,     0)  ->  Abs (   427,  1273)
+	 15: Rel (   -15,     0)  ->  Abs (   412,  1273)
+	 16: Rel (     0,    47)  ->  Abs (   412,  1320)
+	 17: Rel (     0,    45)  ->  Abs (   412,  1365)
+	 18: Rel (    42,    59)  ->  Abs (   454,  1424)
+	 19: Rel (    38,    16)  ->  Abs (   492,  1440)
+	 20: Rel (    98,    -2)  ->  Abs (   590,  1438)
+	 21: Rel (   111,     0)  ->  Abs (   701,  1438)
+	 22: Rel (    76,     0)  ->  Abs (   777,  1438)
+	 23: Rel (     0,    38)  ->  Abs (   777,  1476)
+	 24: Rel (     0,    56)  ->  Abs (   777,  1532)
+	 25: Rel (   -54,     0)  ->  Abs (   723,  1532)
+	 26: Rel (   -21,     0)  ->  Abs (   702,  1532)
+	 27: Rel (   -93,   -66)  ->  Abs (   609,  1466)
+
+	Glyph 797: off = 0x00029D9C, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			354
+	  yMin:			59
+	  xMax:			754
+	  yMax:			1562
+
+	     0: Flags:		0x0236
+		Glyf Index:	909
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	796
+		X BOffset:	-58
+		Y BOffset:	-50
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (11):     2     1    31    21   111    21     2    21     2     1 
+	                            28 
+	00013: PUSHW[1]            -64 
+	00016: PUSHB[8]             13    17    52     0    28     1    28     4 
+	00025: SCANTYPE   
+	00026: SVTCA[x-axis] 
+	00027: SRP1       
+	00028: DELTAP1    
+	00029: CALL       
+	00030: SHC[rp1,zp0] 
+	00031: SHC[rp1,zp0] 
+	00032: SVTCA[y-axis] 
+	00033: SRP1       
+	00034: DELTAP1    
+	00035: SHC[rp1,zp0] 
+	00036: SHC[rp1,zp0] 
+
+	Glyph 798: off = 0x00029DDA, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			352
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1562
+
+	     0: Flags:		0x0236
+		Glyf Index:	910
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	796
+		X BOffset:	-60
+		Y BOffset:	-50
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     2     1    31    30   111    30     2    30     2     1 
+	                             0    43    33     6     6    64     4 
+	00019: SCANTYPE   
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: SHC[rp1,zp0] 
+	00023: SHC[rp1,zp0] 
+	00024: SVTCA[y-axis] 
+	00025: SRP1       
+	00026: DELTAP1    
+	00027: SHC[rp1,zp0] 
+	00028: SHC[rp1,zp0] 
+
+	Glyph 799: off = 0x00029E10, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			37
+	  yMin:			-561
+	  xMax:			1184
+	  yMax:			682
+
+	     0: Flags:		0x0236
+		Glyf Index:	1104
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1102
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              2     1    80    31   224    31     2    31 
+	00009: SVTCA[x-axis] 
+	00010: SRP1       
+	00011: DELTAP1    
+	00012: SHC[rp1,zp0] 
+	00013: SHC[rp1,zp0] 
+
+	Glyph 800: off = 0x00029E36, len = 22
+	  numberOfContours:	-1  (Composite)
+	  xMin:			37
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			671
+
+	     0: Flags:		0x0236
+		Glyf Index:	1105
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0016
+		Glyf Index:	1102
+		X BOffset:	-94
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 801: off = 0x00029E4C, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-561
+	  xMax:			1192
+	  yMax:			682
+
+	     0: Flags:		0x0236
+		Glyf Index:	1106
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1102
+		X WOffset:	284
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     2     1   127    16     1    79    16   111    16     2 
+	                            31    16    32    16     2    16 
+	00018: SVTCA[x-axis] 
+	00019: SRP1       
+	00020: DELTAP1    
+	00021: DELTAP1    
+	00022: DELTAP1    
+	00023: SHC[rp1,zp0] 
+	00024: SHC[rp1,zp0] 
+
+	Glyph 802: off = 0x00029E80, len = 22
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			673
+
+	     0: Flags:		0x0236
+		Glyf Index:	1107
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0016
+		Glyf Index:	1102
+		X BOffset:	55
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 803: off = 0x00029E96, len = 84
+	  numberOfContours:	-1  (Composite)
+	  xMin:			11
+	  yMin:			-7
+	  xMax:			1209
+	  yMax:			1399
+
+	     0: Flags:		0x0236
+		Glyf Index:	1108
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1101
+		X WOffset:	340
+		Y WOffset:	309
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              3     2    53 
+	00004: PUSHW[1]            -64 
+	00007: NPUSHB      (34):    18    21    52    80    53     1    15    53    32    53 
+	                            64    53     3    53     3     2    47    52     1    48 
+	                            52   191    52   207    52     3     0    52    47    52 
+	                           208    52     3    52 
+	00043: SVTCA[x-axis] 
+	00044: SRP1       
+	00045: DELTAP1    
+	00046: DELTAP1    
+	00047: DELTAP2    
+	00048: SHC[rp1,zp0] 
+	00049: SHC[rp1,zp0] 
+	00050: SVTCA[y-axis] 
+	00051: SRP1       
+	00052: DELTAP1    
+	00053: DELTAP1    
+	00054: CALL       
+	00055: SHC[rp1,zp0] 
+	00056: SHC[rp1,zp0] 
+
+	Glyph 804: off = 0x00029EEA, len = 90
+	  numberOfContours:	-1  (Composite)
+	  xMin:			6
+	  yMin:			-68
+	  xMax:			1229
+	  yMax:			1246
+
+	     0: Flags:		0x0236
+		Glyf Index:	1109
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1101
+		X WOffset:	389
+		Y WOffset:	156
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (47):     3     2    64    53    80    53   176    53     3    53 
+	                             3     2    16    54    64    54     2     0    54    64 
+	                            54     2   208    54     1     0    54   176    54   240 
+	                            54     3    80    54    96    54   160    54     3     0 
+	                            54    16    54    48    54     3    54 
+	00049: SVTCA[x-axis] 
+	00050: SRP1       
+	00051: DELTAP1    
+	00052: DELTAP1    
+	00053: DELTAP1    
+	00054: DELTAP1    
+	00055: DELTAP2    
+	00056: DELTAP3    
+	00057: SHC[rp1,zp0] 
+	00058: SHC[rp1,zp0] 
+	00059: SVTCA[y-axis] 
+	00060: SRP1       
+	00061: DELTAP1    
+	00062: SHC[rp1,zp0] 
+	00063: SHC[rp1,zp0] 
+
+	Glyph 805: off = 0x00029F44, len = 86
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1207
+	  yMax:			1376
+
+	     0: Flags:		0x0236
+		Glyf Index:	1110
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1101
+		X WOffset:	339
+		Y WOffset:	286
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              3     2    15    37     1    37 
+	00007: PUSHW[1]            -64 
+	00010: NPUSHB      (33):    18    21    52    64    37    80    37   143    37     3 
+	                            15    37    31    37    32    37     3    37     3     2 
+	                            47    40   191    40   207    40     3    48    40   208 
+	                            40     2    40 
+	00045: SVTCA[x-axis] 
+	00046: SRP1       
+	00047: DELTAP1    
+	00048: DELTAP1    
+	00049: SHC[rp1,zp0] 
+	00050: SHC[rp1,zp0] 
+	00051: SVTCA[y-axis] 
+	00052: SRP1       
+	00053: DELTAP1    
+	00054: DELTAP1    
+	00055: CALL       
+	00056: DELTAP2    
+	00057: SHC[rp1,zp0] 
+	00058: SHC[rp1,zp0] 
+
+	Glyph 806: off = 0x00029F9A, len = 82
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1294
+
+	     0: Flags:		0x0236
+		Glyf Index:	1111
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1101
+		X WOffset:	351
+		Y WOffset:	204
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (40):     3     2    15    38     1   144    38   176    38   192 
+	                            38     3    38     3     2    31    39   111    39     2 
+	                            96    39   128    39   160    39     3     0    39    48 
+	                            39   208    39     3     0    39    16    39     2    39 
+	00042: SVTCA[x-axis] 
+	00043: SRP1       
+	00044: DELTAP1    
+	00045: DELTAP1    
+	00046: DELTAP1    
+	00047: DELTAP2    
+	00048: SHC[rp1,zp0] 
+	00049: SHC[rp1,zp0] 
+	00050: SVTCA[y-axis] 
+	00051: SRP1       
+	00052: DELTAP1    
+	00053: DELTAP2    
+	00054: SHC[rp1,zp0] 
+	00055: SHC[rp1,zp0] 
+
+	Glyph 807: off = 0x00029FEC, len = 92
+	  numberOfContours:	-1  (Composite)
+	  xMin:			272
+	  yMin:			-561
+	  xMax:			1211
+	  yMax:			538
+
+	     0: Flags:		0x0236
+		Glyf Index:	929
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1102
+		X WOffset:	115
+		Y WOffset:	240
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (49):     2     1    44    64    37    41    52    16    44    32 
+	                            44     2    80    44     1    15    44   207    44   223 
+	                            44   224    44   240    44     5    44     2     1    31 
+	                            43    47    43     2    15    43    63    43     2    48 
+	                            43    79    43   175    43   223    43     4    43 
+	00051: SVTCA[x-axis] 
+	00052: SRP1       
+	00053: DELTAP1    
+	00054: DELTAP2    
+	00055: DELTAP3    
+	00056: SHC[rp1,zp0] 
+	00057: SHC[rp1,zp0] 
+	00058: SVTCA[y-axis] 
+	00059: SRP1       
+	00060: DELTAP1    
+	00061: DELTAP2    
+	00062: DELTAP3    
+	00063: CALL       
+	00064: SHC[rp1,zp0] 
+	00065: SHC[rp1,zp0] 
+
+	Glyph 808: off = 0x0002A048, len = 560
+	  numberOfContours:	3
+	  xMin:			158
+	  yMin:			-561
+	  xMax:			1230
+	  yMax:			662
+
+	EndPoints
+	---------
+	  0:  58
+	  1:  66
+	  2:  70
+
+	  Length of Instructions:	354
+	00000: PUSHW[2]             46   -24 
+	00005: PUSHB[4]             16    22    52    45 
+	00010: PUSHW[1]             -8 
+	00013: NPUSHB      (14):    18    22    52    33    32    14    17    52     3    32 
+	                            21    29    52    13 
+	00029: PUSHW[1]            -16 
+	00032: NPUSHB      (27):    18    20    52   204    25   202    29   218    25   218 
+	                            29     4    69    13    85    13   108    25   122    25 
+	                             4    67    67    70    69    69    68 
+	00061: PUSHW[1]            955 
+	00064: NPUSHB      (17):    70    70    66    59    63    60    62    65    65    66 
+	                            64    61    61    62    66    66    60 
+	00083: PUSHW[1]            955 
+	00086: NPUSHB      (24):    62    64    64   239    62     1   111    62     1    62 
+	                           111     7     1     7   111    31     1    31    51    53 
+	                             3    49    48    58 
+	00112: PUSHW[5]            907     0   858    49   907 
+	00123: NPUSHB      (10):    48    64     9    13    52    48    48    37    37    34 
+	00135: PUSHW[1]            906 
+	00138: PUSHB[4]             43    19    19    15 
+	00143: PUSHW[1]            909 
+	00146: PUSHB[5]             23    68    70    70    67 
+	00152: PUSHW[1]            954 
+	00155: NPUSHB      (13):    69    69    60    66    64    64    63    65    60    62 
+	                            62    61    65 
+	00170: PUSHW[3]            954    61   954 
+	00177: NPUSHB      (14):    59    63    64    10    12    52    31    63   143    63 
+	                             2    63    19    31 
+	00193: PUSHW[1]            -64 
+	00196: NPUSHB      (16):    10    12    52    31    53     7     5    49     0    48 
+	                            16    48     2    48    48    55 
+	00214: PUSHW[1]            883 
+	00217: NPUSHB      (11):     5     5    27    58     0    80    39     1    39    39 
+	                            11 
+	00230: PUSHW[4]            891    27     4   340 
+	00239: SCANCTRL   
+	00240: SCANTYPE   
+	00241: MDAP[rd]   
+	00242: MIRP[nrp0,md,rd,1] 
+	00243: SHP[rp1,zp0] 
+	00244: MDAP[rd]   
+	00245: DELTAP1    
+	00246: MDAP[rd]   
+	00247: ALIGNRP    
+	00248: SRP2       
+	00249: IP         
+	00250: MDAP[rd]   
+	00251: MIRP[srp0,md,rd,1] 
+	00252: SHP[rp2,zp1] 
+	00253: MDAP[rd]   
+	00254: DELTAP1    
+	00255: SHP[rp1,zp0] 
+	00256: SRP1       
+	00257: IP         
+	00258: SHP[rp2,zp1] 
+	00259: SHP[rp1,zp0] 
+	00260: CALL       
+	00261: MDAP[rd]   
+	00262: MDAP[rd]   
+	00263: DELTAP2    
+	00264: CALL       
+	00265: SHP[rp1,zp0] 
+	00266: MIRP[nrp0,md,rd,1] 
+	00267: MIRP[nrp0,md,rd,1] 
+	00268: RTDG       
+	00269: SRP2       
+	00270: IP         
+	00271: MDAP[rd]   
+	00272: ALIGNRP    
+	00273: SRP1       
+	00274: SRP2       
+	00275: IP         
+	00276: MDAP[rd]   
+	00277: ALIGNRP    
+	00278: RTG        
+	00279: SRP1       
+	00280: SHP[rp1,zp0] 
+	00281: MDAP[rd]   
+	00282: MIRP[nrp0,md,rd,1] 
+	00283: RTDG       
+	00284: IP         
+	00285: MDAP[rd]   
+	00286: RTG        
+	00287: ALIGNRP    
+	00288: SVTCA[y-axis] 
+	00289: MDAP[rd]   
+	00290: MIRP[srp0,md,rd,1] 
+	00291: SHP[rp2,zp1] 
+	00292: MDAP[rd]   
+	00293: MDAP[rd]   
+	00294: MIRP[srp0,md,rd,1] 
+	00295: SHP[rp2,zp1] 
+	00296: MDAP[rd]   
+	00297: SHP[rp2,zp1] 
+	00298: MDAP[rd]   
+	00299: CALL       
+	00300: MIRP[nrp0,md,rd,1] 
+	00301: MIAP[rd+ci] 
+	00302: MIRP[nrp0,md,rd,1] 
+	00303: SRP1       
+	00304: SRP2       
+	00305: SLOOP      
+	00306: IP         
+	00307: DELTAP1    
+	00308: SHP[rp2,zp1] 
+	00309: DELTAP1    
+	00310: MDAP[rd]   
+	00311: DELTAP2    
+	00312: DELTAP1    
+	00313: SHP[rp1,zp0] 
+	00314: MDAP[rd]   
+	00315: SRP0       
+	00316: MIRP[srp0,md,rd,1] 
+	00317: SHP[rp2,zp1] 
+	00318: MDAP[rd]   
+	00319: RTDG       
+	00320: SRP1       
+	00321: IP         
+	00322: MDAP[rd]   
+	00323: SRP1       
+	00324: SRP2       
+	00325: IP         
+	00326: MDAP[rd]   
+	00327: RTG        
+	00328: SRP1       
+	00329: SRP2       
+	00330: IP         
+	00331: IP         
+	00332: SRP1       
+	00333: SHP[rp1,zp0] 
+	00334: MDAP[rd]   
+	00335: MIRP[nrp0,md,rd,1] 
+	00336: RTDG       
+	00337: IP         
+	00338: MDAP[rd]   
+	00339: SRP1       
+	00340: IP         
+	00341: MDAP[rd]   
+	00342: RTG        
+	00343: IUP[y]     
+	00344: IUP[x]     
+	00345: SVTCA[x-axis] 
+	00346: DELTAP1    
+	00347: DELTAP1    
+	00348: CALL       
+	00349: CALL       
+	00350: CALL       
+	00351: SVTCA[y-axis] 
+	00352: CALL       
+	00353: CALL       
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:        XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:                      Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:        XDual         Y-Short X-Short On
+	 46:        XDual         Y-Short X-Short On
+	 47:        XDual         Y-Short X-Short Off
+	 48:  YDual XDual                 X-Short On
+	 49:                      Y-Short X-Short On
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual                       X-Short On
+	 52:  YDual                       X-Short Off
+	 53:                      Y-Short X-Short On
+	 54:                      Y-Short X-Short Off
+	 55:        XDual         Y-Short         On
+	 56:        XDual         Y-Short         Off
+	 57:  YDual XDual                 X-Short On
+	 58:  YDual                               On
+	 59:                      Y-Short         On
+	 60:                      Y-Short X-Short On
+	 61:  YDual               Y-Short X-Short On
+	 62:  YDual XDual         Y-Short X-Short On
+	 63:        XDual         Y-Short X-Short On
+	 64:  YDual XDual         Y-Short X-Short On
+	 65:        XDual         Y-Short X-Short On
+	 66:                      Y-Short X-Short On
+	 67:        XDual         Y-Short X-Short On
+	 68:                      Y-Short X-Short On
+	 69:  YDual               Y-Short X-Short On
+	 70:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1230,     0)  ->  Abs (  1230,     0)
+	  1: Rel (  -338,     0)  ->  Abs (   892,     0)
+	  2: Rel (   -84,     0)  ->  Abs (   808,     0)
+	  3: Rel (   -32,    48)  ->  Abs (   776,    48)
+	  4: Rel (   -27,    39)  ->  Abs (   749,    87)
+	  5: Rel (     0,    89)  ->  Abs (   749,   176)
+	  6: Rel (     0,    70)  ->  Abs (   749,   246)
+	  7: Rel (    17,    76)  ->  Abs (   766,   322)
+	  8: Rel (  -152,   -35)  ->  Abs (   614,   287)
+	  9: Rel (  -160,  -123)  ->  Abs (   454,   164)
+	 10: Rel (  -195,  -155)  ->  Abs (   259,     9)
+	 11: Rel (     0,  -158)  ->  Abs (   259,  -149)
+	 12: Rel (     0,  -139)  ->  Abs (   259,  -288)
+	 13: Rel (   149,   -81)  ->  Abs (   408,  -369)
+	 14: Rel (   122,   -61)  ->  Abs (   530,  -430)
+	 15: Rel (   175,     0)  ->  Abs (   705,  -430)
+	 16: Rel (    99,     0)  ->  Abs (   804,  -430)
+	 17: Rel (   134,    38)  ->  Abs (   938,  -392)
+	 18: Rel (    22,     6)  ->  Abs (   960,  -386)
+	 19: Rel (   129,    41)  ->  Abs (  1089,  -345)
+	 20: Rel (     0,   -72)  ->  Abs (  1089,  -417)
+	 21: Rel (  -179,   -81)  ->  Abs (   910,  -498)
+	 22: Rel (  -145,   -63)  ->  Abs (   765,  -561)
+	 23: Rel (   -87,     0)  ->  Abs (   678,  -561)
+	 24: Rel (  -224,     0)  ->  Abs (   454,  -561)
+	 25: Rel (  -141,   106)  ->  Abs (   313,  -455)
+	 26: Rel (  -155,   117)  ->  Abs (   158,  -338)
+	 27: Rel (     0,   156)  ->  Abs (   158,  -182)
+	 28: Rel (     0,   201)  ->  Abs (   158,    19)
+	 29: Rel (   243,   190)  ->  Abs (   401,   209)
+	 30: Rel (   155,   118)  ->  Abs (   556,   327)
+	 31: Rel (   183,    58)  ->  Abs (   739,   385)
+	 32: Rel (   -75,    52)  ->  Abs (   664,   437)
+	 33: Rel (  -225,   106)  ->  Abs (   439,   543)
+	 34: Rel (   -51,     0)  ->  Abs (   388,   543)
+	 35: Rel (   -66,     0)  ->  Abs (   322,   543)
+	 36: Rel (   -73,   -80)  ->  Abs (   249,   463)
+	 37: Rel (    -5,     0)  ->  Abs (   244,   463)
+	 38: Rel (    -9,     0)  ->  Abs (   235,   463)
+	 39: Rel (     0,    20)  ->  Abs (   235,   483)
+	 40: Rel (     0,    70)  ->  Abs (   235,   553)
+	 41: Rel (    64,    56)  ->  Abs (   299,   609)
+	 42: Rel (    62,    53)  ->  Abs (   361,   662)
+	 43: Rel (    71,     0)  ->  Abs (   432,   662)
+	 44: Rel (    73,     0)  ->  Abs (   505,   662)
+	 45: Rel (   101,   -55)  ->  Abs (   606,   607)
+	 46: Rel (   155,   -84)  ->  Abs (   761,   523)
+	 47: Rel (   137,   -74)  ->  Abs (   898,   449)
+	 48: Rel (   139,     0)  ->  Abs (  1037,   449)
+	 49: Rel (   -59,  -123)  ->  Abs (   978,   326)
+	 50: Rel (   -54,     9)  ->  Abs (   924,   335)
+	 51: Rel (   -46,     0)  ->  Abs (   878,   335)
+	 52: Rel (   -26,     0)  ->  Abs (   852,   335)
+	 53: Rel (   -23,    -3)  ->  Abs (   829,   332)
+	 54: Rel (    -8,   -34)  ->  Abs (   821,   298)
+	 55: Rel (     0,   -55)  ->  Abs (   821,   243)
+	 56: Rel (     0,  -120)  ->  Abs (   821,   123)
+	 57: Rel (   128,     0)  ->  Abs (   949,   123)
+	 58: Rel (   281,     0)  ->  Abs (  1230,   123)
+	 59: Rel (  -643,  -212)  ->  Abs (   587,   -89)
+	 60: Rel (   -85,   -87)  ->  Abs (   502,  -176)
+	 61: Rel (   -87,    87)  ->  Abs (   415,   -89)
+	 62: Rel (    87,    86)  ->  Abs (   502,    -3)
+	 63: Rel (    79,   -78)  ->  Abs (   581,   -81)
+	 64: Rel (    86,    85)  ->  Abs (   667,     4)
+	 65: Rel (    86,   -86)  ->  Abs (   753,   -82)
+	 66: Rel (   -86,   -88)  ->  Abs (   667,  -170)
+	 67: Rel (     4,   -79)  ->  Abs (   671,  -249)
+	 68: Rel (   -87,   -86)  ->  Abs (   584,  -335)
+	 69: Rel (   -87,    86)  ->  Abs (   497,  -249)
+	 70: Rel (    87,    86)  ->  Abs (   584,  -163)
+
+	Glyph 809: off = 0x0002A278, len = 22
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-561
+	  xMax:			1199
+	  yMax:			654
+
+	     0: Flags:		0x0236
+		Glyf Index:	931
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0016
+		Glyf Index:	1102
+		X BOffset:	24
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 810: off = 0x0002A28E, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			662
+
+	     0: Flags:		0x0236
+		Glyf Index:	932
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1102
+		X BOffset:	-81
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              2     1     0    46    50    56    57    64 
+	00009: SVTCA[x-axis] 
+	00010: CALL       
+	00011: SHC[rp1,zp0] 
+	00012: SHC[rp1,zp0] 
+
+	Glyph 811: off = 0x0002A2B4, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-420
+	  xMax:			958
+	  yMax:			1255
+
+	     0: Flags:		0x0236
+		Glyf Index:	941
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1101
+		X WOffset:	98
+		Y WOffset:	165
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     2     1    64    29     1    29     2     1    31    30 
+	                            95    30     2    30 
+	00016: SVTCA[x-axis] 
+	00017: SRP1       
+	00018: DELTAP1    
+	00019: SHC[rp1,zp0] 
+	00020: SHC[rp1,zp0] 
+	00021: SVTCA[y-axis] 
+	00022: SRP1       
+	00023: DELTAP1    
+	00024: SHC[rp1,zp0] 
+	00025: SHC[rp1,zp0] 
+
+	Glyph 812: off = 0x0002A2E8, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			101
+	  yMin:			-422
+	  xMax:			1229
+	  yMax:			1225
+
+	     0: Flags:		0x0236
+		Glyf Index:	942
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1101
+		X WOffset:	108
+		Y WOffset:	135
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (21):     2     1    37    64    26    33    52    37     2     1 
+	                            64    34     1    16    34    48    34   160    34     3 
+	                            34 
+	00023: SVTCA[x-axis] 
+	00024: SRP1       
+	00025: DELTAP1    
+	00026: DELTAP2    
+	00027: SHC[rp1,zp0] 
+	00028: SHC[rp1,zp0] 
+	00029: SVTCA[y-axis] 
+	00030: SRP1       
+	00031: CALL       
+	00032: SHC[rp1,zp0] 
+	00033: SHC[rp1,zp0] 
+
+	Glyph 813: off = 0x0002A324, len = 542
+	  numberOfContours:	2
+	  xMin:			3
+	  yMin:			-13
+	  xMax:			1229
+	  yMax:			1154
+
+	EndPoints
+	---------
+	  0:  44
+	  1:  74
+
+	  Length of Instructions:	332
+	00000: NPUSHB      (28):   132    67     1    52    39     1    36    71    53    71 
+	                            77    19    89     8   106    19   123     8   122    19 
+	                           166    31   181    31   196    31    10    10 
+	00030: PUSHW[1]            -64 
+	00033: PUSHB[4]              9    22    52     9 
+	00038: PUSHW[1]            -64 
+	00041: PUSHB[4]              9    22    52     8 
+	00046: PUSHW[1]            -64 
+	00049: PUSHB[4]              9    22    52     7 
+	00054: PUSHW[1]            -64 
+	00057: PUSHB[4]              9    22    52     6 
+	00062: PUSHW[1]            -64 
+	00065: NPUSHB      (33):     9    22    52     9    44   121     0   120     1   183 
+	                            44     4   120     3   134    43   150    43     3    12 
+	                            37    42     5     4     0    17    45    45    47    73 
+	                            60    60    56 
+	00100: PUSHW[1]            898 
+	00103: NPUSHB      (11):    15    62     1    47    62    63    62     2    62    62 
+	                            47 
+	00116: PUSHW[1]            937 
+	00119: NPUSHB      (10):    73    64    12    12    52    73     0    23     1    23 
+	00131: PUSHW[1]            -64 
+	00134: PUSHB[7]              9    16    52    23    23    33     1 
+	00142: PUSHW[4]            893     0    33   907 
+	00151: NPUSHB      (17):    17    58    58   207    45   223    45     2   143    45 
+	                           159    45     2    45    45    53    69 
+	00170: PUSHW[1]            879 
+	00173: PUSHB[3]             49    49    65 
+	00177: PUSHW[1]            875 
+	00180: NPUSHB      (19):     0    53     1   240    53     1   128    53   192    53 
+	                           208    53     3    32    53    48    53     2    53 
+	00201: PUSHW[1]            -64 
+	00204: PUSHB[5]              9    15    52    53     5 
+	00210: PUSHW[1]            889 
+	00213: NPUSHB      (10):   159    42   175    42     2    42    42     0    20    37 
+	00225: PUSHW[1]            880 
+	00228: PUSHB[5]             12    12     1     0    25 
+	00234: PUSHW[1]            -64 
+	00237: PUSHB[6]             16    22    52    25    25    29 
+	00244: PUSHW[4]            883    20     4   340 
+	00253: SCANCTRL   
+	00254: SCANTYPE   
+	00255: MDAP[rd]   
+	00256: MIRP[srp0,md,rd,1] 
+	00257: SHP[rp2,zp1] 
+	00258: MDAP[rd]   
+	00259: CALL       
+	00260: MDAP[rd]   
+	00261: SHP[rp1,zp0] 
+	00262: SHP[rp1,zp0] 
+	00263: MDAP[rd]   
+	00264: MIRP[nrp0,md,rd,1] 
+	00265: SRP1       
+	00266: SRP2       
+	00267: IP         
+	00268: MDAP[rd]   
+	00269: DELTAP1    
+	00270: MIRP[nrp0,md,rd,1] 
+	00271: MDAP[rd]   
+	00272: CALL       
+	00273: DELTAP1    
+	00274: DELTAP1    
+	00275: DELTAP1    
+	00276: DELTAP2    
+	00277: MIRP[nrp0,md,rd,1] 
+	00278: SHP[rp1,zp0] 
+	00279: MDAP[rd]   
+	00280: MIRP[nrp0,md,rd,1] 
+	00281: SRP1       
+	00282: SHP[rp1,zp0] 
+	00283: MDAP[rd]   
+	00284: DELTAP1    
+	00285: DELTAP1    
+	00286: SHP[rp2,zp1] 
+	00287: MDAP[rd]   
+	00288: SVTCA[y-axis] 
+	00289: MDAP[rd]   
+	00290: MIRP[nrp0,md,rd,1] 
+	00291: MDAP[rd]   
+	00292: MIRP[nrp0,md,rd,1] 
+	00293: SRP1       
+	00294: SHP[rp1,zp0] 
+	00295: MDAP[rd]   
+	00296: CALL       
+	00297: DELTAP1    
+	00298: MDAP[rd]   
+	00299: CALL       
+	00300: MIRP[srp0,md,rd,1] 
+	00301: SHP[rp2,zp1] 
+	00302: MDAP[rd]   
+	00303: DELTAP1    
+	00304: DELTAP2    
+	00305: MIRP[nrp0,md,rd,1] 
+	00306: SHP[rp1,zp0] 
+	00307: MDAP[rd]   
+	00308: RTHG       
+	00309: SRP1       
+	00310: SRP2       
+	00311: IP         
+	00312: MDAP[rd]   
+	00313: SRP1       
+	00314: SRP2       
+	00315: SLOOP      
+	00316: IP         
+	00317: IUP[y]     
+	00318: IUP[x]     
+	00319: SVTCA[y-axis] 
+	00320: DELTAP1    
+	00321: DELTAP1    
+	00322: CALL       
+	00323: CALL       
+	00324: CALL       
+	00325: CALL       
+	00326: CALL       
+	00327: SVTCA[x-axis] 
+	00328: DELTAP1    
+	00329: SVTCA[y-axis] 
+	00330: DELTAP3    
+	00331: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:                      Y-Short         On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:        XDual         Y-Short X-Short On
+	  8:        XDual Rep-  3 Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:              Rep-  2 Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                               Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:                      Y-Short X-Short On
+	 28:                      Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual               Y-Short         On
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:                                      On
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short X-Short On
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual         Y-Short         On
+	 50:  YDual XDual         Y-Short         Off
+	 51:  YDual               Y-Short X-Short On
+	 52:  YDual               Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short         On
+	 54:  YDual XDual         Y-Short         Off
+	 55:  YDual XDual         Y-Short X-Short Off
+	 56:  YDual XDual                 X-Short On
+	 57:  YDual XDual                 X-Short Off
+	 58:        XDual         Y-Short         On
+	 59:        XDual         Y-Short         Off
+	 60:                      Y-Short X-Short On
+	 61:  YDual               Y-Short X-Short Off
+	 62:  YDual                       X-Short On
+	 63:  YDual                       X-Short Off
+	 64:                      Y-Short X-Short Off
+	 65:        XDual         Y-Short         On
+	 66:        XDual         Y-Short         Off
+	 67:        XDual         Y-Short X-Short On
+	 68:        XDual         Y-Short X-Short Off
+	 69:        XDual         Y-Short         On
+	 70:        XDual         Y-Short X-Short Off
+	 71:                      Y-Short X-Short Off
+	 72:                      Y-Short X-Short Off
+	 73:  YDual                       X-Short On
+	 74:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,  1154)  ->  Abs (  1229,  1154)
+	  1: Rel (   -51,  -121)  ->  Abs (  1178,  1033)
+	  2: Rel (  -258,  -126)  ->  Abs (   920,   907)
+	  3: Rel (  -131,   -64)  ->  Abs (   789,   843)
+	  4: Rel (   -90,   -60)  ->  Abs (   699,   783)
+	  5: Rel (     0,   -27)  ->  Abs (   699,   756)
+	  6: Rel (     0,   -22)  ->  Abs (   699,   734)
+	  7: Rel (   165,  -152)  ->  Abs (   864,   582)
+	  8: Rel (    90,   -83)  ->  Abs (   954,   499)
+	  9: Rel (    94,   -98)  ->  Abs (  1048,   401)
+	 10: Rel (    24,   -55)  ->  Abs (  1072,   346)
+	 11: Rel (    14,   -78)  ->  Abs (  1086,   268)
+	 12: Rel (     0,   -45)  ->  Abs (  1086,   223)
+	 13: Rel (     0,   -81)  ->  Abs (  1086,   142)
+	 14: Rel (   -16,   -76)  ->  Abs (  1070,    66)
+	 15: Rel (   -52,   -58)  ->  Abs (  1018,     8)
+	 16: Rel (  -231,   -21)  ->  Abs (   787,   -13)
+	 17: Rel (  -204,     0)  ->  Abs (   583,   -13)
+	 18: Rel (  -425,     0)  ->  Abs (   158,   -13)
+	 19: Rel (  -155,   116)  ->  Abs (     3,   103)
+	 20: Rel (     0,   100)  ->  Abs (     3,   203)
+	 21: Rel (     0,    83)  ->  Abs (     3,   286)
+	 22: Rel (    98,   216)  ->  Abs (   101,   502)
+	 23: Rel (    35,     0)  ->  Abs (   136,   502)
+	 24: Rel (     7,     0)  ->  Abs (   143,   502)
+	 25: Rel (     0,    -6)  ->  Abs (   143,   496)
+	 26: Rel (     0,    -7)  ->  Abs (   143,   489)
+	 27: Rel (   -33,   -72)  ->  Abs (   110,   417)
+	 28: Rel (   -33,   -72)  ->  Abs (    77,   345)
+	 29: Rel (     0,   -44)  ->  Abs (    77,   301)
+	 30: Rel (     0,   -80)  ->  Abs (    77,   221)
+	 31: Rel (    88,   -84)  ->  Abs (   165,   137)
+	 32: Rel (   187,   -26)  ->  Abs (   352,   111)
+	 33: Rel (   227,     0)  ->  Abs (   579,   111)
+	 34: Rel (   153,     1)  ->  Abs (   732,   112)
+	 35: Rel (   247,    10)  ->  Abs (   979,   122)
+	 36: Rel (    44,    36)  ->  Abs (  1023,   158)
+	 37: Rel (     0,    43)  ->  Abs (  1023,   201)
+	 38: Rel (     0,    93)  ->  Abs (  1023,   294)
+	 39: Rel (  -276,   244)  ->  Abs (   747,   538)
+	 40: Rel (  -134,   119)  ->  Abs (   613,   657)
+	 41: Rel (   -12,    32)  ->  Abs (   601,   689)
+	 42: Rel (     0,    45)  ->  Abs (   601,   734)
+	 43: Rel (     0,    79)  ->  Abs (   601,   813)
+	 44: Rel (   195,   178)  ->  Abs (   796,   991)
+	 45: Rel (  -554,  -562)  ->  Abs (   242,   429)
+	 46: Rel (    11,    16)  ->  Abs (   253,   445)
+	 47: Rel (   103,    24)  ->  Abs (   356,   469)
+	 48: Rel (    95,    23)  ->  Abs (   451,   492)
+	 49: Rel (     0,    21)  ->  Abs (   451,   513)
+	 50: Rel (     0,    20)  ->  Abs (   451,   533)
+	 51: Rel (   -73,     8)  ->  Abs (   378,   541)
+	 52: Rel (   -74,     8)  ->  Abs (   304,   549)
+	 53: Rel (     0,    44)  ->  Abs (   304,   593)
+	 54: Rel (     0,    54)  ->  Abs (   304,   647)
+	 55: Rel (    87,   153)  ->  Abs (   391,   800)
+	 56: Rel (    37,     0)  ->  Abs (   428,   800)
+	 57: Rel (    36,     0)  ->  Abs (   464,   800)
+	 58: Rel (     0,   -25)  ->  Abs (   464,   775)
+	 59: Rel (     0,   -41)  ->  Abs (   464,   734)
+	 60: Rel (   -22,   -27)  ->  Abs (   442,   707)
+	 61: Rel (   -16,    15)  ->  Abs (   426,   722)
+	 62: Rel (   -24,     0)  ->  Abs (   402,   722)
+	 63: Rel (   -21,     0)  ->  Abs (   381,   722)
+	 64: Rel (   -32,   -39)  ->  Abs (   349,   683)
+	 65: Rel (     0,   -18)  ->  Abs (   349,   665)
+	 66: Rel (     0,   -29)  ->  Abs (   349,   636)
+	 67: Rel (    80,   -11)  ->  Abs (   429,   625)
+	 68: Rel (    79,   -11)  ->  Abs (   508,   614)
+	 69: Rel (     0,   -56)  ->  Abs (   508,   558)
+	 70: Rel (     1,   -41)  ->  Abs (   509,   517)
+	 71: Rel (   -48,   -78)  ->  Abs (   461,   439)
+	 72: Rel (   -39,   -30)  ->  Abs (   422,   409)
+	 73: Rel (   -47,     0)  ->  Abs (   375,   409)
+	 74: Rel (  -132,     0)  ->  Abs (   243,   409)
+
+	Glyph 814: off = 0x0002A542, len = 578
+	  numberOfContours:	2
+	  xMin:			3
+	  yMin:			-13
+	  xMax:			1229
+	  yMax:			1156
+
+	EndPoints
+	---------
+	  0:  51
+	  1:  81
+
+	  Length of Instructions:	347
+	00000: NPUSHB      (41):     6    74    70    73   133    74     3    36    78    53 
+	                            78    77     3   106     3   123     3   185    48   182 
+	                            50   196    42   212    15     9   164    15   181    15 
+	                           197    15     3     3    50    22    22    21    50     3 
+	                            41 
+	00043: PUSHW[1]            -44 
+	00046: PUSHB[4]             11    22    52    40 
+	00051: PUSHW[1]            -44 
+	00054: PUSHB[4]             11    22    52    39 
+	00059: PUSHW[1]            -44 
+	00062: PUSHB[4]             11    22    52    38 
+	00067: PUSHW[1]            -44 
+	00070: NPUSHB      (33):    11    22    52   117    29   231    31   251    38   249 
+	                            40     4     8    24     9    31   134    29     3    21 
+	                            49    27    36     4    32     0    52    52    54    80 
+	                            67    67    63 
+	00105: PUSHW[1]            898 
+	00108: NPUSHB      (11):    15    69     1    47    69    63    69     2    69    69 
+	                            54 
+	00121: PUSHW[1]            937 
+	00124: NPUSHB      (21):    80    64    10    14    52    32    80   143    80   207 
+	                            80   239    80     4    80     0     7   192     7     2 
+	                             7 
+	00147: PUSHW[1]            -64 
+	00150: PUSHB[7]              9    17    52     7     7    17    33 
+	00158: PUSHW[7]            893    32    45   907    46    17   907 
+	00173: NPUSHB      (16):     0    49    21    46    27    65    65    52    64    17 
+	                            23    52    52    52    60    76 
+	00191: PUSHW[1]            879 
+	00194: PUSHB[3]             56    56    72 
+	00198: PUSHW[3]            875    60   -64 
+	00205: NPUSHB      (17):     9    23    52    32    60     1    48    60    64    60 
+	                            80    60   192    60     4    60    36 
+	00224: PUSHW[1]            889 
+	00227: NPUSHB      (16):    31    27   223    27     2    27    27    46     4    33 
+	                            32    32    45    45    46     9 
+	00245: PUSHW[1]            -64 
+	00248: PUSHB[6]             16    22    52     9     9    13 
+	00255: PUSHW[4]            883     4     4   340 
+	00264: SCANCTRL   
+	00265: SCANTYPE   
+	00266: MDAP[rd]   
+	00267: MIRP[srp0,md,rd,1] 
+	00268: SHP[rp2,zp1] 
+	00269: MDAP[rd]   
+	00270: CALL       
+	00271: MDAP[rd]   
+	00272: ALIGNRP    
+	00273: SRP1       
+	00274: SHP[rp1,zp0] 
+	00275: MDAP[rd]   
+	00276: SHP[rp1,zp0] 
+	00277: SRP1       
+	00278: SRP2       
+	00279: IP         
+	00280: MDAP[rd]   
+	00281: DELTAP1    
+	00282: MIRP[nrp0,md,rd,1] 
+	00283: MDAP[rd]   
+	00284: DELTAP1    
+	00285: DELTAP2    
+	00286: CALL       
+	00287: MIRP[nrp0,md,rd,1] 
+	00288: SHP[rp1,zp0] 
+	00289: MDAP[rd]   
+	00290: MIRP[nrp0,md,rd,1] 
+	00291: SRP1       
+	00292: SHP[rp1,zp0] 
+	00293: MDAP[rd]   
+	00294: CALL       
+	00295: SHP[rp2,zp1] 
+	00296: MDAP[rd]   
+	00297: SRP1       
+	00298: SRP2       
+	00299: IP         
+	00300: IP         
+	00301: SVTCA[y-axis] 
+	00302: MDAP[rd]   
+	00303: MIRP[nrp0,md,rd,1] 
+	00304: MDAP[rd]   
+	00305: MIRP[nrp0,md,rd,1] 
+	00306: MDAP[rd]   
+	00307: MIRP[nrp0,md,rd,1] 
+	00308: SRP1       
+	00309: SHP[rp1,zp0] 
+	00310: MDAP[rd]   
+	00311: CALL       
+	00312: DELTAP1    
+	00313: MDAP[rd]   
+	00314: DELTAP1    
+	00315: CALL       
+	00316: MIRP[srp0,md,rd,1] 
+	00317: SHP[rp2,zp1] 
+	00318: MDAP[rd]   
+	00319: DELTAP1    
+	00320: DELTAP2    
+	00321: MIRP[nrp0,md,rd,1] 
+	00322: SHP[rp1,zp0] 
+	00323: MDAP[rd]   
+	00324: SRP1       
+	00325: SRP2       
+	00326: IP         
+	00327: MDAP[rd]   
+	00328: SRP1       
+	00329: SRP2       
+	00330: SLOOP      
+	00331: IP         
+	00332: IUP[y]     
+	00333: IUP[x]     
+	00334: SVTCA[y-axis] 
+	00335: DELTAP1    
+	00336: DELTAP1    
+	00337: CALL       
+	00338: CALL       
+	00339: CALL       
+	00340: CALL       
+	00341: SVTCA[x-axis] 
+	00342: DELTAP1    
+	00343: DELTAP1    
+	00344: DELTAP1    
+	00345: SVTCA[y-axis] 
+	00346: DELTAP2    
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual                       X-Short On
+	  2:  YDual                               Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual               Y-Short         Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:                      Y-Short X-Short On
+	 34:                      Y-Short         On
+	 35:                      Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:        XDual         Y-Short X-Short On
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short X-Short On
+	 41:        XDual Rep-  2 Y-Short X-Short Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short On
+	 46:        XDual         Y-Short         On
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short Off
+	 49:  YDual               Y-Short X-Short On
+	 50:                      Y-Short X-Short Off
+	 51:                      Y-Short X-Short Off
+	 52:                                      On
+	 53:  YDual XDual         Y-Short X-Short Off
+	 54:  YDual XDual         Y-Short X-Short On
+	 55:  YDual XDual         Y-Short X-Short Off
+	 56:  YDual XDual         Y-Short         On
+	 57:  YDual XDual         Y-Short         Off
+	 58:  YDual               Y-Short X-Short On
+	 59:  YDual               Y-Short X-Short Off
+	 60:  YDual XDual         Y-Short         On
+	 61:  YDual XDual         Y-Short X-Short Off
+	 62:  YDual XDual         Y-Short X-Short Off
+	 63:  YDual XDual                 X-Short On
+	 64:  YDual XDual                 X-Short Off
+	 65:        XDual         Y-Short         On
+	 66:        XDual         Y-Short         Off
+	 67:                      Y-Short X-Short On
+	 68:  YDual               Y-Short X-Short Off
+	 69:  YDual                       X-Short On
+	 70:  YDual                       X-Short Off
+	 71:                      Y-Short X-Short Off
+	 72:                      Y-Short X-Short On
+	 73:        XDual         Y-Short         Off
+	 74:        XDual         Y-Short X-Short On
+	 75:        XDual         Y-Short X-Short Off
+	 76:        XDual         Y-Short         On
+	 77:        XDual         Y-Short         Off
+	 78:                      Y-Short X-Short Off
+	 79:                      Y-Short X-Short Off
+	 80:  YDual                       X-Short On
+	 81:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   583,   -13)  ->  Abs (   583,   -13)
+	  1: Rel (   -12,     0)  ->  Abs (   571,   -13)
+	  2: Rel (  -375,     0)  ->  Abs (   196,   -13)
+	  3: Rel (  -193,    96)  ->  Abs (     3,    83)
+	  4: Rel (     0,   120)  ->  Abs (     3,   203)
+	  5: Rel (     0,    83)  ->  Abs (     3,   286)
+	  6: Rel (    98,   216)  ->  Abs (   101,   502)
+	  7: Rel (    35,     0)  ->  Abs (   136,   502)
+	  8: Rel (     7,     0)  ->  Abs (   143,   502)
+	  9: Rel (     0,    -6)  ->  Abs (   143,   496)
+	 10: Rel (     0,    -7)  ->  Abs (   143,   489)
+	 11: Rel (   -33,   -72)  ->  Abs (   110,   417)
+	 12: Rel (   -33,   -72)  ->  Abs (    77,   345)
+	 13: Rel (     0,   -44)  ->  Abs (    77,   301)
+	 14: Rel (     0,   -81)  ->  Abs (    77,   220)
+	 15: Rel (    89,   -83)  ->  Abs (   166,   137)
+	 16: Rel (   185,   -26)  ->  Abs (   351,   111)
+	 17: Rel (   228,     0)  ->  Abs (   579,   111)
+	 18: Rel (   164,     0)  ->  Abs (   743,   111)
+	 19: Rel (   110,    13)  ->  Abs (   853,   124)
+	 20: Rel (    62,    55)  ->  Abs (   915,   179)
+	 21: Rel (     0,    33)  ->  Abs (   915,   212)
+	 22: Rel (     0,    92)  ->  Abs (   915,   304)
+	 23: Rel (  -228,   202)  ->  Abs (   687,   506)
+	 24: Rel (   -48,    43)  ->  Abs (   639,   549)
+	 25: Rel (  -110,    99)  ->  Abs (   529,   648)
+	 26: Rel (   -22,    32)  ->  Abs (   507,   680)
+	 27: Rel (     0,    34)  ->  Abs (   507,   714)
+	 28: Rel (     0,    44)  ->  Abs (   507,   758)
+	 29: Rel (    55,   106)  ->  Abs (   562,   864)
+	 30: Rel (    74,    63)  ->  Abs (   636,   927)
+	 31: Rel (   275,   142)  ->  Abs (   911,  1069)
+	 32: Rel (   229,    87)  ->  Abs (  1140,  1156)
+	 33: Rel (   -49,  -118)  ->  Abs (  1091,  1038)
+	 34: Rel (  -276,  -135)  ->  Abs (   815,   903)
+	 35: Rel (  -207,  -101)  ->  Abs (   608,   802)
+	 36: Rel (     0,   -40)  ->  Abs (   608,   762)
+	 37: Rel (     0,   -32)  ->  Abs (   608,   730)
+	 38: Rel (    87,   -83)  ->  Abs (   695,   647)
+	 39: Rel (   201,  -191)  ->  Abs (   896,   456)
+	 40: Rel (    52,   -82)  ->  Abs (   948,   374)
+	 41: Rel (    14,   -21)  ->  Abs (   962,   353)
+	 42: Rel (   142,  -184)  ->  Abs (  1104,   169)
+	 43: Rel (    77,   -46)  ->  Abs (  1181,   123)
+	 44: Rel (    33,     0)  ->  Abs (  1214,   123)
+	 45: Rel (    15,     0)  ->  Abs (  1229,   123)
+	 46: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	 47: Rel (   -14,     0)  ->  Abs (  1215,     0)
+	 48: Rel (  -151,     0)  ->  Abs (  1064,     0)
+	 49: Rel (  -108,   195)  ->  Abs (   956,   195)
+	 50: Rel (   -29,  -126)  ->  Abs (   927,    69)
+	 51: Rel (  -155,   -82)  ->  Abs (   772,   -13)
+	 52: Rel (  -562,   378)  ->  Abs (   210,   365)
+	 53: Rel (    11,    16)  ->  Abs (   221,   381)
+	 54: Rel (   103,    25)  ->  Abs (   324,   406)
+	 55: Rel (    95,    22)  ->  Abs (   419,   428)
+	 56: Rel (     0,    21)  ->  Abs (   419,   449)
+	 57: Rel (     0,    20)  ->  Abs (   419,   469)
+	 58: Rel (   -73,     8)  ->  Abs (   346,   477)
+	 59: Rel (   -74,     8)  ->  Abs (   272,   485)
+	 60: Rel (     0,    44)  ->  Abs (   272,   529)
+	 61: Rel (     1,    55)  ->  Abs (   273,   584)
+	 62: Rel (    86,   152)  ->  Abs (   359,   736)
+	 63: Rel (    37,     0)  ->  Abs (   396,   736)
+	 64: Rel (    35,     0)  ->  Abs (   431,   736)
+	 65: Rel (     0,   -25)  ->  Abs (   431,   711)
+	 66: Rel (     0,   -41)  ->  Abs (   431,   670)
+	 67: Rel (   -21,   -27)  ->  Abs (   410,   643)
+	 68: Rel (   -16,    15)  ->  Abs (   394,   658)
+	 69: Rel (   -24,     0)  ->  Abs (   370,   658)
+	 70: Rel (   -19,     0)  ->  Abs (   351,   658)
+	 71: Rel (   -33,   -37)  ->  Abs (   318,   621)
+	 72: Rel (    -1,   -20)  ->  Abs (   317,   601)
+	 73: Rel (     0,   -29)  ->  Abs (   317,   572)
+	 74: Rel (    80,   -11)  ->  Abs (   397,   561)
+	 75: Rel (    79,   -11)  ->  Abs (   476,   550)
+	 76: Rel (     0,   -56)  ->  Abs (   476,   494)
+	 77: Rel (     0,   -41)  ->  Abs (   476,   453)
+	 78: Rel (   -48,   -80)  ->  Abs (   428,   373)
+	 79: Rel (   -40,   -28)  ->  Abs (   388,   345)
+	 80: Rel (   -45,     0)  ->  Abs (   343,   345)
+	 81: Rel (  -132,     0)  ->  Abs (   211,   345)
+
+	Glyph 815: off = 0x0002A784, len = 302
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1160
+
+	EndPoints
+	---------
+	  0:  30
+
+	  Length of Instructions:	201
+	00000: NPUSHB      (45):     9    30    37    28   233    21   231    30     4   202 
+	                            24   217     3   222    21   219    23     4   201     3 
+	                           204    21   203    22     3   100    21   116    21     2 
+	                           154     6   153     7   159    21     3    84     6    84 
+	                             7   155     5     3     7 
+	00047: PUSHW[1]            -64 
+	00050: PUSHB[4]             17    20    52     6 
+	00055: PUSHW[1]            -64 
+	00058: PUSHB[4]             17    20    52     5 
+	00063: PUSHW[1]            -64 
+	00066: PUSHB[4]             17    20    52    28 
+	00071: PUSHW[1]            -44 
+	00074: NPUSHB      (25):    15    17    52    23    44    12    14    52    22    44 
+	                            12    14    52    21    44    12    14    52     9    20 
+	                            26     4     4    13     1 
+	00101: PUSHW[1]            893 
+	00104: PUSHB[5]              0    16    15    15    14 
+	00110: PUSHW[1]            907 
+	00113: NPUSHB      (16):    13     5     6     7     8     4     9     4    25    24 
+	                            23    22    21     5    20     4 
+	00131: PUSHW[1]            889 
+	00134: PUSHB[8]             16    26     1    26    26     0    13    20 
+	00143: PUSHW[1]            880 
+	00146: PUSHB[6]              9     9     1     0    14    13 
+	00153: MDAP[rd]   
+	00154: ALIGNRP    
+	00155: MDAP[rd]   
+	00156: SHP[rp1,zp0] 
+	00157: SHP[rp1,zp0] 
+	00158: MDAP[rd]   
+	00159: MIRP[nrp0,md,rd,1] 
+	00160: SRP1       
+	00161: SRP2       
+	00162: IP         
+	00163: MDAP[rd]   
+	00164: DELTAP1    
+	00165: MIRP[nrp0,md,rd,1] 
+	00166: SRP2       
+	00167: SLOOP      
+	00168: IP         
+	00169: SRP1       
+	00170: SRP2       
+	00171: SLOOP      
+	00172: IP         
+	00173: SVTCA[y-axis] 
+	00174: MDAP[rd]   
+	00175: MIRP[srp0,md,rd,1] 
+	00176: ALIGNRP    
+	00177: SRP0       
+	00178: ALIGNRP    
+	00179: MDAP[rd]   
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: SRP2       
+	00182: SLOOP      
+	00183: IP         
+	00184: IUP[y]     
+	00185: IUP[x]     
+	00186: SVTCA[y-axis] 
+	00187: CALL       
+	00188: CALL       
+	00189: CALL       
+	00190: CALL       
+	00191: CALL       
+	00192: CALL       
+	00193: CALL       
+	00194: SVTCA[y-axis] 
+	00195: DELTAP3    
+	00196: DELTAP3    
+	00197: DELTAP2    
+	00198: DELTAP1    
+	00199: DELTAP1    
+	00200: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:                      Y-Short         On
+	  3:                      Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:        XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual                               On
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual                               On
+	 16:  YDual                               On
+	 17:  YDual XDual                 X-Short Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual               Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual               Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,  1160)  ->  Abs (  1229,  1160)
+	  1: Rel (   -49,  -118)  ->  Abs (  1180,  1042)
+	  2: Rel (  -276,  -135)  ->  Abs (   904,   907)
+	  3: Rel (  -207,  -101)  ->  Abs (   697,   806)
+	  4: Rel (     0,   -40)  ->  Abs (   697,   766)
+	  5: Rel (     0,   -36)  ->  Abs (   697,   730)
+	  6: Rel (   157,  -141)  ->  Abs (   854,   589)
+	  7: Rel (   160,  -143)  ->  Abs (  1014,   446)
+	  8: Rel (    67,  -109)  ->  Abs (  1081,   337)
+	  9: Rel (     0,  -109)  ->  Abs (  1081,   228)
+	 10: Rel (     0,  -152)  ->  Abs (  1081,    76)
+	 11: Rel (   -95,   -75)  ->  Abs (   986,     1)
+	 12: Rel (  -133,    -1)  ->  Abs (   853,     0)
+	 13: Rel (  -853,     0)  ->  Abs (     0,     0)
+	 14: Rel (     0,   123)  ->  Abs (     0,   123)
+	 15: Rel (   415,     0)  ->  Abs (   415,   123)
+	 16: Rel (   270,     0)  ->  Abs (   685,   123)
+	 17: Rel (   130,     0)  ->  Abs (   815,   123)
+	 18: Rel (   178,    13)  ->  Abs (   993,   136)
+	 19: Rel (    26,    22)  ->  Abs (  1019,   158)
+	 20: Rel (     0,    30)  ->  Abs (  1019,   188)
+	 21: Rel (     0,   107)  ->  Abs (  1019,   295)
+	 22: Rel (  -243,   216)  ->  Abs (   776,   511)
+	 23: Rel (   -29,    26)  ->  Abs (   747,   537)
+	 24: Rel (  -132,   118)  ->  Abs (   615,   655)
+	 25: Rel (   -19,    31)  ->  Abs (   596,   686)
+	 26: Rel (     0,    32)  ->  Abs (   596,   718)
+	 27: Rel (     0,    45)  ->  Abs (   596,   763)
+	 28: Rel (    55,   105)  ->  Abs (   651,   868)
+	 29: Rel (    74,    63)  ->  Abs (   725,   931)
+	 30: Rel (   274,   142)  ->  Abs (   999,  1073)
+
+	Glyph 816: off = 0x0002A8B2, len = 294
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1159
+
+	EndPoints
+	---------
+	  0:  37
+
+	  Length of Instructions:	178
+	00000: NPUSHB      (89):   227     4   230     5   230     6     3   201     7   201 
+	                            20   218     6   218     7     4   180    20   200     4 
+	                           201     5   201     6     4   152    33   169    24   169 
+	                            31   168    33     4   137    33   154     4   154     5 
+	                           154     7     4   121    31   121    33   132    20   133 
+	                            24     4    89    33   105    33   122    11     3    35 
+	                             5    35     6     2    21     4    21     5    22     6 
+	                            35     4     4    36    11    88    33     2   148    21 
+	                             1     8    13     9    16     2    33    37    15 
+	00091: PUSHW[7]            906    14    27   907    28    37   907 
+	00106: PUSHB[8]             36    33    33    28    95    18     1    18 
+	00115: PUSHW[1]            889 
+	00118: NPUSHB      (14):   111     9     1     9     9    28    15    14    14    36 
+	                            27    28    37    36 
+	00134: MDAP[rd]   
+	00135: ALIGNRP    
+	00136: MDAP[rd]   
+	00137: SHP[rp1,zp0] 
+	00138: SRP2       
+	00139: IP         
+	00140: MDAP[rd]   
+	00141: SHP[rp1,zp0] 
+	00142: SRP1       
+	00143: IP         
+	00144: MDAP[rd]   
+	00145: DELTAP1    
+	00146: MIRP[nrp0,md,rd,1] 
+	00147: DELTAP2    
+	00148: RTHG       
+	00149: SRP2       
+	00150: IP         
+	00151: MDAP[rd]   
+	00152: SVTCA[y-axis] 
+	00153: RTG        
+	00154: MDAP[rd]   
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: MDAP[rd]   
+	00157: MIRP[nrp0,md,rd,1] 
+	00158: MDAP[rd]   
+	00159: MIRP[nrp0,md,rd,1] 
+	00160: SRP2       
+	00161: IP         
+	00162: IUP[y]     
+	00163: IUP[x]     
+	00164: SVTCA[y-axis] 
+	00165: DELTAP1    
+	00166: DELTAP3    
+	00167: DELTAP1    
+	00168: SVTCA[x-axis] 
+	00169: DELTAP2    
+	00170: DELTAP2    
+	00171: DELTAP1    
+	00172: DELTAP1    
+	00173: DELTAP1    
+	00174: DELTAP1    
+	00175: DELTAP1    
+	00176: DELTAP1    
+	00177: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual                 X-Short Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual               Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short         On
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short X-Short On
+	 23:        XDual Rep-  2 Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short On
+	 28:        XDual         Y-Short         On
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual               Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                               On
+	 37:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   650,   123)  ->  Abs (   650,   123)
+	  1: Rel (    24,     0)  ->  Abs (   674,   123)
+	  2: Rel (    67,    53)  ->  Abs (   741,   176)
+	  3: Rel (     0,    41)  ->  Abs (   741,   217)
+	  4: Rel (     0,    91)  ->  Abs (   741,   308)
+	  5: Rel (  -227,   201)  ->  Abs (   514,   509)
+	  6: Rel (   -48,    43)  ->  Abs (   466,   552)
+	  7: Rel (  -109,    98)  ->  Abs (   357,   650)
+	  8: Rel (   -23,    32)  ->  Abs (   334,   682)
+	  9: Rel (     0,    35)  ->  Abs (   334,   717)
+	 10: Rel (     0,    44)  ->  Abs (   334,   761)
+	 11: Rel (    55,   106)  ->  Abs (   389,   867)
+	 12: Rel (    74,    63)  ->  Abs (   463,   930)
+	 13: Rel (   275,   142)  ->  Abs (   738,  1072)
+	 14: Rel (   229,    87)  ->  Abs (   967,  1159)
+	 15: Rel (   -49,  -118)  ->  Abs (   918,  1041)
+	 16: Rel (  -276,  -135)  ->  Abs (   642,   906)
+	 17: Rel (  -207,  -101)  ->  Abs (   435,   805)
+	 18: Rel (     0,   -40)  ->  Abs (   435,   765)
+	 19: Rel (     0,   -32)  ->  Abs (   435,   733)
+	 20: Rel (    87,   -83)  ->  Abs (   522,   650)
+	 21: Rel (   200,  -191)  ->  Abs (   722,   459)
+	 22: Rel (    53,   -82)  ->  Abs (   775,   377)
+	 23: Rel (    12,   -18)  ->  Abs (   787,   359)
+	 24: Rel (   145,  -189)  ->  Abs (   932,   170)
+	 25: Rel (    93,   -47)  ->  Abs (  1025,   123)
+	 26: Rel (    46,     0)  ->  Abs (  1071,   123)
+	 27: Rel (   158,     0)  ->  Abs (  1229,   123)
+	 28: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	 29: Rel (   -29,     0)  ->  Abs (  1200,     0)
+	 30: Rel (  -118,     0)  ->  Abs (  1082,     0)
+	 31: Rel (  -145,    35)  ->  Abs (   937,    35)
+	 32: Rel (  -113,    90)  ->  Abs (   824,   125)
+	 33: Rel (   -41,    74)  ->  Abs (   783,   199)
+	 34: Rel (   -46,  -199)  ->  Abs (   737,     0)
+	 35: Rel (  -194,     0)  ->  Abs (   543,     0)
+	 36: Rel (  -543,     0)  ->  Abs (     0,     0)
+	 37: Rel (     0,   123)  ->  Abs (     0,   123)
+
+	Glyph 817: off = 0x0002A9D8, len = 400
+	  numberOfContours:	2
+	  xMin:			10
+	  yMin:			-10
+	  xMax:			1229
+	  yMax:			1239
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  49
+
+	  Length of Instructions:	249
+	00000: PUSHB[8]             76    23   182    35   197    35     3    14 
+	00009: PUSHW[1]            -64 
+	00012: PUSHB[4]              9    22    52    13 
+	00017: PUSHW[1]            -64 
+	00020: PUSHB[4]              9    22    52    12 
+	00025: PUSHW[1]            -64 
+	00028: PUSHB[4]              9    22    52    11 
+	00033: PUSHW[1]            -64 
+	00036: NPUSHB      (33):     9    22    52    39    48   137     0   133    48   169 
+	                             6   182     8   183    49   199    14   215    14   232 
+	                             9     9    55     8    55    48     2     9     0   137 
+	                             0     2     0 
+	00071: PUSHW[1]            942 
+	00074: PUSHB[8]            175     1   202     1     2     1     1     4 
+	00083: PUSHW[1]            942 
+	00086: NPUSHB      (26):   159     3     1     3    64    21    27    52     3    64 
+	                             9    11    52     3     3    41    16    47    10     4 
+	                             6    21    27    27    37     7 
+	00114: PUSHW[4]            893     6    37   907 
+	00123: NPUSHB      (19):    21     4   143     3     1   144     3   192     3     2 
+	                            32     3    96     3     2     3     3     0    10 
+	00144: PUSHW[1]            889 
+	00147: PUSHB[5]             47    47     6    24    41 
+	00153: PUSHW[1]            880 
+	00156: NPUSHB      (20):    16    16     6     1    31     0     1    47     0   127 
+	                             0   207     0     3     0     7     6    29    29    33 
+	00178: PUSHW[4]            883    24     4   340 
+	00187: SCANCTRL   
+	00188: SCANTYPE   
+	00189: MDAP[rd]   
+	00190: MIRP[srp0,md,rd,1] 
+	00191: SHP[rp2,zp1] 
+	00192: MDAP[rd]   
+	00193: MDAP[rd]   
+	00194: SHP[rp1,zp0] 
+	00195: MDAP[rd]   
+	00196: DELTAP1    
+	00197: DELTAP2    
+	00198: SHP[rp1,zp0] 
+	00199: SRP1       
+	00200: SHP[rp1,zp0] 
+	00201: MDAP[rd]   
+	00202: MIRP[nrp0,md,rd,1] 
+	00203: SRP1       
+	00204: SRP2       
+	00205: IP         
+	00206: MDAP[rd]   
+	00207: MIRP[nrp0,md,rd,1] 
+	00208: SRP1       
+	00209: SHP[rp1,zp0] 
+	00210: MDAP[rd]   
+	00211: DELTAP1    
+	00212: DELTAP1    
+	00213: DELTAP2    
+	00214: SHP[rp1,zp0] 
+	00215: SVTCA[y-axis] 
+	00216: MDAP[rd]   
+	00217: MIRP[nrp0,md,rd,1] 
+	00218: MDAP[rd]   
+	00219: MIRP[nrp0,md,rd,1] 
+	00220: SRP1       
+	00221: SHP[rp1,zp0] 
+	00222: MDAP[rd]   
+	00223: SRP1       
+	00224: SRP2       
+	00225: SLOOP      
+	00226: IP         
+	00227: SHP[rp2,zp1] 
+	00228: MDAP[rd]   
+	00229: CALL       
+	00230: CALL       
+	00231: DELTAP2    
+	00232: MIRP[nrp0,md,rd,1] 
+	00233: SHP[rp1,zp0] 
+	00234: MDAP[rd]   
+	00235: DELTAP1    
+	00236: MIRP[srp0,md,rd,1] 
+	00237: IUP[y]     
+	00238: IUP[x]     
+	00239: SVTCA[y-axis] 
+	00240: DELTAP2    
+	00241: DELTAP1    
+	00242: DELTAP1    
+	00243: CALL       
+	00244: CALL       
+	00245: CALL       
+	00246: CALL       
+	00247: SVTCA[x-axis] 
+	00248: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short         On
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual               Y-Short         Off
+	  6:                      Y-Short         On
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short         On
+	  9:                      Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:        XDual         Y-Short X-Short On
+	 13:        XDual Rep-  2 Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:              Rep-  2 Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                               Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:                      Y-Short X-Short On
+	 32:                      Y-Short X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual               Y-Short X-Short On
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1204,  1239)  ->  Abs (  1204,  1239)
+	  1: Rel (   -32,   -92)  ->  Abs (  1172,  1147)
+	  2: Rel (  -209,   -69)  ->  Abs (   963,  1078)
+	  3: Rel (  -365,  -195)  ->  Abs (   598,   883)
+	  4: Rel (    23,    90)  ->  Abs (   621,   973)
+	  5: Rel (   352,   180)  ->  Abs (   973,  1153)
+	  6: Rel (   256,  -117)  ->  Abs (  1229,  1036)
+	  7: Rel (   -53,  -129)  ->  Abs (  1176,   907)
+	  8: Rel (  -265,  -108)  ->  Abs (   911,   799)
+	  9: Rel (  -211,   -86)  ->  Abs (   700,   713)
+	 10: Rel (     0,   -37)  ->  Abs (   700,   676)
+	 11: Rel (     0,   -13)  ->  Abs (   700,   663)
+	 12: Rel (    48,   -27)  ->  Abs (   748,   636)
+	 13: Rel (    70,   -39)  ->  Abs (   818,   597)
+	 14: Rel (   236,  -191)  ->  Abs (  1054,   406)
+	 15: Rel (    27,  -128)  ->  Abs (  1081,   278)
+	 16: Rel (     0,   -49)  ->  Abs (  1081,   229)
+	 17: Rel (     0,   -80)  ->  Abs (  1081,   149)
+	 18: Rel (   -14,   -74)  ->  Abs (  1067,    75)
+	 19: Rel (   -52,   -61)  ->  Abs (  1015,    14)
+	 20: Rel (  -237,   -24)  ->  Abs (   778,   -10)
+	 21: Rel (  -211,     0)  ->  Abs (   567,   -10)
+	 22: Rel (  -366,     0)  ->  Abs (   201,   -10)
+	 23: Rel (  -191,    97)  ->  Abs (    10,    87)
+	 24: Rel (     0,   120)  ->  Abs (    10,   207)
+	 25: Rel (     0,    83)  ->  Abs (    10,   290)
+	 26: Rel (    98,   216)  ->  Abs (   108,   506)
+	 27: Rel (    35,     0)  ->  Abs (   143,   506)
+	 28: Rel (     7,     0)  ->  Abs (   150,   506)
+	 29: Rel (     0,    -6)  ->  Abs (   150,   500)
+	 30: Rel (     0,    -7)  ->  Abs (   150,   493)
+	 31: Rel (   -33,   -72)  ->  Abs (   117,   421)
+	 32: Rel (   -33,   -72)  ->  Abs (    84,   349)
+	 33: Rel (     0,   -44)  ->  Abs (    84,   305)
+	 34: Rel (     0,   -80)  ->  Abs (    84,   225)
+	 35: Rel (    88,   -85)  ->  Abs (   172,   140)
+	 36: Rel (   175,   -25)  ->  Abs (   347,   115)
+	 37: Rel (   216,     0)  ->  Abs (   563,   115)
+	 38: Rel (   172,     0)  ->  Abs (   735,   115)
+	 39: Rel (   239,    12)  ->  Abs (   974,   127)
+	 40: Rel (    44,    36)  ->  Abs (  1018,   163)
+	 41: Rel (     0,    44)  ->  Abs (  1018,   207)
+	 42: Rel (     0,    46)  ->  Abs (  1018,   253)
+	 43: Rel (  -136,   164)  ->  Abs (   882,   417)
+	 44: Rel (  -133,    68)  ->  Abs (   749,   485)
+	 45: Rel (  -111,    57)  ->  Abs (   638,   542)
+	 46: Rel (   -42,    26)  ->  Abs (   596,   568)
+	 47: Rel (     0,    46)  ->  Abs (   596,   614)
+	 48: Rel (     0,   102)  ->  Abs (   596,   716)
+	 49: Rel (   186,   151)  ->  Abs (   782,   867)
+
+	Glyph 818: off = 0x0002AB68, len = 440
+	  numberOfContours:	2
+	  xMin:			10
+	  yMin:			-8
+	  xMax:			1229
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  58
+
+	  Length of Instructions:	263
+	00000: NPUSHB      (14):    76    30   136    47   137    48   166    42   182    42 
+	                           198    42     6    50 
+	00016: PUSHW[1]            -44 
+	00019: PUSHB[4]             11    22    52    14 
+	00024: PUSHW[1]            -44 
+	00027: PUSHB[4]             11    22    52    13 
+	00032: PUSHW[1]            -44 
+	00035: PUSHB[4]             11    22    52    12 
+	00040: PUSHW[1]            -44 
+	00043: NPUSHB      (53):    11    22    52    38    14     1    39    56    54     8 
+	                            54    56    54    58   102     1   118     3   119     4 
+	                           135    56   198    14   231    49   226    50    11    56 
+	                             8    56    58   198    14     3   104     9   121    13 
+	                           121    14     3    39    15    42    26    73    24     3 
+	                            24    16     0 
+	00098: PUSHW[1]            942 
+	00101: NPUSHB      (18):    31     1   223     1     2    31     1   159     1     2 
+	                           175     1   198     1     2     1     1     4 
+	00121: PUSHW[1]            942 
+	00124: NPUSHB      (25):    95     3     1     3    64    31    33    52     3    64 
+	                            19    25    52     3    64     9    11    52     3     3 
+	                             6    34    34    44     7 
+	00151: PUSHW[1]            893 
+	00154: PUSHB[4]              6    20   224    44 
+	00159: PUSHW[1]            907 
+	00162: NPUSHB      (10):    27     3     4     4    54     1     0     0     6    10 
+	00174: PUSHW[1]            889 
+	00177: NPUSHB      (12):    54    54    21    31     7     6     6    20    21    36 
+	                            36    40 
+	00191: PUSHW[4]            883    31     4   340 
+	00200: SCANCTRL   
+	00201: SCANTYPE   
+	00202: MDAP[rd]   
+	00203: MIRP[srp0,md,rd,1] 
+	00204: SHP[rp2,zp1] 
+	00205: MDAP[rd]   
+	00206: MDAP[rd]   
+	00207: ALIGNRP    
+	00208: SHP[rp1,zp0] 
+	00209: MDAP[rd]   
+	00210: SHP[rp1,zp0] 
+	00211: SRP1       
+	00212: SRP2       
+	00213: IP         
+	00214: MDAP[rd]   
+	00215: MIRP[nrp0,md,rd,1] 
+	00216: SRP1       
+	00217: SHP[rp1,zp0] 
+	00218: MDAP[rd]   
+	00219: SHP[rp1,zp0] 
+	00220: SRP1       
+	00221: SHP[rp1,zp0] 
+	00222: MDAP[rd]   
+	00223: SHP[rp1,zp0] 
+	00224: SVTCA[y-axis] 
+	00225: MDAP[rd]   
+	00226: MIRP[srp0,md,rd,1] 
+	00227: MIRP[nrp0,nmd,rd,0] 
+	00228: MDAP[rd]   
+	00229: MIRP[nrp0,md,rd,1] 
+	00230: SRP1       
+	00231: SHP[rp1,zp0] 
+	00232: MDAP[rd]   
+	00233: SRP1       
+	00234: SHP[rp1,zp0] 
+	00235: MDAP[rd]   
+	00236: CALL       
+	00237: CALL       
+	00238: CALL       
+	00239: DELTAP3    
+	00240: MIRP[nrp0,md,rd,1] 
+	00241: SHP[rp1,zp0] 
+	00242: MDAP[rd]   
+	00243: DELTAP1    
+	00244: DELTAP2    
+	00245: DELTAP3    
+	00246: MIRP[nrp0,md,rd,1] 
+	00247: SVTCA[x-axis] 
+	00248: SHPIX      
+	00249: IUP[y]     
+	00250: IUP[x]     
+	00251: SVTCA[y-axis] 
+	00252: DELTAP1    
+	00253: DELTAP1    
+	00254: DELTAP1    
+	00255: DELTAP1    
+	00256: DELTAP2    
+	00257: CALL       
+	00258: CALL       
+	00259: CALL       
+	00260: CALL       
+	00261: SVTCA[x-axis] 
+	00262: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short         On
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual               Y-Short         Off
+	  6:        XDual         Y-Short X-Short On
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short         On
+	  9:                      Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:        XDual         Y-Short X-Short On
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short On
+	 16:        XDual Rep-  2 Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short On
+	 21:        XDual         Y-Short         On
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:                      Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                               Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short On
+	 39:                      Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:        XDual         Y-Short X-Short Off
+	 43:        XDual         Y-Short X-Short Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short Off
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short         On
+	 49:  YDual XDual         Y-Short         Off
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual               Y-Short X-Short On
+	 52:  YDual               Y-Short X-Short Off
+	 53:  YDual               Y-Short X-Short Off
+	 54:  YDual               Y-Short X-Short On
+	 55:  YDual XDual         Y-Short         Off
+	 56:  YDual XDual         Y-Short X-Short Off
+	 57:  YDual XDual         Y-Short X-Short Off
+	 58:  YDual               Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1026,  1255)  ->  Abs (  1026,  1255)
+	  1: Rel (   -32,   -92)  ->  Abs (   994,  1163)
+	  2: Rel (  -202,   -67)  ->  Abs (   792,  1096)
+	  3: Rel (  -374,  -200)  ->  Abs (   418,   896)
+	  4: Rel (    23,    90)  ->  Abs (   441,   986)
+	  5: Rel (   362,   186)  ->  Abs (   803,  1172)
+	  6: Rel (   240,  -105)  ->  Abs (  1043,  1067)
+	  7: Rel (   -49,  -118)  ->  Abs (   994,   949)
+	  8: Rel (  -276,  -135)  ->  Abs (   718,   814)
+	  9: Rel (  -201,   -98)  ->  Abs (   517,   716)
+	 10: Rel (     0,   -40)  ->  Abs (   517,   676)
+	 11: Rel (     0,   -12)  ->  Abs (   517,   664)
+	 12: Rel (    50,   -29)  ->  Abs (   567,   635)
+	 13: Rel (   194,  -116)  ->  Abs (   761,   519)
+	 14: Rel (   108,  -142)  ->  Abs (   869,   377)
+	 15: Rel (   110,  -145)  ->  Abs (   979,   232)
+	 16: Rel (    38,   -48)  ->  Abs (  1017,   184)
+	 17: Rel (    62,   -43)  ->  Abs (  1079,   141)
+	 18: Rel (    56,   -18)  ->  Abs (  1135,   123)
+	 19: Rel (    30,     0)  ->  Abs (  1165,   123)
+	 20: Rel (    64,     0)  ->  Abs (  1229,   123)
+	 21: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	 22: Rel (   -13,     0)  ->  Abs (  1216,     0)
+	 23: Rel (  -148,     0)  ->  Abs (  1068,     0)
+	 24: Rel (  -150,   120)  ->  Abs (   918,   120)
+	 25: Rel (   -42,    79)  ->  Abs (   876,   199)
+	 26: Rel (   -47,  -207)  ->  Abs (   829,    -8)
+	 27: Rel (  -227,     0)  ->  Abs (   602,    -8)
+	 28: Rel (  -263,     0)  ->  Abs (   339,    -8)
+	 29: Rel (  -219,    26)  ->  Abs (   120,    18)
+	 30: Rel (  -110,    97)  ->  Abs (    10,   115)
+	 31: Rel (     0,    92)  ->  Abs (    10,   207)
+	 32: Rel (     0,    83)  ->  Abs (    10,   290)
+	 33: Rel (    98,   216)  ->  Abs (   108,   506)
+	 34: Rel (    35,     0)  ->  Abs (   143,   506)
+	 35: Rel (     7,     0)  ->  Abs (   150,   506)
+	 36: Rel (     0,    -6)  ->  Abs (   150,   500)
+	 37: Rel (     0,    -7)  ->  Abs (   150,   493)
+	 38: Rel (   -33,   -72)  ->  Abs (   117,   421)
+	 39: Rel (   -33,   -72)  ->  Abs (    84,   349)
+	 40: Rel (     0,   -44)  ->  Abs (    84,   305)
+	 41: Rel (     0,   -79)  ->  Abs (    84,   226)
+	 42: Rel (    87,   -86)  ->  Abs (   171,   140)
+	 43: Rel (   169,   -24)  ->  Abs (   340,   116)
+	 44: Rel (   220,     0)  ->  Abs (   560,   116)
+	 45: Rel (   105,     0)  ->  Abs (   665,   116)
+	 46: Rel (    98,    10)  ->  Abs (   763,   126)
+	 47: Rel (    66,    44)  ->  Abs (   829,   170)
+	 48: Rel (     0,    38)  ->  Abs (   829,   208)
+	 49: Rel (     0,    55)  ->  Abs (   829,   263)
+	 50: Rel (  -163,   191)  ->  Abs (   666,   454)
+	 51: Rel (  -153,    69)  ->  Abs (   513,   523)
+	 52: Rel (   -75,    33)  ->  Abs (   438,   556)
+	 53: Rel (   -27,    31)  ->  Abs (   411,   587)
+	 54: Rel (    -1,    38)  ->  Abs (   410,   625)
+	 55: Rel (     0,    45)  ->  Abs (   410,   670)
+	 56: Rel (    55,   105)  ->  Abs (   465,   775)
+	 57: Rel (    74,    63)  ->  Abs (   539,   838)
+	 58: Rel (   275,   142)  ->  Abs (   814,   980)
+
+	Glyph 819: off = 0x0002AD20, len = 342
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1247
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  37
+
+	  Length of Instructions:	220
+	00000: NPUSHB      (35):     9    37    39    36   137     0   133    36   169     6 
+	                           181     8   187    33   182    37   214    31   233     9 
+	                            10   171    33   199    31     2    54     8    55    36 
+	                             2     9     0     1    15 
+	00037: PUSHW[1]            -64 
+	00040: PUSHB[4]              9    22    52    14 
+	00045: PUSHW[1]            -64 
+	00048: PUSHB[4]              9    22    52    13 
+	00053: PUSHW[1]            -64 
+	00056: PUSHB[4]              9    22    52    12 
+	00061: PUSHW[1]            -64 
+	00064: PUSHB[4]              9    22    52     0 
+	00069: PUSHW[1]            942 
+	00072: PUSHB[8]            175     1   203     1     2     1     1     4 
+	00081: PUSHW[1]            942 
+	00084: NPUSHB      (27):     3    64    21    27    52   159     3     1   159     3 
+	                           220     3     2     3    64     9    11    52     3     3 
+	                            29    17    35    10     4    23     7 
+	00113: PUSHW[4]            893     6    24   907 
+	00122: NPUSHB      (16):    23     4    96     3   192     3     2    32     3   144 
+	                             3     2     3     3     0    10 
+	00140: PUSHW[1]            889 
+	00143: PUSHB[5]             35    35     6    23    29 
+	00149: PUSHW[1]            880 
+	00152: NPUSHB      (10):    17    17     6     1     0     7     6    24    23     5 
+	00164: PUSHW[1]            340 
+	00167: SCANCTRL   
+	00168: SCANTYPE   
+	00169: MDAP[rd]   
+	00170: ALIGNRP    
+	00171: MDAP[rd]   
+	00172: SHP[rp1,zp0] 
+	00173: MDAP[rd]   
+	00174: SHP[rp1,zp0] 
+	00175: SRP1       
+	00176: SHP[rp1,zp0] 
+	00177: MDAP[rd]   
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: SRP1       
+	00180: SRP2       
+	00181: IP         
+	00182: MDAP[rd]   
+	00183: MIRP[nrp0,md,rd,1] 
+	00184: SRP1       
+	00185: SHP[rp1,zp0] 
+	00186: MDAP[rd]   
+	00187: DELTAP1    
+	00188: DELTAP1    
+	00189: SHP[rp1,zp0] 
+	00190: SVTCA[y-axis] 
+	00191: MDAP[rd]   
+	00192: MIRP[nrp0,md,rd,1] 
+	00193: MDAP[rd]   
+	00194: MIRP[nrp0,md,rd,1] 
+	00195: SRP2       
+	00196: SLOOP      
+	00197: IP         
+	00198: SHP[rp1,zp0] 
+	00199: MDAP[rd]   
+	00200: CALL       
+	00201: DELTAP2    
+	00202: DELTAP3    
+	00203: CALL       
+	00204: MIRP[nrp0,md,rd,1] 
+	00205: SHP[rp1,zp0] 
+	00206: MDAP[rd]   
+	00207: DELTAP1    
+	00208: MIRP[nrp0,md,rd,1] 
+	00209: IUP[y]     
+	00210: IUP[x]     
+	00211: CALL       
+	00212: CALL       
+	00213: CALL       
+	00214: CALL       
+	00215: SVTCA[y-axis] 
+	00216: DELTAP2    
+	00217: DELTAP1    
+	00218: DELTAP1    
+	00219: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short         On
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual               Y-Short         Off
+	  6:        XDual         Y-Short X-Short On
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short         On
+	  9:                      Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:        XDual         Y-Short X-Short On
+	 13:        XDual Rep-  3 Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:              Rep-  2 Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                               On
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual                               On
+	 26:  YDual XDual                 X-Short Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual               Y-Short X-Short On
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1223,  1247)  ->  Abs (  1223,  1247)
+	  1: Rel (   -31,   -92)  ->  Abs (  1192,  1155)
+	  2: Rel (  -211,   -69)  ->  Abs (   981,  1086)
+	  3: Rel (  -364,  -195)  ->  Abs (   617,   891)
+	  4: Rel (    24,    90)  ->  Abs (   641,   981)
+	  5: Rel (   354,   181)  ->  Abs (   995,  1162)
+	  6: Rel (   234,  -118)  ->  Abs (  1229,  1044)
+	  7: Rel (   -53,  -129)  ->  Abs (  1176,   915)
+	  8: Rel (  -267,  -108)  ->  Abs (   909,   807)
+	  9: Rel (  -210,   -85)  ->  Abs (   699,   722)
+	 10: Rel (     0,   -38)  ->  Abs (   699,   684)
+	 11: Rel (     0,   -13)  ->  Abs (   699,   671)
+	 12: Rel (    48,   -26)  ->  Abs (   747,   645)
+	 13: Rel (    63,   -34)  ->  Abs (   810,   611)
+	 14: Rel (   171,  -136)  ->  Abs (   981,   475)
+	 15: Rel (    64,   -65)  ->  Abs (  1045,   410)
+	 16: Rel (    34,  -103)  ->  Abs (  1079,   307)
+	 17: Rel (     0,   -69)  ->  Abs (  1079,   238)
+	 18: Rel (     0,   -96)  ->  Abs (  1079,   142)
+	 19: Rel (   -19,   -77)  ->  Abs (  1060,    65)
+	 20: Rel (   -59,   -42)  ->  Abs (  1001,    23)
+	 21: Rel (  -172,   -23)  ->  Abs (   829,     0)
+	 22: Rel (  -145,     0)  ->  Abs (   684,     0)
+	 23: Rel (  -684,     0)  ->  Abs (     0,     0)
+	 24: Rel (     0,   123)  ->  Abs (     0,   123)
+	 25: Rel (   643,     0)  ->  Abs (   643,   123)
+	 26: Rel (   148,     0)  ->  Abs (   791,   123)
+	 27: Rel (   183,    14)  ->  Abs (   974,   137)
+	 28: Rel (    42,    32)  ->  Abs (  1016,   169)
+	 29: Rel (     0,    38)  ->  Abs (  1016,   207)
+	 30: Rel (     0,    54)  ->  Abs (  1016,   261)
+	 31: Rel (  -136,   166)  ->  Abs (   880,   427)
+	 32: Rel (  -132,    67)  ->  Abs (   748,   494)
+	 33: Rel (  -107,    55)  ->  Abs (   641,   549)
+	 34: Rel (   -45,    26)  ->  Abs (   596,   575)
+	 35: Rel (     0,    48)  ->  Abs (   596,   623)
+	 36: Rel (     0,   101)  ->  Abs (   596,   724)
+	 37: Rel (   185,   151)  ->  Abs (   781,   875)
+
+	Glyph 820: off = 0x0002AE76, len = 372
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1252
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  42
+
+	  Length of Instructions:	231
+	00000: NPUSHB      (65):   137     0   244    12     2   182    20   182    28   198 
+	                            27     3   153    12   165    12   164    27     3   117 
+	                            27   120    37   154    11     3   100    27   104    37 
+	                           118    12     3    53    18    53    29   102    12     3 
+	                            10    37    37    29   135    18     3    10    13     9 
+	                            20     9    23     3    38    20     1    16    12    22 
+	                            20    35    12     3     0 
+	00067: PUSHW[1]            942 
+	00070: NPUSHB      (16):     1    64    31    34    52    95     1   223     1     2 
+	                           175     1     1     1     1     4 
+	00088: PUSHW[1]            942 
+	00091: NPUSHB      (24):     3    64    19    24    52    15     3   143     3     2 
+	                             3    64     9    11    52     3     3    10    39    16 
+	                            25     4    42    22 
+	00117: PUSHW[7]            893    21    33   907    34     6   907 
+	00132: NPUSHB      (13):    42     4     3     3    16     1     0     0    21    39 
+	                            10    34    25 
+	00147: PUSHW[1]            889 
+	00150: NPUSHB      (15):    16    16    34    42    22    63    21     1    21    21 
+	                            33    34     6    42     5 
+	00167: PUSHW[1]            340 
+	00170: SCANCTRL   
+	00171: SCANTYPE   
+	00172: MDAP[rd]   
+	00173: ALIGNRP    
+	00174: MDAP[rd]   
+	00175: ALIGNRP    
+	00176: SHP[rp1,zp0] 
+	00177: MDAP[rd]   
+	00178: DELTAP1    
+	00179: SHP[rp1,zp0] 
+	00180: SRP1       
+	00181: SRP2       
+	00182: IP         
+	00183: MDAP[rd]   
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: SRP2       
+	00186: IP         
+	00187: IP         
+	00188: SRP1       
+	00189: SHP[rp1,zp0] 
+	00190: MDAP[rd]   
+	00191: SHP[rp1,zp0] 
+	00192: SRP1       
+	00193: SHP[rp1,zp0] 
+	00194: MDAP[rd]   
+	00195: SHP[rp1,zp0] 
+	00196: SVTCA[y-axis] 
+	00197: MDAP[rd]   
+	00198: MIRP[nrp0,md,rd,1] 
+	00199: MDAP[rd]   
+	00200: MIRP[nrp0,md,rd,1] 
+	00201: MDAP[rd]   
+	00202: MIRP[nrp0,md,rd,1] 
+	00203: SRP2       
+	00204: SLOOP      
+	00205: IP         
+	00206: SHP[rp1,zp0] 
+	00207: MDAP[rd]   
+	00208: CALL       
+	00209: DELTAP2    
+	00210: CALL       
+	00211: MIRP[nrp0,md,rd,1] 
+	00212: SHP[rp1,zp0] 
+	00213: MDAP[rd]   
+	00214: DELTAP1    
+	00215: DELTAP3    
+	00216: CALL       
+	00217: MIRP[nrp0,md,rd,1] 
+	00218: IUP[y]     
+	00219: IUP[x]     
+	00220: SVTCA[y-axis] 
+	00221: DELTAP2    
+	00222: DELTAP2    
+	00223: DELTAP1    
+	00224: DELTAP1    
+	00225: DELTAP1    
+	00226: DELTAP1    
+	00227: DELTAP1    
+	00228: DELTAP1    
+	00229: DELTAP1    
+	00230: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short         On
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual               Y-Short         Off
+	  6:                                      On
+	  7:  YDual                               On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 20:  YDual               Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:                      Y-Short X-Short On
+	 23:                      Y-Short         On
+	 24:                      Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:        XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short On
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short On
+	 34:        XDual         Y-Short         On
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual               Y-Short X-Short On
+	 40:                      Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   937,  1252)  ->  Abs (   937,  1252)
+	  1: Rel (   -31,   -92)  ->  Abs (   906,  1160)
+	  2: Rel (  -211,   -70)  ->  Abs (   695,  1090)
+	  3: Rel (  -364,  -194)  ->  Abs (   331,   896)
+	  4: Rel (    24,    90)  ->  Abs (   355,   986)
+	  5: Rel (   355,   181)  ->  Abs (   710,  1167)
+	  6: Rel (  -710, -1044)  ->  Abs (     0,   123)
+	  7: Rel (   649,     0)  ->  Abs (   649,   123)
+	  8: Rel (    24,     0)  ->  Abs (   673,   123)
+	  9: Rel (    61,    46)  ->  Abs (   734,   169)
+	 10: Rel (     0,    39)  ->  Abs (   734,   208)
+	 11: Rel (     0,    55)  ->  Abs (   734,   263)
+	 12: Rel (  -165,   192)  ->  Abs (   569,   455)
+	 13: Rel (  -151,    68)  ->  Abs (   418,   523)
+	 14: Rel (   -75,    33)  ->  Abs (   343,   556)
+	 15: Rel (   -28,    31)  ->  Abs (   315,   587)
+	 16: Rel (     0,    38)  ->  Abs (   315,   625)
+	 17: Rel (     1,    45)  ->  Abs (   316,   670)
+	 18: Rel (    55,   105)  ->  Abs (   371,   775)
+	 19: Rel (    74,    63)  ->  Abs (   445,   838)
+	 20: Rel (   274,   142)  ->  Abs (   719,   980)
+	 21: Rel (   229,    87)  ->  Abs (   948,  1067)
+	 22: Rel (   -49,  -118)  ->  Abs (   899,   949)
+	 23: Rel (  -276,  -135)  ->  Abs (   623,   814)
+	 24: Rel (  -201,   -98)  ->  Abs (   422,   716)
+	 25: Rel (     0,   -40)  ->  Abs (   422,   676)
+	 26: Rel (     0,   -12)  ->  Abs (   422,   664)
+	 27: Rel (    50,   -29)  ->  Abs (   472,   635)
+	 28: Rel (   194,  -115)  ->  Abs (   666,   520)
+	 29: Rel (   108,  -143)  ->  Abs (   774,   377)
+	 30: Rel (   126,  -169)  ->  Abs (   900,   208)
+	 31: Rel (   100,   -85)  ->  Abs (  1000,   123)
+	 32: Rel (    70,     0)  ->  Abs (  1070,   123)
+	 33: Rel (   159,     0)  ->  Abs (  1229,   123)
+	 34: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	 35: Rel (   -30,     0)  ->  Abs (  1199,     0)
+	 36: Rel (  -149,     0)  ->  Abs (  1050,     0)
+	 37: Rel (  -136,    48)  ->  Abs (   914,    48)
+	 38: Rel (   -96,    86)  ->  Abs (   818,   134)
+	 39: Rel (   -36,    65)  ->  Abs (   782,   199)
+	 40: Rel (   -46,  -199)  ->  Abs (   736,     0)
+	 41: Rel (  -194,     0)  ->  Abs (   542,     0)
+	 42: Rel (  -542,     0)  ->  Abs (     0,     0)
+
+	Glyph 821: off = 0x0002AFEA, len = 264
+	  numberOfContours:	1
+	  xMin:			170
+	  yMin:			-244
+	  xMax:			1071
+	  yMax:			665
+
+	EndPoints
+	---------
+	  0:  43
+
+	  Length of Instructions:	138
+	00000: NPUSHB      (18):    12    16   233    39     2   170    34   201    34   216 
+	                            34     3    87    31   182     7     2    31 
+	00020: PUSHW[1]            -16 
+	00023: NPUSHB      (31):    21    23    52    12    11    10     9     8     7     6 
+	                             5     4     9    31    32    33    34    35    36    37 
+	                            38     8     2    29    20    20    40    15     0     0 
+	                             2 
+	00056: PUSHW[8]            907    40   917    29   909    15     5   876 
+	00073: PUSHB[7]             37    37    11    17    42    42    32 
+	00081: PUSHW[1]            883 
+	00084: PUSHB[4]             11    22    22    26 
+	00089: PUSHW[4]            883    17     4   340 
+	00098: SCANCTRL   
+	00099: SCANTYPE   
+	00100: MDAP[rd]   
+	00101: MIRP[srp0,md,rd,1] 
+	00102: SHP[rp2,zp1] 
+	00103: MDAP[rd]   
+	00104: MDAP[rd]   
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: SHP[rp1,zp0] 
+	00107: MDAP[rd]   
+	00108: SRP1       
+	00109: SRP2       
+	00110: IP         
+	00111: MDAP[rd]   
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: SVTCA[y-axis] 
+	00114: MDAP[rd]   
+	00115: MIRP[nrp0,md,rd,1] 
+	00116: MIAP[rd+ci] 
+	00117: MIRP[srp0,md,rd,1] 
+	00118: SHP[rp2,zp1] 
+	00119: MDAP[rd]   
+	00120: SRP1       
+	00121: SRP2       
+	00122: IP         
+	00123: MDAP[rd]   
+	00124: SRP1       
+	00125: SRP2       
+	00126: SLOOP      
+	00127: IP         
+	00128: SLOOP      
+	00129: IP         
+	00130: IUP[y]     
+	00131: IUP[x]     
+	00132: SVTCA[y-axis] 
+	00133: CALL       
+	00134: DELTAP1    
+	00135: DELTAP1    
+	00136: SVTCA[x-axis] 
+	00137: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:                      Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:        XDual         Y-Short X-Short On
+	  8:        XDual Rep-  2 Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short         Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                               Off
+	 17:        XDual                         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual               Y-Short         Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual       Rep-  2 Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:        XDual                 X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1043,   516)  ->  Abs (  1043,   516)
+	  1: Rel (   -35,    26)  ->  Abs (  1008,   542)
+	  2: Rel (   -51,     0)  ->  Abs (   957,   542)
+	  3: Rel (   -57,     0)  ->  Abs (   900,   542)
+	  4: Rel (  -195,  -123)  ->  Abs (   705,   419)
+	  5: Rel (     0,   -59)  ->  Abs (   705,   360)
+	  6: Rel (     0,   -35)  ->  Abs (   705,   325)
+	  7: Rel (    94,   -17)  ->  Abs (   799,   308)
+	  8: Rel (   108,   -19)  ->  Abs (   907,   289)
+	  9: Rel (    99,   -29)  ->  Abs (  1006,   260)
+	 10: Rel (    63,   -70)  ->  Abs (  1069,   190)
+	 11: Rel (     0,   -53)  ->  Abs (  1069,   137)
+	 12: Rel (     0,   -51)  ->  Abs (  1069,    86)
+	 13: Rel (  -116,  -242)  ->  Abs (   953,  -156)
+	 14: Rel (  -274,   -88)  ->  Abs (   679,  -244)
+	 15: Rel (  -124,     0)  ->  Abs (   555,  -244)
+	 16: Rel (  -385,     0)  ->  Abs (   170,  -244)
+	 17: Rel (     0,   284)  ->  Abs (   170,    40)
+	 18: Rel (     0,   100)  ->  Abs (   170,   140)
+	 19: Rel (    96,   248)  ->  Abs (   266,   388)
+	 20: Rel (    37,     0)  ->  Abs (   303,   388)
+	 21: Rel (    10,     0)  ->  Abs (   313,   388)
+	 22: Rel (     0,   -15)  ->  Abs (   313,   373)
+	 23: Rel (     0,   -12)  ->  Abs (   313,   361)
+	 24: Rel (   -35,   -89)  ->  Abs (   278,   272)
+	 25: Rel (   -35,   -90)  ->  Abs (   243,   182)
+	 26: Rel (     0,   -59)  ->  Abs (   243,   123)
+	 27: Rel (     0,  -117)  ->  Abs (   243,     6)
+	 28: Rel (   143,  -117)  ->  Abs (   386,  -111)
+	 29: Rel (   193,     0)  ->  Abs (   579,  -111)
+	 30: Rel (   134,     0)  ->  Abs (   713,  -111)
+	 31: Rel (   286,   103)  ->  Abs (   999,    -8)
+	 32: Rel (     0,    73)  ->  Abs (   999,    65)
+	 33: Rel (     0,    39)  ->  Abs (   999,   104)
+	 34: Rel (   -67,    51)  ->  Abs (   932,   155)
+	 35: Rel (  -205,    33)  ->  Abs (   727,   188)
+	 36: Rel (   -70,    46)  ->  Abs (   657,   234)
+	 37: Rel (     0,    37)  ->  Abs (   657,   271)
+	 38: Rel (     0,   134)  ->  Abs (   657,   405)
+	 39: Rel (   216,   260)  ->  Abs (   873,   665)
+	 40: Rel (   126,     0)  ->  Abs (   999,   665)
+	 41: Rel (    72,     0)  ->  Abs (  1071,   665)
+	 42: Rel (     0,   -57)  ->  Abs (  1071,   608)
+	 43: Rel (     0,   -50)  ->  Abs (  1071,   558)
+
+	Glyph 822: off = 0x0002B0F2, len = 288
+	  numberOfContours:	1
+	  xMin:			112
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			123
+
+	EndPoints
+	---------
+	  0:  39
+
+	  Length of Instructions:	174
+	00000: NPUSHB      (11):    16    64    17    20    52    16    32    21    22    52 
+	                            27 
+	00013: PUSHW[1]            -24 
+	00016: PUSHB[4]             15    16    52    27 
+	00021: PUSHW[1]            -32 
+	00024: NPUSHB      (27):    25    27    52    11    15    25    15     2   205    32 
+	                           221    32   228     9   228    32     4    74    32    90 
+	                            32    99     9   115     9     4    32 
+	00053: PUSHW[1]            -24 
+	00056: PUSHB[4]             35    38    52     9 
+	00061: PUSHW[1]            -48 
+	00064: PUSHB[4]             32    38    52     9 
+	00069: PUSHW[1]            -32 
+	00072: PUSHB[4]             39    40    52     9 
+	00077: PUSHW[1]            -16 
+	00080: NPUSHB      (10):    53    56    52    32     9    28     0     4     4    39 
+	00092: PUSHW[1]            907 
+	00095: PUSHB[6]              0    15    20     1    20    28 
+	00102: PUSHW[4]            912    14     6   884 
+	00111: PUSHB[7]             35    35    11    17    39     0    31 
+	00119: PUSHW[1]            888 
+	00122: PUSHB[4]             11    22    22    26 
+	00127: PUSHW[1]            884 
+	00130: PUSHB[2]             17     4 
+	00133: SCANTYPE   
+	00134: MDAP[rd]   
+	00135: MIRP[srp0,md,rd,1] 
+	00136: SHP[rp2,zp1] 
+	00137: MDAP[rd]   
+	00138: MDAP[rd]   
+	00139: MIRP[nrp0,md,rd,1] 
+	00140: MDAP[rd]   
+	00141: ALIGNRP    
+	00142: SRP1       
+	00143: SRP2       
+	00144: IP         
+	00145: MDAP[rd]   
+	00146: MIRP[nrp0,md,rd,1] 
+	00147: SVTCA[y-axis] 
+	00148: MDAP[rd]   
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: MDAP[rd]   
+	00151: DELTAP1    
+	00152: MDAP[rd]   
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: SHP[rp1,zp0] 
+	00155: MDAP[rd]   
+	00156: SRP1       
+	00157: SRP2       
+	00158: IP         
+	00159: IP         
+	00160: CALL       
+	00161: CALL       
+	00162: CALL       
+	00163: CALL       
+	00164: DELTAP1    
+	00165: DELTAP1    
+	00166: IUP[y]     
+	00167: IUP[x]     
+	00168: SVTCA[y-axis] 
+	00169: DELTAP1    
+	00170: CALL       
+	00171: CALL       
+	00172: CALL       
+	00173: CALL       
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short         Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual                         Off
+	 28:  YDual                               On
+	 29:  YDual XDual                 X-Short Off
+	 30:  YDual               Y-Short         Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual               Y-Short X-Short On
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,     0)  ->  Abs (  1229,     0)
+	  1: Rel (   -44,     0)  ->  Abs (  1185,     0)
+	  2: Rel (   -63,     4)  ->  Abs (  1122,     4)
+	  3: Rel (   -64,     4)  ->  Abs (  1058,     8)
+	  4: Rel (   -76,     0)  ->  Abs (   982,     8)
+	  5: Rel (  -225,     0)  ->  Abs (   757,     8)
+	  6: Rel (     0,   -69)  ->  Abs (   757,   -61)
+	  7: Rel (     0,   -16)  ->  Abs (   757,   -77)
+	  8: Rel (    70,   -15)  ->  Abs (   827,   -92)
+	  9: Rel (   138,   -29)  ->  Abs (   965,  -121)
+	 10: Rel (    62,   -51)  ->  Abs (  1027,  -172)
+	 11: Rel (     0,   -29)  ->  Abs (  1027,  -201)
+	 12: Rel (     0,  -158)  ->  Abs (  1027,  -359)
+	 13: Rel (  -323,  -202)  ->  Abs (   704,  -561)
+	 14: Rel (  -213,     0)  ->  Abs (   491,  -561)
+	 15: Rel (  -199,     0)  ->  Abs (   292,  -561)
+	 16: Rel (  -180,   169)  ->  Abs (   112,  -392)
+	 17: Rel (     0,   170)  ->  Abs (   112,  -222)
+	 18: Rel (     0,    91)  ->  Abs (   112,  -131)
+	 19: Rel (    94,   232)  ->  Abs (   206,   101)
+	 20: Rel (    37,     0)  ->  Abs (   243,   101)
+	 21: Rel (    18,     0)  ->  Abs (   261,   101)
+	 22: Rel (     0,   -20)  ->  Abs (   261,    81)
+	 23: Rel (     0,   -16)  ->  Abs (   261,    65)
+	 24: Rel (   -22,   -38)  ->  Abs (   239,    27)
+	 25: Rel (   -51,   -91)  ->  Abs (   188,   -64)
+	 26: Rel (     0,   -86)  ->  Abs (   188,  -150)
+	 27: Rel (     0,  -266)  ->  Abs (   188,  -416)
+	 28: Rel (   340,     0)  ->  Abs (   528,  -416)
+	 29: Rel (   125,     0)  ->  Abs (   653,  -416)
+	 30: Rel (   278,    68)  ->  Abs (   931,  -348)
+	 31: Rel (     0,    49)  ->  Abs (   931,  -299)
+	 32: Rel (     0,    50)  ->  Abs (   931,  -249)
+	 33: Rel (  -126,    29)  ->  Abs (   805,  -220)
+	 34: Rel (  -125,    29)  ->  Abs (   680,  -191)
+	 35: Rel (     0,    41)  ->  Abs (   680,  -150)
+	 36: Rel (     0,   132)  ->  Abs (   680,   -18)
+	 37: Rel (   163,   141)  ->  Abs (   843,   123)
+	 38: Rel (   148,     0)  ->  Abs (   991,   123)
+	 39: Rel (   238,     0)  ->  Abs (  1229,   123)
+
+	Glyph 823: off = 0x0002B212, len = 24
+	  numberOfContours:	-1  (Composite)
+	  xMin:			240
+	  yMin:			-561
+	  xMax:			1100
+	  yMax:			680
+
+	     0: Flags:		0x0236
+		Glyf Index:	1112
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0017
+		Glyf Index:	1021
+		X WOffset:	276
+		Y WOffset:	-1264
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 824: off = 0x0002B22A, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			151
+	  yMin:			-561
+	  xMax:			1078
+	  yMax:			630
+
+	     0: Flags:		0x0236
+		Glyf Index:	1113
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	321
+		Y WOffset:	-1416
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1     1    38 
+	00004: PUSHW[1]            953 
+	00007: NPUSHB      (13):    41     1    63    39     1    15    39   111    39   191 
+	                            39     3    39 
+	00022: SVTCA[x-axis] 
+	00023: SRP1       
+	00024: DELTAP1    
+	00025: DELTAP2    
+	00026: SHC[rp1,zp0] 
+	00027: SVTCA[y-axis] 
+	00028: CALL       
+
+	Glyph 825: off = 0x0002B262, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			240
+	  yMin:			-561
+	  xMax:			1203
+	  yMax:			1161
+
+	     0: Flags:		0x0236
+		Glyf Index:	1112
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	330
+		Y WOffset:	259
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1    64    39    96    39     2    39     1   240    40 
+	                             1    40 
+	00014: PUSHW[1]            -64 
+	00017: PUSHB[4]             10    12    52    40 
+	00022: SVTCA[x-axis] 
+	00023: SRP1       
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+	00027: SVTCA[y-axis] 
+	00028: SRP1       
+	00029: DELTAP1    
+	00030: SHC[rp1,zp0] 
+
+	Glyph 826: off = 0x0002B29C, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			240
+	  yMin:			-561
+	  xMax:			1195
+	  yMax:			1276
+
+	     0: Flags:		0x0236
+		Glyf Index:	1112
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1101
+		X WOffset:	356
+		Y WOffset:	186
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     2     1     0    44    16    44    48    44    96    44 
+	                             4    44 
+	00014: SVTCA[x-axis] 
+	00015: SRP1       
+	00016: DELTAP1    
+	00017: SHC[rp1,zp0] 
+	00018: SHC[rp1,zp0] 
+
+	Glyph 827: off = 0x0002B2CA, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			158
+	  yMin:			-310
+	  xMax:			1071
+	  yMax:			1074
+
+	     0: Flags:		0x0236
+		Glyf Index:	1114
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1021
+		X BOffset:	103
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (29):     2    15    56     1    79    56     1    56     2   223 
+	                            55     1   143    55   191    55   223    55     3    15 
+	                            55    16    55    47    55    79    55     4    55 
+	00031: SVTCA[x-axis] 
+	00032: SRP1       
+	00033: DELTAP1    
+	00034: DELTAP1    
+	00035: DELTAP2    
+	00036: SHC[rp1,zp0] 
+	00037: SVTCA[y-axis] 
+	00038: SRP1       
+	00039: DELTAP1    
+	00040: DELTAP2    
+	00041: SHC[rp1,zp0] 
+
+	Glyph 828: off = 0x0002B30C, len = 100
+	  numberOfContours:	-1  (Composite)
+	  xMin:			158
+	  yMin:			-561
+	  xMax:			1071
+	  yMax:			1074
+
+	     0: Flags:		0x0236
+		Glyf Index:	1114
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0036
+		Glyf Index:	1021
+		X BOffset:	103
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     2: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	-94
+		Y WOffset:	-1235
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              3     1    58 
+	00004: PUSHW[1]            953 
+	00007: NPUSHB      (42):    41     2    15    56     1    79    56     1    56     3 
+	                            59    64    19    22    52    59    64    12    17    52 
+	                            59     2   223    55     1   143    55   191    55   223 
+	                            55     3    15    55    16    55    47    55    79    55 
+	                             4    55 
+	00051: SVTCA[x-axis] 
+	00052: SRP1       
+	00053: DELTAP1    
+	00054: DELTAP1    
+	00055: DELTAP2    
+	00056: SHC[rp1,zp0] 
+	00057: SRP1       
+	00058: CALL       
+	00059: CALL       
+	00060: SHC[rp1,zp0] 
+	00061: SVTCA[y-axis] 
+	00062: SRP1       
+	00063: DELTAP1    
+	00064: DELTAP2    
+	00065: SHC[rp1,zp0] 
+	00066: CALL       
+
+	Glyph 829: off = 0x0002B370, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			191
+	  yMin:			-561
+	  xMax:			1136
+	  yMax:			1176
+
+	     0: Flags:		0x0236
+		Glyf Index:	830
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	73
+		Y WOffset:	-1055
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (29):     1    16    59    48    59    80    59     3   111    59 
+	                           144    59   240    59     3    59     1    63    58     1 
+	                           127    58     1    58    64     9    13    52    58 
+	00031: SVTCA[x-axis] 
+	00032: SRP1       
+	00033: CALL       
+	00034: DELTAP1    
+	00035: DELTAP2    
+	00036: SHC[rp1,zp0] 
+	00037: SVTCA[y-axis] 
+	00038: SRP1       
+	00039: DELTAP1    
+	00040: DELTAP2    
+	00041: SHC[rp1,zp0] 
+
+	Glyph 830: off = 0x0002B3B4, len = 376
+	  numberOfContours:	1
+	  xMin:			191
+	  yMin:			-561
+	  xMax:			1136
+	  yMax:			1176
+
+	EndPoints
+	---------
+	  0:  55
+
+	  Length of Instructions:	202
+	00000: NPUSHB      (12):   130    41   167    52   183    52   201     8   216     8 
+	                             5    41 
+	00014: PUSHW[1]             -8 
+	00017: NPUSHB      (36):    18    20    52     5    16    25    27    52    19    11 
+	                            54    51    70    51     3   134    40     1    40    16 
+	                            20    18    45    11    12    25    12     2    12    32 
+	                            14    18    52    12    12    43 
+	00055: PUSHW[1]            906 
+	00058: PUSHB[3]             42    42    18 
+	00062: PUSHW[1]            904 
+	00065: PUSHB[7]             16    16     4    30     0     0    53 
+	00073: PUSHW[1]            909 
+	00076: NPUSHB      (18):     4    34    16    10    13    52    36    34    38    24 
+	                            30    30    32    28    40    38    24    32 
+	00096: PUSHW[1]            896 
+	00099: PUSHB[8]             28    64    11    13    52    28    28    38 
+	00108: PUSHW[1]            883 
+	00111: NPUSHB      (17):    24    24    12    16    43    16    42     1    42    42 
+	                             0    18    16    16    10     0    49 
+	00130: PUSHW[2]            891    10 
+	00135: MDAP[rd]   
+	00136: MIRP[nrp0,md,rd,1] 
+	00137: MDAP[rd]   
+	00138: SRP1       
+	00139: SHP[rp1,zp0] 
+	00140: MDAP[rd]   
+	00141: SHP[rp1,zp0] 
+	00142: SRP1       
+	00143: SHP[rp1,zp0] 
+	00144: MDAP[rd]   
+	00145: DELTAP1    
+	00146: SHP[rp1,zp0] 
+	00147: SRP2       
+	00148: IP         
+	00149: IP         
+	00150: MDAP[rd]   
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: SHP[rp1,zp0] 
+	00153: MDAP[rd]   
+	00154: CALL       
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: SRP1       
+	00157: SRP2       
+	00158: IP         
+	00159: RTHG       
+	00160: SRP1       
+	00161: SRP2       
+	00162: IP         
+	00163: MDAP[rd]   
+	00164: SRP1       
+	00165: SRP2       
+	00166: IP         
+	00167: IP         
+	00168: CALL       
+	00169: SVTCA[y-axis] 
+	00170: RTG        
+	00171: MDAP[rd]   
+	00172: MIRP[srp0,md,rd,1] 
+	00173: SHP[rp2,zp1] 
+	00174: MDAP[rd]   
+	00175: MDAP[rd]   
+	00176: SRP2       
+	00177: IP         
+	00178: MDAP[rd]   
+	00179: MIRP[nrp0,md,rd,1] 
+	00180: SHP[rp1,zp0] 
+	00181: MDAP[rd]   
+	00182: MIRP[srp0,md,rd,1] 
+	00183: RTHG       
+	00184: IP         
+	00185: MDAP[rd]   
+	00186: CALL       
+	00187: DELTAP1    
+	00188: SHP[rp2,zp1] 
+	00189: SRP1       
+	00190: SHP[rp1,zp0] 
+	00191: SRP2       
+	00192: IP         
+	00193: DELTAP1    
+	00194: IUP[y]     
+	00195: IUP[x]     
+	00196: SVTCA[y-axis] 
+	00197: DELTAP1    
+	00198: CALL       
+	00199: SVTCA[x-axis] 
+	00200: CALL       
+	00201: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                               Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:        XDual                         Off
+	 12:  YDual               Y-Short         On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual                               On
+	 15:  YDual                       X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual               Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual               Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short X-Short On
+	 33:                      Y-Short X-Short Off
+	 34:                      Y-Short X-Short On
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short X-Short On
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:                      Y-Short X-Short On
+	 41:                      Y-Short         Off
+	 42:        XDual         Y-Short X-Short On
+	 43:                      Y-Short X-Short On
+	 44:  YDual               Y-Short X-Short Off
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short Off
+	 47:                      Y-Short X-Short On
+	 48:                      Y-Short X-Short Off
+	 49:        XDual         Y-Short         On
+	 50:        XDual         Y-Short         Off
+	 51:        XDual         Y-Short X-Short On
+	 52:        XDual         Y-Short X-Short Off
+	 53:  YDual XDual                 X-Short On
+	 54:  YDual XDual                 X-Short Off
+	 55:  YDual               Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1136,  -341)  ->  Abs (  1136,  -341)
+	  1: Rel (     0,   -77)  ->  Abs (  1136,  -418)
+	  2: Rel (  -166,   -76)  ->  Abs (   970,  -494)
+	  3: Rel (  -146,   -67)  ->  Abs (   824,  -561)
+	  4: Rel (   -91,     0)  ->  Abs (   733,  -561)
+	  5: Rel (  -280,     0)  ->  Abs (   453,  -561)
+	  6: Rel (  -130,   122)  ->  Abs (   323,  -439)
+	  7: Rel (   -72,    74)  ->  Abs (   251,  -365)
+	  8: Rel (   -27,    65)  ->  Abs (   224,  -300)
+	  9: Rel (   -33,    77)  ->  Abs (   191,  -223)
+	 10: Rel (     0,    72)  ->  Abs (   191,  -151)
+	 11: Rel (     0,   392)  ->  Abs (   191,   241)
+	 12: Rel (   617,    88)  ->  Abs (   808,   329)
+	 13: Rel (  -169,    94)  ->  Abs (   639,   423)
+	 14: Rel (  -307,     0)  ->  Abs (   332,   423)
+	 15: Rel (   -19,     0)  ->  Abs (   313,   423)
+	 16: Rel (   -42,    -2)  ->  Abs (   271,   421)
+	 17: Rel (    21,    41)  ->  Abs (   292,   462)
+	 18: Rel (    39,    69)  ->  Abs (   331,   531)
+	 19: Rel (    52,     7)  ->  Abs (   383,   538)
+	 20: Rel (   137,     8)  ->  Abs (   520,   546)
+	 21: Rel (    69,     4)  ->  Abs (   589,   550)
+	 22: Rel (    20,    13)  ->  Abs (   609,   563)
+	 23: Rel (    28,    19)  ->  Abs (   637,   582)
+	 24: Rel (     0,    62)  ->  Abs (   637,   644)
+	 25: Rel (     0,    55)  ->  Abs (   637,   699)
+	 26: Rel (   -37,   157)  ->  Abs (   600,   856)
+	 27: Rel (   -38,   162)  ->  Abs (   562,  1018)
+	 28: Rel (   -25,    37)  ->  Abs (   537,  1055)
+	 29: Rel (    31,    44)  ->  Abs (   568,  1099)
+	 30: Rel (    60,    77)  ->  Abs (   628,  1176)
+	 31: Rel (    35,   -55)  ->  Abs (   663,  1121)
+	 32: Rel (    51,   -74)  ->  Abs (   714,  1047)
+	 33: Rel (   -17,   -41)  ->  Abs (   697,  1006)
+	 34: Rel (   -39,   -53)  ->  Abs (   658,   953)
+	 35: Rel (     5,   -63)  ->  Abs (   663,   890)
+	 36: Rel (    24,  -116)  ->  Abs (   687,   774)
+	 37: Rel (    22,  -108)  ->  Abs (   709,   666)
+	 38: Rel (     0,   -44)  ->  Abs (   709,   622)
+	 39: Rel (     0,   -82)  ->  Abs (   709,   540)
+	 40: Rel (   -53,   -33)  ->  Abs (   656,   507)
+	 41: Rel (   308,  -140)  ->  Abs (   964,   367)
+	 42: Rel (   135,   -10)  ->  Abs (  1099,   357)
+	 43: Rel (   -45,  -119)  ->  Abs (  1054,   238)
+	 44: Rel (  -101,     6)  ->  Abs (   953,   244)
+	 45: Rel (   -29,     0)  ->  Abs (   924,   244)
+	 46: Rel (  -199,     0)  ->  Abs (   725,   244)
+	 47: Rel (  -182,   -76)  ->  Abs (   543,   168)
+	 48: Rel (  -241,  -104)  ->  Abs (   302,    64)
+	 49: Rel (     0,  -178)  ->  Abs (   302,  -114)
+	 50: Rel (     0,  -138)  ->  Abs (   302,  -252)
+	 51: Rel (   105,   -86)  ->  Abs (   407,  -338)
+	 52: Rel (   107,   -92)  ->  Abs (   514,  -430)
+	 53: Rel (   252,     0)  ->  Abs (   766,  -430)
+	 54: Rel (    83,     0)  ->  Abs (   849,  -430)
+	 55: Rel (   268,    89)  ->  Abs (  1117,  -341)
+
+	Glyph 831: off = 0x0002B52C, len = 88
+	  numberOfContours:	-1  (Composite)
+	  xMin:			191
+	  yMin:			-561
+	  xMax:			1136
+	  yMax:			1176
+
+	     0: Flags:		0x0236
+		Glyf Index:	830
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	-260
+		Y WOffset:	-145
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     1    79    59     1    15    59    31    59    63    59 
+	                           223    59     4    59     1    58 
+	00018: PUSHW[1]            -64 
+	00021: NPUSHB      (26):    23    26    52    16    58     1   128    58     1   127 
+	                            58   143    58   191    58     3    16    58    32    58 
+	                            63    58    79    58     4    58 
+	00049: SVTCA[x-axis] 
+	00050: SRP1       
+	00051: DELTAP1    
+	00052: DELTAP1    
+	00053: DELTAP2    
+	00054: DELTAP3    
+	00055: CALL       
+	00056: SHC[rp1,zp0] 
+	00057: SVTCA[y-axis] 
+	00058: SRP1       
+	00059: DELTAP1    
+	00060: DELTAP1    
+	00061: SHC[rp1,zp0] 
+
+	Glyph 832: off = 0x0002B584, len = 384
+	  numberOfContours:	1
+	  xMin:			319
+	  yMin:			-561
+	  xMax:			929
+	  yMax:			1192
+
+	EndPoints
+	---------
+	  0:  53
+
+	  Length of Instructions:	224
+	00000: PUSHW[2]              7   -16 
+	00005: NPUSHB      (12):    24    27    52   133     7   149     7     2   185    20 
+	                             1    19 
+	00019: PUSHW[1]            -24 
+	00022: NPUSHB       (9):    19    23    52    21    24     9    12    52    30 
+	00033: PUSHW[1]            -32 
+	00036: NPUSHB      (14):    20    22    52     2    48    21    64    17    22    52 
+	                            21    21     0    48 
+	00052: PUSHW[1]            -64 
+	00055: NPUSHB      (16):    19    22    52    32    48     1    48    48     0    38 
+	                             0    12    42    40    36     9 
+	00073: PUSHW[1]            -64 
+	00076: PUSHB[4]             91    99    52     9 
+	00081: PUSHW[1]            -64 
+	00084: NPUSHB      (14):    60    63    52     9    64    28    30    52     9     9 
+	                            12    12    18    21 
+	00100: PUSHW[1]            -32 
+	00103: NPUSHB      (22):    13    14    52    21    51    25    48    46    33    38 
+	                            38    36    40    40    36    64     9    12    52    36 
+	                            36    46 
+	00127: PUSHW[1]            885 
+	00130: NPUSHB      (11):    33    33    25    15    51    31    51     2    51    51 
+	                            25 
+	00143: PUSHW[1]            -64 
+	00146: PUSHB[6]              9    12    52    25    25     5 
+	00153: PUSHW[2]            892    18 
+	00158: MDAP[rd]   
+	00159: MIRP[nrp0,md,rd,1] 
+	00160: SHP[rp1,zp0] 
+	00161: MDAP[rd]   
+	00162: CALL       
+	00163: SHP[rp1,zp0] 
+	00164: MDAP[rd]   
+	00165: DELTAP1    
+	00166: SRP2       
+	00167: IP         
+	00168: MDAP[rd]   
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: SHP[rp1,zp0] 
+	00171: MDAP[rd]   
+	00172: CALL       
+	00173: SHP[rp1,zp0] 
+	00174: MDAP[rd]   
+	00175: RTHG       
+	00176: SRP2       
+	00177: IP         
+	00178: MDAP[rd]   
+	00179: SRP1       
+	00180: SRP2       
+	00181: IP         
+	00182: SRP1       
+	00183: SRP2       
+	00184: IP         
+	00185: CALL       
+	00186: SRP1       
+	00187: SHP[rp1,zp0] 
+	00188: MDAP[rd]   
+	00189: SHP[rp1,zp0] 
+	00190: RTG        
+	00191: MDAP[rd]   
+	00192: CALL       
+	00193: CALL       
+	00194: CALL       
+	00195: SRP1       
+	00196: SRP2       
+	00197: IP         
+	00198: SVTCA[y-axis] 
+	00199: MDAP[rd]   
+	00200: MDAP[rd]   
+	00201: MDAP[rd]   
+	00202: SRP1       
+	00203: SHP[rp1,zp0] 
+	00204: MDAP[rd]   
+	00205: DELTAP2    
+	00206: CALL       
+	00207: RTHG       
+	00208: SRP2       
+	00209: IP         
+	00210: MDAP[rd]   
+	00211: CALL       
+	00212: SRP1       
+	00213: IP         
+	00214: CALL       
+	00215: IUP[y]     
+	00216: IUP[x]     
+	00217: SVTCA[y-axis] 
+	00218: CALL       
+	00219: CALL       
+	00220: SVTCA[x-axis] 
+	00221: DELTAP2    
+	00222: DELTAP1    
+	00223: CALL       
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:                      Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:        XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:                              X-Short Off
+	 36:  YDual               Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short X-Short On
+	 41:                      Y-Short X-Short Off
+	 42:                      Y-Short X-Short On
+	 43:        XDual                 X-Short Off
+	 44:        XDual         Y-Short X-Short On
+	 45:        XDual         Y-Short X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual         Y-Short         Off
+	 48:                      Y-Short X-Short On
+	 49:        XDual         Y-Short X-Short Off
+	 50:        XDual         Y-Short X-Short Off
+	 51:        XDual         Y-Short         On
+	 52:        XDual         Y-Short         Off
+	 53:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   867,   -28)  ->  Abs (   867,   -28)
+	  1: Rel (  -117,    55)  ->  Abs (   750,    27)
+	  2: Rel (   -81,     0)  ->  Abs (   669,    27)
+	  3: Rel (  -104,     0)  ->  Abs (   565,    27)
+	  4: Rel (  -130,   -89)  ->  Abs (   435,   -62)
+	  5: Rel (     0,   -80)  ->  Abs (   435,  -142)
+	  6: Rel (     0,   -51)  ->  Abs (   435,  -193)
+	  7: Rel (    42,  -105)  ->  Abs (   477,  -298)
+	  8: Rel (    30,   -86)  ->  Abs (   507,  -384)
+	  9: Rel (     0,   -62)  ->  Abs (   507,  -446)
+	 10: Rel (     0,   -17)  ->  Abs (   507,  -463)
+	 11: Rel (   -51,   -98)  ->  Abs (   456,  -561)
+	 12: Rel (   -17,     0)  ->  Abs (   439,  -561)
+	 13: Rel (    -7,     0)  ->  Abs (   432,  -561)
+	 14: Rel (   -25,   101)  ->  Abs (   407,  -460)
+	 15: Rel (   -18,    64)  ->  Abs (   389,  -396)
+	 16: Rel (   -18,    55)  ->  Abs (   371,  -341)
+	 17: Rel (   -52,   134)  ->  Abs (   319,  -207)
+	 18: Rel (     0,    68)  ->  Abs (   319,  -139)
+	 19: Rel (     0,   105)  ->  Abs (   319,   -34)
+	 20: Rel (   141,   123)  ->  Abs (   460,    89)
+	 21: Rel (   131,     0)  ->  Abs (   591,    89)
+	 22: Rel (   -13,    12)  ->  Abs (   578,   101)
+	 23: Rel (   -72,    29)  ->  Abs (   506,   130)
+	 24: Rel (   -62,    24)  ->  Abs (   444,   154)
+	 25: Rel (     0,    22)  ->  Abs (   444,   176)
+	 26: Rel (     0,    17)  ->  Abs (   444,   193)
+	 27: Rel (    19,    41)  ->  Abs (   463,   234)
+	 28: Rel (    37,    44)  ->  Abs (   500,   278)
+	 29: Rel (    11,     7)  ->  Abs (   511,   285)
+	 30: Rel (    57,    24)  ->  Abs (   568,   309)
+	 31: Rel (    38,    16)  ->  Abs (   606,   325)
+	 32: Rel (    33,    53)  ->  Abs (   639,   378)
+	 33: Rel (     0,    55)  ->  Abs (   639,   433)
+	 34: Rel (     0,    36)  ->  Abs (   639,   469)
+	 35: Rel (   -88,   550)  ->  Abs (   551,  1019)
+	 36: Rel (   -30,    44)  ->  Abs (   521,  1063)
+	 37: Rel (    28,    46)  ->  Abs (   549,  1109)
+	 38: Rel (    56,    83)  ->  Abs (   605,  1192)
+	 39: Rel (    28,   -49)  ->  Abs (   633,  1143)
+	 40: Rel (    60,   -82)  ->  Abs (   693,  1061)
+	 41: Rel (   -22,   -40)  ->  Abs (   671,  1021)
+	 42: Rel (   -35,   -60)  ->  Abs (   636,   961)
+	 43: Rel (    61,  -456)  ->  Abs (   697,   505)
+	 44: Rel (    19,   -80)  ->  Abs (   716,   425)
+	 45: Rel (     4,   -20)  ->  Abs (   720,   405)
+	 46: Rel (     0,   -24)  ->  Abs (   720,   381)
+	 47: Rel (     0,  -101)  ->  Abs (   720,   280)
+	 48: Rel (   -42,   -37)  ->  Abs (   678,   243)
+	 49: Rel (    80,   -28)  ->  Abs (   758,   215)
+	 50: Rel (   171,  -108)  ->  Abs (   929,   107)
+	 51: Rel (     0,   -16)  ->  Abs (   929,    91)
+	 52: Rel (     0,   -24)  ->  Abs (   929,    67)
+	 53: Rel (   -42,   -77)  ->  Abs (   887,   -10)
+
+	Glyph 833: off = 0x0002B704, len = 312
+	  numberOfContours:	1
+	  xMin:			144
+	  yMin:			-310
+	  xMax:			1059
+	  yMax:			1082
+
+	EndPoints
+	---------
+	  0:  43
+
+	  Length of Instructions:	179
+	00000: NPUSHB      (36):   132    37     1    26    64    18    23    52   206    42 
+	                           221    42     2   101    37   118    37     2   127    42 
+	                           143    42   155    42   169    42     4    42    24    17 
+	                            20    52   182    18     1    18 
+	00038: PUSHW[1]            -64 
+	00041: NPUSHB       (9):    38    40    52    18     2    30    30    11     2 
+	00052: PUSHW[1]            901 
+	00055: PUSHB[5]              0     0    24    11    38 
+	00061: PUSHW[1]            912 
+	00064: NPUSHB      (21):    24    14    11    18    16     7     6     4    11    11 
+	                             9    13    13     9    64     9    16    52     9     9 
+	                            16 
+	00087: PUSHW[1]            884 
+	00090: NPUSHB      (17):     0     4    16     4     2     4     4     2    32     0 
+	                            48     0     2     0     0    27    41 
+	00109: PUSHW[1]            888 
+	00112: PUSHB[4]             21    32    32    36 
+	00117: PUSHW[2]            885    27 
+	00122: MDAP[rd]   
+	00123: MIRP[srp0,md,rd,1] 
+	00124: SHP[rp2,zp1] 
+	00125: MDAP[rd]   
+	00126: MDAP[rd]   
+	00127: MIRP[nrp0,md,rd,1] 
+	00128: SRP2       
+	00129: IP         
+	00130: MDAP[rd]   
+	00131: DELTAP1    
+	00132: SHP[rp1,zp0] 
+	00133: SHP[rp1,zp0] 
+	00134: MDAP[rd]   
+	00135: DELTAP1    
+	00136: MIRP[nrp0,md,rd,1] 
+	00137: SHP[rp1,zp0] 
+	00138: MDAP[rd]   
+	00139: CALL       
+	00140: SHP[rp1,zp0] 
+	00141: MDAP[rd]   
+	00142: RTHG       
+	00143: SRP2       
+	00144: IP         
+	00145: MDAP[rd]   
+	00146: SRP1       
+	00147: IP         
+	00148: IP         
+	00149: SRP2       
+	00150: IP         
+	00151: SRP1       
+	00152: IP         
+	00153: SVTCA[y-axis] 
+	00154: RTG        
+	00155: MDAP[rd]   
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: MDAP[rd]   
+	00158: SRP2       
+	00159: IP         
+	00160: MDAP[rd]   
+	00161: MIRP[nrp0,md,rd,1] 
+	00162: SRP2       
+	00163: IP         
+	00164: MDAP[rd]   
+	00165: SRP1       
+	00166: SHP[rp1,zp0] 
+	00167: CALL       
+	00168: DELTAP2    
+	00169: IUP[y]     
+	00170: IUP[x]     
+	00171: SVTCA[y-axis] 
+	00172: CALL       
+	00173: DELTAP2    
+	00174: DELTAP1    
+	00175: DELTAP1    
+	00176: SVTCA[y-axis] 
+	00177: CALL       
+	00178: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual               Y-Short X-Short On
+	  7:                              X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:                      Y-Short X-Short On
+	 15:        XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short         Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:        XDual                 X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:                      Y-Short X-Short On
+	 35:                      Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:  YDual                               On
+	 39:  YDual XDual                 X-Short Off
+	 40:  YDual               Y-Short         Off
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   646,    35)  ->  Abs (   646,    35)
+	  1: Rel (    13,    42)  ->  Abs (   659,    77)
+	  2: Rel (    19,    54)  ->  Abs (   678,   131)
+	  3: Rel (   105,     9)  ->  Abs (   783,   140)
+	  4: Rel (     0,   128)  ->  Abs (   783,   268)
+	  5: Rel (     0,    18)  ->  Abs (   783,   286)
+	  6: Rel (    -2,    18)  ->  Abs (   781,   304)
+	  7: Rel (   -42,   354)  ->  Abs (   739,   658)
+	  8: Rel (   -29,   198)  ->  Abs (   710,   856)
+	  9: Rel (   -52,    97)  ->  Abs (   658,   953)
+	 10: Rel (    27,    44)  ->  Abs (   685,   997)
+	 11: Rel (    57,    85)  ->  Abs (   742,  1082)
+	 12: Rel (    41,   -87)  ->  Abs (   783,   995)
+	 13: Rel (    47,   -44)  ->  Abs (   830,   951)
+	 14: Rel (   -42,   -97)  ->  Abs (   788,   854)
+	 15: Rel (    71,  -498)  ->  Abs (   859,   356)
+	 16: Rel (     0,   -73)  ->  Abs (   859,   283)
+	 17: Rel (     0,   -97)  ->  Abs (   859,   186)
+	 18: Rel (   -51,   -45)  ->  Abs (   808,   141)
+	 19: Rel (   163,   -29)  ->  Abs (   971,   112)
+	 20: Rel (    88,   -51)  ->  Abs (  1059,    61)
+	 21: Rel (     0,   -39)  ->  Abs (  1059,    22)
+	 22: Rel (     0,  -152)  ->  Abs (  1059,  -130)
+	 23: Rel (  -323,  -180)  ->  Abs (   736,  -310)
+	 24: Rel (  -213,     0)  ->  Abs (   523,  -310)
+	 25: Rel (  -199,     0)  ->  Abs (   324,  -310)
+	 26: Rel (  -180,   169)  ->  Abs (   144,  -141)
+	 27: Rel (     0,   142)  ->  Abs (   144,     1)
+	 28: Rel (     0,    56)  ->  Abs (   144,    57)
+	 29: Rel (    91,   267)  ->  Abs (   235,   324)
+	 30: Rel (    40,     0)  ->  Abs (   275,   324)
+	 31: Rel (    17,     0)  ->  Abs (   292,   324)
+	 32: Rel (     0,   -19)  ->  Abs (   292,   305)
+	 33: Rel (     0,    -9)  ->  Abs (   292,   296)
+	 34: Rel (   -34,   -79)  ->  Abs (   258,   217)
+	 35: Rel (   -34,   -79)  ->  Abs (   224,   138)
+	 36: Rel (     0,   -59)  ->  Abs (   224,    79)
+	 37: Rel (     0,  -244)  ->  Abs (   224,  -165)
+	 38: Rel (   336,     0)  ->  Abs (   560,  -165)
+	 39: Rel (    78,     0)  ->  Abs (   638,  -165)
+	 40: Rel (   325,    45)  ->  Abs (   963,  -120)
+	 41: Rel (     0,    44)  ->  Abs (   963,   -76)
+	 42: Rel (     0,    46)  ->  Abs (   963,   -30)
+	 43: Rel (  -184,    58)  ->  Abs (   779,    28)
+
+	Glyph 834: off = 0x0002B83C, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-561
+	  xMax:			1059
+	  yMax:			1082
+
+	     0: Flags:		0x0236
+		Glyf Index:	833
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	-121
+		Y WOffset:	-1235
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1     1    45 
+	00004: PUSHW[1]            953 
+	00007: NPUSHB      (17):    41     1    46    64    12    20    52    15    46    31 
+	                            46   223    46   239    46     4    46 
+	00026: SVTCA[x-axis] 
+	00027: SRP1       
+	00028: DELTAP1    
+	00029: CALL       
+	00030: SHC[rp1,zp0] 
+	00031: SVTCA[y-axis] 
+	00032: CALL       
+
+	Glyph 835: off = 0x0002B878, len = 44
+	  numberOfContours:	-1  (Composite)
+	  xMin:			240
+	  yMin:			-561
+	  xMax:			1100
+	  yMax:			1151
+
+	     0: Flags:		0x0236
+		Glyf Index:	1112
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	327
+		Y WOffset:	77
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1    64    40     1    16    40    79    40     2    40 
+	00012: SVTCA[x-axis] 
+	00013: SRP1       
+	00014: DELTAP1    
+	00015: DELTAP2    
+	00016: SHC[rp1,zp0] 
+
+	Glyph 836: off = 0x0002B8A4, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			151
+	  yMin:			-310
+	  xMax:			1066
+	  yMax:			1001
+
+	     0: Flags:		0x0236
+		Glyf Index:	1113
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1021
+		X BOffset:	19
+		Y BOffset:	-73
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     1    15    38     1    32    38   111    38     2    38 
+	                             1    79    39   143    39     2    39 
+	00019: SVTCA[x-axis] 
+	00020: SRP1       
+	00021: DELTAP1    
+	00022: SHC[rp1,zp0] 
+	00023: SVTCA[y-axis] 
+	00024: SRP1       
+	00025: DELTAP1    
+	00026: DELTAP2    
+	00027: SHC[rp1,zp0] 
+
+	Glyph 837: off = 0x0002B8D8, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			240
+	  yMin:			-561
+	  xMax:			1152
+	  yMax:			680
+
+	     0: Flags:		0x0236
+		Glyf Index:	1112
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	279
+		Y WOffset:	-1072
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     1    40    64    16    18    52    32    40    48    40 
+	                            95    40   223    40     4    40 
+	00018: SVTCA[x-axis] 
+	00019: SRP1       
+	00020: DELTAP1    
+	00021: CALL       
+	00022: SHC[rp1,zp0] 
+
+	Glyph 838: off = 0x0002B90A, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			151
+	  yMin:			-561
+	  xMax:			1113
+	  yMax:			630
+
+	     0: Flags:		0x0236
+		Glyf Index:	1113
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	240
+		Y WOffset:	-1235
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1     1    38 
+	00004: PUSHW[1]            953 
+	00007: NPUSHB      (21):    41     1    39    64    10    12    52    39    64    25 
+	                            27    52    31    39   111    39     2   239    39     1 
+	                            39 
+	00030: SVTCA[x-axis] 
+	00031: SRP1       
+	00032: DELTAP1    
+	00033: DELTAP2    
+	00034: CALL       
+	00035: CALL       
+	00036: SHC[rp1,zp0] 
+	00037: SVTCA[y-axis] 
+	00038: CALL       
+
+	Glyph 839: off = 0x0002B94C, len = 670
+	  numberOfContours:	3
+	  xMin:			387
+	  yMin:			1284
+	  xMax:			754
+	  yMax:			1948
+
+	EndPoints
+	---------
+	  0:  41
+	  1:  49
+	  2:  82
+
+	  Length of Instructions:	449
+	00000: PUSHW[2]             21   -16 
+	00005: PUSHB[4]             29    44    52    38 
+	00010: PUSHW[1]            -64 
+	00013: PUSHB[4]             29    44    52    32 
+	00018: PUSHW[1]            -44 
+	00021: NPUSHB      (24):    28    45    52    89    37   154    37     2    27    37 
+	                            22    49     2     5    38     1     3     1     0     3 
+	                            20    40    40    20 
+	00047: PUSHW[1]            -64 
+	00050: NPUSHB      (14):    13    16    52    20    20    35    11    64    29    35 
+	                            52    11    11    16 
+	00066: PUSHW[1]            936 
+	00069: NPUSHB      (13):     7     7    46    35    27    27    46    46    37    22 
+	                            32     3    42 
+	00084: PUSHW[1]            904 
+	00087: NPUSHB      (21):   159    35     1    15    35     1    15    35    31    35 
+	                            79    35     3    35    64    11    42    52    35    35 
+	                            68 
+	00110: PUSHW[1]            -64 
+	00113: NPUSHB      (29):    11    19    52    68    68    76    56    64    48    54 
+	                            52    56    64    11    18    52    56    64    29    32 
+	                            52     0    56     1    56    56    76    76    72 
+	00144: PUSHW[1]            -64 
+	00147: PUSHB[4]             71    71    52    72 
+	00152: PUSHW[1]            -64 
+	00155: PUSHB[4]             51    54    52    72 
+	00160: PUSHW[1]            -64 
+	00163: PUSHB[4]             30    32    52    72 
+	00168: PUSHW[4]            902    81    64   900 
+	00177: NPUSHB      (39):    52    81    81    52    32    30    42    44    37    22 
+	                            48     3     0    20    18    35    34    64    25    27 
+	                            52    34    64    11    24    52    34    34    30     0 
+	                             0    13    64    13    16    52    13    13     5 
+	00218: PUSHW[3]            879    18   -64 
+	00225: PUSHB[7]             54    83    52    18    18     1    18 
+	00233: PUSHW[1]            -64 
+	00236: NPUSHB      (12):    13    31    52    18    18    24    32    30    48    30 
+	                             2    30 
+	00250: PUSHW[1]            878 
+	00253: NPUSHB      (23):    44    64    46    63    52    44    64    29    38    52 
+	                             0    44    16    44     2    64    44    80    44     2 
+	                            44    44    48 
+	00278: PUSHW[1]            878 
+	00281: NPUSHB      (38):    15    24     1    24    24    50    50    78    76    76 
+	                            78    56    56    68    68    54    78    64    40    45 
+	                            52    78    64     9    31    52   255    78     1    78 
+	                            78     0    54    48    54     2    54     5 
+	00321: PUSHW[1]            340 
+	00324: SCANCTRL   
+	00325: SCANTYPE   
+	00326: MDAP[rd]   
+	00327: DELTAP1    
+	00328: SHP[rp1,zp0] 
+	00329: MDAP[rd]   
+	00330: DELTAP1    
+	00331: CALL       
+	00332: CALL       
+	00333: RTHG       
+	00334: SRP2       
+	00335: IP         
+	00336: MDAP[rd]   
+	00337: SHP[rp2,zp1] 
+	00338: MDAP[rd]   
+	00339: SRP1       
+	00340: SHP[rp1,zp0] 
+	00341: MDAP[rd]   
+	00342: SRP1       
+	00343: IP         
+	00344: MDAP[rd]   
+	00345: SHP[rp2,zp1] 
+	00346: RTG        
+	00347: MDAP[rd]   
+	00348: DELTAP1    
+	00349: MIRP[srp0,md,rd,1] 
+	00350: SHP[rp2,zp1] 
+	00351: MDAP[rd]   
+	00352: DELTAP1    
+	00353: DELTAP1    
+	00354: CALL       
+	00355: CALL       
+	00356: MIRP[nrp0,md,rd,1] 
+	00357: DELTAP1    
+	00358: SRP1       
+	00359: SHP[rp1,zp0] 
+	00360: MDAP[rd]   
+	00361: CALL       
+	00362: DELTAP3    
+	00363: CALL       
+	00364: MIRP[srp0,md,rd,1] 
+	00365: SHP[rp2,zp1] 
+	00366: MDAP[rd]   
+	00367: CALL       
+	00368: SHP[rp2,zp1] 
+	00369: MDAP[rd]   
+	00370: SRP1       
+	00371: SHP[rp1,zp0] 
+	00372: MDAP[rd]   
+	00373: CALL       
+	00374: CALL       
+	00375: SHP[rp1,zp0] 
+	00376: SRP1       
+	00377: IP         
+	00378: SRP1       
+	00379: IP         
+	00380: SRP1       
+	00381: SHP[rp1,zp0] 
+	00382: SHP[rp1,zp0] 
+	00383: SRP2       
+	00384: IP         
+	00385: SRP1       
+	00386: IP         
+	00387: SVTCA[y-axis] 
+	00388: MDAP[rd]   
+	00389: SHP[rp1,zp0] 
+	00390: MDAP[rd]   
+	00391: SRP0       
+	00392: MIRP[nrp0,md,rd,1] 
+	00393: SRP0       
+	00394: MIRP[srp0,md,rd,1] 
+	00395: CALL       
+	00396: CALL       
+	00397: CALL       
+	00398: SHP[rp2,zp1] 
+	00399: MDAP[rd]   
+	00400: SHP[rp1,zp0] 
+	00401: MDAP[rd]   
+	00402: DELTAP1    
+	00403: CALL       
+	00404: CALL       
+	00405: CALL       
+	00406: SRP2       
+	00407: IP         
+	00408: MDAP[rd]   
+	00409: CALL       
+	00410: SHP[rp2,zp1] 
+	00411: MDAP[rd]   
+	00412: CALL       
+	00413: DELTAP1    
+	00414: DELTAP2    
+	00415: DELTAP3    
+	00416: MIRP[nrp0,md,rd,1] 
+	00417: SLOOP      
+	00418: IP         
+	00419: SHP[rp2,zp1] 
+	00420: MDAP[rd]   
+	00421: SHP[rp1,zp0] 
+	00422: MDAP[rd]   
+	00423: SRP1       
+	00424: SRP2       
+	00425: IP         
+	00426: MDAP[rd]   
+	00427: MIRP[nrp0,md,rd,1] 
+	00428: SHP[rp1,zp0] 
+	00429: MDAP[rd]   
+	00430: CALL       
+	00431: SRP1       
+	00432: SHP[rp1,zp0] 
+	00433: MDAP[rd]   
+	00434: CALL       
+	00435: SHP[rp1,zp0] 
+	00436: MDAP[rd]   
+	00437: SRP2       
+	00438: SLOOP      
+	00439: IP         
+	00440: IUP[y]     
+	00441: IUP[x]     
+	00442: SVTCA[y-axis] 
+	00443: DELTAP2    
+	00444: DELTAP3    
+	00445: DELTAP3    
+	00446: CALL       
+	00447: CALL       
+	00448: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:                      Y-Short X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual               Y-Short X-Short On
+	 38:                      Y-Short X-Short Off
+	 39:                      Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:        XDual         Y-Short         On
+	 49:        XDual         Y-Short         Off
+	 50:        XDual                 X-Short On
+	 51:                      Y-Short X-Short Off
+	 52:  YDual                       X-Short On
+	 53:  YDual                       X-Short Off
+	 54:  YDual XDual         Y-Short         On
+	 55:  YDual XDual         Y-Short         Off
+	 56:  YDual XDual                 X-Short On
+	 57:  YDual XDual                 X-Short Off
+	 58:        XDual         Y-Short         On
+	 59:        XDual         Y-Short         Off
+	 60:                      Y-Short X-Short On
+	 61:                      Y-Short X-Short Off
+	 62:        XDual         Y-Short         On
+	 63:        XDual         Y-Short         Off
+	 64:  YDual XDual                 X-Short On
+	 65:  YDual XDual                 X-Short Off
+	 66:  YDual XDual         Y-Short X-Short On
+	 67:  YDual XDual         Y-Short X-Short Off
+	 68:  YDual XDual                 X-Short On
+	 69:  YDual XDual                 X-Short Off
+	 70:        XDual         Y-Short X-Short On
+	 71:        XDual         Y-Short X-Short Off
+	 72:  YDual XDual                 X-Short On
+	 73:  YDual XDual                 X-Short Off
+	 74:  YDual XDual         Y-Short X-Short On
+	 75:  YDual XDual         Y-Short X-Short Off
+	 76:  YDual XDual                 X-Short On
+	 77:  YDual XDual                 X-Short Off
+	 78:        XDual         Y-Short         On
+	 79:        XDual         Y-Short X-Short Off
+	 80:                      Y-Short X-Short Off
+	 81:  YDual                       X-Short On
+	 82:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   418,  1530)  ->  Abs (   418,  1530)
+	  1: Rel (     0,    12)  ->  Abs (   418,  1542)
+	  2: Rel (     7,     4)  ->  Abs (   425,  1546)
+	  3: Rel (    24,    17)  ->  Abs (   449,  1563)
+	  4: Rel (    24,    37)  ->  Abs (   473,  1600)
+	  5: Rel (     0,    59)  ->  Abs (   473,  1659)
+	  6: Rel (     0,    37)  ->  Abs (   473,  1696)
+	  7: Rel (   -22,     0)  ->  Abs (   451,  1696)
+	  8: Rel (    -9,     0)  ->  Abs (   442,  1696)
+	  9: Rel (   -21,   -19)  ->  Abs (   421,  1677)
+	 10: Rel (   -21,   -18)  ->  Abs (   400,  1659)
+	 11: Rel (    -4,     0)  ->  Abs (   396,  1659)
+	 12: Rel (    -9,     0)  ->  Abs (   387,  1659)
+	 13: Rel (     0,     7)  ->  Abs (   387,  1666)
+	 14: Rel (     0,    20)  ->  Abs (   387,  1686)
+	 15: Rel (    71,    67)  ->  Abs (   458,  1753)
+	 16: Rel (    28,     0)  ->  Abs (   486,  1753)
+	 17: Rel (    42,     0)  ->  Abs (   528,  1753)
+	 18: Rel (     0,   -52)  ->  Abs (   528,  1701)
+	 19: Rel (     0,   -46)  ->  Abs (   528,  1655)
+	 20: Rel (   -36,   -74)  ->  Abs (   492,  1581)
+	 21: Rel (    74,    34)  ->  Abs (   566,  1615)
+	 22: Rel (    53,    75)  ->  Abs (   619,  1690)
+	 23: Rel (   -58,    30)  ->  Abs (   561,  1720)
+	 24: Rel (     0,    62)  ->  Abs (   561,  1782)
+	 25: Rel (     0,    50)  ->  Abs (   561,  1832)
+	 26: Rel (    92,   116)  ->  Abs (   653,  1948)
+	 27: Rel (    35,     0)  ->  Abs (   688,  1948)
+	 28: Rel (    24,     0)  ->  Abs (   712,  1948)
+	 29: Rel (    32,   -56)  ->  Abs (   744,  1892)
+	 30: Rel (     0,   -36)  ->  Abs (   744,  1856)
+	 31: Rel (     0,   -62)  ->  Abs (   744,  1794)
+	 32: Rel (   -37,   -55)  ->  Abs (   707,  1739)
+	 33: Rel (    47,   -24)  ->  Abs (   754,  1715)
+	 34: Rel (     0,   -25)  ->  Abs (   754,  1690)
+	 35: Rel (    -4,   -47)  ->  Abs (   750,  1643)
+	 36: Rel (   -34,     0)  ->  Abs (   716,  1643)
+	 37: Rel (   -67,    31)  ->  Abs (   649,  1674)
+	 38: Rel (   -36,   -55)  ->  Abs (   613,  1619)
+	 39: Rel (  -121,   -95)  ->  Abs (   492,  1524)
+	 40: Rel (   -45,     0)  ->  Abs (   447,  1524)
+	 41: Rel (   -19,     0)  ->  Abs (   428,  1524)
+	 42: Rel (   246,   231)  ->  Abs (   674,  1755)
+	 43: Rel (    18,    32)  ->  Abs (   692,  1787)
+	 44: Rel (     0,    32)  ->  Abs (   692,  1819)
+	 45: Rel (     0,    59)  ->  Abs (   692,  1878)
+	 46: Rel (   -43,     0)  ->  Abs (   649,  1878)
+	 47: Rel (   -36,     0)  ->  Abs (   613,  1878)
+	 48: Rel (     0,   -47)  ->  Abs (   613,  1831)
+	 49: Rel (     0,   -55)  ->  Abs (   613,  1776)
+	 50: Rel (     3,  -406)  ->  Abs (   616,  1370)
+	 51: Rel (   -43,   -86)  ->  Abs (   573,  1284)
+	 52: Rel (   -49,     0)  ->  Abs (   524,  1284)
+	 53: Rel (   -66,     0)  ->  Abs (   458,  1284)
+	 54: Rel (     0,    94)  ->  Abs (   458,  1378)
+	 55: Rel (     0,    82)  ->  Abs (   458,  1460)
+	 56: Rel (    29,     0)  ->  Abs (   487,  1460)
+	 57: Rel (    13,     0)  ->  Abs (   500,  1460)
+	 58: Rel (     0,   -14)  ->  Abs (   500,  1446)
+	 59: Rel (     0,    -5)  ->  Abs (   500,  1441)
+	 60: Rel (    -2,   -12)  ->  Abs (   498,  1429)
+	 61: Rel (    -2,   -13)  ->  Abs (   496,  1416)
+	 62: Rel (     0,    -7)  ->  Abs (   496,  1409)
+	 63: Rel (     0,   -27)  ->  Abs (   496,  1382)
+	 64: Rel (    28,     0)  ->  Abs (   524,  1382)
+	 65: Rel (    43,     0)  ->  Abs (   567,  1382)
+	 66: Rel (    17,    66)  ->  Abs (   584,  1448)
+	 67: Rel (    17,    65)  ->  Abs (   601,  1513)
+	 68: Rel (     5,     0)  ->  Abs (   606,  1513)
+	 69: Rel (    11,     0)  ->  Abs (   617,  1513)
+	 70: Rel (     5,   -35)  ->  Abs (   622,  1478)
+	 71: Rel (     4,   -37)  ->  Abs (   626,  1441)
+	 72: Rel (    35,     0)  ->  Abs (   661,  1441)
+	 73: Rel (    32,     0)  ->  Abs (   693,  1441)
+	 74: Rel (     7,    63)  ->  Abs (   700,  1504)
+	 75: Rel (     7,    65)  ->  Abs (   707,  1569)
+	 76: Rel (    11,     0)  ->  Abs (   718,  1569)
+	 77: Rel (    31,     0)  ->  Abs (   749,  1569)
+	 78: Rel (     0,  -109)  ->  Abs (   749,  1460)
+	 79: Rel (     1,   -51)  ->  Abs (   750,  1409)
+	 80: Rel (   -53,   -72)  ->  Abs (   697,  1337)
+	 81: Rel (   -36,     0)  ->  Abs (   661,  1337)
+	 82: Rel (   -30,     0)  ->  Abs (   631,  1337)
+
+	Glyph 840: off = 0x0002BBEA, len = 460
+	  numberOfContours:	3
+	  xMin:			469
+	  yMin:			1254
+	  xMax:			760
+	  yMax:			1863
+
+	EndPoints
+	---------
+	  0:  33
+	  1:  44
+	  2:  55
+
+	  Length of Instructions:	302
+	00000: PUSHB[7]            136     0     1    25    17     1    19 
+	00008: PUSHW[1]            -64 
+	00011: NPUSHB      (29):    11    19    52    19    19    27     7    64    48    54 
+	                            52     7    64    11    18    52     7    64    29    32 
+	                            52     0     7     1     7     7    27    27    23 
+	00042: PUSHW[1]            -64 
+	00045: PUSHB[4]             71    71    52    23 
+	00050: PUSHW[1]            -64 
+	00053: PUSHB[4]             51    54    52    23 
+	00058: PUSHW[1]            -64 
+	00061: PUSHB[4]             30    32    52    23 
+	00066: PUSHW[4]            902    32    15   900 
+	00075: NPUSHB      (16):     2    32    32     2    64    23    68    52     2    64 
+	                             9    18    52     2     2    39 
+	00093: PUSHW[4]            936    44    38   936 
+	00102: PUSHB[4]             16    44     1    44 
+	00107: PUSHW[1]            935 
+	00110: NPUSHB      (13):    34    64    42    48    52    34    64    25    29    52 
+	                            34    34    50 
+	00125: PUSHW[4]            936    55    49   936 
+	00134: PUSHB[4]             16    55     1    55 
+	00139: PUSHW[1]            935 
+	00142: NPUSHB      (12):    45    42    64    18    26    52    42    64     9    11 
+	                            52    42 
+	00156: PUSHW[1]            934 
+	00159: NPUSHB      (13):    36    36    53    64    18    26    52    53    64     9 
+	                            11    52    53 
+	00174: PUSHW[1]            934 
+	00177: NPUSHB      (40):   127    47   255    47     2    47    47     0     0    29 
+	                            27    27    29     7     7    19    19     4    29    64 
+	                            40    46    52    29    64     9    32    52   255    29 
+	                             1    29    29     0     4    48     4     2     4     5 
+	00219: PUSHW[1]            340 
+	00222: SCANCTRL   
+	00223: SCANTYPE   
+	00224: MDAP[rd]   
+	00225: DELTAP1    
+	00226: SHP[rp1,zp0] 
+	00227: MDAP[rd]   
+	00228: DELTAP1    
+	00229: CALL       
+	00230: CALL       
+	00231: RTHG       
+	00232: SRP2       
+	00233: IP         
+	00234: MDAP[rd]   
+	00235: SHP[rp2,zp1] 
+	00236: MDAP[rd]   
+	00237: SRP1       
+	00238: SHP[rp1,zp0] 
+	00239: MDAP[rd]   
+	00240: SRP1       
+	00241: IP         
+	00242: MDAP[rd]   
+	00243: SHP[rp2,zp1] 
+	00244: RTG        
+	00245: MDAP[rd]   
+	00246: DELTAP2    
+	00247: MIRP[nrp0,md,rd,1] 
+	00248: CALL       
+	00249: CALL       
+	00250: SHP[rp1,zp0] 
+	00251: MDAP[rd]   
+	00252: MIRP[nrp0,md,rd,1] 
+	00253: CALL       
+	00254: CALL       
+	00255: SVTCA[y-axis] 
+	00256: MDAP[rd]   
+	00257: MIRP[nrp0,nmd,rd,0] 
+	00258: DELTAP1    
+	00259: MIRP[nrp0,md,rd,1] 
+	00260: SRP0       
+	00261: MIRP[srp0,md,rd,1] 
+	00262: SHP[rp2,zp1] 
+	00263: MDAP[rd]   
+	00264: CALL       
+	00265: CALL       
+	00266: MIRP[nrp0,nmd,rd,0] 
+	00267: DELTAP1    
+	00268: MIRP[nrp0,md,rd,1] 
+	00269: SRP0       
+	00270: MIRP[srp0,md,rd,1] 
+	00271: SHP[rp2,zp1] 
+	00272: MDAP[rd]   
+	00273: CALL       
+	00274: CALL       
+	00275: SHP[rp1,zp0] 
+	00276: MDAP[rd]   
+	00277: SRP0       
+	00278: MIRP[nrp0,md,rd,1] 
+	00279: SRP0       
+	00280: MIRP[srp0,md,rd,1] 
+	00281: CALL       
+	00282: CALL       
+	00283: CALL       
+	00284: SHP[rp2,zp1] 
+	00285: MDAP[rd]   
+	00286: SHP[rp1,zp0] 
+	00287: MDAP[rd]   
+	00288: DELTAP1    
+	00289: CALL       
+	00290: CALL       
+	00291: CALL       
+	00292: SRP2       
+	00293: IP         
+	00294: MDAP[rd]   
+	00295: CALL       
+	00296: IUP[y]     
+	00297: IUP[x]     
+	00298: SVTCA[x-axis] 
+	00299: DELTAP3    
+	00300: SVTCA[y-axis] 
+	00301: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:                      Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:                      Y-Short X-Short On
+	 35:                      Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:                      Y-Short X-Short On
+	 45:                              X-Short On
+	 46:                      Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual XDual         Y-Short X-Short On
+	 50:  YDual XDual         Y-Short X-Short On
+	 51:  YDual XDual                 X-Short Off
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short         On
+	 54:        XDual         Y-Short         Off
+	 55:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   627,  1673)  ->  Abs (   627,  1673)
+	  1: Rel (   -42,   -84)  ->  Abs (   585,  1589)
+	  2: Rel (   -50,     0)  ->  Abs (   535,  1589)
+	  3: Rel (   -66,     0)  ->  Abs (   469,  1589)
+	  4: Rel (     0,    84)  ->  Abs (   469,  1673)
+	  5: Rel (     0,    26)  ->  Abs (   469,  1699)
+	  6: Rel (    17,    56)  ->  Abs (   486,  1755)
+	  7: Rel (    10,     0)  ->  Abs (   496,  1755)
+	  8: Rel (    11,     0)  ->  Abs (   507,  1755)
+	  9: Rel (     0,   -15)  ->  Abs (   507,  1740)
+	 10: Rel (     0,    -5)  ->  Abs (   507,  1735)
+	 11: Rel (    -2,   -13)  ->  Abs (   505,  1722)
+	 12: Rel (    -2,   -14)  ->  Abs (   503,  1708)
+	 13: Rel (     0,    -6)  ->  Abs (   503,  1702)
+	 14: Rel (     0,   -27)  ->  Abs (   503,  1675)
+	 15: Rel (    28,     0)  ->  Abs (   531,  1675)
+	 16: Rel (    43,     0)  ->  Abs (   574,  1675)
+	 17: Rel (    18,    66)  ->  Abs (   592,  1741)
+	 18: Rel (    17,    67)  ->  Abs (   609,  1808)
+	 19: Rel (     7,     0)  ->  Abs (   616,  1808)
+	 20: Rel (     9,     0)  ->  Abs (   625,  1808)
+	 21: Rel (     6,   -36)  ->  Abs (   631,  1772)
+	 22: Rel (     6,   -36)  ->  Abs (   637,  1736)
+	 23: Rel (    35,     0)  ->  Abs (   672,  1736)
+	 24: Rel (    32,     0)  ->  Abs (   704,  1736)
+	 25: Rel (     7,    63)  ->  Abs (   711,  1799)
+	 26: Rel (     7,    64)  ->  Abs (   718,  1863)
+	 27: Rel (    11,     0)  ->  Abs (   729,  1863)
+	 28: Rel (    27,     0)  ->  Abs (   756,  1863)
+	 29: Rel (     0,  -106)  ->  Abs (   756,  1757)
+	 30: Rel (     0,   -46)  ->  Abs (   756,  1711)
+	 31: Rel (   -58,   -69)  ->  Abs (   698,  1642)
+	 32: Rel (   -28,     0)  ->  Abs (   670,  1642)
+	 33: Rel (   -30,     0)  ->  Abs (   640,  1642)
+	 34: Rel (  -144,  -223)  ->  Abs (   496,  1419)
+	 35: Rel (   -13,    -5)  ->  Abs (   483,  1414)
+	 36: Rel (     0,    30)  ->  Abs (   483,  1444)
+	 37: Rel (     0,    24)  ->  Abs (   483,  1468)
+	 38: Rel (    15,     6)  ->  Abs (   498,  1474)
+	 39: Rel (   248,   105)  ->  Abs (   746,  1579)
+	 40: Rel (     9,     0)  ->  Abs (   755,  1579)
+	 41: Rel (     5,    -7)  ->  Abs (   760,  1572)
+	 42: Rel (     0,   -14)  ->  Abs (   760,  1558)
+	 43: Rel (     0,   -27)  ->  Abs (   760,  1531)
+	 44: Rel (   -14,    -6)  ->  Abs (   746,  1525)
+	 45: Rel (  -250,  -266)  ->  Abs (   496,  1259)
+	 46: Rel (   -12,    -5)  ->  Abs (   484,  1254)
+	 47: Rel (     0,    29)  ->  Abs (   484,  1283)
+	 48: Rel (     0,    25)  ->  Abs (   484,  1308)
+	 49: Rel (    14,     6)  ->  Abs (   498,  1314)
+	 50: Rel (   248,   107)  ->  Abs (   746,  1421)
+	 51: Rel (     9,     0)  ->  Abs (   755,  1421)
+	 52: Rel (     5,    -8)  ->  Abs (   760,  1413)
+	 53: Rel (     0,   -14)  ->  Abs (   760,  1399)
+	 54: Rel (     0,   -27)  ->  Abs (   760,  1372)
+	 55: Rel (   -14,    -6)  ->  Abs (   746,  1366)
+
+	Glyph 841: off = 0x0002BDB6, len = 352
+	  numberOfContours:	2
+	  xMin:			455
+	  yMin:			1282
+	  xMax:			746
+	  yMax:			1681
+
+	EndPoints
+	---------
+	  0:  10
+	  1:  43
+
+	  Length of Instructions:	226
+	00000: PUSHW[5]              5   936    10     4   936 
+	00011: PUSHB[4]             16    10     1    10 
+	00016: PUSHW[1]            935 
+	00019: NPUSHB      (13):     0    64    23    54    52     0    64     9    18    52 
+	                             0     0    29 
+	00034: PUSHW[1]            -64 
+	00037: NPUSHB      (29):    11    19    52    29    29    37    17    64    48    55 
+	                            52    17    64    11    18    52    17    64    29    32 
+	                            52     0    17     1    17    17    37    37    33 
+	00068: PUSHW[1]            -64 
+	00071: PUSHB[4]             71    71    52    33 
+	00076: PUSHW[1]            -64 
+	00079: PUSHB[4]             51    54    52    33 
+	00084: PUSHW[1]            -64 
+	00087: PUSHB[4]             30    32    52    33 
+	00092: PUSHW[4]            902    42    25   900 
+	00101: NPUSHB      (18):    13   175    42     1    42    42    13     8    64    18 
+	                            26    52     8    64     9    11    52     8 
+	00121: PUSHW[1]            934 
+	00124: NPUSHB      (35):     2     2    11    11    39    37    37    39    17    17 
+	                            29    29    15    39    64    40    45    52    39    64 
+	                             9    31    52   255    39     1    39    39     0    15 
+	                            48    15     2    15     5 
+	00161: PUSHW[1]            340 
+	00164: SCANCTRL   
+	00165: SCANTYPE   
+	00166: MDAP[rd]   
+	00167: DELTAP1    
+	00168: SHP[rp1,zp0] 
+	00169: MDAP[rd]   
+	00170: DELTAP1    
+	00171: CALL       
+	00172: CALL       
+	00173: RTHG       
+	00174: SRP2       
+	00175: IP         
+	00176: MDAP[rd]   
+	00177: SHP[rp2,zp1] 
+	00178: MDAP[rd]   
+	00179: SRP1       
+	00180: SHP[rp1,zp0] 
+	00181: MDAP[rd]   
+	00182: SRP1       
+	00183: IP         
+	00184: MDAP[rd]   
+	00185: SHP[rp2,zp1] 
+	00186: RTG        
+	00187: MDAP[rd]   
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: CALL       
+	00190: CALL       
+	00191: SVTCA[y-axis] 
+	00192: MDAP[rd]   
+	00193: SHP[rp1,zp0] 
+	00194: MDAP[rd]   
+	00195: DELTAP1    
+	00196: SRP0       
+	00197: MIRP[nrp0,md,rd,1] 
+	00198: SRP0       
+	00199: MIRP[srp0,md,rd,1] 
+	00200: CALL       
+	00201: CALL       
+	00202: CALL       
+	00203: SHP[rp2,zp1] 
+	00204: MDAP[rd]   
+	00205: SHP[rp1,zp0] 
+	00206: MDAP[rd]   
+	00207: DELTAP1    
+	00208: CALL       
+	00209: CALL       
+	00210: CALL       
+	00211: SRP2       
+	00212: IP         
+	00213: MDAP[rd]   
+	00214: CALL       
+	00215: SHP[rp2,zp1] 
+	00216: MDAP[rd]   
+	00217: CALL       
+	00218: CALL       
+	00219: MIRP[nrp0,nmd,rd,0] 
+	00220: DELTAP1    
+	00221: MIRP[nrp0,md,rd,1] 
+	00222: SRP0       
+	00223: MIRP[nrp0,md,rd,1] 
+	00224: IUP[y]     
+	00225: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short On
+	 11:                              X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short X-Short On
+	 32:        XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:                      Y-Short X-Short Off
+	 42:                      Y-Short X-Short On
+	 43:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   472,  1520)  ->  Abs (   472,  1520)
+	  1: Rel (   -13,    -5)  ->  Abs (   459,  1515)
+	  2: Rel (     0,    30)  ->  Abs (   459,  1545)
+	  3: Rel (     0,    25)  ->  Abs (   459,  1570)
+	  4: Rel (    13,     5)  ->  Abs (   472,  1575)
+	  5: Rel (   248,   106)  ->  Abs (   720,  1681)
+	  6: Rel (     9,     0)  ->  Abs (   729,  1681)
+	  7: Rel (     5,    -8)  ->  Abs (   734,  1673)
+	  8: Rel (     0,   -14)  ->  Abs (   734,  1659)
+	  9: Rel (     0,   -27)  ->  Abs (   734,  1632)
+	 10: Rel (   -14,    -6)  ->  Abs (   720,  1626)
+	 11: Rel (  -107,  -258)  ->  Abs (   613,  1368)
+	 12: Rel (   -39,   -86)  ->  Abs (   574,  1282)
+	 13: Rel (   -51,     0)  ->  Abs (   523,  1282)
+	 14: Rel (   -68,     0)  ->  Abs (   455,  1282)
+	 15: Rel (     0,    92)  ->  Abs (   455,  1374)
+	 16: Rel (     0,    84)  ->  Abs (   455,  1458)
+	 17: Rel (    29,     0)  ->  Abs (   484,  1458)
+	 18: Rel (    13,     0)  ->  Abs (   497,  1458)
+	 19: Rel (     0,   -16)  ->  Abs (   497,  1442)
+	 20: Rel (     0,    -5)  ->  Abs (   497,  1437)
+	 21: Rel (    -1,   -12)  ->  Abs (   496,  1425)
+	 22: Rel (    -2,   -13)  ->  Abs (   494,  1412)
+	 23: Rel (     0,    -7)  ->  Abs (   494,  1405)
+	 24: Rel (     0,   -27)  ->  Abs (   494,  1378)
+	 25: Rel (    27,     0)  ->  Abs (   521,  1378)
+	 26: Rel (    43,     0)  ->  Abs (   564,  1378)
+	 27: Rel (    18,    67)  ->  Abs (   582,  1445)
+	 28: Rel (    18,    66)  ->  Abs (   600,  1511)
+	 29: Rel (     1,     0)  ->  Abs (   601,  1511)
+	 30: Rel (    15,     0)  ->  Abs (   616,  1511)
+	 31: Rel (     4,   -36)  ->  Abs (   620,  1475)
+	 32: Rel (     4,   -37)  ->  Abs (   624,  1438)
+	 33: Rel (    33,     0)  ->  Abs (   657,  1438)
+	 34: Rel (    34,     0)  ->  Abs (   691,  1438)
+	 35: Rel (     7,    65)  ->  Abs (   698,  1503)
+	 36: Rel (     8,    64)  ->  Abs (   706,  1567)
+	 37: Rel (    10,     0)  ->  Abs (   716,  1567)
+	 38: Rel (    30,     0)  ->  Abs (   746,  1567)
+	 39: Rel (     0,  -109)  ->  Abs (   746,  1458)
+	 40: Rel (     0,   -51)  ->  Abs (   746,  1407)
+	 41: Rel (   -52,   -73)  ->  Abs (   694,  1334)
+	 42: Rel (   -34,    -1)  ->  Abs (   660,  1333)
+	 43: Rel (   -27,     0)  ->  Abs (   633,  1333)
+
+	Glyph 842: off = 0x0002BF16, len = 490
+	  numberOfContours:	3
+	  xMin:			424
+	  yMin:			1282
+	  xMax:			758
+	  yMax:			1947
+
+	EndPoints
+	---------
+	  0:  21
+	  1:  29
+	  2:  62
+
+	  Length of Instructions:	318
+	00000: PUSHW[2]             13   -16 
+	00005: NPUSHB      (27):    29    33    52    40    18   214    13     2     1     0 
+	                            20    20    16     8     8    26    64    29    41    52 
+	                            26    26    18     3    13     3    22 
+	00034: PUSHW[1]            906 
+	00037: NPUSHB      (23):    16    64    11    13    52    16    64    30    32    52 
+	                            16    64    28    59    52    16    64     9    18    52 
+	                            16    16    48 
+	00062: PUSHW[1]            -64 
+	00065: NPUSHB      (29):    11    29    52    48    48    56    36    64    48    54 
+	                            52    36    64    11    18    52    36    64    30    32 
+	                            52     0    36     1    36    36    56    56    52 
+	00096: PUSHW[1]            -64 
+	00099: PUSHB[4]             71    71    52    52 
+	00104: PUSHW[1]            -64 
+	00107: PUSHB[4]             51    54    52    52 
+	00112: PUSHW[1]            -64 
+	00115: PUSHB[4]             30    32    52    52 
+	00120: PUSHW[4]            902    61    44   900 
+	00129: NPUSHB      (27):    32    61    61    32    13    11    22    24    18     3 
+	                            28     0     0     5    16    64    34    42    52    16 
+	                            64    11    28    52    16    16    11 
+	00158: PUSHW[1]            876 
+	00161: NPUSHB      (21):    24    64    46    63    52    24    64    29    38    52 
+	                             0    24     1    64    24    80    24     2    24    24 
+	                            28 
+	00184: PUSHW[1]            879 
+	00187: NPUSHB      (33):     5     5    30    30    58    56    56    58    36    36 
+	                            48    48    34    58    64    40    45    52    58    64 
+	                             9    31    52   255    58     1    58    58    48    34 
+	                             1    34     4 
+	00222: PUSHW[1]            340 
+	00225: SCANCTRL   
+	00226: SCANTYPE   
+	00227: MDAP[rd]   
+	00228: DELTAP1    
+	00229: SHP[rp1,zp0] 
+	00230: MDAP[rd]   
+	00231: DELTAP1    
+	00232: CALL       
+	00233: CALL       
+	00234: RTHG       
+	00235: SRP2       
+	00236: IP         
+	00237: MDAP[rd]   
+	00238: SHP[rp2,zp1] 
+	00239: MDAP[rd]   
+	00240: SRP1       
+	00241: SHP[rp1,zp0] 
+	00242: MDAP[rd]   
+	00243: SRP1       
+	00244: IP         
+	00245: MDAP[rd]   
+	00246: SHP[rp2,zp1] 
+	00247: RTG        
+	00248: MDAP[rd]   
+	00249: MIRP[srp0,md,rd,1] 
+	00250: SHP[rp2,zp1] 
+	00251: MDAP[rd]   
+	00252: DELTAP1    
+	00253: DELTAP1    
+	00254: CALL       
+	00255: CALL       
+	00256: MIRP[srp0,md,rd,1] 
+	00257: SHP[rp2,zp1] 
+	00258: MDAP[rd]   
+	00259: CALL       
+	00260: CALL       
+	00261: SRP1       
+	00262: SHP[rp1,zp0] 
+	00263: MDAP[rd]   
+	00264: SRP1       
+	00265: SHP[rp1,zp0] 
+	00266: SHP[rp1,zp0] 
+	00267: SRP2       
+	00268: IP         
+	00269: SRP1       
+	00270: IP         
+	00271: SVTCA[y-axis] 
+	00272: MDAP[rd]   
+	00273: SHP[rp1,zp0] 
+	00274: MDAP[rd]   
+	00275: SRP0       
+	00276: MIRP[nrp0,md,rd,1] 
+	00277: SRP0       
+	00278: MIRP[srp0,md,rd,1] 
+	00279: CALL       
+	00280: CALL       
+	00281: CALL       
+	00282: SHP[rp2,zp1] 
+	00283: MDAP[rd]   
+	00284: SHP[rp1,zp0] 
+	00285: MDAP[rd]   
+	00286: DELTAP1    
+	00287: CALL       
+	00288: CALL       
+	00289: CALL       
+	00290: SRP2       
+	00291: IP         
+	00292: MDAP[rd]   
+	00293: CALL       
+	00294: SHP[rp2,zp1] 
+	00295: MDAP[rd]   
+	00296: CALL       
+	00297: CALL       
+	00298: CALL       
+	00299: CALL       
+	00300: MIRP[nrp0,md,rd,1] 
+	00301: SLOOP      
+	00302: IP         
+	00303: SHP[rp2,zp1] 
+	00304: MDAP[rd]   
+	00305: CALL       
+	00306: SHP[rp1,zp0] 
+	00307: MDAP[rd]   
+	00308: SRP1       
+	00309: SHP[rp1,zp0] 
+	00310: MDAP[rd]   
+	00311: SHP[rp1,zp0] 
+	00312: SHP[rp1,zp0] 
+	00313: IUP[y]     
+	00314: IUP[x]     
+	00315: SVTCA[y-axis] 
+	00316: DELTAP2    
+	00317: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:        XDual                 X-Short On
+	 31:                      Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:                      Y-Short X-Short On
+	 41:                      Y-Short X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short Off
+	 46:  YDual XDual         Y-Short X-Short On
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual                 X-Short Off
+	 50:        XDual         Y-Short X-Short On
+	 51:        XDual         Y-Short X-Short Off
+	 52:  YDual XDual                 X-Short On
+	 53:  YDual XDual                 X-Short Off
+	 54:  YDual XDual         Y-Short X-Short On
+	 55:  YDual XDual         Y-Short X-Short Off
+	 56:  YDual XDual                 X-Short On
+	 57:  YDual XDual                 X-Short Off
+	 58:        XDual         Y-Short         On
+	 59:        XDual         Y-Short X-Short Off
+	 60:                      Y-Short X-Short Off
+	 61:  YDual                       X-Short On
+	 62:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   424,  1533)  ->  Abs (   424,  1533)
+	  1: Rel (     0,    13)  ->  Abs (   424,  1546)
+	  2: Rel (   143,    65)  ->  Abs (   567,  1611)
+	  3: Rel (    54,    78)  ->  Abs (   621,  1689)
+	  4: Rel (   -59,    37)  ->  Abs (   562,  1726)
+	  5: Rel (     0,    53)  ->  Abs (   562,  1779)
+	  6: Rel (     1,    45)  ->  Abs (   563,  1824)
+	  7: Rel (    86,   123)  ->  Abs (   649,  1947)
+	  8: Rel (    38,     0)  ->  Abs (   687,  1947)
+	  9: Rel (    23,     0)  ->  Abs (   710,  1947)
+	 10: Rel (    34,   -58)  ->  Abs (   744,  1889)
+	 11: Rel (     0,   -36)  ->  Abs (   744,  1853)
+	 12: Rel (     0,   -49)  ->  Abs (   744,  1804)
+	 13: Rel (   -35,   -66)  ->  Abs (   709,  1738)
+	 14: Rel (    49,   -23)  ->  Abs (   758,  1715)
+	 15: Rel (     0,   -28)  ->  Abs (   758,  1687)
+	 16: Rel (     0,   -49)  ->  Abs (   758,  1638)
+	 17: Rel (   -26,     0)  ->  Abs (   732,  1638)
+	 18: Rel (   -78,    37)  ->  Abs (   654,  1675)
+	 19: Rel (  -117,  -150)  ->  Abs (   537,  1525)
+	 20: Rel (   -82,     0)  ->  Abs (   455,  1525)
+	 21: Rel (   -16,     0)  ->  Abs (   439,  1525)
+	 22: Rel (   239,   228)  ->  Abs (   678,  1753)
+	 23: Rel (    17,    31)  ->  Abs (   695,  1784)
+	 24: Rel (     0,    32)  ->  Abs (   695,  1816)
+	 25: Rel (     0,    61)  ->  Abs (   695,  1877)
+	 26: Rel (   -41,     0)  ->  Abs (   654,  1877)
+	 27: Rel (   -39,     0)  ->  Abs (   615,  1877)
+	 28: Rel (     0,   -51)  ->  Abs (   615,  1826)
+	 29: Rel (     0,   -60)  ->  Abs (   615,  1766)
+	 30: Rel (     1,  -398)  ->  Abs (   616,  1368)
+	 31: Rel (   -43,   -86)  ->  Abs (   573,  1282)
+	 32: Rel (   -49,     0)  ->  Abs (   524,  1282)
+	 33: Rel (   -66,     0)  ->  Abs (   458,  1282)
+	 34: Rel (     0,    94)  ->  Abs (   458,  1376)
+	 35: Rel (     0,    84)  ->  Abs (   458,  1460)
+	 36: Rel (    29,     0)  ->  Abs (   487,  1460)
+	 37: Rel (    13,     0)  ->  Abs (   500,  1460)
+	 38: Rel (     0,   -16)  ->  Abs (   500,  1444)
+	 39: Rel (     0,    -5)  ->  Abs (   500,  1439)
+	 40: Rel (    -2,   -12)  ->  Abs (   498,  1427)
+	 41: Rel (    -2,   -13)  ->  Abs (   496,  1414)
+	 42: Rel (     0,    -7)  ->  Abs (   496,  1407)
+	 43: Rel (     0,   -27)  ->  Abs (   496,  1380)
+	 44: Rel (    28,     0)  ->  Abs (   524,  1380)
+	 45: Rel (    43,     0)  ->  Abs (   567,  1380)
+	 46: Rel (    17,    66)  ->  Abs (   584,  1446)
+	 47: Rel (    18,    67)  ->  Abs (   602,  1513)
+	 48: Rel (     2,     0)  ->  Abs (   604,  1513)
+	 49: Rel (    14,     0)  ->  Abs (   618,  1513)
+	 50: Rel (     4,   -37)  ->  Abs (   622,  1476)
+	 51: Rel (     4,   -37)  ->  Abs (   626,  1439)
+	 52: Rel (    35,     0)  ->  Abs (   661,  1439)
+	 53: Rel (    32,     0)  ->  Abs (   693,  1439)
+	 54: Rel (     7,    63)  ->  Abs (   700,  1502)
+	 55: Rel (     7,    64)  ->  Abs (   707,  1566)
+	 56: Rel (    11,     0)  ->  Abs (   718,  1566)
+	 57: Rel (    31,     0)  ->  Abs (   749,  1566)
+	 58: Rel (     0,  -108)  ->  Abs (   749,  1458)
+	 59: Rel (     1,   -51)  ->  Abs (   750,  1407)
+	 60: Rel (   -53,   -72)  ->  Abs (   697,  1335)
+	 61: Rel (   -36,     0)  ->  Abs (   661,  1335)
+	 62: Rel (   -30,     0)  ->  Abs (   631,  1335)
+
+	Glyph 843: off = 0x0002C100, len = 346
+	  numberOfContours:	2
+	  xMin:			458
+	  yMin:			1253
+	  xMax:			749
+	  yMax:			1702
+
+	EndPoints
+	---------
+	  0:  33
+	  1:  44
+
+	  Length of Instructions:	219
+	00000: PUSHW[2]             19   -64 
+	00005: NPUSHB      (29):    11    19    52    19    19    27     7    64    48    54 
+	                            52     7    64    11    18    52     7    64    29    32 
+	                            52     0     7     1     7     7    27    27    23 
+	00036: PUSHW[1]            -64 
+	00039: PUSHB[4]             71    71    52    23 
+	00044: PUSHW[1]            -64 
+	00047: PUSHB[4]             51    54    52    23 
+	00052: PUSHW[1]            -64 
+	00055: PUSHB[4]             30    32    52    23 
+	00060: PUSHW[4]            902    32    15   900 
+	00069: NPUSHB      (19):     2   175    32     1    32    32     2    64    24    68 
+	                            52     2    64     9    18    52     2     2    39 
+	00090: PUSHW[4]            936    44    38   936 
+	00099: PUSHB[4]             16    44     1    44 
+	00104: PUSHW[1]            935 
+	00107: NPUSHB      (40):    34     0     0    29    27    27    29     7     7    19 
+	                            19     4    29    64    40    46    52    29    64     9 
+	                            32    52   255    29     1    29    29     4     4    42 
+	                            64    18    26    52    42    64     9    11    52    42 
+	00149: PUSHW[4]            934    36     5   340 
+	00158: SCANCTRL   
+	00159: SCANTYPE   
+	00160: MDAP[rd]   
+	00161: MIRP[nrp0,md,rd,1] 
+	00162: CALL       
+	00163: CALL       
+	00164: SHP[rp1,zp0] 
+	00165: MDAP[rd]   
+	00166: SHP[rp1,zp0] 
+	00167: MDAP[rd]   
+	00168: DELTAP1    
+	00169: CALL       
+	00170: CALL       
+	00171: RTHG       
+	00172: SRP2       
+	00173: IP         
+	00174: MDAP[rd]   
+	00175: SHP[rp2,zp1] 
+	00176: MDAP[rd]   
+	00177: SRP1       
+	00178: SHP[rp1,zp0] 
+	00179: MDAP[rd]   
+	00180: SRP1       
+	00181: IP         
+	00182: MDAP[rd]   
+	00183: SVTCA[y-axis] 
+	00184: RTG        
+	00185: MDAP[rd]   
+	00186: MIRP[nrp0,nmd,rd,0] 
+	00187: DELTAP1    
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: SRP0       
+	00190: MIRP[srp0,md,rd,1] 
+	00191: SHP[rp2,zp1] 
+	00192: MDAP[rd]   
+	00193: CALL       
+	00194: CALL       
+	00195: SHP[rp1,zp0] 
+	00196: MDAP[rd]   
+	00197: DELTAP1    
+	00198: SRP0       
+	00199: MIRP[nrp0,md,rd,1] 
+	00200: SRP0       
+	00201: MIRP[srp0,md,rd,1] 
+	00202: CALL       
+	00203: CALL       
+	00204: CALL       
+	00205: SHP[rp2,zp1] 
+	00206: MDAP[rd]   
+	00207: SHP[rp1,zp0] 
+	00208: MDAP[rd]   
+	00209: DELTAP1    
+	00210: CALL       
+	00211: CALL       
+	00212: CALL       
+	00213: SRP2       
+	00214: IP         
+	00215: MDAP[rd]   
+	00216: CALL       
+	00217: IUP[y]     
+	00218: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:                      Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:                      Y-Short X-Short On
+	 35:                      Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   616,  1512)  ->  Abs (   616,  1512)
+	  1: Rel (   -42,   -84)  ->  Abs (   574,  1428)
+	  2: Rel (   -50,     0)  ->  Abs (   524,  1428)
+	  3: Rel (   -66,     0)  ->  Abs (   458,  1428)
+	  4: Rel (     0,    84)  ->  Abs (   458,  1512)
+	  5: Rel (     0,    26)  ->  Abs (   458,  1538)
+	  6: Rel (    17,    56)  ->  Abs (   475,  1594)
+	  7: Rel (    10,     0)  ->  Abs (   485,  1594)
+	  8: Rel (    11,     0)  ->  Abs (   496,  1594)
+	  9: Rel (     0,   -15)  ->  Abs (   496,  1579)
+	 10: Rel (     0,    -5)  ->  Abs (   496,  1574)
+	 11: Rel (    -2,   -13)  ->  Abs (   494,  1561)
+	 12: Rel (    -2,   -14)  ->  Abs (   492,  1547)
+	 13: Rel (     0,    -6)  ->  Abs (   492,  1541)
+	 14: Rel (     0,   -27)  ->  Abs (   492,  1514)
+	 15: Rel (    28,     0)  ->  Abs (   520,  1514)
+	 16: Rel (    43,     0)  ->  Abs (   563,  1514)
+	 17: Rel (    18,    66)  ->  Abs (   581,  1580)
+	 18: Rel (    17,    67)  ->  Abs (   598,  1647)
+	 19: Rel (     7,     0)  ->  Abs (   605,  1647)
+	 20: Rel (    10,     0)  ->  Abs (   615,  1647)
+	 21: Rel (     5,   -36)  ->  Abs (   620,  1611)
+	 22: Rel (     6,   -36)  ->  Abs (   626,  1575)
+	 23: Rel (    35,     0)  ->  Abs (   661,  1575)
+	 24: Rel (    32,     0)  ->  Abs (   693,  1575)
+	 25: Rel (     7,    63)  ->  Abs (   700,  1638)
+	 26: Rel (     7,    64)  ->  Abs (   707,  1702)
+	 27: Rel (    11,     0)  ->  Abs (   718,  1702)
+	 28: Rel (    27,     0)  ->  Abs (   745,  1702)
+	 29: Rel (     0,  -106)  ->  Abs (   745,  1596)
+	 30: Rel (     0,   -46)  ->  Abs (   745,  1550)
+	 31: Rel (   -58,   -69)  ->  Abs (   687,  1481)
+	 32: Rel (   -28,     0)  ->  Abs (   659,  1481)
+	 33: Rel (   -29,     0)  ->  Abs (   630,  1481)
+	 34: Rel (  -145,  -223)  ->  Abs (   485,  1258)
+	 35: Rel (   -13,    -5)  ->  Abs (   472,  1253)
+	 36: Rel (     0,    30)  ->  Abs (   472,  1283)
+	 37: Rel (     0,    24)  ->  Abs (   472,  1307)
+	 38: Rel (    15,     6)  ->  Abs (   487,  1313)
+	 39: Rel (   248,   105)  ->  Abs (   735,  1418)
+	 40: Rel (     9,     0)  ->  Abs (   744,  1418)
+	 41: Rel (     5,    -7)  ->  Abs (   749,  1411)
+	 42: Rel (     0,   -14)  ->  Abs (   749,  1397)
+	 43: Rel (     0,   -27)  ->  Abs (   749,  1370)
+	 44: Rel (   -14,    -6)  ->  Abs (   735,  1364)
+
+	Glyph 844: off = 0x0002C25A, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-427
+	  xMax:			1229
+	  yMax:			626
+
+	     0: Flags:		0x0236
+		Glyf Index:	1115
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	351
+		Y WOffset:	-1279
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1    47    64    13    13    52    47 
+	00008: SVTCA[x-axis] 
+	00009: SRP1       
+	00010: CALL       
+	00011: SHC[rp1,zp0] 
+
+	Glyph 845: off = 0x0002C280, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			29
+	  yMin:			-402
+	  xMax:			1229
+	  yMax:			911
+
+	     0: Flags:		0x0236
+		Glyf Index:	1116
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0037
+		Glyf Index:	1021
+		X WOffset:	-211
+		Y WOffset:	-163
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     2: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	326
+		Y WOffset:	-1257
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     2    15    54     1    54     1     0    50    16    50 
+	                             2    50 
+	00014: SVTCA[x-axis] 
+	00015: SRP1       
+	00016: DELTAP1    
+	00017: SHC[rp1,zp0] 
+	00018: SVTCA[x-axis] 
+	00019: SRP1       
+	00020: DELTAP1    
+	00021: SHC[rp1,zp0] 
+
+	Glyph 846: off = 0x0002C2B8, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			43
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			339
+
+	     0: Flags:		0x0236
+		Glyf Index:	1117
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	471
+		Y WOffset:	-1267
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1   224    55     1    55     1     0    52    52    57 
+	                            57    64 
+	00014: SVTCA[x-axis] 
+	00015: CALL       
+	00016: SHC[rp1,zp0] 
+	00017: SVTCA[y-axis] 
+	00018: SRP1       
+	00019: DELTAP1    
+	00020: SHC[rp1,zp0] 
+
+	Glyph 847: off = 0x0002C2E8, len = 568
+	  numberOfContours:	3
+	  xMin:			43
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			339
+
+	EndPoints
+	---------
+	  0:  57
+	  1:  61
+	  2:  69
+
+	  Length of Instructions:	362
+	00000: PUSHB[6]             44     8    17    19    52    20 
+	00007: PUSHW[1]            -24 
+	00010: NPUSHB      (17):    18    20    52     7    40     1   198    34   214    34 
+	                             2    23    24    10    15    52    53 
+	00029: PUSHW[1]            -16 
+	00032: PUSHB[4]             17    19    52     7 
+	00037: PUSHW[1]            -16 
+	00040: NPUSHB      (43):    43    45    52   200     4   198    52   218     4   214 
+	                            52     4   203    44   203    45   219    44   219    45 
+	                             4   107    14   107    16   150    44   249    44   249 
+	                            45     5    44    45    16    14     4     8    37    58 
+	                            60    60    61 
+	00085: PUSHW[1]            924 
+	00088: PUSHB[8]             59    28    64     9    15    52    28     0 
+	00097: PUSHW[4]            907     1     8   907 
+	00106: PUSHB[7]             15    51   207    51     2    51    37 
+	00114: PUSHW[3]            907    22   -64 
+	00121: NPUSHB      (20):     9    12    52    22   189    65    66    62    65    63 
+	                            68    68    67    69    64    64    63    67    67    65 
+	00143: PUSHW[1]            955 
+	00146: NPUSHB      (14):    63    69    69    63    69    67    67    66    68    63 
+	                            65    65    64    68 
+	00162: PUSHW[3]            954    64   -64 
+	00169: PUSHB[4]             12    22    52    64 
+	00174: PUSHW[1]            954 
+	00177: NPUSHB      (11):    62     0    66   208    66     2    66    59    61    61 
+	                            60 
+	00190: PUSHW[4]            923    58    41   883 
+	00199: NPUSHB      (34):     0    18     1   160    18   192    18   208    18   240 
+	                            18     4    64    18    80    18   128    18   144    18 
+	                             4     0    18    96    18   112    18   224    18     4 
+	                            18    18     1    12 
+	00235: PUSHW[1]            878 
+	00238: NPUSHB      (11):    47    47    24     0     1   112    30     1    30    30 
+	                            33 
+	00251: PUSHW[4]            883    24     4   340 
+	00260: SCANCTRL   
+	00261: SCANTYPE   
+	00262: MDAP[rd]   
+	00263: MIRP[srp0,md,rd,1] 
+	00264: SHP[rp2,zp1] 
+	00265: MDAP[rd]   
+	00266: DELTAP1    
+	00267: MDAP[rd]   
+	00268: ALIGNRP    
+	00269: SRP2       
+	00270: IP         
+	00271: MDAP[rd]   
+	00272: MIRP[nrp0,md,rd,1] 
+	00273: SRP2       
+	00274: IP         
+	00275: MDAP[rd]   
+	00276: DELTAP1    
+	00277: DELTAP1    
+	00278: DELTAP1    
+	00279: DELTAP2    
+	00280: MIRP[nrp0,md,rd,1] 
+	00281: MDAP[rd]   
+	00282: MIRP[nrp0,md,rd,1] 
+	00283: RTDG       
+	00284: IP         
+	00285: MDAP[rd]   
+	00286: RTG        
+	00287: ALIGNRP    
+	00288: MDAP[rd]   
+	00289: DELTAP1    
+	00290: SHP[rp1,zp0] 
+	00291: MIRP[nrp0,md,rd,1] 
+	00292: CALL       
+	00293: MIRP[nrp0,md,rd,1] 
+	00294: RTDG       
+	00295: SRP2       
+	00296: IP         
+	00297: MDAP[rd]   
+	00298: ALIGNRP    
+	00299: SRP1       
+	00300: SRP2       
+	00301: IP         
+	00302: MDAP[rd]   
+	00303: ALIGNRP    
+	00304: RTG        
+	00305: SVTCA[y-axis] 
+	00306: MDAP[rd]   
+	00307: SHP[rp1,zp0] 
+	00308: MDAP[rd]   
+	00309: SRP0       
+	00310: MIRP[srp0,md,rd,1] 
+	00311: SHP[rp2,zp1] 
+	00312: MDAP[rd]   
+	00313: RTDG       
+	00314: SRP1       
+	00315: IP         
+	00316: MDAP[rd]   
+	00317: SRP1       
+	00318: SRP2       
+	00319: IP         
+	00320: MDAP[rd]   
+	00321: RTG        
+	00322: SRP1       
+	00323: SRP2       
+	00324: IP         
+	00325: IP         
+	00326: SRP0       
+	00327: MIRP[srp0,md,rd,2] 
+	00328: CALL       
+	00329: MIRP[nrp0,md,rd,1] 
+	00330: MDAP[rd]   
+	00331: DELTAP1    
+	00332: MIRP[nrp0,md,rd,1] 
+	00333: MDAP[rd]   
+	00334: MIRP[nrp0,md,rd,1] 
+	00335: MDAP[rd]   
+	00336: CALL       
+	00337: MDAP[rd]   
+	00338: MIRP[nrp0,md,rd,1] 
+	00339: RTDG       
+	00340: IP         
+	00341: MDAP[rd]   
+	00342: ALIGNRP    
+	00343: RTG        
+	00344: SRP1       
+	00345: SRP2       
+	00346: SLOOP      
+	00347: IP         
+	00348: DELTAP2    
+	00349: DELTAP1    
+	00350: IUP[y]     
+	00351: IUP[x]     
+	00352: SVTCA[x-axis] 
+	00353: DELTAP1    
+	00354: CALL       
+	00355: CALL       
+	00356: CALL       
+	00357: SVTCA[y-axis] 
+	00358: DELTAP1    
+	00359: DELTAP2    
+	00360: CALL       
+	00361: CALL       
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short On
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                               Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:        XDual         Y-Short X-Short On
+	 36:        XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual               Y-Short X-Short On
+	 45:  YDual               Y-Short X-Short On
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual XDual         Y-Short X-Short On
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short Off
+	 53:        XDual         Y-Short X-Short On
+	 54:        XDual         Y-Short X-Short Off
+	 55:        XDual         Y-Short X-Short On
+	 56:        XDual         Y-Short X-Short Off
+	 57:  YDual XDual                 X-Short On
+	 58:        XDual                 X-Short On
+	 59:                      Y-Short X-Short On
+	 60:  YDual               Y-Short X-Short On
+	 61:  YDual XDual         Y-Short X-Short On
+	 62:                                      On
+	 63:                      Y-Short X-Short On
+	 64:  YDual               Y-Short X-Short On
+	 65:  YDual XDual         Y-Short X-Short On
+	 66:        XDual         Y-Short X-Short On
+	 67:  YDual XDual         Y-Short X-Short On
+	 68:        XDual         Y-Short X-Short On
+	 69:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,   123)  ->  Abs (  1229,   123)
+	  1: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	  2: Rel (  -131,     0)  ->  Abs (  1098,     0)
+	  3: Rel (   -68,     0)  ->  Abs (  1030,     0)
+	  4: Rel (   -40,    38)  ->  Abs (   990,    38)
+	  5: Rel (   -24,    22)  ->  Abs (   966,    60)
+	  6: Rel (   -42,    76)  ->  Abs (   924,   136)
+	  7: Rel (   -47,    82)  ->  Abs (   877,   218)
+	  8: Rel (   -63,     0)  ->  Abs (   814,   218)
+	  9: Rel (   -60,     0)  ->  Abs (   754,   218)
+	 10: Rel (   -79,   -31)  ->  Abs (   675,   187)
+	 11: Rel (   -95,   -39)  ->  Abs (   580,   148)
+	 12: Rel (     0,   -50)  ->  Abs (   580,    98)
+	 13: Rel (     0,   -27)  ->  Abs (   580,    71)
+	 14: Rel (    91,   -20)  ->  Abs (   671,    51)
+	 15: Rel (   149,   -33)  ->  Abs (   820,    18)
+	 16: Rel (    35,   -11)  ->  Abs (   855,     7)
+	 17: Rel (    87,   -28)  ->  Abs (   942,   -21)
+	 18: Rel (     0,  -119)  ->  Abs (   942,  -140)
+	 19: Rel (     0,   -88)  ->  Abs (   942,  -228)
+	 20: Rel (  -195,   -83)  ->  Abs (   747,  -311)
+	 21: Rel (  -152,   -64)  ->  Abs (   595,  -375)
+	 22: Rel (  -168,     0)  ->  Abs (   427,  -375)
+	 23: Rel (  -384,     0)  ->  Abs (    43,  -375)
+	 24: Rel (     0,   234)  ->  Abs (    43,  -141)
+	 25: Rel (     0,    56)  ->  Abs (    43,   -85)
+	 26: Rel (    32,    71)  ->  Abs (    75,   -14)
+	 27: Rel (    37,    79)  ->  Abs (   112,    65)
+	 28: Rel (    44,     0)  ->  Abs (   156,    65)
+	 29: Rel (    15,     0)  ->  Abs (   171,    65)
+	 30: Rel (     0,   -21)  ->  Abs (   171,    44)
+	 31: Rel (     0,     4)  ->  Abs (   171,    48)
+	 32: Rel (   -66,  -128)  ->  Abs (   105,   -80)
+	 33: Rel (     0,   -44)  ->  Abs (   105,  -124)
+	 34: Rel (     0,   -80)  ->  Abs (   105,  -204)
+	 35: Rel (   102,   -31)  ->  Abs (   207,  -235)
+	 36: Rel (   123,   -27)  ->  Abs (   330,  -262)
+	 37: Rel (   121,     0)  ->  Abs (   451,  -262)
+	 38: Rel (   101,     0)  ->  Abs (   552,  -262)
+	 39: Rel (   163,    29)  ->  Abs (   715,  -233)
+	 40: Rel (   157,    37)  ->  Abs (   872,  -196)
+	 41: Rel (     0,    35)  ->  Abs (   872,  -161)
+	 42: Rel (     0,    30)  ->  Abs (   872,  -131)
+	 43: Rel (   -33,    26)  ->  Abs (   839,  -105)
+	 44: Rel (   -47,    11)  ->  Abs (   792,   -94)
+	 45: Rel (  -143,    32)  ->  Abs (   649,   -62)
+	 46: Rel (  -120,    28)  ->  Abs (   529,   -34)
+	 47: Rel (     0,    78)  ->  Abs (   529,    44)
+	 48: Rel (     0,   114)  ->  Abs (   529,   158)
+	 49: Rel (   117,    93)  ->  Abs (   646,   251)
+	 50: Rel (   110,    88)  ->  Abs (   756,   339)
+	 51: Rel (   115,     0)  ->  Abs (   871,   339)
+	 52: Rel (    45,     0)  ->  Abs (   916,   339)
+	 53: Rel (    54,  -100)  ->  Abs (   970,   239)
+	 54: Rel (    35,   -65)  ->  Abs (  1005,   174)
+	 55: Rel (    22,   -20)  ->  Abs (  1027,   154)
+	 56: Rel (    34,   -31)  ->  Abs (  1061,   123)
+	 57: Rel (    60,     0)  ->  Abs (  1121,   123)
+	 58: Rel (   107,  -424)  ->  Abs (  1228,  -301)
+	 59: Rel (  -109,  -111)  ->  Abs (  1119,  -412)
+	 60: Rel (  -111,   111)  ->  Abs (  1008,  -301)
+	 61: Rel (   111,   109)  ->  Abs (  1119,  -192)
+	 62: Rel (  -685,  -287)  ->  Abs (   434,  -479)
+	 63: Rel (   -81,   -82)  ->  Abs (   353,  -561)
+	 64: Rel (   -82,    83)  ->  Abs (   271,  -478)
+	 65: Rel (    82,    82)  ->  Abs (   353,  -396)
+	 66: Rel (    75,   -75)  ->  Abs (   428,  -471)
+	 67: Rel (    82,    81)  ->  Abs (   510,  -390)
+	 68: Rel (    83,   -82)  ->  Abs (   593,  -472)
+	 69: Rel (   -83,   -83)  ->  Abs (   510,  -555)
+
+	Glyph 848: off = 0x0002C520, len = 44
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-427
+	  xMax:			1229
+	  yMax:			1086
+
+	     0: Flags:		0x0236
+		Glyf Index:	1115
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	350
+		Y WOffset:	184
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1    32    51   191    51     2     0    51    51    54 
+	                            54    64 
+	00014: SVTCA[x-axis] 
+	00015: CALL       
+	00016: DELTAP1    
+	00017: SHC[rp1,zp0] 
+
+	Glyph 849: off = 0x0002C54C, len = 102
+	  numberOfContours:	-1  (Composite)
+	  xMin:			29
+	  yMin:			-383
+	  xMax:			1229
+	  yMax:			1064
+
+	     0: Flags:		0x0236
+		Glyf Index:	1116
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0037
+		Glyf Index:	1021
+		X WOffset:	-211
+		Y WOffset:	-83
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     2: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	332
+		Y WOffset:	162
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (48):     2   176    55   192    55   208    55     3    55     1 
+	                            16    51     1    16    51    48    51    80    51     3 
+	                            48    51   224    51   240    51     3    51     1   224 
+	                            50     1    50     2    79    54    95    54   191    54 
+	                           207    54   224    54   240    54     6    54 
+	00050: SVTCA[x-axis] 
+	00051: SRP1       
+	00052: DELTAP1    
+	00053: SHC[rp1,zp0] 
+	00054: SVTCA[x-axis] 
+	00055: SRP1       
+	00056: DELTAP1    
+	00057: SHC[rp1,zp0] 
+	00058: SVTCA[y-axis] 
+	00059: SRP1       
+	00060: DELTAP1    
+	00061: DELTAP2    
+	00062: DELTAP3    
+	00063: SHC[rp1,zp0] 
+	00064: SVTCA[y-axis] 
+	00065: SRP1       
+	00066: DELTAP1    
+	00067: SHC[rp1,zp0] 
+
+	Glyph 850: off = 0x0002C5B2, len = 90
+	  numberOfContours:	-1  (Composite)
+	  xMin:			43
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			730
+
+	     0: Flags:		0x0236
+		Glyf Index:	1117
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	232
+		Y WOffset:	-172
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1    55 
+	00003: PUSHW[1]            -64 
+	00006: PUSHB[4]             13    22    52    55 
+	00011: PUSHW[1]            -64 
+	00014: NPUSHB      (35):    36    41    52    31    55     1   239    55   255    55 
+	                             2    31    55    96    55   176    55     3    55     1 
+	                            54    64    16    20    52    63    54    79    54   208 
+	                            54   240    54     4    54 
+	00051: SVTCA[x-axis] 
+	00052: SRP1       
+	00053: DELTAP1    
+	00054: CALL       
+	00055: SHC[rp1,zp0] 
+	00056: SVTCA[y-axis] 
+	00057: SRP1       
+	00058: DELTAP1    
+	00059: DELTAP1    
+	00060: DELTAP3    
+	00061: CALL       
+	00062: CALL       
+	00063: SHC[rp1,zp0] 
+
+	Glyph 851: off = 0x0002C60C, len = 652
+	  numberOfContours:	3
+	  xMin:			43
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			731
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  65
+	  2:  73
+
+	  Length of Instructions:	433
+	00000: PUSHB[6]             52     8    17    19    52    28 
+	00007: PUSHW[1]            -24 
+	00010: NPUSHB      (17):    18    20    52     7    48     1   198    42   214    42 
+	                             2    31    24    10    15    52    61 
+	00029: PUSHW[1]            -16 
+	00032: PUSHB[4]             17    19    52    15 
+	00037: PUSHW[1]            -16 
+	00040: NPUSHB      (26):    43    45    52   200    12   198    60   218    12   214 
+	                            60     4     0     4     1     3     6     6     7     5 
+	                             2     2     3     7     7     1 
+	00068: PUSHW[1]            924 
+	00071: NPUSHB      (41):     3     5     5    15     3     1     3   203    52   203 
+	                            53   219    52   219    53     4   107    22   107    24 
+	                           150    52   249    52   249    53     5    52    53    24 
+	                            22     4    16    45    36    64     9    15    52    36 
+	                             8 
+	00114: PUSHW[4]            907     9    16   907 
+	00123: PUSHB[7]             15    59   207    59     2    59    45 
+	00131: PUSHW[3]            907    30   -64 
+	00138: NPUSHB      (20):     9    12    52    30   189    69    70    66    69    67 
+	                            72    72    71    73    68    68    67    71    71    69 
+	00160: PUSHW[1]            955 
+	00163: NPUSHB      (14):    67    73    73    67     7     5     5     4     6     1 
+	                             3     3     2     6 
+	00179: PUSHW[3]            923     2   -64 
+	00186: PUSHB[4]             12    22    52     2 
+	00191: PUSHW[1]            923 
+	00194: NPUSHB      (23):     0     0     4    63     4   111     4   127     4   208 
+	                             4     5     4    73    71    71    70    72    67    69 
+	                            69    68    72 
+	00219: PUSHW[3]            954    68   -64 
+	00226: PUSHB[4]             12    22    52    68 
+	00231: PUSHW[1]            954 
+	00234: PUSHB[8]             66     0    70   208    70     2    70    49 
+	00243: PUSHW[1]            883 
+	00246: NPUSHB      (34):     0    26     1   160    26   192    26   208    26   240 
+	                            26     4    64    26    80    26   128    26   144    26 
+	                             4     0    26    96    26   112    26   224    26     4 
+	                            26    26     9    20 
+	00282: PUSHW[1]            878 
+	00285: NPUSHB      (11):    55    55    32     8     9   112    38     1    38    38 
+	                            41 
+	00298: PUSHW[4]            883    32     4   340 
+	00307: SCANCTRL   
+	00308: SCANTYPE   
+	00309: MDAP[rd]   
+	00310: MIRP[srp0,md,rd,1] 
+	00311: SHP[rp2,zp1] 
+	00312: MDAP[rd]   
+	00313: DELTAP1    
+	00314: MDAP[rd]   
+	00315: ALIGNRP    
+	00316: SRP2       
+	00317: IP         
+	00318: MDAP[rd]   
+	00319: MIRP[nrp0,md,rd,1] 
+	00320: SRP2       
+	00321: IP         
+	00322: MDAP[rd]   
+	00323: DELTAP1    
+	00324: DELTAP1    
+	00325: DELTAP1    
+	00326: DELTAP2    
+	00327: MIRP[nrp0,md,rd,1] 
+	00328: MDAP[rd]   
+	00329: DELTAP1    
+	00330: SHP[rp1,zp0] 
+	00331: MIRP[nrp0,md,rd,1] 
+	00332: CALL       
+	00333: MIRP[nrp0,md,rd,1] 
+	00334: RTDG       
+	00335: SRP2       
+	00336: IP         
+	00337: MDAP[rd]   
+	00338: ALIGNRP    
+	00339: SRP1       
+	00340: SRP2       
+	00341: IP         
+	00342: MDAP[rd]   
+	00343: ALIGNRP    
+	00344: RTG        
+	00345: MDAP[rd]   
+	00346: DELTAP1    
+	00347: SHP[rp1,zp0] 
+	00348: MIRP[nrp0,md,rd,1] 
+	00349: CALL       
+	00350: MIRP[nrp0,md,rd,1] 
+	00351: RTDG       
+	00352: SRP2       
+	00353: IP         
+	00354: MDAP[rd]   
+	00355: ALIGNRP    
+	00356: SRP1       
+	00357: SRP2       
+	00358: IP         
+	00359: MDAP[rd]   
+	00360: ALIGNRP    
+	00361: RTG        
+	00362: SVTCA[y-axis] 
+	00363: MDAP[rd]   
+	00364: SHP[rp1,zp0] 
+	00365: MDAP[rd]   
+	00366: SRP0       
+	00367: MIRP[srp0,md,rd,1] 
+	00368: SHP[rp2,zp1] 
+	00369: MDAP[rd]   
+	00370: RTDG       
+	00371: SRP1       
+	00372: IP         
+	00373: MDAP[rd]   
+	00374: SRP1       
+	00375: SRP2       
+	00376: IP         
+	00377: MDAP[rd]   
+	00378: RTG        
+	00379: SRP1       
+	00380: SRP2       
+	00381: IP         
+	00382: IP         
+	00383: SRP0       
+	00384: MIRP[srp0,md,rd,2] 
+	00385: CALL       
+	00386: MIRP[nrp0,md,rd,1] 
+	00387: MDAP[rd]   
+	00388: DELTAP1    
+	00389: MIRP[nrp0,md,rd,1] 
+	00390: MDAP[rd]   
+	00391: MIRP[nrp0,md,rd,1] 
+	00392: MDAP[rd]   
+	00393: CALL       
+	00394: SRP1       
+	00395: SRP2       
+	00396: SLOOP      
+	00397: IP         
+	00398: DELTAP2    
+	00399: DELTAP1    
+	00400: MDAP[rd]   
+	00401: DELTAP1    
+	00402: SHP[rp1,zp0] 
+	00403: MDAP[rd]   
+	00404: SRP0       
+	00405: MIRP[srp0,md,rd,1] 
+	00406: SHP[rp2,zp1] 
+	00407: MDAP[rd]   
+	00408: RTDG       
+	00409: SRP1       
+	00410: IP         
+	00411: MDAP[rd]   
+	00412: SRP1       
+	00413: SRP2       
+	00414: IP         
+	00415: MDAP[rd]   
+	00416: RTG        
+	00417: SRP1       
+	00418: SRP2       
+	00419: IP         
+	00420: IP         
+	00421: IUP[y]     
+	00422: IUP[x]     
+	00423: SVTCA[x-axis] 
+	00424: DELTAP1    
+	00425: CALL       
+	00426: CALL       
+	00427: CALL       
+	00428: SVTCA[y-axis] 
+	00429: DELTAP1    
+	00430: DELTAP2    
+	00431: CALL       
+	00432: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short On
+	  7:                      Y-Short X-Short On
+	  8:        XDual                 X-Short On
+	  9:        XDual         Y-Short         On
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:        XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:                      Y-Short X-Short On
+	 29:                      Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                               Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:                      Y-Short X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:        XDual         Y-Short         Off
+	 43:        XDual         Y-Short X-Short On
+	 44:        XDual         Y-Short X-Short Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:  YDual XDual         Y-Short X-Short On
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual         Y-Short         On
+	 50:  YDual XDual         Y-Short         Off
+	 51:  YDual               Y-Short X-Short Off
+	 52:  YDual               Y-Short X-Short On
+	 53:  YDual               Y-Short X-Short On
+	 54:  YDual               Y-Short X-Short Off
+	 55:  YDual XDual         Y-Short         On
+	 56:  YDual XDual         Y-Short         Off
+	 57:  YDual XDual         Y-Short X-Short On
+	 58:  YDual XDual         Y-Short X-Short Off
+	 59:  YDual XDual                 X-Short On
+	 60:  YDual XDual                 X-Short Off
+	 61:        XDual         Y-Short X-Short On
+	 62:        XDual         Y-Short X-Short Off
+	 63:        XDual         Y-Short X-Short On
+	 64:        XDual         Y-Short X-Short Off
+	 65:  YDual XDual                 X-Short On
+	 66:                                      On
+	 67:                      Y-Short X-Short On
+	 68:  YDual               Y-Short X-Short On
+	 69:  YDual XDual         Y-Short X-Short On
+	 70:        XDual         Y-Short X-Short On
+	 71:  YDual XDual         Y-Short X-Short On
+	 72:        XDual         Y-Short X-Short On
+	 73:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   894,   611)  ->  Abs (   894,   611)
+	  1: Rel (  -108,  -109)  ->  Abs (   786,   502)
+	  2: Rel (  -110,   111)  ->  Abs (   676,   613)
+	  3: Rel (   110,   110)  ->  Abs (   786,   723)
+	  4: Rel (   100,  -101)  ->  Abs (   886,   622)
+	  5: Rel (   109,   109)  ->  Abs (   995,   731)
+	  6: Rel (   110,  -110)  ->  Abs (  1105,   621)
+	  7: Rel (  -110,  -111)  ->  Abs (   995,   510)
+	  8: Rel (   234,  -387)  ->  Abs (  1229,   123)
+	  9: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	 10: Rel (  -131,     0)  ->  Abs (  1098,     0)
+	 11: Rel (   -68,     0)  ->  Abs (  1030,     0)
+	 12: Rel (   -40,    38)  ->  Abs (   990,    38)
+	 13: Rel (   -24,    22)  ->  Abs (   966,    60)
+	 14: Rel (   -42,    76)  ->  Abs (   924,   136)
+	 15: Rel (   -47,    82)  ->  Abs (   877,   218)
+	 16: Rel (   -63,     0)  ->  Abs (   814,   218)
+	 17: Rel (   -60,     0)  ->  Abs (   754,   218)
+	 18: Rel (   -79,   -31)  ->  Abs (   675,   187)
+	 19: Rel (   -95,   -39)  ->  Abs (   580,   148)
+	 20: Rel (     0,   -50)  ->  Abs (   580,    98)
+	 21: Rel (     0,   -27)  ->  Abs (   580,    71)
+	 22: Rel (    91,   -20)  ->  Abs (   671,    51)
+	 23: Rel (   149,   -33)  ->  Abs (   820,    18)
+	 24: Rel (    35,   -11)  ->  Abs (   855,     7)
+	 25: Rel (    87,   -28)  ->  Abs (   942,   -21)
+	 26: Rel (     0,  -119)  ->  Abs (   942,  -140)
+	 27: Rel (     0,   -88)  ->  Abs (   942,  -228)
+	 28: Rel (  -195,   -83)  ->  Abs (   747,  -311)
+	 29: Rel (  -152,   -64)  ->  Abs (   595,  -375)
+	 30: Rel (  -168,     0)  ->  Abs (   427,  -375)
+	 31: Rel (  -384,     0)  ->  Abs (    43,  -375)
+	 32: Rel (     0,   234)  ->  Abs (    43,  -141)
+	 33: Rel (     0,    56)  ->  Abs (    43,   -85)
+	 34: Rel (    32,    71)  ->  Abs (    75,   -14)
+	 35: Rel (    37,    79)  ->  Abs (   112,    65)
+	 36: Rel (    44,     0)  ->  Abs (   156,    65)
+	 37: Rel (    15,     0)  ->  Abs (   171,    65)
+	 38: Rel (     0,   -21)  ->  Abs (   171,    44)
+	 39: Rel (     0,     4)  ->  Abs (   171,    48)
+	 40: Rel (   -66,  -128)  ->  Abs (   105,   -80)
+	 41: Rel (     0,   -44)  ->  Abs (   105,  -124)
+	 42: Rel (     0,   -80)  ->  Abs (   105,  -204)
+	 43: Rel (   102,   -31)  ->  Abs (   207,  -235)
+	 44: Rel (   123,   -27)  ->  Abs (   330,  -262)
+	 45: Rel (   121,     0)  ->  Abs (   451,  -262)
+	 46: Rel (   101,     0)  ->  Abs (   552,  -262)
+	 47: Rel (   163,    29)  ->  Abs (   715,  -233)
+	 48: Rel (   157,    37)  ->  Abs (   872,  -196)
+	 49: Rel (     0,    35)  ->  Abs (   872,  -161)
+	 50: Rel (     0,    30)  ->  Abs (   872,  -131)
+	 51: Rel (   -33,    26)  ->  Abs (   839,  -105)
+	 52: Rel (   -47,    11)  ->  Abs (   792,   -94)
+	 53: Rel (  -143,    32)  ->  Abs (   649,   -62)
+	 54: Rel (  -120,    28)  ->  Abs (   529,   -34)
+	 55: Rel (     0,    78)  ->  Abs (   529,    44)
+	 56: Rel (     0,   114)  ->  Abs (   529,   158)
+	 57: Rel (   117,    93)  ->  Abs (   646,   251)
+	 58: Rel (   110,    88)  ->  Abs (   756,   339)
+	 59: Rel (   115,     0)  ->  Abs (   871,   339)
+	 60: Rel (    45,     0)  ->  Abs (   916,   339)
+	 61: Rel (    54,  -100)  ->  Abs (   970,   239)
+	 62: Rel (    35,   -65)  ->  Abs (  1005,   174)
+	 63: Rel (    22,   -20)  ->  Abs (  1027,   154)
+	 64: Rel (    34,   -31)  ->  Abs (  1061,   123)
+	 65: Rel (    60,     0)  ->  Abs (  1121,   123)
+	 66: Rel (  -687,  -602)  ->  Abs (   434,  -479)
+	 67: Rel (   -81,   -82)  ->  Abs (   353,  -561)
+	 68: Rel (   -82,    83)  ->  Abs (   271,  -478)
+	 69: Rel (    82,    82)  ->  Abs (   353,  -396)
+	 70: Rel (    75,   -75)  ->  Abs (   428,  -471)
+	 71: Rel (    82,    81)  ->  Abs (   510,  -390)
+	 72: Rel (    83,   -82)  ->  Abs (   593,  -472)
+	 73: Rel (   -83,   -83)  ->  Abs (   510,  -555)
+
+	Glyph 852: off = 0x0002C898, len = 42
+	  numberOfContours:	-1  (Composite)
+	  xMin:			43
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			730
+
+	     0: Flags:		0x0236
+		Glyf Index:	1117
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	214
+		Y WOffset:	-344
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     1    31    55    80    55   223    55     3    55 
+	00011: SVTCA[y-axis] 
+	00012: SRP1       
+	00013: DELTAP1    
+	00014: SHC[rp1,zp0] 
+
+	Glyph 853: off = 0x0002C8C2, len = 574
+	  numberOfContours:	3
+	  xMin:			43
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			731
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  61
+	  2:  69
+
+	  Length of Instructions:	367
+	00000: PUSHB[6]             48     8    17    19    52    24 
+	00007: PUSHW[1]            -24 
+	00010: NPUSHB      (17):    18    20    52     7    44     1   198    38   214    38 
+	                             2    27    24    10    15    52    57 
+	00029: PUSHW[1]            -16 
+	00032: PUSHB[4]             17    19    52    11 
+	00037: PUSHW[1]            -16 
+	00040: NPUSHB      (43):    43    45    52   200     8   198    56   218     8   214 
+	                            56     4   203    48   203    49   219    48   219    49 
+	                             4   107    18   107    20   150    48   249    48   249 
+	                            49     5    48    49    20    18     4    12    41     0 
+	                             2     2     1 
+	00085: PUSHW[1]            924 
+	00088: NPUSHB      (11):    15     3     1     3    32    64     9    15    52    32 
+	                             4 
+	00101: PUSHW[4]            907     5    12   907 
+	00110: PUSHB[7]             15    55   207    55     2    55    41 
+	00118: PUSHW[3]            907    26   -64 
+	00125: NPUSHB      (20):     9    12    52    26   189    65    66    62    65    63 
+	                            68    68    67    69    64    64    63    67    67    65 
+	00147: PUSHW[1]            955 
+	00150: NPUSHB      (14):    63    69    69    63    69    67    67    66    68    63 
+	                            65    65    64    68 
+	00166: PUSHW[3]            954    64   -64 
+	00173: PUSHB[4]             12    22    52    64 
+	00178: PUSHW[1]            954 
+	00181: NPUSHB      (11):    62     0    66   208    66     2    66     1     3     3 
+	                             2 
+	00194: PUSHW[4]            923     0    45   883 
+	00203: NPUSHB      (34):     0    22     1   160    22   192    22   208    22   240 
+	                            22     4    64    22    80    22   128    22   144    22 
+	                             4     0    22    96    22   112    22   224    22     4 
+	                            22    22     5    16 
+	00239: PUSHW[1]            878 
+	00242: NPUSHB      (11):    51    51    28     4     5   112    34     1    34    34 
+	                            37 
+	00255: PUSHW[4]            883    28     4   340 
+	00264: SCANCTRL   
+	00265: SCANTYPE   
+	00266: MDAP[rd]   
+	00267: MIRP[srp0,md,rd,1] 
+	00268: SHP[rp2,zp1] 
+	00269: MDAP[rd]   
+	00270: DELTAP1    
+	00271: MDAP[rd]   
+	00272: ALIGNRP    
+	00273: SRP2       
+	00274: IP         
+	00275: MDAP[rd]   
+	00276: MIRP[nrp0,md,rd,1] 
+	00277: SRP2       
+	00278: IP         
+	00279: MDAP[rd]   
+	00280: DELTAP1    
+	00281: DELTAP1    
+	00282: DELTAP1    
+	00283: DELTAP2    
+	00284: MIRP[nrp0,md,rd,1] 
+	00285: MDAP[rd]   
+	00286: MIRP[nrp0,md,rd,1] 
+	00287: RTDG       
+	00288: IP         
+	00289: MDAP[rd]   
+	00290: RTG        
+	00291: ALIGNRP    
+	00292: MDAP[rd]   
+	00293: DELTAP1    
+	00294: SHP[rp1,zp0] 
+	00295: MIRP[nrp0,md,rd,1] 
+	00296: CALL       
+	00297: MIRP[nrp0,md,rd,1] 
+	00298: RTDG       
+	00299: SRP2       
+	00300: IP         
+	00301: MDAP[rd]   
+	00302: ALIGNRP    
+	00303: SRP1       
+	00304: SRP2       
+	00305: IP         
+	00306: MDAP[rd]   
+	00307: ALIGNRP    
+	00308: RTG        
+	00309: SVTCA[y-axis] 
+	00310: MDAP[rd]   
+	00311: SHP[rp1,zp0] 
+	00312: MDAP[rd]   
+	00313: SRP0       
+	00314: MIRP[srp0,md,rd,1] 
+	00315: SHP[rp2,zp1] 
+	00316: MDAP[rd]   
+	00317: RTDG       
+	00318: SRP1       
+	00319: IP         
+	00320: MDAP[rd]   
+	00321: SRP1       
+	00322: SRP2       
+	00323: IP         
+	00324: MDAP[rd]   
+	00325: RTG        
+	00326: SRP1       
+	00327: SRP2       
+	00328: IP         
+	00329: IP         
+	00330: SRP0       
+	00331: MIRP[srp0,md,rd,2] 
+	00332: CALL       
+	00333: MIRP[nrp0,md,rd,1] 
+	00334: MDAP[rd]   
+	00335: DELTAP1    
+	00336: MIRP[nrp0,md,rd,1] 
+	00337: MDAP[rd]   
+	00338: MIRP[nrp0,md,rd,1] 
+	00339: MDAP[rd]   
+	00340: CALL       
+	00341: MDAP[rd]   
+	00342: DELTAP1    
+	00343: MIRP[nrp0,md,rd,1] 
+	00344: RTDG       
+	00345: IP         
+	00346: MDAP[rd]   
+	00347: ALIGNRP    
+	00348: RTG        
+	00349: SRP1       
+	00350: SRP2       
+	00351: SLOOP      
+	00352: IP         
+	00353: DELTAP2    
+	00354: DELTAP1    
+	00355: IUP[y]     
+	00356: IUP[x]     
+	00357: SVTCA[x-axis] 
+	00358: DELTAP1    
+	00359: CALL       
+	00360: CALL       
+	00361: CALL       
+	00362: SVTCA[y-axis] 
+	00363: DELTAP1    
+	00364: DELTAP2    
+	00365: CALL       
+	00366: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:        XDual         Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                               Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:                      Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:        XDual         Y-Short X-Short On
+	 40:        XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual               Y-Short X-Short Off
+	 48:  YDual               Y-Short X-Short On
+	 49:  YDual               Y-Short X-Short On
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:  YDual XDual         Y-Short X-Short Off
+	 55:  YDual XDual                 X-Short On
+	 56:  YDual XDual                 X-Short Off
+	 57:        XDual         Y-Short X-Short On
+	 58:        XDual         Y-Short X-Short Off
+	 59:        XDual         Y-Short X-Short On
+	 60:        XDual         Y-Short X-Short Off
+	 61:  YDual XDual                 X-Short On
+	 62:                                      On
+	 63:                      Y-Short X-Short On
+	 64:  YDual               Y-Short X-Short On
+	 65:  YDual XDual         Y-Short X-Short On
+	 66:        XDual         Y-Short X-Short On
+	 67:  YDual XDual         Y-Short X-Short On
+	 68:        XDual         Y-Short X-Short On
+	 69:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   971,   622)  ->  Abs (   971,   622)
+	  1: Rel (  -109,  -111)  ->  Abs (   862,   511)
+	  2: Rel (  -111,   111)  ->  Abs (   751,   622)
+	  3: Rel (   111,   109)  ->  Abs (   862,   731)
+	  4: Rel (   367,  -608)  ->  Abs (  1229,   123)
+	  5: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	  6: Rel (  -131,     0)  ->  Abs (  1098,     0)
+	  7: Rel (   -68,     0)  ->  Abs (  1030,     0)
+	  8: Rel (   -40,    38)  ->  Abs (   990,    38)
+	  9: Rel (   -24,    22)  ->  Abs (   966,    60)
+	 10: Rel (   -42,    76)  ->  Abs (   924,   136)
+	 11: Rel (   -47,    82)  ->  Abs (   877,   218)
+	 12: Rel (   -63,     0)  ->  Abs (   814,   218)
+	 13: Rel (   -60,     0)  ->  Abs (   754,   218)
+	 14: Rel (   -79,   -31)  ->  Abs (   675,   187)
+	 15: Rel (   -95,   -39)  ->  Abs (   580,   148)
+	 16: Rel (     0,   -50)  ->  Abs (   580,    98)
+	 17: Rel (     0,   -27)  ->  Abs (   580,    71)
+	 18: Rel (    91,   -20)  ->  Abs (   671,    51)
+	 19: Rel (   149,   -33)  ->  Abs (   820,    18)
+	 20: Rel (    35,   -11)  ->  Abs (   855,     7)
+	 21: Rel (    87,   -28)  ->  Abs (   942,   -21)
+	 22: Rel (     0,  -119)  ->  Abs (   942,  -140)
+	 23: Rel (     0,   -88)  ->  Abs (   942,  -228)
+	 24: Rel (  -195,   -83)  ->  Abs (   747,  -311)
+	 25: Rel (  -152,   -64)  ->  Abs (   595,  -375)
+	 26: Rel (  -168,     0)  ->  Abs (   427,  -375)
+	 27: Rel (  -384,     0)  ->  Abs (    43,  -375)
+	 28: Rel (     0,   234)  ->  Abs (    43,  -141)
+	 29: Rel (     0,    56)  ->  Abs (    43,   -85)
+	 30: Rel (    32,    71)  ->  Abs (    75,   -14)
+	 31: Rel (    37,    79)  ->  Abs (   112,    65)
+	 32: Rel (    44,     0)  ->  Abs (   156,    65)
+	 33: Rel (    15,     0)  ->  Abs (   171,    65)
+	 34: Rel (     0,   -21)  ->  Abs (   171,    44)
+	 35: Rel (     0,     4)  ->  Abs (   171,    48)
+	 36: Rel (   -66,  -128)  ->  Abs (   105,   -80)
+	 37: Rel (     0,   -44)  ->  Abs (   105,  -124)
+	 38: Rel (     0,   -80)  ->  Abs (   105,  -204)
+	 39: Rel (   102,   -31)  ->  Abs (   207,  -235)
+	 40: Rel (   123,   -27)  ->  Abs (   330,  -262)
+	 41: Rel (   121,     0)  ->  Abs (   451,  -262)
+	 42: Rel (   101,     0)  ->  Abs (   552,  -262)
+	 43: Rel (   163,    29)  ->  Abs (   715,  -233)
+	 44: Rel (   157,    37)  ->  Abs (   872,  -196)
+	 45: Rel (     0,    35)  ->  Abs (   872,  -161)
+	 46: Rel (     0,    30)  ->  Abs (   872,  -131)
+	 47: Rel (   -33,    26)  ->  Abs (   839,  -105)
+	 48: Rel (   -47,    11)  ->  Abs (   792,   -94)
+	 49: Rel (  -143,    32)  ->  Abs (   649,   -62)
+	 50: Rel (  -120,    28)  ->  Abs (   529,   -34)
+	 51: Rel (     0,    78)  ->  Abs (   529,    44)
+	 52: Rel (     0,   114)  ->  Abs (   529,   158)
+	 53: Rel (   117,    93)  ->  Abs (   646,   251)
+	 54: Rel (   110,    88)  ->  Abs (   756,   339)
+	 55: Rel (   115,     0)  ->  Abs (   871,   339)
+	 56: Rel (    45,     0)  ->  Abs (   916,   339)
+	 57: Rel (    54,  -100)  ->  Abs (   970,   239)
+	 58: Rel (    35,   -65)  ->  Abs (  1005,   174)
+	 59: Rel (    22,   -20)  ->  Abs (  1027,   154)
+	 60: Rel (    34,   -31)  ->  Abs (  1061,   123)
+	 61: Rel (    60,     0)  ->  Abs (  1121,   123)
+	 62: Rel (  -687,  -602)  ->  Abs (   434,  -479)
+	 63: Rel (   -81,   -82)  ->  Abs (   353,  -561)
+	 64: Rel (   -82,    83)  ->  Abs (   271,  -478)
+	 65: Rel (    82,    82)  ->  Abs (   353,  -396)
+	 66: Rel (    75,   -75)  ->  Abs (   428,  -471)
+	 67: Rel (    82,    81)  ->  Abs (   510,  -390)
+	 68: Rel (    83,   -82)  ->  Abs (   593,  -472)
+	 69: Rel (   -83,   -83)  ->  Abs (   510,  -555)
+
+	Glyph 854: off = 0x0002CB00, len = 88
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-432
+	  xMax:			1229
+	  yMax:			626
+
+	     0: Flags:		0x0236
+		Glyf Index:	1115
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	272
+		Y WOffset:	-1106
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (47):     1    47    64    61    71    52    47    64    38    63 
+	                            52    47    64    25    33    52    47    64    13    15 
+	                            52    47   128    16    18    52    47   128    20    22 
+	                            52    31    47    32    47     2   175    47   239    47 
+	                             2    31    47    47    47     2    47 
+	00049: SVTCA[x-axis] 
+	00050: SRP1       
+	00051: DELTAP1    
+	00052: DELTAP1    
+	00053: DELTAP2    
+	00054: CALL       
+	00055: CALL       
+	00056: CALL       
+	00057: CALL       
+	00058: CALL       
+	00059: CALL       
+	00060: SHC[rp1,zp0] 
+
+	Glyph 855: off = 0x0002CB58, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			29
+	  yMin:			-523
+	  xMax:			1229
+	  yMax:			991
+
+	     0: Flags:		0x0236
+		Glyf Index:	1116
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0037
+		Glyf Index:	1021
+		X WOffset:	-211
+		Y WOffset:	-83
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     2: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	338
+		Y WOffset:	-1197
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     2    79    54    95    54   191    54   207    54   240 
+	                            54     5    54    64    15    22    52    54 
+	00020: SVTCA[x-axis] 
+	00021: SRP1       
+	00022: CALL       
+	00023: DELTAP1    
+	00024: SHC[rp1,zp0] 
+
+	Glyph 856: off = 0x0002CB94, len = 32
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-447
+	  xMax:			1196
+	  yMax:			967
+
+	     0: Flags:		0x0236
+		Glyf Index:	1118
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0037
+		Glyf Index:	1021
+		X WOffset:	343
+		Y WOffset:	-1112
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     2: Flags:		0x0017
+		Glyf Index:	1021
+		X WOffset:	-258
+		Y WOffset:	-1302
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 857: off = 0x0002CBB4, len = 24
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-257
+	  xMax:			1196
+	  yMax:			967
+
+	     0: Flags:		0x0236
+		Glyf Index:	1118
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0017
+		Glyf Index:	1021
+		X WOffset:	387
+		Y WOffset:	-1112
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 858: off = 0x0002CBCC, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-246
+	  xMax:			1196
+	  yMax:			996
+
+	     0: Flags:		0x0236
+		Glyf Index:	1118
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0037
+		Glyf Index:	1021
+		X WOffset:	-292
+		Y WOffset:	-78
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     2: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	321
+		Y WOffset:	-1101
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     1    79    49     1    49     2    15    52     1    52 
+	                             1    16    48     1    48 
+	00017: SVTCA[x-axis] 
+	00018: SRP1       
+	00019: DELTAP1    
+	00020: SHC[rp1,zp0] 
+	00021: SVTCA[x-axis] 
+	00022: SRP1       
+	00023: DELTAP1    
+	00024: SHC[rp1,zp0] 
+	00025: SVTCA[y-axis] 
+	00026: SRP1       
+	00027: DELTAP2    
+	00028: SHC[rp1,zp0] 
+
+	Glyph 859: off = 0x0002CC0C, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-422
+	  xMax:			1108
+	  yMax:			832
+
+	     0: Flags:		0x0236
+		Glyf Index:	1119
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	340
+		Y WOffset:	-1277
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              1    16    33     1    33 
+	00006: SVTCA[x-axis] 
+	00007: SRP1       
+	00008: DELTAP1    
+	00009: SHC[rp1,zp0] 
+
+	Glyph 860: off = 0x0002CC30, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-480
+	  xMax:			1187
+	  yMax:			682
+
+	     0: Flags:		0x0236
+		Glyf Index:	1103
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	333
+		Y WOffset:	-1335
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     3    63    68     1    31    68   111    68   143    68 
+	                             3    68     3     0    67    65     2    39    64 
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: SHC[rp1,zp0] 
+	00024: SVTCA[y-axis] 
+	00025: SRP1       
+	00026: DELTAP1    
+	00027: DELTAP1    
+	00028: SHC[rp1,zp0] 
+
+	Glyph 861: off = 0x0002CC68, len = 78
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-426
+	  xMax:			1196
+	  yMax:			1368
+
+	     0: Flags:		0x0236
+		Glyf Index:	1118
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0037
+		Glyf Index:	1100
+		X WOffset:	322
+		Y WOffset:	466
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     2: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	161
+		Y WOffset:	-1281
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (31):     1   208    49     1    64    49   176    49     2    31 
+	                            49    32    49     2    49     1   112    48     1    32 
+	                            48    48    48    95    48   191    48   240    48     5 
+	                            48 
+	00033: SVTCA[x-axis] 
+	00034: SRP1       
+	00035: DELTAP1    
+	00036: DELTAP1    
+	00037: SHC[rp1,zp0] 
+	00038: SVTCA[y-axis] 
+	00039: SRP1       
+	00040: DELTAP1    
+	00041: DELTAP1    
+	00042: DELTAP1    
+	00043: SHC[rp1,zp0] 
+
+	Glyph 862: off = 0x0002CCB6, len = 70
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1196
+	  yMax:			1368
+
+	     0: Flags:		0x0236
+		Glyf Index:	1118
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	322
+		Y WOffset:	466
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (31):     1   208    49     1    64    49   176    49     2    31 
+	                            49    32    49     2    49     1   112    48     1    32 
+	                            48    48    48    95    48   191    48   240    48     5 
+	                            48 
+	00033: SVTCA[x-axis] 
+	00034: SRP1       
+	00035: DELTAP1    
+	00036: DELTAP1    
+	00037: SHC[rp1,zp0] 
+	00038: SVTCA[y-axis] 
+	00039: SRP1       
+	00040: DELTAP1    
+	00041: DELTAP1    
+	00042: DELTAP1    
+	00043: SHC[rp1,zp0] 
+
+	Glyph 863: off = 0x0002CCFC, len = 96
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1196
+	  yMax:			1368
+
+	     0: Flags:		0x0236
+		Glyf Index:	1118
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0037
+		Glyf Index:	1021
+		X WOffset:	-292
+		Y WOffset:	-100
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     2: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	322
+		Y WOffset:	466
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (41):     2   208    53     1    64    53   176    53     2    31 
+	                            53    32    53     2    53     1    63    49     1    49 
+	                             2    95    52   191    52     2    32    52    48    52 
+	                           112    52   240    52     4    52     1    16    48     1 
+	                            48 
+	00043: SVTCA[x-axis] 
+	00044: SRP1       
+	00045: DELTAP1    
+	00046: SHC[rp1,zp0] 
+	00047: SVTCA[x-axis] 
+	00048: SRP1       
+	00049: DELTAP1    
+	00050: DELTAP1    
+	00051: SHC[rp1,zp0] 
+	00052: SVTCA[y-axis] 
+	00053: SRP1       
+	00054: DELTAP1    
+	00055: SHC[rp1,zp0] 
+	00056: SVTCA[y-axis] 
+	00057: SRP1       
+	00058: DELTAP1    
+	00059: DELTAP1    
+	00060: DELTAP1    
+	00061: SHC[rp1,zp0] 
+
+	Glyph 864: off = 0x0002CD5C, len = 96
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1128
+	  yMax:			1198
+
+	     0: Flags:		0x0236
+		Glyf Index:	1119
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	255
+		Y WOffset:	296
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (51):     1    31    34     1    31    34   208    34     2   255 
+	                            34     1    95    34   127    34   143    34     3    64 
+	                            34     1    15    34    31    34    32    34     3    34 
+	                             1    33    64    16    19    52    33   128    20    53 
+	                            15    33     1    48    33    95    33   223    33     3 
+	                            33 
+	00053: SVTCA[x-axis] 
+	00054: SRP1       
+	00055: DELTAP1    
+	00056: DELTAP2    
+	00057: CALL       
+	00058: CALL       
+	00059: SHC[rp1,zp0] 
+	00060: SVTCA[y-axis] 
+	00061: SRP1       
+	00062: DELTAP1    
+	00063: DELTAP1    
+	00064: DELTAP1    
+	00065: DELTAP1    
+	00066: DELTAP2    
+	00067: DELTAP3    
+	00068: SHC[rp1,zp0] 
+
+	Glyph 865: off = 0x0002CDBC, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-424
+	  xMax:			1218
+	  yMax:			1103
+
+	     0: Flags:		0x0236
+		Glyf Index:	1103
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	345
+		Y WOffset:	201
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     3   192    71   208    71     2    32    71     1     0 
+	                            71    71    74    74    64 
+	00017: SVTCA[x-axis] 
+	00018: CALL       
+	00019: DELTAP1    
+	00020: DELTAP1    
+	00021: SHC[rp1,zp0] 
+
+	Glyph 866: off = 0x0002CDEC, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1127
+	  yMax:			1400
+
+	     0: Flags:		0x0236
+		Glyf Index:	1119
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1101
+		X WOffset:	288
+		Y WOffset:	310
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (28):     2     1    31    34     1    79    34   192    34   208 
+	                            34     3    15    34    32    34    64    34     3    34 
+	                             2     1    48    38   127    38     2    38 
+	00030: SVTCA[x-axis] 
+	00031: SRP1       
+	00032: DELTAP1    
+	00033: SHC[rp1,zp0] 
+	00034: SHC[rp1,zp0] 
+	00035: SVTCA[y-axis] 
+	00036: SRP1       
+	00037: DELTAP1    
+	00038: DELTAP2    
+	00039: DELTAP3    
+	00040: SHC[rp1,zp0] 
+	00041: SHC[rp1,zp0] 
+
+	Glyph 867: off = 0x0002CE30, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-6
+	  xMax:			1228
+	  yMax:			946
+
+	     0: Flags:		0x0236
+		Glyf Index:	868
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	250
+		Y WOffset:	-732
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (20):     2    31    54    79    54     2    54     2   191    53 
+	                             1   191    53     1    53    64     9    13    52    53 
+	00022: SVTCA[x-axis] 
+	00023: SRP1       
+	00024: CALL       
+	00025: DELTAP2    
+	00026: DELTAP1    
+	00027: SHC[rp1,zp0] 
+	00028: SVTCA[y-axis] 
+	00029: SRP1       
+	00030: DELTAP1    
+	00031: SHC[rp1,zp0] 
+
+	Glyph 868: off = 0x0002CE6A, len = 344
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			-6
+	  xMax:			1228
+	  yMax:			946
+
+	EndPoints
+	---------
+	  0:  42
+	  1:  50
+
+	  Length of Instructions:	192
+	00000: NPUSHB      (27):     6    41    22    41   173    14   183    37     4   132 
+	                            12   173    13     2   130    43   133    44   186    16 
+	                             3    84    13   118    43     2    31 
+	00029: PUSHW[1]            -48 
+	00032: NPUSHB      (12):    17    20    52    15    15    33    34    43    45    36 
+	                            49    34 
+	00046: PUSHW[1]            908 
+	00049: NPUSHB      (11):    15    33     1    33    33     6    49    49    27     6 
+	                            45 
+	00062: PUSHW[1]            900 
+	00065: NPUSHB      (12):     0     2     7     6    22    64    14    16    52    22 
+	                            22    18 
+	00079: PUSHW[1]            904 
+	00082: PUSHB[5]             95    27     1    27     7 
+	00088: PUSHW[1]            907 
+	00091: NPUSHB      (18):     6    15    33    24    45     0     2    43    12     5 
+	                            47    24    24    15    36     1    36    39 
+	00111: PUSHW[1]            886 
+	00114: NPUSHB      (10):    47    47    33     6    34    34    33     7     6     5 
+	00126: PUSHW[1]            340 
+	00129: SCANCTRL   
+	00130: SCANTYPE   
+	00131: MDAP[rd]   
+	00132: ALIGNRP    
+	00133: MDAP[rd]   
+	00134: SHP[rp1,zp0] 
+	00135: MDAP[rd]   
+	00136: SRP1       
+	00137: SRP2       
+	00138: IP         
+	00139: MDAP[rd]   
+	00140: MIRP[nrp0,md,rd,1] 
+	00141: IP         
+	00142: DELTAP1    
+	00143: SHP[rp1,zp0] 
+	00144: MDAP[rd]   
+	00145: SRP1       
+	00146: SLOOP      
+	00147: SHP[rp1,zp0] 
+	00148: SRP1       
+	00149: SRP2       
+	00150: IP         
+	00151: SVTCA[y-axis] 
+	00152: MDAP[rd]   
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: MDAP[rd]   
+	00155: DELTAP1    
+	00156: MIRP[srp0,md,rd,1] 
+	00157: SHP[rp2,zp1] 
+	00158: MDAP[rd]   
+	00159: CALL       
+	00160: SRP1       
+	00161: SRP2       
+	00162: IP         
+	00163: MDAP[rd]   
+	00164: MIRP[nrp0,md,rd,1] 
+	00165: SRP1       
+	00166: SRP2       
+	00167: IP         
+	00168: MDAP[rd]   
+	00169: SRP1       
+	00170: IP         
+	00171: MDAP[rd]   
+	00172: DELTAP1    
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: SRP1       
+	00175: SHP[rp1,zp0] 
+	00176: SRP2       
+	00177: IP         
+	00178: RTHG       
+	00179: SRP1       
+	00180: SRP2       
+	00181: IP         
+	00182: MDAP[rd]   
+	00183: IUP[y]     
+	00184: IUP[x]     
+	00185: SVTCA[y-axis] 
+	00186: CALL       
+	00187: DELTAP1    
+	00188: DELTAP1    
+	00189: SVTCA[x-axis] 
+	00190: DELTAP1    
+	00191: DELTAP1    
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short On
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual               Y-Short         On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short X-Short On
+	 32:        XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:                      Y-Short X-Short On
+	 35:  YDual                               Off
+	 36:                      Y-Short X-Short On
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:                      Y-Short X-Short Off
+	 42:                      Y-Short X-Short Off
+	 43:  YDual               Y-Short X-Short On
+	 44:        XDual         Y-Short X-Short Off
+	 45:        XDual         Y-Short X-Short On
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual                       X-Short On
+	 50:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   423,    -6)  ->  Abs (   423,    -6)
+	  1: Rel (   -73,    65)  ->  Abs (   350,    59)
+	  2: Rel (   -93,    56)  ->  Abs (   257,   115)
+	  3: Rel (   -90,   -83)  ->  Abs (   167,    32)
+	  4: Rel (   -87,   -32)  ->  Abs (    80,     0)
+	  5: Rel (   -44,     0)  ->  Abs (    36,     0)
+	  6: Rel (   -36,     0)  ->  Abs (     0,     0)
+	  7: Rel (     0,   123)  ->  Abs (     0,   123)
+	  8: Rel (    29,     0)  ->  Abs (    29,   123)
+	  9: Rel (    79,     0)  ->  Abs (   108,   123)
+	 10: Rel (    96,    34)  ->  Abs (   204,   157)
+	 11: Rel (    35,    66)  ->  Abs (   239,   223)
+	 12: Rel (    54,   148)  ->  Abs (   293,   371)
+	 13: Rel (    67,   185)  ->  Abs (   360,   556)
+	 14: Rel (   214,   119)  ->  Abs (   574,   675)
+	 15: Rel (   367,    46)  ->  Abs (   941,   721)
+	 16: Rel (   -61,    41)  ->  Abs (   880,   762)
+	 17: Rel (  -195,    71)  ->  Abs (   685,   833)
+	 18: Rel (   -60,     0)  ->  Abs (   625,   833)
+	 19: Rel (   -76,     0)  ->  Abs (   549,   833)
+	 20: Rel (   -45,   -67)  ->  Abs (   504,   766)
+	 21: Rel (    -9,   -13)  ->  Abs (   495,   753)
+	 22: Rel (   -12,     0)  ->  Abs (   483,   753)
+	 23: Rel (    -8,     0)  ->  Abs (   475,   753)
+	 24: Rel (     0,    18)  ->  Abs (   475,   771)
+	 25: Rel (     0,    54)  ->  Abs (   475,   825)
+	 26: Rel (   113,   121)  ->  Abs (   588,   946)
+	 27: Rel (    85,     0)  ->  Abs (   673,   946)
+	 28: Rel (    30,     0)  ->  Abs (   703,   946)
+	 29: Rel (    69,   -18)  ->  Abs (   772,   928)
+	 30: Rel (    40,   -19)  ->  Abs (   812,   909)
+	 31: Rel (   125,   -69)  ->  Abs (   937,   840)
+	 32: Rel (   165,   -91)  ->  Abs (  1102,   749)
+	 33: Rel (   126,     0)  ->  Abs (  1228,   749)
+	 34: Rel (   -51,  -126)  ->  Abs (  1177,   623)
+	 35: Rel (  -511,     0)  ->  Abs (   666,   623)
+	 36: Rel (  -110,  -117)  ->  Abs (   556,   506)
+	 37: Rel (    30,   -13)  ->  Abs (   586,   493)
+	 38: Rel (    50,  -103)  ->  Abs (   636,   390)
+	 39: Rel (     0,   -57)  ->  Abs (   636,   333)
+	 40: Rel (     0,   -85)  ->  Abs (   636,   248)
+	 41: Rel (   -40,  -154)  ->  Abs (   596,    94)
+	 42: Rel (  -153,  -100)  ->  Abs (   443,    -6)
+	 43: Rel (  -138,   225)  ->  Abs (   305,   219)
+	 44: Rel (   107,   -56)  ->  Abs (   412,   163)
+	 45: Rel (    85,   -74)  ->  Abs (   497,    89)
+	 46: Rel (    53,    73)  ->  Abs (   550,   162)
+	 47: Rel (     0,   102)  ->  Abs (   550,   264)
+	 48: Rel (     0,   149)  ->  Abs (   550,   413)
+	 49: Rel (   -90,     0)  ->  Abs (   460,   413)
+	 50: Rel (   -69,     0)  ->  Abs (   391,   413)
+
+	Glyph 869: off = 0x0002CFC2, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-6
+	  xMax:			1228
+	  yMax:			1268
+
+	     0: Flags:		0x0236
+		Glyf Index:	868
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	227
+		Y WOffset:	194
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     2    54    64    12    15    52    15    54     1    31 
+	                            54     1    54     2    79    53     1    53 
+	00020: SVTCA[x-axis] 
+	00021: SRP1       
+	00022: DELTAP1    
+	00023: SHC[rp1,zp0] 
+	00024: SVTCA[y-axis] 
+	00025: SRP1       
+	00026: DELTAP1    
+	00027: DELTAP2    
+	00028: CALL       
+	00029: SHC[rp1,zp0] 
+
+	Glyph 870: off = 0x0002CFFA, len = 400
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1228
+	  yMax:			1049
+
+	EndPoints
+	---------
+	  0:  62
+
+	  Length of Instructions:	226
+	00000: NPUSHB      (43):   170     8   164    20   166    22     3    34    36    71 
+	                             5   103     5   199    44   201    48   232    40     6 
+	                           153    47   169     8   200    12     3   138    47     1 
+	                            68    36    83    36     2     4    19     4    36    52 
+	                            36     3    22 
+	00045: PUSHW[1]            -48 
+	00048: PUSHB[4]             16    18    52    21 
+	00053: PUSHW[1]            -48 
+	00056: PUSHB[7]             16    18    52    36    16     8    59 
+	00064: PUSHW[1]            903 
+	00067: PUSHB[5]              6     6    45    10    15 
+	00073: PUSHW[1]            907 
+	00076: PUSHB[6]             41    41   226    45     1    45 
+	00083: PUSHW[1]            909 
+	00086: NPUSHB      (17):     0    10    16    10     2    10    10    51    36    28 
+	                            32    51    51     0     1    26    33 
+	00105: PUSHW[3]            907    32   858 
+	00112: PUSHB[8]             36    18    38    55    57     8     3    49 
+	00121: PUSHW[1]            877 
+	00124: NPUSHB       (9):    53    53    38     0     1     1    61     4    18 
+	00135: PUSHW[1]            885 
+	00138: PUSHB[7]             38    38    32    24    24    32    61 
+	00146: PUSHW[1]            883 
+	00149: PUSHB[4]              4    33    32     5 
+	00154: PUSHW[1]            340 
+	00157: SCANCTRL   
+	00158: SCANTYPE   
+	00159: MDAP[rd]   
+	00160: ALIGNRP    
+	00161: MDAP[rd]   
+	00162: MIRP[nrp0,md,rd,1] 
+	00163: SRP1       
+	00164: SHP[rp1,zp0] 
+	00165: MDAP[rd]   
+	00166: SRP2       
+	00167: IP         
+	00168: MDAP[rd]   
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: RTHG       
+	00171: SRP1       
+	00172: SRP2       
+	00173: IP         
+	00174: MDAP[rd]   
+	00175: SHP[rp2,zp1] 
+	00176: RTG        
+	00177: SRP1       
+	00178: IP         
+	00179: MDAP[rd]   
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: SLOOP      
+	00182: IP         
+	00183: SRP1       
+	00184: SRP2       
+	00185: IP         
+	00186: SVTCA[y-axis] 
+	00187: MIAP[rd+ci] 
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: MDAP[rd]   
+	00190: MDAP[rd]   
+	00191: SHP[rp1,zp0] 
+	00192: SHP[rp1,zp0] 
+	00193: MDAP[rd]   
+	00194: SRP1       
+	00195: IP         
+	00196: SHP[rp2,zp1] 
+	00197: SRP2       
+	00198: IP         
+	00199: MDAP[rd]   
+	00200: DELTAP1    
+	00201: MIRP[nrp0,md,rd,1] 
+	00202: DELTAP1    
+	00203: SHP[rp1,zp0] 
+	00204: MDAP[rd]   
+	00205: MIRP[nrp0,md,rd,1] 
+	00206: SRP1       
+	00207: SRP2       
+	00208: IP         
+	00209: MDAP[rd]   
+	00210: MIRP[nrp0,md,rd,1] 
+	00211: IP         
+	00212: SVTCA[x-axis] 
+	00213: SHPIX      
+	00214: IUP[y]     
+	00215: IUP[x]     
+	00216: SVTCA[x-axis] 
+	00217: CALL       
+	00218: CALL       
+	00219: DELTAP1    
+	00220: DELTAP1    
+	00221: DELTAP1    
+	00222: DELTAP1    
+	00223: DELTAP1    
+	00224: SVTCA[y-axis] 
+	00225: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual                         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual               Y-Short X-Short On
+	 29:                      Y-Short X-Short Off
+	 30:                      Y-Short X-Short On
+	 31:                      Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:        XDual         Y-Short X-Short On
+	 44:        XDual         Y-Short X-Short Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual         Y-Short X-Short On
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short Off
+	 53:        XDual         Y-Short         On
+	 54:        XDual         Y-Short         Off
+	 55:                      Y-Short X-Short On
+	 56:                      Y-Short X-Short Off
+	 57:        XDual         Y-Short         On
+	 58:        XDual         Y-Short         Off
+	 59:  YDual XDual                 X-Short On
+	 60:  YDual XDual                 X-Short Off
+	 61:  YDual XDual         Y-Short         On
+	 62:  YDual XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1090,   933)  ->  Abs (  1090,   933)
+	  1: Rel (    84,   116)  ->  Abs (  1174,  1049)
+	  2: Rel (    22,   -34)  ->  Abs (  1196,  1015)
+	  3: Rel (    32,  -187)  ->  Abs (  1228,   828)
+	  4: Rel (     0,   -78)  ->  Abs (  1228,   750)
+	  5: Rel (     0,  -306)  ->  Abs (  1228,   444)
+	  6: Rel (  -221,     0)  ->  Abs (  1007,   444)
+	  7: Rel (   -68,     0)  ->  Abs (   939,   444)
+	  8: Rel (   -24,    52)  ->  Abs (   915,   496)
+	  9: Rel (   -62,  -142)  ->  Abs (   853,   354)
+	 10: Rel (  -146,     0)  ->  Abs (   707,   354)
+	 11: Rel (   -45,     0)  ->  Abs (   662,   354)
+	 12: Rel (   -74,    61)  ->  Abs (   588,   415)
+	 13: Rel (   -70,   102)  ->  Abs (   518,   517)
+	 14: Rel (   -39,    57)  ->  Abs (   479,   574)
+	 15: Rel (   -21,     0)  ->  Abs (   458,   574)
+	 16: Rel (   -61,     0)  ->  Abs (   397,   574)
+	 17: Rel (   -66,   -94)  ->  Abs (   331,   480)
+	 18: Rel (     0,   -64)  ->  Abs (   331,   416)
+	 19: Rel (     0,   -38)  ->  Abs (   331,   378)
+	 20: Rel (    39,   -67)  ->  Abs (   370,   311)
+	 21: Rel (    46,   -36)  ->  Abs (   416,   275)
+	 22: Rel (   176,  -105)  ->  Abs (   592,   170)
+	 23: Rel (    21,   -13)  ->  Abs (   613,   157)
+	 24: Rel (     0,   -64)  ->  Abs (   613,    93)
+	 25: Rel (     0,   -64)  ->  Abs (   613,    29)
+	 26: Rel (   -36,   -29)  ->  Abs (   577,     0)
+	 27: Rel (   -98,    84)  ->  Abs (   479,    84)
+	 28: Rel (   -98,    33)  ->  Abs (   381,   117)
+	 29: Rel (   -53,    -4)  ->  Abs (   328,   113)
+	 30: Rel (   -86,   -45)  ->  Abs (   242,    68)
+	 31: Rel (  -129,   -68)  ->  Abs (   113,     0)
+	 32: Rel (  -113,     0)  ->  Abs (     0,     0)
+	 33: Rel (     0,   123)  ->  Abs (     0,   123)
+	 34: Rel (    92,     0)  ->  Abs (    92,   123)
+	 35: Rel (   126,     0)  ->  Abs (   218,   123)
+	 36: Rel (    93,    82)  ->  Abs (   311,   205)
+	 37: Rel (   -63,   103)  ->  Abs (   248,   308)
+	 38: Rel (     0,    87)  ->  Abs (   248,   395)
+	 39: Rel (     0,    95)  ->  Abs (   248,   490)
+	 40: Rel (   163,   209)  ->  Abs (   411,   699)
+	 41: Rel (    86,     0)  ->  Abs (   497,   699)
+	 42: Rel (    42,     0)  ->  Abs (   539,   699)
+	 43: Rel (    74,  -108)  ->  Abs (   613,   591)
+	 44: Rel (    73,  -108)  ->  Abs (   686,   483)
+	 45: Rel (    37,     0)  ->  Abs (   723,   483)
+	 46: Rel (    41,     0)  ->  Abs (   764,   483)
+	 47: Rel (    58,    63)  ->  Abs (   822,   546)
+	 48: Rel (    28,    97)  ->  Abs (   850,   643)
+	 49: Rel (    48,   206)  ->  Abs (   898,   849)
+	 50: Rel (     5,    22)  ->  Abs (   903,   871)
+	 51: Rel (    24,     0)  ->  Abs (   927,   871)
+	 52: Rel (    21,     0)  ->  Abs (   948,   871)
+	 53: Rel (     0,   -41)  ->  Abs (   948,   830)
+	 54: Rel (     0,   -22)  ->  Abs (   948,   808)
+	 55: Rel (    -8,   -57)  ->  Abs (   940,   751)
+	 56: Rel (    -8,   -57)  ->  Abs (   932,   694)
+	 57: Rel (     0,   -29)  ->  Abs (   932,   665)
+	 58: Rel (     0,  -112)  ->  Abs (   932,   553)
+	 59: Rel (   114,     0)  ->  Abs (  1046,   553)
+	 60: Rel (   110,     0)  ->  Abs (  1156,   553)
+	 61: Rel (     0,    95)  ->  Abs (  1156,   648)
+	 62: Rel (     0,   127)  ->  Abs (  1156,   775)
+
+	Glyph 871: off = 0x0002D18A, len = 24
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-409
+	  xMax:			1196
+	  yMax:			1188
+
+	     0: Flags:		0x0236
+		Glyf Index:	872
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0017
+		Glyf Index:	1021
+		X WOffset:	198
+		Y WOffset:	-1264
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 872: off = 0x0002D1A2, len = 290
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1196
+	  yMax:			1188
+
+	EndPoints
+	---------
+	  0:  45
+
+	  Length of Instructions:	145
+	00000: PUSHB[7]             44    44    23    21    17    17     0 
+	00008: PUSHW[1]            906 
+	00011: NPUSHB       (9):     1    64    18    22    52     1     1    11    23 
+	00022: PUSHW[1]            904 
+	00025: PUSHB[5]             21    21    11    34    12 
+	00031: PUSHW[3]            907    11   858 
+	00038: NPUSHB      (14):    30    36    32    44    40    38     3    42    28    34 
+	                            34    36    32    42 
+	00054: PUSHW[3]            883    28   -64 
+	00061: PUSHB[6]              9    14    52    28    28    36 
+	00068: PUSHW[1]            896 
+	00071: NPUSHB      (18):    47    32    95    32     2    32    32    17     0    23 
+	                            21    21    11     1     0    12    11     4 
+	00091: SCANTYPE   
+	00092: MDAP[rd]   
+	00093: ALIGNRP    
+	00094: MDAP[rd]   
+	00095: SHP[rp1,zp0] 
+	00096: SRP2       
+	00097: IP         
+	00098: MDAP[rd]   
+	00099: SHP[rp1,zp0] 
+	00100: SRP2       
+	00101: IP         
+	00102: IP         
+	00103: MDAP[rd]   
+	00104: DELTAP1    
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: IP         
+	00107: MDAP[rd]   
+	00108: CALL       
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: RTHG       
+	00111: SRP1       
+	00112: SRP2       
+	00113: IP         
+	00114: MDAP[rd]   
+	00115: SRP1       
+	00116: SRP2       
+	00117: SLOOP      
+	00118: IP         
+	00119: SRP1       
+	00120: SRP2       
+	00121: IP         
+	00122: SVTCA[y-axis] 
+	00123: RTG        
+	00124: MIAP[rd+ci] 
+	00125: MIRP[nrp0,md,rd,1] 
+	00126: MDAP[rd]   
+	00127: SRP2       
+	00128: IP         
+	00129: MDAP[rd]   
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: SRP2       
+	00132: IP         
+	00133: MDAP[rd]   
+	00134: CALL       
+	00135: MIRP[nrp0,md,rd,1] 
+	00136: RTHG       
+	00137: IP         
+	00138: MDAP[rd]   
+	00139: SRP1       
+	00140: SRP2       
+	00141: IP         
+	00142: MDAP[rd]   
+	00143: IUP[y]     
+	00144: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short On
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual                               On
+	 14:  YDual XDual                 X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                               On
+	 20:  YDual                       X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual               Y-Short X-Short On
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual               Y-Short X-Short On
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short X-Short On
+	 37:                      Y-Short X-Short Off
+	 38:                      Y-Short X-Short On
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short X-Short On
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:                      Y-Short X-Short On
+	 45:                      Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1196,   369)  ->  Abs (  1196,   369)
+	  1: Rel (   -45,  -119)  ->  Abs (  1151,   250)
+	  2: Rel (   -58,     4)  ->  Abs (  1093,   254)
+	  3: Rel (   -42,     0)  ->  Abs (  1051,   254)
+	  4: Rel (   -49,     0)  ->  Abs (  1002,   254)
+	  5: Rel (  -112,   -16)  ->  Abs (   890,   238)
+	  6: Rel (   -90,   -26)  ->  Abs (   800,   212)
+	  7: Rel (  -135,   -78)  ->  Abs (   665,   134)
+	  8: Rel (  -113,   -65)  ->  Abs (   552,    69)
+	  9: Rel (  -144,   -69)  ->  Abs (   408,     0)
+	 10: Rel (  -249,     0)  ->  Abs (   159,     0)
+	 11: Rel (  -159,     0)  ->  Abs (     0,     0)
+	 12: Rel (     0,   123)  ->  Abs (     0,   123)
+	 13: Rel (   354,     0)  ->  Abs (   354,   123)
+	 14: Rel (    76,     0)  ->  Abs (   430,   123)
+	 15: Rel (   190,    99)  ->  Abs (   620,   222)
+	 16: Rel (   212,   111)  ->  Abs (   832,   333)
+	 17: Rel (    53,    13)  ->  Abs (   885,   346)
+	 18: Rel (  -158,    88)  ->  Abs (   727,   434)
+	 19: Rel (  -297,     0)  ->  Abs (   430,   434)
+	 20: Rel (   -33,     0)  ->  Abs (   397,   434)
+	 21: Rel (   -28,    -2)  ->  Abs (   369,   432)
+	 22: Rel (    27,    64)  ->  Abs (   396,   496)
+	 23: Rel (    32,    47)  ->  Abs (   428,   543)
+	 24: Rel (    53,     7)  ->  Abs (   481,   550)
+	 25: Rel (   137,     8)  ->  Abs (   618,   558)
+	 26: Rel (    67,     4)  ->  Abs (   685,   562)
+	 27: Rel (    50,    30)  ->  Abs (   735,   592)
+	 28: Rel (     0,    64)  ->  Abs (   735,   656)
+	 29: Rel (     0,    72)  ->  Abs (   735,   728)
+	 30: Rel (   -67,   253)  ->  Abs (   668,   981)
+	 31: Rel (   -16,    32)  ->  Abs (   652,  1013)
+	 32: Rel (   -17,    54)  ->  Abs (   635,  1067)
+	 33: Rel (    25,    42)  ->  Abs (   660,  1109)
+	 34: Rel (    65,    79)  ->  Abs (   725,  1188)
+	 35: Rel (    36,   -67)  ->  Abs (   761,  1121)
+	 36: Rel (    50,   -62)  ->  Abs (   811,  1059)
+	 37: Rel (   -18,   -36)  ->  Abs (   793,  1023)
+	 38: Rel (   -37,   -58)  ->  Abs (   756,   965)
+	 39: Rel (     5,   -59)  ->  Abs (   761,   906)
+	 40: Rel (    24,  -120)  ->  Abs (   785,   786)
+	 41: Rel (    22,  -106)  ->  Abs (   807,   680)
+	 42: Rel (     0,   -46)  ->  Abs (   807,   634)
+	 43: Rel (     0,   -83)  ->  Abs (   807,   551)
+	 44: Rel (   -53,   -33)  ->  Abs (   754,   518)
+	 45: Rel (   306,  -139)  ->  Abs (  1060,   379)
+
+	Glyph 873: off = 0x0002D2C4, len = 44
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1196
+	  yMax:			1188
+
+	     0: Flags:		0x0236
+		Glyf Index:	872
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	-240
+		Y WOffset:	-53
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    48    16    48     2    16    48     1    48 
+	00012: SVTCA[x-axis] 
+	00013: SRP1       
+	00014: DELTAP1    
+	00015: DELTAP2    
+	00016: SHC[rp1,zp0] 
+
+	Glyph 874: off = 0x0002D2F0, len = 186
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-105
+	  xMax:			1195
+	  yMax:			1165
+
+	EndPoints
+	---------
+	  0:  32
+
+	  Length of Instructions:	75
+	00000: NPUSHB      (14):    40    25    58     2     2    11    25    27     3     3 
+	                             6     0    17     7 
+	00016: PUSHW[1]            907 
+	00019: NPUSHB      (20):     6    13    11    21     3    19    17    17    15    19 
+	                            19    15    15    30     6     0     0    30     7     6 
+	00041: MDAP[rd]   
+	00042: ALIGNRP    
+	00043: MDAP[rd]   
+	00044: SHP[rp1,zp0] 
+	00045: RTHG       
+	00046: MDAP[rd]   
+	00047: RTG        
+	00048: SRP1       
+	00049: SRP2       
+	00050: IP         
+	00051: MDAP[rd]   
+	00052: SHP[rp1,zp0] 
+	00053: MDAP[rd]   
+	00054: RTHG       
+	00055: SRP2       
+	00056: IP         
+	00057: MDAP[rd]   
+	00058: SRP1       
+	00059: SLOOP      
+	00060: IP         
+	00061: SVTCA[y-axis] 
+	00062: RTG        
+	00063: MDAP[rd]   
+	00064: MIRP[nrp0,md,rd,1] 
+	00065: MDAP[rd]   
+	00066: MDAP[rd]   
+	00067: SRP1       
+	00068: IP         
+	00069: SLOOP      
+	00070: SHP[rp2,zp1] 
+	00071: IUP[y]     
+	00072: IUP[x]     
+	00073: SVTCA[x-axis] 
+	00074: DELTAP1    
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                               On
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:  YDual XDual                 X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:                              X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1119,  -105)  ->  Abs (  1119,  -105)
+	  1: Rel (   -50,    80)  ->  Abs (  1069,   -25)
+	  2: Rel (  -162,   118)  ->  Abs (   907,    93)
+	  3: Rel (   -67,     0)  ->  Abs (   840,    93)
+	  4: Rel (  -120,   -93)  ->  Abs (   720,     0)
+	  5: Rel (   -99,     0)  ->  Abs (   621,     0)
+	  6: Rel (  -621,     0)  ->  Abs (     0,     0)
+	  7: Rel (     0,   123)  ->  Abs (     0,   123)
+	  8: Rel (   619,     0)  ->  Abs (   619,   123)
+	  9: Rel (    66,     0)  ->  Abs (   685,   123)
+	 10: Rel (   127,    60)  ->  Abs (   812,   183)
+	 11: Rel (    14,    22)  ->  Abs (   826,   205)
+	 12: Rel (   -23,    61)  ->  Abs (   803,   266)
+	 13: Rel (   -20,   133)  ->  Abs (   783,   399)
+	 14: Rel (   -92,   608)  ->  Abs (   691,  1007)
+	 15: Rel (   -32,    29)  ->  Abs (   659,  1036)
+	 16: Rel (    43,    77)  ->  Abs (   702,  1113)
+	 17: Rel (    41,    52)  ->  Abs (   743,  1165)
+	 18: Rel (    43,   -82)  ->  Abs (   786,  1083)
+	 19: Rel (    45,   -49)  ->  Abs (   831,  1034)
+	 20: Rel (   -32,   -47)  ->  Abs (   799,   987)
+	 21: Rel (   -25,   -53)  ->  Abs (   774,   934)
+	 22: Rel (    27,  -205)  ->  Abs (   801,   729)
+	 23: Rel (    75,  -426)  ->  Abs (   876,   303)
+	 24: Rel (    30,   -76)  ->  Abs (   906,   227)
+	 25: Rel (    30,   -22)  ->  Abs (   936,   205)
+	 26: Rel (     8,   -13)  ->  Abs (   944,   192)
+	 27: Rel (    71,   -31)  ->  Abs (  1015,   161)
+	 28: Rel (    93,   -41)  ->  Abs (  1108,   120)
+	 29: Rel (    87,   -73)  ->  Abs (  1195,    47)
+	 30: Rel (     0,   -50)  ->  Abs (  1195,    -3)
+	 31: Rel (     0,   -19)  ->  Abs (  1195,   -22)
+	 32: Rel (   -58,   -71)  ->  Abs (  1137,   -93)
+
+	Glyph 875: off = 0x0002D3AA, len = 524
+	  numberOfContours:	3
+	  xMin:			0
+	  yMin:			-424
+	  xMax:			1149
+	  yMax:			1172
+
+	EndPoints
+	---------
+	  0:  48
+	  1:  56
+	  2:  65
+
+	  Length of Instructions:	336
+	00000: PUSHW[2]             50   -44 
+	00005: NPUSHB      (33):    15    24    52   214    51   228    49     2    18    16 
+	                            12    14    52     3    46     3    49     3    50    66 
+	                            49    66    50    64    51   131    49   129    50   130 
+	                            51     9    46 
+	00040: PUSHW[1]            -64 
+	00043: NPUSHB      (40):    18    24    52     2    19     0    46    57    30    67 
+	                            14    99    14   152    11   182    15     7    40    30 
+	                            50    41    57    50     3    18    64    10    14    52 
+	                             0    46     0    48   134    46   133    49     4    18 
+	00085: PUSHW[1]            -24 
+	00088: PUSHB[5]             10    17    52     8    42 
+	00094: PUSHW[1]            907 
+	00097: NPUSHB       (9):    16    54    32    54     2    54    54    35    23 
+	00108: PUSHW[1]            907 
+	00111: NPUSHB      (20):    47    61    63    61     2    61    61    18    57    30 
+	                            28     4    49    39    47    32    36    35     0     1 
+	00133: PUSHW[6]            907    16    36   907    35   858 
+	00146: NPUSHB      (13):    32    30    47    26    18    20    57    63    28    59 
+	                            26    47    39 
+	00161: PUSHW[1]            890 
+	00164: PUSHB[4]             49    49    59    44 
+	00169: PUSHW[3]            878    52   -64 
+	00176: NPUSHB      (18):     9    12    52     0    52     1   128    52   160    52 
+	                           176    52     3    52    52    13    35    20 
+	00196: PUSHW[1]            878 
+	00199: PUSHB[8]              0    63    80    63     2    63    63    59 
+	00208: PUSHW[1]            886 
+	00211: NPUSHB      (25):    16    26    32    26    48    26     3    26    26    35 
+	                            11    13     8     8     6    10    10     6    64    10 
+	                            16    52     6     6     3 
+	00238: PUSHW[1]            884 
+	00241: PUSHB[6]             79    13     1    13    36    35 
+	00248: MDAP[rd]   
+	00249: ALIGNRP    
+	00250: MDAP[rd]   
+	00251: DELTAP1    
+	00252: MIRP[srp0,md,rd,1] 
+	00253: SHP[rp2,zp1] 
+	00254: MDAP[rd]   
+	00255: CALL       
+	00256: SHP[rp1,zp0] 
+	00257: MDAP[rd]   
+	00258: RTHG       
+	00259: SRP2       
+	00260: IP         
+	00261: MDAP[rd]   
+	00262: SRP1       
+	00263: IP         
+	00264: RTG        
+	00265: SRP2       
+	00266: IP         
+	00267: MDAP[rd]   
+	00268: DELTAP1    
+	00269: MIRP[srp0,md,rd,1] 
+	00270: SHP[rp2,zp1] 
+	00271: MDAP[rd]   
+	00272: DELTAP1    
+	00273: MIRP[nrp0,md,rd,1] 
+	00274: SRP1       
+	00275: SRP2       
+	00276: IP         
+	00277: MDAP[rd]   
+	00278: DELTAP1    
+	00279: DELTAP2    
+	00280: CALL       
+	00281: MIRP[nrp0,md,rd,1] 
+	00282: SRP1       
+	00283: SHP[rp1,zp0] 
+	00284: MDAP[rd]   
+	00285: MIRP[nrp0,md,rd,1] 
+	00286: SHP[rp1,zp0] 
+	00287: SRP1       
+	00288: SRP2       
+	00289: IP         
+	00290: SRP1       
+	00291: IP         
+	00292: SRP2       
+	00293: IP         
+	00294: SRP1       
+	00295: IP         
+	00296: SHP[rp1,zp0] 
+	00297: SHP[rp1,zp0] 
+	00298: SVTCA[y-axis] 
+	00299: MIAP[rd+ci] 
+	00300: MIRP[nrp0,md,rd,1] 
+	00301: MDAP[rd]   
+	00302: MIRP[srp0,md,rd,1] 
+	00303: ALIGNRP    
+	00304: SRP1       
+	00305: SRP2       
+	00306: IP         
+	00307: IP         
+	00308: SHP[rp2,zp1] 
+	00309: SHP[rp2,zp1] 
+	00310: SLOOP      
+	00311: SHP[rp1,zp0] 
+	00312: SHP[rp1,zp0] 
+	00313: MDAP[rd]   
+	00314: DELTAP1    
+	00315: MIRP[nrp0,md,rd,1] 
+	00316: SRP1       
+	00317: SHP[rp1,zp0] 
+	00318: MDAP[rd]   
+	00319: DELTAP1    
+	00320: MIRP[nrp0,md,rd,1] 
+	00321: MDAP[rd]   
+	00322: CALL       
+	00323: IUP[y]     
+	00324: IUP[x]     
+	00325: SVTCA[x-axis] 
+	00326: DELTAP2    
+	00327: CALL       
+	00328: DELTAP1    
+	00329: DELTAP1    
+	00330: CALL       
+	00331: SVTCA[y-axis] 
+	00332: DELTAP2    
+	00333: CALL       
+	00334: DELTAP1    
+	00335: CALL       
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:                              X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short On
+	 11:                      Y-Short X-Short On
+	 12:        XDual                 X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:                      Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:                      Y-Short X-Short Off
+	 30:                      Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:                      Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short On
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:        XDual                 X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:        XDual         Y-Short         On
+	 45:        XDual         Y-Short         Off
+	 46:                      Y-Short X-Short Off
+	 47:                      Y-Short X-Short On
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual               Y-Short X-Short On
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short X-Short Off
+	 52:  YDual XDual         Y-Short         On
+	 53:  YDual XDual         Y-Short         Off
+	 54:  YDual                       X-Short On
+	 55:  YDual                       X-Short Off
+	 56:                      Y-Short X-Short Off
+	 57:                              X-Short On
+	 58:                      Y-Short X-Short Off
+	 59:        XDual         Y-Short         On
+	 60:        XDual         Y-Short         Off
+	 61:  YDual XDual                 X-Short On
+	 62:  YDual XDual                 X-Short Off
+	 63:  YDual XDual         Y-Short         On
+	 64:  YDual XDual         Y-Short         Off
+	 65:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   798,   123)  ->  Abs (   798,   123)
+	  1: Rel (   171,     0)  ->  Abs (   969,   123)
+	  2: Rel (   104,     0)  ->  Abs (  1073,   123)
+	  3: Rel (     0,    62)  ->  Abs (  1073,   185)
+	  4: Rel (     0,   244)  ->  Abs (  1073,   429)
+	  5: Rel (   -59,   520)  ->  Abs (  1014,   949)
+	  6: Rel (   -50,    94)  ->  Abs (   964,  1043)
+	  7: Rel (    24,    43)  ->  Abs (   988,  1086)
+	  8: Rel (    60,    86)  ->  Abs (  1048,  1172)
+	  9: Rel (    41,   -87)  ->  Abs (  1089,  1085)
+	 10: Rel (    47,   -44)  ->  Abs (  1136,  1041)
+	 11: Rel (   -58,  -101)  ->  Abs (  1078,   940)
+	 12: Rel (    71,  -545)  ->  Abs (  1149,   395)
+	 13: Rel (     0,  -218)  ->  Abs (  1149,   177)
+	 14: Rel (     0,   -85)  ->  Abs (  1149,    92)
+	 15: Rel (   -93,   -92)  ->  Abs (  1056,     0)
+	 16: Rel (  -154,     0)  ->  Abs (   902,     0)
+	 17: Rel (  -197,     0)  ->  Abs (   705,     0)
+	 18: Rel (   -84,   -23)  ->  Abs (   621,   -23)
+	 19: Rel (    78,   -74)  ->  Abs (   699,   -97)
+	 20: Rel (     0,   -57)  ->  Abs (   699,  -154)
+	 21: Rel (     0,   -98)  ->  Abs (   699,  -252)
+	 22: Rel (  -122,  -172)  ->  Abs (   577,  -424)
+	 23: Rel (   -70,     0)  ->  Abs (   507,  -424)
+	 24: Rel (   -77,     0)  ->  Abs (   430,  -424)
+	 25: Rel (   -93,   167)  ->  Abs (   337,  -257)
+	 26: Rel (     0,   110)  ->  Abs (   337,  -147)
+	 27: Rel (     0,    29)  ->  Abs (   337,  -118)
+	 28: Rel (    12,    48)  ->  Abs (   349,   -70)
+	 29: Rel (   -58,   -25)  ->  Abs (   291,   -95)
+	 30: Rel (   -53,   -14)  ->  Abs (   238,  -109)
+	 31: Rel (     4,    52)  ->  Abs (   242,   -57)
+	 32: Rel (    37,    86)  ->  Abs (   279,    29)
+	 33: Rel (   -80,   -29)  ->  Abs (   199,     0)
+	 34: Rel (  -135,     0)  ->  Abs (    64,     0)
+	 35: Rel (   -64,     0)  ->  Abs (     0,     0)
+	 36: Rel (     0,   123)  ->  Abs (     0,   123)
+	 37: Rel (   124,     0)  ->  Abs (   124,   123)
+	 38: Rel (   177,     0)  ->  Abs (   301,   123)
+	 39: Rel (    58,    31)  ->  Abs (   359,   154)
+	 40: Rel (   112,   220)  ->  Abs (   471,   374)
+	 41: Rel (   211,   273)  ->  Abs (   682,   647)
+	 42: Rel (    56,     0)  ->  Abs (   738,   647)
+	 43: Rel (    86,     0)  ->  Abs (   824,   647)
+	 44: Rel (     0,  -119)  ->  Abs (   824,   528)
+	 45: Rel (     0,  -162)  ->  Abs (   824,   366)
+	 46: Rel (   -90,  -175)  ->  Abs (   734,   191)
+	 47: Rel (  -196,  -109)  ->  Abs (   538,    82)
+	 48: Rel (   119,    41)  ->  Abs (   657,   123)
+	 49: Rel (  -196,    43)  ->  Abs (   461,   166)
+	 50: Rel (   129,    28)  ->  Abs (   590,   194)
+	 51: Rel (   196,   205)  ->  Abs (   786,   399)
+	 52: Rel (     0,    50)  ->  Abs (   786,   449)
+	 53: Rel (     0,    75)  ->  Abs (   786,   524)
+	 54: Rel (   -43,     0)  ->  Abs (   743,   524)
+	 55: Rel (   -48,     0)  ->  Abs (   695,   524)
+	 56: Rel (   -95,   -86)  ->  Abs (   600,   438)
+	 57: Rel (  -160,  -456)  ->  Abs (   440,   -18)
+	 58: Rel (   -19,   -56)  ->  Abs (   421,   -74)
+	 59: Rel (     0,   -76)  ->  Abs (   421,  -150)
+	 60: Rel (     0,  -149)  ->  Abs (   421,  -299)
+	 61: Rel (   126,     0)  ->  Abs (   547,  -299)
+	 62: Rel (   100,     0)  ->  Abs (   647,  -299)
+	 63: Rel (     0,    78)  ->  Abs (   647,  -221)
+	 64: Rel (     0,    57)  ->  Abs (   647,  -164)
+	 65: Rel (  -143,   141)  ->  Abs (   504,   -23)
+
+	Glyph 876: off = 0x0002D5B6, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-323
+	  xMax:			1140
+	  yMax:			877
+
+	     0: Flags:		0x0236
+		Glyf Index:	877
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	139
+		Y WOffset:	-1178
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    41    32    41     2    41 
+	00008: SVTCA[y-axis] 
+	00009: SRP1       
+	00010: DELTAP1    
+	00011: SHC[rp1,zp0] 
+
+	Glyph 877: off = 0x0002D5DC, len = 274
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1140
+	  yMax:			877
+
+	EndPoints
+	---------
+	  0:  37
+
+	  Length of Instructions:	151
+	00000: NPUSHB      (27):    66    34   105    13     2    74     4    74    19    74 
+	                            20     3     6    20    20    20     2     4     7     6 
+	                            20    20    32    26    34    34    17 
+	00029: PUSHW[1]            903 
+	00032: NPUSHB       (9):    73    15     1    15    15     1    12    12     0 
+	00043: PUSHW[1]            901 
+	00046: NPUSHB      (16):     1    20    20    26   187    32     1    32    64    18 
+	                            19    52    32    32    26     7 
+	00064: PUSHW[1]            907 
+	00067: NPUSHB      (21):     6    20    23    29    12    34     0    15    23    23 
+	                            29    29     0    17    15    15     6     1     0     7 
+	                             6 
+	00090: MDAP[rd]   
+	00091: ALIGNRP    
+	00092: MDAP[rd]   
+	00093: SHP[rp1,zp0] 
+	00094: SRP2       
+	00095: IP         
+	00096: MDAP[rd]   
+	00097: SHP[rp1,zp0] 
+	00098: SRP1       
+	00099: SHP[rp1,zp0] 
+	00100: MDAP[rd]   
+	00101: SHP[rp1,zp0] 
+	00102: MDAP[rd]   
+	00103: SRP1       
+	00104: SRP2       
+	00105: IP         
+	00106: IP         
+	00107: SRP1       
+	00108: SRP2       
+	00109: IP         
+	00110: SVTCA[y-axis] 
+	00111: MDAP[rd]   
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: MDAP[rd]   
+	00114: SHP[rp1,zp0] 
+	00115: MDAP[rd]   
+	00116: CALL       
+	00117: DELTAP1    
+	00118: RTHG       
+	00119: SRP2       
+	00120: IP         
+	00121: MDAP[rd]   
+	00122: RTG        
+	00123: MDAP[rd]   
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: RTHG       
+	00126: IP         
+	00127: MDAP[rd]   
+	00128: SRP1       
+	00129: SHP[rp1,zp0] 
+	00130: RTG        
+	00131: MDAP[rd]   
+	00132: DELTAP1    
+	00133: MIRP[srp0,md,rd,0] 
+	00134: SHP[rp2,zp1] 
+	00135: RTHG       
+	00136: MDAP[rd]   
+	00137: SRP1       
+	00138: SRP2       
+	00139: IP         
+	00140: MDAP[rd]   
+	00141: SRP1       
+	00142: SRP2       
+	00143: IP         
+	00144: IUP[y]     
+	00145: IUP[x]     
+	00146: SVTCA[x-axis] 
+	00147: DELTAP1    
+	00148: SVTCA[y-axis] 
+	00149: DELTAP1    
+	00150: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual                       X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short         On
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                               On
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:  YDual XDual                 X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short         Off
+	 15:  YDual                       X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:                      Y-Short         Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:                      Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                               Off
+	 34:                      Y-Short X-Short On
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short X-Short On
+	 37:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1140,   275)  ->  Abs (  1140,   275)
+	  1: Rel (   -36,   -97)  ->  Abs (  1104,   178)
+	  2: Rel (  -132,     0)  ->  Abs (   972,   178)
+	  3: Rel (  -239,   -48)  ->  Abs (   733,   130)
+	  4: Rel (  -258,   -99)  ->  Abs (   475,    31)
+	  5: Rel (   -81,   -31)  ->  Abs (   394,     0)
+	  6: Rel (  -394,     0)  ->  Abs (     0,     0)
+	  7: Rel (     0,   123)  ->  Abs (     0,   123)
+	  8: Rel (   352,     0)  ->  Abs (   352,   123)
+	  9: Rel (    89,     0)  ->  Abs (   441,   123)
+	 10: Rel (   177,    46)  ->  Abs (   618,   169)
+	 11: Rel (   209,    56)  ->  Abs (   827,   225)
+	 12: Rel (    40,     6)  ->  Abs (   867,   231)
+	 13: Rel (  -104,    50)  ->  Abs (   763,   281)
+	 14: Rel (  -338,   108)  ->  Abs (   425,   389)
+	 15: Rel (   -54,     0)  ->  Abs (   371,   389)
+	 16: Rel (    28,    42)  ->  Abs (   399,   431)
+	 17: Rel (    28,    66)  ->  Abs (   427,   497)
+	 18: Rel (    53,    54)  ->  Abs (   480,   551)
+	 19: Rel (   243,   104)  ->  Abs (   723,   655)
+	 20: Rel (    90,    13)  ->  Abs (   813,   668)
+	 21: Rel (  -127,    47)  ->  Abs (   686,   715)
+	 22: Rel (   -27,    27)  ->  Abs (   659,   742)
+	 23: Rel (     0,    13)  ->  Abs (   659,   755)
+	 24: Rel (     0,    32)  ->  Abs (   659,   787)
+	 25: Rel (    80,    90)  ->  Abs (   739,   877)
+	 26: Rel (    27,     0)  ->  Abs (   766,   877)
+	 27: Rel (    67,     0)  ->  Abs (   833,   877)
+	 28: Rel (   271,  -110)  ->  Abs (  1104,   767)
+	 29: Rel (     0,   -53)  ->  Abs (  1104,   714)
+	 30: Rel (     0,   -28)  ->  Abs (  1104,   686)
+	 31: Rel (   -43,  -103)  ->  Abs (  1061,   583)
+	 32: Rel (   -13,     0)  ->  Abs (  1048,   583)
+	 33: Rel (  -399,     0)  ->  Abs (   649,   583)
+	 34: Rel (  -147,  -104)  ->  Abs (   502,   479)
+	 35: Rel (    44,    -7)  ->  Abs (   546,   472)
+	 36: Rel (   248,   -94)  ->  Abs (   794,   378)
+	 37: Rel (   243,   -92)  ->  Abs (  1037,   286)
+
+	Glyph 878: off = 0x0002D6EE, len = 74
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1140
+	  yMax:			909
+
+	     0: Flags:		0x0236
+		Glyf Index:	877
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	-209
+		Y WOffset:	-165
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (34):     1    63    41     1   127    41   159    41     2    79 
+	                            41   175    41   191    41     3    41     1    16    40 
+	                            48    40     2     0    40   128    40     2     0    40 
+	                            16    40     2    40 
+	00036: SVTCA[x-axis] 
+	00037: SRP1       
+	00038: DELTAP1    
+	00039: DELTAP2    
+	00040: DELTAP3    
+	00041: SHC[rp1,zp0] 
+	00042: SVTCA[y-axis] 
+	00043: SRP1       
+	00044: DELTAP1    
+	00045: DELTAP2    
+	00046: DELTAP3    
+	00047: SHC[rp1,zp0] 
+
+	Glyph 879: off = 0x0002D738, len = 210
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1120
+	  yMax:			885
+
+	EndPoints
+	---------
+	  0:  38
+
+	  Length of Instructions:	91
+	00000: NPUSHB      (24):    70    34   107    16   107    30   102    34     4     6 
+	                            17    22    17     2    13     9    17    17    22    28 
+	                            28    22     2     9 
+	00026: PUSHW[1]            907 
+	00029: NPUSHB      (10):     8     0    28    17    25    19    19    25    13    31 
+	00041: PUSHW[1]            886 
+	00044: NPUSHB      (10):    96    15     1    15    15     8    37    25     9     8 
+	00056: MDAP[rd]   
+	00057: ALIGNRP    
+	00058: MDAP[rd]   
+	00059: MDAP[rd]   
+	00060: SRP2       
+	00061: IP         
+	00062: MDAP[rd]   
+	00063: DELTAP1    
+	00064: MIRP[nrp0,md,rd,1] 
+	00065: IP         
+	00066: SRP1       
+	00067: SHP[rp1,zp0] 
+	00068: MDAP[rd]   
+	00069: SRP2       
+	00070: IP         
+	00071: IP         
+	00072: SVTCA[y-axis] 
+	00073: MDAP[rd]   
+	00074: MDAP[rd]   
+	00075: MIRP[nrp0,md,rd,1] 
+	00076: IP         
+	00077: MDAP[rd]   
+	00078: SHP[rp1,zp0] 
+	00079: MDAP[rd]   
+	00080: RTHG       
+	00081: SRP2       
+	00082: IP         
+	00083: MDAP[rd]   
+	00084: SRP1       
+	00085: SHP[rp1,zp0] 
+	00086: IUP[y]     
+	00087: IUP[x]     
+	00088: SVTCA[x-axis] 
+	00089: DELTAP1    
+	00090: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short On
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual                               On
+	 11:  YDual XDual                 X-Short Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:        XDual                         Off
+	 17:  YDual               Y-Short         On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:                      Y-Short         Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:                      Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                               Off
+	 30:                      Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short X-Short On
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   784,     2)  ->  Abs (   784,     2)
+	  1: Rel (   -81,    74)  ->  Abs (   703,    76)
+	  2: Rel (  -115,    43)  ->  Abs (   588,   119)
+	  3: Rel (   -55,    -4)  ->  Abs (   533,   115)
+	  4: Rel (  -113,   -55)  ->  Abs (   420,    60)
+	  5: Rel (   -78,   -37)  ->  Abs (   342,    23)
+	  6: Rel (  -106,   -23)  ->  Abs (   236,     0)
+	  7: Rel (  -115,     0)  ->  Abs (   121,     0)
+	  8: Rel (  -121,     0)  ->  Abs (     0,     0)
+	  9: Rel (     0,   123)  ->  Abs (     0,   123)
+	 10: Rel (   289,     0)  ->  Abs (   289,   123)
+	 11: Rel (    61,     0)  ->  Abs (   350,   123)
+	 12: Rel (   107,    28)  ->  Abs (   457,   151)
+	 13: Rel (    61,    56)  ->  Abs (   518,   207)
+	 14: Rel (   -34,    47)  ->  Abs (   484,   254)
+	 15: Rel (     0,    67)  ->  Abs (   484,   321)
+	 16: Rel (     0,   263)  ->  Abs (   484,   584)
+	 17: Rel (   341,   101)  ->  Abs (   825,   685)
+	 18: Rel (  -149,    38)  ->  Abs (   676,   723)
+	 19: Rel (     0,    39)  ->  Abs (   676,   762)
+	 20: Rel (     0,    32)  ->  Abs (   676,   794)
+	 21: Rel (    79,    91)  ->  Abs (   755,   885)
+	 22: Rel (    27,     0)  ->  Abs (   782,   885)
+	 23: Rel (    67,     0)  ->  Abs (   849,   885)
+	 24: Rel (   271,  -111)  ->  Abs (  1120,   774)
+	 25: Rel (     0,   -53)  ->  Abs (  1120,   721)
+	 26: Rel (     0,   -27)  ->  Abs (  1120,   694)
+	 27: Rel (   -44,  -104)  ->  Abs (  1076,   590)
+	 28: Rel (   -11,     0)  ->  Abs (  1065,   590)
+	 29: Rel (  -272,     0)  ->  Abs (   793,   590)
+	 30: Rel (  -222,   -83)  ->  Abs (   571,   507)
+	 31: Rel (     0,   -91)  ->  Abs (   571,   416)
+	 32: Rel (     0,   -47)  ->  Abs (   571,   369)
+	 33: Rel (    45,   -76)  ->  Abs (   616,   293)
+	 34: Rel (    67,   -48)  ->  Abs (   683,   245)
+	 35: Rel (   116,   -73)  ->  Abs (   799,   172)
+	 36: Rel (    21,   -13)  ->  Abs (   820,   159)
+	 37: Rel (     0,   -64)  ->  Abs (   820,    95)
+	 38: Rel (     0,   -64)  ->  Abs (   820,    31)
+
+	Glyph 880: off = 0x0002D80A, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-426
+	  xMax:			1196
+	  yMax:			1360
+
+	     0: Flags:		0x0236
+		Glyf Index:	1118
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0037
+		Glyf Index:	1021
+		X WOffset:	335
+		Y WOffset:	286
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     2: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	161
+		Y WOffset:	-1281
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1    15    49     1    31    49    32    49     2    49 
+	00012: SVTCA[y-axis] 
+	00013: SRP1       
+	00014: DELTAP1    
+	00015: DELTAP2    
+	00016: SHC[rp1,zp0] 
+
+	Glyph 881: off = 0x0002D83E, len = 44
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1196
+	  yMax:			1360
+
+	     0: Flags:		0x0236
+		Glyf Index:	1118
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	335
+		Y WOffset:	286
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1    15    49     1    31    49    32    49     2    49 
+	00012: SVTCA[y-axis] 
+	00013: SRP1       
+	00014: DELTAP1    
+	00015: DELTAP2    
+	00016: SHC[rp1,zp0] 
+
+	Glyph 882: off = 0x0002D86A, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1196
+	  yMax:			1360
+
+	     0: Flags:		0x0236
+		Glyf Index:	1118
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0037
+		Glyf Index:	1021
+		X WOffset:	335
+		Y WOffset:	286
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     2: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	-292
+		Y WOffset:	-100
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     2    63    53     1    53     1    15    49     1    31 
+	                            49     1    49     2    16    52     1    52 
+	00020: SVTCA[x-axis] 
+	00021: SRP1       
+	00022: DELTAP1    
+	00023: SHC[rp1,zp0] 
+	00024: SVTCA[y-axis] 
+	00025: SRP1       
+	00026: DELTAP1    
+	00027: DELTAP2    
+	00028: SHC[rp1,zp0] 
+	00029: SVTCA[y-axis] 
+	00030: SRP1       
+	00031: DELTAP1    
+	00032: SHC[rp1,zp0] 
+
+	Glyph 883: off = 0x0002D8AE, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1133
+	  yMax:			1278
+
+	     0: Flags:		0x0236
+		Glyf Index:	1119
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	376
+		Y WOffset:	204
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1    32    32     1    32     1    16    33    79    33 
+	                             2    33 
+	00014: SVTCA[x-axis] 
+	00015: SRP1       
+	00016: DELTAP1    
+	00017: SHC[rp1,zp0] 
+	00018: SVTCA[y-axis] 
+	00019: SRP1       
+	00020: DELTAP1    
+	00021: SHC[rp1,zp0] 
+
+	Glyph 884: off = 0x0002D8DE, len = 462
+	  numberOfContours:	4
+	  xMin:			0
+	  yMin:			-6
+	  xMax:			1229
+	  yMax:			1203
+
+	EndPoints
+	---------
+	  0:  45
+	  1:  55
+	  2:  63
+	  3:  71
+
+	  Length of Instructions:	248
+	00000: NPUSHB      (60):    70    54   181    53   181    59     3   135    65   166 
+	                            29   182    28     3    56     2   116    29   131    29 
+	                             3     2    57    23    45    40    55    68    25    69 
+	                            46    75    54     6     2    31    58    54    53    56 
+	                             6    48     0    60    60     0     0    64     0     2 
+	                             0     0     5    38    96    41     1    41    41    36 
+	00062: PUSHW[1]            943 
+	00065: PUSHB[3]             32    48     5 
+	00069: PUSHW[1]            900 
+	00072: NPUSHB      (12):    32    70    48    70     2    70    70    64    66    19 
+	                            12    20 
+	00086: PUSHW[3]            907    19   858 
+	00093: NPUSHB      (22):    63     0   111     0     2     0     0    60    62    36 
+	                            46    56     2     4    54    31    51    33    38    38 
+	                            51    58 
+	00117: PUSHW[1]            883 
+	00120: PUSHB[7]             96    54     1    54    54    62    33 
+	00128: PUSHW[1]            885 
+	00131: NPUSHB      (13):    63    51   111    51     2    15    51    47    51     2 
+	                            51    51    62 
+	00146: PUSHW[1]            885 
+	00149: NPUSHB      (11):    44    20    19    14    25    79    64     1    64    64 
+	                            68 
+	00162: PUSHW[1]            886 
+	00165: PUSHB[5]             47     8     1     8     4 
+	00171: SCANTYPE   
+	00172: MDAP[rd]   
+	00173: DELTAP1    
+	00174: MIRP[srp0,md,rd,1] 
+	00175: SHP[rp2,zp1] 
+	00176: MDAP[rd]   
+	00177: DELTAP1    
+	00178: SHP[rp1,zp0] 
+	00179: SHP[rp1,zp0] 
+	00180: MDAP[rd]   
+	00181: ALIGNRP    
+	00182: MDAP[rd]   
+	00183: MIRP[srp0,md,rd,1] 
+	00184: SHP[rp2,zp1] 
+	00185: MDAP[rd]   
+	00186: DELTAP1    
+	00187: DELTAP1    
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: SRP2       
+	00190: IP         
+	00191: MDAP[rd]   
+	00192: DELTAP1    
+	00193: MIRP[nrp0,md,rd,1] 
+	00194: SRP1       
+	00195: SHP[rp1,zp0] 
+	00196: MDAP[rd]   
+	00197: SRP1       
+	00198: SRP2       
+	00199: IP         
+	00200: SRP1       
+	00201: SLOOP      
+	00202: SHP[rp1,zp0] 
+	00203: SRP1       
+	00204: SHP[rp1,zp0] 
+	00205: SHP[rp1,zp0] 
+	00206: RTHG       
+	00207: MDAP[rd]   
+	00208: DELTAP1    
+	00209: SVTCA[y-axis] 
+	00210: RTG        
+	00211: MIAP[rd+ci] 
+	00212: MIRP[nrp0,md,rd,1] 
+	00213: MDAP[rd]   
+	00214: SRP1       
+	00215: IP         
+	00216: SHP[rp2,zp1] 
+	00217: SHP[rp2,zp1] 
+	00218: MDAP[rd]   
+	00219: DELTAP1    
+	00220: MIRP[nrp0,md,rd,1] 
+	00221: MDAP[rd]   
+	00222: SMD        
+	00223: RTHG       
+	00224: MIRP[srp0,md,rd,1] 
+	00225: SHP[rp2,zp1] 
+	00226: RTG        
+	00227: MDAP[rd]   
+	00228: DELTAP1    
+	00229: IP         
+	00230: SRP1       
+	00231: SHP[rp1,zp0] 
+	00232: MDAP[rd]   
+	00233: DELTAP1    
+	00234: SHP[rp1,zp0] 
+	00235: MDAP[rd]   
+	00236: SRP1       
+	00237: SRP2       
+	00238: SLOOP      
+	00239: IP         
+	00240: IUP[y]     
+	00241: IUP[x]     
+	00242: SVTCA[x-axis] 
+	00243: DELTAP1    
+	00244: SVTCA[y-axis] 
+	00245: DELTAP1    
+	00246: DELTAP1    
+	00247: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short Off
+	  5:                      Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short On
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual Rep-  4 Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual                       X-Short On
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:        XDual         Y-Short X-Short Off
+	 44:                      Y-Short X-Short On
+	 45:        XDual         Y-Short         Off
+	 46:                              X-Short On
+	 47:  YDual XDual         Y-Short         Off
+	 48:  YDual                       X-Short On
+	 49:  YDual                       X-Short Off
+	 50:                      Y-Short X-Short Off
+	 51:        XDual         Y-Short         On
+	 52:        XDual         Y-Short         Off
+	 53:        XDual         Y-Short X-Short On
+	 54:        XDual         Y-Short X-Short On
+	 55:  YDual XDual         Y-Short X-Short Off
+	 56:  YDual XDual         Y-Short X-Short On
+	 57:                      Y-Short X-Short Off
+	 58:                      Y-Short X-Short On
+	 59:        XDual         Y-Short X-Short Off
+	 60:        XDual         Y-Short X-Short On
+	 61:  YDual XDual         Y-Short X-Short Off
+	 62:  YDual XDual         Y-Short         On
+	 63:  YDual XDual         Y-Short         Off
+	 64:                                      On
+	 65:        XDual         Y-Short X-Short Off
+	 66:        XDual         Y-Short X-Short On
+	 67:  YDual XDual         Y-Short X-Short Off
+	 68:  YDual XDual         Y-Short         On
+	 69:  YDual XDual         Y-Short         Off
+	 70:  YDual                       X-Short On
+	 71:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1126,   537)  ->  Abs (  1126,   537)
+	  1: Rel (  -121,    69)  ->  Abs (  1005,   606)
+	  2: Rel (   -98,    22)  ->  Abs (   907,   628)
+	  3: Rel (  -104,   -17)  ->  Abs (   803,   611)
+	  4: Rel (  -234,   -75)  ->  Abs (   569,   536)
+	  5: Rel (   -18,   -30)  ->  Abs (   551,   506)
+	  6: Rel (    30,   -13)  ->  Abs (   581,   493)
+	  7: Rel (    48,  -103)  ->  Abs (   629,   390)
+	  8: Rel (     0,   -57)  ->  Abs (   629,   333)
+	  9: Rel (     0,   -85)  ->  Abs (   629,   248)
+	 10: Rel (   -40,  -154)  ->  Abs (   589,    94)
+	 11: Rel (  -153,  -100)  ->  Abs (   436,    -6)
+	 12: Rel (   -20,     0)  ->  Abs (   416,    -6)
+	 13: Rel (   -73,    65)  ->  Abs (   343,    59)
+	 14: Rel (   -93,    56)  ->  Abs (   250,   115)
+	 15: Rel (   -11,    -9)  ->  Abs (   239,   106)
+	 16: Rel (   -33,   -29)  ->  Abs (   206,    77)
+	 17: Rel (   -90,   -77)  ->  Abs (   116,     0)
+	 18: Rel (   -87,     0)  ->  Abs (    29,     0)
+	 19: Rel (   -29,     0)  ->  Abs (     0,     0)
+	 20: Rel (     0,   123)  ->  Abs (     0,   123)
+	 21: Rel (    22,     0)  ->  Abs (    22,   123)
+	 22: Rel (    79,     0)  ->  Abs (   101,   123)
+	 23: Rel (    97,    34)  ->  Abs (   198,   157)
+	 24: Rel (    39,    76)  ->  Abs (   237,   233)
+	 25: Rel (    29,    83)  ->  Abs (   266,   316)
+	 26: Rel (    33,    92)  ->  Abs (   299,   408)
+	 27: Rel (    60,   119)  ->  Abs (   359,   527)
+	 28: Rel (    38,    35)  ->  Abs (   397,   562)
+	 29: Rel (   163,    75)  ->  Abs (   560,   637)
+	 30: Rel (   142,    48)  ->  Abs (   702,   685)
+	 31: Rel (    56,     6)  ->  Abs (   758,   691)
+	 32: Rel (   -38,    27)  ->  Abs (   720,   718)
+	 33: Rel (     0,    55)  ->  Abs (   720,   773)
+	 34: Rel (     0,    70)  ->  Abs (   720,   843)
+	 35: Rel (   114,   179)  ->  Abs (   834,  1022)
+	 36: Rel (    61,    34)  ->  Abs (   895,  1056)
+	 37: Rel (   -30,    17)  ->  Abs (   865,  1073)
+	 38: Rel (   -85,     0)  ->  Abs (   780,  1073)
+	 39: Rel (    21,    86)  ->  Abs (   801,  1159)
+	 40: Rel (    38,    43)  ->  Abs (   839,  1202)
+	 41: Rel (    35,     0)  ->  Abs (   874,  1202)
+	 42: Rel (   103,     1)  ->  Abs (   977,  1203)
+	 43: Rel (   252,  -242)  ->  Abs (  1229,   961)
+	 44: Rel (    -1,  -197)  ->  Abs (  1228,   764)
+	 45: Rel (     0,   -87)  ->  Abs (  1228,   677)
+	 46: Rel (  -231,   288)  ->  Abs (   997,   965)
+	 47: Rel (     0,    50)  ->  Abs (   997,  1015)
+	 48: Rel (   -59,     0)  ->  Abs (   938,  1015)
+	 49: Rel (   -32,     0)  ->  Abs (   906,  1015)
+	 50: Rel (  -108,  -143)  ->  Abs (   798,   872)
+	 51: Rel (     0,   -30)  ->  Abs (   798,   842)
+	 52: Rel (     0,   -43)  ->  Abs (   798,   799)
+	 53: Rel (    65,   -13)  ->  Abs (   863,   786)
+	 54: Rel (    37,    -8)  ->  Abs (   900,   778)
+	 55: Rel (    97,   105)  ->  Abs (   997,   883)
+	 56: Rel (    54,    73)  ->  Abs (  1051,   956)
+	 57: Rel (   -22,  -115)  ->  Abs (  1029,   841)
+	 58: Rel (   -59,   -89)  ->  Abs (   970,   752)
+	 59: Rel (    85,   -25)  ->  Abs (  1055,   727)
+	 60: Rel (    87,   -39)  ->  Abs (  1142,   688)
+	 61: Rel (     7,    25)  ->  Abs (  1149,   713)
+	 62: Rel (     0,    37)  ->  Abs (  1149,   750)
+	 63: Rel (     0,   119)  ->  Abs (  1149,   869)
+	 64: Rel (  -851,  -650)  ->  Abs (   298,   219)
+	 65: Rel (   107,   -56)  ->  Abs (   405,   163)
+	 66: Rel (    85,   -74)  ->  Abs (   490,    89)
+	 67: Rel (    53,    73)  ->  Abs (   543,   162)
+	 68: Rel (     0,   102)  ->  Abs (   543,   264)
+	 69: Rel (     0,   149)  ->  Abs (   543,   413)
+	 70: Rel (   -90,     0)  ->  Abs (   453,   413)
+	 71: Rel (   -69,     0)  ->  Abs (   384,   413)
+
+	Glyph 885: off = 0x0002DAAC, len = 136
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-373
+	  xMax:			1215
+	  yMax:			967
+
+	     0: Flags:		0x0236
+		Glyf Index:	1118
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0037
+		Glyf Index:	1100
+		X WOffset:	342
+		Y WOffset:	-785
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     2: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	0
+		Y WOffset:	-1228
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     2     0    57   224    57     2    57     2    16    56 
+	                             1     0    56    64    56     2    56 
+	00019: PUSHW[1]            -64 
+	00022: NPUSHB      (55):    23    26    52     0    56    16    56     2    56     1 
+	                             0    49    64    49     2    96    49   112    49   208 
+	                            49     3     0    49    32    49    64    49    80    49 
+	                             4    49     1    48    64    17    20    52    32    48 
+	                             1     0    48    79    48    95    48   191    48   223 
+	                            48   240    48     6    48 
+	00079: SVTCA[x-axis] 
+	00080: SRP1       
+	00081: DELTAP1    
+	00082: DELTAP2    
+	00083: CALL       
+	00084: SHC[rp1,zp0] 
+	00085: SVTCA[y-axis] 
+	00086: SRP1       
+	00087: DELTAP1    
+	00088: DELTAP1    
+	00089: DELTAP2    
+	00090: SHC[rp1,zp0] 
+	00091: SVTCA[x-axis] 
+	00092: SRP1       
+	00093: DELTAP1    
+	00094: CALL       
+	00095: DELTAP2    
+	00096: DELTAP3    
+	00097: SHC[rp1,zp0] 
+	00098: SVTCA[y-axis] 
+	00099: SRP1       
+	00100: DELTAP1    
+	00101: SHC[rp1,zp0] 
+
+	Glyph 886: off = 0x0002DB34, len = 88
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-111
+	  xMax:			1215
+	  yMax:			967
+
+	     0: Flags:		0x0236
+		Glyf Index:	1118
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	342
+		Y WOffset:	-785
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (48):     1     0    49    64    49     2    96    49   112    49 
+	                           208    49   240    49     4     0    49    32    49    64 
+	                            49    80    49     4    49     1    48    64    17    20 
+	                            52    32    48     1     0    48    79    48    95    48 
+	                           191    48   223    48   240    48     6    48 
+	00050: SVTCA[x-axis] 
+	00051: SRP1       
+	00052: DELTAP1    
+	00053: DELTAP2    
+	00054: CALL       
+	00055: SHC[rp1,zp0] 
+	00056: SVTCA[y-axis] 
+	00057: SRP1       
+	00058: DELTAP1    
+	00059: DELTAP1    
+	00060: DELTAP2    
+	00061: SHC[rp1,zp0] 
+
+	Glyph 887: off = 0x0002DB8C, len = 116
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-111
+	  xMax:			1215
+	  yMax:			974
+
+	     0: Flags:		0x0236
+		Glyf Index:	1118
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0037
+		Glyf Index:	1021
+		X WOffset:	-292
+		Y WOffset:	-100
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     2: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	342
+		Y WOffset:	-785
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (60):     1    63    49    79    49     2    49     2     0    53 
+	                            64    53     2    96    53   112    53   208    53   240 
+	                            53     4     0    53    32    53    64    53    80    53 
+	                             4    53     2    52    64    17    20    52    32    52 
+	                             1     0    52    79    52    95    52   191    52   223 
+	                            52   240    52     6    52     1    16    48     1    48 
+	00062: SVTCA[x-axis] 
+	00063: SRP1       
+	00064: DELTAP1    
+	00065: SHC[rp1,zp0] 
+	00066: SVTCA[x-axis] 
+	00067: SRP1       
+	00068: DELTAP1    
+	00069: DELTAP2    
+	00070: CALL       
+	00071: SHC[rp1,zp0] 
+	00072: SVTCA[y-axis] 
+	00073: SRP1       
+	00074: DELTAP1    
+	00075: DELTAP1    
+	00076: DELTAP2    
+	00077: SHC[rp1,zp0] 
+	00078: SVTCA[y-axis] 
+	00079: SRP1       
+	00080: DELTAP1    
+	00081: SHC[rp1,zp0] 
+
+	Glyph 888: off = 0x0002DC00, len = 44
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-416
+	  xMax:			1201
+	  yMax:			832
+
+	     0: Flags:		0x0236
+		Glyf Index:	1119
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	328
+		Y WOffset:	-1090
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (11):     1    48    33    95    33   191    33   240    33     4 
+	                            33 
+	00013: SVTCA[x-axis] 
+	00014: SRP1       
+	00015: DELTAP1    
+	00016: SHC[rp1,zp0] 
+
+	Glyph 889: off = 0x0002DC2C, len = 86
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1228
+	  yMax:			1444
+
+	     0: Flags:		0x0236
+		Glyf Index:	870
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1101
+		X WOffset:	234
+		Y WOffset:	354
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (42):     2     1    66    64    42    50    52    31    66     1 
+	                            15    66    79    66     2    15    66    31    66     2 
+	                            66     2     1    16    65     1     0    65     1   224 
+	                            65   240    65     2    48    65    80    65    96    65 
+	                             3    65 
+	00044: SVTCA[x-axis] 
+	00045: SRP1       
+	00046: DELTAP1    
+	00047: DELTAP1    
+	00048: DELTAP2    
+	00049: DELTAP3    
+	00050: SHC[rp1,zp0] 
+	00051: SHC[rp1,zp0] 
+	00052: SVTCA[y-axis] 
+	00053: SRP1       
+	00054: DELTAP1    
+	00055: DELTAP2    
+	00056: DELTAP3    
+	00057: CALL       
+	00058: SHC[rp1,zp0] 
+	00059: SHC[rp1,zp0] 
+
+	Glyph 890: off = 0x0002DC82, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			412
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1579
+
+	     0: Flags:		0x0236
+		Glyf Index:	910
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	753
+		X BOffset:	-64
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     2     1   143    38     1    63    38     1    38     2 
+	                             1     0    40    46     6     6    64 
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+	00022: SHC[rp1,zp0] 
+	00023: SVTCA[y-axis] 
+	00024: SRP1       
+	00025: DELTAP1    
+	00026: DELTAP1    
+	00027: SHC[rp1,zp0] 
+	00028: SHC[rp1,zp0] 
+
+	Glyph 891: off = 0x0002DCB8, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			412
+	  yMin:			59
+	  xMax:			688
+	  yMax:			1579
+
+	     0: Flags:		0x0236
+		Glyf Index:	909
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	753
+		X BOffset:	-64
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (28):     2     1   143    13     1    63    13     1    13     2 
+	                             1    96    14   112    14   223    14     3     0    14 
+	                            32    14    48    14   176    14     4    14 
+	00030: SVTCA[x-axis] 
+	00031: SRP1       
+	00032: DELTAP1    
+	00033: DELTAP1    
+	00034: SHC[rp1,zp0] 
+	00035: SHC[rp1,zp0] 
+	00036: SVTCA[y-axis] 
+	00037: SRP1       
+	00038: DELTAP1    
+	00039: DELTAP1    
+	00040: SHC[rp1,zp0] 
+	00041: SHC[rp1,zp0] 
+
+	Glyph 892: off = 0x0002DCFA, len = 122
+	  numberOfContours:	1
+	  xMin:			605
+	  yMin:			-260
+	  xMax:			943
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  27
+
+	  Length of Instructions:	28
+	00000: PUSHB[6]              6    22     9    19    19    14 
+	00007: PUSHW[1]            947 
+	00010: PUSHB[6]              0     0    48     0     2     0 
+	00017: MDAP[rd]   
+	00018: DELTAP1    
+	00019: MIRP[srp0,md,rd,1] 
+	00020: SHP[rp2,zp1] 
+	00021: MDAP[rd]   
+	00022: ALIGNRP    
+	00023: SVTCA[y-axis] 
+	00024: MDAP[rd]   
+	00025: MDAP[rd]   
+	00026: IUP[y]     
+	00027: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         Off
+	  2:        XDual                 X-Short Off
+	  3:        XDual                 X-Short Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short On
+	 12:                      Y-Short X-Short Off
+	 13:                              X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:        XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short On
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:                              X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   605,   498)  ->  Abs (   605,   498)
+	  1: Rel (     0,   115)  ->  Abs (   605,   613)
+	  2: Rel (    60,   258)  ->  Abs (   665,   871)
+	  3: Rel (   170,   338)  ->  Abs (   835,  1209)
+	  4: Rel (    39,    35)  ->  Abs (   874,  1244)
+	  5: Rel (    12,    11)  ->  Abs (   886,  1255)
+	  6: Rel (    14,     0)  ->  Abs (   900,  1255)
+	  7: Rel (    18,     0)  ->  Abs (   918,  1255)
+	  8: Rel (    25,   -24)  ->  Abs (   943,  1231)
+	  9: Rel (     0,   -17)  ->  Abs (   943,  1214)
+	 10: Rel (     0,   -10)  ->  Abs (   943,  1204)
+	 11: Rel (    -7,   -12)  ->  Abs (   936,  1192)
+	 12: Rel (  -110,  -202)  ->  Abs (   826,   990)
+	 13: Rel (   -94,  -328)  ->  Abs (   732,   662)
+	 14: Rel (     0,  -164)  ->  Abs (   732,   498)
+	 15: Rel (     0,  -165)  ->  Abs (   732,   333)
+	 16: Rel (    94,  -328)  ->  Abs (   826,     5)
+	 17: Rel (   110,  -201)  ->  Abs (   936,  -196)
+	 18: Rel (     7,   -12)  ->  Abs (   943,  -208)
+	 19: Rel (     0,   -10)  ->  Abs (   943,  -218)
+	 20: Rel (     0,   -17)  ->  Abs (   943,  -235)
+	 21: Rel (   -25,   -25)  ->  Abs (   918,  -260)
+	 22: Rel (   -18,     0)  ->  Abs (   900,  -260)
+	 23: Rel (   -14,     0)  ->  Abs (   886,  -260)
+	 24: Rel (   -12,    11)  ->  Abs (   874,  -249)
+	 25: Rel (   -37,    34)  ->  Abs (   837,  -215)
+	 26: Rel (  -168,   330)  ->  Abs (   669,   115)
+	 27: Rel (   -64,   254)  ->  Abs (   605,   369)
+
+	Glyph 893: off = 0x0002DD74, len = 128
+	  numberOfContours:	1
+	  xMin:			301
+	  yMin:			-260
+	  xMax:			639
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  27
+
+	  Length of Instructions:	34
+	00000: NPUSHB      (11):     8     2     8    26     2     6    22     9    19    19 
+	                            14 
+	00013: PUSHW[1]            947 
+	00016: PUSHB[4]             47     0     1     0 
+	00021: MDAP[rd]   
+	00022: DELTAP1    
+	00023: MIRP[srp0,md,rd,1] 
+	00024: SHP[rp2,zp1] 
+	00025: MDAP[rd]   
+	00026: ALIGNRP    
+	00027: SVTCA[y-axis] 
+	00028: MDAP[rd]   
+	00029: MDAP[rd]   
+	00030: IUP[y]     
+	00031: IUP[x]     
+	00032: SVTCA[x-axis] 
+	00033: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                              X-Short Off
+	  3:                              X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:        XDual                 X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:                              X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   639,   497)  ->  Abs (   639,   497)
+	  1: Rel (     0,  -115)  ->  Abs (   639,   382)
+	  2: Rel (   -60,  -257)  ->  Abs (   579,   125)
+	  3: Rel (  -170,  -339)  ->  Abs (   409,  -214)
+	  4: Rel (   -39,   -34)  ->  Abs (   370,  -248)
+	  5: Rel (   -12,   -12)  ->  Abs (   358,  -260)
+	  6: Rel (   -14,     0)  ->  Abs (   344,  -260)
+	  7: Rel (   -18,     0)  ->  Abs (   326,  -260)
+	  8: Rel (   -25,    25)  ->  Abs (   301,  -235)
+	  9: Rel (     0,    17)  ->  Abs (   301,  -218)
+	 10: Rel (     0,    10)  ->  Abs (   301,  -208)
+	 11: Rel (     7,    12)  ->  Abs (   308,  -196)
+	 12: Rel (   110,   201)  ->  Abs (   418,     5)
+	 13: Rel (    94,   328)  ->  Abs (   512,   333)
+	 14: Rel (     0,   164)  ->  Abs (   512,   497)
+	 15: Rel (     0,   165)  ->  Abs (   512,   662)
+	 16: Rel (   -94,   328)  ->  Abs (   418,   990)
+	 17: Rel (  -110,   202)  ->  Abs (   308,  1192)
+	 18: Rel (    -7,    12)  ->  Abs (   301,  1204)
+	 19: Rel (     0,    10)  ->  Abs (   301,  1214)
+	 20: Rel (     0,    17)  ->  Abs (   301,  1231)
+	 21: Rel (    25,    24)  ->  Abs (   326,  1255)
+	 22: Rel (    18,     0)  ->  Abs (   344,  1255)
+	 23: Rel (    14,     0)  ->  Abs (   358,  1255)
+	 24: Rel (    12,   -11)  ->  Abs (   370,  1244)
+	 25: Rel (    37,   -34)  ->  Abs (   407,  1210)
+	 26: Rel (   168,  -330)  ->  Abs (   575,   880)
+	 27: Rel (    64,  -254)  ->  Abs (   639,   626)
+
+	Glyph 894: off = 0x0002DDF4, len = 354
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1171
+	  yMax:			1190
+
+	EndPoints
+	---------
+	  0:  49
+
+	  Length of Instructions:	198
+	00000: NPUSHB      (34):     8    35     9    36     9    44     3   232    35   233 
+	                            36   232    44     3    39     9    38    32    54    32 
+	                            70    32     4    40     3    64     9    14    52     3 
+	                             3    46    33    48 
+	00036: PUSHW[3]            904     7   -64 
+	00043: NPUSHB      (16):    12    16    52     7    64    24    25    52    15     7 
+	                             1     7     7     9     9    31 
+	00061: PUSHW[1]            902 
+	00064: PUSHB[8]             29    13    29    64    25    28    52    29 
+	00073: PUSHW[1]            -64 
+	00076: PUSHB[8]             10    14    52    29    29    26    26    13 
+	00085: PUSHW[1]            903 
+	00088: PUSHB[6]            143    14     1    14    14    21 
+	00095: PUSHW[3]            907    20   858 
+	00102: NPUSHB      (10):    36    35    33    44    46     5    38    40    40    42 
+	00114: PUSHW[1]            896 
+	00117: NPUSHB      (15):    38    38     9    31    29    29    20    26    14    13 
+	                            13     0    21    20     4 
+	00134: SCANTYPE   
+	00135: MDAP[rd]   
+	00136: ALIGNRP    
+	00137: MDAP[rd]   
+	00138: SHP[rp1,zp0] 
+	00139: MDAP[rd]   
+	00140: SHP[rp1,zp0] 
+	00141: SHP[rp1,zp0] 
+	00142: SRP1       
+	00143: SHP[rp1,zp0] 
+	00144: MDAP[rd]   
+	00145: SHP[rp1,zp0] 
+	00146: SHP[rp1,zp0] 
+	00147: IP         
+	00148: MDAP[rd]   
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: RTHG       
+	00151: IP         
+	00152: MDAP[rd]   
+	00153: SRP1       
+	00154: SLOOP      
+	00155: IP         
+	00156: SVTCA[y-axis] 
+	00157: RTG        
+	00158: MIAP[rd+ci] 
+	00159: MIRP[nrp0,md,rd,1] 
+	00160: SHP[rp1,zp0] 
+	00161: MDAP[rd]   
+	00162: DELTAP1    
+	00163: MIRP[nrp0,md,rd,1] 
+	00164: RTHG       
+	00165: IP         
+	00166: MDAP[rd]   
+	00167: SHP[rp2,zp1] 
+	00168: RTG        
+	00169: MDAP[rd]   
+	00170: CALL       
+	00171: CALL       
+	00172: MDAP[rd]   
+	00173: SRP0       
+	00174: MIRP[srp0,nmd,rd,0] 
+	00175: SHP[rp2,zp1] 
+	00176: RTHG       
+	00177: MDAP[rd]   
+	00178: SHP[rp2,zp1] 
+	00179: RTG        
+	00180: MDAP[rd]   
+	00181: DELTAP1    
+	00182: CALL       
+	00183: CALL       
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: IP         
+	00186: IP         
+	00187: SHP[rp1,zp0] 
+	00188: MDAP[rd]   
+	00189: CALL       
+	00190: MDAP[rd]   
+	00191: IUP[y]     
+	00192: IUP[x]     
+	00193: SVTCA[y-axis] 
+	00194: DELTAP1    
+	00195: SVTCA[x-axis] 
+	00196: DELTAP1    
+	00197: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:                      Y-Short X-Short On
+	 15:  YDual                       X-Short Off
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short         On
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short On
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual                               On
+	 23:  YDual XDual                 X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual               Y-Short         Off
+	 29:  YDual                       X-Short On
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual               Y-Short X-Short On
+	 36:  YDual               Y-Short X-Short On
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual               Y-Short X-Short On
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short X-Short On
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short X-Short On
+	 43:                      Y-Short X-Short Off
+	 44:                      Y-Short X-Short On
+	 45:        XDual         Y-Short X-Short Off
+	 46:        XDual         Y-Short X-Short On
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1171,   586)  ->  Abs (  1171,   586)
+	  1: Rel (     0,   -23)  ->  Abs (  1171,   563)
+	  2: Rel (   -33,  -100)  ->  Abs (  1138,   463)
+	  3: Rel (   -12,     0)  ->  Abs (  1126,   463)
+	  4: Rel (    -8,     0)  ->  Abs (  1118,   463)
+	  5: Rel (   -25,    30)  ->  Abs (  1093,   493)
+	  6: Rel (   -70,    87)  ->  Abs (  1023,   580)
+	  7: Rel (   -93,     0)  ->  Abs (   930,   580)
+	  8: Rel (  -171,     0)  ->  Abs (   759,   580)
+	  9: Rel (  -177,  -107)  ->  Abs (   582,   473)
+	 10: Rel (    44,    -7)  ->  Abs (   626,   466)
+	 11: Rel (   210,   -86)  ->  Abs (   836,   380)
+	 12: Rel (   206,   -84)  ->  Abs (  1042,   296)
+	 13: Rel (   103,   -11)  ->  Abs (  1145,   285)
+	 14: Rel (   -39,  -107)  ->  Abs (  1106,   178)
+	 15: Rel (  -116,     0)  ->  Abs (   990,   178)
+	 16: Rel (  -241,   -51)  ->  Abs (   749,   127)
+	 17: Rel (  -268,  -102)  ->  Abs (   481,    25)
+	 18: Rel (   -66,   -25)  ->  Abs (   415,     0)
+	 19: Rel (  -218,     0)  ->  Abs (   197,     0)
+	 20: Rel (  -197,     0)  ->  Abs (     0,     0)
+	 21: Rel (     0,   123)  ->  Abs (     0,   123)
+	 22: Rel (   354,     0)  ->  Abs (   354,   123)
+	 23: Rel (    73,     0)  ->  Abs (   427,   123)
+	 24: Rel (   174,    53)  ->  Abs (   601,   176)
+	 25: Rel (   184,    57)  ->  Abs (   785,   233)
+	 26: Rel (    69,     5)  ->  Abs (   854,   238)
+	 27: Rel (  -106,    50)  ->  Abs (   748,   288)
+	 28: Rel (  -321,   103)  ->  Abs (   427,   391)
+	 29: Rel (   -54,     0)  ->  Abs (   373,   391)
+	 30: Rel (    31,    45)  ->  Abs (   404,   436)
+	 31: Rel (    24,    56)  ->  Abs (   428,   492)
+	 32: Rel (   222,   129)  ->  Abs (   650,   621)
+	 33: Rel (   174,    51)  ->  Abs (   824,   672)
+	 34: Rel (   -20,    56)  ->  Abs (   804,   728)
+	 35: Rel (   -10,   109)  ->  Abs (   794,   837)
+	 36: Rel (   -13,   127)  ->  Abs (   781,   964)
+	 37: Rel (    -4,    38)  ->  Abs (   777,  1002)
+	 38: Rel (   -25,    67)  ->  Abs (   752,  1069)
+	 39: Rel (    37,    62)  ->  Abs (   789,  1131)
+	 40: Rel (    53,    59)  ->  Abs (   842,  1190)
+	 41: Rel (    28,   -58)  ->  Abs (   870,  1132)
+	 42: Rel (    58,   -71)  ->  Abs (   928,  1061)
+	 43: Rel (   -35,   -56)  ->  Abs (   893,  1005)
+	 44: Rel (   -18,   -39)  ->  Abs (   875,   966)
+	 45: Rel (     3,  -219)  ->  Abs (   878,   747)
+	 46: Rel (    26,   -59)  ->  Abs (   904,   688)
+	 47: Rel (    24,     4)  ->  Abs (   928,   692)
+	 48: Rel (    37,     0)  ->  Abs (   965,   692)
+	 49: Rel (   146,     0)  ->  Abs (  1111,   692)
+
+	Glyph 895: off = 0x0002DF56, len = 620
+	  numberOfContours:	3
+	  xMin:			20
+	  yMin:			0
+	  xMax:			1177
+	  yMax:			1316
+
+	EndPoints
+	---------
+	  0:  31
+	  1:  84
+	  2:  92
+
+	  Length of Instructions:	351
+	00000: NPUSHB      (52):    75    74    75    76     2    58    76    75    61    75 
+	                            65     3    41    76    57    61    58    74     3    25 
+	                            74    41    61    41    74     3    10    61    10    74 
+	                            24    61     3   137    61     1   138    47     1    48 
+	                            16    17    17    25     0     6     1     6     6    25 
+	                            25    21 
+	00054: PUSHW[1]            -64 
+	00057: PUSHB[4]             30    32    52    21 
+	00062: PUSHW[4]            902    30    13   900 
+	00071: NPUSHB      (17):     2    30    30     2    64     9    13    52     2     2 
+	                            65    85    44    40    91    41    48 
+	00090: PUSHW[1]            900 
+	00093: NPUSHB      (15):    13    86    31    86    47    86     3     0    86    16 
+	                            86     2    86    86    91 
+	00110: PUSHW[1]            901 
+	00113: PUSHB[5]             41    41    35    51    57 
+	00119: PUSHW[5]            907    35   858    69   907 
+	00130: NPUSHB      (55):    82    76    65     0     0    27    25    25    27     6 
+	                             6    17    17     4    31    27     1    27    64     9 
+	                            17    52    27    64    24    31    52    15    27    31 
+	                            27   255    27     3    27    27     0     4     1     4 
+	                             4    51    76    74    71    65    67    61    59    79 
+	                            64    36    38    52    79 
+	00187: PUSHW[1]            885 
+	00190: NPUSHB      (18):     0    71    64    71    80    71     3     0    71     1 
+	                            71    71    67    64    36    38    52    67 
+	00210: PUSHW[1]            885 
+	00213: NPUSHB       (9):    59    59    53    48    86    85    40     4    51 
+	00224: PUSHW[1]            886 
+	00227: NPUSHB      (10):     0    50    16    50    96    50     3    50    50    88 
+	00239: PUSHW[1]            891 
+	00242: PUSHB[2]             44     4 
+	00245: SCANTYPE   
+	00246: MDAP[rd]   
+	00247: MIRP[nrp0,md,rd,1] 
+	00248: SHP[rp1,zp0] 
+	00249: MDAP[rd]   
+	00250: DELTAP1    
+	00251: RTHG       
+	00252: MIRP[nrp0,nmd,rd,0] 
+	00253: SLOOP      
+	00254: IP         
+	00255: SHP[rp2,zp1] 
+	00256: SHP[rp2,zp1] 
+	00257: RTG        
+	00258: MDAP[rd]   
+	00259: MIRP[srp0,md,rd,1] 
+	00260: CALL       
+	00261: SHP[rp2,zp1] 
+	00262: MDAP[rd]   
+	00263: DELTAP1    
+	00264: DELTAP1    
+	00265: MIRP[nrp0,md,rd,1] 
+	00266: CALL       
+	00267: SRP1       
+	00268: SHP[rp1,zp0] 
+	00269: SRP1       
+	00270: SHP[rp1,zp0] 
+	00271: SRP1       
+	00272: SHP[rp1,zp0] 
+	00273: SHP[rp2,zp1] 
+	00274: SRP1       
+	00275: SHP[rp1,zp0] 
+	00276: MDAP[rd]   
+	00277: DELTAP1    
+	00278: SHP[rp1,zp0] 
+	00279: MDAP[rd]   
+	00280: DELTAP1    
+	00281: CALL       
+	00282: CALL       
+	00283: DELTAP3    
+	00284: RTHG       
+	00285: SRP2       
+	00286: IP         
+	00287: MDAP[rd]   
+	00288: SHP[rp2,zp1] 
+	00289: MDAP[rd]   
+	00290: SRP1       
+	00291: SHP[rp1,zp0] 
+	00292: MDAP[rd]   
+	00293: SRP1       
+	00294: IP         
+	00295: MDAP[rd]   
+	00296: SVTCA[y-axis] 
+	00297: RTG        
+	00298: MDAP[rd]   
+	00299: MDAP[rd]   
+	00300: MDAP[rd]   
+	00301: MIRP[nrp0,md,rd,1] 
+	00302: MIAP[rd+ci] 
+	00303: MIRP[nrp0,md,rd,1] 
+	00304: MDAP[rd]   
+	00305: SRP2       
+	00306: IP         
+	00307: MDAP[rd]   
+	00308: MIRP[srp0,md,rd,1] 
+	00309: SHP[rp2,zp1] 
+	00310: MDAP[rd]   
+	00311: DELTAP1    
+	00312: DELTAP2    
+	00313: MIRP[nrp0,md,rd,1] 
+	00314: SRP1       
+	00315: SRP2       
+	00316: IP         
+	00317: IP         
+	00318: SHP[rp2,zp1] 
+	00319: SRP1       
+	00320: SHP[rp1,zp0] 
+	00321: MDAP[rd]   
+	00322: CALL       
+	00323: SHP[rp1,zp0] 
+	00324: MDAP[rd]   
+	00325: SRP0       
+	00326: MIRP[nrp0,md,rd,1] 
+	00327: SRP0       
+	00328: MIRP[srp0,md,rd,1] 
+	00329: CALL       
+	00330: SHP[rp2,zp1] 
+	00331: MDAP[rd]   
+	00332: SHP[rp1,zp0] 
+	00333: MDAP[rd]   
+	00334: DELTAP1    
+	00335: SRP2       
+	00336: IP         
+	00337: MDAP[rd]   
+	00338: SVTCA[x-axis] 
+	00339: SHPIX      
+	00340: IUP[y]     
+	00341: IUP[x]     
+	00342: SVTCA[y-axis] 
+	00343: DELTAP1    
+	00344: SVTCA[x-axis] 
+	00345: DELTAP2    
+	00346: DELTAP1    
+	00347: DELTAP1    
+	00348: DELTAP1    
+	00349: DELTAP1    
+	00350: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:                      Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:                      Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:        XDual                 X-Short On
+	 33:                      Y-Short X-Short Off
+	 34:                      Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual       Rep-  2 Y-Short X-Short Off
+	 40:  YDual               Y-Short X-Short On
+	 41:                      Y-Short X-Short On
+	 42:  YDual               Y-Short         Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual               Y-Short         On
+	 49:  YDual               Y-Short X-Short Off
+	 50:  YDual               Y-Short X-Short On
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual                 X-Short On
+	 54:        XDual Rep-  2 Y-Short X-Short Off
+	 57:  YDual XDual                 X-Short On
+	 58:  YDual XDual                 X-Short Off
+	 59:  YDual XDual         Y-Short         On
+	 60:  YDual XDual         Y-Short         Off
+	 61:                              X-Short On
+	 62:  YDual XDual         Y-Short X-Short Off
+	 63:  YDual XDual         Y-Short X-Short On
+	 64:  YDual XDual         Y-Short X-Short Off
+	 65:  YDual XDual         Y-Short X-Short On
+	 66:        XDual                 X-Short Off
+	 67:        XDual                 X-Short On
+	 68:        XDual         Y-Short X-Short Off
+	 69:  YDual XDual                 X-Short On
+	 70:  YDual XDual                 X-Short Off
+	 71:  YDual XDual         Y-Short         On
+	 72:  YDual XDual         Y-Short         Off
+	 73:  YDual               Y-Short X-Short Off
+	 74:                              X-Short On
+	 75:  YDual XDual         Y-Short X-Short Off
+	 76:  YDual XDual         Y-Short X-Short On
+	 77:        XDual                 X-Short On
+	 78:        XDual         Y-Short X-Short Off
+	 79:        XDual         Y-Short         On
+	 80:        XDual         Y-Short         Off
+	 81:                      Y-Short X-Short Off
+	 82:  YDual                       X-Short On
+	 83:  YDual                       X-Short Off
+	 84:  YDual               Y-Short X-Short Off
+	 85:                                      On
+	 86:  YDual               Y-Short X-Short On
+	 87:                      Y-Short         Off
+	 88:        XDual         Y-Short         On
+	 89:        XDual         Y-Short         Off
+	 90:        XDual         Y-Short X-Short Off
+	 91:  YDual XDual                 X-Short On
+	 92:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   660,  1117)  ->  Abs (   660,  1117)
+	  1: Rel (   -40,   -86)  ->  Abs (   620,  1031)
+	  2: Rel (   -52,     0)  ->  Abs (   568,  1031)
+	  3: Rel (   -68,     0)  ->  Abs (   500,  1031)
+	  4: Rel (     0,    92)  ->  Abs (   500,  1123)
+	  5: Rel (     0,    86)  ->  Abs (   500,  1209)
+	  6: Rel (    31,     0)  ->  Abs (   531,  1209)
+	  7: Rel (    12,     0)  ->  Abs (   543,  1209)
+	  8: Rel (     0,   -16)  ->  Abs (   543,  1193)
+	  9: Rel (    -1,   -18)  ->  Abs (   542,  1175)
+	 10: Rel (    -2,   -13)  ->  Abs (   540,  1162)
+	 11: Rel (     0,    -7)  ->  Abs (   540,  1155)
+	 12: Rel (     0,   -28)  ->  Abs (   540,  1127)
+	 13: Rel (    28,     0)  ->  Abs (   568,  1127)
+	 14: Rel (    41,     0)  ->  Abs (   609,  1127)
+	 15: Rel (    17,    67)  ->  Abs (   626,  1194)
+	 16: Rel (    17,    67)  ->  Abs (   643,  1261)
+	 17: Rel (     2,     0)  ->  Abs (   645,  1261)
+	 18: Rel (    15,     0)  ->  Abs (   660,  1261)
+	 19: Rel (     5,   -37)  ->  Abs (   665,  1224)
+	 20: Rel (     5,   -37)  ->  Abs (   670,  1187)
+	 21: Rel (    35,     0)  ->  Abs (   705,  1187)
+	 22: Rel (    32,     0)  ->  Abs (   737,  1187)
+	 23: Rel (     7,    64)  ->  Abs (   744,  1251)
+	 24: Rel (     7,    65)  ->  Abs (   751,  1316)
+	 25: Rel (    11,     0)  ->  Abs (   762,  1316)
+	 26: Rel (    31,     0)  ->  Abs (   793,  1316)
+	 27: Rel (     0,  -109)  ->  Abs (   793,  1207)
+	 28: Rel (     0,   -51)  ->  Abs (   793,  1156)
+	 29: Rel (   -54,   -74)  ->  Abs (   739,  1082)
+	 30: Rel (   -34,     0)  ->  Abs (   705,  1082)
+	 31: Rel (   -30,     0)  ->  Abs (   675,  1082)
+	 32: Rel (   148,  -990)  ->  Abs (   823,    92)
+	 33: Rel (   -24,   -49)  ->  Abs (   799,    43)
+	 34: Rel (   -66,   -43)  ->  Abs (   733,     0)
+	 35: Rel (   -93,     0)  ->  Abs (   640,     0)
+	 36: Rel (   -26,     0)  ->  Abs (   614,     0)
+	 37: Rel (  -103,    22)  ->  Abs (   511,    22)
+	 38: Rel (   -39,    26)  ->  Abs (   472,    48)
+	 39: Rel (   -26,   115)  ->  Abs (   446,   163)
+	 40: Rel (   -12,   116)  ->  Abs (   434,   279)
+	 41: Rel (   -90,   -76)  ->  Abs (   344,   203)
+	 42: Rel (  -258,    17)  ->  Abs (    86,   220)
+	 43: Rel (   -66,    24)  ->  Abs (    20,   244)
+	 44: Rel (     0,    20)  ->  Abs (    20,   264)
+	 45: Rel (     0,    48)  ->  Abs (    20,   312)
+	 46: Rel (    62,   122)  ->  Abs (    82,   434)
+	 47: Rel (    71,    55)  ->  Abs (   153,   489)
+	 48: Rel (   264,    84)  ->  Abs (   417,   573)
+	 49: Rel (    -7,    93)  ->  Abs (   410,   666)
+	 50: Rel (   -25,    45)  ->  Abs (   385,   711)
+	 51: Rel (    86,   114)  ->  Abs (   471,   825)
+	 52: Rel (    18,  -163)  ->  Abs (   489,   662)
+	 53: Rel (    12,  -282)  ->  Abs (   501,   380)
+	 54: Rel (     8,  -157)  ->  Abs (   509,   223)
+	 55: Rel (    16,   -79)  ->  Abs (   525,   144)
+	 56: Rel (    84,   -21)  ->  Abs (   609,   123)
+	 57: Rel (    48,     0)  ->  Abs (   657,   123)
+	 58: Rel (   119,     0)  ->  Abs (   776,   123)
+	 59: Rel (     0,    67)  ->  Abs (   776,   190)
+	 60: Rel (     0,   217)  ->  Abs (   776,   407)
+	 61: Rel (  -119,   408)  ->  Abs (   657,   815)
+	 62: Rel (    16,    16)  ->  Abs (   673,   831)
+	 63: Rel (    27,    59)  ->  Abs (   700,   890)
+	 64: Rel (    27,    58)  ->  Abs (   727,   948)
+	 65: Rel (    10,    10)  ->  Abs (   737,   958)
+	 66: Rel (    82,  -453)  ->  Abs (   819,   505)
+	 67: Rel (    37,  -310)  ->  Abs (   856,   195)
+	 68: Rel (    13,   -69)  ->  Abs (   869,   126)
+	 69: Rel (   128,     0)  ->  Abs (   997,   126)
+	 70: Rel (   100,     0)  ->  Abs (  1097,   126)
+	 71: Rel (     0,    70)  ->  Abs (  1097,   196)
+	 72: Rel (     0,    62)  ->  Abs (  1097,   258)
+	 73: Rel (   -25,   225)  ->  Abs (  1072,   483)
+	 74: Rel (  -104,   391)  ->  Abs (   968,   874)
+	 75: Rel (    33,    68)  ->  Abs (  1001,   942)
+	 76: Rel (    47,    78)  ->  Abs (  1048,  1020)
+	 77: Rel (   117,  -727)  ->  Abs (  1165,   293)
+	 78: Rel (    12,   -77)  ->  Abs (  1177,   216)
+	 79: Rel (     0,   -55)  ->  Abs (  1177,   161)
+	 80: Rel (     0,   -90)  ->  Abs (  1177,    71)
+	 81: Rel (   -73,   -71)  ->  Abs (  1104,     0)
+	 82: Rel (   -89,     0)  ->  Abs (  1015,     0)
+	 83: Rel (   -60,     0)  ->  Abs (   955,     0)
+	 84: Rel (  -115,    55)  ->  Abs (   840,    55)
+	 85: Rel (  -402,   275)  ->  Abs (   438,   330)
+	 86: Rel (    -8,   149)  ->  Abs (   430,   479)
+	 87: Rel (  -291,   -71)  ->  Abs (   139,   408)
+	 88: Rel (     0,   -73)  ->  Abs (   139,   335)
+	 89: Rel (     0,   -13)  ->  Abs (   139,   322)
+	 90: Rel (   184,   -21)  ->  Abs (   323,   301)
+	 91: Rel (    23,     0)  ->  Abs (   346,   301)
+	 92: Rel (    36,     0)  ->  Abs (   382,   301)
+
+	Glyph 896: off = 0x0002E1C2, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			513
+	  yMin:			135
+	  xMax:			962
+	  yMax:			678
+
+	     0: Flags:		0x0216
+		Glyf Index:	751
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 897: off = 0x0002E1D2, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			266
+	  yMin:			59
+	  xMax:			888
+	  yMax:			1434
+
+	     0: Flags:		0x0236
+		Glyf Index:	909
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	777
+		X BOffset:	-3
+		Y BOffset:	-48
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (22):     1    24    64    24    33    52   223    24     1    31 
+	                            24     1    24     1   159    24   160    24   176    24 
+	                             3    24 
+	00024: SVTCA[x-axis] 
+	00025: SRP1       
+	00026: DELTAP1    
+	00027: SHC[rp1,zp0] 
+	00028: SVTCA[y-axis] 
+	00029: SRP1       
+	00030: DELTAP1    
+	00031: DELTAP2    
+	00032: CALL       
+	00033: SHC[rp1,zp0] 
+
+	Glyph 898: off = 0x0002E20C, len = 72
+	  numberOfContours:	-1  (Composite)
+	  xMin:			203
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1425
+
+	     0: Flags:		0x0236
+		Glyf Index:	910
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	777
+		X BOffset:	-66
+		Y BOffset:	-57
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (34):     1    15    38   143    38     2   207    38     1    31 
+	                            38   175    38     2    38     1    15    40   143    40 
+	                           159    40     3    64    40   143    40     2   127    40 
+	                           159    40     2    40 
+	00036: SVTCA[x-axis] 
+	00037: SRP1       
+	00038: DELTAP1    
+	00039: DELTAP1    
+	00040: DELTAP2    
+	00041: SHC[rp1,zp0] 
+	00042: SVTCA[y-axis] 
+	00043: SRP1       
+	00044: DELTAP1    
+	00045: DELTAP1    
+	00046: DELTAP2    
+	00047: SHC[rp1,zp0] 
+
+	Glyph 899: off = 0x0002E254, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			407
+	  yMin:			59
+	  xMax:			681
+	  yMax:			1603
+
+	     0: Flags:		0x0236
+		Glyf Index:	909
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	775
+		X BOffset:	-58
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     1   128    12   207    12   239    12     3    32    12 
+	                           159    12   175    12     3    12 
+	00018: SVTCA[x-axis] 
+	00019: SRP1       
+	00020: DELTAP1    
+	00021: DELTAP1    
+	00022: SHC[rp1,zp0] 
+
+	Glyph 900: off = 0x0002E284, len = 44
+	  numberOfContours:	-1  (Composite)
+	  xMin:			407
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1603
+
+	     0: Flags:		0x0236
+		Glyf Index:	910
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	775
+		X BOffset:	-58
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1   239    27     1    95    27   128    27   159    27 
+	                             3    27 
+	00014: SVTCA[x-axis] 
+	00015: SRP1       
+	00016: DELTAP1    
+	00017: DELTAP1    
+	00018: SHC[rp1,zp0] 
+
+	Glyph 901: off = 0x0002E2B0, len = 70
+	  numberOfContours:	-1  (Composite)
+	  xMin:			196
+	  yMin:			-410
+	  xMax:			932
+	  yMax:			1050
+
+	     0: Flags:		0x0236
+		Glyf Index:	1005
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	775
+		X WOffset:	65
+		Y WOffset:	-553
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (31):     2    38    64    25    28    52    15    38     1    47 
+	                            38    79    38   143    38   255    38     4    38     2 
+	                           176    38     1    32    38    48    38   112    38     3 
+	                            38 
+	00033: SVTCA[x-axis] 
+	00034: SRP1       
+	00035: DELTAP1    
+	00036: DELTAP1    
+	00037: SHC[rp1,zp0] 
+	00038: SVTCA[y-axis] 
+	00039: SRP1       
+	00040: DELTAP1    
+	00041: DELTAP2    
+	00042: CALL       
+	00043: SHC[rp1,zp0] 
+
+	Glyph 902: off = 0x0002E2F6, len = 70
+	  numberOfContours:	-1  (Composite)
+	  xMin:			192
+	  yMin:			-410
+	  xMax:			1229
+	  yMax:			1050
+
+	     0: Flags:		0x0236
+		Glyf Index:	1006
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	775
+		X WOffset:	65
+		Y WOffset:	-553
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (31):     2    45    64    25    28    52    15    45     1    47 
+	                            45    79    45   143    45   255    45     4    45     2 
+	                           176    45     1    32    45    48    45   112    45     3 
+	                            45 
+	00033: SVTCA[x-axis] 
+	00034: SRP1       
+	00035: DELTAP1    
+	00036: DELTAP1    
+	00037: SHC[rp1,zp0] 
+	00038: SVTCA[y-axis] 
+	00039: SRP1       
+	00040: DELTAP1    
+	00041: DELTAP2    
+	00042: CALL       
+	00043: SHC[rp1,zp0] 
+
+	Glyph 903: off = 0x0002E33C, len = 74
+	  numberOfContours:	-1  (Composite)
+	  xMin:			444
+	  yMin:			-483
+	  xMax:			718
+	  yMax:			1161
+
+	     0: Flags:		0x0236
+		Glyf Index:	909
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	775
+		X WOffset:	-21
+		Y WOffset:	-1713
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1   112    20   128    20     2    20 
+	00008: PUSHW[1]            -64 
+	00011: PUSHB[4]             11    14    52    20 
+	00016: PUSHW[1]           -128 
+	00019: NPUSHB      (17):    10    53    20     1     0    20    47    20    63    20 
+	                             3     0    20    20     4    10    64 
+	00038: SVTCA[x-axis] 
+	00039: CALL       
+	00040: DELTAP1    
+	00041: SHC[rp1,zp0] 
+	00042: SVTCA[y-axis] 
+	00043: SRP1       
+	00044: CALL       
+	00045: CALL       
+	00046: DELTAP1    
+	00047: SHC[rp1,zp0] 
+
+	Glyph 904: off = 0x0002E386, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			504
+	  yMin:			-535
+	  xMax:			1229
+	  yMax:			1151
+
+	     0: Flags:		0x0236
+		Glyf Index:	910
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	775
+		X WOffset:	47
+		Y WOffset:	-1765
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1    35 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (19):    11    14    52    16    35   160    35     2    35     1 
+	                           175    27     1    95    27   159    27     2    27 
+	00027: SVTCA[x-axis] 
+	00028: SRP1       
+	00029: DELTAP1    
+	00030: DELTAP1    
+	00031: SHC[rp1,zp0] 
+	00032: SVTCA[y-axis] 
+	00033: SRP1       
+	00034: DELTAP1    
+	00035: CALL       
+	00036: SHC[rp1,zp0] 
+
+	Glyph 905: off = 0x0002E3C6, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			170
+	  yMin:			-244
+	  xMax:			1071
+	  yMax:			1023
+
+	     0: Flags:		0x0236
+		Glyf Index:	821
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	775
+		X WOffset:	-78
+		Y WOffset:	-580
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     1    44     1    64    44     1     0    44    32    44 
+	                            48    44     3    44 
+	00016: SVTCA[x-axis] 
+	00017: SRP1       
+	00018: DELTAP1    
+	00019: DELTAP1    
+	00020: SHC[rp1,zp0] 
+	00021: SVTCA[y-axis] 
+	00022: SRP1       
+	00023: SHC[rp1,zp0] 
+
+	Glyph 906: off = 0x0002E3F8, len = 32
+	  numberOfContours:	-1  (Composite)
+	  xMin:			112
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			686
+
+	     0: Flags:		0x0236
+		Glyf Index:	822
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	775
+		X WOffset:	8
+		Y WOffset:	-917
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1    40 
+	00003: SVTCA[y-axis] 
+	00004: SRP1       
+	00005: SHC[rp1,zp0] 
+
+	Glyph 907: off = 0x0002E418, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1187
+	  yMax:			1132
+
+	     0: Flags:		0x0236
+		Glyf Index:	1106
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	775
+		X WOffset:	364
+		Y WOffset:	-471
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     1    47    22     1    22     1   176    19     1     0 
+	                            19    32    19   128    19     3    19 
+	00019: SVTCA[x-axis] 
+	00020: SRP1       
+	00021: DELTAP1    
+	00022: DELTAP1    
+	00023: SHC[rp1,zp0] 
+	00024: SVTCA[y-axis] 
+	00025: SRP1       
+	00026: DELTAP1    
+	00027: SHC[rp1,zp0] 
+
+	Glyph 908: off = 0x0002E44E, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1129
+
+	     0: Flags:		0x0236
+		Glyf Index:	1107
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	775
+		X WOffset:	66
+		Y WOffset:	-474
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (27):     1    31    32     1   143    32   191    32   207    32 
+	                           255    32     4    47    32     1    32     1   176    29 
+	                             1   112    29   128    29     2    29 
+	00029: SVTCA[x-axis] 
+	00030: SRP1       
+	00031: DELTAP1    
+	00032: DELTAP1    
+	00033: SHC[rp1,zp0] 
+	00034: SVTCA[y-axis] 
+	00035: SRP1       
+	00036: DELTAP1    
+	00037: DELTAP1    
+	00038: DELTAP2    
+	00039: SHC[rp1,zp0] 
+
+	Glyph 909: off = 0x0002E490, len = 116
+	  numberOfContours:	1
+	  xMin:			512
+	  yMin:			59
+	  xMax:			626
+	  yMax:			1161
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	66
+	00000: PUSHB[5]              0    96     5     1     5 
+	00006: PUSHW[1]            929 
+	00009: NPUSHB      (20):     0     0     4     5     5     3     2     1    11     9 
+	                             8     7     6     8    10    64    25    27    52    10 
+	00031: PUSHW[1]            892 
+	00034: PUSHB[7]             79     4   207     4     2     4     5 
+	00042: PUSHW[1]            340 
+	00045: SCANCTRL   
+	00046: SCANTYPE   
+	00047: MDAP[rd]   
+	00048: DELTAP1    
+	00049: MIRP[nrp0,md,rd,1] 
+	00050: CALL       
+	00051: SLOOP      
+	00052: IP         
+	00053: RTHG       
+	00054: IP         
+	00055: MDAP[rd]   
+	00056: SRP1       
+	00057: IP         
+	00058: MDAP[rd]   
+	00059: SVTCA[y-axis] 
+	00060: RTG        
+	00061: MIAP[rd+ci] 
+	00062: DELTAP1    
+	00063: MDAP[rd]   
+	00064: IUP[y]     
+	00065: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual         Y-Short         Off
+	  2:                              X-Short On
+	  3:                              X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:                      Y-Short X-Short On
+	  7:        XDual         Y-Short         Off
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual                         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   552,    59)  ->  Abs (   552,    59)
+	  1: Rel (     0,   240)  ->  Abs (   552,   299)
+	  2: Rel (   -20,   273)  ->  Abs (   532,   572)
+	  3: Rel (   -20,   287)  ->  Abs (   512,   859)
+	  4: Rel (     0,   136)  ->  Abs (   512,   995)
+	  5: Rel (   104,   166)  ->  Abs (   616,  1161)
+	  6: Rel (    -3,  -155)  ->  Abs (   613,  1006)
+	  7: Rel (     0,  -167)  ->  Abs (   613,   839)
+	  8: Rel (     5,  -139)  ->  Abs (   618,   700)
+	  9: Rel (     8,  -218)  ->  Abs (   626,   482)
+	 10: Rel (     0,   -88)  ->  Abs (   626,   394)
+	 11: Rel (     0,  -293)  ->  Abs (   626,   101)
+
+	Glyph 910: off = 0x0002E504, len = 150
+	  numberOfContours:	1
+	  xMin:			504
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1151
+
+	EndPoints
+	---------
+	  0:  26
+
+	  Length of Instructions:	63
+	00000: PUSHB[2]             25    26 
+	00003: PUSHW[7]            907     1     0   858    12    13   930 
+	00018: NPUSHB      (10):     4    64     9    20    52    12     6    13    13    16 
+	00030: PUSHW[1]            887 
+	00033: PUSHB[8]             16     6   192     6     2     6     0    26 
+	00042: MDAP[rd]   
+	00043: ALIGNRP    
+	00044: MDAP[rd]   
+	00045: DELTAP1    
+	00046: MIRP[nrp0,md,rd,1] 
+	00047: RTHG       
+	00048: IP         
+	00049: MDAP[rd]   
+	00050: SRP1       
+	00051: SHP[rp1,zp0] 
+	00052: CALL       
+	00053: SVTCA[y-axis] 
+	00054: RTG        
+	00055: MIAP[rd+ci] 
+	00056: SHP[rp1,zp0] 
+	00057: MIAP[rd+ci] 
+	00058: ALIGNRP    
+	00059: MIRP[srp0,md,rd,1] 
+	00060: ALIGNRP    
+	00061: IUP[y]     
+	00062: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual       Rep-  2 Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:        XDual                         Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual                         On
+	 16:        XDual         Y-Short         On
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,     0)  ->  Abs (  1229,     0)
+	  1: Rel (  -402,     0)  ->  Abs (   827,     0)
+	  2: Rel (   -86,     0)  ->  Abs (   741,     0)
+	  3: Rel (  -103,    12)  ->  Abs (   638,    12)
+	  4: Rel (   -48,    22)  ->  Abs (   590,    34)
+	  5: Rel (   -50,   121)  ->  Abs (   540,   155)
+	  6: Rel (     0,    99)  ->  Abs (   540,   254)
+	  7: Rel (     0,    70)  ->  Abs (   540,   324)
+	  8: Rel (     5,   130)  ->  Abs (   545,   454)
+	  9: Rel (     5,   130)  ->  Abs (   550,   584)
+	 10: Rel (     0,    77)  ->  Abs (   550,   661)
+	 11: Rel (     0,   263)  ->  Abs (   550,   924)
+	 12: Rel (   -46,   120)  ->  Abs (   504,  1044)
+	 13: Rel (    82,   107)  ->  Abs (   586,  1151)
+	 14: Rel (    42,  -120)  ->  Abs (   628,  1031)
+	 15: Rel (     0,  -260)  ->  Abs (   628,   771)
+	 16: Rel (     0,    -2)  ->  Abs (   628,   769)
+	 17: Rel (    -1,   -58)  ->  Abs (   627,   711)
+	 18: Rel (    -2,  -115)  ->  Abs (   625,   596)
+	 19: Rel (    -1,   -30)  ->  Abs (   624,   566)
+	 20: Rel (    -5,  -108)  ->  Abs (   619,   458)
+	 21: Rel (    -5,   -98)  ->  Abs (   614,   360)
+	 22: Rel (     0,   -53)  ->  Abs (   614,   307)
+	 23: Rel (     0,   -86)  ->  Abs (   614,   221)
+	 24: Rel (    46,   -98)  ->  Abs (   660,   123)
+	 25: Rel (    69,     0)  ->  Abs (   729,   123)
+	 26: Rel (   500,     0)  ->  Abs (  1229,   123)
+
+	Glyph 911: off = 0x0002E59A, len = 24
+	  numberOfContours:	-1  (Composite)
+	  xMin:			37
+	  yMin:			-431
+	  xMax:			1184
+	  yMax:			682
+
+	     0: Flags:		0x0236
+		Glyf Index:	1104
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0017
+		Glyf Index:	1021
+		X WOffset:	18
+		Y WOffset:	-1286
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 912: off = 0x0002E5B2, len = 24
+	  numberOfContours:	-1  (Composite)
+	  xMin:			37
+	  yMin:			-452
+	  xMax:			1229
+	  yMax:			671
+
+	     0: Flags:		0x0236
+		Glyf Index:	1105
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0017
+		Glyf Index:	1021
+		X WOffset:	-126
+		Y WOffset:	-1307
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 913: off = 0x0002E5CA, len = 24
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-409
+	  xMax:			1187
+	  yMax:			682
+
+	     0: Flags:		0x0236
+		Glyf Index:	1106
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0017
+		Glyf Index:	1021
+		X WOffset:	313
+		Y WOffset:	-1264
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 914: off = 0x0002E5E2, len = 24
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-445
+	  xMax:			1229
+	  yMax:			673
+
+	     0: Flags:		0x0236
+		Glyf Index:	1107
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0017
+		Glyf Index:	1021
+		X WOffset:	129
+		Y WOffset:	-1300
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 915: off = 0x0002E5FA, len = 78
+	  numberOfContours:	-1  (Composite)
+	  xMin:			456
+	  yMin:			-9
+	  xMax:			930
+	  yMax:			1079
+
+	     0: Flags:		0x0236
+		Glyf Index:	776
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	12
+		Y WOffset:	177
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (39):     2    31    30     1    15    30    31    30    63    30 
+	                           208    30     4    15    30    31    30    63    30   143 
+	                            30     4    30     2   239    29     1     0    29    32 
+	                            29   143    29   175    29   191    29     5    29 
+	00041: SVTCA[x-axis] 
+	00042: SRP1       
+	00043: DELTAP1    
+	00044: DELTAP1    
+	00045: SHC[rp1,zp0] 
+	00046: SVTCA[y-axis] 
+	00047: SRP1       
+	00048: DELTAP1    
+	00049: DELTAP2    
+	00050: DELTAP3    
+	00051: SHC[rp1,zp0] 
+
+	Glyph 916: off = 0x0002E648, len = 74
+	  numberOfContours:	-1  (Composite)
+	  xMin:			388
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1198
+
+	     0: Flags:		0x0236
+		Glyf Index:	1002
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	88
+		Y WOffset:	296
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (34):     2    31    35     1   255    35     1    15    35    31 
+	                            35   239    35     3    35     2    34    64    13    22 
+	                            52    31    34    63    34    79    34     3    31    34 
+	                           144    34     2    34 
+	00036: SVTCA[x-axis] 
+	00037: SRP1       
+	00038: DELTAP1    
+	00039: DELTAP2    
+	00040: CALL       
+	00041: SHC[rp1,zp0] 
+	00042: SVTCA[y-axis] 
+	00043: SRP1       
+	00044: DELTAP1    
+	00045: DELTAP1    
+	00046: DELTAP3    
+	00047: SHC[rp1,zp0] 
+
+	Glyph 917: off = 0x0002E692, len = 40
+	  numberOfContours:	-1  (Composite)
+	  xMin:			37
+	  yMin:			0
+	  xMax:			1184
+	  yMax:			902
+
+	     0: Flags:		0x0236
+		Glyf Index:	1104
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1100
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     1     0    31    32    31   240    31     3    31 
+	00011: SVTCA[x-axis] 
+	00012: SRP1       
+	00013: DELTAP1    
+	00014: SHC[rp1,zp0] 
+
+	Glyph 918: off = 0x0002E6BA, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			37
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			902
+
+	     0: Flags:		0x0236
+		Glyf Index:	1105
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1100
+		X BOffset:	-75
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1    36 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (15):     9    12    52     0    36    95    36   143    36   191 
+	                            36   240    36     5    36 
+	00023: SVTCA[x-axis] 
+	00024: SRP1       
+	00025: DELTAP1    
+	00026: CALL       
+	00027: SHC[rp1,zp0] 
+
+	Glyph 919: off = 0x0002E6EE, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1201
+	  yMax:			1095
+
+	     0: Flags:		0x0236
+		Glyf Index:	1106
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	328
+		Y WOffset:	193
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (22):     1    64    15   112    15     2    15     1    16    64 
+	                            13    16    52   240    16     1   191    16   207    16 
+	                             2    16 
+	00024: SVTCA[x-axis] 
+	00025: SRP1       
+	00026: DELTAP1    
+	00027: DELTAP1    
+	00028: CALL       
+	00029: SHC[rp1,zp0] 
+	00030: SVTCA[y-axis] 
+	00031: SRP1       
+	00032: DELTAP1    
+	00033: SHC[rp1,zp0] 
+
+	Glyph 920: off = 0x0002E72A, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1076
+
+	     0: Flags:		0x0236
+		Glyf Index:	1107
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	-41
+		Y WOffset:	174
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (24):     1    64    27   143    27     2    27     1    26    64 
+	                            12    23    52    31    26    79    26     2     0    26 
+	                           191    26     2    26 
+	00026: SVTCA[x-axis] 
+	00027: SRP1       
+	00028: DELTAP1    
+	00029: DELTAP2    
+	00030: CALL       
+	00031: SHC[rp1,zp0] 
+	00032: SVTCA[y-axis] 
+	00033: SRP1       
+	00034: DELTAP1    
+	00035: SHC[rp1,zp0] 
+
+	Glyph 921: off = 0x0002E768, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			37
+	  yMin:			0
+	  xMax:			1184
+	  yMax:			1090
+
+	     0: Flags:		0x0236
+		Glyf Index:	1104
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1101
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              2     1     0    35     1    35 
+	00007: SVTCA[x-axis] 
+	00008: SRP1       
+	00009: DELTAP1    
+	00010: SHC[rp1,zp0] 
+	00011: SHC[rp1,zp0] 
+
+	Glyph 922: off = 0x0002E78C, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			37
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1084
+
+	     0: Flags:		0x0236
+		Glyf Index:	1105
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1101
+		X BOffset:	-69
+		Y BOffset:	-6
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     2     1   127    40   143    40     2     0    40    16 
+	                            40    48    40     3    40 
+	00017: SVTCA[x-axis] 
+	00018: SRP1       
+	00019: DELTAP1    
+	00020: DELTAP1    
+	00021: SHC[rp1,zp0] 
+	00022: SHC[rp1,zp0] 
+
+	Glyph 923: off = 0x0002E7BC, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1218
+	  yMax:			1306
+
+	     0: Flags:		0x0236
+		Glyf Index:	1106
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1101
+		X WOffset:	379
+		Y WOffset:	216
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (28):     2     1    64    19   112    19     2    19     2     1 
+	                            16    20     1     0    20    80    20     2     0    20 
+	                            47    20    79    20   160    20     4    20 
+	00030: SVTCA[x-axis] 
+	00031: SRP1       
+	00032: DELTAP1    
+	00033: DELTAP2    
+	00034: DELTAP3    
+	00035: SHC[rp1,zp0] 
+	00036: SHC[rp1,zp0] 
+	00037: SVTCA[y-axis] 
+	00038: SRP1       
+	00039: DELTAP1    
+	00040: SHC[rp1,zp0] 
+	00041: SHC[rp1,zp0] 
+
+	Glyph 924: off = 0x0002E800, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1241
+
+	     0: Flags:		0x0226
+		Glyf Index:	1107
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1101
+		X WOffset:	3
+		Y WOffset:	151
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     2     1    64    29     1    29     2     1    47    30 
+	                           191    30     2    30 
+	00016: SVTCA[x-axis] 
+	00017: SRP1       
+	00018: DELTAP1    
+	00019: SHC[rp1,zp0] 
+	00020: SHC[rp1,zp0] 
+	00021: SVTCA[y-axis] 
+	00022: SRP1       
+	00023: DELTAP1    
+	00024: SHC[rp1,zp0] 
+	00025: SHC[rp1,zp0] 
+
+	Glyph 925: off = 0x0002E834, len = 90
+	  numberOfContours:	-1  (Composite)
+	  xMin:			272
+	  yMin:			-561
+	  xMax:			1211
+	  yMax:			538
+
+	     0: Flags:		0x0236
+		Glyf Index:	929
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	103
+		Y WOffset:	-1060
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (48):     1    96    44     1    48    44    79    44     2   207 
+	                            44   224    44   240    44     3   111    44   175    44 
+	                           191    44     3    44     1   143    43     1    63    43 
+	                            79    43     2   127    43   143    43   175    43     3 
+	                            15    43    79    43   191    43     3    43 
+	00050: SVTCA[x-axis] 
+	00051: SRP1       
+	00052: DELTAP1    
+	00053: DELTAP1    
+	00054: DELTAP2    
+	00055: DELTAP3    
+	00056: SHC[rp1,zp0] 
+	00057: SVTCA[y-axis] 
+	00058: SRP1       
+	00059: DELTAP1    
+	00060: DELTAP1    
+	00061: DELTAP2    
+	00062: DELTAP3    
+	00063: SHC[rp1,zp0] 
+
+	Glyph 926: off = 0x0002E88E, len = 84
+	  numberOfContours:	-1  (Composite)
+	  xMin:			158
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			662
+
+	     0: Flags:		0x0236
+		Glyf Index:	930
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	34
+		Y WOffset:	-1138
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (43):     1    15    62    16    62     2    15    62    47    62 
+	                           207    62   239    62     4    31    62    63    62     2 
+	                            62    64    19    22    52    62     1     0    61     1 
+	                            79    61   127    61   143    61     3    15    61   191 
+	                            61     2    61 
+	00045: SVTCA[x-axis] 
+	00046: SRP1       
+	00047: DELTAP1    
+	00048: DELTAP1    
+	00049: DELTAP2    
+	00050: SHC[rp1,zp0] 
+	00051: SVTCA[y-axis] 
+	00052: SRP1       
+	00053: CALL       
+	00054: DELTAP1    
+	00055: DELTAP2    
+	00056: DELTAP3    
+	00057: SHC[rp1,zp0] 
+
+	Glyph 927: off = 0x0002E8E2, len = 24
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-409
+	  xMax:			1199
+	  yMax:			654
+
+	     0: Flags:		0x0236
+		Glyf Index:	931
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0017
+		Glyf Index:	1021
+		X WOffset:	2
+		Y WOffset:	-1264
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 928: off = 0x0002E8FA, len = 24
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-409
+	  xMax:			1229
+	  yMax:			662
+
+	     0: Flags:		0x0236
+		Glyf Index:	932
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0017
+		Glyf Index:	1021
+		X WOffset:	2
+		Y WOffset:	-1264
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 929: off = 0x0002E912, len = 250
+	  numberOfContours:	1
+	  xMin:			272
+	  yMin:			-561
+	  xMax:			1211
+	  yMax:			538
+
+	EndPoints
+	---------
+	  0:  40
+
+	  Length of Instructions:	128
+	00000: PUSHB[4]              6    32     1    36 
+	00005: PUSHW[1]            -32 
+	00008: NPUSHB      (27):    18    20    52   201     6   200    10   216     6   216 
+	                            10     4    69    36    90     6   101    32   117    32 
+	                             4     4    12     1    12    12    30 
+	00037: PUSHW[1]            909 
+	00040: PUSHB[8]             15    29     1    29    29    20    20    16 
+	00049: PUSHW[1]            912 
+	00052: PUSHB[7]             26    48     0     1     0     0    38 
+	00060: PUSHW[1]            909 
+	00063: NPUSHB      (11):     4    12    22    30    29    29     8     0    22    22 
+	                            34 
+	00076: PUSHW[1]            891 
+	00079: PUSHB[5]             48     8     1     8     4 
+	00085: PUSHW[1]            340 
+	00088: SCANCTRL   
+	00089: SCANTYPE   
+	00090: MDAP[rd]   
+	00091: DELTAP1    
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: SHP[rp1,zp0] 
+	00094: MDAP[rd]   
+	00095: MDAP[rd]   
+	00096: SRP2       
+	00097: IP         
+	00098: MDAP[rd]   
+	00099: SHP[rp1,zp0] 
+	00100: SRP2       
+	00101: IP         
+	00102: SVTCA[y-axis] 
+	00103: MDAP[rd]   
+	00104: MIRP[srp0,md,rd,1] 
+	00105: SHP[rp2,zp1] 
+	00106: MDAP[rd]   
+	00107: DELTAP1    
+	00108: MDAP[rd]   
+	00109: MIRP[srp0,md,rd,1] 
+	00110: SHP[rp2,zp1] 
+	00111: MDAP[rd]   
+	00112: SHP[rp2,zp1] 
+	00113: MDAP[rd]   
+	00114: DELTAP1    
+	00115: MIRP[nrp0,md,rd,1] 
+	00116: RTHG       
+	00117: IP         
+	00118: MDAP[rd]   
+	00119: DELTAP1    
+	00120: IUP[y]     
+	00121: IUP[x]     
+	00122: SVTCA[x-axis] 
+	00123: DELTAP1    
+	00124: DELTAP1    
+	00125: CALL       
+	00126: SVTCA[y-axis] 
+	00127: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:                      Y-Short         Off
+	 29:  YDual XDual                 X-Short On
+	 30:                      Y-Short X-Short On
+	 31:  YDual                       X-Short Off
+	 32:                      Y-Short X-Short On
+	 33:                      Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:        XDual         Y-Short X-Short On
+	 37:        XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:  YDual               Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1211,  -340)  ->  Abs (  1211,  -340)
+	  1: Rel (     0,   -78)  ->  Abs (  1211,  -418)
+	  2: Rel (  -167,   -83)  ->  Abs (  1044,  -501)
+	  3: Rel (  -145,   -60)  ->  Abs (   899,  -561)
+	  4: Rel (   -91,     0)  ->  Abs (   808,  -561)
+	  5: Rel (  -234,     0)  ->  Abs (   574,  -561)
+	  6: Rel (  -146,   115)  ->  Abs (   428,  -446)
+	  7: Rel (  -156,   123)  ->  Abs (   272,  -323)
+	  8: Rel (     0,   181)  ->  Abs (   272,  -142)
+	  9: Rel (     0,   167)  ->  Abs (   272,    25)
+	 10: Rel (   164,   153)  ->  Abs (   436,   178)
+	 11: Rel (   138,   114)  ->  Abs (   574,   292)
+	 12: Rel (   176,    40)  ->  Abs (   750,   332)
+	 13: Rel (   -25,     6)  ->  Abs (   725,   338)
+	 14: Rel (   -64,    29)  ->  Abs (   661,   367)
+	 15: Rel (   -52,    24)  ->  Abs (   609,   391)
+	 16: Rel (   -35,     0)  ->  Abs (   574,   391)
+	 17: Rel (  -161,     0)  ->  Abs (   413,   391)
+	 18: Rel (   -61,   -68)  ->  Abs (   352,   323)
+	 19: Rel (   -21,   -24)  ->  Abs (   331,   299)
+	 20: Rel (   -10,     0)  ->  Abs (   321,   299)
+	 21: Rel (    -9,     0)  ->  Abs (   312,   299)
+	 22: Rel (     0,    24)  ->  Abs (   312,   323)
+	 23: Rel (     0,    93)  ->  Abs (   312,   416)
+	 24: Rel (   103,    65)  ->  Abs (   415,   481)
+	 25: Rel (    91,    57)  ->  Abs (   506,   538)
+	 26: Rel (    97,     0)  ->  Abs (   603,   538)
+	 27: Rel (    28,     0)  ->  Abs (   631,   538)
+	 28: Rel (   331,  -133)  ->  Abs (   962,   405)
+	 29: Rel (   101,     0)  ->  Abs (  1063,   405)
+	 30: Rel (   -44,  -131)  ->  Abs (  1019,   274)
+	 31: Rel (  -220,     0)  ->  Abs (   799,   274)
+	 32: Rel (  -189,   -99)  ->  Abs (   610,   175)
+	 33: Rel (  -226,  -119)  ->  Abs (   384,    56)
+	 34: Rel (     0,  -175)  ->  Abs (   384,  -119)
+	 35: Rel (     0,  -149)  ->  Abs (   384,  -268)
+	 36: Rel (   147,   -95)  ->  Abs (   531,  -363)
+	 37: Rel (   136,   -67)  ->  Abs (   667,  -430)
+	 38: Rel (   135,     0)  ->  Abs (   802,  -430)
+	 39: Rel (   123,     0)  ->  Abs (   925,  -430)
+	 40: Rel (   269,    90)  ->  Abs (  1194,  -340)
+
+	Glyph 930: off = 0x0002EA0C, len = 384
+	  numberOfContours:	1
+	  xMin:			158
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			662
+
+	EndPoints
+	---------
+	  0:  58
+
+	  Length of Instructions:	219
+	00000: PUSHW[2]             46   -24 
+	00005: PUSHB[4]             16    22    52    45 
+	00010: PUSHW[1]             -8 
+	00013: NPUSHB      (14):    18    22    52    33    32    14    17    52     3    32 
+	                            21    29    52    13 
+	00029: PUSHW[1]            -16 
+	00032: NPUSHB      (35):    18    20    52   204    25   202    29   218    25   218 
+	                            29     4    69    13    85    13   108    25   122    25 
+	                             4   111     7     1     7   111    31     1    31    51 
+	                            53     3    49    48    58 
+	00069: PUSHW[5]            907     0   858    49   907 
+	00080: NPUSHB      (18):    48    64    12    13    52    48    64     9    10    52 
+	                            48    48    64    37     1    37    37    34 
+	00100: PUSHW[1]            906 
+	00103: PUSHB[4]             43    19    19    15 
+	00108: PUSHW[1]            909 
+	00111: PUSHB[3]             23    19    31 
+	00115: PUSHW[1]            -64 
+	00118: NPUSHB      (16):    10    12    52    31    53     7     5    49     0    48 
+	                            16    48     2    48    48    55 
+	00136: PUSHW[1]            883 
+	00139: NPUSHB      (11):     5     5    27    58     0    80    39     1    39    39 
+	                            11 
+	00152: PUSHW[4]            891    27     4   340 
+	00161: SCANCTRL   
+	00162: SCANTYPE   
+	00163: MDAP[rd]   
+	00164: MIRP[nrp0,md,rd,1] 
+	00165: SHP[rp1,zp0] 
+	00166: MDAP[rd]   
+	00167: DELTAP1    
+	00168: MDAP[rd]   
+	00169: ALIGNRP    
+	00170: SRP2       
+	00171: IP         
+	00172: MDAP[rd]   
+	00173: MIRP[srp0,md,rd,1] 
+	00174: SHP[rp2,zp1] 
+	00175: MDAP[rd]   
+	00176: DELTAP1    
+	00177: SHP[rp1,zp0] 
+	00178: SRP1       
+	00179: IP         
+	00180: SHP[rp2,zp1] 
+	00181: SHP[rp1,zp0] 
+	00182: CALL       
+	00183: MDAP[rd]   
+	00184: SVTCA[y-axis] 
+	00185: MDAP[rd]   
+	00186: MIRP[srp0,md,rd,1] 
+	00187: SHP[rp2,zp1] 
+	00188: MDAP[rd]   
+	00189: MDAP[rd]   
+	00190: MIRP[srp0,md,rd,1] 
+	00191: SHP[rp2,zp1] 
+	00192: MDAP[rd]   
+	00193: DELTAP1    
+	00194: SHP[rp2,zp1] 
+	00195: MDAP[rd]   
+	00196: CALL       
+	00197: CALL       
+	00198: MIRP[nrp0,md,rd,1] 
+	00199: MIAP[rd+ci] 
+	00200: MIRP[nrp0,md,rd,1] 
+	00201: SRP1       
+	00202: SRP2       
+	00203: SLOOP      
+	00204: IP         
+	00205: DELTAP1    
+	00206: SHP[rp2,zp1] 
+	00207: DELTAP1    
+	00208: IUP[y]     
+	00209: IUP[x]     
+	00210: SVTCA[x-axis] 
+	00211: DELTAP1    
+	00212: DELTAP1    
+	00213: CALL       
+	00214: CALL       
+	00215: CALL       
+	00216: SVTCA[y-axis] 
+	00217: CALL       
+	00218: CALL       
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:        XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:                      Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:        XDual         Y-Short X-Short On
+	 46:        XDual         Y-Short X-Short On
+	 47:        XDual         Y-Short X-Short Off
+	 48:  YDual XDual                 X-Short On
+	 49:                      Y-Short X-Short On
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual                       X-Short On
+	 52:  YDual                       X-Short Off
+	 53:                      Y-Short X-Short On
+	 54:                      Y-Short X-Short Off
+	 55:        XDual         Y-Short         On
+	 56:        XDual         Y-Short         Off
+	 57:  YDual XDual                 X-Short On
+	 58:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,     0)  ->  Abs (  1229,     0)
+	  1: Rel (  -338,     0)  ->  Abs (   891,     0)
+	  2: Rel (   -84,     0)  ->  Abs (   807,     0)
+	  3: Rel (   -32,    48)  ->  Abs (   775,    48)
+	  4: Rel (   -26,    39)  ->  Abs (   749,    87)
+	  5: Rel (     0,    89)  ->  Abs (   749,   176)
+	  6: Rel (     0,    70)  ->  Abs (   749,   246)
+	  7: Rel (    17,    76)  ->  Abs (   766,   322)
+	  8: Rel (  -153,   -35)  ->  Abs (   613,   287)
+	  9: Rel (  -159,  -123)  ->  Abs (   454,   164)
+	 10: Rel (  -195,  -155)  ->  Abs (   259,     9)
+	 11: Rel (     0,  -158)  ->  Abs (   259,  -149)
+	 12: Rel (     0,  -139)  ->  Abs (   259,  -288)
+	 13: Rel (   149,   -81)  ->  Abs (   408,  -369)
+	 14: Rel (   122,   -61)  ->  Abs (   530,  -430)
+	 15: Rel (   175,     0)  ->  Abs (   705,  -430)
+	 16: Rel (    99,     0)  ->  Abs (   804,  -430)
+	 17: Rel (   133,    38)  ->  Abs (   937,  -392)
+	 18: Rel (    23,     6)  ->  Abs (   960,  -386)
+	 19: Rel (   128,    41)  ->  Abs (  1088,  -345)
+	 20: Rel (     0,   -72)  ->  Abs (  1088,  -417)
+	 21: Rel (  -178,   -81)  ->  Abs (   910,  -498)
+	 22: Rel (  -146,   -63)  ->  Abs (   764,  -561)
+	 23: Rel (   -86,     0)  ->  Abs (   678,  -561)
+	 24: Rel (  -224,     0)  ->  Abs (   454,  -561)
+	 25: Rel (  -141,   106)  ->  Abs (   313,  -455)
+	 26: Rel (  -155,   117)  ->  Abs (   158,  -338)
+	 27: Rel (     0,   156)  ->  Abs (   158,  -182)
+	 28: Rel (     0,   201)  ->  Abs (   158,    19)
+	 29: Rel (   242,   190)  ->  Abs (   400,   209)
+	 30: Rel (   156,   118)  ->  Abs (   556,   327)
+	 31: Rel (   183,    58)  ->  Abs (   739,   385)
+	 32: Rel (   -76,    51)  ->  Abs (   663,   436)
+	 33: Rel (  -224,   106)  ->  Abs (   439,   542)
+	 34: Rel (   -51,     0)  ->  Abs (   388,   542)
+	 35: Rel (   -66,     0)  ->  Abs (   322,   542)
+	 36: Rel (   -73,   -79)  ->  Abs (   249,   463)
+	 37: Rel (    -5,     0)  ->  Abs (   244,   463)
+	 38: Rel (    -9,     0)  ->  Abs (   235,   463)
+	 39: Rel (     0,    20)  ->  Abs (   235,   483)
+	 40: Rel (     0,    70)  ->  Abs (   235,   553)
+	 41: Rel (    64,    56)  ->  Abs (   299,   609)
+	 42: Rel (    62,    53)  ->  Abs (   361,   662)
+	 43: Rel (    71,     0)  ->  Abs (   432,   662)
+	 44: Rel (    73,     0)  ->  Abs (   505,   662)
+	 45: Rel (   101,   -55)  ->  Abs (   606,   607)
+	 46: Rel (   155,   -84)  ->  Abs (   761,   523)
+	 47: Rel (   137,   -74)  ->  Abs (   898,   449)
+	 48: Rel (   138,     0)  ->  Abs (  1036,   449)
+	 49: Rel (   -59,  -123)  ->  Abs (   977,   326)
+	 50: Rel (   -54,     9)  ->  Abs (   923,   335)
+	 51: Rel (   -45,     0)  ->  Abs (   878,   335)
+	 52: Rel (   -26,     0)  ->  Abs (   852,   335)
+	 53: Rel (   -23,    -3)  ->  Abs (   829,   332)
+	 54: Rel (    -8,   -34)  ->  Abs (   821,   298)
+	 55: Rel (     0,   -55)  ->  Abs (   821,   243)
+	 56: Rel (     0,  -120)  ->  Abs (   821,   123)
+	 57: Rel (   127,     0)  ->  Abs (   948,   123)
+	 58: Rel (   281,     0)  ->  Abs (  1229,   123)
+
+	Glyph 931: off = 0x0002EB8C, len = 212
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1199
+	  yMax:			654
+
+	EndPoints
+	---------
+	  0:  31
+
+	  Length of Instructions:	113
+	00000: NPUSHB      (32):    73    14    73    15    70    28   199    28   199    29 
+	                             5   185    15   183    29     2   133    29   165    29 
+	                             2   191    16     1   108    16   126    16     2    15 
+	                            15     1 
+	00034: PUSHW[1]            907 
+	00037: NPUSHB      (15):    15     0    31     0    77     0     3     0     0    79 
+	                            21     1    21    21    17 
+	00054: PUSHW[6]            904    26    10   907     9   858 
+	00067: NPUSHB      (10):    15     0    23    23     9     1     0    10     9     4 
+	00079: SCANTYPE   
+	00080: MDAP[rd]   
+	00081: ALIGNRP    
+	00082: MDAP[rd]   
+	00083: SHP[rp1,zp0] 
+	00084: SRP2       
+	00085: IP         
+	00086: MDAP[rd]   
+	00087: SRP2       
+	00088: IP         
+	00089: SVTCA[y-axis] 
+	00090: MIAP[rd+ci] 
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: MDAP[rd]   
+	00093: MIRP[srp0,md,rd,1] 
+	00094: SHP[rp2,zp1] 
+	00095: MDAP[rd]   
+	00096: DELTAP1    
+	00097: SHP[rp2,zp1] 
+	00098: MDAP[rd]   
+	00099: DELTAP1    
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: RTHG       
+	00102: IP         
+	00103: MDAP[rd]   
+	00104: IUP[y]     
+	00105: IUP[x]     
+	00106: SVTCA[x-axis] 
+	00107: DELTAP1    
+	00108: DELTAP1    
+	00109: SVTCA[y-axis] 
+	00110: DELTAP1    
+	00111: DELTAP1    
+	00112: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual                       X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual                               On
+	 12:  YDual XDual                 X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short X-Short On
+	 29:        XDual         Y-Short X-Short On
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1199,   402)  ->  Abs (  1199,   402)
+	  1: Rel (   -51,  -126)  ->  Abs (  1148,   276)
+	  2: Rel (  -153,     0)  ->  Abs (   995,   276)
+	  3: Rel (  -129,   -15)  ->  Abs (   866,   261)
+	  4: Rel (  -135,   -64)  ->  Abs (   731,   197)
+	  5: Rel (   -83,   -60)  ->  Abs (   648,   137)
+	  6: Rel (  -111,   -80)  ->  Abs (   537,    57)
+	  7: Rel (  -138,   -57)  ->  Abs (   399,     0)
+	  8: Rel (  -153,     0)  ->  Abs (   246,     0)
+	  9: Rel (  -246,     0)  ->  Abs (     0,     0)
+	 10: Rel (     0,   123)  ->  Abs (     0,   123)
+	 11: Rel (   353,     0)  ->  Abs (   353,   123)
+	 12: Rel (    81,     0)  ->  Abs (   434,   123)
+	 13: Rel (   182,   110)  ->  Abs (   616,   233)
+	 14: Rel (   204,   124)  ->  Abs (   820,   357)
+	 15: Rel (    65,    17)  ->  Abs (   885,   374)
+	 16: Rel (  -246,   167)  ->  Abs (   639,   541)
+	 17: Rel (   -74,     0)  ->  Abs (   565,   541)
+	 18: Rel (   -76,     0)  ->  Abs (   489,   541)
+	 19: Rel (   -45,   -67)  ->  Abs (   444,   474)
+	 20: Rel (    -9,   -13)  ->  Abs (   435,   461)
+	 21: Rel (   -12,     0)  ->  Abs (   423,   461)
+	 22: Rel (    -9,     0)  ->  Abs (   414,   461)
+	 23: Rel (     0,    18)  ->  Abs (   414,   479)
+	 24: Rel (     0,    54)  ->  Abs (   414,   533)
+	 25: Rel (   113,   121)  ->  Abs (   527,   654)
+	 26: Rel (    85,     0)  ->  Abs (   612,   654)
+	 27: Rel (    70,     0)  ->  Abs (   682,   654)
+	 28: Rel (    96,   -66)  ->  Abs (   778,   588)
+	 29: Rel (   165,  -111)  ->  Abs (   943,   477)
+	 30: Rel (    48,   -32)  ->  Abs (   991,   445)
+	 31: Rel (   137,   -43)  ->  Abs (  1128,   402)
+
+	Glyph 932: off = 0x0002EC60, len = 312
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			662
+
+	EndPoints
+	---------
+	  0:  43
+
+	  Length of Instructions:	187
+	00000: NPUSHB      (50):   120    18     1    73    16    73    17    70    30   136 
+	                            18   182    30     5   148    30   167    15   183    15 
+	                             3   102    17   103    30   148    15     3    53     8 
+	                            51    15    87    30     3    37     8    35    15     2 
+	                            70    15     1     6    37    35    32    17    17    33 
+	00052: PUSHW[1]            907 
+	00055: NPUSHB      (20):    31    32    79    32     2    63    32    79    32     2 
+	                            15    32    29    32     2    32    32    23    23    19 
+	00077: NPUSHW      (10):   906    28    43   907     0   858    12   907    11   858 
+	00099: NPUSHB      (12):    17     4    33    32    32     0    37     6     0    39 
+	                             1    39 
+	00113: PUSHW[1]            883 
+	00116: NPUSHB      (14):    16     4     1     4     4     0    25    25    11    43 
+	                             0    12    11     4 
+	00132: SCANTYPE   
+	00133: MDAP[rd]   
+	00134: ALIGNRP    
+	00135: MDAP[rd]   
+	00136: SHP[rp1,zp0] 
+	00137: SRP2       
+	00138: IP         
+	00139: MDAP[rd]   
+	00140: SRP1       
+	00141: IP         
+	00142: MDAP[rd]   
+	00143: DELTAP1    
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: DELTAP1    
+	00146: IP         
+	00147: SHP[rp2,zp1] 
+	00148: SRP2       
+	00149: IP         
+	00150: MDAP[rd]   
+	00151: SHP[rp1,zp0] 
+	00152: SRP1       
+	00153: SHP[rp1,zp0] 
+	00154: SVTCA[y-axis] 
+	00155: MIAP[rd+ci] 
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: MIAP[rd+ci] 
+	00158: MIRP[nrp0,md,rd,1] 
+	00159: MDAP[rd]   
+	00160: MIRP[srp0,md,rd,1] 
+	00161: SHP[rp2,zp1] 
+	00162: MDAP[rd]   
+	00163: SHP[rp2,zp1] 
+	00164: MDAP[rd]   
+	00165: DELTAP1    
+	00166: DELTAP1    
+	00167: DELTAP2    
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: RTHG       
+	00170: IP         
+	00171: MDAP[rd]   
+	00172: SRP1       
+	00173: IP         
+	00174: IP         
+	00175: SHP[rp2,zp1] 
+	00176: IUP[y]     
+	00177: IUP[x]     
+	00178: SVTCA[y-axis] 
+	00179: DELTAP2    
+	00180: DELTAP1    
+	00181: DELTAP1    
+	00182: DELTAP1    
+	00183: DELTAP1    
+	00184: DELTAP1    
+	00185: SVTCA[x-axis] 
+	00186: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:                      Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short On
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual               Y-Short         Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short On
+	 31:        XDual         Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:                      Y-Short X-Short On
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:                      Y-Short X-Short On
+	 38:                      Y-Short X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,     0)  ->  Abs (  1229,     0)
+	  1: Rel (  -338,     0)  ->  Abs (   891,     0)
+	  2: Rel (   -83,     0)  ->  Abs (   808,     0)
+	  3: Rel (   -60,    89)  ->  Abs (   748,    89)
+	  4: Rel (     0,    95)  ->  Abs (   748,   184)
+	  5: Rel (     0,    62)  ->  Abs (   748,   246)
+	  6: Rel (    19,    76)  ->  Abs (   767,   322)
+	  7: Rel (   -63,   -22)  ->  Abs (   704,   300)
+	  8: Rel (  -194,  -160)  ->  Abs (   510,   140)
+	  9: Rel (  -170,  -140)  ->  Abs (   340,     0)
+	 10: Rel (   -92,     0)  ->  Abs (   248,     0)
+	 11: Rel (  -248,     0)  ->  Abs (     0,     0)
+	 12: Rel (     0,   123)  ->  Abs (     0,   123)
+	 13: Rel (   236,     0)  ->  Abs (   236,   123)
+	 14: Rel (    75,     0)  ->  Abs (   311,   123)
+	 15: Rel (   134,    87)  ->  Abs (   445,   210)
+	 16: Rel (   207,   134)  ->  Abs (   652,   344)
+	 17: Rel (    87,    42)  ->  Abs (   739,   386)
+	 18: Rel (  -256,   156)  ->  Abs (   483,   542)
+	 19: Rel (   -98,     0)  ->  Abs (   385,   542)
+	 20: Rel (   -60,     0)  ->  Abs (   325,   542)
+	 21: Rel (   -39,   -40)  ->  Abs (   286,   502)
+	 22: Rel (   -40,   -40)  ->  Abs (   246,   462)
+	 23: Rel (    -3,     0)  ->  Abs (   243,   462)
+	 24: Rel (    -8,     0)  ->  Abs (   235,   462)
+	 25: Rel (     0,    16)  ->  Abs (   235,   478)
+	 26: Rel (     0,    64)  ->  Abs (   235,   542)
+	 27: Rel (   113,   120)  ->  Abs (   348,   662)
+	 28: Rel (    85,     0)  ->  Abs (   433,   662)
+	 29: Rel (    76,     0)  ->  Abs (   509,   662)
+	 30: Rel (   191,  -107)  ->  Abs (   700,   555)
+	 31: Rel (   190,  -107)  ->  Abs (   890,   448)
+	 32: Rel (   145,     0)  ->  Abs (  1035,   448)
+	 33: Rel (   -58,  -121)  ->  Abs (   977,   327)
+	 34: Rel (   -38,     9)  ->  Abs (   939,   336)
+	 35: Rel (   -41,     0)  ->  Abs (   898,   336)
+	 36: Rel (   -36,     0)  ->  Abs (   862,   336)
+	 37: Rel (   -33,    -5)  ->  Abs (   829,   331)
+	 38: Rel (    -7,   -54)  ->  Abs (   822,   277)
+	 39: Rel (     0,   -32)  ->  Abs (   822,   245)
+	 40: Rel (     0,   -55)  ->  Abs (   822,   190)
+	 41: Rel (    44,   -67)  ->  Abs (   866,   123)
+	 42: Rel (   105,     0)  ->  Abs (   971,   123)
+	 43: Rel (   258,     0)  ->  Abs (  1229,   123)
+
+	Glyph 933: off = 0x0002ED98, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			272
+	  yMin:			-561
+	  xMax:			1211
+	  yMax:			1019
+
+	     0: Flags:		0x0236
+		Glyf Index:	929
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1021
+		X BOffset:	111
+		Y BOffset:	-55
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1     0    43    41    22    29    64     1     0    44 
+	                             1    44 
+	00014: SVTCA[y-axis] 
+	00015: SRP1       
+	00016: DELTAP1    
+	00017: SHC[rp1,zp0] 
+	00018: SVTCA[x-axis] 
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+
+	Glyph 934: off = 0x0002EDC6, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			158
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			1008
+
+	     0: Flags:		0x0236
+		Glyf Index:	930
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1021
+		X BOffset:	87
+		Y BOffset:	-66
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1   143    62     1    62     1     0    61    59    39 
+	                            48    64 
+	00014: SVTCA[x-axis] 
+	00015: CALL       
+	00016: SHC[rp1,zp0] 
+	00017: SVTCA[y-axis] 
+	00018: SRP1       
+	00019: DELTAP1    
+	00020: SHC[rp1,zp0] 
+
+	Glyph 935: off = 0x0002EDF4, len = 24
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1199
+	  yMax:			1019
+
+	     0: Flags:		0x0236
+		Glyf Index:	931
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0017
+		Glyf Index:	1021
+		X WOffset:	262
+		Y WOffset:	-55
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 936: off = 0x0002EE0C, len = 40
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1074
+
+	     0: Flags:		0x0236
+		Glyf Index:	932
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1021
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     1    79    44   143    44   191    44     3    44 
+	00011: SVTCA[x-axis] 
+	00012: SRP1       
+	00013: DELTAP1    
+	00014: SHC[rp1,zp0] 
+
+	Glyph 937: off = 0x0002EE34, len = 180
+	  numberOfContours:	1
+	  xMin:			414
+	  yMin:			-12
+	  xMax:			1005
+	  yMax:			813
+
+	EndPoints
+	---------
+	  0:  24
+
+	  Length of Instructions:	99
+	00000: NPUSHB      (24):    21     2     1    37     5    57    24   137    24   150 
+	                             3   212     5     5   117     2   151     2   167     2 
+	                             3    23    10     0 
+	00026: PUSHW[1]            911 
+	00029: PUSHB[4]              1    12    12    19 
+	00034: PUSHW[4]            910     6    14   877 
+	00043: NPUSHB      (20):     9     9     1     1   175     0   191     0     2   143 
+	                             0     1     0    64    11    15    52     0     0    22 
+	00065: PUSHW[1]            878 
+	00068: PUSHB[2]              4     4 
+	00071: SCANTYPE   
+	00072: MDAP[rd]   
+	00073: MIRP[srp0,md,rd,1] 
+	00074: SHP[rp2,zp1] 
+	00075: MDAP[rd]   
+	00076: CALL       
+	00077: DELTAP2    
+	00078: DELTAP1    
+	00079: SHP[rp1,zp0] 
+	00080: MDAP[rd]   
+	00081: SHP[rp2,zp1] 
+	00082: MDAP[rd]   
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: SVTCA[y-axis] 
+	00085: MDAP[rd]   
+	00086: MIRP[srp0,md,rd,1] 
+	00087: SHP[rp2,zp1] 
+	00088: MDAP[rd]   
+	00089: MDAP[rd]   
+	00090: MIRP[nrp0,md,rd,1] 
+	00091: SVTCA[x-axis] 
+	00092: SHPIX      
+	00093: IUP[y]     
+	00094: IUP[x]     
+	00095: SVTCA[x-axis] 
+	00096: DELTAP2    
+	00097: DELTAP1    
+	00098: DELTAP3    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual                 X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual                         Off
+	  6:  YDual                               On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual Rep-  3 Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:                              X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   661,   672)  ->  Abs (   661,   672)
+	  1: Rel (    14,   141)  ->  Abs (   675,   813)
+	  2: Rel (    90,   -15)  ->  Abs (   765,   798)
+	  3: Rel (   240,  -312)  ->  Abs (  1005,   486)
+	  4: Rel (     0,  -193)  ->  Abs (  1005,   293)
+	  5: Rel (     0,  -305)  ->  Abs (  1005,   -12)
+	  6: Rel (  -361,     0)  ->  Abs (   644,   -12)
+	  7: Rel (  -112,     0)  ->  Abs (   532,   -12)
+	  8: Rel (  -118,    61)  ->  Abs (   414,    49)
+	  9: Rel (     0,    88)  ->  Abs (   414,   137)
+	 10: Rel (     0,    34)  ->  Abs (   414,   171)
+	 11: Rel (    22,    89)  ->  Abs (   436,   260)
+	 12: Rel (    15,     0)  ->  Abs (   451,   260)
+	 13: Rel (    12,     0)  ->  Abs (   463,   260)
+	 14: Rel (     1,   -19)  ->  Abs (   464,   241)
+	 15: Rel (     1,   -36)  ->  Abs (   465,   205)
+	 16: Rel (     6,   -32)  ->  Abs (   471,   173)
+	 17: Rel (    57,   -33)  ->  Abs (   528,   140)
+	 18: Rel (   101,   -17)  ->  Abs (   629,   123)
+	 19: Rel (    73,     0)  ->  Abs (   702,   123)
+	 20: Rel (    97,     0)  ->  Abs (   799,   123)
+	 21: Rel (   154,    54)  ->  Abs (   953,   177)
+	 22: Rel (     0,    49)  ->  Abs (   953,   226)
+	 23: Rel (     0,   168)  ->  Abs (   953,   394)
+	 24: Rel (  -207,   264)  ->  Abs (   746,   658)
+
+	Glyph 938: off = 0x0002EEE8, len = 166
+	  numberOfContours:	1
+	  xMin:			337
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			850
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	76
+	00000: NPUSHB      (12):   153    25     1    25    16    27    27    28    17    17 
+	                             9    22 
+	00014: PUSHW[4]            910    11     4   907 
+	00023: PUSHB[5]              5     9    25     0    27 
+	00029: PUSHW[1]            886 
+	00032: PUSHB[4]             28    28     5    19 
+	00037: PUSHW[1]            877 
+	00040: PUSHB[4]             14     4     5     4 
+	00045: SCANTYPE   
+	00046: MDAP[rd]   
+	00047: ALIGNRP    
+	00048: MDAP[rd]   
+	00049: MIRP[nrp0,md,rd,1] 
+	00050: RTHG       
+	00051: SRP2       
+	00052: IP         
+	00053: MDAP[rd]   
+	00054: MIRP[nrp0,nmd,rd,0] 
+	00055: SHP[rp1,zp0] 
+	00056: SHP[rp2,zp1] 
+	00057: SHP[rp2,zp1] 
+	00058: SVTCA[y-axis] 
+	00059: RTG        
+	00060: MDAP[rd]   
+	00061: MIRP[nrp0,md,rd,1] 
+	00062: MDAP[rd]   
+	00063: MIRP[srp0,md,rd,1] 
+	00064: SHP[rp2,zp1] 
+	00065: SHP[rp2,zp1] 
+	00066: MDAP[rd]   
+	00067: MDAP[rd]   
+	00068: SHP[rp1,zp0] 
+	00069: MDAP[rd]   
+	00070: SVTCA[x-axis] 
+	00071: SHPIX      
+	00072: IUP[y]     
+	00073: IUP[x]     
+	00074: SVTCA[x-axis] 
+	00075: DELTAP3    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:        XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   884,   315)  ->  Abs (   884,   315)
+	  1: Rel (    26,  -129)  ->  Abs (   910,   186)
+	  2: Rel (   103,   -63)  ->  Abs (  1013,   123)
+	  3: Rel (   111,     0)  ->  Abs (  1124,   123)
+	  4: Rel (   105,     0)  ->  Abs (  1229,   123)
+	  5: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	  6: Rel (  -109,     0)  ->  Abs (  1120,     0)
+	  7: Rel (  -154,     0)  ->  Abs (   966,     0)
+	  8: Rel (  -116,    95)  ->  Abs (   850,    95)
+	  9: Rel (   -27,   103)  ->  Abs (   823,   198)
+	 10: Rel (   -94,  -158)  ->  Abs (   729,    40)
+	 11: Rel (  -162,     0)  ->  Abs (   567,    40)
+	 12: Rel (  -134,     0)  ->  Abs (   433,    40)
+	 13: Rel (   -96,    75)  ->  Abs (   337,   115)
+	 14: Rel (     0,    74)  ->  Abs (   337,   189)
+	 15: Rel (     0,    37)  ->  Abs (   337,   226)
+	 16: Rel (    23,    86)  ->  Abs (   360,   312)
+	 17: Rel (    14,     0)  ->  Abs (   374,   312)
+	 18: Rel (    13,     0)  ->  Abs (   387,   312)
+	 19: Rel (     0,   -32)  ->  Abs (   387,   280)
+	 20: Rel (     0,   -60)  ->  Abs (   387,   220)
+	 21: Rel (    81,   -45)  ->  Abs (   468,   175)
+	 22: Rel (   115,     0)  ->  Abs (   583,   175)
+	 23: Rel (    75,     0)  ->  Abs (   658,   175)
+	 24: Rel (   144,    65)  ->  Abs (   802,   240)
+	 25: Rel (     0,    53)  ->  Abs (   802,   293)
+	 26: Rel (     0,   182)  ->  Abs (   802,   475)
+	 27: Rel (   -51,   254)  ->  Abs (   751,   729)
+	 28: Rel (    83,   121)  ->  Abs (   834,   850)
+	 29: Rel (    50,  -299)  ->  Abs (   884,   551)
+
+	Glyph 939: off = 0x0002EF8E, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			414
+	  yMin:			-12
+	  xMax:			1005
+	  yMax:			1203
+
+	     0: Flags:		0x0236
+		Glyf Index:	937
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	-27
+		Y WOffset:	129
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     1     0    27     1    96    27   160    27   192    27 
+	                             3    16    27    32    27     2    27 
+	00019: SVTCA[x-axis] 
+	00020: SRP1       
+	00021: DELTAP1    
+	00022: DELTAP1    
+	00023: DELTAP2    
+	00024: SHC[rp1,zp0] 
+
+	Glyph 940: off = 0x0002EFC2, len = 42
+	  numberOfContours:	-1  (Composite)
+	  xMin:			337
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1200
+
+	     0: Flags:		0x0236
+		Glyf Index:	938
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1021
+		X BOffset:	107
+		Y BOffset:	126
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1    64    32     1    79    32   191    32     2    32 
+	00012: SVTCA[x-axis] 
+	00013: SRP1       
+	00014: DELTAP1    
+	00015: DELTAP2    
+	00016: SHC[rp1,zp0] 
+
+	Glyph 941: off = 0x0002EFEC, len = 176
+	  numberOfContours:	1
+	  xMin:			144
+	  yMin:			-420
+	  xMax:			958
+	  yMax:			664
+
+	EndPoints
+	---------
+	  0:  23
+
+	  Length of Instructions:	98
+	00000: NPUSHB      (22):   132     5   130     6   201    20     3    53     5    53 
+	                             6    70     6     3   133     2   175     0   169     5 
+	                             3    20 
+	00024: PUSHW[1]            -64 
+	00027: PUSHB[6]             10    22    52    14    14    18 
+	00034: PUSHW[6]            904     7     0   914     1   917 
+	00047: NPUSHB      (15):     0     0     1    64    19    22    52     1    64     9 
+	                            16    52     1     1    22 
+	00064: PUSHW[1]            879 
+	00067: PUSHB[3]              3    12     4 
+	00071: SCANTYPE   
+	00072: MDAP[rd]   
+	00073: MDAP[rd]   
+	00074: MIRP[srp0,md,rd,1] 
+	00075: SHP[rp2,zp1] 
+	00076: RTHG       
+	00077: MDAP[rd]   
+	00078: CALL       
+	00079: CALL       
+	00080: SHP[rp1,zp0] 
+	00081: RTG        
+	00082: MDAP[rd]   
+	00083: SVTCA[y-axis] 
+	00084: MIAP[rd+ci] 
+	00085: MIRP[nrp0,md,rd,1] 
+	00086: MDAP[rd]   
+	00087: MIRP[srp0,md,rd,1] 
+	00088: SHP[rp2,zp1] 
+	00089: MDAP[rd]   
+	00090: IUP[y]     
+	00091: IUP[x]     
+	00092: SVTCA[y-axis] 
+	00093: CALL       
+	00094: DELTAP1    
+	00095: SVTCA[x-axis] 
+	00096: DELTAP1    
+	00097: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual                         On
+	  4:        XDual         Y-Short         Off
+	  5:                              X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   727,   494)  ->  Abs (   727,   494)
+	  1: Rel (    63,   170)  ->  Abs (   790,   664)
+	  2: Rel (   168,  -157)  ->  Abs (   958,   507)
+	  3: Rel (     0,  -329)  ->  Abs (   958,   178)
+	  4: Rel (     0,  -149)  ->  Abs (   958,    29)
+	  5: Rel (  -117,  -274)  ->  Abs (   841,  -245)
+	  6: Rel (  -203,  -175)  ->  Abs (   638,  -420)
+	  7: Rel (   -91,     0)  ->  Abs (   547,  -420)
+	  8: Rel (  -106,     0)  ->  Abs (   441,  -420)
+	  9: Rel (   -64,    19)  ->  Abs (   377,  -401)
+	 10: Rel (  -185,    55)  ->  Abs (   192,  -346)
+	 11: Rel (   -48,    14)  ->  Abs (   144,  -332)
+	 12: Rel (     0,    27)  ->  Abs (   144,  -305)
+	 13: Rel (     0,    27)  ->  Abs (   144,  -278)
+	 14: Rel (    25,     0)  ->  Abs (   169,  -278)
+	 15: Rel (     7,     0)  ->  Abs (   176,  -278)
+	 16: Rel (    81,   -16)  ->  Abs (   257,  -294)
+	 17: Rel (    81,   -15)  ->  Abs (   338,  -309)
+	 18: Rel (    88,     0)  ->  Abs (   426,  -309)
+	 19: Rel (   100,     0)  ->  Abs (   526,  -309)
+	 20: Rel (   237,   161)  ->  Abs (   763,  -148)
+	 21: Rel (   138,   195)  ->  Abs (   901,    47)
+	 22: Rel (     0,    53)  ->  Abs (   901,   100)
+	 23: Rel (     0,   214)  ->  Abs (   901,   314)
+
+	Glyph 942: off = 0x0002F09C, len = 226
+	  numberOfContours:	1
+	  xMin:			101
+	  yMin:			-422
+	  xMax:			1229
+	  yMax:			672
+
+	EndPoints
+	---------
+	  0:  31
+
+	  Length of Instructions:	128
+	00000: NPUSHB      (35):   208    19     1   166    19   175    23   197    19     3 
+	                           138    23   148    19   158    23     3   178     5   217 
+	                            19     2    70     5    86     5   128     5     3     2 
+	                            44    18    22    52    19 
+	00037: PUSHW[1]            -64 
+	00040: PUSHB[5]              9    22    52     3    30 
+	00046: PUSHW[3]            907    31   858 
+	00053: PUSHB[3]             13    13    17 
+	00057: PUSHW[1]            904 
+	00060: PUSHB[3]              6    24    25 
+	00064: PUSHW[1]            917 
+	00067: NPUSHB      (13):     3    27    30    31    24    25    64     9    16    52 
+	                            25    25    21 
+	00082: PUSHW[1]            877 
+	00085: PUSHB[6]             27    16    11     1    11     4 
+	00092: SCANTYPE   
+	00093: MDAP[rd]   
+	00094: DELTAP1    
+	00095: MDAP[rd]   
+	00096: MIRP[srp0,md,rd,1] 
+	00097: SHP[rp2,zp1] 
+	00098: RTHG       
+	00099: MDAP[rd]   
+	00100: CALL       
+	00101: SHP[rp1,zp0] 
+	00102: RTG        
+	00103: MDAP[rd]   
+	00104: ALIGNRP    
+	00105: SRP1       
+	00106: IP         
+	00107: SVTCA[y-axis] 
+	00108: MIAP[rd+ci] 
+	00109: SHP[rp1,zp0] 
+	00110: MDAP[rd]   
+	00111: MIRP[srp0,md,rd,1] 
+	00112: SHP[rp2,zp1] 
+	00113: MDAP[rd]   
+	00114: MIAP[rd+ci] 
+	00115: MIRP[srp0,md,rd,1] 
+	00116: SHP[rp2,zp1] 
+	00117: CALL       
+	00118: CALL       
+	00119: IUP[y]     
+	00120: IUP[x]     
+	00121: SVTCA[x-axis] 
+	00122: DELTAP1    
+	00123: DELTAP1    
+	00124: SVTCA[y-axis] 
+	00125: DELTAP1    
+	00126: DELTAP1    
+	00127: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual               Y-Short X-Short On
+	  4:                      Y-Short X-Short Off
+	  5:                                      Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short X-Short On
+	 16:        XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short On
+	 31:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1113,     0)  ->  Abs (  1113,     0)
+	  1: Rel (   -80,     0)  ->  Abs (  1033,     0)
+	  2: Rel (   -89,    53)  ->  Abs (   944,    53)
+	  3: Rel (   -32,    69)  ->  Abs (   912,   122)
+	  4: Rel (   -17,  -233)  ->  Abs (   895,  -111)
+	  5: Rel (  -266,  -311)  ->  Abs (   629,  -422)
+	  6: Rel (  -125,     0)  ->  Abs (   504,  -422)
+	  7: Rel (  -106,     0)  ->  Abs (   398,  -422)
+	  8: Rel (   -64,    19)  ->  Abs (   334,  -403)
+	  9: Rel (  -185,    55)  ->  Abs (   149,  -348)
+	 10: Rel (   -48,    14)  ->  Abs (   101,  -334)
+	 11: Rel (     0,    27)  ->  Abs (   101,  -307)
+	 12: Rel (     0,    26)  ->  Abs (   101,  -281)
+	 13: Rel (    25,     0)  ->  Abs (   126,  -281)
+	 14: Rel (     7,     0)  ->  Abs (   133,  -281)
+	 15: Rel (    81,   -15)  ->  Abs (   214,  -296)
+	 16: Rel (    81,   -15)  ->  Abs (   295,  -311)
+	 17: Rel (    88,     0)  ->  Abs (   383,  -311)
+	 18: Rel (   100,     0)  ->  Abs (   483,  -311)
+	 19: Rel (   238,   162)  ->  Abs (   721,  -149)
+	 20: Rel (   136,   196)  ->  Abs (   857,    47)
+	 21: Rel (     0,    53)  ->  Abs (   857,   100)
+	 22: Rel (     0,    78)  ->  Abs (   857,   178)
+	 23: Rel (   -35,   170)  ->  Abs (   822,   348)
+	 24: Rel (   -89,   154)  ->  Abs (   733,   502)
+	 25: Rel (    63,   170)  ->  Abs (   796,   672)
+	 26: Rel (    78,  -121)  ->  Abs (   874,   551)
+	 27: Rel (    32,  -245)  ->  Abs (   906,   306)
+	 28: Rel (    37,  -183)  ->  Abs (   943,   123)
+	 29: Rel (   170,     0)  ->  Abs (  1113,   123)
+	 30: Rel (   116,     0)  ->  Abs (  1229,   123)
+	 31: Rel (     0,  -123)  ->  Abs (  1229,     0)
+
+	Glyph 943: off = 0x0002F17E, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-420
+	  xMax:			958
+	  yMax:			1057
+
+	     0: Flags:		0x0236
+		Glyf Index:	941
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1021
+		X BOffset:	46
+		Y BOffset:	-17
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              1    26 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB       (9):    23    26    52    63    26    79    26     2    26 
+	00017: SVTCA[x-axis] 
+	00018: SRP1       
+	00019: DELTAP1    
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 944: off = 0x0002F1AC, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			101
+	  yMin:			-422
+	  xMax:			1229
+	  yMax:			1067
+
+	     0: Flags:		0x0236
+		Glyf Index:	942
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1021
+		X BOffset:	28
+		Y BOffset:	-7
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1    16    34    79    34     2    34 
+	00008: SVTCA[x-axis] 
+	00009: SRP1       
+	00010: DELTAP1    
+	00011: SHC[rp1,zp0] 
+
+	Glyph 945: off = 0x0002F1D0, len = 404
+	  numberOfContours:	1
+	  xMin:			6
+	  yMin:			-371
+	  xMax:			1147
+	  yMax:			673
+
+	EndPoints
+	---------
+	  0:  56
+
+	  Length of Instructions:	247
+	00000: NPUSHB      (61):   169     0     1    10    50     1    13     0     6    54 
+	                            54    54    70    54    87    54   103    54   119    54 
+	                           171     0   168    33     9   185    33   202    33   217 
+	                            33     3    37    54   167     6   165    20     3   136 
+	                            33   152    33   165     0     3    37    37     2    26 
+	                            26     2    13    13    51    29     0     4    31     2 
+	                            45 
+	00063: PUSHW[4]            907    55    31   907 
+	00072: PUSHB[3]              2    50    51 
+	00076: PUSHW[3]            917    21   909 
+	00083: NPUSHB      (11):     7     0    64    11    19    52     0     0    43    41 
+	                            35 
+	00096: PUSHW[1]            884 
+	00099: NPUSHB      (17):     0    39     1    39    39    53    29    25    26    64 
+	                             9    22    52    26    26     4    23 
+	00118: PUSHW[3]            883    29   -64 
+	00125: NPUSHB      (17):    11    14    52    29    29    53    10    50    64    15 
+	                            22    52    50    50    51    51    48 
+	00144: PUSHW[6]            885    53   952    58    15   -64 
+	00157: PUSHB[6]             13    15    52    15    15    18 
+	00164: PUSHW[1]            931 
+	00167: PUSHB[2]             10     4 
+	00170: SCANTYPE   
+	00171: MDAP[rd]   
+	00172: MIRP[srp0,md,rd,1] 
+	00173: SHP[rp2,zp1] 
+	00174: RDTG       
+	00175: MDAP[rd]   
+	00176: CALL       
+	00177: RTG        
+	00178: SRP0       
+	00179: MIRP[srp0,nmd,rd,2] 
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: RTHG       
+	00182: IP         
+	00183: MDAP[rd]   
+	00184: SHP[rp2,zp1] 
+	00185: RTG        
+	00186: MDAP[rd]   
+	00187: CALL       
+	00188: SRP1       
+	00189: SRP2       
+	00190: IP         
+	00191: MDAP[rd]   
+	00192: CALL       
+	00193: MIRP[nrp0,md,rd,1] 
+	00194: SHP[rp1,zp0] 
+	00195: SHP[rp2,zp1] 
+	00196: RTHG       
+	00197: MDAP[rd]   
+	00198: CALL       
+	00199: SHP[rp1,zp0] 
+	00200: RTG        
+	00201: SRP1       
+	00202: SRP2       
+	00203: IP         
+	00204: MDAP[rd]   
+	00205: DELTAP1    
+	00206: MIRP[nrp0,md,rd,1] 
+	00207: IP         
+	00208: IP         
+	00209: SHP[rp2,zp1] 
+	00210: RTHG       
+	00211: MDAP[rd]   
+	00212: CALL       
+	00213: SVTCA[y-axis] 
+	00214: RTG        
+	00215: MDAP[rd]   
+	00216: MIRP[nrp0,md,rd,1] 
+	00217: MIAP[rd+ci] 
+	00218: SHP[rp1,zp0] 
+	00219: MDAP[rd]   
+	00220: MIRP[nrp0,md,rd,1] 
+	00221: MDAP[rd]   
+	00222: MIRP[nrp0,md,rd,1] 
+	00223: SRP1       
+	00224: SRP2       
+	00225: IP         
+	00226: IP         
+	00227: SHP[rp2,zp1] 
+	00228: SRP2       
+	00229: IP         
+	00230: MDAP[rd]   
+	00231: SRP1       
+	00232: IP         
+	00233: MDAP[rd]   
+	00234: SRP1       
+	00235: IP         
+	00236: MDAP[rd]   
+	00237: IUP[y]     
+	00238: IUP[x]     
+	00239: SVTCA[x-axis] 
+	00240: DELTAP1    
+	00241: DELTAP1    
+	00242: DELTAP1    
+	00243: DELTAP1    
+	00244: SVTCA[y-axis] 
+	00245: DELTAP2    
+	00246: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short X-Short Off
+	 10:        XDual                         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:        XDual                 X-Short Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:                      Y-Short X-Short On
+	 42:                      Y-Short X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short         On
+	 49:  YDual XDual         Y-Short         Off
+	 50:  YDual               Y-Short X-Short On
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short         On
+	 54:        XDual                         Off
+	 55:  YDual                       X-Short On
+	 56:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   784,    73)  ->  Abs (   784,    73)
+	  1: Rel (   -47,   -72)  ->  Abs (   737,     1)
+	  2: Rel (   -60,     0)  ->  Abs (   677,     1)
+	  3: Rel (   -45,     0)  ->  Abs (   632,     1)
+	  4: Rel (   -43,    35)  ->  Abs (   589,    36)
+	  5: Rel (    -8,  -191)  ->  Abs (   581,  -155)
+	  6: Rel (  -173,  -216)  ->  Abs (   408,  -371)
+	  7: Rel (  -152,     0)  ->  Abs (   256,  -371)
+	  8: Rel (  -113,     0)  ->  Abs (   143,  -371)
+	  9: Rel (  -137,   141)  ->  Abs (     6,  -230)
+	 10: Rel (     0,   267)  ->  Abs (     6,    37)
+	 11: Rel (     0,   146)  ->  Abs (     6,   183)
+	 12: Rel (   174,   331)  ->  Abs (   180,   514)
+	 13: Rel (    53,     0)  ->  Abs (   233,   514)
+	 14: Rel (    12,     0)  ->  Abs (   245,   514)
+	 15: Rel (     0,   -14)  ->  Abs (   245,   500)
+	 16: Rel (  -111,  -215)  ->  Abs (   134,   285)
+	 17: Rel (   -45,  -198)  ->  Abs (    89,    87)
+	 18: Rel (     0,   -70)  ->  Abs (    89,    17)
+	 19: Rel (     0,  -117)  ->  Abs (    89,  -100)
+	 20: Rel (    99,  -141)  ->  Abs (   188,  -241)
+	 21: Rel (    90,     0)  ->  Abs (   278,  -241)
+	 22: Rel (   241,     0)  ->  Abs (   519,  -241)
+	 23: Rel (     0,   239)  ->  Abs (   519,    -2)
+	 24: Rel (     0,   161)  ->  Abs (   519,   159)
+	 25: Rel (   -53,   123)  ->  Abs (   466,   282)
+	 26: Rel (    40,   242)  ->  Abs (   506,   524)
+	 27: Rel (    37,   -47)  ->  Abs (   543,   477)
+	 28: Rel (    49,  -229)  ->  Abs (   592,   248)
+	 29: Rel (     0,   -95)  ->  Abs (   592,   153)
+	 30: Rel (    34,   -29)  ->  Abs (   626,   124)
+	 31: Rel (    39,     0)  ->  Abs (   665,   124)
+	 32: Rel (    37,     0)  ->  Abs (   702,   124)
+	 33: Rel (    52,    67)  ->  Abs (   754,   191)
+	 34: Rel (    20,    82)  ->  Abs (   774,   273)
+	 35: Rel (    26,   117)  ->  Abs (   800,   390)
+	 36: Rel (    20,    93)  ->  Abs (   820,   483)
+	 37: Rel (    29,     0)  ->  Abs (   849,   483)
+	 38: Rel (    27,     0)  ->  Abs (   876,   483)
+	 39: Rel (     0,   -49)  ->  Abs (   876,   434)
+	 40: Rel (     0,   -28)  ->  Abs (   876,   406)
+	 41: Rel (   -10,   -58)  ->  Abs (   866,   348)
+	 42: Rel (   -10,   -58)  ->  Abs (   856,   290)
+	 43: Rel (     0,   -29)  ->  Abs (   856,   261)
+	 44: Rel (     0,  -134)  ->  Abs (   856,   127)
+	 45: Rel (   109,     0)  ->  Abs (   965,   127)
+	 46: Rel (    61,     0)  ->  Abs (  1026,   127)
+	 47: Rel (    42,    46)  ->  Abs (  1068,   173)
+	 48: Rel (     0,    59)  ->  Abs (  1068,   232)
+	 49: Rel (     0,   152)  ->  Abs (  1068,   384)
+	 50: Rel (   -73,   160)  ->  Abs (   995,   544)
+	 51: Rel (    92,   129)  ->  Abs (  1087,   673)
+	 52: Rel (    60,  -101)  ->  Abs (  1147,   572)
+	 53: Rel (     0,  -239)  ->  Abs (  1147,   333)
+	 54: Rel (     0,  -328)  ->  Abs (  1147,     5)
+	 55: Rel (  -240,     0)  ->  Abs (   907,     5)
+	 56: Rel (   -88,     0)  ->  Abs (   819,     5)
+
+	Glyph 946: off = 0x0002F364, len = 384
+	  numberOfContours:	1
+	  xMin:			6
+	  yMin:			-371
+	  xMax:			1229
+	  yMax:			671
+
+	EndPoints
+	---------
+	  0:  64
+
+	  Length of Instructions:	203
+	00000: NPUSHB      (20):    43    24    18    22    52    47    47    11    36    36 
+	                            11    22    22    61    39     9    13    41    11    55 
+	00022: PUSHW[4]            907     7    41   907 
+	00031: PUSHB[3]             11    60    61 
+	00035: PUSHW[3]            917    30   909 
+	00042: PUSHB[3]             16     4     0 
+	00046: PUSHW[1]            907 
+	00049: NPUSHB      (11):     1     9    64     9    22    52     9     9    53    51 
+	                            45 
+	00062: PUSHW[1]            884 
+	00065: NPUSHB      (17):     0    49     1    49    49     1    39    34    36    64 
+	                             9    22    52    36    36    13    32 
+	00084: PUSHW[1]            883 
+	00087: NPUSHB      (25):    15    39    64    39     2    39    39     1    19    60 
+	                             4    58     3    64    61    96    61   112    61     3 
+	                            61    61     0     1    24 
+	00114: PUSHW[1]            -64 
+	00117: PUSHB[6]             14    15    52    24    24    27 
+	00124: PUSHW[1]            931 
+	00127: PUSHB[2]             19     4 
+	00130: SCANTYPE   
+	00131: MDAP[rd]   
+	00132: MIRP[srp0,md,rd,1] 
+	00133: SHP[rp2,zp1] 
+	00134: RDTG       
+	00135: MDAP[rd]   
+	00136: CALL       
+	00137: RTG        
+	00138: MDAP[rd]   
+	00139: ALIGNRP    
+	00140: SHP[rp1,zp0] 
+	00141: RTHG       
+	00142: MDAP[rd]   
+	00143: DELTAP1    
+	00144: SLOOP      
+	00145: SHP[rp1,zp0] 
+	00146: RTG        
+	00147: SRP1       
+	00148: SRP2       
+	00149: IP         
+	00150: MDAP[rd]   
+	00151: DELTAP1    
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: SHP[rp1,zp0] 
+	00154: SHP[rp2,zp1] 
+	00155: RTHG       
+	00156: MDAP[rd]   
+	00157: CALL       
+	00158: SHP[rp1,zp0] 
+	00159: RTG        
+	00160: SRP1       
+	00161: SRP2       
+	00162: IP         
+	00163: MDAP[rd]   
+	00164: DELTAP1    
+	00165: MIRP[nrp0,md,rd,1] 
+	00166: IP         
+	00167: IP         
+	00168: SHP[rp2,zp1] 
+	00169: RTHG       
+	00170: MDAP[rd]   
+	00171: CALL       
+	00172: SVTCA[y-axis] 
+	00173: RTG        
+	00174: MDAP[rd]   
+	00175: MIRP[srp0,md,rd,1] 
+	00176: SHP[rp2,zp1] 
+	00177: MDAP[rd]   
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: MIAP[rd+ci] 
+	00180: SHP[rp1,zp0] 
+	00181: MDAP[rd]   
+	00182: MIRP[nrp0,md,rd,1] 
+	00183: MDAP[rd]   
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: SRP1       
+	00186: SRP2       
+	00187: IP         
+	00188: IP         
+	00189: SHP[rp2,zp1] 
+	00190: SRP2       
+	00191: IP         
+	00192: MDAP[rd]   
+	00193: SRP1       
+	00194: IP         
+	00195: MDAP[rd]   
+	00196: SRP1       
+	00197: IP         
+	00198: MDAP[rd]   
+	00199: IUP[y]     
+	00200: IUP[x]     
+	00201: SVTCA[x-axis] 
+	00202: CALL       
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual               Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:        XDual                         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:        XDual                 X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual               Y-Short X-Short On
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short X-Short On
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short Off
+	 49:        XDual         Y-Short         On
+	 50:        XDual         Y-Short         Off
+	 51:                      Y-Short X-Short On
+	 52:                      Y-Short X-Short Off
+	 53:        XDual         Y-Short         On
+	 54:        XDual         Y-Short         Off
+	 55:  YDual XDual                 X-Short On
+	 56:  YDual XDual                 X-Short Off
+	 57:  YDual XDual         Y-Short X-Short Off
+	 58:  YDual XDual         Y-Short         On
+	 59:  YDual XDual         Y-Short         Off
+	 60:  YDual               Y-Short X-Short On
+	 61:  YDual XDual         Y-Short X-Short On
+	 62:        XDual         Y-Short X-Short Off
+	 63:        XDual                 X-Short Off
+	 64:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,   123)  ->  Abs (  1229,   123)
+	  1: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	  2: Rel (   -34,     0)  ->  Abs (  1195,     0)
+	  3: Rel (   -76,    81)  ->  Abs (  1119,    81)
+	  4: Rel (    -8,    61)  ->  Abs (  1111,   142)
+	  5: Rel (   -36,   -84)  ->  Abs (  1075,    58)
+	  6: Rel (   -92,   -53)  ->  Abs (   983,     5)
+	  7: Rel (   -76,     0)  ->  Abs (   907,     5)
+	  8: Rel (   -88,     0)  ->  Abs (   819,     5)
+	  9: Rel (   -35,    68)  ->  Abs (   784,    73)
+	 10: Rel (   -47,   -72)  ->  Abs (   737,     1)
+	 11: Rel (   -61,     0)  ->  Abs (   676,     1)
+	 12: Rel (   -45,     0)  ->  Abs (   631,     1)
+	 13: Rel (   -42,    34)  ->  Abs (   589,    35)
+	 14: Rel (    -8,  -189)  ->  Abs (   581,  -154)
+	 15: Rel (  -173,  -217)  ->  Abs (   408,  -371)
+	 16: Rel (  -153,     0)  ->  Abs (   255,  -371)
+	 17: Rel (  -113,     0)  ->  Abs (   142,  -371)
+	 18: Rel (  -136,   142)  ->  Abs (     6,  -229)
+	 19: Rel (     0,   266)  ->  Abs (     6,    37)
+	 20: Rel (     0,   147)  ->  Abs (     6,   184)
+	 21: Rel (   174,   329)  ->  Abs (   180,   513)
+	 22: Rel (    53,     0)  ->  Abs (   233,   513)
+	 23: Rel (    11,     0)  ->  Abs (   244,   513)
+	 24: Rel (     0,   -13)  ->  Abs (   244,   500)
+	 25: Rel (  -111,  -217)  ->  Abs (   133,   283)
+	 26: Rel (   -44,  -197)  ->  Abs (    89,    86)
+	 27: Rel (     0,   -70)  ->  Abs (    89,    16)
+	 28: Rel (     0,  -116)  ->  Abs (    89,  -100)
+	 29: Rel (    99,  -141)  ->  Abs (   188,  -241)
+	 30: Rel (    89,     0)  ->  Abs (   277,  -241)
+	 31: Rel (   242,     0)  ->  Abs (   519,  -241)
+	 32: Rel (     0,   239)  ->  Abs (   519,    -2)
+	 33: Rel (     0,   161)  ->  Abs (   519,   159)
+	 34: Rel (   -54,   123)  ->  Abs (   465,   282)
+	 35: Rel (    16,    80)  ->  Abs (   481,   362)
+	 36: Rel (    25,   162)  ->  Abs (   506,   524)
+	 37: Rel (    37,   -46)  ->  Abs (   543,   478)
+	 38: Rel (    49,  -231)  ->  Abs (   592,   247)
+	 39: Rel (     0,   -95)  ->  Abs (   592,   152)
+	 40: Rel (    34,   -28)  ->  Abs (   626,   124)
+	 41: Rel (    39,     0)  ->  Abs (   665,   124)
+	 42: Rel (    36,     0)  ->  Abs (   701,   124)
+	 43: Rel (    53,    67)  ->  Abs (   754,   191)
+	 44: Rel (    27,   111)  ->  Abs (   781,   302)
+	 45: Rel (    19,    88)  ->  Abs (   800,   390)
+	 46: Rel (    20,    93)  ->  Abs (   820,   483)
+	 47: Rel (    29,     0)  ->  Abs (   849,   483)
+	 48: Rel (    27,     0)  ->  Abs (   876,   483)
+	 49: Rel (     0,   -49)  ->  Abs (   876,   434)
+	 50: Rel (     0,   -29)  ->  Abs (   876,   405)
+	 51: Rel (   -10,   -57)  ->  Abs (   866,   348)
+	 52: Rel (   -11,   -58)  ->  Abs (   855,   290)
+	 53: Rel (     0,   -29)  ->  Abs (   855,   261)
+	 54: Rel (     0,  -134)  ->  Abs (   855,   127)
+	 55: Rel (   110,     0)  ->  Abs (   965,   127)
+	 56: Rel (    58,     0)  ->  Abs (  1023,   127)
+	 57: Rel (    45,    38)  ->  Abs (  1068,   165)
+	 58: Rel (     0,    67)  ->  Abs (  1068,   232)
+	 59: Rel (     0,   108)  ->  Abs (  1068,   340)
+	 60: Rel (   -59,   202)  ->  Abs (  1009,   542)
+	 61: Rel (    92,   129)  ->  Abs (  1101,   671)
+	 62: Rel (    44,  -170)  ->  Abs (  1145,   501)
+	 63: Rel (     1,  -278)  ->  Abs (  1146,   223)
+	 64: Rel (    51,  -100)  ->  Abs (  1197,   123)
+
+	Glyph 947: off = 0x0002F4E4, len = 326
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1135
+	  yMax:			672
+
+	EndPoints
+	---------
+	  0:  47
+
+	  Length of Instructions:	193
+	00000: NPUSHB      (35):    11    40     1     3    45    38    45    54    45    70 
+	                            45   171    11   171    25     6   121    25     1    11 
+	                            44    14    17    52    28    28     2    15    15    41 
+	                             0     4    23     2    36 
+	00037: PUSHW[4]            907    46    23   907 
+	00046: PUSHB[3]              2    40    41 
+	00050: PUSHW[3]            917     8   907 
+	00057: NPUSHB      (14):     7     4     4    17     0     0    26    21    19    13 
+	                            17    34    32    26 
+	00073: PUSHW[1]            883 
+	00076: PUSHB[5]            175    30     1    30    13 
+	00082: PUSHW[1]            887 
+	00085: NPUSHB      (27):    17    30    30   143    17   144    17     2    16    17 
+	                           127    17     2    17    17    44     7    40    64    15 
+	                            22    52    40    40    41    41    38 
+	00114: PUSHW[3]            885    44   952 
+	00121: PUSHB[4]             49     8     7     4 
+	00126: SCANTYPE   
+	00127: MDAP[rd]   
+	00128: ALIGNRP    
+	00129: SRP0       
+	00130: MIRP[srp0,nmd,rd,2] 
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: RTHG       
+	00133: IP         
+	00134: MDAP[rd]   
+	00135: SHP[rp2,zp1] 
+	00136: RTG        
+	00137: MDAP[rd]   
+	00138: CALL       
+	00139: SRP1       
+	00140: SRP2       
+	00141: IP         
+	00142: MDAP[rd]   
+	00143: DELTAP1    
+	00144: DELTAP1    
+	00145: IP         
+	00146: MDAP[rd]   
+	00147: SRP0       
+	00148: MIRP[nrp0,md,rd,1] 
+	00149: SRP0       
+	00150: DELTAP1    
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: IP         
+	00153: IP         
+	00154: SRP1       
+	00155: SRP2       
+	00156: IP         
+	00157: IP         
+	00158: SRP1       
+	00159: SHP[rp1,zp0] 
+	00160: RTHG       
+	00161: MDAP[rd]   
+	00162: SRP1       
+	00163: SHP[rp1,zp0] 
+	00164: MDAP[rd]   
+	00165: SVTCA[y-axis] 
+	00166: RTG        
+	00167: MDAP[rd]   
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: MIAP[rd+ci] 
+	00170: SHP[rp1,zp0] 
+	00171: MDAP[rd]   
+	00172: MIRP[nrp0,md,rd,1] 
+	00173: MDAP[rd]   
+	00174: MIRP[nrp0,md,rd,1] 
+	00175: SRP1       
+	00176: SRP2       
+	00177: IP         
+	00178: IP         
+	00179: SRP2       
+	00180: IP         
+	00181: MDAP[rd]   
+	00182: SRP1       
+	00183: IP         
+	00184: MDAP[rd]   
+	00185: IUP[y]     
+	00186: IUP[x]     
+	00187: SVTCA[x-axis] 
+	00188: CALL       
+	00189: DELTAP1    
+	00190: DELTAP1    
+	00191: SVTCA[y-axis] 
+	00192: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                               On
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual                               On
+	 10:  YDual XDual                 X-Short Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:                      Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short On
+	 33:                      Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual               Y-Short X-Short On
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:        XDual         Y-Short X-Short Off
+	 43:        XDual         Y-Short X-Short Off
+	 44:        XDual         Y-Short         On
+	 45:        XDual                         Off
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   768,    72)  ->  Abs (   768,    72)
+	  1: Rel (   -69,   -72)  ->  Abs (   699,     0)
+	  2: Rel (   -70,     0)  ->  Abs (   629,     0)
+	  3: Rel (  -125,     0)  ->  Abs (   504,     0)
+	  4: Rel (   -37,    90)  ->  Abs (   467,    90)
+	  5: Rel (   -86,   -90)  ->  Abs (   381,     0)
+	  6: Rel (   -94,     0)  ->  Abs (   287,     0)
+	  7: Rel (  -287,     0)  ->  Abs (     0,     0)
+	  8: Rel (     0,   123)  ->  Abs (     0,   123)
+	  9: Rel (   287,     0)  ->  Abs (   287,   123)
+	 10: Rel (    40,     0)  ->  Abs (   327,   123)
+	 11: Rel (    65,    64)  ->  Abs (   392,   187)
+	 12: Rel (    32,    78)  ->  Abs (   424,   265)
+	 13: Rel (    45,   117)  ->  Abs (   469,   382)
+	 14: Rel (    35,    91)  ->  Abs (   504,   473)
+	 15: Rel (    35,     0)  ->  Abs (   539,   473)
+	 16: Rel (    21,     0)  ->  Abs (   560,   473)
+	 17: Rel (     0,   -29)  ->  Abs (   560,   444)
+	 18: Rel (     0,   -17)  ->  Abs (   560,   427)
+	 19: Rel (   -29,   -84)  ->  Abs (   531,   343)
+	 20: Rel (   -28,   -85)  ->  Abs (   503,   258)
+	 21: Rel (     0,   -46)  ->  Abs (   503,   212)
+	 22: Rel (     0,   -91)  ->  Abs (   503,   121)
+	 23: Rel (   117,     0)  ->  Abs (   620,   121)
+	 24: Rel (    42,     0)  ->  Abs (   662,   121)
+	 25: Rel (    58,    98)  ->  Abs (   720,   219)
+	 26: Rel (    32,   169)  ->  Abs (   752,   388)
+	 27: Rel (    16,    86)  ->  Abs (   768,   474)
+	 28: Rel (    33,     0)  ->  Abs (   801,   474)
+	 29: Rel (    24,     0)  ->  Abs (   825,   474)
+	 30: Rel (     0,   -45)  ->  Abs (   825,   429)
+	 31: Rel (     0,   -25)  ->  Abs (   825,   404)
+	 32: Rel (    -9,   -63)  ->  Abs (   816,   341)
+	 33: Rel (    -9,   -63)  ->  Abs (   807,   278)
+	 34: Rel (     0,   -32)  ->  Abs (   807,   246)
+	 35: Rel (     0,  -125)  ->  Abs (   807,   121)
+	 36: Rel (   126,     0)  ->  Abs (   933,   121)
+	 37: Rel (   123,     0)  ->  Abs (  1056,   121)
+	 38: Rel (     0,   106)  ->  Abs (  1056,   227)
+	 39: Rel (     0,   139)  ->  Abs (  1056,   366)
+	 40: Rel (   -74,   177)  ->  Abs (   982,   543)
+	 41: Rel (    93,   129)  ->  Abs (  1075,   672)
+	 42: Rel (    25,   -41)  ->  Abs (  1100,   631)
+	 43: Rel (    35,  -212)  ->  Abs (  1135,   419)
+	 44: Rel (     0,   -79)  ->  Abs (  1135,   340)
+	 45: Rel (     0,  -340)  ->  Abs (  1135,     0)
+	 46: Rel (  -245,     0)  ->  Abs (   890,     0)
+	 47: Rel (   -85,     0)  ->  Abs (   805,     0)
+
+	Glyph 948: off = 0x0002F62A, len = 340
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			660
+
+	EndPoints
+	---------
+	  0:  54
+
+	  Length of Instructions:	189
+	00000: NPUSHB      (18):   134     3   164     3     2   121    25   175    23     2 
+	                           106    23   122    23   138    23     3     4 
+	00020: PUSHW[1]            907 
+	00023: NPUSHB      (14):     5     8    49    41    41    14    27    27     0    12 
+	                            16    35    14    49 
+	00039: PUSHW[4]            907    10    35   907 
+	00048: PUSHB[3]             14    53     0 
+	00052: PUSHW[3]            917    20   907 
+	00059: NPUSHB      (14):    19    16    33    16    29    12    12    39    31    25 
+	                            29    47    45    39 
+	00075: PUSHW[4]            882    43    25   887 
+	00084: NPUSHB      (32):    29     0    43     1    43    43   111    29   175    29 
+	                             2    32    29    48    29     2    29    29     5    19 
+	                             8     2    51    53    53     0     0     4     5    20 
+	                            19     4 
+	00118: SCANTYPE   
+	00119: MDAP[rd]   
+	00120: ALIGNRP    
+	00121: MDAP[rd]   
+	00122: ALIGNRP    
+	00123: SHP[rp1,zp0] 
+	00124: RTHG       
+	00125: MDAP[rd]   
+	00126: SHP[rp1,zp0] 
+	00127: RTG        
+	00128: MDAP[rd]   
+	00129: IP         
+	00130: SHP[rp2,zp1] 
+	00131: SHP[rp2,zp1] 
+	00132: SRP1       
+	00133: SRP2       
+	00134: IP         
+	00135: MDAP[rd]   
+	00136: DELTAP1    
+	00137: DELTAP1    
+	00138: IP         
+	00139: MDAP[rd]   
+	00140: DELTAP1    
+	00141: SRP0       
+	00142: MIRP[nrp0,md,rd,1] 
+	00143: SRP0       
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: IP         
+	00146: IP         
+	00147: SRP1       
+	00148: SRP2       
+	00149: IP         
+	00150: SRP1       
+	00151: SHP[rp1,zp0] 
+	00152: RTHG       
+	00153: MDAP[rd]   
+	00154: SRP1       
+	00155: SHP[rp1,zp0] 
+	00156: SHP[rp1,zp0] 
+	00157: MDAP[rd]   
+	00158: SVTCA[y-axis] 
+	00159: RTG        
+	00160: MDAP[rd]   
+	00161: MIRP[nrp0,md,rd,1] 
+	00162: MIAP[rd+ci] 
+	00163: SHP[rp1,zp0] 
+	00164: MDAP[rd]   
+	00165: MIRP[nrp0,md,rd,1] 
+	00166: MDAP[rd]   
+	00167: MIRP[nrp0,md,rd,1] 
+	00168: SRP1       
+	00169: SRP2       
+	00170: IP         
+	00171: IP         
+	00172: SRP2       
+	00173: IP         
+	00174: MDAP[rd]   
+	00175: SRP1       
+	00176: IP         
+	00177: MDAP[rd]   
+	00178: SRP1       
+	00179: SHP[rp1,zp0] 
+	00180: MDAP[rd]   
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: IUP[y]     
+	00183: IUP[x]     
+	00184: SVTCA[x-axis] 
+	00185: DELTAP1    
+	00186: DELTAP1    
+	00187: SVTCA[y-axis] 
+	00188: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short X-Short Off
+	  4:  YDual XDual                 X-Short On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short On
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:                      Y-Short X-Short On
+	 32:                      Y-Short X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:                      Y-Short X-Short On
+	 46:                      Y-Short X-Short Off
+	 47:        XDual         Y-Short         On
+	 48:        XDual         Y-Short         Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         Off
+	 53:  YDual               Y-Short X-Short On
+	 54:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   971,   660)  ->  Abs (   971,   660)
+	  1: Rel (    55,   -86)  ->  Abs (  1026,   574)
+	  2: Rel (     0,  -234)  ->  Abs (  1026,   340)
+	  3: Rel (    29,  -217)  ->  Abs (  1055,   123)
+	  4: Rel (   174,     0)  ->  Abs (  1229,   123)
+	  5: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	  6: Rel (  -100,     0)  ->  Abs (  1129,     0)
+	  7: Rel (   -84,    71)  ->  Abs (  1045,    71)
+	  8: Rel (   -38,   125)  ->  Abs (  1007,   196)
+	  9: Rel (   -41,  -196)  ->  Abs (   966,     0)
+	 10: Rel (  -186,     0)  ->  Abs (   780,     0)
+	 11: Rel (   -85,     0)  ->  Abs (   695,     0)
+	 12: Rel (   -37,    72)  ->  Abs (   658,    72)
+	 13: Rel (   -69,   -72)  ->  Abs (   589,     0)
+	 14: Rel (   -70,     0)  ->  Abs (   519,     0)
+	 15: Rel (  -125,     0)  ->  Abs (   394,     0)
+	 16: Rel (   -37,    90)  ->  Abs (   357,    90)
+	 17: Rel (   -86,   -90)  ->  Abs (   271,     0)
+	 18: Rel (   -94,     0)  ->  Abs (   177,     0)
+	 19: Rel (  -177,     0)  ->  Abs (     0,     0)
+	 20: Rel (     0,   123)  ->  Abs (     0,   123)
+	 21: Rel (   177,     0)  ->  Abs (   177,   123)
+	 22: Rel (    40,     0)  ->  Abs (   217,   123)
+	 23: Rel (    66,    64)  ->  Abs (   283,   187)
+	 24: Rel (    42,   103)  ->  Abs (   325,   290)
+	 25: Rel (    36,    92)  ->  Abs (   361,   382)
+	 26: Rel (    34,    91)  ->  Abs (   395,   473)
+	 27: Rel (    34,     0)  ->  Abs (   429,   473)
+	 28: Rel (    21,     0)  ->  Abs (   450,   473)
+	 29: Rel (     0,   -29)  ->  Abs (   450,   444)
+	 30: Rel (     0,   -17)  ->  Abs (   450,   427)
+	 31: Rel (   -29,   -84)  ->  Abs (   421,   343)
+	 32: Rel (   -28,   -85)  ->  Abs (   393,   258)
+	 33: Rel (     0,   -46)  ->  Abs (   393,   212)
+	 34: Rel (     0,   -91)  ->  Abs (   393,   121)
+	 35: Rel (   117,     0)  ->  Abs (   510,   121)
+	 36: Rel (    32,     0)  ->  Abs (   542,   121)
+	 37: Rel (    52,    62)  ->  Abs (   594,   183)
+	 38: Rel (    30,    96)  ->  Abs (   624,   279)
+	 39: Rel (    23,   128)  ->  Abs (   647,   407)
+	 40: Rel (    12,    67)  ->  Abs (   659,   474)
+	 41: Rel (    32,     0)  ->  Abs (   691,   474)
+	 42: Rel (    24,     0)  ->  Abs (   715,   474)
+	 43: Rel (     0,   -45)  ->  Abs (   715,   429)
+	 44: Rel (     0,   -25)  ->  Abs (   715,   404)
+	 45: Rel (    -9,   -63)  ->  Abs (   706,   341)
+	 46: Rel (    -9,   -63)  ->  Abs (   697,   278)
+	 47: Rel (     0,   -32)  ->  Abs (   697,   246)
+	 48: Rel (     0,  -125)  ->  Abs (   697,   121)
+	 49: Rel (   126,     0)  ->  Abs (   823,   121)
+	 50: Rel (   123,     0)  ->  Abs (   946,   121)
+	 51: Rel (     0,   106)  ->  Abs (   946,   227)
+	 52: Rel (     0,   194)  ->  Abs (   946,   421)
+	 53: Rel (   -53,   126)  ->  Abs (   893,   547)
+	 54: Rel (    41,    50)  ->  Abs (   934,   597)
+
+	Glyph 949: off = 0x0002F77E, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			6
+	  yMin:			-371
+	  xMax:			1147
+	  yMax:			1176
+
+	     0: Flags:		0x0236
+		Glyf Index:	945
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1101
+		X BOffset:	55
+		Y BOffset:	86
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     2     1    64    62     1    62     2     1     0    59 
+	                             1    59 
+	00014: SVTCA[x-axis] 
+	00015: SRP1       
+	00016: DELTAP1    
+	00017: SHC[rp1,zp0] 
+	00018: SHC[rp1,zp0] 
+	00019: SVTCA[y-axis] 
+	00020: SRP1       
+	00021: DELTAP1    
+	00022: SHC[rp1,zp0] 
+	00023: SHC[rp1,zp0] 
+
+	Glyph 950: off = 0x0002F7AE, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			6
+	  yMin:			-371
+	  xMax:			1229
+	  yMax:			1176
+
+	     0: Flags:		0x0236
+		Glyf Index:	946
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1101
+		X BOffset:	55
+		Y BOffset:	86
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     2     1    64    76     1    76     2     1     0    67 
+	                             1    67 
+	00014: SVTCA[x-axis] 
+	00015: SRP1       
+	00016: DELTAP1    
+	00017: SHC[rp1,zp0] 
+	00018: SHC[rp1,zp0] 
+	00019: SVTCA[y-axis] 
+	00020: SRP1       
+	00021: DELTAP1    
+	00022: SHC[rp1,zp0] 
+	00023: SHC[rp1,zp0] 
+
+	Glyph 951: off = 0x0002F7DE, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1135
+	  yMax:			1165
+
+	     0: Flags:		0x0236
+		Glyf Index:	947
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1101
+		X BOffset:	127
+		Y BOffset:	75
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     2     1    15    51    63    51     2    51     2     1 
+	                             0    50    16    50     2    50 
+	00018: SVTCA[x-axis] 
+	00019: SRP1       
+	00020: DELTAP1    
+	00021: SHC[rp1,zp0] 
+	00022: SHC[rp1,zp0] 
+	00023: SVTCA[y-axis] 
+	00024: SRP1       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+	00027: SHC[rp1,zp0] 
+
+	Glyph 952: off = 0x0002F812, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1164
+
+	     0: Flags:		0x0236
+		Glyf Index:	948
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1101
+		X BOffset:	39
+		Y BOffset:	74
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     2     1    15    58    31    58    63    58     3    58 
+	                             2     1    64    61     1    61 
+	00018: SVTCA[x-axis] 
+	00019: SRP1       
+	00020: DELTAP2    
+	00021: SHC[rp1,zp0] 
+	00022: SHC[rp1,zp0] 
+	00023: SVTCA[y-axis] 
+	00024: SRP1       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+	00027: SHC[rp1,zp0] 
+
+	Glyph 953: off = 0x0002F846, len = 314
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			-385
+	  xMax:			1218
+	  yMax:			625
+
+	EndPoints
+	---------
+	  0:  40
+	  1:  51
+
+	  Length of Instructions:	163
+	00000: NPUSHB      (24):    38    37    73     5   165     2   184    46   200    46 
+	                             5    53    37    69    37    85    37     3    26    26 
+	                            10    10    39    33 
+	00026: PUSHW[1]            910 
+	00029: NPUSHB      (12):     0    47    16    47     2    47    47     0    29    31 
+	                            42    41 
+	00043: PUSHW[8]            907    39   858    20   909     3    41   880 
+	00060: NPUSHB      (17):     0    31     1    31    31    35    29    24    26    64 
+	                             9    22    52    26    26     0    22 
+	00079: PUSHW[1]            883 
+	00082: PUSHB[7]             15    29     1    29    29     7    44 
+	00090: PUSHW[4]            884    35    14   -64 
+	00099: PUSHB[6]             13    15    52    14    14    17 
+	00106: PUSHW[1]            931 
+	00109: PUSHB[2]              7     4 
+	00112: SCANTYPE   
+	00113: MDAP[rd]   
+	00114: MIRP[srp0,md,rd,1] 
+	00115: SHP[rp2,zp1] 
+	00116: RDTG       
+	00117: MDAP[rd]   
+	00118: CALL       
+	00119: RTG        
+	00120: MDAP[rd]   
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: SRP2       
+	00123: IP         
+	00124: MDAP[rd]   
+	00125: DELTAP1    
+	00126: MIRP[nrp0,md,rd,1] 
+	00127: SHP[rp1,zp0] 
+	00128: SHP[rp2,zp1] 
+	00129: RTHG       
+	00130: MDAP[rd]   
+	00131: CALL       
+	00132: SHP[rp1,zp0] 
+	00133: RTG        
+	00134: SRP1       
+	00135: SRP2       
+	00136: IP         
+	00137: MDAP[rd]   
+	00138: DELTAP1    
+	00139: MIRP[nrp0,md,rd,1] 
+	00140: SVTCA[y-axis] 
+	00141: MDAP[rd]   
+	00142: MIRP[nrp0,md,rd,1] 
+	00143: MIAP[rd+ci] 
+	00144: MIRP[srp0,md,rd,1] 
+	00145: ALIGNRP    
+	00146: SHP[rp2,zp1] 
+	00147: SHP[rp2,zp1] 
+	00148: IP         
+	00149: SHP[rp2,zp1] 
+	00150: MDAP[rd]   
+	00151: DELTAP1    
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: SRP1       
+	00154: IP         
+	00155: MDAP[rd]   
+	00156: SHP[rp1,zp0] 
+	00157: MDAP[rd]   
+	00158: IUP[y]     
+	00159: IUP[x]     
+	00160: SVTCA[x-axis] 
+	00161: DELTAP1    
+	00162: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:        XDual                 X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:                              X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short X-Short On
+	 32:        XDual                 X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual                         On
+	 36:        XDual         Y-Short         Off
+	 37:                      Y-Short X-Short Off
+	 38:                      Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual                               On
+	 43:  YDual XDual                 X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short Off
+	 49:                      Y-Short X-Short Off
+	 50:                      Y-Short X-Short Off
+	 51:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   573,    33)  ->  Abs (   573,    33)
+	  1: Rel (    -6,  -195)  ->  Abs (   567,  -162)
+	  2: Rel (  -163,  -223)  ->  Abs (   404,  -385)
+	  3: Rel (  -147,     0)  ->  Abs (   257,  -385)
+	  4: Rel (   -97,     0)  ->  Abs (   160,  -385)
+	  5: Rel (  -118,    85)  ->  Abs (    42,  -300)
+	  6: Rel (   -42,   166)  ->  Abs (     0,  -134)
+	  7: Rel (     0,   165)  ->  Abs (     0,    31)
+	  8: Rel (     0,   159)  ->  Abs (     0,   190)
+	  9: Rel (   168,   321)  ->  Abs (   168,   511)
+	 10: Rel (    49,     0)  ->  Abs (   217,   511)
+	 11: Rel (     8,     0)  ->  Abs (   225,   511)
+	 12: Rel (     0,   -12)  ->  Abs (   225,   499)
+	 13: Rel (     0,     1)  ->  Abs (   225,   500)
+	 14: Rel (    -3,    -7)  ->  Abs (   222,   493)
+	 15: Rel (   -32,   -71)  ->  Abs (   190,   422)
+	 16: Rel (  -110,  -287)  ->  Abs (    80,   135)
+	 17: Rel (     0,  -117)  ->  Abs (    80,    18)
+	 18: Rel (     0,  -125)  ->  Abs (    80,  -107)
+	 19: Rel (    95,  -146)  ->  Abs (   175,  -253)
+	 20: Rel (    89,     0)  ->  Abs (   264,  -253)
+	 21: Rel (   240,     0)  ->  Abs (   504,  -253)
+	 22: Rel (     0,   253)  ->  Abs (   504,     0)
+	 23: Rel (     0,   152)  ->  Abs (   504,   152)
+	 24: Rel (   -55,   127)  ->  Abs (   449,   279)
+	 25: Rel (    26,   112)  ->  Abs (   475,   391)
+	 26: Rel (    16,   131)  ->  Abs (   491,   522)
+	 27: Rel (    20,   -22)  ->  Abs (   511,   500)
+	 28: Rel (    65,  -247)  ->  Abs (   576,   253)
+	 29: Rel (     0,  -122)  ->  Abs (   576,   131)
+	 30: Rel (    12,    -4)  ->  Abs (   588,   127)
+	 31: Rel (    56,    -6)  ->  Abs (   644,   121)
+	 32: Rel (   185,   504)  ->  Abs (   829,   625)
+	 33: Rel (   197,     0)  ->  Abs (  1026,   625)
+	 34: Rel (   192,     0)  ->  Abs (  1218,   625)
+	 35: Rel (     0,  -353)  ->  Abs (  1218,   272)
+	 36: Rel (     0,   -90)  ->  Abs (  1218,   182)
+	 37: Rel (   -59,  -119)  ->  Abs (  1159,    63)
+	 38: Rel (  -136,   -65)  ->  Abs (  1023,    -2)
+	 39: Rel (  -210,     0)  ->  Abs (   813,    -2)
+	 40: Rel (  -198,     0)  ->  Abs (   615,    -2)
+	 41: Rel (    92,   123)  ->  Abs (   707,   121)
+	 42: Rel (   327,     0)  ->  Abs (  1034,   121)
+	 43: Rel (    97,     0)  ->  Abs (  1131,   121)
+	 44: Rel (     0,   118)  ->  Abs (  1131,   239)
+	 45: Rel (     0,    87)  ->  Abs (  1131,   326)
+	 46: Rel (   -98,   164)  ->  Abs (  1033,   490)
+	 47: Rel (   -72,     0)  ->  Abs (   961,   490)
+	 48: Rel (   -30,     0)  ->  Abs (   931,   490)
+	 49: Rel (   -60,   -42)  ->  Abs (   871,   448)
+	 50: Rel (   -58,   -83)  ->  Abs (   813,   365)
+	 51: Rel (   -14,   -34)  ->  Abs (   799,   331)
+
+	Glyph 954: off = 0x0002F980, len = 390
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			-386
+	  xMax:			1229
+	  yMax:			624
+
+	EndPoints
+	---------
+	  0:  45
+	  1:  56
+
+	  Length of Instructions:	226
+	00000: NPUSHB      (26):    73    15   105    15   188     5   204     5   252     5 
+	                             5   182    12   217    51   237     5     3   165    12 
+	                           185    51   201    51     3     6 
+	00028: PUSHW[1]            -32 
+	00031: NPUSHB       (9):    25    29    52    35    35    20    20     8    42 
+	00042: PUSHW[1]            910 
+	00045: NPUSHB      (12):     0    52    16    52     2    52    52    10    38    40 
+	                            47    46 
+	00059: PUSHW[7]            907     8     2   907     3    29   909 
+	00074: PUSHB[6]             13     5     0    49    44    46 
+	00081: PUSHW[1]            880 
+	00084: NPUSHB      (17):     0    40     1    40    40    44    38    33    35    64 
+	                             9    22    52    35    35    10    31 
+	00103: PUSHW[1]            883 
+	00106: PUSHB[7]             15    38     1    38    38    17    49 
+	00114: PUSHW[1]            884 
+	00117: NPUSHB      (25):    48    44    64    44    80    44   112    44     4   127 
+	                            44   224    44   240    44     3    47    44   176    44 
+	                           208    44     3    44    22 
+	00144: PUSHW[1]            -64 
+	00147: PUSHB[6]             13    15    52    22    22    27 
+	00154: PUSHW[1]            931 
+	00157: PUSHB[4]             17     2     3     4 
+	00162: SCANTYPE   
+	00163: MDAP[rd]   
+	00164: ALIGNRP    
+	00165: MDAP[rd]   
+	00166: MIRP[srp0,md,rd,1] 
+	00167: SHP[rp2,zp1] 
+	00168: RDTG       
+	00169: MDAP[rd]   
+	00170: CALL       
+	00171: RTG        
+	00172: MDAP[rd]   
+	00173: DELTAP1    
+	00174: DELTAP1    
+	00175: DELTAP2    
+	00176: MIRP[nrp0,md,rd,1] 
+	00177: SRP2       
+	00178: IP         
+	00179: MDAP[rd]   
+	00180: DELTAP1    
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: SHP[rp1,zp0] 
+	00183: SHP[rp2,zp1] 
+	00184: RTHG       
+	00185: MDAP[rd]   
+	00186: CALL       
+	00187: SHP[rp1,zp0] 
+	00188: RTG        
+	00189: SRP1       
+	00190: SRP2       
+	00191: IP         
+	00192: MDAP[rd]   
+	00193: DELTAP1    
+	00194: MIRP[nrp0,md,rd,1] 
+	00195: SRP1       
+	00196: SRP2       
+	00197: IP         
+	00198: IP         
+	00199: SVTCA[y-axis] 
+	00200: MDAP[rd]   
+	00201: MIRP[nrp0,md,rd,1] 
+	00202: MDAP[rd]   
+	00203: MIRP[nrp0,md,rd,1] 
+	00204: MDAP[rd]   
+	00205: MIRP[srp0,md,rd,1] 
+	00206: ALIGNRP    
+	00207: SHP[rp2,zp1] 
+	00208: SHP[rp2,zp1] 
+	00209: IP         
+	00210: SHP[rp2,zp1] 
+	00211: MDAP[rd]   
+	00212: DELTAP1    
+	00213: MIRP[nrp0,md,rd,1] 
+	00214: SRP1       
+	00215: IP         
+	00216: MDAP[rd]   
+	00217: SHP[rp1,zp0] 
+	00218: MDAP[rd]   
+	00219: IUP[y]     
+	00220: IUP[x]     
+	00221: SVTCA[x-axis] 
+	00222: CALL       
+	00223: DELTAP1    
+	00224: DELTAP1    
+	00225: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:        XDual                 X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:                              X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual                         Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual               Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:        XDual                 X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:        XDual                         On
+	 45:        XDual         Y-Short         Off
+	 46:                      Y-Short         On
+	 47:  YDual                               On
+	 48:  YDual XDual                 X-Short Off
+	 49:  YDual XDual         Y-Short         On
+	 50:  YDual XDual         Y-Short         Off
+	 51:  YDual               Y-Short X-Short Off
+	 52:  YDual                       X-Short On
+	 53:  YDual                       X-Short Off
+	 54:                      Y-Short X-Short Off
+	 55:                      Y-Short X-Short Off
+	 56:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1180,   129)  ->  Abs (  1180,   129)
+	  1: Rel (    13,    -6)  ->  Abs (  1193,   123)
+	  2: Rel (    36,     0)  ->  Abs (  1229,   123)
+	  3: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	  4: Rel (   -81,     0)  ->  Abs (  1148,     0)
+	  5: Rel (   -18,    69)  ->  Abs (  1130,    69)
+	  6: Rel (   -24,   -35)  ->  Abs (  1106,    34)
+	  7: Rel (  -120,   -37)  ->  Abs (   986,    -3)
+	  8: Rel (  -169,     0)  ->  Abs (   817,    -3)
+	  9: Rel (  -212,     0)  ->  Abs (   605,    -3)
+	 10: Rel (   -42,    35)  ->  Abs (   563,    32)
+	 11: Rel (    -6,  -194)  ->  Abs (   557,  -162)
+	 12: Rel (  -163,  -224)  ->  Abs (   394,  -386)
+	 13: Rel (  -147,     0)  ->  Abs (   247,  -386)
+	 14: Rel (   -88,     0)  ->  Abs (   159,  -386)
+	 15: Rel (  -114,    74)  ->  Abs (    45,  -312)
+	 16: Rel (   -45,   148)  ->  Abs (     0,  -164)
+	 17: Rel (     0,   195)  ->  Abs (     0,    31)
+	 18: Rel (     0,   159)  ->  Abs (     0,   190)
+	 19: Rel (   168,   321)  ->  Abs (   168,   511)
+	 20: Rel (    49,     0)  ->  Abs (   217,   511)
+	 21: Rel (     8,     0)  ->  Abs (   225,   511)
+	 22: Rel (     0,   -12)  ->  Abs (   225,   499)
+	 23: Rel (     0,     2)  ->  Abs (   225,   501)
+	 24: Rel (    -3,    -7)  ->  Abs (   222,   494)
+	 25: Rel (   -32,   -72)  ->  Abs (   190,   422)
+	 26: Rel (  -110,  -287)  ->  Abs (    80,   135)
+	 27: Rel (     0,  -117)  ->  Abs (    80,    18)
+	 28: Rel (     0,  -272)  ->  Abs (    80,  -254)
+	 29: Rel (   174,     0)  ->  Abs (   254,  -254)
+	 30: Rel (   240,     0)  ->  Abs (   494,  -254)
+	 31: Rel (     0,   253)  ->  Abs (   494,    -1)
+	 32: Rel (     0,   152)  ->  Abs (   494,   151)
+	 33: Rel (   -55,   127)  ->  Abs (   439,   278)
+	 34: Rel (    26,   113)  ->  Abs (   465,   391)
+	 35: Rel (    16,   130)  ->  Abs (   481,   521)
+	 36: Rel (    20,   -22)  ->  Abs (   501,   499)
+	 37: Rel (    65,  -246)  ->  Abs (   566,   253)
+	 38: Rel (     0,  -123)  ->  Abs (   566,   130)
+	 39: Rel (    18,    -7)  ->  Abs (   584,   123)
+	 40: Rel (    53,     0)  ->  Abs (   637,   123)
+	 41: Rel (   184,   501)  ->  Abs (   821,   624)
+	 42: Rel (   195,     0)  ->  Abs (  1016,   624)
+	 43: Rel (   192,     0)  ->  Abs (  1208,   624)
+	 44: Rel (     0,  -353)  ->  Abs (  1208,   271)
+	 45: Rel (     0,   -80)  ->  Abs (  1208,   191)
+	 46: Rel (  -501,   -70)  ->  Abs (   707,   121)
+	 47: Rel (   327,     0)  ->  Abs (  1034,   121)
+	 48: Rel (    97,     0)  ->  Abs (  1131,   121)
+	 49: Rel (     0,   120)  ->  Abs (  1131,   241)
+	 50: Rel (     0,    87)  ->  Abs (  1131,   328)
+	 51: Rel (   -98,   164)  ->  Abs (  1033,   492)
+	 52: Rel (   -72,     0)  ->  Abs (   961,   492)
+	 53: Rel (   -30,     0)  ->  Abs (   931,   492)
+	 54: Rel (   -60,   -42)  ->  Abs (   871,   450)
+	 55: Rel (   -57,   -84)  ->  Abs (   814,   366)
+	 56: Rel (   -15,   -34)  ->  Abs (   799,   332)
+
+	Glyph 955: off = 0x0002FB06, len = 258
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			-2
+	  xMax:			1174
+	  yMax:			618
+
+	EndPoints
+	---------
+	  0:  30
+	  1:  41
+
+	  Length of Instructions:	134
+	00000: NPUSHB      (27):    70     0   118    24   168     9   201    36   216    36 
+	                             5     5    27    22    27    38    21     3    15    12 
+	                            31    12     2    12    12    31    23 
+	00029: PUSHW[1]            909 
+	00032: NPUSHB      (10):     0    37    16    37     2    37    37     0    20    31 
+	00044: PUSHW[7]            907    29   858     5   907     4   858 
+	00059: PUSHB[6]             16    18     0     3    14    31 
+	00066: PUSHW[1]            883 
+	00069: PUSHB[7]              0    20     1    20    20    25    10 
+	00077: PUSHW[1]            883 
+	00080: PUSHB[4]             14    14     4    34 
+	00085: PUSHW[1]            884 
+	00088: PUSHB[7]             47    25     1    25     5     4     4 
+	00096: SCANTYPE   
+	00097: MDAP[rd]   
+	00098: ALIGNRP    
+	00099: MDAP[rd]   
+	00100: DELTAP1    
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: SRP2       
+	00103: IP         
+	00104: MDAP[rd]   
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: SRP2       
+	00107: IP         
+	00108: MDAP[rd]   
+	00109: DELTAP1    
+	00110: MIRP[nrp0,md,rd,1] 
+	00111: SRP1       
+	00112: SLOOP      
+	00113: SHP[rp1,zp0] 
+	00114: SVTCA[y-axis] 
+	00115: MIAP[rd+ci] 
+	00116: MIRP[nrp0,md,rd,1] 
+	00117: MIAP[rd+ci] 
+	00118: MIRP[srp0,md,rd,1] 
+	00119: SHP[rp2,zp1] 
+	00120: IP         
+	00121: SHP[rp2,zp1] 
+	00122: MDAP[rd]   
+	00123: DELTAP1    
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: SRP2       
+	00126: IP         
+	00127: MDAP[rd]   
+	00128: DELTAP1    
+	00129: IUP[y]     
+	00130: IUP[x]     
+	00131: SVTCA[x-axis] 
+	00132: DELTAP1    
+	00133: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual                         On
+	 26:        XDual         Y-Short         Off
+	 27:                      Y-Short X-Short Off
+	 28:                      Y-Short X-Short Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:  YDual                               On
+	 33:  YDual XDual                 X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:                      Y-Short X-Short Off
+	 40:                      Y-Short X-Short Off
+	 41:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   355,    90)  ->  Abs (   355,    90)
+	  1: Rel (   -51,   -55)  ->  Abs (   304,    35)
+	  2: Rel (  -109,   -35)  ->  Abs (   195,     0)
+	  3: Rel (  -124,     0)  ->  Abs (    71,     0)
+	  4: Rel (   -71,     0)  ->  Abs (     0,     0)
+	  5: Rel (     0,   123)  ->  Abs (     0,   123)
+	  6: Rel (   140,     0)  ->  Abs (   140,   123)
+	  7: Rel (    40,     0)  ->  Abs (   180,   123)
+	  8: Rel (    63,    36)  ->  Abs (   243,   159)
+	  9: Rel (    44,    66)  ->  Abs (   287,   225)
+	 10: Rel (    38,   106)  ->  Abs (   325,   331)
+	 11: Rel (    27,    73)  ->  Abs (   352,   404)
+	 12: Rel (    28,     0)  ->  Abs (   380,   404)
+	 13: Rel (    19,     0)  ->  Abs (   399,   404)
+	 14: Rel (     0,   -24)  ->  Abs (   399,   380)
+	 15: Rel (     0,   -23)  ->  Abs (   399,   357)
+	 16: Rel (   -10,   -45)  ->  Abs (   389,   312)
+	 17: Rel (    -9,   -46)  ->  Abs (   380,   266)
+	 18: Rel (     0,   -23)  ->  Abs (   380,   243)
+	 19: Rel (     0,  -115)  ->  Abs (   380,   128)
+	 20: Rel (   159,    -5)  ->  Abs (   539,   123)
+	 21: Rel (   178,   325)  ->  Abs (   717,   448)
+	 22: Rel (   187,   170)  ->  Abs (   904,   618)
+	 23: Rel (    84,     0)  ->  Abs (   988,   618)
+	 24: Rel (   186,     0)  ->  Abs (  1174,   618)
+	 25: Rel (     0,  -302)  ->  Abs (  1174,   316)
+	 26: Rel (     0,  -120)  ->  Abs (  1174,   196)
+	 27: Rel (  -109,  -147)  ->  Abs (  1065,    49)
+	 28: Rel (  -220,   -51)  ->  Abs (   845,    -2)
+	 29: Rel (  -212,     0)  ->  Abs (   633,    -2)
+	 30: Rel (  -241,     0)  ->  Abs (   392,    -2)
+	 31: Rel (   219,   123)  ->  Abs (   611,   121)
+	 32: Rel (   323,     0)  ->  Abs (   934,   121)
+	 33: Rel (   162,     0)  ->  Abs (  1096,   121)
+	 34: Rel (     0,   155)  ->  Abs (  1096,   276)
+	 35: Rel (     0,    83)  ->  Abs (  1096,   359)
+	 36: Rel (   -83,   130)  ->  Abs (  1013,   489)
+	 37: Rel (   -67,     0)  ->  Abs (   946,   489)
+	 38: Rel (   -36,     0)  ->  Abs (   910,   489)
+	 39: Rel (   -71,   -38)  ->  Abs (   839,   451)
+	 40: Rel (   -72,   -75)  ->  Abs (   767,   376)
+	 41: Rel (   -20,   -33)  ->  Abs (   747,   343)
+
+	Glyph 956: off = 0x0002FC08, len = 326
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			-2
+	  xMax:			1229
+	  yMax:			618
+
+	EndPoints
+	---------
+	  0:  35
+	  1:  46
+
+	  Length of Instructions:	188
+	00000: NPUSHB      (31):    40    30    73     5    70     9   121     5   138     5 
+	                           132    33   169     5   186     5   202     5   202    41 
+	                           218    41    11    36    30   116    33     2     0     5 
+	                             2 
+	00033: PUSHW[3]            907     3   858 
+	00040: NPUSHB       (9):    15    21    31    21     2    21    21     7    32 
+	00051: PUSHW[1]            909 
+	00054: NPUSHB      (10):     0    42    16    42     2    42    42     9    29    36 
+	00066: PUSHW[7]            907     7   858    14   907    13   858 
+	00081: NPUSHB      (10):     5     0    39    34    25    27     9     3    23    36 
+	00093: PUSHW[1]            883 
+	00096: PUSHB[7]              0    29     1    29    29    34    19 
+	00104: PUSHW[1]            883 
+	00107: PUSHB[4]             23    23    13    39 
+	00112: PUSHW[1]            884 
+	00115: NPUSHB      (21):    64    34     1    47    34   240    34     2   128    34 
+	                           160    34   208    34     3    34    14    13     2     3 
+	                             4 
+	00138: SCANTYPE   
+	00139: MDAP[rd]   
+	00140: ALIGNRP    
+	00141: MDAP[rd]   
+	00142: ALIGNRP    
+	00143: MDAP[rd]   
+	00144: DELTAP1    
+	00145: DELTAP1    
+	00146: DELTAP2    
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: SRP2       
+	00149: IP         
+	00150: MDAP[rd]   
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: SRP2       
+	00153: IP         
+	00154: MDAP[rd]   
+	00155: DELTAP1    
+	00156: MIRP[nrp0,md,rd,1] 
+	00157: SRP1       
+	00158: SLOOP      
+	00159: SHP[rp1,zp0] 
+	00160: SRP1       
+	00161: SRP2       
+	00162: IP         
+	00163: IP         
+	00164: SVTCA[y-axis] 
+	00165: MIAP[rd+ci] 
+	00166: MIRP[nrp0,md,rd,1] 
+	00167: MIAP[rd+ci] 
+	00168: MIRP[srp0,md,rd,1] 
+	00169: SHP[rp2,zp1] 
+	00170: IP         
+	00171: SHP[rp2,zp1] 
+	00172: MDAP[rd]   
+	00173: DELTAP1    
+	00174: MIRP[nrp0,md,rd,1] 
+	00175: SRP1       
+	00176: IP         
+	00177: MDAP[rd]   
+	00178: DELTAP1    
+	00179: MIAP[rd+ci] 
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: IP         
+	00182: SHP[rp2,zp1] 
+	00183: IUP[y]     
+	00184: IUP[x]     
+	00185: SVTCA[x-axis] 
+	00186: DELTAP1    
+	00187: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                               On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short On
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:                      Y-Short X-Short On
+	 26:                      Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:        XDual         Y-Short X-Short On
+	 30:        XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:        XDual                         On
+	 35:        XDual         Y-Short         Off
+	 36:                      Y-Short         On
+	 37:  YDual                               On
+	 38:  YDual XDual                 X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual                       X-Short On
+	 43:  YDual                       X-Short Off
+	 44:                      Y-Short X-Short Off
+	 45:                      Y-Short X-Short Off
+	 46:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1138,   149)  ->  Abs (  1138,   149)
+	  1: Rel (    31,   -26)  ->  Abs (  1169,   123)
+	  2: Rel (    60,     0)  ->  Abs (  1229,   123)
+	  3: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	  4: Rel (   -81,     0)  ->  Abs (  1148,     0)
+	  5: Rel (   -47,    94)  ->  Abs (  1101,    94)
+	  6: Rel (   -96,   -96)  ->  Abs (  1005,    -2)
+	  7: Rel (  -372,     0)  ->  Abs (   633,    -2)
+	  8: Rel (  -241,     0)  ->  Abs (   392,    -2)
+	  9: Rel (   -37,    92)  ->  Abs (   355,    90)
+	 10: Rel (   -51,   -55)  ->  Abs (   304,    35)
+	 11: Rel (  -109,   -35)  ->  Abs (   195,     0)
+	 12: Rel (  -124,     0)  ->  Abs (    71,     0)
+	 13: Rel (   -71,     0)  ->  Abs (     0,     0)
+	 14: Rel (     0,   123)  ->  Abs (     0,   123)
+	 15: Rel (   140,     0)  ->  Abs (   140,   123)
+	 16: Rel (    40,     0)  ->  Abs (   180,   123)
+	 17: Rel (    63,    36)  ->  Abs (   243,   159)
+	 18: Rel (    44,    66)  ->  Abs (   287,   225)
+	 19: Rel (    38,   106)  ->  Abs (   325,   331)
+	 20: Rel (    27,    73)  ->  Abs (   352,   404)
+	 21: Rel (    28,     0)  ->  Abs (   380,   404)
+	 22: Rel (    19,     0)  ->  Abs (   399,   404)
+	 23: Rel (     0,   -24)  ->  Abs (   399,   380)
+	 24: Rel (     0,   -23)  ->  Abs (   399,   357)
+	 25: Rel (   -10,   -45)  ->  Abs (   389,   312)
+	 26: Rel (    -9,   -46)  ->  Abs (   380,   266)
+	 27: Rel (     0,   -23)  ->  Abs (   380,   243)
+	 28: Rel (     0,  -115)  ->  Abs (   380,   128)
+	 29: Rel (   159,    -5)  ->  Abs (   539,   123)
+	 30: Rel (   178,   325)  ->  Abs (   717,   448)
+	 31: Rel (   187,   170)  ->  Abs (   904,   618)
+	 32: Rel (    84,     0)  ->  Abs (   988,   618)
+	 33: Rel (   186,     0)  ->  Abs (  1174,   618)
+	 34: Rel (     0,  -302)  ->  Abs (  1174,   316)
+	 35: Rel (     0,   -98)  ->  Abs (  1174,   218)
+	 36: Rel (  -563,   -97)  ->  Abs (   611,   121)
+	 37: Rel (   323,     0)  ->  Abs (   934,   121)
+	 38: Rel (   162,     0)  ->  Abs (  1096,   121)
+	 39: Rel (     0,   155)  ->  Abs (  1096,   276)
+	 40: Rel (     0,    83)  ->  Abs (  1096,   359)
+	 41: Rel (   -83,   130)  ->  Abs (  1013,   489)
+	 42: Rel (   -67,     0)  ->  Abs (   946,   489)
+	 43: Rel (   -36,     0)  ->  Abs (   910,   489)
+	 44: Rel (   -71,   -38)  ->  Abs (   839,   451)
+	 45: Rel (   -72,   -75)  ->  Abs (   767,   376)
+	 46: Rel (   -20,   -33)  ->  Abs (   747,   343)
+
+	Glyph 957: off = 0x0002FD4E, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-385
+	  xMax:			1218
+	  yMax:			979
+
+	     0: Flags:		0x0236
+		Glyf Index:	953
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	254
+		Y WOffset:	-95
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     2    15    55     1    15    55     1    55    64    11 
+	                            15    52    55 
+	00015: SVTCA[y-axis] 
+	00016: SRP1       
+	00017: CALL       
+	00018: DELTAP2    
+	00019: DELTAP2    
+	00020: SHC[rp1,zp0] 
+
+	Glyph 958: off = 0x0002FD7E, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-386
+	  xMax:			1229
+	  yMax:			979
+
+	     0: Flags:		0x0236
+		Glyf Index:	954
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	254
+		Y WOffset:	-95
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     2    15    60     1    15    60     1    60    64    11 
+	                            15    52    60     2    47    59     1    59 
+	00020: SVTCA[x-axis] 
+	00021: SRP1       
+	00022: DELTAP2    
+	00023: SHC[rp1,zp0] 
+	00024: SVTCA[y-axis] 
+	00025: SRP1       
+	00026: CALL       
+	00027: DELTAP2    
+	00028: DELTAP2    
+	00029: SHC[rp1,zp0] 
+
+	Glyph 959: off = 0x0002FDB6, len = 44
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-2
+	  xMax:			1174
+	  yMax:			986
+
+	     0: Flags:		0x0236
+		Glyf Index:	955
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	151
+		Y WOffset:	-88
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2    15    45     1    45    64    12    15    52    45 
+	00012: SVTCA[y-axis] 
+	00013: SRP1       
+	00014: CALL       
+	00015: DELTAP2    
+	00016: SHC[rp1,zp0] 
+
+	Glyph 960: off = 0x0002FDE2, len = 44
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-2
+	  xMax:			1229
+	  yMax:			986
+
+	     0: Flags:		0x0236
+		Glyf Index:	956
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	151
+		Y WOffset:	-88
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2    15    50     1    50    64    12    15    52    50 
+	00012: SVTCA[y-axis] 
+	00013: SRP1       
+	00014: CALL       
+	00015: DELTAP2    
+	00016: SHC[rp1,zp0] 
+
+	Glyph 961: off = 0x0002FE0E, len = 240
+	  numberOfContours:	2
+	  xMin:			12
+	  yMin:			0
+	  xMax:			1174
+	  yMax:			1153
+
+	EndPoints
+	---------
+	  0:  28
+	  1:  40
+
+	  Length of Instructions:	115
+	00000: NPUSHB      (20):   186    35   180    40   202    35   197    40     4   122 
+	                             1   139     1   149    40   163    40     4     6    19 
+	00022: PUSHW[1]            909 
+	00025: NPUSHB      (10):     0    36    16    36     2    36    36    15    29     1 
+	00037: PUSHW[3]            907    26   858 
+	00044: PUSHB[7]              1    15    11     9    29     4    13 
+	00052: PUSHW[1]            883 
+	00055: PUSHB[6]              3     3     5     6     6     7 
+	00062: PUSHW[1]            895 
+	00065: PUSHB[7]              0     5     1     5     5     0    33 
+	00073: PUSHW[1]            885 
+	00076: PUSHB[3]             22     0     4 
+	00080: SCANTYPE   
+	00081: MDAP[rd]   
+	00082: MDAP[rd]   
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: SRP1       
+	00085: SHP[rp1,zp0] 
+	00086: MDAP[rd]   
+	00087: DELTAP1    
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: RTHG       
+	00090: IP         
+	00091: MDAP[rd]   
+	00092: RTG        
+	00093: SRP1       
+	00094: IP         
+	00095: MDAP[rd]   
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: SLOOP      
+	00098: IP         
+	00099: SHP[rp1,zp0] 
+	00100: SVTCA[y-axis] 
+	00101: MIAP[rd+ci] 
+	00102: MIRP[srp0,md,rd,1] 
+	00103: ALIGNRP    
+	00104: SHP[rp2,zp1] 
+	00105: SHP[rp2,zp1] 
+	00106: MDAP[rd]   
+	00107: DELTAP1    
+	00108: MIRP[nrp0,md,rd,1] 
+	00109: MDAP[rd]   
+	00110: IUP[y]     
+	00111: IUP[x]     
+	00112: SVTCA[x-axis] 
+	00113: DELTAP1    
+	00114: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:  YDual                               On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:        XDual                         Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:        XDual         Y-Short X-Short On
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short Off
+	 25:  YDual                               On
+	 26:  YDual                               On
+	 27:  YDual                       X-Short Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short         On
+	 30:  YDual                               On
+	 31:  YDual XDual                 X-Short Off
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:                      Y-Short X-Short Off
+	 39:                      Y-Short X-Short On
+	 40:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    12,   123)  ->  Abs (    12,   123)
+	  1: Rel (   287,     0)  ->  Abs (   299,   123)
+	  2: Rel (   128,   106)  ->  Abs (   427,   229)
+	  3: Rel (     0,   183)  ->  Abs (   427,   412)
+	  4: Rel (     0,   521)  ->  Abs (   427,   933)
+	  5: Rel (   -59,    98)  ->  Abs (   368,  1031)
+	  6: Rel (    75,   122)  ->  Abs (   443,  1153)
+	  7: Rel (    94,   -96)  ->  Abs (   537,  1057)
+	  8: Rel (   -45,   -48)  ->  Abs (   492,  1009)
+	  9: Rel (     0,  -237)  ->  Abs (   492,   772)
+	 10: Rel (     0,   -69)  ->  Abs (   492,   703)
+	 11: Rel (     5,  -112)  ->  Abs (   497,   591)
+	 12: Rel (     4,  -113)  ->  Abs (   501,   478)
+	 13: Rel (     0,   -27)  ->  Abs (   501,   451)
+	 14: Rel (     0,   -46)  ->  Abs (   501,   405)
+	 15: Rel (   -40,  -174)  ->  Abs (   461,   231)
+	 16: Rel (   180,   204)  ->  Abs (   641,   435)
+	 17: Rel (    81,    93)  ->  Abs (   722,   528)
+	 18: Rel (   160,    93)  ->  Abs (   882,   621)
+	 19: Rel (    72,     0)  ->  Abs (   954,   621)
+	 20: Rel (   104,     0)  ->  Abs (  1058,   621)
+	 21: Rel (   116,  -177)  ->  Abs (  1174,   444)
+	 22: Rel (     0,  -130)  ->  Abs (  1174,   314)
+	 23: Rel (     0,  -158)  ->  Abs (  1174,   156)
+	 24: Rel (  -186,  -156)  ->  Abs (   988,     0)
+	 25: Rel (  -257,     0)  ->  Abs (   731,     0)
+	 26: Rel (  -544,     0)  ->  Abs (   187,     0)
+	 27: Rel (   -71,     0)  ->  Abs (   116,     0)
+	 28: Rel (   -73,    48)  ->  Abs (    43,    48)
+	 29: Rel (   393,    75)  ->  Abs (   436,   123)
+	 30: Rel (   496,     0)  ->  Abs (   932,   123)
+	 31: Rel (    91,     0)  ->  Abs (  1023,   123)
+	 32: Rel (    70,    66)  ->  Abs (  1093,   189)
+	 33: Rel (     0,    75)  ->  Abs (  1093,   264)
+	 34: Rel (     0,    90)  ->  Abs (  1093,   354)
+	 35: Rel (  -102,   136)  ->  Abs (   991,   490)
+	 36: Rel (   -81,     0)  ->  Abs (   910,   490)
+	 37: Rel (   -58,     0)  ->  Abs (   852,   490)
+	 38: Rel (  -135,   -75)  ->  Abs (   717,   415)
+	 39: Rel (  -137,  -152)  ->  Abs (   580,   263)
+	 40: Rel (   -97,  -106)  ->  Abs (   483,   157)
+
+	Glyph 962: off = 0x0002FEFE, len = 288
+	  numberOfContours:	2
+	  xMin:			10
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1153
+
+	EndPoints
+	---------
+	  0:  33
+	  1:  45
+
+	  Length of Instructions:	150
+	00000: NPUSHB      (30):    74     5   121     5   186     5   202     5   201    40 
+	                           197    45     6   160    45   185    40   182    45     3 
+	                           121    11   138    11   144    34     3     0     5     2 
+	00032: PUSHW[1]            907 
+	00035: PUSHB[3]              3    16    29 
+	00039: PUSHW[1]            909 
+	00042: PUSHB[8]              0    41     1    41    41    25    34    11 
+	00051: PUSHW[3]            907     8   858 
+	00058: NPUSHB      (11):     5     0    38    32    11    25    21    19    34     4 
+	                            23 
+	00071: PUSHW[1]            883 
+	00074: PUSHB[6]             13    13    15    16    16    17 
+	00081: PUSHW[1]            895 
+	00084: NPUSHB       (9):     0    15   176    15     2    15    15    10    38 
+	00095: PUSHW[1]            885 
+	00098: PUSHB[5]             32    10     2     3     4 
+	00104: SCANTYPE   
+	00105: MDAP[rd]   
+	00106: ALIGNRP    
+	00107: MDAP[rd]   
+	00108: MDAP[rd]   
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: SRP1       
+	00111: SHP[rp1,zp0] 
+	00112: MDAP[rd]   
+	00113: DELTAP1    
+	00114: MIRP[nrp0,md,rd,1] 
+	00115: RTHG       
+	00116: IP         
+	00117: MDAP[rd]   
+	00118: RTG        
+	00119: SRP1       
+	00120: IP         
+	00121: MDAP[rd]   
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: SLOOP      
+	00124: IP         
+	00125: SHP[rp1,zp0] 
+	00126: SRP1       
+	00127: SRP2       
+	00128: IP         
+	00129: IP         
+	00130: SVTCA[y-axis] 
+	00131: MIAP[rd+ci] 
+	00132: MIRP[srp0,md,rd,1] 
+	00133: ALIGNRP    
+	00134: SHP[rp2,zp1] 
+	00135: SHP[rp2,zp1] 
+	00136: MDAP[rd]   
+	00137: DELTAP1    
+	00138: MIRP[nrp0,md,rd,1] 
+	00139: MDAP[rd]   
+	00140: MDAP[rd]   
+	00141: MIRP[nrp0,md,rd,1] 
+	00142: IP         
+	00143: SHP[rp2,zp1] 
+	00144: IUP[y]     
+	00145: IUP[x]     
+	00146: SVTCA[x-axis] 
+	00147: DELTAP1    
+	00148: DELTAP1    
+	00149: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                               On
+	  8:  YDual                               On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual                               On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:        XDual                         Off
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:                      Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:                      Y-Short         On
+	 35:  YDual                               On
+	 36:  YDual XDual                 X-Short Off
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:                      Y-Short X-Short Off
+	 44:                      Y-Short X-Short On
+	 45:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1139,   149)  ->  Abs (  1139,   149)
+	  1: Rel (    25,   -26)  ->  Abs (  1164,   123)
+	  2: Rel (    65,     0)  ->  Abs (  1229,   123)
+	  3: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	  4: Rel (   -83,     0)  ->  Abs (  1146,     0)
+	  5: Rel (   -46,    95)  ->  Abs (  1100,    95)
+	  6: Rel (   -95,   -95)  ->  Abs (  1005,     0)
+	  7: Rel (  -274,     0)  ->  Abs (   731,     0)
+	  8: Rel (  -564,     0)  ->  Abs (   167,     0)
+	  9: Rel (  -117,     0)  ->  Abs (    50,     0)
+	 10: Rel (   -40,   123)  ->  Abs (    10,   123)
+	 11: Rel (   290,     0)  ->  Abs (   300,   123)
+	 12: Rel (   127,   106)  ->  Abs (   427,   229)
+	 13: Rel (     0,   183)  ->  Abs (   427,   412)
+	 14: Rel (     0,   521)  ->  Abs (   427,   933)
+	 15: Rel (   -59,    98)  ->  Abs (   368,  1031)
+	 16: Rel (    75,   122)  ->  Abs (   443,  1153)
+	 17: Rel (    94,   -96)  ->  Abs (   537,  1057)
+	 18: Rel (   -45,   -48)  ->  Abs (   492,  1009)
+	 19: Rel (     0,  -237)  ->  Abs (   492,   772)
+	 20: Rel (     0,   -68)  ->  Abs (   492,   704)
+	 21: Rel (     5,  -113)  ->  Abs (   497,   591)
+	 22: Rel (     4,  -113)  ->  Abs (   501,   478)
+	 23: Rel (     0,   -27)  ->  Abs (   501,   451)
+	 24: Rel (     0,   -46)  ->  Abs (   501,   405)
+	 25: Rel (   -40,  -174)  ->  Abs (   461,   231)
+	 26: Rel (   180,   204)  ->  Abs (   641,   435)
+	 27: Rel (    81,    93)  ->  Abs (   722,   528)
+	 28: Rel (   160,    93)  ->  Abs (   882,   621)
+	 29: Rel (    72,     0)  ->  Abs (   954,   621)
+	 30: Rel (   104,     0)  ->  Abs (  1058,   621)
+	 31: Rel (   116,  -177)  ->  Abs (  1174,   444)
+	 32: Rel (     0,  -130)  ->  Abs (  1174,   314)
+	 33: Rel (     0,   -99)  ->  Abs (  1174,   215)
+	 34: Rel (  -738,   -92)  ->  Abs (   436,   123)
+	 35: Rel (   496,     0)  ->  Abs (   932,   123)
+	 36: Rel (    91,     0)  ->  Abs (  1023,   123)
+	 37: Rel (    70,    66)  ->  Abs (  1093,   189)
+	 38: Rel (     0,    75)  ->  Abs (  1093,   264)
+	 39: Rel (     0,    90)  ->  Abs (  1093,   354)
+	 40: Rel (  -102,   136)  ->  Abs (   991,   490)
+	 41: Rel (   -81,     0)  ->  Abs (   910,   490)
+	 42: Rel (   -58,     0)  ->  Abs (   852,   490)
+	 43: Rel (  -135,   -75)  ->  Abs (   717,   415)
+	 44: Rel (  -137,  -152)  ->  Abs (   580,   263)
+	 45: Rel (   -97,  -106)  ->  Abs (   483,   157)
+
+	Glyph 963: off = 0x0003001E, len = 238
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1174
+	  yMax:			1153
+
+	EndPoints
+	---------
+	  0:  26
+	  1:  38
+
+	  Length of Instructions:	121
+	00000: NPUSHB      (21):   182    38   201    33   198    38     3   139     2   164 
+	                            38   185    33     3    87    21   122     2     2     7 
+	                            20 
+	00023: PUSHW[1]            909 
+	00026: PUSHB[8]              0    34     1    34    34    16    27     1 
+	00035: PUSHW[3]            907     0   858 
+	00042: PUSHB[7]              2    16    10    12    27     4    14 
+	00050: PUSHW[1]            883 
+	00053: PUSHB[6]              4     4     6     7     7     8 
+	00060: PUSHW[1]            895 
+	00063: NPUSHB      (11):     0     6    80     6   176     6     3     6     6     1 
+	                            31 
+	00076: PUSHW[1]            885 
+	00079: PUSHB[4]             23     1     0     4 
+	00084: SCANTYPE   
+	00085: MDAP[rd]   
+	00086: ALIGNRP    
+	00087: MDAP[rd]   
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: SRP1       
+	00090: SHP[rp1,zp0] 
+	00091: MDAP[rd]   
+	00092: DELTAP1    
+	00093: MIRP[nrp0,md,rd,1] 
+	00094: RTHG       
+	00095: IP         
+	00096: MDAP[rd]   
+	00097: RTG        
+	00098: SRP1       
+	00099: IP         
+	00100: MDAP[rd]   
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: SLOOP      
+	00103: IP         
+	00104: SHP[rp1,zp0] 
+	00105: SVTCA[y-axis] 
+	00106: MIAP[rd+ci] 
+	00107: MIRP[srp0,md,rd,1] 
+	00108: ALIGNRP    
+	00109: SHP[rp2,zp1] 
+	00110: SHP[rp2,zp1] 
+	00111: MDAP[rd]   
+	00112: DELTAP1    
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: MDAP[rd]   
+	00115: IUP[y]     
+	00116: IUP[x]     
+	00117: SVTCA[x-axis] 
+	00118: DELTAP1    
+	00119: DELTAP1    
+	00120: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual                         On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:        XDual                         Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:        XDual         Y-Short X-Short On
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:                      Y-Short X-Short Off
+	 26:  YDual                               On
+	 27:  YDual               Y-Short         On
+	 28:  YDual                               On
+	 29:  YDual XDual                 X-Short Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:                      Y-Short X-Short Off
+	 37:                      Y-Short X-Short On
+	 38:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (     0,     0)  ->  Abs (     0,     0)
+	  1: Rel (     0,   123)  ->  Abs (     0,   123)
+	  2: Rel (   299,     0)  ->  Abs (   299,   123)
+	  3: Rel (   128,   106)  ->  Abs (   427,   229)
+	  4: Rel (     0,   183)  ->  Abs (   427,   412)
+	  5: Rel (     0,   521)  ->  Abs (   427,   933)
+	  6: Rel (   -59,    98)  ->  Abs (   368,  1031)
+	  7: Rel (    75,   122)  ->  Abs (   443,  1153)
+	  8: Rel (    94,   -96)  ->  Abs (   537,  1057)
+	  9: Rel (   -45,   -48)  ->  Abs (   492,  1009)
+	 10: Rel (     0,  -237)  ->  Abs (   492,   772)
+	 11: Rel (     0,   -68)  ->  Abs (   492,   704)
+	 12: Rel (     5,  -113)  ->  Abs (   497,   591)
+	 13: Rel (     4,  -113)  ->  Abs (   501,   478)
+	 14: Rel (     0,   -27)  ->  Abs (   501,   451)
+	 15: Rel (     0,   -46)  ->  Abs (   501,   405)
+	 16: Rel (   -40,  -174)  ->  Abs (   461,   231)
+	 17: Rel (   180,   204)  ->  Abs (   641,   435)
+	 18: Rel (    81,    93)  ->  Abs (   722,   528)
+	 19: Rel (   160,    93)  ->  Abs (   882,   621)
+	 20: Rel (    72,     0)  ->  Abs (   954,   621)
+	 21: Rel (   104,     0)  ->  Abs (  1058,   621)
+	 22: Rel (   116,  -177)  ->  Abs (  1174,   444)
+	 23: Rel (     0,  -130)  ->  Abs (  1174,   314)
+	 24: Rel (     0,  -158)  ->  Abs (  1174,   156)
+	 25: Rel (  -186,  -156)  ->  Abs (   988,     0)
+	 26: Rel (  -257,     0)  ->  Abs (   731,     0)
+	 27: Rel (  -295,   123)  ->  Abs (   436,   123)
+	 28: Rel (   496,     0)  ->  Abs (   932,   123)
+	 29: Rel (    91,     0)  ->  Abs (  1023,   123)
+	 30: Rel (    70,    66)  ->  Abs (  1093,   189)
+	 31: Rel (     0,    75)  ->  Abs (  1093,   264)
+	 32: Rel (     0,    90)  ->  Abs (  1093,   354)
+	 33: Rel (  -102,   136)  ->  Abs (   991,   490)
+	 34: Rel (   -81,     0)  ->  Abs (   910,   490)
+	 35: Rel (   -58,     0)  ->  Abs (   852,   490)
+	 36: Rel (  -135,   -75)  ->  Abs (   717,   415)
+	 37: Rel (  -137,  -152)  ->  Abs (   580,   263)
+	 38: Rel (   -97,  -106)  ->  Abs (   483,   157)
+
+	Glyph 964: off = 0x0003010C, len = 288
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1153
+
+	EndPoints
+	---------
+	  0:  32
+	  1:  44
+
+	  Length of Instructions:	152
+	00000: NPUSHB      (30):    73     5   122     5   185     5   182    44   202     5 
+	                           201    39   197    44     7   121    10   137    10   185 
+	                            39     3    86    29   163    44     2     0     5     2 
+	00032: PUSHW[6]            907     3   858    15    28   909 
+	00045: PUSHB[8]              0    40     1    40    40    24    33     9 
+	00054: PUSHW[3]            907     8   858 
+	00061: NPUSHB      (11):     5     0    37    31    10    24    20    18    33     4 
+	                            22 
+	00074: PUSHW[1]            883 
+	00077: PUSHB[6]             12    12    14    15    15    16 
+	00084: PUSHW[1]            895 
+	00087: PUSHB[7]              0    14     1    14    14     9    37 
+	00095: PUSHW[1]            885 
+	00098: PUSHB[6]             31     9     8     2     3     4 
+	00105: SCANTYPE   
+	00106: MDAP[rd]   
+	00107: ALIGNRP    
+	00108: MDAP[rd]   
+	00109: ALIGNRP    
+	00110: MDAP[rd]   
+	00111: MIRP[nrp0,md,rd,1] 
+	00112: SRP1       
+	00113: SHP[rp1,zp0] 
+	00114: MDAP[rd]   
+	00115: DELTAP1    
+	00116: MIRP[nrp0,md,rd,1] 
+	00117: RTHG       
+	00118: IP         
+	00119: MDAP[rd]   
+	00120: RTG        
+	00121: SRP1       
+	00122: IP         
+	00123: MDAP[rd]   
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: SLOOP      
+	00126: IP         
+	00127: SHP[rp1,zp0] 
+	00128: SRP1       
+	00129: SRP2       
+	00130: IP         
+	00131: IP         
+	00132: SVTCA[y-axis] 
+	00133: MIAP[rd+ci] 
+	00134: MIRP[srp0,md,rd,1] 
+	00135: ALIGNRP    
+	00136: SHP[rp2,zp1] 
+	00137: SHP[rp2,zp1] 
+	00138: MDAP[rd]   
+	00139: DELTAP1    
+	00140: MIRP[nrp0,md,rd,1] 
+	00141: MDAP[rd]   
+	00142: MIAP[rd+ci] 
+	00143: MIRP[nrp0,md,rd,1] 
+	00144: IP         
+	00145: SHP[rp2,zp1] 
+	00146: IUP[y]     
+	00147: IUP[x]     
+	00148: SVTCA[x-axis] 
+	00149: DELTAP1    
+	00150: DELTAP1    
+	00151: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:        XDual         Y-Short         On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                               On
+	  8:  YDual                               On
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual                               On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:        XDual                         Off
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:        XDual         Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short         On
+	 34:  YDual                               On
+	 35:  YDual XDual                 X-Short Off
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:                      Y-Short X-Short Off
+	 43:                      Y-Short X-Short On
+	 44:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1139,   149)  ->  Abs (  1139,   149)
+	  1: Rel (    26,   -27)  ->  Abs (  1165,   122)
+	  2: Rel (    64,     0)  ->  Abs (  1229,   122)
+	  3: Rel (     0,  -122)  ->  Abs (  1229,     0)
+	  4: Rel (   -83,     0)  ->  Abs (  1146,     0)
+	  5: Rel (   -46,    95)  ->  Abs (  1100,    95)
+	  6: Rel (   -95,   -95)  ->  Abs (  1005,     0)
+	  7: Rel (  -274,     0)  ->  Abs (   731,     0)
+	  8: Rel (  -731,     0)  ->  Abs (     0,     0)
+	  9: Rel (     0,   123)  ->  Abs (     0,   123)
+	 10: Rel (   299,     0)  ->  Abs (   299,   123)
+	 11: Rel (   128,   106)  ->  Abs (   427,   229)
+	 12: Rel (     0,   183)  ->  Abs (   427,   412)
+	 13: Rel (     0,   521)  ->  Abs (   427,   933)
+	 14: Rel (   -59,    98)  ->  Abs (   368,  1031)
+	 15: Rel (    75,   122)  ->  Abs (   443,  1153)
+	 16: Rel (    94,   -96)  ->  Abs (   537,  1057)
+	 17: Rel (   -45,   -48)  ->  Abs (   492,  1009)
+	 18: Rel (     0,  -237)  ->  Abs (   492,   772)
+	 19: Rel (     0,   -68)  ->  Abs (   492,   704)
+	 20: Rel (     5,  -113)  ->  Abs (   497,   591)
+	 21: Rel (     4,  -113)  ->  Abs (   501,   478)
+	 22: Rel (     0,   -27)  ->  Abs (   501,   451)
+	 23: Rel (     0,   -46)  ->  Abs (   501,   405)
+	 24: Rel (   -40,  -174)  ->  Abs (   461,   231)
+	 25: Rel (   180,   204)  ->  Abs (   641,   435)
+	 26: Rel (    81,    93)  ->  Abs (   722,   528)
+	 27: Rel (   160,    93)  ->  Abs (   882,   621)
+	 28: Rel (    72,     0)  ->  Abs (   954,   621)
+	 29: Rel (   104,     0)  ->  Abs (  1058,   621)
+	 30: Rel (   116,  -177)  ->  Abs (  1174,   444)
+	 31: Rel (     0,  -130)  ->  Abs (  1174,   314)
+	 32: Rel (     0,   -99)  ->  Abs (  1174,   215)
+	 33: Rel (  -738,   -92)  ->  Abs (   436,   123)
+	 34: Rel (   496,     0)  ->  Abs (   932,   123)
+	 35: Rel (    91,     0)  ->  Abs (  1023,   123)
+	 36: Rel (    70,    66)  ->  Abs (  1093,   189)
+	 37: Rel (     0,    75)  ->  Abs (  1093,   264)
+	 38: Rel (     0,    90)  ->  Abs (  1093,   354)
+	 39: Rel (  -102,   136)  ->  Abs (   991,   490)
+	 40: Rel (   -81,     0)  ->  Abs (   910,   490)
+	 41: Rel (   -58,     0)  ->  Abs (   852,   490)
+	 42: Rel (  -135,   -75)  ->  Abs (   717,   415)
+	 43: Rel (  -137,  -152)  ->  Abs (   580,   263)
+	 44: Rel (   -97,  -106)  ->  Abs (   483,   157)
+
+	Glyph 965: off = 0x0003022C, len = 74
+	  numberOfContours:	-1  (Composite)
+	  xMin:			12
+	  yMin:			0
+	  xMax:			1174
+	  yMax:			1153
+
+	     0: Flags:		0x0236
+		Glyf Index:	961
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1021
+		X BOffset:	100
+		Y BOffset:	-92
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (35):     2    15    44     1   191    44     1    44    64    12 
+	                            15    52    44     2    43    64    17    22    52    63 
+	                            43     1    31    43    47    43     2    15    43    31 
+	                            43   255    43     3    43 
+	00037: SVTCA[x-axis] 
+	00038: SRP1       
+	00039: DELTAP1    
+	00040: DELTAP2    
+	00041: DELTAP2    
+	00042: CALL       
+	00043: SHC[rp1,zp0] 
+	00044: SVTCA[y-axis] 
+	00045: SRP1       
+	00046: CALL       
+	00047: DELTAP1    
+	00048: DELTAP2    
+	00049: SHC[rp1,zp0] 
+
+	Glyph 966: off = 0x00030276, len = 72
+	  numberOfContours:	-1  (Composite)
+	  xMin:			10
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1153
+
+	     0: Flags:		0x0236
+		Glyf Index:	962
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1021
+		X BOffset:	100
+		Y BOffset:	-92
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (34):     2    49    64    12    15    52    15    49     1    31 
+	                            49     1    49     2   255    48     1   143    48   191 
+	                            48   207    48   223    48     4    15    48    31    48 
+	                           175    48     3    48 
+	00036: SVTCA[x-axis] 
+	00037: SRP1       
+	00038: DELTAP1    
+	00039: DELTAP1    
+	00040: DELTAP1    
+	00041: SHC[rp1,zp0] 
+	00042: SVTCA[y-axis] 
+	00043: SRP1       
+	00044: DELTAP1    
+	00045: DELTAP2    
+	00046: CALL       
+	00047: SHC[rp1,zp0] 
+
+	Glyph 967: off = 0x000302BE, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1174
+	  yMax:			1153
+
+	     0: Flags:		0x0236
+		Glyf Index:	963
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1021
+		X BOffset:	100
+		Y BOffset:	-92
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (26):     2    42    64    12    15    52    15    42     1    31 
+	                            42     1    42     2    48    41   224    41     2    41 
+	                             0    41    39     8    23    64 
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: SRP1       
+	00031: DELTAP1    
+	00032: SHC[rp1,zp0] 
+	00033: SVTCA[y-axis] 
+	00034: SRP1       
+	00035: DELTAP1    
+	00036: DELTAP2    
+	00037: CALL       
+	00038: SHC[rp1,zp0] 
+
+	Glyph 968: off = 0x000302FE, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1153
+
+	     0: Flags:		0x0236
+		Glyf Index:	964
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1021
+		X BOffset:	100
+		Y BOffset:	-92
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (28):     2    48    64    12    15    52    15    48     1    31 
+	                            48     1    48     2    48    47   191    47   224    47 
+	                             3    47     0    47    45    16    31    64 
+	00030: SVTCA[x-axis] 
+	00031: CALL       
+	00032: SRP1       
+	00033: DELTAP1    
+	00034: SHC[rp1,zp0] 
+	00035: SVTCA[y-axis] 
+	00036: SRP1       
+	00037: DELTAP1    
+	00038: DELTAP2    
+	00039: CALL       
+	00040: SHC[rp1,zp0] 
+
+	Glyph 969: off = 0x00030340, len = 336
+	  numberOfContours:	1
+	  xMin:			282
+	  yMin:			-561
+	  xMax:			1221
+	  yMax:			677
+
+	EndPoints
+	---------
+	  0:  43
+
+	  Length of Instructions:	205
+	00000: NPUSHB      (14):    39    16    17    20    52   218     5     1    27    24 
+	                            21    22    52    20 
+	00016: PUSHW[1]            -24 
+	00019: PUSHB[4]             20    22    52     5 
+	00024: PUSHW[1]            -24 
+	00027: NPUSHB      (24):    53    56    52    18    40    14    17    52    11    39 
+	                           104    28   102    31   120    28   116    31   152    27 
+	                           172    18     7    23 
+	00053: PUSHW[1]            -64 
+	00056: NPUSHB      (19):    89    91    52    23    23    26     0    64    72    74 
+	                            52     0    48     9    16    52     0     0    25 
+	00077: PUSHW[1]            -64 
+	00080: PUSHB[4]             35    40    52    25 
+	00085: PUSHW[1]            913 
+	00088: NPUSHB      (12):     0    26    16    26     2    26    26     6    38    12 
+	                            12    15 
+	00102: PUSHW[1]            899 
+	00105: PUSHB[5]              6    35    34    34    32 
+	00111: PUSHW[1]            907 
+	00114: NPUSHB      (18):    38     0    25    19    10    10    26   192    25   208 
+	                            25     2    25    25    40    34    35    19 
+	00134: PUSHW[1]            880 
+	00137: PUSHB[3]              2     2    30 
+	00141: PUSHW[1]            888 
+	00144: PUSHB[2]             40     4 
+	00147: SCANTYPE   
+	00148: MDAP[rd]   
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: IP         
+	00151: MDAP[rd]   
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: MDAP[rd]   
+	00154: SHP[rp1,zp0] 
+	00155: SRP2       
+	00156: IP         
+	00157: MDAP[rd]   
+	00158: DELTAP1    
+	00159: SHP[rp1,zp0] 
+	00160: SHP[rp1,zp0] 
+	00161: MDAP[rd]   
+	00162: SRP1       
+	00163: SRP2       
+	00164: IP         
+	00165: SVTCA[y-axis] 
+	00166: MDAP[rd]   
+	00167: MIRP[srp0,md,rd,1] 
+	00168: SHP[rp2,zp1] 
+	00169: MDAP[rd]   
+	00170: IP         
+	00171: MDAP[rd]   
+	00172: MIRP[srp0,md,rd,1] 
+	00173: SHP[rp2,zp1] 
+	00174: MDAP[rd]   
+	00175: SRP1       
+	00176: SRP2       
+	00177: IP         
+	00178: MDAP[rd]   
+	00179: DELTAP1    
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: CALL       
+	00182: SHP[rp1,zp0] 
+	00183: RTHG       
+	00184: MDAP[rd]   
+	00185: CALL       
+	00186: CALL       
+	00187: RDTG       
+	00188: RTG        
+	00189: SRP1       
+	00190: IP         
+	00191: MDAP[rd]   
+	00192: RTG        
+	00193: CALL       
+	00194: IUP[y]     
+	00195: IUP[x]     
+	00196: SVTCA[y-axis] 
+	00197: DELTAP1    
+	00198: CALL       
+	00199: CALL       
+	00200: CALL       
+	00201: CALL       
+	00202: SVTCA[x-axis] 
+	00203: DELTAP1    
+	00204: CALL       
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:                      Y-Short X-Short On
+	 27:                      Y-Short X-Short Off
+	 28:                      Y-Short X-Short On
+	 29:                      Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual                         Off
+	 32:  YDual                               On
+	 33:  YDual XDual                 X-Short Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:        XDual         Y-Short X-Short On
+	 36:                      Y-Short X-Short Off
+	 37:                      Y-Short         Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                               Off
+	 40:        XDual                         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   505,   155)  ->  Abs (   505,   155)
+	  1: Rel (  -183,    56)  ->  Abs (   322,   211)
+	  2: Rel (     0,   129)  ->  Abs (   322,   340)
+	  3: Rel (     0,   111)  ->  Abs (   322,   451)
+	  4: Rel (    82,   109)  ->  Abs (   404,   560)
+	  5: Rel (    88,   117)  ->  Abs (   492,   677)
+	  6: Rel (   108,     0)  ->  Abs (   600,   677)
+	  7: Rel (    64,     0)  ->  Abs (   664,   677)
+	  8: Rel (    79,   -26)  ->  Abs (   743,   651)
+	  9: Rel (   101,   -33)  ->  Abs (   844,   618)
+	 10: Rel (     0,   -50)  ->  Abs (   844,   568)
+	 11: Rel (    -5,   -13)  ->  Abs (   839,   555)
+	 12: Rel (   -13,     0)  ->  Abs (   826,   555)
+	 13: Rel (    -6,     0)  ->  Abs (   820,   555)
+	 14: Rel (  -104,    38)  ->  Abs (   716,   593)
+	 15: Rel (   -33,     0)  ->  Abs (   683,   593)
+	 16: Rel (   -72,     0)  ->  Abs (   611,   593)
+	 17: Rel (  -108,   -64)  ->  Abs (   503,   529)
+	 18: Rel (  -119,   -69)  ->  Abs (   384,   460)
+	 19: Rel (     0,   -65)  ->  Abs (   384,   395)
+	 20: Rel (     0,   -56)  ->  Abs (   384,   339)
+	 21: Rel (   109,   -40)  ->  Abs (   493,   299)
+	 22: Rel (    88,   -31)  ->  Abs (   581,   268)
+	 23: Rel (    70,     0)  ->  Abs (   651,   268)
+	 24: Rel (    72,     0)  ->  Abs (   723,   268)
+	 25: Rel (   170,    66)  ->  Abs (   893,   334)
+	 26: Rel (   -36,  -150)  ->  Abs (   857,   184)
+	 27: Rel (  -190,   -21)  ->  Abs (   667,   163)
+	 28: Rel (  -118,   -73)  ->  Abs (   549,    90)
+	 29: Rel (  -171,  -116)  ->  Abs (   378,   -26)
+	 30: Rel (     0,  -152)  ->  Abs (   378,  -178)
+	 31: Rel (     0,  -258)  ->  Abs (   378,  -436)
+	 32: Rel (   409,     0)  ->  Abs (   787,  -436)
+	 33: Rel (   237,     0)  ->  Abs (  1024,  -436)
+	 34: Rel (   183,   114)  ->  Abs (  1207,  -322)
+	 35: Rel (    14,   -19)  ->  Abs (  1221,  -341)
+	 36: Rel (   -65,   -92)  ->  Abs (  1156,  -433)
+	 37: Rel (  -263,  -128)  ->  Abs (   893,  -561)
+	 38: Rel (  -116,     0)  ->  Abs (   777,  -561)
+	 39: Rel (  -495,     0)  ->  Abs (   282,  -561)
+	 40: Rel (     0,   347)  ->  Abs (   282,  -214)
+	 41: Rel (     0,    94)  ->  Abs (   282,  -120)
+	 42: Rel (    54,   104)  ->  Abs (   336,   -16)
+	 43: Rel (    63,   111)  ->  Abs (   399,    95)
+
+	Glyph 970: off = 0x00030490, len = 344
+	  numberOfContours:	2
+	  xMin:			284
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			638
+
+	EndPoints
+	---------
+	  0:  42
+	  1:  50
+
+	  Length of Instructions:	193
+	00000: PUSHB[6]             35    32    17    19    52    45 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (45):    17    19    52   182    39     1   203    10   201    30 
+	                           220     6   219    10   217    31     5   121    10   116 
+	                            44   170    45   185    10   204     6     5    55    45 
+	                            74    10    90    31   106    10   105    31     5     6 
+	                            40    13    16    52    39 
+	00057: PUSHW[1]            -16 
+	00060: PUSHB[4]             10    12    52    13 
+	00065: PUSHW[1]            -56 
+	00068: NPUSHB      (13):    10    12    52    33    22    12    45    15    43    16 
+	                             7    28    18 
+	00083: PUSHW[4]            899    49    27   907 
+	00092: PUSHB[4]             28     0     0    41 
+	00097: PUSHW[1]            911 
+	00100: PUSHB[8]              4    12    33    45    22     4    15    47 
+	00109: PUSHW[1]            892 
+	00112: NPUSHB      (14):    20    20    28    43    16   111    15   128    15     2 
+	                            80    15     1    15 
+	00128: PUSHW[1]            -64 
+	00131: NPUSHB       (9):     9    12    52    15    15     0    27    28    37 
+	00142: PUSHW[1]            887 
+	00145: PUSHB[2]              8     4 
+	00148: SCANTYPE   
+	00149: MDAP[rd]   
+	00150: MIRP[nrp0,md,rd,1] 
+	00151: MDAP[rd]   
+	00152: ALIGNRP    
+	00153: MDAP[rd]   
+	00154: SHP[rp2,zp1] 
+	00155: MDAP[rd]   
+	00156: CALL       
+	00157: DELTAP1    
+	00158: DELTAP2    
+	00159: SHP[rp1,zp0] 
+	00160: SHP[rp1,zp0] 
+	00161: SRP1       
+	00162: SHP[rp1,zp0] 
+	00163: MDAP[rd]   
+	00164: MIRP[nrp0,md,rd,1] 
+	00165: SRP2       
+	00166: SLOOP      
+	00167: IP         
+	00168: SVTCA[y-axis] 
+	00169: MDAP[rd]   
+	00170: MIRP[srp0,md,rd,1] 
+	00171: SHP[rp2,zp1] 
+	00172: MDAP[rd]   
+	00173: MDAP[rd]   
+	00174: MIRP[nrp0,md,rd,1] 
+	00175: MDAP[rd]   
+	00176: MIRP[nrp0,md,rd,1] 
+	00177: SRP1       
+	00178: SLOOP      
+	00179: IP         
+	00180: IUP[y]     
+	00181: IUP[x]     
+	00182: SVTCA[x-axis] 
+	00183: CALL       
+	00184: CALL       
+	00185: CALL       
+	00186: DELTAP1    
+	00187: DELTAP1    
+	00188: DELTAP1    
+	00189: SVTCA[y-axis] 
+	00190: DELTAP1    
+	00191: CALL       
+	00192: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:                      Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short On
+	 28:        XDual         Y-Short         On
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short On
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual               Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short On
+	 36:                      Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:        XDual         Y-Short X-Short On
+	 40:        XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:                                      On
+	 44:        XDual         Y-Short X-Short Off
+	 45:        XDual         Y-Short X-Short On
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual                       X-Short On
+	 50:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,  -332)  ->  Abs (  1229,  -332)
+	  1: Rel (     0,   -94)  ->  Abs (  1229,  -426)
+	  2: Rel (  -188,   -74)  ->  Abs (  1041,  -500)
+	  3: Rel (  -156,   -61)  ->  Abs (   885,  -561)
+	  4: Rel (  -112,     0)  ->  Abs (   773,  -561)
+	  5: Rel (  -191,     0)  ->  Abs (   582,  -561)
+	  6: Rel (  -139,    96)  ->  Abs (   443,  -465)
+	  7: Rel (  -159,   111)  ->  Abs (   284,  -354)
+	  8: Rel (     0,   216)  ->  Abs (   284,  -138)
+	  9: Rel (     0,   134)  ->  Abs (   284,    -4)
+	 10: Rel (   119,   141)  ->  Abs (   403,   137)
+	 11: Rel (   117,   117)  ->  Abs (   520,   254)
+	 12: Rel (   166,    86)  ->  Abs (   686,   340)
+	 13: Rel (   -27,    46)  ->  Abs (   659,   386)
+	 14: Rel (  -117,    64)  ->  Abs (   542,   450)
+	 15: Rel (   -55,     4)  ->  Abs (   487,   454)
+	 16: Rel (    60,   146)  ->  Abs (   547,   600)
+	 17: Rel (   125,    38)  ->  Abs (   672,   638)
+	 18: Rel (    88,     0)  ->  Abs (   760,   638)
+	 19: Rel (   244,     0)  ->  Abs (  1004,   638)
+	 20: Rel (     0,  -149)  ->  Abs (  1004,   489)
+	 21: Rel (     0,  -118)  ->  Abs (  1004,   371)
+	 22: Rel (  -198,   -70)  ->  Abs (   806,   301)
+	 23: Rel (    51,   -93)  ->  Abs (   857,   208)
+	 24: Rel (    57,   -40)  ->  Abs (   914,   168)
+	 25: Rel (    64,   -45)  ->  Abs (   978,   123)
+	 26: Rel (    99,     0)  ->  Abs (  1077,   123)
+	 27: Rel (   152,     0)  ->  Abs (  1229,   123)
+	 28: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	 29: Rel (  -177,     0)  ->  Abs (  1052,     0)
+	 30: Rel (  -123,     0)  ->  Abs (   929,     0)
+	 31: Rel (   -80,    74)  ->  Abs (   849,    74)
+	 32: Rel (   -66,    61)  ->  Abs (   783,   135)
+	 33: Rel (   -51,   128)  ->  Abs (   732,   263)
+	 34: Rel (  -144,   -80)  ->  Abs (   588,   183)
+	 35: Rel (  -103,   -88)  ->  Abs (   485,    95)
+	 36: Rel (  -113,  -117)  ->  Abs (   372,   -22)
+	 37: Rel (     0,  -119)  ->  Abs (   372,  -141)
+	 38: Rel (     0,  -130)  ->  Abs (   372,  -271)
+	 39: Rel (   149,   -82)  ->  Abs (   521,  -353)
+	 40: Rel (   125,   -68)  ->  Abs (   646,  -421)
+	 41: Rel (   144,     0)  ->  Abs (   790,  -421)
+	 42: Rel (   230,     0)  ->  Abs (  1020,  -421)
+	 43: Rel (  -446,   935)  ->  Abs (   574,   514)
+	 44: Rel (   116,   -33)  ->  Abs (   690,   481)
+	 45: Rel (    70,  -100)  ->  Abs (   760,   381)
+	 46: Rel (   131,    47)  ->  Abs (   891,   428)
+	 47: Rel (     0,    51)  ->  Abs (   891,   479)
+	 48: Rel (     0,    75)  ->  Abs (   891,   554)
+	 49: Rel (  -136,     0)  ->  Abs (   755,   554)
+	 50: Rel (   -71,     0)  ->  Abs (   684,   554)
+
+	Glyph 971: off = 0x000305E8, len = 242
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			938
+	  yMax:			684
+
+	EndPoints
+	---------
+	  0:  34
+
+	  Length of Instructions:	138
+	00000: NPUSHB      (29):   169    16   187    16   201    13     3     2    64    12 
+	                            19    52   104     3   181    34   198    31   213    31 
+	                             4     9     2   121     3   181    31     3    22 
+	00031: PUSHW[1]            -64 
+	00034: PUSHB[6]             12    19    52    22    22    17 
+	00041: PUSHW[1]            903 
+	00044: NPUSHB      (16):    15    26     1   127    26   143    26   159    26     3 
+	                            26    26    11    11     7     0 
+	00062: PUSHW[1]            909 
+	00065: PUSHB[3]              1     1     7 
+	00069: PUSHW[1]            907 
+	00072: PUSHB[7]              6    11     0    20    20     0    29 
+	00080: PUSHW[1]            885 
+	00083: NPUSHB       (9):    14    14     6     1     1     0     7     6     4 
+	00094: SCANTYPE   
+	00095: MDAP[rd]   
+	00096: ALIGNRP    
+	00097: MDAP[rd]   
+	00098: SHP[rp1,zp0] 
+	00099: MDAP[rd]   
+	00100: SRP1       
+	00101: IP         
+	00102: MDAP[rd]   
+	00103: MIRP[nrp0,md,rd,1] 
+	00104: SRP1       
+	00105: SHP[rp1,zp0] 
+	00106: MDAP[rd]   
+	00107: SRP1       
+	00108: IP         
+	00109: SVTCA[y-axis] 
+	00110: MDAP[rd]   
+	00111: MIRP[nrp0,md,rd,1] 
+	00112: SHP[rp1,zp0] 
+	00113: MDAP[rd]   
+	00114: MIRP[nrp0,md,rd,1] 
+	00115: SRP1       
+	00116: SHP[rp1,zp0] 
+	00117: RTHG       
+	00118: MDAP[rd]   
+	00119: SHP[rp2,zp1] 
+	00120: RTG        
+	00121: MDAP[rd]   
+	00122: DELTAP1    
+	00123: DELTAP2    
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: SHP[rp1,zp0] 
+	00126: RUTG       
+	00127: MDAP[rd]   
+	00128: CALL       
+	00129: RTG        
+	00130: IUP[y]     
+	00131: IUP[x]     
+	00132: SVTCA[y-axis] 
+	00133: DELTAP1    
+	00134: DELTAP1    
+	00135: CALL       
+	00136: SVTCA[x-axis] 
+	00137: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:                      Y-Short         On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short On
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:                      Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:        XDual         Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   938,   295)  ->  Abs (   938,   295)
+	  1: Rel (   -18,  -132)  ->  Abs (   920,   163)
+	  2: Rel (  -355,  -102)  ->  Abs (   565,    61)
+	  3: Rel (  -109,   -31)  ->  Abs (   456,    30)
+	  4: Rel (  -191,   -30)  ->  Abs (   265,     0)
+	  5: Rel (   -84,     0)  ->  Abs (   181,     0)
+	  6: Rel (  -181,     0)  ->  Abs (     0,     0)
+	  7: Rel (     0,   122)  ->  Abs (     0,   122)
+	  8: Rel (   122,     0)  ->  Abs (   122,   122)
+	  9: Rel (   179,     0)  ->  Abs (   301,   122)
+	 10: Rel (   132,    16)  ->  Abs (   433,   138)
+	 11: Rel (    44,    31)  ->  Abs (   477,   169)
+	 12: Rel (   -42,    12)  ->  Abs (   435,   181)
+	 13: Rel (  -122,   108)  ->  Abs (   313,   289)
+	 14: Rel (     0,    36)  ->  Abs (   313,   325)
+	 15: Rel (     0,   104)  ->  Abs (   313,   429)
+	 16: Rel (   157,   255)  ->  Abs (   470,   684)
+	 17: Rel (   165,     0)  ->  Abs (   635,   684)
+	 18: Rel (   125,     0)  ->  Abs (   760,   684)
+	 19: Rel (   121,  -161)  ->  Abs (   881,   523)
+	 20: Rel (     0,   -32)  ->  Abs (   881,   491)
+	 21: Rel (     0,   -18)  ->  Abs (   881,   473)
+	 22: Rel (   -14,     0)  ->  Abs (   867,   473)
+	 23: Rel (    -7,     0)  ->  Abs (   860,   473)
+	 24: Rel (   -33,    24)  ->  Abs (   827,   497)
+	 25: Rel (  -114,    80)  ->  Abs (   713,   577)
+	 26: Rel (   -95,     0)  ->  Abs (   618,   577)
+	 27: Rel (   -79,     0)  ->  Abs (   539,   577)
+	 28: Rel (  -145,   -81)  ->  Abs (   394,   496)
+	 29: Rel (     0,   -63)  ->  Abs (   394,   433)
+	 30: Rel (     0,   -90)  ->  Abs (   394,   343)
+	 31: Rel (   167,  -109)  ->  Abs (   561,   234)
+	 32: Rel (   119,     0)  ->  Abs (   680,   234)
+	 33: Rel (    27,     0)  ->  Abs (   707,   234)
+	 34: Rel (    81,    12)  ->  Abs (   788,   246)
+
+	Glyph 972: off = 0x000306DA, len = 278
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			638
+
+	EndPoints
+	---------
+	  0:  29
+	  1:  37
+
+	  Length of Instructions:	160
+	00000: NPUSHB      (39):   208    31     1   192    31   219    17   215    30     3 
+	                           182    31   181    32   199    30     3   164    24   163 
+	                            32   182    16     3   149    16   149    31   150    32 
+	                             3    70    31   134    24   132    32     3    17 
+	00041: PUSHW[1]            -44 
+	00044: NPUSHB      (33):    10    12    52     4    31   201     3   197    31   197 
+	                            32     4   108     2   116    31   201     2   196    24 
+	                           212    24     5     3    25    16    32    18    30    19 
+	                             7     9    21 
+	00079: PUSHW[7]            899    36    29   907     0    10   907 
+	00094: NPUSHB      (14):     9    30    16     3    32    25     5    23    30    19 
+	                            18    18     9    34 
+	00110: PUSHW[1]            892 
+	00113: PUSHB[7]             23    23    29     0    10     9     4 
+	00121: SCANTYPE   
+	00122: MDAP[rd]   
+	00123: ALIGNRP    
+	00124: MDAP[rd]   
+	00125: ALIGNRP    
+	00126: SHP[rp1,zp0] 
+	00127: MDAP[rd]   
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: SRP1       
+	00130: SHP[rp1,zp0] 
+	00131: MDAP[rd]   
+	00132: SHP[rp1,zp0] 
+	00133: SHP[rp1,zp0] 
+	00134: SRP2       
+	00135: SLOOP      
+	00136: IP         
+	00137: SVTCA[y-axis] 
+	00138: MDAP[rd]   
+	00139: MIRP[nrp0,md,rd,1] 
+	00140: MDAP[rd]   
+	00141: MIRP[nrp0,md,rd,1] 
+	00142: MDAP[rd]   
+	00143: MIRP[nrp0,md,rd,1] 
+	00144: SRP1       
+	00145: SLOOP      
+	00146: IP         
+	00147: IUP[y]     
+	00148: IUP[x]     
+	00149: SVTCA[x-axis] 
+	00150: DELTAP1    
+	00151: SVTCA[y-axis] 
+	00152: DELTAP2    
+	00153: CALL       
+	00154: DELTAP1    
+	00155: DELTAP1    
+	00156: DELTAP1    
+	00157: DELTAP1    
+	00158: DELTAP1    
+	00159: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:                              X-Short On
+	  4:                      Y-Short X-Short Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual                               On
+	 12:  YDual XDual                 X-Short Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual               Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:                      Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short On
+	 30:                                      On
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short X-Short On
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,     0)  ->  Abs (  1229,     0)
+	  1: Rel (  -177,     0)  ->  Abs (  1052,     0)
+	  2: Rel (  -217,     0)  ->  Abs (   835,     0)
+	  3: Rel (  -104,   263)  ->  Abs (   731,   263)
+	  4: Rel (   -70,   -37)  ->  Abs (   661,   226)
+	  5: Rel (   -76,   -69)  ->  Abs (   585,   157)
+	  6: Rel (  -103,   -92)  ->  Abs (   482,    65)
+	  7: Rel (  -117,   -65)  ->  Abs (   365,     0)
+	  8: Rel (  -104,     0)  ->  Abs (   261,     0)
+	  9: Rel (  -261,     0)  ->  Abs (     0,     0)
+	 10: Rel (     0,   123)  ->  Abs (     0,   123)
+	 11: Rel (   272,     0)  ->  Abs (   272,   123)
+	 12: Rel (    88,     0)  ->  Abs (   360,   123)
+	 13: Rel (   113,    55)  ->  Abs (   473,   178)
+	 14: Rel (   126,    99)  ->  Abs (   599,   277)
+	 15: Rel (    49,    39)  ->  Abs (   648,   316)
+	 16: Rel (    40,    24)  ->  Abs (   688,   340)
+	 17: Rel (   -92,   106)  ->  Abs (   596,   446)
+	 18: Rel (  -108,     8)  ->  Abs (   488,   454)
+	 19: Rel (    60,   146)  ->  Abs (   548,   600)
+	 20: Rel (   118,    38)  ->  Abs (   666,   638)
+	 21: Rel (    94,     0)  ->  Abs (   760,   638)
+	 22: Rel (   243,     0)  ->  Abs (  1003,   638)
+	 23: Rel (     0,  -147)  ->  Abs (  1003,   491)
+	 24: Rel (     0,  -114)  ->  Abs (  1003,   377)
+	 25: Rel (  -199,   -78)  ->  Abs (   804,   299)
+	 26: Rel (    65,  -111)  ->  Abs (   869,   188)
+	 27: Rel (   115,   -65)  ->  Abs (   984,   123)
+	 28: Rel (    96,     0)  ->  Abs (  1080,   123)
+	 29: Rel (   149,     0)  ->  Abs (  1229,   123)
+	 30: Rel (  -642,   397)  ->  Abs (   587,   520)
+	 31: Rel (   123,   -64)  ->  Abs (   710,   456)
+	 32: Rel (    50,   -77)  ->  Abs (   760,   379)
+	 33: Rel (   131,    46)  ->  Abs (   891,   425)
+	 34: Rel (     0,    54)  ->  Abs (   891,   479)
+	 35: Rel (     0,    75)  ->  Abs (   891,   554)
+	 36: Rel (  -136,     0)  ->  Abs (   755,   554)
+	 37: Rel (   -55,     0)  ->  Abs (   700,   554)
+
+	Glyph 973: off = 0x000307F0, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			282
+	  yMin:			-561
+	  xMax:			1221
+	  yMax:			1123
+
+	     0: Flags:		0x0236
+		Glyf Index:	969
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1021
+		X BOffset:	-42
+		Y BOffset:	49
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     1   224    46   240    46     2    16    46    79    46 
+	                           191    46     3    46 
+	00016: SVTCA[x-axis] 
+	00017: SRP1       
+	00018: DELTAP1    
+	00019: DELTAP1    
+	00020: SHC[rp1,zp0] 
+
+	Glyph 974: off = 0x0003081E, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			284
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			1123
+
+	     0: Flags:		0x0236
+		Glyf Index:	970
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1021
+		X BOffset:	127
+		Y BOffset:	49
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (32):     2    31    54    79    54   192    54   224    54     4 
+	                            54     2     0    53    64    53   255    53     3    79 
+	                            53    80    53   191    53     3     0    53    16    53 
+	                             2    53 
+	00034: SVTCA[x-axis] 
+	00035: SRP1       
+	00036: DELTAP1    
+	00037: DELTAP1    
+	00038: DELTAP2    
+	00039: SHC[rp1,zp0] 
+	00040: SVTCA[y-axis] 
+	00041: SRP1       
+	00042: DELTAP1    
+	00043: SHC[rp1,zp0] 
+
+	Glyph 975: off = 0x00030862, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			938
+	  yMax:			1130
+
+	     0: Flags:		0x0236
+		Glyf Index:	971
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	-142
+		Y WOffset:	56
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     1    38    64     9    13    52    38     1   143    37 
+	                             1    37    64     9    13    52    37 
+	00019: SVTCA[x-axis] 
+	00020: SRP1       
+	00021: CALL       
+	00022: DELTAP1    
+	00023: SHC[rp1,zp0] 
+	00024: SVTCA[y-axis] 
+	00025: SRP1       
+	00026: CALL       
+	00027: SHC[rp1,zp0] 
+
+	Glyph 976: off = 0x00030898, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1124
+
+	     0: Flags:		0x0236
+		Glyf Index:	972
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1021
+		X BOffset:	123
+		Y BOffset:	50
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (24):     2    31    41    79    41     2    41     2    16    40 
+	                             1     0    40    64    40     2    16    40    80    40 
+	                           191    40     3    40 
+	00026: SVTCA[x-axis] 
+	00027: SRP1       
+	00028: DELTAP1    
+	00029: DELTAP2    
+	00030: DELTAP3    
+	00031: SHC[rp1,zp0] 
+	00032: SVTCA[y-axis] 
+	00033: SRP1       
+	00034: DELTAP1    
+	00035: SHC[rp1,zp0] 
+
+	Glyph 977: off = 0x000308D4, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			11
+	  yMin:			-7
+	  xMax:			1209
+	  yMax:			1200
+
+	     0: Flags:		0x0236
+		Glyf Index:	1108
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	308
+		Y WOffset:	126
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     2   223    47     1    47     2   111    48   127    48 
+	                             2    79    48   191    48   207    48     3    48 
+	00021: SVTCA[x-axis] 
+	00022: SRP1       
+	00023: DELTAP1    
+	00024: DELTAP1    
+	00025: SHC[rp1,zp0] 
+	00026: SVTCA[y-axis] 
+	00027: SRP1       
+	00028: DELTAP1    
+	00029: SHC[rp1,zp0] 
+
+	Glyph 978: off = 0x0003090C, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			6
+	  yMin:			-68
+	  xMax:			1229
+	  yMax:			1053
+
+	     0: Flags:		0x0236
+		Glyf Index:	1109
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	351
+		Y WOffset:	-21
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2   111    51     1    51     2    50 
+	00008: PUSHW[1]            -64 
+	00011: NPUSHB      (11):     9    12    52    80    50    96    50   191    50     3 
+	                            50 
+	00024: SVTCA[x-axis] 
+	00025: SRP1       
+	00026: DELTAP1    
+	00027: CALL       
+	00028: SHC[rp1,zp0] 
+	00029: SVTCA[y-axis] 
+	00030: SRP1       
+	00031: DELTAP1    
+	00032: SHC[rp1,zp0] 
+
+	Glyph 979: off = 0x00030948, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1207
+	  yMax:			1183
+
+	     0: Flags:		0x0236
+		Glyf Index:	1110
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	324
+		Y WOffset:	109
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (27):     2    15    37     1    15    37    32    37     2    37 
+	                             2    64    36     1   111    36   191    36   207    36 
+	                             3    15    36    79    36     2    36 
+	00029: SVTCA[x-axis] 
+	00030: SRP1       
+	00031: DELTAP1    
+	00032: DELTAP1    
+	00033: DELTAP2    
+	00034: SHC[rp1,zp0] 
+	00035: SVTCA[y-axis] 
+	00036: SRP1       
+	00037: DELTAP1    
+	00038: DELTAP2    
+	00039: SHC[rp1,zp0] 
+
+	Glyph 980: off = 0x0003098A, len = 70
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1094
+
+	     0: Flags:		0x0236
+		Glyf Index:	1111
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	318
+		Y WOffset:	20
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (31):     2    15    36     1    79    36     1    36     2    64 
+	                            35   143    35   223    35     3    48    35    80    35 
+	                           160    35     3    16    35    32    35   127    35     3 
+	                            35 
+	00033: SVTCA[x-axis] 
+	00034: SRP1       
+	00035: DELTAP1    
+	00036: DELTAP1    
+	00037: DELTAP2    
+	00038: SHC[rp1,zp0] 
+	00039: SVTCA[y-axis] 
+	00040: SRP1       
+	00041: DELTAP1    
+	00042: DELTAP2    
+	00043: SHC[rp1,zp0] 
+
+	Glyph 981: off = 0x000309D0, len = 380
+	  numberOfContours:	3
+	  xMin:			166
+	  yMin:			-383
+	  xMax:			1153
+	  yMax:			1065
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  39
+	  2:  48
+
+	  Length of Instructions:	231
+	00000: NPUSHB      (41):    57    36   203    36   218    22   218    37     4   170 
+	                            36   185    36   201    22     3   137    41     1    22 
+	                             0     1    71    37   118    33     2     0     4     1 
+	                             3     6     6     7     5     2     2     1     5     5 
+	                             3 
+	00043: PUSHW[1]            924 
+	00046: NPUSHB      (16):     1     7     7    79     1   239     1     2    31     1 
+	                             1     1    26    26     8    15 
+	00064: PUSHW[1]            911 
+	00067: PUSHB[6]              0    44     1    44    44    40 
+	00074: PUSHW[4]            906     8    35   910 
+	00083: NPUSHB      (11):    20     7     5     5     4     6     1     3     3     2 
+	                             6 
+	00096: PUSHW[3]            923     2   -64 
+	00103: PUSHB[4]             12    22    52     2 
+	00108: PUSHW[1]            923 
+	00111: NPUSHB      (10):     0     4    64    12    15    52     4     4    40    12 
+	00123: PUSHW[1]            886 
+	00126: NPUSHB      (13):   128    47     1    15    47   111    47     2    47    47 
+	                            40     8    38 
+	00141: PUSHW[1]            884 
+	00144: PUSHB[4]             17    28    28    32 
+	00149: PUSHW[1]            883 
+	00152: PUSHB[2]             23     4 
+	00155: SCANTYPE   
+	00156: MDAP[rd]   
+	00157: MIRP[srp0,md,rd,1] 
+	00158: SHP[rp2,zp1] 
+	00159: MDAP[rd]   
+	00160: MDAP[rd]   
+	00161: MIRP[srp0,md,rd,1] 
+	00162: SHP[rp2,zp1] 
+	00163: SHP[rp2,zp1] 
+	00164: SHP[rp2,zp1] 
+	00165: MDAP[rd]   
+	00166: DELTAP1    
+	00167: DELTAP2    
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: SRP2       
+	00170: IP         
+	00171: MDAP[rd]   
+	00172: CALL       
+	00173: SHP[rp1,zp0] 
+	00174: MIRP[nrp0,md,rd,1] 
+	00175: CALL       
+	00176: MIRP[nrp0,md,rd,1] 
+	00177: RTDG       
+	00178: SRP2       
+	00179: IP         
+	00180: MDAP[rd]   
+	00181: ALIGNRP    
+	00182: SRP1       
+	00183: SRP2       
+	00184: IP         
+	00185: MDAP[rd]   
+	00186: ALIGNRP    
+	00187: RTG        
+	00188: SVTCA[y-axis] 
+	00189: MDAP[rd]   
+	00190: MIRP[nrp0,md,rd,1] 
+	00191: MDAP[rd]   
+	00192: MIRP[srp0,md,rd,1] 
+	00193: SHP[rp2,zp1] 
+	00194: MDAP[rd]   
+	00195: DELTAP1    
+	00196: MIRP[nrp0,md,rd,1] 
+	00197: SRP1       
+	00198: SHP[rp1,zp0] 
+	00199: MDAP[rd]   
+	00200: MDAP[rd]   
+	00201: DELTAP1    
+	00202: DELTAP1    
+	00203: SHP[rp1,zp0] 
+	00204: MDAP[rd]   
+	00205: SRP0       
+	00206: MIRP[srp0,md,rd,1] 
+	00207: SHP[rp2,zp1] 
+	00208: MDAP[rd]   
+	00209: RTDG       
+	00210: SRP1       
+	00211: IP         
+	00212: MDAP[rd]   
+	00213: SRP1       
+	00214: SRP2       
+	00215: IP         
+	00216: MDAP[rd]   
+	00217: RTG        
+	00218: SRP1       
+	00219: SRP2       
+	00220: IP         
+	00221: IP         
+	00222: IUP[y]     
+	00223: IUP[x]     
+	00224: SVTCA[y-axis] 
+	00225: DELTAP1    
+	00226: DELTAP3    
+	00227: SVTCA[x-axis] 
+	00228: DELTAP2    
+	00229: DELTAP1    
+	00230: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short On
+	  7:                      Y-Short X-Short On
+	  8:        XDual                 X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:        XDual                 X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual                         On
+	 18:        XDual         Y-Short         Off
+	 19:                      Y-Short         Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                               Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:        XDual                 X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:                      Y-Short X-Short On
+	 31:                      Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:        XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual               Y-Short X-Short On
+	 41:  YDual               Y-Short X-Short On
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short Off
+	 46:                      Y-Short X-Short Off
+	 47:        XDual         Y-Short         On
+	 48:        XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   940,   946)  ->  Abs (   940,   946)
+	  1: Rel (  -108,  -109)  ->  Abs (   832,   837)
+	  2: Rel (  -110,   111)  ->  Abs (   722,   948)
+	  3: Rel (   110,   109)  ->  Abs (   832,  1057)
+	  4: Rel (   100,  -100)  ->  Abs (   932,   957)
+	  5: Rel (   109,   108)  ->  Abs (  1041,  1065)
+	  6: Rel (   110,  -109)  ->  Abs (  1151,   956)
+	  7: Rel (  -110,  -111)  ->  Abs (  1041,   845)
+	  8: Rel (    26,  -708)  ->  Abs (  1067,   137)
+	  9: Rel (  -112,     0)  ->  Abs (   955,   137)
+	 10: Rel (  -109,    11)  ->  Abs (   846,   148)
+	 11: Rel (   -74,    47)  ->  Abs (   772,   195)
+	 12: Rel (     0,    40)  ->  Abs (   772,   235)
+	 13: Rel (     0,   105)  ->  Abs (   772,   340)
+	 14: Rel (   118,   301)  ->  Abs (   890,   641)
+	 15: Rel (    75,     0)  ->  Abs (   965,   641)
+	 16: Rel (   188,     0)  ->  Abs (  1153,   641)
+	 17: Rel (     0,  -576)  ->  Abs (  1153,    65)
+	 18: Rel (     0,  -211)  ->  Abs (  1153,  -146)
+	 19: Rel (  -287,  -237)  ->  Abs (   866,  -383)
+	 20: Rel (  -242,     0)  ->  Abs (   624,  -383)
+	 21: Rel (  -257,     0)  ->  Abs (   367,  -383)
+	 22: Rel (  -201,   174)  ->  Abs (   166,  -209)
+	 23: Rel (     0,   183)  ->  Abs (   166,   -26)
+	 24: Rel (     0,    57)  ->  Abs (   166,    31)
+	 25: Rel (    82,   277)  ->  Abs (   248,   308)
+	 26: Rel (    35,     0)  ->  Abs (   283,   308)
+	 27: Rel (    16,     0)  ->  Abs (   299,   308)
+	 28: Rel (     0,   -22)  ->  Abs (   299,   286)
+	 29: Rel (     0,   -16)  ->  Abs (   299,   270)
+	 30: Rel (   -31,   -97)  ->  Abs (   268,   173)
+	 31: Rel (   -30,   -97)  ->  Abs (   238,    76)
+	 32: Rel (     0,   -57)  ->  Abs (   238,    19)
+	 33: Rel (     0,  -134)  ->  Abs (   238,  -115)
+	 34: Rel (   171,  -133)  ->  Abs (   409,  -248)
+	 35: Rel (   200,     0)  ->  Abs (   609,  -248)
+	 36: Rel (   216,     0)  ->  Abs (   825,  -248)
+	 37: Rel (   250,   166)  ->  Abs (  1075,   -82)
+	 38: Rel (     0,   159)  ->  Abs (  1075,    77)
+	 39: Rel (     0,    27)  ->  Abs (  1075,   104)
+	 40: Rel (   -22,   152)  ->  Abs (  1053,   256)
+	 41: Rel (   -12,   122)  ->  Abs (  1041,   378)
+	 42: Rel (    -6,    58)  ->  Abs (  1035,   436)
+	 43: Rel (   -47,    63)  ->  Abs (   988,   499)
+	 44: Rel (   -38,     0)  ->  Abs (   950,   499)
+	 45: Rel (   -38,     0)  ->  Abs (   912,   499)
+	 46: Rel (   -54,  -132)  ->  Abs (   858,   367)
+	 47: Rel (     0,   -57)  ->  Abs (   858,   310)
+	 48: Rel (     0,   -54)  ->  Abs (   858,   256)
+
+	Glyph 982: off = 0x00030B4C, len = 436
+	  numberOfContours:	3
+	  xMin:			214
+	  yMin:			-357
+	  xMax:			1229
+	  yMax:			938
+
+	EndPoints
+	---------
+	  0:  8
+	  1:  43
+	  2:  52
+
+	  Length of Instructions:	277
+	00000: NPUSHB      (45):   182    11   201    28   217    28     3   149    11   144 
+	                            26   163    11     3    22     4     1   117    28   131 
+	                            25   132    28     3   103    25   103    29   116    25 
+	                             3     4     8     5     7     2     2     3     1     6 
+	                             6     5     1     1     7 
+	00047: PUSHW[1]            924 
+	00050: NPUSHB      (18):     5     3     3     5    64     9    12    52     5    64 
+	                            23    25    52     5    18    18    43    39 
+	00070: PUSHW[1]            911 
+	00073: PUSHB[3]             47    47    43 
+	00077: PUSHW[4]            907     9    44   907 
+	00086: PUSHB[6]             34    33    33    10    10     9 
+	00093: PUSHW[3]            858    27   910 
+	00100: NPUSHB      (12):    13     3     1     1     8     2     5    52     7     7 
+	                             6     2 
+	00114: PUSHW[3]            923     6   -64 
+	00121: PUSHB[4]             12    22    52     6 
+	00126: PUSHW[1]            923 
+	00129: NPUSHB      (13):     4     8    64    12    15    52     8     8    50    44 
+	                            20    20    24 
+	00144: PUSHW[4]            879    15    36   931 
+	00153: NPUSHB      (12):     0    50     1    15    50     1    50    50    33    29 
+	                            31    44 
+	00167: PUSHW[1]            887 
+	00170: PUSHB[3]             42    42    31 
+	00174: PUSHW[1]            879 
+	00177: PUSHB[8]             48    10     1    10    10    43     9     4 
+	00186: SCANTYPE   
+	00187: MDAP[rd]   
+	00188: ALIGNRP    
+	00189: SHP[rp1,zp0] 
+	00190: MDAP[rd]   
+	00191: DELTAP1    
+	00192: MIRP[nrp0,md,rd,1] 
+	00193: SHP[rp1,zp0] 
+	00194: MDAP[rd]   
+	00195: MIRP[nrp0,md,rd,1] 
+	00196: SRP1       
+	00197: SHP[rp1,zp0] 
+	00198: SHP[rp1,zp0] 
+	00199: SHP[rp2,zp1] 
+	00200: MDAP[rd]   
+	00201: DELTAP1    
+	00202: DELTAP2    
+	00203: MIRP[nrp0,md,rd,1] 
+	00204: MDAP[rd]   
+	00205: MIRP[srp0,md,rd,1] 
+	00206: SHP[rp2,zp1] 
+	00207: MDAP[rd]   
+	00208: SRP1       
+	00209: SRP2       
+	00210: IP         
+	00211: MDAP[rd]   
+	00212: CALL       
+	00213: SHP[rp1,zp0] 
+	00214: MIRP[nrp0,md,rd,1] 
+	00215: CALL       
+	00216: MIRP[nrp0,nmd,rd,0] 
+	00217: RTDG       
+	00218: SRP2       
+	00219: IP         
+	00220: MDAP[rd]   
+	00221: MIRP[nrp0,nmd,rd,2] 
+	00222: SRP1       
+	00223: SRP2       
+	00224: IP         
+	00225: MDAP[rd]   
+	00226: ALIGNRP    
+	00227: RTG        
+	00228: SVTCA[y-axis] 
+	00229: MDAP[rd]   
+	00230: MIRP[nrp0,md,rd,1] 
+	00231: MIAP[rd+ci] 
+	00232: ALIGNRP    
+	00233: SRP0       
+	00234: ALIGNRP    
+	00235: SRP0       
+	00236: ALIGNRP    
+	00237: MIRP[nrp0,md,rd,1] 
+	00238: SRP0       
+	00239: MIRP[srp0,md,rd,1] 
+	00240: SHP[rp2,zp1] 
+	00241: MDAP[rd]   
+	00242: MIRP[nrp0,md,rd,1] 
+	00243: SRP2       
+	00244: IP         
+	00245: MDAP[rd]   
+	00246: MDAP[rd]   
+	00247: CALL       
+	00248: CALL       
+	00249: SHP[rp1,zp0] 
+	00250: MDAP[rd]   
+	00251: SRP0       
+	00252: MIRP[srp0,md,rd,1] 
+	00253: SHP[rp2,zp1] 
+	00254: MDAP[rd]   
+	00255: RTDG       
+	00256: SRP1       
+	00257: IP         
+	00258: MDAP[rd]   
+	00259: SRP1       
+	00260: SRP2       
+	00261: IP         
+	00262: MDAP[rd]   
+	00263: RTG        
+	00264: SRP1       
+	00265: SRP2       
+	00266: IP         
+	00267: IP         
+	00268: IUP[y]     
+	00269: IUP[x]     
+	00270: SVTCA[y-axis] 
+	00271: DELTAP1    
+	00272: DELTAP1    
+	00273: DELTAP3    
+	00274: SVTCA[x-axis] 
+	00275: DELTAP1    
+	00276: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short On
+	  3:                      Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short On
+	  5:                      Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short On
+	  9:                                      On
+	 10:  YDual                       X-Short On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short         Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                               Off
+	 15:        XDual                         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:                      Y-Short X-Short On
+	 23:                      Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual                               Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual               Y-Short X-Short On
+	 34:  YDual                       X-Short On
+	 35:  YDual                               Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:        XDual                 X-Short Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:        XDual                 X-Short Off
+	 42:        XDual         Y-Short X-Short On
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual                       X-Short On
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short Off
+	 49:                      Y-Short X-Short Off
+	 50:        XDual         Y-Short         On
+	 51:        XDual         Y-Short         Off
+	 52:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   926,   829)  ->  Abs (   926,   829)
+	  1: Rel (   110,   109)  ->  Abs (  1036,   938)
+	  2: Rel (   110,  -109)  ->  Abs (  1146,   829)
+	  3: Rel (  -110,  -110)  ->  Abs (  1036,   719)
+	  4: Rel (   -99,   100)  ->  Abs (   937,   819)
+	  5: Rel (  -107,  -106)  ->  Abs (   830,   713)
+	  6: Rel (  -110,   111)  ->  Abs (   720,   824)
+	  7: Rel (   107,   106)  ->  Abs (   827,   930)
+	  8: Rel (   100,  -101)  ->  Abs (   927,   829)
+	  9: Rel (   302,  -829)  ->  Abs (  1229,     0)
+	 10: Rel (   -82,     0)  ->  Abs (  1147,     0)
+	 11: Rel (     0,  -175)  ->  Abs (  1147,  -175)
+	 12: Rel (  -278,  -182)  ->  Abs (   869,  -357)
+	 13: Rel (  -236,     0)  ->  Abs (   633,  -357)
+	 14: Rel (  -419,     0)  ->  Abs (   214,  -357)
+	 15: Rel (     0,   333)  ->  Abs (   214,   -24)
+	 16: Rel (     0,    94)  ->  Abs (   214,    70)
+	 17: Rel (    79,   216)  ->  Abs (   293,   286)
+	 18: Rel (    25,     0)  ->  Abs (   318,   286)
+	 19: Rel (    13,     0)  ->  Abs (   331,   286)
+	 20: Rel (     0,   -16)  ->  Abs (   331,   270)
+	 21: Rel (     0,    -8)  ->  Abs (   331,   262)
+	 22: Rel (    -8,   -22)  ->  Abs (   323,   240)
+	 23: Rel (   -50,  -110)  ->  Abs (   273,   130)
+	 24: Rel (     0,   -86)  ->  Abs (   273,    44)
+	 25: Rel (     0,  -127)  ->  Abs (   273,   -83)
+	 26: Rel (   190,  -140)  ->  Abs (   463,  -223)
+	 27: Rel (   156,     0)  ->  Abs (   619,  -223)
+	 28: Rel (   363,     0)  ->  Abs (   982,  -223)
+	 29: Rel (   102,   125)  ->  Abs (  1084,   -98)
+	 30: Rel (     5,    18)  ->  Abs (  1089,   -80)
+	 31: Rel (     0,    20)  ->  Abs (  1089,   -60)
+	 32: Rel (     0,    29)  ->  Abs (  1089,   -31)
+	 33: Rel (   -12,    31)  ->  Abs (  1077,     0)
+	 34: Rel (   -42,     0)  ->  Abs (  1035,     0)
+	 35: Rel (  -261,     0)  ->  Abs (   774,     0)
+	 36: Rel (     0,   105)  ->  Abs (   774,   105)
+	 37: Rel (     0,   112)  ->  Abs (   774,   217)
+	 38: Rel (   126,   349)  ->  Abs (   900,   566)
+	 39: Rel (    76,     0)  ->  Abs (   976,   566)
+	 40: Rel (    77,     0)  ->  Abs (  1053,   566)
+	 41: Rel (    93,  -298)  ->  Abs (  1146,   268)
+	 42: Rel (     1,  -145)  ->  Abs (  1147,   123)
+	 43: Rel (    82,     0)  ->  Abs (  1229,   123)
+	 44: Rel (  -173,     0)  ->  Abs (  1056,   123)
+	 45: Rel (    -2,   112)  ->  Abs (  1054,   235)
+	 46: Rel (   -54,   190)  ->  Abs (  1000,   425)
+	 47: Rel (   -45,     0)  ->  Abs (   955,   425)
+	 48: Rel (   -40,     0)  ->  Abs (   915,   425)
+	 49: Rel (   -57,  -177)  ->  Abs (   858,   248)
+	 50: Rel (     0,   -69)  ->  Abs (   858,   179)
+	 51: Rel (     0,   -56)  ->  Abs (   858,   123)
+	 52: Rel (   175,     0)  ->  Abs (  1033,   123)
+
+	Glyph 983: off = 0x00030D00, len = 84
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1207
+	  yMax:			1194
+
+	     0: Flags:		0x0236
+		Glyf Index:	1110
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	295
+		Y WOffset:	292
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (42):     2   239    37   255    37     2    64    37   143    37 
+	                           160    37     3    15    37    31    37     2    37     2 
+	                            36    64    20    22    52    36    64    13    17    52 
+	                           223    36     1   127    36   239    36     2    31    36 
+	                             1    36 
+	00044: SVTCA[x-axis] 
+	00045: SRP1       
+	00046: DELTAP1    
+	00047: DELTAP1    
+	00048: DELTAP2    
+	00049: CALL       
+	00050: CALL       
+	00051: SHC[rp1,zp0] 
+	00052: SVTCA[y-axis] 
+	00053: SRP1       
+	00054: DELTAP1    
+	00055: DELTAP1    
+	00056: DELTAP1    
+	00057: SHC[rp1,zp0] 
+
+	Glyph 984: off = 0x00030D54, len = 82
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1106
+
+	     0: Flags:		0x0236
+		Glyf Index:	1111
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	313
+		Y WOffset:	204
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     2    31    34     1    15    34   208    34     2    96 
+	                            34   239    34   255    34     3    34     2    35 
+	00021: PUSHW[1]            -64 
+	00024: PUSHB[4]              9    12    52    35 
+	00029: PUSHW[1]            -64 
+	00032: NPUSHB       (9):    17    19    52   127    35   240    35     2    35 
+	00043: SVTCA[x-axis] 
+	00044: SRP1       
+	00045: DELTAP1    
+	00046: CALL       
+	00047: CALL       
+	00048: SHC[rp1,zp0] 
+	00049: SVTCA[y-axis] 
+	00050: SRP1       
+	00051: DELTAP1    
+	00052: DELTAP2    
+	00053: DELTAP3    
+	00054: SHC[rp1,zp0] 
+
+	Glyph 985: off = 0x00030DA6, len = 412
+	  numberOfContours:	2
+	  xMin:			180
+	  yMin:			-18
+	  xMax:			1209
+	  yMax:			1178
+
+	EndPoints
+	---------
+	  0:  35
+	  1:  65
+
+	  Length of Instructions:	223
+	00000: NPUSHB      (17):   150    26   167    26   182    26   194    26     4     6 
+	                            58    69    58   132    58     3     5 
+	00019: PUSHW[1]            -24 
+	00022: NPUSHB      (34):    12    18    52     1    11    22    11    38    11    36 
+	                            62    54    11    52    62   201    30   201    34     8 
+	                           168    34   185    30   185    34     3    36    36    38 
+	                            64    51    51    47 
+	00058: PUSHW[1]            898 
+	00061: NPUSHB      (11):    15    53     1    47    53    63    53     2    53    53 
+	                            38 
+	00074: PUSHW[1]            937 
+	00077: PUSHB[8]             31    64     1    64     1    19    19    28 
+	00086: PUSHW[1]            909 
+	00089: PUSHB[7]             13    49    49    36    36    44    60 
+	00097: PUSHW[1]            879 
+	00100: PUSHB[3]             40    40    56 
+	00104: PUSHW[1]            875 
+	00107: PUSHB[4]             80    44     1    44 
+	00112: PUSHW[1]            -64 
+	00115: NPUSHB      (23):     9    12    52    44    34    33    31     5     7     9 
+	                             1     1     0     3     3     0    64    11    16    52 
+	                             0     0    31 
+	00140: PUSHW[1]            882 
+	00143: PUSHB[4]              9    21    21    25 
+	00148: PUSHW[4]            878    16     4   340 
+	00157: SCANCTRL   
+	00158: SCANTYPE   
+	00159: MDAP[rd]   
+	00160: MIRP[srp0,md,rd,1] 
+	00161: SHP[rp2,zp1] 
+	00162: MDAP[rd]   
+	00163: MDAP[rd]   
+	00164: MIRP[srp0,md,rd,1] 
+	00165: SHP[rp2,zp1] 
+	00166: MDAP[rd]   
+	00167: CALL       
+	00168: SHP[rp1,zp0] 
+	00169: MDAP[rd]   
+	00170: RTHG       
+	00171: SRP2       
+	00172: IP         
+	00173: MDAP[rd]   
+	00174: SRP1       
+	00175: IP         
+	00176: IP         
+	00177: SRP1       
+	00178: IP         
+	00179: IP         
+	00180: RTG        
+	00181: MDAP[rd]   
+	00182: CALL       
+	00183: DELTAP1    
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: SHP[rp1,zp0] 
+	00186: MDAP[rd]   
+	00187: MIRP[nrp0,md,rd,1] 
+	00188: SRP1       
+	00189: SHP[rp1,zp0] 
+	00190: MDAP[rd]   
+	00191: SHP[rp2,zp1] 
+	00192: MDAP[rd]   
+	00193: SVTCA[y-axis] 
+	00194: MDAP[rd]   
+	00195: MIRP[srp0,md,rd,1] 
+	00196: SHP[rp2,zp1] 
+	00197: MDAP[rd]   
+	00198: MDAP[rd]   
+	00199: MDAP[rd]   
+	00200: DELTAP1    
+	00201: MIRP[srp0,md,rd,1] 
+	00202: SHP[rp2,zp1] 
+	00203: MDAP[rd]   
+	00204: DELTAP1    
+	00205: DELTAP2    
+	00206: MIRP[nrp0,md,rd,1] 
+	00207: SHP[rp1,zp0] 
+	00208: MDAP[rd]   
+	00209: RTHG       
+	00210: SRP1       
+	00211: SRP2       
+	00212: IP         
+	00213: MDAP[rd]   
+	00214: IUP[y]     
+	00215: IUP[x]     
+	00216: SVTCA[x-axis] 
+	00217: DELTAP1    
+	00218: DELTAP1    
+	00219: CALL       
+	00220: SVTCA[y-axis] 
+	00221: DELTAP2    
+	00222: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short X-Short On
+	  4:                      Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:        XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                               On
+	 14:  YDual                               Off
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short X-Short On
+	 24:                      Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual                               Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:                              X-Short On
+	 34:                              X-Short On
+	 35:  YDual               Y-Short X-Short Off
+	 36:                                      On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual               Y-Short X-Short On
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short Off
+	 49:        XDual         Y-Short         On
+	 50:        XDual         Y-Short         Off
+	 51:                      Y-Short X-Short On
+	 52:  YDual               Y-Short X-Short Off
+	 53:  YDual                       X-Short On
+	 54:  YDual                       X-Short Off
+	 55:                      Y-Short X-Short Off
+	 56:        XDual         Y-Short         On
+	 57:        XDual         Y-Short         Off
+	 58:        XDual         Y-Short X-Short On
+	 59:        XDual         Y-Short X-Short Off
+	 60:        XDual         Y-Short         On
+	 61:        XDual         Y-Short         Off
+	 62:                      Y-Short X-Short Off
+	 63:                      Y-Short X-Short Off
+	 64:  YDual                       X-Short On
+	 65:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1040,  1057)  ->  Abs (  1040,  1057)
+	  1: Rel (    66,   121)  ->  Abs (  1106,  1178)
+	  2: Rel (    21,   -27)  ->  Abs (  1127,  1151)
+	  3: Rel (    82,   -61)  ->  Abs (  1209,  1090)
+	  4: Rel (   -33,   -61)  ->  Abs (  1176,  1029)
+	  5: Rel (     0,  -109)  ->  Abs (  1176,   920)
+	  6: Rel (     0,   -47)  ->  Abs (  1176,   873)
+	  7: Rel (    16,  -219)  ->  Abs (  1192,   654)
+	  8: Rel (    16,  -219)  ->  Abs (  1208,   435)
+	  9: Rel (     0,  -109)  ->  Abs (  1208,   326)
+	 10: Rel (     0,  -118)  ->  Abs (  1208,   208)
+	 11: Rel (   -71,  -152)  ->  Abs (  1137,    56)
+	 12: Rel (  -170,   -74)  ->  Abs (   967,   -18)
+	 13: Rel (  -287,     0)  ->  Abs (   680,   -18)
+	 14: Rel (  -306,     0)  ->  Abs (   374,   -18)
+	 15: Rel (  -194,   116)  ->  Abs (   180,    98)
+	 16: Rel (     0,   108)  ->  Abs (   180,   206)
+	 17: Rel (     0,    51)  ->  Abs (   180,   257)
+	 18: Rel (    27,   106)  ->  Abs (   207,   363)
+	 19: Rel (    19,     0)  ->  Abs (   226,   363)
+	 20: Rel (    14,     0)  ->  Abs (   240,   363)
+	 21: Rel (     0,   -18)  ->  Abs (   240,   345)
+	 22: Rel (     0,    -6)  ->  Abs (   240,   339)
+	 23: Rel (    -3,   -12)  ->  Abs (   237,   327)
+	 24: Rel (    -3,   -12)  ->  Abs (   234,   315)
+	 25: Rel (     0,   -10)  ->  Abs (   234,   305)
+	 26: Rel (     0,   -97)  ->  Abs (   234,   208)
+	 27: Rel (   204,   -94)  ->  Abs (   438,   114)
+	 28: Rel (   231,     0)  ->  Abs (   669,   114)
+	 29: Rel (    69,     0)  ->  Abs (   738,   114)
+	 30: Rel (   400,     0)  ->  Abs (  1138,   114)
+	 31: Rel (     0,   141)  ->  Abs (  1138,   255)
+	 32: Rel (     0,   139)  ->  Abs (  1138,   394)
+	 33: Rel (   -28,   281)  ->  Abs (  1110,   675)
+	 34: Rel (   -32,   315)  ->  Abs (  1078,   990)
+	 35: Rel (    -3,    34)  ->  Abs (  1075,  1024)
+	 36: Rel (  -609,  -543)  ->  Abs (   466,   481)
+	 37: Rel (    11,    15)  ->  Abs (   477,   496)
+	 38: Rel (   102,    25)  ->  Abs (   579,   521)
+	 39: Rel (    96,    23)  ->  Abs (   675,   544)
+	 40: Rel (     0,    21)  ->  Abs (   675,   565)
+	 41: Rel (     0,    20)  ->  Abs (   675,   585)
+	 42: Rel (   -74,     8)  ->  Abs (   601,   593)
+	 43: Rel (   -73,     8)  ->  Abs (   528,   601)
+	 44: Rel (     0,    44)  ->  Abs (   528,   645)
+	 45: Rel (     0,    54)  ->  Abs (   528,   699)
+	 46: Rel (    87,   153)  ->  Abs (   615,   852)
+	 47: Rel (    37,     0)  ->  Abs (   652,   852)
+	 48: Rel (    35,     0)  ->  Abs (   687,   852)
+	 49: Rel (     0,   -26)  ->  Abs (   687,   826)
+	 50: Rel (     0,   -40)  ->  Abs (   687,   786)
+	 51: Rel (   -21,   -27)  ->  Abs (   666,   759)
+	 52: Rel (   -16,    15)  ->  Abs (   650,   774)
+	 53: Rel (   -24,     0)  ->  Abs (   626,   774)
+	 54: Rel (   -20,     0)  ->  Abs (   606,   774)
+	 55: Rel (   -33,   -37)  ->  Abs (   573,   737)
+	 56: Rel (     0,   -20)  ->  Abs (   573,   717)
+	 57: Rel (     0,   -29)  ->  Abs (   573,   688)
+	 58: Rel (    79,   -11)  ->  Abs (   652,   677)
+	 59: Rel (    80,   -11)  ->  Abs (   732,   666)
+	 60: Rel (     0,   -56)  ->  Abs (   732,   610)
+	 61: Rel (     0,   -41)  ->  Abs (   732,   569)
+	 62: Rel (   -47,   -78)  ->  Abs (   685,   491)
+	 63: Rel (   -40,   -30)  ->  Abs (   645,   461)
+	 64: Rel (   -46,     0)  ->  Abs (   599,   461)
+	 65: Rel (  -132,     0)  ->  Abs (   467,   461)
+
+	Glyph 986: off = 0x00030F42, len = 450
+	  numberOfContours:	2
+	  xMin:			56
+	  yMin:			-32
+	  xMax:			1229
+	  yMax:			1156
+
+	EndPoints
+	---------
+	  0:  43
+	  1:  73
+
+	  Length of Instructions:	241
+	00000: NPUSHB      (50):     6    66    69    66   132    66     3   183    28     1 
+	                             3    15    21    15   182    26   194    26     4   150 
+	                            26   167    26     2    37    15    53    15     2    37 
+	                            70    52    70     2    90    36    93    37   109     2 
+	                           107    35   109    37   110    38     6    59    59    55 
+	00052: PUSHW[1]            898 
+	00055: NPUSHB      (11):    15    61     1    47    61    63    61     2    61    61 
+	                            46 
+	00068: PUSHW[1]            937 
+	00071: PUSHB[3]             72    14    10 
+	00075: PUSHW[1]            907 
+	00078: PUSHB[5]             11    42    24    24    30 
+	00084: PUSHW[1]            909 
+	00087: PUSHB[7]             18    57    57    44    44    52    68 
+	00095: PUSHW[1]            879 
+	00098: PUSHB[3]             48    48    64 
+	00102: PUSHW[1]            875 
+	00105: NPUSHB      (35):    64    15    52     1     0    52    16    52     2     0 
+	                            52     1    52    38    37    35     2     4    40     6 
+	                            14    14    35     6    42    42    40     0     0    95 
+	                            40     1    40    40    35 
+	00142: PUSHW[1]            882 
+	00145: PUSHB[8]             32     6     6    10    11    26    26    27 
+	00154: PUSHW[4]            879    21     5   340 
+	00163: SCANCTRL   
+	00164: SCANTYPE   
+	00165: MDAP[rd]   
+	00166: MIRP[srp0,md,rd,1] 
+	00167: SHP[rp2,zp1] 
+	00168: MDAP[rd]   
+	00169: MDAP[rd]   
+	00170: ALIGNRP    
+	00171: SHP[rp1,zp0] 
+	00172: MDAP[rd]   
+	00173: SMD        
+	00174: RTHG       
+	00175: MIRP[srp0,md,rd,1] 
+	00176: SHP[rp2,zp1] 
+	00177: RTG        
+	00178: MDAP[rd]   
+	00179: DELTAP2    
+	00180: SHP[rp1,zp0] 
+	00181: MDAP[rd]   
+	00182: RTHG       
+	00183: SRP2       
+	00184: IP         
+	00185: MDAP[rd]   
+	00186: RTG        
+	00187: SRP1       
+	00188: SRP2       
+	00189: IP         
+	00190: MDAP[rd]   
+	00191: SRP1       
+	00192: SRP2       
+	00193: IP         
+	00194: IP         
+	00195: SRP1       
+	00196: IP         
+	00197: IP         
+	00198: MDAP[rd]   
+	00199: DELTAP1    
+	00200: DELTAP1    
+	00201: DELTAP2    
+	00202: SMD        
+	00203: MIRP[nrp0,md,rd,1] 
+	00204: SHP[rp1,zp0] 
+	00205: MDAP[rd]   
+	00206: MIRP[nrp0,md,rd,1] 
+	00207: SRP1       
+	00208: SHP[rp1,zp0] 
+	00209: MDAP[rd]   
+	00210: SHP[rp2,zp1] 
+	00211: MDAP[rd]   
+	00212: SVTCA[y-axis] 
+	00213: MDAP[rd]   
+	00214: MIRP[srp0,md,rd,1] 
+	00215: SHP[rp2,zp1] 
+	00216: MDAP[rd]   
+	00217: MDAP[rd]   
+	00218: MDAP[rd]   
+	00219: MIRP[srp0,md,rd,1] 
+	00220: SHP[rp2,zp1] 
+	00221: MDAP[rd]   
+	00222: MIRP[srp0,md,rd,1] 
+	00223: SHP[rp2,zp1] 
+	00224: MDAP[rd]   
+	00225: DELTAP1    
+	00226: DELTAP2    
+	00227: MIRP[nrp0,md,rd,1] 
+	00228: SHP[rp1,zp0] 
+	00229: MDAP[rd]   
+	00230: IUP[y]     
+	00231: IUP[x]     
+	00232: SVTCA[x-axis] 
+	00233: DELTAP2    
+	00234: DELTAP1    
+	00235: DELTAP1    
+	00236: DELTAP1    
+	00237: DELTAP1    
+	00238: SVTCA[y-axis] 
+	00239: DELTAP1    
+	00240: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:        XDual         Y-Short X-Short On
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short On
+	 11:        XDual         Y-Short         On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short On
+	 15:              Rep-  2 Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                               Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:                      Y-Short X-Short On
+	 28:        XDual         Y-Short         Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:  YDual                               On
+	 31:  YDual XDual                 X-Short Off
+	 32:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:                              X-Short On
+	 38:                              X-Short On
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual               Y-Short X-Short On
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:        XDual         Y-Short X-Short Off
+	 44:                                      On
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short X-Short On
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short         On
+	 49:  YDual XDual         Y-Short         Off
+	 50:  YDual               Y-Short X-Short On
+	 51:  YDual               Y-Short X-Short Off
+	 52:  YDual XDual         Y-Short         On
+	 53:  YDual XDual         Y-Short         Off
+	 54:  YDual XDual         Y-Short X-Short Off
+	 55:  YDual XDual                 X-Short On
+	 56:  YDual XDual                 X-Short Off
+	 57:        XDual         Y-Short         On
+	 58:        XDual         Y-Short         Off
+	 59:                      Y-Short X-Short On
+	 60:  YDual               Y-Short X-Short Off
+	 61:  YDual                       X-Short On
+	 62:  YDual                       X-Short Off
+	 63:                      Y-Short X-Short Off
+	 64:        XDual         Y-Short         On
+	 65:        XDual         Y-Short         Off
+	 66:        XDual         Y-Short X-Short On
+	 67:        XDual         Y-Short X-Short Off
+	 68:        XDual         Y-Short         On
+	 69:        XDual         Y-Short         Off
+	 70:                      Y-Short X-Short Off
+	 71:                      Y-Short X-Short Off
+	 72:  YDual                       X-Short On
+	 73:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1039,  1069)  ->  Abs (  1039,  1069)
+	  1: Rel (   -33,   -60)  ->  Abs (  1006,  1009)
+	  2: Rel (     0,  -110)  ->  Abs (  1006,   899)
+	  3: Rel (     0,   -47)  ->  Abs (  1006,   852)
+	  4: Rel (    15,  -205)  ->  Abs (  1021,   647)
+	  5: Rel (    15,  -206)  ->  Abs (  1036,   441)
+	  6: Rel (     0,  -109)  ->  Abs (  1036,   332)
+	  7: Rel (     1,   -84)  ->  Abs (  1037,   248)
+	  8: Rel (    88,  -125)  ->  Abs (  1125,   123)
+	  9: Rel (    71,     0)  ->  Abs (  1196,   123)
+	 10: Rel (    33,     0)  ->  Abs (  1229,   123)
+	 11: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	 12: Rel (   -76,     0)  ->  Abs (  1153,     0)
+	 13: Rel (   -83,    47)  ->  Abs (  1070,    47)
+	 14: Rel (   -50,   118)  ->  Abs (  1020,   165)
+	 15: Rel (   -21,   -81)  ->  Abs (   999,    84)
+	 16: Rel (  -131,   -92)  ->  Abs (   868,    -8)
+	 17: Rel (  -184,   -24)  ->  Abs (   684,   -32)
+	 18: Rel (  -174,     0)  ->  Abs (   510,   -32)
+	 19: Rel (  -286,     0)  ->  Abs (   224,   -32)
+	 20: Rel (  -168,   117)  ->  Abs (    56,    85)
+	 21: Rel (     0,   108)  ->  Abs (    56,   193)
+	 22: Rel (     0,    50)  ->  Abs (    56,   243)
+	 23: Rel (    27,   107)  ->  Abs (    83,   350)
+	 24: Rel (    19,     0)  ->  Abs (   102,   350)
+	 25: Rel (    13,     0)  ->  Abs (   115,   350)
+	 26: Rel (     0,   -19)  ->  Abs (   115,   331)
+	 27: Rel (    -3,   -47)  ->  Abs (   112,   284)
+	 28: Rel (     0,   -88)  ->  Abs (   112,   196)
+	 29: Rel (   165,   -96)  ->  Abs (   277,   100)
+	 30: Rel (   291,     0)  ->  Abs (   568,   100)
+	 31: Rel (   113,     0)  ->  Abs (   681,   100)
+	 32: Rel (   162,    21)  ->  Abs (   843,   121)
+	 33: Rel (   100,    40)  ->  Abs (   943,   161)
+	 34: Rel (    23,    43)  ->  Abs (   966,   204)
+	 35: Rel (     0,    44)  ->  Abs (   966,   248)
+	 36: Rel (     0,   146)  ->  Abs (   966,   394)
+	 37: Rel (   -27,   274)  ->  Abs (   939,   668)
+	 38: Rel (   -30,   301)  ->  Abs (   909,   969)
+	 39: Rel (    -3,    27)  ->  Abs (   906,   996)
+	 40: Rel (   -36,    40)  ->  Abs (   870,  1036)
+	 41: Rel (    25,    41)  ->  Abs (   895,  1077)
+	 42: Rel (    41,    79)  ->  Abs (   936,  1156)
+	 43: Rel (    26,   -30)  ->  Abs (   962,  1126)
+	 44: Rel (  -666,  -666)  ->  Abs (   296,   460)
+	 45: Rel (    11,    16)  ->  Abs (   307,   476)
+	 46: Rel (   103,    24)  ->  Abs (   410,   500)
+	 47: Rel (    95,    23)  ->  Abs (   505,   523)
+	 48: Rel (     0,    21)  ->  Abs (   505,   544)
+	 49: Rel (     0,    20)  ->  Abs (   505,   564)
+	 50: Rel (   -73,     8)  ->  Abs (   432,   572)
+	 51: Rel (   -74,     8)  ->  Abs (   358,   580)
+	 52: Rel (     0,    44)  ->  Abs (   358,   624)
+	 53: Rel (     0,    54)  ->  Abs (   358,   678)
+	 54: Rel (    87,   153)  ->  Abs (   445,   831)
+	 55: Rel (    37,     0)  ->  Abs (   482,   831)
+	 56: Rel (    36,     0)  ->  Abs (   518,   831)
+	 57: Rel (     0,   -25)  ->  Abs (   518,   806)
+	 58: Rel (     0,   -40)  ->  Abs (   518,   766)
+	 59: Rel (   -22,   -28)  ->  Abs (   496,   738)
+	 60: Rel (   -15,    15)  ->  Abs (   481,   753)
+	 61: Rel (   -25,     0)  ->  Abs (   456,   753)
+	 62: Rel (   -19,     0)  ->  Abs (   437,   753)
+	 63: Rel (   -34,   -38)  ->  Abs (   403,   715)
+	 64: Rel (     0,   -20)  ->  Abs (   403,   695)
+	 65: Rel (     0,   -29)  ->  Abs (   403,   666)
+	 66: Rel (    80,   -10)  ->  Abs (   483,   656)
+	 67: Rel (    80,   -11)  ->  Abs (   563,   645)
+	 68: Rel (     0,   -56)  ->  Abs (   563,   589)
+	 69: Rel (     0,   -41)  ->  Abs (   563,   548)
+	 70: Rel (   -46,   -77)  ->  Abs (   517,   471)
+	 71: Rel (   -41,   -32)  ->  Abs (   476,   439)
+	 72: Rel (   -47,     0)  ->  Abs (   429,   439)
+	 73: Rel (  -132,     0)  ->  Abs (   297,   439)
+
+	Glyph 987: off = 0x00031104, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1160
+
+	     0: Flags:		0x0216
+		Glyf Index:	815
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 988: off = 0x00031114, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1159
+
+	     0: Flags:		0x0216
+		Glyf Index:	816
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 989: off = 0x00031124, len = 230
+	  numberOfContours:	1
+	  xMin:			264
+	  yMin:			-201
+	  xMax:			1130
+	  yMax:			1161
+
+	EndPoints
+	---------
+	  0:  39
+
+	  Length of Instructions:	106
+	00000: NPUSHB      (24):    74    17   182    29     2   175    12   188    12     2 
+	                             8    13   127    12   143    12     3     2    64    21 
+	                             1    21    21    31 
+	00026: PUSHW[1]            910 
+	00029: NPUSHB      (20):    15    38    37    35     7     9    11     2     2     0 
+	                             4     4     0    64    10    13    52     0     0    35 
+	00051: PUSHW[1]            883 
+	00054: PUSHB[4]             11    23    23    27 
+	00059: PUSHW[4]            880    18     5   340 
+	00068: SCANCTRL   
+	00069: SCANTYPE   
+	00070: MDAP[rd]   
+	00071: MIRP[srp0,md,rd,1] 
+	00072: SHP[rp2,zp1] 
+	00073: MDAP[rd]   
+	00074: MDAP[rd]   
+	00075: MIRP[srp0,md,rd,1] 
+	00076: SHP[rp2,zp1] 
+	00077: MDAP[rd]   
+	00078: CALL       
+	00079: SHP[rp1,zp0] 
+	00080: MDAP[rd]   
+	00081: RTHG       
+	00082: SRP2       
+	00083: IP         
+	00084: MDAP[rd]   
+	00085: SRP1       
+	00086: IP         
+	00087: IP         
+	00088: SRP1       
+	00089: IP         
+	00090: IP         
+	00091: SVTCA[y-axis] 
+	00092: RTG        
+	00093: MDAP[rd]   
+	00094: MIRP[srp0,md,rd,1] 
+	00095: SHP[rp2,zp1] 
+	00096: MDAP[rd]   
+	00097: DELTAP1    
+	00098: MDAP[rd]   
+	00099: IUP[y]     
+	00100: IUP[x]     
+	00101: SVTCA[y-axis] 
+	00102: DELTAP1    
+	00103: DELTAP1    
+	00104: SVTCA[x-axis] 
+	00105: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:        XDual                 X-Short On
+	 10:        XDual                 X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short         Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:                      Y-Short X-Short On
+	 26:                      Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:  YDual               Y-Short         Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual               Y-Short X-Short On
+	 38:                              X-Short On
+	 39:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   944,  1024)  ->  Abs (   944,  1024)
+	  1: Rel (    26,    55)  ->  Abs (   970,  1079)
+	  2: Rel (    46,    82)  ->  Abs (  1016,  1161)
+	  3: Rel (    36,   -39)  ->  Abs (  1052,  1122)
+	  4: Rel (    76,   -65)  ->  Abs (  1128,  1057)
+	  5: Rel (   -42,   -62)  ->  Abs (  1086,   995)
+	  6: Rel (   -17,   -48)  ->  Abs (  1069,   947)
+	  7: Rel (     0,   -36)  ->  Abs (  1069,   911)
+	  8: Rel (     0,   -79)  ->  Abs (  1069,   832)
+	  9: Rel (    30,  -299)  ->  Abs (  1099,   533)
+	 10: Rel (    31,  -299)  ->  Abs (  1130,   234)
+	 11: Rel (     0,   -54)  ->  Abs (  1130,   180)
+	 12: Rel (     0,  -168)  ->  Abs (  1130,    12)
+	 13: Rel (  -114,  -134)  ->  Abs (  1016,  -122)
+	 14: Rel (  -299,   -79)  ->  Abs (   717,  -201)
+	 15: Rel (  -142,     0)  ->  Abs (   575,  -201)
+	 16: Rel (  -144,     0)  ->  Abs (   431,  -201)
+	 17: Rel (  -167,   123)  ->  Abs (   264,   -78)
+	 18: Rel (     0,   109)  ->  Abs (   264,    31)
+	 19: Rel (     0,    85)  ->  Abs (   264,   116)
+	 20: Rel (    83,   220)  ->  Abs (   347,   336)
+	 21: Rel (    22,     0)  ->  Abs (   369,   336)
+	 22: Rel (    16,     0)  ->  Abs (   385,   336)
+	 23: Rel (     0,   -14)  ->  Abs (   385,   322)
+	 24: Rel (     0,   -10)  ->  Abs (   385,   312)
+	 25: Rel (   -30,   -68)  ->  Abs (   355,   244)
+	 26: Rel (   -29,   -68)  ->  Abs (   326,   176)
+	 27: Rel (     0,   -45)  ->  Abs (   326,   131)
+	 28: Rel (     0,   -68)  ->  Abs (   326,    63)
+	 29: Rel (    59,   -73)  ->  Abs (   385,   -10)
+	 30: Rel (   107,   -56)  ->  Abs (   492,   -66)
+	 31: Rel (    61,     0)  ->  Abs (   553,   -66)
+	 32: Rel (   180,     0)  ->  Abs (   733,   -66)
+	 33: Rel (   264,    60)  ->  Abs (   997,    -6)
+	 34: Rel (    62,    62)  ->  Abs (  1059,    56)
+	 35: Rel (     0,    61)  ->  Abs (  1059,   117)
+	 36: Rel (     0,    66)  ->  Abs (  1059,   183)
+	 37: Rel (   -19,   184)  ->  Abs (  1040,   367)
+	 38: Rel (   -53,   512)  ->  Abs (   987,   879)
+	 39: Rel (   -13,   127)  ->  Abs (   974,  1006)
+
+	Glyph 990: off = 0x0003120A, len = 256
+	  numberOfContours:	1
+	  xMin:			113
+	  yMin:			-322
+	  xMax:			1229
+	  yMax:			1162
+
+	EndPoints
+	---------
+	  0:  47
+
+	  Length of Instructions:	114
+	00000: NPUSHB      (16):   118     4   118    24     2    73     8   164     3   181 
+	                             3   181    20     4     0    43 
+	00018: PUSHW[1]            907 
+	00021: PUSHB[5]             44    33    12    12    22 
+	00027: PUSHW[1]            910 
+	00030: NPUSHB      (21):     6    29    28    26    37    39     2     0    33    33 
+	                            31    35    35    31    64     9    13    52    31    31 
+	                            26 
+	00053: PUSHW[1]            883 
+	00056: PUSHB[4]              0    14    14    18 
+	00061: PUSHW[1]            880 
+	00064: PUSHB[4]              9    43    44     5 
+	00069: PUSHW[1]            340 
+	00072: SCANCTRL   
+	00073: SCANTYPE   
+	00074: MDAP[rd]   
+	00075: ALIGNRP    
+	00076: MDAP[rd]   
+	00077: MIRP[srp0,md,rd,1] 
+	00078: SHP[rp2,zp1] 
+	00079: MDAP[rd]   
+	00080: MDAP[rd]   
+	00081: MIRP[srp0,md,rd,1] 
+	00082: SHP[rp2,zp1] 
+	00083: MDAP[rd]   
+	00084: CALL       
+	00085: SHP[rp1,zp0] 
+	00086: MDAP[rd]   
+	00087: RTHG       
+	00088: SRP2       
+	00089: IP         
+	00090: MDAP[rd]   
+	00091: SRP1       
+	00092: SHP[rp1,zp0] 
+	00093: IP         
+	00094: IP         
+	00095: SRP1       
+	00096: IP         
+	00097: IP         
+	00098: SVTCA[y-axis] 
+	00099: RTG        
+	00100: MDAP[rd]   
+	00101: MIRP[srp0,md,rd,1] 
+	00102: SHP[rp2,zp1] 
+	00103: MDAP[rd]   
+	00104: MDAP[rd]   
+	00105: MDAP[rd]   
+	00106: MIRP[srp0,md,rd,1] 
+	00107: SHP[rp2,zp1] 
+	00108: IUP[y]     
+	00109: IUP[x]     
+	00110: SVTCA[x-axis] 
+	00111: DELTAP1    
+	00112: SVTCA[y-axis] 
+	00113: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:                      Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:  YDual               Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual               Y-Short X-Short On
+	 29:                              X-Short On
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual               Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short X-Short On
+	 36:                      Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:        XDual                 X-Short On
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short On
+	 44:        XDual         Y-Short         On
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short Off
+	 47:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   972,   181)  ->  Abs (   972,   181)
+	  1: Rel (     6,   -63)  ->  Abs (   978,   118)
+	  2: Rel (     0,   -76)  ->  Abs (   978,    42)
+	  3: Rel (     0,  -171)  ->  Abs (   978,  -129)
+	  4: Rel (  -140,  -127)  ->  Abs (   838,  -256)
+	  5: Rel (  -304,   -65)  ->  Abs (   534,  -321)
+	  6: Rel (  -110,     0)  ->  Abs (   424,  -321)
+	  7: Rel (  -144,    -1)  ->  Abs (   280,  -322)
+	  8: Rel (  -167,   123)  ->  Abs (   113,  -199)
+	  9: Rel (     0,   110)  ->  Abs (   113,   -89)
+	 10: Rel (     0,    84)  ->  Abs (   113,    -5)
+	 11: Rel (    84,   220)  ->  Abs (   197,   215)
+	 12: Rel (    21,     0)  ->  Abs (   218,   215)
+	 13: Rel (    16,     0)  ->  Abs (   234,   215)
+	 14: Rel (     0,   -13)  ->  Abs (   234,   202)
+	 15: Rel (     0,   -10)  ->  Abs (   234,   192)
+	 16: Rel (   -29,   -68)  ->  Abs (   205,   124)
+	 17: Rel (   -30,   -69)  ->  Abs (   175,    55)
+	 18: Rel (     0,   -45)  ->  Abs (   175,    10)
+	 19: Rel (     0,   -67)  ->  Abs (   175,   -57)
+	 20: Rel (    59,   -73)  ->  Abs (   234,  -130)
+	 21: Rel (   108,   -57)  ->  Abs (   342,  -187)
+	 22: Rel (    60,     1)  ->  Abs (   402,  -186)
+	 23: Rel (   181,     0)  ->  Abs (   583,  -186)
+	 24: Rel (   264,    59)  ->  Abs (   847,  -127)
+	 25: Rel (    61,    63)  ->  Abs (   908,   -64)
+	 26: Rel (     0,    61)  ->  Abs (   908,    -3)
+	 27: Rel (     0,    52)  ->  Abs (   908,    49)
+	 28: Rel (   -19,   197)  ->  Abs (   889,   246)
+	 29: Rel (   -61,   634)  ->  Abs (   828,   880)
+	 30: Rel (   -12,   127)  ->  Abs (   816,  1007)
+	 31: Rel (   -31,    18)  ->  Abs (   785,  1025)
+	 32: Rel (    29,    64)  ->  Abs (   814,  1089)
+	 33: Rel (    43,    73)  ->  Abs (   857,  1162)
+	 34: Rel (    38,   -45)  ->  Abs (   895,  1117)
+	 35: Rel (    74,   -59)  ->  Abs (   969,  1058)
+	 36: Rel (   -59,   -72)  ->  Abs (   910,   986)
+	 37: Rel (     0,   -74)  ->  Abs (   910,   912)
+	 38: Rel (     0,  -116)  ->  Abs (   910,   796)
+	 39: Rel (    48,  -455)  ->  Abs (   958,   341)
+	 40: Rel (    10,   -94)  ->  Abs (   968,   247)
+	 41: Rel (   125,  -124)  ->  Abs (  1093,   123)
+	 42: Rel (    76,     0)  ->  Abs (  1169,   123)
+	 43: Rel (    60,     0)  ->  Abs (  1229,   123)
+	 44: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	 45: Rel (   -46,     0)  ->  Abs (  1183,     0)
+	 46: Rel (   -64,     0)  ->  Abs (  1119,     0)
+	 47: Rel (  -122,   104)  ->  Abs (   997,   104)
+
+	Glyph 991: off = 0x0003130A, len = 126
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1149
+	  yMax:			1172
+
+	EndPoints
+	---------
+	  0:  17
+
+	  Length of Instructions:	65
+	00000: PUSHW[2]             15   -64 
+	00005: PUSHB[5]              9    22    52     9     1 
+	00011: PUSHW[1]            907 
+	00014: NPUSHB      (16):     0    12    14     9     9     7    11    11     7    64 
+	                            10    16    52     7     7     4 
+	00032: PUSHW[1]            884 
+	00035: PUSHB[4]             14     1     0     4 
+	00040: SCANTYPE   
+	00041: MDAP[rd]   
+	00042: ALIGNRP    
+	00043: MDAP[rd]   
+	00044: MIRP[srp0,md,rd,1] 
+	00045: SHP[rp2,zp1] 
+	00046: MDAP[rd]   
+	00047: CALL       
+	00048: SHP[rp1,zp0] 
+	00049: MDAP[rd]   
+	00050: RTHG       
+	00051: SRP2       
+	00052: IP         
+	00053: MDAP[rd]   
+	00054: SRP1       
+	00055: IP         
+	00056: SVTCA[y-axis] 
+	00057: RTG        
+	00058: MDAP[rd]   
+	00059: MIRP[nrp0,md,rd,1] 
+	00060: MDAP[rd]   
+	00061: IUP[y]     
+	00062: IUP[x]     
+	00063: SVTCA[x-axis] 
+	00064: CALL       
+
+	Flags
+	-----
+	  0:  YDual XDual                         On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:  YDual XDual                 X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:                              X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short X-Short On
+	 12:                      Y-Short X-Short On
+	 13:        XDual                 X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (     0,     0)  ->  Abs (     0,     0)
+	  1: Rel (     0,   123)  ->  Abs (     0,   123)
+	  2: Rel (   969,     0)  ->  Abs (   969,   123)
+	  3: Rel (   104,     0)  ->  Abs (  1073,   123)
+	  4: Rel (     0,    62)  ->  Abs (  1073,   185)
+	  5: Rel (     0,   244)  ->  Abs (  1073,   429)
+	  6: Rel (   -59,   520)  ->  Abs (  1014,   949)
+	  7: Rel (   -50,    94)  ->  Abs (   964,  1043)
+	  8: Rel (    33,    63)  ->  Abs (   997,  1106)
+	  9: Rel (    51,    66)  ->  Abs (  1048,  1172)
+	 10: Rel (    41,   -87)  ->  Abs (  1089,  1085)
+	 11: Rel (    47,   -44)  ->  Abs (  1136,  1041)
+	 12: Rel (   -58,  -101)  ->  Abs (  1078,   940)
+	 13: Rel (    71,  -545)  ->  Abs (  1149,   395)
+	 14: Rel (     0,  -218)  ->  Abs (  1149,   177)
+	 15: Rel (     0,   -78)  ->  Abs (  1149,    99)
+	 16: Rel (   -83,   -99)  ->  Abs (  1066,     0)
+	 17: Rel (  -175,     0)  ->  Abs (   891,     0)
+
+	Glyph 992: off = 0x00031388, len = 204
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1162
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	120
+	00000: NPUSHB      (22):   199    22   215    22     2   153     3   163     6   182 
+	                             6     3   102    23   117    23   132    23     3    16 
+	                            18    25 
+	00024: PUSHW[4]            907     0     9   907 
+	00033: NPUSHB      (32):     8    16    79    18     1    18    18    14   208     5 
+	                             1     0     5    32     5     2   208     5     1    32 
+	                             5    79     5   127     5   160     5     4     5     5 
+	                            20    21 
+	00067: PUSHW[1]            883 
+	00070: NPUSHB      (11):    32    14     1    14    14     8    25     0     9     8 
+	                             4 
+	00083: SCANTYPE   
+	00084: MDAP[rd]   
+	00085: ALIGNRP    
+	00086: MDAP[rd]   
+	00087: ALIGNRP    
+	00088: SRP2       
+	00089: IP         
+	00090: MDAP[rd]   
+	00091: DELTAP1    
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: RTHG       
+	00094: SRP2       
+	00095: IP         
+	00096: MDAP[rd]   
+	00097: DELTAP1    
+	00098: DELTAP1    
+	00099: DELTAP2    
+	00100: DELTAP3    
+	00101: SRP1       
+	00102: IP         
+	00103: MDAP[rd]   
+	00104: DELTAP1    
+	00105: SHP[rp1,zp0] 
+	00106: SVTCA[y-axis] 
+	00107: RTG        
+	00108: MDAP[rd]   
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: MDAP[rd]   
+	00111: MIRP[nrp0,md,rd,1] 
+	00112: MDAP[rd]   
+	00113: SHP[rp1,zp0] 
+	00114: IUP[y]     
+	00115: IUP[x]     
+	00116: SVTCA[x-axis] 
+	00117: DELTAP1    
+	00118: DELTAP1    
+	00119: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                               On
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual                               On
+	 11:  YDual XDual                 X-Short Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:        XDual                         Off
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual                         On
+	 21:        XDual         Y-Short         On
+	 22:        XDual                         Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,     0)  ->  Abs (  1229,     0)
+	  1: Rel (   -86,     0)  ->  Abs (  1143,     0)
+	  2: Rel (  -116,     0)  ->  Abs (  1027,     0)
+	  3: Rel (  -141,    29)  ->  Abs (   886,    29)
+	  4: Rel (   -94,   102)  ->  Abs (   792,   131)
+	  5: Rel (   -31,    81)  ->  Abs (   761,   212)
+	  6: Rel (   -72,  -212)  ->  Abs (   689,     0)
+	  7: Rel (  -179,     0)  ->  Abs (   510,     0)
+	  8: Rel (  -510,     0)  ->  Abs (     0,     0)
+	  9: Rel (     0,   123)  ->  Abs (     0,   123)
+	 10: Rel (   529,     0)  ->  Abs (   529,   123)
+	 11: Rel (    58,     0)  ->  Abs (   587,   123)
+	 12: Rel (    75,    54)  ->  Abs (   662,   177)
+	 13: Rel (    32,   108)  ->  Abs (   694,   285)
+	 14: Rel (     0,   144)  ->  Abs (   694,   429)
+	 15: Rel (     0,   548)  ->  Abs (   694,   977)
+	 16: Rel (   -70,    72)  ->  Abs (   624,  1049)
+	 17: Rel (    57,    61)  ->  Abs (   681,  1110)
+	 18: Rel (    39,    52)  ->  Abs (   720,  1162)
+	 19: Rel (    46,   -80)  ->  Abs (   766,  1082)
+	 20: Rel (     0,  -275)  ->  Abs (   766,   807)
+	 21: Rel (     0,  -115)  ->  Abs (   766,   692)
+	 22: Rel (     0,  -348)  ->  Abs (   766,   344)
+	 23: Rel (   121,  -221)  ->  Abs (   887,   123)
+	 24: Rel (   127,     0)  ->  Abs (  1014,   123)
+	 25: Rel (   215,     0)  ->  Abs (  1229,   123)
+
+	Glyph 993: off = 0x00031454, len = 256
+	  numberOfContours:	2
+	  xMin:			434
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			592
+
+	EndPoints
+	---------
+	  0:  26
+	  1:  37
+
+	  Length of Instructions:	143
+	00000: NPUSHB      (19):   199    25     1    23    24    10    15    52   107    29 
+	                           116    26   231    26   247    26     4    13    24 
+	00021: PUSHW[1]            905 
+	00024: PUSHB[5]             30    30    34    20    36 
+	00030: PUSHW[1]            907 
+	00033: PUSHB[4]              3     3     0    27 
+	00038: PUSHW[5]            907     1   858    27   888 
+	00049: PUSHB[5]              0     1    10    10    13 
+	00055: PUSHW[1]            -64 
+	00058: NPUSHB      (19):     9    12    52    13    13     6    34    20    16    10 
+	                            12    52    20    48    32    64    32     2    32 
+	00079: PUSHW[1]            891 
+	00082: PUSHB[8]             22    64    20    25    52    22    22     6 
+	00091: PUSHW[1]            893 
+	00094: PUSHB[5]             48    18     1    18     4 
+	00100: SCANTYPE   
+	00101: MDAP[rd]   
+	00102: DELTAP1    
+	00103: MIRP[nrp0,md,rd,1] 
+	00104: IP         
+	00105: MDAP[rd]   
+	00106: CALL       
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: DELTAP2    
+	00109: IP         
+	00110: CALL       
+	00111: SHP[rp2,zp1] 
+	00112: SRP1       
+	00113: SHP[rp1,zp0] 
+	00114: RTHG       
+	00115: MDAP[rd]   
+	00116: CALL       
+	00117: SHP[rp1,zp0] 
+	00118: RTG        
+	00119: MDAP[rd]   
+	00120: MDAP[rd]   
+	00121: ALIGNRP    
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: SVTCA[y-axis] 
+	00124: MIAP[rd+ci] 
+	00125: MIRP[srp0,md,rd,1] 
+	00126: SHP[rp2,zp1] 
+	00127: SHP[rp1,zp0] 
+	00128: MDAP[rd]   
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: IP         
+	00131: IP         
+	00132: SHP[rp2,zp1] 
+	00133: MDAP[rd]   
+	00134: MIRP[nrp0,md,rd,1] 
+	00135: MDAP[rd]   
+	00136: IUP[y]     
+	00137: IUP[x]     
+	00138: SVTCA[x-axis] 
+	00139: DELTAP1    
+	00140: CALL       
+	00141: SVTCA[y-axis] 
+	00142: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short         On
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:                      Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual               Y-Short X-Short On
+	 15:  YDual               Y-Short X-Short Off
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual                               On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:        XDual         Y-Short X-Short On
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,   133)  ->  Abs (  1229,   133)
+	  1: Rel (     0,  -133)  ->  Abs (  1229,     0)
+	  2: Rel (  -149,    37)  ->  Abs (  1080,    37)
+	  3: Rel (  -240,     0)  ->  Abs (   840,    37)
+	  4: Rel (  -216,     0)  ->  Abs (   624,    37)
+	  5: Rel (   -72,   -62)  ->  Abs (   552,   -25)
+	  6: Rel (     0,   -62)  ->  Abs (   552,   -87)
+	  7: Rel (     0,   -24)  ->  Abs (   552,  -111)
+	  8: Rel (    48,  -150)  ->  Abs (   600,  -261)
+	  9: Rel (    30,  -130)  ->  Abs (   630,  -391)
+	 10: Rel (     0,   -55)  ->  Abs (   630,  -446)
+	 11: Rel (     0,   -33)  ->  Abs (   630,  -479)
+	 12: Rel (   -50,   -82)  ->  Abs (   580,  -561)
+	 13: Rel (   -15,     0)  ->  Abs (   565,  -561)
+	 14: Rel (   -18,    78)  ->  Abs (   547,  -483)
+	 15: Rel (   -29,   119)  ->  Abs (   518,  -364)
+	 16: Rel (   -31,    87)  ->  Abs (   487,  -277)
+	 17: Rel (   -53,   136)  ->  Abs (   434,  -141)
+	 18: Rel (     0,    63)  ->  Abs (   434,   -78)
+	 19: Rel (     0,   135)  ->  Abs (   434,    57)
+	 20: Rel (   125,    54)  ->  Abs (   559,   111)
+	 21: Rel (   -72,   105)  ->  Abs (   487,   216)
+	 22: Rel (     0,   127)  ->  Abs (   487,   343)
+	 23: Rel (     0,   249)  ->  Abs (   487,   592)
+	 24: Rel (   275,     0)  ->  Abs (   762,   592)
+	 25: Rel (   101,     0)  ->  Abs (   863,   592)
+	 26: Rel (   253,  -256)  ->  Abs (  1116,   336)
+	 27: Rel (    17,  -213)  ->  Abs (  1133,   123)
+	 28: Rel (   -98,   158)  ->  Abs (  1035,   281)
+	 29: Rel (  -202,   196)  ->  Abs (   833,   477)
+	 30: Rel (   -73,     0)  ->  Abs (   760,   477)
+	 31: Rel (  -164,     0)  ->  Abs (   596,   477)
+	 32: Rel (     0,  -188)  ->  Abs (   596,   289)
+	 33: Rel (     0,   -75)  ->  Abs (   596,   214)
+	 34: Rel (    29,   -75)  ->  Abs (   625,   139)
+	 35: Rel (    99,    23)  ->  Abs (   724,   162)
+	 36: Rel (   131,     0)  ->  Abs (   855,   162)
+	 37: Rel (   192,     0)  ->  Abs (  1047,   162)
+
+	Glyph 994: off = 0x00031554, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			434
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			592
+
+	     0: Flags:		0x0216
+		Glyf Index:	993
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 995: off = 0x00031564, len = 208
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			-9
+	  xMax:			1179
+	  yMax:			642
+
+	EndPoints
+	---------
+	  0:  21
+	  1:  31
+
+	  Length of Instructions:	105
+	00000: NPUSHB      (25):   166    31   182    31   198    31     3    68    11   181 
+	                            15     2    36    11    52    11   101    15     3     2 
+	                            10    30     3    22    14 
+	00027: PUSHW[1]            912 
+	00030: PUSHB[8]              0    27    16    27     2    27    27    22 
+	00039: PUSHW[6]            903     0     6   907     5   858 
+	00052: NPUSHB      (13):     2    10    64    30     1   160    30   176    30     2 
+	                            30    30    24 
+	00067: PUSHW[1]            886 
+	00070: PUSHB[4]             16     6     5     4 
+	00075: SCANTYPE   
+	00076: MDAP[rd]   
+	00077: ALIGNRP    
+	00078: MDAP[rd]   
+	00079: MIRP[srp0,md,rd,1] 
+	00080: SHP[rp2,zp1] 
+	00081: MDAP[rd]   
+	00082: DELTAP1    
+	00083: DELTAP2    
+	00084: SHP[rp1,zp0] 
+	00085: SHP[rp1,zp0] 
+	00086: SVTCA[y-axis] 
+	00087: MIAP[rd+ci] 
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: MDAP[rd]   
+	00090: MIRP[srp0,md,rd,1] 
+	00091: SHP[rp2,zp1] 
+	00092: MDAP[rd]   
+	00093: DELTAP1    
+	00094: MIRP[nrp0,md,rd,1] 
+	00095: SRP1       
+	00096: SLOOP      
+	00097: SHP[rp1,zp0] 
+	00098: IUP[y]     
+	00099: IUP[x]     
+	00100: SVTCA[x-axis] 
+	00101: DELTAP1    
+	00102: DELTAP1    
+	00103: SVTCA[y-axis] 
+	00104: DELTAP1    
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                               On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual                               Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual                         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:                      Y-Short X-Short Off
+	 30:                      Y-Short X-Short On
+	 31:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   966,    -6)  ->  Abs (   966,    -6)
+	  1: Rel (   -72,    71)  ->  Abs (   894,    65)
+	  2: Rel (   -94,    63)  ->  Abs (   800,   128)
+	  3: Rel (  -142,  -128)  ->  Abs (   658,     0)
+	  4: Rel (  -142,     0)  ->  Abs (   516,     0)
+	  5: Rel (  -516,     0)  ->  Abs (     0,     0)
+	  6: Rel (     0,   123)  ->  Abs (     0,   123)
+	  7: Rel (   254,     0)  ->  Abs (   254,   123)
+	  8: Rel (   315,     0)  ->  Abs (   569,   123)
+	  9: Rel (   179,    50)  ->  Abs (   748,   173)
+	 10: Rel (    19,    40)  ->  Abs (   767,   213)
+	 11: Rel (    75,   209)  ->  Abs (   842,   422)
+	 12: Rel (    37,   106)  ->  Abs (   879,   528)
+	 13: Rel (    87,   114)  ->  Abs (   966,   642)
+	 14: Rel (    45,     0)  ->  Abs (  1011,   642)
+	 15: Rel (   168,     0)  ->  Abs (  1179,   642)
+	 16: Rel (     0,  -271)  ->  Abs (  1179,   371)
+	 17: Rel (     0,  -126)  ->  Abs (  1179,   245)
+	 18: Rel (   -38,  -100)  ->  Abs (  1141,   145)
+	 19: Rel (   -20,   -52)  ->  Abs (  1121,    93)
+	 20: Rel (   -55,   -42)  ->  Abs (  1066,    51)
+	 21: Rel (   -81,   -60)  ->  Abs (   985,    -9)
+	 22: Rel (    55,   108)  ->  Abs (  1040,    99)
+	 23: Rel (    54,    83)  ->  Abs (  1094,   182)
+	 24: Rel (     0,   129)  ->  Abs (  1094,   311)
+	 25: Rel (     0,    77)  ->  Abs (  1094,   388)
+	 26: Rel (   -49,   110)  ->  Abs (  1045,   498)
+	 27: Rel (   -46,     0)  ->  Abs (   999,   498)
+	 28: Rel (   -26,     0)  ->  Abs (   973,   498)
+	 29: Rel (   -98,  -182)  ->  Abs (   875,   316)
+	 30: Rel (   -26,   -73)  ->  Abs (   849,   243)
+	 31: Rel (    92,   -53)  ->  Abs (   941,   190)
+
+	Glyph 996: off = 0x00031634, len = 234
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			-7
+	  xMax:			1229
+	  yMax:			641
+
+	EndPoints
+	---------
+	  0:  25
+	  1:  35
+
+	  Length of Instructions:	119
+	00000: PUSHW[2]             35   -64 
+	00005: PUSHB[4]             14    20    52    19 
+	00010: PUSHW[1]            -44 
+	00013: NPUSHB      (22):     9    12    52    72    20   163    19   181    19     3 
+	                            69    33    70    35     2    10    18    34     5     4 
+	                            26    22 
+	00037: PUSHW[1]            912 
+	00040: PUSHB[3]             31    31    26 
+	00044: NPUSHW      (10):   906     8     0   907     1   858    14   907    13   858 
+	00066: NPUSHB      (15):     5    23     8    26    34    28    28    18    10    34 
+	                             0     1    14    13     4 
+	00083: SCANTYPE   
+	00084: MDAP[rd]   
+	00085: ALIGNRP    
+	00086: MDAP[rd]   
+	00087: ALIGNRP    
+	00088: MDAP[rd]   
+	00089: SHP[rp1,zp0] 
+	00090: SHP[rp1,zp0] 
+	00091: SHP[rp1,zp0] 
+	00092: MDAP[rd]   
+	00093: SRP2       
+	00094: IP         
+	00095: IP         
+	00096: SHP[rp1,zp0] 
+	00097: SHP[rp1,zp0] 
+	00098: SVTCA[y-axis] 
+	00099: MIAP[rd+ci] 
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: MIAP[rd+ci] 
+	00102: MIRP[nrp0,md,rd,1] 
+	00103: MDAP[rd]   
+	00104: MIRP[srp0,md,rd,1] 
+	00105: SHP[rp2,zp1] 
+	00106: MDAP[rd]   
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: SRP1       
+	00109: SLOOP      
+	00110: SHP[rp1,zp0] 
+	00111: IUP[y]     
+	00112: IUP[x]     
+	00113: SVTCA[x-axis] 
+	00114: DELTAP1    
+	00115: DELTAP1    
+	00116: CALL       
+	00117: SVTCA[y-axis] 
+	00118: CALL       
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                               On
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual                 X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:                      Y-Short         On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:                      Y-Short X-Short On
+	 32:  YDual               Y-Short X-Short Off
+	 33:                      Y-Short X-Short Off
+	 34:                      Y-Short X-Short On
+	 35:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,   123)  ->  Abs (  1229,   123)
+	  1: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	  2: Rel (   -35,     0)  ->  Abs (  1194,     0)
+	  3: Rel (   -80,     0)  ->  Abs (  1114,     0)
+	  4: Rel (  -116,    74)  ->  Abs (   998,    74)
+	  5: Rel (   -56,   133)  ->  Abs (   942,   207)
+	  6: Rel (   -41,   -79)  ->  Abs (   901,   128)
+	  7: Rel (  -119,  -135)  ->  Abs (   782,    -7)
+	  8: Rel (   -33,     1)  ->  Abs (   749,    -6)
+	  9: Rel (   -72,    71)  ->  Abs (   677,    65)
+	 10: Rel (   -94,    62)  ->  Abs (   583,   127)
+	 11: Rel (  -142,  -127)  ->  Abs (   441,     0)
+	 12: Rel (  -142,     0)  ->  Abs (   299,     0)
+	 13: Rel (  -299,     0)  ->  Abs (     0,     0)
+	 14: Rel (     0,   123)  ->  Abs (     0,   123)
+	 15: Rel (    57,     0)  ->  Abs (    57,   123)
+	 16: Rel (   255,     0)  ->  Abs (   312,   123)
+	 17: Rel (   208,    35)  ->  Abs (   520,   158)
+	 18: Rel (    30,    54)  ->  Abs (   550,   212)
+	 19: Rel (    75,   210)  ->  Abs (   625,   422)
+	 20: Rel (    37,   105)  ->  Abs (   662,   527)
+	 21: Rel (    87,   114)  ->  Abs (   749,   641)
+	 22: Rel (    45,     0)  ->  Abs (   794,   641)
+	 23: Rel (   164,     0)  ->  Abs (   958,   641)
+	 24: Rel (     7,  -518)  ->  Abs (   965,   123)
+	 25: Rel (   221,     0)  ->  Abs (  1186,   123)
+	 26: Rel (  -379,    -8)  ->  Abs (   807,   115)
+	 27: Rel (    70,    77)  ->  Abs (   877,   192)
+	 28: Rel (     0,   118)  ->  Abs (   877,   310)
+	 29: Rel (     0,    78)  ->  Abs (   877,   388)
+	 30: Rel (   -50,   110)  ->  Abs (   827,   498)
+	 31: Rel (   -45,    -1)  ->  Abs (   782,   497)
+	 32: Rel (   -26,     1)  ->  Abs (   756,   498)
+	 33: Rel (  -102,  -191)  ->  Abs (   654,   307)
+	 34: Rel (   -22,   -65)  ->  Abs (   632,   242)
+	 35: Rel (   102,   -59)  ->  Abs (   734,   183)
+
+	Glyph 997: off = 0x0003171E, len = 268
+	  numberOfContours:	2
+	  xMin:			254
+	  yMin:			-385
+	  xMax:			1146
+	  yMax:			975
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  30
+
+	  Length of Instructions:	166
+	00000: NPUSHB      (44):   143    12   138    13   212     9     3   179     9   196 
+	                             9   218     4   213     5     4   150     6   170     4 
+	                           165     6   169    13     4   134     6   154     4   148 
+	                             5     3    84    25   101    25   116    25     3     0 
+	                            52     2     2     3 
+	00046: PUSHW[1]            924 
+	00049: NPUSHB      (10):    15     1     1     1    17    17    11     4     5    26 
+	00061: PUSHW[1]            911 
+	00064: NPUSHB      (19):    11   137     4     1     4     4     5    30    17    22 
+	                            52     5    64     9    16    52     5     5    29 
+	00085: PUSHW[1]            931 
+	00088: PUSHB[5]              8     1     3     3     0 
+	00094: PUSHW[4]            923     2    19   -64 
+	00103: PUSHB[6]              9    16    52    19    19    23 
+	00110: PUSHW[1]            887 
+	00113: PUSHB[2]             14     4 
+	00116: SCANTYPE   
+	00117: MDAP[rd]   
+	00118: MIRP[srp0,md,rd,1] 
+	00119: SHP[rp2,zp1] 
+	00120: MDAP[rd]   
+	00121: CALL       
+	00122: MDAP[rd]   
+	00123: MIRP[nrp0,md,rd,1] 
+	00124: RTDG       
+	00125: IP         
+	00126: MDAP[rd]   
+	00127: RTG        
+	00128: ALIGNRP    
+	00129: MDAP[rd]   
+	00130: MIRP[srp0,md,rd,1] 
+	00131: SHP[rp2,zp1] 
+	00132: RUTG       
+	00133: RTHG       
+	00134: MDAP[rd]   
+	00135: CALL       
+	00136: CALL       
+	00137: RTG        
+	00138: SHP[rp1,zp0] 
+	00139: RTG        
+	00140: MDAP[rd]   
+	00141: DELTAP1    
+	00142: SVTCA[y-axis] 
+	00143: MDAP[rd]   
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: MDAP[rd]   
+	00146: SHP[rp1,zp0] 
+	00147: SRP2       
+	00148: IP         
+	00149: MDAP[rd]   
+	00150: MDAP[rd]   
+	00151: DELTAP1    
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: RTDG       
+	00154: IP         
+	00155: MDAP[rd]   
+	00156: MIRP[srp0,nmd,rd,2] 
+	00157: RTG        
+	00158: IUP[y]     
+	00159: IUP[x]     
+	00160: SVTCA[x-axis] 
+	00161: DELTAP1    
+	00162: DELTAP1    
+	00163: DELTAP1    
+	00164: DELTAP1    
+	00165: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:        XDual                 X-Short On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual                 X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                                      Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:        XDual                 X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual               Y-Short         Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   849,   865)  ->  Abs (   849,   865)
+	  1: Rel (  -110,  -109)  ->  Abs (   739,   756)
+	  2: Rel (  -110,   110)  ->  Abs (   629,   866)
+	  3: Rel (   110,   109)  ->  Abs (   739,   975)
+	  4: Rel (   243,  -624)  ->  Abs (   982,   351)
+	  5: Rel (    69,   219)  ->  Abs (  1051,   570)
+	  6: Rel (    33,   -62)  ->  Abs (  1084,   508)
+	  7: Rel (    62,  -306)  ->  Abs (  1146,   202)
+	  8: Rel (     0,   -87)  ->  Abs (  1146,   115)
+	  9: Rel (     0,  -234)  ->  Abs (  1146,  -119)
+	 10: Rel (  -276,  -266)  ->  Abs (   870,  -385)
+	 11: Rel (  -241,     0)  ->  Abs (   629,  -385)
+	 12: Rel (  -162,     0)  ->  Abs (   467,  -385)
+	 13: Rel (  -213,   178)  ->  Abs (   254,  -207)
+	 14: Rel (     0,   146)  ->  Abs (   254,   -61)
+	 15: Rel (     0,   188)  ->  Abs (   254,   127)
+	 16: Rel (   149,   327)  ->  Abs (   403,   454)
+	 17: Rel (    44,     0)  ->  Abs (   447,   454)
+	 18: Rel (    18,     0)  ->  Abs (   465,   454)
+	 19: Rel (     0,   -17)  ->  Abs (   465,   437)
+	 20: Rel (     0,   -24)  ->  Abs (   465,   413)
+	 21: Rel (   -38,   -70)  ->  Abs (   427,   343)
+	 22: Rel (   -83,  -151)  ->  Abs (   344,   192)
+	 23: Rel (     0,  -165)  ->  Abs (   344,    27)
+	 24: Rel (     0,  -109)  ->  Abs (   344,   -82)
+	 25: Rel (   184,  -164)  ->  Abs (   528,  -246)
+	 26: Rel (   113,     0)  ->  Abs (   641,  -246)
+	 27: Rel (   160,     0)  ->  Abs (   801,  -246)
+	 28: Rel (   261,   134)  ->  Abs (  1062,  -112)
+	 29: Rel (     0,   116)  ->  Abs (  1062,     4)
+	 30: Rel (     0,   166)  ->  Abs (  1062,   170)
+
+	Glyph 998: off = 0x0003182A, len = 300
+	  numberOfContours:	2
+	  xMin:			142
+	  yMin:			-422
+	  xMax:			1229
+	  yMax:			962
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  38
+
+	  Length of Instructions:	179
+	00000: NPUSHB      (39):    98    23   114    23   174    29   175    30     4   199 
+	                            24   198    33   198    34     3   185    11   184    30 
+	                           182    34     3   150    34   169    12   168    30     3 
+	                           142    11   133    31   132    33     3     4    36 
+	00041: PUSHW[1]            907 
+	00044: PUSHB[5]             37     0     2     2     3 
+	00050: PUSHW[1]            924 
+	00053: PUSHB[7]              1    16    16     9    30    31    25 
+	00061: PUSHW[1]            911 
+	00064: NPUSHB      (22):     9    33     4    36    37    30   164    31     1    31 
+	                            30    17    22    52    31    64     9    16    52    31 
+	                            31    28 
+	00088: PUSHW[1]            931 
+	00091: PUSHB[8]              0     4     1     4     1     3     3     0 
+	00100: PUSHW[4]            923     2    18   -64 
+	00109: PUSHB[6]              9    16    52    18    18    22 
+	00116: PUSHW[1]            887 
+	00119: PUSHB[2]             13     4 
+	00122: SCANTYPE   
+	00123: MDAP[rd]   
+	00124: MIRP[srp0,md,rd,1] 
+	00125: SHP[rp2,zp1] 
+	00126: MDAP[rd]   
+	00127: CALL       
+	00128: MDAP[rd]   
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: RTDG       
+	00131: IP         
+	00132: MDAP[rd]   
+	00133: RTG        
+	00134: ALIGNRP    
+	00135: MDAP[rd]   
+	00136: DELTAP1    
+	00137: MIRP[srp0,md,rd,1] 
+	00138: SHP[rp2,zp1] 
+	00139: RUTG       
+	00140: RTHG       
+	00141: MDAP[rd]   
+	00142: CALL       
+	00143: CALL       
+	00144: DELTAP1    
+	00145: RTG        
+	00146: SHP[rp1,zp0] 
+	00147: RTG        
+	00148: MDAP[rd]   
+	00149: ALIGNRP    
+	00150: SRP1       
+	00151: SHP[rp1,zp0] 
+	00152: SVTCA[y-axis] 
+	00153: MDAP[rd]   
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: MDAP[rd]   
+	00156: SHP[rp1,zp0] 
+	00157: SRP2       
+	00158: IP         
+	00159: MDAP[rd]   
+	00160: MDAP[rd]   
+	00161: MIRP[nrp0,md,rd,1] 
+	00162: RTDG       
+	00163: IP         
+	00164: MDAP[rd]   
+	00165: ALIGNRP    
+	00166: RTG        
+	00167: MDAP[rd]   
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: IP         
+	00170: IUP[y]     
+	00171: IUP[x]     
+	00172: SVTCA[x-axis] 
+	00173: DELTAP1    
+	00174: DELTAP1    
+	00175: DELTAP1    
+	00176: DELTAP1    
+	00177: SVTCA[y-axis] 
+	00178: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:                                      On
+	  5:        XDual         Y-Short         Off
+	  6:              Rep-  2 Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:        XDual                 X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:  YDual               Y-Short         Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual               Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:        XDual         Y-Short X-Short Off
+	 33:        XDual         Y-Short X-Short On
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:        XDual         Y-Short         On
+	 38:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   764,   853)  ->  Abs (   764,   853)
+	  1: Rel (  -110,  -110)  ->  Abs (   654,   743)
+	  2: Rel (  -110,   110)  ->  Abs (   544,   853)
+	  3: Rel (   110,   109)  ->  Abs (   654,   962)
+	  4: Rel (   379,  -851)  ->  Abs (  1033,   111)
+	  5: Rel (     0,  -121)  ->  Abs (  1033,   -10)
+	  6: Rel (   -41,  -160)  ->  Abs (   992,  -170)
+	  7: Rel (  -121,  -158)  ->  Abs (   871,  -328)
+	  8: Rel (  -208,   -94)  ->  Abs (   663,  -422)
+	  9: Rel (  -146,     0)  ->  Abs (   517,  -422)
+	 10: Rel (  -112,     0)  ->  Abs (   405,  -422)
+	 11: Rel (  -170,    85)  ->  Abs (   235,  -337)
+	 12: Rel (   -93,   142)  ->  Abs (   142,  -195)
+	 13: Rel (     0,    97)  ->  Abs (   142,   -98)
+	 14: Rel (     1,   188)  ->  Abs (   143,    90)
+	 15: Rel (   148,   327)  ->  Abs (   291,   417)
+	 16: Rel (    44,     0)  ->  Abs (   335,   417)
+	 17: Rel (    18,     0)  ->  Abs (   353,   417)
+	 18: Rel (     0,   -17)  ->  Abs (   353,   400)
+	 19: Rel (     0,   -24)  ->  Abs (   353,   376)
+	 20: Rel (   -38,   -70)  ->  Abs (   315,   306)
+	 21: Rel (   -83,  -151)  ->  Abs (   232,   155)
+	 22: Rel (     0,  -165)  ->  Abs (   232,   -10)
+	 23: Rel (     0,  -109)  ->  Abs (   232,  -119)
+	 24: Rel (   185,  -164)  ->  Abs (   417,  -283)
+	 25: Rel (   112,     0)  ->  Abs (   529,  -283)
+	 26: Rel (   155,     0)  ->  Abs (   684,  -283)
+	 27: Rel (   266,   130)  ->  Abs (   950,  -153)
+	 28: Rel (     0,   120)  ->  Abs (   950,   -33)
+	 29: Rel (     0,   166)  ->  Abs (   950,   133)
+	 30: Rel (   -80,   181)  ->  Abs (   870,   314)
+	 31: Rel (    69,   219)  ->  Abs (   939,   533)
+	 32: Rel (    42,   -79)  ->  Abs (   981,   454)
+	 33: Rel (    27,  -152)  ->  Abs (  1008,   302)
+	 34: Rel (    15,   -78)  ->  Abs (  1023,   224)
+	 35: Rel (   125,  -101)  ->  Abs (  1148,   123)
+	 36: Rel (    81,     0)  ->  Abs (  1229,   123)
+	 37: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	 38: Rel (  -144,     0)  ->  Abs (  1085,     0)
+
+	Glyph 999: off = 0x00031956, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1187
+	  yMax:			1094
+
+	     0: Flags:		0x0236
+		Glyf Index:	1106
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1021
+		X WOffset:	348
+		Y WOffset:	20
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     1     0    16     1   192    16   224    16     2    79 
+	                            16   144    16     2    16 
+	00017: SVTCA[x-axis] 
+	00018: SRP1       
+	00019: DELTAP1    
+	00020: DELTAP1    
+	00021: DELTAP2    
+	00022: SHC[rp1,zp0] 
+
+	Glyph 1000: off = 0x00031988, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1053
+
+	     0: Flags:		0x0236
+		Glyf Index:	1107
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1021
+		X BOffset:	23
+		Y BOffset:	-21
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     1     0    26     1   191    26     1    79    26   111 
+	                            26     2    47    26    63    26     2    26 
+	00020: SVTCA[x-axis] 
+	00021: SRP1       
+	00022: DELTAP1    
+	00023: DELTAP1    
+	00024: DELTAP1    
+	00025: DELTAP2    
+	00026: SHC[rp1,zp0] 
+
+	Glyph 1001: off = 0x000319BC, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			499
+	  yMin:			-9
+	  xMax:			930
+	  yMax:			683
+
+	     0: Flags:		0x0216
+		Glyf Index:	776
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1002: off = 0x000319CC, len = 234
+	  numberOfContours:	2
+	  xMin:			388
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			853
+
+	EndPoints
+	---------
+	  0:  21
+	  1:  31
+
+	  Length of Instructions:	127
+	00000: NPUSHB      (18):   123    12   139    12     2    74    12   108    12     2 
+	                            13    16    22    10     6    30     7    13 
+	00020: PUSHW[1]            898 
+	00023: NPUSHB      (18):    13    23    31    23    47    23     3     0    23    16 
+	                            23     2    23    23    32    30     1    30 
+	00043: PUSHW[1]            905 
+	00046: PUSHB[8]              7     7     0    79    16     1    16    21 
+	00055: PUSHW[3]            907     0   858 
+	00062: PUSHB[7]             18    13    23    22     6     4    16 
+	00070: PUSHW[1]            886 
+	00073: PUSHB[4]             15    15     0    26 
+	00078: PUSHW[1]            891 
+	00081: PUSHB[4]             10    21     0     4 
+	00086: SCANTYPE   
+	00087: MDAP[rd]   
+	00088: ALIGNRP    
+	00089: MDAP[rd]   
+	00090: MIRP[nrp0,md,rd,1] 
+	00091: SRP2       
+	00092: IP         
+	00093: MDAP[rd]   
+	00094: RTHG       
+	00095: MIRP[nrp0,nmd,rd,0] 
+	00096: SLOOP      
+	00097: IP         
+	00098: SHP[rp2,zp1] 
+	00099: SVTCA[y-axis] 
+	00100: RTG        
+	00101: MIAP[rd+ci] 
+	00102: MIRP[nrp0,md,rd,1] 
+	00103: MDAP[rd]   
+	00104: DELTAP1    
+	00105: SRP2       
+	00106: IP         
+	00107: MDAP[rd]   
+	00108: MIRP[srp0,md,rd,1] 
+	00109: DELTAP2    
+	00110: SHP[rp2,zp1] 
+	00111: MDAP[rd]   
+	00112: DELTAP1    
+	00113: DELTAP2    
+	00114: MIRP[nrp0,md,rd,1] 
+	00115: SRP1       
+	00116: SRP2       
+	00117: IP         
+	00118: IP         
+	00119: SHP[rp2,zp1] 
+	00120: SVTCA[x-axis] 
+	00121: SHPIX      
+	00122: IUP[y]     
+	00123: IUP[x]     
+	00124: SVTCA[y-axis] 
+	00125: DELTAP1    
+	00126: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual       Rep-  2 Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:                      Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual               Y-Short         On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:        XDual                 X-Short Off
+	 18:        XDual                 X-Short On
+	 19:        XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual                               On
+	 22:  YDual               Y-Short         On
+	 23:  YDual               Y-Short X-Short On
+	 24:                      Y-Short X-Short Off
+	 25:                      Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,     0)  ->  Abs (  1229,     0)
+	  1: Rel (  -255,     0)  ->  Abs (   974,     0)
+	  2: Rel (   -56,     0)  ->  Abs (   918,     0)
+	  3: Rel (   -68,    32)  ->  Abs (   850,    32)
+	  4: Rel (   -32,    57)  ->  Abs (   818,    89)
+	  5: Rel (    -7,    51)  ->  Abs (   811,   140)
+	  6: Rel (    -9,   138)  ->  Abs (   802,   278)
+	  7: Rel (   -89,   -75)  ->  Abs (   713,   203)
+	  8: Rel (  -200,     8)  ->  Abs (   513,   211)
+	  9: Rel (  -125,    28)  ->  Abs (   388,   239)
+	 10: Rel (     0,    15)  ->  Abs (   388,   254)
+	 11: Rel (     0,    81)  ->  Abs (   388,   335)
+	 12: Rel (   101,   154)  ->  Abs (   489,   489)
+	 13: Rel (   296,    83)  ->  Abs (   785,   572)
+	 14: Rel (   -11,   122)  ->  Abs (   774,   694)
+	 15: Rel (   -20,    44)  ->  Abs (   754,   738)
+	 16: Rel (    86,   115)  ->  Abs (   840,   853)
+	 17: Rel (    20,  -342)  ->  Abs (   860,   511)
+	 18: Rel (    33,  -359)  ->  Abs (   893,   152)
+	 19: Rel (    20,   -29)  ->  Abs (   913,   123)
+	 20: Rel (    38,     0)  ->  Abs (   951,   123)
+	 21: Rel (   278,     0)  ->  Abs (  1229,   123)
+	 22: Rel (  -431,   225)  ->  Abs (   798,   348)
+	 23: Rel (    -9,   149)  ->  Abs (   789,   497)
+	 24: Rel (  -102,   -23)  ->  Abs (   687,   474)
+	 25: Rel (  -190,   -83)  ->  Abs (   497,   391)
+	 26: Rel (     0,   -35)  ->  Abs (   497,   356)
+	 27: Rel (     0,   -11)  ->  Abs (   497,   345)
+	 28: Rel (    36,   -11)  ->  Abs (   533,   334)
+	 29: Rel (   136,   -16)  ->  Abs (   669,   318)
+	 30: Rel (    36,     0)  ->  Abs (   705,   318)
+	 31: Rel (    26,     0)  ->  Abs (   731,   318)
+
+	Glyph 1003: off = 0x00031AB6, len = 360
+	  numberOfContours:	3
+	  xMin:			0
+	  yMin:			-1
+	  xMax:			894
+	  yMax:			664
+
+	EndPoints
+	---------
+	  0:  25
+	  1:  35
+	  2:  43
+
+	  Length of Instructions:	227
+	00000: NPUSHB      (72):     2    32    15    18    52    59     3    75     3    84 
+	                            26   202    39   233    39     5    67    26    67    27 
+	                           138    39   138    41     4    69    28    64    42     2 
+	                            34    41    35    42    53    28    48    42     4     2 
+	                            41    18    41     2    74    10    74    29   138    10 
+	                             3   192    36     1    36    36     0    10    42    27 
+	                            26    40     5    31     6    17   192    20     1    20 
+	                            20    15 
+	00074: PUSHW[1]            943 
+	00077: NPUSHB      (11):    32     0    31    16    31     2    31    31     2     5 
+	                             0 
+	00090: PUSHW[5]            858     6   907     5   858 
+	00101: NPUSHB      (20):     0     0    36    38    15    29    40     2     4    27 
+	                            10    34    12   192    17     1    17    17    34    42 
+	00123: PUSHW[1]            883 
+	00126: PUSHB[4]             27    27    34    24 
+	00131: PUSHW[1]            885 
+	00134: NPUSHB      (11):    32    38     1     0    38    16    38     2    38    38 
+	                            34 
+	00147: PUSHW[1]            885 
+	00150: PUSHB[8]              0    12     1    12    12     6     5     4 
+	00159: SCANTYPE   
+	00160: MDAP[rd]   
+	00161: ALIGNRP    
+	00162: SHP[rp1,zp0] 
+	00163: MDAP[rd]   
+	00164: DELTAP1    
+	00165: MIRP[srp0,md,rd,1] 
+	00166: SHP[rp2,zp1] 
+	00167: MDAP[rd]   
+	00168: DELTAP1    
+	00169: DELTAP1    
+	00170: MIRP[nrp0,md,rd,1] 
+	00171: SRP2       
+	00172: IP         
+	00173: MDAP[rd]   
+	00174: MIRP[nrp0,md,rd,1] 
+	00175: SRP1       
+	00176: SHP[rp1,zp0] 
+	00177: MDAP[rd]   
+	00178: DELTAP1    
+	00179: SRP1       
+	00180: SRP2       
+	00181: IP         
+	00182: SRP1       
+	00183: SLOOP      
+	00184: SHP[rp1,zp0] 
+	00185: SRP1       
+	00186: SHP[rp1,zp0] 
+	00187: SHP[rp1,zp0] 
+	00188: RTHG       
+	00189: MDAP[rd]   
+	00190: SVTCA[y-axis] 
+	00191: RTG        
+	00192: MIAP[rd+ci] 
+	00193: MIRP[nrp0,md,rd,1] 
+	00194: MIAP[rd+ci] 
+	00195: SRP1       
+	00196: IP         
+	00197: SHP[rp2,zp1] 
+	00198: MDAP[rd]   
+	00199: DELTAP1    
+	00200: SMD        
+	00201: RTHG       
+	00202: MIRP[srp0,md,rd,1] 
+	00203: SHP[rp2,zp1] 
+	00204: RTG        
+	00205: MDAP[rd]   
+	00206: DELTAP1    
+	00207: IP         
+	00208: SRP1       
+	00209: SRP2       
+	00210: SLOOP      
+	00211: IP         
+	00212: SRP1       
+	00213: SHP[rp1,zp0] 
+	00214: MDAP[rd]   
+	00215: DELTAP1    
+	00216: IUP[y]     
+	00217: IUP[x]     
+	00218: SVTCA[x-axis] 
+	00219: DELTAP2    
+	00220: DELTAP1    
+	00221: DELTAP1    
+	00222: DELTAP1    
+	00223: SVTCA[y-axis] 
+	00224: DELTAP2    
+	00225: DELTAP1    
+	00226: CALL       
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short On
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:  YDual               Y-Short         On
+	 27:        XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:                      Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:                      Y-Short         On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual               Y-Short X-Short On
+	 41:                      Y-Short X-Short Off
+	 42:                      Y-Short X-Short On
+	 43:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   792,    -1)  ->  Abs (   792,    -1)
+	  1: Rel (  -133,    75)  ->  Abs (   659,    74)
+	  2: Rel (   -97,    19)  ->  Abs (   562,    93)
+	  3: Rel (  -113,   -93)  ->  Abs (   449,     0)
+	  4: Rel (  -198,     0)  ->  Abs (   251,     0)
+	  5: Rel (  -251,     0)  ->  Abs (     0,     0)
+	  6: Rel (     0,   123)  ->  Abs (     0,   123)
+	  7: Rel (   110,     0)  ->  Abs (   110,   123)
+	  8: Rel (   179,     0)  ->  Abs (   289,   123)
+	  9: Rel (   102,     8)  ->  Abs (   391,   131)
+	 10: Rel (    33,    22)  ->  Abs (   424,   153)
+	 11: Rel (   -39,    26)  ->  Abs (   385,   179)
+	 12: Rel (     0,    55)  ->  Abs (   385,   234)
+	 13: Rel (     0,    71)  ->  Abs (   385,   305)
+	 14: Rel (   114,   179)  ->  Abs (   499,   484)
+	 15: Rel (    62,    34)  ->  Abs (   561,   518)
+	 16: Rel (   -30,    17)  ->  Abs (   531,   535)
+	 17: Rel (   -85,     0)  ->  Abs (   446,   535)
+	 18: Rel (    22,    95)  ->  Abs (   468,   630)
+	 19: Rel (    42,    34)  ->  Abs (   510,   664)
+	 20: Rel (    30,     0)  ->  Abs (   540,   664)
+	 21: Rel (    59,     0)  ->  Abs (   599,   664)
+	 22: Rel (   128,   -74)  ->  Abs (   727,   590)
+	 23: Rel (   167,  -195)  ->  Abs (   894,   395)
+	 24: Rel (     0,  -169)  ->  Abs (   894,   226)
+	 25: Rel (     0,   -88)  ->  Abs (   894,   138)
+	 26: Rel (  -394,   117)  ->  Abs (   500,   255)
+	 27: Rel (    66,   -15)  ->  Abs (   566,   240)
+	 28: Rel (    97,   104)  ->  Abs (   663,   344)
+	 29: Rel (     0,    83)  ->  Abs (   663,   427)
+	 30: Rel (     0,    50)  ->  Abs (   663,   477)
+	 31: Rel (   -59,     0)  ->  Abs (   604,   477)
+	 32: Rel (   -28,     0)  ->  Abs (   576,   477)
+	 33: Rel (  -112,  -139)  ->  Abs (   464,   338)
+	 34: Rel (     0,   -35)  ->  Abs (   464,   303)
+	 35: Rel (     0,   -34)  ->  Abs (   464,   269)
+	 36: Rel (   344,  -119)  ->  Abs (   808,   150)
+	 37: Rel (     7,    42)  ->  Abs (   815,   192)
+	 38: Rel (     0,    20)  ->  Abs (   815,   212)
+	 39: Rel (     0,   119)  ->  Abs (   815,   331)
+	 40: Rel (   -98,    87)  ->  Abs (   717,   418)
+	 41: Rel (   -22,  -116)  ->  Abs (   695,   302)
+	 42: Rel (   -59,   -88)  ->  Abs (   636,   214)
+	 43: Rel (    84,   -25)  ->  Abs (   720,   189)
+
+	Glyph 1004: off = 0x00031C1E, len = 454
+	  numberOfContours:	3
+	  xMin:			0
+	  yMin:			-424
+	  xMax:			1229
+	  yMax:			647
+
+	EndPoints
+	---------
+	  0:  34
+	  1:  42
+	  2:  51
+
+	  Length of Instructions:	301
+	00000: PUSHB[4]             74    36     1    35 
+	00005: PUSHW[1]            -44 
+	00008: NPUSHB      (26):    20    25    52   226    36   242    36     2     2    36 
+	                            66    35    66    36    69    37   137    30   128    35 
+	                           128    36   128    37     8    30 
+	00036: PUSHW[1]            -64 
+	00039: NPUSHB      (32):    18    24    52    36    44    12    19    52     2    44 
+	                            10    14    52     0     3     0    30    49    25    73 
+	                             8   214    30     5    40    14    56    14    53    24 
+	                             3     2 
+	00073: PUSHW[1]            -24 
+	00076: PUSHB[4]             10    17    52    26 
+	00081: PUSHW[1]            907 
+	00084: NPUSHB       (9):    16    40    32    40     2    40    40    19     7 
+	00095: PUSHW[1]            907 
+	00098: NPUSHB      (19):    47    47    63    47     2    47    47     2    43    14 
+	                            12     4    35    23    31    16    20    19    34 
+	00119: PUSHW[7]            907     0   858    20   907    19   858 
+	00134: NPUSHB      (13):    16    14    31    10     2     4    43    49    12    45 
+	                            10    31    23 
+	00149: PUSHW[1]            884 
+	00152: PUSHB[4]             35    35    45    28 
+	00157: PUSHW[1]            878 
+	00160: NPUSHB      (21):     0    38    48    38    96    38   255    38     4     0 
+	                            38    32    38   192    38     3    38    38     0    19 
+	                             4 
+	00183: PUSHW[1]            884 
+	00186: PUSHB[8]              0    49    80    49     2    49    49    45 
+	00195: PUSHW[1]            880 
+	00198: NPUSHB      (22):    48    10    96    10   224    10     3     0    10    32 
+	                            10    48    10     3    10    10    19    34     0    20 
+	                            19     5 
+	00222: PUSHW[1]            340 
+	00225: SCANCTRL   
+	00226: SCANTYPE   
+	00227: MDAP[rd]   
+	00228: ALIGNRP    
+	00229: MDAP[rd]   
+	00230: ALIGNRP    
+	00231: SRP2       
+	00232: IP         
+	00233: MDAP[rd]   
+	00234: DELTAP1    
+	00235: DELTAP1    
+	00236: MIRP[srp0,md,rd,1] 
+	00237: SHP[rp2,zp1] 
+	00238: MDAP[rd]   
+	00239: DELTAP1    
+	00240: MIRP[nrp0,md,rd,1] 
+	00241: SRP1       
+	00242: SRP2       
+	00243: IP         
+	00244: MDAP[rd]   
+	00245: DELTAP1    
+	00246: DELTAP1    
+	00247: MIRP[nrp0,md,rd,1] 
+	00248: SRP1       
+	00249: SHP[rp1,zp0] 
+	00250: MDAP[rd]   
+	00251: MIRP[nrp0,md,rd,1] 
+	00252: SHP[rp1,zp0] 
+	00253: SRP1       
+	00254: SRP2       
+	00255: IP         
+	00256: SRP1       
+	00257: IP         
+	00258: SRP2       
+	00259: IP         
+	00260: SRP1       
+	00261: IP         
+	00262: SHP[rp1,zp0] 
+	00263: SHP[rp1,zp0] 
+	00264: SVTCA[y-axis] 
+	00265: MIAP[rd+ci] 
+	00266: MIRP[nrp0,md,rd,1] 
+	00267: MIAP[rd+ci] 
+	00268: MIRP[nrp0,md,rd,1] 
+	00269: SRP1       
+	00270: SRP2       
+	00271: IP         
+	00272: IP         
+	00273: SHP[rp2,zp1] 
+	00274: SHP[rp2,zp1] 
+	00275: SLOOP      
+	00276: SHP[rp1,zp0] 
+	00277: SHP[rp1,zp0] 
+	00278: MDAP[rd]   
+	00279: DELTAP1    
+	00280: MIRP[nrp0,md,rd,1] 
+	00281: SRP1       
+	00282: SHP[rp1,zp0] 
+	00283: MDAP[rd]   
+	00284: DELTAP1    
+	00285: MIRP[nrp0,md,rd,1] 
+	00286: CALL       
+	00287: IUP[y]     
+	00288: IUP[x]     
+	00289: SVTCA[x-axis] 
+	00290: DELTAP1    
+	00291: DELTAP1    
+	00292: CALL       
+	00293: CALL       
+	00294: CALL       
+	00295: SVTCA[y-axis] 
+	00296: DELTAP2    
+	00297: DELTAP1    
+	00298: CALL       
+	00299: SVTCA[x-axis] 
+	00300: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                               Off
+	  2:                      Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short On
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual                               On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:        XDual                 X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:                      Y-Short X-Short Off
+	 31:                      Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual                               On
+	 35:  YDual               Y-Short         On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:                      Y-Short X-Short Off
+	 43:                              X-Short On
+	 44:                      Y-Short X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         Off
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short Off
+	 49:  YDual XDual         Y-Short         On
+	 50:  YDual XDual         Y-Short         Off
+	 51:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,     0)  ->  Abs (  1229,     0)
+	  1: Rel (  -314,     0)  ->  Abs (   915,     0)
+	  2: Rel (  -145,   -23)  ->  Abs (   770,   -23)
+	  3: Rel (    78,   -74)  ->  Abs (   848,   -97)
+	  4: Rel (     0,   -57)  ->  Abs (   848,  -154)
+	  5: Rel (     0,   -98)  ->  Abs (   848,  -252)
+	  6: Rel (  -123,  -172)  ->  Abs (   725,  -424)
+	  7: Rel (   -70,     0)  ->  Abs (   655,  -424)
+	  8: Rel (   -76,     0)  ->  Abs (   579,  -424)
+	  9: Rel (   -94,   166)  ->  Abs (   485,  -258)
+	 10: Rel (     0,   111)  ->  Abs (   485,  -147)
+	 11: Rel (     0,    25)  ->  Abs (   485,  -122)
+	 12: Rel (    13,    52)  ->  Abs (   498,   -70)
+	 13: Rel (   -50,   -23)  ->  Abs (   448,   -93)
+	 14: Rel (   -61,   -16)  ->  Abs (   387,  -109)
+	 15: Rel (     7,    57)  ->  Abs (   394,   -52)
+	 16: Rel (    34,    81)  ->  Abs (   428,    29)
+	 17: Rel (   -80,   -29)  ->  Abs (   348,     0)
+	 18: Rel (  -135,     0)  ->  Abs (   213,     0)
+	 19: Rel (  -213,     0)  ->  Abs (     0,     0)
+	 20: Rel (     0,   123)  ->  Abs (     0,   123)
+	 21: Rel (   272,     0)  ->  Abs (   272,   123)
+	 22: Rel (   178,     0)  ->  Abs (   450,   123)
+	 23: Rel (    58,    31)  ->  Abs (   508,   154)
+	 24: Rel (   109,   215)  ->  Abs (   617,   369)
+	 25: Rel (   214,   278)  ->  Abs (   831,   647)
+	 26: Rel (    56,     0)  ->  Abs (   887,   647)
+	 27: Rel (    78,     0)  ->  Abs (   965,   647)
+	 28: Rel (     0,  -119)  ->  Abs (   965,   528)
+	 29: Rel (     0,  -167)  ->  Abs (   965,   361)
+	 30: Rel (   -90,  -173)  ->  Abs (   875,   188)
+	 31: Rel (  -189,  -106)  ->  Abs (   686,    82)
+	 32: Rel (   119,    41)  ->  Abs (   805,   123)
+	 33: Rel (   141,     0)  ->  Abs (   946,   123)
+	 34: Rel (   283,     0)  ->  Abs (  1229,   123)
+	 35: Rel (  -643,    43)  ->  Abs (   586,   166)
+	 36: Rel (   128,    28)  ->  Abs (   714,   194)
+	 37: Rel (   197,   205)  ->  Abs (   911,   399)
+	 38: Rel (     0,    50)  ->  Abs (   911,   449)
+	 39: Rel (     0,    75)  ->  Abs (   911,   524)
+	 40: Rel (   -43,     0)  ->  Abs (   868,   524)
+	 41: Rel (   -64,     0)  ->  Abs (   804,   524)
+	 42: Rel (   -89,  -112)  ->  Abs (   715,   412)
+	 43: Rel (  -150,  -430)  ->  Abs (   565,   -18)
+	 44: Rel (   -19,   -76)  ->  Abs (   546,   -94)
+	 45: Rel (     0,   -56)  ->  Abs (   546,  -150)
+	 46: Rel (     0,  -149)  ->  Abs (   546,  -299)
+	 47: Rel (   126,     0)  ->  Abs (   672,  -299)
+	 48: Rel (   100,     0)  ->  Abs (   772,  -299)
+	 49: Rel (     0,    78)  ->  Abs (   772,  -221)
+	 50: Rel (     0,    57)  ->  Abs (   772,  -164)
+	 51: Rel (  -143,   141)  ->  Abs (   629,   -23)
+
+	Glyph 1005: off = 0x00031DE4, len = 270
+	  numberOfContours:	2
+	  xMin:			196
+	  yMin:			-410
+	  xMax:			932
+	  yMax:			564
+
+	EndPoints
+	---------
+	  0:  26
+	  1:  37
+
+	  Length of Instructions:	157
+	00000: NPUSHB      (61):   202    29   218    29     2   171    29   182     7   186 
+	                            29   197     7     4   156    25   153    29   163     7 
+	                             3   134     7   138    29   149     7     3   150    25 
+	                           177    25   193    25   211    25     4    95    13   107 
+	                            12   107    13   209    25     4    76    12    74    13 
+	                            95    12   163    25     4    27    30     0    36     2 
+	                             8 
+	00063: PUSHW[1]            911 
+	00066: PUSHB[3]             30    30    36 
+	00070: PUSHW[1]            907 
+	00073: PUSHB[4]              2    19    19    23 
+	00078: PUSHW[1]            899 
+	00081: NPUSHB      (10):    14    27     0     0    17     1    17    17    11     5 
+	00093: PUSHW[1]            887 
+	00096: NPUSHB      (10):   111    33   127    33   224    33     3    33    33     0 
+	00108: PUSHW[1]            880 
+	00111: PUSHB[5]            239    11     1    11     4 
+	00117: SCANTYPE   
+	00118: MDAP[rd]   
+	00119: DELTAP1    
+	00120: MIRP[srp0,md,rd,1] 
+	00121: SHP[rp2,zp1] 
+	00122: MDAP[rd]   
+	00123: DELTAP1    
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: SRP1       
+	00126: SHP[rp1,zp0] 
+	00127: MDAP[rd]   
+	00128: DELTAP1    
+	00129: SRP1       
+	00130: SHP[rp1,zp0] 
+	00131: SVTCA[y-axis] 
+	00132: MDAP[rd]   
+	00133: MIRP[srp0,md,rd,1] 
+	00134: SHP[rp2,zp1] 
+	00135: MDAP[rd]   
+	00136: MDAP[rd]   
+	00137: MIRP[srp0,md,rd,1] 
+	00138: SHP[rp2,zp1] 
+	00139: MDAP[rd]   
+	00140: MIRP[nrp0,md,rd,1] 
+	00141: SRP1       
+	00142: SRP2       
+	00143: IP         
+	00144: SRP1       
+	00145: IP         
+	00146: IUP[y]     
+	00147: IUP[x]     
+	00148: SVTCA[y-axis] 
+	00149: DELTAP1    
+	00150: DELTAP1    
+	00151: DELTAP1    
+	00152: SVTCA[x-axis] 
+	00153: DELTAP1    
+	00154: DELTAP1    
+	00155: DELTAP1    
+	00156: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:        XDual                 X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual                 X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                              X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short         Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:        XDual         Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:  YDual               Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:                      Y-Short X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   869,     9)  ->  Abs (   869,     9)
+	  1: Rel (   -59,   -11)  ->  Abs (   810,    -2)
+	  2: Rel (   -49,     0)  ->  Abs (   761,    -2)
+	  3: Rel (  -139,     0)  ->  Abs (   622,    -2)
+	  4: Rel (   -64,    74)  ->  Abs (   558,    72)
+	  5: Rel (     0,    54)  ->  Abs (   558,   126)
+	  6: Rel (     0,   106)  ->  Abs (   558,   232)
+	  7: Rel (   130,   332)  ->  Abs (   688,   564)
+	  8: Rel (    74,     0)  ->  Abs (   762,   564)
+	  9: Rel (    83,     0)  ->  Abs (   845,   564)
+	 10: Rel (    87,  -294)  ->  Abs (   932,   270)
+	 11: Rel (     0,  -202)  ->  Abs (   932,    68)
+	 12: Rel (     0,  -184)  ->  Abs (   932,  -116)
+	 13: Rel (  -225,  -294)  ->  Abs (   707,  -410)
+	 14: Rel (  -148,     0)  ->  Abs (   559,  -410)
+	 15: Rel (   -76,     0)  ->  Abs (   483,  -410)
+	 16: Rel (  -287,    60)  ->  Abs (   196,  -350)
+	 17: Rel (     0,    35)  ->  Abs (   196,  -315)
+	 18: Rel (     0,    16)  ->  Abs (   196,  -299)
+	 19: Rel (    16,     0)  ->  Abs (   212,  -299)
+	 20: Rel (    33,     0)  ->  Abs (   245,  -299)
+	 21: Rel (    52,   -12)  ->  Abs (   297,  -311)
+	 22: Rel (    52,   -12)  ->  Abs (   349,  -323)
+	 23: Rel (    39,     0)  ->  Abs (   388,  -323)
+	 24: Rel (   103,     0)  ->  Abs (   491,  -323)
+	 25: Rel (   276,   120)  ->  Abs (   767,  -203)
+	 26: Rel (   109,   131)  ->  Abs (   876,   -72)
+	 27: Rel (   -29,   207)  ->  Abs (   847,   135)
+	 28: Rel (     0,    81)  ->  Abs (   847,   216)
+	 29: Rel (   -55,   207)  ->  Abs (   792,   423)
+	 30: Rel (   -41,     0)  ->  Abs (   751,   423)
+	 31: Rel (   -40,     0)  ->  Abs (   711,   423)
+	 32: Rel (   -63,  -170)  ->  Abs (   648,   253)
+	 33: Rel (     0,   -59)  ->  Abs (   648,   194)
+	 34: Rel (     0,   -34)  ->  Abs (   648,   160)
+	 35: Rel (    37,   -39)  ->  Abs (   685,   121)
+	 36: Rel (    80,     0)  ->  Abs (   765,   121)
+	 37: Rel (    54,     0)  ->  Abs (   819,   121)
+
+	Glyph 1006: off = 0x00031EF2, len = 296
+	  numberOfContours:	2
+	  xMin:			192
+	  yMin:			-410
+	  xMax:			1229
+	  yMax:			564
+
+	EndPoints
+	---------
+	  0:  31
+	  1:  44
+
+	  Length of Instructions:	164
+	00000: PUSHW[2]             16   -64 
+	00005: NPUSHB       (9):    18    22    52   198    17   212    17     2    28 
+	00016: PUSHW[1]            -32 
+	00019: PUSHB[4]             17    21    52    36 
+	00024: PUSHW[1]            -32 
+	00027: PUSHB[4]             17    21    52     4 
+	00032: PUSHW[1]            -64 
+	00035: NPUSHB      (10):    13    15    52    32    43    19    21    41    23    29 
+	00047: PUSHW[1]            911 
+	00050: PUSHB[3]             35    35    41 
+	00054: PUSHW[4]            907    23     0   907 
+	00063: PUSHB[4]              1    10    10    14 
+	00068: PUSHW[4]            899     5    19   880 
+	00077: NPUSHB      (10):     2     2    31     0     8     1     8     8    31    26 
+	00089: PUSHW[1]            887 
+	00092: NPUSHB      (13):     0    38     1   127    38   224    38   240    38     3 
+	                            38    38    32 
+	00107: PUSHW[1]            885 
+	00110: PUSHB[7]            239    31     1    31     1     0     4 
+	00118: SCANTYPE   
+	00119: MDAP[rd]   
+	00120: ALIGNRP    
+	00121: MDAP[rd]   
+	00122: DELTAP1    
+	00123: MIRP[srp0,md,rd,1] 
+	00124: SHP[rp2,zp1] 
+	00125: MDAP[rd]   
+	00126: DELTAP1    
+	00127: DELTAP2    
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: SRP1       
+	00130: SHP[rp1,zp0] 
+	00131: MDAP[rd]   
+	00132: DELTAP1    
+	00133: SRP1       
+	00134: SHP[rp1,zp0] 
+	00135: MDAP[rd]   
+	00136: MIRP[nrp0,md,rd,1] 
+	00137: SVTCA[y-axis] 
+	00138: MDAP[rd]   
+	00139: MIRP[srp0,md,rd,1] 
+	00140: SHP[rp2,zp1] 
+	00141: MDAP[rd]   
+	00142: MDAP[rd]   
+	00143: MIRP[nrp0,md,rd,1] 
+	00144: MDAP[rd]   
+	00145: MIRP[srp0,md,rd,1] 
+	00146: SHP[rp2,zp1] 
+	00147: MDAP[rd]   
+	00148: MIRP[nrp0,md,rd,1] 
+	00149: SRP1       
+	00150: SRP2       
+	00151: IP         
+	00152: IP         
+	00153: SHP[rp2,zp1] 
+	00154: SHP[rp2,zp1] 
+	00155: IUP[y]     
+	00156: IUP[x]     
+	00157: SVTCA[x-axis] 
+	00158: CALL       
+	00159: CALL       
+	00160: CALL       
+	00161: SVTCA[y-axis] 
+	00162: DELTAP1    
+	00163: CALL       
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short         Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:        XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:  YDual               Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual                       X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:        XDual                 X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual                 X-Short On
+	 32:  YDual               Y-Short X-Short On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:                      Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:        XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,   123)  ->  Abs (  1229,   123)
+	  1: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	  2: Rel (  -307,     0)  ->  Abs (   922,     0)
+	  3: Rel (   -13,  -158)  ->  Abs (   909,  -158)
+	  4: Rel (  -221,  -252)  ->  Abs (   688,  -410)
+	  5: Rel (  -133,     0)  ->  Abs (   555,  -410)
+	  6: Rel (   -76,     0)  ->  Abs (   479,  -410)
+	  7: Rel (  -287,    60)  ->  Abs (   192,  -350)
+	  8: Rel (     0,    35)  ->  Abs (   192,  -315)
+	  9: Rel (     0,    16)  ->  Abs (   192,  -299)
+	 10: Rel (    15,     0)  ->  Abs (   207,  -299)
+	 11: Rel (    22,     0)  ->  Abs (   229,  -299)
+	 12: Rel (    65,   -12)  ->  Abs (   294,  -311)
+	 13: Rel (    57,   -12)  ->  Abs (   351,  -323)
+	 14: Rel (    33,     0)  ->  Abs (   384,  -323)
+	 15: Rel (    88,     0)  ->  Abs (   472,  -323)
+	 16: Rel (   263,   104)  ->  Abs (   735,  -219)
+	 17: Rel (    87,    80)  ->  Abs (   822,  -139)
+	 18: Rel (    42,    63)  ->  Abs (   864,   -76)
+	 19: Rel (     0,    79)  ->  Abs (   864,     3)
+	 20: Rel (   -14,     0)  ->  Abs (   850,     3)
+	 21: Rel (   -29,    -2)  ->  Abs (   821,     1)
+	 22: Rel (   -30,    -3)  ->  Abs (   791,    -2)
+	 23: Rel (   -34,     0)  ->  Abs (   757,    -2)
+	 24: Rel (  -109,     0)  ->  Abs (   648,    -2)
+	 25: Rel (   -94,    49)  ->  Abs (   554,    47)
+	 26: Rel (     0,    79)  ->  Abs (   554,   126)
+	 27: Rel (     0,   106)  ->  Abs (   554,   232)
+	 28: Rel (   130,   332)  ->  Abs (   684,   564)
+	 29: Rel (    74,     0)  ->  Abs (   758,   564)
+	 30: Rel (   151,     0)  ->  Abs (   909,   564)
+	 31: Rel (    17,  -441)  ->  Abs (   926,   123)
+	 32: Rel (   -83,     3)  ->  Abs (   843,   126)
+	 33: Rel (     0,    82)  ->  Abs (   843,   208)
+	 34: Rel (   -55,   215)  ->  Abs (   788,   423)
+	 35: Rel (   -41,     0)  ->  Abs (   747,   423)
+	 36: Rel (   -40,     0)  ->  Abs (   707,   423)
+	 37: Rel (   -63,  -170)  ->  Abs (   644,   253)
+	 38: Rel (     0,   -59)  ->  Abs (   644,   194)
+	 39: Rel (     0,   -34)  ->  Abs (   644,   160)
+	 40: Rel (    37,   -39)  ->  Abs (   681,   121)
+	 41: Rel (    80,     0)  ->  Abs (   761,   121)
+	 42: Rel (    15,     0)  ->  Abs (   776,   121)
+	 43: Rel (    26,     2)  ->  Abs (   802,   123)
+	 44: Rel (    25,     3)  ->  Abs (   827,   126)
+
+	Glyph 1007: off = 0x0003201A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			170
+	  yMin:			-244
+	  xMax:			1071
+	  yMax:			665
+
+	     0: Flags:		0x0216
+		Glyf Index:	821
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1008: off = 0x0003202A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			112
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			123
+
+	     0: Flags:		0x0216
+		Glyf Index:	822
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1009: off = 0x0003203A, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			170
+	  yMin:			-561
+	  xMax:			1071
+	  yMax:			665
+
+	     0: Flags:		0x0236
+		Glyf Index:	821
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	-101
+		Y WOffset:	-1235
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     1   143    46   175    46   191    46     3    46    64 
+	                            12    14    52    46     1     1    45 
+	00019: PUSHW[2]            953    41 
+	00024: SVTCA[y-axis] 
+	00025: CALL       
+	00026: SVTCA[x-axis] 
+	00027: MDAP[rd]   
+	00028: CALL       
+	00029: DELTAP1    
+	00030: SHC[rp1,zp0] 
+
+	Glyph 1010: off = 0x00032074, len = 476
+	  numberOfContours:	2
+	  xMin:			118
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			125
+
+	EndPoints
+	---------
+	  0:  44
+	  1:  52
+
+	  Length of Instructions:	322
+	00000: PUSHB[6]            198    12   230    12     2    27 
+	00007: PUSHW[1]            -16 
+	00010: NPUSHB      (31):    24    27    52    57    15    73    15     2    23    12 
+	                           207    15   223    15     3    15    32    10    15    52 
+	                           196     8   196    36   216    36     3   244    36     1 
+	                             8 
+	00043: PUSHW[1]            -16 
+	00046: PUSHB[4]             17    20    52     8 
+	00051: PUSHW[1]             -8 
+	00054: NPUSHB       (9):    24    27    52    36     8    32    34    52     8 
+	00065: PUSHW[1]            -32 
+	00068: PUSHB[4]             35    45    52    36 
+	00073: PUSHW[1]            -32 
+	00076: PUSHB[4]             46    49    52     8 
+	00081: PUSHW[1]            -32 
+	00084: PUSHB[4]             46    49    52     8 
+	00089: PUSHW[1]            -56 
+	00092: NPUSHB      (14):    54    57    52    36     8    30     3    15    20     1 
+	                            20     3     3    44 
+	00108: PUSHW[6]            907     0    30   907    14   -64 
+	00121: NPUSHB      (20):     9    12    52    14   189    48    49    45    48    46 
+	                            51    51    50    52    47    47    46    50    50    48 
+	00143: PUSHW[1]            955 
+	00146: NPUSHB      (14):    46    52    52    46    52    50    50    49    51    46 
+	                            48    48    47    51 
+	00162: PUSHW[3]            954    47   -64 
+	00169: PUSHB[4]             12    22    52    47 
+	00174: PUSHW[1]            954 
+	00177: NPUSHB      (25):    45    15    49    31    49   207    49     3    49    64 
+	                            12    14    52    49    64    16    18    52    49    64 
+	                            20    22    52    49    34 
+	00204: PUSHW[1]            888 
+	00207: PUSHB[4]             10    10     0     5 
+	00212: PUSHW[1]            888 
+	00215: PUSHB[8]             39    39    16    44     0    22    22    26 
+	00224: PUSHW[4]            885    16     4   340 
+	00233: SCANCTRL   
+	00234: SCANTYPE   
+	00235: MDAP[rd]   
+	00236: MIRP[srp0,md,rd,1] 
+	00237: SHP[rp2,zp1] 
+	00238: MDAP[rd]   
+	00239: MDAP[rd]   
+	00240: ALIGNRP    
+	00241: SRP2       
+	00242: IP         
+	00243: MDAP[rd]   
+	00244: MIRP[nrp0,md,rd,1] 
+	00245: SRP2       
+	00246: IP         
+	00247: MDAP[rd]   
+	00248: MIRP[nrp0,md,rd,1] 
+	00249: MDAP[rd]   
+	00250: CALL       
+	00251: CALL       
+	00252: CALL       
+	00253: DELTAP1    
+	00254: SHP[rp1,zp0] 
+	00255: MIRP[nrp0,md,rd,1] 
+	00256: CALL       
+	00257: MIRP[nrp0,md,rd,1] 
+	00258: RTDG       
+	00259: SRP2       
+	00260: IP         
+	00261: MDAP[rd]   
+	00262: ALIGNRP    
+	00263: SRP1       
+	00264: SRP2       
+	00265: IP         
+	00266: MDAP[rd]   
+	00267: ALIGNRP    
+	00268: RTG        
+	00269: SVTCA[y-axis] 
+	00270: MDAP[rd]   
+	00271: SHP[rp1,zp0] 
+	00272: MDAP[rd]   
+	00273: SRP0       
+	00274: MIRP[srp0,md,rd,1] 
+	00275: SHP[rp2,zp1] 
+	00276: MDAP[rd]   
+	00277: RTDG       
+	00278: SRP1       
+	00279: IP         
+	00280: MDAP[rd]   
+	00281: SRP1       
+	00282: SRP2       
+	00283: IP         
+	00284: MDAP[rd]   
+	00285: RTG        
+	00286: SRP1       
+	00287: SRP2       
+	00288: IP         
+	00289: IP         
+	00290: SRP0       
+	00291: MIRP[srp0,md,rd,2] 
+	00292: CALL       
+	00293: MIRP[nrp0,md,rd,1] 
+	00294: MDAP[rd]   
+	00295: MIRP[nrp0,md,rd,1] 
+	00296: SHP[rp1,zp0] 
+	00297: MDAP[rd]   
+	00298: MDAP[rd]   
+	00299: DELTAP1    
+	00300: SRP1       
+	00301: SRP2       
+	00302: IP         
+	00303: IP         
+	00304: CALL       
+	00305: CALL       
+	00306: CALL       
+	00307: CALL       
+	00308: CALL       
+	00309: CALL       
+	00310: CALL       
+	00311: DELTAP3    
+	00312: DELTAP1    
+	00313: IUP[y]     
+	00314: IUP[x]     
+	00315: SVTCA[x-axis] 
+	00316: CALL       
+	00317: DELTAP1    
+	00318: DELTAP2    
+	00319: SVTCA[y-axis] 
+	00320: CALL       
+	00321: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual                       X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:        XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                               Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:        XDual         Y-Short X-Short On
+	 29:        XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual               Y-Short X-Short On
+	 37:  YDual               Y-Short X-Short On
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short On
+	 45:                                      On
+	 46:                      Y-Short X-Short On
+	 47:  YDual               Y-Short X-Short On
+	 48:  YDual XDual         Y-Short X-Short On
+	 49:        XDual         Y-Short X-Short On
+	 50:  YDual XDual         Y-Short X-Short On
+	 51:        XDual         Y-Short X-Short On
+	 52:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,     2)  ->  Abs (  1229,     2)
+	  1: Rel (   -41,     0)  ->  Abs (  1188,     2)
+	  2: Rel (  -164,     8)  ->  Abs (  1024,    10)
+	  3: Rel (   -41,     0)  ->  Abs (   983,    10)
+	  4: Rel (  -165,     0)  ->  Abs (   818,    10)
+	  5: Rel (     0,   -16)  ->  Abs (   818,    -6)
+	  6: Rel (     0,   -14)  ->  Abs (   818,   -20)
+	  7: Rel (    36,    -7)  ->  Abs (   854,   -27)
+	  8: Rel (    73,   -18)  ->  Abs (   927,   -45)
+	  9: Rel (    65,   -19)  ->  Abs (   992,   -64)
+	 10: Rel (     0,   -56)  ->  Abs (   992,  -120)
+	 11: Rel (     0,  -123)  ->  Abs (   992,  -243)
+	 12: Rel (  -179,   -91)  ->  Abs (   813,  -334)
+	 13: Rel (  -160,   -51)  ->  Abs (   653,  -385)
+	 14: Rel (  -162,     0)  ->  Abs (   491,  -385)
+	 15: Rel (  -373,     0)  ->  Abs (   118,  -385)
+	 16: Rel (     0,   237)  ->  Abs (   118,  -148)
+	 17: Rel (     0,    59)  ->  Abs (   118,   -89)
+	 18: Rel (    29,    87)  ->  Abs (   147,    -2)
+	 19: Rel (    34,   105)  ->  Abs (   181,   103)
+	 20: Rel (    43,     0)  ->  Abs (   224,   103)
+	 21: Rel (    18,     0)  ->  Abs (   242,   103)
+	 22: Rel (     0,   -21)  ->  Abs (   242,    82)
+	 23: Rel (     0,     6)  ->  Abs (   242,    88)
+	 24: Rel (   -27,   -88)  ->  Abs (   215,     0)
+	 25: Rel (   -19,   -59)  ->  Abs (   196,   -59)
+	 26: Rel (     0,   -47)  ->  Abs (   196,  -106)
+	 27: Rel (     0,   -78)  ->  Abs (   196,  -184)
+	 28: Rel (    80,   -34)  ->  Abs (   276,  -218)
+	 29: Rel (    79,   -42)  ->  Abs (   355,  -260)
+	 30: Rel (   173,     0)  ->  Abs (   528,  -260)
+	 31: Rel (    90,     0)  ->  Abs (   618,  -260)
+	 32: Rel (   148,    31)  ->  Abs (   766,  -229)
+	 33: Rel (   131,    36)  ->  Abs (   897,  -193)
+	 34: Rel (     0,    35)  ->  Abs (   897,  -158)
+	 35: Rel (     0,    24)  ->  Abs (   897,  -134)
+	 36: Rel (   -36,     6)  ->  Abs (   861,  -128)
+	 37: Rel (   -67,    17)  ->  Abs (   794,  -111)
+	 38: Rel (   -71,    24)  ->  Abs (   723,   -87)
+	 39: Rel (     0,    44)  ->  Abs (   723,   -43)
+	 40: Rel (     0,    64)  ->  Abs (   723,    21)
+	 41: Rel (    66,    53)  ->  Abs (   789,    74)
+	 42: Rel (    72,    51)  ->  Abs (   861,   125)
+	 43: Rel (   131,     0)  ->  Abs (   992,   125)
+	 44: Rel (   237,     0)  ->  Abs (  1229,   125)
+	 45: Rel (  -722,  -608)  ->  Abs (   507,  -483)
+	 46: Rel (   -77,   -78)  ->  Abs (   430,  -561)
+	 47: Rel (   -78,    79)  ->  Abs (   352,  -482)
+	 48: Rel (    78,    78)  ->  Abs (   430,  -404)
+	 49: Rel (    72,   -71)  ->  Abs (   502,  -475)
+	 50: Rel (    77,    77)  ->  Abs (   579,  -398)
+	 51: Rel (    79,   -78)  ->  Abs (   658,  -476)
+	 52: Rel (   -79,   -79)  ->  Abs (   579,  -555)
+
+	Glyph 1011: off = 0x00032250, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-457
+	  xMax:			1187
+	  yMax:			682
+
+	     0: Flags:		0x0236
+		Glyf Index:	1106
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	289
+		Y WOffset:	-1131
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (25):     1   207    17     1    31    17    64    17    96    17 
+	                             3    17     1     0    16     1    16    64    13    22 
+	                            52    32    16     1    16 
+	00027: SVTCA[x-axis] 
+	00028: SRP1       
+	00029: DELTAP1    
+	00030: CALL       
+	00031: DELTAP2    
+	00032: SHC[rp1,zp0] 
+	00033: SVTCA[y-axis] 
+	00034: SRP1       
+	00035: DELTAP1    
+	00036: DELTAP1    
+	00037: SHC[rp1,zp0] 
+
+	Glyph 1012: off = 0x00032290, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-456
+	  xMax:			1229
+	  yMax:			673
+
+	     0: Flags:		0x0236
+		Glyf Index:	1107
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	1100
+		X WOffset:	127
+		Y WOffset:	-1130
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     1   207    26     1    31    26    64    26    96    26 
+	                             3    26     1     0    26   191    26     2    26 
+	00021: SVTCA[x-axis] 
+	00022: SRP1       
+	00023: DELTAP1    
+	00024: SHC[rp1,zp0] 
+	00025: SVTCA[y-axis] 
+	00026: SRP1       
+	00027: DELTAP1    
+	00028: DELTAP1    
+	00029: SHC[rp1,zp0] 
+
+	Glyph 1013: off = 0x000322C8, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			103
+	  yMin:			0
+	  xMax:			946
+	  yMax:			1342
+
+	     0: Flags:		0x0236
+		Glyf Index:	1019
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	777
+		X WOffset:	-166
+		Y WOffset:	-140
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     2    52    64     9    14    52    31    52   255    52 
+	                             2    52 
+	00014: SVTCA[y-axis] 
+	00015: SRP1       
+	00016: DELTAP1    
+	00017: CALL       
+	00018: SHC[rp1,zp0] 
+
+	Glyph 1014: off = 0x000322F6, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			153
+	  yMin:			-82
+	  xMax:			1229
+	  yMax:			1295
+
+	     0: Flags:		0x0236
+		Glyf Index:	1020
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	777
+		X WOffset:	-116
+		Y WOffset:	-187
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (23):     1    79    49   143    49   207    49   255    49     4 
+	                            31    49    63    49   175    49     3    49     1    47 
+	                            51     1    51 
+	00025: SVTCA[x-axis] 
+	00026: SRP1       
+	00027: DELTAP1    
+	00028: SHC[rp1,zp0] 
+	00029: SVTCA[y-axis] 
+	00030: SRP1       
+	00031: DELTAP1    
+	00032: DELTAP1    
+	00033: SHC[rp1,zp0] 
+
+	Glyph 1015: off = 0x00032332, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			130
+	  yMin:			0
+	  xMax:			946
+	  yMax:			1535
+
+	     0: Flags:		0x0236
+		Glyf Index:	1019
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	775
+		X WOffset:	-335
+		Y WOffset:	-68
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     2    31    41   111    41   143    41   175    41     4 
+	                           143    41   207    41   255    41     3    41 
+	00020: SVTCA[y-axis] 
+	00021: SRP1       
+	00022: DELTAP1    
+	00023: DELTAP2    
+	00024: SHC[rp1,zp0] 
+
+	Glyph 1016: off = 0x00032366, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			161
+	  yMin:			-82
+	  xMax:			1229
+	  yMax:			1417
+
+	     0: Flags:		0x0236
+		Glyf Index:	1020
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	775
+		X WOffset:	-304
+		Y WOffset:	-186
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     1   111    38   143    38     2   111    38   143    38 
+	                           207    38   255    38     4    38 
+	00018: SVTCA[y-axis] 
+	00019: SRP1       
+	00020: DELTAP1    
+	00021: DELTAP2    
+	00022: SHC[rp1,zp0] 
+
+	Glyph 1017: off = 0x00032398, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			156
+	  yMin:			-561
+	  xMax:			946
+	  yMax:			1161
+
+	     0: Flags:		0x0236
+		Glyf Index:	1019
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	775
+		X WOffset:	-47
+		Y WOffset:	-1791
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              2     1    41 
+	00004: PUSHW[1]            953 
+	00007: PUSHB[6]             41     2     0    42     1    42 
+	00014: PUSHW[1]           -128 
+	00017: PUSHB[4]             11    12    52    42 
+	00022: SVTCA[x-axis] 
+	00023: SRP1       
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+	00027: SVTCA[y-axis] 
+	00028: CALL       
+
+	Glyph 1018: off = 0x000323D0, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			215
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			1161
+
+	     0: Flags:		0x0236
+		Glyf Index:	1020
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	775
+		X WOffset:	-145
+		Y WOffset:	-1791
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1     1    38 
+	00004: PUSHW[1]            953 
+	00007: NPUSHB      (13):    41     1    47    38    79    38     2    38    64    16 
+	                            19    52    38 
+	00022: SVTCA[x-axis] 
+	00023: SRP1       
+	00024: CALL       
+	00025: DELTAP1    
+	00026: SHC[rp1,zp0] 
+	00027: SVTCA[y-axis] 
+	00028: CALL       
+
+	Glyph 1019: off = 0x00032408, len = 310
+	  numberOfContours:	2
+	  xMin:			156
+	  yMin:			0
+	  xMax:			946
+	  yMax:			1161
+
+	EndPoints
+	---------
+	  0:  32
+	  1:  40
+
+	  Length of Instructions:	173
+	00000: NPUSHB      (65):   197    23   197    24   222    18     3   157    18   173 
+	                            18   191    18     3    14    18    76    16     2   198 
+	                            34   213    34     2    57    16    59    24   166    23 
+	                             3   131    35     1    86    34   214    15   215    34 
+	                             3    14    35    18    16    33    16     6    25     4 
+	                            31    13    19    18    20    20    79    22    95    22 
+	                             2    22    22    31    35 
+	00067: PUSHW[1]            907 
+	00070: NPUSHB      (11):    13    33    16    25     6     4     9    13    31    31 
+	                             0 
+	00083: PUSHW[1]            894 
+	00086: PUSHB[8]             29    29    19    22    20    20    13     9 
+	00095: PUSHW[1]            877 
+	00098: PUSHB[4]            160    39     1    39 
+	00103: PUSHW[1]            -64 
+	00106: NPUSHB      (10):     9    12    52    39    39    35    35    14    13     4 
+	00118: SCANTYPE   
+	00119: MDAP[rd]   
+	00120: SHP[rp1,zp0] 
+	00121: SHP[rp1,zp0] 
+	00122: MDAP[rd]   
+	00123: SHP[rp1,zp0] 
+	00124: MDAP[rd]   
+	00125: CALL       
+	00126: DELTAP1    
+	00127: MIRP[nrp0,md,rd,1] 
+	00128: SRP1       
+	00129: SHP[rp1,zp0] 
+	00130: MDAP[rd]   
+	00131: SHP[rp1,zp0] 
+	00132: SHP[rp1,zp0] 
+	00133: SHP[rp2,zp1] 
+	00134: MDAP[rd]   
+	00135: MIRP[nrp0,md,rd,1] 
+	00136: RTHG       
+	00137: IP         
+	00138: MDAP[rd]   
+	00139: SRP1       
+	00140: SRP2       
+	00141: SLOOP      
+	00142: IP         
+	00143: SVTCA[y-axis] 
+	00144: RTG        
+	00145: MDAP[rd]   
+	00146: MIRP[nrp0,md,rd,1] 
+	00147: MDAP[rd]   
+	00148: SHP[rp1,zp0] 
+	00149: MDAP[rd]   
+	00150: DELTAP1    
+	00151: SHP[rp1,zp0] 
+	00152: MDAP[rd]   
+	00153: SHP[rp1,zp0] 
+	00154: SHP[rp1,zp0] 
+	00155: SRP1       
+	00156: SRP2       
+	00157: SLOOP      
+	00158: IP         
+	00159: SHPIX      
+	00160: SRP1       
+	00161: SHP[rp1,zp0] 
+	00162: IUP[y]     
+	00163: IUP[x]     
+	00164: SVTCA[x-axis] 
+	00165: DELTAP3    
+	00166: DELTAP2    
+	00167: DELTAP1    
+	00168: DELTAP1    
+	00169: SVTCA[y-axis] 
+	00170: DELTAP2    
+	00171: DELTAP1    
+	00172: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short On
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                               On
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:                              X-Short Off
+	 18:  YDual               Y-Short X-Short On
+	 19:                      Y-Short X-Short On
+	 20:  YDual               Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:                                      Off
+	 25:        XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:                              X-Short On
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:        XDual         Y-Short X-Short Off
+	 33:                              X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short On
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   946,  1071)  ->  Abs (   946,  1071)
+	  1: Rel (   -27,   -38)  ->  Abs (   919,  1033)
+	  2: Rel (   -27,  -109)  ->  Abs (   892,   924)
+	  3: Rel (    -2,   -62)  ->  Abs (   890,   862)
+	  4: Rel (    -5,  -244)  ->  Abs (   885,   618)
+	  5: Rel (    -8,  -112)  ->  Abs (   877,   506)
+	  6: Rel (   -58,  -141)  ->  Abs (   819,   365)
+	  7: Rel (    48,   -79)  ->  Abs (   867,   286)
+	  8: Rel (    18,   -43)  ->  Abs (   885,   243)
+	  9: Rel (     0,   -25)  ->  Abs (   885,   218)
+	 10: Rel (     0,   -71)  ->  Abs (   885,   147)
+	 11: Rel (   -46,  -147)  ->  Abs (   839,     0)
+	 12: Rel (   -38,     0)  ->  Abs (   801,     0)
+	 13: Rel (  -315,     0)  ->  Abs (   486,     0)
+	 14: Rel (    31,   127)  ->  Abs (   517,   127)
+	 15: Rel (   132,    31)  ->  Abs (   649,   158)
+	 16: Rel (   105,   193)  ->  Abs (   754,   351)
+	 17: Rel (  -206,   372)  ->  Abs (   548,   723)
+	 18: Rel (  -243,   120)  ->  Abs (   305,   843)
+	 19: Rel (    -6,   -43)  ->  Abs (   299,   800)
+	 20: Rel (  -143,   105)  ->  Abs (   156,   905)
+	 21: Rel (    26,    99)  ->  Abs (   182,  1004)
+	 22: Rel (     6,    75)  ->  Abs (   188,  1079)
+	 23: Rel (   169,   -88)  ->  Abs (   357,   991)
+	 24: Rel (   338,  -371)  ->  Abs (   695,   620)
+	 25: Rel (    96,  -196)  ->  Abs (   791,   424)
+	 26: Rel (    22,    76)  ->  Abs (   813,   500)
+	 27: Rel (     0,    57)  ->  Abs (   813,   557)
+	 28: Rel (     0,   230)  ->  Abs (   813,   787)
+	 29: Rel (   -24,   269)  ->  Abs (   789,  1056)
+	 30: Rel (    31,    34)  ->  Abs (   820,  1090)
+	 31: Rel (    33,    71)  ->  Abs (   853,  1161)
+	 32: Rel (    44,   -58)  ->  Abs (   897,  1103)
+	 33: Rel (  -117,  -801)  ->  Abs (   780,   302)
+	 34: Rel (   -73,  -136)  ->  Abs (   707,   166)
+	 35: Rel (   -57,   -43)  ->  Abs (   650,   123)
+	 36: Rel (   137,     0)  ->  Abs (   787,   123)
+	 37: Rel (    17,     0)  ->  Abs (   804,   123)
+	 38: Rel (    31,    32)  ->  Abs (   835,   155)
+	 39: Rel (     0,    19)  ->  Abs (   835,   174)
+	 40: Rel (     0,    28)  ->  Abs (   835,   202)
+
+	Glyph 1020: off = 0x0003253E, len = 290
+	  numberOfContours:	1
+	  xMin:			215
+	  yMin:			-82
+	  xMax:			1229
+	  yMax:			1161
+
+	EndPoints
+	---------
+	  0:  37
+
+	  Length of Instructions:	165
+	00000: NPUSHB      (75):    72    26    74    27     2   192    11   208    11     2 
+	                           137     7   168     6   183    11     3    99    11   116 
+	                            11   141     6     3    66    25     1   170    12   172 
+	                            13     2   150    25   172     6   170    11     3   137 
+	                            13   137    14   137    27     3   102    11   139     6 
+	                             2    72     5    73     6    72    13    89    11     4 
+	                            13    27     5     3    32     0    16    18    18    24 
+	                            24    32    10     8    37 
+	00077: PUSHW[1]            907 
+	00080: NPUSHB      (23):    64     0    24    18    16     3    22    22    10    31 
+	                            29    27    13    10     5    32    32    61     5    77 
+	                             5     2     5 
+	00105: PUSHW[1]            883 
+	00108: PUSHB[6]             32    33    33    37     0     4 
+	00115: SCANTYPE   
+	00116: MDAP[rd]   
+	00117: ALIGNRP    
+	00118: SHP[rp1,zp0] 
+	00119: MDAP[rd]   
+	00120: SMD        
+	00121: RTHG       
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: DELTAP2    
+	00124: IP         
+	00125: MDAP[rd]   
+	00126: SLOOP      
+	00127: SHP[rp2,zp1] 
+	00128: RTG        
+	00129: MDAP[rd]   
+	00130: SHP[rp1,zp0] 
+	00131: MDAP[rd]   
+	00132: SLOOP      
+	00133: SHP[rp1,zp0] 
+	00134: SVTCA[y-axis] 
+	00135: MDAP[rd]   
+	00136: SMD        
+	00137: MIRP[nrp0,md,rd,1] 
+	00138: MDAP[rd]   
+	00139: SHP[rp1,zp0] 
+	00140: MDAP[rd]   
+	00141: SHP[rp1,zp0] 
+	00142: MDAP[rd]   
+	00143: SHP[rp1,zp0] 
+	00144: SRP2       
+	00145: IP         
+	00146: SRP1       
+	00147: SRP2       
+	00148: SLOOP      
+	00149: IP         
+	00150: IUP[y]     
+	00151: IUP[x]     
+	00152: SVTCA[x-axis] 
+	00153: DELTAP1    
+	00154: DELTAP1    
+	00155: DELTAP1    
+	00156: DELTAP1    
+	00157: DELTAP1    
+	00158: SVTCA[y-axis] 
+	00159: DELTAP2    
+	00160: DELTAP1    
+	00161: DELTAP1    
+	00162: DELTAP1    
+	00163: SVTCA[x-axis] 
+	00164: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short Off
+	  2:  YDual       Rep-  2 Y-Short X-Short Off
+	  5:                              X-Short On
+	  6:                              X-Short Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:                              X-Short Off
+	 16:  YDual               Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual               Y-Short X-Short On
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:                                      Off
+	 27:        XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual               Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:        XDual                 X-Short On
+	 34:        XDual Rep-  2 Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,     0)  ->  Abs (  1229,     0)
+	  1: Rel (  -174,     0)  ->  Abs (  1055,     0)
+	  2: Rel (   -70,    25)  ->  Abs (   985,    25)
+	  3: Rel (   -49,    87)  ->  Abs (   936,   112)
+	  4: Rel (   -20,   139)  ->  Abs (   916,   251)
+	  5: Rel (   -25,   308)  ->  Abs (   891,   559)
+	  6: Rel (   -71,  -394)  ->  Abs (   820,   165)
+	  7: Rel (  -195,  -247)  ->  Abs (   625,   -82)
+	  8: Rel (  -238,     0)  ->  Abs (   387,   -82)
+	  9: Rel (   -83,     0)  ->  Abs (   304,   -82)
+	 10: Rel (   -15,    12)  ->  Abs (   289,   -70)
+	 11: Rel (   288,   135)  ->  Abs (   577,    65)
+	 12: Rel (   171,   162)  ->  Abs (   748,   227)
+	 13: Rel (    32,    78)  ->  Abs (   780,   305)
+	 14: Rel (    -6,   129)  ->  Abs (   774,   434)
+	 15: Rel (  -240,   275)  ->  Abs (   534,   709)
+	 16: Rel (  -133,    43)  ->  Abs (   401,   752)
+	 17: Rel (    -6,   -24)  ->  Abs (   395,   728)
+	 18: Rel (   -12,   -44)  ->  Abs (   383,   684)
+	 19: Rel (   -46,    25)  ->  Abs (   337,   709)
+	 20: Rel (   -81,    59)  ->  Abs (   256,   768)
+	 21: Rel (   -41,    40)  ->  Abs (   215,   808)
+	 22: Rel (     0,    46)  ->  Abs (   215,   854)
+	 23: Rel (     0,    76)  ->  Abs (   215,   930)
+	 24: Rel (    14,    33)  ->  Abs (   229,   963)
+	 25: Rel (   240,   -82)  ->  Abs (   469,   881)
+	 26: Rel (   319,  -363)  ->  Abs (   788,   518)
+	 27: Rel (    17,  -129)  ->  Abs (   805,   389)
+	 28: Rel (    58,   238)  ->  Abs (   863,   627)
+	 29: Rel (     0,   181)  ->  Abs (   863,   808)
+	 30: Rel (     0,   111)  ->  Abs (   863,   919)
+	 31: Rel (   -19,   103)  ->  Abs (   844,  1022)
+	 32: Rel (    78,   139)  ->  Abs (   922,  1161)
+	 33: Rel (    39,  -630)  ->  Abs (   961,   531)
+	 34: Rel (    11,  -167)  ->  Abs (   972,   364)
+	 35: Rel (    39,  -200)  ->  Abs (  1011,   164)
+	 36: Rel (    52,   -41)  ->  Abs (  1063,   123)
+	 37: Rel (   166,     0)  ->  Abs (  1229,   123)
+
+	Glyph 1021: off = 0x00032660, len = 64
+	  numberOfContours:	1
+	  xMin:			537
+	  yMin:			855
+	  xMax:			757
+	  yMax:			1074
+
+	EndPoints
+	---------
+	  0:  3
+
+	  Length of Instructions:	36
+	00000: PUSHB[4]              0     2     2     3 
+	00005: PUSHW[1]            924 
+	00008: PUSHB[5]              1     1     3     3     0 
+	00014: PUSHW[2]            923     2 
+	00019: MDAP[rd]   
+	00020: MIRP[nrp0,md,rd,1] 
+	00021: RTDG       
+	00022: IP         
+	00023: MDAP[rd]   
+	00024: RTG        
+	00025: ALIGNRP    
+	00026: SVTCA[y-axis] 
+	00027: MDAP[rd]   
+	00028: MIRP[nrp0,md,rd,1] 
+	00029: RTDG       
+	00030: IP         
+	00031: MDAP[rd]   
+	00032: ALIGNRP    
+	00033: RTG        
+	00034: IUP[y]     
+	00035: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   757,   965)  ->  Abs (   757,   965)
+	  1: Rel (  -109,  -110)  ->  Abs (   648,   855)
+	  2: Rel (  -111,   110)  ->  Abs (   537,   965)
+	  3: Rel (   111,   109)  ->  Abs (   648,  1074)
+
+	Glyph 1022: off = 0x000326A0, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			465
+	  yMin:			1047
+	  xMax:			739
+	  yMax:			1420
+
+	     0: Flags:		0x0217
+		Glyf Index:	775
+		X WOffset:	0
+		Y WOffset:	-183
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1023: off = 0x000326B2, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			476
+	  yMin:			1049
+	  xMax:			751
+	  yMax:			1209
+
+	     0: Flags:		0x0217
+		Glyf Index:	756
+		X WOffset:	0
+		Y WOffset:	-210
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1024: off = 0x000326C4, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			476
+	  yMin:			1049
+	  xMax:			752
+	  yMax:			1369
+
+	     0: Flags:		0x0217
+		Glyf Index:	753
+		X WOffset:	0
+		Y WOffset:	-210
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1025: off = 0x000326D6, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			97
+	  yMin:			0
+	  xMax:			946
+	  yMax:			1738
+
+	     0: Flags:		0x0236
+		Glyf Index:	1019
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	790
+		X WOffset:	-321
+		Y WOffset:	-68
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     3     2    31    52   111    52   143    52   175    52 
+	                             4   143    52   207    52   255    52     3    52 
+	00021: SVTCA[y-axis] 
+	00022: SRP1       
+	00023: DELTAP1    
+	00024: DELTAP2    
+	00025: SHC[rp1,zp0] 
+	00026: SHC[rp1,zp0] 
+
+	Glyph 1026: off = 0x0003270C, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			76
+	  yMin:			0
+	  xMax:			946
+	  yMax:			1898
+
+	     0: Flags:		0x0236
+		Glyf Index:	1019
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	791
+		X WOffset:	-344
+		Y WOffset:	-68
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (20):     4     3     2    31    63   111    63   143    63   175 
+	                            63     4   143    63   207    63   255    63     3    63 
+	00022: SVTCA[y-axis] 
+	00023: SRP1       
+	00024: DELTAP1    
+	00025: DELTAP2    
+	00026: SHC[rp1,zp0] 
+	00027: SHC[rp1,zp0] 
+	00028: SHC[rp1,zp0] 
+
+	Glyph 1027: off = 0x00032744, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			412
+	  yMin:			1063
+	  xMax:			812
+	  yMax:			1402
+
+	     0: Flags:		0x0217
+		Glyf Index:	796
+		X WOffset:	0
+		Y WOffset:	-210
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1028: off = 0x00032756, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			475
+	  yMin:			1107
+	  xMax:			725
+	  yMax:			1398
+
+	     0: Flags:		0x0217
+		Glyf Index:	760
+		X WOffset:	0
+		Y WOffset:	-200
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1029: off = 0x00032768, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			458
+	  yMin:			1076
+	  xMax:			749
+	  yMax:			1361
+
+	     0: Flags:		0x0217
+		Glyf Index:	759
+		X WOffset:	0
+		Y WOffset:	-210
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1030: off = 0x0003277A, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			269
+	  yMin:			1103
+	  xMax:			891
+	  yMax:			1272
+
+	     0: Flags:		0x0217
+		Glyf Index:	777
+		X WOffset:	0
+		Y WOffset:	-210
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1031: off = 0x0003278C, len = 30
+	  numberOfContours:	-1  (Composite)
+	  xMin:			586
+	  yMin:			1127
+	  xMax:			652
+	  yMax:			1594
+
+	     0: Flags:		0x0317
+		Glyf Index:	774
+		X WOffset:	0
+		Y WOffset:	-210
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              0     0     4     1     4 
+	00006: SVTCA[x-axis] 
+	00007: SRP1       
+	00008: DELTAP1    
+	00009: SHC[rp1,zp0] 
+
+	Glyph 1032: off = 0x000327AA, len = 30
+	  numberOfContours:	-1  (Composite)
+	  xMin:			419
+	  yMin:			1049
+	  xMax:			753
+	  yMax:			1471
+
+	     0: Flags:		0x0317
+		Glyf Index:	757
+		X WOffset:	0
+		Y WOffset:	-210
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              0    47    16     1    16 
+	00006: SVTCA[y-axis] 
+	00007: SRP1       
+	00008: DELTAP1    
+	00009: SHC[rp1,zp0] 
+
+	Glyph 1033: off = 0x000327C8, len = 32
+	  numberOfContours:	-1  (Composite)
+	  xMin:			407
+	  yMin:			1051
+	  xMax:			774
+	  yMax:			1475
+
+	     0: Flags:		0x0317
+		Glyf Index:	754
+		X WOffset:	0
+		Y WOffset:	-210
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              1     0    47    35     1    35 
+	00007: SVTCA[y-axis] 
+	00008: SRP1       
+	00009: DELTAP1    
+	00010: SHC[rp1,zp0] 
+	00011: SHC[rp1,zp0] 
+
+	Glyph 1034: off = 0x000327E8, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			93
+	  yMin:			0
+	  xMax:			946
+	  yMax:			1885
+
+	     0: Flags:		0x0236
+		Glyf Index:	1019
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	792
+		X WOffset:	-334
+		Y WOffset:	-68
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (21):     4     3     2    31    62   111    62   143    62   175 
+	                            62     4   143    62   207    62   255    62     3    62 
+	                             4 
+	00023: PUSHW[1]            340 
+	00026: SCANCTRL   
+	00027: SCANTYPE   
+	00028: SVTCA[y-axis] 
+	00029: SRP1       
+	00030: DELTAP1    
+	00031: DELTAP2    
+	00032: SHC[rp1,zp0] 
+	00033: SHC[rp1,zp0] 
+	00034: SHC[rp1,zp0] 
+
+	Glyph 1035: off = 0x00032826, len = 70
+	  numberOfContours:	-1  (Composite)
+	  xMin:			32
+	  yMin:			0
+	  xMax:			946
+	  yMax:			2023
+
+	     0: Flags:		0x0236
+		Glyf Index:	1019
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	793
+		X WOffset:	-333
+		Y WOffset:	-68
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (30):     4     3     2    31    41   111    41   143    41   175 
+	                            41     4   143    41   207    41   255    41     3    41 
+	                             4     3    31    69   127    69   239    69     3    69 
+	00032: SVTCA[x-axis] 
+	00033: SRP1       
+	00034: DELTAP1    
+	00035: SHC[rp1,zp0] 
+	00036: SHC[rp1,zp0] 
+	00037: SVTCA[y-axis] 
+	00038: SRP1       
+	00039: DELTAP1    
+	00040: DELTAP2    
+	00041: SHC[rp1,zp0] 
+	00042: SHC[rp1,zp0] 
+	00043: SHC[rp1,zp0] 
+
+	Glyph 1036: off = 0x0003286C, len = 112
+	  numberOfContours:	-1  (Composite)
+	  xMin:			5
+	  yMin:			0
+	  xMax:			946
+	  yMax:			2008
+
+	     0: Flags:		0x0236
+		Glyf Index:	1019
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	794
+		X WOffset:	-333
+		Y WOffset:	-68
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (60):     4     3     2    31    91   111    91   143    91   175 
+	                            91     4   143    91   207    91   255    91     3    91 
+	                             4     3     2    95    96   127    96   175    96     3 
+	                            31    96    79    96     2    96     3     2    31    54 
+	                             1   191    54     1   223    54   239    54     2    54 
+	                            64    17    18    52    54    64    17    21    52    54 
+	00062: SVTCA[x-axis] 
+	00063: SRP1       
+	00064: CALL       
+	00065: CALL       
+	00066: DELTAP1    
+	00067: DELTAP2    
+	00068: DELTAP3    
+	00069: SHC[rp1,zp0] 
+	00070: SHC[rp1,zp0] 
+	00071: SVTCA[x-axis] 
+	00072: SRP1       
+	00073: DELTAP1    
+	00074: DELTAP1    
+	00075: SHC[rp1,zp0] 
+	00076: SHC[rp1,zp0] 
+	00077: SHC[rp1,zp0] 
+	00078: SVTCA[y-axis] 
+	00079: SRP1       
+	00080: DELTAP1    
+	00081: DELTAP2    
+	00082: SHC[rp1,zp0] 
+	00083: SHC[rp1,zp0] 
+	00084: SHC[rp1,zp0] 
+
+	Glyph 1037: off = 0x000328DC, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			455
+	  yMin:			1072
+	  xMax:			746
+	  yMax:			1471
+
+	     0: Flags:		0x0217
+		Glyf Index:	841
+		X WOffset:	0
+		Y WOffset:	-210
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1038: off = 0x000328EE, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			458
+	  yMin:			1076
+	  xMax:			749
+	  yMax:			1630
+
+	     0: Flags:		0x0217
+		Glyf Index:	786
+		X WOffset:	0
+		Y WOffset:	-210
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1039: off = 0x00032900, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			458
+	  yMin:			1043
+	  xMax:			749
+	  yMax:			1492
+
+	     0: Flags:		0x0217
+		Glyf Index:	843
+		X WOffset:	0
+		Y WOffset:	-210
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1040: off = 0x00032912, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			469
+	  yMin:			1044
+	  xMax:			760
+	  yMax:			1653
+
+	     0: Flags:		0x0217
+		Glyf Index:	840
+		X WOffset:	0
+		Y WOffset:	-210
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1041: off = 0x00032924, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			424
+	  yMin:			1072
+	  xMax:			758
+	  yMax:			1737
+
+	     0: Flags:		0x0217
+		Glyf Index:	842
+		X WOffset:	0
+		Y WOffset:	-210
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1042: off = 0x00032936, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			387
+	  yMin:			1074
+	  xMax:			754
+	  yMax:			1738
+
+	     0: Flags:		0x0217
+		Glyf Index:	839
+		X WOffset:	0
+		Y WOffset:	-210
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1043: off = 0x00032948, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			475
+	  yMin:			-1032
+	  xMax:			749
+	  yMax:			-659
+
+	     0: Flags:		0x0217
+		Glyf Index:	775
+		X WOffset:	10
+		Y WOffset:	-2262
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1044: off = 0x0003295A, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			434
+	  yMin:			-787
+	  xMax:			709
+	  yMax:			-627
+
+	     0: Flags:		0x0217
+		Glyf Index:	756
+		X WOffset:	-42
+		Y WOffset:	-2046
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1045: off = 0x0003296C, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			434
+	  yMin:			-944
+	  xMax:			710
+	  yMax:			-624
+
+	     0: Flags:		0x0217
+		Glyf Index:	753
+		X WOffset:	-42
+		Y WOffset:	-2203
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1046: off = 0x0003297E, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			156
+	  yMin:			-709
+	  xMax:			946
+	  yMax:			1161
+
+	     0: Flags:		0x0236
+		Glyf Index:	1019
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	788
+		X BOffset:	-96
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              2     3     2    41 
+	00005: PUSHW[1]            953 
+	00008: PUSHB[4]             41     3     2    42 
+	00013: PUSHW[1]            -64 
+	00016: PUSHB[4]              9    12    52    42 
+	00021: SVTCA[x-axis] 
+	00022: SRP1       
+	00023: CALL       
+	00024: SHC[rp1,zp0] 
+	00025: SHC[rp1,zp0] 
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+
+	Glyph 1047: off = 0x000329B2, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			156
+	  yMin:			-868
+	  xMax:			946
+	  yMax:			1161
+
+	     0: Flags:		0x0236
+		Glyf Index:	1019
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	789
+		X BOffset:	-98
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              2     3     4     3    41 
+	00006: PUSHW[1]            953 
+	00009: PUSHB[5]             41     4     3     2    42 
+	00015: PUSHW[1]            -64 
+	00018: PUSHB[4]              9    12    52    42 
+	00023: SVTCA[x-axis] 
+	00024: SRP1       
+	00025: CALL       
+	00026: SHC[rp1,zp0] 
+	00027: SHC[rp1,zp0] 
+	00028: SHC[rp1,zp0] 
+	00029: SVTCA[y-axis] 
+	00030: CALL       
+
+	Glyph 1048: off = 0x000329EA, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			490
+	  yMin:			782
+	  xMax:			764
+	  yMax:			1155
+
+	     0: Flags:		0x0217
+		Glyf Index:	775
+		X WOffset:	25
+		Y WOffset:	-448
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1049: off = 0x000329FC, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			501
+	  yMin:			784
+	  xMax:			776
+	  yMax:			944
+
+	     0: Flags:		0x0217
+		Glyf Index:	756
+		X WOffset:	25
+		Y WOffset:	-475
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1050: off = 0x00032A0E, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			501
+	  yMin:			784
+	  xMax:			777
+	  yMax:			1104
+
+	     0: Flags:		0x0217
+		Glyf Index:	753
+		X WOffset:	25
+		Y WOffset:	-475
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1051: off = 0x00032A20, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			117
+	  yMin:			-82
+	  xMax:			1229
+	  yMax:			1620
+
+	     0: Flags:		0x0236
+		Glyf Index:	1020
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	790
+		X WOffset:	-301
+		Y WOffset:	-186
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     2     1   111    49   143    49     2   111    49   143 
+	                            49   207    49   255    49     4    49 
+	00019: SVTCA[y-axis] 
+	00020: SRP1       
+	00021: DELTAP1    
+	00022: DELTAP2    
+	00023: SHC[rp1,zp0] 
+	00024: SHC[rp1,zp0] 
+
+	Glyph 1052: off = 0x00032A54, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			107
+	  yMin:			-82
+	  xMax:			1229
+	  yMax:			1780
+
+	     0: Flags:		0x0236
+		Glyf Index:	1020
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	791
+		X WOffset:	-313
+		Y WOffset:	-186
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (27):     3     2     1   111    60   143    60     2   111    60 
+	                           143    60   207    60   255    60     4    60     3     2 
+	                             1    31    65   239    65     2    65 
+	00029: SVTCA[x-axis] 
+	00030: SRP1       
+	00031: DELTAP1    
+	00032: SHC[rp1,zp0] 
+	00033: SHC[rp1,zp0] 
+	00034: SHC[rp1,zp0] 
+	00035: SVTCA[y-axis] 
+	00036: SRP1       
+	00037: DELTAP1    
+	00038: DELTAP2    
+	00039: SHC[rp1,zp0] 
+	00040: SHC[rp1,zp0] 
+	00041: SHC[rp1,zp0] 
+
+	Glyph 1053: off = 0x00032A98, len = 30
+	  numberOfContours:	-1  (Composite)
+	  xMin:			437
+	  yMin:			798
+	  xMax:			837
+	  yMax:			1137
+
+	     0: Flags:		0x0317
+		Glyf Index:	796
+		X WOffset:	25
+		Y WOffset:	-475
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              0    47    10     1    10 
+	00006: SVTCA[y-axis] 
+	00007: SRP1       
+	00008: DELTAP1    
+	00009: SHC[rp1,zp0] 
+
+	Glyph 1054: off = 0x00032AB6, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			500
+	  yMin:			832
+	  xMax:			750
+	  yMax:			1123
+
+	     0: Flags:		0x0217
+		Glyf Index:	760
+		X WOffset:	25
+		Y WOffset:	-475
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1055: off = 0x00032AC8, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			483
+	  yMin:			811
+	  xMax:			774
+	  yMax:			1096
+
+	     0: Flags:		0x0217
+		Glyf Index:	759
+		X WOffset:	25
+		Y WOffset:	-475
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1056: off = 0x00032ADA, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			294
+	  yMin:			838
+	  xMax:			916
+	  yMax:			1007
+
+	     0: Flags:		0x0217
+		Glyf Index:	777
+		X WOffset:	25
+		Y WOffset:	-475
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1057: off = 0x00032AEC, len = 30
+	  numberOfContours:	-1  (Composite)
+	  xMin:			611
+	  yMin:			862
+	  xMax:			677
+	  yMax:			1329
+
+	     0: Flags:		0x0317
+		Glyf Index:	774
+		X WOffset:	25
+		Y WOffset:	-475
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              0     0     4     1     4 
+	00006: SVTCA[x-axis] 
+	00007: SRP1       
+	00008: DELTAP1    
+	00009: SHC[rp1,zp0] 
+
+	Glyph 1058: off = 0x00032B0A, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			444
+	  yMin:			784
+	  xMax:			778
+	  yMax:			1206
+
+	     0: Flags:		0x0217
+		Glyf Index:	757
+		X WOffset:	25
+		Y WOffset:	-475
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1059: off = 0x00032B1C, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			432
+	  yMin:			786
+	  xMax:			799
+	  yMax:			1210
+
+	     0: Flags:		0x0217
+		Glyf Index:	754
+		X WOffset:	25
+		Y WOffset:	-475
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1060: off = 0x00032B2E, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			127
+	  yMin:			-82
+	  xMax:			1229
+	  yMax:			1767
+
+	     0: Flags:		0x0236
+		Glyf Index:	1020
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	792
+		X WOffset:	-300
+		Y WOffset:	-186
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     3     2     1   111    59   143    59     2   111    59 
+	                           143    59   207    59   255    59     4    59 
+	00020: SVTCA[y-axis] 
+	00021: SRP1       
+	00022: DELTAP1    
+	00023: DELTAP2    
+	00024: SHC[rp1,zp0] 
+	00025: SHC[rp1,zp0] 
+	00026: SHC[rp1,zp0] 
+
+	Glyph 1061: off = 0x00032B64, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			65
+	  yMin:			-82
+	  xMax:			1229
+	  yMax:			1905
+
+	     0: Flags:		0x0236
+		Glyf Index:	1020
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	793
+		X WOffset:	-300
+		Y WOffset:	-186
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     3     2     1   111    38   143    38     2   111    38 
+	                           143    38   207    38   255    38     4    38 
+	00020: SVTCA[y-axis] 
+	00021: SRP1       
+	00022: DELTAP1    
+	00023: DELTAP2    
+	00024: SHC[rp1,zp0] 
+	00025: SHC[rp1,zp0] 
+	00026: SHC[rp1,zp0] 
+
+	Glyph 1062: off = 0x00032B9A, len = 88
+	  numberOfContours:	-1  (Composite)
+	  xMin:			38
+	  yMin:			-82
+	  xMax:			1229
+	  yMax:			1890
+
+	     0: Flags:		0x0236
+		Glyf Index:	1020
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	794
+		X WOffset:	-300
+		Y WOffset:	-186
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (40):     3     2     1   111    88   143    88     2   111    88 
+	                           143    88   207    88   255    88     4    88     3     2 
+	                             1   159    93   175    93     2    79    93    95    93 
+	                             2    93     2     1    53    64    17    21    52    53 
+	00042: SVTCA[x-axis] 
+	00043: SRP1       
+	00044: CALL       
+	00045: SHC[rp1,zp0] 
+	00046: SHC[rp1,zp0] 
+	00047: SVTCA[x-axis] 
+	00048: SRP1       
+	00049: DELTAP1    
+	00050: DELTAP1    
+	00051: SHC[rp1,zp0] 
+	00052: SHC[rp1,zp0] 
+	00053: SHC[rp1,zp0] 
+	00054: SVTCA[y-axis] 
+	00055: SRP1       
+	00056: DELTAP1    
+	00057: DELTAP2    
+	00058: SHC[rp1,zp0] 
+	00059: SHC[rp1,zp0] 
+	00060: SHC[rp1,zp0] 
+
+	Glyph 1063: off = 0x00032BF2, len = 32
+	  numberOfContours:	-1  (Composite)
+	  xMin:			480
+	  yMin:			807
+	  xMax:			771
+	  yMax:			1206
+
+	     0: Flags:		0x0317
+		Glyf Index:	841
+		X WOffset:	25
+		Y WOffset:	-475
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              1     0    47    13     1    13 
+	00007: SVTCA[y-axis] 
+	00008: SRP1       
+	00009: DELTAP1    
+	00010: SHC[rp1,zp0] 
+	00011: SHC[rp1,zp0] 
+
+	Glyph 1064: off = 0x00032C12, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			483
+	  yMin:			811
+	  xMax:			774
+	  yMax:			1365
+
+	     0: Flags:		0x0217
+		Glyf Index:	786
+		X WOffset:	25
+		Y WOffset:	-475
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1065: off = 0x00032C24, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			483
+	  yMin:			778
+	  xMax:			774
+	  yMax:			1227
+
+	     0: Flags:		0x0217
+		Glyf Index:	843
+		X WOffset:	25
+		Y WOffset:	-475
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1066: off = 0x00032C36, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			494
+	  yMin:			779
+	  xMax:			785
+	  yMax:			1388
+
+	     0: Flags:		0x0217
+		Glyf Index:	840
+		X WOffset:	25
+		Y WOffset:	-475
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1067: off = 0x00032C48, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			449
+	  yMin:			807
+	  xMax:			783
+	  yMax:			1472
+
+	     0: Flags:		0x0217
+		Glyf Index:	842
+		X WOffset:	25
+		Y WOffset:	-475
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1068: off = 0x00032C5A, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			412
+	  yMin:			809
+	  xMax:			779
+	  yMax:			1473
+
+	     0: Flags:		0x0217
+		Glyf Index:	839
+		X WOffset:	25
+		Y WOffset:	-475
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1069: off = 0x00032C6C, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			455
+	  yMin:			-1392
+	  xMax:			729
+	  yMax:			-1019
+
+	     0: Flags:		0x0217
+		Glyf Index:	775
+		X WOffset:	-10
+		Y WOffset:	-2622
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1070: off = 0x00032C7E, len = 42
+	  numberOfContours:	-1  (Composite)
+	  xMin:			414
+	  yMin:			-1147
+	  xMax:			689
+	  yMax:			-987
+
+	     0: Flags:		0x0317
+		Glyf Index:	756
+		X WOffset:	-62
+		Y WOffset:	-2406
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     0    64     5    80     5     2    16     5    32     5 
+	                            48     5     3     5 
+	00016: SVTCA[y-axis] 
+	00017: SRP1       
+	00018: DELTAP1    
+	00019: DELTAP1    
+	00020: SHC[rp1,zp0] 
+
+	Glyph 1071: off = 0x00032CA8, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			414
+	  yMin:			-1304
+	  xMax:			690
+	  yMax:			-984
+
+	     0: Flags:		0x0217
+		Glyf Index:	753
+		X WOffset:	-62
+		Y WOffset:	-2563
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1072: off = 0x00032CBA, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			215
+	  yMin:			-709
+	  xMax:			1229
+	  yMax:			1161
+
+	     0: Flags:		0x0236
+		Glyf Index:	1020
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	788
+		X WOffset:	-193
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              1     2     2    38 
+	00005: PUSHW[1]            953 
+	00008: NPUSHB      (18):    41     2     1    47    38    79    38    80    38   143 
+	                            38     4    38    64    16    20    52    38 
+	00028: SVTCA[x-axis] 
+	00029: SRP1       
+	00030: CALL       
+	00031: DELTAP1    
+	00032: SHC[rp1,zp0] 
+	00033: SHC[rp1,zp0] 
+	00034: SVTCA[y-axis] 
+	00035: CALL       
+
+	Glyph 1073: off = 0x00032CF8, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			215
+	  yMin:			-868
+	  xMax:			1229
+	  yMax:			1161
+
+	     0: Flags:		0x0236
+		Glyf Index:	1020
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	789
+		X WOffset:	-195
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              1     2     3     3    38 
+	00006: PUSHW[1]            953 
+	00009: NPUSHB      (21):    41     3     2     1    47    38    79    38    80    38 
+	                           127    38   143    38     5    38    64    16    20    52 
+	                            38 
+	00032: SVTCA[x-axis] 
+	00033: SRP1       
+	00034: CALL       
+	00035: DELTAP1    
+	00036: SHC[rp1,zp0] 
+	00037: SHC[rp1,zp0] 
+	00038: SHC[rp1,zp0] 
+	00039: SVTCA[y-axis] 
+	00040: CALL       
+
+	Glyph 1074: off = 0x00032D3C, len = 26
+	  numberOfContours:	-1  (Composite)
+	  xMin:			195
+	  yMin:			1187
+	  xMax:			469
+	  yMax:			1560
+
+	     0: Flags:		0x0317
+		Glyf Index:	775
+		X WOffset:	-270
+		Y WOffset:	-43
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              0    22 
+	00003: SVTCA[y-axis] 
+	00004: SRP1       
+	00005: SHC[rp1,zp0] 
+
+	Glyph 1075: off = 0x00032D56, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			206
+	  yMin:			1189
+	  xMax:			481
+	  yMax:			1349
+
+	     0: Flags:		0x0217
+		Glyf Index:	756
+		X WOffset:	-270
+		Y WOffset:	-70
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1076: off = 0x00032D68, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			205
+	  yMin:			1189
+	  xMax:			481
+	  yMax:			1509
+
+	     0: Flags:		0x0217
+		Glyf Index:	753
+		X WOffset:	-271
+		Y WOffset:	-70
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1077: off = 0x00032D7A, len = 484
+	  numberOfContours:	3
+	  xMin:			362
+	  yMin:			59
+	  xMax:			681
+	  yMax:			1705
+
+	EndPoints
+	---------
+	  0:  9
+	  1:  32
+	  2:  44
+
+	  Length of Instructions:	349
+	00000: NPUSHB      (23):    32    44    19    27    52    11    32    11    16    52 
+	                            20    27    22    28    25    32     3    14    64    17 
+	                            30    52    13 
+	00025: PUSHW[1]            -64 
+	00028: PUSHB[4]             11    16    52    11 
+	00033: PUSHW[1]            -64 
+	00036: PUSHB[4]             12    16    52     5 
+	00041: PUSHW[4]            936     9     4   936 
+	00050: PUSHB[4]             16     9     1     9 
+	00055: PUSHW[1]            935 
+	00058: NPUSHB      (22):     0    64    25    44    52     0    64     9    48    52 
+	                             0     0    18    13    29    31    32    11    10    22 
+	                            22    18 
+	00082: PUSHW[1]            897 
+	00085: NPUSHB      (20):    24    64    47    49    52    24    64    41    43    52 
+	                            95    24     1     0    24     1    24    24    10    31 
+	00107: PUSHW[1]            898 
+	00110: PUSHB[4]            144    32     1    32 
+	00115: PUSHW[1]            -64 
+	00118: PUSHB[4]             28    30    52    32 
+	00123: PUSHW[1]            -64 
+	00126: NPUSHB      (29):     9    16    52    32    32    15    10     1    10    64 
+	                             9    21    52    10    10    38    33    38     7    64 
+	                            18    26    52     7    64     9    11    52     7 
+	00157: PUSHW[1]            934 
+	00160: NPUSHB      (16):     2     2    10    13    32    22    22     0    20    16 
+	                            20     2    20    20    32    26 
+	00178: PUSHW[1]            875 
+	00181: NPUSHB      (53):    47    15     1    15    15    11    10    31   175    32 
+	                             1    32    64    11    11    52    32    64     9    11 
+	                            52    32    32    79    10     1    32    10     1    10 
+	                            10    10    37    33    33    37    38    38    36    35 
+	                            34    44    42    41    40    39     8    43    64    25 
+	                            27    52    43 
+	00236: PUSHW[1]            892 
+	00239: PUSHB[5]             79    37     1    37     4 
+	00245: PUSHW[1]            340 
+	00248: SCANCTRL   
+	00249: SCANTYPE   
+	00250: MDAP[rd]   
+	00251: DELTAP1    
+	00252: MIRP[nrp0,md,rd,1] 
+	00253: CALL       
+	00254: SLOOP      
+	00255: IP         
+	00256: RTHG       
+	00257: IP         
+	00258: MDAP[rd]   
+	00259: SRP1       
+	00260: IP         
+	00261: MDAP[rd]   
+	00262: SRP1       
+	00263: SHP[rp1,zp0] 
+	00264: SHP[rp1,zp0] 
+	00265: RTG        
+	00266: MDAP[rd]   
+	00267: DELTAP1    
+	00268: DELTAP2    
+	00269: SHP[rp1,zp0] 
+	00270: MDAP[rd]   
+	00271: CALL       
+	00272: CALL       
+	00273: DELTAP1    
+	00274: ALIGNRP    
+	00275: SRP1       
+	00276: SHP[rp1,zp0] 
+	00277: SHP[rp1,zp0] 
+	00278: MDAP[rd]   
+	00279: DELTAP1    
+	00280: MIRP[srp0,md,rd,1] 
+	00281: SRP1       
+	00282: IP         
+	00283: MDAP[rd]   
+	00284: DELTAP1    
+	00285: SHP[rp1,zp0] 
+	00286: RTHG       
+	00287: MDAP[rd]   
+	00288: SRP1       
+	00289: IP         
+	00290: SRP1       
+	00291: SHP[rp1,zp0] 
+	00292: RTG        
+	00293: MDAP[rd]   
+	00294: MIRP[nrp0,md,rd,1] 
+	00295: CALL       
+	00296: CALL       
+	00297: SVTCA[y-axis] 
+	00298: MDAP[rd]   
+	00299: MDAP[rd]   
+	00300: SRP1       
+	00301: SHP[rp1,zp0] 
+	00302: MDAP[rd]   
+	00303: CALL       
+	00304: DELTAP1    
+	00305: SHP[rp1,zp0] 
+	00306: MDAP[rd]   
+	00307: CALL       
+	00308: CALL       
+	00309: DELTAP3    
+	00310: MIRP[nrp0,md,rd,1] 
+	00311: SRP1       
+	00312: SHP[rp1,zp0] 
+	00313: MDAP[rd]   
+	00314: DELTAP1    
+	00315: DELTAP3    
+	00316: CALL       
+	00317: CALL       
+	00318: MIRP[nrp0,md,rd,1] 
+	00319: SHP[rp1,zp0] 
+	00320: RUTG       
+	00321: MDAP[rd]   
+	00322: RTG        
+	00323: SRP1       
+	00324: SHP[rp1,zp0] 
+	00325: SRP1       
+	00326: SRP2       
+	00327: IP         
+	00328: IP         
+	00329: SRP1       
+	00330: SHP[rp1,zp0] 
+	00331: MDAP[rd]   
+	00332: CALL       
+	00333: CALL       
+	00334: MIRP[nrp0,nmd,rd,0] 
+	00335: DELTAP1    
+	00336: MIRP[nrp0,md,rd,1] 
+	00337: SRP0       
+	00338: MIRP[nrp0,md,rd,1] 
+	00339: IUP[y]     
+	00340: IUP[x]     
+	00341: SVTCA[x-axis] 
+	00342: CALL       
+	00343: CALL       
+	00344: CALL       
+	00345: SVTCA[y-axis] 
+	00346: DELTAP3    
+	00347: CALL       
+	00348: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                      Y-Short X-Short On
+	 10:                              X-Short On
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:                      Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:        XDual         Y-Short         On
+	 33:                              X-Short On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual               Y-Short X-Short On
+	 36:                              X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:                      Y-Short X-Short On
+	 40:        XDual         Y-Short         Off
+	 41:        XDual         Y-Short X-Short On
+	 42:        XDual         Y-Short X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual                         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   373,  1545)  ->  Abs (   373,  1545)
+	  1: Rel (   -11,     0)  ->  Abs (   362,  1545)
+	  2: Rel (     0,    24)  ->  Abs (   362,  1569)
+	  3: Rel (     0,    25)  ->  Abs (   362,  1594)
+	  4: Rel (    13,     6)  ->  Abs (   375,  1600)
+	  5: Rel (   248,   105)  ->  Abs (   623,  1705)
+	  6: Rel (    14,     0)  ->  Abs (   637,  1705)
+	  7: Rel (     0,   -21)  ->  Abs (   637,  1684)
+	  8: Rel (     0,   -26)  ->  Abs (   637,  1658)
+	  9: Rel (   -14,    -6)  ->  Abs (   623,  1652)
+	 10: Rel (  -202,  -503)  ->  Abs (   421,  1149)
+	 11: Rel (     8,    43)  ->  Abs (   429,  1192)
+	 12: Rel (    46,    34)  ->  Abs (   475,  1226)
+	 13: Rel (    30,    36)  ->  Abs (   505,  1262)
+	 14: Rel (   -98,     6)  ->  Abs (   407,  1268)
+	 15: Rel (     0,    84)  ->  Abs (   407,  1352)
+	 16: Rel (     0,    58)  ->  Abs (   407,  1410)
+	 17: Rel (    78,   112)  ->  Abs (   485,  1522)
+	 18: Rel (    51,     0)  ->  Abs (   536,  1522)
+	 19: Rel (    80,     0)  ->  Abs (   616,  1522)
+	 20: Rel (     0,   -73)  ->  Abs (   616,  1449)
+	 21: Rel (     0,   -24)  ->  Abs (   616,  1425)
+	 22: Rel (   -12,   -24)  ->  Abs (   604,  1401)
+	 23: Rel (   -73,    53)  ->  Abs (   531,  1454)
+	 24: Rel (   -32,     0)  ->  Abs (   499,  1454)
+	 25: Rel (   -51,     0)  ->  Abs (   448,  1454)
+	 26: Rel (     0,   -43)  ->  Abs (   448,  1411)
+	 27: Rel (     0,   -35)  ->  Abs (   448,  1376)
+	 28: Rel (   105,   -65)  ->  Abs (   553,  1311)
+	 29: Rel (    40,     0)  ->  Abs (   593,  1311)
+	 30: Rel (     9,     0)  ->  Abs (   602,  1311)
+	 31: Rel (    79,    22)  ->  Abs (   681,  1333)
+	 32: Rel (     0,   -73)  ->  Abs (   681,  1260)
+	 33: Rel (  -129, -1201)  ->  Abs (   552,    59)
+	 34: Rel (     0,   234)  ->  Abs (   552,   293)
+	 35: Rel (   -19,   246)  ->  Abs (   533,   539)
+	 36: Rel (   -19,   259)  ->  Abs (   514,   798)
+	 37: Rel (     0,   137)  ->  Abs (   514,   935)
+	 38: Rel (   102,   166)  ->  Abs (   616,  1101)
+	 39: Rel (    -3,  -155)  ->  Abs (   613,   946)
+	 40: Rel (     0,  -157)  ->  Abs (   613,   789)
+	 41: Rel (     5,  -119)  ->  Abs (   618,   670)
+	 42: Rel (     8,  -186)  ->  Abs (   626,   484)
+	 43: Rel (     0,   -90)  ->  Abs (   626,   394)
+	 44: Rel (     0,  -293)  ->  Abs (   626,   101)
+
+	Glyph 1078: off = 0x00032F5E, len = 592
+	  numberOfContours:	4
+	  xMin:			372
+	  yMin:			59
+	  xMax:			681
+	  yMax:			1866
+
+	EndPoints
+	---------
+	  0:  9
+	  1:  19
+	  2:  42
+	  3:  54
+
+	  Length of Instructions:	429
+	00000: NPUSHB      (25):    42    44    19    27    52    21    32    11    16    52 
+	                            19    37    21    38    21    39    25    42     4    24 
+	                            64    17    30    52    23 
+	00027: PUSHW[1]            -64 
+	00030: PUSHB[4]             11    16    52    21 
+	00035: PUSHW[1]            -64 
+	00038: PUSHB[4]             12    16    52     5 
+	00043: PUSHW[4]            936     9     4   936 
+	00052: PUSHB[4]             16     9     1     9 
+	00057: PUSHW[1]            935 
+	00060: NPUSHB      (13):     0    64    42    48    52     0    64    25    29    52 
+	                             0     0    15 
+	00075: PUSHW[4]            936    19    14   936 
+	00084: PUSHB[4]             16    19     1    19 
+	00089: PUSHW[1]            935 
+	00092: NPUSHB      (32):    79    10   143    10   223    10     3    31    10     1 
+	                            10    64    34    41    52    10    64     9    48    52 
+	                            10    10    28    23    49    41    42    21    20    32 
+	                            32    28 
+	00126: PUSHW[1]            897 
+	00129: NPUSHB      (20):    34    64    47    49    52    34    64    41    43    52 
+	                            95    34     1     0    34     1    34    34    20    41 
+	00151: PUSHW[1]            898 
+	00154: PUSHB[4]            144    42     1    42 
+	00159: PUSHW[1]            -64 
+	00162: PUSHB[4]             28    30    52    42 
+	00167: PUSHW[1]            -64 
+	00170: NPUSHB      (29):     9    16    52    42    42    15    20     1    20    64 
+	                             9    21    52    20    20    48    43    48     7    64 
+	                            18    26    52     7    64     9    11    52     7 
+	00201: PUSHW[1]            934 
+	00204: NPUSHB      (13):     2     2    17    64    18    26    52    17    64     9 
+	                            11    52    17 
+	00219: PUSHW[3]            934    12   -64 
+	00226: NPUSHB      (19):    19    27    52    12    12    25    23    42    32    32 
+	                             0    30    16    30     2    30    30    42    36 
+	00247: PUSHW[1]            875 
+	00250: NPUSHB      (49):    47    25     1    25    25    21    20    41   175    42 
+	                             1    42    64    11    11    52    42    64     9    11 
+	                            52    42    42    32    20     1    20    20    47    43 
+	                            43    47    48    48    46    45    44    54    52    51 
+	                            50    49     8    53    64    25    27    52    53 
+	00301: PUSHW[1]            892 
+	00304: PUSHB[5]             79    47     1    47     5 
+	00310: PUSHW[1]            340 
+	00313: SCANCTRL   
+	00314: SCANTYPE   
+	00315: MDAP[rd]   
+	00316: DELTAP1    
+	00317: MIRP[nrp0,md,rd,1] 
+	00318: CALL       
+	00319: SLOOP      
+	00320: IP         
+	00321: RTHG       
+	00322: IP         
+	00323: MDAP[rd]   
+	00324: SRP1       
+	00325: IP         
+	00326: MDAP[rd]   
+	00327: SRP1       
+	00328: SHP[rp1,zp0] 
+	00329: RTG        
+	00330: MDAP[rd]   
+	00331: DELTAP1    
+	00332: SHP[rp1,zp0] 
+	00333: MDAP[rd]   
+	00334: CALL       
+	00335: CALL       
+	00336: DELTAP1    
+	00337: ALIGNRP    
+	00338: SRP1       
+	00339: SHP[rp1,zp0] 
+	00340: SHP[rp1,zp0] 
+	00341: MDAP[rd]   
+	00342: DELTAP1    
+	00343: MIRP[srp0,md,rd,1] 
+	00344: SRP1       
+	00345: IP         
+	00346: MDAP[rd]   
+	00347: DELTAP1    
+	00348: SHP[rp1,zp0] 
+	00349: RTHG       
+	00350: MDAP[rd]   
+	00351: SRP1       
+	00352: IP         
+	00353: SRP1       
+	00354: SHP[rp1,zp0] 
+	00355: RTG        
+	00356: MDAP[rd]   
+	00357: CALL       
+	00358: MIRP[nrp0,md,rd,1] 
+	00359: CALL       
+	00360: CALL       
+	00361: SHP[rp1,zp0] 
+	00362: MDAP[rd]   
+	00363: MIRP[nrp0,md,rd,1] 
+	00364: CALL       
+	00365: CALL       
+	00366: SVTCA[y-axis] 
+	00367: MDAP[rd]   
+	00368: MDAP[rd]   
+	00369: SRP1       
+	00370: SHP[rp1,zp0] 
+	00371: MDAP[rd]   
+	00372: CALL       
+	00373: DELTAP1    
+	00374: SHP[rp1,zp0] 
+	00375: MDAP[rd]   
+	00376: CALL       
+	00377: CALL       
+	00378: DELTAP3    
+	00379: MIRP[nrp0,md,rd,1] 
+	00380: SRP1       
+	00381: SHP[rp1,zp0] 
+	00382: MDAP[rd]   
+	00383: DELTAP1    
+	00384: DELTAP3    
+	00385: CALL       
+	00386: CALL       
+	00387: MIRP[nrp0,md,rd,1] 
+	00388: SHP[rp1,zp0] 
+	00389: RUTG       
+	00390: MDAP[rd]   
+	00391: RTG        
+	00392: SRP1       
+	00393: SHP[rp1,zp0] 
+	00394: SRP1       
+	00395: SRP2       
+	00396: IP         
+	00397: IP         
+	00398: SRP1       
+	00399: SHP[rp1,zp0] 
+	00400: MDAP[rd]   
+	00401: CALL       
+	00402: CALL       
+	00403: DELTAP3    
+	00404: DELTAP2    
+	00405: MIRP[nrp0,nmd,rd,0] 
+	00406: DELTAP1    
+	00407: MIRP[nrp0,md,rd,1] 
+	00408: SRP0       
+	00409: MIRP[srp0,md,rd,1] 
+	00410: SHP[rp2,zp1] 
+	00411: MDAP[rd]   
+	00412: CALL       
+	00413: CALL       
+	00414: MIRP[nrp0,nmd,rd,0] 
+	00415: DELTAP1    
+	00416: MIRP[nrp0,md,rd,1] 
+	00417: SRP0       
+	00418: MIRP[nrp0,md,rd,1] 
+	00419: IUP[y]     
+	00420: IUP[x]     
+	00421: SVTCA[x-axis] 
+	00422: CALL       
+	00423: CALL       
+	00424: CALL       
+	00425: SVTCA[y-axis] 
+	00426: DELTAP3    
+	00427: CALL       
+	00428: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                      Y-Short X-Short On
+	 10:                              X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:                      Y-Short X-Short On
+	 20:                              X-Short On
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short On
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:        XDual         Y-Short X-Short Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:        XDual         Y-Short         On
+	 43:                              X-Short On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual               Y-Short X-Short On
+	 46:                              X-Short Off
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short X-Short On
+	 49:                      Y-Short X-Short On
+	 50:        XDual         Y-Short         Off
+	 51:        XDual         Y-Short X-Short On
+	 52:        XDual         Y-Short X-Short Off
+	 53:        XDual         Y-Short         On
+	 54:        XDual                         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   383,  1706)  ->  Abs (   383,  1706)
+	  1: Rel (   -11,     0)  ->  Abs (   372,  1706)
+	  2: Rel (     0,    24)  ->  Abs (   372,  1730)
+	  3: Rel (     0,    25)  ->  Abs (   372,  1755)
+	  4: Rel (    13,     6)  ->  Abs (   385,  1761)
+	  5: Rel (   248,   105)  ->  Abs (   633,  1866)
+	  6: Rel (    14,     0)  ->  Abs (   647,  1866)
+	  7: Rel (     0,   -22)  ->  Abs (   647,  1844)
+	  8: Rel (     0,   -28)  ->  Abs (   647,  1816)
+	  9: Rel (   -14,    -6)  ->  Abs (   633,  1810)
+	 10: Rel (  -250,  -264)  ->  Abs (   383,  1546)
+	 11: Rel (   -11,     0)  ->  Abs (   372,  1546)
+	 12: Rel (     0,    24)  ->  Abs (   372,  1570)
+	 13: Rel (     0,    25)  ->  Abs (   372,  1595)
+	 14: Rel (    13,     6)  ->  Abs (   385,  1601)
+	 15: Rel (   248,   105)  ->  Abs (   633,  1706)
+	 16: Rel (    14,     0)  ->  Abs (   647,  1706)
+	 17: Rel (     0,   -21)  ->  Abs (   647,  1685)
+	 18: Rel (     0,   -26)  ->  Abs (   647,  1659)
+	 19: Rel (   -14,    -6)  ->  Abs (   633,  1653)
+	 20: Rel (  -212,  -504)  ->  Abs (   421,  1149)
+	 21: Rel (     8,    43)  ->  Abs (   429,  1192)
+	 22: Rel (    46,    34)  ->  Abs (   475,  1226)
+	 23: Rel (    30,    36)  ->  Abs (   505,  1262)
+	 24: Rel (   -98,     6)  ->  Abs (   407,  1268)
+	 25: Rel (     0,    84)  ->  Abs (   407,  1352)
+	 26: Rel (     0,    58)  ->  Abs (   407,  1410)
+	 27: Rel (    78,   112)  ->  Abs (   485,  1522)
+	 28: Rel (    51,     0)  ->  Abs (   536,  1522)
+	 29: Rel (    80,     0)  ->  Abs (   616,  1522)
+	 30: Rel (     0,   -73)  ->  Abs (   616,  1449)
+	 31: Rel (     0,   -24)  ->  Abs (   616,  1425)
+	 32: Rel (   -12,   -24)  ->  Abs (   604,  1401)
+	 33: Rel (   -73,    53)  ->  Abs (   531,  1454)
+	 34: Rel (   -32,     0)  ->  Abs (   499,  1454)
+	 35: Rel (   -51,     0)  ->  Abs (   448,  1454)
+	 36: Rel (     0,   -43)  ->  Abs (   448,  1411)
+	 37: Rel (     0,   -35)  ->  Abs (   448,  1376)
+	 38: Rel (   105,   -65)  ->  Abs (   553,  1311)
+	 39: Rel (    40,     0)  ->  Abs (   593,  1311)
+	 40: Rel (     9,     0)  ->  Abs (   602,  1311)
+	 41: Rel (    79,    22)  ->  Abs (   681,  1333)
+	 42: Rel (     0,   -73)  ->  Abs (   681,  1260)
+	 43: Rel (  -129, -1201)  ->  Abs (   552,    59)
+	 44: Rel (     0,   234)  ->  Abs (   552,   293)
+	 45: Rel (   -19,   246)  ->  Abs (   533,   539)
+	 46: Rel (   -19,   259)  ->  Abs (   514,   798)
+	 47: Rel (     0,   137)  ->  Abs (   514,   935)
+	 48: Rel (   102,   166)  ->  Abs (   616,  1101)
+	 49: Rel (    -3,  -155)  ->  Abs (   613,   946)
+	 50: Rel (     0,  -157)  ->  Abs (   613,   789)
+	 51: Rel (     5,  -119)  ->  Abs (   618,   670)
+	 52: Rel (     8,  -186)  ->  Abs (   626,   484)
+	 53: Rel (     0,   -90)  ->  Abs (   626,   394)
+	 54: Rel (     0,  -293)  ->  Abs (   626,   101)
+
+	Glyph 1079: off = 0x000331AE, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			142
+	  yMin:			1203
+	  xMax:			542
+	  yMax:			1542
+
+	     0: Flags:		0x0217
+		Glyf Index:	796
+		X WOffset:	-270
+		Y WOffset:	-70
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1080: off = 0x000331C0, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			205
+	  yMin:			1237
+	  xMax:			455
+	  yMax:			1528
+
+	     0: Flags:		0x0217
+		Glyf Index:	760
+		X WOffset:	-270
+		Y WOffset:	-70
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1081: off = 0x000331D2, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			188
+	  yMin:			1216
+	  xMax:			479
+	  yMax:			1501
+
+	     0: Flags:		0x0217
+		Glyf Index:	759
+		X WOffset:	-270
+		Y WOffset:	-70
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1082: off = 0x000331E4, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			1243
+	  xMax:			622
+	  yMax:			1412
+
+	     0: Flags:		0x0217
+		Glyf Index:	777
+		X WOffset:	-269
+		Y WOffset:	-70
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1083: off = 0x000331F6, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			316
+	  yMin:			1267
+	  xMax:			382
+	  yMax:			1734
+
+	     0: Flags:		0x0217
+		Glyf Index:	774
+		X WOffset:	-270
+		Y WOffset:	-70
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1084: off = 0x00033208, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			149
+	  yMin:			1189
+	  xMax:			483
+	  yMax:			1611
+
+	     0: Flags:		0x0217
+		Glyf Index:	757
+		X WOffset:	-270
+		Y WOffset:	-70
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1085: off = 0x0003321A, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			137
+	  yMin:			1191
+	  xMax:			504
+	  yMax:			1615
+
+	     0: Flags:		0x0217
+		Glyf Index:	754
+		X WOffset:	-270
+		Y WOffset:	-70
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1086: off = 0x0003322C, len = 592
+	  numberOfContours:	4
+	  xMin:			383
+	  yMin:			59
+	  xMax:			681
+	  yMax:			1885
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  20
+	  2:  43
+	  3:  55
+
+	  Length of Instructions:	430
+	00000: NPUSHB      (46):    22     1    20    38    22    39    26    43    35     1 
+	                            53     1     6     8    24    12    25    52    18    24 
+	                            25    33    52   216     2   233     2   250     2     3 
+	                            43    44    19    27    52    22    32    11    16    52 
+	                            25    64    17    30    52    24 
+	00048: PUSHW[1]            -64 
+	00051: PUSHB[4]             11    16    52    22 
+	00056: PUSHW[1]            -64 
+	00059: PUSHB[4]             12    16    52     9 
+	00064: PUSHW[1]            898 
+	00067: NPUSHB      (14):    19    64    38    44    52    15    19    31    19     2 
+	                             0    19     1    19 
+	00083: PUSHW[1]            -64 
+	00086: NPUSHB      (11):     9    11    52    19    19   112    14   128    14     2 
+	                            14 
+	00099: PUSHW[1]            901 
+	00102: NPUSHB      (22):     3    64    29    42    52     3    64     9    14    52 
+	                             3     3    29    24    40    42    43    22    21    33 
+	                            33    29 
+	00126: PUSHW[1]            897 
+	00129: NPUSHB      (20):    35    64    47    49    52    35    64    41    43    52 
+	                            95    35     1     0    35     1    35    35    21    42 
+	00151: PUSHW[1]            898 
+	00154: PUSHB[4]            144    43     1    43 
+	00159: PUSHW[1]            -64 
+	00162: PUSHB[4]             28    30    52    43 
+	00167: PUSHW[1]            -64 
+	00170: NPUSHB      (19):     9    16    52    43    43    15    21     1    21    64 
+	                             9    21    52    21    21    49    44    49     0 
+	00191: PUSHW[3]            878    16   -64 
+	00198: NPUSHB      (15):    20    24    52    16    64    42    45    52   128    16 
+	                             1     0    16     1    16 
+	00215: PUSHW[1]            -64 
+	00218: PUSHB[6]              9    11    52    16    16    12 
+	00225: PUSHW[1]            932 
+	00228: NPUSHB      (19):    48     6     1     6     6    21    24    43    33    33 
+	                             0    31    16    31     2    31    31    43    37 
+	00249: PUSHW[1]            875 
+	00252: NPUSHB      (49):    47    26     1    26    26    22    21    42   175    43 
+	                             1    43    64    11    11    52    43    64     9    11 
+	                            52    43    43    32    21     1    21    21    48    44 
+	                            44    48    49    49    47    46    45    55    53    52 
+	                            51    50     8    54    64    25    27    52    54 
+	00303: PUSHW[1]            892 
+	00306: PUSHB[5]             79    48     1    48     4 
+	00312: PUSHW[1]            340 
+	00315: SCANCTRL   
+	00316: SCANTYPE   
+	00317: MDAP[rd]   
+	00318: DELTAP1    
+	00319: MIRP[nrp0,md,rd,1] 
+	00320: CALL       
+	00321: SLOOP      
+	00322: IP         
+	00323: RTHG       
+	00324: IP         
+	00325: MDAP[rd]   
+	00326: SRP1       
+	00327: IP         
+	00328: MDAP[rd]   
+	00329: SRP1       
+	00330: SHP[rp1,zp0] 
+	00331: RTG        
+	00332: MDAP[rd]   
+	00333: DELTAP1    
+	00334: SHP[rp1,zp0] 
+	00335: MDAP[rd]   
+	00336: CALL       
+	00337: CALL       
+	00338: DELTAP1    
+	00339: ALIGNRP    
+	00340: SRP1       
+	00341: SHP[rp1,zp0] 
+	00342: SHP[rp1,zp0] 
+	00343: MDAP[rd]   
+	00344: DELTAP1    
+	00345: MIRP[srp0,md,rd,1] 
+	00346: SRP1       
+	00347: IP         
+	00348: MDAP[rd]   
+	00349: DELTAP1    
+	00350: SHP[rp1,zp0] 
+	00351: RTHG       
+	00352: MDAP[rd]   
+	00353: SRP1       
+	00354: IP         
+	00355: SRP1       
+	00356: SHP[rp1,zp0] 
+	00357: RTG        
+	00358: MDAP[rd]   
+	00359: DELTAP1    
+	00360: MIRP[srp0,md,rd,1] 
+	00361: SHP[rp2,zp1] 
+	00362: MDAP[rd]   
+	00363: CALL       
+	00364: DELTAP1    
+	00365: DELTAP2    
+	00366: CALL       
+	00367: CALL       
+	00368: MIRP[nrp0,md,rd,1] 
+	00369: SVTCA[y-axis] 
+	00370: MDAP[rd]   
+	00371: MDAP[rd]   
+	00372: SRP1       
+	00373: SHP[rp1,zp0] 
+	00374: MDAP[rd]   
+	00375: CALL       
+	00376: DELTAP1    
+	00377: SHP[rp1,zp0] 
+	00378: MDAP[rd]   
+	00379: CALL       
+	00380: CALL       
+	00381: DELTAP3    
+	00382: MIRP[nrp0,md,rd,1] 
+	00383: SRP1       
+	00384: SHP[rp1,zp0] 
+	00385: MDAP[rd]   
+	00386: DELTAP1    
+	00387: DELTAP3    
+	00388: CALL       
+	00389: CALL       
+	00390: MIRP[nrp0,md,rd,1] 
+	00391: SHP[rp1,zp0] 
+	00392: RUTG       
+	00393: MDAP[rd]   
+	00394: RTG        
+	00395: SRP1       
+	00396: SHP[rp1,zp0] 
+	00397: SRP1       
+	00398: SRP2       
+	00399: IP         
+	00400: IP         
+	00401: SRP1       
+	00402: SHP[rp1,zp0] 
+	00403: MDAP[rd]   
+	00404: CALL       
+	00405: CALL       
+	00406: MIRP[srp0,md,rd,1] 
+	00407: DELTAP2    
+	00408: SHP[rp2,zp1] 
+	00409: MDAP[rd]   
+	00410: CALL       
+	00411: DELTAP1    
+	00412: DELTAP2    
+	00413: CALL       
+	00414: MIRP[nrp0,md,rd,1] 
+	00415: IUP[y]     
+	00416: IUP[x]     
+	00417: SVTCA[x-axis] 
+	00418: CALL       
+	00419: CALL       
+	00420: CALL       
+	00421: SVTCA[y-axis] 
+	00422: CALL       
+	00423: CALL       
+	00424: SVTCA[x-axis] 
+	00425: DELTAP2    
+	00426: CALL       
+	00427: CALL       
+	00428: SVTCA[y-axis] 
+	00429: DELTAP3    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:        XDual         Y-Short         Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:        XDual                 X-Short On
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short X-Short On
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:        XDual         Y-Short         On
+	 44:                              X-Short On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual               Y-Short X-Short On
+	 47:                              X-Short Off
+	 48:  YDual XDual         Y-Short         On
+	 49:  YDual XDual         Y-Short X-Short On
+	 50:                      Y-Short X-Short On
+	 51:        XDual         Y-Short         Off
+	 52:        XDual         Y-Short X-Short On
+	 53:        XDual         Y-Short X-Short Off
+	 54:        XDual         Y-Short         On
+	 55:        XDual                         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   633,  1744)  ->  Abs (   633,  1744)
+	  1: Rel (     0,   -66)  ->  Abs (   633,  1678)
+	  2: Rel (  -104,   -84)  ->  Abs (   529,  1594)
+	  3: Rel (   -52,     0)  ->  Abs (   477,  1594)
+	  4: Rel (   -43,     0)  ->  Abs (   434,  1594)
+	  5: Rel (   -51,    68)  ->  Abs (   383,  1662)
+	  6: Rel (     0,    51)  ->  Abs (   383,  1713)
+	  7: Rel (     0,    67)  ->  Abs (   383,  1780)
+	  8: Rel (    70,   105)  ->  Abs (   453,  1885)
+	  9: Rel (    63,     0)  ->  Abs (   516,  1885)
+	 10: Rel (    55,     0)  ->  Abs (   571,  1885)
+	 11: Rel (    62,   -84)  ->  Abs (   633,  1801)
+	 12: Rel (  -213,   -57)  ->  Abs (   420,  1744)
+	 13: Rel (     0,   -50)  ->  Abs (   420,  1694)
+	 14: Rel (    86,     0)  ->  Abs (   506,  1694)
+	 15: Rel (    73,     0)  ->  Abs (   579,  1694)
+	 16: Rel (     0,    27)  ->  Abs (   579,  1721)
+	 17: Rel (     0,    19)  ->  Abs (   579,  1740)
+	 18: Rel (   -72,    69)  ->  Abs (   507,  1809)
+	 19: Rel (   -36,     0)  ->  Abs (   471,  1809)
+	 20: Rel (   -51,     0)  ->  Abs (   420,  1809)
+	 21: Rel (     1,  -660)  ->  Abs (   421,  1149)
+	 22: Rel (     8,    43)  ->  Abs (   429,  1192)
+	 23: Rel (    46,    34)  ->  Abs (   475,  1226)
+	 24: Rel (    30,    36)  ->  Abs (   505,  1262)
+	 25: Rel (   -98,     6)  ->  Abs (   407,  1268)
+	 26: Rel (     0,    84)  ->  Abs (   407,  1352)
+	 27: Rel (     0,    58)  ->  Abs (   407,  1410)
+	 28: Rel (    78,   112)  ->  Abs (   485,  1522)
+	 29: Rel (    51,     0)  ->  Abs (   536,  1522)
+	 30: Rel (    80,     0)  ->  Abs (   616,  1522)
+	 31: Rel (     0,   -73)  ->  Abs (   616,  1449)
+	 32: Rel (     0,   -24)  ->  Abs (   616,  1425)
+	 33: Rel (   -12,   -24)  ->  Abs (   604,  1401)
+	 34: Rel (   -73,    53)  ->  Abs (   531,  1454)
+	 35: Rel (   -32,     0)  ->  Abs (   499,  1454)
+	 36: Rel (   -51,     0)  ->  Abs (   448,  1454)
+	 37: Rel (     0,   -43)  ->  Abs (   448,  1411)
+	 38: Rel (     0,   -35)  ->  Abs (   448,  1376)
+	 39: Rel (   105,   -65)  ->  Abs (   553,  1311)
+	 40: Rel (    40,     0)  ->  Abs (   593,  1311)
+	 41: Rel (     9,     0)  ->  Abs (   602,  1311)
+	 42: Rel (    79,    22)  ->  Abs (   681,  1333)
+	 43: Rel (     0,   -73)  ->  Abs (   681,  1260)
+	 44: Rel (  -129, -1201)  ->  Abs (   552,    59)
+	 45: Rel (     0,   234)  ->  Abs (   552,   293)
+	 46: Rel (   -19,   246)  ->  Abs (   533,   539)
+	 47: Rel (   -19,   259)  ->  Abs (   514,   798)
+	 48: Rel (     0,   137)  ->  Abs (   514,   935)
+	 49: Rel (   102,   166)  ->  Abs (   616,  1101)
+	 50: Rel (    -3,  -155)  ->  Abs (   613,   946)
+	 51: Rel (     0,  -157)  ->  Abs (   613,   789)
+	 52: Rel (     5,  -119)  ->  Abs (   618,   670)
+	 53: Rel (     8,  -186)  ->  Abs (   626,   484)
+	 54: Rel (     0,   -90)  ->  Abs (   626,   394)
+	 55: Rel (     0,  -293)  ->  Abs (   626,   101)
+
+	Glyph 1087: off = 0x0003347C, len = 626
+	  numberOfContours:	4
+	  xMin:			273
+	  yMin:			59
+	  xMax:			681
+	  yMax:			1942
+
+	EndPoints
+	---------
+	  0:  23
+	  1:  31
+	  2:  54
+	  3:  66
+
+	  Length of Instructions:	435
+	00000: PUSHW[2]             13   -16 
+	00005: NPUSHB      (33):    29    33    52    25    19    19    49    21    50    27 
+	                            54     4    40    20   214    13     2    54    44    19 
+	                            27    52    33    32    11    16    52    36    64    17 
+	                            30    52    35 
+	00040: PUSHW[1]            -64 
+	00043: PUSHB[4]             11    16    52    33 
+	00048: PUSHW[1]            -64 
+	00051: NPUSHB      (23):    12    16    52     1     0    22    22    16     8     8 
+	                            28    64    29    41    52    28    28    18    20     3 
+	                            13     4    24 
+	00076: PUSHW[1]            906 
+	00079: NPUSHB      (25):    16    64    29    50    52    63    16     1    16    64 
+	                            11    26    52    16    16    40    35    51    53    54 
+	                            33    32    44    44    40 
+	00106: PUSHW[1]            897 
+	00109: NPUSHB      (20):    46    64    47    49    52    46    64    41    43    52 
+	                            95    46     1     0    46     1    46    46    32    53 
+	00131: PUSHW[1]            898 
+	00134: PUSHB[4]            144    54     1    54 
+	00139: PUSHW[1]            -64 
+	00142: PUSHB[4]             28    30    52    54 
+	00147: PUSHW[1]            -64 
+	00150: NPUSHB      (41):     9    16    52    54    54    15    32     1    32    64 
+	                             9    21    52    32    32    60    55    60    13    11 
+	                            24    26    20     3    30     0     0     5    16    64 
+	                            34    42    52    16    64    11    28    52    16    16 
+	                            11 
+	00193: PUSHW[1]            876 
+	00196: NPUSHB      (21):    26    64    46    63    52    26    64    29    38    52 
+	                             0    26     1    64    26    80    26     2    26    26 
+	                            30 
+	00219: PUSHW[1]            879 
+	00222: NPUSHB      (16):     5     5    37    35    54    44    44     0    42    16 
+	                            42     2    42    42    54    48 
+	00240: PUSHW[1]            875 
+	00243: NPUSHB      (49):    47    37     1    37    37    33    32    53   175    54 
+	                             1    54    64    11    11    52    54    64     9    11 
+	                            52    54    54    32    32     1    32    32    59    55 
+	                            55    59    60    60    58    57    56    66    64    63 
+	                            62    61     8    65    64    25    27    52    65 
+	00294: PUSHW[1]            892 
+	00297: PUSHB[5]             79    59     1    59     4 
+	00303: PUSHW[1]            340 
+	00306: SCANCTRL   
+	00307: SCANTYPE   
+	00308: MDAP[rd]   
+	00309: DELTAP1    
+	00310: MIRP[nrp0,md,rd,1] 
+	00311: CALL       
+	00312: SLOOP      
+	00313: IP         
+	00314: RTHG       
+	00315: IP         
+	00316: MDAP[rd]   
+	00317: SRP1       
+	00318: IP         
+	00319: MDAP[rd]   
+	00320: SRP1       
+	00321: SHP[rp1,zp0] 
+	00322: RTG        
+	00323: MDAP[rd]   
+	00324: DELTAP1    
+	00325: SHP[rp1,zp0] 
+	00326: MDAP[rd]   
+	00327: CALL       
+	00328: CALL       
+	00329: DELTAP1    
+	00330: ALIGNRP    
+	00331: SRP1       
+	00332: SHP[rp1,zp0] 
+	00333: SHP[rp1,zp0] 
+	00334: MDAP[rd]   
+	00335: DELTAP1    
+	00336: MIRP[srp0,md,rd,1] 
+	00337: SRP1       
+	00338: IP         
+	00339: MDAP[rd]   
+	00340: DELTAP1    
+	00341: SHP[rp1,zp0] 
+	00342: RTHG       
+	00343: MDAP[rd]   
+	00344: SRP1       
+	00345: IP         
+	00346: SRP1       
+	00347: SHP[rp1,zp0] 
+	00348: RTG        
+	00349: MDAP[rd]   
+	00350: MIRP[srp0,md,rd,1] 
+	00351: SHP[rp2,zp1] 
+	00352: MDAP[rd]   
+	00353: DELTAP1    
+	00354: DELTAP1    
+	00355: CALL       
+	00356: CALL       
+	00357: MIRP[srp0,md,rd,1] 
+	00358: SHP[rp2,zp1] 
+	00359: MDAP[rd]   
+	00360: CALL       
+	00361: CALL       
+	00362: SRP1       
+	00363: SHP[rp1,zp0] 
+	00364: MDAP[rd]   
+	00365: SRP1       
+	00366: SHP[rp1,zp0] 
+	00367: SHP[rp1,zp0] 
+	00368: SRP2       
+	00369: IP         
+	00370: SRP1       
+	00371: IP         
+	00372: SVTCA[y-axis] 
+	00373: MDAP[rd]   
+	00374: MDAP[rd]   
+	00375: SRP1       
+	00376: SHP[rp1,zp0] 
+	00377: MDAP[rd]   
+	00378: CALL       
+	00379: DELTAP1    
+	00380: SHP[rp1,zp0] 
+	00381: MDAP[rd]   
+	00382: CALL       
+	00383: CALL       
+	00384: DELTAP3    
+	00385: MIRP[nrp0,md,rd,1] 
+	00386: SRP1       
+	00387: SHP[rp1,zp0] 
+	00388: MDAP[rd]   
+	00389: DELTAP1    
+	00390: DELTAP3    
+	00391: CALL       
+	00392: CALL       
+	00393: MIRP[nrp0,md,rd,1] 
+	00394: SHP[rp1,zp0] 
+	00395: RUTG       
+	00396: MDAP[rd]   
+	00397: RTG        
+	00398: SRP1       
+	00399: SHP[rp1,zp0] 
+	00400: SRP1       
+	00401: SRP2       
+	00402: IP         
+	00403: IP         
+	00404: SRP1       
+	00405: SHP[rp1,zp0] 
+	00406: MDAP[rd]   
+	00407: CALL       
+	00408: DELTAP2    
+	00409: CALL       
+	00410: MIRP[nrp0,md,rd,1] 
+	00411: SLOOP      
+	00412: IP         
+	00413: SHP[rp2,zp1] 
+	00414: MDAP[rd]   
+	00415: CALL       
+	00416: SHP[rp1,zp0] 
+	00417: MDAP[rd]   
+	00418: SRP1       
+	00419: SHP[rp1,zp0] 
+	00420: MDAP[rd]   
+	00421: SHP[rp1,zp0] 
+	00422: SHP[rp1,zp0] 
+	00423: IUP[y]     
+	00424: IUP[x]     
+	00425: SVTCA[x-axis] 
+	00426: CALL       
+	00427: CALL       
+	00428: CALL       
+	00429: SVTCA[y-axis] 
+	00430: CALL       
+	00431: CALL       
+	00432: DELTAP2    
+	00433: DELTAP3    
+	00434: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short On
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual               Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                              X-Short On
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:                      Y-Short X-Short On
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:        XDual         Y-Short         On
+	 49:        XDual         Y-Short         Off
+	 50:        XDual         Y-Short X-Short Off
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:        XDual         Y-Short         On
+	 55:                              X-Short On
+	 56:  YDual XDual         Y-Short         Off
+	 57:  YDual               Y-Short X-Short On
+	 58:                              X-Short Off
+	 59:  YDual XDual         Y-Short         On
+	 60:  YDual XDual         Y-Short X-Short On
+	 61:                      Y-Short X-Short On
+	 62:        XDual         Y-Short         Off
+	 63:        XDual         Y-Short X-Short On
+	 64:        XDual         Y-Short X-Short Off
+	 65:        XDual         Y-Short         On
+	 66:        XDual                         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   273,  1528)  ->  Abs (   273,  1528)
+	  1: Rel (     0,    13)  ->  Abs (   273,  1541)
+	  2: Rel (   142,    64)  ->  Abs (   415,  1605)
+	  3: Rel (    55,    79)  ->  Abs (   470,  1684)
+	  4: Rel (   -62,    39)  ->  Abs (   408,  1723)
+	  5: Rel (     0,    49)  ->  Abs (   408,  1772)
+	  6: Rel (     0,    45)  ->  Abs (   408,  1817)
+	  7: Rel (    88,   125)  ->  Abs (   496,  1942)
+	  8: Rel (    39,     0)  ->  Abs (   535,  1942)
+	  9: Rel (    23,     0)  ->  Abs (   558,  1942)
+	 10: Rel (    32,   -59)  ->  Abs (   590,  1883)
+	 11: Rel (     0,   -35)  ->  Abs (   590,  1848)
+	 12: Rel (     0,   -51)  ->  Abs (   590,  1797)
+	 13: Rel (   -32,   -64)  ->  Abs (   558,  1733)
+	 14: Rel (    49,   -24)  ->  Abs (   607,  1709)
+	 15: Rel (     0,   -27)  ->  Abs (   607,  1682)
+	 16: Rel (     0,   -51)  ->  Abs (   607,  1631)
+	 17: Rel (   -18,     0)  ->  Abs (   589,  1631)
+	 18: Rel (   -36,    15)  ->  Abs (   553,  1646)
+	 19: Rel (   -44,    20)  ->  Abs (   509,  1666)
+	 20: Rel (    -7,     2)  ->  Abs (   502,  1668)
+	 21: Rel (  -119,  -148)  ->  Abs (   383,  1520)
+	 22: Rel (   -79,     0)  ->  Abs (   304,  1520)
+	 23: Rel (   -17,     0)  ->  Abs (   287,  1520)
+	 24: Rel (   240,   229)  ->  Abs (   527,  1749)
+	 25: Rel (    17,    29)  ->  Abs (   544,  1778)
+	 26: Rel (     0,    32)  ->  Abs (   544,  1810)
+	 27: Rel (     0,    62)  ->  Abs (   544,  1872)
+	 28: Rel (   -42,     0)  ->  Abs (   502,  1872)
+	 29: Rel (   -38,     0)  ->  Abs (   464,  1872)
+	 30: Rel (     0,   -50)  ->  Abs (   464,  1822)
+	 31: Rel (     0,   -61)  ->  Abs (   464,  1761)
+	 32: Rel (   -43,  -612)  ->  Abs (   421,  1149)
+	 33: Rel (     8,    43)  ->  Abs (   429,  1192)
+	 34: Rel (    46,    34)  ->  Abs (   475,  1226)
+	 35: Rel (    30,    36)  ->  Abs (   505,  1262)
+	 36: Rel (   -98,     6)  ->  Abs (   407,  1268)
+	 37: Rel (     0,    84)  ->  Abs (   407,  1352)
+	 38: Rel (     0,    58)  ->  Abs (   407,  1410)
+	 39: Rel (    78,   112)  ->  Abs (   485,  1522)
+	 40: Rel (    51,     0)  ->  Abs (   536,  1522)
+	 41: Rel (    80,     0)  ->  Abs (   616,  1522)
+	 42: Rel (     0,   -73)  ->  Abs (   616,  1449)
+	 43: Rel (     0,   -24)  ->  Abs (   616,  1425)
+	 44: Rel (   -12,   -24)  ->  Abs (   604,  1401)
+	 45: Rel (   -73,    53)  ->  Abs (   531,  1454)
+	 46: Rel (   -32,     0)  ->  Abs (   499,  1454)
+	 47: Rel (   -51,     0)  ->  Abs (   448,  1454)
+	 48: Rel (     0,   -43)  ->  Abs (   448,  1411)
+	 49: Rel (     0,   -35)  ->  Abs (   448,  1376)
+	 50: Rel (   105,   -65)  ->  Abs (   553,  1311)
+	 51: Rel (    40,     0)  ->  Abs (   593,  1311)
+	 52: Rel (     9,     0)  ->  Abs (   602,  1311)
+	 53: Rel (    79,    22)  ->  Abs (   681,  1333)
+	 54: Rel (     0,   -73)  ->  Abs (   681,  1260)
+	 55: Rel (  -129, -1201)  ->  Abs (   552,    59)
+	 56: Rel (     0,   234)  ->  Abs (   552,   293)
+	 57: Rel (   -19,   246)  ->  Abs (   533,   539)
+	 58: Rel (   -19,   259)  ->  Abs (   514,   798)
+	 59: Rel (     0,   137)  ->  Abs (   514,   935)
+	 60: Rel (   102,   166)  ->  Abs (   616,  1101)
+	 61: Rel (    -3,  -155)  ->  Abs (   613,   946)
+	 62: Rel (     0,  -157)  ->  Abs (   613,   789)
+	 63: Rel (     5,  -119)  ->  Abs (   618,   670)
+	 64: Rel (     8,  -186)  ->  Abs (   626,   484)
+	 65: Rel (     0,   -90)  ->  Abs (   626,   394)
+	 66: Rel (     0,  -293)  ->  Abs (   626,   101)
+
+	Glyph 1088: off = 0x000336EE, len = 814
+	  numberOfContours:	4
+	  xMin:			238
+	  yMin:			59
+	  xMax:			681
+	  yMax:			1939
+
+	EndPoints
+	---------
+	  0:  40
+	  1:  48
+	  2:  71
+	  3:  83
+
+	  Length of Instructions:	582
+	00000: PUSHB[4]             29    37     1    21 
+	00005: PUSHW[1]            -16 
+	00008: PUSHB[4]             29    44    52    38 
+	00013: PUSHW[1]            -64 
+	00016: PUSHB[4]             29    44    52    32 
+	00021: PUSHW[1]            -44 
+	00024: NPUSHB      (44):    28    45    52    22    21    89    37   154    37     3 
+	                            27    38    22    48     2     5    38     1    71    22 
+	                             1    21    66    21    67    25    71     3    71    44 
+	                            19    27    52    50    32    11    16    52    53    64 
+	                            17    30    52    52 
+	00070: PUSHW[1]            -64 
+	00073: PUSHB[4]             11    16    52    50 
+	00078: PUSHW[1]            -64 
+	00081: NPUSHB      (11):    12    16    52     3     1     0     3    20    39    39 
+	                            20 
+	00094: PUSHW[1]            -64 
+	00097: NPUSHB      (14):    13    16    52    20    20    35    11    64    29    36 
+	                            52    11    11    16 
+	00113: PUSHW[1]            936 
+	00116: NPUSHB      (13):     7     7    45    35    27    27    45    45    37    22 
+	                            32     3    41 
+	00131: PUSHW[1]            904 
+	00134: NPUSHB      (30):    35    64    50    54    52    35    64    29    42    52 
+	                            15    35     1    35    64    13    27    52    35    35 
+	                            57    52    68    70    71    50    49    61    61    57 
+	00166: PUSHW[1]            897 
+	00169: NPUSHB      (20):    63    64    47    49    52    63    64    41    43    52 
+	                            95    63     1     0    63     1    63    63    49    70 
+	00191: PUSHW[1]            898 
+	00194: PUSHB[4]            144    71     1    71 
+	00199: PUSHW[1]            -64 
+	00202: PUSHB[4]             28    30    52    71 
+	00207: PUSHW[1]            -64 
+	00210: NPUSHB      (56):     9    16    52    71    71    15    49     1    49    64 
+	                             9    21    52    49    49    77    72    77    32    30 
+	                            41    43    37    22    47     3     0    20    18    35 
+	                            34    64    25    27    52    34    64    11    24    52 
+	                            34    34    30     0     0    16    13     1    13    64 
+	                            13    16    52    13    13     5 
+	00268: PUSHW[3]            882    18   -64 
+	00275: PUSHB[7]             54    83    52    18    18     1    18 
+	00283: PUSHW[1]            -64 
+	00286: NPUSHB      (12):    13    32    52    18    18    24    32    30    48    30 
+	                             2    30 
+	00300: PUSHW[1]            878 
+	00303: NPUSHB      (23):    43    64    46    63    52    43    64    29    38    52 
+	                             0    43    16    43     2    64    43    80    43     2 
+	                            43    43    47 
+	00328: PUSHW[1]            878 
+	00331: NPUSHB      (16):    24    24    54    52    71    61    61     0    59    16 
+	                            59     2    59    59    71    65 
+	00349: PUSHW[1]            875 
+	00352: NPUSHB      (49):    47    54     1    54    54    50    49    70   175    71 
+	                             1    71    64    11    11    52    71    64     9    11 
+	                            52    71    71    32    49     1    49    49    76    72 
+	                            72    76    77    77    75    74    73    83    81    80 
+	                            79    78     8    82    64    25    27    52    82 
+	00403: PUSHW[1]            892 
+	00406: PUSHB[5]             79    76     1    76     4 
+	00412: PUSHW[1]            340 
+	00415: SCANCTRL   
+	00416: SCANTYPE   
+	00417: MDAP[rd]   
+	00418: DELTAP1    
+	00419: MIRP[nrp0,md,rd,1] 
+	00420: CALL       
+	00421: SLOOP      
+	00422: IP         
+	00423: RTHG       
+	00424: IP         
+	00425: MDAP[rd]   
+	00426: SRP1       
+	00427: IP         
+	00428: MDAP[rd]   
+	00429: SRP1       
+	00430: SHP[rp1,zp0] 
+	00431: RTG        
+	00432: MDAP[rd]   
+	00433: DELTAP1    
+	00434: SHP[rp1,zp0] 
+	00435: MDAP[rd]   
+	00436: CALL       
+	00437: CALL       
+	00438: DELTAP1    
+	00439: ALIGNRP    
+	00440: SRP1       
+	00441: SHP[rp1,zp0] 
+	00442: SHP[rp1,zp0] 
+	00443: MDAP[rd]   
+	00444: DELTAP1    
+	00445: MIRP[srp0,md,rd,1] 
+	00446: SRP1       
+	00447: IP         
+	00448: MDAP[rd]   
+	00449: DELTAP1    
+	00450: SHP[rp1,zp0] 
+	00451: RTHG       
+	00452: MDAP[rd]   
+	00453: SRP1       
+	00454: IP         
+	00455: SRP1       
+	00456: SHP[rp1,zp0] 
+	00457: RTG        
+	00458: MDAP[rd]   
+	00459: MIRP[srp0,md,rd,1] 
+	00460: SHP[rp2,zp1] 
+	00461: MDAP[rd]   
+	00462: DELTAP1    
+	00463: DELTAP1    
+	00464: CALL       
+	00465: CALL       
+	00466: MIRP[nrp0,md,rd,1] 
+	00467: DELTAP1    
+	00468: SRP1       
+	00469: SHP[rp1,zp0] 
+	00470: MDAP[rd]   
+	00471: CALL       
+	00472: DELTAP3    
+	00473: CALL       
+	00474: MIRP[srp0,md,rd,1] 
+	00475: SHP[rp2,zp1] 
+	00476: MDAP[rd]   
+	00477: CALL       
+	00478: DELTAP3    
+	00479: SHP[rp2,zp1] 
+	00480: MDAP[rd]   
+	00481: SRP1       
+	00482: SHP[rp1,zp0] 
+	00483: MDAP[rd]   
+	00484: CALL       
+	00485: CALL       
+	00486: SHP[rp1,zp0] 
+	00487: SRP1       
+	00488: IP         
+	00489: SRP1       
+	00490: IP         
+	00491: SRP1       
+	00492: SHP[rp1,zp0] 
+	00493: SHP[rp1,zp0] 
+	00494: SRP2       
+	00495: IP         
+	00496: SRP1       
+	00497: IP         
+	00498: SVTCA[y-axis] 
+	00499: MDAP[rd]   
+	00500: MDAP[rd]   
+	00501: SRP1       
+	00502: SHP[rp1,zp0] 
+	00503: MDAP[rd]   
+	00504: CALL       
+	00505: DELTAP1    
+	00506: SHP[rp1,zp0] 
+	00507: MDAP[rd]   
+	00508: CALL       
+	00509: CALL       
+	00510: DELTAP3    
+	00511: MIRP[nrp0,md,rd,1] 
+	00512: SRP1       
+	00513: SHP[rp1,zp0] 
+	00514: MDAP[rd]   
+	00515: DELTAP1    
+	00516: DELTAP3    
+	00517: CALL       
+	00518: CALL       
+	00519: MIRP[nrp0,md,rd,1] 
+	00520: SHP[rp1,zp0] 
+	00521: RUTG       
+	00522: MDAP[rd]   
+	00523: RTG        
+	00524: SRP1       
+	00525: SHP[rp1,zp0] 
+	00526: SRP1       
+	00527: SRP2       
+	00528: IP         
+	00529: IP         
+	00530: SRP1       
+	00531: SHP[rp1,zp0] 
+	00532: MDAP[rd]   
+	00533: CALL       
+	00534: DELTAP2    
+	00535: CALL       
+	00536: CALL       
+	00537: MIRP[nrp0,md,rd,1] 
+	00538: SLOOP      
+	00539: IP         
+	00540: SHP[rp2,zp1] 
+	00541: MDAP[rd]   
+	00542: SHP[rp1,zp0] 
+	00543: MDAP[rd]   
+	00544: SRP1       
+	00545: SRP2       
+	00546: IP         
+	00547: MDAP[rd]   
+	00548: MIRP[nrp0,md,rd,1] 
+	00549: SHP[rp1,zp0] 
+	00550: MDAP[rd]   
+	00551: CALL       
+	00552: SRP1       
+	00553: SHP[rp1,zp0] 
+	00554: MDAP[rd]   
+	00555: CALL       
+	00556: SHP[rp1,zp0] 
+	00557: MDAP[rd]   
+	00558: SRP2       
+	00559: SLOOP      
+	00560: IP         
+	00561: IUP[y]     
+	00562: IUP[x]     
+	00563: SVTCA[x-axis] 
+	00564: CALL       
+	00565: CALL       
+	00566: CALL       
+	00567: SVTCA[y-axis] 
+	00568: CALL       
+	00569: CALL       
+	00570: SVTCA[y-axis] 
+	00571: DELTAP3    
+	00572: SVTCA[y-axis] 
+	00573: DELTAP1    
+	00574: DELTAP2    
+	00575: DELTAP3    
+	00576: DELTAP3    
+	00577: CALL       
+	00578: CALL       
+	00579: CALL       
+	00580: SVTCA[x-axis] 
+	00581: DELTAP3    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:                      Y-Short X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual               Y-Short X-Short On
+	 38:                      Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short Off
+	 47:        XDual         Y-Short         On
+	 48:        XDual         Y-Short         Off
+	 49:                              X-Short On
+	 50:  YDual XDual         Y-Short X-Short On
+	 51:  YDual XDual         Y-Short X-Short Off
+	 52:  YDual XDual         Y-Short X-Short On
+	 53:  YDual               Y-Short X-Short Off
+	 54:  YDual XDual         Y-Short         On
+	 55:  YDual XDual         Y-Short         Off
+	 56:  YDual XDual         Y-Short X-Short Off
+	 57:  YDual XDual                 X-Short On
+	 58:  YDual XDual                 X-Short Off
+	 59:        XDual         Y-Short         On
+	 60:        XDual         Y-Short         Off
+	 61:                      Y-Short X-Short On
+	 62:  YDual               Y-Short X-Short Off
+	 63:  YDual                       X-Short On
+	 64:  YDual                       X-Short Off
+	 65:        XDual         Y-Short         On
+	 66:        XDual         Y-Short         Off
+	 67:        XDual         Y-Short X-Short Off
+	 68:  YDual XDual                 X-Short On
+	 69:  YDual XDual                 X-Short Off
+	 70:  YDual XDual         Y-Short X-Short On
+	 71:        XDual         Y-Short         On
+	 72:                              X-Short On
+	 73:  YDual XDual         Y-Short         Off
+	 74:  YDual               Y-Short X-Short On
+	 75:                              X-Short Off
+	 76:  YDual XDual         Y-Short         On
+	 77:  YDual XDual         Y-Short X-Short On
+	 78:                      Y-Short X-Short On
+	 79:        XDual         Y-Short         Off
+	 80:        XDual         Y-Short X-Short On
+	 81:        XDual         Y-Short X-Short Off
+	 82:        XDual         Y-Short         On
+	 83:        XDual                         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   268,  1521)  ->  Abs (   268,  1521)
+	  1: Rel (     0,    12)  ->  Abs (   268,  1533)
+	  2: Rel (     7,     4)  ->  Abs (   275,  1537)
+	  3: Rel (    24,    17)  ->  Abs (   299,  1554)
+	  4: Rel (    24,    37)  ->  Abs (   323,  1591)
+	  5: Rel (     0,    59)  ->  Abs (   323,  1650)
+	  6: Rel (     0,    37)  ->  Abs (   323,  1687)
+	  7: Rel (   -22,     0)  ->  Abs (   301,  1687)
+	  8: Rel (    -9,     0)  ->  Abs (   292,  1687)
+	  9: Rel (   -21,   -19)  ->  Abs (   271,  1668)
+	 10: Rel (   -21,   -18)  ->  Abs (   250,  1650)
+	 11: Rel (    -4,     0)  ->  Abs (   246,  1650)
+	 12: Rel (    -8,     0)  ->  Abs (   238,  1650)
+	 13: Rel (     0,     8)  ->  Abs (   238,  1658)
+	 14: Rel (     0,    20)  ->  Abs (   238,  1678)
+	 15: Rel (    69,    66)  ->  Abs (   307,  1744)
+	 16: Rel (    29,     0)  ->  Abs (   336,  1744)
+	 17: Rel (    43,     0)  ->  Abs (   379,  1744)
+	 18: Rel (     0,   -52)  ->  Abs (   379,  1692)
+	 19: Rel (     0,   -45)  ->  Abs (   379,  1647)
+	 20: Rel (   -37,   -75)  ->  Abs (   342,  1572)
+	 21: Rel (    74,    34)  ->  Abs (   416,  1606)
+	 22: Rel (    53,    75)  ->  Abs (   469,  1681)
+	 23: Rel (   -58,    30)  ->  Abs (   411,  1711)
+	 24: Rel (     0,    62)  ->  Abs (   411,  1773)
+	 25: Rel (     0,    50)  ->  Abs (   411,  1823)
+	 26: Rel (    92,   116)  ->  Abs (   503,  1939)
+	 27: Rel (    35,     0)  ->  Abs (   538,  1939)
+	 28: Rel (    24,     0)  ->  Abs (   562,  1939)
+	 29: Rel (    32,   -56)  ->  Abs (   594,  1883)
+	 30: Rel (     0,   -36)  ->  Abs (   594,  1847)
+	 31: Rel (     0,   -62)  ->  Abs (   594,  1785)
+	 32: Rel (   -37,   -55)  ->  Abs (   557,  1730)
+	 33: Rel (    47,   -24)  ->  Abs (   604,  1706)
+	 34: Rel (     0,   -25)  ->  Abs (   604,  1681)
+	 35: Rel (    -4,   -47)  ->  Abs (   600,  1634)
+	 36: Rel (   -34,     0)  ->  Abs (   566,  1634)
+	 37: Rel (   -67,    31)  ->  Abs (   499,  1665)
+	 38: Rel (  -107,  -150)  ->  Abs (   392,  1515)
+	 39: Rel (   -95,     0)  ->  Abs (   297,  1515)
+	 40: Rel (   -19,     0)  ->  Abs (   278,  1515)
+	 41: Rel (   246,   231)  ->  Abs (   524,  1746)
+	 42: Rel (    18,    32)  ->  Abs (   542,  1778)
+	 43: Rel (     0,    32)  ->  Abs (   542,  1810)
+	 44: Rel (     0,    59)  ->  Abs (   542,  1869)
+	 45: Rel (   -43,     0)  ->  Abs (   499,  1869)
+	 46: Rel (   -36,     0)  ->  Abs (   463,  1869)
+	 47: Rel (     0,   -47)  ->  Abs (   463,  1822)
+	 48: Rel (     0,   -55)  ->  Abs (   463,  1767)
+	 49: Rel (   -42,  -618)  ->  Abs (   421,  1149)
+	 50: Rel (     8,    43)  ->  Abs (   429,  1192)
+	 51: Rel (    46,    34)  ->  Abs (   475,  1226)
+	 52: Rel (    30,    36)  ->  Abs (   505,  1262)
+	 53: Rel (   -98,     6)  ->  Abs (   407,  1268)
+	 54: Rel (     0,    84)  ->  Abs (   407,  1352)
+	 55: Rel (     0,    58)  ->  Abs (   407,  1410)
+	 56: Rel (    78,   112)  ->  Abs (   485,  1522)
+	 57: Rel (    51,     0)  ->  Abs (   536,  1522)
+	 58: Rel (    80,     0)  ->  Abs (   616,  1522)
+	 59: Rel (     0,   -73)  ->  Abs (   616,  1449)
+	 60: Rel (     0,   -24)  ->  Abs (   616,  1425)
+	 61: Rel (   -12,   -24)  ->  Abs (   604,  1401)
+	 62: Rel (   -73,    53)  ->  Abs (   531,  1454)
+	 63: Rel (   -32,     0)  ->  Abs (   499,  1454)
+	 64: Rel (   -51,     0)  ->  Abs (   448,  1454)
+	 65: Rel (     0,   -43)  ->  Abs (   448,  1411)
+	 66: Rel (     0,   -35)  ->  Abs (   448,  1376)
+	 67: Rel (   105,   -65)  ->  Abs (   553,  1311)
+	 68: Rel (    40,     0)  ->  Abs (   593,  1311)
+	 69: Rel (     9,     0)  ->  Abs (   602,  1311)
+	 70: Rel (    79,    22)  ->  Abs (   681,  1333)
+	 71: Rel (     0,   -73)  ->  Abs (   681,  1260)
+	 72: Rel (  -129, -1201)  ->  Abs (   552,    59)
+	 73: Rel (     0,   234)  ->  Abs (   552,   293)
+	 74: Rel (   -19,   246)  ->  Abs (   533,   539)
+	 75: Rel (   -19,   259)  ->  Abs (   514,   798)
+	 76: Rel (     0,   137)  ->  Abs (   514,   935)
+	 77: Rel (   102,   166)  ->  Abs (   616,  1101)
+	 78: Rel (    -3,  -155)  ->  Abs (   613,   946)
+	 79: Rel (     0,  -157)  ->  Abs (   613,   789)
+	 80: Rel (     5,  -119)  ->  Abs (   618,   670)
+	 81: Rel (     8,  -186)  ->  Abs (   626,   484)
+	 82: Rel (     0,   -90)  ->  Abs (   626,   394)
+	 83: Rel (     0,  -293)  ->  Abs (   626,   101)
+
+	Glyph 1089: off = 0x00033A1C, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			185
+	  yMin:			1212
+	  xMax:			476
+	  yMax:			1611
+
+	     0: Flags:		0x0217
+		Glyf Index:	841
+		X WOffset:	-270
+		Y WOffset:	-70
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1090: off = 0x00033A2E, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			188
+	  yMin:			1216
+	  xMax:			479
+	  yMax:			1770
+
+	     0: Flags:		0x0217
+		Glyf Index:	786
+		X WOffset:	-270
+		Y WOffset:	-70
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1091: off = 0x00033A40, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			188
+	  yMin:			1183
+	  xMax:			479
+	  yMax:			1632
+
+	     0: Flags:		0x0217
+		Glyf Index:	843
+		X WOffset:	-270
+		Y WOffset:	-70
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1092: off = 0x00033A52, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			199
+	  yMin:			1184
+	  xMax:			490
+	  yMax:			1793
+
+	     0: Flags:		0x0217
+		Glyf Index:	840
+		X WOffset:	-270
+		Y WOffset:	-70
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1093: off = 0x00033A64, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			154
+	  yMin:			1212
+	  xMax:			488
+	  yMax:			1877
+
+	     0: Flags:		0x0217
+		Glyf Index:	842
+		X WOffset:	-270
+		Y WOffset:	-70
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1094: off = 0x00033A76, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			117
+	  yMin:			1214
+	  xMax:			484
+	  yMax:			1878
+
+	     0: Flags:		0x0317
+		Glyf Index:	839
+		X WOffset:	-270
+		Y WOffset:	-70
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     2     1     0   191    13     1    13     1     0   223 
+	                            35     1    35 
+	00015: SVTCA[y-axis] 
+	00016: SRP1       
+	00017: DELTAP3    
+	00018: SHC[rp1,zp0] 
+	00019: SHC[rp1,zp0] 
+	00020: SVTCA[x-axis] 
+	00021: SRP1       
+	00022: DELTAP1    
+	00023: SHC[rp1,zp0] 
+	00024: SHC[rp1,zp0] 
+	00025: SHC[rp1,zp0] 
+
+	Glyph 1095: off = 0x00033AA4, len = 32
+	  numberOfContours:	-1  (Composite)
+	  xMin:			390
+	  yMin:			-561
+	  xMax:			664
+	  yMax:			-188
+
+	     0: Flags:		0x0317
+		Glyf Index:	775
+		X WOffset:	-75
+		Y WOffset:	-1791
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              0     1     0 
+	00004: PUSHW[2]            953    41 
+	00009: SVTCA[y-axis] 
+	00010: CALL       
+
+	Glyph 1096: off = 0x00033AC4, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			349
+	  yMin:			-337
+	  xMax:			624
+	  yMax:			-177
+
+	     0: Flags:		0x0317
+		Glyf Index:	756
+		X WOffset:	-127
+		Y WOffset:	-1596
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              0     4 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (13):    11    14    52     0     4    16     4    48     4   112 
+	                             4     4     4 
+	00021: SVTCA[y-axis] 
+	00022: SRP1       
+	00023: DELTAP1    
+	00024: CALL       
+	00025: SHC[rp1,zp0] 
+
+	Glyph 1097: off = 0x00033AF2, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			349
+	  yMin:			-494
+	  xMax:			625
+	  yMax:			-174
+
+	     0: Flags:		0x0317
+		Glyf Index:	753
+		X WOffset:	-127
+		Y WOffset:	-1753
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1     0     5 
+	00004: PUSHW[1]            -64 
+	00007: NPUSHB      (11):    11    16    52    16     5   144     5   160     5     3 
+	                             5 
+	00020: PUSHW[1]            -64 
+	00023: NPUSHB      (12):    11    14    52     0     5     1     0     5    32     5 
+	                             2     5 
+	00037: SVTCA[y-axis] 
+	00038: SRP1       
+	00039: DELTAP1    
+	00040: DELTAP1    
+	00041: CALL       
+	00042: DELTAP1    
+	00043: CALL       
+	00044: SHC[rp1,zp0] 
+	00045: SHC[rp1,zp0] 
+
+	Glyph 1098: off = 0x00033B34, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			446
+	  yMin:			-635
+	  xMax:			746
+	  yMax:			1161
+
+	     0: Flags:		0x0236
+		Glyf Index:	909
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	788
+		X BOffset:	-67
+		Y BOffset:	74
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              2     1    20 
+	00004: PUSHW[1]            -64 
+	00007: PUSHB[4]             17    19    52    20 
+	00012: PUSHW[1]            -64 
+	00015: PUSHB[4]             11    16    52    20 
+	00020: SVTCA[y-axis] 
+	00021: SRP1       
+	00022: CALL       
+	00023: CALL       
+	00024: SHC[rp1,zp0] 
+	00025: SHC[rp1,zp0] 
+
+	Glyph 1099: off = 0x00033B66, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			446
+	  yMin:			-794
+	  xMax:			738
+	  yMax:			1161
+
+	     0: Flags:		0x0236
+		Glyf Index:	909
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	789
+		X BOffset:	-69
+		Y BOffset:	74
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              3     2     1    20 
+	00005: PUSHW[1]            -64 
+	00008: PUSHB[4]             17    19    52    20 
+	00013: PUSHW[1]            -64 
+	00016: PUSHB[4]             11    16    52    20 
+	00021: SVTCA[y-axis] 
+	00022: SRP1       
+	00023: CALL       
+	00024: CALL       
+	00025: SHC[rp1,zp0] 
+	00026: SHC[rp1,zp0] 
+	00027: SHC[rp1,zp0] 
+
+	Glyph 1100: off = 0x00033B9A, len = 164
+	  numberOfContours:	1
+	  xMin:			444
+	  yMin:			674
+	  xMax:			873
+	  yMax:			902
+
+	EndPoints
+	---------
+	  0:  7
+
+	  Length of Instructions:	124
+	00000: PUSHW[2]              4   -14 
+	00005: PUSHB[4]            118   125    52     0 
+	00010: PUSHW[1]            -24 
+	00013: PUSHB[4]             79    79    52     0 
+	00018: PUSHW[1]            -24 
+	00021: NPUSHB      (20):    55    60    52    22     0     1     0     4     1     3 
+	                             6     6     7     5     2     2     3     7     7     1 
+	00043: PUSHW[1]            924 
+	00046: NPUSHB      (14):     3     5     5     3     7     5     5     4     6     1 
+	                             3     3     2     6 
+	00062: PUSHW[3]            923     2   -64 
+	00069: PUSHB[4]             12    22    52     2 
+	00074: PUSHW[1]            923 
+	00077: PUSHB[2]              0     4 
+	00080: MDAP[rd]   
+	00081: SHP[rp1,zp0] 
+	00082: MIRP[nrp0,md,rd,1] 
+	00083: CALL       
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: RTDG       
+	00086: SRP2       
+	00087: IP         
+	00088: MDAP[rd]   
+	00089: ALIGNRP    
+	00090: SRP1       
+	00091: SRP2       
+	00092: IP         
+	00093: MDAP[rd]   
+	00094: ALIGNRP    
+	00095: RTG        
+	00096: SVTCA[y-axis] 
+	00097: MDAP[rd]   
+	00098: SHP[rp1,zp0] 
+	00099: MDAP[rd]   
+	00100: SRP0       
+	00101: MIRP[srp0,md,rd,1] 
+	00102: SHP[rp2,zp1] 
+	00103: MDAP[rd]   
+	00104: RTDG       
+	00105: SRP1       
+	00106: IP         
+	00107: MDAP[rd]   
+	00108: SRP1       
+	00109: SRP2       
+	00110: IP         
+	00111: MDAP[rd]   
+	00112: RTG        
+	00113: SRP1       
+	00114: SRP2       
+	00115: IP         
+	00116: IP         
+	00117: IUP[y]     
+	00118: IUP[x]     
+	00119: SVTCA[y-axis] 
+	00120: DELTAP3    
+	00121: CALL       
+	00122: CALL       
+	00123: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short On
+	  7:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   662,   783)  ->  Abs (   662,   783)
+	  1: Rel (  -108,  -109)  ->  Abs (   554,   674)
+	  2: Rel (  -110,   111)  ->  Abs (   444,   785)
+	  3: Rel (   110,   109)  ->  Abs (   554,   894)
+	  4: Rel (   100,  -100)  ->  Abs (   654,   794)
+	  5: Rel (   109,   108)  ->  Abs (   763,   902)
+	  6: Rel (   110,  -109)  ->  Abs (   873,   793)
+	  7: Rel (  -110,  -111)  ->  Abs (   763,   682)
+
+	Glyph 1101: off = 0x00033C3E, len = 218
+	  numberOfContours:	2
+	  xMin:			410
+	  yMin:			659
+	  xMax:			839
+	  yMax:			1090
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  11
+
+	  Length of Instructions:	163
+	00000: PUSHW[2]              8   -14 
+	00005: PUSHB[4]            118   125    52     4 
+	00010: PUSHW[1]            -24 
+	00013: NPUSHB      (12):    55    60    52    22     4     1     0     0     1     2 
+	                             2     3 
+	00027: PUSHW[1]            924 
+	00030: NPUSHB      (27):     1    64    25   100    52     1    64    14    22    52 
+	                             1     1     9     4     8     5     7    10    10    11 
+	                             9     6     6     7    11    11     5 
+	00059: PUSHW[1]            924 
+	00062: PUSHB[8]              7     9     9     7     1     3     3     0 
+	00071: PUSHW[1]            923 
+	00074: NPUSHB      (13):     2     2     7    11     9     9     8    10     5     7 
+	                             7     6    10 
+	00089: PUSHW[3]            923     6   923 
+	00096: PUSHB[2]              4     8 
+	00099: MDAP[rd]   
+	00100: SHP[rp1,zp0] 
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: MIRP[nrp0,md,rd,1] 
+	00103: RTDG       
+	00104: SRP2       
+	00105: IP         
+	00106: MDAP[rd]   
+	00107: ALIGNRP    
+	00108: SRP1       
+	00109: SRP2       
+	00110: IP         
+	00111: MDAP[rd]   
+	00112: ALIGNRP    
+	00113: RTG        
+	00114: SRP1       
+	00115: SHP[rp1,zp0] 
+	00116: MDAP[rd]   
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: RTDG       
+	00119: IP         
+	00120: MDAP[rd]   
+	00121: RTG        
+	00122: ALIGNRP    
+	00123: SVTCA[y-axis] 
+	00124: MDAP[rd]   
+	00125: SHP[rp1,zp0] 
+	00126: MDAP[rd]   
+	00127: SRP0       
+	00128: MIRP[srp0,md,rd,1] 
+	00129: SHP[rp2,zp1] 
+	00130: MDAP[rd]   
+	00131: RTDG       
+	00132: SRP1       
+	00133: IP         
+	00134: MDAP[rd]   
+	00135: SRP1       
+	00136: SRP2       
+	00137: IP         
+	00138: MDAP[rd]   
+	00139: RTG        
+	00140: SRP1       
+	00141: SRP2       
+	00142: IP         
+	00143: IP         
+	00144: SRP1       
+	00145: SHP[rp1,zp0] 
+	00146: MDAP[rd]   
+	00147: CALL       
+	00148: CALL       
+	00149: MIRP[srp0,md,rd,1] 
+	00150: RTDG       
+	00151: IP         
+	00152: MDAP[rd]   
+	00153: SRP1       
+	00154: IP         
+	00155: MDAP[rd]   
+	00156: RTG        
+	00157: IUP[y]     
+	00158: IUP[x]     
+	00159: SVTCA[y-axis] 
+	00160: DELTAP3    
+	00161: CALL       
+	00162: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:        XDual                 X-Short On
+	  5:                      Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short On
+	 11:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   734,   981)  ->  Abs (   734,   981)
+	  1: Rel (  -110,  -110)  ->  Abs (   624,   871)
+	  2: Rel (  -110,   110)  ->  Abs (   514,   981)
+	  3: Rel (   110,   109)  ->  Abs (   624,  1090)
+	  4: Rel (     4,  -322)  ->  Abs (   628,   768)
+	  5: Rel (  -108,  -109)  ->  Abs (   520,   659)
+	  6: Rel (  -110,   111)  ->  Abs (   410,   770)
+	  7: Rel (   110,   109)  ->  Abs (   520,   879)
+	  8: Rel (   100,  -100)  ->  Abs (   620,   779)
+	  9: Rel (   109,   108)  ->  Abs (   729,   887)
+	 10: Rel (   110,  -109)  ->  Abs (   839,   778)
+	 11: Rel (  -110,  -111)  ->  Abs (   729,   667)
+
+	Glyph 1102: off = 0x00033D18, len = 192
+	  numberOfContours:	2
+	  xMin:			479
+	  yMin:			-561
+	  xMax:			908
+	  yMax:			-131
+
+	EndPoints
+	---------
+	  0:  7
+	  1:  11
+
+	  Length of Instructions:	139
+	00000: NPUSHB      (14):   230     0     1     0     4     1     3     6     6     7 
+	                             5     2     2     3 
+	00016: PUSHW[1]            924 
+	00019: PUSHB[3]              1     1     5 
+	00023: PUSHW[1]            924 
+	00026: NPUSHB      (13):     7    64    14    22    52     7     7     8     8     9 
+	                            10    10    11 
+	00041: PUSHW[1]            924 
+	00044: PUSHB[8]              0     9     1     9     9    11    11     8 
+	00053: PUSHW[1]            923 
+	00056: NPUSHB      (13):    10    10     1     7     5     5     4     6     1     3 
+	                             3     2     6 
+	00071: PUSHW[3]            923     2   923 
+	00078: PUSHB[2]              0     4 
+	00081: MDAP[rd]   
+	00082: SHP[rp1,zp0] 
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: RTDG       
+	00086: SRP2       
+	00087: IP         
+	00088: MDAP[rd]   
+	00089: ALIGNRP    
+	00090: SRP1       
+	00091: SRP2       
+	00092: IP         
+	00093: MDAP[rd]   
+	00094: ALIGNRP    
+	00095: RTG        
+	00096: SRP1       
+	00097: SHP[rp1,zp0] 
+	00098: MDAP[rd]   
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: RTDG       
+	00101: IP         
+	00102: MDAP[rd]   
+	00103: RTG        
+	00104: ALIGNRP    
+	00105: SVTCA[y-axis] 
+	00106: MDAP[rd]   
+	00107: DELTAP1    
+	00108: MIRP[srp0,md,rd,1] 
+	00109: RTDG       
+	00110: IP         
+	00111: MDAP[rd]   
+	00112: SRP1       
+	00113: IP         
+	00114: MDAP[rd]   
+	00115: RTG        
+	00116: SHP[rp2,zp1] 
+	00117: MDAP[rd]   
+	00118: CALL       
+	00119: MIRP[nrp0,md,rd,1] 
+	00120: SHP[rp1,zp0] 
+	00121: MDAP[rd]   
+	00122: MIRP[srp0,md,rd,1] 
+	00123: RTDG       
+	00124: IP         
+	00125: MDAP[rd]   
+	00126: SRP1       
+	00127: SRP2       
+	00128: IP         
+	00129: MDAP[rd]   
+	00130: RTG        
+	00131: SRP1       
+	00132: SRP2       
+	00133: IP         
+	00134: IP         
+	00135: IUP[y]     
+	00136: IUP[x]     
+	00137: SVTCA[y-axis] 
+	00138: DELTAP1    
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:                      Y-Short X-Short On
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:        XDual         Y-Short X-Short On
+	  7:                      Y-Short X-Short On
+	  8:        XDual         Y-Short X-Short On
+	  9:                      Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   697,  -249)  ->  Abs (   697,  -249)
+	  1: Rel (  -108,  -110)  ->  Abs (   589,  -359)
+	  2: Rel (  -110,   111)  ->  Abs (   479,  -248)
+	  3: Rel (   110,   109)  ->  Abs (   589,  -139)
+	  4: Rel (   100,   -99)  ->  Abs (   689,  -238)
+	  5: Rel (   109,   107)  ->  Abs (   798,  -131)
+	  6: Rel (   110,  -109)  ->  Abs (   908,  -240)
+	  7: Rel (  -110,  -111)  ->  Abs (   798,  -351)
+	  8: Rel (     5,  -100)  ->  Abs (   803,  -451)
+	  9: Rel (  -110,  -110)  ->  Abs (   693,  -561)
+	 10: Rel (  -110,   110)  ->  Abs (   583,  -451)
+	 11: Rel (   110,   109)  ->  Abs (   693,  -342)
+
+	Glyph 1103: off = 0x00033DD8, len = 542
+	  numberOfContours:	3
+	  xMin:			0
+	  yMin:			-424
+	  xMax:			1187
+	  yMax:			682
+
+	EndPoints
+	---------
+	  0:  47
+	  1:  55
+	  2:  64
+
+	  Length of Instructions:	355
+	00000: NPUSHB      (17):   128    48   128    49   128    50     3    64    48    64 
+	                            49    64    50   139    28     4    42 
+	00019: PUSHW[1]            -44 
+	00022: NPUSHB       (9):     9    12    52     0    44    10    14    52    28 
+	00033: PUSHW[1]            -64 
+	00036: NPUSHB      (20):    18    22    52     0     1     1    28   231     3   231 
+	                            55     4    41    12    56    12   150    23     3    49 
+	00058: PUSHW[1]            -44 
+	00061: PUSHB[4]             15    19    52    49 
+	00066: PUSHW[1]            -44 
+	00069: PUSHB[4]             23    25    52    48 
+	00074: PUSHW[1]            -64 
+	00077: NPUSHB      (14):    20    25    52    28    32    22    25    52    62    22 
+	                            54    49     2     0 
+	00093: PUSHW[1]            -24 
+	00096: PUSHB[6]             10    17    52    36    36    37 
+	00103: PUSHW[3]            916    24   907 
+	00110: NPUSHB       (9):    16    53    32    53     2    53    53    17     5 
+	00121: PUSHW[1]            907 
+	00124: NPUSHB      (19):    47    60    63    60     2    60    60     0    56    12 
+	                            10     4    48    21    29    14    18    17    31 
+	00145: PUSHW[7]            907    46   858    18   907    17   858 
+	00160: NPUSHB      (13):    14    12    29     8     0     2    56    62    10    58 
+	                             8    29    21 
+	00175: PUSHW[1]            884 
+	00178: PUSHB[4]             48    48    58    26 
+	00183: PUSHW[3]            878    51   -64 
+	00190: NPUSHB      (21):     9    11    52    31    51     1   159    51     1    96 
+	                            51   112    51   240    51     3    51    51    39    17 
+	                             2 
+	00213: PUSHW[1]            884 
+	00216: PUSHB[8]              0    62    80    62     2    62    62    58 
+	00225: PUSHW[1]            880 
+	00228: NPUSHB      (23):    16     8    32     8    48     8   240     8     4     8 
+	                             8    39    17    37    37    36    64    10    19    52 
+	                            36    36    34 
+	00253: PUSHW[1]            885 
+	00256: PUSHB[4]             39    18    17     5 
+	00261: PUSHW[1]            340 
+	00264: SCANCTRL   
+	00265: SCANTYPE   
+	00266: MDAP[rd]   
+	00267: ALIGNRP    
+	00268: MDAP[rd]   
+	00269: MIRP[srp0,md,rd,1] 
+	00270: SHP[rp2,zp1] 
+	00271: MDAP[rd]   
+	00272: CALL       
+	00273: SHP[rp1,zp0] 
+	00274: RTHG       
+	00275: MDAP[rd]   
+	00276: RTG        
+	00277: SRP1       
+	00278: SRP2       
+	00279: IP         
+	00280: MDAP[rd]   
+	00281: DELTAP1    
+	00282: MIRP[srp0,md,rd,1] 
+	00283: SHP[rp2,zp1] 
+	00284: MDAP[rd]   
+	00285: DELTAP1    
+	00286: MIRP[nrp0,md,rd,1] 
+	00287: SRP1       
+	00288: SRP2       
+	00289: IP         
+	00290: MDAP[rd]   
+	00291: DELTAP1    
+	00292: DELTAP1    
+	00293: DELTAP2    
+	00294: CALL       
+	00295: MIRP[nrp0,md,rd,1] 
+	00296: SRP1       
+	00297: SHP[rp1,zp0] 
+	00298: MDAP[rd]   
+	00299: MIRP[nrp0,md,rd,1] 
+	00300: SHP[rp1,zp0] 
+	00301: SRP1       
+	00302: SRP2       
+	00303: IP         
+	00304: SRP1       
+	00305: IP         
+	00306: SRP2       
+	00307: IP         
+	00308: SRP1       
+	00309: IP         
+	00310: SHP[rp1,zp0] 
+	00311: SHP[rp1,zp0] 
+	00312: SVTCA[y-axis] 
+	00313: MIAP[rd+ci] 
+	00314: MIRP[nrp0,md,rd,1] 
+	00315: MIAP[rd+ci] 
+	00316: MIRP[nrp0,md,rd,1] 
+	00317: SRP1       
+	00318: SRP2       
+	00319: IP         
+	00320: IP         
+	00321: SHP[rp2,zp1] 
+	00322: SHP[rp2,zp1] 
+	00323: SLOOP      
+	00324: SHP[rp1,zp0] 
+	00325: SHP[rp1,zp0] 
+	00326: MDAP[rd]   
+	00327: DELTAP1    
+	00328: MIRP[nrp0,md,rd,1] 
+	00329: SRP1       
+	00330: SHP[rp1,zp0] 
+	00331: MDAP[rd]   
+	00332: DELTAP1    
+	00333: MIRP[nrp0,md,rd,1] 
+	00334: MIAP[rd+ci] 
+	00335: SHP[rp1,zp0] 
+	00336: MDAP[rd]   
+	00337: CALL       
+	00338: IUP[y]     
+	00339: IUP[x]     
+	00340: SVTCA[y-axis] 
+	00341: DELTAP1    
+	00342: CALL       
+	00343: CALL       
+	00344: CALL       
+	00345: CALL       
+	00346: SVTCA[x-axis] 
+	00347: DELTAP1    
+	00348: DELTAP1    
+	00349: CALL       
+	00350: CALL       
+	00351: CALL       
+	00352: SVTCA[y-axis] 
+	00353: DELTAP2    
+	00354: DELTAP2    
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short On
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:        XDual                 X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:                      Y-Short X-Short Off
+	 29:                      Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual               Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short On
+	 38:        XDual         Y-Short X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:                      Y-Short X-Short On
+	 42:                      Y-Short X-Short Off
+	 43:                      Y-Short X-Short Off
+	 44:                      Y-Short X-Short On
+	 45:                      Y-Short X-Short Off
+	 46:                      Y-Short X-Short On
+	 47:                      Y-Short X-Short Off
+	 48:  YDual               Y-Short         On
+	 49:  YDual XDual         Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         Off
+	 53:  YDual                       X-Short On
+	 54:  YDual                       X-Short Off
+	 55:                      Y-Short X-Short Off
+	 56:                              X-Short On
+	 57:                      Y-Short X-Short Off
+	 58:        XDual         Y-Short         On
+	 59:        XDual         Y-Short         Off
+	 60:  YDual XDual                 X-Short On
+	 61:  YDual XDual                 X-Short Off
+	 62:  YDual XDual         Y-Short         On
+	 63:  YDual XDual         Y-Short         Off
+	 64:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   600,   -23)  ->  Abs (   600,   -23)
+	  1: Rel (    78,   -74)  ->  Abs (   678,   -97)
+	  2: Rel (     0,   -57)  ->  Abs (   678,  -154)
+	  3: Rel (     0,   -98)  ->  Abs (   678,  -252)
+	  4: Rel (  -123,  -172)  ->  Abs (   555,  -424)
+	  5: Rel (   -70,     0)  ->  Abs (   485,  -424)
+	  6: Rel (   -76,     0)  ->  Abs (   409,  -424)
+	  7: Rel (   -93,   167)  ->  Abs (   316,  -257)
+	  8: Rel (    -1,   110)  ->  Abs (   315,  -147)
+	  9: Rel (     0,    33)  ->  Abs (   315,  -114)
+	 10: Rel (    13,    44)  ->  Abs (   328,   -70)
+	 11: Rel (   -43,   -23)  ->  Abs (   285,   -93)
+	 12: Rel (   -68,   -16)  ->  Abs (   217,  -109)
+	 13: Rel (     7,    57)  ->  Abs (   224,   -52)
+	 14: Rel (    34,    81)  ->  Abs (   258,    29)
+	 15: Rel (   -80,   -29)  ->  Abs (   178,     0)
+	 16: Rel (  -135,     0)  ->  Abs (    43,     0)
+	 17: Rel (   -43,     0)  ->  Abs (     0,     0)
+	 18: Rel (     0,   123)  ->  Abs (     0,   123)
+	 19: Rel (   102,     0)  ->  Abs (   102,   123)
+	 20: Rel (   178,     0)  ->  Abs (   280,   123)
+	 21: Rel (    58,    31)  ->  Abs (   338,   154)
+	 22: Rel (   108,   212)  ->  Abs (   446,   366)
+	 23: Rel (   215,   281)  ->  Abs (   661,   647)
+	 24: Rel (    56,     0)  ->  Abs (   717,   647)
+	 25: Rel (    78,     0)  ->  Abs (   795,   647)
+	 26: Rel (     0,  -119)  ->  Abs (   795,   528)
+	 27: Rel (     0,  -166)  ->  Abs (   795,   362)
+	 28: Rel (   -87,  -172)  ->  Abs (   708,   190)
+	 29: Rel (  -192,  -108)  ->  Abs (   516,    82)
+	 30: Rel (   131,    45)  ->  Abs (   647,   127)
+	 31: Rel (   239,     0)  ->  Abs (   886,   127)
+	 32: Rel (    72,     0)  ->  Abs (   958,   127)
+	 33: Rel (   149,    60)  ->  Abs (  1107,   187)
+	 34: Rel (     0,    33)  ->  Abs (  1107,   220)
+	 35: Rel (     0,   178)  ->  Abs (  1107,   398)
+	 36: Rel (  -104,   114)  ->  Abs (  1003,   512)
+	 37: Rel (    68,   170)  ->  Abs (  1071,   682)
+	 38: Rel (   116,  -174)  ->  Abs (  1187,   508)
+	 39: Rel (     0,  -192)  ->  Abs (  1187,   316)
+	 40: Rel (     0,   -75)  ->  Abs (  1187,   241)
+	 41: Rel (   -36,   -79)  ->  Abs (  1151,   162)
+	 42: Rel (   -28,   -62)  ->  Abs (  1123,   100)
+	 43: Rel (   -64,   -72)  ->  Abs (  1059,    28)
+	 44: Rel (   -35,   -15)  ->  Abs (  1024,    13)
+	 45: Rel (   -27,   -12)  ->  Abs (   997,     1)
+	 46: Rel (   -91,    -1)  ->  Abs (   906,     0)
+	 47: Rel (  -180,    -3)  ->  Abs (   726,    -3)
+	 48: Rel (  -310,   169)  ->  Abs (   416,   166)
+	 49: Rel (   130,    29)  ->  Abs (   546,   195)
+	 50: Rel (   195,   205)  ->  Abs (   741,   400)
+	 51: Rel (     0,    49)  ->  Abs (   741,   449)
+	 52: Rel (     0,    75)  ->  Abs (   741,   524)
+	 53: Rel (   -43,     0)  ->  Abs (   698,   524)
+	 54: Rel (   -52,     0)  ->  Abs (   646,   524)
+	 55: Rel (   -95,   -98)  ->  Abs (   551,   426)
+	 56: Rel (  -156,  -444)  ->  Abs (   395,   -18)
+	 57: Rel (   -19,   -76)  ->  Abs (   376,   -94)
+	 58: Rel (     0,   -56)  ->  Abs (   376,  -150)
+	 59: Rel (     0,  -149)  ->  Abs (   376,  -299)
+	 60: Rel (   126,     0)  ->  Abs (   502,  -299)
+	 61: Rel (   100,     0)  ->  Abs (   602,  -299)
+	 62: Rel (     0,    78)  ->  Abs (   602,  -221)
+	 63: Rel (     0,    57)  ->  Abs (   602,  -164)
+	 64: Rel (  -143,   141)  ->  Abs (   459,   -23)
+
+	Glyph 1104: off = 0x00033FF6, len = 230
+	  numberOfContours:	1
+	  xMin:			37
+	  yMin:			0
+	  xMax:			1184
+	  yMax:			682
+
+	EndPoints
+	---------
+	  0:  28
+
+	  Length of Instructions:	141
+	00000: NPUSHB      (48):   132    26   149    26   165    26   191    24     4    44 
+	                             5    60     5    75     5   128    16   160    16   176 
+	                            16   214     0     7     2    28    18    28   119    16 
+	                             3    89     5   201    20   200    28     3    88     5 
+	                             1     9     9     3   175    24     1    24 
+	00050: NPUSHW       (9):   914    25   916    18    17   907     2     3   858 
+	00070: NPUSHB      (15):    11    11    15    25    25    22    24    64    11    16 
+	                            52    24    24    22    15 
+	00087: PUSHW[6]            883     6    22   885    27   951 
+	00100: PUSHB[2]             30     4 
+	00103: SCANTYPE   
+	00104: SRP0       
+	00105: MIRP[srp0,nmd,rd,2] 
+	00106: MIRP[nrp0,md,rd,1] 
+	00107: MDAP[rd]   
+	00108: MIRP[nrp0,md,rd,1] 
+	00109: SRP1       
+	00110: SHP[rp1,zp0] 
+	00111: MDAP[rd]   
+	00112: CALL       
+	00113: RTHG       
+	00114: SRP2       
+	00115: IP         
+	00116: MDAP[rd]   
+	00117: SRP1       
+	00118: SHP[rp1,zp0] 
+	00119: RTG        
+	00120: MDAP[rd]   
+	00121: SVTCA[y-axis] 
+	00122: MIAP[rd+ci] 
+	00123: ALIGNRP    
+	00124: MIRP[srp0,md,rd,1] 
+	00125: ALIGNRP    
+	00126: MIAP[rd+ci] 
+	00127: MIRP[nrp0,md,rd,1] 
+	00128: DELTAP1    
+	00129: SRP2       
+	00130: IP         
+	00131: MDAP[rd]   
+	00132: IUP[y]     
+	00133: IUP[x]     
+	00134: SVTCA[x-axis] 
+	00135: DELTAP2    
+	00136: DELTAP1    
+	00137: DELTAP1    
+	00138: DELTAP1    
+	00139: SVTCA[y-axis] 
+	00140: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                               On
+	  4:  YDual                               Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short On
+	 14:                      Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:  YDual                               On
+	 18:  YDual                               On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1001,     8)  ->  Abs (  1001,     8)
+	  1: Rel (   -70,    -8)  ->  Abs (   931,     0)
+	  2: Rel (  -183,     0)  ->  Abs (   748,     0)
+	  3: Rel (  -265,     0)  ->  Abs (   483,     0)
+	  4: Rel (  -267,     0)  ->  Abs (   216,     0)
+	  5: Rel (  -179,   102)  ->  Abs (    37,   102)
+	  6: Rel (     0,   103)  ->  Abs (    37,   205)
+	  7: Rel (     0,   109)  ->  Abs (    37,   314)
+	  8: Rel (   100,   202)  ->  Abs (   137,   516)
+	  9: Rel (    25,     0)  ->  Abs (   162,   516)
+	 10: Rel (     9,     0)  ->  Abs (   171,   516)
+	 11: Rel (     0,   -12)  ->  Abs (   171,   504)
+	 12: Rel (     0,    -9)  ->  Abs (   171,   495)
+	 13: Rel (   -13,   -25)  ->  Abs (   158,   470)
+	 14: Rel (   -47,   -91)  ->  Abs (   111,   379)
+	 15: Rel (     0,   -60)  ->  Abs (   111,   319)
+	 16: Rel (     0,  -196)  ->  Abs (   111,   123)
+	 17: Rel (   362,     0)  ->  Abs (   473,   123)
+	 18: Rel (   401,     0)  ->  Abs (   874,   123)
+	 19: Rel (    51,     0)  ->  Abs (   925,   123)
+	 20: Rel (   120,    39)  ->  Abs (  1045,   162)
+	 21: Rel (    59,    42)  ->  Abs (  1104,   204)
+	 22: Rel (     0,    23)  ->  Abs (  1104,   227)
+	 23: Rel (     0,   165)  ->  Abs (  1104,   392)
+	 24: Rel (  -103,   118)  ->  Abs (  1001,   510)
+	 25: Rel (    66,   172)  ->  Abs (  1067,   682)
+	 26: Rel (   117,  -195)  ->  Abs (  1184,   487)
+	 27: Rel (     0,  -145)  ->  Abs (  1184,   342)
+	 28: Rel (     0,  -227)  ->  Abs (  1184,   115)
+
+	Glyph 1105: off = 0x000340DC, len = 252
+	  numberOfContours:	1
+	  xMin:			37
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			671
+
+	EndPoints
+	---------
+	  0:  33
+
+	  Length of Instructions:	151
+	00000: PUSHB[6]            132    32   148    32     2    21 
+	00007: PUSHW[1]            -64 
+	00010: NPUSHB      (40):    16    21    52    43    10    60    10    74    10    90 
+	                            10   229    31   246    31     6   180    32   196    21 
+	                           196    32     3   118    32   165    32     2     6    31 
+	                             1     4    22    14    14    29     8    28    28    29 
+	00052: PUSHW[3]            917     0   907 
+	00059: PUSHB[3]              1    23    22 
+	00063: PUSHW[4]            907     7     8   858 
+	00072: NPUSHB      (10):    26    29   224     4   240     4     2     4     4    28 
+	00084: PUSHW[1]            885 
+	00087: NPUSHB      (11):   143    29     1    29    29     0    16    16     1     0 
+	                            20 
+	00100: PUSHW[1]            883 
+	00103: PUSHB[2]             11     4 
+	00106: SCANTYPE   
+	00107: MDAP[rd]   
+	00108: MIRP[nrp0,md,rd,1] 
+	00109: MDAP[rd]   
+	00110: ALIGNRP    
+	00111: SHP[rp2,zp1] 
+	00112: MDAP[rd]   
+	00113: SRP1       
+	00114: SHP[rp1,zp0] 
+	00115: RTHG       
+	00116: MDAP[rd]   
+	00117: DELTAP1    
+	00118: MIRP[nrp0,nmd,rd,0] 
+	00119: SHP[rp1,zp0] 
+	00120: MDAP[rd]   
+	00121: DELTAP1    
+	00122: SRP1       
+	00123: IP         
+	00124: SVTCA[y-axis] 
+	00125: RTG        
+	00126: MIAP[rd+ci] 
+	00127: ALIGNRP    
+	00128: MIRP[srp0,md,rd,1] 
+	00129: ALIGNRP    
+	00130: MDAP[rd]   
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: MIAP[rd+ci] 
+	00133: SHP[rp1,zp0] 
+	00134: MDAP[rd]   
+	00135: SRP1       
+	00136: SRP2       
+	00137: IP         
+	00138: MDAP[rd]   
+	00139: SRP1       
+	00140: SHP[rp1,zp0] 
+	00141: IUP[y]     
+	00142: IUP[x]     
+	00143: SVTCA[x-axis] 
+	00144: DELTAP2    
+	00145: DELTAP1    
+	00146: DELTAP1    
+	00147: DELTAP1    
+	00148: CALL       
+	00149: SVTCA[y-axis] 
+	00150: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual               Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                               On
+	  9:  YDual                               Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:  YDual                               On
+	 23:  YDual                               On
+	 24:  YDual XDual                 X-Short Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual               Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:        XDual Rep-  3 Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,   123)  ->  Abs (  1229,   123)
+	  1: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	  2: Rel (  -103,     0)  ->  Abs (  1126,     0)
+	  3: Rel (   -90,    90)  ->  Abs (  1036,    90)
+	  4: Rel (   -36,   120)  ->  Abs (  1000,   210)
+	  5: Rel (   -18,   -70)  ->  Abs (   982,   140)
+	  6: Rel (  -143,  -140)  ->  Abs (   839,     0)
+	  7: Rel (   -77,     0)  ->  Abs (   762,     0)
+	  8: Rel (  -279,     0)  ->  Abs (   483,     0)
+	  9: Rel (  -267,     0)  ->  Abs (   216,     0)
+	 10: Rel (  -179,   102)  ->  Abs (    37,   102)
+	 11: Rel (     0,   103)  ->  Abs (    37,   205)
+	 12: Rel (     0,   109)  ->  Abs (    37,   314)
+	 13: Rel (   100,   202)  ->  Abs (   137,   516)
+	 14: Rel (    25,     0)  ->  Abs (   162,   516)
+	 15: Rel (     9,     0)  ->  Abs (   171,   516)
+	 16: Rel (     0,   -12)  ->  Abs (   171,   504)
+	 17: Rel (     0,    -9)  ->  Abs (   171,   495)
+	 18: Rel (   -13,   -25)  ->  Abs (   158,   470)
+	 19: Rel (   -47,   -91)  ->  Abs (   111,   379)
+	 20: Rel (     0,   -60)  ->  Abs (   111,   319)
+	 21: Rel (     0,  -196)  ->  Abs (   111,   123)
+	 22: Rel (   362,     0)  ->  Abs (   473,   123)
+	 23: Rel (   279,     0)  ->  Abs (   752,   123)
+	 24: Rel (    86,     0)  ->  Abs (   838,   123)
+	 25: Rel (   102,    84)  ->  Abs (   940,   207)
+	 26: Rel (     0,    56)  ->  Abs (   940,   263)
+	 27: Rel (     0,   132)  ->  Abs (   940,   395)
+	 28: Rel (   -66,   132)  ->  Abs (   874,   527)
+	 29: Rel (    82,   144)  ->  Abs (   956,   671)
+	 30: Rel (    64,  -148)  ->  Abs (  1020,   523)
+	 31: Rel (     1,  -208)  ->  Abs (  1021,   315)
+	 32: Rel (    48,  -129)  ->  Abs (  1069,   186)
+	 33: Rel (    92,   -63)  ->  Abs (  1161,   123)
+
+	Glyph 1106: off = 0x000341D8, len = 148
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1187
+	  yMax:			682
+
+	EndPoints
+	---------
+	  0:  13
+
+	  Length of Instructions:	100
+	00000: NPUSHB      (15):   131     9   148     9   165     9     3   225    12   246 
+	                             4   246    12     3    12 
+	00017: PUSHW[1]            -64 
+	00020: NPUSHB      (10):     9    19    52     5    12     1   175     7     1     7 
+	00032: PUSHW[6]            914     8   916     1     2   907 
+	00045: NPUSHB      (14):    13    13     1    14     8     8     7    64    10    16 
+	                            52     7     7     5 
+	00061: PUSHW[3]            885    10   951 
+	00068: PUSHB[2]             15     5 
+	00071: SCANTYPE   
+	00072: SRP0       
+	00073: MIRP[srp0,nmd,rd,2] 
+	00074: MIRP[srp0,md,rd,1] 
+	00075: SHP[rp2,zp1] 
+	00076: MDAP[rd]   
+	00077: CALL       
+	00078: RTHG       
+	00079: IP         
+	00080: MDAP[rd]   
+	00081: SRP0       
+	00082: ALIGNRP    
+	00083: SVTCA[y-axis] 
+	00084: ALIGNRP    
+	00085: RTG        
+	00086: SRP0       
+	00087: MIRP[srp0,md,rd,1] 
+	00088: ALIGNRP    
+	00089: MIAP[rd+ci] 
+	00090: MIRP[nrp0,md,rd,1] 
+	00091: DELTAP1    
+	00092: IUP[y]     
+	00093: IUP[x]     
+	00094: SVTCA[x-axis] 
+	00095: DELTAP2    
+	00096: CALL       
+	00097: DELTAP1    
+	00098: SVTCA[y-axis] 
+	00099: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual XDual                         On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:  YDual XDual                 X-Short Off
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (     0,     0)  ->  Abs (     0,     0)
+	  1: Rel (     0,   123)  ->  Abs (     0,   123)
+	  2: Rel (   885,     0)  ->  Abs (   885,   123)
+	  3: Rel (    71,     0)  ->  Abs (   956,   123)
+	  4: Rel (   151,    64)  ->  Abs (  1107,   187)
+	  5: Rel (     0,    33)  ->  Abs (  1107,   220)
+	  6: Rel (     0,   178)  ->  Abs (  1107,   398)
+	  7: Rel (  -104,   114)  ->  Abs (  1003,   512)
+	  8: Rel (    68,   170)  ->  Abs (  1071,   682)
+	  9: Rel (   116,  -174)  ->  Abs (  1187,   508)
+	 10: Rel (     0,  -192)  ->  Abs (  1187,   316)
+	 11: Rel (     0,  -102)  ->  Abs (  1187,   214)
+	 12: Rel (  -130,  -214)  ->  Abs (  1057,     0)
+	 13: Rel (   -93,     0)  ->  Abs (   964,     0)
+
+	Glyph 1107: off = 0x0003426C, len = 180
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			673
+
+	EndPoints
+	---------
+	  0:  23
+
+	  Length of Instructions:	104
+	00000: NPUSHB      (17):   199    20   215    20     2   246    20     1   113    20 
+	                           230    20     2     5    16    16    17 
+	00019: PUSHW[1]            917 
+	00022: PUSHB[5]             23    22    22    10    11 
+	00028: PUSHW[1]            907 
+	00031: PUSHB[3]              8     0     1 
+	00035: PUSHW[4]            858     8     9   858 
+	00044: NPUSHB      (16):    14    16    17     5     5    17    16    16    17    17 
+	                             9    23     0    10     9     5 
+	00062: SCANTYPE   
+	00063: MDAP[rd]   
+	00064: ALIGNRP    
+	00065: MDAP[rd]   
+	00066: ALIGNRP    
+	00067: RTHG       
+	00068: SRP2       
+	00069: IP         
+	00070: MDAP[rd]   
+	00071: SHP[rp1,zp0] 
+	00072: RTG        
+	00073: MDAP[rd]   
+	00074: SRP1       
+	00075: SHP[rp1,zp0] 
+	00076: RTHG       
+	00077: MDAP[rd]   
+	00078: SRP1       
+	00079: SRP2       
+	00080: IP         
+	00081: SVTCA[y-axis] 
+	00082: RTG        
+	00083: MIAP[rd+ci] 
+	00084: ALIGNRP    
+	00085: MIAP[rd+ci] 
+	00086: ALIGNRP    
+	00087: SRP0       
+	00088: MIRP[srp0,md,rd,1] 
+	00089: ALIGNRP    
+	00090: ALIGNRP    
+	00091: SRP0       
+	00092: ALIGNRP    
+	00093: MIAP[rd+ci] 
+	00094: SHP[rp1,zp0] 
+	00095: MDAP[rd]   
+	00096: SHP[rp2,zp1] 
+	00097: IUP[y]     
+	00098: IUP[x]     
+	00099: SVTCA[y-axis] 
+	00100: DELTAP1    
+	00101: DELTAP1    
+	00102: SVTCA[x-axis] 
+	00103: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                               On
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual                               On
+	 12:  YDual XDual                 X-Short Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,     0)  ->  Abs (  1229,     0)
+	  1: Rel (   -76,     0)  ->  Abs (  1153,     0)
+	  2: Rel (  -108,     0)  ->  Abs (  1045,     0)
+	  3: Rel (  -145,    24)  ->  Abs (   900,    24)
+	  4: Rel (   -99,   107)  ->  Abs (   801,   131)
+	  5: Rel (   -37,    82)  ->  Abs (   764,   213)
+	  6: Rel (   -21,   -72)  ->  Abs (   743,   141)
+	  7: Rel (  -138,  -141)  ->  Abs (   605,     0)
+	  8: Rel (   -64,     0)  ->  Abs (   541,     0)
+	  9: Rel (  -541,     0)  ->  Abs (     0,     0)
+	 10: Rel (     0,   123)  ->  Abs (     0,   123)
+	 11: Rel (   526,     0)  ->  Abs (   526,   123)
+	 12: Rel (    64,     0)  ->  Abs (   590,   123)
+	 13: Rel (   114,    79)  ->  Abs (   704,   202)
+	 14: Rel (     0,    68)  ->  Abs (   704,   270)
+	 15: Rel (     0,   107)  ->  Abs (   704,   377)
+	 16: Rel (   -64,   152)  ->  Abs (   640,   529)
+	 17: Rel (    83,   144)  ->  Abs (   723,   673)
+	 18: Rel (    63,  -172)  ->  Abs (   786,   501)
+	 19: Rel (     0,   -96)  ->  Abs (   786,   405)
+	 20: Rel (     0,  -127)  ->  Abs (   786,   278)
+	 21: Rel (   138,  -155)  ->  Abs (   924,   123)
+	 22: Rel (   123,     0)  ->  Abs (  1047,   123)
+	 23: Rel (   182,     0)  ->  Abs (  1229,   123)
+
+	Glyph 1108: off = 0x00034320, len = 330
+	  numberOfContours:	2
+	  xMin:			11
+	  yMin:			-7
+	  xMax:			1209
+	  yMax:			801
+
+	EndPoints
+	---------
+	  0:  36
+	  1:  45
+
+	  Length of Instructions:	198
+	00000: NPUSHB      (54):   178    29     1    38    44    17    21    52    58    18 
+	                            75    18    90    18   179    13   201    33     5     5 
+	                            13    37    13    43    18    54    13     4   168    33 
+	                           185    37   200    37     3   151    29   153    33   167 
+	                            29     3     6    40     1    22    22     8    16     0 
+	                            15     2     1     2 
+	00056: PUSHW[1]            908 
+	00059: NPUSHB      (25):    15    44    31    44     2    31    44    79    44     2 
+	                            79    44    95    44   176    44     3    44    64     9 
+	                            11    52    44    44    39 
+	00086: NPUSHW      (11):   908     8   918    32    31   907    15    16   859     5 
+	                           881 
+	00110: NPUSHB      (18):   191    42   207    42     2    42    64     9    16    52 
+	                            42    42    37     0    35    24    24    28 
+	00130: NPUSHW       (9):   885    19    35   883    11   950    47     4   340 
+	00150: SCANCTRL   
+	00151: SCANTYPE   
+	00152: SRP0       
+	00153: MIRP[srp0,nmd,rd,2] 
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: MDAP[rd]   
+	00156: MIRP[srp0,md,rd,1] 
+	00157: SHP[rp2,zp1] 
+	00158: MDAP[rd]   
+	00159: SRP1       
+	00160: SHP[rp1,zp0] 
+	00161: SHP[rp1,zp0] 
+	00162: SHP[rp1,zp0] 
+	00163: MDAP[rd]   
+	00164: CALL       
+	00165: DELTAP1    
+	00166: MIRP[nrp0,md,rd,1] 
+	00167: SVTCA[y-axis] 
+	00168: MIAP[rd+ci] 
+	00169: ALIGNRP    
+	00170: MIRP[srp0,md,rd,1] 
+	00171: ALIGNRP    
+	00172: MIAP[rd+ci] 
+	00173: MIRP[srp0,md,rd,1] 
+	00174: SHP[rp2,zp1] 
+	00175: MDAP[rd]   
+	00176: CALL       
+	00177: DELTAP1    
+	00178: DELTAP2    
+	00179: DELTAP3    
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: DELTAP2    
+	00182: IP         
+	00183: SRP1       
+	00184: SRP2       
+	00185: IP         
+	00186: MDAP[rd]   
+	00187: IUP[y]     
+	00188: IUP[x]     
+	00189: SVTCA[x-axis] 
+	00190: DELTAP2    
+	00191: DELTAP1    
+	00192: DELTAP1    
+	00193: DELTAP1    
+	00194: DELTAP1    
+	00195: CALL       
+	00196: SVTCA[y-axis] 
+	00197: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:        XDual                 X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual                 X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                               On
+	 17:  YDual                               Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short On
+	 27:                      Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:  YDual                               On
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual                               Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual               Y-Short X-Short On
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:                      Y-Short X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1129,   351)  ->  Abs (  1129,   351)
+	  1: Rel (   -75,   -53)  ->  Abs (  1054,   298)
+	  2: Rel (   -77,     0)  ->  Abs (   977,   298)
+	  3: Rel (   -70,     0)  ->  Abs (   907,   298)
+	  4: Rel (   -99,    48)  ->  Abs (   808,   346)
+	  5: Rel (     0,    44)  ->  Abs (   808,   390)
+	  6: Rel (     0,   125)  ->  Abs (   808,   515)
+	  7: Rel (   122,   286)  ->  Abs (   930,   801)
+	  8: Rel (    87,     0)  ->  Abs (  1017,   801)
+	  9: Rel (    87,     0)  ->  Abs (  1104,   801)
+	 10: Rel (   105,  -268)  ->  Abs (  1209,   533)
+	 11: Rel (     0,  -143)  ->  Abs (  1209,   390)
+	 12: Rel (     0,  -143)  ->  Abs (  1209,   247)
+	 13: Rel (   -64,  -180)  ->  Abs (  1145,    67)
+	 14: Rel (  -157,   -74)  ->  Abs (   988,    -7)
+	 15: Rel (  -248,     0)  ->  Abs (   740,    -7)
+	 16: Rel (  -270,     0)  ->  Abs (   470,    -7)
+	 17: Rel (  -289,     0)  ->  Abs (   181,    -7)
+	 18: Rel (  -170,   112)  ->  Abs (    11,   105)
+	 19: Rel (     0,   103)  ->  Abs (    11,   208)
+	 20: Rel (     0,    85)  ->  Abs (    11,   293)
+	 21: Rel (    89,   213)  ->  Abs (   100,   506)
+	 22: Rel (    41,     0)  ->  Abs (   141,   506)
+	 23: Rel (    12,     0)  ->  Abs (   153,   506)
+	 24: Rel (     0,   -18)  ->  Abs (   153,   488)
+	 25: Rel (     0,   -16)  ->  Abs (   153,   472)
+	 26: Rel (   -31,   -65)  ->  Abs (   122,   407)
+	 27: Rel (   -31,   -64)  ->  Abs (    91,   343)
+	 28: Rel (     0,   -37)  ->  Abs (    91,   306)
+	 29: Rel (     0,   -93)  ->  Abs (    91,   213)
+	 30: Rel (   172,   -97)  ->  Abs (   263,   116)
+	 31: Rel (   270,     0)  ->  Abs (   533,   116)
+	 32: Rel (   171,     0)  ->  Abs (   704,   116)
+	 33: Rel (   315,     0)  ->  Abs (  1019,   116)
+	 34: Rel (   117,    95)  ->  Abs (  1136,   211)
+	 35: Rel (     0,    77)  ->  Abs (  1136,   288)
+	 36: Rel (     0,    23)  ->  Abs (  1136,   311)
+	 37: Rel (   -40,   156)  ->  Abs (  1096,   467)
+	 38: Rel (   -42,   209)  ->  Abs (  1054,   676)
+	 39: Rel (   -67,     0)  ->  Abs (   987,   676)
+	 40: Rel (   -48,     0)  ->  Abs (   939,   676)
+	 41: Rel (   -65,  -133)  ->  Abs (   874,   543)
+	 42: Rel (     0,   -64)  ->  Abs (   874,   479)
+	 43: Rel (     0,   -55)  ->  Abs (   874,   424)
+	 44: Rel (    91,     0)  ->  Abs (   965,   424)
+	 45: Rel (    45,     0)  ->  Abs (  1010,   424)
+
+	Glyph 1109: off = 0x0003446A, len = 326
+	  numberOfContours:	2
+	  xMin:			6
+	  yMin:			-68
+	  xMax:			1229
+	  yMax:			648
+
+	EndPoints
+	---------
+	  0:  36
+	  1:  47
+
+	  Length of Instructions:	188
+	00000: NPUSHB      (40):    61     8    73     7    75     8   106     7   135    45 
+	                           149    45     6    34     8    11    14    52   139    24 
+	                             1    25    25     1   166    19   182    19     2     2 
+	                            16    12    12    29     5    46    24    21     2    36 
+	00042: PUSHW[5]            907     0   858    40   907 
+	00053: PUSHB[4]             47    29     1    29 
+	00058: PUSHW[3]            919    21   909 
+	00065: NPUSHB      (17):     5    64    15    18    52     5    24    43    34    32 
+	                             2     2    43    46    46    37    26 
+	00084: PUSHW[1]            886 
+	00087: NPUSHB      (13):   143    43   159    43     2    15    43    31    43     2 
+	                            43    43    37 
+	00102: PUSHW[3]            887    32   -64 
+	00109: NPUSHB       (9):     9    17    52    32    32     0    14    14    18 
+	00120: PUSHW[1]            884 
+	00123: PUSHB[4]              9    36     0     4 
+	00128: PUSHW[1]            340 
+	00131: SCANCTRL   
+	00132: SCANTYPE   
+	00133: MDAP[rd]   
+	00134: ALIGNRP    
+	00135: MDAP[rd]   
+	00136: MIRP[srp0,md,rd,1] 
+	00137: SHP[rp2,zp1] 
+	00138: MDAP[rd]   
+	00139: SRP1       
+	00140: SHP[rp1,zp0] 
+	00141: MDAP[rd]   
+	00142: CALL       
+	00143: MIRP[srp0,md,rd,1] 
+	00144: SHP[rp2,zp1] 
+	00145: MDAP[rd]   
+	00146: DELTAP1    
+	00147: DELTAP1    
+	00148: MIRP[nrp0,md,rd,1] 
+	00149: SRP2       
+	00150: IP         
+	00151: MDAP[rd]   
+	00152: RTHG       
+	00153: SRP1       
+	00154: IP         
+	00155: MDAP[rd]   
+	00156: SRP1       
+	00157: IP         
+	00158: SRP1       
+	00159: IP         
+	00160: SVTCA[y-axis] 
+	00161: RTG        
+	00162: MDAP[rd]   
+	00163: CALL       
+	00164: MIRP[nrp0,md,rd,1] 
+	00165: MIAP[rd+ci] 
+	00166: DELTAP1    
+	00167: MIRP[nrp0,md,rd,1] 
+	00168: MIAP[rd+ci] 
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: IP         
+	00171: SRP1       
+	00172: SHP[rp1,zp0] 
+	00173: SHP[rp1,zp0] 
+	00174: SRP1       
+	00175: SRP2       
+	00176: IP         
+	00177: MDAP[rd]   
+	00178: SHPIX      
+	00179: IUP[y]     
+	00180: IUP[x]     
+	00181: SVTCA[y-axis] 
+	00182: DELTAP1    
+	00183: DELTAP3    
+	00184: DELTAP2    
+	00185: CALL       
+	00186: SVTCA[x-axis] 
+	00187: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual                               On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:                      Y-Short X-Short On
+	 35:        XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:                              X-Short On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:                      Y-Short X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:        XDual         Y-Short X-Short Off
+	 46:        XDual         Y-Short X-Short On
+	 47:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,     0)  ->  Abs (  1229,     0)
+	  1: Rel (  -133,     0)  ->  Abs (  1096,     0)
+	  2: Rel (   -67,    56)  ->  Abs (  1029,    56)
+	  3: Rel (   -98,   -71)  ->  Abs (   931,   -15)
+	  4: Rel (  -244,   -53)  ->  Abs (   687,   -68)
+	  5: Rel (  -232,     0)  ->  Abs (   455,   -68)
+	  6: Rel (  -170,     0)  ->  Abs (   285,   -68)
+	  7: Rel (  -188,    35)  ->  Abs (    97,   -33)
+	  8: Rel (   -91,    98)  ->  Abs (     6,    65)
+	  9: Rel (     0,    81)  ->  Abs (     6,   146)
+	 10: Rel (     0,    76)  ->  Abs (     6,   222)
+	 11: Rel (    90,   223)  ->  Abs (    96,   445)
+	 12: Rel (    32,     0)  ->  Abs (   128,   445)
+	 13: Rel (    11,     0)  ->  Abs (   139,   445)
+	 14: Rel (     0,   -20)  ->  Abs (   139,   425)
+	 15: Rel (     0,    -7)  ->  Abs (   139,   418)
+	 16: Rel (   -28,   -64)  ->  Abs (   111,   354)
+	 17: Rel (   -27,   -64)  ->  Abs (    84,   290)
+	 18: Rel (     0,   -45)  ->  Abs (    84,   245)
+	 19: Rel (     0,   -75)  ->  Abs (    84,   170)
+	 20: Rel (   123,  -108)  ->  Abs (   207,    62)
+	 21: Rel (   274,     0)  ->  Abs (   481,    62)
+	 22: Rel (   234,     0)  ->  Abs (   715,    62)
+	 23: Rel (   182,    18)  ->  Abs (   897,    80)
+	 24: Rel (    50,    32)  ->  Abs (   947,   112)
+	 25: Rel (  -134,   129)  ->  Abs (   813,   241)
+	 26: Rel (     0,   114)  ->  Abs (   813,   355)
+	 27: Rel (     0,    70)  ->  Abs (   813,   425)
+	 28: Rel (   179,   223)  ->  Abs (   992,   648)
+	 29: Rel (    65,     0)  ->  Abs (  1057,   648)
+	 30: Rel (    46,     0)  ->  Abs (  1103,   648)
+	 31: Rel (    66,  -104)  ->  Abs (  1169,   544)
+	 32: Rel (     0,   -55)  ->  Abs (  1169,   489)
+	 33: Rel (     0,  -234)  ->  Abs (  1169,   255)
+	 34: Rel (   -73,   -98)  ->  Abs (  1096,   157)
+	 35: Rel (    36,   -34)  ->  Abs (  1132,   123)
+	 36: Rel (    97,     0)  ->  Abs (  1229,   123)
+	 37: Rel (  -148,   302)  ->  Abs (  1081,   425)
+	 38: Rel (     0,    39)  ->  Abs (  1081,   464)
+	 39: Rel (   -45,    62)  ->  Abs (  1036,   526)
+	 40: Rel (   -33,     0)  ->  Abs (  1003,   526)
+	 41: Rel (   -36,     0)  ->  Abs (   967,   526)
+	 42: Rel (   -73,   -83)  ->  Abs (   894,   443)
+	 43: Rel (     0,   -36)  ->  Abs (   894,   407)
+	 44: Rel (     0,   -41)  ->  Abs (   894,   366)
+	 45: Rel (    76,  -131)  ->  Abs (   970,   235)
+	 46: Rel (    43,   -43)  ->  Abs (  1013,   192)
+	 47: Rel (    68,    81)  ->  Abs (  1081,   273)
+
+	Glyph 1110: off = 0x000345B0, len = 268
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1207
+	  yMax:			801
+
+	EndPoints
+	---------
+	  0:  24
+	  1:  33
+
+	  Length of Instructions:	169
+	00000: NPUSHB      (23):    22    25     1    26    44    17    21    52    38    21 
+	                           218    25   218    26     3   185     4   216     4   216 
+	                            15     3    21 
+	00025: PUSHW[1]            -44 
+	00028: NPUSHB      (12):    12    14    52     5    28     1    25     8    15    10 
+	                             1    10 
+	00042: PUSHW[1]            908 
+	00045: NPUSHB      (25):    15    32    31    32     2    31    32    79    32     2 
+	                            79    32    95    32   176    32     3    32    64     9 
+	                            11    52    32    32    27 
+	00072: NPUSHW      (11):   908    16   918     2     1   907    24     0   858    13 
+	                           881 
+	00096: NPUSHB      (17):   191    30   207    30     2    30    64     9    16    52 
+	                            30    30    25     8     1     0     6 
+	00115: PUSHW[6]            883    19   950    35     4   340 
+	00128: SCANCTRL   
+	00129: SCANTYPE   
+	00130: SRP0       
+	00131: MIRP[srp0,nmd,rd,2] 
+	00132: MIRP[nrp0,md,rd,1] 
+	00133: MDAP[rd]   
+	00134: ALIGNRP    
+	00135: SHP[rp2,zp1] 
+	00136: SHP[rp2,zp1] 
+	00137: SHP[rp2,zp1] 
+	00138: MDAP[rd]   
+	00139: CALL       
+	00140: DELTAP1    
+	00141: MIRP[nrp0,md,rd,1] 
+	00142: SVTCA[y-axis] 
+	00143: MIAP[rd+ci] 
+	00144: ALIGNRP    
+	00145: MIRP[srp0,md,rd,1] 
+	00146: ALIGNRP    
+	00147: MIAP[rd+ci] 
+	00148: MIRP[srp0,md,rd,1] 
+	00149: SHP[rp2,zp1] 
+	00150: MDAP[rd]   
+	00151: CALL       
+	00152: DELTAP1    
+	00153: DELTAP2    
+	00154: DELTAP3    
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: DELTAP2    
+	00157: IP         
+	00158: SHP[rp1,zp0] 
+	00159: IUP[y]     
+	00160: IUP[x]     
+	00161: SVTCA[x-axis] 
+	00162: DELTAP2    
+	00163: CALL       
+	00164: DELTAP1    
+	00165: DELTAP1    
+	00166: CALL       
+	00167: SVTCA[y-axis] 
+	00168: DELTAP3    
+
+	Flags
+	-----
+	  0:  YDual XDual                         On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual                               On
+	  3:  YDual XDual                 X-Short Off
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual               Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:        XDual                 X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:              Rep-  2 Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:                                      On
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:                      Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (     0,     0)  ->  Abs (     0,     0)
+	  1: Rel (     0,   123)  ->  Abs (     0,   123)
+	  2: Rel (   856,     0)  ->  Abs (   856,   123)
+	  3: Rel (   110,     0)  ->  Abs (   966,   123)
+	  4: Rel (   117,    23)  ->  Abs (  1083,   146)
+	  5: Rel (    53,    78)  ->  Abs (  1136,   224)
+	  6: Rel (     0,    64)  ->  Abs (  1136,   288)
+	  7: Rel (     0,    23)  ->  Abs (  1136,   311)
+	  8: Rel (    -7,    40)  ->  Abs (  1129,   351)
+	  9: Rel (   -91,   -53)  ->  Abs (  1038,   298)
+	 10: Rel (   -61,     0)  ->  Abs (   977,   298)
+	 11: Rel (   -60,     0)  ->  Abs (   917,   298)
+	 12: Rel (  -109,    51)  ->  Abs (   808,   349)
+	 13: Rel (     0,    41)  ->  Abs (   808,   390)
+	 14: Rel (     0,   125)  ->  Abs (   808,   515)
+	 15: Rel (   122,   286)  ->  Abs (   930,   801)
+	 16: Rel (    87,     0)  ->  Abs (  1017,   801)
+	 17: Rel (    90,     0)  ->  Abs (  1107,   801)
+	 18: Rel (   100,  -251)  ->  Abs (  1207,   550)
+	 19: Rel (     0,  -180)  ->  Abs (  1207,   370)
+	 20: Rel (     0,  -133)  ->  Abs (  1207,   237)
+	 21: Rel (   -62,  -160)  ->  Abs (  1145,    77)
+	 22: Rel (   -90,   -63)  ->  Abs (  1055,    14)
+	 23: Rel (   -94,   -14)  ->  Abs (   961,     0)
+	 24: Rel (  -179,     0)  ->  Abs (   782,     0)
+	 25: Rel (   314,   467)  ->  Abs (  1096,   467)
+	 26: Rel (   -42,   209)  ->  Abs (  1054,   676)
+	 27: Rel (   -67,     0)  ->  Abs (   987,   676)
+	 28: Rel (   -48,     0)  ->  Abs (   939,   676)
+	 29: Rel (   -65,  -133)  ->  Abs (   874,   543)
+	 30: Rel (     0,   -64)  ->  Abs (   874,   479)
+	 31: Rel (     0,   -55)  ->  Abs (   874,   424)
+	 32: Rel (    97,     0)  ->  Abs (   971,   424)
+	 33: Rel (    39,     0)  ->  Abs (  1010,   424)
+
+	Glyph 1111: off = 0x000346BC, len = 274
+	  numberOfContours:	2
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			709
+
+	EndPoints
+	---------
+	  0:  21
+	  1:  32
+
+	  Length of Instructions:	172
+	00000: NPUSHB      (44):   150     8   215     8   210    30     3   136     3   134 
+	                             8   153     3     3    25    11    20    12    31    17 
+	                             3     5     2     9    12    15    17     3    25     6 
+	                             1   215    30     1     2    16     2    12    31     3 
+	                            17    21    20    25 
+	00046: NPUSHW       (9):   907     7   920    14    21   907    15    20   858 
+	00066: NPUSHB      (18):    26    27    28     6     5     4     2    28    12    22 
+	                            10    17    17    22    31    31    22     4 
+	00086: PUSHW[1]            885 
+	00089: PUSHB[8]             15    28    31    28     2    28    28    22 
+	00098: PUSHW[3]            887    10   -64 
+	00105: NPUSHB      (10):     9    18    52    10    10    14    15    21    20     5 
+	00117: SCANTYPE   
+	00118: MDAP[rd]   
+	00119: ALIGNRP    
+	00120: MDAP[rd]   
+	00121: ALIGNRP    
+	00122: SHP[rp1,zp0] 
+	00123: MDAP[rd]   
+	00124: CALL       
+	00125: MIRP[srp0,md,rd,1] 
+	00126: SHP[rp2,zp1] 
+	00127: MDAP[rd]   
+	00128: DELTAP1    
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: RTHG       
+	00131: SRP1       
+	00132: IP         
+	00133: MDAP[rd]   
+	00134: SRP1       
+	00135: IP         
+	00136: MDAP[rd]   
+	00137: SRP1       
+	00138: SRP2       
+	00139: IP         
+	00140: SRP1       
+	00141: IP         
+	00142: SRP1       
+	00143: SHP[rp1,zp0] 
+	00144: SHP[rp1,zp0] 
+	00145: SRP1       
+	00146: SHP[rp1,zp0] 
+	00147: SHP[rp1,zp0] 
+	00148: SVTCA[y-axis] 
+	00149: RTG        
+	00150: MIAP[rd+ci] 
+	00151: ALIGNRP    
+	00152: MIRP[srp0,md,rd,1] 
+	00153: ALIGNRP    
+	00154: MIAP[rd+ci] 
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: SRP1       
+	00157: SRP2       
+	00158: IP         
+	00159: SLOOP      
+	00160: SHP[rp2,zp1] 
+	00161: SVTCA[x-axis] 
+	00162: SHPIX      
+	00163: IUP[y]     
+	00164: IUP[x]     
+	00165: SVTCA[x-axis] 
+	00166: DELTAP2    
+	00167: DELTAP3    
+	00168: DELTAP1    
+	00169: DELTAP1    
+	00170: DELTAP1    
+	00171: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual                 X-Short Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short On
+	 13:        XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:        XDual         Y-Short         On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                               On
+	 20:  YDual                               On
+	 21:  YDual XDual         Y-Short         On
+	 22:                                      On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:                      Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   629,   123)  ->  Abs (   629,   123)
+	  1: Rel (   249,     0)  ->  Abs (   878,   123)
+	  2: Rel (    69,    50)  ->  Abs (   947,   173)
+	  3: Rel (  -134,   129)  ->  Abs (   813,   302)
+	  4: Rel (     0,   114)  ->  Abs (   813,   416)
+	  5: Rel (     0,    69)  ->  Abs (   813,   485)
+	  6: Rel (   170,   224)  ->  Abs (   983,   709)
+	  7: Rel (    74,     0)  ->  Abs (  1057,   709)
+	  8: Rel (    49,     0)  ->  Abs (  1106,   709)
+	  9: Rel (    65,  -118)  ->  Abs (  1171,   591)
+	 10: Rel (     0,   -62)  ->  Abs (  1171,   529)
+	 11: Rel (     0,  -228)  ->  Abs (  1171,   301)
+	 12: Rel (   -86,  -108)  ->  Abs (  1085,   193)
+	 13: Rel (    52,   -70)  ->  Abs (  1137,   123)
+	 14: Rel (    92,     0)  ->  Abs (  1229,   123)
+	 15: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	 16: Rel (  -116,     0)  ->  Abs (  1113,     0)
+	 17: Rel (   -95,   113)  ->  Abs (  1018,   113)
+	 18: Rel (  -115,  -113)  ->  Abs (   903,     0)
+	 19: Rel (  -312,     0)  ->  Abs (   591,     0)
+	 20: Rel (  -591,     0)  ->  Abs (     0,     0)
+	 21: Rel (     0,   123)  ->  Abs (     0,   123)
+	 22: Rel (  1080,   363)  ->  Abs (  1080,   486)
+	 23: Rel (     0,    40)  ->  Abs (  1080,   526)
+	 24: Rel (   -44,    62)  ->  Abs (  1036,   588)
+	 25: Rel (   -33,     0)  ->  Abs (  1003,   588)
+	 26: Rel (   -34,     0)  ->  Abs (   969,   588)
+	 27: Rel (   -76,   -83)  ->  Abs (   893,   505)
+	 28: Rel (     0,   -37)  ->  Abs (   893,   468)
+	 29: Rel (     0,   -41)  ->  Abs (   893,   427)
+	 30: Rel (    76,  -131)  ->  Abs (   969,   296)
+	 31: Rel (    43,   -43)  ->  Abs (  1012,   253)
+	 32: Rel (    68,    81)  ->  Abs (  1080,   334)
+
+	Glyph 1112: off = 0x000347CE, len = 340
+	  numberOfContours:	1
+	  xMin:			240
+	  yMin:			-561
+	  xMax:			1100
+	  yMax:			680
+
+	EndPoints
+	---------
+	  0:  37
+
+	  Length of Instructions:	221
+	00000: NPUSHB      (30):    12    16    21    22    52    26    16    30   128    11 
+	                            16    52    30    64    17    28    52    30     8     4 
+	                            64    11    16    52     4    32    17    19    52     4 
+	00032: PUSHW[1]            -32 
+	00035: NPUSHB      (48):    35    40    52     4     2     7    80    26     1    26 
+	                            64     9    14    52    26    26     0    10    16    10 
+	                             2    10    10     8     7    64    23    25    52     7 
+	                             7   176     8   224     8     2     8     8    33    20 
+	                            15     0    31     0     2     0     0     2 
+	00085: PUSHW[3]            909    33   916 
+	00092: NPUSHB      (29):    20     0     0    36    17    64    28    30    52    17 
+	                            17    20    64    14    15    52    20    20    24    26 
+	                            30     8    15     7     1     7     7    36     4 
+	00123: PUSHW[1]            893 
+	00126: NPUSHB      (12):    15    30     1    30    30    24     0    36     1    36 
+	                            36    13 
+	00140: PUSHW[4]            892    24     4   340 
+	00149: SCANCTRL   
+	00150: SCANTYPE   
+	00151: MDAP[rd]   
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: SHP[rp1,zp0] 
+	00154: MDAP[rd]   
+	00155: DELTAP1    
+	00156: SRP1       
+	00157: SHP[rp1,zp0] 
+	00158: MDAP[rd]   
+	00159: DELTAP1    
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: SRP2       
+	00162: IP         
+	00163: MDAP[rd]   
+	00164: DELTAP1    
+	00165: SHP[rp1,zp0] 
+	00166: SRP2       
+	00167: IP         
+	00168: SRP1       
+	00169: SHP[rp1,zp0] 
+	00170: RTHG       
+	00171: MDAP[rd]   
+	00172: CALL       
+	00173: SHP[rp1,zp0] 
+	00174: RTG        
+	00175: MDAP[rd]   
+	00176: CALL       
+	00177: SRP1       
+	00178: SHP[rp1,zp0] 
+	00179: RTHG       
+	00180: MDAP[rd]   
+	00181: SVTCA[y-axis] 
+	00182: RTG        
+	00183: MDAP[rd]   
+	00184: MIAP[rd+ci] 
+	00185: MIRP[srp0,md,rd,1] 
+	00186: SHP[rp2,zp1] 
+	00187: MDAP[rd]   
+	00188: DELTAP1    
+	00189: SRP1       
+	00190: SRP2       
+	00191: IP         
+	00192: MDAP[rd]   
+	00193: DELTAP1    
+	00194: SHP[rp1,zp0] 
+	00195: MDAP[rd]   
+	00196: CALL       
+	00197: SRP2       
+	00198: IP         
+	00199: MDAP[rd]   
+	00200: DELTAP1    
+	00201: SHP[rp1,zp0] 
+	00202: MDAP[rd]   
+	00203: CALL       
+	00204: DELTAP3    
+	00205: SRP1       
+	00206: SRP2       
+	00207: IP         
+	00208: CALL       
+	00209: CALL       
+	00210: CALL       
+	00211: SRP1       
+	00212: IP         
+	00213: CALL       
+	00214: CALL       
+	00215: SVTCA[x-axis] 
+	00216: SHPIX      
+	00217: IUP[y]     
+	00218: IUP[x]     
+	00219: SVTCA[y-axis] 
+	00220: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:        XDual         Y-Short X-Short On
+	  8:                      Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:                      Y-Short X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:        XDual         Y-Short X-Short On
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual               Y-Short         On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual               Y-Short X-Short On
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual               Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:                                      Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1049,   416)  ->  Abs (  1049,   416)
+	  1: Rel (   -62,   134)  ->  Abs (   987,   550)
+	  2: Rel (  -136,     0)  ->  Abs (   851,   550)
+	  3: Rel (  -158,     0)  ->  Abs (   693,   550)
+	  4: Rel (  -226,  -194)  ->  Abs (   467,   356)
+	  5: Rel (    64,    -9)  ->  Abs (   531,   347)
+	  6: Rel (   225,  -137)  ->  Abs (   756,   210)
+	  7: Rel (    55,   -52)  ->  Abs (   811,   158)
+	  8: Rel (   -45,  -121)  ->  Abs (   766,    37)
+	  9: Rel (   -92,    61)  ->  Abs (   674,    98)
+	 10: Rel (   -92,     0)  ->  Abs (   582,    98)
+	 11: Rel (   -98,     0)  ->  Abs (   484,    98)
+	 12: Rel (  -131,   -84)  ->  Abs (   353,    14)
+	 13: Rel (     0,   -75)  ->  Abs (   353,   -61)
+	 14: Rel (     0,   -30)  ->  Abs (   353,   -91)
+	 15: Rel (    27,   -94)  ->  Abs (   380,  -185)
+	 16: Rel (    57,  -188)  ->  Abs (   437,  -373)
+	 17: Rel (     0,   -71)  ->  Abs (   437,  -444)
+	 18: Rel (     0,   -17)  ->  Abs (   437,  -461)
+	 19: Rel (   -54,  -100)  ->  Abs (   383,  -561)
+	 20: Rel (   -12,     0)  ->  Abs (   371,  -561)
+	 21: Rel (   -13,    83)  ->  Abs (   358,  -478)
+	 22: Rel (   -56,   173)  ->  Abs (   302,  -305)
+	 23: Rel (   -62,   169)  ->  Abs (   240,  -136)
+	 24: Rel (     0,    68)  ->  Abs (   240,   -68)
+	 25: Rel (     0,   217)  ->  Abs (   240,   149)
+	 26: Rel (   270,    17)  ->  Abs (   510,   166)
+	 27: Rel (   -33,    27)  ->  Abs (   477,   193)
+	 28: Rel (   -56,    23)  ->  Abs (   421,   216)
+	 29: Rel (   -54,    23)  ->  Abs (   367,   239)
+	 30: Rel (   -21,    19)  ->  Abs (   346,   258)
+	 31: Rel (    19,   126)  ->  Abs (   365,   384)
+	 32: Rel (   442,   296)  ->  Abs (   807,   680)
+	 33: Rel (   160,     0)  ->  Abs (   967,   680)
+	 34: Rel (    57,     0)  ->  Abs (  1024,   680)
+	 35: Rel (    76,   -89)  ->  Abs (  1100,   591)
+	 36: Rel (     0,   -60)  ->  Abs (  1100,   531)
+	 37: Rel (     0,   -80)  ->  Abs (  1100,   451)
+
+	Glyph 1113: off = 0x00034922, len = 278
+	  numberOfContours:	1
+	  xMin:			151
+	  yMin:			-310
+	  xMax:			1066
+	  yMax:			630
+
+	EndPoints
+	---------
+	  0:  36
+
+	  Length of Instructions:	168
+	00000: NPUSHB      (27):    18    64    18    22    52   134    30   151     3   214 
+	                             3   217     6     4    35    32    17    22    52     7 
+	                             8    12    32     9    28    52    12 
+	00029: PUSHW[1]            -32 
+	00032: NPUSHB      (12):    29    36    52    12    12     2     0    23    23     8 
+	                            17     2 
+	00046: PUSHW[1]            903 
+	00049: PUSHB[7]             15     0   239     0     2     0    31 
+	00057: PUSHW[4]            912    17     8   921 
+	00066: NPUSHB      (15):    12    10     7     7     8    64     9    16    52     8 
+	                             8     2     0     0     5 
+	00083: PUSHW[1]            884 
+	00086: NPUSHB      (10):    15    10    31    10   223    10     3    10    10    34 
+	00098: PUSHW[1]            888 
+	00101: PUSHB[7]              0    14     1    14    25    25    29 
+	00109: PUSHW[1]            887 
+	00112: PUSHB[4]              0    20     1    20 
+	00117: MDAP[rd]   
+	00118: DELTAP1    
+	00119: MIRP[srp0,md,rd,1] 
+	00120: SHP[rp2,zp1] 
+	00121: MDAP[rd]   
+	00122: MDAP[rd]   
+	00123: DELTAP1    
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: SHP[rp1,zp0] 
+	00126: MDAP[rd]   
+	00127: DELTAP1    
+	00128: MIRP[srp0,md,rd,1] 
+	00129: SHP[rp2,zp1] 
+	00130: MDAP[rd]   
+	00131: SHP[rp1,zp0] 
+	00132: SHP[rp2,zp1] 
+	00133: RTHG       
+	00134: MDAP[rd]   
+	00135: CALL       
+	00136: SHP[rp1,zp0] 
+	00137: RTG        
+	00138: MDAP[rd]   
+	00139: SRP1       
+	00140: IP         
+	00141: SVTCA[y-axis] 
+	00142: MIAP[rd+ci] 
+	00143: MDAP[rd]   
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: MDAP[rd]   
+	00146: DELTAP1    
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: SRP1       
+	00149: SRP2       
+	00150: IP         
+	00151: MDAP[rd]   
+	00152: RTHG       
+	00153: SRP1       
+	00154: SRP2       
+	00155: IP         
+	00156: MDAP[rd]   
+	00157: CALL       
+	00158: CALL       
+	00159: SRP1       
+	00160: SHP[rp1,zp0] 
+	00161: IUP[y]     
+	00162: IUP[x]     
+	00163: SVTCA[y-axis] 
+	00164: CALL       
+	00165: DELTAP1    
+	00166: SVTCA[x-axis] 
+	00167: CALL       
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short On
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:        XDual                 X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:                      Y-Short X-Short On
+	 28:                      Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:  YDual                               On
+	 32:  YDual XDual                 X-Short Off
+	 33:  YDual               Y-Short         Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   652,    17)  ->  Abs (   652,    17)
+	  1: Rel (    12,    47)  ->  Abs (   664,    64)
+	  2: Rel (    18,    59)  ->  Abs (   682,   123)
+	  3: Rel (   117,    39)  ->  Abs (   799,   162)
+	  4: Rel (    46,    59)  ->  Abs (   845,   221)
+	  5: Rel (     0,    26)  ->  Abs (   845,   247)
+	  6: Rel (     0,   113)  ->  Abs (   845,   360)
+	  7: Rel (  -103,    97)  ->  Abs (   742,   457)
+	  8: Rel (    66,   173)  ->  Abs (   808,   630)
+	  9: Rel (   114,  -116)  ->  Abs (   922,   514)
+	 10: Rel (     0,  -191)  ->  Abs (   922,   323)
+	 11: Rel (     0,  -125)  ->  Abs (   922,   198)
+	 12: Rel (   -50,   -85)  ->  Abs (   872,   113)
+	 13: Rel (   194,   -29)  ->  Abs (  1066,    84)
+	 14: Rel (     0,   -80)  ->  Abs (  1066,     4)
+	 15: Rel (     0,  -168)  ->  Abs (  1066,  -164)
+	 16: Rel (  -323,  -146)  ->  Abs (   743,  -310)
+	 17: Rel (  -213,     0)  ->  Abs (   530,  -310)
+	 18: Rel (  -199,     0)  ->  Abs (   331,  -310)
+	 19: Rel (  -180,   169)  ->  Abs (   151,  -141)
+	 20: Rel (     0,   124)  ->  Abs (   151,   -17)
+	 21: Rel (     0,    56)  ->  Abs (   151,    39)
+	 22: Rel (    91,   267)  ->  Abs (   242,   306)
+	 23: Rel (    40,     0)  ->  Abs (   282,   306)
+	 24: Rel (    20,     0)  ->  Abs (   302,   306)
+	 25: Rel (     0,   -13)  ->  Abs (   302,   293)
+	 26: Rel (     0,    -9)  ->  Abs (   302,   284)
+	 27: Rel (   -32,   -91)  ->  Abs (   270,   193)
+	 28: Rel (   -31,   -91)  ->  Abs (   239,   102)
+	 29: Rel (     0,   -59)  ->  Abs (   239,    43)
+	 30: Rel (     0,  -208)  ->  Abs (   239,  -165)
+	 31: Rel (   328,     0)  ->  Abs (   567,  -165)
+	 32: Rel (   132,     0)  ->  Abs (   699,  -165)
+	 33: Rel (   270,    45)  ->  Abs (   969,  -120)
+	 34: Rel (     0,    36)  ->  Abs (   969,   -84)
+	 35: Rel (     0,    36)  ->  Abs (   969,   -48)
+	 36: Rel (  -184,    58)  ->  Abs (   785,    10)
+
+	Glyph 1114: off = 0x00034A38, len = 428
+	  numberOfContours:	2
+	  xMin:			158
+	  yMin:			-310
+	  xMax:			1071
+	  yMax:			711
+
+	EndPoints
+	---------
+	  0:  43
+	  1:  52
+
+	  Length of Instructions:	279
+	00000: PUSHW[2]             37   -24 
+	00005: NPUSHB      (36):    16    18    52    25    56    19    21    52    15    24 
+	                            22    25    52    13    24    22    27    52    31    25 
+	                             1    30    30    14    24    44    46     6    51     8 
+	                            19    16    16    18    52    19 
+	00043: PUSHW[1]            -32 
+	00046: PUSHB[4]             34    40    52    19 
+	00051: PUSHW[1]            -64 
+	00054: PUSHB[8]             54    62    52    19    19     2     0    51 
+	00063: PUSHW[1]            904 
+	00066: NPUSHB      (19):     8    64    34    36    52     8    64    22    27    52 
+	                             8    64    10    16    52     8     8     0    46 
+	00087: PUSHW[3]            904    14   920 
+	00094: PUSHB[6]            112     2   128     2     2     2 
+	00101: PUSHW[1]            901 
+	00104: NPUSHB      (16):    31     0     1    15     0    80     0    96     0   128 
+	                             0   144     0     5     0    38 
+	00122: PUSHW[4]            912    24    19  -128 
+	00131: PUSHB[7]             34    40    52    19     6    17    11 
+	00139: PUSHW[1]            882 
+	00142: NPUSHB      (28):    63    49   127    49   223    49     3    31    49    47 
+	                            49     2    49    49    17    44    24    17    25    52 
+	                            44     2     0     0     1     0     0     6 
+	00172: PUSHW[1]            883 
+	00175: PUSHB[6]             95    17     1    17    17    41 
+	00182: PUSHW[1]            888 
+	00185: NPUSHB      (14):   127    21   191    21     2    21    96    32   112    32 
+	                             2    32    32    36 
+	00201: PUSHW[1]            885 
+	00204: PUSHB[2]             27     4 
+	00207: SCANTYPE   
+	00208: MDAP[rd]   
+	00209: MIRP[srp0,md,rd,1] 
+	00210: SHP[rp2,zp1] 
+	00211: MDAP[rd]   
+	00212: DELTAP1    
+	00213: MDAP[rd]   
+	00214: DELTAP1    
+	00215: MIRP[nrp0,md,rd,1] 
+	00216: SHP[rp1,zp0] 
+	00217: MDAP[rd]   
+	00218: DELTAP1    
+	00219: MIRP[nrp0,md,rd,1] 
+	00220: SHP[rp1,zp0] 
+	00221: MDAP[rd]   
+	00222: DELTAP1    
+	00223: SHP[rp1,zp0] 
+	00224: SHP[rp2,zp1] 
+	00225: CALL       
+	00226: SRP1       
+	00227: SHP[rp1,zp0] 
+	00228: MDAP[rd]   
+	00229: DELTAP1    
+	00230: DELTAP1    
+	00231: MIRP[nrp0,md,rd,1] 
+	00232: SRP1       
+	00233: SRP2       
+	00234: IP         
+	00235: CALL       
+	00236: SVTCA[y-axis] 
+	00237: MDAP[rd]   
+	00238: MIRP[nrp0,md,rd,1] 
+	00239: MDAP[rd]   
+	00240: DELTAP1    
+	00241: DELTAP3    
+	00242: MIRP[nrp0,md,rd,1] 
+	00243: DELTAP2    
+	00244: MIAP[rd+ci] 
+	00245: MIRP[nrp0,md,rd,1] 
+	00246: SRP2       
+	00247: IP         
+	00248: MDAP[rd]   
+	00249: CALL       
+	00250: CALL       
+	00251: CALL       
+	00252: MIRP[nrp0,md,rd,1] 
+	00253: RTHG       
+	00254: SRP1       
+	00255: SRP2       
+	00256: IP         
+	00257: MDAP[rd]   
+	00258: CALL       
+	00259: CALL       
+	00260: CALL       
+	00261: SRP1       
+	00262: SRP2       
+	00263: IP         
+	00264: SRP1       
+	00265: IP         
+	00266: RTG        
+	00267: SRP1       
+	00268: SRP2       
+	00269: IP         
+	00270: MDAP[rd]   
+	00271: IUP[y]     
+	00272: IUP[x]     
+	00273: SVTCA[x-axis] 
+	00274: DELTAP1    
+	00275: CALL       
+	00276: CALL       
+	00277: CALL       
+	00278: CALL       
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:        XDual                 X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:                      Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short         Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:        XDual         Y-Short         On
+	 33:        XDual         Y-Short         Off
+	 34:                      Y-Short X-Short On
+	 35:                      Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:  YDual                               On
+	 39:  YDual XDual                 X-Short Off
+	 40:  YDual               Y-Short         Off
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:        XDual                 X-Short On
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:                      Y-Short X-Short Off
+	 49:        XDual         Y-Short         On
+	 50:        XDual         Y-Short         Off
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   659,    72)  ->  Abs (   659,    72)
+	  1: Rel (    15,    43)  ->  Abs (   674,   115)
+	  2: Rel (    21,    55)  ->  Abs (   695,   170)
+	  3: Rel (    81,     0)  ->  Abs (   776,   170)
+	  4: Rel (   105,    41)  ->  Abs (   881,   211)
+	  5: Rel (    41,    73)  ->  Abs (   922,   284)
+	  6: Rel (     0,    22)  ->  Abs (   922,   306)
+	  7: Rel (   -92,   -48)  ->  Abs (   830,   258)
+	  8: Rel (   -65,     0)  ->  Abs (   765,   258)
+	  9: Rel (   -61,     0)  ->  Abs (   704,   258)
+	 10: Rel (  -108,    45)  ->  Abs (   596,   303)
+	 11: Rel (     0,    37)  ->  Abs (   596,   340)
+	 12: Rel (     0,   112)  ->  Abs (   596,   452)
+	 13: Rel (   122,   259)  ->  Abs (   718,   711)
+	 14: Rel (    87,     0)  ->  Abs (   805,   711)
+	 15: Rel (    90,     0)  ->  Abs (   895,   711)
+	 16: Rel (   100,  -226)  ->  Abs (   995,   485)
+	 17: Rel (     0,  -162)  ->  Abs (   995,   323)
+	 18: Rel (     0,   -79)  ->  Abs (   995,   244)
+	 19: Rel (   -61,   -83)  ->  Abs (   934,   161)
+	 20: Rel (   137,   -43)  ->  Abs (  1071,   118)
+	 21: Rel (     0,   -66)  ->  Abs (  1071,    52)
+	 22: Rel (     0,  -161)  ->  Abs (  1071,  -109)
+	 23: Rel (  -328,  -201)  ->  Abs (   743,  -310)
+	 24: Rel (  -206,     0)  ->  Abs (   537,  -310)
+	 25: Rel (  -200,     0)  ->  Abs (   337,  -310)
+	 26: Rel (  -179,   168)  ->  Abs (   158,  -142)
+	 27: Rel (     0,   128)  ->  Abs (   158,   -14)
+	 28: Rel (     0,    75)  ->  Abs (   158,    61)
+	 29: Rel (    91,   249)  ->  Abs (   249,   310)
+	 30: Rel (    40,     0)  ->  Abs (   289,   310)
+	 31: Rel (    18,     0)  ->  Abs (   307,   310)
+	 32: Rel (     0,   -17)  ->  Abs (   307,   293)
+	 33: Rel (     0,    -9)  ->  Abs (   307,   284)
+	 34: Rel (   -34,   -83)  ->  Abs (   273,   201)
+	 35: Rel (   -34,   -84)  ->  Abs (   239,   117)
+	 36: Rel (     0,   -59)  ->  Abs (   239,    58)
+	 37: Rel (     0,  -223)  ->  Abs (   239,  -165)
+	 38: Rel (   335,     0)  ->  Abs (   574,  -165)
+	 39: Rel (   139,     0)  ->  Abs (   713,  -165)
+	 40: Rel (   263,    82)  ->  Abs (   976,   -83)
+	 41: Rel (     0,    44)  ->  Abs (   976,   -39)
+	 42: Rel (     0,    46)  ->  Abs (   976,     7)
+	 43: Rel (  -184,    58)  ->  Abs (   792,    65)
+	 44: Rel (    92,   345)  ->  Abs (   884,   410)
+	 45: Rel (   -42,   188)  ->  Abs (   842,   598)
+	 46: Rel (   -67,     0)  ->  Abs (   775,   598)
+	 47: Rel (   -48,     0)  ->  Abs (   727,   598)
+	 48: Rel (   -64,  -120)  ->  Abs (   663,   478)
+	 49: Rel (     0,   -57)  ->  Abs (   663,   421)
+	 50: Rel (     0,   -50)  ->  Abs (   663,   371)
+	 51: Rel (    96,     0)  ->  Abs (   759,   371)
+	 52: Rel (    38,     0)  ->  Abs (   797,   371)
+
+	Glyph 1115: off = 0x00034BE4, len = 344
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			-427
+	  xMax:			1229
+	  yMax:			626
+
+	EndPoints
+	---------
+	  0:  44
+
+	  Length of Instructions:	213
+	00000: NPUSHB      (85):    44    32    43    45    52    40    20    41    44    54 
+	                             5    52     6    57    44   219    20   246    38     7 
+	                            86     6   162     5   162     6     3    70     6    73 
+	                            44   230    38     3     3    38    21    38    37    38 
+	                             3    36    20    74    24   218     0   208    20     4 
+	                           165    27   185     5   180    20   194    20     4   142 
+	                             6   145    21   165    20     3    99    20   125     5 
+	                           121     6   142     5     4     7    20    21    20    57 
+	                             6     3    28     0    30 
+	00087: PUSHW[1]            904 
+	00090: PUSHB[8]              2     2    26    41    34    34    26    40 
+	00099: PUSHW[3]            907    41   858 
+	00106: PUSHB[3]             14    14    18 
+	00110: PUSHW[1]            904 
+	00113: PUSHB[3]              7    25    26 
+	00117: PUSHW[3]            921    36   883 
+	00124: NPUSHB      (14):    23     0     1     0     0    41    28     2     3    26 
+	                            26    25    25    22 
+	00140: PUSHW[1]            879 
+	00143: NPUSHB      (12):    32     3    48     3     2     3     3    12    40    41 
+	                            12     4 
+	00157: SCANTYPE   
+	00158: MDAP[rd]   
+	00159: MDAP[rd]   
+	00160: ALIGNRP    
+	00161: SRP2       
+	00162: IP         
+	00163: MDAP[rd]   
+	00164: DELTAP1    
+	00165: MIRP[srp0,md,rd,1] 
+	00166: SHP[rp2,zp1] 
+	00167: MDAP[rd]   
+	00168: RTHG       
+	00169: IP         
+	00170: MDAP[rd]   
+	00171: SRP1       
+	00172: SHP[rp1,zp0] 
+	00173: SHP[rp1,zp0] 
+	00174: RTG        
+	00175: SRP2       
+	00176: IP         
+	00177: MDAP[rd]   
+	00178: DELTAP3    
+	00179: MIRP[nrp0,md,rd,1] 
+	00180: SVTCA[y-axis] 
+	00181: MIAP[rd+ci] 
+	00182: SHP[rp1,zp0] 
+	00183: MDAP[rd]   
+	00184: MIRP[srp0,md,rd,1] 
+	00185: SHP[rp2,zp1] 
+	00186: MDAP[rd]   
+	00187: MIAP[rd+ci] 
+	00188: MIRP[nrp0,md,rd,1] 
+	00189: SRP1       
+	00190: SHP[rp1,zp0] 
+	00191: MDAP[rd]   
+	00192: SRP1       
+	00193: SRP2       
+	00194: IP         
+	00195: MDAP[rd]   
+	00196: MIRP[srp0,md,rd,1] 
+	00197: SHP[rp2,zp1] 
+	00198: SHP[rp2,zp1] 
+	00199: IUP[y]     
+	00200: IUP[x]     
+	00201: SVTCA[y-axis] 
+	00202: DELTAP1    
+	00203: DELTAP1    
+	00204: DELTAP1    
+	00205: DELTAP1    
+	00206: DELTAP1    
+	00207: SVTCA[x-axis] 
+	00208: DELTAP2    
+	00209: DELTAP1    
+	00210: DELTAP1    
+	00211: DELTAP1    
+	00212: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                              X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual               Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short X-Short On
+	 29:        XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual                         Off
+	 38:        XDual         Y-Short X-Short Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short On
+	 41:        XDual         Y-Short         On
+	 42:  YDual                       X-Short On
+	 43:  YDual                       X-Short Off
+	 44:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   972,   331)  ->  Abs (   972,   331)
+	  1: Rel (   -55,  -116)  ->  Abs (   917,   215)
+	  2: Rel (  -100,     0)  ->  Abs (   817,   215)
+	  3: Rel (     0,   -25)  ->  Abs (   817,   190)
+	  4: Rel (     0,  -160)  ->  Abs (   817,    30)
+	  5: Rel (  -108,  -275)  ->  Abs (   709,  -245)
+	  6: Rel (  -209,  -182)  ->  Abs (   500,  -427)
+	  7: Rel (   -93,     0)  ->  Abs (   407,  -427)
+	  8: Rel (  -111,     0)  ->  Abs (   296,  -427)
+	  9: Rel (   -59,    18)  ->  Abs (   237,  -409)
+	 10: Rel (  -184,    56)  ->  Abs (    53,  -353)
+	 11: Rel (   -53,    16)  ->  Abs (     0,  -337)
+	 12: Rel (     0,    25)  ->  Abs (     0,  -312)
+	 13: Rel (     0,    26)  ->  Abs (     0,  -286)
+	 14: Rel (    34,     0)  ->  Abs (    34,  -286)
+	 15: Rel (    18,     0)  ->  Abs (    52,  -286)
+	 16: Rel (    70,   -16)  ->  Abs (   122,  -302)
+	 17: Rel (    70,   -15)  ->  Abs (   192,  -317)
+	 18: Rel (    66,     0)  ->  Abs (   258,  -317)
+	 19: Rel (   121,     0)  ->  Abs (   379,  -317)
+	 20: Rel (   256,   167)  ->  Abs (   635,  -150)
+	 21: Rel (   126,   197)  ->  Abs (   761,    47)
+	 22: Rel (     0,    46)  ->  Abs (   761,    93)
+	 23: Rel (     1,    98)  ->  Abs (   762,   191)
+	 24: Rel (   -60,   169)  ->  Abs (   702,   360)
+	 25: Rel (   -95,    96)  ->  Abs (   607,   456)
+	 26: Rel (    63,   170)  ->  Abs (   670,   626)
+	 27: Rel (   103,   -96)  ->  Abs (   773,   530)
+	 28: Rel (    33,  -199)  ->  Abs (   806,   331)
+	 29: Rel (    15,    -3)  ->  Abs (   821,   328)
+	 30: Rel (    15,     0)  ->  Abs (   836,   328)
+	 31: Rel (   139,     0)  ->  Abs (   975,   328)
+	 32: Rel (    30,   252)  ->  Abs (  1005,   580)
+	 33: Rel (     4,    37)  ->  Abs (  1009,   617)
+	 34: Rel (    22,     0)  ->  Abs (  1031,   617)
+	 35: Rel (    15,     0)  ->  Abs (  1046,   617)
+	 36: Rel (     0,   -37)  ->  Abs (  1046,   580)
+	 37: Rel (     0,  -269)  ->  Abs (  1046,   311)
+	 38: Rel (    56,  -188)  ->  Abs (  1102,   123)
+	 39: Rel (    98,     0)  ->  Abs (  1200,   123)
+	 40: Rel (    29,     0)  ->  Abs (  1229,   123)
+	 41: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	 42: Rel (   -23,     0)  ->  Abs (  1206,     0)
+	 43: Rel (  -101,     0)  ->  Abs (  1105,     0)
+	 44: Rel (  -111,   100)  ->  Abs (   994,   100)
+
+	Glyph 1116: off = 0x00034D3C, len = 316
+	  numberOfContours:	1
+	  xMin:			29
+	  yMin:			-383
+	  xMax:			1229
+	  yMax:			617
+
+	EndPoints
+	---------
+	  0:  47
+
+	  Length of Instructions:	183
+	00000: NPUSHB      (34):     2    44    38    42    52    72     3   118    26   132 
+	                            26   166    45   183    45   198    45     6    41    14 
+	                           104    10   107    28     3     9     2     1    87    29 
+	                           198    32     2    47 
+	00036: PUSHW[3]            907     0   858 
+	00043: PUSHB[6]             33    33    32     4    35    37 
+	00050: PUSHW[1]            905 
+	00053: PUSHB[5]              7     7    41     0    27 
+	00059: PUSHW[1]            911 
+	00062: PUSHB[4]             12    18    18    41 
+	00067: PUSHW[3]            922    43   885 
+	00074: NPUSHB      (12):     4    32     9    12    52     4     4     0    35     7 
+	                             9    20 
+	00088: PUSHW[1]            -64 
+	00091: NPUSHB      (11):    11    16    52    20    20    24    32    32    33    33 
+	                            30 
+	00104: PUSHW[1]            -64 
+	00107: PUSHB[4]             40    40    52    30 
+	00112: PUSHW[1]            884 
+	00115: PUSHB[6]              9     9    15    47     0    24 
+	00122: PUSHW[1]            886 
+	00125: PUSHB[2]             15     4 
+	00128: SCANTYPE   
+	00129: MDAP[rd]   
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: MDAP[rd]   
+	00132: ALIGNRP    
+	00133: SRP2       
+	00134: IP         
+	00135: MDAP[rd]   
+	00136: MIRP[nrp0,md,rd,1] 
+	00137: CALL       
+	00138: RTHG       
+	00139: IP         
+	00140: MDAP[rd]   
+	00141: SHP[rp2,zp1] 
+	00142: RTG        
+	00143: MDAP[rd]   
+	00144: SRP1       
+	00145: SHP[rp1,zp0] 
+	00146: MDAP[rd]   
+	00147: CALL       
+	00148: SRP1       
+	00149: IP         
+	00150: IP         
+	00151: SRP2       
+	00152: IP         
+	00153: MDAP[rd]   
+	00154: CALL       
+	00155: MIRP[nrp0,nmd,rd,0] 
+	00156: SVTCA[y-axis] 
+	00157: MIAP[rd+ci] 
+	00158: SHP[rp1,zp0] 
+	00159: MDAP[rd]   
+	00160: MDAP[rd]   
+	00161: MIRP[nrp0,md,rd,1] 
+	00162: SRP1       
+	00163: SRP2       
+	00164: IP         
+	00165: MDAP[rd]   
+	00166: MIRP[srp0,md,rd,1] 
+	00167: SHP[rp2,zp1] 
+	00168: SHP[rp2,zp1] 
+	00169: IP         
+	00170: SHP[rp2,zp1] 
+	00171: MDAP[rd]   
+	00172: MIAP[rd+ci] 
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: IUP[y]     
+	00175: IUP[x]     
+	00176: SVTCA[y-axis] 
+	00177: DELTAP1    
+	00178: SVTCA[x-axis] 
+	00179: DELTAP2    
+	00180: DELTAP1    
+	00181: DELTAP1    
+	00182: CALL       
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual               Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                              X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:        XDual                 X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:                      Y-Short X-Short On
+	 23:                      Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual               Y-Short X-Short On
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short X-Short On
+	 36:        XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:  YDual XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:        XDual         Y-Short X-Short Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,     0)  ->  Abs (  1229,     0)
+	  1: Rel (   -49,     0)  ->  Abs (  1180,     0)
+	  2: Rel (  -116,     0)  ->  Abs (  1064,     0)
+	  3: Rel (  -117,   141)  ->  Abs (   947,   141)
+	  4: Rel (   -21,   217)  ->  Abs (   926,   358)
+	  5: Rel (   -25,   -54)  ->  Abs (   901,   304)
+	  6: Rel (  -107,   -85)  ->  Abs (   794,   219)
+	  7: Rel (   -51,     0)  ->  Abs (   743,   219)
+	  8: Rel (     5,   -46)  ->  Abs (   748,   173)
+	  9: Rel (     0,   -48)  ->  Abs (   748,   125)
+	 10: Rel (     0,  -239)  ->  Abs (   748,  -114)
+	 11: Rel (  -215,  -269)  ->  Abs (   533,  -383)
+	 12: Rel (  -201,     0)  ->  Abs (   332,  -383)
+	 13: Rel (  -125,     0)  ->  Abs (   207,  -383)
+	 14: Rel (  -178,   177)  ->  Abs (    29,  -206)
+	 15: Rel (     0,   153)  ->  Abs (    29,   -53)
+	 16: Rel (     0,   185)  ->  Abs (    29,   132)
+	 17: Rel (   123,   322)  ->  Abs (   152,   454)
+	 18: Rel (    39,     0)  ->  Abs (   191,   454)
+	 19: Rel (    20,     0)  ->  Abs (   211,   454)
+	 20: Rel (     0,   -22)  ->  Abs (   211,   432)
+	 21: Rel (     0,   -19)  ->  Abs (   211,   413)
+	 22: Rel (   -40,  -102)  ->  Abs (   171,   311)
+	 23: Rel (   -56,  -147)  ->  Abs (   115,   164)
+	 24: Rel (     0,  -137)  ->  Abs (   115,    27)
+	 25: Rel (     0,  -106)  ->  Abs (   115,   -79)
+	 26: Rel (   131,  -163)  ->  Abs (   246,  -242)
+	 27: Rel (    96,     0)  ->  Abs (   342,  -242)
+	 28: Rel (   124,     0)  ->  Abs (   466,  -242)
+	 29: Rel (   204,   139)  ->  Abs (   670,  -103)
+	 30: Rel (     0,   119)  ->  Abs (   670,    16)
+	 31: Rel (     0,   125)  ->  Abs (   670,   141)
+	 32: Rel (   -64,   178)  ->  Abs (   606,   319)
+	 33: Rel (    74,   164)  ->  Abs (   680,   483)
+	 34: Rel (    39,   -74)  ->  Abs (   719,   409)
+	 35: Rel (    14,   -75)  ->  Abs (   733,   334)
+	 36: Rel (    13,    -2)  ->  Abs (   746,   332)
+	 37: Rel (    13,     0)  ->  Abs (   759,   332)
+	 38: Rel (   175,     0)  ->  Abs (   934,   332)
+	 39: Rel (    29,   248)  ->  Abs (   963,   580)
+	 40: Rel (     4,    37)  ->  Abs (   967,   617)
+	 41: Rel (    22,     0)  ->  Abs (   989,   617)
+	 42: Rel (    15,     0)  ->  Abs (  1004,   617)
+	 43: Rel (     0,   -37)  ->  Abs (  1004,   580)
+	 44: Rel (     0,  -249)  ->  Abs (  1004,   331)
+	 45: Rel (    64,  -208)  ->  Abs (  1068,   123)
+	 46: Rel (   106,     0)  ->  Abs (  1174,   123)
+	 47: Rel (    55,     0)  ->  Abs (  1229,   123)
+
+	Glyph 1117: off = 0x00034E78, len = 348
+	  numberOfContours:	1
+	  xMin:			43
+	  yMin:			-561
+	  xMax:			1229
+	  yMax:			339
+
+	EndPoints
+	---------
+	  0:  51
+
+	  Length of Instructions:	198
+	00000: PUSHW[2]             32   -32 
+	00005: NPUSHB      (57):    17    20    52   198    36     1   119    18   202     4 
+	                           200    49   216     4   214    47     5    21    24    21 
+	                            24    52    21    48    10    12    52    25    13    24 
+	                            39     2    70    39    86    13    84    39   102    13 
+	                           100    39   233    39   242    13     7    11    13    11 
+	                            39   201    39   217    39     4    13 
+	00064: PUSHW[1]            -24 
+	00067: PUSHB[4]             17    22    52    39 
+	00072: PUSHW[1]            -16 
+	00075: NPUSHB       (9):    24    27    52    39    13    34     7    25     0 
+	00086: NPUSHW      (10):   907     1     7   907    46    34   909    20    37   883 
+	00108: NPUSHB      (15):     0    16     1   240    16     1   112    16   224    16 
+	                             2    16    16     1    10 
+	00125: PUSHW[1]            878 
+	00128: NPUSHB      (13):    43    43    22     0     1    96    27   112    27     2 
+	                            27    27    31 
+	00143: PUSHW[4]            883    22     4   340 
+	00152: SCANCTRL   
+	00153: SCANTYPE   
+	00154: MDAP[rd]   
+	00155: MIRP[srp0,md,rd,1] 
+	00156: SHP[rp2,zp1] 
+	00157: MDAP[rd]   
+	00158: DELTAP1    
+	00159: MDAP[rd]   
+	00160: ALIGNRP    
+	00161: SRP2       
+	00162: IP         
+	00163: MDAP[rd]   
+	00164: MIRP[nrp0,md,rd,1] 
+	00165: SRP2       
+	00166: IP         
+	00167: MDAP[rd]   
+	00168: DELTAP1    
+	00169: DELTAP1    
+	00170: DELTAP2    
+	00171: MIRP[nrp0,md,rd,1] 
+	00172: SVTCA[y-axis] 
+	00173: MDAP[rd]   
+	00174: MIRP[nrp0,md,rd,1] 
+	00175: MDAP[rd]   
+	00176: MIRP[nrp0,md,rd,1] 
+	00177: MDAP[rd]   
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: MDAP[rd]   
+	00180: SRP1       
+	00181: SRP2       
+	00182: IP         
+	00183: IP         
+	00184: CALL       
+	00185: CALL       
+	00186: DELTAP1    
+	00187: DELTAP2    
+	00188: DELTAP3    
+	00189: IUP[y]     
+	00190: IUP[x]     
+	00191: SVTCA[x-axis] 
+	00192: CALL       
+	00193: CALL       
+	00194: DELTAP1    
+	00195: SVTCA[y-axis] 
+	00196: DELTAP1    
+	00197: CALL       
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short         On
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:        XDual         Y-Short X-Short On
+	 13:        XDual Rep-  2 Y-Short X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short         Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                               Off
+	 22:        XDual                         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:                      Y-Short X-Short On
+	 30:                      Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:        XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:        XDual         Y-Short X-Short Off
+	 36:  YDual               Y-Short         Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual               Y-Short X-Short On
+	 40:  YDual               Y-Short X-Short On
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:        XDual                 X-Short Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:        XDual         Y-Short X-Short On
+	 49:        XDual         Y-Short X-Short Off
+	 50:        XDual         Y-Short X-Short Off
+	 51:  YDual XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,   123)  ->  Abs (  1229,   123)
+	  1: Rel (     0,  -123)  ->  Abs (  1229,     0)
+	  2: Rel (  -131,     0)  ->  Abs (  1098,     0)
+	  3: Rel (   -62,     0)  ->  Abs (  1036,     0)
+	  4: Rel (   -64,    51)  ->  Abs (   972,    51)
+	  5: Rel (   -48,    85)  ->  Abs (   924,   136)
+	  6: Rel (   -45,    80)  ->  Abs (   879,   216)
+	  7: Rel (   -49,     0)  ->  Abs (   830,   216)
+	  8: Rel (   -61,     0)  ->  Abs (   769,   216)
+	  9: Rel (  -191,  -125)  ->  Abs (   578,    91)
+	 10: Rel (     0,   -57)  ->  Abs (   578,    34)
+	 11: Rel (     0,   -34)  ->  Abs (   578,     0)
+	 12: Rel (    94,   -17)  ->  Abs (   672,   -17)
+	 13: Rel (   143,   -26)  ->  Abs (   815,   -43)
+	 14: Rel (    81,   -36)  ->  Abs (   896,   -79)
+	 15: Rel (    46,   -65)  ->  Abs (   942,  -144)
+	 16: Rel (     0,   -44)  ->  Abs (   942,  -188)
+	 17: Rel (     0,   -51)  ->  Abs (   942,  -239)
+	 18: Rel (  -115,  -234)  ->  Abs (   827,  -473)
+	 19: Rel (  -274,   -88)  ->  Abs (   553,  -561)
+	 20: Rel (  -125,     0)  ->  Abs (   428,  -561)
+	 21: Rel (  -385,     0)  ->  Abs (    43,  -561)
+	 22: Rel (     0,   276)  ->  Abs (    43,  -285)
+	 23: Rel (     0,   100)  ->  Abs (    43,  -185)
+	 24: Rel (    96,   248)  ->  Abs (   139,    63)
+	 25: Rel (    37,    -1)  ->  Abs (   176,    62)
+	 26: Rel (    10,     0)  ->  Abs (   186,    62)
+	 27: Rel (     0,   -15)  ->  Abs (   186,    47)
+	 28: Rel (     0,   -11)  ->  Abs (   186,    36)
+	 29: Rel (   -35,   -89)  ->  Abs (   151,   -53)
+	 30: Rel (   -35,   -90)  ->  Abs (   116,  -143)
+	 31: Rel (     0,   -59)  ->  Abs (   116,  -202)
+	 32: Rel (     0,  -110)  ->  Abs (   116,  -312)
+	 33: Rel (   143,  -116)  ->  Abs (   259,  -428)
+	 34: Rel (   193,     0)  ->  Abs (   452,  -428)
+	 35: Rel (   124,    -1)  ->  Abs (   576,  -429)
+	 36: Rel (   296,    93)  ->  Abs (   872,  -336)
+	 37: Rel (     0,    76)  ->  Abs (   872,  -260)
+	 38: Rel (     0,    64)  ->  Abs (   872,  -196)
+	 39: Rel (   -89,    26)  ->  Abs (   783,  -170)
+	 40: Rel (  -144,    29)  ->  Abs (   639,  -141)
+	 41: Rel (   -58,    12)  ->  Abs (   581,  -129)
+	 42: Rel (   -51,    43)  ->  Abs (   530,   -86)
+	 43: Rel (     0,    32)  ->  Abs (   530,   -54)
+	 44: Rel (     0,   134)  ->  Abs (   530,    80)
+	 45: Rel (   216,   259)  ->  Abs (   746,   339)
+	 46: Rel (   126,     0)  ->  Abs (   872,   339)
+	 47: Rel (    44,     0)  ->  Abs (   916,   339)
+	 48: Rel (    54,  -100)  ->  Abs (   970,   239)
+	 49: Rel (    44,   -82)  ->  Abs (  1014,   157)
+	 50: Rel (    61,   -34)  ->  Abs (  1075,   123)
+	 51: Rel (    46,     0)  ->  Abs (  1121,   123)
+
+	Glyph 1118: off = 0x00034FD4, len = 300
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1196
+	  yMax:			967
+
+	EndPoints
+	---------
+	  0:  45
+
+	  Length of Instructions:	161
+	00000: NPUSHB      (23):   219    40   219    41     2   197    44   213    23   214 
+	                            44     3   117    44   198    17     2   212    41     1 
+	                            16    16    43 
+	00025: PUSHW[1]            -16 
+	00028: NPUSHB       (9):    43    43    21    19    16    16     0     1    21 
+	00039: PUSHW[4]            904    19     0   906 
+	00048: NPUSHB      (16):     1    19    19    10     1     1    27    10    15    33 
+	                            80    33     2    33    33    39 
+	00066: PUSHW[5]            909    27   925    11   907 
+	00077: PUSHB[6]             10    16    43     0    19    35 
+	00084: PUSHW[1]            876 
+	00087: NPUSHB      (12):    30    30     0    21    19    19    10     1     0    11 
+	                            10     5 
+	00101: PUSHW[1]            340 
+	00104: SCANCTRL   
+	00105: SCANTYPE   
+	00106: MDAP[rd]   
+	00107: ALIGNRP    
+	00108: MDAP[rd]   
+	00109: SHP[rp1,zp0] 
+	00110: SRP2       
+	00111: IP         
+	00112: MDAP[rd]   
+	00113: SHP[rp1,zp0] 
+	00114: SRP1       
+	00115: SHP[rp1,zp0] 
+	00116: MDAP[rd]   
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: SRP1       
+	00119: SRP2       
+	00120: IP         
+	00121: IP         
+	00122: SVTCA[y-axis] 
+	00123: MDAP[rd]   
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: MIAP[rd+ci] 
+	00126: MIRP[nrp0,md,rd,1] 
+	00127: SHP[rp1,zp0] 
+	00128: MDAP[rd]   
+	00129: DELTAP1    
+	00130: SRP1       
+	00131: SRP2       
+	00132: IP         
+	00133: MDAP[rd]   
+	00134: SRP1       
+	00135: IP         
+	00136: MDAP[rd]   
+	00137: SRP0       
+	00138: MIRP[nrp0,md,rd,1] 
+	00139: SRP0       
+	00140: MIRP[nrp0,nmd,rd,0] 
+	00141: RTHG       
+	00142: SRP1       
+	00143: SRP2       
+	00144: IP         
+	00145: MDAP[rd]   
+	00146: SRP1       
+	00147: SRP2       
+	00148: IP         
+	00149: MDAP[rd]   
+	00150: SVTCA[x-axis] 
+	00151: SHPIX      
+	00152: SHPIX      
+	00153: IUP[y]     
+	00154: IUP[x]     
+	00155: SVTCA[y-axis] 
+	00156: DELTAP2    
+	00157: DELTAP1    
+	00158: DELTAP1    
+	00159: SVTCA[x-axis] 
+	00160: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:                      Y-Short X-Short Off
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short On
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual                               On
+	 13:  YDual XDual                 X-Short Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual               Y-Short         Off
+	 19:  YDual                       X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual               Y-Short X-Short On
+	 36:  YDual       Rep-  2 Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:                      Y-Short X-Short On
+	 42:                      Y-Short X-Short Off
+	 43:                      Y-Short X-Short On
+	 44:        XDual         Y-Short X-Short Off
+	 45:                      Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1196,   397)  ->  Abs (  1196,   397)
+	  1: Rel (   -45,  -121)  ->  Abs (  1151,   276)
+	  2: Rel (   -96,     0)  ->  Abs (  1055,   276)
+	  3: Rel (   -51,     0)  ->  Abs (  1004,   276)
+	  4: Rel (  -145,   -15)  ->  Abs (   859,   261)
+	  5: Rel (   -84,   -39)  ->  Abs (   775,   222)
+	  6: Rel (  -109,   -74)  ->  Abs (   666,   148)
+	  7: Rel (  -107,   -71)  ->  Abs (   559,    77)
+	  8: Rel (  -144,   -77)  ->  Abs (   415,     0)
+	  9: Rel (  -238,     0)  ->  Abs (   177,     0)
+	 10: Rel (  -177,     0)  ->  Abs (     0,     0)
+	 11: Rel (     0,   123)  ->  Abs (     0,   123)
+	 12: Rel (   355,     0)  ->  Abs (   355,   123)
+	 13: Rel (    76,     0)  ->  Abs (   431,   123)
+	 14: Rel (   172,   103)  ->  Abs (   603,   226)
+	 15: Rel (   193,   116)  ->  Abs (   796,   342)
+	 16: Rel (    54,    14)  ->  Abs (   850,   356)
+	 17: Rel (   -67,    45)  ->  Abs (   783,   401)
+	 18: Rel (  -306,    78)  ->  Abs (   477,   479)
+	 19: Rel (   -94,     0)  ->  Abs (   383,   479)
+	 20: Rel (    30,    48)  ->  Abs (   413,   527)
+	 21: Rel (    23,    65)  ->  Abs (   436,   592)
+	 22: Rel (    64,     1)  ->  Abs (   500,   593)
+	 23: Rel (   129,    63)  ->  Abs (   629,   656)
+	 24: Rel (   109,   101)  ->  Abs (   738,   757)
+	 25: Rel (   105,   114)  ->  Abs (   843,   871)
+	 26: Rel (    89,    96)  ->  Abs (   932,   967)
+	 27: Rel (    41,     0)  ->  Abs (   973,   967)
+	 28: Rel (    56,     0)  ->  Abs (  1029,   967)
+	 29: Rel (    80,  -147)  ->  Abs (  1109,   820)
+	 30: Rel (     0,  -108)  ->  Abs (  1109,   712)
+	 31: Rel (     0,   -47)  ->  Abs (  1109,   665)
+	 32: Rel (    -8,   -44)  ->  Abs (  1101,   621)
+	 33: Rel (   -20,     0)  ->  Abs (  1081,   621)
+	 34: Rel (   -17,     0)  ->  Abs (  1064,   621)
+	 35: Rel (    -3,    22)  ->  Abs (  1061,   643)
+	 36: Rel (   -12,    87)  ->  Abs (  1049,   730)
+	 37: Rel (   -11,    60)  ->  Abs (  1038,   790)
+	 38: Rel (   -36,    44)  ->  Abs (  1002,   834)
+	 39: Rel (   -29,     0)  ->  Abs (   973,   834)
+	 40: Rel (   -64,     0)  ->  Abs (   909,   834)
+	 41: Rel (   -91,  -108)  ->  Abs (   818,   726)
+	 42: Rel (  -109,  -128)  ->  Abs (   709,   598)
+	 43: Rel (   -80,   -35)  ->  Abs (   629,   563)
+	 44: Rel (   115,   -60)  ->  Abs (   744,   503)
+	 45: Rel (   332,  -104)  ->  Abs (  1076,   399)
+
+	Glyph 1119: off = 0x00035100, len = 228
+	  numberOfContours:	1
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1108
+	  yMax:			832
+
+	EndPoints
+	---------
+	  0:  30
+
+	  Length of Instructions:	130
+	00000: PUSHW[2]              8   -48 
+	00005: NPUSHB      (19):    18    22    52   118     2   152    12     2    92    25 
+	                           109    25     2   250    28     1    24    12     9 
+	00026: PUSHW[1]            905 
+	00029: NPUSHB      (14):    10    64    14    18    52    10    10    18     2     0 
+	                           223     4     1     4 
+	00045: PUSHW[5]            910    29   926    19   907 
+	00056: PUSHB[3]             18    24     7 
+	00060: PUSHW[1]            883 
+	00063: NPUSHB      (21):     0    26    16    26     2    26    26    18    10    10 
+	                             9     9    18     2     2    48     0     1     0    19 
+	                            18 
+	00086: MDAP[rd]   
+	00087: ALIGNRP    
+	00088: MDAP[rd]   
+	00089: DELTAP1    
+	00090: SHP[rp1,zp0] 
+	00091: RTHG       
+	00092: MDAP[rd]   
+	00093: RTG        
+	00094: SRP1       
+	00095: IP         
+	00096: MDAP[rd]   
+	00097: SHP[rp1,zp0] 
+	00098: RTHG       
+	00099: MDAP[rd]   
+	00100: RTG        
+	00101: SRP1       
+	00102: IP         
+	00103: MDAP[rd]   
+	00104: DELTAP1    
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: IP         
+	00107: SVTCA[y-axis] 
+	00108: MDAP[rd]   
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: MIAP[rd+ci] 
+	00111: MIRP[nrp0,md,rd,1] 
+	00112: DELTAP2    
+	00113: IP         
+	00114: SHP[rp2,zp1] 
+	00115: SRP1       
+	00116: SHP[rp1,zp0] 
+	00117: MDAP[rd]   
+	00118: CALL       
+	00119: MIRP[nrp0,md,rd,1] 
+	00120: SHP[rp1,zp0] 
+	00121: SHP[rp1,zp0] 
+	00122: IUP[y]     
+	00123: IUP[x]     
+	00124: SVTCA[x-axis] 
+	00125: DELTAP2    
+	00126: DELTAP1    
+	00127: SVTCA[y-axis] 
+	00128: DELTAP1    
+	00129: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                      Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                      Y-Short         On
+	 10:                      Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short On
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual                               On
+	 21:  YDual XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:        XDual                 X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1108,   748)  ->  Abs (  1108,   748)
+	  1: Rel (    -5,   -40)  ->  Abs (  1103,   708)
+	  2: Rel (   -42,   -71)  ->  Abs (  1061,   637)
+	  3: Rel (   -46,    60)  ->  Abs (  1015,   697)
+	  4: Rel (   -97,     0)  ->  Abs (   918,   697)
+	  5: Rel (   -84,     0)  ->  Abs (   834,   697)
+	  6: Rel (  -162,  -160)  ->  Abs (   672,   537)
+	  7: Rel (     0,  -104)  ->  Abs (   672,   433)
+	  8: Rel (     0,  -158)  ->  Abs (   672,   275)
+	  9: Rel (   293,  -105)  ->  Abs (   965,   170)
+	 10: Rel (   -58,  -115)  ->  Abs (   907,    55)
+	 11: Rel (  -100,    60)  ->  Abs (   807,   115)
+	 12: Rel (   -78,     0)  ->  Abs (   729,   115)
+	 13: Rel (   -78,     0)  ->  Abs (   651,   115)
+	 14: Rel (  -115,   -60)  ->  Abs (   536,    55)
+	 15: Rel (   -67,   -35)  ->  Abs (   469,    20)
+	 16: Rel (  -132,   -20)  ->  Abs (   337,     0)
+	 17: Rel (  -156,     0)  ->  Abs (   181,     0)
+	 18: Rel (  -181,     0)  ->  Abs (     0,     0)
+	 19: Rel (     0,   123)  ->  Abs (     0,   123)
+	 20: Rel (   353,     0)  ->  Abs (   353,   123)
+	 21: Rel (   106,     0)  ->  Abs (   459,   123)
+	 22: Rel (    75,    32)  ->  Abs (   534,   155)
+	 23: Rel (    90,    40)  ->  Abs (   624,   195)
+	 24: Rel (    35,    10)  ->  Abs (   659,   205)
+	 25: Rel (   -61,    92)  ->  Abs (   598,   297)
+	 26: Rel (     0,   151)  ->  Abs (   598,   448)
+	 27: Rel (     0,   119)  ->  Abs (   598,   567)
+	 28: Rel (   250,   265)  ->  Abs (   848,   832)
+	 29: Rel (   120,     0)  ->  Abs (   968,   832)
+	 30: Rel (   103,     0)  ->  Abs (  1071,   832)
+
+	Glyph 1120: off = 0x000351E4, len = 528
+	  numberOfContours:	3
+	  xMin:			327
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1709
+
+	EndPoints
+	---------
+	  0:  9
+	  1:  32
+	  2:  55
+
+	  Length of Instructions:	366
+	00000: NPUSHB      (28):     9    37    26    37     2    32    44    19    27    52 
+	                            11    32    11    16    52    20    27    21    28    26 
+	                            32     3    14    64    17    30    52    13 
+	00030: PUSHW[1]            -64 
+	00033: PUSHB[4]             11    16    52    11 
+	00038: PUSHW[1]            -64 
+	00041: NPUSHB       (9):    12    16    52    36    64     9    19    52     5 
+	00052: PUSHW[4]            936     9     4   936 
+	00061: PUSHB[4]             16     9     1     9 
+	00066: PUSHW[1]            935 
+	00069: NPUSHB      (22):     0    64    25    37    52     0    64     9    48    52 
+	                             0     0    18    13    29    31    32    11    10    22 
+	                            22    18 
+	00093: PUSHW[1]            897 
+	00096: NPUSHB      (20):    24    64    47    49    52    24    64    41    43    52 
+	                            95    24     1     0    24     1    24    24    10    31 
+	00118: PUSHW[1]            898 
+	00121: PUSHB[6]             95    32   144    32     2    32 
+	00128: PUSHW[1]            -64 
+	00131: PUSHB[4]             28    30    52    32 
+	00136: PUSHW[1]            -64 
+	00139: NPUSHB      (18):     9    16    52    32    32    15    10     1    10    64 
+	                             9    14    52    10    10    45    54    55 
+	00159: PUSHW[4]            907    34    33   858 
+	00168: NPUSHB      (13):    44    45     7    64    18    26    52     7    64     9 
+	                            11    52     7 
+	00183: PUSHW[1]            934 
+	00186: NPUSHB      (19):   223     2     1     2     2    15    13    32    22    22 
+	                             0    20    16    20     2    20    20    32    26 
+	00207: PUSHW[1]            875 
+	00210: NPUSHB      (33):    47    15     1    15    15    11    10    31   175    32 
+	                             1    32    64    11    11    52    32    64     9    11 
+	                            52    32    32    32    10     1    10    10    44    38 
+	                            45    45    47 
+	00245: PUSHW[1]            887 
+	00248: NPUSHB       (9):    16    38   192    38     2    38    55    33     4 
+	00259: PUSHW[1]            340 
+	00262: SCANCTRL   
+	00263: SCANTYPE   
+	00264: MDAP[rd]   
+	00265: ALIGNRP    
+	00266: MDAP[rd]   
+	00267: DELTAP1    
+	00268: MIRP[nrp0,md,rd,1] 
+	00269: RTHG       
+	00270: IP         
+	00271: MDAP[rd]   
+	00272: SRP1       
+	00273: SHP[rp1,zp0] 
+	00274: SHP[rp1,zp0] 
+	00275: RTG        
+	00276: MDAP[rd]   
+	00277: DELTAP1    
+	00278: SHP[rp1,zp0] 
+	00279: MDAP[rd]   
+	00280: CALL       
+	00281: CALL       
+	00282: DELTAP1    
+	00283: ALIGNRP    
+	00284: SRP1       
+	00285: SHP[rp1,zp0] 
+	00286: SHP[rp1,zp0] 
+	00287: MDAP[rd]   
+	00288: DELTAP1    
+	00289: MIRP[srp0,md,rd,1] 
+	00290: SRP1       
+	00291: IP         
+	00292: MDAP[rd]   
+	00293: DELTAP1    
+	00294: SHP[rp1,zp0] 
+	00295: RTHG       
+	00296: MDAP[rd]   
+	00297: SRP1       
+	00298: IP         
+	00299: SRP1       
+	00300: SHP[rp1,zp0] 
+	00301: RTG        
+	00302: MDAP[rd]   
+	00303: DELTAP3    
+	00304: MIRP[nrp0,md,rd,1] 
+	00305: CALL       
+	00306: CALL       
+	00307: SVTCA[y-axis] 
+	00308: MDAP[rd]   
+	00309: SHP[rp1,zp0] 
+	00310: MIAP[rd+ci] 
+	00311: ALIGNRP    
+	00312: MIRP[srp0,md,rd,1] 
+	00313: ALIGNRP    
+	00314: SRP1       
+	00315: SHP[rp1,zp0] 
+	00316: MDAP[rd]   
+	00317: CALL       
+	00318: DELTAP1    
+	00319: SHP[rp1,zp0] 
+	00320: MDAP[rd]   
+	00321: CALL       
+	00322: CALL       
+	00323: DELTAP3    
+	00324: MIRP[nrp0,md,rd,1] 
+	00325: SRP1       
+	00326: SHP[rp1,zp0] 
+	00327: MDAP[rd]   
+	00328: DELTAP1    
+	00329: DELTAP3    
+	00330: CALL       
+	00331: CALL       
+	00332: MIRP[nrp0,md,rd,1] 
+	00333: SHP[rp1,zp0] 
+	00334: RUTG       
+	00335: MDAP[rd]   
+	00336: RTG        
+	00337: SRP1       
+	00338: SHP[rp1,zp0] 
+	00339: SRP1       
+	00340: SRP2       
+	00341: IP         
+	00342: IP         
+	00343: SRP1       
+	00344: SHP[rp1,zp0] 
+	00345: MDAP[rd]   
+	00346: CALL       
+	00347: CALL       
+	00348: MIRP[nrp0,nmd,rd,0] 
+	00349: DELTAP1    
+	00350: MIRP[nrp0,md,rd,1] 
+	00351: SRP0       
+	00352: MIRP[nrp0,md,rd,1] 
+	00353: IUP[y]     
+	00354: IUP[x]     
+	00355: SVTCA[x-axis] 
+	00356: CALL       
+	00357: CALL       
+	00358: CALL       
+	00359: CALL       
+	00360: SVTCA[y-axis] 
+	00361: DELTAP3    
+	00362: CALL       
+	00363: CALL       
+	00364: SVTCA[x-axis] 
+	00365: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                      Y-Short X-Short On
+	 10:                              X-Short On
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:                      Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:        XDual         Y-Short         On
+	 33:                                      On
+	 34:  YDual                               On
+	 35:  YDual                       X-Short Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual               Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual XDual         Y-Short X-Short On
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual               Y-Short X-Short On
+	 45:  YDual XDual         Y-Short X-Short On
+	 46:        XDual         Y-Short X-Short Off
+	 47:        XDual         Y-Short         On
+	 48:        XDual         Y-Short         Off
+	 49:                      Y-Short X-Short On
+	 50:                      Y-Short X-Short Off
+	 51:        XDual         Y-Short         On
+	 52:        XDual         Y-Short         Off
+	 53:        XDual         Y-Short X-Short Off
+	 54:  YDual XDual                 X-Short On
+	 55:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   338,  1549)  ->  Abs (   338,  1549)
+	  1: Rel (   -11,     0)  ->  Abs (   327,  1549)
+	  2: Rel (     0,    24)  ->  Abs (   327,  1573)
+	  3: Rel (     0,    25)  ->  Abs (   327,  1598)
+	  4: Rel (    13,     6)  ->  Abs (   340,  1604)
+	  5: Rel (   248,   105)  ->  Abs (   588,  1709)
+	  6: Rel (    14,     0)  ->  Abs (   602,  1709)
+	  7: Rel (     0,   -21)  ->  Abs (   602,  1688)
+	  8: Rel (     0,   -26)  ->  Abs (   602,  1662)
+	  9: Rel (   -14,    -6)  ->  Abs (   588,  1656)
+	 10: Rel (  -187,  -507)  ->  Abs (   401,  1149)
+	 11: Rel (     8,    43)  ->  Abs (   409,  1192)
+	 12: Rel (    46,    34)  ->  Abs (   455,  1226)
+	 13: Rel (    30,    36)  ->  Abs (   485,  1262)
+	 14: Rel (   -98,     6)  ->  Abs (   387,  1268)
+	 15: Rel (     0,    84)  ->  Abs (   387,  1352)
+	 16: Rel (     0,    58)  ->  Abs (   387,  1410)
+	 17: Rel (    78,   112)  ->  Abs (   465,  1522)
+	 18: Rel (    51,     0)  ->  Abs (   516,  1522)
+	 19: Rel (    80,     0)  ->  Abs (   596,  1522)
+	 20: Rel (     0,   -73)  ->  Abs (   596,  1449)
+	 21: Rel (     0,   -24)  ->  Abs (   596,  1425)
+	 22: Rel (   -12,   -24)  ->  Abs (   584,  1401)
+	 23: Rel (   -73,    53)  ->  Abs (   511,  1454)
+	 24: Rel (   -32,     0)  ->  Abs (   479,  1454)
+	 25: Rel (   -51,     0)  ->  Abs (   428,  1454)
+	 26: Rel (     0,   -43)  ->  Abs (   428,  1411)
+	 27: Rel (     0,   -35)  ->  Abs (   428,  1376)
+	 28: Rel (   105,   -65)  ->  Abs (   533,  1311)
+	 29: Rel (    40,     0)  ->  Abs (   573,  1311)
+	 30: Rel (     9,     0)  ->  Abs (   582,  1311)
+	 31: Rel (    79,    22)  ->  Abs (   661,  1333)
+	 32: Rel (     0,   -73)  ->  Abs (   661,  1260)
+	 33: Rel (   568, -1260)  ->  Abs (  1229,     0)
+	 34: Rel (  -402,     0)  ->  Abs (   827,     0)
+	 35: Rel (  -127,     0)  ->  Abs (   700,     0)
+	 36: Rel (  -105,    26)  ->  Abs (   595,    26)
+	 37: Rel (   -55,   123)  ->  Abs (   540,   149)
+	 38: Rel (     0,   105)  ->  Abs (   540,   254)
+	 39: Rel (     0,    69)  ->  Abs (   540,   323)
+	 40: Rel (     5,   131)  ->  Abs (   545,   454)
+	 41: Rel (     5,   130)  ->  Abs (   550,   584)
+	 42: Rel (     0,    77)  ->  Abs (   550,   661)
+	 43: Rel (     0,   219)  ->  Abs (   550,   880)
+	 44: Rel (   -36,    94)  ->  Abs (   514,   974)
+	 45: Rel (    82,   107)  ->  Abs (   596,  1081)
+	 46: Rel (    32,   -91)  ->  Abs (   628,   990)
+	 47: Rel (     0,  -218)  ->  Abs (   628,   772)
+	 48: Rel (     0,  -136)  ->  Abs (   628,   636)
+	 49: Rel (    -9,  -178)  ->  Abs (   619,   458)
+	 50: Rel (    -5,   -98)  ->  Abs (   614,   360)
+	 51: Rel (     0,   -53)  ->  Abs (   614,   307)
+	 52: Rel (     0,   -86)  ->  Abs (   614,   221)
+	 53: Rel (    46,   -98)  ->  Abs (   660,   123)
+	 54: Rel (    69,     0)  ->  Abs (   729,   123)
+	 55: Rel (   500,     0)  ->  Abs (  1229,   123)
+
+	Glyph 1121: off = 0x000353F4, len = 608
+	  numberOfContours:	4
+	  xMin:			327
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1869
+
+	EndPoints
+	---------
+	  0:  9
+	  1:  19
+	  2:  42
+	  3:  65
+
+	  Length of Instructions:	419
+	00000: NPUSHB      (28):    42    44    19    27    52    21    32    11    16    52 
+	                            19    37    22    38    26    42     3    46    64     9 
+	                            19    52    24    64    17    30    52    23 
+	00030: PUSHW[1]            -64 
+	00033: PUSHB[4]             11    16    52    21 
+	00038: PUSHW[1]            -64 
+	00041: NPUSHB      (11):    12    16    52     9    47    25    47   170    46     3 
+	                             5 
+	00054: PUSHW[4]            936     9     4   936 
+	00063: PUSHB[4]             16     9     1     9 
+	00068: PUSHW[1]            935 
+	00071: NPUSHB      (13):     0    64    42    48    52     0    64    25    29    52 
+	                             0     0    15 
+	00086: PUSHW[4]            936    19    14   936 
+	00095: PUSHB[4]             16    19     1    19 
+	00100: PUSHW[1]            935 
+	00103: NPUSHB      (17):    10    64     9    48    52    10    10    28    23    39 
+	                            41    42    21    20    32    32    28 
+	00122: PUSHW[1]            897 
+	00125: NPUSHB      (20):    34    64    47    49    52    34    64    41    43    52 
+	                            95    34     1     0    34     1    34    34    20    41 
+	00147: PUSHW[1]            898 
+	00150: PUSHB[4]            144    42     1    42 
+	00155: PUSHW[1]            -64 
+	00158: PUSHB[4]             28    30    52    42 
+	00163: PUSHW[1]            -64 
+	00166: NPUSHB      (18):     9    16    52    42    42    15    20     1    20    64 
+	                             9    14    52    20    20    55    64    65 
+	00186: PUSHW[4]            907    44    43   858 
+	00195: NPUSHB      (13):    54    55     7    64    19    26    52     7    64     9 
+	                            11    52     7 
+	00210: PUSHW[1]            934 
+	00213: NPUSHB      (13):     2     2    17    64    19    26    52    17    64     9 
+	                            11    52    17 
+	00228: PUSHW[1]            934 
+	00231: NPUSHB      (16):    12    12    25    23    42    32    32     0    30    16 
+	                            30     2    30    30    42    36 
+	00249: PUSHW[1]            875 
+	00252: NPUSHB      (33):    47    25     1    25    25    21    20    41   175    42 
+	                             1    42    64    11    11    52    42    64     9    11 
+	                            52    42    42    32    20     1    20    20    54    48 
+	                            55    55    57 
+	00287: PUSHW[1]            887 
+	00290: NPUSHB       (9):    16    48   192    48     2    48    43    65     4 
+	00301: PUSHW[1]            340 
+	00304: SCANCTRL   
+	00305: SCANTYPE   
+	00306: MDAP[rd]   
+	00307: ALIGNRP    
+	00308: MDAP[rd]   
+	00309: DELTAP1    
+	00310: MIRP[nrp0,md,rd,1] 
+	00311: RTHG       
+	00312: IP         
+	00313: MDAP[rd]   
+	00314: SRP1       
+	00315: SHP[rp1,zp0] 
+	00316: SHP[rp1,zp0] 
+	00317: RTG        
+	00318: MDAP[rd]   
+	00319: DELTAP1    
+	00320: SHP[rp1,zp0] 
+	00321: MDAP[rd]   
+	00322: CALL       
+	00323: CALL       
+	00324: DELTAP1    
+	00325: ALIGNRP    
+	00326: SRP1       
+	00327: SHP[rp1,zp0] 
+	00328: SHP[rp1,zp0] 
+	00329: MDAP[rd]   
+	00330: DELTAP1    
+	00331: MIRP[srp0,md,rd,1] 
+	00332: SRP1       
+	00333: IP         
+	00334: MDAP[rd]   
+	00335: DELTAP1    
+	00336: SHP[rp1,zp0] 
+	00337: RTHG       
+	00338: MDAP[rd]   
+	00339: SRP1       
+	00340: IP         
+	00341: SRP1       
+	00342: SHP[rp1,zp0] 
+	00343: RTG        
+	00344: MDAP[rd]   
+	00345: MIRP[nrp0,md,rd,1] 
+	00346: CALL       
+	00347: CALL       
+	00348: SHP[rp1,zp0] 
+	00349: MDAP[rd]   
+	00350: MIRP[nrp0,md,rd,1] 
+	00351: CALL       
+	00352: CALL       
+	00353: SVTCA[y-axis] 
+	00354: MDAP[rd]   
+	00355: SHP[rp1,zp0] 
+	00356: MIAP[rd+ci] 
+	00357: ALIGNRP    
+	00358: MIRP[srp0,md,rd,1] 
+	00359: ALIGNRP    
+	00360: SRP1       
+	00361: SHP[rp1,zp0] 
+	00362: MDAP[rd]   
+	00363: CALL       
+	00364: DELTAP1    
+	00365: SHP[rp1,zp0] 
+	00366: MDAP[rd]   
+	00367: CALL       
+	00368: CALL       
+	00369: DELTAP3    
+	00370: MIRP[nrp0,md,rd,1] 
+	00371: SRP1       
+	00372: SHP[rp1,zp0] 
+	00373: MDAP[rd]   
+	00374: DELTAP1    
+	00375: DELTAP3    
+	00376: CALL       
+	00377: CALL       
+	00378: MIRP[nrp0,md,rd,1] 
+	00379: SHP[rp1,zp0] 
+	00380: RUTG       
+	00381: MDAP[rd]   
+	00382: RTG        
+	00383: SRP1       
+	00384: SHP[rp1,zp0] 
+	00385: SRP1       
+	00386: SRP2       
+	00387: IP         
+	00388: IP         
+	00389: SRP1       
+	00390: SHP[rp1,zp0] 
+	00391: MDAP[rd]   
+	00392: CALL       
+	00393: MIRP[nrp0,nmd,rd,0] 
+	00394: DELTAP1    
+	00395: MIRP[nrp0,md,rd,1] 
+	00396: SRP0       
+	00397: MIRP[srp0,md,rd,1] 
+	00398: SHP[rp2,zp1] 
+	00399: MDAP[rd]   
+	00400: CALL       
+	00401: CALL       
+	00402: MIRP[nrp0,nmd,rd,0] 
+	00403: DELTAP1    
+	00404: MIRP[nrp0,md,rd,1] 
+	00405: SRP0       
+	00406: MIRP[nrp0,md,rd,1] 
+	00407: IUP[y]     
+	00408: IUP[x]     
+	00409: SVTCA[x-axis] 
+	00410: DELTAP1    
+	00411: CALL       
+	00412: CALL       
+	00413: CALL       
+	00414: CALL       
+	00415: SVTCA[y-axis] 
+	00416: DELTAP3    
+	00417: CALL       
+	00418: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:                      Y-Short X-Short On
+	 10:                              X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short On
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:                      Y-Short X-Short On
+	 20:                              X-Short On
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short On
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:        XDual         Y-Short X-Short Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:        XDual         Y-Short         On
+	 43:                                      On
+	 44:  YDual                               On
+	 45:  YDual                       X-Short Off
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual               Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short         On
+	 49:  YDual XDual         Y-Short         Off
+	 50:  YDual XDual         Y-Short X-Short On
+	 51:  YDual XDual         Y-Short X-Short Off
+	 52:  YDual XDual         Y-Short         On
+	 53:  YDual XDual         Y-Short         Off
+	 54:  YDual               Y-Short X-Short On
+	 55:  YDual XDual         Y-Short X-Short On
+	 56:        XDual         Y-Short X-Short Off
+	 57:        XDual         Y-Short         On
+	 58:        XDual         Y-Short         Off
+	 59:                      Y-Short X-Short On
+	 60:                      Y-Short X-Short Off
+	 61:        XDual         Y-Short         On
+	 62:        XDual         Y-Short         Off
+	 63:        XDual         Y-Short X-Short Off
+	 64:  YDual XDual                 X-Short On
+	 65:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   338,  1709)  ->  Abs (   338,  1709)
+	  1: Rel (   -11,     0)  ->  Abs (   327,  1709)
+	  2: Rel (     0,    24)  ->  Abs (   327,  1733)
+	  3: Rel (     0,    25)  ->  Abs (   327,  1758)
+	  4: Rel (    13,     6)  ->  Abs (   340,  1764)
+	  5: Rel (   248,   105)  ->  Abs (   588,  1869)
+	  6: Rel (    14,     0)  ->  Abs (   602,  1869)
+	  7: Rel (     0,   -22)  ->  Abs (   602,  1847)
+	  8: Rel (     0,   -28)  ->  Abs (   602,  1819)
+	  9: Rel (   -14,    -6)  ->  Abs (   588,  1813)
+	 10: Rel (  -250,  -264)  ->  Abs (   338,  1549)
+	 11: Rel (   -11,     0)  ->  Abs (   327,  1549)
+	 12: Rel (     0,    24)  ->  Abs (   327,  1573)
+	 13: Rel (     0,    25)  ->  Abs (   327,  1598)
+	 14: Rel (    13,     6)  ->  Abs (   340,  1604)
+	 15: Rel (   248,   105)  ->  Abs (   588,  1709)
+	 16: Rel (    14,     0)  ->  Abs (   602,  1709)
+	 17: Rel (     0,   -21)  ->  Abs (   602,  1688)
+	 18: Rel (     0,   -26)  ->  Abs (   602,  1662)
+	 19: Rel (   -14,    -6)  ->  Abs (   588,  1656)
+	 20: Rel (  -187,  -507)  ->  Abs (   401,  1149)
+	 21: Rel (     8,    43)  ->  Abs (   409,  1192)
+	 22: Rel (    46,    34)  ->  Abs (   455,  1226)
+	 23: Rel (    30,    36)  ->  Abs (   485,  1262)
+	 24: Rel (   -98,     6)  ->  Abs (   387,  1268)
+	 25: Rel (     0,    84)  ->  Abs (   387,  1352)
+	 26: Rel (     0,    58)  ->  Abs (   387,  1410)
+	 27: Rel (    78,   112)  ->  Abs (   465,  1522)
+	 28: Rel (    51,     0)  ->  Abs (   516,  1522)
+	 29: Rel (    80,     0)  ->  Abs (   596,  1522)
+	 30: Rel (     0,   -73)  ->  Abs (   596,  1449)
+	 31: Rel (     0,   -24)  ->  Abs (   596,  1425)
+	 32: Rel (   -12,   -24)  ->  Abs (   584,  1401)
+	 33: Rel (   -73,    53)  ->  Abs (   511,  1454)
+	 34: Rel (   -32,     0)  ->  Abs (   479,  1454)
+	 35: Rel (   -51,     0)  ->  Abs (   428,  1454)
+	 36: Rel (     0,   -43)  ->  Abs (   428,  1411)
+	 37: Rel (     0,   -35)  ->  Abs (   428,  1376)
+	 38: Rel (   105,   -65)  ->  Abs (   533,  1311)
+	 39: Rel (    40,     0)  ->  Abs (   573,  1311)
+	 40: Rel (     9,     0)  ->  Abs (   582,  1311)
+	 41: Rel (    79,    22)  ->  Abs (   661,  1333)
+	 42: Rel (     0,   -73)  ->  Abs (   661,  1260)
+	 43: Rel (   568, -1260)  ->  Abs (  1229,     0)
+	 44: Rel (  -402,     0)  ->  Abs (   827,     0)
+	 45: Rel (  -127,     0)  ->  Abs (   700,     0)
+	 46: Rel (  -105,    26)  ->  Abs (   595,    26)
+	 47: Rel (   -55,   123)  ->  Abs (   540,   149)
+	 48: Rel (     0,   105)  ->  Abs (   540,   254)
+	 49: Rel (     0,    69)  ->  Abs (   540,   323)
+	 50: Rel (     5,   131)  ->  Abs (   545,   454)
+	 51: Rel (     5,   130)  ->  Abs (   550,   584)
+	 52: Rel (     0,    77)  ->  Abs (   550,   661)
+	 53: Rel (     0,   219)  ->  Abs (   550,   880)
+	 54: Rel (   -36,    94)  ->  Abs (   514,   974)
+	 55: Rel (    82,   107)  ->  Abs (   596,  1081)
+	 56: Rel (    32,   -91)  ->  Abs (   628,   990)
+	 57: Rel (     0,  -218)  ->  Abs (   628,   772)
+	 58: Rel (     0,  -136)  ->  Abs (   628,   636)
+	 59: Rel (    -9,  -178)  ->  Abs (   619,   458)
+	 60: Rel (    -5,   -98)  ->  Abs (   614,   360)
+	 61: Rel (     0,   -53)  ->  Abs (   614,   307)
+	 62: Rel (     0,   -86)  ->  Abs (   614,   221)
+	 63: Rel (    46,   -98)  ->  Abs (   660,   123)
+	 64: Rel (    69,     0)  ->  Abs (   729,   123)
+	 65: Rel (   500,     0)  ->  Abs (  1229,   123)
+
+	Glyph 1122: off = 0x00035654, len = 636
+	  numberOfContours:	4
+	  xMin:			344
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1895
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  20
+	  2:  43
+	  3:  66
+
+	  Length of Instructions:	447
+	00000: NPUSHB      (58):    10    48    26    48   169    47     3    22     1    20 
+	                            38    21    39    26    43    35     1    53     1     6 
+	                             8    24    12    25    52    18    24    25    33    52 
+	                           216     2   233     2   250     2     3    43    44    19 
+	                            27    52    22    32    11    16    52    47    64     9 
+	                            19    52    25    64    17    30    52    24 
+	00060: PUSHW[1]            -64 
+	00063: PUSHB[4]             11    16    52    22 
+	00068: PUSHW[1]            -64 
+	00071: PUSHB[4]             12    16    52     9 
+	00076: PUSHW[1]            898 
+	00079: NPUSHB      (14):    19    64    38    44    52    15    19    31    19     2 
+	                             0    19     1    19 
+	00095: PUSHW[1]            -64 
+	00098: NPUSHB      (11):     9    11    52    19    19   112    14   128    14     2 
+	                            14 
+	00111: PUSHW[1]            901 
+	00114: NPUSHB      (22):     3    64    29    37    52     3    64     9    12    52 
+	                             3     3    29    24    40    42    43    22    21    33 
+	                            33    29 
+	00138: PUSHW[1]            897 
+	00141: NPUSHB      (20):    35    64    47    49    52    35    64    41    43    52 
+	                            95    35     1     0    35     1    35    35    21    42 
+	00163: PUSHW[1]            898 
+	00166: PUSHB[4]            144    43     1    43 
+	00171: PUSHW[1]            -64 
+	00174: PUSHB[4]             28    30    52    43 
+	00179: PUSHW[1]            -64 
+	00182: NPUSHB      (18):     9    16    52    43    43    15    21     1    21    64 
+	                             9    14    52    21    21    56    65    66 
+	00202: PUSHW[4]            907    45    44   858 
+	00211: PUSHB[3]             55    56     0 
+	00215: PUSHW[3]            878    16   -64 
+	00222: NPUSHB      (15):    20    24    52    16    64    42    45    52   128    16 
+	                             1     0    16     1    16 
+	00239: PUSHW[1]            -64 
+	00242: PUSHB[6]              9    11    52    16    16    12 
+	00249: PUSHW[1]            932 
+	00252: NPUSHB      (19):    48     6     1     6     6    26    24    43    33    33 
+	                             0    31    16    31     2    31    31    43    37 
+	00273: PUSHW[1]            875 
+	00276: NPUSHB      (33):    47    26     1    26    26    22    21    42   175    43 
+	                             1    43    64    11    11    52    43    64     9    11 
+	                            52    43    43    32    21     1    21    21    55    49 
+	                            56    56    58 
+	00311: PUSHW[1]            887 
+	00314: NPUSHB       (9):    16    49   192    49     2    49    44    66     4 
+	00325: PUSHW[1]            340 
+	00328: SCANCTRL   
+	00329: SCANTYPE   
+	00330: MDAP[rd]   
+	00331: ALIGNRP    
+	00332: MDAP[rd]   
+	00333: DELTAP1    
+	00334: MIRP[nrp0,md,rd,1] 
+	00335: RTHG       
+	00336: IP         
+	00337: MDAP[rd]   
+	00338: SRP1       
+	00339: SHP[rp1,zp0] 
+	00340: SHP[rp1,zp0] 
+	00341: RTG        
+	00342: MDAP[rd]   
+	00343: DELTAP1    
+	00344: SHP[rp1,zp0] 
+	00345: MDAP[rd]   
+	00346: CALL       
+	00347: CALL       
+	00348: DELTAP1    
+	00349: ALIGNRP    
+	00350: SRP1       
+	00351: SHP[rp1,zp0] 
+	00352: SHP[rp1,zp0] 
+	00353: MDAP[rd]   
+	00354: DELTAP1    
+	00355: MIRP[srp0,md,rd,1] 
+	00356: SRP1       
+	00357: IP         
+	00358: MDAP[rd]   
+	00359: DELTAP1    
+	00360: SHP[rp1,zp0] 
+	00361: RTHG       
+	00362: MDAP[rd]   
+	00363: SRP1       
+	00364: IP         
+	00365: SRP1       
+	00366: SHP[rp1,zp0] 
+	00367: RTG        
+	00368: MDAP[rd]   
+	00369: DELTAP1    
+	00370: MIRP[srp0,md,rd,1] 
+	00371: SHP[rp2,zp1] 
+	00372: MDAP[rd]   
+	00373: CALL       
+	00374: DELTAP1    
+	00375: DELTAP2    
+	00376: CALL       
+	00377: CALL       
+	00378: MIRP[nrp0,md,rd,1] 
+	00379: SVTCA[y-axis] 
+	00380: MDAP[rd]   
+	00381: SHP[rp1,zp0] 
+	00382: MIAP[rd+ci] 
+	00383: ALIGNRP    
+	00384: MIRP[srp0,md,rd,1] 
+	00385: ALIGNRP    
+	00386: SRP1       
+	00387: SHP[rp1,zp0] 
+	00388: MDAP[rd]   
+	00389: CALL       
+	00390: DELTAP1    
+	00391: SHP[rp1,zp0] 
+	00392: MDAP[rd]   
+	00393: CALL       
+	00394: CALL       
+	00395: DELTAP3    
+	00396: MIRP[nrp0,md,rd,1] 
+	00397: SRP1       
+	00398: SHP[rp1,zp0] 
+	00399: MDAP[rd]   
+	00400: DELTAP1    
+	00401: DELTAP3    
+	00402: CALL       
+	00403: CALL       
+	00404: MIRP[nrp0,md,rd,1] 
+	00405: SHP[rp1,zp0] 
+	00406: RUTG       
+	00407: MDAP[rd]   
+	00408: RTG        
+	00409: SRP1       
+	00410: SHP[rp1,zp0] 
+	00411: SRP1       
+	00412: SRP2       
+	00413: IP         
+	00414: IP         
+	00415: SRP1       
+	00416: SHP[rp1,zp0] 
+	00417: MDAP[rd]   
+	00418: CALL       
+	00419: CALL       
+	00420: MIRP[srp0,md,rd,1] 
+	00421: DELTAP2    
+	00422: SHP[rp2,zp1] 
+	00423: MDAP[rd]   
+	00424: CALL       
+	00425: DELTAP1    
+	00426: DELTAP2    
+	00427: CALL       
+	00428: MIRP[nrp0,md,rd,1] 
+	00429: IUP[y]     
+	00430: IUP[x]     
+	00431: SVTCA[x-axis] 
+	00432: CALL       
+	00433: CALL       
+	00434: CALL       
+	00435: CALL       
+	00436: SVTCA[y-axis] 
+	00437: CALL       
+	00438: CALL       
+	00439: SVTCA[x-axis] 
+	00440: DELTAP2    
+	00441: CALL       
+	00442: CALL       
+	00443: SVTCA[y-axis] 
+	00444: DELTAP3    
+	00445: SVTCA[x-axis] 
+	00446: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:        XDual         Y-Short         Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:        XDual                 X-Short On
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short X-Short On
+	 34:  YDual               Y-Short X-Short Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:        XDual         Y-Short         On
+	 44:                                      On
+	 45:  YDual                               On
+	 46:  YDual                       X-Short Off
+	 47:  YDual               Y-Short X-Short Off
+	 48:  YDual               Y-Short X-Short Off
+	 49:  YDual XDual         Y-Short         On
+	 50:  YDual XDual         Y-Short         Off
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short         On
+	 54:  YDual XDual         Y-Short         Off
+	 55:  YDual               Y-Short X-Short On
+	 56:  YDual XDual         Y-Short X-Short On
+	 57:        XDual         Y-Short X-Short Off
+	 58:        XDual         Y-Short         On
+	 59:        XDual         Y-Short         Off
+	 60:                      Y-Short X-Short On
+	 61:                      Y-Short X-Short Off
+	 62:        XDual         Y-Short         On
+	 63:        XDual         Y-Short         Off
+	 64:        XDual         Y-Short X-Short Off
+	 65:  YDual XDual                 X-Short On
+	 66:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   594,  1754)  ->  Abs (   594,  1754)
+	  1: Rel (     0,   -66)  ->  Abs (   594,  1688)
+	  2: Rel (  -104,   -84)  ->  Abs (   490,  1604)
+	  3: Rel (   -52,     0)  ->  Abs (   438,  1604)
+	  4: Rel (   -43,     0)  ->  Abs (   395,  1604)
+	  5: Rel (   -51,    68)  ->  Abs (   344,  1672)
+	  6: Rel (     0,    51)  ->  Abs (   344,  1723)
+	  7: Rel (     0,    67)  ->  Abs (   344,  1790)
+	  8: Rel (    70,   105)  ->  Abs (   414,  1895)
+	  9: Rel (    63,     0)  ->  Abs (   477,  1895)
+	 10: Rel (    56,     0)  ->  Abs (   533,  1895)
+	 11: Rel (    61,   -85)  ->  Abs (   594,  1810)
+	 12: Rel (  -213,   -56)  ->  Abs (   381,  1754)
+	 13: Rel (     0,   -50)  ->  Abs (   381,  1704)
+	 14: Rel (    86,     0)  ->  Abs (   467,  1704)
+	 15: Rel (    73,     0)  ->  Abs (   540,  1704)
+	 16: Rel (     0,    27)  ->  Abs (   540,  1731)
+	 17: Rel (     0,    19)  ->  Abs (   540,  1750)
+	 18: Rel (   -72,    69)  ->  Abs (   468,  1819)
+	 19: Rel (   -36,     0)  ->  Abs (   432,  1819)
+	 20: Rel (   -51,     0)  ->  Abs (   381,  1819)
+	 21: Rel (    20,  -670)  ->  Abs (   401,  1149)
+	 22: Rel (     8,    43)  ->  Abs (   409,  1192)
+	 23: Rel (    46,    34)  ->  Abs (   455,  1226)
+	 24: Rel (    30,    36)  ->  Abs (   485,  1262)
+	 25: Rel (   -98,     6)  ->  Abs (   387,  1268)
+	 26: Rel (     0,    84)  ->  Abs (   387,  1352)
+	 27: Rel (     0,    58)  ->  Abs (   387,  1410)
+	 28: Rel (    78,   112)  ->  Abs (   465,  1522)
+	 29: Rel (    51,     0)  ->  Abs (   516,  1522)
+	 30: Rel (    80,     0)  ->  Abs (   596,  1522)
+	 31: Rel (     0,   -73)  ->  Abs (   596,  1449)
+	 32: Rel (     0,   -24)  ->  Abs (   596,  1425)
+	 33: Rel (   -12,   -24)  ->  Abs (   584,  1401)
+	 34: Rel (   -73,    53)  ->  Abs (   511,  1454)
+	 35: Rel (   -32,     0)  ->  Abs (   479,  1454)
+	 36: Rel (   -51,     0)  ->  Abs (   428,  1454)
+	 37: Rel (     0,   -43)  ->  Abs (   428,  1411)
+	 38: Rel (     0,   -35)  ->  Abs (   428,  1376)
+	 39: Rel (   105,   -65)  ->  Abs (   533,  1311)
+	 40: Rel (    40,     0)  ->  Abs (   573,  1311)
+	 41: Rel (     9,     0)  ->  Abs (   582,  1311)
+	 42: Rel (    79,    22)  ->  Abs (   661,  1333)
+	 43: Rel (     0,   -73)  ->  Abs (   661,  1260)
+	 44: Rel (   568, -1260)  ->  Abs (  1229,     0)
+	 45: Rel (  -402,     0)  ->  Abs (   827,     0)
+	 46: Rel (  -127,     0)  ->  Abs (   700,     0)
+	 47: Rel (  -105,    26)  ->  Abs (   595,    26)
+	 48: Rel (   -55,   123)  ->  Abs (   540,   149)
+	 49: Rel (     0,   105)  ->  Abs (   540,   254)
+	 50: Rel (     0,    69)  ->  Abs (   540,   323)
+	 51: Rel (     5,   131)  ->  Abs (   545,   454)
+	 52: Rel (     5,   130)  ->  Abs (   550,   584)
+	 53: Rel (     0,    77)  ->  Abs (   550,   661)
+	 54: Rel (     0,   219)  ->  Abs (   550,   880)
+	 55: Rel (   -36,    94)  ->  Abs (   514,   974)
+	 56: Rel (    82,   107)  ->  Abs (   596,  1081)
+	 57: Rel (    32,   -91)  ->  Abs (   628,   990)
+	 58: Rel (     0,  -218)  ->  Abs (   628,   772)
+	 59: Rel (     0,  -136)  ->  Abs (   628,   636)
+	 60: Rel (    -9,  -178)  ->  Abs (   619,   458)
+	 61: Rel (    -5,   -98)  ->  Abs (   614,   360)
+	 62: Rel (     0,   -53)  ->  Abs (   614,   307)
+	 63: Rel (     0,   -86)  ->  Abs (   614,   221)
+	 64: Rel (    46,   -98)  ->  Abs (   660,   123)
+	 65: Rel (    69,     0)  ->  Abs (   729,   123)
+	 66: Rel (   500,     0)  ->  Abs (  1229,   123)
+
+	Glyph 1123: off = 0x000358D0, len = 670
+	  numberOfContours:	4
+	  xMin:			243
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1941
+
+	EndPoints
+	---------
+	  0:  23
+	  1:  31
+	  2:  54
+	  3:  77
+
+	  Length of Instructions:	453
+	00000: PUSHB[8]             10    59    26    59   169    58     3    13 
+	00009: PUSHW[1]            -16 
+	00012: NPUSHB      (38):    29    33    52    25    19    22    49    21    50    26 
+	                            54     4    40    20   214    13     2    54    44    19 
+	                            27    52    33    32    11    16    52    58    64     9 
+	                            19    52    36    64    17    30    52    35 
+	00052: PUSHW[1]            -64 
+	00055: PUSHB[4]             11    16    52    33 
+	00060: PUSHW[1]            -64 
+	00063: NPUSHB      (23):    12    16    52     1     0    22    22    16     8     8 
+	                            28    64    29    41    52    28    28    18    20     3 
+	                            13     4    24 
+	00088: PUSHW[1]            906 
+	00091: NPUSHB      (25):    16    64    29    50    52    63    16     1    16    64 
+	                            11    26    52    16    16    40    35    51    53    54 
+	                            33    32    44    44    40 
+	00118: PUSHW[1]            897 
+	00121: NPUSHB      (20):    46    64    47    49    52    46    64    41    43    52 
+	                            95    46     1     0    46     1    46    46    32    53 
+	00143: PUSHW[1]            898 
+	00146: PUSHB[4]            144    54     1    54 
+	00151: PUSHW[1]            -64 
+	00154: PUSHB[4]             28    30    52    54 
+	00159: PUSHW[1]            -64 
+	00162: NPUSHB      (18):     9    16    52    54    54    15    32     1    32    64 
+	                             9    14    52    32    32    67    76    77 
+	00182: PUSHW[4]            907    56    55   858 
+	00191: NPUSHB      (25):    66    67    13    11    24    26    20     3    30     0 
+	                             0     5    16    64    34    42    52    16    64    11 
+	                            28    52    16    16    11 
+	00218: PUSHW[1]            876 
+	00221: NPUSHB      (21):    26    64    46    63    52    26    64    29    38    52 
+	                             0    26     1    64    26    80    26     2    26    26 
+	                            30 
+	00244: PUSHW[1]            879 
+	00247: NPUSHB      (16):     5     5    37    35    54    44    44     0    42    16 
+	                            42     2    42    42    54    48 
+	00265: PUSHW[1]            875 
+	00268: NPUSHB      (33):    47    37     1    37    37    33    32    53   175    54 
+	                             1    54    64    11    11    52    54    64     9    11 
+	                            52    54    54    32    32     1    32    32    66    60 
+	                            67    67    69 
+	00303: PUSHW[1]            887 
+	00306: NPUSHB       (9):    16    60   192    60     2    60    55    77     4 
+	00317: PUSHW[1]            340 
+	00320: SCANCTRL   
+	00321: SCANTYPE   
+	00322: MDAP[rd]   
+	00323: ALIGNRP    
+	00324: MDAP[rd]   
+	00325: DELTAP1    
+	00326: MIRP[nrp0,md,rd,1] 
+	00327: RTHG       
+	00328: IP         
+	00329: MDAP[rd]   
+	00330: SRP1       
+	00331: SHP[rp1,zp0] 
+	00332: SHP[rp1,zp0] 
+	00333: RTG        
+	00334: MDAP[rd]   
+	00335: DELTAP1    
+	00336: SHP[rp1,zp0] 
+	00337: MDAP[rd]   
+	00338: CALL       
+	00339: CALL       
+	00340: DELTAP1    
+	00341: ALIGNRP    
+	00342: SRP1       
+	00343: SHP[rp1,zp0] 
+	00344: SHP[rp1,zp0] 
+	00345: MDAP[rd]   
+	00346: DELTAP1    
+	00347: MIRP[srp0,md,rd,1] 
+	00348: SRP1       
+	00349: IP         
+	00350: MDAP[rd]   
+	00351: DELTAP1    
+	00352: SHP[rp1,zp0] 
+	00353: RTHG       
+	00354: MDAP[rd]   
+	00355: SRP1       
+	00356: IP         
+	00357: SRP1       
+	00358: SHP[rp1,zp0] 
+	00359: RTG        
+	00360: MDAP[rd]   
+	00361: MIRP[srp0,md,rd,1] 
+	00362: SHP[rp2,zp1] 
+	00363: MDAP[rd]   
+	00364: DELTAP1    
+	00365: DELTAP1    
+	00366: CALL       
+	00367: CALL       
+	00368: MIRP[srp0,md,rd,1] 
+	00369: SHP[rp2,zp1] 
+	00370: MDAP[rd]   
+	00371: CALL       
+	00372: CALL       
+	00373: SRP1       
+	00374: SHP[rp1,zp0] 
+	00375: MDAP[rd]   
+	00376: SRP1       
+	00377: SHP[rp1,zp0] 
+	00378: SHP[rp1,zp0] 
+	00379: SRP2       
+	00380: IP         
+	00381: SRP1       
+	00382: IP         
+	00383: SVTCA[y-axis] 
+	00384: MDAP[rd]   
+	00385: SHP[rp1,zp0] 
+	00386: MIAP[rd+ci] 
+	00387: ALIGNRP    
+	00388: MIRP[srp0,md,rd,1] 
+	00389: ALIGNRP    
+	00390: SRP1       
+	00391: SHP[rp1,zp0] 
+	00392: MDAP[rd]   
+	00393: CALL       
+	00394: DELTAP1    
+	00395: SHP[rp1,zp0] 
+	00396: MDAP[rd]   
+	00397: CALL       
+	00398: CALL       
+	00399: DELTAP3    
+	00400: MIRP[nrp0,md,rd,1] 
+	00401: SRP1       
+	00402: SHP[rp1,zp0] 
+	00403: MDAP[rd]   
+	00404: DELTAP1    
+	00405: DELTAP3    
+	00406: CALL       
+	00407: CALL       
+	00408: MIRP[nrp0,md,rd,1] 
+	00409: SHP[rp1,zp0] 
+	00410: RUTG       
+	00411: MDAP[rd]   
+	00412: RTG        
+	00413: SRP1       
+	00414: SHP[rp1,zp0] 
+	00415: SRP1       
+	00416: SRP2       
+	00417: IP         
+	00418: IP         
+	00419: SRP1       
+	00420: SHP[rp1,zp0] 
+	00421: MDAP[rd]   
+	00422: CALL       
+	00423: DELTAP2    
+	00424: CALL       
+	00425: MIRP[nrp0,md,rd,1] 
+	00426: SLOOP      
+	00427: IP         
+	00428: SHP[rp2,zp1] 
+	00429: MDAP[rd]   
+	00430: CALL       
+	00431: SHP[rp1,zp0] 
+	00432: MDAP[rd]   
+	00433: SRP1       
+	00434: SHP[rp1,zp0] 
+	00435: MDAP[rd]   
+	00436: SHP[rp1,zp0] 
+	00437: SHP[rp1,zp0] 
+	00438: IUP[y]     
+	00439: IUP[x]     
+	00440: SVTCA[x-axis] 
+	00441: CALL       
+	00442: CALL       
+	00443: CALL       
+	00444: CALL       
+	00445: SVTCA[y-axis] 
+	00446: CALL       
+	00447: CALL       
+	00448: DELTAP2    
+	00449: DELTAP3    
+	00450: CALL       
+	00451: SVTCA[x-axis] 
+	00452: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short On
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual               Y-Short X-Short On
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                              X-Short On
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:                      Y-Short X-Short On
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:        XDual         Y-Short         On
+	 49:        XDual         Y-Short         Off
+	 50:        XDual         Y-Short X-Short Off
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:        XDual         Y-Short         On
+	 55:                                      On
+	 56:  YDual                               On
+	 57:  YDual                       X-Short Off
+	 58:  YDual               Y-Short X-Short Off
+	 59:  YDual               Y-Short X-Short Off
+	 60:  YDual XDual         Y-Short         On
+	 61:  YDual XDual         Y-Short         Off
+	 62:  YDual XDual         Y-Short X-Short On
+	 63:  YDual XDual         Y-Short X-Short Off
+	 64:  YDual XDual         Y-Short         On
+	 65:  YDual XDual         Y-Short         Off
+	 66:  YDual               Y-Short X-Short On
+	 67:  YDual XDual         Y-Short X-Short On
+	 68:        XDual         Y-Short X-Short Off
+	 69:        XDual         Y-Short         On
+	 70:        XDual         Y-Short         Off
+	 71:                      Y-Short X-Short On
+	 72:                      Y-Short X-Short Off
+	 73:        XDual         Y-Short         On
+	 74:        XDual         Y-Short         Off
+	 75:        XDual         Y-Short X-Short Off
+	 76:  YDual XDual                 X-Short On
+	 77:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   243,  1527)  ->  Abs (   243,  1527)
+	  1: Rel (     0,    13)  ->  Abs (   243,  1540)
+	  2: Rel (   142,    64)  ->  Abs (   385,  1604)
+	  3: Rel (    55,    79)  ->  Abs (   440,  1683)
+	  4: Rel (   -62,    39)  ->  Abs (   378,  1722)
+	  5: Rel (     0,    49)  ->  Abs (   378,  1771)
+	  6: Rel (     0,    45)  ->  Abs (   378,  1816)
+	  7: Rel (    88,   125)  ->  Abs (   466,  1941)
+	  8: Rel (    39,     0)  ->  Abs (   505,  1941)
+	  9: Rel (    23,     0)  ->  Abs (   528,  1941)
+	 10: Rel (    32,   -59)  ->  Abs (   560,  1882)
+	 11: Rel (     0,   -35)  ->  Abs (   560,  1847)
+	 12: Rel (     0,   -51)  ->  Abs (   560,  1796)
+	 13: Rel (   -32,   -64)  ->  Abs (   528,  1732)
+	 14: Rel (    49,   -24)  ->  Abs (   577,  1708)
+	 15: Rel (     0,   -27)  ->  Abs (   577,  1681)
+	 16: Rel (     0,   -51)  ->  Abs (   577,  1630)
+	 17: Rel (   -18,     0)  ->  Abs (   559,  1630)
+	 18: Rel (   -36,    15)  ->  Abs (   523,  1645)
+	 19: Rel (   -44,    20)  ->  Abs (   479,  1665)
+	 20: Rel (    -7,     2)  ->  Abs (   472,  1667)
+	 21: Rel (  -119,  -148)  ->  Abs (   353,  1519)
+	 22: Rel (   -79,     0)  ->  Abs (   274,  1519)
+	 23: Rel (   -17,     0)  ->  Abs (   257,  1519)
+	 24: Rel (   240,   229)  ->  Abs (   497,  1748)
+	 25: Rel (    17,    29)  ->  Abs (   514,  1777)
+	 26: Rel (     0,    32)  ->  Abs (   514,  1809)
+	 27: Rel (     0,    62)  ->  Abs (   514,  1871)
+	 28: Rel (   -42,     0)  ->  Abs (   472,  1871)
+	 29: Rel (   -38,     0)  ->  Abs (   434,  1871)
+	 30: Rel (     0,   -50)  ->  Abs (   434,  1821)
+	 31: Rel (     0,   -61)  ->  Abs (   434,  1760)
+	 32: Rel (   -33,  -611)  ->  Abs (   401,  1149)
+	 33: Rel (     8,    43)  ->  Abs (   409,  1192)
+	 34: Rel (    46,    34)  ->  Abs (   455,  1226)
+	 35: Rel (    30,    36)  ->  Abs (   485,  1262)
+	 36: Rel (   -98,     6)  ->  Abs (   387,  1268)
+	 37: Rel (     0,    84)  ->  Abs (   387,  1352)
+	 38: Rel (     0,    58)  ->  Abs (   387,  1410)
+	 39: Rel (    78,   112)  ->  Abs (   465,  1522)
+	 40: Rel (    51,     0)  ->  Abs (   516,  1522)
+	 41: Rel (    80,     0)  ->  Abs (   596,  1522)
+	 42: Rel (     0,   -73)  ->  Abs (   596,  1449)
+	 43: Rel (     0,   -24)  ->  Abs (   596,  1425)
+	 44: Rel (   -12,   -24)  ->  Abs (   584,  1401)
+	 45: Rel (   -73,    53)  ->  Abs (   511,  1454)
+	 46: Rel (   -32,     0)  ->  Abs (   479,  1454)
+	 47: Rel (   -51,     0)  ->  Abs (   428,  1454)
+	 48: Rel (     0,   -43)  ->  Abs (   428,  1411)
+	 49: Rel (     0,   -35)  ->  Abs (   428,  1376)
+	 50: Rel (   105,   -65)  ->  Abs (   533,  1311)
+	 51: Rel (    40,     0)  ->  Abs (   573,  1311)
+	 52: Rel (     9,     0)  ->  Abs (   582,  1311)
+	 53: Rel (    79,    22)  ->  Abs (   661,  1333)
+	 54: Rel (     0,   -73)  ->  Abs (   661,  1260)
+	 55: Rel (   568, -1260)  ->  Abs (  1229,     0)
+	 56: Rel (  -402,     0)  ->  Abs (   827,     0)
+	 57: Rel (  -127,     0)  ->  Abs (   700,     0)
+	 58: Rel (  -105,    26)  ->  Abs (   595,    26)
+	 59: Rel (   -55,   123)  ->  Abs (   540,   149)
+	 60: Rel (     0,   105)  ->  Abs (   540,   254)
+	 61: Rel (     0,    69)  ->  Abs (   540,   323)
+	 62: Rel (     5,   131)  ->  Abs (   545,   454)
+	 63: Rel (     5,   130)  ->  Abs (   550,   584)
+	 64: Rel (     0,    77)  ->  Abs (   550,   661)
+	 65: Rel (     0,   219)  ->  Abs (   550,   880)
+	 66: Rel (   -36,    94)  ->  Abs (   514,   974)
+	 67: Rel (    82,   107)  ->  Abs (   596,  1081)
+	 68: Rel (    32,   -91)  ->  Abs (   628,   990)
+	 69: Rel (     0,  -218)  ->  Abs (   628,   772)
+	 70: Rel (     0,  -136)  ->  Abs (   628,   636)
+	 71: Rel (    -9,  -178)  ->  Abs (   619,   458)
+	 72: Rel (    -5,   -98)  ->  Abs (   614,   360)
+	 73: Rel (     0,   -53)  ->  Abs (   614,   307)
+	 74: Rel (     0,   -86)  ->  Abs (   614,   221)
+	 75: Rel (    46,   -98)  ->  Abs (   660,   123)
+	 76: Rel (    69,     0)  ->  Abs (   729,   123)
+	 77: Rel (   500,     0)  ->  Abs (  1229,   123)
+
+	Glyph 1124: off = 0x00035B6E, len = 842
+	  numberOfContours:	4
+	  xMin:			218
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			1940
+
+	EndPoints
+	---------
+	  0:  40
+	  1:  48
+	  2:  71
+	  3:  94
+
+	  Length of Instructions:	584
+	00000: NPUSHB      (13):    73    22     1    10    76    26    76    64    22   171 
+	                            75     4    21 
+	00015: PUSHW[1]            -16 
+	00018: PUSHB[4]             29    44    52    38 
+	00023: PUSHW[1]            -24 
+	00026: PUSHB[4]             29    44    52    32 
+	00031: PUSHW[1]            -44 
+	00034: NPUSHB      (43):    28    45    52    21    66    22    67    25    71    89 
+	                            37   154    37     5    27    37    22    48     2     5 
+	                            38     1    71    44    19    27    52    50    32    11 
+	                            16    52    75    64     9    19    52    53    64    17 
+	                            30    52    52 
+	00079: PUSHW[1]            -64 
+	00082: PUSHB[4]             11    16    52    50 
+	00087: PUSHW[1]            -64 
+	00090: NPUSHB      (11):    12    16    52     3     1     0     3    20    39    39 
+	                            20 
+	00103: PUSHW[1]            -64 
+	00106: NPUSHB      (14):    13    16    52    20    20    35    11    64    29    36 
+	                            52    11    11    16 
+	00122: PUSHW[1]            936 
+	00125: NPUSHB      (13):     7     7    45    35    27    27    45    45    37    22 
+	                            32     3    41 
+	00140: PUSHW[1]            904 
+	00143: NPUSHB      (22):    35    64    29    42    52    35    64    13    27    52 
+	                            35    35    57    52    68    70    71    50    49    61 
+	                            61    57 
+	00167: PUSHW[1]            897 
+	00170: NPUSHB      (20):    63    64    47    49    52    63    64    41    43    52 
+	                            95    63     1     0    63     1    63    63    49    70 
+	00192: PUSHW[1]            898 
+	00195: PUSHB[4]            144    71     1    71 
+	00200: PUSHW[1]            -64 
+	00203: PUSHB[4]             28    30    52    71 
+	00208: PUSHW[1]            -64 
+	00211: NPUSHB      (18):     9    16    52    71    71    15    49     1    49    64 
+	                             9    14    52    49    49    84    93    94 
+	00231: PUSHW[4]            907    73    72   858 
+	00240: NPUSHB      (40):    83    84    32    30    41    43    37    22    47     3 
+	                             0    20    18    35    34    64    25    27    52    34 
+	                            64    11    24    52    34    34    30     0     0    16 
+	                            13     1    13    64    13    16    52    13    13     5 
+	00282: PUSHW[3]            882    18   -64 
+	00289: PUSHB[7]             54    83    52    18    18     1    18 
+	00297: PUSHW[1]            -64 
+	00300: NPUSHB      (12):    13    32    52    18    18    24    32    30    48    30 
+	                             2    30 
+	00314: PUSHW[1]            878 
+	00317: NPUSHB      (23):    43    64    46    63    52    43    64    29    38    52 
+	                             0    43    16    43     2    64    43    80    43     2 
+	                            43    43    47 
+	00342: PUSHW[1]            878 
+	00345: NPUSHB      (16):    24    24    54    52    71    61    61     0    59    16 
+	                            59     2    59    59    71    65 
+	00363: PUSHW[1]            875 
+	00366: NPUSHB      (33):    47    54     1    54    54    50    49    70   175    71 
+	                             1    71    64    11    11    52    71    64     9    11 
+	                            52    71    71    32    49     1    49    49    83    77 
+	                            84    84    86 
+	00401: PUSHW[1]            887 
+	00404: NPUSHB       (9):    16    77   192    77     2    77    72    94     4 
+	00415: PUSHW[1]            340 
+	00418: SCANCTRL   
+	00419: SCANTYPE   
+	00420: MDAP[rd]   
+	00421: ALIGNRP    
+	00422: MDAP[rd]   
+	00423: DELTAP1    
+	00424: MIRP[nrp0,md,rd,1] 
+	00425: RTHG       
+	00426: IP         
+	00427: MDAP[rd]   
+	00428: SRP1       
+	00429: SHP[rp1,zp0] 
+	00430: SHP[rp1,zp0] 
+	00431: RTG        
+	00432: MDAP[rd]   
+	00433: DELTAP1    
+	00434: SHP[rp1,zp0] 
+	00435: MDAP[rd]   
+	00436: CALL       
+	00437: CALL       
+	00438: DELTAP1    
+	00439: ALIGNRP    
+	00440: SRP1       
+	00441: SHP[rp1,zp0] 
+	00442: SHP[rp1,zp0] 
+	00443: MDAP[rd]   
+	00444: DELTAP1    
+	00445: MIRP[srp0,md,rd,1] 
+	00446: SRP1       
+	00447: IP         
+	00448: MDAP[rd]   
+	00449: DELTAP1    
+	00450: SHP[rp1,zp0] 
+	00451: RTHG       
+	00452: MDAP[rd]   
+	00453: SRP1       
+	00454: IP         
+	00455: SRP1       
+	00456: SHP[rp1,zp0] 
+	00457: RTG        
+	00458: MDAP[rd]   
+	00459: MIRP[srp0,md,rd,1] 
+	00460: SHP[rp2,zp1] 
+	00461: MDAP[rd]   
+	00462: DELTAP1    
+	00463: DELTAP1    
+	00464: CALL       
+	00465: CALL       
+	00466: MIRP[nrp0,md,rd,1] 
+	00467: DELTAP1    
+	00468: SRP1       
+	00469: SHP[rp1,zp0] 
+	00470: MDAP[rd]   
+	00471: CALL       
+	00472: DELTAP3    
+	00473: CALL       
+	00474: MIRP[srp0,md,rd,1] 
+	00475: SHP[rp2,zp1] 
+	00476: MDAP[rd]   
+	00477: CALL       
+	00478: DELTAP3    
+	00479: SHP[rp2,zp1] 
+	00480: MDAP[rd]   
+	00481: SRP1       
+	00482: SHP[rp1,zp0] 
+	00483: MDAP[rd]   
+	00484: CALL       
+	00485: CALL       
+	00486: SHP[rp1,zp0] 
+	00487: SRP1       
+	00488: IP         
+	00489: SRP1       
+	00490: IP         
+	00491: SRP1       
+	00492: SHP[rp1,zp0] 
+	00493: SHP[rp1,zp0] 
+	00494: SRP2       
+	00495: IP         
+	00496: SRP1       
+	00497: IP         
+	00498: SVTCA[y-axis] 
+	00499: MDAP[rd]   
+	00500: SHP[rp1,zp0] 
+	00501: MIAP[rd+ci] 
+	00502: ALIGNRP    
+	00503: MIRP[srp0,md,rd,1] 
+	00504: ALIGNRP    
+	00505: SRP1       
+	00506: SHP[rp1,zp0] 
+	00507: MDAP[rd]   
+	00508: CALL       
+	00509: DELTAP1    
+	00510: SHP[rp1,zp0] 
+	00511: MDAP[rd]   
+	00512: CALL       
+	00513: CALL       
+	00514: DELTAP3    
+	00515: MIRP[nrp0,md,rd,1] 
+	00516: SRP1       
+	00517: SHP[rp1,zp0] 
+	00518: MDAP[rd]   
+	00519: DELTAP1    
+	00520: DELTAP3    
+	00521: CALL       
+	00522: CALL       
+	00523: MIRP[nrp0,md,rd,1] 
+	00524: SHP[rp1,zp0] 
+	00525: RUTG       
+	00526: MDAP[rd]   
+	00527: RTG        
+	00528: SRP1       
+	00529: SHP[rp1,zp0] 
+	00530: SRP1       
+	00531: SRP2       
+	00532: IP         
+	00533: IP         
+	00534: SRP1       
+	00535: SHP[rp1,zp0] 
+	00536: MDAP[rd]   
+	00537: CALL       
+	00538: CALL       
+	00539: MIRP[nrp0,md,rd,1] 
+	00540: SLOOP      
+	00541: IP         
+	00542: SHP[rp2,zp1] 
+	00543: MDAP[rd]   
+	00544: SHP[rp1,zp0] 
+	00545: MDAP[rd]   
+	00546: SRP1       
+	00547: SRP2       
+	00548: IP         
+	00549: MDAP[rd]   
+	00550: MIRP[nrp0,md,rd,1] 
+	00551: SHP[rp1,zp0] 
+	00552: MDAP[rd]   
+	00553: CALL       
+	00554: SRP1       
+	00555: SHP[rp1,zp0] 
+	00556: MDAP[rd]   
+	00557: CALL       
+	00558: SHP[rp1,zp0] 
+	00559: MDAP[rd]   
+	00560: SRP2       
+	00561: SLOOP      
+	00562: IP         
+	00563: IUP[y]     
+	00564: IUP[x]     
+	00565: SVTCA[x-axis] 
+	00566: CALL       
+	00567: CALL       
+	00568: CALL       
+	00569: CALL       
+	00570: SVTCA[y-axis] 
+	00571: CALL       
+	00572: CALL       
+	00573: SVTCA[y-axis] 
+	00574: DELTAP2    
+	00575: DELTAP3    
+	00576: DELTAP3    
+	00577: CALL       
+	00578: CALL       
+	00579: CALL       
+	00580: SVTCA[x-axis] 
+	00581: DELTAP1    
+	00582: SVTCA[y-axis] 
+	00583: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         On
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:                      Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:                      Y-Short X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual               Y-Short X-Short On
+	 38:                      Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short Off
+	 47:        XDual         Y-Short         On
+	 48:        XDual         Y-Short         Off
+	 49:                              X-Short On
+	 50:  YDual XDual         Y-Short X-Short On
+	 51:  YDual XDual         Y-Short X-Short Off
+	 52:  YDual XDual         Y-Short X-Short On
+	 53:  YDual               Y-Short X-Short Off
+	 54:  YDual XDual         Y-Short         On
+	 55:  YDual XDual         Y-Short         Off
+	 56:  YDual XDual         Y-Short X-Short Off
+	 57:  YDual XDual                 X-Short On
+	 58:  YDual XDual                 X-Short Off
+	 59:        XDual         Y-Short         On
+	 60:        XDual         Y-Short         Off
+	 61:                      Y-Short X-Short On
+	 62:  YDual               Y-Short X-Short Off
+	 63:  YDual                       X-Short On
+	 64:  YDual                       X-Short Off
+	 65:        XDual         Y-Short         On
+	 66:        XDual         Y-Short         Off
+	 67:        XDual         Y-Short X-Short Off
+	 68:  YDual XDual                 X-Short On
+	 69:  YDual XDual                 X-Short Off
+	 70:  YDual XDual         Y-Short X-Short On
+	 71:        XDual         Y-Short         On
+	 72:                                      On
+	 73:  YDual                               On
+	 74:  YDual                       X-Short Off
+	 75:  YDual               Y-Short X-Short Off
+	 76:  YDual               Y-Short X-Short Off
+	 77:  YDual XDual         Y-Short         On
+	 78:  YDual XDual         Y-Short         Off
+	 79:  YDual XDual         Y-Short X-Short On
+	 80:  YDual XDual         Y-Short X-Short Off
+	 81:  YDual XDual         Y-Short         On
+	 82:  YDual XDual         Y-Short         Off
+	 83:  YDual               Y-Short X-Short On
+	 84:  YDual XDual         Y-Short X-Short On
+	 85:        XDual         Y-Short X-Short Off
+	 86:        XDual         Y-Short         On
+	 87:        XDual         Y-Short         Off
+	 88:                      Y-Short X-Short On
+	 89:                      Y-Short X-Short Off
+	 90:        XDual         Y-Short         On
+	 91:        XDual         Y-Short         Off
+	 92:        XDual         Y-Short X-Short Off
+	 93:  YDual XDual                 X-Short On
+	 94:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   248,  1522)  ->  Abs (   248,  1522)
+	  1: Rel (     0,    12)  ->  Abs (   248,  1534)
+	  2: Rel (     7,     4)  ->  Abs (   255,  1538)
+	  3: Rel (    24,    17)  ->  Abs (   279,  1555)
+	  4: Rel (    24,    37)  ->  Abs (   303,  1592)
+	  5: Rel (     0,    59)  ->  Abs (   303,  1651)
+	  6: Rel (     0,    37)  ->  Abs (   303,  1688)
+	  7: Rel (   -22,     0)  ->  Abs (   281,  1688)
+	  8: Rel (    -9,     0)  ->  Abs (   272,  1688)
+	  9: Rel (   -21,   -19)  ->  Abs (   251,  1669)
+	 10: Rel (   -21,   -18)  ->  Abs (   230,  1651)
+	 11: Rel (    -4,     0)  ->  Abs (   226,  1651)
+	 12: Rel (    -8,     0)  ->  Abs (   218,  1651)
+	 13: Rel (     0,     8)  ->  Abs (   218,  1659)
+	 14: Rel (     0,    20)  ->  Abs (   218,  1679)
+	 15: Rel (    69,    66)  ->  Abs (   287,  1745)
+	 16: Rel (    29,     0)  ->  Abs (   316,  1745)
+	 17: Rel (    43,     0)  ->  Abs (   359,  1745)
+	 18: Rel (     0,   -52)  ->  Abs (   359,  1693)
+	 19: Rel (     0,   -45)  ->  Abs (   359,  1648)
+	 20: Rel (   -37,   -75)  ->  Abs (   322,  1573)
+	 21: Rel (    74,    34)  ->  Abs (   396,  1607)
+	 22: Rel (    53,    75)  ->  Abs (   449,  1682)
+	 23: Rel (   -58,    30)  ->  Abs (   391,  1712)
+	 24: Rel (     0,    62)  ->  Abs (   391,  1774)
+	 25: Rel (     0,    50)  ->  Abs (   391,  1824)
+	 26: Rel (    92,   116)  ->  Abs (   483,  1940)
+	 27: Rel (    35,     0)  ->  Abs (   518,  1940)
+	 28: Rel (    24,     0)  ->  Abs (   542,  1940)
+	 29: Rel (    32,   -56)  ->  Abs (   574,  1884)
+	 30: Rel (     0,   -36)  ->  Abs (   574,  1848)
+	 31: Rel (     0,   -62)  ->  Abs (   574,  1786)
+	 32: Rel (   -37,   -55)  ->  Abs (   537,  1731)
+	 33: Rel (    47,   -24)  ->  Abs (   584,  1707)
+	 34: Rel (     0,   -25)  ->  Abs (   584,  1682)
+	 35: Rel (    -4,   -47)  ->  Abs (   580,  1635)
+	 36: Rel (   -34,     0)  ->  Abs (   546,  1635)
+	 37: Rel (   -67,    31)  ->  Abs (   479,  1666)
+	 38: Rel (  -107,  -150)  ->  Abs (   372,  1516)
+	 39: Rel (   -95,     0)  ->  Abs (   277,  1516)
+	 40: Rel (   -19,     0)  ->  Abs (   258,  1516)
+	 41: Rel (   246,   231)  ->  Abs (   504,  1747)
+	 42: Rel (    18,    32)  ->  Abs (   522,  1779)
+	 43: Rel (     0,    32)  ->  Abs (   522,  1811)
+	 44: Rel (     0,    59)  ->  Abs (   522,  1870)
+	 45: Rel (   -43,     0)  ->  Abs (   479,  1870)
+	 46: Rel (   -36,     0)  ->  Abs (   443,  1870)
+	 47: Rel (     0,   -47)  ->  Abs (   443,  1823)
+	 48: Rel (     0,   -55)  ->  Abs (   443,  1768)
+	 49: Rel (   -42,  -619)  ->  Abs (   401,  1149)
+	 50: Rel (     8,    43)  ->  Abs (   409,  1192)
+	 51: Rel (    46,    34)  ->  Abs (   455,  1226)
+	 52: Rel (    30,    36)  ->  Abs (   485,  1262)
+	 53: Rel (   -98,     6)  ->  Abs (   387,  1268)
+	 54: Rel (     0,    84)  ->  Abs (   387,  1352)
+	 55: Rel (     0,    58)  ->  Abs (   387,  1410)
+	 56: Rel (    78,   112)  ->  Abs (   465,  1522)
+	 57: Rel (    51,     0)  ->  Abs (   516,  1522)
+	 58: Rel (    80,     0)  ->  Abs (   596,  1522)
+	 59: Rel (     0,   -73)  ->  Abs (   596,  1449)
+	 60: Rel (     0,   -24)  ->  Abs (   596,  1425)
+	 61: Rel (   -12,   -24)  ->  Abs (   584,  1401)
+	 62: Rel (   -73,    53)  ->  Abs (   511,  1454)
+	 63: Rel (   -32,     0)  ->  Abs (   479,  1454)
+	 64: Rel (   -51,     0)  ->  Abs (   428,  1454)
+	 65: Rel (     0,   -43)  ->  Abs (   428,  1411)
+	 66: Rel (     0,   -35)  ->  Abs (   428,  1376)
+	 67: Rel (   105,   -65)  ->  Abs (   533,  1311)
+	 68: Rel (    40,     0)  ->  Abs (   573,  1311)
+	 69: Rel (     9,     0)  ->  Abs (   582,  1311)
+	 70: Rel (    79,    22)  ->  Abs (   661,  1333)
+	 71: Rel (     0,   -73)  ->  Abs (   661,  1260)
+	 72: Rel (   568, -1260)  ->  Abs (  1229,     0)
+	 73: Rel (  -402,     0)  ->  Abs (   827,     0)
+	 74: Rel (  -127,     0)  ->  Abs (   700,     0)
+	 75: Rel (  -105,    26)  ->  Abs (   595,    26)
+	 76: Rel (   -55,   123)  ->  Abs (   540,   149)
+	 77: Rel (     0,   105)  ->  Abs (   540,   254)
+	 78: Rel (     0,    69)  ->  Abs (   540,   323)
+	 79: Rel (     5,   131)  ->  Abs (   545,   454)
+	 80: Rel (     5,   130)  ->  Abs (   550,   584)
+	 81: Rel (     0,    77)  ->  Abs (   550,   661)
+	 82: Rel (     0,   219)  ->  Abs (   550,   880)
+	 83: Rel (   -36,    94)  ->  Abs (   514,   974)
+	 84: Rel (    82,   107)  ->  Abs (   596,  1081)
+	 85: Rel (    32,   -91)  ->  Abs (   628,   990)
+	 86: Rel (     0,  -218)  ->  Abs (   628,   772)
+	 87: Rel (     0,  -136)  ->  Abs (   628,   636)
+	 88: Rel (    -9,  -178)  ->  Abs (   619,   458)
+	 89: Rel (    -5,   -98)  ->  Abs (   614,   360)
+	 90: Rel (     0,   -53)  ->  Abs (   614,   307)
+	 91: Rel (     0,   -86)  ->  Abs (   614,   221)
+	 92: Rel (    46,   -98)  ->  Abs (   660,   123)
+	 93: Rel (    69,     0)  ->  Abs (   729,   123)
+	 94: Rel (   500,     0)  ->  Abs (  1229,   123)
+
+	Glyph 1125: off = 0x00035EB8, len = 22
+	  numberOfContours:	-1  (Composite)
+	  xMin:			504
+	  yMin:			-662
+	  xMax:			1229
+	  yMax:			1151
+
+	     0: Flags:		0x0236
+		Glyf Index:	910
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0016
+		Glyf Index:	788
+		X BOffset:	2
+		Y BOffset:	47
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1126: off = 0x00035ECE, len = 22
+	  numberOfContours:	-1  (Composite)
+	  xMin:			504
+	  yMin:			-821
+	  xMax:			1229
+	  yMax:			1151
+
+	     0: Flags:		0x0236
+		Glyf Index:	910
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0016
+		Glyf Index:	789
+		X BOffset:	4
+		Y BOffset:	47
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1127: off = 0x00035EE4, len = 416
+	  numberOfContours:	2
+	  xMin:			206
+	  yMin:			199
+	  xMax:			1022
+	  yMax:			1015
+
+	EndPoints
+	---------
+	  0:  56
+	  1:  68
+
+	  Length of Instructions:	219
+	00000: NPUSHB      (36):   107    62   107    64   123    62   123    64     4   101 
+	                            62     1    39    77    64    30   177    40    77    32 
+	                            29   174    27    17    77    64    24   177    16    77 
+	                            32    25   174    60    44    27 
+	00038: PUSHW[1]            533 
+	00041: NPUSHB      (49):    66    44    55    45    77    64    52   177    44    77 
+	                            32    53   174    55    11    77    64     1   177    12 
+	                            77    32     0   174    55    52    77    64    45   177 
+	                            53    77    32    44   174    42    30    77    64    39 
+	                           177    29    77    32    40   174    57    44    42 
+	00092: PUSHW[1]            533 
+	00095: NPUSHB      (25):    63    44    14     1    77    64    11   177     0    77 
+	                            32    12   174    14    24    77    64    17   177    25 
+	                            77    32    16   174    14 
+	00122: PUSHW[3]            495    69   306 
+	00129: PUSHB[2]            188    24 
+	00132: CALL       
+	00133: SRP0       
+	00134: MIRP[srp0,nmd,rd,2] 
+	00135: MIRP[srp0,nmd,rd,0] 
+	00136: SMD        
+	00137: RTHG       
+	00138: MIRP[nrp0,md,rd,1] 
+	00139: RTG        
+	00140: MIRP[srp0,nmd,rd,0] 
+	00141: SMD        
+	00142: MIRP[nrp0,md,rd,1] 
+	00143: SRP0       
+	00144: MIRP[srp0,nmd,rd,0] 
+	00145: SMD        
+	00146: RTHG       
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: RTG        
+	00149: MIRP[srp0,nmd,rd,0] 
+	00150: SMD        
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: SRP0       
+	00153: MIRP[nrp0,md,rd,1] 
+	00154: MIRP[srp0,md,rd,1] 
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: MIRP[srp0,nmd,rd,0] 
+	00157: SMD        
+	00158: RTHG       
+	00159: MIRP[nrp0,md,rd,1] 
+	00160: RTG        
+	00161: MIRP[srp0,nmd,rd,0] 
+	00162: SMD        
+	00163: MIRP[nrp0,md,rd,1] 
+	00164: SRP0       
+	00165: MIRP[srp0,nmd,rd,0] 
+	00166: SMD        
+	00167: RTHG       
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: RTG        
+	00170: MIRP[srp0,nmd,rd,0] 
+	00171: SMD        
+	00172: MIRP[nrp0,md,rd,1] 
+	00173: SVTCA[y-axis] 
+	00174: MDAP[rd]   
+	00175: MIRP[srp0,nmd,rd,0] 
+	00176: SMD        
+	00177: RTHG       
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: RTG        
+	00180: MIRP[srp0,nmd,rd,0] 
+	00181: SMD        
+	00182: MIRP[nrp0,md,rd,1] 
+	00183: SRP0       
+	00184: MIRP[srp0,nmd,rd,0] 
+	00185: SMD        
+	00186: RTHG       
+	00187: MIRP[nrp0,md,rd,1] 
+	00188: RTG        
+	00189: MIRP[srp0,nmd,rd,0] 
+	00190: SMD        
+	00191: MIRP[nrp0,md,rd,1] 
+	00192: SRP0       
+	00193: MIRP[nrp0,md,rd,1] 
+	00194: MIRP[srp0,md,rd,1] 
+	00195: MIRP[nrp0,md,rd,1] 
+	00196: MIRP[srp0,nmd,rd,0] 
+	00197: SMD        
+	00198: RTHG       
+	00199: MIRP[nrp0,md,rd,1] 
+	00200: RTG        
+	00201: MIRP[srp0,nmd,rd,0] 
+	00202: SMD        
+	00203: MIRP[nrp0,md,rd,1] 
+	00204: SRP0       
+	00205: MIRP[srp0,nmd,rd,0] 
+	00206: SMD        
+	00207: RTHG       
+	00208: MIRP[nrp0,md,rd,1] 
+	00209: RTG        
+	00210: MIRP[srp0,nmd,rd,0] 
+	00211: SMD        
+	00212: MIRP[nrp0,md,rd,1] 
+	00213: IUP[y]     
+	00214: IUP[x]     
+	00215: SVTCA[y-axis] 
+	00216: DELTAP1    
+	00217: SVTCA[x-axis] 
+	00218: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short On
+	  2:                      Y-Short X-Short Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:                      Y-Short X-Short On
+	 38:                      Y-Short X-Short Off
+	 39:                      Y-Short X-Short On
+	 40:                      Y-Short X-Short On
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:                      Y-Short X-Short On
+	 45:        XDual         Y-Short X-Short On
+	 46:        XDual         Y-Short X-Short Off
+	 47:        XDual         Y-Short         On
+	 48:        XDual         Y-Short         Off
+	 49:                      Y-Short X-Short Off
+	 50:  YDual                       X-Short On
+	 51:  YDual                       X-Short Off
+	 52:  YDual               Y-Short X-Short On
+	 53:  YDual               Y-Short X-Short On
+	 54:                      Y-Short X-Short Off
+	 55:  YDual                       X-Short On
+	 56:  YDual                       X-Short Off
+	 57:                                      On
+	 58:  YDual XDual         Y-Short         Off
+	 59:  YDual               Y-Short X-Short Off
+	 60:  YDual                       X-Short On
+	 61:  YDual                       X-Short Off
+	 62:                      Y-Short X-Short Off
+	 63:        XDual         Y-Short         On
+	 64:        XDual         Y-Short         Off
+	 65:        XDual         Y-Short X-Short Off
+	 66:  YDual XDual                 X-Short On
+	 67:  YDual XDual                 X-Short Off
+	 68:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   404,   336)  ->  Abs (   404,   336)
+	  1: Rel (  -116,  -115)  ->  Abs (   288,   221)
+	  2: Rel (   -15,   -15)  ->  Abs (   273,   206)
+	  3: Rel (   -15,    -7)  ->  Abs (   258,   199)
+	  4: Rel (    -9,     0)  ->  Abs (   249,   199)
+	  5: Rel (   -18,     0)  ->  Abs (   231,   199)
+	  6: Rel (   -25,    24)  ->  Abs (   206,   223)
+	  7: Rel (     0,    19)  ->  Abs (   206,   242)
+	  8: Rel (     0,     9)  ->  Abs (   206,   251)
+	  9: Rel (     3,     6)  ->  Abs (   209,   257)
+	 10: Rel (     5,     9)  ->  Abs (   214,   266)
+	 11: Rel (    14,    15)  ->  Abs (   228,   281)
+	 12: Rel (   116,   115)  ->  Abs (   344,   396)
+	 13: Rel (   -74,    97)  ->  Abs (   270,   493)
+	 14: Rel (     0,   115)  ->  Abs (   270,   608)
+	 15: Rel (     0,   115)  ->  Abs (   270,   723)
+	 16: Rel (    72,    96)  ->  Abs (   342,   819)
+	 17: Rel (  -114,   114)  ->  Abs (   228,   933)
+	 18: Rel (   -22,    22)  ->  Abs (   206,   955)
+	 19: Rel (     0,    18)  ->  Abs (   206,   973)
+	 20: Rel (     0,    17)  ->  Abs (   206,   990)
+	 21: Rel (    25,    25)  ->  Abs (   231,  1015)
+	 22: Rel (    18,     0)  ->  Abs (   249,  1015)
+	 23: Rel (    17,     0)  ->  Abs (   266,  1015)
+	 24: Rel (    22,   -22)  ->  Abs (   288,   993)
+	 25: Rel (   114,  -114)  ->  Abs (   402,   879)
+	 26: Rel (    91,    73)  ->  Abs (   493,   952)
+	 27: Rel (   122,     0)  ->  Abs (   615,   952)
+	 28: Rel (   120,     0)  ->  Abs (   735,   952)
+	 29: Rel (    91,   -73)  ->  Abs (   826,   879)
+	 30: Rel (   114,   114)  ->  Abs (   940,   993)
+	 31: Rel (    23,    22)  ->  Abs (   963,  1015)
+	 32: Rel (    17,     0)  ->  Abs (   980,  1015)
+	 33: Rel (    18,     0)  ->  Abs (   998,  1015)
+	 34: Rel (    24,   -25)  ->  Abs (  1022,   990)
+	 35: Rel (     0,   -18)  ->  Abs (  1022,   972)
+	 36: Rel (     0,    -9)  ->  Abs (  1022,   963)
+	 37: Rel (    -3,    -7)  ->  Abs (  1019,   956)
+	 38: Rel (    -5,    -9)  ->  Abs (  1014,   947)
+	 39: Rel (   -14,   -14)  ->  Abs (  1000,   933)
+	 40: Rel (  -114,  -114)  ->  Abs (   886,   819)
+	 41: Rel (    72,   -95)  ->  Abs (   958,   724)
+	 42: Rel (     0,  -115)  ->  Abs (   958,   609)
+	 43: Rel (     0,  -119)  ->  Abs (   958,   490)
+	 44: Rel (   -73,   -94)  ->  Abs (   885,   396)
+	 45: Rel (   115,  -115)  ->  Abs (  1000,   281)
+	 46: Rel (    22,   -23)  ->  Abs (  1022,   258)
+	 47: Rel (     0,   -17)  ->  Abs (  1022,   241)
+	 48: Rel (     0,   -18)  ->  Abs (  1022,   223)
+	 49: Rel (   -25,   -24)  ->  Abs (   997,   199)
+	 50: Rel (   -18,     0)  ->  Abs (   979,   199)
+	 51: Rel (   -16,     0)  ->  Abs (   963,   199)
+	 52: Rel (   -23,    22)  ->  Abs (   940,   221)
+	 53: Rel (  -115,   115)  ->  Abs (   825,   336)
+	 54: Rel (   -96,   -72)  ->  Abs (   729,   264)
+	 55: Rel (  -115,     0)  ->  Abs (   614,   264)
+	 56: Rel (  -115,     0)  ->  Abs (   499,   264)
+	 57: Rel (   375,   344)  ->  Abs (   874,   608)
+	 58: Rel (     0,   108)  ->  Abs (   874,   716)
+	 59: Rel (  -152,   152)  ->  Abs (   722,   868)
+	 60: Rel (  -108,     0)  ->  Abs (   614,   868)
+	 61: Rel (  -107,     0)  ->  Abs (   507,   868)
+	 62: Rel (  -152,  -152)  ->  Abs (   355,   716)
+	 63: Rel (     0,  -108)  ->  Abs (   355,   608)
+	 64: Rel (     0,  -107)  ->  Abs (   355,   501)
+	 65: Rel (   152,  -152)  ->  Abs (   507,   349)
+	 66: Rel (   107,     0)  ->  Abs (   614,   349)
+	 67: Rel (   107,     0)  ->  Abs (   721,   349)
+	 68: Rel (   153,   152)  ->  Abs (   874,   501)
+
+	Glyph 1128: off = 0x00036084, len = 658
+	  numberOfContours:	16
+	  xMin:			0
+	  yMin:			0
+	  xMax:			1229
+	  yMax:			883
+
+	EndPoints
+	---------
+	  0:  5
+	  1:  9
+	  2:  13
+	  3:  25
+	  4:  29
+	  5:  35
+	  6:  46
+	  7:  52
+	  8:  56
+	  9:  68
+	 10:  72
+	 11:  76
+	 12:  82
+	 13:  89
+	 14:  96
+	 15:  104
+
+	  Length of Instructions:	354
+	00000: NPUSHB     (220):     9    91    25    91     2     9    96    25    96     2 
+	                            99    66    24    66    40    45    87   224    93   240 
+	                            93     2   159    93     1    93    93    39    86   175 
+	                            40   255    40     2    40    47    12    15    71    31 
+	                            71     2     9    71     1    50    51     7    27     3 
+	                            47     8    28     4    51    19    21    15   103     1 
+	                            87   191   103     1   103    16    60    94     0    39 
+	                            16    39     2     9    31    39     1    39    82    11 
+	                            70    34    79    77    55    75    32    82    54    74 
+	                            31    77    97    64    57    80    57   128    57   144 
+	                            57   160    57     5   176    57   192    57   208    57 
+	                             3    57    39    87    94    79    39   111    39     2 
+	                            15    39   127    39   143    39     3    17    39    36 
+	                           196    45     1     4    45    20    45    52    45     3 
+	                            23    45     0    83     1   103   208    83     1     0 
+	                            83     1    44    83    43    18   224    90     1     0 
+	                            90     1    73    48    90     1    90    36    23    14 
+	                            33     7    54     9    53    35     3     0    31     1 
+	                            31    35     1    11    33     0    10    35   106   101 
+	                           143    63   175    63     2   191    63   207    63   223 
+	                            63     3    63    26    73    27    74    78    47    15 
+	                            77     1    77    78    49    69    81    50    70    78 
+	00222: MDAP[rd]   
+	00223: MDRP[nrp0,nmd,nrd,0] 
+	00224: MDRP[nrp0,nmd,nrd,0] 
+	00225: MDRP[srp0,md,rd,1] 
+	00226: MDRP[nrp0,nmd,nrd,0] 
+	00227: MDRP[nrp0,nmd,nrd,0] 
+	00228: SRP0       
+	00229: MDRP[srp0,md,rd,1] 
+	00230: DELTAP1    
+	00231: MDRP[nrp0,nmd,nrd,0] 
+	00232: SRP0       
+	00233: MDRP[srp0,nmd,rd,0] 
+	00234: MDRP[nrp0,nmd,nrd,0] 
+	00235: MDRP[srp0,md,rd,1] 
+	00236: MDRP[nrp0,nmd,nrd,0] 
+	00237: MDAP[rd]   
+	00238: DELTAP1    
+	00239: DELTAP2    
+	00240: MDRP[nrp0,md,rd,1] 
+	00241: SRP0       
+	00242: MDRP[srp0,nmd,nrd,0] 
+	00243: MDRP[nrp0,nmd,nrd,0] 
+	00244: MDRP[nrp0,nmd,nrd,0] 
+	00245: MDRP[srp0,md,rd,1] 
+	00246: MDRP[nrp0,nmd,nrd,0] 
+	00247: MDRP[nrp0,nmd,nrd,0] 
+	00248: SRP0       
+	00249: MDRP[srp0,nmd,rd,0] 
+	00250: DELTAP1    
+	00251: MDRP[nrp0,nmd,nrd,0] 
+	00252: SRP0       
+	00253: MDRP[srp0,nmd,rd,0] 
+	00254: MDRP[nrp0,nmd,nrd,0] 
+	00255: MDRP[srp0,md,rd,1] 
+	00256: MDRP[nrp0,nmd,nrd,0] 
+	00257: SRP0       
+	00258: MDRP[srp0,nmd,rd,2] 
+	00259: MDRP[nrp0,md,rd,1] 
+	00260: MDRP[srp0,nmd,rd,0] 
+	00261: MDRP[nrp0,md,rd,1] 
+	00262: DELTAP3    
+	00263: SDB        
+	00264: DELTAP1    
+	00265: DELTAP2    
+	00266: MDRP[nrp0,nmd,rd,2] 
+	00267: MDRP[srp0,nmd,rd,0] 
+	00268: MDRP[nrp0,md,rd,1] 
+	00269: SDB        
+	00270: DELTAP1    
+	00271: DELTAP2    
+	00272: SDB        
+	00273: DELTAP1    
+	00274: SHP[rp1,zp0] 
+	00275: SDB        
+	00276: DELTAP1    
+	00277: DELTAP2    
+	00278: SRP0       
+	00279: MDRP[srp0,nmd,rd,0] 
+	00280: SDB        
+	00281: DELTAP1    
+	00282: DELTAP2    
+	00283: MDRP[srp0,md,rd,1] 
+	00284: MDRP[nrp0,nmd,nrd,0] 
+	00285: SRP0       
+	00286: MDRP[srp0,nmd,rd,2] 
+	00287: DELTAP1    
+	00288: DELTAP1    
+	00289: MDRP[nrp0,md,rd,1] 
+	00290: SVTCA[y-axis] 
+	00291: MDAP[rd]   
+	00292: MDRP[nrp0,nmd,nrd,0] 
+	00293: ALIGNRP    
+	00294: ALIGNRP    
+	00295: MDRP[srp0,md,rd,1] 
+	00296: MDRP[nrp0,nmd,nrd,0] 
+	00297: ALIGNRP    
+	00298: ALIGNRP    
+	00299: SRP0       
+	00300: MDRP[srp0,nmd,rd,0] 
+	00301: MDRP[nrp0,nmd,nrd,0] 
+	00302: MDRP[srp0,nmd,rd,2] 
+	00303: MDRP[nrp0,nmd,nrd,0] 
+	00304: SRP0       
+	00305: MDRP[srp0,nmd,rd,2] 
+	00306: DELTAP1    
+	00307: SDB        
+	00308: DELTAP1    
+	00309: MDRP[nrp0,md,rd,1] 
+	00310: MDRP[srp0,nmd,rd,0] 
+	00311: MDRP[nrp0,nmd,nrd,0] 
+	00312: MDRP[srp0,md,rd,1] 
+	00313: DELTAP3    
+	00314: SDB        
+	00315: DELTAP1    
+	00316: MDRP[srp0,nmd,nrd,0] 
+	00317: MDRP[nrp0,nmd,rd,2] 
+	00318: MDAP[rd]   
+	00319: MDRP[nrp0,nmd,nrd,0] 
+	00320: ALIGNRP    
+	00321: ALIGNRP    
+	00322: MDRP[srp0,md,rd,1] 
+	00323: MDRP[nrp0,nmd,nrd,0] 
+	00324: ALIGNRP    
+	00325: ALIGNRP    
+	00326: SRP0       
+	00327: MDRP[srp0,md,rd,1] 
+	00328: MDRP[nrp0,nmd,nrd,0] 
+	00329: MDRP[srp0,nmd,rd,2] 
+	00330: SDB        
+	00331: DELTAP1    
+	00332: MDRP[nrp0,nmd,nrd,0] 
+	00333: SRP0       
+	00334: MDRP[srp0,nmd,rd,2] 
+	00335: DELTAP1    
+	00336: MDRP[nrp0,md,rd,1] 
+	00337: SRP2       
+	00338: IP         
+	00339: MDAP[rd]   
+	00340: DELTAP3    
+	00341: DELTAP3    
+	00342: MDRP[nrp0,md,rd,1] 
+	00343: IP         
+	00344: SRP0       
+	00345: MDRP[nrp0,nmd,rd,0] 
+	00346: MDRP[nrp0,nmd,nrd,0] 
+	00347: SRP0       
+	00348: MDRP[nrp0,md,rd,1] 
+	00349: IUP[y]     
+	00350: IUP[x]     
+	00351: SVTCA[x-axis] 
+	00352: DELTAP3    
+	00353: DELTAP3    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short On
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual                       X-Short On
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual                 X-Short On
+	  6:                      Y-Short         On
+	  7:  YDual                       X-Short On
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual                 X-Short On
+	 10:                                      On
+	 11:  YDual                       X-Short On
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual                 X-Short On
+	 14:                      Y-Short X-Short On
+	 15:        XDual         Y-Short         Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:        XDual                         On
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual               Y-Short         On
+	 27:  YDual                       X-Short On
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual                 X-Short On
+	 30:                                      On
+	 31:  YDual                       X-Short On
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual               Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short On
+	 40:        XDual                         On
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:                      Y-Short X-Short On
+	 46:        XDual         Y-Short X-Short Off
+	 47:                                      On
+	 48:  YDual                       X-Short On
+	 49:        XDual         Y-Short         On
+	 50:  YDual                       X-Short On
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual                 X-Short On
+	 53:                                      On
+	 54:  YDual                       X-Short On
+	 55:  YDual XDual         Y-Short         On
+	 56:  YDual XDual                 X-Short On
+	 57:                                      On
+	 58:        XDual         Y-Short         Off
+	 59:                      Y-Short X-Short Off
+	 60:  YDual                       X-Short On
+	 61:  YDual                       X-Short Off
+	 62:  YDual               Y-Short X-Short Off
+	 63:  YDual XDual         Y-Short         On
+	 64:  YDual XDual         Y-Short         Off
+	 65:  YDual XDual         Y-Short X-Short Off
+	 66:  YDual XDual                 X-Short On
+	 67:  YDual XDual                 X-Short Off
+	 68:        XDual         Y-Short X-Short Off
+	 69:                      Y-Short         On
+	 70:  YDual                       X-Short On
+	 71:  YDual XDual         Y-Short         On
+	 72:  YDual XDual                 X-Short On
+	 73:                                      On
+	 74:  YDual                       X-Short On
+	 75:  YDual XDual         Y-Short         On
+	 76:  YDual XDual                 X-Short On
+	 77:                      Y-Short         On
+	 78:  YDual                       X-Short On
+	 79:  YDual XDual         Y-Short         On
+	 80:  YDual XDual                 X-Short On
+	 81:        XDual         Y-Short         On
+	 82:  YDual XDual                 X-Short On
+	 83:                                      On
+	 84:  YDual XDual         Y-Short         Off
+	 85:  YDual                       X-Short On
+	 86:  YDual                       X-Short On
+	 87:        XDual         Y-Short         On
+	 88:  YDual XDual                 X-Short On
+	 89:  YDual XDual                 X-Short Off
+	 90:        XDual         Y-Short X-Short On
+	 91:  YDual XDual         Y-Short         Off
+	 92:  YDual                       X-Short On
+	 93:  YDual                       X-Short On
+	 94:        XDual         Y-Short         On
+	 95:  YDual XDual                 X-Short On
+	 96:  YDual XDual                 X-Short Off
+	 97:  YDual               Y-Short         On
+	 98:  YDual XDual         Y-Short         Off
+	 99:  YDual                       X-Short On
+	100:  YDual                       X-Short Off
+	101:        XDual         Y-Short         On
+	102:        XDual         Y-Short         Off
+	103:  YDual XDual                 X-Short On
+	104:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1229,   690)  ->  Abs (  1229,   690)
+	  1: Rel (   -60,     0)  ->  Abs (  1169,   690)
+	  2: Rel (     0,   133)  ->  Abs (  1169,   823)
+	  3: Rel (  -133,     0)  ->  Abs (  1036,   823)
+	  4: Rel (     0,    60)  ->  Abs (  1036,   883)
+	  5: Rel (   193,     0)  ->  Abs (  1229,   883)
+	  6: Rel (  -345,   -60)  ->  Abs (   884,   823)
+	  7: Rel (  -193,     0)  ->  Abs (   691,   823)
+	  8: Rel (     0,    60)  ->  Abs (   691,   883)
+	  9: Rel (   193,     0)  ->  Abs (   884,   883)
+	 10: Rel (   345,  -538)  ->  Abs (  1229,   345)
+	 11: Rel (   -60,     0)  ->  Abs (  1169,   345)
+	 12: Rel (     0,   193)  ->  Abs (  1169,   538)
+	 13: Rel (    60,     0)  ->  Abs (  1229,   538)
+	 14: Rel (  -159,  -172)  ->  Abs (  1070,   366)
+	 15: Rel (     0,  -144)  ->  Abs (  1070,   222)
+	 16: Rel (  -127,     0)  ->  Abs (   943,   222)
+	 17: Rel (   -51,     0)  ->  Abs (   892,   222)
+	 18: Rel (   -32,    27)  ->  Abs (   860,   249)
+	 19: Rel (    44,    47)  ->  Abs (   904,   296)
+	 20: Rel (    15,   -16)  ->  Abs (   919,   280)
+	 21: Rel (    24,     0)  ->  Abs (   943,   280)
+	 22: Rel (    57,     0)  ->  Abs (  1000,   280)
+	 23: Rel (     0,    83)  ->  Abs (  1000,   363)
+	 24: Rel (     0,   291)  ->  Abs (  1000,   654)
+	 25: Rel (    70,     0)  ->  Abs (  1070,   654)
+	 26: Rel (  -532,   169)  ->  Abs (   538,   823)
+	 27: Rel (  -193,     0)  ->  Abs (   345,   823)
+	 28: Rel (     0,    60)  ->  Abs (   345,   883)
+	 29: Rel (   193,     0)  ->  Abs (   538,   883)
+	 30: Rel (   691,  -883)  ->  Abs (  1229,     0)
+	 31: Rel (  -193,     0)  ->  Abs (  1036,     0)
+	 32: Rel (     0,    60)  ->  Abs (  1036,    60)
+	 33: Rel (   133,     0)  ->  Abs (  1169,    60)
+	 34: Rel (     0,   133)  ->  Abs (  1169,   193)
+	 35: Rel (    60,     0)  ->  Abs (  1229,   193)
+	 36: Rel (  -375,   161)  ->  Abs (   854,   354)
+	 37: Rel (     0,  -125)  ->  Abs (   854,   229)
+	 38: Rel (  -164,     0)  ->  Abs (   690,   229)
+	 39: Rel (  -145,     0)  ->  Abs (   545,   229)
+	 40: Rel (     0,   425)  ->  Abs (   545,   654)
+	 41: Rel (   142,     0)  ->  Abs (   687,   654)
+	 42: Rel (   149,     0)  ->  Abs (   836,   654)
+	 43: Rel (     0,  -112)  ->  Abs (   836,   542)
+	 44: Rel (     0,   -55)  ->  Abs (   836,   487)
+	 45: Rel (   -53,   -32)  ->  Abs (   783,   455)
+	 46: Rel (    71,   -28)  ->  Abs (   854,   427)
+	 47: Rel (  -661,   396)  ->  Abs (   193,   823)
+	 48: Rel (  -133,     0)  ->  Abs (    60,   823)
+	 49: Rel (     0,  -133)  ->  Abs (    60,   690)
+	 50: Rel (   -60,     0)  ->  Abs (     0,   690)
+	 51: Rel (     0,   193)  ->  Abs (     0,   883)
+	 52: Rel (   193,     0)  ->  Abs (   193,   883)
+	 53: Rel (   691,  -883)  ->  Abs (   884,     0)
+	 54: Rel (  -193,     0)  ->  Abs (   691,     0)
+	 55: Rel (     0,    60)  ->  Abs (   691,    60)
+	 56: Rel (   193,     0)  ->  Abs (   884,    60)
+	 57: Rel (  -372,   381)  ->  Abs (   512,   441)
+	 58: Rel (     0,  -104)  ->  Abs (   512,   337)
+	 59: Rel (   -98,  -115)  ->  Abs (   414,   222)
+	 60: Rel (   -92,     0)  ->  Abs (   322,   222)
+	 61: Rel (   -92,     0)  ->  Abs (   230,   222)
+	 62: Rel (   -97,   115)  ->  Abs (   133,   337)
+	 63: Rel (     0,   104)  ->  Abs (   133,   441)
+	 64: Rel (     0,   105)  ->  Abs (   133,   546)
+	 65: Rel (    97,   115)  ->  Abs (   230,   661)
+	 66: Rel (    92,     0)  ->  Abs (   322,   661)
+	 67: Rel (    92,     0)  ->  Abs (   414,   661)
+	 68: Rel (    98,  -115)  ->  Abs (   512,   546)
+	 69: Rel (  -452,  -201)  ->  Abs (    60,   345)
+	 70: Rel (   -60,     0)  ->  Abs (     0,   345)
+	 71: Rel (     0,   193)  ->  Abs (     0,   538)
+	 72: Rel (    60,     0)  ->  Abs (    60,   538)
+	 73: Rel (   478,  -538)  ->  Abs (   538,     0)
+	 74: Rel (  -193,     0)  ->  Abs (   345,     0)
+	 75: Rel (     0,    60)  ->  Abs (   345,    60)
+	 76: Rel (   193,     0)  ->  Abs (   538,    60)
+	 77: Rel (  -345,   -60)  ->  Abs (   193,     0)
+	 78: Rel (  -193,     0)  ->  Abs (     0,     0)
+	 79: Rel (     0,   193)  ->  Abs (     0,   193)
+	 80: Rel (    60,     0)  ->  Abs (    60,   193)
+	 81: Rel (     0,  -133)  ->  Abs (    60,    60)
+	 82: Rel (   133,     0)  ->  Abs (   193,    60)
+	 83: Rel (   574,   475)  ->  Abs (   767,   535)
+	 84: Rel (     0,    60)  ->  Abs (   767,   595)
+	 85: Rel (   -98,     0)  ->  Abs (   669,   595)
+	 86: Rel (   -54,     0)  ->  Abs (   615,   595)
+	 87: Rel (     0,  -117)  ->  Abs (   615,   478)
+	 88: Rel (    61,     0)  ->  Abs (   676,   478)
+	 89: Rel (    91,     0)  ->  Abs (   767,   478)
+	 90: Rel (    18,  -124)  ->  Abs (   785,   354)
+	 91: Rel (     0,    66)  ->  Abs (   785,   420)
+	 92: Rel (  -103,     0)  ->  Abs (   682,   420)
+	 93: Rel (   -67,     0)  ->  Abs (   615,   420)
+	 94: Rel (     0,  -132)  ->  Abs (   615,   288)
+	 95: Rel (    75,     0)  ->  Abs (   690,   288)
+	 96: Rel (    95,     0)  ->  Abs (   785,   288)
+	 97: Rel (  -343,   153)  ->  Abs (   442,   441)
+	 98: Rel (     0,   161)  ->  Abs (   442,   602)
+	 99: Rel (  -120,     0)  ->  Abs (   322,   602)
+	100: Rel (  -119,     0)  ->  Abs (   203,   602)
+	101: Rel (     0,  -161)  ->  Abs (   203,   441)
+	102: Rel (     0,  -161)  ->  Abs (   203,   280)
+	103: Rel (   119,     0)  ->  Abs (   322,   280)
+	104: Rel (   120,     0)  ->  Abs (   442,   280)
+
+	Glyph 1129: off = 0x00036316, len = 554
+	  numberOfContours:	2
+	  xMin:			104
+	  yMin:			-33
+	  xMax:			1229
+	  yMax:			1197
+
+	EndPoints
+	---------
+	  0:  14
+	  1:  43
+
+	  Length of Instructions:	419
+	00000: NPUSHB      (82):    40    22    38    30    56    22    55    28    55    30 
+	                             5   120     2   120     6   119     9   119    13     4 
+	                             7    18     7    30    23    18    24    26   105     6 
+	                           104     9   212    43   230    43     8    59    13    57 
+	                            19   137    28   165    31   182    31   217     6   217 
+	                             9   215    19   232     9     9    41     2    38     5 
+	                            38     9    42    13    59     2    53     5    53     9 
+	                             7    27    32    17    19    52    23    24    17    19 
+	                            52    19 
+	00084: PUSHW[1]            -32 
+	00087: NPUSHB       (9):    17    19    52    13    32    20    24    52     9 
+	00098: PUSHW[1]            -40 
+	00101: PUSHB[4]             20    24    52     5 
+	00106: PUSHW[1]            -56 
+	00109: NPUSHB       (9):    20    24    52     2    32    20    24    52    43 
+	00120: PUSHW[1]            -48 
+	00123: PUSHB[4]             25    32    52    43 
+	00128: PUSHW[1]            -48 
+	00131: PUSHB[4]             42    46    52    43 
+	00136: PUSHW[1]            -32 
+	00139: NPUSHB       (9):    47    55    52     6    80    29    32    52     9 
+	00150: PUSHW[1]            -32 
+	00153: NPUSHB       (9):    29    32    52     2    80    29    32    52    13 
+	00164: PUSHW[1]            -32 
+	00167: NPUSHB       (9):    29    32    52     6    80    34    36    52     9 
+	00178: PUSHW[1]            -32 
+	00181: NPUSHB       (9):    34    36    52     2    72    34    36    52    13 
+	00192: PUSHW[1]            -32 
+	00195: NPUSHB       (9):    34    36    52     6     8    38    40    52     9 
+	00206: PUSHW[1]             -2 
+	00209: NPUSHB       (9):    38    40    52     2     2    38    40    52    13 
+	00220: PUSHW[1]             -8 
+	00223: NPUSHB       (9):    38    40    52     6    16    61    62    52     9 
+	00234: PUSHW[1]            -16 
+	00237: NPUSHB       (9):    61    62    52     2    16    61    62    52    13 
+	00248: PUSHW[1]            -16 
+	00251: PUSHB[4]             61    62    52    30 
+	00256: PUSHW[1]            -64 
+	00259: PUSHB[7]             63    53    19    24    64    53    33 
+	00267: PUSHW[1]            -16 
+	00270: NPUSHB      (39):    73    75    52    15    37   143    31     1    31    31 
+	                            37    37     4    37    29     3    11    37    21     9 
+	                            89    31   105    31   214    31     3   133    15   128 
+	                            31   149    31   248    15   248    31     5    31 
+	00311: PUSHW[1]            -16 
+	00314: NPUSHB      (18):    62    53    31    15    17    35    37    16    40    48 
+	                            40     2    40    40    45     0    37    17 
+	00334: PUSHW[1]            -64 
+	00337: NPUSHB      (13):     9    12    52   160    17     1    17   119     7    37 
+	                            25    67    44 
+	00352: SRP0       
+	00353: MIRP[srp0,nmd,rd,2] 
+	00354: MIRP[nrp0,md,rd,1] 
+	00355: MIRP[srp0,md,rd,1] 
+	00356: DELTAP1    
+	00357: CALL       
+	00358: MIRP[nrp0,md,rd,1] 
+	00359: SRP2       
+	00360: IP         
+	00361: MDAP[rd]   
+	00362: DELTAP2    
+	00363: MIRP[nrp0,md,rd,1] 
+	00364: SRP1       
+	00365: SHP[rp1,zp0] 
+	00366: SHP[rp1,zp0] 
+	00367: CALL       
+	00368: DELTAP1    
+	00369: DELTAP2    
+	00370: SVTCA[y-axis] 
+	00371: MIAP[rd+ci] 
+	00372: MIRP[nrp0,md,rd,1] 
+	00373: MIAP[rd+ci] 
+	00374: MIRP[nrp0,md,rd,1] 
+	00375: ALIGNRP    
+	00376: SRP1       
+	00377: SHP[rp1,zp0] 
+	00378: MDAP[rd]   
+	00379: DELTAP1    
+	00380: MIRP[nrp0,md,rd,1] 
+	00381: CALL       
+	00382: CALL       
+	00383: CALL       
+	00384: CALL       
+	00385: CALL       
+	00386: CALL       
+	00387: CALL       
+	00388: CALL       
+	00389: CALL       
+	00390: CALL       
+	00391: CALL       
+	00392: CALL       
+	00393: CALL       
+	00394: CALL       
+	00395: CALL       
+	00396: CALL       
+	00397: CALL       
+	00398: CALL       
+	00399: CALL       
+	00400: IUP[y]     
+	00401: IUP[x]     
+	00402: SVTCA[x-axis] 
+	00403: CALL       
+	00404: CALL       
+	00405: CALL       
+	00406: CALL       
+	00407: CALL       
+	00408: CALL       
+	00409: CALL       
+	00410: CALL       
+	00411: CALL       
+	00412: CALL       
+	00413: DELTAP1    
+	00414: DELTAP1    
+	00415: DELTAP2    
+	00416: SVTCA[y-axis] 
+	00417: DELTAP1    
+	00418: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                              X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:        XDual         Y-Short X-Short On
+	 10:        XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:        XDual                 X-Short On
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:                              X-Short Off
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual               Y-Short X-Short Off
+	 25:        XDual                         On
+	 26:        XDual                         Off
+	 27:  YDual XDual         Y-Short X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual                               Off
+	 31:        XDual         Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:                      Y-Short X-Short On
+	 43:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1043,   582)  ->  Abs (  1043,   582)
+	  1: Rel (     0,   212)  ->  Abs (  1043,   794)
+	  2: Rel (  -119,   156)  ->  Abs (   924,   950)
+	  3: Rel (  -124,   163)  ->  Abs (   800,  1113)
+	  4: Rel (  -184,     0)  ->  Abs (   616,  1113)
+	  5: Rel (  -177,     0)  ->  Abs (   439,  1113)
+	  6: Rel (  -251,  -311)  ->  Abs (   188,   802)
+	  7: Rel (     0,  -220)  ->  Abs (   188,   582)
+	  8: Rel (     0,  -227)  ->  Abs (   188,   355)
+	  9: Rel (   132,  -156)  ->  Abs (   320,   199)
+	 10: Rel (   125,  -148)  ->  Abs (   445,    51)
+	 11: Rel (   171,     0)  ->  Abs (   616,    51)
+	 12: Rel (   184,     0)  ->  Abs (   800,    51)
+	 13: Rel (   124,   162)  ->  Abs (   924,   213)
+	 14: Rel (   119,   156)  ->  Abs (  1043,   369)
+	 15: Rel (    23,   510)  ->  Abs (  1066,   879)
+	 16: Rel (    62,  -137)  ->  Abs (  1128,   742)
+	 17: Rel (     0,  -160)  ->  Abs (  1128,   582)
+	 18: Rel (     0,  -169)  ->  Abs (  1128,   413)
+	 19: Rel (  -136,  -286)  ->  Abs (   992,   127)
+	 20: Rel (  -239,  -160)  ->  Abs (   753,   -33)
+	 21: Rel (  -137,     0)  ->  Abs (   616,   -33)
+	 22: Rel (  -208,     0)  ->  Abs (   408,   -33)
+	 23: Rel (  -150,   172)  ->  Abs (   258,   139)
+	 24: Rel (  -154,   179)  ->  Abs (   104,   318)
+	 25: Rel (     0,   264)  ->  Abs (   104,   582)
+	 26: Rel (     0,   265)  ->  Abs (   104,   847)
+	 27: Rel (   154,   178)  ->  Abs (   258,  1025)
+	 28: Rel (   150,   172)  ->  Abs (   408,  1197)
+	 29: Rel (   208,     0)  ->  Abs (   616,  1197)
+	 30: Rel (   259,     0)  ->  Abs (   875,  1197)
+	 31: Rel (   150,  -241)  ->  Abs (  1025,   956)
+	 32: Rel (    87,    35)  ->  Abs (  1112,   991)
+	 33: Rel (    22,    67)  ->  Abs (  1134,  1058)
+	 34: Rel (     9,    27)  ->  Abs (  1143,  1085)
+	 35: Rel (     0,    50)  ->  Abs (  1143,  1135)
+	 36: Rel (     0,    37)  ->  Abs (  1143,  1172)
+	 37: Rel (    25,    25)  ->  Abs (  1168,  1197)
+	 38: Rel (    18,     0)  ->  Abs (  1186,  1197)
+	 39: Rel (    43,     0)  ->  Abs (  1229,  1197)
+	 40: Rel (     0,   -64)  ->  Abs (  1229,  1133)
+	 41: Rel (     0,   -21)  ->  Abs (  1229,  1112)
+	 42: Rel (    -3,   -28)  ->  Abs (  1226,  1084)
+	 43: Rel (   -18,  -146)  ->  Abs (  1208,   938)
+
+	Glyph 1130: off = 0x00036540, len = 394
+	  numberOfContours:	2
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1169
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  37
+
+	  Length of Instructions:	275
+	00000: NPUSHB      (11):    10    32    12    15    52     2    32    13    15    52 
+	                             8 
+	00013: PUSHW[1]            -32 
+	00016: PUSHB[4]             12    15    52     4 
+	00021: PUSHW[1]            -32 
+	00024: NPUSHB      (14):    13    15    52    10    32    19    21    52     2    32 
+	                            19    21    52     8 
+	00040: PUSHW[1]            -32 
+	00043: PUSHB[4]             19    21    52     4 
+	00048: PUSHW[1]            -32 
+	00051: NPUSHB      (23):    19    21    52    39    24     1     7    24    23    24 
+	                           119    24   214    25   217    27   217    31     6   213 
+	                            34     1    34 
+	00076: PUSHW[1]            -16 
+	00079: PUSHB[4]             23    26    52     7 
+	00084: PUSHW[1]            -32 
+	00087: PUSHB[4]             25    29    52    11 
+	00092: PUSHW[1]            -32 
+	00095: NPUSHB      (14):    25    29    52     1    32    25    29    52     5    32 
+	                            25    29    52     7 
+	00111: PUSHW[1]            -32 
+	00114: PUSHB[4]             32    36    52    11 
+	00119: PUSHW[1]            -32 
+	00122: NPUSHB      (39):    32    36    52     1    40    32    36    52     5    40 
+	                            32    36    52     9    33    26    11    21    33    15 
+	                            36    31    36     2   111    36     1    36    36    15 
+	                            15     3    33    32     7   185    36     1    36 
+	00163: PUSHW[1]            -24 
+	00166: NPUSHB      (29):    60    53    36    21    23    12    33    17    64    10 
+	                            12    52    17    17     0    33   176    23     1    16 
+	                            23    48    23    96    23   192    23     4    23 
+	00197: PUSHW[1]            647 
+	00200: NPUSHB      (14):     6    33   111    29   191    29   207    29   224    29 
+	                           240    29     5    29 
+	00216: PUSHW[2]            482    38 
+	00221: SRP0       
+	00222: MIRP[srp0,nmd,rd,2] 
+	00223: DELTAP1    
+	00224: MIRP[nrp0,md,rd,1] 
+	00225: MIRP[srp0,md,rd,1] 
+	00226: DELTAP1    
+	00227: DELTAP2    
+	00228: MIRP[nrp0,md,rd,1] 
+	00229: SHP[rp1,zp0] 
+	00230: MDAP[rd]   
+	00231: CALL       
+	00232: MIRP[nrp0,md,rd,1] 
+	00233: SRP1       
+	00234: SHP[rp1,zp0] 
+	00235: SHP[rp1,zp0] 
+	00236: CALL       
+	00237: DELTAP2    
+	00238: SVTCA[y-axis] 
+	00239: MIAP[rd+ci] 
+	00240: MIRP[nrp0,md,rd,1] 
+	00241: ALIGNRP    
+	00242: SRP1       
+	00243: SHP[rp1,zp0] 
+	00244: MDAP[rd]   
+	00245: DELTAP1    
+	00246: DELTAP2    
+	00247: MIRP[nrp0,md,rd,1] 
+	00248: MIAP[rd+ci] 
+	00249: MIRP[nrp0,md,rd,1] 
+	00250: SVTCA[y-axis] 
+	00251: CALL       
+	00252: CALL       
+	00253: CALL       
+	00254: CALL       
+	00255: IUP[y]     
+	00256: IUP[x]     
+	00257: SVTCA[y-axis] 
+	00258: CALL       
+	00259: CALL       
+	00260: CALL       
+	00261: CALL       
+	00262: CALL       
+	00263: DELTAP1    
+	00264: SVTCA[x-axis] 
+	00265: DELTAP1    
+	00266: DELTAP2    
+	00267: CALL       
+	00268: CALL       
+	00269: CALL       
+	00270: CALL       
+	00271: CALL       
+	00272: CALL       
+	00273: CALL       
+	00274: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:                      Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:        XDual                 X-Short On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:                      Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:                      Y-Short X-Short On
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:                                      Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:                                      Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:                                      Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:        XDual         Y-Short X-Short On
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   999,   431)  ->  Abs (   999,   431)
+	  1: Rel (     0,   158)  ->  Abs (   999,   589)
+	  2: Rel (  -225,   222)  ->  Abs (   774,   811)
+	  3: Rel (  -160,     0)  ->  Abs (   614,   811)
+	  4: Rel (  -160,     0)  ->  Abs (   454,   811)
+	  5: Rel (  -225,  -223)  ->  Abs (   229,   588)
+	  6: Rel (     0,  -157)  ->  Abs (   229,   431)
+	  7: Rel (     0,  -156)  ->  Abs (   229,   275)
+	  8: Rel (   225,  -224)  ->  Abs (   454,    51)
+	  9: Rel (   160,     0)  ->  Abs (   614,    51)
+	 10: Rel (   160,     0)  ->  Abs (   774,    51)
+	 11: Rel (   225,   223)  ->  Abs (   999,   274)
+	 12: Rel (    84,   560)  ->  Abs (  1083,   834)
+	 13: Rel (     0,    36)  ->  Abs (  1083,   870)
+	 14: Rel (    26,    26)  ->  Abs (  1109,   896)
+	 15: Rel (    17,     0)  ->  Abs (  1126,   896)
+	 16: Rel (    43,     0)  ->  Abs (  1169,   896)
+	 17: Rel (     0,   -64)  ->  Abs (  1169,   832)
+	 18: Rel (     0,   -21)  ->  Abs (  1169,   811)
+	 19: Rel (    -3,   -28)  ->  Abs (  1166,   783)
+	 20: Rel (   -14,  -115)  ->  Abs (  1152,   668)
+	 21: Rel (  -102,   -60)  ->  Abs (  1050,   608)
+	 22: Rel (    34,   -81)  ->  Abs (  1084,   527)
+	 23: Rel (     0,   -96)  ->  Abs (  1084,   431)
+	 24: Rel (     0,  -192)  ->  Abs (  1084,   239)
+	 25: Rel (  -275,  -272)  ->  Abs (   809,   -33)
+	 26: Rel (  -194,     0)  ->  Abs (   615,   -33)
+	 27: Rel (  -195,     0)  ->  Abs (   420,   -33)
+	 28: Rel (  -275,   272)  ->  Abs (   145,   239)
+	 29: Rel (     0,   192)  ->  Abs (   145,   431)
+	 30: Rel (     0,   192)  ->  Abs (   145,   623)
+	 31: Rel (   274,   273)  ->  Abs (   419,   896)
+	 32: Rel (   196,     0)  ->  Abs (   615,   896)
+	 33: Rel (   194,     0)  ->  Abs (   809,   896)
+	 34: Rel (   138,  -136)  ->  Abs (   947,   760)
+	 35: Rel (    36,   -37)  ->  Abs (   983,   723)
+	 36: Rel (    27,   -40)  ->  Abs (  1010,   683)
+	 37: Rel (    73,    44)  ->  Abs (  1083,   727)
+
+	Glyph 1131: off = 0x000366CA, len = 372
+	  numberOfContours:	1
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1229
+	  yMax:			1330
+
+	EndPoints
+	---------
+	  0:  50
+
+	  Length of Instructions:	234
+	00000: NPUSHB      (23):   134    22   134    26   149    22   149    26     4   119 
+	                            22   119    26   230    26   247     2   246    22   246 
+	                            26     6    23 
+	00025: PUSHW[3]             -8    26    -8 
+	00032: PUSHB[3]             26    16    23 
+	00036: PUSHW[5]             -8    22    -8    47   -16 
+	00047: NPUSHB      (37):    37    44    52    32    32    14    17    17    14    12 
+	                            12    14    42    42    34     0    30    19    10    29 
+	                            34    14     2    24    37     4     9    39    30   160 
+	                            44     1    44    44    52    34    30 
+	00086: PUSHW[1]            676 
+	00089: NPUSHB      (32):    32    51    29    30    15     0   111     0   143     0 
+	                           208     0   224     0     5   112     0   128     0     2 
+	                            16     0    32     0   176     0     3     0   107    52 
+	                            15    19 
+	00123: PUSHW[1]            676 
+	00126: NPUSHB      (12):     0    17    16    17     2    17    51    20    30     9 
+	                            14    10 
+	00140: PUSHW[1]            676 
+	00143: NPUSHB      (26):    12    41     0     9    16     9   160     9   176     9 
+	                             4    64     9    80     9   224     9     3     9    64 
+	                            13    14    52     9    58    51 
+	00171: SRP0       
+	00172: MIRP[srp0,nmd,rd,2] 
+	00173: CALL       
+	00174: DELTAP3    
+	00175: DELTAP2    
+	00176: MIRP[srp0,nmd,rd,0] 
+	00177: MIRP[srp0,md,rd,1] 
+	00178: ALIGNRP    
+	00179: SRP0       
+	00180: MIRP[srp0,md,rd,1] 
+	00181: MIRP[srp0,nmd,rd,0] 
+	00182: DELTAP1    
+	00183: MIRP[srp0,md,rd,1] 
+	00184: ALIGNRP    
+	00185: SRP0       
+	00186: MIRP[srp0,nmd,rd,2] 
+	00187: DELTAP3    
+	00188: DELTAP2    
+	00189: DELTAP1    
+	00190: MIRP[srp0,md,rd,1] 
+	00191: MIRP[srp0,nmd,rd,0] 
+	00192: MIRP[srp0,md,rd,1] 
+	00193: ALIGNRP    
+	00194: SRP1       
+	00195: SHP[rp1,zp0] 
+	00196: MDAP[rd]   
+	00197: DELTAP1    
+	00198: MIRP[nrp0,md,rd,1] 
+	00199: SVTCA[y-axis] 
+	00200: MIAP[rd+ci] 
+	00201: MIRP[nrp0,md,rd,1] 
+	00202: MIAP[rd+ci] 
+	00203: ALIGNRP    
+	00204: MIRP[srp0,md,rd,1] 
+	00205: ALIGNRP    
+	00206: ALIGNRP    
+	00207: ALIGNRP    
+	00208: SRP1       
+	00209: SHP[rp1,zp0] 
+	00210: MDAP[rd]   
+	00211: RTDG       
+	00212: SRP1       
+	00213: IP         
+	00214: MDAP[rd]   
+	00215: SRP1       
+	00216: IP         
+	00217: MDAP[rd]   
+	00218: SRP1       
+	00219: IP         
+	00220: MDAP[rd]   
+	00221: RTG        
+	00222: IUP[y]     
+	00223: IUP[x]     
+	00224: SVTCA[x-axis] 
+	00225: CALL       
+	00226: SHPIX      
+	00227: SHPIX      
+	00228: SHPIX      
+	00229: SVTCA[y-axis] 
+	00230: SHPIX      
+	00231: SHPIX      
+	00232: DELTAP1    
+	00233: DELTAP2    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual                         On
+	  2:        XDual         Y-Short         Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:        XDual                         On
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:  YDual XDual         Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual                               On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short On
+	 21:        XDual                         On
+	 22:        XDual         Y-Short         Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:        XDual                         On
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:  YDual XDual         Y-Short X-Short On
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:        XDual         Y-Short         On
+	 45:        XDual         Y-Short         Off
+	 46:                      Y-Short X-Short On
+	 47:                      Y-Short X-Short Off
+	 48:                      Y-Short X-Short On
+	 49:                      Y-Short X-Short Off
+	 50:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1021,  1086)  ->  Abs (  1021,  1086)
+	  1: Rel (     0,  -702)  ->  Abs (  1021,   384)
+	  2: Rel (     0,  -176)  ->  Abs (  1021,   208)
+	  3: Rel (  -235,  -241)  ->  Abs (   786,   -33)
+	  4: Rel (  -168,     0)  ->  Abs (   618,   -33)
+	  5: Rel (  -226,     0)  ->  Abs (   392,   -33)
+	  6: Rel (  -121,   198)  ->  Abs (   271,   165)
+	  7: Rel (   -61,    99)  ->  Abs (   210,   264)
+	  8: Rel (     0,   120)  ->  Abs (   210,   384)
+	  9: Rel (     0,   702)  ->  Abs (   210,  1086)
+	 10: Rel (   -71,     0)  ->  Abs (   139,  1086)
+	 11: Rel (   -56,     0)  ->  Abs (    83,  1086)
+	 12: Rel (     0,    42)  ->  Abs (    83,  1128)
+	 13: Rel (     0,    42)  ->  Abs (    83,  1170)
+	 14: Rel (    56,     0)  ->  Abs (   139,  1170)
+	 15: Rel (   310,     0)  ->  Abs (   449,  1170)
+	 16: Rel (    56,     0)  ->  Abs (   505,  1170)
+	 17: Rel (     0,   -42)  ->  Abs (   505,  1128)
+	 18: Rel (     0,   -42)  ->  Abs (   505,  1086)
+	 19: Rel (   -56,     0)  ->  Abs (   449,  1086)
+	 20: Rel (  -155,     0)  ->  Abs (   294,  1086)
+	 21: Rel (     0,  -702)  ->  Abs (   294,   384)
+	 22: Rel (     0,  -138)  ->  Abs (   294,   246)
+	 23: Rel (   189,  -195)  ->  Abs (   483,    51)
+	 24: Rel (   131,     0)  ->  Abs (   614,    51)
+	 25: Rel (   170,     0)  ->  Abs (   784,    51)
+	 26: Rel (   102,   155)  ->  Abs (   886,   206)
+	 27: Rel (    51,    79)  ->  Abs (   937,   285)
+	 28: Rel (     0,    99)  ->  Abs (   937,   384)
+	 29: Rel (     0,   702)  ->  Abs (   937,  1086)
+	 30: Rel (  -155,     0)  ->  Abs (   782,  1086)
+	 31: Rel (   -56,     0)  ->  Abs (   726,  1086)
+	 32: Rel (     0,    42)  ->  Abs (   726,  1128)
+	 33: Rel (     0,    42)  ->  Abs (   726,  1170)
+	 34: Rel (    56,     0)  ->  Abs (   782,  1170)
+	 35: Rel (   248,     0)  ->  Abs (  1030,  1170)
+	 36: Rel (    63,     0)  ->  Abs (  1093,  1170)
+	 37: Rel (    31,    26)  ->  Abs (  1124,  1196)
+	 38: Rel (    19,    16)  ->  Abs (  1143,  1212)
+	 39: Rel (     0,    55)  ->  Abs (  1143,  1267)
+	 40: Rel (     0,    37)  ->  Abs (  1143,  1304)
+	 41: Rel (    25,    26)  ->  Abs (  1168,  1330)
+	 42: Rel (    18,     0)  ->  Abs (  1186,  1330)
+	 43: Rel (    43,     0)  ->  Abs (  1229,  1330)
+	 44: Rel (     0,   -64)  ->  Abs (  1229,  1266)
+	 45: Rel (     0,   -21)  ->  Abs (  1229,  1245)
+	 46: Rel (    -3,   -28)  ->  Abs (  1226,  1217)
+	 47: Rel (    -6,   -51)  ->  Abs (  1220,  1166)
+	 48: Rel (   -43,   -35)  ->  Abs (  1177,  1131)
+	 49: Rel (   -53,   -45)  ->  Abs (  1124,  1086)
+	 50: Rel (   -94,     0)  ->  Abs (  1030,  1086)
+
+	Glyph 1132: off = 0x0003683E, len = 384
+	  numberOfContours:	1
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1176
+	  yMax:			894
+
+	EndPoints
+	---------
+	  0:  48
+
+	  Length of Instructions:	253
+	00000: NPUSHB      (11):    25     8    10    23   181    39     2    40    39     1 
+	                            38 
+	00013: PUSHW[1]            -20 
+	00016: PUSHB[4]             19    36    52    35 
+	00021: PUSHW[1]            -30 
+	00024: PUSHB[4]             19    36    52    39 
+	00029: PUSHW[1]            -30 
+	00032: NPUSHB      (52):    19    36    52    16    16    13    19    43    43    28 
+	                            30    30    28    39    20    32    37    12    34    15 
+	                            47     1    47    47     5     7    41    28    34    45 
+	                            32     6    13    34    19    10    37    33    22    11 
+	                             8    32     2     2    16    70    47    13    32    40 
+	                            45    41 
+	00086: PUSHW[1]            686 
+	00089: NPUSHB      (10):    15    43    31    43     2    43    78    20    20    40 
+	00101: PUSHW[1]            -64 
+	00104: PUSHB[4]              9    15    52    40 
+	00109: PUSHW[1]            675 
+	00112: PUSHB[6]             50    34    32    27    32    28 
+	00119: PUSHW[1]            686 
+	00122: PUSHB[6]             30    47   207    27     1    27 
+	00129: PUSHW[1]            -64 
+	00132: PUSHB[4]             13    15    52    27 
+	00137: PUSHW[2]            491    49 
+	00142: SRP0       
+	00143: MIRP[srp0,nmd,rd,2] 
+	00144: CALL       
+	00145: DELTAP1    
+	00146: MIRP[srp0,nmd,rd,0] 
+	00147: MIRP[srp0,md,rd,1] 
+	00148: ALIGNRP    
+	00149: SRP0       
+	00150: MIRP[nrp0,md,rd,1] 
+	00151: SRP0       
+	00152: MIRP[srp0,nmd,rd,0] 
+	00153: CALL       
+	00154: ALIGNRP    
+	00155: SRP0       
+	00156: MIRP[srp0,md,rd,1] 
+	00157: DELTAP1    
+	00158: MIRP[srp0,md,rd,1] 
+	00159: ALIGNRP    
+	00160: SRP0       
+	00161: MIRP[srp0,md,rd,1] 
+	00162: ALIGNRP    
+	00163: MIRP[nrp0,nmd,rd,0] 
+	00164: SHP[rp1,zp0] 
+	00165: MDAP[rd]   
+	00166: MIRP[nrp0,md,rd,1] 
+	00167: SVTCA[y-axis] 
+	00168: MIAP[rd+ci] 
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: MIAP[rd+ci] 
+	00171: MIRP[nrp0,md,rd,1] 
+	00172: MIAP[rd+ci] 
+	00173: ALIGNRP    
+	00174: MIRP[srp0,md,rd,1] 
+	00175: ALIGNRP    
+	00176: MIAP[rd+ci] 
+	00177: SHP[rp1,zp0] 
+	00178: MDAP[rd]   
+	00179: DELTAP1    
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: SRP1       
+	00182: SRP2       
+	00183: IP         
+	00184: IP         
+	00185: RTDG       
+	00186: SRP1       
+	00187: IP         
+	00188: MDAP[rd]   
+	00189: SRP1       
+	00190: IP         
+	00191: MDAP[rd]   
+	00192: SRP1       
+	00193: SRP2       
+	00194: IP         
+	00195: MDAP[rd]   
+	00196: RTG        
+	00197: PUSHB[2]              6     2 
+	00200: RS         
+	00201: EQ         
+	00202: IF         
+	00203: NPUSHB      (10):    20    64    27    36    52    20    32    17    26    52 
+	00215: SVTCA[y-axis] 
+	00216: CALL       
+	00217: CALL       
+	00218: EIF        
+	00219: IUP[y]     
+	00220: IUP[x]     
+	00221: SVTCA[y-axis] 
+	00222: CALL       
+	00223: CALL       
+	00224: CALL       
+	00225: DELTAP1    
+	00226: DELTAP2    
+	00227: RS         
+	00228: JROF       
+	00229: NPUSHB      (16):    35    36    23    25    24    37    36    23    34    40 
+	                             0    35    25    37    40     0 
+	00247: CALL       
+	00248: SVTCA[x-axis] 
+	00249: CALL       
+	00250: CALL       
+	00251: FLIPRGON   
+	00252: FLIPRGON   
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:        XDual                         On
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short On
+	 20:  YDual XDual         Y-Short         On
+	 21:                      Y-Short X-Short Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:        XDual                         On
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short On
+	 34:        XDual                         On
+	 35:        XDual         Y-Short         Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:        XDual                         On
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short On
+	 47:        XDual         Y-Short         On
+	 48:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1071,   760)  ->  Abs (  1071,   760)
+	  1: Rel (    19,    16)  ->  Abs (  1090,   776)
+	  2: Rel (     0,    55)  ->  Abs (  1090,   831)
+	  3: Rel (     0,    37)  ->  Abs (  1090,   868)
+	  4: Rel (    25,    26)  ->  Abs (  1115,   894)
+	  5: Rel (    18,     0)  ->  Abs (  1133,   894)
+	  6: Rel (    17,     0)  ->  Abs (  1150,   894)
+	  7: Rel (    26,   -32)  ->  Abs (  1176,   862)
+	  8: Rel (     0,   -30)  ->  Abs (  1176,   832)
+	  9: Rel (     0,   -84)  ->  Abs (  1176,   748)
+	 10: Rel (   -51,   -47)  ->  Abs (  1125,   701)
+	 11: Rel (   -51,   -41)  ->  Abs (  1074,   660)
+	 12: Rel (   -88,    -1)  ->  Abs (   986,   659)
+	 13: Rel (     0,  -575)  ->  Abs (   986,    84)
+	 14: Rel (    71,     0)  ->  Abs (  1057,    84)
+	 15: Rel (    56,     0)  ->  Abs (  1113,    84)
+	 16: Rel (     0,   -42)  ->  Abs (  1113,    42)
+	 17: Rel (     0,   -42)  ->  Abs (  1113,     0)
+	 18: Rel (   -56,     0)  ->  Abs (  1057,     0)
+	 19: Rel (  -155,     0)  ->  Abs (   902,     0)
+	 20: Rel (     0,   123)  ->  Abs (   902,   123)
+	 21: Rel (  -172,  -156)  ->  Abs (   730,   -33)
+	 22: Rel (  -200,     0)  ->  Abs (   530,   -33)
+	 23: Rel (  -123,     0)  ->  Abs (   407,   -33)
+	 24: Rel (   -64,    67)  ->  Abs (   343,    34)
+	 25: Rel (   -83,    88)  ->  Abs (   260,   122)
+	 26: Rel (     0,   117)  ->  Abs (   260,   239)
+	 27: Rel (     0,   542)  ->  Abs (   260,   781)
+	 28: Rel (  -113,     0)  ->  Abs (   147,   781)
+	 29: Rel (   -56,     0)  ->  Abs (    91,   781)
+	 30: Rel (     0,    43)  ->  Abs (    91,   824)
+	 31: Rel (     0,    42)  ->  Abs (    91,   866)
+	 32: Rel (    56,     0)  ->  Abs (   147,   866)
+	 33: Rel (   197,     0)  ->  Abs (   344,   866)
+	 34: Rel (     0,  -627)  ->  Abs (   344,   239)
+	 35: Rel (     0,   -82)  ->  Abs (   344,   157)
+	 36: Rel (   104,  -106)  ->  Abs (   448,    51)
+	 37: Rel (    78,     0)  ->  Abs (   526,    51)
+	 38: Rel (   205,     0)  ->  Abs (   731,    51)
+	 39: Rel (   171,   188)  ->  Abs (   902,   239)
+	 40: Rel (     0,   542)  ->  Abs (   902,   781)
+	 41: Rel (  -155,     0)  ->  Abs (   747,   781)
+	 42: Rel (   -56,     0)  ->  Abs (   691,   781)
+	 43: Rel (     0,    43)  ->  Abs (   691,   824)
+	 44: Rel (     0,    42)  ->  Abs (   691,   866)
+	 45: Rel (    56,     0)  ->  Abs (   747,   866)
+	 46: Rel (   239,     0)  ->  Abs (   986,   866)
+	 47: Rel (     0,  -132)  ->  Abs (   986,   734)
+	 48: Rel (    53,    -1)  ->  Abs (  1039,   733)
+
+	Glyph 1133: off = 0x000369BE, len = 112
+	  numberOfContours:	1
+	  xMin:			449
+	  yMin:			1396
+	  xMax:			852
+	  yMax:			1608
+
+	EndPoints
+	---------
+	  0:  14
+
+	  Length of Instructions:	53
+	00000: NPUSHB      (19):     0    16    13    17    52     6    64    59    60    52 
+	                           127     6     1    31     6    47     6     2     6 
+	00021: PUSHW[1]            -64 
+	00024: PUSHB[6]             11    15    52     6     6    13 
+	00031: PUSHW[1]            960 
+	00034: PUSHB[3]              4     4    11 
+	00038: MDAP[rd]   
+	00039: SHP[rp1,zp0] 
+	00040: MDAP[rd]   
+	00041: SVTCA[y-axis] 
+	00042: MIAP[rd+ci] 
+	00043: SHP[rp1,zp0] 
+	00044: MDAP[rd]   
+	00045: CALL       
+	00046: DELTAP2    
+	00047: DELTAP3    
+	00048: CALL       
+	00049: IUP[y]     
+	00050: IUP[x]     
+	00051: SVTCA[x-axis] 
+	00052: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short         On
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short         On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   520,  1597)  ->  Abs (   520,  1597)
+	  1: Rel (   291,  -111)  ->  Abs (   811,  1486)
+	  2: Rel (    30,   -16)  ->  Abs (   841,  1470)
+	  3: Rel (    11,    -9)  ->  Abs (   852,  1461)
+	  4: Rel (     0,   -20)  ->  Abs (   852,  1441)
+	  5: Rel (     0,   -29)  ->  Abs (   852,  1412)
+	  6: Rel (   -29,   -11)  ->  Abs (   823,  1401)
+	  7: Rel (   -14,    -5)  ->  Abs (   809,  1396)
+	  8: Rel (   -28,    11)  ->  Abs (   781,  1407)
+	  9: Rel (  -292,   111)  ->  Abs (   489,  1518)
+	 10: Rel (   -40,    15)  ->  Abs (   449,  1533)
+	 11: Rel (     0,    30)  ->  Abs (   449,  1563)
+	 12: Rel (     0,    30)  ->  Abs (   449,  1593)
+	 13: Rel (    28,    10)  ->  Abs (   477,  1603)
+	 14: Rel (    14,     5)  ->  Abs (   491,  1608)
+
+	Glyph 1134: off = 0x00036A2E, len = 112
+	  numberOfContours:	1
+	  xMin:			409
+	  yMin:			1396
+	  xMax:			812
+	  yMax:			1608
+
+	EndPoints
+	---------
+	  0:  14
+
+	  Length of Instructions:	53
+	00000: NPUSHB      (19):     0    16    13    17    52     6    64    59    60    52 
+	                           127     6     1    31     6    47     6     2     6 
+	00021: PUSHW[1]            -64 
+	00024: PUSHB[6]             11    15    52     6     6    13 
+	00031: PUSHW[1]            960 
+	00034: PUSHB[3]              4     4    11 
+	00038: MDAP[rd]   
+	00039: SHP[rp1,zp0] 
+	00040: MDAP[rd]   
+	00041: SVTCA[y-axis] 
+	00042: MIAP[rd+ci] 
+	00043: SHP[rp1,zp0] 
+	00044: MDAP[rd]   
+	00045: CALL       
+	00046: DELTAP2    
+	00047: DELTAP3    
+	00048: CALL       
+	00049: IUP[y]     
+	00050: IUP[x]     
+	00051: SVTCA[x-axis] 
+	00052: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short         On
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short         On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   480,  1597)  ->  Abs (   480,  1597)
+	  1: Rel (   291,  -111)  ->  Abs (   771,  1486)
+	  2: Rel (    30,   -16)  ->  Abs (   801,  1470)
+	  3: Rel (    11,    -9)  ->  Abs (   812,  1461)
+	  4: Rel (     0,   -20)  ->  Abs (   812,  1441)
+	  5: Rel (     0,   -29)  ->  Abs (   812,  1412)
+	  6: Rel (   -29,   -11)  ->  Abs (   783,  1401)
+	  7: Rel (   -14,    -5)  ->  Abs (   769,  1396)
+	  8: Rel (   -28,    11)  ->  Abs (   741,  1407)
+	  9: Rel (  -292,   111)  ->  Abs (   449,  1518)
+	 10: Rel (   -40,    15)  ->  Abs (   409,  1533)
+	 11: Rel (     0,    30)  ->  Abs (   409,  1563)
+	 12: Rel (     0,    30)  ->  Abs (   409,  1593)
+	 13: Rel (    28,    10)  ->  Abs (   437,  1603)
+	 14: Rel (    14,     5)  ->  Abs (   451,  1608)
+
+	Glyph 1135: off = 0x00036A9E, len = 116
+	  numberOfContours:	1
+	  xMin:			408
+	  yMin:			1295
+	  xMax:			750
+	  yMax:			1603
+
+	EndPoints
+	---------
+	  0:  14
+
+	  Length of Instructions:	62
+	00000: PUSHB[6]              1    24    15    17    52     9 
+	00007: PUSHW[1]            -24 
+	00010: NPUSHB       (9):     9    10    52     1    24     9    10    52     6 
+	00021: PUSHW[1]            -64 
+	00024: PUSHB[4]              9    10    52     6 
+	00029: PUSHW[3]            498    13   960 
+	00036: NPUSHB       (9):     4     4     0    11     1    48    11     1    11 
+	00047: MDAP[rd]   
+	00048: DELTAP1    
+	00049: DELTAP2    
+	00050: SHP[rp1,zp0] 
+	00051: MDAP[rd]   
+	00052: SVTCA[y-axis] 
+	00053: MIAP[rd+ci] 
+	00054: MIRP[nrp0,md,rd,1] 
+	00055: CALL       
+	00056: IUP[y]     
+	00057: IUP[x]     
+	00058: SVTCA[y-axis] 
+	00059: CALL       
+	00060: CALL       
+	00061: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   489,  1583)  ->  Abs (   489,  1583)
+	  1: Rel (   236,  -204)  ->  Abs (   725,  1379)
+	  2: Rel (    22,   -25)  ->  Abs (   747,  1354)
+	  3: Rel (     3,    -5)  ->  Abs (   750,  1349)
+	  4: Rel (     0,   -11)  ->  Abs (   750,  1338)
+	  5: Rel (     0,   -43)  ->  Abs (   750,  1295)
+	  6: Rel (   -43,     0)  ->  Abs (   707,  1295)
+	  7: Rel (   -15,     0)  ->  Abs (   692,  1295)
+	  8: Rel (   -23,    20)  ->  Abs (   669,  1315)
+	  9: Rel (  -236,   204)  ->  Abs (   433,  1519)
+	 10: Rel (   -25,    22)  ->  Abs (   408,  1541)
+	 11: Rel (     0,    19)  ->  Abs (   408,  1560)
+	 12: Rel (     0,    43)  ->  Abs (   408,  1603)
+	 13: Rel (    43,     0)  ->  Abs (   451,  1603)
+	 14: Rel (    15,     0)  ->  Abs (   466,  1603)
+
+	Glyph 1136: off = 0x00036B12, len = 116
+	  numberOfContours:	1
+	  xMin:			452
+	  yMin:			1396
+	  xMax:			855
+	  yMax:			1608
+
+	EndPoints
+	---------
+	  0:  14
+
+	  Length of Instructions:	56
+	00000: PUSHW[2]             14   -16 
+	00005: NPUSHB      (17):    13    17    52     8    64    59    60    52   127     8 
+	                             1    31     8    47     8     2     8 
+	00024: PUSHW[1]            -64 
+	00027: PUSHB[6]             11    15    52     8     8     1 
+	00034: PUSHW[1]            960 
+	00037: PUSHB[3]              3     3    10 
+	00041: MDAP[rd]   
+	00042: SHP[rp1,zp0] 
+	00043: MDAP[rd]   
+	00044: SVTCA[y-axis] 
+	00045: MIAP[rd+ci] 
+	00046: SHP[rp1,zp0] 
+	00047: MDAP[rd]   
+	00048: CALL       
+	00049: DELTAP2    
+	00050: DELTAP3    
+	00051: CALL       
+	00052: IUP[y]     
+	00053: IUP[x]     
+	00054: SVTCA[x-axis] 
+	00055: CALL       
+
+	Flags
+	-----
+	  0:                                      Off
+	  1:        XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short         On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual               Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   812,  1608)  ->  Abs (   812,  1608)
+	  1: Rel (    14,    -5)  ->  Abs (   826,  1603)
+	  2: Rel (    29,   -10)  ->  Abs (   855,  1593)
+	  3: Rel (     0,   -30)  ->  Abs (   855,  1563)
+	  4: Rel (     0,   -30)  ->  Abs (   855,  1533)
+	  5: Rel (   -41,   -15)  ->  Abs (   814,  1518)
+	  6: Rel (  -291,  -111)  ->  Abs (   523,  1407)
+	  7: Rel (   -29,   -11)  ->  Abs (   494,  1396)
+	  8: Rel (   -14,     5)  ->  Abs (   480,  1401)
+	  9: Rel (   -28,    11)  ->  Abs (   452,  1412)
+	 10: Rel (     0,    29)  ->  Abs (   452,  1441)
+	 11: Rel (     0,    20)  ->  Abs (   452,  1461)
+	 12: Rel (    11,     9)  ->  Abs (   463,  1470)
+	 13: Rel (    29,    16)  ->  Abs (   492,  1486)
+	 14: Rel (   292,   111)  ->  Abs (   784,  1597)
+
+	Glyph 1137: off = 0x00036B86, len = 116
+	  numberOfContours:	1
+	  xMin:			459
+	  yMin:			1396
+	  xMax:			862
+	  yMax:			1608
+
+	EndPoints
+	---------
+	  0:  14
+
+	  Length of Instructions:	56
+	00000: PUSHW[2]             14   -16 
+	00005: NPUSHB      (17):    13    17    52     8    64    59    60    52   127     8 
+	                             1    31     8    47     8     2     8 
+	00024: PUSHW[1]            -64 
+	00027: PUSHB[6]             11    15    52     8     8     1 
+	00034: PUSHW[1]            960 
+	00037: PUSHB[3]              3     3    10 
+	00041: MDAP[rd]   
+	00042: SHP[rp1,zp0] 
+	00043: MDAP[rd]   
+	00044: SVTCA[y-axis] 
+	00045: MIAP[rd+ci] 
+	00046: SHP[rp1,zp0] 
+	00047: MDAP[rd]   
+	00048: CALL       
+	00049: DELTAP2    
+	00050: DELTAP3    
+	00051: CALL       
+	00052: IUP[y]     
+	00053: IUP[x]     
+	00054: SVTCA[x-axis] 
+	00055: CALL       
+
+	Flags
+	-----
+	  0:                                      Off
+	  1:        XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short         On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual               Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   819,  1608)  ->  Abs (   819,  1608)
+	  1: Rel (    14,    -5)  ->  Abs (   833,  1603)
+	  2: Rel (    29,   -10)  ->  Abs (   862,  1593)
+	  3: Rel (     0,   -30)  ->  Abs (   862,  1563)
+	  4: Rel (     0,   -30)  ->  Abs (   862,  1533)
+	  5: Rel (   -41,   -15)  ->  Abs (   821,  1518)
+	  6: Rel (  -291,  -111)  ->  Abs (   530,  1407)
+	  7: Rel (   -29,   -11)  ->  Abs (   501,  1396)
+	  8: Rel (   -14,     5)  ->  Abs (   487,  1401)
+	  9: Rel (   -28,    11)  ->  Abs (   459,  1412)
+	 10: Rel (     0,    29)  ->  Abs (   459,  1441)
+	 11: Rel (     0,    20)  ->  Abs (   459,  1461)
+	 12: Rel (    11,     9)  ->  Abs (   470,  1470)
+	 13: Rel (    29,    16)  ->  Abs (   499,  1486)
+	 14: Rel (   292,   111)  ->  Abs (   791,  1597)
+
+	Glyph 1138: off = 0x00036BFA, len = 106
+	  numberOfContours:	1
+	  xMin:			448
+	  yMin:			1295
+	  xMax:			790
+	  yMax:			1603
+
+	EndPoints
+	---------
+	  0:  14
+
+	  Length of Instructions:	53
+	00000: PUSHB[6]             13    24    15    17    52     5 
+	00007: PUSHW[1]            -24 
+	00010: NPUSHB       (9):     9    10    52    13    24     9    10    52     8 
+	00021: PUSHW[1]            -64 
+	00024: PUSHB[4]              9    10    52     8 
+	00029: PUSHW[3]            498     1   960 
+	00036: PUSHB[3]              3     3    10 
+	00040: MDAP[rd]   
+	00041: SHP[rp1,zp0] 
+	00042: MDAP[rd]   
+	00043: SVTCA[y-axis] 
+	00044: MIAP[rd+ci] 
+	00045: MIRP[nrp0,md,rd,1] 
+	00046: CALL       
+	00047: IUP[y]     
+	00048: IUP[x]     
+	00049: SVTCA[y-axis] 
+	00050: CALL       
+	00051: CALL       
+	00052: CALL       
+
+	Flags
+	-----
+	  0:                                      Off
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual Rep-  2 Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   732,  1603)  ->  Abs (   732,  1603)
+	  1: Rel (    15,     0)  ->  Abs (   747,  1603)
+	  2: Rel (    43,     0)  ->  Abs (   790,  1603)
+	  3: Rel (     0,   -43)  ->  Abs (   790,  1560)
+	  4: Rel (     0,   -19)  ->  Abs (   790,  1541)
+	  5: Rel (   -25,   -22)  ->  Abs (   765,  1519)
+	  6: Rel (  -236,  -204)  ->  Abs (   529,  1315)
+	  7: Rel (   -23,   -20)  ->  Abs (   506,  1295)
+	  8: Rel (   -15,     0)  ->  Abs (   491,  1295)
+	  9: Rel (   -43,     0)  ->  Abs (   448,  1295)
+	 10: Rel (     0,    43)  ->  Abs (   448,  1338)
+	 11: Rel (     0,    11)  ->  Abs (   448,  1349)
+	 12: Rel (     3,     5)  ->  Abs (   451,  1354)
+	 13: Rel (    22,    25)  ->  Abs (   473,  1379)
+	 14: Rel (   236,   204)  ->  Abs (   709,  1583)
+
+	Glyph 1139: off = 0x00036C64, len = 184
+	  numberOfContours:	1
+	  xMin:			443
+	  yMin:			1306
+	  xMax:			765
+	  yMax:			1563
+
+	EndPoints
+	---------
+	  0:  26
+
+	  Length of Instructions:	103
+	00000: PUSHW[2]             19   -64 
+	00005: PUSHB[7]              9    21    52     8     8    26    15 
+	00013: PUSHW[4]            475     4    26   475 
+	00022: PUSHB[3]             20    64    20 
+	00026: PUSHW[1]            -64 
+	00029: PUSHB[5]              9    17    52    20    23 
+	00035: PUSHW[3]            651    18   475 
+	00042: PUSHB[3]              2     2    21 
+	00046: PUSHW[1]            475 
+	00049: PUSHB[4]             25    10    10    25 
+	00054: PUSHW[1]            -64 
+	00057: PUSHB[7]             70    76    52     0    25     1    25 
+	00065: PUSHW[1]            -64 
+	00068: PUSHB[4]             18    21    52    25 
+	00073: MDAP[rd]   
+	00074: CALL       
+	00075: DELTAP2    
+	00076: CALL       
+	00077: SHP[rp1,zp0] 
+	00078: MDAP[rd]   
+	00079: SRP0       
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: SHP[rp2,zp1] 
+	00082: MDAP[rd]   
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: SVTCA[y-axis] 
+	00085: MIAP[rd+ci] 
+	00086: MDRP[nrp0,md,rd,1] 
+	00087: CALL       
+	00088: SVTCA[y-axis] 
+	00089: SMD        
+	00090: RTG        
+	00091: SRP0       
+	00092: FLIPON     
+	00093: MIRP[srp0,md,rd,1] 
+	00094: MDRP[srp0,nmd,rd,2] 
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: SRP2       
+	00097: IP         
+	00098: MDAP[rd]   
+	00099: IUP[y]     
+	00100: IUP[x]     
+	00101: SVTCA[x-axis] 
+	00102: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   626,  1402)  ->  Abs (   626,  1402)
+	  1: Rel (    76,     0)  ->  Abs (   702,  1402)
+	  2: Rel (     2,    42)  ->  Abs (   704,  1444)
+	  3: Rel (     0,    59)  ->  Abs (   704,  1503)
+	  4: Rel (   -83,     0)  ->  Abs (   621,  1503)
+	  5: Rel (   -57,     0)  ->  Abs (   564,  1503)
+	  6: Rel (   -68,   -38)  ->  Abs (   496,  1465)
+	  7: Rel (   -13,    -7)  ->  Abs (   483,  1458)
+	  8: Rel (   -10,     0)  ->  Abs (   473,  1458)
+	  9: Rel (   -30,     0)  ->  Abs (   443,  1458)
+	 10: Rel (     0,    30)  ->  Abs (   443,  1488)
+	 11: Rel (     0,    12)  ->  Abs (   443,  1500)
+	 12: Rel (    10,    11)  ->  Abs (   453,  1511)
+	 13: Rel (    14,    16)  ->  Abs (   467,  1527)
+	 14: Rel (   109,    36)  ->  Abs (   576,  1563)
+	 15: Rel (    45,     0)  ->  Abs (   621,  1563)
+	 16: Rel (    67,     0)  ->  Abs (   688,  1563)
+	 17: Rel (    77,   -66)  ->  Abs (   765,  1497)
+	 18: Rel (     0,   -51)  ->  Abs (   765,  1446)
+	 19: Rel (    -2,   -84)  ->  Abs (   763,  1362)
+	 20: Rel (  -118,   -17)  ->  Abs (   645,  1345)
+	 21: Rel (     0,   -14)  ->  Abs (   645,  1331)
+	 22: Rel (     0,   -25)  ->  Abs (   645,  1306)
+	 23: Rel (   -30,     0)  ->  Abs (   615,  1306)
+	 24: Rel (   -30,     0)  ->  Abs (   585,  1306)
+	 25: Rel (     0,    25)  ->  Abs (   585,  1331)
+	 26: Rel (     0,    71)  ->  Abs (   585,  1402)
+
+	Glyph 1140: off = 0x00036D1C, len = 180
+	  numberOfContours:	1
+	  xMin:			453
+	  yMin:			1432
+	  xMax:			743
+	  yMax:			1603
+
+	EndPoints
+	---------
+	  0:  24
+
+	  Length of Instructions:	105
+	00000: PUSHW[2]             17   -64 
+	00005: NPUSHB      (10):     9    39    52     8     8     4    24    21    21    18 
+	00017: PUSHW[1]            291 
+	00020: PUSHB[8]             24    64    16    22    52    24    24     4 
+	00029: PUSHW[5]            291    14   960    16   475 
+	00040: PUSHB[3]              2    64     2 
+	00044: PUSHW[1]            -64 
+	00047: PUSHB[6]             21    22    52     2     2    19 
+	00054: PUSHW[1]            475 
+	00057: NPUSHB      (10):    23    64    10    64    24    30    52    10    10    23 
+	00069: MDAP[rd]   
+	00070: SHP[rp1,zp0] 
+	00071: MDAP[rd]   
+	00072: CALL       
+	00073: SVTCA[x-axis] 
+	00074: SMD        
+	00075: RTG        
+	00076: SRP0       
+	00077: FLIPON     
+	00078: MIRP[nrp0,md,rd,1] 
+	00079: SHP[rp2,zp1] 
+	00080: MDAP[rd]   
+	00081: CALL       
+	00082: SVTCA[x-axis] 
+	00083: SMD        
+	00084: RTG        
+	00085: SRP0       
+	00086: FLIPON     
+	00087: MIRP[nrp0,md,rd,1] 
+	00088: SVTCA[y-axis] 
+	00089: MIAP[rd+ci] 
+	00090: MIRP[nrp0,md,rd,1] 
+	00091: SHP[rp2,zp1] 
+	00092: MDAP[rd]   
+	00093: CALL       
+	00094: MIRP[nrp0,md,rd,1] 
+	00095: SHP[rp2,zp1] 
+	00096: MDAP[rd]   
+	00097: SRP1       
+	00098: SRP2       
+	00099: IP         
+	00100: MDAP[rd]   
+	00101: IUP[y]     
+	00102: IUP[x]     
+	00103: SVTCA[x-axis] 
+	00104: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   619,  1501)  ->  Abs (   619,  1501)
+	  1: Rel (    69,     0)  ->  Abs (   688,  1501)
+	  2: Rel (     0,    31)  ->  Abs (   688,  1532)
+	  3: Rel (     0,    35)  ->  Abs (   688,  1567)
+	  4: Rel (   -75,     0)  ->  Abs (   613,  1567)
+	  5: Rel (   -51,     0)  ->  Abs (   562,  1567)
+	  6: Rel (   -61,   -23)  ->  Abs (   501,  1544)
+	  7: Rel (   -12,    -4)  ->  Abs (   489,  1540)
+	  8: Rel (    -9,     0)  ->  Abs (   480,  1540)
+	  9: Rel (   -27,     0)  ->  Abs (   453,  1540)
+	 10: Rel (     0,    18)  ->  Abs (   453,  1558)
+	 11: Rel (     0,     7)  ->  Abs (   453,  1565)
+	 12: Rel (     9,     7)  ->  Abs (   462,  1572)
+	 13: Rel (    41,    31)  ->  Abs (   503,  1603)
+	 14: Rel (   110,     0)  ->  Abs (   613,  1603)
+	 15: Rel (   130,     0)  ->  Abs (   743,  1603)
+	 16: Rel (     0,   -70)  ->  Abs (   743,  1533)
+	 17: Rel (     0,   -56)  ->  Abs (   743,  1477)
+	 18: Rel (  -106,   -10)  ->  Abs (   637,  1467)
+	 19: Rel (     1,   -11)  ->  Abs (   638,  1456)
+	 20: Rel (     0,   -24)  ->  Abs (   638,  1432)
+	 21: Rel (   -27,     0)  ->  Abs (   611,  1432)
+	 22: Rel (   -27,     0)  ->  Abs (   584,  1432)
+	 23: Rel (     0,    24)  ->  Abs (   584,  1456)
+	 24: Rel (    -1,    45)  ->  Abs (   583,  1501)
+
+	Glyph 1141: off = 0x00036DD0, len = 178
+	  numberOfContours:	1
+	  xMin:			427
+	  yMin:			1317
+	  xMax:			749
+	  yMax:			1603
+
+	EndPoints
+	---------
+	  0:  26
+
+	  Length of Instructions:	97
+	00000: PUSHW[2]             19   -64 
+	00005: NPUSHB      (10):     9    21    52     8     8     4    26    23    23    20 
+	00017: PUSHW[1]            475 
+	00020: PUSHB[6]             31    26     1    26    26     4 
+	00027: PUSHW[5]            475    15   960    18   475 
+	00038: PUSHB[3]              2     2    21 
+	00042: PUSHW[1]            475 
+	00045: PUSHB[4]             25    10    10    25 
+	00050: PUSHW[1]            -64 
+	00053: PUSHB[7]             70    76    52     0    25     1    25 
+	00061: PUSHW[1]            -64 
+	00064: PUSHB[4]             18    21    52    25 
+	00069: MDAP[rd]   
+	00070: CALL       
+	00071: DELTAP2    
+	00072: CALL       
+	00073: SHP[rp1,zp0] 
+	00074: MDAP[rd]   
+	00075: SRP0       
+	00076: MIRP[nrp0,md,rd,1] 
+	00077: SHP[rp2,zp1] 
+	00078: MDAP[rd]   
+	00079: MIRP[nrp0,md,rd,1] 
+	00080: SVTCA[y-axis] 
+	00081: MIAP[rd+ci] 
+	00082: MIRP[nrp0,md,rd,1] 
+	00083: SHP[rp2,zp1] 
+	00084: MDAP[rd]   
+	00085: DELTAP1    
+	00086: MIRP[nrp0,md,rd,1] 
+	00087: SHP[rp2,zp1] 
+	00088: MDAP[rd]   
+	00089: SRP1       
+	00090: SRP2       
+	00091: IP         
+	00092: MDAP[rd]   
+	00093: IUP[y]     
+	00094: IUP[x]     
+	00095: SVTCA[x-axis] 
+	00096: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short X-Short On
+	 22:        XDual         Y-Short         Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   612,  1433)  ->  Abs (   612,  1433)
+	  1: Rel (    76,     0)  ->  Abs (   688,  1433)
+	  2: Rel (     0,    51)  ->  Abs (   688,  1484)
+	  3: Rel (     0,    59)  ->  Abs (   688,  1543)
+	  4: Rel (   -83,     0)  ->  Abs (   605,  1543)
+	  5: Rel (   -57,     0)  ->  Abs (   548,  1543)
+	  6: Rel (   -68,   -38)  ->  Abs (   480,  1505)
+	  7: Rel (   -13,    -7)  ->  Abs (   467,  1498)
+	  8: Rel (   -10,     0)  ->  Abs (   457,  1498)
+	  9: Rel (   -30,     0)  ->  Abs (   427,  1498)
+	 10: Rel (     0,    30)  ->  Abs (   427,  1528)
+	 11: Rel (     0,    12)  ->  Abs (   427,  1540)
+	 12: Rel (    10,    11)  ->  Abs (   437,  1551)
+	 13: Rel (    14,    16)  ->  Abs (   451,  1567)
+	 14: Rel (   109,    36)  ->  Abs (   560,  1603)
+	 15: Rel (    45,     0)  ->  Abs (   605,  1603)
+	 16: Rel (    67,     0)  ->  Abs (   672,  1603)
+	 17: Rel (    77,   -66)  ->  Abs (   749,  1537)
+	 18: Rel (     0,   -51)  ->  Abs (   749,  1486)
+	 19: Rel (     0,   -93)  ->  Abs (   749,  1393)
+	 20: Rel (  -118,   -17)  ->  Abs (   631,  1376)
+	 21: Rel (    -1,   -19)  ->  Abs (   630,  1357)
+	 22: Rel (     0,   -40)  ->  Abs (   630,  1317)
+	 23: Rel (   -30,     0)  ->  Abs (   600,  1317)
+	 24: Rel (   -30,     0)  ->  Abs (   570,  1317)
+	 25: Rel (     0,    40)  ->  Abs (   570,  1357)
+	 26: Rel (     1,    76)  ->  Abs (   571,  1433)
+
+	Glyph 1142: off = 0x00036E82, len = 180
+	  numberOfContours:	1
+	  xMin:			441
+	  yMin:			1432
+	  xMax:			731
+	  yMax:			1603
+
+	EndPoints
+	---------
+	  0:  24
+
+	  Length of Instructions:	105
+	00000: PUSHW[2]             17   -64 
+	00005: NPUSHB      (10):     9    39    52     8     8     4    24    21    21    18 
+	00017: PUSHW[1]            291 
+	00020: PUSHB[8]             24    64    16    22    52    24    24     4 
+	00029: PUSHW[5]            291    14   960    16   475 
+	00040: PUSHB[3]              2    64     2 
+	00044: PUSHW[1]            -64 
+	00047: PUSHB[6]             20    22    52     2     2    19 
+	00054: PUSHW[1]            475 
+	00057: NPUSHB      (10):    23    64    10    64    24    30    52    10    10    23 
+	00069: MDAP[rd]   
+	00070: SHP[rp1,zp0] 
+	00071: MDAP[rd]   
+	00072: CALL       
+	00073: SVTCA[x-axis] 
+	00074: SMD        
+	00075: RTG        
+	00076: SRP0       
+	00077: FLIPON     
+	00078: MIRP[nrp0,md,rd,1] 
+	00079: SHP[rp2,zp1] 
+	00080: MDAP[rd]   
+	00081: CALL       
+	00082: SVTCA[x-axis] 
+	00083: SMD        
+	00084: RTG        
+	00085: SRP0       
+	00086: FLIPON     
+	00087: MIRP[nrp0,md,rd,1] 
+	00088: SVTCA[y-axis] 
+	00089: MIAP[rd+ci] 
+	00090: MIRP[nrp0,md,rd,1] 
+	00091: SHP[rp2,zp1] 
+	00092: MDAP[rd]   
+	00093: CALL       
+	00094: MIRP[nrp0,md,rd,1] 
+	00095: SHP[rp2,zp1] 
+	00096: MDAP[rd]   
+	00097: SRP1       
+	00098: SRP2       
+	00099: IP         
+	00100: MDAP[rd]   
+	00101: IUP[y]     
+	00102: IUP[x]     
+	00103: SVTCA[x-axis] 
+	00104: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual               Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   607,  1501)  ->  Abs (   607,  1501)
+	  1: Rel (    69,     0)  ->  Abs (   676,  1501)
+	  2: Rel (     0,    31)  ->  Abs (   676,  1532)
+	  3: Rel (     0,    35)  ->  Abs (   676,  1567)
+	  4: Rel (   -75,     0)  ->  Abs (   601,  1567)
+	  5: Rel (   -51,     0)  ->  Abs (   550,  1567)
+	  6: Rel (   -61,   -23)  ->  Abs (   489,  1544)
+	  7: Rel (   -12,    -4)  ->  Abs (   477,  1540)
+	  8: Rel (    -9,     0)  ->  Abs (   468,  1540)
+	  9: Rel (   -27,     0)  ->  Abs (   441,  1540)
+	 10: Rel (     0,    18)  ->  Abs (   441,  1558)
+	 11: Rel (     0,     7)  ->  Abs (   441,  1565)
+	 12: Rel (     9,     7)  ->  Abs (   450,  1572)
+	 13: Rel (    41,    31)  ->  Abs (   491,  1603)
+	 14: Rel (   110,     0)  ->  Abs (   601,  1603)
+	 15: Rel (   130,     0)  ->  Abs (   731,  1603)
+	 16: Rel (     0,   -70)  ->  Abs (   731,  1533)
+	 17: Rel (     0,   -56)  ->  Abs (   731,  1477)
+	 18: Rel (  -106,   -10)  ->  Abs (   625,  1467)
+	 19: Rel (     1,   -11)  ->  Abs (   626,  1456)
+	 20: Rel (     0,   -24)  ->  Abs (   626,  1432)
+	 21: Rel (   -27,     0)  ->  Abs (   599,  1432)
+	 22: Rel (   -27,     0)  ->  Abs (   572,  1432)
+	 23: Rel (     0,    24)  ->  Abs (   572,  1456)
+	 24: Rel (    -1,    45)  ->  Abs (   571,  1501)
+
+	Glyph 1143: off = 0x00036F36, len = 186
+	  numberOfContours:	1
+	  xMin:			299
+	  yMin:			1375
+	  xMax:			937
+	  yMax:			1581
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	95
+	00000: PUSHB[6]             10    32    15    27    52     6 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (36):     9    14    52    21    32     9    14    52     0     0 
+	                            22    26    16    16    12    26    44     8    64     8 
+	                            64    60    53   159     8     1    95     8   224     8 
+	                             2     8   128    12    44    22 
+	00048: PUSHW[1]            960 
+	00051: NPUSHB      (10):    15     2    31     2    47     2     3     2     2    18 
+	00063: MDAP[rd]   
+	00064: SHP[rp1,zp0] 
+	00065: MDAP[rd]   
+	00066: DELTAP1    
+	00067: SVTCA[y-axis] 
+	00068: MIAP[rd+ci] 
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: SMD        
+	00071: RDTG       
+	00072: MDRP[nrp0,md,rd,1] 
+	00073: DELTAP2    
+	00074: DELTAP3    
+	00075: CALL       
+	00076: SVTCA[y-axis] 
+	00077: SMD        
+	00078: RTG        
+	00079: SRP0       
+	00080: FLIPON     
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SRP2       
+	00083: IP         
+	00084: MDAP[rd]   
+	00085: SRP1       
+	00086: SRP2       
+	00087: IP         
+	00088: MDAP[rd]   
+	00089: IUP[y]     
+	00090: IUP[x]     
+	00091: SVTCA[x-axis] 
+	00092: CALL       
+	00093: CALL       
+	00094: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   895,  1541)  ->  Abs (   895,  1541)
+	  1: Rel (    42,     0)  ->  Abs (   937,  1541)
+	  2: Rel (     0,   -39)  ->  Abs (   937,  1502)
+	  3: Rel (     0,   -17)  ->  Abs (   937,  1485)
+	  4: Rel (   -13,   -15)  ->  Abs (   924,  1470)
+	  5: Rel (   -38,   -44)  ->  Abs (   886,  1426)
+	  6: Rel (   -57,   -30)  ->  Abs (   829,  1396)
+	  7: Rel (   -39,   -21)  ->  Abs (   790,  1375)
+	  8: Rel (   -40,     0)  ->  Abs (   750,  1375)
+	  9: Rel (   -64,     0)  ->  Abs (   686,  1375)
+	 10: Rel (  -109,    79)  ->  Abs (   577,  1454)
+	 11: Rel (   -58,    43)  ->  Abs (   519,  1497)
+	 12: Rel (   -32,     0)  ->  Abs (   487,  1497)
+	 13: Rel (   -40,     0)  ->  Abs (   447,  1497)
+	 14: Rel (   -61,   -56)  ->  Abs (   386,  1441)
+	 15: Rel (   -27,   -25)  ->  Abs (   359,  1416)
+	 16: Rel (   -19,     0)  ->  Abs (   340,  1416)
+	 17: Rel (   -41,     0)  ->  Abs (   299,  1416)
+	 18: Rel (     0,    40)  ->  Abs (   299,  1456)
+	 19: Rel (     0,    27)  ->  Abs (   299,  1483)
+	 20: Rel (    51,    39)  ->  Abs (   350,  1522)
+	 21: Rel (    77,    59)  ->  Abs (   427,  1581)
+	 22: Rel (    59,     0)  ->  Abs (   486,  1581)
+	 23: Rel (    56,     0)  ->  Abs (   542,  1581)
+	 24: Rel (   106,   -73)  ->  Abs (   648,  1508)
+	 25: Rel (    70,   -48)  ->  Abs (   718,  1460)
+	 26: Rel (    32,     0)  ->  Abs (   750,  1460)
+	 27: Rel (    37,     0)  ->  Abs (   787,  1460)
+	 28: Rel (    78,    68)  ->  Abs (   865,  1528)
+	 29: Rel (    15,    13)  ->  Abs (   880,  1541)
+
+	Glyph 1144: off = 0x00036FF0, len = 186
+	  numberOfContours:	1
+	  xMin:			292
+	  yMin:			1397
+	  xMax:			930
+	  yMax:			1603
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	95
+	00000: PUSHB[6]             10    32    15    27    52     6 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (36):     9    14    52    21    32     9    14    52     0     0 
+	                            22    26    16    16    12    26    44     8    64     8 
+	                            64    60    53   159     8     1    95     8   224     8 
+	                             2     8   128    12    44    22 
+	00048: PUSHW[1]            960 
+	00051: NPUSHB      (10):    15     2    31     2    47     2     3     2     2    18 
+	00063: MDAP[rd]   
+	00064: SHP[rp1,zp0] 
+	00065: MDAP[rd]   
+	00066: DELTAP1    
+	00067: SVTCA[y-axis] 
+	00068: MIAP[rd+ci] 
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: SMD        
+	00071: RDTG       
+	00072: MDRP[nrp0,md,rd,1] 
+	00073: DELTAP2    
+	00074: DELTAP3    
+	00075: CALL       
+	00076: SVTCA[y-axis] 
+	00077: SMD        
+	00078: RTG        
+	00079: SRP0       
+	00080: FLIPON     
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SRP2       
+	00083: IP         
+	00084: MDAP[rd]   
+	00085: SRP1       
+	00086: SRP2       
+	00087: IP         
+	00088: MDAP[rd]   
+	00089: IUP[y]     
+	00090: IUP[x]     
+	00091: SVTCA[x-axis] 
+	00092: CALL       
+	00093: CALL       
+	00094: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   888,  1563)  ->  Abs (   888,  1563)
+	  1: Rel (    42,     0)  ->  Abs (   930,  1563)
+	  2: Rel (     0,   -39)  ->  Abs (   930,  1524)
+	  3: Rel (     0,   -18)  ->  Abs (   930,  1506)
+	  4: Rel (   -13,   -14)  ->  Abs (   917,  1492)
+	  5: Rel (   -39,   -44)  ->  Abs (   878,  1448)
+	  6: Rel (   -56,   -30)  ->  Abs (   822,  1418)
+	  7: Rel (   -40,   -21)  ->  Abs (   782,  1397)
+	  8: Rel (   -39,     0)  ->  Abs (   743,  1397)
+	  9: Rel (   -65,     0)  ->  Abs (   678,  1397)
+	 10: Rel (  -108,    79)  ->  Abs (   570,  1476)
+	 11: Rel (   -59,    43)  ->  Abs (   511,  1519)
+	 12: Rel (   -31,     0)  ->  Abs (   480,  1519)
+	 13: Rel (   -41,     0)  ->  Abs (   439,  1519)
+	 14: Rel (   -60,   -56)  ->  Abs (   379,  1463)
+	 15: Rel (   -28,   -25)  ->  Abs (   351,  1438)
+	 16: Rel (   -18,     0)  ->  Abs (   333,  1438)
+	 17: Rel (   -41,     0)  ->  Abs (   292,  1438)
+	 18: Rel (     0,    40)  ->  Abs (   292,  1478)
+	 19: Rel (     0,    27)  ->  Abs (   292,  1505)
+	 20: Rel (    51,    39)  ->  Abs (   343,  1544)
+	 21: Rel (    76,    59)  ->  Abs (   419,  1603)
+	 22: Rel (    60,     0)  ->  Abs (   479,  1603)
+	 23: Rel (    55,     0)  ->  Abs (   534,  1603)
+	 24: Rel (   107,   -73)  ->  Abs (   641,  1530)
+	 25: Rel (    70,   -48)  ->  Abs (   711,  1482)
+	 26: Rel (    32,     0)  ->  Abs (   743,  1482)
+	 27: Rel (    36,     0)  ->  Abs (   779,  1482)
+	 28: Rel (    79,    68)  ->  Abs (   858,  1550)
+	 29: Rel (    14,    13)  ->  Abs (   872,  1563)
+
+	Glyph 1145: off = 0x000370AA, len = 194
+	  numberOfContours:	1
+	  xMin:			280
+	  yMin:			1397
+	  xMax:			918
+	  yMax:			1603
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	103
+	00000: PUSHB[6]             10    32    15    27    52     6 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (43):     9    14    52    21    32     9    14    52     0     0 
+	                            22    26    16    16    12    26    44     8    64     8 
+	                            64    60    53   159     8     1    95     8   224     8 
+	                             2     8   128    12    44    80    22   224    22   240 
+	                            22     3    22 
+	00055: PUSHW[1]            960 
+	00058: NPUSHB      (10):    15     2    31     2    47     2     3     2     2    18 
+	00070: MDAP[rd]   
+	00071: SHP[rp1,zp0] 
+	00072: MDAP[rd]   
+	00073: DELTAP1    
+	00074: SVTCA[y-axis] 
+	00075: MIAP[rd+ci] 
+	00076: DELTAP1    
+	00077: MIRP[nrp0,md,rd,1] 
+	00078: SMD        
+	00079: RDTG       
+	00080: MDRP[nrp0,md,rd,1] 
+	00081: DELTAP2    
+	00082: DELTAP3    
+	00083: CALL       
+	00084: SVTCA[y-axis] 
+	00085: SMD        
+	00086: RTG        
+	00087: SRP0       
+	00088: FLIPON     
+	00089: MIRP[nrp0,md,rd,1] 
+	00090: SRP2       
+	00091: IP         
+	00092: MDAP[rd]   
+	00093: SRP1       
+	00094: SRP2       
+	00095: IP         
+	00096: MDAP[rd]   
+	00097: IUP[y]     
+	00098: IUP[x]     
+	00099: SVTCA[x-axis] 
+	00100: CALL       
+	00101: CALL       
+	00102: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   876,  1563)  ->  Abs (   876,  1563)
+	  1: Rel (    42,     0)  ->  Abs (   918,  1563)
+	  2: Rel (     0,   -39)  ->  Abs (   918,  1524)
+	  3: Rel (     0,   -17)  ->  Abs (   918,  1507)
+	  4: Rel (   -13,   -15)  ->  Abs (   905,  1492)
+	  5: Rel (   -39,   -44)  ->  Abs (   866,  1448)
+	  6: Rel (   -56,   -30)  ->  Abs (   810,  1418)
+	  7: Rel (   -39,   -21)  ->  Abs (   771,  1397)
+	  8: Rel (   -40,     0)  ->  Abs (   731,  1397)
+	  9: Rel (   -65,     0)  ->  Abs (   666,  1397)
+	 10: Rel (  -108,    79)  ->  Abs (   558,  1476)
+	 11: Rel (   -59,    43)  ->  Abs (   499,  1519)
+	 12: Rel (   -31,     0)  ->  Abs (   468,  1519)
+	 13: Rel (   -41,     0)  ->  Abs (   427,  1519)
+	 14: Rel (   -60,   -56)  ->  Abs (   367,  1463)
+	 15: Rel (   -28,   -25)  ->  Abs (   339,  1438)
+	 16: Rel (   -18,     0)  ->  Abs (   321,  1438)
+	 17: Rel (   -41,     0)  ->  Abs (   280,  1438)
+	 18: Rel (     0,    40)  ->  Abs (   280,  1478)
+	 19: Rel (     0,    27)  ->  Abs (   280,  1505)
+	 20: Rel (    51,    39)  ->  Abs (   331,  1544)
+	 21: Rel (    76,    59)  ->  Abs (   407,  1603)
+	 22: Rel (    60,     0)  ->  Abs (   467,  1603)
+	 23: Rel (    55,     0)  ->  Abs (   522,  1603)
+	 24: Rel (   107,   -73)  ->  Abs (   629,  1530)
+	 25: Rel (    70,   -48)  ->  Abs (   699,  1482)
+	 26: Rel (    32,     0)  ->  Abs (   731,  1482)
+	 27: Rel (    37,     0)  ->  Abs (   768,  1482)
+	 28: Rel (    78,    68)  ->  Abs (   846,  1550)
+	 29: Rel (    15,    13)  ->  Abs (   861,  1563)
+
+	Glyph 1146: off = 0x0003716C, len = 166
+	  numberOfContours:	1
+	  xMin:			350
+	  yMin:			1215
+	  xMax:			892
+	  yMax:			1383
+
+	EndPoints
+	---------
+	  0:  23
+
+	  Length of Instructions:	89
+	00000: PUSHB[6]             12     0    96     0     1     0 
+	00007: PUSHW[1]            -64 
+	00010: PUSHB[4]             55    61    52     0 
+	00015: PUSHW[1]            -64 
+	00018: PUSHB[3]             67    53     0 
+	00022: PUSHW[1]            -64 
+	00025: PUSHB[6]             80    83    52     0   128     6 
+	00032: PUSHW[1]            272 
+	00035: PUSHB[3]             18    64    18 
+	00039: PUSHW[1]            -64 
+	00042: PUSHB[8]              9    13    52    18    64    18     3    14 
+	00051: PUSHW[1]            272 
+	00054: PUSHB[3]             10    10    22 
+	00058: PUSHW[2]            272     2 
+	00063: MDAP[rd]   
+	00064: MIRP[nrp0,md,rd,1] 
+	00065: SHP[rp1,zp0] 
+	00066: MDAP[rd]   
+	00067: MIRP[nrp0,md,rd,1] 
+	00068: SVTCA[y-axis] 
+	00069: MIAP[rd+ci] 
+	00070: SHPIX      
+	00071: CALL       
+	00072: SVTCA[y-axis] 
+	00073: SMD        
+	00074: RTG        
+	00075: SRP0       
+	00076: FLIPON     
+	00077: MIRP[nrp0,md,rd,1] 
+	00078: SMD        
+	00079: MDRP[nrp0,md,rd,0] 
+	00080: CALL       
+	00081: CALL       
+	00082: CALL       
+	00083: DELTAP2    
+	00084: SVTCA[y-axis] 
+	00085: SRP0       
+	00086: MDRP[nrp0,nmd,nrd,0] 
+	00087: IUP[y]     
+	00088: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short X-Short On
+	  5:        XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual               Y-Short X-Short On
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   388,  1383)  ->  Abs (   388,  1383)
+	  1: Rel (    19,     0)  ->  Abs (   407,  1383)
+	  2: Rel (    19,   -29)  ->  Abs (   426,  1354)
+	  3: Rel (     8,   -16)  ->  Abs (   434,  1338)
+	  4: Rel (    49,   -25)  ->  Abs (   483,  1313)
+	  5: Rel (    56,   -27)  ->  Abs (   539,  1286)
+	  6: Rel (    82,     0)  ->  Abs (   621,  1286)
+	  7: Rel (    80,     0)  ->  Abs (   701,  1286)
+	  8: Rel (    56,    27)  ->  Abs (   757,  1313)
+	  9: Rel (    44,    21)  ->  Abs (   801,  1334)
+	 10: Rel (    14,    20)  ->  Abs (   815,  1354)
+	 11: Rel (    15,    29)  ->  Abs (   830,  1383)
+	 12: Rel (    23,     0)  ->  Abs (   853,  1383)
+	 13: Rel (    39,     0)  ->  Abs (   892,  1383)
+	 14: Rel (     0,   -28)  ->  Abs (   892,  1355)
+	 15: Rel (     0,   -56)  ->  Abs (   892,  1299)
+	 16: Rel (   -74,   -41)  ->  Abs (   818,  1258)
+	 17: Rel (   -77,   -43)  ->  Abs (   741,  1215)
+	 18: Rel (  -120,     0)  ->  Abs (   621,  1215)
+	 19: Rel (  -120,     0)  ->  Abs (   501,  1215)
+	 20: Rel (   -78,    43)  ->  Abs (   423,  1258)
+	 21: Rel (   -73,    41)  ->  Abs (   350,  1299)
+	 22: Rel (     0,    56)  ->  Abs (   350,  1355)
+	 23: Rel (     0,    28)  ->  Abs (   350,  1383)
+
+	Glyph 1147: off = 0x00037212, len = 140
+	  numberOfContours:	1
+	  xMin:			324
+	  yMin:			1210
+	  xMax:			860
+	  yMax:			1384
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	84
+	00000: NPUSHB      (21):    15    32    31    35    52     1    32    31    35    52 
+	                            15    24    16    22    52     1    24    16    22    52 
+	                             8 
+	00023: PUSHW[1]            -24 
+	00026: NPUSHB      (12):     9    13    52     8    95     0     1     0   128     5 
+	                            11    11 
+	00040: PUSHW[1]            -64 
+	00043: NPUSHB      (12):     9    13    52    11    64    11     3     3    13    32 
+	                             8     0 
+	00057: RTHG       
+	00058: MDAP[rd]   
+	00059: MDRP[nrp0,nmd,nrd,0] 
+	00060: SMD        
+	00061: MDRP[nrp0,md,rd,1] 
+	00062: MDRP[nrp0,md,rd,1] 
+	00063: SVTCA[y-axis] 
+	00064: RTG        
+	00065: MIAP[rd+ci] 
+	00066: SHPIX      
+	00067: CALL       
+	00068: SVTCA[y-axis] 
+	00069: SRP0       
+	00070: MDRP[nrp0,nmd,nrd,0] 
+	00071: SMD        
+	00072: RDTG       
+	00073: MDRP[nrp0,md,rd,1] 
+	00074: DELTAP3    
+	00075: IP         
+	00076: CALL       
+	00077: IUP[y]     
+	00078: IUP[x]     
+	00079: SVTCA[y-axis] 
+	00080: CALL       
+	00081: CALL       
+	00082: CALL       
+	00083: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short On
+	  9:                      Y-Short X-Short On
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   592,  1384)  ->  Abs (   592,  1384)
+	  1: Rel (   243,  -124)  ->  Abs (   835,  1260)
+	  2: Rel (    25,   -12)  ->  Abs (   860,  1248)
+	  3: Rel (     0,   -13)  ->  Abs (   860,  1235)
+	  4: Rel (     0,   -25)  ->  Abs (   860,  1210)
+	  5: Rel (   -39,     0)  ->  Abs (   821,  1210)
+	  6: Rel (   -11,     0)  ->  Abs (   810,  1210)
+	  7: Rel (   -20,    10)  ->  Abs (   790,  1220)
+	  8: Rel (  -198,   102)  ->  Abs (   592,  1322)
+	  9: Rel (  -198,  -102)  ->  Abs (   394,  1220)
+	 10: Rel (   -20,   -10)  ->  Abs (   374,  1210)
+	 11: Rel (   -13,     0)  ->  Abs (   361,  1210)
+	 12: Rel (   -37,     0)  ->  Abs (   324,  1210)
+	 13: Rel (     0,    25)  ->  Abs (   324,  1235)
+	 14: Rel (     0,    13)  ->  Abs (   324,  1248)
+	 15: Rel (    25,    12)  ->  Abs (   349,  1260)
+
+	Glyph 1148: off = 0x0003729E, len = 62
+	  numberOfContours:	1
+	  xMin:			893
+	  yMin:			-324
+	  xMax:			1098
+	  yMax:			-119
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	17
+	00000: PUSHB[4]              3   138     9     0 
+	00005: PUSHW[2]            305     6 
+	00010: MDAP[rd]   
+	00011: MIRP[nrp0,md,rd,1] 
+	00012: SVTCA[y-axis] 
+	00013: MDAP[rd]   
+	00014: MIRP[nrp0,md,rd,1] 
+	00015: IUP[y]     
+	00016: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1098,  -222)  ->  Abs (  1098,  -222)
+	  1: Rel (     0,   -42)  ->  Abs (  1098,  -264)
+	  2: Rel (   -60,   -60)  ->  Abs (  1038,  -324)
+	  3: Rel (   -42,     0)  ->  Abs (   996,  -324)
+	  4: Rel (   -43,     0)  ->  Abs (   953,  -324)
+	  5: Rel (   -60,    60)  ->  Abs (   893,  -264)
+	  6: Rel (     0,    42)  ->  Abs (   893,  -222)
+	  7: Rel (     0,    43)  ->  Abs (   893,  -179)
+	  8: Rel (    60,    60)  ->  Abs (   953,  -119)
+	  9: Rel (    43,     0)  ->  Abs (   996,  -119)
+	 10: Rel (    42,     0)  ->  Abs (  1038,  -119)
+	 11: Rel (    60,   -60)  ->  Abs (  1098,  -179)
+
+	Glyph 1149: off = 0x000372DC, len = 398
+	  numberOfContours:	3
+	  xMin:			200
+	  yMin:			229
+	  xMax:			1014
+	  yMax:			1255
+
+	EndPoints
+	---------
+	  0:  48
+	  1:  60
+	  2:  78
+
+	  Length of Instructions:	185
+	00000: PUSHW[2]             53   -32 
+	00005: PUSHB[4]             26    30    52    57 
+	00010: PUSHW[1]            -32 
+	00013: PUSHB[4]             26    30    52    53 
+	00018: PUSHW[1]            -32 
+	00021: PUSHB[4]             18    22    52    57 
+	00026: PUSHW[1]            -32 
+	00029: NPUSHB      (10):    18    22    52    30    18    52    11    61    55    69 
+	00041: PUSHW[1]            -64 
+	00044: NPUSHB      (30):     9    15    52    69    69    20    11    55    17    17 
+	                            58    55    20    20    28     1    40    55     9    32 
+	                            64    11    14    52    32    32    43    52    55    28 
+	00076: PUSHW[1]            -64 
+	00079: NPUSHB      (39):    11    12    52    28    28    43    55    47     4    45 
+	                            45    36    36    42    55     5    74    14     5    74 
+	                            14     3    49    42    31    17    55    48    15    11 
+	                             1    11    11    80    65    65    55    55    24 
+	00120: PUSHW[1]            310 
+	00123: SCANCTRL   
+	00124: MDAP[rd]   
+	00125: MIRP[nrp0,md,rd,1] 
+	00126: SHP[rp1,zp0] 
+	00127: MDAP[rd]   
+	00128: SRP1       
+	00129: SHP[rp1,zp0] 
+	00130: MDAP[rd]   
+	00131: DELTAP1    
+	00132: ALIGNRP    
+	00133: MIRP[srp0,md,rd,1] 
+	00134: ALIGNRP    
+	00135: ALIGNRP    
+	00136: ALIGNRP    
+	00137: SLOOP      
+	00138: SHP[rp1,zp0] 
+	00139: MDAP[rd]   
+	00140: MDAP[rd]   
+	00141: MDAP[rd]   
+	00142: SRP1       
+	00143: SRP2       
+	00144: IP         
+	00145: MDAP[rd]   
+	00146: IP         
+	00147: MDAP[rd]   
+	00148: SVTCA[y-axis] 
+	00149: MIAP[rd+ci] 
+	00150: MIRP[nrp0,md,rd,1] 
+	00151: SHP[rp1,zp0] 
+	00152: MDAP[rd]   
+	00153: CALL       
+	00154: MIRP[nrp0,md,rd,1] 
+	00155: SRP2       
+	00156: IP         
+	00157: MDAP[rd]   
+	00158: CALL       
+	00159: ALIGNRP    
+	00160: MIRP[srp0,md,rd,1] 
+	00161: ALIGNRP    
+	00162: SRP1       
+	00163: SHP[rp1,zp0] 
+	00164: MDAP[rd]   
+	00165: MIRP[nrp0,md,rd,1] 
+	00166: IP         
+	00167: MDAP[rd]   
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: SRP1       
+	00170: SHP[rp1,zp0] 
+	00171: MDAP[rd]   
+	00172: CALL       
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: SRP1       
+	00175: SRP2       
+	00176: IP         
+	00177: IP         
+	00178: IUP[y]     
+	00179: IUP[x]     
+	00180: SVTCA[x-axis] 
+	00181: CALL       
+	00182: CALL       
+	00183: CALL       
+	00184: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short On
+	 11:        XDual                         On
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short On
+	 18:  YDual XDual         Y-Short         On
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:  YDual               Y-Short X-Short On
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short On
+	 49:                              X-Short On
+	 50:  YDual XDual         Y-Short         Off
+	 51:  YDual               Y-Short X-Short Off
+	 52:  YDual                       X-Short On
+	 53:  YDual                       X-Short Off
+	 54:                      Y-Short X-Short Off
+	 55:        XDual         Y-Short         On
+	 56:        XDual         Y-Short         Off
+	 57:        XDual         Y-Short X-Short Off
+	 58:  YDual XDual                 X-Short On
+	 59:  YDual XDual                 X-Short Off
+	 60:  YDual XDual         Y-Short X-Short Off
+	 61:                                      On
+	 62:  YDual                       X-Short Off
+	 63:  YDual               Y-Short X-Short On
+	 64:  YDual               Y-Short X-Short Off
+	 65:  YDual XDual         Y-Short         On
+	 66:  YDual XDual         Y-Short         Off
+	 67:  YDual XDual         Y-Short X-Short On
+	 68:  YDual XDual         Y-Short X-Short Off
+	 69:  YDual XDual                 X-Short On
+	 70:  YDual                               On
+	 71:  YDual XDual                 X-Short Off
+	 72:        XDual         Y-Short X-Short On
+	 73:        XDual         Y-Short X-Short Off
+	 74:        XDual         Y-Short         On
+	 75:        XDual         Y-Short         Off
+	 76:                      Y-Short X-Short On
+	 77:                      Y-Short X-Short Off
+	 78:  YDual                       X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   887,  1129)  ->  Abs (   887,  1129)
+	  1: Rel (    77,     0)  ->  Abs (   964,  1129)
+	  2: Rel (    27,     0)  ->  Abs (   991,  1129)
+	  3: Rel (     9,   -13)  ->  Abs (  1000,  1116)
+	  4: Rel (     5,    -8)  ->  Abs (  1005,  1108)
+	  5: Rel (     0,    -8)  ->  Abs (  1005,  1100)
+	  6: Rel (     0,   -19)  ->  Abs (  1005,  1081)
+	  7: Rel (   -17,    -8)  ->  Abs (   988,  1073)
+	  8: Rel (    -7,    -2)  ->  Abs (   981,  1071)
+	  9: Rel (   -22,     0)  ->  Abs (   959,  1071)
+	 10: Rel (   -72,     0)  ->  Abs (   887,  1071)
+	 11: Rel (     0,  -634)  ->  Abs (   887,   437)
+	 12: Rel (    78,     0)  ->  Abs (   965,   437)
+	 13: Rel (    40,     0)  ->  Abs (  1005,   437)
+	 14: Rel (     0,   -30)  ->  Abs (  1005,   407)
+	 15: Rel (     0,   -29)  ->  Abs (  1005,   378)
+	 16: Rel (   -40,     0)  ->  Abs (   965,   378)
+	 17: Rel (  -138,     0)  ->  Abs (   827,   378)
+	 18: Rel (     0,   117)  ->  Abs (   827,   495)
+	 19: Rel (  -102,  -140)  ->  Abs (   725,   355)
+	 20: Rel (  -157,     0)  ->  Abs (   568,   355)
+	 21: Rel (  -180,     0)  ->  Abs (   388,   355)
+	 22: Rel (   -88,   163)  ->  Abs (   300,   518)
+	 23: Rel (   -42,    78)  ->  Abs (   258,   596)
+	 24: Rel (     0,    83)  ->  Abs (   258,   679)
+	 25: Rel (     0,    85)  ->  Abs (   258,   764)
+	 26: Rel (    85,   155)  ->  Abs (   343,   919)
+	 27: Rel (   145,    85)  ->  Abs (   488,  1004)
+	 28: Rel (    81,     0)  ->  Abs (   569,  1004)
+	 29: Rel (   154,     0)  ->  Abs (   723,  1004)
+	 30: Rel (   104,  -140)  ->  Abs (   827,   864)
+	 31: Rel (     0,   207)  ->  Abs (   827,  1071)
+	 32: Rel (  -174,     0)  ->  Abs (   653,  1071)
+	 33: Rel (   -51,     0)  ->  Abs (   602,  1071)
+	 34: Rel (    -5,     1)  ->  Abs (   597,  1072)
+	 35: Rel (   -20,     6)  ->  Abs (   577,  1078)
+	 36: Rel (     0,    22)  ->  Abs (   577,  1100)
+	 37: Rel (     0,    23)  ->  Abs (   577,  1123)
+	 38: Rel (    20,     5)  ->  Abs (   597,  1128)
+	 39: Rel (     5,     1)  ->  Abs (   602,  1129)
+	 40: Rel (    51,     0)  ->  Abs (   653,  1129)
+	 41: Rel (   174,     0)  ->  Abs (   827,  1129)
+	 42: Rel (     0,    67)  ->  Abs (   827,  1196)
+	 43: Rel (   -78,     0)  ->  Abs (   749,  1196)
+	 44: Rel (   -40,     0)  ->  Abs (   709,  1196)
+	 45: Rel (     0,    30)  ->  Abs (   709,  1226)
+	 46: Rel (     0,    29)  ->  Abs (   709,  1255)
+	 47: Rel (    40,     0)  ->  Abs (   749,  1255)
+	 48: Rel (   138,     0)  ->  Abs (   887,  1255)
+	 49: Rel (   -60,  -576)  ->  Abs (   827,   679)
+	 50: Rel (     0,   111)  ->  Abs (   827,   790)
+	 51: Rel (  -150,   155)  ->  Abs (   677,   945)
+	 52: Rel (  -105,     0)  ->  Abs (   572,   945)
+	 53: Rel (  -105,     0)  ->  Abs (   467,   945)
+	 54: Rel (  -150,  -155)  ->  Abs (   317,   790)
+	 55: Rel (     0,  -111)  ->  Abs (   317,   679)
+	 56: Rel (     0,  -110)  ->  Abs (   317,   569)
+	 57: Rel (   150,  -155)  ->  Abs (   467,   414)
+	 58: Rel (   105,     0)  ->  Abs (   572,   414)
+	 59: Rel (   105,     0)  ->  Abs (   677,   414)
+	 60: Rel (   150,   155)  ->  Abs (   827,   569)
+	 61: Rel (  -551,  -340)  ->  Abs (   276,   229)
+	 62: Rel (   -51,     0)  ->  Abs (   225,   229)
+	 63: Rel (    -5,     1)  ->  Abs (   220,   230)
+	 64: Rel (   -20,     6)  ->  Abs (   200,   236)
+	 65: Rel (     0,    22)  ->  Abs (   200,   258)
+	 66: Rel (     0,    23)  ->  Abs (   200,   281)
+	 67: Rel (    20,     5)  ->  Abs (   220,   286)
+	 68: Rel (     5,     1)  ->  Abs (   225,   287)
+	 69: Rel (    51,     0)  ->  Abs (   276,   287)
+	 70: Rel (   694,     0)  ->  Abs (   970,   287)
+	 71: Rel (    22,     0)  ->  Abs (   992,   287)
+	 72: Rel (     5,    -2)  ->  Abs (   997,   285)
+	 73: Rel (    17,    -8)  ->  Abs (  1014,   277)
+	 74: Rel (     0,   -18)  ->  Abs (  1014,   259)
+	 75: Rel (     0,   -20)  ->  Abs (  1014,   239)
+	 76: Rel (   -17,    -7)  ->  Abs (   997,   232)
+	 77: Rel (    -8,    -3)  ->  Abs (   989,   229)
+	 78: Rel (   -21,     0)  ->  Abs (   968,   229)
+
+	Glyph 1150: off = 0x0003746A, len = 172
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-16
+	  xMax:			1229
+	  yMax:			1282
+
+	     0: Flags:		0x0037
+		Glyf Index:	239
+		X WOffset:	-374
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     1: Flags:		0x0036
+		Glyf Index:	187
+		X BOffset:	35
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     2: Flags:		0x0117
+		Glyf Index:	241
+		X WOffset:	360
+		Y WOffset:	-617
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHW[2]             92    -8 
+	00005: NPUSHB       (9):     9    10    52     9    64     9    10    52    30 
+	00016: PUSHW[1]            -64 
+	00019: NPUSHB      (41):     9    11    52    38    64     9    11    52     0     5 
+	                            49    11    54   128    10    53    15    54     1    15 
+	                            33    64    33    95    33   160    33   192    33     5 
+	                           176    33   208    33     2   128    33   240    33     2 
+	                            33 
+	00062: PUSHW[1]            -64 
+	00065: PUSHB[4]             11    14    52    33 
+	00070: PUSHW[1]           -128 
+	00073: PUSHB[3]             35    53    33 
+	00077: PUSHW[1]           -128 
+	00080: PUSHB[3]             32    53    33 
+	00084: PUSHW[1]           -128 
+	00087: NPUSHB      (22):    30    53    33    64    62    53    33    64    66    53 
+	                            33    64    86    87    52   111    12     1    12    99 
+	                            46   100 
+	00111: SVTCA[x-axis] 
+	00112: SRP0       
+	00113: ALIGNRP    
+	00114: SRP0       
+	00115: ALIGNRP    
+	00116: DELTAP1    
+	00117: CALL       
+	00118: CALL       
+	00119: CALL       
+	00120: CALL       
+	00121: CALL       
+	00122: CALL       
+	00123: CALL       
+	00124: DELTAP1    
+	00125: DELTAP2    
+	00126: DELTAP3    
+	00127: DELTAP1    
+	00128: CALL       
+	00129: SVTCA[y-axis] 
+	00130: MIAP[rd+ci] 
+	00131: MIAP[rd+ci] 
+	00132: CALL       
+	00133: CALL       
+	00134: CALL       
+	00135: CALL       
+	00136: IUP[y]     
+	00137: IUP[x]     
+
+	Glyph 1151: off = 0x00037516, len = 202
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-16
+	  xMax:			1229
+	  yMax:			1285
+
+	     0: Flags:		0x0037
+		Glyf Index:	240
+		X WOffset:	-341
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     1: Flags:		0x0036
+		Glyf Index:	187
+		X BOffset:	49
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     2: Flags:		0x0117
+		Glyf Index:	241
+		X WOffset:	360
+		Y WOffset:	-617
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]             23    40     1   107 
+	00005: PUSHW[1]             -8 
+	00008: NPUSHB       (9):     9    10    52    11    64     9    10    52    45 
+	00019: PUSHW[1]            -64 
+	00022: NPUSHB      (16):     9    11    52    54    64     9    11    52    33     5 
+	                            64    11    15    69     1    36 
+	00040: PUSHW[1]            -64 
+	00043: NPUSHB      (28):     9    10    52    69   128    10    53   160    48   192 
+	                            48     2    15    48    47    48    64    48   127    48 
+	                             4   160    48     1   128    48     1    48 
+	00073: PUSHW[1]            -64 
+	00076: PUSHB[4]             21    27    52    48 
+	00081: PUSHW[1]            -64 
+	00084: PUSHB[4]             11    14    52    48 
+	00089: PUSHW[1]           -128 
+	00092: PUSHB[3]             38    53    48 
+	00096: PUSHW[1]           -128 
+	00099: PUSHB[3]             32    53    48 
+	00103: PUSHW[1]           -128 
+	00106: NPUSHB      (27):    30    53    48   128    46    53    48    64    60    53 
+	                            48    64    62    53    48    64    66    53    48    64 
+	                            86    87    52    12   114    61   115 
+	00135: SVTCA[x-axis] 
+	00136: SRP0       
+	00137: ALIGNRP    
+	00138: SRP0       
+	00139: ALIGNRP    
+	00140: CALL       
+	00141: CALL       
+	00142: CALL       
+	00143: CALL       
+	00144: CALL       
+	00145: CALL       
+	00146: CALL       
+	00147: CALL       
+	00148: CALL       
+	00149: CALL       
+	00150: DELTAP1    
+	00151: DELTAP2    
+	00152: DELTAP3    
+	00153: DELTAP3    
+	00154: CALL       
+	00155: CALL       
+	00156: DELTAP1    
+	00157: SVTCA[y-axis] 
+	00158: MIAP[rd+ci] 
+	00159: MIAP[rd+ci] 
+	00160: CALL       
+	00161: CALL       
+	00162: CALL       
+	00163: CALL       
+	00164: IUP[y]     
+	00165: IUP[x]     
+	00166: SVTCA[y-axis] 
+	00167: DELTAP1    
+
+	Glyph 1152: off = 0x000375E0, len = 104
+	  numberOfContours:	1
+	  xMin:			415
+	  yMin:			1021
+	  xMax:			757
+	  yMax:			1329
+
+	EndPoints
+	---------
+	  0:  14
+
+	  Length of Instructions:	51
+	00000: PUSHW[2]              5   -24 
+	00005: NPUSHB       (9):     9    10    52    13    24     9    10    52     8 
+	00016: PUSHW[1]            -64 
+	00019: PUSHB[4]              9    10    52     8 
+	00024: PUSHW[1]            498 
+	00027: NPUSHB       (9):     1    64    11    12    52     1     3     3    10 
+	00038: MDAP[rd]   
+	00039: SHP[rp1,zp0] 
+	00040: MDAP[rd]   
+	00041: SVTCA[y-axis] 
+	00042: MDAP[rd]   
+	00043: CALL       
+	00044: MIRP[nrp0,md,rd,1] 
+	00045: CALL       
+	00046: IUP[y]     
+	00047: IUP[x]     
+	00048: SVTCA[y-axis] 
+	00049: CALL       
+	00050: CALL       
+
+	Flags
+	-----
+	  0:                                      Off
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual Rep-  2 Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   699,  1329)  ->  Abs (   699,  1329)
+	  1: Rel (    15,     0)  ->  Abs (   714,  1329)
+	  2: Rel (    43,     0)  ->  Abs (   757,  1329)
+	  3: Rel (     0,   -43)  ->  Abs (   757,  1286)
+	  4: Rel (     0,   -19)  ->  Abs (   757,  1267)
+	  5: Rel (   -25,   -22)  ->  Abs (   732,  1245)
+	  6: Rel (  -236,  -204)  ->  Abs (   496,  1041)
+	  7: Rel (   -23,   -20)  ->  Abs (   473,  1021)
+	  8: Rel (   -15,     0)  ->  Abs (   458,  1021)
+	  9: Rel (   -43,     0)  ->  Abs (   415,  1021)
+	 10: Rel (     0,    43)  ->  Abs (   415,  1064)
+	 11: Rel (     0,    11)  ->  Abs (   415,  1075)
+	 12: Rel (     3,     5)  ->  Abs (   418,  1080)
+	 13: Rel (    22,    25)  ->  Abs (   440,  1105)
+	 14: Rel (   236,   204)  ->  Abs (   676,  1309)
+
+	Glyph 1153: off = 0x00037648, len = 104
+	  numberOfContours:	1
+	  xMin:			445
+	  yMin:			1021
+	  xMax:			787
+	  yMax:			1329
+
+	EndPoints
+	---------
+	  0:  14
+
+	  Length of Instructions:	51
+	00000: PUSHW[2]              5   -24 
+	00005: NPUSHB       (9):     9    10    52    13    24     9    10    52     8 
+	00016: PUSHW[1]            -64 
+	00019: PUSHB[4]              9    10    52     8 
+	00024: PUSHW[1]            498 
+	00027: NPUSHB       (9):     1    64    11    12    52     1     3     3    10 
+	00038: MDAP[rd]   
+	00039: SHP[rp1,zp0] 
+	00040: MDAP[rd]   
+	00041: SVTCA[y-axis] 
+	00042: MDAP[rd]   
+	00043: CALL       
+	00044: MIRP[nrp0,md,rd,1] 
+	00045: CALL       
+	00046: IUP[y]     
+	00047: IUP[x]     
+	00048: SVTCA[y-axis] 
+	00049: CALL       
+	00050: CALL       
+
+	Flags
+	-----
+	  0:                                      Off
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual Rep-  2 Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   729,  1329)  ->  Abs (   729,  1329)
+	  1: Rel (    15,     0)  ->  Abs (   744,  1329)
+	  2: Rel (    43,     0)  ->  Abs (   787,  1329)
+	  3: Rel (     0,   -43)  ->  Abs (   787,  1286)
+	  4: Rel (     0,   -19)  ->  Abs (   787,  1267)
+	  5: Rel (   -25,   -22)  ->  Abs (   762,  1245)
+	  6: Rel (  -236,  -204)  ->  Abs (   526,  1041)
+	  7: Rel (   -23,   -20)  ->  Abs (   503,  1021)
+	  8: Rel (   -15,     0)  ->  Abs (   488,  1021)
+	  9: Rel (   -43,     0)  ->  Abs (   445,  1021)
+	 10: Rel (     0,    43)  ->  Abs (   445,  1064)
+	 11: Rel (     0,    11)  ->  Abs (   445,  1075)
+	 12: Rel (     3,     5)  ->  Abs (   448,  1080)
+	 13: Rel (    22,    25)  ->  Abs (   470,  1105)
+	 14: Rel (   236,   204)  ->  Abs (   706,  1309)
+
+	Glyph 1154: off = 0x000376B0, len = 112
+	  numberOfContours:	1
+	  xMin:			421
+	  yMin:			1021
+	  xMax:			763
+	  yMax:			1329
+
+	EndPoints
+	---------
+	  0:  14
+
+	  Length of Instructions:	59
+	00000: PUSHW[2]              9   -24 
+	00005: NPUSHB       (9):     9    10    52     1    24     9    10    52     6 
+	00016: PUSHW[1]            -64 
+	00019: PUSHB[4]              9    10    52     6 
+	00024: PUSHW[1]            498 
+	00027: NPUSHB      (15):    13    64    11    12    52    13     4     4     0    11 
+	                             1    48    11     1    11 
+	00044: MDAP[rd]   
+	00045: DELTAP1    
+	00046: DELTAP2    
+	00047: SHP[rp1,zp0] 
+	00048: MDAP[rd]   
+	00049: SVTCA[y-axis] 
+	00050: MDAP[rd]   
+	00051: CALL       
+	00052: MIRP[nrp0,md,rd,1] 
+	00053: CALL       
+	00054: IUP[y]     
+	00055: IUP[x]     
+	00056: SVTCA[y-axis] 
+	00057: CALL       
+	00058: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   502,  1309)  ->  Abs (   502,  1309)
+	  1: Rel (   236,  -204)  ->  Abs (   738,  1105)
+	  2: Rel (    22,   -25)  ->  Abs (   760,  1080)
+	  3: Rel (     3,    -5)  ->  Abs (   763,  1075)
+	  4: Rel (     0,   -11)  ->  Abs (   763,  1064)
+	  5: Rel (     0,   -43)  ->  Abs (   763,  1021)
+	  6: Rel (   -43,     0)  ->  Abs (   720,  1021)
+	  7: Rel (   -15,     0)  ->  Abs (   705,  1021)
+	  8: Rel (   -23,    20)  ->  Abs (   682,  1041)
+	  9: Rel (  -236,   204)  ->  Abs (   446,  1245)
+	 10: Rel (   -25,    22)  ->  Abs (   421,  1267)
+	 11: Rel (     0,    19)  ->  Abs (   421,  1286)
+	 12: Rel (     0,    43)  ->  Abs (   421,  1329)
+	 13: Rel (    43,     0)  ->  Abs (   464,  1329)
+	 14: Rel (    15,     0)  ->  Abs (   479,  1329)
+
+	Glyph 1155: off = 0x00037720, len = 112
+	  numberOfContours:	1
+	  xMin:			451
+	  yMin:			1021
+	  xMax:			793
+	  yMax:			1329
+
+	EndPoints
+	---------
+	  0:  14
+
+	  Length of Instructions:	59
+	00000: PUSHW[2]              9   -24 
+	00005: NPUSHB       (9):     9    10    52     1    24     9    10    52     6 
+	00016: PUSHW[1]            -64 
+	00019: PUSHB[4]              9    10    52     6 
+	00024: PUSHW[1]            498 
+	00027: NPUSHB      (15):    13    64    11    12    52    13     4     4     0    11 
+	                             1    48    11     1    11 
+	00044: MDAP[rd]   
+	00045: DELTAP1    
+	00046: DELTAP2    
+	00047: SHP[rp1,zp0] 
+	00048: MDAP[rd]   
+	00049: SVTCA[y-axis] 
+	00050: MDAP[rd]   
+	00051: CALL       
+	00052: MIRP[nrp0,md,rd,1] 
+	00053: CALL       
+	00054: IUP[y]     
+	00055: IUP[x]     
+	00056: SVTCA[y-axis] 
+	00057: CALL       
+	00058: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   532,  1309)  ->  Abs (   532,  1309)
+	  1: Rel (   236,  -204)  ->  Abs (   768,  1105)
+	  2: Rel (    22,   -25)  ->  Abs (   790,  1080)
+	  3: Rel (     3,    -5)  ->  Abs (   793,  1075)
+	  4: Rel (     0,   -11)  ->  Abs (   793,  1064)
+	  5: Rel (     0,   -43)  ->  Abs (   793,  1021)
+	  6: Rel (   -43,     0)  ->  Abs (   750,  1021)
+	  7: Rel (   -15,     0)  ->  Abs (   735,  1021)
+	  8: Rel (   -23,    20)  ->  Abs (   712,  1041)
+	  9: Rel (  -236,   204)  ->  Abs (   476,  1245)
+	 10: Rel (   -25,    22)  ->  Abs (   451,  1267)
+	 11: Rel (     0,    19)  ->  Abs (   451,  1286)
+	 12: Rel (     0,    43)  ->  Abs (   451,  1329)
+	 13: Rel (    43,     0)  ->  Abs (   494,  1329)
+	 14: Rel (    15,     0)  ->  Abs (   509,  1329)
+
+	Glyph 1156: off = 0x00037790, len = 184
+	  numberOfContours:	1
+	  xMin:			439
+	  yMin:			1021
+	  xMax:			761
+	  yMax:			1278
+
+	EndPoints
+	---------
+	  0:  26
+
+	  Length of Instructions:	103
+	00000: PUSHW[2]             19   -64 
+	00005: PUSHB[7]              9    21    52     8     8    26    15 
+	00013: PUSHW[4]            475     4    26   475 
+	00022: PUSHB[3]             20    64    20 
+	00026: PUSHW[1]            -64 
+	00029: PUSHB[5]              9    17    52    20    23 
+	00035: PUSHW[3]            652    18   475 
+	00042: PUSHB[3]              2     2    21 
+	00046: PUSHW[1]            475 
+	00049: PUSHB[4]             25    10    10    25 
+	00054: PUSHW[1]            -64 
+	00057: PUSHB[7]             70    76    52     0    25     1    25 
+	00065: PUSHW[1]            -64 
+	00068: PUSHB[4]             18    21    52    25 
+	00073: MDAP[rd]   
+	00074: CALL       
+	00075: DELTAP2    
+	00076: CALL       
+	00077: SHP[rp1,zp0] 
+	00078: MDAP[rd]   
+	00079: SRP0       
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: SHP[rp2,zp1] 
+	00082: MDAP[rd]   
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: SVTCA[y-axis] 
+	00085: MIAP[rd+ci] 
+	00086: MDRP[nrp0,md,rd,1] 
+	00087: CALL       
+	00088: SVTCA[y-axis] 
+	00089: SMD        
+	00090: RTG        
+	00091: SRP0       
+	00092: FLIPON     
+	00093: MIRP[srp0,md,rd,1] 
+	00094: MDRP[srp0,nmd,rd,2] 
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: SRP2       
+	00097: IP         
+	00098: MDAP[rd]   
+	00099: IUP[y]     
+	00100: IUP[x]     
+	00101: SVTCA[x-axis] 
+	00102: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   622,  1117)  ->  Abs (   622,  1117)
+	  1: Rel (    76,     0)  ->  Abs (   698,  1117)
+	  2: Rel (     2,    42)  ->  Abs (   700,  1159)
+	  3: Rel (     0,    59)  ->  Abs (   700,  1218)
+	  4: Rel (   -83,     0)  ->  Abs (   617,  1218)
+	  5: Rel (   -57,     0)  ->  Abs (   560,  1218)
+	  6: Rel (   -68,   -38)  ->  Abs (   492,  1180)
+	  7: Rel (   -13,    -7)  ->  Abs (   479,  1173)
+	  8: Rel (   -10,     0)  ->  Abs (   469,  1173)
+	  9: Rel (   -30,     0)  ->  Abs (   439,  1173)
+	 10: Rel (     0,    30)  ->  Abs (   439,  1203)
+	 11: Rel (     0,    12)  ->  Abs (   439,  1215)
+	 12: Rel (    10,    11)  ->  Abs (   449,  1226)
+	 13: Rel (    14,    16)  ->  Abs (   463,  1242)
+	 14: Rel (   109,    36)  ->  Abs (   572,  1278)
+	 15: Rel (    45,     0)  ->  Abs (   617,  1278)
+	 16: Rel (    67,     0)  ->  Abs (   684,  1278)
+	 17: Rel (    77,   -66)  ->  Abs (   761,  1212)
+	 18: Rel (     0,   -51)  ->  Abs (   761,  1161)
+	 19: Rel (    -2,   -84)  ->  Abs (   759,  1077)
+	 20: Rel (  -118,   -17)  ->  Abs (   641,  1060)
+	 21: Rel (     0,   -14)  ->  Abs (   641,  1046)
+	 22: Rel (     0,   -25)  ->  Abs (   641,  1021)
+	 23: Rel (   -30,     0)  ->  Abs (   611,  1021)
+	 24: Rel (   -30,     0)  ->  Abs (   581,  1021)
+	 25: Rel (     0,    25)  ->  Abs (   581,  1046)
+	 26: Rel (     0,    71)  ->  Abs (   581,  1117)
+
+	Glyph 1157: off = 0x00037848, len = 184
+	  numberOfContours:	1
+	  xMin:			439
+	  yMin:			1021
+	  xMax:			761
+	  yMax:			1278
+
+	EndPoints
+	---------
+	  0:  26
+
+	  Length of Instructions:	103
+	00000: PUSHW[2]             19   -64 
+	00005: PUSHB[7]              9    21    52     8     8    26    15 
+	00013: PUSHW[4]            475     4    26   475 
+	00022: PUSHB[3]             20    64    20 
+	00026: PUSHW[1]            -64 
+	00029: PUSHB[5]              9    17    52    20    23 
+	00035: PUSHW[3]            652    18   475 
+	00042: PUSHB[3]              2     2    21 
+	00046: PUSHW[1]            475 
+	00049: PUSHB[4]             25    10    10    25 
+	00054: PUSHW[1]            -64 
+	00057: PUSHB[7]             70    76    52     0    25     1    25 
+	00065: PUSHW[1]            -64 
+	00068: PUSHB[4]             18    21    52    25 
+	00073: MDAP[rd]   
+	00074: CALL       
+	00075: DELTAP2    
+	00076: CALL       
+	00077: SHP[rp1,zp0] 
+	00078: MDAP[rd]   
+	00079: SRP0       
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: SHP[rp2,zp1] 
+	00082: MDAP[rd]   
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: SVTCA[y-axis] 
+	00085: MIAP[rd+ci] 
+	00086: MDRP[nrp0,md,rd,1] 
+	00087: CALL       
+	00088: SVTCA[y-axis] 
+	00089: SMD        
+	00090: RTG        
+	00091: SRP0       
+	00092: FLIPON     
+	00093: MIRP[srp0,md,rd,1] 
+	00094: MDRP[srp0,nmd,rd,2] 
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: SRP2       
+	00097: IP         
+	00098: MDAP[rd]   
+	00099: IUP[y]     
+	00100: IUP[x]     
+	00101: SVTCA[x-axis] 
+	00102: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (   622,  1117)  ->  Abs (   622,  1117)
+	  1: Rel (    76,     0)  ->  Abs (   698,  1117)
+	  2: Rel (     2,    42)  ->  Abs (   700,  1159)
+	  3: Rel (     0,    59)  ->  Abs (   700,  1218)
+	  4: Rel (   -83,     0)  ->  Abs (   617,  1218)
+	  5: Rel (   -57,     0)  ->  Abs (   560,  1218)
+	  6: Rel (   -68,   -38)  ->  Abs (   492,  1180)
+	  7: Rel (   -13,    -7)  ->  Abs (   479,  1173)
+	  8: Rel (   -10,     0)  ->  Abs (   469,  1173)
+	  9: Rel (   -30,     0)  ->  Abs (   439,  1173)
+	 10: Rel (     0,    30)  ->  Abs (   439,  1203)
+	 11: Rel (     0,    12)  ->  Abs (   439,  1215)
+	 12: Rel (    10,    11)  ->  Abs (   449,  1226)
+	 13: Rel (    14,    16)  ->  Abs (   463,  1242)
+	 14: Rel (   109,    36)  ->  Abs (   572,  1278)
+	 15: Rel (    45,     0)  ->  Abs (   617,  1278)
+	 16: Rel (    67,     0)  ->  Abs (   684,  1278)
+	 17: Rel (    77,   -66)  ->  Abs (   761,  1212)
+	 18: Rel (     0,   -51)  ->  Abs (   761,  1161)
+	 19: Rel (    -2,   -84)  ->  Abs (   759,  1077)
+	 20: Rel (  -118,   -17)  ->  Abs (   641,  1060)
+	 21: Rel (     0,   -14)  ->  Abs (   641,  1046)
+	 22: Rel (     0,   -25)  ->  Abs (   641,  1021)
+	 23: Rel (   -30,     0)  ->  Abs (   611,  1021)
+	 24: Rel (   -30,     0)  ->  Abs (   581,  1021)
+	 25: Rel (     0,    25)  ->  Abs (   581,  1046)
+	 26: Rel (     0,    71)  ->  Abs (   581,  1117)
+
+	Glyph 1158: off = 0x00037900, len = 186
+	  numberOfContours:	1
+	  xMin:			299
+	  yMin:			1375
+	  xMax:			937
+	  yMax:			1581
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	95
+	00000: PUSHB[6]             10    32    15    27    52     6 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (36):     9    14    52    21    32     9    14    52     0     0 
+	                            22    26    16    16    12    26    44     8    64     8 
+	                            64    60    53   159     8     1    95     8   224     8 
+	                             2     8   128    12    44    22 
+	00048: PUSHW[1]            960 
+	00051: NPUSHB      (10):    15     2    31     2    47     2     3     2     2    18 
+	00063: MDAP[rd]   
+	00064: SHP[rp1,zp0] 
+	00065: MDAP[rd]   
+	00066: DELTAP1    
+	00067: SVTCA[y-axis] 
+	00068: MIAP[rd+ci] 
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: SMD        
+	00071: RDTG       
+	00072: MDRP[nrp0,md,rd,1] 
+	00073: DELTAP2    
+	00074: DELTAP3    
+	00075: CALL       
+	00076: SVTCA[y-axis] 
+	00077: SMD        
+	00078: RTG        
+	00079: SRP0       
+	00080: FLIPON     
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SRP2       
+	00083: IP         
+	00084: MDAP[rd]   
+	00085: SRP1       
+	00086: SRP2       
+	00087: IP         
+	00088: MDAP[rd]   
+	00089: IUP[y]     
+	00090: IUP[x]     
+	00091: SVTCA[x-axis] 
+	00092: CALL       
+	00093: CALL       
+	00094: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   895,  1541)  ->  Abs (   895,  1541)
+	  1: Rel (    42,     0)  ->  Abs (   937,  1541)
+	  2: Rel (     0,   -39)  ->  Abs (   937,  1502)
+	  3: Rel (     0,   -17)  ->  Abs (   937,  1485)
+	  4: Rel (   -13,   -15)  ->  Abs (   924,  1470)
+	  5: Rel (   -38,   -44)  ->  Abs (   886,  1426)
+	  6: Rel (   -57,   -30)  ->  Abs (   829,  1396)
+	  7: Rel (   -39,   -21)  ->  Abs (   790,  1375)
+	  8: Rel (   -40,     0)  ->  Abs (   750,  1375)
+	  9: Rel (   -64,     0)  ->  Abs (   686,  1375)
+	 10: Rel (  -109,    79)  ->  Abs (   577,  1454)
+	 11: Rel (   -58,    43)  ->  Abs (   519,  1497)
+	 12: Rel (   -32,     0)  ->  Abs (   487,  1497)
+	 13: Rel (   -40,     0)  ->  Abs (   447,  1497)
+	 14: Rel (   -61,   -56)  ->  Abs (   386,  1441)
+	 15: Rel (   -27,   -25)  ->  Abs (   359,  1416)
+	 16: Rel (   -19,     0)  ->  Abs (   340,  1416)
+	 17: Rel (   -41,     0)  ->  Abs (   299,  1416)
+	 18: Rel (     0,    40)  ->  Abs (   299,  1456)
+	 19: Rel (     0,    27)  ->  Abs (   299,  1483)
+	 20: Rel (    51,    39)  ->  Abs (   350,  1522)
+	 21: Rel (    77,    59)  ->  Abs (   427,  1581)
+	 22: Rel (    59,     0)  ->  Abs (   486,  1581)
+	 23: Rel (    56,     0)  ->  Abs (   542,  1581)
+	 24: Rel (   106,   -73)  ->  Abs (   648,  1508)
+	 25: Rel (    70,   -48)  ->  Abs (   718,  1460)
+	 26: Rel (    32,     0)  ->  Abs (   750,  1460)
+	 27: Rel (    37,     0)  ->  Abs (   787,  1460)
+	 28: Rel (    78,    68)  ->  Abs (   865,  1528)
+	 29: Rel (    15,    13)  ->  Abs (   880,  1541)
+
+	Glyph 1159: off = 0x000379BA, len = 186
+	  numberOfContours:	1
+	  xMin:			299
+	  yMin:			1375
+	  xMax:			937
+	  yMax:			1581
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	95
+	00000: PUSHB[6]             10    32    15    27    52     6 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (36):     9    14    52    21    32     9    14    52     0     0 
+	                            22    26    16    16    12    26    44     8    64     8 
+	                            64    60    53   159     8     1    95     8   224     8 
+	                             2     8   128    12    44    22 
+	00048: PUSHW[1]            960 
+	00051: NPUSHB      (10):    15     2    31     2    47     2     3     2     2    18 
+	00063: MDAP[rd]   
+	00064: SHP[rp1,zp0] 
+	00065: MDAP[rd]   
+	00066: DELTAP1    
+	00067: SVTCA[y-axis] 
+	00068: MIAP[rd+ci] 
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: SMD        
+	00071: RDTG       
+	00072: MDRP[nrp0,md,rd,1] 
+	00073: DELTAP2    
+	00074: DELTAP3    
+	00075: CALL       
+	00076: SVTCA[y-axis] 
+	00077: SMD        
+	00078: RTG        
+	00079: SRP0       
+	00080: FLIPON     
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SRP2       
+	00083: IP         
+	00084: MDAP[rd]   
+	00085: SRP1       
+	00086: SRP2       
+	00087: IP         
+	00088: MDAP[rd]   
+	00089: IUP[y]     
+	00090: IUP[x]     
+	00091: SVTCA[x-axis] 
+	00092: CALL       
+	00093: CALL       
+	00094: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   895,  1541)  ->  Abs (   895,  1541)
+	  1: Rel (    42,     0)  ->  Abs (   937,  1541)
+	  2: Rel (     0,   -39)  ->  Abs (   937,  1502)
+	  3: Rel (     0,   -17)  ->  Abs (   937,  1485)
+	  4: Rel (   -13,   -15)  ->  Abs (   924,  1470)
+	  5: Rel (   -38,   -44)  ->  Abs (   886,  1426)
+	  6: Rel (   -57,   -30)  ->  Abs (   829,  1396)
+	  7: Rel (   -39,   -21)  ->  Abs (   790,  1375)
+	  8: Rel (   -40,     0)  ->  Abs (   750,  1375)
+	  9: Rel (   -64,     0)  ->  Abs (   686,  1375)
+	 10: Rel (  -109,    79)  ->  Abs (   577,  1454)
+	 11: Rel (   -58,    43)  ->  Abs (   519,  1497)
+	 12: Rel (   -32,     0)  ->  Abs (   487,  1497)
+	 13: Rel (   -40,     0)  ->  Abs (   447,  1497)
+	 14: Rel (   -61,   -56)  ->  Abs (   386,  1441)
+	 15: Rel (   -27,   -25)  ->  Abs (   359,  1416)
+	 16: Rel (   -19,     0)  ->  Abs (   340,  1416)
+	 17: Rel (   -41,     0)  ->  Abs (   299,  1416)
+	 18: Rel (     0,    40)  ->  Abs (   299,  1456)
+	 19: Rel (     0,    27)  ->  Abs (   299,  1483)
+	 20: Rel (    51,    39)  ->  Abs (   350,  1522)
+	 21: Rel (    77,    59)  ->  Abs (   427,  1581)
+	 22: Rel (    59,     0)  ->  Abs (   486,  1581)
+	 23: Rel (    56,     0)  ->  Abs (   542,  1581)
+	 24: Rel (   106,   -73)  ->  Abs (   648,  1508)
+	 25: Rel (    70,   -48)  ->  Abs (   718,  1460)
+	 26: Rel (    32,     0)  ->  Abs (   750,  1460)
+	 27: Rel (    37,     0)  ->  Abs (   787,  1460)
+	 28: Rel (    78,    68)  ->  Abs (   865,  1528)
+	 29: Rel (    15,    13)  ->  Abs (   880,  1541)
+
+	Glyph 1160: off = 0x00037A74, len = 186
+	  numberOfContours:	1
+	  xMin:			299
+	  yMin:			1375
+	  xMax:			937
+	  yMax:			1581
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	95
+	00000: PUSHB[6]             10    32    15    27    52     6 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (36):     9    14    52    21    32     9    14    52     0     0 
+	                            22    26    16    16    12    26    44     8    64     8 
+	                            64    60    53   159     8     1    95     8   224     8 
+	                             2     8   128    12    44    22 
+	00048: PUSHW[1]            960 
+	00051: NPUSHB      (10):    15     2    31     2    47     2     3     2     2    18 
+	00063: MDAP[rd]   
+	00064: SHP[rp1,zp0] 
+	00065: MDAP[rd]   
+	00066: DELTAP1    
+	00067: SVTCA[y-axis] 
+	00068: MIAP[rd+ci] 
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: SMD        
+	00071: RDTG       
+	00072: MDRP[nrp0,md,rd,1] 
+	00073: DELTAP2    
+	00074: DELTAP3    
+	00075: CALL       
+	00076: SVTCA[y-axis] 
+	00077: SMD        
+	00078: RTG        
+	00079: SRP0       
+	00080: FLIPON     
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SRP2       
+	00083: IP         
+	00084: MDAP[rd]   
+	00085: SRP1       
+	00086: SRP2       
+	00087: IP         
+	00088: MDAP[rd]   
+	00089: IUP[y]     
+	00090: IUP[x]     
+	00091: SVTCA[x-axis] 
+	00092: CALL       
+	00093: CALL       
+	00094: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   895,  1541)  ->  Abs (   895,  1541)
+	  1: Rel (    42,     0)  ->  Abs (   937,  1541)
+	  2: Rel (     0,   -39)  ->  Abs (   937,  1502)
+	  3: Rel (     0,   -17)  ->  Abs (   937,  1485)
+	  4: Rel (   -13,   -15)  ->  Abs (   924,  1470)
+	  5: Rel (   -38,   -44)  ->  Abs (   886,  1426)
+	  6: Rel (   -57,   -30)  ->  Abs (   829,  1396)
+	  7: Rel (   -39,   -21)  ->  Abs (   790,  1375)
+	  8: Rel (   -40,     0)  ->  Abs (   750,  1375)
+	  9: Rel (   -64,     0)  ->  Abs (   686,  1375)
+	 10: Rel (  -109,    79)  ->  Abs (   577,  1454)
+	 11: Rel (   -58,    43)  ->  Abs (   519,  1497)
+	 12: Rel (   -32,     0)  ->  Abs (   487,  1497)
+	 13: Rel (   -40,     0)  ->  Abs (   447,  1497)
+	 14: Rel (   -61,   -56)  ->  Abs (   386,  1441)
+	 15: Rel (   -27,   -25)  ->  Abs (   359,  1416)
+	 16: Rel (   -19,     0)  ->  Abs (   340,  1416)
+	 17: Rel (   -41,     0)  ->  Abs (   299,  1416)
+	 18: Rel (     0,    40)  ->  Abs (   299,  1456)
+	 19: Rel (     0,    27)  ->  Abs (   299,  1483)
+	 20: Rel (    51,    39)  ->  Abs (   350,  1522)
+	 21: Rel (    77,    59)  ->  Abs (   427,  1581)
+	 22: Rel (    59,     0)  ->  Abs (   486,  1581)
+	 23: Rel (    56,     0)  ->  Abs (   542,  1581)
+	 24: Rel (   106,   -73)  ->  Abs (   648,  1508)
+	 25: Rel (    70,   -48)  ->  Abs (   718,  1460)
+	 26: Rel (    32,     0)  ->  Abs (   750,  1460)
+	 27: Rel (    37,     0)  ->  Abs (   787,  1460)
+	 28: Rel (    78,    68)  ->  Abs (   865,  1528)
+	 29: Rel (    15,    13)  ->  Abs (   880,  1541)
+
+	Glyph 1161: off = 0x00037B2E, len = 190
+	  numberOfContours:	1
+	  xMin:			296
+	  yMin:			1001
+	  xMax:			934
+	  yMax:			1207
+
+	EndPoints
+	---------
+	  0:  31
+
+	  Length of Instructions:	92
+	00000: PUSHB[6]             11    32    15    27    52     6 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (46):     9    14    52    23    32     9    14    52     0     0 
+	                            24    28    17    17    13    28    44     9    64     9 
+	                            64    60    53   159     9     1    95     9   224     9 
+	                             2     9   128    13    44    24    15     3    31     3 
+	                            47     3     3     3     3    20 
+	00058: MDAP[rd]   
+	00059: SHP[rp1,zp0] 
+	00060: MDAP[rd]   
+	00061: DELTAP1    
+	00062: SVTCA[y-axis] 
+	00063: RUTG       
+	00064: MDAP[rd]   
+	00065: RTG        
+	00066: MIRP[nrp0,md,rd,1] 
+	00067: SMD        
+	00068: RDTG       
+	00069: MDRP[nrp0,md,rd,1] 
+	00070: DELTAP2    
+	00071: DELTAP3    
+	00072: CALL       
+	00073: SVTCA[y-axis] 
+	00074: SMD        
+	00075: RTG        
+	00076: SRP0       
+	00077: FLIPON     
+	00078: MIRP[nrp0,md,rd,1] 
+	00079: SRP2       
+	00080: IP         
+	00081: MDAP[rd]   
+	00082: SRP1       
+	00083: SRP2       
+	00084: IP         
+	00085: MDAP[rd]   
+	00086: IUP[y]     
+	00087: IUP[x]     
+	00088: SVTCA[x-axis] 
+	00089: CALL       
+	00090: CALL       
+	00091: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   892,  1167)  ->  Abs (   892,  1167)
+	  1: Rel (    17,     0)  ->  Abs (   909,  1167)
+	  2: Rel (    25,   -24)  ->  Abs (   934,  1143)
+	  3: Rel (     0,   -15)  ->  Abs (   934,  1128)
+	  4: Rel (     0,   -17)  ->  Abs (   934,  1111)
+	  5: Rel (   -13,   -15)  ->  Abs (   921,  1096)
+	  6: Rel (   -40,   -45)  ->  Abs (   881,  1051)
+	  7: Rel (   -55,   -29)  ->  Abs (   826,  1022)
+	  8: Rel (   -38,   -21)  ->  Abs (   788,  1001)
+	  9: Rel (   -41,     0)  ->  Abs (   747,  1001)
+	 10: Rel (   -64,     0)  ->  Abs (   683,  1001)
+	 11: Rel (  -109,    79)  ->  Abs (   574,  1080)
+	 12: Rel (   -58,    43)  ->  Abs (   516,  1123)
+	 13: Rel (   -32,     0)  ->  Abs (   484,  1123)
+	 14: Rel (   -40,     0)  ->  Abs (   444,  1123)
+	 15: Rel (   -61,   -56)  ->  Abs (   383,  1067)
+	 16: Rel (   -27,   -25)  ->  Abs (   356,  1042)
+	 17: Rel (   -19,     0)  ->  Abs (   337,  1042)
+	 18: Rel (   -18,     0)  ->  Abs (   319,  1042)
+	 19: Rel (   -23,    24)  ->  Abs (   296,  1066)
+	 20: Rel (     0,    16)  ->  Abs (   296,  1082)
+	 21: Rel (     0,    26)  ->  Abs (   296,  1108)
+	 22: Rel (    51,    40)  ->  Abs (   347,  1148)
+	 23: Rel (    78,    59)  ->  Abs (   425,  1207)
+	 24: Rel (    58,     0)  ->  Abs (   483,  1207)
+	 25: Rel (    30,     0)  ->  Abs (   513,  1207)
+	 26: Rel (    62,   -25)  ->  Abs (   575,  1182)
+	 27: Rel (   140,   -96)  ->  Abs (   715,  1086)
+	 28: Rel (    32,     0)  ->  Abs (   747,  1086)
+	 29: Rel (    38,     0)  ->  Abs (   785,  1086)
+	 30: Rel (    77,    68)  ->  Abs (   862,  1154)
+	 31: Rel (    16,    13)  ->  Abs (   878,  1167)
+
+	Glyph 1162: off = 0x00037BEC, len = 190
+	  numberOfContours:	1
+	  xMin:			296
+	  yMin:			1001
+	  xMax:			934
+	  yMax:			1207
+
+	EndPoints
+	---------
+	  0:  31
+
+	  Length of Instructions:	92
+	00000: PUSHB[6]             11    32    15    27    52     6 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (46):     9    14    52    23    32     9    14    52     0     0 
+	                            24    28    17    17    13    28    44     9    64     9 
+	                            64    60    53   159     9     1    95     9   224     9 
+	                             2     9   128    13    44    24    15     3    31     3 
+	                            47     3     3     3     3    20 
+	00058: MDAP[rd]   
+	00059: SHP[rp1,zp0] 
+	00060: MDAP[rd]   
+	00061: DELTAP1    
+	00062: SVTCA[y-axis] 
+	00063: RUTG       
+	00064: MDAP[rd]   
+	00065: RTG        
+	00066: MIRP[nrp0,md,rd,1] 
+	00067: SMD        
+	00068: RDTG       
+	00069: MDRP[nrp0,md,rd,1] 
+	00070: DELTAP2    
+	00071: DELTAP3    
+	00072: CALL       
+	00073: SVTCA[y-axis] 
+	00074: SMD        
+	00075: RTG        
+	00076: SRP0       
+	00077: FLIPON     
+	00078: MIRP[nrp0,md,rd,1] 
+	00079: SRP2       
+	00080: IP         
+	00081: MDAP[rd]   
+	00082: SRP1       
+	00083: SRP2       
+	00084: IP         
+	00085: MDAP[rd]   
+	00086: IUP[y]     
+	00087: IUP[x]     
+	00088: SVTCA[x-axis] 
+	00089: CALL       
+	00090: CALL       
+	00091: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   892,  1167)  ->  Abs (   892,  1167)
+	  1: Rel (    17,     0)  ->  Abs (   909,  1167)
+	  2: Rel (    25,   -24)  ->  Abs (   934,  1143)
+	  3: Rel (     0,   -15)  ->  Abs (   934,  1128)
+	  4: Rel (     0,   -17)  ->  Abs (   934,  1111)
+	  5: Rel (   -13,   -15)  ->  Abs (   921,  1096)
+	  6: Rel (   -40,   -45)  ->  Abs (   881,  1051)
+	  7: Rel (   -55,   -29)  ->  Abs (   826,  1022)
+	  8: Rel (   -38,   -21)  ->  Abs (   788,  1001)
+	  9: Rel (   -41,     0)  ->  Abs (   747,  1001)
+	 10: Rel (   -64,     0)  ->  Abs (   683,  1001)
+	 11: Rel (  -109,    79)  ->  Abs (   574,  1080)
+	 12: Rel (   -58,    43)  ->  Abs (   516,  1123)
+	 13: Rel (   -32,     0)  ->  Abs (   484,  1123)
+	 14: Rel (   -40,     0)  ->  Abs (   444,  1123)
+	 15: Rel (   -61,   -56)  ->  Abs (   383,  1067)
+	 16: Rel (   -27,   -25)  ->  Abs (   356,  1042)
+	 17: Rel (   -19,     0)  ->  Abs (   337,  1042)
+	 18: Rel (   -18,     0)  ->  Abs (   319,  1042)
+	 19: Rel (   -23,    24)  ->  Abs (   296,  1066)
+	 20: Rel (     0,    16)  ->  Abs (   296,  1082)
+	 21: Rel (     0,    26)  ->  Abs (   296,  1108)
+	 22: Rel (    51,    40)  ->  Abs (   347,  1148)
+	 23: Rel (    78,    59)  ->  Abs (   425,  1207)
+	 24: Rel (    58,     0)  ->  Abs (   483,  1207)
+	 25: Rel (    30,     0)  ->  Abs (   513,  1207)
+	 26: Rel (    62,   -25)  ->  Abs (   575,  1182)
+	 27: Rel (   140,   -96)  ->  Abs (   715,  1086)
+	 28: Rel (    32,     0)  ->  Abs (   747,  1086)
+	 29: Rel (    38,     0)  ->  Abs (   785,  1086)
+	 30: Rel (    77,    68)  ->  Abs (   862,  1154)
+	 31: Rel (    16,    13)  ->  Abs (   878,  1167)
+
+	Glyph 1163: off = 0x00037CAA, len = 190
+	  numberOfContours:	1
+	  xMin:			296
+	  yMin:			1001
+	  xMax:			934
+	  yMax:			1207
+
+	EndPoints
+	---------
+	  0:  31
+
+	  Length of Instructions:	92
+	00000: PUSHB[6]             11    32    15    27    52     6 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (46):     9    14    52    23    32     9    14    52     0     0 
+	                            24    28    17    17    13    28    44     9    64     9 
+	                            64    60    53   159     9     1    95     9   224     9 
+	                             2     9   128    13    44    24    15     3    31     3 
+	                            47     3     3     3     3    20 
+	00058: MDAP[rd]   
+	00059: SHP[rp1,zp0] 
+	00060: MDAP[rd]   
+	00061: DELTAP1    
+	00062: SVTCA[y-axis] 
+	00063: RUTG       
+	00064: MDAP[rd]   
+	00065: RTG        
+	00066: MIRP[nrp0,md,rd,1] 
+	00067: SMD        
+	00068: RDTG       
+	00069: MDRP[nrp0,md,rd,1] 
+	00070: DELTAP2    
+	00071: DELTAP3    
+	00072: CALL       
+	00073: SVTCA[y-axis] 
+	00074: SMD        
+	00075: RTG        
+	00076: SRP0       
+	00077: FLIPON     
+	00078: MIRP[nrp0,md,rd,1] 
+	00079: SRP2       
+	00080: IP         
+	00081: MDAP[rd]   
+	00082: SRP1       
+	00083: SRP2       
+	00084: IP         
+	00085: MDAP[rd]   
+	00086: IUP[y]     
+	00087: IUP[x]     
+	00088: SVTCA[x-axis] 
+	00089: CALL       
+	00090: CALL       
+	00091: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   892,  1167)  ->  Abs (   892,  1167)
+	  1: Rel (    17,     0)  ->  Abs (   909,  1167)
+	  2: Rel (    25,   -24)  ->  Abs (   934,  1143)
+	  3: Rel (     0,   -15)  ->  Abs (   934,  1128)
+	  4: Rel (     0,   -17)  ->  Abs (   934,  1111)
+	  5: Rel (   -13,   -15)  ->  Abs (   921,  1096)
+	  6: Rel (   -40,   -45)  ->  Abs (   881,  1051)
+	  7: Rel (   -55,   -29)  ->  Abs (   826,  1022)
+	  8: Rel (   -38,   -21)  ->  Abs (   788,  1001)
+	  9: Rel (   -41,     0)  ->  Abs (   747,  1001)
+	 10: Rel (   -64,     0)  ->  Abs (   683,  1001)
+	 11: Rel (  -109,    79)  ->  Abs (   574,  1080)
+	 12: Rel (   -58,    43)  ->  Abs (   516,  1123)
+	 13: Rel (   -32,     0)  ->  Abs (   484,  1123)
+	 14: Rel (   -40,     0)  ->  Abs (   444,  1123)
+	 15: Rel (   -61,   -56)  ->  Abs (   383,  1067)
+	 16: Rel (   -27,   -25)  ->  Abs (   356,  1042)
+	 17: Rel (   -19,     0)  ->  Abs (   337,  1042)
+	 18: Rel (   -18,     0)  ->  Abs (   319,  1042)
+	 19: Rel (   -23,    24)  ->  Abs (   296,  1066)
+	 20: Rel (     0,    16)  ->  Abs (   296,  1082)
+	 21: Rel (     0,    26)  ->  Abs (   296,  1108)
+	 22: Rel (    51,    40)  ->  Abs (   347,  1148)
+	 23: Rel (    78,    59)  ->  Abs (   425,  1207)
+	 24: Rel (    58,     0)  ->  Abs (   483,  1207)
+	 25: Rel (    30,     0)  ->  Abs (   513,  1207)
+	 26: Rel (    62,   -25)  ->  Abs (   575,  1182)
+	 27: Rel (   140,   -96)  ->  Abs (   715,  1086)
+	 28: Rel (    32,     0)  ->  Abs (   747,  1086)
+	 29: Rel (    38,     0)  ->  Abs (   785,  1086)
+	 30: Rel (    77,    68)  ->  Abs (   862,  1154)
+	 31: Rel (    16,    13)  ->  Abs (   878,  1167)
+
+	Glyph 1164: off = 0x00037D68, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			511
+	  yMin:			-324
+	  xMax:			716
+	  yMax:			-119
+
+	     0: Flags:		0x0217
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1165: off = 0x00037D7A, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			511
+	  yMin:			-324
+	  xMax:			716
+	  yMax:			-119
+
+	     0: Flags:		0x0217
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1166: off = 0x00037D8C, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			511
+	  yMin:			-324
+	  xMax:			716
+	  yMax:			-119
+
+	     0: Flags:		0x0217
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1167: off = 0x00037D9E, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			511
+	  yMin:			-324
+	  xMax:			716
+	  yMax:			-119
+
+	     0: Flags:		0x0217
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1168: off = 0x00037DB0, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			511
+	  yMin:			-324
+	  xMax:			716
+	  yMax:			-119
+
+	     0: Flags:		0x0217
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1169: off = 0x00037DC2, len = 116
+	  numberOfContours:	1
+	  xMin:			452
+	  yMin:			1295
+	  xMax:			794
+	  yMax:			1603
+
+	EndPoints
+	---------
+	  0:  14
+
+	  Length of Instructions:	62
+	00000: PUSHB[6]              1    24    15    17    52     9 
+	00007: PUSHW[1]            -24 
+	00010: NPUSHB       (9):     9    10    52     1    24     9    10    52     6 
+	00021: PUSHW[1]            -64 
+	00024: PUSHB[4]              9    10    52     6 
+	00029: PUSHW[3]            498    13   960 
+	00036: NPUSHB       (9):     4     4     0    11     1    48    11     1    11 
+	00047: MDAP[rd]   
+	00048: DELTAP1    
+	00049: DELTAP2    
+	00050: SHP[rp1,zp0] 
+	00051: MDAP[rd]   
+	00052: SVTCA[y-axis] 
+	00053: MIAP[rd+ci] 
+	00054: MIRP[nrp0,md,rd,1] 
+	00055: CALL       
+	00056: IUP[y]     
+	00057: IUP[x]     
+	00058: SVTCA[y-axis] 
+	00059: CALL       
+	00060: CALL       
+	00061: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short On
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   533,  1583)  ->  Abs (   533,  1583)
+	  1: Rel (   236,  -204)  ->  Abs (   769,  1379)
+	  2: Rel (    22,   -25)  ->  Abs (   791,  1354)
+	  3: Rel (     3,    -5)  ->  Abs (   794,  1349)
+	  4: Rel (     0,   -11)  ->  Abs (   794,  1338)
+	  5: Rel (     0,   -43)  ->  Abs (   794,  1295)
+	  6: Rel (   -43,     0)  ->  Abs (   751,  1295)
+	  7: Rel (   -15,     0)  ->  Abs (   736,  1295)
+	  8: Rel (   -23,    20)  ->  Abs (   713,  1315)
+	  9: Rel (  -236,   204)  ->  Abs (   477,  1519)
+	 10: Rel (   -25,    22)  ->  Abs (   452,  1541)
+	 11: Rel (     0,    19)  ->  Abs (   452,  1560)
+	 12: Rel (     0,    43)  ->  Abs (   452,  1603)
+	 13: Rel (    43,     0)  ->  Abs (   495,  1603)
+	 14: Rel (    15,     0)  ->  Abs (   510,  1603)
+
+	Glyph 1170: off = 0x00037E36, len = 106
+	  numberOfContours:	1
+	  xMin:			424
+	  yMin:			1295
+	  xMax:			766
+	  yMax:			1603
+
+	EndPoints
+	---------
+	  0:  14
+
+	  Length of Instructions:	53
+	00000: PUSHB[6]             13    24    15    17    52     5 
+	00007: PUSHW[1]            -24 
+	00010: NPUSHB       (9):     9    10    52    13    24     9    10    52     8 
+	00021: PUSHW[1]            -64 
+	00024: PUSHB[4]              9    10    52     8 
+	00029: PUSHW[3]            498     1   960 
+	00036: PUSHB[3]              3     3    10 
+	00040: MDAP[rd]   
+	00041: SHP[rp1,zp0] 
+	00042: MDAP[rd]   
+	00043: SVTCA[y-axis] 
+	00044: MIAP[rd+ci] 
+	00045: MIRP[nrp0,md,rd,1] 
+	00046: CALL       
+	00047: IUP[y]     
+	00048: IUP[x]     
+	00049: SVTCA[y-axis] 
+	00050: CALL       
+	00051: CALL       
+	00052: CALL       
+
+	Flags
+	-----
+	  0:                                      Off
+	  1:  YDual XDual                 X-Short On
+	  2:  YDual XDual                 X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual Rep-  2 Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   708,  1603)  ->  Abs (   708,  1603)
+	  1: Rel (    15,     0)  ->  Abs (   723,  1603)
+	  2: Rel (    43,     0)  ->  Abs (   766,  1603)
+	  3: Rel (     0,   -43)  ->  Abs (   766,  1560)
+	  4: Rel (     0,   -19)  ->  Abs (   766,  1541)
+	  5: Rel (   -25,   -22)  ->  Abs (   741,  1519)
+	  6: Rel (  -236,  -204)  ->  Abs (   505,  1315)
+	  7: Rel (   -23,   -20)  ->  Abs (   482,  1295)
+	  8: Rel (   -15,     0)  ->  Abs (   467,  1295)
+	  9: Rel (   -43,     0)  ->  Abs (   424,  1295)
+	 10: Rel (     0,    43)  ->  Abs (   424,  1338)
+	 11: Rel (     0,    11)  ->  Abs (   424,  1349)
+	 12: Rel (     3,     5)  ->  Abs (   427,  1354)
+	 13: Rel (    22,    25)  ->  Abs (   449,  1379)
+	 14: Rel (   236,   204)  ->  Abs (   685,  1583)
+
+	Glyph 1171: off = 0x00037EA0, len = 190
+	  numberOfContours:	1
+	  xMin:			296
+	  yMin:			1001
+	  xMax:			934
+	  yMax:			1207
+
+	EndPoints
+	---------
+	  0:  31
+
+	  Length of Instructions:	92
+	00000: PUSHB[6]             11    32    15    27    52     6 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (46):     9    14    52    23    32     9    14    52     0     0 
+	                            24    28    17    17    13    28    44     9    64     9 
+	                            64    60    53   159     9     1    95     9   224     9 
+	                             2     9   128    13    44    24    15     3    31     3 
+	                            47     3     3     3     3    20 
+	00058: MDAP[rd]   
+	00059: SHP[rp1,zp0] 
+	00060: MDAP[rd]   
+	00061: DELTAP1    
+	00062: SVTCA[y-axis] 
+	00063: RUTG       
+	00064: MDAP[rd]   
+	00065: RTG        
+	00066: MIRP[nrp0,md,rd,1] 
+	00067: SMD        
+	00068: RDTG       
+	00069: MDRP[nrp0,md,rd,1] 
+	00070: DELTAP2    
+	00071: DELTAP3    
+	00072: CALL       
+	00073: SVTCA[y-axis] 
+	00074: SMD        
+	00075: RTG        
+	00076: SRP0       
+	00077: FLIPON     
+	00078: MIRP[nrp0,md,rd,1] 
+	00079: SRP2       
+	00080: IP         
+	00081: MDAP[rd]   
+	00082: SRP1       
+	00083: SRP2       
+	00084: IP         
+	00085: MDAP[rd]   
+	00086: IUP[y]     
+	00087: IUP[x]     
+	00088: SVTCA[x-axis] 
+	00089: CALL       
+	00090: CALL       
+	00091: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   892,  1167)  ->  Abs (   892,  1167)
+	  1: Rel (    17,     0)  ->  Abs (   909,  1167)
+	  2: Rel (    25,   -24)  ->  Abs (   934,  1143)
+	  3: Rel (     0,   -15)  ->  Abs (   934,  1128)
+	  4: Rel (     0,   -17)  ->  Abs (   934,  1111)
+	  5: Rel (   -13,   -15)  ->  Abs (   921,  1096)
+	  6: Rel (   -40,   -45)  ->  Abs (   881,  1051)
+	  7: Rel (   -55,   -29)  ->  Abs (   826,  1022)
+	  8: Rel (   -38,   -21)  ->  Abs (   788,  1001)
+	  9: Rel (   -41,     0)  ->  Abs (   747,  1001)
+	 10: Rel (   -64,     0)  ->  Abs (   683,  1001)
+	 11: Rel (  -109,    79)  ->  Abs (   574,  1080)
+	 12: Rel (   -58,    43)  ->  Abs (   516,  1123)
+	 13: Rel (   -32,     0)  ->  Abs (   484,  1123)
+	 14: Rel (   -40,     0)  ->  Abs (   444,  1123)
+	 15: Rel (   -61,   -56)  ->  Abs (   383,  1067)
+	 16: Rel (   -27,   -25)  ->  Abs (   356,  1042)
+	 17: Rel (   -19,     0)  ->  Abs (   337,  1042)
+	 18: Rel (   -18,     0)  ->  Abs (   319,  1042)
+	 19: Rel (   -23,    24)  ->  Abs (   296,  1066)
+	 20: Rel (     0,    16)  ->  Abs (   296,  1082)
+	 21: Rel (     0,    26)  ->  Abs (   296,  1108)
+	 22: Rel (    51,    40)  ->  Abs (   347,  1148)
+	 23: Rel (    78,    59)  ->  Abs (   425,  1207)
+	 24: Rel (    58,     0)  ->  Abs (   483,  1207)
+	 25: Rel (    30,     0)  ->  Abs (   513,  1207)
+	 26: Rel (    62,   -25)  ->  Abs (   575,  1182)
+	 27: Rel (   140,   -96)  ->  Abs (   715,  1086)
+	 28: Rel (    32,     0)  ->  Abs (   747,  1086)
+	 29: Rel (    38,     0)  ->  Abs (   785,  1086)
+	 30: Rel (    77,    68)  ->  Abs (   862,  1154)
+	 31: Rel (    16,    13)  ->  Abs (   878,  1167)
+
+	Glyph 1172: off = 0x00037F5E, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			511
+	  yMin:			-324
+	  xMax:			716
+	  yMax:			-119
+
+	     0: Flags:		0x0217
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1173: off = 0x00037F70, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			511
+	  yMin:			-324
+	  xMax:			716
+	  yMax:			-119
+
+	     0: Flags:		0x0217
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1174: off = 0x00037F82, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			511
+	  yMin:			-324
+	  xMax:			716
+	  yMax:			-119
+
+	     0: Flags:		0x0217
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1175: off = 0x00037F94, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			511
+	  yMin:			-324
+	  xMax:			716
+	  yMax:			-119
+
+	     0: Flags:		0x0217
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1176: off = 0x00037FA6, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			511
+	  yMin:			-324
+	  xMax:			716
+	  yMax:			-119
+
+	     0: Flags:		0x0217
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1177: off = 0x00037FB8, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			511
+	  yMin:			-324
+	  xMax:			716
+	  yMax:			-119
+
+	     0: Flags:		0x0217
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1178: off = 0x00037FCA, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			511
+	  yMin:			-324
+	  xMax:			716
+	  yMax:			-119
+
+	     0: Flags:		0x0217
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1179: off = 0x00037FDC, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			511
+	  yMin:			-324
+	  xMax:			716
+	  yMax:			-119
+
+	     0: Flags:		0x0217
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1180: off = 0x00037FEE, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			511
+	  yMin:			-324
+	  xMax:			716
+	  yMax:			-119
+
+	     0: Flags:		0x0217
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1181: off = 0x00038000, len = 18
+	  numberOfContours:	-1  (Composite)
+	  xMin:			511
+	  yMin:			-324
+	  xMax:			716
+	  yMax:			-119
+
+	     0: Flags:		0x0217
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	Glyph 1182: off = 0x00038012, len = 186
+	  numberOfContours:	1
+	  xMin:			322
+	  yMin:			1397
+	  xMax:			960
+	  yMax:			1603
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	95
+	00000: PUSHB[6]             10    32    15    27    52     6 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (36):     9    14    52    21    32     9    14    52     0     0 
+	                            22    26    16    16    12    26    44     8    64     8 
+	                            64    60    53   159     8     1    95     8   224     8 
+	                             2     8   128    12    44    22 
+	00048: PUSHW[1]            960 
+	00051: NPUSHB      (10):    15     2    31     2    47     2     3     2     2    18 
+	00063: MDAP[rd]   
+	00064: SHP[rp1,zp0] 
+	00065: MDAP[rd]   
+	00066: DELTAP1    
+	00067: SVTCA[y-axis] 
+	00068: MIAP[rd+ci] 
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: SMD        
+	00071: RDTG       
+	00072: MDRP[nrp0,md,rd,1] 
+	00073: DELTAP2    
+	00074: DELTAP3    
+	00075: CALL       
+	00076: SVTCA[y-axis] 
+	00077: SMD        
+	00078: RTG        
+	00079: SRP0       
+	00080: FLIPON     
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SRP2       
+	00083: IP         
+	00084: MDAP[rd]   
+	00085: SRP1       
+	00086: SRP2       
+	00087: IP         
+	00088: MDAP[rd]   
+	00089: IUP[y]     
+	00090: IUP[x]     
+	00091: SVTCA[x-axis] 
+	00092: CALL       
+	00093: CALL       
+	00094: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   918,  1563)  ->  Abs (   918,  1563)
+	  1: Rel (    42,     0)  ->  Abs (   960,  1563)
+	  2: Rel (     0,   -39)  ->  Abs (   960,  1524)
+	  3: Rel (     0,   -18)  ->  Abs (   960,  1506)
+	  4: Rel (   -13,   -14)  ->  Abs (   947,  1492)
+	  5: Rel (   -39,   -44)  ->  Abs (   908,  1448)
+	  6: Rel (   -56,   -30)  ->  Abs (   852,  1418)
+	  7: Rel (   -40,   -21)  ->  Abs (   812,  1397)
+	  8: Rel (   -39,     0)  ->  Abs (   773,  1397)
+	  9: Rel (   -65,     0)  ->  Abs (   708,  1397)
+	 10: Rel (  -108,    79)  ->  Abs (   600,  1476)
+	 11: Rel (   -59,    43)  ->  Abs (   541,  1519)
+	 12: Rel (   -31,     0)  ->  Abs (   510,  1519)
+	 13: Rel (   -41,     0)  ->  Abs (   469,  1519)
+	 14: Rel (   -60,   -56)  ->  Abs (   409,  1463)
+	 15: Rel (   -28,   -25)  ->  Abs (   381,  1438)
+	 16: Rel (   -18,     0)  ->  Abs (   363,  1438)
+	 17: Rel (   -41,     0)  ->  Abs (   322,  1438)
+	 18: Rel (     0,    40)  ->  Abs (   322,  1478)
+	 19: Rel (     0,    27)  ->  Abs (   322,  1505)
+	 20: Rel (    51,    39)  ->  Abs (   373,  1544)
+	 21: Rel (    76,    59)  ->  Abs (   449,  1603)
+	 22: Rel (    60,     0)  ->  Abs (   509,  1603)
+	 23: Rel (    55,     0)  ->  Abs (   564,  1603)
+	 24: Rel (   107,   -73)  ->  Abs (   671,  1530)
+	 25: Rel (    70,   -48)  ->  Abs (   741,  1482)
+	 26: Rel (    32,     0)  ->  Abs (   773,  1482)
+	 27: Rel (    36,     0)  ->  Abs (   809,  1482)
+	 28: Rel (    79,    68)  ->  Abs (   888,  1550)
+	 29: Rel (    14,    13)  ->  Abs (   902,  1563)
+
+	Glyph 1183: off = 0x000380CC, len = 186
+	  numberOfContours:	1
+	  xMin:			299
+	  yMin:			1375
+	  xMax:			937
+	  yMax:			1581
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	95
+	00000: PUSHB[6]             10    32    15    27    52     6 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (36):     9    14    52    21    32     9    14    52     0     0 
+	                            22    26    16    16    12    26    44     8    64     8 
+	                            64    60    53   159     8     1    95     8   224     8 
+	                             2     8   128    12    44    22 
+	00048: PUSHW[1]            960 
+	00051: NPUSHB      (10):    15     2    31     2    47     2     3     2     2    18 
+	00063: MDAP[rd]   
+	00064: SHP[rp1,zp0] 
+	00065: MDAP[rd]   
+	00066: DELTAP1    
+	00067: SVTCA[y-axis] 
+	00068: MIAP[rd+ci] 
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: SMD        
+	00071: RDTG       
+	00072: MDRP[nrp0,md,rd,1] 
+	00073: DELTAP2    
+	00074: DELTAP3    
+	00075: CALL       
+	00076: SVTCA[y-axis] 
+	00077: SMD        
+	00078: RTG        
+	00079: SRP0       
+	00080: FLIPON     
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SRP2       
+	00083: IP         
+	00084: MDAP[rd]   
+	00085: SRP1       
+	00086: SRP2       
+	00087: IP         
+	00088: MDAP[rd]   
+	00089: IUP[y]     
+	00090: IUP[x]     
+	00091: SVTCA[x-axis] 
+	00092: CALL       
+	00093: CALL       
+	00094: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   895,  1541)  ->  Abs (   895,  1541)
+	  1: Rel (    42,     0)  ->  Abs (   937,  1541)
+	  2: Rel (     0,   -39)  ->  Abs (   937,  1502)
+	  3: Rel (     0,   -17)  ->  Abs (   937,  1485)
+	  4: Rel (   -13,   -15)  ->  Abs (   924,  1470)
+	  5: Rel (   -38,   -44)  ->  Abs (   886,  1426)
+	  6: Rel (   -57,   -30)  ->  Abs (   829,  1396)
+	  7: Rel (   -39,   -21)  ->  Abs (   790,  1375)
+	  8: Rel (   -40,     0)  ->  Abs (   750,  1375)
+	  9: Rel (   -64,     0)  ->  Abs (   686,  1375)
+	 10: Rel (  -109,    79)  ->  Abs (   577,  1454)
+	 11: Rel (   -58,    43)  ->  Abs (   519,  1497)
+	 12: Rel (   -32,     0)  ->  Abs (   487,  1497)
+	 13: Rel (   -40,     0)  ->  Abs (   447,  1497)
+	 14: Rel (   -61,   -56)  ->  Abs (   386,  1441)
+	 15: Rel (   -27,   -25)  ->  Abs (   359,  1416)
+	 16: Rel (   -19,     0)  ->  Abs (   340,  1416)
+	 17: Rel (   -41,     0)  ->  Abs (   299,  1416)
+	 18: Rel (     0,    40)  ->  Abs (   299,  1456)
+	 19: Rel (     0,    27)  ->  Abs (   299,  1483)
+	 20: Rel (    51,    39)  ->  Abs (   350,  1522)
+	 21: Rel (    77,    59)  ->  Abs (   427,  1581)
+	 22: Rel (    59,     0)  ->  Abs (   486,  1581)
+	 23: Rel (    56,     0)  ->  Abs (   542,  1581)
+	 24: Rel (   106,   -73)  ->  Abs (   648,  1508)
+	 25: Rel (    70,   -48)  ->  Abs (   718,  1460)
+	 26: Rel (    32,     0)  ->  Abs (   750,  1460)
+	 27: Rel (    37,     0)  ->  Abs (   787,  1460)
+	 28: Rel (    78,    68)  ->  Abs (   865,  1528)
+	 29: Rel (    15,    13)  ->  Abs (   880,  1541)
+
+	Glyph 1184: off = 0x00038186, len = 186
+	  numberOfContours:	1
+	  xMin:			322
+	  yMin:			1397
+	  xMax:			960
+	  yMax:			1603
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	95
+	00000: PUSHB[6]             10    32    15    27    52     6 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (36):     9    14    52    21    32     9    14    52     0     0 
+	                            22    26    16    16    12    26    44     8    64     8 
+	                            64    60    53   159     8     1    95     8   224     8 
+	                             2     8   128    12    44    22 
+	00048: PUSHW[1]            960 
+	00051: NPUSHB      (10):    15     2    31     2    47     2     3     2     2    18 
+	00063: MDAP[rd]   
+	00064: SHP[rp1,zp0] 
+	00065: MDAP[rd]   
+	00066: DELTAP1    
+	00067: SVTCA[y-axis] 
+	00068: MIAP[rd+ci] 
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: SMD        
+	00071: RDTG       
+	00072: MDRP[nrp0,md,rd,1] 
+	00073: DELTAP2    
+	00074: DELTAP3    
+	00075: CALL       
+	00076: SVTCA[y-axis] 
+	00077: SMD        
+	00078: RTG        
+	00079: SRP0       
+	00080: FLIPON     
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SRP2       
+	00083: IP         
+	00084: MDAP[rd]   
+	00085: SRP1       
+	00086: SRP2       
+	00087: IP         
+	00088: MDAP[rd]   
+	00089: IUP[y]     
+	00090: IUP[x]     
+	00091: SVTCA[x-axis] 
+	00092: CALL       
+	00093: CALL       
+	00094: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   918,  1563)  ->  Abs (   918,  1563)
+	  1: Rel (    42,     0)  ->  Abs (   960,  1563)
+	  2: Rel (     0,   -39)  ->  Abs (   960,  1524)
+	  3: Rel (     0,   -18)  ->  Abs (   960,  1506)
+	  4: Rel (   -13,   -14)  ->  Abs (   947,  1492)
+	  5: Rel (   -39,   -44)  ->  Abs (   908,  1448)
+	  6: Rel (   -56,   -30)  ->  Abs (   852,  1418)
+	  7: Rel (   -40,   -21)  ->  Abs (   812,  1397)
+	  8: Rel (   -39,     0)  ->  Abs (   773,  1397)
+	  9: Rel (   -65,     0)  ->  Abs (   708,  1397)
+	 10: Rel (  -108,    79)  ->  Abs (   600,  1476)
+	 11: Rel (   -59,    43)  ->  Abs (   541,  1519)
+	 12: Rel (   -31,     0)  ->  Abs (   510,  1519)
+	 13: Rel (   -41,     0)  ->  Abs (   469,  1519)
+	 14: Rel (   -60,   -56)  ->  Abs (   409,  1463)
+	 15: Rel (   -28,   -25)  ->  Abs (   381,  1438)
+	 16: Rel (   -18,     0)  ->  Abs (   363,  1438)
+	 17: Rel (   -41,     0)  ->  Abs (   322,  1438)
+	 18: Rel (     0,    40)  ->  Abs (   322,  1478)
+	 19: Rel (     0,    27)  ->  Abs (   322,  1505)
+	 20: Rel (    51,    39)  ->  Abs (   373,  1544)
+	 21: Rel (    76,    59)  ->  Abs (   449,  1603)
+	 22: Rel (    60,     0)  ->  Abs (   509,  1603)
+	 23: Rel (    55,     0)  ->  Abs (   564,  1603)
+	 24: Rel (   107,   -73)  ->  Abs (   671,  1530)
+	 25: Rel (    70,   -48)  ->  Abs (   741,  1482)
+	 26: Rel (    32,     0)  ->  Abs (   773,  1482)
+	 27: Rel (    36,     0)  ->  Abs (   809,  1482)
+	 28: Rel (    79,    68)  ->  Abs (   888,  1550)
+	 29: Rel (    14,    13)  ->  Abs (   902,  1563)
+
+	Glyph 1185: off = 0x00038240, len = 186
+	  numberOfContours:	1
+	  xMin:			299
+	  yMin:			1375
+	  xMax:			937
+	  yMax:			1581
+
+	EndPoints
+	---------
+	  0:  29
+
+	  Length of Instructions:	95
+	00000: PUSHB[6]             10    32    15    27    52     6 
+	00007: PUSHW[1]            -32 
+	00010: NPUSHB      (36):     9    14    52    21    32     9    14    52     0     0 
+	                            22    26    16    16    12    26    44     8    64     8 
+	                            64    60    53   159     8     1    95     8   224     8 
+	                             2     8   128    12    44    22 
+	00048: PUSHW[1]            960 
+	00051: NPUSHB      (10):    15     2    31     2    47     2     3     2     2    18 
+	00063: MDAP[rd]   
+	00064: SHP[rp1,zp0] 
+	00065: MDAP[rd]   
+	00066: DELTAP1    
+	00067: SVTCA[y-axis] 
+	00068: MIAP[rd+ci] 
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: SMD        
+	00071: RDTG       
+	00072: MDRP[nrp0,md,rd,1] 
+	00073: DELTAP2    
+	00074: DELTAP3    
+	00075: CALL       
+	00076: SVTCA[y-axis] 
+	00077: SMD        
+	00078: RTG        
+	00079: SRP0       
+	00080: FLIPON     
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: SRP2       
+	00083: IP         
+	00084: MDAP[rd]   
+	00085: SRP1       
+	00086: SRP2       
+	00087: IP         
+	00088: MDAP[rd]   
+	00089: IUP[y]     
+	00090: IUP[x]     
+	00091: SVTCA[x-axis] 
+	00092: CALL       
+	00093: CALL       
+	00094: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:  YDual XDual         Y-Short X-Short On
+	 29:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   895,  1541)  ->  Abs (   895,  1541)
+	  1: Rel (    42,     0)  ->  Abs (   937,  1541)
+	  2: Rel (     0,   -39)  ->  Abs (   937,  1502)
+	  3: Rel (     0,   -17)  ->  Abs (   937,  1485)
+	  4: Rel (   -13,   -15)  ->  Abs (   924,  1470)
+	  5: Rel (   -38,   -44)  ->  Abs (   886,  1426)
+	  6: Rel (   -57,   -30)  ->  Abs (   829,  1396)
+	  7: Rel (   -39,   -21)  ->  Abs (   790,  1375)
+	  8: Rel (   -40,     0)  ->  Abs (   750,  1375)
+	  9: Rel (   -64,     0)  ->  Abs (   686,  1375)
+	 10: Rel (  -109,    79)  ->  Abs (   577,  1454)
+	 11: Rel (   -58,    43)  ->  Abs (   519,  1497)
+	 12: Rel (   -32,     0)  ->  Abs (   487,  1497)
+	 13: Rel (   -40,     0)  ->  Abs (   447,  1497)
+	 14: Rel (   -61,   -56)  ->  Abs (   386,  1441)
+	 15: Rel (   -27,   -25)  ->  Abs (   359,  1416)
+	 16: Rel (   -19,     0)  ->  Abs (   340,  1416)
+	 17: Rel (   -41,     0)  ->  Abs (   299,  1416)
+	 18: Rel (     0,    40)  ->  Abs (   299,  1456)
+	 19: Rel (     0,    27)  ->  Abs (   299,  1483)
+	 20: Rel (    51,    39)  ->  Abs (   350,  1522)
+	 21: Rel (    77,    59)  ->  Abs (   427,  1581)
+	 22: Rel (    59,     0)  ->  Abs (   486,  1581)
+	 23: Rel (    56,     0)  ->  Abs (   542,  1581)
+	 24: Rel (   106,   -73)  ->  Abs (   648,  1508)
+	 25: Rel (    70,   -48)  ->  Abs (   718,  1460)
+	 26: Rel (    32,     0)  ->  Abs (   750,  1460)
+	 27: Rel (    37,     0)  ->  Abs (   787,  1460)
+	 28: Rel (    78,    68)  ->  Abs (   865,  1528)
+	 29: Rel (    15,    13)  ->  Abs (   880,  1541)
+
+	Glyph 1186: off = 0x000382FA, len = 42
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			-324
+	  xMax:			1215
+	  yMax:			1170
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2     0    53    47     2    42    64 
+	00008: PUSHW[1]            300 
+	00011: SCANCTRL   
+	00012: SVTCA[x-axis] 
+	00013: CALL       
+	00014: SHC[rp1,zp0] 
+
+	Glyph 1187: off = 0x00038324, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-324
+	  xMax:			1110
+	  yMax:			896
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-440
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2     0    61    55     6    33    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1188: off = 0x0003834A, len = 62
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1563
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	1139
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (31):     2    16    72    32    72    80    72     3    48    72 
+	                            80    72   112    72   128    72   176    72   192    72 
+	                           224    72   240    72     8     0    72    67    45    44 
+	                            64 
+	00033: SVTCA[x-axis] 
+	00034: CALL       
+	00035: DELTAP1    
+	00036: DELTAP2    
+	00037: SHC[rp1,zp0] 
+
+	Glyph 1189: off = 0x00038388, len = 44
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			1278
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	1156
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     2    32    80    48    80    96    80     3     0    80 
+	                            75    29    29    64 
+	00016: SVTCA[x-axis] 
+	00017: CALL       
+	00018: DELTAP1    
+	00019: SHC[rp1,zp0] 
+
+	Glyph 1190: off = 0x000383B4, len = 102
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1608
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	1147
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1136
+		X BOffset:	-60
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              3   127    73   143    73     2    73 
+	00008: PUSHW[1]            -64 
+	00011: PUSHB[5]             18    20    52    73    47 
+	00017: PUSHW[1]           -200 
+	00020: PUSHB[4]             72    43     2    60 
+	00025: PUSHW[1]            -64 
+	00028: NPUSHB      (19):    23    27    52   128    60   144    60     2    48    60 
+	                            80    60   112    60   128    60   176    60     5 
+	00049: PUSHW[1]            -15 
+	00052: PUSHB[5]             60    50    45    44    64 
+	00058: PUSHW[1]            300 
+	00061: SCANCTRL   
+	00062: SVTCA[x-axis] 
+	00063: CALL       
+	00064: DELTAP1    
+	00065: DELTAP2    
+	00066: CALL       
+	00067: SHC[rp1,zp0] 
+	00068: CALL       
+	00069: CALL       
+	00070: DELTAP1    
+	00071: SHC[rp1,zp0] 
+
+	Glyph 1191: off = 0x0003841A, len = 90
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	214
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1138
+		X BOffset:	-60
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (39):     3    95    84   111    84   127    84   207    84     4 
+	                            15    84     1    84    70    72    72    43     2   144 
+	                            65     1     0    65    32    65    48    65    96    65 
+	                             4    65    29     0   104    43     2     1    68 
+	00041: PUSHW[3]            652    41   300 
+	00048: SCANCTRL   
+	00049: SVTCA[y-axis] 
+	00050: CALL       
+	00051: SVTCA[x-axis] 
+	00052: CALL       
+	00053: DELTAP1    
+	00054: DELTAP1    
+	00055: SHC[rp1,zp0] 
+	00056: CALL       
+	00057: DELTAP1    
+	00058: DELTAP2    
+	00059: SHC[rp1,zp0] 
+
+	Glyph 1192: off = 0x00038474, len = 104
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1608
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	1147
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1133
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              3    67 
+	00003: PUSHW[1]           -128 
+	00006: NPUSHB      (10):    16    17    52     0    67    16    67     2    67    47 
+	00018: PUSHW[1]            260 
+	00021: PUSHB[4]             72    43     2    60 
+	00026: PUSHW[1]            -64 
+	00029: NPUSHB      (19):    23    27    52   128    60   144    60     2    48    60 
+	                            80    60   112    60   128    60   176    60     5 
+	00050: PUSHW[1]            -15 
+	00053: PUSHB[5]             60    50    45    44    64 
+	00059: PUSHW[1]            300 
+	00062: SCANCTRL   
+	00063: SVTCA[x-axis] 
+	00064: CALL       
+	00065: DELTAP1    
+	00066: DELTAP2    
+	00067: CALL       
+	00068: SHC[rp1,zp0] 
+	00069: CALL       
+	00070: DELTAP1    
+	00071: CALL       
+	00072: SHC[rp1,zp0] 
+
+	Glyph 1193: off = 0x000384DC, len = 94
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	214
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1135
+		X BOffset:	91
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     3    80    78    96    78   112    78   192    78     4 
+	                             0    78     1    78    59 
+	00017: PUSHW[1]            -72 
+	00020: NPUSHB      (23):    72    43     2   144    65     1     0    65    32    65 
+	                            48    65    96    65     4    65    29     0   104    43 
+	                             2     1    68 
+	00045: PUSHW[3]            652    41   300 
+	00052: SCANCTRL   
+	00053: SVTCA[y-axis] 
+	00054: CALL       
+	00055: SVTCA[x-axis] 
+	00056: CALL       
+	00057: DELTAP1    
+	00058: DELTAP1    
+	00059: SHC[rp1,zp0] 
+	00060: CALL       
+	00061: DELTAP1    
+	00062: DELTAP2    
+	00063: SHC[rp1,zp0] 
+
+	Glyph 1194: off = 0x0003853A, len = 86
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	1147
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1140
+		X BOffset:	-10
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     3     0    86    81    47    47    64     2    60 
+	00011: PUSHW[1]            -64 
+	00014: NPUSHB      (19):    23    27    52   128    60   144    60     2    48    60 
+	                            80    60   112    60   128    60   176    60     5 
+	00035: PUSHW[1]            -15 
+	00038: PUSHB[5]             60    50    45    44    64 
+	00044: PUSHW[1]            300 
+	00047: SCANCTRL   
+	00048: SVTCA[x-axis] 
+	00049: CALL       
+	00050: DELTAP1    
+	00051: DELTAP2    
+	00052: CALL       
+	00053: SHC[rp1,zp0] 
+	00054: CALL       
+	00055: SHC[rp1,zp0] 
+
+	Glyph 1195: off = 0x00038590, len = 78
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	214
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1141
+		X BOffset:	10
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (28):     3     0    99    94    55    55    64     2   144    65 
+	                             1     0    65    32    65    48    65    96    65     4 
+	                            65    29     0   104    43     2     1    68 
+	00030: PUSHW[3]            652    41   300 
+	00037: SCANCTRL   
+	00038: SVTCA[y-axis] 
+	00039: CALL       
+	00040: SVTCA[x-axis] 
+	00041: CALL       
+	00042: DELTAP1    
+	00043: DELTAP1    
+	00044: SHC[rp1,zp0] 
+	00045: CALL       
+	00046: SHC[rp1,zp0] 
+
+	Glyph 1196: off = 0x000385DE, len = 86
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	1147
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1144
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     3    15    81    65    60    50    64     2    60 
+	00011: PUSHW[1]            -64 
+	00014: NPUSHB      (19):    23    27    52   128    60   144    60     2    48    60 
+	                            80    60   112    60   128    60   176    60     5 
+	00035: PUSHW[1]            -15 
+	00038: PUSHB[5]             60    50    45    44    64 
+	00044: PUSHW[1]            300 
+	00047: SCANCTRL   
+	00048: SVTCA[x-axis] 
+	00049: CALL       
+	00050: DELTAP1    
+	00051: DELTAP2    
+	00052: CALL       
+	00053: SHC[rp1,zp0] 
+	00054: CALL       
+	00055: SHC[rp1,zp0] 
+
+	Glyph 1197: off = 0x00038634, len = 78
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	214
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1145
+		X BOffset:	10
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (28):     3     0    92    76    71    58    64     2   144    65 
+	                             1     0    65    32    65    48    65    96    65     4 
+	                            65    29     0   104    43     2     1    68 
+	00030: PUSHW[3]            652    41   300 
+	00037: SCANCTRL   
+	00038: SVTCA[y-axis] 
+	00039: CALL       
+	00040: SVTCA[x-axis] 
+	00041: CALL       
+	00042: DELTAP1    
+	00043: DELTAP1    
+	00044: SHC[rp1,zp0] 
+	00045: CALL       
+	00046: SHC[rp1,zp0] 
+
+	Glyph 1198: off = 0x00038682, len = 98
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			-324
+	  xMax:			1215
+	  yMax:			1384
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	1147
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     3     0    69    63     2    42    64     2    60 
+	00011: PUSHW[1]            -64 
+	00014: NPUSHB      (19):    23    27    52   128    60   144    60     2    48    60 
+	                            80    60   112    60   128    60   176    60     5 
+	00035: PUSHW[1]            -15 
+	00038: PUSHB[8]             60    50    45    44    64     2     1    58 
+	00047: PUSHW[3]            651    41   300 
+	00054: SCANCTRL   
+	00055: SVTCA[y-axis] 
+	00056: CALL       
+	00057: SVTCA[x-axis] 
+	00058: CALL       
+	00059: DELTAP1    
+	00060: DELTAP2    
+	00061: CALL       
+	00062: SHC[rp1,zp0] 
+	00063: CALL       
+	00064: SHC[rp1,zp0] 
+
+	Glyph 1199: off = 0x000386E4, len = 80
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-324
+	  xMax:			1110
+	  yMax:			1310
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	214
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-440
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (28):     3     0    80    74     6    33    64     2   144    65 
+	                             1     0    65    32    65    48    65    96    65     4 
+	                            65    29     0   104    43     2     1    68 
+	00030: PUSHW[3]            652    41   300 
+	00037: SCANCTRL   
+	00038: SVTCA[y-axis] 
+	00039: CALL       
+	00040: SVTCA[x-axis] 
+	00041: CALL       
+	00042: DELTAP1    
+	00043: DELTAP1    
+	00044: SHC[rp1,zp0] 
+	00045: CALL       
+	00046: SHC[rp1,zp0] 
+
+	Glyph 1200: off = 0x00038734, len = 100
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1608
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	1146
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1136
+		X BOffset:	40
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (23):     3   224    81     1    81    64    11    15    52    81 
+	                            49    66    72    43     2   160    69   192    69   208 
+	                            69     3    69 
+	00025: PUSHW[1]            -64 
+	00028: PUSHB[4]             24    27    52    69 
+	00033: PUSHW[1]            -64 
+	00036: PUSHB[4]             16    17    52    69 
+	00041: PUSHW[1]            -64 
+	00044: NPUSHB       (9):     9    14    52     0    69    61    45    44    64 
+	00055: PUSHW[1]            300 
+	00058: SCANCTRL   
+	00059: SVTCA[x-axis] 
+	00060: CALL       
+	00061: CALL       
+	00062: CALL       
+	00063: CALL       
+	00064: DELTAP1    
+	00065: SHC[rp1,zp0] 
+	00066: CALL       
+	00067: CALL       
+	00068: DELTAP1    
+	00069: SHC[rp1,zp0] 
+
+	Glyph 1201: off = 0x00038798, len = 94
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	217
+		X BOffset:	12
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1138
+		X BOffset:	50
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (33):     3    91    64    30    34    52    31    91   224    91 
+	                             2    48    91    96    91     2    91    58    88    72 
+	                            43     2     0    78   112    78   239    78   255    78 
+	                             4    78    29 
+	00035: PUSHW[1]           -328 
+	00038: PUSHB[5]             72    43     2     1    75 
+	00044: PUSHW[3]            652    41   300 
+	00051: SCANCTRL   
+	00052: SVTCA[y-axis] 
+	00053: CALL       
+	00054: SVTCA[x-axis] 
+	00055: CALL       
+	00056: DELTAP1    
+	00057: SHC[rp1,zp0] 
+	00058: CALL       
+	00059: DELTAP1    
+	00060: DELTAP2    
+	00061: CALL       
+	00062: SHC[rp1,zp0] 
+
+	Glyph 1202: off = 0x000387F6, len = 98
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1608
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	1146
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1133
+		X BOffset:	-83
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              3   239    75     1    75    56 
+	00007: PUSHW[1]            -46 
+	00010: NPUSHB      (11):    72    43     2   160    69   192    69   208    69     3 
+	                            69 
+	00023: PUSHW[1]            -64 
+	00026: PUSHB[4]             24    27    52    69 
+	00031: PUSHW[1]            -64 
+	00034: PUSHB[4]             16    17    52    69 
+	00039: PUSHW[1]            -64 
+	00042: NPUSHB       (9):     9    14    52     0    69    61    45    44    64 
+	00053: PUSHW[1]            300 
+	00056: SCANCTRL   
+	00057: SVTCA[x-axis] 
+	00058: CALL       
+	00059: CALL       
+	00060: CALL       
+	00061: CALL       
+	00062: DELTAP1    
+	00063: SHC[rp1,zp0] 
+	00064: CALL       
+	00065: DELTAP1    
+	00066: SHC[rp1,zp0] 
+
+	Glyph 1203: off = 0x00038858, len = 80
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	217
+		X BOffset:	12
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1135
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (22):     3   144    92     1     0    92    85    78    65    64 
+	                             2     0    78   112    78   239    78   255    78     4 
+	                            78    29 
+	00024: PUSHW[1]           -328 
+	00027: PUSHB[5]             72    43     2     1    75 
+	00033: PUSHW[3]            652    41   300 
+	00040: SCANCTRL   
+	00041: SVTCA[y-axis] 
+	00042: CALL       
+	00043: SVTCA[x-axis] 
+	00044: CALL       
+	00045: DELTAP1    
+	00046: SHC[rp1,zp0] 
+	00047: CALL       
+	00048: DELTAP1    
+	00049: SHC[rp1,zp0] 
+
+	Glyph 1204: off = 0x000388A8, len = 104
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	1146
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1140
+		X BOffset:	10
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              3    94 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (21):    29    34    52   224    94     1     0    94    89    69 
+	                            61    64     2   160    69   192    69   208    69     3 
+	                            69 
+	00029: PUSHW[1]            -64 
+	00032: PUSHB[4]             24    27    52    69 
+	00037: PUSHW[1]            -64 
+	00040: PUSHB[4]             16    17    52    69 
+	00045: PUSHW[1]            -64 
+	00048: NPUSHB       (9):     9    14    52     0    69    61    45    44    64 
+	00059: PUSHW[1]            300 
+	00062: SCANCTRL   
+	00063: SVTCA[x-axis] 
+	00064: CALL       
+	00065: CALL       
+	00066: CALL       
+	00067: CALL       
+	00068: DELTAP1    
+	00069: SHC[rp1,zp0] 
+	00070: CALL       
+	00071: DELTAP1    
+	00072: CALL       
+	00073: SHC[rp1,zp0] 
+
+	Glyph 1205: off = 0x00038910, len = 114
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	217
+		X BOffset:	12
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1141
+		X BOffset:	30
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              3   106 
+	00003: PUSHW[1]            -64 
+	00006: NPUSHB      (28):    12    15    52    15   106    31   106   111   106   127 
+	                           106   143   106     5    16   106   255   106     2   160 
+	                           106   176   106   192   106     3   106    62 
+	00036: PUSHW[1]            -27 
+	00039: NPUSHB      (14):    72    43     2     0    78   112    78   239    78   255 
+	                            78     4    78    29 
+	00055: PUSHW[1]           -328 
+	00058: PUSHB[5]             72    43     2     1    75 
+	00064: PUSHW[3]            652    41   300 
+	00071: SCANCTRL   
+	00072: SVTCA[y-axis] 
+	00073: CALL       
+	00074: SVTCA[x-axis] 
+	00075: CALL       
+	00076: DELTAP1    
+	00077: SHC[rp1,zp0] 
+	00078: CALL       
+	00079: DELTAP1    
+	00080: DELTAP2    
+	00081: DELTAP3    
+	00082: CALL       
+	00083: SHC[rp1,zp0] 
+
+	Glyph 1206: off = 0x00038982, len = 94
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	1146
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1144
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHW[2]              3   -10 
+	00005: NPUSHB      (14):    89    73    69    61    64     2   160    69   192    69 
+	                           208    69     3    69 
+	00021: PUSHW[1]            -64 
+	00024: PUSHB[4]             24    27    52    69 
+	00029: PUSHW[1]            -64 
+	00032: PUSHB[4]             16    17    52    69 
+	00037: PUSHW[1]            -64 
+	00040: NPUSHB       (9):     9    14    52     0    69    61    45    44    64 
+	00051: PUSHW[1]            300 
+	00054: SCANCTRL   
+	00055: SVTCA[x-axis] 
+	00056: CALL       
+	00057: CALL       
+	00058: CALL       
+	00059: CALL       
+	00060: DELTAP1    
+	00061: SHC[rp1,zp0] 
+	00062: CALL       
+	00063: SHC[rp1,zp0] 
+
+	Glyph 1207: off = 0x000389E0, len = 76
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	217
+		X BOffset:	12
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1145
+		X BOffset:	20
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     3     0    99    83    62    62    64     2     0    78 
+	                           112    78   239    78   255    78     4    78    29 
+	00021: PUSHW[1]           -328 
+	00024: PUSHB[5]             72    43     2     1    75 
+	00030: PUSHW[3]            652    41   300 
+	00037: SCANCTRL   
+	00038: SVTCA[y-axis] 
+	00039: CALL       
+	00040: SVTCA[x-axis] 
+	00041: CALL       
+	00042: DELTAP1    
+	00043: SHC[rp1,zp0] 
+	00044: CALL       
+	00045: SHC[rp1,zp0] 
+
+	Glyph 1208: off = 0x00038A2C, len = 102
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			-324
+	  xMax:			1215
+	  yMax:			1383
+
+	     0: Flags:		0x0226
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	1146
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     3     0    77    71     2    42    64     2   160    69 
+	                           192    69   208    69     3    69 
+	00018: PUSHW[1]            -64 
+	00021: PUSHB[4]             24    27    52    69 
+	00026: PUSHW[1]            -64 
+	00029: PUSHB[4]             16    17    52    69 
+	00034: PUSHW[1]            -64 
+	00037: NPUSHB      (12):     9    14    52     0    69    61    45    44    64     2 
+	                             1    65 
+	00051: PUSHW[3]            651    41   300 
+	00058: SCANCTRL   
+	00059: SVTCA[y-axis] 
+	00060: CALL       
+	00061: SVTCA[x-axis] 
+	00062: CALL       
+	00063: CALL       
+	00064: CALL       
+	00065: CALL       
+	00066: DELTAP1    
+	00067: SHC[rp1,zp0] 
+	00068: CALL       
+	00069: SHC[rp1,zp0] 
+
+	Glyph 1209: off = 0x00038A92, len = 78
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-324
+	  xMax:			1110
+	  yMax:			1298
+
+	     0: Flags:		0x0226
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	217
+		X BOffset:	12
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-440
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     3     0    87    81     6    33    64     2     0    78 
+	                           112    78   239    78   255    78     4    78    29 
+	00021: PUSHW[1]           -328 
+	00024: PUSHB[5]             72    43     2     1    75 
+	00030: PUSHW[3]            652    41   300 
+	00037: SCANCTRL   
+	00038: SVTCA[y-axis] 
+	00039: CALL       
+	00040: SVTCA[x-axis] 
+	00041: CALL       
+	00042: DELTAP1    
+	00043: SHC[rp1,zp0] 
+	00044: CALL       
+	00045: SHC[rp1,zp0] 
+
+	Glyph 1210: off = 0x00038AE0, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			-324
+	  xMax:			1071
+	  yMax:			1170
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              1     0    60    16    60     2 
+	00007: PUSHW[1]            -50 
+	00010: PUSHB[5]             60    54    18    10    64 
+	00016: SVTCA[x-axis] 
+	00017: CALL       
+	00018: DELTAP1    
+	00019: SHC[rp1,zp0] 
+
+	Glyph 1211: off = 0x00038B0E, len = 40
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-324
+	  xMax:			1071
+	  yMax:			896
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHW[2]              2   -19 
+	00005: PUSHB[5]             39    33    17    17    64 
+	00011: SVTCA[x-axis] 
+	00012: CALL       
+	00013: SHC[rp1,zp0] 
+
+	Glyph 1212: off = 0x00038B36, len = 40
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1563
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	1139
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1    15    79     1     0    79    74    19    35    64 
+	00012: SVTCA[x-axis] 
+	00013: CALL       
+	00014: DELTAP2    
+	00015: SHC[rp1,zp0] 
+
+	Glyph 1213: off = 0x00038B5E, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1071
+	  yMax:			1278
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	1156
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2     0    58    53    23    23    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1214: off = 0x00038B82, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1475
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	-2
+		Y WOffset:	268
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              1    48    74    64    74    80    74     3 
+	00009: PUSHW[1]            -30 
+	00012: PUSHB[8]             74    57    19    27    64     1     1    63 
+	00021: PUSHW[2]            651    41 
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: DELTAP1    
+	00031: SHC[rp1,zp0] 
+
+	Glyph 1215: off = 0x00038BBC, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1071
+	  yMax:			1207
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	215
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    53    36    23    23    64     2     1    42 
+	00012: PUSHW[2]            652    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1216: off = 0x00038BEA, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1608
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	1147
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1136
+		X BOffset:	-60
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2   127    80   143    80     2    80 
+	00008: PUSHW[1]            -64 
+	00011: PUSHB[5]             18    20    52    80    54 
+	00017: PUSHW[1]           -200 
+	00020: NPUSHB       (9):    72    43     1     0    67    57    19    35    64 
+	00031: SVTCA[x-axis] 
+	00032: CALL       
+	00033: SHC[rp1,zp0] 
+	00034: CALL       
+	00035: CALL       
+	00036: DELTAP1    
+	00037: SHC[rp1,zp0] 
+
+	Glyph 1217: off = 0x00038C2E, len = 76
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1071
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	214
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1138
+		X BOffset:	-60
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (27):     3    95    62   111    62   127    62   207    62     4 
+	                            15    62     1    62    49    72    72    43     2    43 
+	                            23     0   104    43     2     1    46 
+	00029: PUSHW[3]            652    41   300 
+	00036: SCANCTRL   
+	00037: SVTCA[y-axis] 
+	00038: CALL       
+	00039: SVTCA[x-axis] 
+	00040: CALL       
+	00041: SHC[rp1,zp0] 
+	00042: CALL       
+	00043: DELTAP1    
+	00044: DELTAP2    
+	00045: SHC[rp1,zp0] 
+
+	Glyph 1218: off = 0x00038C7A, len = 70
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1608
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	1147
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1133
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              2    74 
+	00003: PUSHW[1]           -128 
+	00006: NPUSHB      (10):    16    17    52     0    74    16    74     2    74    54 
+	00018: PUSHW[1]            260 
+	00021: NPUSHB       (9):    72    43     1     0    67    57    19    35    64 
+	00032: SVTCA[x-axis] 
+	00033: CALL       
+	00034: SHC[rp1,zp0] 
+	00035: CALL       
+	00036: DELTAP1    
+	00037: CALL       
+	00038: SHC[rp1,zp0] 
+
+	Glyph 1219: off = 0x00038CC0, len = 80
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1071
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	214
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1135
+		X BOffset:	80
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     3    80    56    96    56   112    56   192    56     4 
+	                             0    56     1    56    38 
+	00017: PUSHW[1]            -72 
+	00020: NPUSHB      (11):    72    43     2    43    23     0   104    43     2     1 
+	                            46 
+	00033: PUSHW[3]            652    41   300 
+	00040: SCANCTRL   
+	00041: SVTCA[y-axis] 
+	00042: CALL       
+	00043: SVTCA[x-axis] 
+	00044: CALL       
+	00045: SHC[rp1,zp0] 
+	00046: CALL       
+	00047: DELTAP1    
+	00048: DELTAP2    
+	00049: SHC[rp1,zp0] 
+
+	Glyph 1220: off = 0x00038D10, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	1147
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1140
+		X BOffset:	-10
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     2     0    93    88    54    54    64     1     0    67 
+	                            57    19    35    64 
+	00016: SVTCA[x-axis] 
+	00017: CALL       
+	00018: SHC[rp1,zp0] 
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+
+	Glyph 1221: off = 0x00038D44, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1071
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	214
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1141
+		X BOffset:	10
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     3     0    77    73    33    33    64     2    43    23 
+	                             0   104    43     2     1    46 
+	00018: PUSHW[3]            652    41   300 
+	00025: SCANCTRL   
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: SHC[rp1,zp0] 
+	00031: CALL       
+	00032: SHC[rp1,zp0] 
+
+	Glyph 1222: off = 0x00038D84, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			0
+	  xMax:			1071
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	1147
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1144
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     2    15    88    72    67    57    64     1     0    67 
+	                            57    19    35    64 
+	00016: SVTCA[x-axis] 
+	00017: CALL       
+	00018: SHC[rp1,zp0] 
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+
+	Glyph 1223: off = 0x00038DB8, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1071
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	214
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1145
+		X BOffset:	10
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (16):     3     0    70    54    49    37    64     2    43    23 
+	                             0   104    43     2     1    46 
+	00018: PUSHW[3]            652    41   300 
+	00025: SCANCTRL   
+	00026: SVTCA[y-axis] 
+	00027: CALL       
+	00028: SVTCA[x-axis] 
+	00029: CALL       
+	00030: SHC[rp1,zp0] 
+	00031: CALL       
+	00032: SHC[rp1,zp0] 
+
+	Glyph 1224: off = 0x00038DF8, len = 72
+	  numberOfContours:	-1  (Composite)
+	  xMin:			88
+	  yMin:			-324
+	  xMax:			1071
+	  yMax:			1384
+
+	     0: Flags:		0x0226
+		Glyf Index:	40
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	1147
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[6]              2     0    76    16    76     2 
+	00007: PUSHW[1]            -50 
+	00010: NPUSHB      (15):    76    70    18    10    64     1     0    67    57    19 
+	                            35    64     1     1    65 
+	00027: PUSHW[2]            651    41 
+	00032: SVTCA[y-axis] 
+	00033: CALL       
+	00034: SVTCA[x-axis] 
+	00035: CALL       
+	00036: SHC[rp1,zp0] 
+	00037: CALL       
+	00038: DELTAP1    
+	00039: SHC[rp1,zp0] 
+
+	Glyph 1225: off = 0x00038E40, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			128
+	  yMin:			-324
+	  xMax:			1071
+	  yMax:			1310
+
+	     0: Flags:		0x0226
+		Glyf Index:	72
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	214
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHW[2]              3   -19 
+	00005: NPUSHB      (14):    58    52    17    17    64     2    43    23     0   104 
+	                            43     2     1    46 
+	00021: PUSHW[3]            652    41   300 
+	00028: SCANCTRL   
+	00029: SVTCA[y-axis] 
+	00030: CALL       
+	00031: SVTCA[x-axis] 
+	00032: CALL       
+	00033: SHC[rp1,zp0] 
+	00034: CALL       
+	00035: SHC[rp1,zp0] 
+
+	Glyph 1226: off = 0x00038E84, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			229
+	  yMin:			0
+	  xMax:			1001
+	  yMax:			1563
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	1139
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    57    52    17     0    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1227: off = 0x00038EA8, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			186
+	  yMin:			0
+	  xMax:			1047
+	  yMax:			1278
+
+	     0: Flags:		0x0226
+		Glyf Index:	213
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	1156
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    50    45    17     0    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1228: off = 0x00038ECC, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			229
+	  yMin:			-324
+	  xMax:			1001
+	  yMax:			1170
+
+	     0: Flags:		0x0226
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    38    32    17     0    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1229: off = 0x00038EF2, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			189
+	  yMin:			-324
+	  xMax:			1046
+	  yMax:			1297
+
+	     0: Flags:		0x0226
+		Glyf Index:	76
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2     0    35    29    20     5    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1230: off = 0x00038F18, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-324
+	  xMax:			1024
+	  yMax:			1197
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-490
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2     0    32    26     4     4    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1231: off = 0x00038F3E, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-324
+	  xMax:			1084
+	  yMax:			896
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2     0    30    24     3     3    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1232: off = 0x00038F64, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-33
+	  xMax:			1024
+	  yMax:			1563
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	1139
+		X BOffset:	-100
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2     0    51    46    10    10    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1233: off = 0x00038F88, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1084
+	  yMax:			1278
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	1156
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2     0    49    44     9     9    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1234: off = 0x00038FAC, len = 70
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-33
+	  xMax:			1024
+	  yMax:			1608
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	1147
+		X BOffset:	-80
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1136
+		X WOffset:	-140
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              3   127    52   143    52     2    52 
+	00008: PUSHW[1]            -64 
+	00011: PUSHB[5]             18    20    52    52    26 
+	00017: PUSHW[1]           -200 
+	00020: NPUSHB       (9):    72    43     2     0    39    29    10    10    64 
+	00031: SVTCA[x-axis] 
+	00032: CALL       
+	00033: SHC[rp1,zp0] 
+	00034: CALL       
+	00035: CALL       
+	00036: DELTAP1    
+	00037: SHC[rp1,zp0] 
+
+	Glyph 1235: off = 0x00038FF2, len = 76
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1084
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	214
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1138
+		X BOffset:	-60
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (28):     3    95    53   111    53   127    53   207    53     4 
+	                            15    53     1    53    40    72    72    43     2     1 
+	                            34     9     0   104    39     2     1    37 
+	00030: PUSHW[3]            652    41   300 
+	00037: SCANCTRL   
+	00038: SVTCA[y-axis] 
+	00039: CALL       
+	00040: SVTCA[x-axis] 
+	00041: CALL       
+	00042: CALL       
+	00043: DELTAP1    
+	00044: DELTAP2    
+	00045: SHC[rp1,zp0] 
+
+	Glyph 1236: off = 0x0003903E, len = 70
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-33
+	  xMax:			1024
+	  yMax:			1608
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	1147
+		X BOffset:	-80
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1133
+		X BOffset:	-80
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[2]              3    46 
+	00003: PUSHW[1]           -128 
+	00006: NPUSHB      (10):    16    17    52     0    46    16    46     2    46    26 
+	00018: PUSHW[1]            260 
+	00021: NPUSHB       (9):    72    43     2     0    39    29    10    10    64 
+	00032: SVTCA[x-axis] 
+	00033: CALL       
+	00034: SHC[rp1,zp0] 
+	00035: CALL       
+	00036: DELTAP1    
+	00037: CALL       
+	00038: SHC[rp1,zp0] 
+
+	Glyph 1237: off = 0x00039084, len = 80
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1084
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	214
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1135
+		X BOffset:	80
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     3    80    47    96    47   112    47   192    47     4 
+	                             0    47     1    47    29 
+	00017: PUSHW[1]            -72 
+	00020: NPUSHB      (12):    72    43     2     1    34     9     0   104    39     2 
+	                             1    37 
+	00034: PUSHW[3]            652    41   300 
+	00041: SCANCTRL   
+	00042: SVTCA[y-axis] 
+	00043: CALL       
+	00044: SVTCA[x-axis] 
+	00045: CALL       
+	00046: CALL       
+	00047: DELTAP1    
+	00048: DELTAP2    
+	00049: SHC[rp1,zp0] 
+
+	Glyph 1238: off = 0x000390D4, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-33
+	  xMax:			1024
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	1147
+		X BOffset:	-80
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1140
+		X BOffset:	-90
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     3     0    65    60    26    26    64     2     0    39 
+	                            29    10    10    64 
+	00016: SVTCA[x-axis] 
+	00017: CALL       
+	00018: SHC[rp1,zp0] 
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+
+	Glyph 1239: off = 0x00039108, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1084
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	214
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1141
+		X BOffset:	10
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (20):     3    15    68     1     0    68    64    24    24    64 
+	                             2     1    34     9     0   104    39     2     1    37 
+	00022: PUSHW[3]            652    41   300 
+	00029: SCANCTRL   
+	00030: SVTCA[y-axis] 
+	00031: CALL       
+	00032: SVTCA[x-axis] 
+	00033: CALL       
+	00034: CALL       
+	00035: DELTAP2    
+	00036: SHC[rp1,zp0] 
+
+	Glyph 1240: off = 0x0003914C, len = 52
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-33
+	  xMax:			1024
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	1147
+		X BOffset:	-80
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1144
+		X BOffset:	-80
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (14):     3    15    60    44    39    29    64     2     0    39 
+	                            29    10    10    64 
+	00016: SVTCA[x-axis] 
+	00017: CALL       
+	00018: SHC[rp1,zp0] 
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+
+	Glyph 1241: off = 0x00039180, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1084
+	  yMax:			1603
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	214
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0106
+		Glyf Index:	1145
+		X BOffset:	20
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     3     0    61    45    40    28    64     2     1    34 
+	                             9     0   104    39     2     1    37 
+	00019: PUSHW[3]            652    41   300 
+	00026: SCANCTRL   
+	00027: SVTCA[y-axis] 
+	00028: CALL       
+	00029: SVTCA[x-axis] 
+	00030: CALL       
+	00031: CALL       
+	00032: SHC[rp1,zp0] 
+
+	Glyph 1242: off = 0x000391C0, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-324
+	  xMax:			1024
+	  yMax:			1384
+
+	     0: Flags:		0x0226
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	1147
+		X BOffset:	-80
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-490
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     3     0    48    42     4     4    64     2     0    39 
+	                            29    10    10    64     2     1    37 
+	00019: PUSHW[2]            651    41 
+	00024: SVTCA[y-axis] 
+	00025: CALL       
+	00026: SVTCA[x-axis] 
+	00027: CALL       
+	00028: SHC[rp1,zp0] 
+	00029: CALL       
+	00030: SHC[rp1,zp0] 
+
+	Glyph 1243: off = 0x00039200, len = 66
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-324
+	  xMax:			1084
+	  yMax:			1310
+
+	     0: Flags:		0x0226
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0026
+		Glyf Index:	214
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	     2: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     3     0    49    43     3     3    64     2     1    34 
+	                             9     0   104    39     2     1    37 
+	00019: PUSHW[3]            652    41   300 
+	00026: SCANCTRL   
+	00027: SVTCA[y-axis] 
+	00028: CALL       
+	00029: SVTCA[x-axis] 
+	00030: CALL       
+	00031: CALL       
+	00032: SHC[rp1,zp0] 
+
+	Glyph 1244: off = 0x00039242, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			104
+	  yMin:			-33
+	  xMax:			1229
+	  yMax:			1596
+
+	     0: Flags:		0x0226
+		Glyf Index:	1129
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	44
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              2    50    29 
+	00004: PUSHW[1]           -129 
+	00007: PUSHB[5]             72    43     2     1    47 
+	00013: PUSHW[2]            651    41 
+	00018: SVTCA[y-axis] 
+	00019: CALL       
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: SHC[rp1,zp0] 
+
+	Glyph 1245: off = 0x00039274, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1169
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	1130
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	141
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    44    53    32    32    64     2     1    40 
+	00012: PUSHW[2]            652    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1246: off = 0x000392A2, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			104
+	  yMin:			-33
+	  xMax:			1229
+	  yMax:			1596
+
+	     0: Flags:		0x0226
+		Glyf Index:	1129
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	0
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     2    32    56    48    56     2     0    56    49    29 
+	                            29    64     2     1    51 
+	00017: PUSHW[2]            651    41 
+	00022: SVTCA[y-axis] 
+	00023: CALL       
+	00024: SVTCA[x-axis] 
+	00025: CALL       
+	00026: DELTAP1    
+	00027: SHC[rp1,zp0] 
+
+	Glyph 1247: off = 0x000392D8, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1169
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	1130
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	67
+		X BOffset:	-1
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     2   240    43     1    43    32   170    72    43     2 
+	                             1    44 
+	00014: PUSHW[2]            652    41 
+	00019: SVTCA[y-axis] 
+	00020: CALL       
+	00021: SVTCA[x-axis] 
+	00022: CALL       
+	00023: DELTAP1    
+	00024: SHC[rp1,zp0] 
+
+	Glyph 1248: off = 0x0003930A, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			104
+	  yMin:			-33
+	  xMax:			1229
+	  yMax:			1563
+
+	     0: Flags:		0x0226
+		Glyf Index:	1129
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	1139
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2     0    69    64    29    29    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1249: off = 0x0003932E, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1169
+	  yMax:			1278
+
+	     0: Flags:		0x0226
+		Glyf Index:	1130
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	1156
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2     0    63    58    32    32    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1250: off = 0x00039352, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			104
+	  yMin:			-33
+	  xMax:			1229
+	  yMax:			1475
+
+	     0: Flags:		0x0226
+		Glyf Index:	1129
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	0
+		Y WOffset:	268
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    64    47    29    29    64     2     1    53 
+	00012: PUSHW[2]            651    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1251: off = 0x00039382, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1169
+	  yMax:			1207
+
+	     0: Flags:		0x0226
+		Glyf Index:	1130
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	215
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    58    41    32    32    64     2     1    47 
+	00012: PUSHW[2]            652    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1252: off = 0x000393B0, len = 44
+	  numberOfContours:	-1  (Composite)
+	  xMin:			104
+	  yMin:			-324
+	  xMax:			1229
+	  yMax:			1197
+
+	     0: Flags:		0x0226
+		Glyf Index:	1129
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     2    96    50   112    50     2     0    50    44    21 
+	                            21    64 
+	00014: SVTCA[x-axis] 
+	00015: CALL       
+	00016: DELTAP2    
+	00017: SHC[rp1,zp0] 
+
+	Glyph 1253: off = 0x000393DC, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-324
+	  xMax:			1169
+	  yMax:			896
+
+	     0: Flags:		0x0226
+		Glyf Index:	1130
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              2     0    44    38    26    26    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1254: off = 0x00039402, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-324
+	  xMax:			1148
+	  yMax:			1170
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    55    49     4     4    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1255: off = 0x00039428, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-324
+	  xMax:			1113
+	  yMax:			866
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    46    40    17     0    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1256: off = 0x0003944E, len = 42
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1148
+	  yMax:			1563
+
+	     0: Flags:		0x0226
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	1139
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1     0    74    16    74     2     0    74    69    25 
+	                            34    64 
+	00014: SVTCA[x-axis] 
+	00015: CALL       
+	00016: DELTAP1    
+	00017: SHC[rp1,zp0] 
+
+	Glyph 1257: off = 0x00039478, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1113
+	  yMax:			1278
+
+	     0: Flags:		0x0226
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	1156
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     1    16    65     1     0    65    16    65    96    65 
+	                           112    65   128    65   176    65   224    65     7 
+	00021: PUSHW[1]            -20 
+	00024: PUSHB[5]             65    60    16    23    64 
+	00030: SVTCA[x-axis] 
+	00031: CALL       
+	00032: DELTAP1    
+	00033: DELTAP2    
+	00034: SHC[rp1,zp0] 
+
+	Glyph 1258: off = 0x000394B4, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1229
+	  yMax:			1596
+
+	     0: Flags:		0x0226
+		Glyf Index:	1131
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	141
+		X WOffset:	22
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1    25    57    66    24    24    64     1     1    53 
+	00012: PUSHW[2]            651    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1259: off = 0x000394E4, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1176
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	1132
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	141
+		X BOffset:	1
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    55    64    33    40    64     1     1    52 
+	00012: PUSHW[2]            652    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1260: off = 0x00039512, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1229
+	  yMax:			1596
+
+	     0: Flags:		0x0226
+		Glyf Index:	1131
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	67
+		X WOffset:	-29
+		Y WOffset:	267
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     1   128    63     1    32    63   128    63     2    32 
+	                            63    96    63   112    63     3    63    24 
+	00020: PUSHW[1]           -180 
+	00023: PUSHB[5]             72    43     1     1    58 
+	00029: PUSHW[2]            651    41 
+	00034: SVTCA[y-axis] 
+	00035: CALL       
+	00036: SVTCA[x-axis] 
+	00037: CALL       
+	00038: DELTAP1    
+	00039: DELTAP2    
+	00040: DELTAP2    
+	00041: SHC[rp1,zp0] 
+
+	Glyph 1261: off = 0x00039556, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1176
+	  yMax:			1329
+
+	     0: Flags:		0x0226
+		Glyf Index:	1132
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	67
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     1    53    37   160    72    43     1     1    56 
+	00011: PUSHW[2]            652    41 
+	00016: SVTCA[y-axis] 
+	00017: CALL       
+	00018: SVTCA[x-axis] 
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+
+	Glyph 1262: off = 0x00039584, len = 42
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1229
+	  yMax:			1563
+
+	     0: Flags:		0x0226
+		Glyf Index:	1131
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	1139
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     1     0    76    16    76     2     0    76    71    20 
+	                            29    64 
+	00014: SVTCA[x-axis] 
+	00015: CALL       
+	00016: DELTAP1    
+	00017: SHC[rp1,zp0] 
+
+	Glyph 1263: off = 0x000395AE, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1176
+	  yMax:			1278
+
+	     0: Flags:		0x0226
+		Glyf Index:	1132
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	1156
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     1    16    74     1    96    74   112    74   128    74 
+	                           176    74   224    74     5 
+	00017: PUSHW[1]            -20 
+	00020: PUSHB[5]             74    69    33    40    64 
+	00026: SVTCA[x-axis] 
+	00027: CALL       
+	00028: DELTAP1    
+	00029: DELTAP2    
+	00030: SHC[rp1,zp0] 
+
+	Glyph 1264: off = 0x000395E6, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1229
+	  yMax:			1475
+
+	     0: Flags:		0x0226
+		Glyf Index:	1131
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	0
+		Y WOffset:	268
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    71    54    20    29    64     1     1    60 
+	00012: PUSHW[2]            651    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1265: off = 0x00039616, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1176
+	  yMax:			1207
+
+	     0: Flags:		0x0226
+		Glyf Index:	1132
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	215
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    69    52    33    40    64     1     1    58 
+	00012: PUSHW[2]            652    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1266: off = 0x00039644, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-324
+	  xMax:			1229
+	  yMax:			1330
+
+	     0: Flags:		0x0226
+		Glyf Index:	1131
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    57    51    20    29    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1267: off = 0x0003966A, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-324
+	  xMax:			1176
+	  yMax:			894
+
+	     0: Flags:		0x0226
+		Glyf Index:	1132
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    55    49    33    40    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1268: off = 0x00039690, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			-324
+	  xMax:			1128
+	  yMax:			1170
+
+	     0: Flags:		0x0226
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	1148
+		X WOffset:	-382
+		Y WOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    57    51    16     1    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1269: off = 0x000396B6, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			149
+	  yMin:			-386
+	  xMax:			1176
+	  yMax:			866
+
+	     0: Flags:		0x0226
+		Glyf Index:	92
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	1148
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1   228    57    57    18    18    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1270: off = 0x000396DA, len = 36
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			0
+	  xMax:			1128
+	  yMax:			1563
+
+	     0: Flags:		0x0226
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	1139
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              1     0    76    71    16     1    64 
+	00008: SVTCA[x-axis] 
+	00009: CALL       
+	00010: SHC[rp1,zp0] 
+
+	Glyph 1271: off = 0x000396FE, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			149
+	  yMin:			-386
+	  xMax:			1176
+	  yMax:			1278
+
+	     0: Flags:		0x0226
+		Glyf Index:	92
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	1156
+		X BOffset:	40
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: PUSHW[2]              1   -10 
+	00005: PUSHB[5]             76    71    17    19    64 
+	00011: SVTCA[x-axis] 
+	00012: CALL       
+	00013: SHC[rp1,zp0] 
+
+	Glyph 1272: off = 0x00039724, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			99
+	  yMin:			0
+	  xMax:			1128
+	  yMax:			1475
+
+	     0: Flags:		0x0226
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0107
+		Glyf Index:	215
+		X WOffset:	0
+		Y WOffset:	268
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    71    54    16     1    64     1     1    60 
+	00012: PUSHW[2]            651    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1273: off = 0x00039754, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			149
+	  yMin:			-386
+	  xMax:			1176
+	  yMax:			1207
+
+	     0: Flags:		0x0226
+		Glyf Index:	92
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid              Use My Metrics
+
+
+	     1: Flags:		0x0106
+		Glyf Index:	215
+		X BOffset:	60
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    71    54    17    19    64     1     1    60 
+	00012: PUSHW[2]            652    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1274: off = 0x00039782, len = 60
+	  numberOfContours:	-1  (Composite)
+	  xMin:			17
+	  yMin:			0
+	  xMax:			1215
+	  yMax:			1563
+
+	     0: Flags:		0x0236
+		Glyf Index:	36
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	223
+		X WOffset:	-10
+		Y WOffset:	264
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (18):     2    64    51     1    79    51   207    51     2    31 
+	                            51    47    51     2    51     2     1    47 
+	00020: PUSHW[2]            651    41 
+	00025: SVTCA[y-axis] 
+	00026: CALL       
+	00027: SVTCA[x-axis] 
+	00028: MDAP[rd]   
+	00029: DELTAP1    
+	00030: DELTAP1    
+	00031: DELTAP2    
+	00032: SHC[rp1,zp0] 
+
+	Glyph 1275: off = 0x000397BE, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			144
+	  yMin:			-33
+	  xMax:			1110
+	  yMax:			1299
+
+	     0: Flags:		0x0236
+		Glyf Index:	68
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	223
+		X BOffset:	-24
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (20):     2   112    55   240    55     2    48    55    96    55 
+	                             2     0    55    55    29    29    64     2     1    55 
+	00022: PUSHW[2]            652    41 
+	00027: SVTCA[y-axis] 
+	00028: CALL       
+	00029: SVTCA[x-axis] 
+	00030: CALL       
+	00031: DELTAP1    
+	00032: DELTAP1    
+	00033: SHC[rp1,zp0] 
+
+	Glyph 1276: off = 0x000397F8, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			229
+	  yMin:			0
+	  xMax:			1001
+	  yMax:			1563
+
+	     0: Flags:		0x0236
+		Glyf Index:	44
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	223
+		X WOffset:	0
+		Y WOffset:	264
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    32    32    16     1    64     1     1    32 
+	00012: PUSHW[2]            651    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1277: off = 0x00039828, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			186
+	  yMin:			0
+	  xMax:			1047
+	  yMax:			1299
+
+	     0: Flags:		0x0236
+		Glyf Index:	213
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	223
+		X BOffset:	-24
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[3]              1    25     0 
+	00004: PUSHW[1]            -69 
+	00007: PUSHB[5]            104    43     1     1    25 
+	00013: PUSHW[2]            652    41 
+	00018: SVTCA[y-axis] 
+	00019: CALL       
+	00020: SVTCA[x-axis] 
+	00021: CALL       
+	00022: SHC[rp1,zp0] 
+
+	Glyph 1278: off = 0x00039858, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			0
+	  yMin:			-33
+	  xMax:			1024
+	  yMax:			1563
+
+	     0: Flags:		0x0236
+		Glyf Index:	50
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	223
+		X WOffset:	-103
+		Y WOffset:	264
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    26    26    10    10    64     2     1    26 
+	00012: PUSHW[2]            651    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1279: off = 0x00039888, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1084
+	  yMax:			1299
+
+	     0: Flags:		0x0236
+		Glyf Index:	82
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	223
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     2     0    24    24     9     9    64     2     1    24 
+	00012: PUSHW[2]            652    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1280: off = 0x000398B6, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1148
+	  yMax:			1563
+
+	     0: Flags:		0x0236
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	223
+		X WOffset:	0
+		Y WOffset:	264
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     1     0    49    49     8     1    64     1     1    49 
+	00012: PUSHW[2]            651    41 
+	00017: SVTCA[y-axis] 
+	00018: CALL       
+	00019: SVTCA[x-axis] 
+	00020: CALL       
+	00021: SHC[rp1,zp0] 
+
+	Glyph 1281: off = 0x000398E6, len = 86
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1113
+	  yMax:			1299
+
+	     0: Flags:		0x0236
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	223
+		X BOffset:	-30
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (44):     1    48    40     1    64    40     1    16    40    32 
+	                            40    48    40   128    40     4   176    40   224    40 
+	                           240    40     3    96    40   112    40   128    40     3 
+	                             0    40    16    40     2     0    40    40     7    32 
+	                            64     1     1    40 
+	00046: PUSHW[2]            652    41 
+	00051: SVTCA[y-axis] 
+	00052: CALL       
+	00053: SVTCA[x-axis] 
+	00054: CALL       
+	00055: DELTAP1    
+	00056: DELTAP1    
+	00057: DELTAP1    
+	00058: DELTAP2    
+	00059: DELTAP2    
+	00060: DELTAP3    
+	00061: SHC[rp1,zp0] 
+
+	Glyph 1282: off = 0x0003993C, len = 38
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1148
+	  yMax:			1602
+
+	     0: Flags:		0x0236
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1290
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[7]              3     2     1   208    77     1    77 
+	00008: SVTCA[x-axis] 
+	00009: MDAP[rd]   
+	00010: DELTAP1    
+	00011: SHC[rp1,zp0] 
+	00012: SHC[rp1,zp0] 
+	00013: SHC[rp1,zp0] 
+
+	Glyph 1283: off = 0x00039962, len = 112
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1113
+	  yMax:			1440
+
+	     0: Flags:		0x0236
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0036
+		Glyf Index:	142
+		X BOffset:	-36
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     2: Flags:		0x0117
+		Glyf Index:	216
+		X WOffset:	-33
+		Y WOffset:	279
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (52):     3    64    68    96    68     2   111    68   207    68 
+	                             2   160    68     1    68     2     1    95    46     1 
+	                           111    46   127    46   207    46     3    47    46   160 
+	                            46     2    46     3     0    65     1    15    65     1 
+	                            31    65    63    65    96    65     3    65     1     2 
+	                             2    43 
+	00054: PUSHW[2]            652    41 
+	00059: SVTCA[y-axis] 
+	00060: CALL       
+	00061: SVTCA[y-axis] 
+	00062: MDAP[rd]   
+	00063: DELTAP1    
+	00064: DELTAP2    
+	00065: DELTAP3    
+	00066: SHC[rp1,zp0] 
+	00067: SVTCA[x-axis] 
+	00068: MDAP[rd]   
+	00069: DELTAP1    
+	00070: DELTAP1    
+	00071: DELTAP2    
+	00072: SHC[rp1,zp0] 
+	00073: SHC[rp1,zp0] 
+	00074: MDAP[rd]   
+	00075: DELTAP1    
+	00076: DELTAP1    
+	00077: DELTAP2    
+	00078: SHC[rp1,zp0] 
+
+	Glyph 1284: off = 0x000399D2, len = 34
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1148
+	  yMax:			1603
+
+	     0: Flags:		0x0236
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1291
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              3     2     1    82 
+	00005: SVTCA[x-axis] 
+	00006: MDAP[rd]   
+	00007: SHC[rp1,zp0] 
+	00008: SHC[rp1,zp0] 
+	00009: SHC[rp1,zp0] 
+
+	Glyph 1285: off = 0x000399F4, len = 144
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1113
+	  yMax:			1580
+
+	     0: Flags:		0x0236
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0036
+		Glyf Index:	142
+		X BOffset:	-36
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     2: Flags:		0x0117
+		Glyf Index:	141
+		X WOffset:	81
+		Y WOffset:	251
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (81):     3    16    70     1    15    70     1    47    70   128 
+	                            70     2    70     2     1    95    46     1   111    46 
+	                           127    46   207    46     3    47    46   160    46     2 
+	                            46     3    15    67    32    67   143    67   192    67 
+	                             4   175    67   191    67   192    67     3   143    67 
+	                           175    67   224    67     3    63    67    79    67   127 
+	                            67     3    31    67    47    67    63    67     3    15 
+	                            67    31    67    47    67     3    67     1     2     2 
+	                            43 
+	00083: PUSHW[2]            652    41 
+	00088: SVTCA[y-axis] 
+	00089: CALL       
+	00090: SVTCA[y-axis] 
+	00091: MDAP[rd]   
+	00092: DELTAP1    
+	00093: DELTAP1    
+	00094: DELTAP1    
+	00095: DELTAP1    
+	00096: DELTAP1    
+	00097: DELTAP2    
+	00098: SHC[rp1,zp0] 
+	00099: SVTCA[x-axis] 
+	00100: MDAP[rd]   
+	00101: DELTAP1    
+	00102: DELTAP1    
+	00103: DELTAP2    
+	00104: SHC[rp1,zp0] 
+	00105: SHC[rp1,zp0] 
+	00106: MDAP[rd]   
+	00107: DELTAP1    
+	00108: DELTAP2    
+	00109: DELTAP3    
+	00110: SHC[rp1,zp0] 
+
+	Glyph 1286: off = 0x00039A84, len = 42
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1148
+	  yMax:			1603
+
+	     0: Flags:		0x0236
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0116
+		Glyf Index:	1292
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB       (9):     3     2     1    16    83    79    83     2    83 
+	00011: SVTCA[x-axis] 
+	00012: MDAP[rd]   
+	00013: DELTAP1    
+	00014: SHC[rp1,zp0] 
+	00015: SHC[rp1,zp0] 
+	00016: SHC[rp1,zp0] 
+
+	Glyph 1287: off = 0x00039AAE, len = 138
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1113
+	  yMax:			1559
+
+	     0: Flags:		0x0236
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0036
+		Glyf Index:	142
+		X BOffset:	-36
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     2: Flags:		0x0117
+		Glyf Index:	223
+		X WOffset:	-30
+		Y WOffset:	260
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (75):     3    31    68     1    64    68    96    68   112    68 
+	                             3   207    68     1    47    68    79    68    95    68 
+	                           160    68     4    68     2     1    95    46     1   111 
+	                            46   127    46   207    46     3    47    46   160    46 
+	                             2    46     3    15    64    79    64   143    64     3 
+	                           143    64   175    64     2    47    64    63    64    79 
+	                            64     3    47    64     1    31    64   175    64     2 
+	                            64     1     2     2    43 
+	00077: PUSHW[2]            652    41 
+	00082: SVTCA[y-axis] 
+	00083: CALL       
+	00084: SVTCA[y-axis] 
+	00085: MDAP[rd]   
+	00086: DELTAP1    
+	00087: DELTAP1    
+	00088: DELTAP1    
+	00089: DELTAP1    
+	00090: DELTAP2    
+	00091: SHC[rp1,zp0] 
+	00092: SVTCA[x-axis] 
+	00093: MDAP[rd]   
+	00094: DELTAP1    
+	00095: DELTAP1    
+	00096: DELTAP2    
+	00097: SHC[rp1,zp0] 
+	00098: SHC[rp1,zp0] 
+	00099: SVTCA[x-axis] 
+	00100: MDAP[rd]   
+	00101: DELTAP1    
+	00102: DELTAP1    
+	00103: DELTAP2    
+	00104: DELTAP3    
+	00105: SHC[rp1,zp0] 
+
+	Glyph 1288: off = 0x00039B38, len = 22
+	  numberOfContours:	-1  (Composite)
+	  xMin:			83
+	  yMin:			-33
+	  xMax:			1148
+	  yMax:			1603
+
+	     0: Flags:		0x0236
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0016
+		Glyf Index:	1293
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph 1289: off = 0x00039B4E, len = 154
+	  numberOfContours:	-1  (Composite)
+	  xMin:			91
+	  yMin:			-33
+	  xMax:			1113
+	  yMax:			1580
+
+	     0: Flags:		0x0236
+		Glyf Index:	88
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0036
+		Glyf Index:	142
+		X BOffset:	-36
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	     2: Flags:		0x0117
+		Glyf Index:	67
+		X WOffset:	-146
+		Y WOffset:	251
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (90):     3    80    68     1    64    68   128    68   160    68 
+	                             3    15    68    31    68     2    47    68   128    68 
+	                             2    68     2     1    95    46     1   111    46   127 
+	                            46   207    46     3    47    46   160    46     2    46 
+	                             3    15    71    32    71   143    71   192    71     4 
+	                           175    71   191    71   192    71     3   143    71   175 
+	                            71   224    71     3    63    71    79    71   127    71 
+	                             3    31    71    47    71    63    71     3    15    71 
+	                            31    71    47    71     3    71     1     2     2    43 
+	00092: PUSHW[2]            652    41 
+	00097: SVTCA[y-axis] 
+	00098: CALL       
+	00099: SVTCA[y-axis] 
+	00100: MDAP[rd]   
+	00101: DELTAP1    
+	00102: DELTAP1    
+	00103: DELTAP1    
+	00104: DELTAP1    
+	00105: DELTAP1    
+	00106: DELTAP2    
+	00107: SHC[rp1,zp0] 
+	00108: SVTCA[x-axis] 
+	00109: MDAP[rd]   
+	00110: DELTAP1    
+	00111: DELTAP1    
+	00112: DELTAP2    
+	00113: SHC[rp1,zp0] 
+	00114: SHC[rp1,zp0] 
+	00115: MDAP[rd]   
+	00116: DELTAP1    
+	00117: DELTAP2    
+	00118: DELTAP2    
+	00119: DELTAP3    
+	00120: SHC[rp1,zp0] 
+
+	Glyph 1290: off = 0x00039BE8, len = 382
+	  numberOfContours:	3
+	  xMin:			303
+	  yMin:			1278
+	  xMax:			928
+	  yMax:			1602
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  21
+	  2:  33
+
+	  Length of Instructions:	280
+	00000: PUSHB[6]             11     3    27     3     2     3 
+	00007: PUSHW[1]            957 
+	00010: PUSHB[7]              9    11    25    27    25     2    25 
+	00018: PUSHW[1]            957 
+	00021: PUSHB[5]              9     4    31     1    31 
+	00027: PUSHW[1]            -64 
+	00030: NPUSHB      (80):    25    29    52    31    15    64    41    50    52    15 
+	                           212    19     1    11    19     1    11    19     1    35 
+	                            91    19     1    11    19     1    58   171    19   187 
+	                            19   219    19     3    59    19    75    19   107    19 
+	                           123    19     4    27    19    59    19    91    19   139 
+	                            19   203    19   219    19     6   207    19     1    15 
+	                            19    31    19    47    19    95    19     4    15    19 
+	                            47    19    63    19    79    19     4     9     2    19 
+	00112: PUSHW[1]            958 
+	00115: PUSHB[7]             12   239     6   255     6     2     6 
+	00123: PUSHW[1]            956 
+	00126: NPUSHB      (48):    15     0    31     0     2    15     0    31     0   223 
+	                             0     3    21     0     0    64     0     2    71    48 
+	                             0    64     0    96     0   128     0   160     0   176 
+	                             0     6     0     0     1     0     0     1    19     0 
+	                            17     0    22    16    22     2    35    22 
+	00176: PUSHW[1]            956 
+	00179: NPUSHB      (42):    15    28     1    63    15    28    31    28     2    15 
+	                             0    28    80    28     2    62    16    28    64    28 
+	                            80    28   176    28     4     0    28    16    28   112 
+	                            28   128    28   224    28     5    32    28    48    28 
+	                             2    28 
+	00223: MDAP[rd]   
+	00224: DELTAP1    
+	00225: DELTAP2    
+	00226: DELTAP3    
+	00227: SDB        
+	00228: DELTAP1    
+	00229: SDB        
+	00230: DELTAP1    
+	00231: SDB        
+	00232: DELTAP1    
+	00233: MIRP[nrp0,md,rd,1] 
+	00234: SDB        
+	00235: DELTAP1    
+	00236: ALIGNRP    
+	00237: MDAP[rd]   
+	00238: SDB        
+	00239: DELTAP1    
+	00240: DELTAP2    
+	00241: DELTAP3    
+	00242: SDB        
+	00243: DELTAP1    
+	00244: SDB        
+	00245: DELTAP1    
+	00246: DELTAP3    
+	00247: MIRP[nrp0,md,rd,1] 
+	00248: DELTAP1    
+	00249: MDRP[nrp0,nmd,rd,0] 
+	00250: SVTCA[y-axis] 
+	00251: MIAP[rd+ci] 
+	00252: SDS        
+	00253: SDB        
+	00254: DELTAP1    
+	00255: DELTAP2    
+	00256: DELTAP3    
+	00257: DELTAP1    
+	00258: DELTAP2    
+	00259: DELTAP3    
+	00260: SDB        
+	00261: DELTAP1    
+	00262: DELTAP2    
+	00263: SDB        
+	00264: DELTAP1    
+	00265: DELTAP3    
+	00266: DELTAP1    
+	00267: MDRP[srp0,md,rd,1] 
+	00268: CALL       
+	00269: MDRP[srp0,nmd,rd,2] 
+	00270: CALL       
+	00271: DELTAP3    
+	00272: ALIGNRP    
+	00273: MIRP[nrp0,md,rd,1] 
+	00274: DELTAP1    
+	00275: SRP0       
+	00276: MIRP[nrp0,md,rd,1] 
+	00277: DELTAP1    
+	00278: IUP[y]     
+	00279: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:        XDual         Y-Short         Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                               On
+	 16:  YDual                       X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual                               On
+	 21:  YDual XDual                 X-Short Off
+	 22:                      Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   925,  1351)  ->  Abs (   925,  1351)
+	  1: Rel (     0,   -30)  ->  Abs (   925,  1321)
+	  2: Rel (   -42,   -43)  ->  Abs (   883,  1278)
+	  3: Rel (   -31,     0)  ->  Abs (   852,  1278)
+	  4: Rel (   -30,     0)  ->  Abs (   822,  1278)
+	  5: Rel (   -43,    43)  ->  Abs (   779,  1321)
+	  6: Rel (     0,    30)  ->  Abs (   779,  1351)
+	  7: Rel (     0,    31)  ->  Abs (   779,  1382)
+	  8: Rel (    42,    43)  ->  Abs (   821,  1425)
+	  9: Rel (    31,     0)  ->  Abs (   852,  1425)
+	 10: Rel (    31,     0)  ->  Abs (   883,  1425)
+	 11: Rel (    42,   -43)  ->  Abs (   925,  1382)
+	 12: Rel (     3,   182)  ->  Abs (   928,  1564)
+	 13: Rel (     0,   -37)  ->  Abs (   928,  1527)
+	 14: Rel (   -54,     0)  ->  Abs (   874,  1527)
+	 15: Rel (  -518,     0)  ->  Abs (   356,  1527)
+	 16: Rel (   -53,     0)  ->  Abs (   303,  1527)
+	 17: Rel (     0,    37)  ->  Abs (   303,  1564)
+	 18: Rel (     0,    38)  ->  Abs (   303,  1602)
+	 19: Rel (    53,     0)  ->  Abs (   356,  1602)
+	 20: Rel (   516,     0)  ->  Abs (   872,  1602)
+	 21: Rel (    56,     0)  ->  Abs (   928,  1602)
+	 22: Rel (  -479,  -251)  ->  Abs (   449,  1351)
+	 23: Rel (     0,   -30)  ->  Abs (   449,  1321)
+	 24: Rel (   -42,   -43)  ->  Abs (   407,  1278)
+	 25: Rel (   -31,     0)  ->  Abs (   376,  1278)
+	 26: Rel (   -30,     0)  ->  Abs (   346,  1278)
+	 27: Rel (   -43,    43)  ->  Abs (   303,  1321)
+	 28: Rel (     0,    30)  ->  Abs (   303,  1351)
+	 29: Rel (     0,    31)  ->  Abs (   303,  1382)
+	 30: Rel (    42,    43)  ->  Abs (   345,  1425)
+	 31: Rel (    31,     0)  ->  Abs (   376,  1425)
+	 32: Rel (    31,     0)  ->  Abs (   407,  1425)
+	 33: Rel (    42,   -43)  ->  Abs (   449,  1382)
+
+	Glyph 1291: off = 0x00039D66, len = 504
+	  numberOfContours:	3
+	  xMin:			276
+	  yMin:			1278
+	  xMax:			955
+	  yMax:			1603
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  26
+	  2:  38
+
+	  Length of Instructions:	387
+	00000: PUSHB[6]            116     9   132     9     2     9 
+	00007: PUSHW[1]            957 
+	00010: PUSHB[8]              3     3   116    36   132    36     2    36 
+	00019: PUSHW[1]            957 
+	00022: NPUSHB     (123):    15    30     1    12     2    15    30    31    30    47 
+	                            30     3    30    15    30     1    58   159    30     1 
+	                            15    30    79    30   159    30   175    30   191    30 
+	                             5    15    30    31    30    47    30    79    30   191 
+	                            30     5    30   223    18   239    18   255    18     3 
+	                            48    18     1     0    18    16    18    32    18     3 
+	                             9    18    25    64    30    32    52    25    64    21 
+	                            26    52    25    64     9    14    52    95    25     1 
+	                            15    25     1    12     0    25     1    48    15    25 
+	                           159    25     2    58    15    25     1    15    25    47 
+	                            25    79    25    95    25   175    25   191    25     6 
+	                            15    25    47    25    63    25    79    25   143    25 
+	                             5     9    25 
+	00147: PUSHW[3]            958    12   -64 
+	00154: PUSHB[4]             26    29    52    12 
+	00159: PUSHW[1]            -64 
+	00162: NPUSHB      (46):    48    54    52     0    12     1    63   160    12   176 
+	                            12     2    15    12    31    12     2     9    12    20 
+	                            64    23    26    52    96    20     1   223    20     1 
+	                            31    20   159    20   175    20     3    20    20    27 
+	                            15     6    31     6     2     6 
+	00210: PUSHW[1]            956 
+	00213: NPUSHB      (50):    16     0     1     0     0   160     0   208     0     3 
+	                            19     0    64    48    51    52    15     0     1    67 
+	                            15     0    95     0     2   175     0   207     0     2 
+	                            15     0    31     0    47     0    79     0   255     0 
+	                             5     9     0     0    27    16    27     2    35    27 
+	00265: PUSHW[1]            956 
+	00268: NPUSHB      (39):    15    33     1    63   143    33   159    33     2    16 
+	                            33   128    33   144    33     3     0    33    16    33 
+	                            32    33   160    33     4     0    33    16    33    48 
+	                            33   192    33   208    33   224    33     6    33 
+	00309: MDAP[rd]   
+	00310: DELTAP1    
+	00311: DELTAP2    
+	00312: DELTAP3    
+	00313: DELTAP1    
+	00314: SDB        
+	00315: DELTAP1    
+	00316: MIRP[nrp0,md,rd,1] 
+	00317: SDB        
+	00318: DELTAP1    
+	00319: MDAP[rd]   
+	00320: SDB        
+	00321: DELTAP1    
+	00322: DELTAP2    
+	00323: DELTAP3    
+	00324: SDB        
+	00325: DELTAP1    
+	00326: CALL       
+	00327: SDB        
+	00328: DELTAP1    
+	00329: DELTAP2    
+	00330: MIRP[nrp0,md,rd,1] 
+	00331: DELTAP2    
+	00332: SRP1       
+	00333: IP         
+	00334: MDAP[rd]   
+	00335: DELTAP1    
+	00336: DELTAP2    
+	00337: DELTAP1    
+	00338: CALL       
+	00339: MDRP[nrp0,md,rd,1] 
+	00340: SDB        
+	00341: DELTAP1    
+	00342: DELTAP1    
+	00343: SDB        
+	00344: DELTAP1    
+	00345: CALL       
+	00346: CALL       
+	00347: SVTCA[y-axis] 
+	00348: MIAP[rd+ci] 
+	00349: SDB        
+	00350: DELTAP1    
+	00351: DELTAP2    
+	00352: DELTAP3    
+	00353: SDB        
+	00354: DELTAP1    
+	00355: SDB        
+	00356: DELTAP1    
+	00357: SDB        
+	00358: DELTAP1    
+	00359: DELTAP2    
+	00360: CALL       
+	00361: CALL       
+	00362: CALL       
+	00363: MDRP[nrp0,md,rd,1] 
+	00364: SDB        
+	00365: DELTAP1    
+	00366: DELTAP1    
+	00367: DELTAP2    
+	00368: MDAP[rd]   
+	00369: DELTAP1    
+	00370: DELTAP2    
+	00371: DELTAP3    
+	00372: SDB        
+	00373: DELTAP1    
+	00374: SDB        
+	00375: DELTAP1    
+	00376: SDS        
+	00377: SDB        
+	00378: DELTAP1    
+	00379: MIRP[nrp0,md,rd,1] 
+	00380: DELTAP2    
+	00381: ALIGNRP    
+	00382: SRP0       
+	00383: MIRP[nrp0,md,rd,1] 
+	00384: DELTAP2    
+	00385: IUP[y]     
+	00386: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:                      Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:                      Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   955,  1351)  ->  Abs (   955,  1351)
+	  1: Rel (     0,   -31)  ->  Abs (   955,  1320)
+	  2: Rel (   -42,   -42)  ->  Abs (   913,  1278)
+	  3: Rel (   -31,     0)  ->  Abs (   882,  1278)
+	  4: Rel (   -31,     0)  ->  Abs (   851,  1278)
+	  5: Rel (   -42,    42)  ->  Abs (   809,  1320)
+	  6: Rel (     0,    31)  ->  Abs (   809,  1351)
+	  7: Rel (     0,    31)  ->  Abs (   809,  1382)
+	  8: Rel (    42,    43)  ->  Abs (   851,  1425)
+	  9: Rel (    31,     0)  ->  Abs (   882,  1425)
+	 10: Rel (    31,     0)  ->  Abs (   913,  1425)
+	 11: Rel (    42,   -43)  ->  Abs (   955,  1382)
+	 12: Rel (  -140,   185)  ->  Abs (   815,  1567)
+	 13: Rel (     0,    -7)  ->  Abs (   815,  1560)
+	 14: Rel (    -9,   -17)  ->  Abs (   806,  1543)
+	 15: Rel (   -12,   -10)  ->  Abs (   794,  1533)
+	 16: Rel (  -190,  -160)  ->  Abs (   604,  1373)
+	 17: Rel (   -19,   -16)  ->  Abs (   585,  1357)
+	 18: Rel (   -13,     0)  ->  Abs (   572,  1357)
+	 19: Rel (   -36,     0)  ->  Abs (   536,  1357)
+	 20: Rel (     0,    36)  ->  Abs (   536,  1393)
+	 21: Rel (     0,    17)  ->  Abs (   536,  1410)
+	 22: Rel (    20,    17)  ->  Abs (   556,  1427)
+	 23: Rel (   189,   160)  ->  Abs (   745,  1587)
+	 24: Rel (    19,    16)  ->  Abs (   764,  1603)
+	 25: Rel (    14,     0)  ->  Abs (   778,  1603)
+	 26: Rel (    37,     0)  ->  Abs (   815,  1603)
+	 27: Rel (  -393,  -252)  ->  Abs (   422,  1351)
+	 28: Rel (     0,   -31)  ->  Abs (   422,  1320)
+	 29: Rel (   -42,   -42)  ->  Abs (   380,  1278)
+	 30: Rel (   -31,     0)  ->  Abs (   349,  1278)
+	 31: Rel (   -31,     0)  ->  Abs (   318,  1278)
+	 32: Rel (   -42,    42)  ->  Abs (   276,  1320)
+	 33: Rel (     0,    31)  ->  Abs (   276,  1351)
+	 34: Rel (     0,    31)  ->  Abs (   276,  1382)
+	 35: Rel (    42,    43)  ->  Abs (   318,  1425)
+	 36: Rel (    31,     0)  ->  Abs (   349,  1425)
+	 37: Rel (    31,     0)  ->  Abs (   380,  1425)
+	 38: Rel (    42,   -43)  ->  Abs (   422,  1382)
+
+	Glyph 1292: off = 0x00039F5E, len = 416
+	  numberOfContours:	3
+	  xMin:			245
+	  yMin:			1278
+	  xMax:			985
+	  yMax:			1603
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  27
+	  2:  39
+
+	  Length of Instructions:	296
+	00000: NPUSHB      (21):    14     8    35    47    52    24     8    35    47    52 
+	                            16     8    35    47    52   116     9   132     9     2 
+	                             9 
+	00023: PUSHW[1]            957 
+	00026: PUSHB[8]              3     3   116    37   132    37     2    37 
+	00035: PUSHW[1]            957 
+	00038: NPUSHB      (46):    84    31     1    15    31     1    12     2    15    31 
+	                            31    31    47    31     3    30    15    31     1    58 
+	                            15    31    79    31   159    31   175    31   191    31 
+	                             5    15    31    31    31    47    31    79    31   191 
+	                            31     5     9    31    23    15 
+	00086: PUSHW[1]            -64 
+	00089: PUSHB[4]             27    30    52    15 
+	00094: PUSHW[1]            -64 
+	00097: PUSHB[4]             18    21    52    15 
+	00102: PUSHW[1]            -64 
+	00105: PUSHB[4]              9    12    52    15 
+	00110: PUSHW[1]            -64 
+	00113: PUSHB[4]             35    38    52    15 
+	00118: PUSHW[1]            -40 
+	00121: NPUSHB      (53):    49    52    52    15    26    20    64     9    14    52 
+	                            20    64    27    30    52    20    64    17    22    52 
+	                           112    20     1    15    20   143    20     2    25    15 
+	                            20   159    20     2    58    15    20   175    20     2 
+	                            63    20     1    15    20    47    20    63    20    79 
+	                            20     4    20 
+	00176: PUSHW[1]            958 
+	00179: PUSHB[6]            160     0   176     0     2     0 
+	00186: PUSHW[1]            956 
+	00189: PUSHB[8]              6    12   175    34   191    34     2    34 
+	00198: PUSHW[1]            956 
+	00201: PUSHB[4]             64    28    18    12 
+	00206: PUSHW[1]            -64 
+	00209: PUSHB[4]             44    48    52    12 
+	00214: PUSHW[1]            959 
+	00217: PUSHB[6]             18    64    44    48    52    18 
+	00224: PUSHW[1]            959 
+	00227: PUSHB[4]             15    32    23    15 
+	00232: RTHG       
+	00233: MDAP[rd]   
+	00234: MDAP[rd]   
+	00235: SMD        
+	00236: SRP0       
+	00237: MIRP[nrp0,md,rd,1] 
+	00238: CALL       
+	00239: MIRP[nrp0,md,rd,1] 
+	00240: CALL       
+	00241: RTG        
+	00242: SRP0       
+	00243: MDRP[srp0,nmd,rd,0] 
+	00244: SMD        
+	00245: MIRP[nrp0,md,rd,1] 
+	00246: DELTAP2    
+	00247: SRP0       
+	00248: MDRP[srp0,nmd,rd,0] 
+	00249: MIRP[nrp0,md,rd,1] 
+	00250: DELTAP2    
+	00251: SVTCA[y-axis] 
+	00252: MIAP[rd+ci] 
+	00253: DELTAP1    
+	00254: DELTAP1    
+	00255: DELTAP2    
+	00256: SDB        
+	00257: DELTAP1    
+	00258: SDB        
+	00259: DELTAP1    
+	00260: DELTAP2    
+	00261: CALL       
+	00262: CALL       
+	00263: CALL       
+	00264: ALIGNRP    
+	00265: MDRP[nrp0,md,rd,1] 
+	00266: CALL       
+	00267: CALL       
+	00268: CALL       
+	00269: CALL       
+	00270: CALL       
+	00271: IP         
+	00272: MDAP[rd]   
+	00273: SDB        
+	00274: DELTAP1    
+	00275: DELTAP2    
+	00276: SDB        
+	00277: DELTAP1    
+	00278: SDB        
+	00279: DELTAP1    
+	00280: SDS        
+	00281: SDB        
+	00282: DELTAP1    
+	00283: DELTAP3    
+	00284: MIRP[nrp0,md,rd,1] 
+	00285: DELTAP2    
+	00286: ALIGNRP    
+	00287: SRP0       
+	00288: MIRP[nrp0,md,rd,1] 
+	00289: DELTAP2    
+	00290: IUP[y]     
+	00291: IUP[x]     
+	00292: SVTCA[y-axis] 
+	00293: CALL       
+	00294: CALL       
+	00295: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short On
+	 15:                      Y-Short X-Short On
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:                      Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:                      Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:  YDual               Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   985,  1351)  ->  Abs (   985,  1351)
+	  1: Rel (     0,   -31)  ->  Abs (   985,  1320)
+	  2: Rel (   -42,   -42)  ->  Abs (   943,  1278)
+	  3: Rel (   -31,     0)  ->  Abs (   912,  1278)
+	  4: Rel (   -31,     0)  ->  Abs (   881,  1278)
+	  5: Rel (   -42,    42)  ->  Abs (   839,  1320)
+	  6: Rel (     0,    31)  ->  Abs (   839,  1351)
+	  7: Rel (     0,    31)  ->  Abs (   839,  1382)
+	  8: Rel (    42,    43)  ->  Abs (   881,  1425)
+	  9: Rel (    31,     0)  ->  Abs (   912,  1425)
+	 10: Rel (    31,     0)  ->  Abs (   943,  1425)
+	 11: Rel (    42,   -43)  ->  Abs (   985,  1382)
+	 12: Rel (  -135,   185)  ->  Abs (   850,  1567)
+	 13: Rel (     0,   -17)  ->  Abs (   850,  1550)
+	 14: Rel (   -24,   -19)  ->  Abs (   826,  1531)
+	 15: Rel (  -211,  -165)  ->  Abs (   615,  1366)
+	 16: Rel (  -212,   165)  ->  Abs (   403,  1531)
+	 17: Rel (   -24,    19)  ->  Abs (   379,  1550)
+	 18: Rel (     0,    17)  ->  Abs (   379,  1567)
+	 19: Rel (     0,    36)  ->  Abs (   379,  1603)
+	 20: Rel (    37,     0)  ->  Abs (   416,  1603)
+	 21: Rel (    12,     0)  ->  Abs (   428,  1603)
+	 22: Rel (    18,   -14)  ->  Abs (   446,  1589)
+	 23: Rel (   169,  -135)  ->  Abs (   615,  1454)
+	 24: Rel (   168,   134)  ->  Abs (   783,  1588)
+	 25: Rel (    19,    15)  ->  Abs (   802,  1603)
+	 26: Rel (    11,     0)  ->  Abs (   813,  1603)
+	 27: Rel (    37,     0)  ->  Abs (   850,  1603)
+	 28: Rel (  -459,  -252)  ->  Abs (   391,  1351)
+	 29: Rel (     0,   -31)  ->  Abs (   391,  1320)
+	 30: Rel (   -42,   -42)  ->  Abs (   349,  1278)
+	 31: Rel (   -31,     0)  ->  Abs (   318,  1278)
+	 32: Rel (   -31,     0)  ->  Abs (   287,  1278)
+	 33: Rel (   -42,    42)  ->  Abs (   245,  1320)
+	 34: Rel (     0,    31)  ->  Abs (   245,  1351)
+	 35: Rel (     0,    31)  ->  Abs (   245,  1382)
+	 36: Rel (    42,    43)  ->  Abs (   287,  1425)
+	 37: Rel (    31,     0)  ->  Abs (   318,  1425)
+	 38: Rel (    31,     0)  ->  Abs (   349,  1425)
+	 39: Rel (    42,   -43)  ->  Abs (   391,  1382)
+
+	Glyph 1293: off = 0x0003A0FE, len = 506
+	  numberOfContours:	3
+	  xMin:			276
+	  yMin:			1278
+	  xMax:			955
+	  yMax:			1603
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  26
+	  2:  38
+
+	  Length of Instructions:	388
+	00000: PUSHB[6]            116     9   132     9     2     9 
+	00007: PUSHW[1]            957 
+	00010: PUSHB[8]              3     3   116    36   132    36     2    36 
+	00019: PUSHW[1]            957 
+	00022: NPUSHB     (123):    15    30     1    12     2    15    30    31    30    47 
+	                            30     3    30    15    30     1    58   159    30     1 
+	                            15    30    79    30   159    30   175    30   191    30 
+	                             5    15    30    31    30    47    30    79    30   191 
+	                            30     5    30   223    14   239    14   255    14     3 
+	                            48    14     1     0    14    16    14    32    14     3 
+	                             9    14    21    64    30    32    52    21    64    21 
+	                            26    52    21    64     9    14    52    95    21     1 
+	                            15    21     1    12     0    21     1    48    15    21 
+	                           159    21     2    58    15    21     1    15    21    47 
+	                            21    79    21    95    21   175    21   191    21     6 
+	                            15    21    47    21    63    21    79    21   143    21 
+	                             5     9    21 
+	00147: PUSHW[1]            958 
+	00150: NPUSHB      (27):    19    64    26    29    52    19    64    48    54    52 
+	                            15    19     1    63   175    19   191    19     2     0 
+	                            19    16    19     2     9    19    12 
+	00179: PUSHW[1]            -64 
+	00182: NPUSHB      (23):    23    26    52   111    12     1   208    12     1   144 
+	                            12   160    12     2    12    12    27    15     6    31 
+	                             6     2     6 
+	00207: PUSHW[1]            956 
+	00210: NPUSHB      (50):    16     0     1     0     0   160     0   208     0     3 
+	                            19     0    64    48    51    52    15     0     1    67 
+	                            15     0    95     0     2   175     0   207     0     2 
+	                            15     0    31     0    47     0    79     0   255     0 
+	                             5     9     0     0    27    16    27     2    35    27 
+	00262: PUSHW[3]            956    33   -64 
+	00269: NPUSHB      (38):     9    12    52    15    33     1    63    47    33   143 
+	                            33   159    33     3    16    33   128    33   144    33 
+	                             3     0    33    16    33    32    33   160    33     4 
+	                           192    33   208    33   224    33     3    33 
+	00309: MDAP[rd]   
+	00310: DELTAP1    
+	00311: DELTAP2    
+	00312: DELTAP3    
+	00313: DELTAP1    
+	00314: SDB        
+	00315: DELTAP1    
+	00316: CALL       
+	00317: MIRP[nrp0,md,rd,1] 
+	00318: SDB        
+	00319: DELTAP1    
+	00320: MDAP[rd]   
+	00321: SDB        
+	00322: DELTAP1    
+	00323: DELTAP2    
+	00324: DELTAP3    
+	00325: SDB        
+	00326: DELTAP1    
+	00327: CALL       
+	00328: SDB        
+	00329: DELTAP1    
+	00330: DELTAP2    
+	00331: MIRP[nrp0,md,rd,1] 
+	00332: DELTAP2    
+	00333: SRP1       
+	00334: IP         
+	00335: MDAP[rd]   
+	00336: DELTAP1    
+	00337: DELTAP2    
+	00338: DELTAP1    
+	00339: CALL       
+	00340: MDRP[nrp0,md,rd,1] 
+	00341: SDB        
+	00342: DELTAP1    
+	00343: DELTAP1    
+	00344: SDB        
+	00345: DELTAP1    
+	00346: CALL       
+	00347: CALL       
+	00348: SVTCA[y-axis] 
+	00349: MIAP[rd+ci] 
+	00350: SDB        
+	00351: DELTAP1    
+	00352: DELTAP2    
+	00353: DELTAP3    
+	00354: SDB        
+	00355: DELTAP1    
+	00356: SDB        
+	00357: DELTAP1    
+	00358: SDB        
+	00359: DELTAP1    
+	00360: DELTAP2    
+	00361: CALL       
+	00362: CALL       
+	00363: CALL       
+	00364: MDRP[nrp0,md,rd,1] 
+	00365: SDB        
+	00366: DELTAP1    
+	00367: DELTAP1    
+	00368: DELTAP2    
+	00369: MDAP[rd]   
+	00370: DELTAP1    
+	00371: DELTAP2    
+	00372: DELTAP3    
+	00373: SDB        
+	00374: DELTAP1    
+	00375: SDB        
+	00376: DELTAP1    
+	00377: SDS        
+	00378: SDB        
+	00379: DELTAP1    
+	00380: MIRP[nrp0,md,rd,1] 
+	00381: DELTAP2    
+	00382: ALIGNRP    
+	00383: SRP0       
+	00384: MIRP[nrp0,md,rd,1] 
+	00385: DELTAP2    
+	00386: IUP[y]     
+	00387: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:  YDual               Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short On
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual Rep-  2 Y-Short X-Short On
+	 26:        XDual         Y-Short X-Short Off
+	 27:                      Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:                      Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   955,  1351)  ->  Abs (   955,  1351)
+	  1: Rel (     0,   -31)  ->  Abs (   955,  1320)
+	  2: Rel (   -42,   -42)  ->  Abs (   913,  1278)
+	  3: Rel (   -31,     0)  ->  Abs (   882,  1278)
+	  4: Rel (   -31,     0)  ->  Abs (   851,  1278)
+	  5: Rel (   -42,    42)  ->  Abs (   809,  1320)
+	  6: Rel (     0,    31)  ->  Abs (   809,  1351)
+	  7: Rel (     0,    31)  ->  Abs (   809,  1382)
+	  8: Rel (    42,    43)  ->  Abs (   851,  1425)
+	  9: Rel (    31,     0)  ->  Abs (   882,  1425)
+	 10: Rel (    31,     0)  ->  Abs (   913,  1425)
+	 11: Rel (    42,   -43)  ->  Abs (   955,  1382)
+	 12: Rel (  -259,    11)  ->  Abs (   696,  1393)
+	 13: Rel (     0,   -36)  ->  Abs (   696,  1357)
+	 14: Rel (   -38,     0)  ->  Abs (   658,  1357)
+	 15: Rel (   -13,     0)  ->  Abs (   645,  1357)
+	 16: Rel (   -19,    16)  ->  Abs (   626,  1373)
+	 17: Rel (  -189,   160)  ->  Abs (   437,  1533)
+	 18: Rel (   -20,    17)  ->  Abs (   417,  1550)
+	 19: Rel (     0,    17)  ->  Abs (   417,  1567)
+	 20: Rel (     0,    36)  ->  Abs (   417,  1603)
+	 21: Rel (    37,     0)  ->  Abs (   454,  1603)
+	 22: Rel (    13,     0)  ->  Abs (   467,  1603)
+	 23: Rel (    19,   -16)  ->  Abs (   486,  1587)
+	 24: Rel (   189,  -160)  ->  Abs (   675,  1427)
+	 25: Rel (    17,   -20)  ->  Abs (   692,  1407)
+	 26: Rel (     4,    -7)  ->  Abs (   696,  1400)
+	 27: Rel (  -274,   -49)  ->  Abs (   422,  1351)
+	 28: Rel (     0,   -31)  ->  Abs (   422,  1320)
+	 29: Rel (   -42,   -42)  ->  Abs (   380,  1278)
+	 30: Rel (   -31,     0)  ->  Abs (   349,  1278)
+	 31: Rel (   -31,     0)  ->  Abs (   318,  1278)
+	 32: Rel (   -42,    42)  ->  Abs (   276,  1320)
+	 33: Rel (     0,    31)  ->  Abs (   276,  1351)
+	 34: Rel (     0,    31)  ->  Abs (   276,  1382)
+	 35: Rel (    42,    43)  ->  Abs (   318,  1425)
+	 36: Rel (    31,     0)  ->  Abs (   349,  1425)
+	 37: Rel (    31,     0)  ->  Abs (   380,  1425)
+	 38: Rel (    42,   -43)  ->  Abs (   422,  1382)
+
+	Glyph 1294: off = 0x0003A2F8, len = 200
+	  numberOfContours:	1
+	  xMin:			127
+	  yMin:			0
+	  xMax:			1111
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  45
+
+	  Length of Instructions:	77
+	00000: NPUSHB      (40):    10    10    16     5    30    15     0     1     0    47 
+	                            42    24    27    19     7    16    30    38    33    27 
+	                             2     2    39     8    38    38    14    29    29    27 
+	                             6    39    38    44     2    16    27    38    22     8 
+	00042: SVTCA[y-axis] 
+	00043: MIAP[rd+ci] 
+	00044: MIRP[srp0,md,rd,1] 
+	00045: MDRP[nrp0,nmd,nrd,0] 
+	00046: MIAP[rd+ci] 
+	00047: MIRP[srp0,md,rd,1] 
+	00048: MDRP[nrp0,nmd,nrd,0] 
+	00049: SRP2       
+	00050: IP         
+	00051: MDAP[rd]   
+	00052: MDRP[nrp0,nmd,nrd,0] 
+	00053: MIRP[srp0,md,rd,1] 
+	00054: MDRP[nrp0,nmd,nrd,0] 
+	00055: SRP2       
+	00056: IP         
+	00057: MDAP[rd]   
+	00058: SVTCA[x-axis] 
+	00059: MDAP[rd]   
+	00060: MDRP[nrp0,md,rd,0] 
+	00061: MDRP[nrp0,nmd,nrd,0] 
+	00062: MIRP[srp0,md,rd,1] 
+	00063: MDRP[nrp0,nmd,nrd,0] 
+	00064: MDRP[nrp0,md,rd,1] 
+	00065: SRP0       
+	00066: MDRP[srp0,md,rd,1] 
+	00067: MDRP[nrp0,nmd,nrd,0] 
+	00068: SRP0       
+	00069: MDRP[srp0,nmd,rd,2] 
+	00070: DELTAP1    
+	00071: MIRP[nrp0,md,rd,1] 
+	00072: SRP1       
+	00073: IP         
+	00074: MDAP[rd]   
+	00075: IUP[y]     
+	00076: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:        XDual                         On
+	  6:  YDual                               On
+	  7:        XDual                         On
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short On
+	 16:        XDual                         On
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                               On
+	 23:  YDual                       X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short On
+	 28:        XDual                         On
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short On
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short On
+	 39:        XDual                         On
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1111,   752)  ->  Abs (  1111,   752)
+	  1: Rel (     0,   -56)  ->  Abs (  1111,   696)
+	  2: Rel (   -42,     0)  ->  Abs (  1069,   696)
+	  3: Rel (   -43,     0)  ->  Abs (  1026,   696)
+	  4: Rel (     0,    56)  ->  Abs (  1026,   752)
+	  5: Rel (     0,   334)  ->  Abs (  1026,  1086)
+	  6: Rel (  -558,     0)  ->  Abs (   468,  1086)
+	  7: Rel (     0,  -437)  ->  Abs (   468,   649)
+	  8: Rel (   234,     0)  ->  Abs (   702,   649)
+	  9: Rel (   117,     0)  ->  Abs (   819,   649)
+	 10: Rel (     0,   -42)  ->  Abs (   819,   607)
+	 11: Rel (     0,   -33)  ->  Abs (   819,   574)
+	 12: Rel (   -45,    -8)  ->  Abs (   774,   566)
+	 13: Rel (   -12,    -2)  ->  Abs (   762,   564)
+	 14: Rel (   -60,     0)  ->  Abs (   702,   564)
+	 15: Rel (  -234,     0)  ->  Abs (   468,   564)
+	 16: Rel (     0,  -480)  ->  Abs (   468,    84)
+	 17: Rel (   200,     0)  ->  Abs (   668,    84)
+	 18: Rel (    56,     0)  ->  Abs (   724,    84)
+	 19: Rel (     0,   -42)  ->  Abs (   724,    42)
+	 20: Rel (     0,   -42)  ->  Abs (   724,     0)
+	 21: Rel (   -56,     0)  ->  Abs (   668,     0)
+	 22: Rel (  -485,     0)  ->  Abs (   183,     0)
+	 23: Rel (   -56,     0)  ->  Abs (   127,     0)
+	 24: Rel (     0,    42)  ->  Abs (   127,    42)
+	 25: Rel (     0,    42)  ->  Abs (   127,    84)
+	 26: Rel (    56,     0)  ->  Abs (   183,    84)
+	 27: Rel (   200,     0)  ->  Abs (   383,    84)
+	 28: Rel (     0,   480)  ->  Abs (   383,   564)
+	 29: Rel (   -99,     0)  ->  Abs (   284,   564)
+	 30: Rel (   -60,     0)  ->  Abs (   224,   564)
+	 31: Rel (   -12,     2)  ->  Abs (   212,   566)
+	 32: Rel (   -45,     8)  ->  Abs (   167,   574)
+	 33: Rel (     0,    33)  ->  Abs (   167,   607)
+	 34: Rel (     0,    33)  ->  Abs (   167,   640)
+	 35: Rel (    46,     8)  ->  Abs (   213,   648)
+	 36: Rel (     9,     1)  ->  Abs (   222,   649)
+	 37: Rel (    62,     0)  ->  Abs (   284,   649)
+	 38: Rel (    99,     0)  ->  Abs (   383,   649)
+	 39: Rel (     0,   437)  ->  Abs (   383,  1086)
+	 40: Rel (  -200,     0)  ->  Abs (   183,  1086)
+	 41: Rel (   -56,     0)  ->  Abs (   127,  1086)
+	 42: Rel (     0,    42)  ->  Abs (   127,  1128)
+	 43: Rel (     0,    42)  ->  Abs (   127,  1170)
+	 44: Rel (    56,     0)  ->  Abs (   183,  1170)
+	 45: Rel (   928,     0)  ->  Abs (  1111,  1170)
+
+	Glyph 1295: off = 0x0003A3C0, len = 194
+	  numberOfContours:	1
+	  xMin:			152
+	  yMin:			0
+	  xMax:			1088
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  39
+
+	  Length of Instructions:	89
+	00000: NPUSHB      (50):    10    10    14     5    32    15     0     1     0    41 
+	                            36    22    25     0    17    16    17     2    17     7 
+	                            14    32    32    29    25     8    32    33    12    27 
+	                             0    27    16    27     2     2    27     2    27    25 
+	                             6    33    33    38     6    15    25    33    20    10 
+	00052: SVTCA[y-axis] 
+	00053: MIAP[rd+ci] 
+	00054: MIRP[srp0,md,rd,1] 
+	00055: MDRP[nrp0,nmd,nrd,0] 
+	00056: MIAP[rd+ci] 
+	00057: MIRP[srp0,md,rd,1] 
+	00058: MDRP[nrp0,nmd,nrd,0] 
+	00059: SRP2       
+	00060: IP         
+	00061: IP         
+	00062: MDAP[rd]   
+	00063: MDAP[rd]   
+	00064: DELTAP1    
+	00065: SRP0       
+	00066: MDRP[nrp0,nmd,nrd,0] 
+	00067: MIRP[srp0,md,rd,1] 
+	00068: MDRP[nrp0,nmd,nrd,0] 
+	00069: SVTCA[x-axis] 
+	00070: MDAP[rd]   
+	00071: MDRP[nrp0,md,rd,0] 
+	00072: MDRP[nrp0,nmd,nrd,0] 
+	00073: MIRP[srp0,md,rd,1] 
+	00074: MDRP[nrp0,nmd,nrd,0] 
+	00075: MDRP[nrp0,md,rd,1] 
+	00076: DELTAP1    
+	00077: SRP0       
+	00078: MDRP[srp0,md,rd,1] 
+	00079: MDRP[nrp0,nmd,nrd,0] 
+	00080: SRP0       
+	00081: MDRP[srp0,nmd,rd,2] 
+	00082: DELTAP1    
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: SRP1       
+	00085: IP         
+	00086: MDAP[rd]   
+	00087: IUP[y]     
+	00088: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:        XDual                         On
+	  6:  YDual                               On
+	  7:        XDual                         On
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short On
+	 14:        XDual                         On
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                               On
+	 21:  YDual                       X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short On
+	 26:        XDual                         On
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short On
+	 33:        XDual                         On
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (  1088,   447)  ->  Abs (  1088,   447)
+	  1: Rel (     0,   -56)  ->  Abs (  1088,   391)
+	  2: Rel (   -43,     0)  ->  Abs (  1045,   391)
+	  3: Rel (   -42,     0)  ->  Abs (  1003,   391)
+	  4: Rel (     0,    56)  ->  Abs (  1003,   447)
+	  5: Rel (     0,   334)  ->  Abs (  1003,   781)
+	  6: Rel (  -510,     0)  ->  Abs (   493,   781)
+	  7: Rel (     0,  -285)  ->  Abs (   493,   496)
+	  8: Rel (   213,     0)  ->  Abs (   706,   496)
+	  9: Rel (    57,     0)  ->  Abs (   763,   496)
+	 10: Rel (     0,   -43)  ->  Abs (   763,   453)
+	 11: Rel (     0,   -42)  ->  Abs (   763,   411)
+	 12: Rel (   -56,     0)  ->  Abs (   707,   411)
+	 13: Rel (  -214,     0)  ->  Abs (   493,   411)
+	 14: Rel (     0,  -327)  ->  Abs (   493,    84)
+	 15: Rel (   200,     0)  ->  Abs (   693,    84)
+	 16: Rel (    56,     0)  ->  Abs (   749,    84)
+	 17: Rel (     0,   -42)  ->  Abs (   749,    42)
+	 18: Rel (     0,   -42)  ->  Abs (   749,     0)
+	 19: Rel (   -56,     0)  ->  Abs (   693,     0)
+	 20: Rel (  -485,     0)  ->  Abs (   208,     0)
+	 21: Rel (   -56,     0)  ->  Abs (   152,     0)
+	 22: Rel (     0,    42)  ->  Abs (   152,    42)
+	 23: Rel (     0,    42)  ->  Abs (   152,    84)
+	 24: Rel (    56,     0)  ->  Abs (   208,    84)
+	 25: Rel (   200,     0)  ->  Abs (   408,    84)
+	 26: Rel (     0,   327)  ->  Abs (   408,   411)
+	 27: Rel (  -181,     0)  ->  Abs (   227,   411)
+	 28: Rel (   -56,     0)  ->  Abs (   171,   411)
+	 29: Rel (     0,    43)  ->  Abs (   171,   454)
+	 30: Rel (     0,    42)  ->  Abs (   171,   496)
+	 31: Rel (    56,     0)  ->  Abs (   227,   496)
+	 32: Rel (   181,     0)  ->  Abs (   408,   496)
+	 33: Rel (     0,   285)  ->  Abs (   408,   781)
+	 34: Rel (  -200,     0)  ->  Abs (   208,   781)
+	 35: Rel (   -56,     0)  ->  Abs (   152,   781)
+	 36: Rel (     0,    42)  ->  Abs (   152,   823)
+	 37: Rel (     0,    43)  ->  Abs (   152,   866)
+	 38: Rel (    56,     0)  ->  Abs (   208,   866)
+	 39: Rel (   880,     0)  ->  Abs (  1088,   866)
+
+	Glyph 1296: off = 0x0003A482, len = 604
+	  numberOfContours:	1
+	  xMin:			-5
+	  yMin:			-286
+	  xMax:			1220
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  111
+
+	  Length of Instructions:	312
+	00000: NPUSHB     (187):    61    63    63    30    43    45    20    43    43    45 
+	                            45    43    48    15    71    31    71    47    71     3 
+	                            71    68    25    48    30     0    53    16    53    32 
+	                            53     3    53    39    31    28    28    30    41    39 
+	                            20    41    41    39    41    42    25    36    39    25 
+	                             8    11    11    30   105   107    20   105   105   107 
+	                           105   104   107    14    86    83    83    30   103   101 
+	                            20   103   101    83   103   101   103    84     3    79 
+	                            98    30    15    93    31    93    47    93     3    93 
+	                           107   111    30     4   107    14     0    76    16    76 
+	                            32    76     3    76    79     0    17    16    17    32 
+	                            17     3    17    14    30    15    22    31    22    47 
+	                            22     3    22    25    98    38    89    73   105    41 
+	                            39    67    80    86    61    84    63     4    80    58 
+	                            95    51    51    68    42   104    80    38   103    43 
+	                           101    45     4    48     8    31    11    28     4    33 
+	                            13    26    26    25    79    68    38    73    48    38 
+	                            58    73     2    39    38    33    20    14    25    38 
+	                            20   107    38     5    20     8     2 
+	00189: SVTCA[y-axis] 
+	00190: MDAP[rd]   
+	00191: MIAP[rd+ci] 
+	00192: MDRP[srp0,nmd,nrd,0] 
+	00193: MIRP[nrp0,md,rd,1] 
+	00194: SRP0       
+	00195: MIRP[srp0,md,rd,1] 
+	00196: MDRP[nrp0,nmd,nrd,0] 
+	00197: SRP0       
+	00198: MDRP[srp0,nmd,nrd,0] 
+	00199: MIRP[nrp0,md,rd,1] 
+	00200: MIAP[rd+ci] 
+	00201: MDRP[srp0,nmd,nrd,0] 
+	00202: MIRP[nrp0,md,rd,1] 
+	00203: SRP0       
+	00204: MIRP[srp0,md,rd,1] 
+	00205: MDRP[nrp0,nmd,nrd,0] 
+	00206: SRP2       
+	00207: IP         
+	00208: MDAP[rd]   
+	00209: MDRP[nrp0,nmd,nrd,0] 
+	00210: SRP2       
+	00211: SLOOP      
+	00212: IP         
+	00213: SRP2       
+	00214: SLOOP      
+	00215: IP         
+	00216: MIRP[nrp0,md,rd,1] 
+	00217: IP         
+	00218: IP         
+	00219: SRP1       
+	00220: IP         
+	00221: MDAP[rd]   
+	00222: MDRP[nrp0,nmd,rd,0] 
+	00223: SRP1       
+	00224: SRP2       
+	00225: SLOOP      
+	00226: IP         
+	00227: SRP0       
+	00228: MDRP[nrp0,nmd,nrd,0] 
+	00229: SRP1       
+	00230: IP         
+	00231: IP         
+	00232: SRP0       
+	00233: MDRP[srp0,nmd,nrd,0] 
+	00234: MIRP[nrp0,md,rd,1] 
+	00235: SVTCA[x-axis] 
+	00236: MDAP[rd]   
+	00237: MDRP[nrp0,md,rd,1] 
+	00238: DELTAP1    
+	00239: MIRP[srp0,md,rd,1] 
+	00240: MDRP[nrp0,md,rd,1] 
+	00241: DELTAP1    
+	00242: MDRP[srp0,nmd,nrd,0] 
+	00243: MDRP[nrp0,md,rd,1] 
+	00244: DELTAP1    
+	00245: SRP0       
+	00246: MDRP[srp0,md,rd,0] 
+	00247: MDRP[srp0,nmd,rd,0] 
+	00248: MIRP[nrp0,md,rd,1] 
+	00249: SRP0       
+	00250: MDRP[srp0,nmd,rd,0] 
+	00251: DELTAP1    
+	00252: MIRP[nrp0,md,rd,1] 
+	00253: SRP1       
+	00254: SLOOP      
+	00255: IP         
+	00256: SRP0       
+	00257: SVTCA[y-axis] 
+	00258: MDRP[nrp0,nmd,nrd,1] 
+	00259: SDPVTL[1]  
+	00260: SFVTCA[x-axis] 
+	00261: CALL       
+	00262: RDTG       
+	00263: SRP0       
+	00264: MDRP[nrp0,nmd,rd,0] 
+	00265: SVTCA[x-axis] 
+	00266: SRP1       
+	00267: SRP2       
+	00268: IP         
+	00269: IP         
+	00270: SDPVTL[1]  
+	00271: RTG        
+	00272: SRP0       
+	00273: CALL       
+	00274: RDTG       
+	00275: SRP0       
+	00276: MDRP[nrp0,nmd,rd,0] 
+	00277: SVTCA[x-axis] 
+	00278: RTG        
+	00279: SRP0       
+	00280: MDRP[srp0,md,rd,0] 
+	00281: MDRP[nrp0,md,rd,1] 
+	00282: SRP2       
+	00283: IP         
+	00284: IP         
+	00285: SDPVTL[1]  
+	00286: SRP0       
+	00287: CALL       
+	00288: RDTG       
+	00289: SRP0       
+	00290: MDRP[nrp0,nmd,rd,0] 
+	00291: SVTCA[x-axis] 
+	00292: RTG        
+	00293: SRP0       
+	00294: MDRP[srp0,nmd,rd,0] 
+	00295: DELTAP1    
+	00296: MIRP[nrp0,md,rd,1] 
+	00297: SRP0       
+	00298: MDRP[srp0,nmd,nrd,0] 
+	00299: MDRP[nrp0,md,rd,1] 
+	00300: DELTAP1    
+	00301: SRP2       
+	00302: IP         
+	00303: IP         
+	00304: SDPVTL[1]  
+	00305: SRP0       
+	00306: CALL       
+	00307: RDTG       
+	00308: SRP0       
+	00309: MDRP[nrp0,nmd,rd,0] 
+	00310: IUP[y]     
+	00311: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:                              X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual                       X-Short On
+	 14:        XDual                         On
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short On
+	 26:        XDual                         On
+	 27:  YDual                       X-Short On
+	 28:                      Y-Short X-Short Off
+	 29:                      Y-Short X-Short On
+	 30:                              X-Short On
+	 31:                      Y-Short X-Short Off
+	 32:                      Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short On
+	 40:        XDual                 X-Short On
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short X-Short On
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual               Y-Short X-Short On
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual               Y-Short X-Short On
+	 47:  YDual               Y-Short X-Short Off
+	 48:  YDual                       X-Short On
+	 49:        XDual         Y-Short         On
+	 50:        XDual         Y-Short         Off
+	 51:  YDual                       X-Short On
+	 52:  YDual                       X-Short Off
+	 53:  YDual XDual         Y-Short         On
+	 54:  YDual XDual         Y-Short         On
+	 55:  YDual XDual         Y-Short         Off
+	 56:  YDual XDual         Y-Short X-Short On
+	 57:  YDual XDual         Y-Short X-Short Off
+	 58:  YDual XDual                 X-Short On
+	 59:  YDual XDual                 X-Short Off
+	 60:        XDual         Y-Short X-Short On
+	 61:        XDual         Y-Short X-Short Off
+	 62:        XDual         Y-Short X-Short On
+	 63:        XDual         Y-Short X-Short Off
+	 64:        XDual         Y-Short X-Short On
+	 65:        XDual         Y-Short X-Short Off
+	 66:  YDual XDual                 X-Short On
+	 67:  YDual XDual                 X-Short On
+	 68:        XDual                         On
+	 69:  YDual                       X-Short On
+	 70:  YDual                       X-Short Off
+	 71:  YDual XDual         Y-Short         On
+	 72:  YDual XDual         Y-Short         Off
+	 73:  YDual XDual                 X-Short On
+	 74:  YDual XDual                 X-Short On
+	 75:  YDual XDual                 X-Short Off
+	 76:        XDual         Y-Short         On
+	 77:        XDual         Y-Short         Off
+	 78:  YDual                       X-Short On
+	 79:  YDual                       X-Short On
+	 80:        XDual                         On
+	 81:  YDual XDual                 X-Short On
+	 82:  YDual XDual                 X-Short Off
+	 83:  YDual XDual         Y-Short X-Short On
+	 84:  YDual XDual         Y-Short X-Short Off
+	 85:  YDual XDual         Y-Short X-Short On
+	 86:  YDual XDual         Y-Short X-Short Off
+	 87:  YDual XDual         Y-Short X-Short On
+	 88:  YDual XDual         Y-Short X-Short Off
+	 89:  YDual XDual                 X-Short On
+	 90:  YDual XDual                 X-Short Off
+	 91:        XDual         Y-Short X-Short Off
+	 92:        XDual         Y-Short         On
+	 93:        XDual         Y-Short         On
+	 94:        XDual         Y-Short         Off
+	 95:  YDual                       X-Short On
+	 96:  YDual                       X-Short Off
+	 97:  YDual XDual         Y-Short         On
+	 98:  YDual XDual         Y-Short         On
+	 99:                      Y-Short X-Short Off
+	100:                      Y-Short X-Short On
+	101:                      Y-Short X-Short Off
+	102:                      Y-Short X-Short On
+	103:                      Y-Short X-Short Off
+	104:                      Y-Short X-Short On
+	105:        XDual         Y-Short X-Short Off
+	106:        XDual         Y-Short X-Short On
+	107:        XDual                 X-Short On
+	108:  YDual XDual                 X-Short On
+	109:  YDual XDual                 X-Short Off
+	110:        XDual         Y-Short X-Short Off
+	111:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1220,  -219)  ->  Abs (  1220,  -219)
+	  1: Rel (     0,   -67)  ->  Abs (  1220,  -286)
+	  2: Rel (   -41,     0)  ->  Abs (  1179,  -286)
+	  3: Rel (   -44,     0)  ->  Abs (  1135,  -286)
+	  4: Rel (     0,    64)  ->  Abs (  1135,  -222)
+	  5: Rel (     0,   222)  ->  Abs (  1135,     0)
+	  6: Rel (   -36,     0)  ->  Abs (  1099,     0)
+	  7: Rel (   -41,     0)  ->  Abs (  1058,     0)
+	  8: Rel (   -22,    15)  ->  Abs (  1036,    15)
+	  9: Rel (   -15,    37)  ->  Abs (  1021,    52)
+	 10: Rel (  -118,   290)  ->  Abs (   903,   342)
+	 11: Rel (   -99,   240)  ->  Abs (   804,   582)
+	 12: Rel (  -118,     3)  ->  Abs (   686,   585)
+	 13: Rel (   -30,     0)  ->  Abs (   656,   585)
+	 14: Rel (     0,  -501)  ->  Abs (   656,    84)
+	 15: Rel (    65,     0)  ->  Abs (   721,    84)
+	 16: Rel (    71,     0)  ->  Abs (   792,    84)
+	 17: Rel (     0,   -42)  ->  Abs (   792,    42)
+	 18: Rel (     0,   -42)  ->  Abs (   792,     0)
+	 19: Rel (   -71,     0)  ->  Abs (   721,     0)
+	 20: Rel (  -213,     0)  ->  Abs (   508,     0)
+	 21: Rel (   -70,     0)  ->  Abs (   438,     0)
+	 22: Rel (     0,    42)  ->  Abs (   438,    42)
+	 23: Rel (     0,    42)  ->  Abs (   438,    84)
+	 24: Rel (    70,     0)  ->  Abs (   508,    84)
+	 25: Rel (    64,     0)  ->  Abs (   572,    84)
+	 26: Rel (     0,   501)  ->  Abs (   572,   585)
+	 27: Rel (   -30,     0)  ->  Abs (   542,   585)
+	 28: Rel (  -116,    -3)  ->  Abs (   426,   582)
+	 29: Rel (   -99,  -240)  ->  Abs (   327,   342)
+	 30: Rel (  -118,  -290)  ->  Abs (   209,    52)
+	 31: Rel (   -15,   -37)  ->  Abs (   194,    15)
+	 32: Rel (   -23,   -15)  ->  Abs (   171,     0)
+	 33: Rel (   -40,     0)  ->  Abs (   131,     0)
+	 34: Rel (   -66,     0)  ->  Abs (    65,     0)
+	 35: Rel (   -70,     0)  ->  Abs (    -5,     0)
+	 36: Rel (     0,    42)  ->  Abs (    -5,    42)
+	 37: Rel (     0,    42)  ->  Abs (    -5,    84)
+	 38: Rel (    70,     0)  ->  Abs (    65,    84)
+	 39: Rel (    63,     0)  ->  Abs (   128,    84)
+	 40: Rel (   120,   294)  ->  Abs (   248,   378)
+	 41: Rel (    82,   201)  ->  Abs (   330,   579)
+	 42: Rel (   103,    57)  ->  Abs (   433,   636)
+	 43: Rel (   -45,    47)  ->  Abs (   388,   683)
+	 44: Rel (   -94,   199)  ->  Abs (   294,   882)
+	 45: Rel (   -53,   113)  ->  Abs (   241,   995)
+	 46: Rel (    -9,    13)  ->  Abs (   232,  1008)
+	 47: Rel (   -49,    81)  ->  Abs (   183,  1089)
+	 48: Rel (   -55,     0)  ->  Abs (   128,  1089)
+	 49: Rel (     0,  -110)  ->  Abs (   128,   979)
+	 50: Rel (     0,   -58)  ->  Abs (   128,   921)
+	 51: Rel (   -44,     0)  ->  Abs (    84,   921)
+	 52: Rel (   -41,     0)  ->  Abs (    43,   921)
+	 53: Rel (     0,    64)  ->  Abs (    43,   985)
+	 54: Rel (     0,   115)  ->  Abs (    43,  1100)
+	 55: Rel (     0,    40)  ->  Abs (    43,  1140)
+	 56: Rel (     8,    13)  ->  Abs (    51,  1153)
+	 57: Rel (    11,    17)  ->  Abs (    62,  1170)
+	 58: Rel (    37,     0)  ->  Abs (    99,  1170)
+	 59: Rel (   113,     0)  ->  Abs (   212,  1170)
+	 60: Rel (    61,   -73)  ->  Abs (   273,  1097)
+	 61: Rel (    27,   -32)  ->  Abs (   300,  1065)
+	 62: Rel (    69,  -146)  ->  Abs (   369,   919)
+	 63: Rel (    60,  -127)  ->  Abs (   429,   792)
+	 64: Rel (    10,   -17)  ->  Abs (   439,   775)
+	 65: Rel (    60,  -104)  ->  Abs (   499,   671)
+	 66: Rel (    51,     0)  ->  Abs (   550,   671)
+	 67: Rel (    22,     0)  ->  Abs (   572,   671)
+	 68: Rel (     0,   415)  ->  Abs (   572,  1086)
+	 69: Rel (   -64,     0)  ->  Abs (   508,  1086)
+	 70: Rel (   -70,     0)  ->  Abs (   438,  1086)
+	 71: Rel (     0,    42)  ->  Abs (   438,  1128)
+	 72: Rel (     0,    42)  ->  Abs (   438,  1170)
+	 73: Rel (    70,     0)  ->  Abs (   508,  1170)
+	 74: Rel (   213,     0)  ->  Abs (   721,  1170)
+	 75: Rel (    71,     0)  ->  Abs (   792,  1170)
+	 76: Rel (     0,   -42)  ->  Abs (   792,  1128)
+	 77: Rel (     0,   -42)  ->  Abs (   792,  1086)
+	 78: Rel (   -71,     0)  ->  Abs (   721,  1086)
+	 79: Rel (   -65,     0)  ->  Abs (   656,  1086)
+	 80: Rel (     0,  -415)  ->  Abs (   656,   671)
+	 81: Rel (    22,     0)  ->  Abs (   678,   671)
+	 82: Rel (    59,     0)  ->  Abs (   737,   671)
+	 83: Rel (    56,   100)  ->  Abs (   793,   771)
+	 84: Rel (    34,    74)  ->  Abs (   827,   845)
+	 85: Rel (    34,    74)  ->  Abs (   861,   919)
+	 86: Rel (    68,   147)  ->  Abs (   929,  1066)
+	 87: Rel (    24,    31)  ->  Abs (   953,  1097)
+	 88: Rel (    60,    73)  ->  Abs (  1013,  1170)
+	 89: Rel (   112,     0)  ->  Abs (  1125,  1170)
+	 90: Rel (    41,     0)  ->  Abs (  1166,  1170)
+	 91: Rel (    20,   -27)  ->  Abs (  1186,  1143)
+	 92: Rel (     0,   -43)  ->  Abs (  1186,  1100)
+	 93: Rel (     0,  -115)  ->  Abs (  1186,   985)
+	 94: Rel (     0,   -65)  ->  Abs (  1186,   920)
+	 95: Rel (   -39,     0)  ->  Abs (  1147,   920)
+	 96: Rel (   -45,     0)  ->  Abs (  1102,   920)
+	 97: Rel (     0,    59)  ->  Abs (  1102,   979)
+	 98: Rel (     0,   110)  ->  Abs (  1102,  1089)
+	 99: Rel (   -53,    -1)  ->  Abs (  1049,  1088)
+	100: Rel (   -50,   -79)  ->  Abs (   999,  1009)
+	101: Rel (   -17,   -27)  ->  Abs (   982,   982)
+	102: Rel (   -46,  -100)  ->  Abs (   936,   882)
+	103: Rel (   -92,  -201)  ->  Abs (   844,   681)
+	104: Rel (   -48,   -45)  ->  Abs (   796,   636)
+	105: Rel (   105,   -60)  ->  Abs (   901,   576)
+	106: Rel (    81,  -198)  ->  Abs (   982,   378)
+	107: Rel (   120,  -294)  ->  Abs (  1102,    84)
+	108: Rel (    47,     0)  ->  Abs (  1149,    84)
+	109: Rel (    45,     0)  ->  Abs (  1194,    84)
+	110: Rel (    26,   -25)  ->  Abs (  1220,    59)
+	111: Rel (     0,   -45)  ->  Abs (  1220,    14)
+
+	Glyph 1297: off = 0x0003A6DE, len = 580
+	  numberOfContours:	1
+	  xMin:			20
+	  yMin:			-211
+	  xMax:			1223
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  110
+
+	  Length of Instructions:	296
+	00000: NPUSHB     (175):    64    62    62    32    46    44    20    46    46    44 
+	                            52    46     1    46    44    49    67    25    49    32 
+	                             0    54    16    54    32    54     3    54    40    28 
+	                            31    31    32    40    42    20    40    42    42    43 
+	                            25    37    40    25    70    15    22    31    22    47 
+	                            22     3    22    25     8    11    11    32   104   106 
+	                            20   104   104   106   103   104    14   106    85    83 
+	                            83    32   102   100    20   102   102   100    59   100 
+	                             1   102   100    78    97    32    15    92    31    92 
+	                            47    92     3    92   106     5    32     0   106    78 
+	                            14    75     0    17    16    17    32    17     3    17 
+	                            14    32    25    52    94    94    79    46   100    44 
+	                           102     4    26    97    38    85    62    83    64     4 
+	                            79    88    72   103    43    26    42   104    40    66 
+	                            79    38    28    11    31     8     4    34    13    26 
+	                            26    14    78    67    38    72    49    38    59    72 
+	                             6    40    38    34    20    25    14    38    20   106 
+	                            38     5    20    10     2 
+	00177: SVTCA[y-axis] 
+	00178: MDAP[rd]   
+	00179: MIAP[rd+ci] 
+	00180: MDRP[srp0,nmd,nrd,0] 
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: SRP0       
+	00183: MIRP[srp0,md,rd,1] 
+	00184: MDRP[nrp0,nmd,nrd,0] 
+	00185: SRP0       
+	00186: MDRP[srp0,nmd,nrd,0] 
+	00187: MIRP[nrp0,md,rd,1] 
+	00188: MIAP[rd+ci] 
+	00189: MDRP[srp0,nmd,nrd,0] 
+	00190: MIRP[nrp0,md,rd,1] 
+	00191: SRP0       
+	00192: MIRP[srp0,md,rd,1] 
+	00193: MDRP[nrp0,nmd,nrd,0] 
+	00194: SRP2       
+	00195: IP         
+	00196: MDAP[rd]   
+	00197: MDRP[nrp0,nmd,nrd,0] 
+	00198: SRP2       
+	00199: SLOOP      
+	00200: IP         
+	00201: MIRP[srp0,md,rd,1] 
+	00202: MDRP[nrp0,nmd,nrd,0] 
+	00203: SRP1       
+	00204: IP         
+	00205: IP         
+	00206: SRP1       
+	00207: IP         
+	00208: IP         
+	00209: SRP0       
+	00210: MDRP[srp0,nmd,nrd,0] 
+	00211: SRP1       
+	00212: SLOOP      
+	00213: IP         
+	00214: MIRP[nrp0,md,rd,1] 
+	00215: SRP1       
+	00216: SLOOP      
+	00217: IP         
+	00218: SRP1       
+	00219: IP         
+	00220: MDAP[rd]   
+	00221: MDRP[nrp0,nmd,nrd,0] 
+	00222: SVTCA[x-axis] 
+	00223: MDAP[rd]   
+	00224: MIRP[srp0,md,rd,1] 
+	00225: MDRP[srp0,md,rd,1] 
+	00226: DELTAP1    
+	00227: MDRP[nrp0,nmd,nrd,0] 
+	00228: SRP0       
+	00229: MDRP[nrp0,nmd,nrd,0] 
+	00230: MDRP[srp0,md,rd,0] 
+	00231: MDRP[srp0,nmd,rd,0] 
+	00232: MIRP[nrp0,md,rd,1] 
+	00233: SRP0       
+	00234: MDRP[srp0,nmd,rd,0] 
+	00235: DELTAP1    
+	00236: MIRP[nrp0,md,rd,1] 
+	00237: SRP1       
+	00238: IP         
+	00239: IP         
+	00240: DELTAP1    
+	00241: SDPVTL[1]  
+	00242: SRP0       
+	00243: CALL       
+	00244: RDTG       
+	00245: SRP0       
+	00246: MDRP[nrp0,nmd,rd,0] 
+	00247: SVTCA[x-axis] 
+	00248: SRP1       
+	00249: SRP2       
+	00250: IP         
+	00251: IP         
+	00252: SDPVTL[1]  
+	00253: RTG        
+	00254: SRP0       
+	00255: CALL       
+	00256: RDTG       
+	00257: SRP0       
+	00258: MDRP[nrp0,nmd,rd,0] 
+	00259: SVTCA[x-axis] 
+	00260: RTG        
+	00261: SRP0       
+	00262: MDRP[srp0,md,rd,1] 
+	00263: DELTAP1    
+	00264: MDRP[nrp0,nmd,nrd,0] 
+	00265: SRP0       
+	00266: MDRP[srp0,md,rd,0] 
+	00267: MDRP[nrp0,md,rd,1] 
+	00268: SRP2       
+	00269: IP         
+	00270: IP         
+	00271: SDPVTL[1]  
+	00272: CALL       
+	00273: RDTG       
+	00274: SRP0       
+	00275: MDRP[nrp0,nmd,rd,0] 
+	00276: SVTCA[x-axis] 
+	00277: RTG        
+	00278: SRP0       
+	00279: MDRP[srp0,nmd,rd,0] 
+	00280: DELTAP1    
+	00281: MIRP[nrp0,md,rd,1] 
+	00282: SRP0       
+	00283: MDRP[nrp0,nmd,nrd,0] 
+	00284: SRP1       
+	00285: IP         
+	00286: IP         
+	00287: DELTAP1    
+	00288: SDPVTL[1]  
+	00289: SRP0       
+	00290: CALL       
+	00291: RDTG       
+	00292: SRP0       
+	00293: MDRP[nrp0,nmd,rd,0] 
+	00294: IUP[y]     
+	00295: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual                       X-Short On
+	 14:        XDual                         On
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short On
+	 26:        XDual                         On
+	 27:  YDual                       X-Short On
+	 28:                      Y-Short X-Short Off
+	 29:                      Y-Short X-Short On
+	 30:                      Y-Short X-Short On
+	 31:                      Y-Short X-Short Off
+	 32:                      Y-Short X-Short On
+	 33:                      Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual               Y-Short X-Short Off
+	 45:  YDual               Y-Short X-Short On
+	 46:  YDual               Y-Short X-Short Off
+	 47:  YDual               Y-Short X-Short On
+	 48:  YDual               Y-Short X-Short Off
+	 49:  YDual                       X-Short On
+	 50:        XDual         Y-Short         On
+	 51:        XDual         Y-Short         Off
+	 52:  YDual                       X-Short On
+	 53:  YDual                       X-Short Off
+	 54:  YDual XDual         Y-Short         On
+	 55:  YDual XDual         Y-Short         On
+	 56:  YDual XDual         Y-Short         Off
+	 57:  YDual XDual         Y-Short X-Short On
+	 58:  YDual XDual         Y-Short X-Short Off
+	 59:  YDual XDual                 X-Short On
+	 60:  YDual XDual                 X-Short Off
+	 61:        XDual         Y-Short X-Short On
+	 62:        XDual         Y-Short X-Short Off
+	 63:        XDual         Y-Short X-Short On
+	 64:        XDual         Y-Short X-Short Off
+	 65:        XDual         Y-Short X-Short On
+	 66:  YDual XDual                 X-Short On
+	 67:        XDual                         On
+	 68:  YDual                       X-Short On
+	 69:  YDual                       X-Short Off
+	 70:  YDual XDual         Y-Short         On
+	 71:  YDual XDual         Y-Short         Off
+	 72:  YDual XDual                 X-Short On
+	 73:  YDual XDual                 X-Short On
+	 74:  YDual XDual                 X-Short Off
+	 75:        XDual         Y-Short         On
+	 76:        XDual         Y-Short         Off
+	 77:  YDual                       X-Short On
+	 78:  YDual                       X-Short On
+	 79:        XDual                         On
+	 80:  YDual XDual                 X-Short On
+	 81:  YDual XDual                 X-Short Off
+	 82:  YDual XDual         Y-Short X-Short On
+	 83:  YDual XDual         Y-Short X-Short Off
+	 84:  YDual XDual         Y-Short X-Short On
+	 85:  YDual XDual         Y-Short X-Short Off
+	 86:  YDual XDual         Y-Short X-Short On
+	 87:  YDual XDual         Y-Short X-Short Off
+	 88:  YDual XDual                 X-Short On
+	 89:  YDual XDual                 X-Short Off
+	 90:        XDual         Y-Short X-Short Off
+	 91:        XDual         Y-Short         On
+	 92:        XDual         Y-Short         On
+	 93:        XDual         Y-Short         Off
+	 94:  YDual                       X-Short On
+	 95:  YDual                       X-Short Off
+	 96:  YDual XDual         Y-Short         On
+	 97:  YDual XDual         Y-Short         On
+	 98:  YDual                       X-Short Off
+	 99:                      Y-Short X-Short On
+	100:                      Y-Short X-Short Off
+	101:                      Y-Short X-Short On
+	102:                      Y-Short X-Short Off
+	103:                      Y-Short X-Short On
+	104:        XDual         Y-Short X-Short Off
+	105:        XDual         Y-Short X-Short On
+	106:        XDual         Y-Short X-Short On
+	107:  YDual XDual                 X-Short On
+	108:  YDual XDual                 X-Short Off
+	109:        XDual         Y-Short X-Short Off
+	110:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1223,  -143)  ->  Abs (  1223,  -143)
+	  1: Rel (     0,   -68)  ->  Abs (  1223,  -211)
+	  2: Rel (   -42,     0)  ->  Abs (  1181,  -211)
+	  3: Rel (   -43,     0)  ->  Abs (  1138,  -211)
+	  4: Rel (     0,    65)  ->  Abs (  1138,  -146)
+	  5: Rel (     0,   146)  ->  Abs (  1138,     0)
+	  6: Rel (   -54,     0)  ->  Abs (  1084,     0)
+	  7: Rel (   -39,     0)  ->  Abs (  1045,     0)
+	  8: Rel (   -22,    12)  ->  Abs (  1023,    12)
+	  9: Rel (   -19,    34)  ->  Abs (  1004,    46)
+	 10: Rel (  -110,   198)  ->  Abs (   894,   244)
+	 11: Rel (   -99,   175)  ->  Abs (   795,   419)
+	 12: Rel (  -110,     4)  ->  Abs (   685,   423)
+	 13: Rel (   -28,     0)  ->  Abs (   657,   423)
+	 14: Rel (     0,  -339)  ->  Abs (   657,    84)
+	 15: Rel (    58,     0)  ->  Abs (   715,    84)
+	 16: Rel (    71,     0)  ->  Abs (   786,    84)
+	 17: Rel (     0,   -42)  ->  Abs (   786,    42)
+	 18: Rel (     0,   -42)  ->  Abs (   786,     0)
+	 19: Rel (   -71,     0)  ->  Abs (   715,     0)
+	 20: Rel (  -202,     0)  ->  Abs (   513,     0)
+	 21: Rel (   -71,     0)  ->  Abs (   442,     0)
+	 22: Rel (     0,    42)  ->  Abs (   442,    42)
+	 23: Rel (     0,    42)  ->  Abs (   442,    84)
+	 24: Rel (    71,     0)  ->  Abs (   513,    84)
+	 25: Rel (    59,     0)  ->  Abs (   572,    84)
+	 26: Rel (     0,   339)  ->  Abs (   572,   423)
+	 27: Rel (   -29,     0)  ->  Abs (   543,   423)
+	 28: Rel (  -110,    -4)  ->  Abs (   433,   419)
+	 29: Rel (   -99,  -175)  ->  Abs (   334,   244)
+	 30: Rel (  -110,  -198)  ->  Abs (   224,    46)
+	 31: Rel (    -9,   -17)  ->  Abs (   215,    29)
+	 32: Rel (   -19,   -23)  ->  Abs (   196,     6)
+	 33: Rel (   -10,    -6)  ->  Abs (   186,     0)
+	 34: Rel (   -39,     0)  ->  Abs (   147,     0)
+	 35: Rel (   -57,     0)  ->  Abs (    90,     0)
+	 36: Rel (   -70,     0)  ->  Abs (    20,     0)
+	 37: Rel (     0,    42)  ->  Abs (    20,    42)
+	 38: Rel (     0,    42)  ->  Abs (    20,    84)
+	 39: Rel (    70,     0)  ->  Abs (    90,    84)
+	 40: Rel (    57,     0)  ->  Abs (   147,    84)
+	 41: Rel (   111,   198)  ->  Abs (   258,   282)
+	 42: Rel (    75,   134)  ->  Abs (   333,   416)
+	 43: Rel (    98,    63)  ->  Abs (   431,   479)
+	 44: Rel (   -41,    33)  ->  Abs (   390,   512)
+	 45: Rel (   -81,   128)  ->  Abs (   309,   640)
+	 46: Rel (   -49,    76)  ->  Abs (   260,   716)
+	 47: Rel (   -17,    19)  ->  Abs (   243,   735)
+	 48: Rel (   -43,    46)  ->  Abs (   200,   781)
+	 49: Rel (   -56,     0)  ->  Abs (   144,   781)
+	 50: Rel (     0,   -63)  ->  Abs (   144,   718)
+	 51: Rel (     0,   -57)  ->  Abs (   144,   661)
+	 52: Rel (   -42,     0)  ->  Abs (   102,   661)
+	 53: Rel (   -43,     0)  ->  Abs (    59,   661)
+	 54: Rel (     0,    64)  ->  Abs (    59,   725)
+	 55: Rel (     0,    70)  ->  Abs (    59,   795)
+	 56: Rel (     0,    40)  ->  Abs (    59,   835)
+	 57: Rel (     9,    13)  ->  Abs (    68,   848)
+	 58: Rel (    11,    18)  ->  Abs (    79,   866)
+	 59: Rel (    37,     0)  ->  Abs (   116,   866)
+	 60: Rel (   100,     0)  ->  Abs (   216,   866)
+	 61: Rel (    58,   -47)  ->  Abs (   274,   819)
+	 62: Rel (    40,   -32)  ->  Abs (   314,   787)
+	 63: Rel (    62,  -103)  ->  Abs (   376,   684)
+	 64: Rel (   107,  -173)  ->  Abs (   483,   511)
+	 65: Rel (    68,    -4)  ->  Abs (   551,   507)
+	 66: Rel (    21,     0)  ->  Abs (   572,   507)
+	 67: Rel (     0,   274)  ->  Abs (   572,   781)
+	 68: Rel (   -59,     0)  ->  Abs (   513,   781)
+	 69: Rel (   -71,     0)  ->  Abs (   442,   781)
+	 70: Rel (     0,    42)  ->  Abs (   442,   823)
+	 71: Rel (     0,    43)  ->  Abs (   442,   866)
+	 72: Rel (    71,     0)  ->  Abs (   513,   866)
+	 73: Rel (   202,     0)  ->  Abs (   715,   866)
+	 74: Rel (    71,     0)  ->  Abs (   786,   866)
+	 75: Rel (     0,   -43)  ->  Abs (   786,   823)
+	 76: Rel (     0,   -42)  ->  Abs (   786,   781)
+	 77: Rel (   -71,     0)  ->  Abs (   715,   781)
+	 78: Rel (   -58,     0)  ->  Abs (   657,   781)
+	 79: Rel (     0,  -274)  ->  Abs (   657,   507)
+	 80: Rel (    20,     0)  ->  Abs (   677,   507)
+	 81: Rel (    50,     0)  ->  Abs (   727,   507)
+	 82: Rel (    54,    68)  ->  Abs (   781,   575)
+	 83: Rel (     9,    11)  ->  Abs (   790,   586)
+	 84: Rel (    63,    98)  ->  Abs (   853,   684)
+	 85: Rel (    67,   104)  ->  Abs (   920,   788)
+	 86: Rel (    30,    28)  ->  Abs (   950,   816)
+	 87: Rel (    57,    50)  ->  Abs (  1007,   866)
+	 88: Rel (    92,     0)  ->  Abs (  1099,   866)
+	 89: Rel (    44,     0)  ->  Abs (  1143,   866)
+	 90: Rel (    26,   -27)  ->  Abs (  1169,   839)
+	 91: Rel (     0,   -44)  ->  Abs (  1169,   795)
+	 92: Rel (     0,   -70)  ->  Abs (  1169,   725)
+	 93: Rel (     0,   -64)  ->  Abs (  1169,   661)
+	 94: Rel (   -41,     0)  ->  Abs (  1128,   661)
+	 95: Rel (   -44,     0)  ->  Abs (  1084,   661)
+	 96: Rel (     0,    57)  ->  Abs (  1084,   718)
+	 97: Rel (     0,    63)  ->  Abs (  1084,   781)
+	 98: Rel (   -56,     0)  ->  Abs (  1028,   781)
+	 99: Rel (   -44,   -46)  ->  Abs (   984,   735)
+	100: Rel (   -19,   -21)  ->  Abs (   965,   714)
+	101: Rel (   -46,   -74)  ->  Abs (   919,   640)
+	102: Rel (   -81,  -132)  ->  Abs (   838,   508)
+	103: Rel (   -41,   -29)  ->  Abs (   797,   479)
+	104: Rel (    93,   -52)  ->  Abs (   890,   427)
+	105: Rel (    81,  -145)  ->  Abs (   971,   282)
+	106: Rel (   110,  -198)  ->  Abs (  1081,    84)
+	107: Rel (    71,     0)  ->  Abs (  1152,    84)
+	108: Rel (    45,     0)  ->  Abs (  1197,    84)
+	109: Rel (    26,   -25)  ->  Abs (  1223,    59)
+	110: Rel (     0,   -45)  ->  Abs (  1223,    14)
+
+	Glyph 1298: off = 0x0003A922, len = 356
+	  numberOfContours:	1
+	  xMin:			119
+	  yMin:			-286
+	  xMax:			1218
+	  yMax:			1171
+
+	EndPoints
+	---------
+	  0:  71
+
+	  Length of Instructions:	164
+	00000: NPUSHB      (88):     8    11    11    30    65    67    20    65    65    67 
+	                            64    65    16    67    45    44    44    30    63    61 
+	                            20    63    63    61    63    61    40    58    30    53 
+	                            67     5    30     0    67    73    31    24    27    40 
+	                            16    36     0    19     1    19    16    30    27    63 
+	                            61    15    55    55    41    58    38    44    45    41 
+	                            48    34    65    67    64    41    38    11     8     5 
+	                            15    15    16    39    28    38    34     2    27    16 
+	                            38    22    67    38     5    22     8     2 
+	00090: SVTCA[y-axis] 
+	00091: MDAP[rd]   
+	00092: MIAP[rd+ci] 
+	00093: MDRP[srp0,nmd,nrd,0] 
+	00094: MIRP[nrp0,md,rd,1] 
+	00095: SRP0       
+	00096: MIRP[srp0,md,rd,1] 
+	00097: MDRP[nrp0,nmd,nrd,0] 
+	00098: MIAP[rd+ci] 
+	00099: MIRP[srp0,md,rd,1] 
+	00100: MDRP[nrp0,nmd,nrd,0] 
+	00101: SRP2       
+	00102: IP         
+	00103: MDAP[rd]   
+	00104: SRP2       
+	00105: IP         
+	00106: IP         
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: IP         
+	00109: SRP1       
+	00110: IP         
+	00111: SRP0       
+	00112: MDRP[srp0,nmd,rd,0] 
+	00113: SRP1       
+	00114: IP         
+	00115: IP         
+	00116: MIRP[nrp0,md,rd,1] 
+	00117: SRP1       
+	00118: IP         
+	00119: MDAP[rd]   
+	00120: SRP1       
+	00121: IP         
+	00122: IP         
+	00123: SVTCA[x-axis] 
+	00124: MDAP[rd]   
+	00125: MIRP[srp0,md,rd,1] 
+	00126: MDRP[srp0,md,rd,1] 
+	00127: DELTAP1    
+	00128: MDRP[nrp0,nmd,nrd,0] 
+	00129: SRP0       
+	00130: MDRP[nrp0,nmd,nrd,0] 
+	00131: SRP0       
+	00132: MDRP[srp0,md,rd,1] 
+	00133: MDRP[nrp0,nmd,nrd,0] 
+	00134: SRP0       
+	00135: MDRP[srp0,nmd,rd,0] 
+	00136: MDRP[srp0,nmd,rd,0] 
+	00137: MIRP[nrp0,md,rd,1] 
+	00138: SRP0       
+	00139: MDRP[srp0,nmd,rd,0] 
+	00140: MIRP[nrp0,md,rd,1] 
+	00141: SRP1       
+	00142: IP         
+	00143: IP         
+	00144: SDPVTL[1]  
+	00145: SRP0       
+	00146: CALL       
+	00147: RDTG       
+	00148: SRP0       
+	00149: MDRP[nrp0,nmd,rd,0] 
+	00150: SVTCA[x-axis] 
+	00151: SRP1       
+	00152: SRP2       
+	00153: IP         
+	00154: IP         
+	00155: SDPVTL[1]  
+	00156: RTG        
+	00157: SRP0       
+	00158: CALL       
+	00159: RDTG       
+	00160: SRP0       
+	00161: MDRP[nrp0,nmd,rd,0] 
+	00162: IUP[y]     
+	00163: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:                              X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short On
+	 16:        XDual                         On
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                               On
+	 23:  YDual                       X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short On
+	 28:        XDual                         On
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual                               On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short On
+	 40:        XDual                         On
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:        XDual                 X-Short Off
+	 46:  YDual XDual         Y-Short X-Short On
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual                 X-Short Off
+	 50:        XDual         Y-Short X-Short On
+	 51:        XDual         Y-Short X-Short Off
+	 52:        XDual         Y-Short         On
+	 53:        XDual         Y-Short         On
+	 54:        XDual         Y-Short         Off
+	 55:  YDual                       X-Short On
+	 56:  YDual                       X-Short Off
+	 57:  YDual XDual         Y-Short         On
+	 58:  YDual XDual         Y-Short         On
+	 59:  YDual                       X-Short Off
+	 60:                      Y-Short X-Short On
+	 61:                      Y-Short X-Short Off
+	 62:                      Y-Short X-Short On
+	 63:                      Y-Short X-Short Off
+	 64:                      Y-Short X-Short On
+	 65:        XDual         Y-Short X-Short Off
+	 66:        XDual         Y-Short X-Short On
+	 67:        XDual                 X-Short On
+	 68:  YDual XDual                 X-Short On
+	 69:  YDual XDual                 X-Short Off
+	 70:        XDual         Y-Short X-Short Off
+	 71:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1218,  -219)  ->  Abs (  1218,  -219)
+	  1: Rel (     0,   -67)  ->  Abs (  1218,  -286)
+	  2: Rel (   -41,     0)  ->  Abs (  1177,  -286)
+	  3: Rel (   -44,     0)  ->  Abs (  1133,  -286)
+	  4: Rel (     0,    64)  ->  Abs (  1133,  -222)
+	  5: Rel (    -1,   222)  ->  Abs (  1132,     0)
+	  6: Rel (  -121,     0)  ->  Abs (  1011,     0)
+	  7: Rel (   -39,     0)  ->  Abs (   972,     0)
+	  8: Rel (   -22,    13)  ->  Abs (   950,    13)
+	  9: Rel (   -18,    35)  ->  Abs (   932,    48)
+	 10: Rel (  -150,   294)  ->  Abs (   782,   342)
+	 11: Rel (   -68,   133)  ->  Abs (   714,   475)
+	 12: Rel (   -60,    49)  ->  Abs (   654,   524)
+	 13: Rel (   -76,    61)  ->  Abs (   578,   585)
+	 14: Rel (  -133,     0)  ->  Abs (   445,   585)
+	 15: Rel (   -64,     0)  ->  Abs (   381,   585)
+	 16: Rel (     0,  -501)  ->  Abs (   381,    84)
+	 17: Rel (   109,     0)  ->  Abs (   490,    84)
+	 18: Rel (    71,     0)  ->  Abs (   561,    84)
+	 19: Rel (     0,   -42)  ->  Abs (   561,    42)
+	 20: Rel (     0,   -42)  ->  Abs (   561,     0)
+	 21: Rel (   -71,     0)  ->  Abs (   490,     0)
+	 22: Rel (  -301,     0)  ->  Abs (   189,     0)
+	 23: Rel (   -70,     0)  ->  Abs (   119,     0)
+	 24: Rel (     0,    42)  ->  Abs (   119,    42)
+	 25: Rel (     0,    42)  ->  Abs (   119,    84)
+	 26: Rel (    70,     0)  ->  Abs (   189,    84)
+	 27: Rel (   107,     0)  ->  Abs (   296,    84)
+	 28: Rel (     0,  1002)  ->  Abs (   296,  1086)
+	 29: Rel (  -107,     0)  ->  Abs (   189,  1086)
+	 30: Rel (   -70,     0)  ->  Abs (   119,  1086)
+	 31: Rel (     0,    42)  ->  Abs (   119,  1128)
+	 32: Rel (     0,    42)  ->  Abs (   119,  1170)
+	 33: Rel (    70,     0)  ->  Abs (   189,  1170)
+	 34: Rel (   301,     0)  ->  Abs (   490,  1170)
+	 35: Rel (    71,     0)  ->  Abs (   561,  1170)
+	 36: Rel (     0,   -42)  ->  Abs (   561,  1128)
+	 37: Rel (     0,   -42)  ->  Abs (   561,  1086)
+	 38: Rel (   -71,     0)  ->  Abs (   490,  1086)
+	 39: Rel (  -109,     0)  ->  Abs (   381,  1086)
+	 40: Rel (     0,  -415)  ->  Abs (   381,   671)
+	 41: Rel (    64,     0)  ->  Abs (   445,   671)
+	 42: Rel (   105,     0)  ->  Abs (   550,   671)
+	 43: Rel (    70,    79)  ->  Abs (   620,   750)
+	 44: Rel (    23,    26)  ->  Abs (   643,   776)
+	 45: Rel (   172,   291)  ->  Abs (   815,  1067)
+	 46: Rel (    35,    35)  ->  Abs (   850,  1102)
+	 47: Rel (    71,    69)  ->  Abs (   921,  1171)
+	 48: Rel (   124,     0)  ->  Abs (  1045,  1171)
+	 49: Rel (    52,     0)  ->  Abs (  1097,  1171)
+	 50: Rel (    13,   -10)  ->  Abs (  1110,  1161)
+	 51: Rel (    16,   -13)  ->  Abs (  1126,  1148)
+	 52: Rel (     0,   -48)  ->  Abs (  1126,  1100)
+	 53: Rel (     0,  -111)  ->  Abs (  1126,   989)
+	 54: Rel (     0,   -69)  ->  Abs (  1126,   920)
+	 55: Rel (   -42,     0)  ->  Abs (  1084,   920)
+	 56: Rel (   -43,     0)  ->  Abs (  1041,   920)
+	 57: Rel (     0,    65)  ->  Abs (  1041,   985)
+	 58: Rel (     0,   104)  ->  Abs (  1041,  1089)
+	 59: Rel (   -89,     0)  ->  Abs (   952,  1089)
+	 60: Rel (   -57,   -64)  ->  Abs (   895,  1025)
+	 61: Rel (   -21,   -23)  ->  Abs (   874,  1002)
+	 62: Rel (   -70,  -121)  ->  Abs (   804,   881)
+	 63: Rel (  -129,  -222)  ->  Abs (   675,   659)
+	 64: Rel (   -47,   -21)  ->  Abs (   628,   638)
+	 65: Rel (   124,   -50)  ->  Abs (   752,   588)
+	 66: Rel (   107,  -210)  ->  Abs (   859,   378)
+	 67: Rel (   149,  -294)  ->  Abs (  1008,    84)
+	 68: Rel (   139,     0)  ->  Abs (  1147,    84)
+	 69: Rel (    45,     0)  ->  Abs (  1192,    84)
+	 70: Rel (    26,   -25)  ->  Abs (  1218,    59)
+	 71: Rel (     0,   -45)  ->  Abs (  1218,    14)
+
+	Glyph 1299: off = 0x0003AA86, len = 358
+	  numberOfContours:	1
+	  xMin:			120
+	  yMin:			-211
+	  xMax:			1187
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  73
+
+	  Length of Instructions:	164
+	00000: NPUSHB      (88):    12     9     9    32    69    67    20    69    69    67 
+	                            64    67    16    69    46    44    44    32    63    61 
+	                            20    63    63    61    63    61    40    58    32    53 
+	                            69     5    32     0    69    75    31    24    27    40 
+	                            16    36     0    19     1    19    16    32    27    63 
+	                            61    15    55    55    41    58    33    44    46    41 
+	                            49    34    67    69    64    41    33    12     9     5 
+	                            15    15    27    39    28    33    34     6    16    27 
+	                            33    21    69    33     5    21    10     2 
+	00090: SVTCA[y-axis] 
+	00091: MDAP[rd]   
+	00092: MIAP[rd+ci] 
+	00093: MDRP[srp0,nmd,nrd,0] 
+	00094: MIRP[nrp0,md,rd,1] 
+	00095: SRP0       
+	00096: MIRP[srp0,md,rd,1] 
+	00097: MDRP[nrp0,nmd,nrd,0] 
+	00098: MIAP[rd+ci] 
+	00099: MIRP[srp0,md,rd,1] 
+	00100: MDRP[nrp0,nmd,nrd,0] 
+	00101: SRP2       
+	00102: IP         
+	00103: MDAP[rd]   
+	00104: SRP2       
+	00105: IP         
+	00106: IP         
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: IP         
+	00109: SRP1       
+	00110: IP         
+	00111: SRP0       
+	00112: MDRP[srp0,nmd,nrd,0] 
+	00113: SRP1       
+	00114: IP         
+	00115: IP         
+	00116: MIRP[nrp0,md,rd,1] 
+	00117: SRP1       
+	00118: IP         
+	00119: MDAP[rd]   
+	00120: SRP1       
+	00121: IP         
+	00122: IP         
+	00123: SVTCA[x-axis] 
+	00124: MDAP[rd]   
+	00125: MIRP[srp0,md,rd,1] 
+	00126: MDRP[srp0,md,rd,1] 
+	00127: DELTAP1    
+	00128: MDRP[nrp0,nmd,nrd,0] 
+	00129: SRP0       
+	00130: MDRP[nrp0,nmd,nrd,0] 
+	00131: SRP0       
+	00132: MDRP[srp0,md,rd,1] 
+	00133: MDRP[nrp0,nmd,nrd,0] 
+	00134: SRP0       
+	00135: MDRP[srp0,nmd,rd,0] 
+	00136: MDRP[srp0,nmd,rd,0] 
+	00137: MIRP[nrp0,md,rd,1] 
+	00138: SRP0       
+	00139: MDRP[srp0,nmd,rd,0] 
+	00140: MIRP[nrp0,md,rd,1] 
+	00141: SRP1       
+	00142: IP         
+	00143: IP         
+	00144: SDPVTL[1]  
+	00145: SRP0       
+	00146: CALL       
+	00147: RDTG       
+	00148: SRP0       
+	00149: MDRP[nrp0,nmd,rd,0] 
+	00150: SVTCA[x-axis] 
+	00151: SRP1       
+	00152: SRP2       
+	00153: IP         
+	00154: IP         
+	00155: SDPVTL[1]  
+	00156: RTG        
+	00157: SRP0       
+	00158: CALL       
+	00159: RDTG       
+	00160: SRP0       
+	00161: MDRP[nrp0,nmd,rd,0] 
+	00162: IUP[y]     
+	00163: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short On
+	 16:        XDual                         On
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                               On
+	 23:  YDual                       X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short On
+	 28:        XDual                         On
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual                               On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short On
+	 40:        XDual                         On
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short X-Short On
+	 46:  YDual XDual         Y-Short X-Short Off
+	 47:  YDual XDual         Y-Short X-Short On
+	 48:  YDual XDual         Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:        XDual         Y-Short X-Short Off
+	 52:        XDual         Y-Short         On
+	 53:        XDual         Y-Short         On
+	 54:        XDual         Y-Short         Off
+	 55:  YDual                       X-Short On
+	 56:  YDual                       X-Short Off
+	 57:  YDual XDual         Y-Short         On
+	 58:  YDual XDual         Y-Short         On
+	 59:  YDual                       X-Short Off
+	 60:                      Y-Short X-Short On
+	 61:                      Y-Short X-Short Off
+	 62:                      Y-Short X-Short On
+	 63:                      Y-Short X-Short Off
+	 64:                      Y-Short X-Short On
+	 65:        XDual         Y-Short X-Short Off
+	 66:        XDual         Y-Short X-Short On
+	 67:        XDual         Y-Short X-Short Off
+	 68:        XDual         Y-Short X-Short On
+	 69:        XDual         Y-Short X-Short On
+	 70:  YDual XDual                 X-Short On
+	 71:  YDual XDual                 X-Short Off
+	 72:        XDual         Y-Short X-Short Off
+	 73:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1187,  -143)  ->  Abs (  1187,  -143)
+	  1: Rel (     0,   -68)  ->  Abs (  1187,  -211)
+	  2: Rel (   -42,     0)  ->  Abs (  1145,  -211)
+	  3: Rel (   -43,     0)  ->  Abs (  1102,  -211)
+	  4: Rel (     0,    65)  ->  Abs (  1102,  -146)
+	  5: Rel (     0,   146)  ->  Abs (  1102,     0)
+	  6: Rel (  -118,     0)  ->  Abs (   984,     0)
+	  7: Rel (   -51,     0)  ->  Abs (   933,     0)
+	  8: Rel (   -17,    26)  ->  Abs (   916,    26)
+	  9: Rel (    -2,     5)  ->  Abs (   914,    31)
+	 10: Rel (    -8,    11)  ->  Abs (   906,    42)
+	 11: Rel (  -142,   210)  ->  Abs (   764,   252)
+	 12: Rel (   -66,    98)  ->  Abs (   698,   350)
+	 13: Rel (  -140,    73)  ->  Abs (   558,   423)
+	 14: Rel (  -119,     0)  ->  Abs (   439,   423)
+	 15: Rel (   -62,     0)  ->  Abs (   377,   423)
+	 16: Rel (     0,  -339)  ->  Abs (   377,    84)
+	 17: Rel (   102,     0)  ->  Abs (   479,    84)
+	 18: Rel (    70,     0)  ->  Abs (   549,    84)
+	 19: Rel (     0,   -42)  ->  Abs (   549,    42)
+	 20: Rel (     0,   -42)  ->  Abs (   549,     0)
+	 21: Rel (   -70,     0)  ->  Abs (   479,     0)
+	 22: Rel (  -289,     0)  ->  Abs (   190,     0)
+	 23: Rel (   -70,     0)  ->  Abs (   120,     0)
+	 24: Rel (     0,    42)  ->  Abs (   120,    42)
+	 25: Rel (     0,    42)  ->  Abs (   120,    84)
+	 26: Rel (    70,     0)  ->  Abs (   190,    84)
+	 27: Rel (   102,     0)  ->  Abs (   292,    84)
+	 28: Rel (     0,   697)  ->  Abs (   292,   781)
+	 29: Rel (  -102,     0)  ->  Abs (   190,   781)
+	 30: Rel (   -70,     0)  ->  Abs (   120,   781)
+	 31: Rel (     0,    42)  ->  Abs (   120,   823)
+	 32: Rel (     0,    43)  ->  Abs (   120,   866)
+	 33: Rel (    70,     0)  ->  Abs (   190,   866)
+	 34: Rel (   289,     0)  ->  Abs (   479,   866)
+	 35: Rel (    70,     0)  ->  Abs (   549,   866)
+	 36: Rel (     0,   -43)  ->  Abs (   549,   823)
+	 37: Rel (     0,   -42)  ->  Abs (   549,   781)
+	 38: Rel (   -70,     0)  ->  Abs (   479,   781)
+	 39: Rel (  -102,     0)  ->  Abs (   377,   781)
+	 40: Rel (     0,  -274)  ->  Abs (   377,   507)
+	 41: Rel (    62,     0)  ->  Abs (   439,   507)
+	 42: Rel (    86,     0)  ->  Abs (   525,   507)
+	 43: Rel (    51,    33)  ->  Abs (   576,   540)
+	 44: Rel (    36,    23)  ->  Abs (   612,   563)
+	 45: Rel (    65,    79)  ->  Abs (   677,   642)
+	 46: Rel (   110,   134)  ->  Abs (   787,   776)
+	 47: Rel (    33,    27)  ->  Abs (   820,   803)
+	 48: Rel (    78,    63)  ->  Abs (   898,   866)
+	 49: Rel (   118,     0)  ->  Abs (  1016,   866)
+	 50: Rel (    50,     0)  ->  Abs (  1066,   866)
+	 51: Rel (    32,   -24)  ->  Abs (  1098,   842)
+	 52: Rel (     0,   -47)  ->  Abs (  1098,   795)
+	 53: Rel (     0,  -115)  ->  Abs (  1098,   680)
+	 54: Rel (     0,   -60)  ->  Abs (  1098,   620)
+	 55: Rel (   -43,     0)  ->  Abs (  1055,   620)
+	 56: Rel (   -41,     0)  ->  Abs (  1014,   620)
+	 57: Rel (     0,    53)  ->  Abs (  1014,   673)
+	 58: Rel (     0,   108)  ->  Abs (  1014,   781)
+	 59: Rel (   -84,     0)  ->  Abs (   930,   781)
+	 60: Rel (   -49,   -38)  ->  Abs (   881,   743)
+	 61: Rel (   -21,   -17)  ->  Abs (   860,   726)
+	 62: Rel (   -75,   -91)  ->  Abs (   785,   635)
+	 63: Rel (  -106,  -130)  ->  Abs (   679,   505)
+	 64: Rel (   -54,   -33)  ->  Abs (   625,   472)
+	 65: Rel (    75,   -19)  ->  Abs (   700,   453)
+	 66: Rel (    52,   -52)  ->  Abs (   752,   401)
+	 67: Rel (    28,   -27)  ->  Abs (   780,   374)
+	 68: Rel (    64,   -91)  ->  Abs (   844,   283)
+	 69: Rel (   140,  -199)  ->  Abs (   984,    84)
+	 70: Rel (   132,     0)  ->  Abs (  1116,    84)
+	 71: Rel (    45,     0)  ->  Abs (  1161,    84)
+	 72: Rel (    26,   -25)  ->  Abs (  1187,    59)
+	 73: Rel (     0,   -45)  ->  Abs (  1187,    14)
+
+	Glyph 1300: off = 0x0003ABEC, len = 394
+	  numberOfContours:	1
+	  xMin:			119
+	  yMin:			0
+	  xMax:			1202
+	  yMax:			1171
+
+	EndPoints
+	---------
+	  0:  79
+
+	  Length of Instructions:	187
+	00000: NPUSHB     (100):    55    53    53    30    73    71    20    73    73    71 
+	                            73    71    51    68    30    63    77     5     8     8 
+	                            30    75    77    20    75    75    77    74    75    77 
+	                            51    10    30    47    14    14    19     0    95    77 
+	                             1    77    81    34    27    30    39     0    22     1 
+	                            22    43    19    30    30    73    71    18    65    65 
+	                            44    68    33    53    55    44    58    37    75    77 
+	                            74    18    49    49    31    44    33    18     8     5 
+	                            18     3    12    18    12    18    30    42    31    33 
+	                            37     2    19    30    33    24    77    33     3    24 
+	00102: SVTCA[y-axis] 
+	00103: MDAP[rd]   
+	00104: MDRP[srp0,nmd,nrd,0] 
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: SRP0       
+	00107: MIRP[srp0,md,rd,1] 
+	00108: MDRP[nrp0,nmd,nrd,0] 
+	00109: MIAP[rd+ci] 
+	00110: MIRP[srp0,md,rd,1] 
+	00111: MDRP[nrp0,nmd,nrd,0] 
+	00112: SRP2       
+	00113: IP         
+	00114: IP         
+	00115: MDAP[rd]   
+	00116: MDAP[rd]   
+	00117: SRP1       
+	00118: SRP2       
+	00119: IP         
+	00120: IP         
+	00121: SRP0       
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: SRP1       
+	00124: IP         
+	00125: MDAP[rd]   
+	00126: SRP1       
+	00127: IP         
+	00128: SRP1       
+	00129: IP         
+	00130: SRP0       
+	00131: MDRP[srp0,nmd,rd,0] 
+	00132: SRP1       
+	00133: IP         
+	00134: IP         
+	00135: MIRP[nrp0,md,rd,1] 
+	00136: SRP1       
+	00137: IP         
+	00138: MDAP[rd]   
+	00139: SRP1       
+	00140: IP         
+	00141: IP         
+	00142: SVTCA[x-axis] 
+	00143: MDAP[rd]   
+	00144: MIRP[srp0,md,rd,1] 
+	00145: MDRP[nrp0,nmd,nrd,0] 
+	00146: MDRP[srp0,md,rd,1] 
+	00147: DELTAP1    
+	00148: MDRP[nrp0,nmd,nrd,0] 
+	00149: SRP0       
+	00150: MDRP[srp0,md,rd,1] 
+	00151: MDRP[nrp0,nmd,nrd,0] 
+	00152: SRP0       
+	00153: MDRP[srp0,nmd,rd,0] 
+	00154: DELTAP1    
+	00155: MDRP[nrp0,md,rd,1] 
+	00156: SRP2       
+	00157: IP         
+	00158: MDAP[rd]   
+	00159: MDRP[nrp0,nmd,nrd,0] 
+	00160: MIRP[srp0,md,rd,1] 
+	00161: MDRP[nrp0,nmd,nrd,0] 
+	00162: SRP2       
+	00163: IP         
+	00164: IP         
+	00165: SDPVTL[1]  
+	00166: SRP0       
+	00167: CALL       
+	00168: RDTG       
+	00169: SRP0       
+	00170: MDRP[nrp0,nmd,rd,0] 
+	00171: SVTCA[x-axis] 
+	00172: RTG        
+	00173: SRP0       
+	00174: MDRP[srp0,nmd,rd,0] 
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: SRP1       
+	00177: IP         
+	00178: IP         
+	00179: SDPVTL[1]  
+	00180: SRP0       
+	00181: CALL       
+	00182: RDTG       
+	00183: SRP0       
+	00184: MDRP[nrp0,nmd,rd,0] 
+	00185: IUP[y]     
+	00186: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:                              X-Short On
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual               Y-Short X-Short On
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:        XDual                         On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short On
+	 19:        XDual                         On
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                               On
+	 26:  YDual                       X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short On
+	 31:        XDual                         On
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual                               On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short On
+	 43:        XDual                         On
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short Off
+	 46:  YDual XDual         Y-Short X-Short On
+	 47:  YDual XDual         Y-Short         On
+	 48:  YDual XDual         Y-Short         Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:        XDual         Y-Short         On
+	 52:        XDual         Y-Short         On
+	 53:  YDual XDual         Y-Short X-Short Off
+	 54:  YDual XDual         Y-Short X-Short On
+	 55:  YDual XDual         Y-Short X-Short Off
+	 56:  YDual XDual         Y-Short X-Short On
+	 57:  YDual XDual         Y-Short X-Short Off
+	 58:  YDual XDual                 X-Short On
+	 59:  YDual XDual                 X-Short Off
+	 60:        XDual         Y-Short X-Short On
+	 61:        XDual         Y-Short X-Short Off
+	 62:        XDual         Y-Short         On
+	 63:        XDual         Y-Short         On
+	 64:        XDual         Y-Short         Off
+	 65:  YDual                       X-Short On
+	 66:  YDual                       X-Short Off
+	 67:  YDual XDual         Y-Short         On
+	 68:  YDual XDual         Y-Short         On
+	 69:  YDual                       X-Short Off
+	 70:                      Y-Short X-Short On
+	 71:                      Y-Short X-Short Off
+	 72:                      Y-Short X-Short On
+	 73:                      Y-Short X-Short Off
+	 74:                      Y-Short X-Short On
+	 75:        XDual         Y-Short X-Short Off
+	 76:        XDual         Y-Short X-Short On
+	 77:        XDual                 X-Short On
+	 78:  YDual XDual                 X-Short On
+	 79:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1202,    42)  ->  Abs (  1202,    42)
+	  1: Rel (     0,   -42)  ->  Abs (  1202,     0)
+	  2: Rel (   -70,     0)  ->  Abs (  1132,     0)
+	  3: Rel (  -121,     0)  ->  Abs (  1011,     0)
+	  4: Rel (   -39,     0)  ->  Abs (   972,     0)
+	  5: Rel (   -22,    13)  ->  Abs (   950,    13)
+	  6: Rel (   -18,    35)  ->  Abs (   932,    48)
+	  7: Rel (  -150,   294)  ->  Abs (   782,   342)
+	  8: Rel (   -83,   163)  ->  Abs (   699,   505)
+	  9: Rel (   -83,    44)  ->  Abs (   616,   549)
+	 10: Rel (     0,  -238)  ->  Abs (   616,   311)
+	 11: Rel (     0,   -56)  ->  Abs (   616,   255)
+	 12: Rel (   -42,     0)  ->  Abs (   574,   255)
+	 13: Rel (   -42,     0)  ->  Abs (   532,   255)
+	 14: Rel (     0,    56)  ->  Abs (   532,   311)
+	 15: Rel (     0,   267)  ->  Abs (   532,   578)
+	 16: Rel (   -37,     7)  ->  Abs (   495,   585)
+	 17: Rel (   -50,     0)  ->  Abs (   445,   585)
+	 18: Rel (   -64,     0)  ->  Abs (   381,   585)
+	 19: Rel (     0,  -501)  ->  Abs (   381,    84)
+	 20: Rel (   109,     0)  ->  Abs (   490,    84)
+	 21: Rel (    71,     0)  ->  Abs (   561,    84)
+	 22: Rel (     0,   -42)  ->  Abs (   561,    42)
+	 23: Rel (     0,   -42)  ->  Abs (   561,     0)
+	 24: Rel (   -71,     0)  ->  Abs (   490,     0)
+	 25: Rel (  -301,     0)  ->  Abs (   189,     0)
+	 26: Rel (   -70,     0)  ->  Abs (   119,     0)
+	 27: Rel (     0,    42)  ->  Abs (   119,    42)
+	 28: Rel (     0,    42)  ->  Abs (   119,    84)
+	 29: Rel (    70,     0)  ->  Abs (   189,    84)
+	 30: Rel (   107,     0)  ->  Abs (   296,    84)
+	 31: Rel (     0,  1002)  ->  Abs (   296,  1086)
+	 32: Rel (  -107,     0)  ->  Abs (   189,  1086)
+	 33: Rel (   -70,     0)  ->  Abs (   119,  1086)
+	 34: Rel (     0,    42)  ->  Abs (   119,  1128)
+	 35: Rel (     0,    42)  ->  Abs (   119,  1170)
+	 36: Rel (    70,     0)  ->  Abs (   189,  1170)
+	 37: Rel (   301,     0)  ->  Abs (   490,  1170)
+	 38: Rel (    71,     0)  ->  Abs (   561,  1170)
+	 39: Rel (     0,   -42)  ->  Abs (   561,  1128)
+	 40: Rel (     0,   -42)  ->  Abs (   561,  1086)
+	 41: Rel (   -71,     0)  ->  Abs (   490,  1086)
+	 42: Rel (  -109,     0)  ->  Abs (   381,  1086)
+	 43: Rel (     0,  -415)  ->  Abs (   381,   671)
+	 44: Rel (    64,     0)  ->  Abs (   445,   671)
+	 45: Rel (    51,     0)  ->  Abs (   496,   671)
+	 46: Rel (    36,    12)  ->  Abs (   532,   683)
+	 47: Rel (     0,   217)  ->  Abs (   532,   900)
+	 48: Rel (     0,    57)  ->  Abs (   532,   957)
+	 49: Rel (    42,     0)  ->  Abs (   574,   957)
+	 50: Rel (    42,     0)  ->  Abs (   616,   957)
+	 51: Rel (     0,   -57)  ->  Abs (   616,   900)
+	 52: Rel (     0,  -151)  ->  Abs (   616,   749)
+	 53: Rel (    44,    57)  ->  Abs (   660,   806)
+	 54: Rel (    69,   116)  ->  Abs (   729,   922)
+	 55: Rel (    86,   145)  ->  Abs (   815,  1067)
+	 56: Rel (    35,    35)  ->  Abs (   850,  1102)
+	 57: Rel (    71,    69)  ->  Abs (   921,  1171)
+	 58: Rel (   124,     0)  ->  Abs (  1045,  1171)
+	 59: Rel (    52,     0)  ->  Abs (  1097,  1171)
+	 60: Rel (    13,   -10)  ->  Abs (  1110,  1161)
+	 61: Rel (    16,   -13)  ->  Abs (  1126,  1148)
+	 62: Rel (     0,   -48)  ->  Abs (  1126,  1100)
+	 63: Rel (     0,  -111)  ->  Abs (  1126,   989)
+	 64: Rel (     0,   -69)  ->  Abs (  1126,   920)
+	 65: Rel (   -42,     0)  ->  Abs (  1084,   920)
+	 66: Rel (   -43,     0)  ->  Abs (  1041,   920)
+	 67: Rel (     0,    65)  ->  Abs (  1041,   985)
+	 68: Rel (     0,   104)  ->  Abs (  1041,  1089)
+	 69: Rel (   -89,     0)  ->  Abs (   952,  1089)
+	 70: Rel (   -57,   -64)  ->  Abs (   895,  1025)
+	 71: Rel (   -21,   -23)  ->  Abs (   874,  1002)
+	 72: Rel (   -70,  -121)  ->  Abs (   804,   881)
+	 73: Rel (  -129,  -222)  ->  Abs (   675,   659)
+	 74: Rel (   -47,   -21)  ->  Abs (   628,   638)
+	 75: Rel (   124,   -50)  ->  Abs (   752,   588)
+	 76: Rel (   107,  -210)  ->  Abs (   859,   378)
+	 77: Rel (   149,  -294)  ->  Abs (  1008,    84)
+	 78: Rel (   124,     0)  ->  Abs (  1132,    84)
+	 79: Rel (    70,     0)  ->  Abs (  1202,    84)
+
+	Glyph 1301: off = 0x0003AD76, len = 408
+	  numberOfContours:	1
+	  xMin:			120
+	  yMin:			0
+	  xMax:			1172
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  81
+
+	  Length of Instructions:	198
+	00000: NPUSHB     (109):    56    54    54    32    73    71    20    73    73    71 
+	                            87    71     1    70    71     1    39    71    55    71 
+	                             2    73    71    52    68    32    63    79     9     6 
+	                             6    32    79    77    20    79    79    77    74    77 
+	                            79    52    11    32    48    15    15    20     0    79 
+	                            83    35    28    31    40     0    23     1    23    44 
+	                            20    32    31    73    71    19    65    65    45    68 
+	                            33    54    56    45    59    38    77    79    74    19 
+	                            50    50    32    45    33    19     9     6    19     3 
+	                            13    19    13    19    31    43    32    33    38     6 
+	                            20    31    33    25    79    33     3    25    10 
+	00111: SVTCA[y-axis] 
+	00112: MIAP[rd+ci] 
+	00113: MDRP[srp0,nmd,nrd,0] 
+	00114: MIRP[nrp0,md,rd,1] 
+	00115: SRP0       
+	00116: MIRP[srp0,md,rd,1] 
+	00117: MDRP[nrp0,nmd,nrd,0] 
+	00118: MIAP[rd+ci] 
+	00119: MIRP[srp0,md,rd,1] 
+	00120: MDRP[nrp0,nmd,nrd,0] 
+	00121: SRP2       
+	00122: IP         
+	00123: IP         
+	00124: MDAP[rd]   
+	00125: MDAP[rd]   
+	00126: SRP1       
+	00127: SRP2       
+	00128: IP         
+	00129: IP         
+	00130: SRP0       
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: SRP1       
+	00133: IP         
+	00134: MDAP[rd]   
+	00135: SRP1       
+	00136: IP         
+	00137: SRP1       
+	00138: IP         
+	00139: SRP0       
+	00140: MDRP[srp0,nmd,nrd,0] 
+	00141: SRP1       
+	00142: IP         
+	00143: IP         
+	00144: MIRP[nrp0,md,rd,1] 
+	00145: SRP1       
+	00146: IP         
+	00147: MDAP[rd]   
+	00148: SRP1       
+	00149: IP         
+	00150: IP         
+	00151: SVTCA[x-axis] 
+	00152: MDAP[rd]   
+	00153: MIRP[srp0,md,rd,1] 
+	00154: MDRP[nrp0,nmd,nrd,0] 
+	00155: MDRP[srp0,md,rd,1] 
+	00156: DELTAP1    
+	00157: MDRP[nrp0,nmd,nrd,0] 
+	00158: SRP0       
+	00159: MDRP[srp0,md,rd,1] 
+	00160: MDRP[nrp0,nmd,nrd,0] 
+	00161: SRP0       
+	00162: MDRP[srp0,nmd,rd,0] 
+	00163: MDRP[nrp0,md,rd,1] 
+	00164: SRP2       
+	00165: IP         
+	00166: MDAP[rd]   
+	00167: MDRP[nrp0,nmd,nrd,0] 
+	00168: MIRP[srp0,md,rd,1] 
+	00169: MDRP[nrp0,nmd,nrd,0] 
+	00170: SRP2       
+	00171: IP         
+	00172: IP         
+	00173: SDPVTL[1]  
+	00174: SRP0       
+	00175: CALL       
+	00176: RDTG       
+	00177: SRP0       
+	00178: MDRP[nrp0,nmd,rd,0] 
+	00179: SVTCA[x-axis] 
+	00180: RTG        
+	00181: SRP0       
+	00182: MDRP[srp0,nmd,rd,0] 
+	00183: MIRP[nrp0,md,rd,1] 
+	00184: SRP1       
+	00185: IP         
+	00186: IP         
+	00187: DELTAP1    
+	00188: DELTAP1    
+	00189: DELTAP1    
+	00190: SDPVTL[1]  
+	00191: SRP0       
+	00192: CALL       
+	00193: RDTG       
+	00194: SRP0       
+	00195: MDRP[nrp0,nmd,rd,0] 
+	00196: IUP[y]     
+	00197: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual               Y-Short X-Short On
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual               Y-Short X-Short On
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                       X-Short On
+	 20:        XDual                         On
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                               On
+	 27:  YDual                       X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short On
+	 32:        XDual                         On
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual                               On
+	 39:  YDual XDual                 X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:  YDual                       X-Short On
+	 43:  YDual                       X-Short On
+	 44:        XDual                         On
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:  YDual XDual         Y-Short X-Short On
+	 48:  YDual XDual         Y-Short         On
+	 49:  YDual XDual         Y-Short         Off
+	 50:  YDual XDual                 X-Short On
+	 51:  YDual XDual                 X-Short Off
+	 52:        XDual         Y-Short         On
+	 53:        XDual         Y-Short         On
+	 54:  YDual XDual         Y-Short X-Short Off
+	 55:  YDual XDual         Y-Short X-Short On
+	 56:  YDual XDual         Y-Short X-Short Off
+	 57:  YDual XDual         Y-Short X-Short On
+	 58:  YDual XDual         Y-Short X-Short Off
+	 59:  YDual XDual                 X-Short On
+	 60:  YDual XDual                 X-Short Off
+	 61:        XDual         Y-Short X-Short Off
+	 62:        XDual         Y-Short         On
+	 63:        XDual         Y-Short         On
+	 64:        XDual         Y-Short         Off
+	 65:  YDual                       X-Short On
+	 66:  YDual                       X-Short Off
+	 67:  YDual XDual         Y-Short         On
+	 68:  YDual XDual         Y-Short         On
+	 69:  YDual                       X-Short Off
+	 70:                      Y-Short X-Short On
+	 71:                      Y-Short X-Short Off
+	 72:                      Y-Short X-Short On
+	 73:                      Y-Short X-Short Off
+	 74:                      Y-Short X-Short On
+	 75:        XDual         Y-Short X-Short Off
+	 76:        XDual         Y-Short X-Short On
+	 77:        XDual         Y-Short X-Short Off
+	 78:        XDual         Y-Short X-Short On
+	 79:        XDual         Y-Short X-Short On
+	 80:  YDual XDual                 X-Short On
+	 81:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1172,    42)  ->  Abs (  1172,    42)
+	  1: Rel (     0,   -42)  ->  Abs (  1172,     0)
+	  2: Rel (   -70,     0)  ->  Abs (  1102,     0)
+	  3: Rel (  -118,     0)  ->  Abs (   984,     0)
+	  4: Rel (   -51,     0)  ->  Abs (   933,     0)
+	  5: Rel (   -17,    26)  ->  Abs (   916,    26)
+	  6: Rel (    -2,     5)  ->  Abs (   914,    31)
+	  7: Rel (    -8,    11)  ->  Abs (   906,    42)
+	  8: Rel (  -142,   210)  ->  Abs (   764,   252)
+	  9: Rel (   -78,   115)  ->  Abs (   686,   367)
+	 10: Rel (   -83,    31)  ->  Abs (   603,   398)
+	 11: Rel (     0,  -137)  ->  Abs (   603,   261)
+	 12: Rel (     0,   -56)  ->  Abs (   603,   205)
+	 13: Rel (   -42,     0)  ->  Abs (   561,   205)
+	 14: Rel (   -42,     0)  ->  Abs (   519,   205)
+	 15: Rel (     0,    56)  ->  Abs (   519,   261)
+	 16: Rel (     0,   157)  ->  Abs (   519,   418)
+	 17: Rel (   -37,     5)  ->  Abs (   482,   423)
+	 18: Rel (   -43,     0)  ->  Abs (   439,   423)
+	 19: Rel (   -62,     0)  ->  Abs (   377,   423)
+	 20: Rel (     0,  -339)  ->  Abs (   377,    84)
+	 21: Rel (   102,     0)  ->  Abs (   479,    84)
+	 22: Rel (    70,     0)  ->  Abs (   549,    84)
+	 23: Rel (     0,   -42)  ->  Abs (   549,    42)
+	 24: Rel (     0,   -42)  ->  Abs (   549,     0)
+	 25: Rel (   -70,     0)  ->  Abs (   479,     0)
+	 26: Rel (  -289,     0)  ->  Abs (   190,     0)
+	 27: Rel (   -70,     0)  ->  Abs (   120,     0)
+	 28: Rel (     0,    42)  ->  Abs (   120,    42)
+	 29: Rel (     0,    42)  ->  Abs (   120,    84)
+	 30: Rel (    70,     0)  ->  Abs (   190,    84)
+	 31: Rel (   102,     0)  ->  Abs (   292,    84)
+	 32: Rel (     0,   697)  ->  Abs (   292,   781)
+	 33: Rel (  -102,     0)  ->  Abs (   190,   781)
+	 34: Rel (   -70,     0)  ->  Abs (   120,   781)
+	 35: Rel (     0,    42)  ->  Abs (   120,   823)
+	 36: Rel (     0,    43)  ->  Abs (   120,   866)
+	 37: Rel (    70,     0)  ->  Abs (   190,   866)
+	 38: Rel (   289,     0)  ->  Abs (   479,   866)
+	 39: Rel (    70,     0)  ->  Abs (   549,   866)
+	 40: Rel (     0,   -43)  ->  Abs (   549,   823)
+	 41: Rel (     0,   -42)  ->  Abs (   549,   781)
+	 42: Rel (   -70,     0)  ->  Abs (   479,   781)
+	 43: Rel (  -102,     0)  ->  Abs (   377,   781)
+	 44: Rel (     0,  -274)  ->  Abs (   377,   507)
+	 45: Rel (    62,     0)  ->  Abs (   439,   507)
+	 46: Rel (    45,     0)  ->  Abs (   484,   507)
+	 47: Rel (    35,     8)  ->  Abs (   519,   515)
+	 48: Rel (     0,   130)  ->  Abs (   519,   645)
+	 49: Rel (     0,    57)  ->  Abs (   519,   702)
+	 50: Rel (    42,     0)  ->  Abs (   561,   702)
+	 51: Rel (    42,     0)  ->  Abs (   603,   702)
+	 52: Rel (     0,   -57)  ->  Abs (   603,   645)
+	 53: Rel (     0,   -83)  ->  Abs (   603,   562)
+	 54: Rel (    34,    31)  ->  Abs (   637,   593)
+	 55: Rel (    40,    49)  ->  Abs (   677,   642)
+	 56: Rel (   110,   134)  ->  Abs (   787,   776)
+	 57: Rel (    33,    27)  ->  Abs (   820,   803)
+	 58: Rel (    78,    63)  ->  Abs (   898,   866)
+	 59: Rel (   118,     0)  ->  Abs (  1016,   866)
+	 60: Rel (    50,     0)  ->  Abs (  1066,   866)
+	 61: Rel (    32,   -24)  ->  Abs (  1098,   842)
+	 62: Rel (     0,   -47)  ->  Abs (  1098,   795)
+	 63: Rel (     0,  -115)  ->  Abs (  1098,   680)
+	 64: Rel (     0,   -60)  ->  Abs (  1098,   620)
+	 65: Rel (   -43,     0)  ->  Abs (  1055,   620)
+	 66: Rel (   -41,     0)  ->  Abs (  1014,   620)
+	 67: Rel (     0,    53)  ->  Abs (  1014,   673)
+	 68: Rel (     0,   108)  ->  Abs (  1014,   781)
+	 69: Rel (   -84,     0)  ->  Abs (   930,   781)
+	 70: Rel (   -49,   -38)  ->  Abs (   881,   743)
+	 71: Rel (   -21,   -17)  ->  Abs (   860,   726)
+	 72: Rel (   -75,   -91)  ->  Abs (   785,   635)
+	 73: Rel (  -106,  -130)  ->  Abs (   679,   505)
+	 74: Rel (   -54,   -33)  ->  Abs (   625,   472)
+	 75: Rel (    75,   -19)  ->  Abs (   700,   453)
+	 76: Rel (    52,   -52)  ->  Abs (   752,   401)
+	 77: Rel (    28,   -27)  ->  Abs (   780,   374)
+	 78: Rel (    64,   -91)  ->  Abs (   844,   283)
+	 79: Rel (   140,  -199)  ->  Abs (   984,    84)
+	 80: Rel (   118,     0)  ->  Abs (  1102,    84)
+	 81: Rel (    70,     0)  ->  Abs (  1172,    84)
+
+	Glyph 1302: off = 0x0003AF0E, len = 254
+	  numberOfContours:	1
+	  xMin:			107
+	  yMin:			-286
+	  xMax:			1165
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  56
+
+	  Length of Instructions:	112
+	00000: NPUSHB      (65):     5    30   128     0     1     0    48    52    30    11 
+	                            43    15     8    31     8     2     8    39   143    11 
+	                           223    11     2    11    58    29    22    25    34    17 
+	                            38    14    30    48    25   208    25     2    25    40 
+	                            51    38    45    32    39    38    13    13    25    37 
+	                            26    38    32     2    14    25    38    19    11    52 
+	                            38     6    19     8     2 
+	00067: SVTCA[y-axis] 
+	00068: MDAP[rd]   
+	00069: MIAP[rd+ci] 
+	00070: MDRP[srp0,nmd,nrd,0] 
+	00071: MIRP[srp0,md,rd,1] 
+	00072: MDRP[nrp0,nmd,nrd,0] 
+	00073: SRP0       
+	00074: MIRP[srp0,md,rd,1] 
+	00075: MDRP[nrp0,nmd,nrd,0] 
+	00076: MIAP[rd+ci] 
+	00077: MIRP[srp0,md,rd,1] 
+	00078: MDRP[nrp0,nmd,nrd,0] 
+	00079: SRP2       
+	00080: IP         
+	00081: MDAP[rd]   
+	00082: MIRP[nrp0,md,rd,1] 
+	00083: SRP0       
+	00084: MDRP[srp0,nmd,nrd,0] 
+	00085: MIRP[srp0,md,rd,1] 
+	00086: MDRP[nrp0,nmd,nrd,0] 
+	00087: SVTCA[x-axis] 
+	00088: MDAP[rd]   
+	00089: DELTAP1    
+	00090: MIRP[srp0,md,rd,1] 
+	00091: MDRP[nrp0,nmd,nrd,0] 
+	00092: MDRP[srp0,md,rd,1] 
+	00093: MDRP[nrp0,nmd,nrd,0] 
+	00094: SRP0       
+	00095: MDRP[srp0,md,rd,1] 
+	00096: MDRP[nrp0,nmd,rd,0] 
+	00097: SRP0       
+	00098: MDRP[srp0,nmd,rd,0] 
+	00099: DELTAP1    
+	00100: MDRP[nrp0,nmd,nrd,0] 
+	00101: MDRP[srp0,md,rd,1] 
+	00102: DELTAP1    
+	00103: MDRP[nrp0,nmd,nrd,0] 
+	00104: SRP0       
+	00105: MIRP[srp0,md,rd,1] 
+	00106: MDRP[nrp0,md,rd,0] 
+	00107: MDRP[srp0,nmd,rd,0] 
+	00108: DELTAP1    
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: IUP[y]     
+	00111: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:  YDual                       X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                         On
+	 13:  YDual                               On
+	 14:        XDual                         On
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                               On
+	 21:  YDual                       X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short On
+	 26:        XDual                         On
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short On
+	 38:        XDual                         On
+	 39:  YDual                               On
+	 40:        XDual                         On
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:        XDual         Y-Short         On
+	 49:        XDual         Y-Short         Off
+	 50:  YDual                       X-Short On
+	 51:  YDual                       X-Short On
+	 52:        XDual                         On
+	 53:  YDual XDual                 X-Short On
+	 54:  YDual XDual                 X-Short Off
+	 55:        XDual         Y-Short X-Short Off
+	 56:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1165,  -219)  ->  Abs (  1165,  -219)
+	  1: Rel (     0,   -67)  ->  Abs (  1165,  -286)
+	  2: Rel (   -41,     0)  ->  Abs (  1124,  -286)
+	  3: Rel (   -45,     0)  ->  Abs (  1079,  -286)
+	  4: Rel (     0,    64)  ->  Abs (  1079,  -222)
+	  5: Rel (     0,   222)  ->  Abs (  1079,     0)
+	  6: Rel (  -292,     0)  ->  Abs (   787,     0)
+	  7: Rel (   -56,     0)  ->  Abs (   731,     0)
+	  8: Rel (     0,    42)  ->  Abs (   731,    42)
+	  9: Rel (     0,    42)  ->  Abs (   731,    84)
+	 10: Rel (    56,     0)  ->  Abs (   787,    84)
+	 11: Rel (   112,     0)  ->  Abs (   899,    84)
+	 12: Rel (     0,   482)  ->  Abs (   899,   566)
+	 13: Rel (  -557,     0)  ->  Abs (   342,   566)
+	 14: Rel (     0,  -482)  ->  Abs (   342,    84)
+	 15: Rel (   113,     0)  ->  Abs (   455,    84)
+	 16: Rel (    56,     0)  ->  Abs (   511,    84)
+	 17: Rel (     0,   -42)  ->  Abs (   511,    42)
+	 18: Rel (     0,   -42)  ->  Abs (   511,     0)
+	 19: Rel (   -56,     0)  ->  Abs (   455,     0)
+	 20: Rel (  -292,     0)  ->  Abs (   163,     0)
+	 21: Rel (   -56,     0)  ->  Abs (   107,     0)
+	 22: Rel (     0,    42)  ->  Abs (   107,    42)
+	 23: Rel (     0,    42)  ->  Abs (   107,    84)
+	 24: Rel (    56,     0)  ->  Abs (   163,    84)
+	 25: Rel (    95,     0)  ->  Abs (   258,    84)
+	 26: Rel (     0,  1002)  ->  Abs (   258,  1086)
+	 27: Rel (   -52,     0)  ->  Abs (   206,  1086)
+	 28: Rel (   -57,     0)  ->  Abs (   149,  1086)
+	 29: Rel (     0,    42)  ->  Abs (   149,  1128)
+	 30: Rel (     0,    42)  ->  Abs (   149,  1170)
+	 31: Rel (    57,     0)  ->  Abs (   206,  1170)
+	 32: Rel (   249,     0)  ->  Abs (   455,  1170)
+	 33: Rel (    56,     0)  ->  Abs (   511,  1170)
+	 34: Rel (     0,   -42)  ->  Abs (   511,  1128)
+	 35: Rel (     0,   -42)  ->  Abs (   511,  1086)
+	 36: Rel (   -56,     0)  ->  Abs (   455,  1086)
+	 37: Rel (  -113,     0)  ->  Abs (   342,  1086)
+	 38: Rel (     0,  -436)  ->  Abs (   342,   650)
+	 39: Rel (   557,     0)  ->  Abs (   899,   650)
+	 40: Rel (     0,   436)  ->  Abs (   899,  1086)
+	 41: Rel (  -112,     0)  ->  Abs (   787,  1086)
+	 42: Rel (   -56,     0)  ->  Abs (   731,  1086)
+	 43: Rel (     0,    42)  ->  Abs (   731,  1128)
+	 44: Rel (     0,    42)  ->  Abs (   731,  1170)
+	 45: Rel (    56,     0)  ->  Abs (   787,  1170)
+	 46: Rel (   249,     0)  ->  Abs (  1036,  1170)
+	 47: Rel (    57,     0)  ->  Abs (  1093,  1170)
+	 48: Rel (     0,   -42)  ->  Abs (  1093,  1128)
+	 49: Rel (     0,   -42)  ->  Abs (  1093,  1086)
+	 50: Rel (   -57,     0)  ->  Abs (  1036,  1086)
+	 51: Rel (   -52,     0)  ->  Abs (   984,  1086)
+	 52: Rel (     0, -1002)  ->  Abs (   984,    84)
+	 53: Rel (   110,     0)  ->  Abs (  1094,    84)
+	 54: Rel (    45,     0)  ->  Abs (  1139,    84)
+	 55: Rel (    26,   -25)  ->  Abs (  1165,    59)
+	 56: Rel (     0,   -45)  ->  Abs (  1165,    14)
+
+	Glyph 1303: off = 0x0003B00C, len = 244
+	  numberOfContours:	1
+	  xMin:			107
+	  yMin:			-211
+	  xMax:			1152
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  56
+
+	  Length of Instructions:	102
+	00000: NPUSHB      (56):     5    32     0    48    52    32    11    43    15     8 
+	                            31     8     2     8    39    11    58    29    22    25 
+	                            34     0    17     1    17    38    14    32    48    25 
+	                             1    25    40    51    33    45    32    39    33    13 
+	                            13    25    37    26    33    32     6    14    25    19 
+	                            52    11     6    19    10     2 
+	00058: SVTCA[y-axis] 
+	00059: MDAP[rd]   
+	00060: MIAP[rd+ci] 
+	00061: MDRP[srp0,nmd,nrd,0] 
+	00062: MDRP[srp0,md,rd,1] 
+	00063: MDRP[nrp0,nmd,nrd,0] 
+	00064: SRP0       
+	00065: MDRP[srp0,md,rd,1] 
+	00066: MDRP[nrp0,nmd,nrd,0] 
+	00067: MIAP[rd+ci] 
+	00068: MIRP[srp0,md,rd,1] 
+	00069: MDRP[nrp0,nmd,nrd,0] 
+	00070: SRP2       
+	00071: IP         
+	00072: MDAP[rd]   
+	00073: MIRP[nrp0,md,rd,1] 
+	00074: SRP0       
+	00075: MDRP[srp0,nmd,nrd,0] 
+	00076: MIRP[srp0,md,rd,1] 
+	00077: MDRP[nrp0,nmd,nrd,0] 
+	00078: SVTCA[x-axis] 
+	00079: MDAP[rd]   
+	00080: DELTAP1    
+	00081: MIRP[srp0,md,rd,1] 
+	00082: MDRP[nrp0,nmd,nrd,0] 
+	00083: MDRP[srp0,md,rd,1] 
+	00084: DELTAP1    
+	00085: MDRP[nrp0,nmd,rd,0] 
+	00086: SRP0       
+	00087: MDRP[srp0,md,rd,1] 
+	00088: MDRP[nrp0,nmd,rd,0] 
+	00089: SRP0       
+	00090: MDRP[srp0,nmd,rd,0] 
+	00091: MDRP[nrp0,nmd,nrd,0] 
+	00092: MDRP[srp0,md,rd,1] 
+	00093: DELTAP1    
+	00094: MDRP[nrp0,nmd,rd,0] 
+	00095: SRP0       
+	00096: MIRP[srp0,md,rd,1] 
+	00097: MDRP[nrp0,md,rd,0] 
+	00098: MDRP[srp0,nmd,rd,0] 
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: IUP[y]     
+	00101: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:  YDual                       X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short On
+	 12:        XDual                         On
+	 13:  YDual                               On
+	 14:        XDual                         On
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                               On
+	 21:  YDual                       X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short On
+	 26:        XDual                         On
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short On
+	 38:        XDual                         On
+	 39:  YDual                               On
+	 40:        XDual                         On
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:        XDual         Y-Short         On
+	 49:        XDual         Y-Short         Off
+	 50:  YDual                       X-Short On
+	 51:  YDual                       X-Short On
+	 52:        XDual                         On
+	 53:  YDual XDual                 X-Short On
+	 54:  YDual XDual                 X-Short Off
+	 55:        XDual         Y-Short X-Short Off
+	 56:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1152,  -143)  ->  Abs (  1152,  -143)
+	  1: Rel (     0,   -68)  ->  Abs (  1152,  -211)
+	  2: Rel (   -42,     0)  ->  Abs (  1110,  -211)
+	  3: Rel (   -44,     0)  ->  Abs (  1066,  -211)
+	  4: Rel (     0,    65)  ->  Abs (  1066,  -146)
+	  5: Rel (     0,   146)  ->  Abs (  1066,     0)
+	  6: Rel (  -274,     0)  ->  Abs (   792,     0)
+	  7: Rel (   -56,     0)  ->  Abs (   736,     0)
+	  8: Rel (     0,    42)  ->  Abs (   736,    42)
+	  9: Rel (     0,    42)  ->  Abs (   736,    84)
+	 10: Rel (    56,     0)  ->  Abs (   792,    84)
+	 11: Rel (    95,     0)  ->  Abs (   887,    84)
+	 12: Rel (     0,   329)  ->  Abs (   887,   413)
+	 13: Rel (  -545,     0)  ->  Abs (   342,   413)
+	 14: Rel (     0,  -329)  ->  Abs (   342,    84)
+	 15: Rel (    95,     0)  ->  Abs (   437,    84)
+	 16: Rel (    56,     0)  ->  Abs (   493,    84)
+	 17: Rel (     0,   -42)  ->  Abs (   493,    42)
+	 18: Rel (     0,   -42)  ->  Abs (   493,     0)
+	 19: Rel (   -56,     0)  ->  Abs (   437,     0)
+	 20: Rel (  -274,     0)  ->  Abs (   163,     0)
+	 21: Rel (   -56,     0)  ->  Abs (   107,     0)
+	 22: Rel (     0,    42)  ->  Abs (   107,    42)
+	 23: Rel (     0,    42)  ->  Abs (   107,    84)
+	 24: Rel (    56,     0)  ->  Abs (   163,    84)
+	 25: Rel (    95,     0)  ->  Abs (   258,    84)
+	 26: Rel (     0,   697)  ->  Abs (   258,   781)
+	 27: Rel (   -65,     0)  ->  Abs (   193,   781)
+	 28: Rel (   -56,     0)  ->  Abs (   137,   781)
+	 29: Rel (     0,    42)  ->  Abs (   137,   823)
+	 30: Rel (     0,    43)  ->  Abs (   137,   866)
+	 31: Rel (    56,     0)  ->  Abs (   193,   866)
+	 32: Rel (   214,     0)  ->  Abs (   407,   866)
+	 33: Rel (    56,     0)  ->  Abs (   463,   866)
+	 34: Rel (     0,   -43)  ->  Abs (   463,   823)
+	 35: Rel (     0,   -42)  ->  Abs (   463,   781)
+	 36: Rel (   -56,     0)  ->  Abs (   407,   781)
+	 37: Rel (   -65,     0)  ->  Abs (   342,   781)
+	 38: Rel (     0,  -283)  ->  Abs (   342,   498)
+	 39: Rel (   545,     0)  ->  Abs (   887,   498)
+	 40: Rel (     0,   283)  ->  Abs (   887,   781)
+	 41: Rel (   -64,     0)  ->  Abs (   823,   781)
+	 42: Rel (   -57,     0)  ->  Abs (   766,   781)
+	 43: Rel (     0,    42)  ->  Abs (   766,   823)
+	 44: Rel (     0,    43)  ->  Abs (   766,   866)
+	 45: Rel (    57,     0)  ->  Abs (   823,   866)
+	 46: Rel (   213,     0)  ->  Abs (  1036,   866)
+	 47: Rel (    56,     0)  ->  Abs (  1092,   866)
+	 48: Rel (     0,   -43)  ->  Abs (  1092,   823)
+	 49: Rel (     0,   -42)  ->  Abs (  1092,   781)
+	 50: Rel (   -56,     0)  ->  Abs (  1036,   781)
+	 51: Rel (   -65,     0)  ->  Abs (   971,   781)
+	 52: Rel (     0,  -697)  ->  Abs (   971,    84)
+	 53: Rel (   110,     0)  ->  Abs (  1081,    84)
+	 54: Rel (    45,     0)  ->  Abs (  1126,    84)
+	 55: Rel (    26,   -25)  ->  Abs (  1152,    59)
+	 56: Rel (     0,   -45)  ->  Abs (  1152,    14)
+
+	Glyph 1304: off = 0x0003B100, len = 222
+	  numberOfContours:	1
+	  xMin:			98
+	  yMin:			0
+	  xMax:			1128
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  38
+
+	  Length of Instructions:	111
+	00000: NPUSHB      (58):    34    31    26    29    31    30    30    30     4     3 
+	                            20     4    30    29     4     3    29    30    30    30 
+	                            17    18    20    17    17    18    21    18    17    31 
+	                             0     3     8     4    30    13    17     3    31    38 
+	                            36    24     4    30    18    17    17    16    29    18 
+	                            38    24     2     5    16    38    11     8 
+	00060: SVTCA[y-axis] 
+	00061: MIAP[rd+ci] 
+	00062: MIRP[srp0,md,rd,1] 
+	00063: MDRP[nrp0,nmd,nrd,0] 
+	00064: MIAP[rd+ci] 
+	00065: MIRP[srp0,md,rd,1] 
+	00066: MDRP[nrp0,nmd,nrd,0] 
+	00067: SRP2       
+	00068: IP         
+	00069: MDAP[rd]   
+	00070: SRP2       
+	00071: IP         
+	00072: SHP[rp1,zp0] 
+	00073: SRP0       
+	00074: MDRP[srp0,nmd,nrd,0] 
+	00075: MIRP[srp0,md,rd,1] 
+	00076: MDRP[nrp0,nmd,nrd,0] 
+	00077: SVTCA[x-axis] 
+	00078: MDAP[rd]   
+	00079: MDRP[nrp0,md,rd,0] 
+	00080: MIRP[srp0,md,rd,1] 
+	00081: MDRP[nrp0,md,rd,0] 
+	00082: MDRP[srp0,md,rd,2] 
+	00083: MDRP[nrp0,md,rd,1] 
+	00084: SHP[rp1,zp0] 
+	00085: SRP0       
+	00086: MDRP[srp0,md,rd,2] 
+	00087: MDRP[nrp0,md,rd,1] 
+	00088: SDPVTL[1]  
+	00089: SRP0       
+	00090: CALL       
+	00091: RDTG       
+	00092: SRP0       
+	00093: MDRP[nrp0,nmd,rd,0] 
+	00094: SDPVTL[1]  
+	00095: SFVTL[=p1,p2] 
+	00096: RTG        
+	00097: SRP0       
+	00098: CALL       
+	00099: SFVTCA[x-axis] 
+	00100: RDTG       
+	00101: SRP0       
+	00102: MDRP[nrp0,nmd,rd,0] 
+	00103: SVTCA[x-axis] 
+	00104: RTG        
+	00105: SRP0       
+	00106: MDRP[nrp0,md,rd,1] 
+	00107: SRP0       
+	00108: MDRP[nrp0,md,rd,1] 
+	00109: IUP[y]     
+	00110: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short On
+	  4:                                      On
+	  5:        XDual                         On
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                               On
+	 12:  YDual                       X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short On
+	 17:        XDual                         On
+	 18:                                      On
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short On
+	 30:                                      On
+	 31:                                      On
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1128,  1128)  ->  Abs (  1128,  1128)
+	  1: Rel (     0,   -42)  ->  Abs (  1128,  1086)
+	  2: Rel (   -57,     0)  ->  Abs (  1071,  1086)
+	  3: Rel (   -48,     0)  ->  Abs (  1023,  1086)
+	  4: Rel (  -366,  -560)  ->  Abs (   657,   526)
+	  5: Rel (     0,  -442)  ->  Abs (   657,    84)
+	  6: Rel (   179,     0)  ->  Abs (   836,    84)
+	  7: Rel (    56,     0)  ->  Abs (   892,    84)
+	  8: Rel (     0,   -42)  ->  Abs (   892,    42)
+	  9: Rel (     0,   -42)  ->  Abs (   892,     0)
+	 10: Rel (   -56,     0)  ->  Abs (   836,     0)
+	 11: Rel (  -443,     0)  ->  Abs (   393,     0)
+	 12: Rel (   -56,     0)  ->  Abs (   337,     0)
+	 13: Rel (     0,    42)  ->  Abs (   337,    42)
+	 14: Rel (     0,    42)  ->  Abs (   337,    84)
+	 15: Rel (    56,     0)  ->  Abs (   393,    84)
+	 16: Rel (   179,     0)  ->  Abs (   572,    84)
+	 17: Rel (     0,   442)  ->  Abs (   572,   526)
+	 18: Rel (  -368,   560)  ->  Abs (   204,  1086)
+	 19: Rel (   -50,     0)  ->  Abs (   154,  1086)
+	 20: Rel (   -56,     0)  ->  Abs (    98,  1086)
+	 21: Rel (     0,    42)  ->  Abs (    98,  1128)
+	 22: Rel (     0,    42)  ->  Abs (    98,  1170)
+	 23: Rel (    56,     0)  ->  Abs (   154,  1170)
+	 24: Rel (   230,     0)  ->  Abs (   384,  1170)
+	 25: Rel (    56,     0)  ->  Abs (   440,  1170)
+	 26: Rel (     0,   -42)  ->  Abs (   440,  1128)
+	 27: Rel (     0,   -42)  ->  Abs (   440,  1086)
+	 28: Rel (   -56,     0)  ->  Abs (   384,  1086)
+	 29: Rel (   -81,     0)  ->  Abs (   303,  1086)
+	 30: Rel (   311,  -472)  ->  Abs (   614,   614)
+	 31: Rel (   311,   472)  ->  Abs (   925,  1086)
+	 32: Rel (   -82,     0)  ->  Abs (   843,  1086)
+	 33: Rel (   -56,     0)  ->  Abs (   787,  1086)
+	 34: Rel (     0,    42)  ->  Abs (   787,  1128)
+	 35: Rel (     0,    42)  ->  Abs (   787,  1170)
+	 36: Rel (    56,     0)  ->  Abs (   843,  1170)
+	 37: Rel (   228,     0)  ->  Abs (  1071,  1170)
+	 38: Rel (    57,     0)  ->  Abs (  1128,  1170)
+
+	Glyph 1305: off = 0x0003B1DE, len = 230
+	  numberOfContours:	1
+	  xMin:			149
+	  yMin:			-386
+	  xMax:			1176
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  41
+
+	  Length of Instructions:	110
+	00000: NPUSHB      (61):    37    34    29    32    33    34    33    32    34    32 
+	                             4     5    20     4     4     5    33    32    32    32 
+	                            19    18    20    19    18    22    19    18    34     0 
+	                             4     9     5    32    14    48    18   112    18   160 
+	                            18     3    18     4    34    33    39    27    32    19 
+	                            33    27     6    33     5    18    10     6    17    33 
+	                            12 
+	00063: SVTCA[y-axis] 
+	00064: MDAP[rd]   
+	00065: MIRP[srp0,md,rd,1] 
+	00066: MDRP[nrp0,nmd,nrd,0] 
+	00067: MIAP[rd+ci] 
+	00068: MDRP[nrp0,nmd,nrd,0] 
+	00069: SHP[rp1,zp0] 
+	00070: MIAP[rd+ci] 
+	00071: MIRP[srp0,md,rd,1] 
+	00072: MDRP[nrp0,nmd,nrd,0] 
+	00073: SRP0       
+	00074: MDRP[srp0,nmd,nrd,0] 
+	00075: MIRP[srp0,md,rd,1] 
+	00076: MDRP[nrp0,nmd,nrd,0] 
+	00077: SVTCA[x-axis] 
+	00078: MDAP[rd]   
+	00079: DELTAP1    
+	00080: MDRP[nrp0,md,rd,0] 
+	00081: MIRP[srp0,md,rd,1] 
+	00082: MDRP[nrp0,md,rd,0] 
+	00083: MDRP[srp0,md,rd,2] 
+	00084: MDRP[nrp0,md,rd,1] 
+	00085: SHP[rp1,zp0] 
+	00086: SRP0       
+	00087: MDRP[srp0,md,rd,2] 
+	00088: MDRP[nrp0,md,rd,1] 
+	00089: SDPVTL[1]  
+	00090: CALL       
+	00091: RDTG       
+	00092: SRP0       
+	00093: MDRP[nrp0,nmd,rd,0] 
+	00094: SDPVTL[1]  
+	00095: RTG        
+	00096: SRP0       
+	00097: CALL       
+	00098: SFVTL[=p1,p2] 
+	00099: RDTG       
+	00100: SRP0       
+	00101: MDRP[nrp0,nmd,rd,0] 
+	00102: SVTCA[x-axis] 
+	00103: RTG        
+	00104: SRP0       
+	00105: MDRP[nrp0,md,rd,1] 
+	00106: SRP0       
+	00107: MDRP[nrp0,md,rd,1] 
+	00108: IUP[y]     
+	00109: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:                                      On
+	  6:        XDual                         On
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                               On
+	 13:  YDual                       X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short On
+	 18:        XDual                         On
+	 19:                                      On
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short On
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short On
+	 33:                                      On
+	 34:                                      On
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual XDual         Y-Short         Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1176,   823)  ->  Abs (  1176,   823)
+	  1: Rel (     0,   -29)  ->  Abs (  1176,   794)
+	  2: Rel (   -26,    -9)  ->  Abs (  1150,   785)
+	  3: Rel (   -11,    -4)  ->  Abs (  1139,   781)
+	  4: Rel (   -45,     0)  ->  Abs (  1094,   781)
+	  5: Rel (  -388,  -781)  ->  Abs (   706,     0)
+	  6: Rel (     0,  -302)  ->  Abs (   706,  -302)
+	  7: Rel (   210,     0)  ->  Abs (   916,  -302)
+	  8: Rel (    57,     0)  ->  Abs (   973,  -302)
+	  9: Rel (     0,   -42)  ->  Abs (   973,  -344)
+	 10: Rel (     0,   -42)  ->  Abs (   973,  -386)
+	 11: Rel (   -57,     0)  ->  Abs (   916,  -386)
+	 12: Rel (  -504,     0)  ->  Abs (   412,  -386)
+	 13: Rel (   -56,     0)  ->  Abs (   356,  -386)
+	 14: Rel (     0,    42)  ->  Abs (   356,  -344)
+	 15: Rel (     0,    42)  ->  Abs (   356,  -302)
+	 16: Rel (    56,     0)  ->  Abs (   412,  -302)
+	 17: Rel (   210,     0)  ->  Abs (   622,  -302)
+	 18: Rel (     0,   302)  ->  Abs (   622,     0)
+	 19: Rel (  -392,   781)  ->  Abs (   230,   781)
+	 20: Rel (   -25,     0)  ->  Abs (   205,   781)
+	 21: Rel (   -56,     0)  ->  Abs (   149,   781)
+	 22: Rel (     0,    42)  ->  Abs (   149,   823)
+	 23: Rel (     0,    29)  ->  Abs (   149,   852)
+	 24: Rel (    24,    10)  ->  Abs (   173,   862)
+	 25: Rel (     9,     4)  ->  Abs (   182,   866)
+	 26: Rel (    23,     0)  ->  Abs (   205,   866)
+	 27: Rel (   230,     0)  ->  Abs (   435,   866)
+	 28: Rel (    56,     0)  ->  Abs (   491,   866)
+	 29: Rel (     0,   -43)  ->  Abs (   491,   823)
+	 30: Rel (     0,   -42)  ->  Abs (   491,   781)
+	 31: Rel (   -56,     0)  ->  Abs (   435,   781)
+	 32: Rel (  -113,     0)  ->  Abs (   322,   781)
+	 33: Rel (   343,  -689)  ->  Abs (   665,    92)
+	 34: Rel (   338,   689)  ->  Abs (  1003,   781)
+	 35: Rel (  -113,     0)  ->  Abs (   890,   781)
+	 36: Rel (   -56,     0)  ->  Abs (   834,   781)
+	 37: Rel (     0,    43)  ->  Abs (   834,   824)
+	 38: Rel (     0,    42)  ->  Abs (   834,   866)
+	 39: Rel (    56,     0)  ->  Abs (   890,   866)
+	 40: Rel (   229,     0)  ->  Abs (  1119,   866)
+	 41: Rel (    57,     0)  ->  Abs (  1176,   866)
+
+	Glyph 1306: off = 0x0003B2C4, len = 270
+	  numberOfContours:	1
+	  xMin:			98
+	  yMin:			0
+	  xMax:			1128
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  52
+
+	  Length of Instructions:	128
+	00000: NPUSHB      (67):    40    43    48    45    44    44    30     4     3    20 
+	                             4    44    43     4     3    43    44    44    30    31 
+	                            32    20    31    31    32     0     3    15    12     8 
+	                             4    30    31    35    32    27    23    20    31     3 
+	                            45    38    50    38    11    24    38     5    29    44 
+	                             4    31    29    31    29    31    23    43    32    38 
+	                            38     2    12    23    38    18     8 
+	00069: SVTCA[y-axis] 
+	00070: MIAP[rd+ci] 
+	00071: MIRP[srp0,md,rd,1] 
+	00072: MDRP[nrp0,nmd,nrd,0] 
+	00073: MIAP[rd+ci] 
+	00074: MIRP[srp0,md,rd,1] 
+	00075: MDRP[nrp0,nmd,nrd,0] 
+	00076: SRP2       
+	00077: IP         
+	00078: IP         
+	00079: MDAP[rd]   
+	00080: MDAP[rd]   
+	00081: SRP0       
+	00082: MDRP[nrp0,nmd,nrd,0] 
+	00083: SHP[rp1,zp0] 
+	00084: SRP0       
+	00085: MDRP[nrp0,nmd,nrd,0] 
+	00086: MIRP[srp0,md,rd,1] 
+	00087: MDRP[nrp0,nmd,nrd,0] 
+	00088: SRP0       
+	00089: MDRP[srp0,nmd,nrd,0] 
+	00090: MIRP[srp0,md,rd,1] 
+	00091: MDRP[nrp0,nmd,nrd,0] 
+	00092: SVTCA[x-axis] 
+	00093: MDAP[rd]   
+	00094: MDRP[nrp0,md,rd,0] 
+	00095: MDRP[nrp0,nmd,nrd,0] 
+	00096: MDRP[nrp0,md,rd,0] 
+	00097: MDRP[srp0,md,rd,2] 
+	00098: MDRP[nrp0,md,rd,1] 
+	00099: SRP0       
+	00100: MIRP[srp0,md,rd,1] 
+	00101: MDRP[nrp0,md,rd,0] 
+	00102: MDRP[nrp0,nmd,nrd,0] 
+	00103: MDRP[nrp0,md,rd,0] 
+	00104: MDRP[srp0,md,rd,2] 
+	00105: MDRP[nrp0,md,rd,1] 
+	00106: SDPVTL[1]  
+	00107: SRP0       
+	00108: CALL       
+	00109: RDTG       
+	00110: SRP0       
+	00111: MDRP[nrp0,nmd,rd,0] 
+	00112: SDPVTL[1]  
+	00113: SFVTL[=p1,p2] 
+	00114: RTG        
+	00115: SRP0       
+	00116: CALL       
+	00117: SFVTCA[x-axis] 
+	00118: RDTG       
+	00119: SRP0       
+	00120: MDRP[srp0,nmd,rd,0] 
+	00121: SVTCA[x-axis] 
+	00122: RTG        
+	00123: MDRP[nrp0,md,rd,1] 
+	00124: SRP0       
+	00125: MDRP[nrp0,md,rd,1] 
+	00126: IUP[y]     
+	00127: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short On
+	  4:                                      On
+	  5:        XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                               On
+	 12:        XDual                         On
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                               On
+	 19:  YDual                       X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short On
+	 24:        XDual                         On
+	 25:  YDual                               On
+	 26:  YDual                       X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual                               On
+	 31:  YDual XDual         Y-Short         On
+	 32:                                      On
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:  YDual                       X-Short On
+	 43:  YDual                       X-Short On
+	 44:                                      On
+	 45:                                      On
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:  YDual XDual         Y-Short         On
+	 49:  YDual XDual         Y-Short         Off
+	 50:  YDual XDual                 X-Short On
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1128,  1128)  ->  Abs (  1128,  1128)
+	  1: Rel (     0,   -42)  ->  Abs (  1128,  1086)
+	  2: Rel (   -57,     0)  ->  Abs (  1071,  1086)
+	  3: Rel (   -48,     0)  ->  Abs (  1023,  1086)
+	  4: Rel (  -366,  -560)  ->  Abs (   657,   526)
+	  5: Rel (     0,   -33)  ->  Abs (   657,   493)
+	  6: Rel (   271,     0)  ->  Abs (   928,   493)
+	  7: Rel (    41,     0)  ->  Abs (   969,   493)
+	  8: Rel (     0,   -30)  ->  Abs (   969,   463)
+	  9: Rel (     0,   -30)  ->  Abs (   969,   433)
+	 10: Rel (   -41,     0)  ->  Abs (   928,   433)
+	 11: Rel (  -271,     0)  ->  Abs (   657,   433)
+	 12: Rel (     0,  -349)  ->  Abs (   657,    84)
+	 13: Rel (   179,     0)  ->  Abs (   836,    84)
+	 14: Rel (    56,     0)  ->  Abs (   892,    84)
+	 15: Rel (     0,   -42)  ->  Abs (   892,    42)
+	 16: Rel (     0,   -42)  ->  Abs (   892,     0)
+	 17: Rel (   -56,     0)  ->  Abs (   836,     0)
+	 18: Rel (  -443,     0)  ->  Abs (   393,     0)
+	 19: Rel (   -56,     0)  ->  Abs (   337,     0)
+	 20: Rel (     0,    42)  ->  Abs (   337,    42)
+	 21: Rel (     0,    42)  ->  Abs (   337,    84)
+	 22: Rel (    56,     0)  ->  Abs (   393,    84)
+	 23: Rel (   179,     0)  ->  Abs (   572,    84)
+	 24: Rel (     0,   349)  ->  Abs (   572,   433)
+	 25: Rel (  -271,     0)  ->  Abs (   301,   433)
+	 26: Rel (   -40,     0)  ->  Abs (   261,   433)
+	 27: Rel (     0,    30)  ->  Abs (   261,   463)
+	 28: Rel (     0,    30)  ->  Abs (   261,   493)
+	 29: Rel (    40,     0)  ->  Abs (   301,   493)
+	 30: Rel (   271,     0)  ->  Abs (   572,   493)
+	 31: Rel (     0,    33)  ->  Abs (   572,   526)
+	 32: Rel (  -368,   560)  ->  Abs (   204,  1086)
+	 33: Rel (   -50,     0)  ->  Abs (   154,  1086)
+	 34: Rel (   -56,     0)  ->  Abs (    98,  1086)
+	 35: Rel (     0,    42)  ->  Abs (    98,  1128)
+	 36: Rel (     0,    42)  ->  Abs (    98,  1170)
+	 37: Rel (    56,     0)  ->  Abs (   154,  1170)
+	 38: Rel (   230,     0)  ->  Abs (   384,  1170)
+	 39: Rel (    56,     0)  ->  Abs (   440,  1170)
+	 40: Rel (     0,   -42)  ->  Abs (   440,  1128)
+	 41: Rel (     0,   -42)  ->  Abs (   440,  1086)
+	 42: Rel (   -56,     0)  ->  Abs (   384,  1086)
+	 43: Rel (   -81,     0)  ->  Abs (   303,  1086)
+	 44: Rel (   311,  -472)  ->  Abs (   614,   614)
+	 45: Rel (   311,   472)  ->  Abs (   925,  1086)
+	 46: Rel (   -82,     0)  ->  Abs (   843,  1086)
+	 47: Rel (   -56,     0)  ->  Abs (   787,  1086)
+	 48: Rel (     0,    42)  ->  Abs (   787,  1128)
+	 49: Rel (     0,    42)  ->  Abs (   787,  1170)
+	 50: Rel (    56,     0)  ->  Abs (   843,  1170)
+	 51: Rel (   228,     0)  ->  Abs (  1071,  1170)
+	 52: Rel (    57,     0)  ->  Abs (  1128,  1170)
+
+	Glyph 1307: off = 0x0003B3D2, len = 284
+	  numberOfContours:	1
+	  xMin:			149
+	  yMin:			-386
+	  xMax:			1176
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  53
+
+	  Length of Instructions:	137
+	00000: NPUSHB      (80):    49    46    41    44    45    46    45    44    46    32 
+	                             4     5    20     4     4     5    45    44    44    32 
+	                            31    30    20    31    30    34    31    30    46     0 
+	                             4    15    12     8     5    32    27    23    20    48 
+	                            30   112    30   160    30     3    30     4    46    33 
+	                            51    39    44    31    33    39     6    11    25    33 
+	                            45     5    15    30    31    30    47    30     3    30 
+	                            10    12    23    33    48    18    64    18     2    18 
+	00082: SVTCA[y-axis] 
+	00083: MDAP[rd]   
+	00084: DELTAP1    
+	00085: MIRP[srp0,md,rd,1] 
+	00086: MDRP[nrp0,nmd,nrd,0] 
+	00087: MIAP[rd+ci] 
+	00088: DELTAP1    
+	00089: MDRP[nrp0,nmd,nrd,0] 
+	00090: SHP[rp1,zp0] 
+	00091: MIRP[srp0,md,rd,1] 
+	00092: MDRP[nrp0,nmd,nrd,0] 
+	00093: MIAP[rd+ci] 
+	00094: MIRP[srp0,md,rd,1] 
+	00095: MDRP[nrp0,nmd,nrd,0] 
+	00096: SRP0       
+	00097: MDRP[srp0,nmd,nrd,0] 
+	00098: MIRP[srp0,md,rd,1] 
+	00099: MDRP[nrp0,nmd,nrd,0] 
+	00100: SVTCA[x-axis] 
+	00101: MDAP[rd]   
+	00102: DELTAP1    
+	00103: MDRP[nrp0,md,rd,0] 
+	00104: MDRP[nrp0,nmd,nrd,0] 
+	00105: MDRP[nrp0,md,rd,1] 
+	00106: MIRP[srp0,md,rd,1] 
+	00107: MDRP[nrp0,md,rd,1] 
+	00108: MDRP[nrp0,nmd,nrd,0] 
+	00109: MDRP[nrp0,md,rd,0] 
+	00110: MDRP[srp0,md,rd,2] 
+	00111: MDRP[nrp0,md,rd,1] 
+	00112: SHP[rp1,zp0] 
+	00113: SRP0       
+	00114: MDRP[srp0,md,rd,2] 
+	00115: MDRP[nrp0,md,rd,1] 
+	00116: SDPVTL[1]  
+	00117: CALL       
+	00118: RDTG       
+	00119: SRP0       
+	00120: MDRP[nrp0,nmd,rd,0] 
+	00121: SDPVTL[1]  
+	00122: RTG        
+	00123: SRP0       
+	00124: CALL       
+	00125: SFVTL[=p1,p2] 
+	00126: RDTG       
+	00127: SRP0       
+	00128: MDRP[nrp0,nmd,rd,0] 
+	00129: SVTCA[x-axis] 
+	00130: RTG        
+	00131: SRP0       
+	00132: MDRP[nrp0,md,rd,1] 
+	00133: SRP0       
+	00134: MDRP[nrp0,md,rd,1] 
+	00135: IUP[y]     
+	00136: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:                                      On
+	  6:  YDual                               On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                               On
+	 12:        XDual         Y-Short         On
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                               On
+	 19:  YDual                       X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual                               On
+	 26:  YDual                       X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual                               On
+	 31:                                      On
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:        XDual         Y-Short         Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short On
+	 45:                                      On
+	 46:                                      On
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short Off
+	 49:  YDual XDual         Y-Short         On
+	 50:  YDual XDual         Y-Short         Off
+	 51:  YDual XDual                 X-Short On
+	 52:  YDual XDual                 X-Short On
+	 53:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1176,   823)  ->  Abs (  1176,   823)
+	  1: Rel (     0,   -29)  ->  Abs (  1176,   794)
+	  2: Rel (   -26,    -9)  ->  Abs (  1150,   785)
+	  3: Rel (   -11,    -4)  ->  Abs (  1139,   781)
+	  4: Rel (   -45,     0)  ->  Abs (  1094,   781)
+	  5: Rel (  -388,  -781)  ->  Abs (   706,     0)
+	  6: Rel (   271,     0)  ->  Abs (   977,     0)
+	  7: Rel (    41,     0)  ->  Abs (  1018,     0)
+	  8: Rel (     0,   -29)  ->  Abs (  1018,   -29)
+	  9: Rel (     0,   -30)  ->  Abs (  1018,   -59)
+	 10: Rel (   -41,     0)  ->  Abs (   977,   -59)
+	 11: Rel (  -271,     0)  ->  Abs (   706,   -59)
+	 12: Rel (     0,  -243)  ->  Abs (   706,  -302)
+	 13: Rel (   210,     0)  ->  Abs (   916,  -302)
+	 14: Rel (    57,     0)  ->  Abs (   973,  -302)
+	 15: Rel (     0,   -42)  ->  Abs (   973,  -344)
+	 16: Rel (     0,   -42)  ->  Abs (   973,  -386)
+	 17: Rel (   -57,     0)  ->  Abs (   916,  -386)
+	 18: Rel (  -504,     0)  ->  Abs (   412,  -386)
+	 19: Rel (   -56,     0)  ->  Abs (   356,  -386)
+	 20: Rel (     0,    42)  ->  Abs (   356,  -344)
+	 21: Rel (     0,    42)  ->  Abs (   356,  -302)
+	 22: Rel (    56,     0)  ->  Abs (   412,  -302)
+	 23: Rel (   209,     0)  ->  Abs (   621,  -302)
+	 24: Rel (     0,   243)  ->  Abs (   621,   -59)
+	 25: Rel (  -271,     0)  ->  Abs (   350,   -59)
+	 26: Rel (   -40,     0)  ->  Abs (   310,   -59)
+	 27: Rel (     0,    30)  ->  Abs (   310,   -29)
+	 28: Rel (     0,    29)  ->  Abs (   310,     0)
+	 29: Rel (    40,     0)  ->  Abs (   350,     0)
+	 30: Rel (   271,     0)  ->  Abs (   621,     0)
+	 31: Rel (  -391,   781)  ->  Abs (   230,   781)
+	 32: Rel (   -25,     0)  ->  Abs (   205,   781)
+	 33: Rel (   -56,     0)  ->  Abs (   149,   781)
+	 34: Rel (     0,    42)  ->  Abs (   149,   823)
+	 35: Rel (     0,    29)  ->  Abs (   149,   852)
+	 36: Rel (    24,    10)  ->  Abs (   173,   862)
+	 37: Rel (     9,     4)  ->  Abs (   182,   866)
+	 38: Rel (    23,     0)  ->  Abs (   205,   866)
+	 39: Rel (   230,     0)  ->  Abs (   435,   866)
+	 40: Rel (    56,     0)  ->  Abs (   491,   866)
+	 41: Rel (     0,   -43)  ->  Abs (   491,   823)
+	 42: Rel (     0,   -42)  ->  Abs (   491,   781)
+	 43: Rel (   -56,     0)  ->  Abs (   435,   781)
+	 44: Rel (  -113,     0)  ->  Abs (   322,   781)
+	 45: Rel (   343,  -689)  ->  Abs (   665,    92)
+	 46: Rel (   338,   689)  ->  Abs (  1003,   781)
+	 47: Rel (  -113,     0)  ->  Abs (   890,   781)
+	 48: Rel (   -56,     0)  ->  Abs (   834,   781)
+	 49: Rel (     0,    43)  ->  Abs (   834,   824)
+	 50: Rel (     0,    42)  ->  Abs (   834,   866)
+	 51: Rel (    56,     0)  ->  Abs (   890,   866)
+	 52: Rel (   229,     0)  ->  Abs (  1119,   866)
+	 53: Rel (    57,     0)  ->  Abs (  1176,   866)
+
+	Glyph 1308: off = 0x0003B4EE, len = 312
+	  numberOfContours:	1
+	  xMin:			80
+	  yMin:			-286
+	  xMax:			1181
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  57
+
+	  Length of Instructions:	151
+	00000: NPUSHB      (88):    43    40    35    38     8    11    16    13    12    13 
+	                            51    11    27    52    13    51    53    38    39    25 
+	                            40    53    38    26    25    40    11    27     4    30 
+	                            57    53    13    40    25    40    30    51    13    20 
+	                            51    13    48    51    38    11    27    11    30    53 
+	                            38    20    53    38    53    12    30    27    21    25 
+	                            52    39    26   111    12     1    12    51    40    38 
+	                            45    33    27    38    38    33     2    25    13    38 
+	                            18    53    11    38     6    18     8     2 
+	00090: SVTCA[y-axis] 
+	00091: MDAP[rd]   
+	00092: MIAP[rd+ci] 
+	00093: MDRP[srp0,nmd,nrd,0] 
+	00094: MIRP[srp0,md,rd,1] 
+	00095: MDRP[nrp0,nmd,nrd,0] 
+	00096: SRP0       
+	00097: MIRP[srp0,md,rd,1] 
+	00098: MDRP[nrp0,nmd,nrd,0] 
+	00099: MIAP[rd+ci] 
+	00100: MIRP[srp0,md,rd,1] 
+	00101: MDRP[nrp0,nmd,nrd,0] 
+	00102: SRP0       
+	00103: MDRP[srp0,nmd,nrd,0] 
+	00104: MIRP[srp0,md,rd,1] 
+	00105: MDRP[nrp0,nmd,nrd,0] 
+	00106: SVTCA[x-axis] 
+	00107: MDAP[rd]   
+	00108: DELTAP1    
+	00109: SHP[rp1,zp0] 
+	00110: SHP[rp1,zp0] 
+	00111: SHP[rp1,zp0] 
+	00112: MDRP[srp0,md,rd,1] 
+	00113: MDRP[nrp0,md,rd,1] 
+	00114: MDRP[srp0,nmd,rd,2] 
+	00115: MDRP[nrp0,md,rd,1] 
+	00116: SRP0       
+	00117: MDRP[srp0,md,rd,1] 
+	00118: SDPVTL[1]  
+	00119: CALL       
+	00120: SDPVTL[1]  
+	00121: RDTG       
+	00122: MDRP[nrp0,nmd,rd,0] 
+	00123: SVTCA[x-axis] 
+	00124: RTG        
+	00125: MDRP[srp0,nmd,rd,2] 
+	00126: MDRP[nrp0,md,rd,1] 
+	00127: SDPVTL[1]  
+	00128: CALL       
+	00129: SDPVTL[1]  
+	00130: RDTG       
+	00131: MDRP[nrp0,nmd,rd,0] 
+	00132: SVTCA[x-axis] 
+	00133: RTG        
+	00134: SRP0       
+	00135: MDRP[srp0,md,rd,1] 
+	00136: MIRP[nrp0,md,rd,1] 
+	00137: ISECT      
+	00138: ISECT      
+	00139: ISECT      
+	00140: ISECT      
+	00141: SRP0       
+	00142: MDRP[nrp0,md,rd,1] 
+	00143: SRP0       
+	00144: MDRP[nrp0,md,rd,1] 
+	00145: SRP0       
+	00146: MDRP[nrp0,md,rd,1] 
+	00147: SRP0       
+	00148: MDRP[nrp0,md,rd,1] 
+	00149: IUP[y]     
+	00150: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual                               On
+	  7:  YDual                       X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short On
+	 12:                                      On
+	 13:                                      On
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                               On
+	 20:  YDual                       X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:                                      On
+	 27:                                      On
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short On
+	 39:                                      On
+	 40:                                      On
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:        XDual         Y-Short         On
+	 49:        XDual         Y-Short         Off
+	 50:  YDual                       X-Short On
+	 51:  YDual                       X-Short On
+	 52:                                      On
+	 53:                                      On
+	 54:  YDual XDual                 X-Short On
+	 55:  YDual XDual                 X-Short Off
+	 56:        XDual         Y-Short X-Short Off
+	 57:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1181,  -219)  ->  Abs (  1181,  -219)
+	  1: Rel (     0,   -67)  ->  Abs (  1181,  -286)
+	  2: Rel (   -41,     0)  ->  Abs (  1140,  -286)
+	  3: Rel (   -45,     0)  ->  Abs (  1095,  -286)
+	  4: Rel (     0,    64)  ->  Abs (  1095,  -222)
+	  5: Rel (     0,   222)  ->  Abs (  1095,     0)
+	  6: Rel (  -269,     0)  ->  Abs (   826,     0)
+	  7: Rel (   -56,     0)  ->  Abs (   770,     0)
+	  8: Rel (     0,    42)  ->  Abs (   770,    42)
+	  9: Rel (     0,    42)  ->  Abs (   770,    84)
+	 10: Rel (    56,     0)  ->  Abs (   826,    84)
+	 11: Rel (   134,     0)  ->  Abs (   960,    84)
+	 12: Rel (  -347,   446)  ->  Abs (   613,   530)
+	 13: Rel (  -343,  -446)  ->  Abs (   270,    84)
+	 14: Rel (   134,     0)  ->  Abs (   404,    84)
+	 15: Rel (    56,     0)  ->  Abs (   460,    84)
+	 16: Rel (     0,   -42)  ->  Abs (   460,    42)
+	 17: Rel (     0,   -42)  ->  Abs (   460,     0)
+	 18: Rel (   -56,     0)  ->  Abs (   404,     0)
+	 19: Rel (  -268,     0)  ->  Abs (   136,     0)
+	 20: Rel (   -56,     0)  ->  Abs (    80,     0)
+	 21: Rel (     0,    42)  ->  Abs (    80,    42)
+	 22: Rel (     0,    31)  ->  Abs (    80,    73)
+	 23: Rel (    26,     8)  ->  Abs (   106,    81)
+	 24: Rel (    10,     3)  ->  Abs (   116,    84)
+	 25: Rel (    51,     0)  ->  Abs (   167,    84)
+	 26: Rel (   394,   515)  ->  Abs (   561,   599)
+	 27: Rel (  -376,   487)  ->  Abs (   185,  1086)
+	 28: Rel (   -31,     0)  ->  Abs (   154,  1086)
+	 29: Rel (   -56,     0)  ->  Abs (    98,  1086)
+	 30: Rel (     0,    42)  ->  Abs (    98,  1128)
+	 31: Rel (     0,    42)  ->  Abs (    98,  1170)
+	 32: Rel (    56,     0)  ->  Abs (   154,  1170)
+	 33: Rel (   229,     0)  ->  Abs (   383,  1170)
+	 34: Rel (    57,     0)  ->  Abs (   440,  1170)
+	 35: Rel (     0,   -42)  ->  Abs (   440,  1128)
+	 36: Rel (     0,   -42)  ->  Abs (   440,  1086)
+	 37: Rel (   -57,     0)  ->  Abs (   383,  1086)
+	 38: Rel (   -94,     0)  ->  Abs (   289,  1086)
+	 39: Rel (   324,  -419)  ->  Abs (   613,   667)
+	 40: Rel (   322,   419)  ->  Abs (   935,  1086)
+	 41: Rel (   -94,     0)  ->  Abs (   841,  1086)
+	 42: Rel (   -57,     0)  ->  Abs (   784,  1086)
+	 43: Rel (     0,    42)  ->  Abs (   784,  1128)
+	 44: Rel (     0,    42)  ->  Abs (   784,  1170)
+	 45: Rel (    57,     0)  ->  Abs (   841,  1170)
+	 46: Rel (   230,     0)  ->  Abs (  1071,  1170)
+	 47: Rel (    56,     0)  ->  Abs (  1127,  1170)
+	 48: Rel (     0,   -42)  ->  Abs (  1127,  1128)
+	 49: Rel (     0,   -42)  ->  Abs (  1127,  1086)
+	 50: Rel (   -56,     0)  ->  Abs (  1071,  1086)
+	 51: Rel (   -32,     0)  ->  Abs (  1039,  1086)
+	 52: Rel (  -374,  -487)  ->  Abs (   665,   599)
+	 53: Rel (   399,  -515)  ->  Abs (  1064,    84)
+	 54: Rel (    46,     0)  ->  Abs (  1110,    84)
+	 55: Rel (    45,     0)  ->  Abs (  1155,    84)
+	 56: Rel (    26,   -25)  ->  Abs (  1181,    59)
+	 57: Rel (     0,   -45)  ->  Abs (  1181,    14)
+
+	Glyph 1309: off = 0x0003B626, len = 424
+	  numberOfContours:	1
+	  xMin:			101
+	  yMin:			-211
+	  xMax:			1128
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  58
+
+	  Length of Instructions:	257
+	00000: NPUSHB     (173):    15    44    31    44     2    44    41    15    41    31 
+	                            41     2     0    36    16    36     2    36    39     0 
+	                            39    16    39     2    15     8    31     8   127     8 
+	                             3     8    11    15    11    31    11     2     0    16 
+	                            16    16   112    16     3    16    13     0    13    16 
+	                            13     2    12    13    53    11    27    54    13    53 
+	                            55    39    40    25    41    55    39    26    25    41 
+	                            11    27    39    11    27    11    32    55    39    20 
+	                            55    55    39    41    13    53    13    32    25    41 
+	                            20    25    25    41     4    32    58    11    15    55 
+	                            47    55     2    47    55   127    55   191    55   239 
+	                            55   255    55     5    55    12    49    41    47    53 
+	                            63    53   127    53   255    53     4    53    12    39 
+	                            31   112    27     1    48    27     1    27    12    21 
+	                            13    25    54    40    26    12    53    41    33    46 
+	                            34    40    54    26    12     4    13    39    27    33 
+	                            34     6    25    13    33    18    55    11    33     6 
+	                            18    10     2 
+	00175: SVTCA[y-axis] 
+	00176: MDAP[rd]   
+	00177: MIAP[rd+ci] 
+	00178: MDRP[srp0,nmd,nrd,0] 
+	00179: MIRP[srp0,md,rd,1] 
+	00180: MDRP[nrp0,nmd,nrd,0] 
+	00181: SRP0       
+	00182: MIRP[srp0,md,rd,1] 
+	00183: MDRP[nrp0,nmd,nrd,0] 
+	00184: MIAP[rd+ci] 
+	00185: MIRP[srp0,md,rd,1] 
+	00186: MDRP[nrp0,nmd,nrd,0] 
+	00187: SRP2       
+	00188: SLOOP      
+	00189: IP         
+	00190: SRP0       
+	00191: MDRP[srp0,nmd,nrd,0] 
+	00192: MIRP[srp0,md,rd,1] 
+	00193: MDRP[nrp0,nmd,nrd,0] 
+	00194: SVTCA[x-axis] 
+	00195: MDAP[rd]   
+	00196: SHP[rp1,zp0] 
+	00197: SHP[rp1,zp0] 
+	00198: SHP[rp1,zp0] 
+	00199: MDRP[srp0,md,rd,1] 
+	00200: SHP[rp2,zp1] 
+	00201: MDRP[nrp0,md,rd,1] 
+	00202: SRP0       
+	00203: MDRP[srp0,md,rd,0] 
+	00204: DELTAP1    
+	00205: DELTAP2    
+	00206: MDRP[nrp0,md,rd,1] 
+	00207: SHP[rp1,zp0] 
+	00208: SRP0       
+	00209: MDRP[srp0,md,rd,0] 
+	00210: DELTAP1    
+	00211: SHP[rp2,zp1] 
+	00212: MDRP[nrp0,md,rd,1] 
+	00213: SRP0       
+	00214: MDRP[srp0,md,rd,1] 
+	00215: DELTAP1    
+	00216: DELTAP2    
+	00217: SHP[rp2,zp1] 
+	00218: MDRP[srp0,md,rd,1] 
+	00219: MIRP[nrp0,md,rd,1] 
+	00220: SDPVTL[1]  
+	00221: SRP0       
+	00222: CALL       
+	00223: SDPVTL[1]  
+	00224: RDTG       
+	00225: MDRP[nrp0,nmd,rd,0] 
+	00226: SDPVTL[1]  
+	00227: RTG        
+	00228: SRP0       
+	00229: CALL       
+	00230: SDPVTL[1]  
+	00231: RDTG       
+	00232: MDRP[nrp0,nmd,rd,0] 
+	00233: ISECT      
+	00234: ISECT      
+	00235: ISECT      
+	00236: ISECT      
+	00237: SVTCA[x-axis] 
+	00238: DELTAP1    
+	00239: RTG        
+	00240: SRP0       
+	00241: MDRP[nrp0,md,rd,1] 
+	00242: DELTAP1    
+	00243: DELTAP1    
+	00244: SRP0       
+	00245: MDRP[nrp0,md,rd,1] 
+	00246: DELTAP1    
+	00247: DELTAP1    
+	00248: SRP0       
+	00249: MDRP[nrp0,md,rd,1] 
+	00250: DELTAP1    
+	00251: DELTAP1    
+	00252: SRP0       
+	00253: MDRP[nrp0,md,rd,1] 
+	00254: DELTAP1    
+	00255: IUP[y]     
+	00256: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short On
+	 12:                                      On
+	 13:                                      On
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short         On
+	 17:        XDual         Y-Short         Off
+	 18:  YDual                       X-Short On
+	 19:  YDual                               On
+	 20:  YDual                       X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:                                      On
+	 27:                                      On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short On
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short On
+	 40:                                      On
+	 41:                                      On
+	 42:  YDual                       X-Short On
+	 43:  YDual                       X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short On
+	 48:  YDual XDual                 X-Short Off
+	 49:        XDual         Y-Short         On
+	 50:        XDual         Y-Short         Off
+	 51:                      Y-Short X-Short On
+	 52:                      Y-Short X-Short Off
+	 53:  YDual                       X-Short On
+	 54:                                      On
+	 55:                                      On
+	 56:  YDual XDual                 X-Short Off
+	 57:        XDual         Y-Short X-Short Off
+	 58:        XDual         Y-Short         On
+
+	Coordinates
+	-----------
+	  0: Rel (  1128,  -143)  ->  Abs (  1128,  -143)
+	  1: Rel (     0,   -68)  ->  Abs (  1128,  -211)
+	  2: Rel (   -42,     0)  ->  Abs (  1086,  -211)
+	  3: Rel (   -44,     0)  ->  Abs (  1042,  -211)
+	  4: Rel (     0,    65)  ->  Abs (  1042,  -146)
+	  5: Rel (     0,   146)  ->  Abs (  1042,     0)
+	  6: Rel (  -239,     0)  ->  Abs (   803,     0)
+	  7: Rel (   -57,     0)  ->  Abs (   746,     0)
+	  8: Rel (     0,    42)  ->  Abs (   746,    42)
+	  9: Rel (     0,    42)  ->  Abs (   746,    84)
+	 10: Rel (    57,     0)  ->  Abs (   803,    84)
+	 11: Rel (   139,     0)  ->  Abs (   942,    84)
+	 12: Rel (  -327,   313)  ->  Abs (   615,   397)
+	 13: Rel (  -325,  -313)  ->  Abs (   290,    84)
+	 14: Rel (   140,     0)  ->  Abs (   430,    84)
+	 15: Rel (    56,     0)  ->  Abs (   486,    84)
+	 16: Rel (     0,   -42)  ->  Abs (   486,    42)
+	 17: Rel (     0,   -42)  ->  Abs (   486,     0)
+	 18: Rel (   -56,     0)  ->  Abs (   430,     0)
+	 19: Rel (  -273,     0)  ->  Abs (   157,     0)
+	 20: Rel (   -56,     0)  ->  Abs (   101,     0)
+	 21: Rel (     0,    42)  ->  Abs (   101,    42)
+	 22: Rel (     0,    30)  ->  Abs (   101,    72)
+	 23: Rel (    25,     9)  ->  Abs (   126,    81)
+	 24: Rel (     8,     3)  ->  Abs (   134,    84)
+	 25: Rel (    39,     0)  ->  Abs (   173,    84)
+	 26: Rel (   385,   369)  ->  Abs (   558,   453)
+	 27: Rel (  -342,   328)  ->  Abs (   216,   781)
+	 28: Rel (   -49,     0)  ->  Abs (   167,   781)
+	 29: Rel (   -13,    19)  ->  Abs (   154,   800)
+	 30: Rel (    -8,    12)  ->  Abs (   146,   812)
+	 31: Rel (     0,    12)  ->  Abs (   146,   824)
+	 32: Rel (     0,    42)  ->  Abs (   146,   866)
+	 33: Rel (    57,     0)  ->  Abs (   203,   866)
+	 34: Rel (   229,     0)  ->  Abs (   432,   866)
+	 35: Rel (    56,     0)  ->  Abs (   488,   866)
+	 36: Rel (     0,   -43)  ->  Abs (   488,   823)
+	 37: Rel (     0,   -42)  ->  Abs (   488,   781)
+	 38: Rel (   -56,     0)  ->  Abs (   432,   781)
+	 39: Rel (  -100,     0)  ->  Abs (   332,   781)
+	 40: Rel (   283,  -273)  ->  Abs (   615,   508)
+	 41: Rel (   285,   273)  ->  Abs (   900,   781)
+	 42: Rel (  -100,     0)  ->  Abs (   800,   781)
+	 43: Rel (   -57,     0)  ->  Abs (   743,   781)
+	 44: Rel (     0,    43)  ->  Abs (   743,   824)
+	 45: Rel (     0,    42)  ->  Abs (   743,   866)
+	 46: Rel (    57,     0)  ->  Abs (   800,   866)
+	 47: Rel (   229,     0)  ->  Abs (  1029,   866)
+	 48: Rel (    56,     0)  ->  Abs (  1085,   866)
+	 49: Rel (     0,   -43)  ->  Abs (  1085,   823)
+	 50: Rel (     0,   -28)  ->  Abs (  1085,   795)
+	 51: Rel (   -24,   -10)  ->  Abs (  1061,   785)
+	 52: Rel (   -10,    -4)  ->  Abs (  1051,   781)
+	 53: Rel (   -36,     0)  ->  Abs (  1015,   781)
+	 54: Rel (  -343,  -328)  ->  Abs (   672,   453)
+	 55: Rel (   385,  -369)  ->  Abs (  1057,    84)
+	 56: Rel (    45,     0)  ->  Abs (  1102,    84)
+	 57: Rel (    26,   -25)  ->  Abs (  1128,    59)
+	 58: Rel (     0,   -45)  ->  Abs (  1128,    14)
+
+	Glyph 1310: off = 0x0003B7CE, len = 426
+	  numberOfContours:	1
+	  xMin:			41
+	  yMin:			0
+	  xMax:			1121
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  66
+
+	  Length of Instructions:	254
+	00000: NPUSHB     (173):   181    39     1   164    39     1   133    39   149    39 
+	                             2   244    39     1   213    39   229    39     2   198 
+	                            39     1    58    21    74    21     2     9    21    25 
+	                            21    41    21     3    48    13    30    44     0    17 
+	                            16    17     2    17    17    36    55    51    15     5 
+	                            31     5     2     5     9    30    64    60     0    15 
+	                            64    63    64    79    64    95    64   175    64     5 
+	                            64    68     0    33    16    33     2    33    36    30 
+	                            28    24    46    46    41    63    52    38    57    31 
+	                           179    51     1   164    51     1   150    51     1   229 
+	                            51     1   212    51     1    85    51     1    54    51 
+	                            70    51     2    51   166    49   182    49     2   133 
+	                            49   149    49     2   118    49     1   101    49     1 
+	                            86    49     1    53    49    69    49     2    39    49 
+	                             1   182    49   198    49     2    49    43    41    38 
+	                            20    18    12   249     9     1     9    20    15    20 
+	                            15    20     8    36    25    38    31     2    64     8 
+	                            38     3     8 
+	00175: SVTCA[y-axis] 
+	00176: MIAP[rd+ci] 
+	00177: MIRP[srp0,md,rd,1] 
+	00178: MDRP[nrp0,nmd,nrd,0] 
+	00179: MIAP[rd+ci] 
+	00180: MIRP[srp0,md,rd,1] 
+	00181: MDRP[nrp0,nmd,nrd,0] 
+	00182: SRP2       
+	00183: IP         
+	00184: IP         
+	00185: MDAP[rd]   
+	00186: MDAP[rd]   
+	00187: SRP1       
+	00188: SHP[rp1,zp0] 
+	00189: DELTAP1    
+	00190: SHP[rp1,zp0] 
+	00191: SHP[rp1,zp0] 
+	00192: SRP0       
+	00193: MIRP[nrp0,md,rd,1] 
+	00194: SHP[rp2,zp1] 
+	00195: SHP[rp2,zp1] 
+	00196: DELTAP1    
+	00197: DELTAP2    
+	00198: DELTAP2    
+	00199: DELTAP2    
+	00200: DELTAP2    
+	00201: DELTAP2    
+	00202: DELTAP2    
+	00203: DELTAP2    
+	00204: SHP[rp2,zp1] 
+	00205: DELTAP1    
+	00206: DELTAP1    
+	00207: DELTAP1    
+	00208: DELTAP1    
+	00209: DELTAP2    
+	00210: DELTAP2    
+	00211: DELTAP2    
+	00212: SRP0       
+	00213: MDRP[srp0,nmd,nrd,0] 
+	00214: MIRP[srp0,md,rd,1] 
+	00215: MDRP[nrp0,nmd,nrd,0] 
+	00216: SRP2       
+	00217: IP         
+	00218: MDAP[rd]   
+	00219: SVTCA[x-axis] 
+	00220: MDAP[rd]   
+	00221: MDRP[nrp0,md,rd,0] 
+	00222: MIRP[srp0,md,rd,1] 
+	00223: MDRP[nrp0,md,rd,1] 
+	00224: DELTAP1    
+	00225: SRP0       
+	00226: MDRP[srp0,nmd,rd,0] 
+	00227: DELTAP1    
+	00228: MDRP[srp0,md,rd,1] 
+	00229: MDRP[nrp0,nmd,nrd,0] 
+	00230: SRP0       
+	00231: MIRP[srp0,md,rd,1] 
+	00232: MDRP[nrp0,nmd,rd,0] 
+	00233: DELTAP1    
+	00234: MDRP[nrp0,nmd,nrd,0] 
+	00235: MDRP[nrp0,nmd,rd,0] 
+	00236: SRP2       
+	00237: IP         
+	00238: MDAP[rd]   
+	00239: DELTAP1    
+	00240: MDRP[nrp0,nmd,nrd,0] 
+	00241: MIRP[srp0,md,rd,1] 
+	00242: MDRP[nrp0,nmd,nrd,0] 
+	00243: IUP[y]     
+	00244: IUP[x]     
+	00245: SVTCA[y-axis] 
+	00246: DELTAP2    
+	00247: DELTAP2    
+	00248: DELTAP1    
+	00249: DELTAP1    
+	00250: DELTAP1    
+	00251: DELTAP2    
+	00252: DELTAP2    
+	00253: DELTAP2    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                               On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual                         On
+	 10:                      Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         On
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:        XDual                         On
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual                               On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:  YDual                       X-Short On
+	 36:  YDual                       X-Short On
+	 37:        XDual                         On
+	 38:        XDual         Y-Short         Off
+	 39:        XDual         Y-Short X-Short On
+	 40:        XDual         Y-Short X-Short Off
+	 41:  YDual XDual                 X-Short On
+	 42:  YDual XDual                 X-Short Off
+	 43:  YDual XDual         Y-Short X-Short On
+	 44:        XDual                         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:        XDual         Y-Short         On
+	 49:        XDual                         On
+	 50:  YDual XDual         Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:        XDual                         On
+	 53:  YDual                       X-Short On
+	 54:  YDual                       X-Short Off
+	 55:  YDual XDual         Y-Short         On
+	 56:  YDual XDual         Y-Short         Off
+	 57:  YDual XDual                 X-Short On
+	 58:  YDual                               On
+	 59:  YDual XDual                 X-Short Off
+	 60:        XDual         Y-Short         On
+	 61:        XDual         Y-Short         Off
+	 62:  YDual                       X-Short On
+	 63:  YDual                       X-Short On
+	 64:        XDual                         On
+	 65:  YDual XDual                 X-Short On
+	 66:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1121,    42)  ->  Abs (  1121,    42)
+	  1: Rel (     0,   -42)  ->  Abs (  1121,     0)
+	  2: Rel (   -70,     0)  ->  Abs (  1051,     0)
+	  3: Rel (  -417,     0)  ->  Abs (   634,     0)
+	  4: Rel (   -70,     0)  ->  Abs (   564,     0)
+	  5: Rel (     0,    42)  ->  Abs (   564,    42)
+	  6: Rel (     0,    42)  ->  Abs (   564,    84)
+	  7: Rel (    70,     0)  ->  Abs (   634,    84)
+	  8: Rel (   240,     0)  ->  Abs (   874,    84)
+	  9: Rel (     0,   467)  ->  Abs (   874,   551)
+	 10: Rel (   -74,   -54)  ->  Abs (   800,   497)
+	 11: Rel (   -82,   -60)  ->  Abs (   718,   437)
+	 12: Rel (   -92,   -25)  ->  Abs (   626,   412)
+	 13: Rel (     0,  -151)  ->  Abs (   626,   261)
+	 14: Rel (     0,   -56)  ->  Abs (   626,   205)
+	 15: Rel (   -42,     0)  ->  Abs (   584,   205)
+	 16: Rel (   -42,     0)  ->  Abs (   542,   205)
+	 17: Rel (     0,    56)  ->  Abs (   542,   261)
+	 18: Rel (     0,   136)  ->  Abs (   542,   397)
+	 19: Rel (   -29,    -3)  ->  Abs (   513,   394)
+	 20: Rel (   -28,     0)  ->  Abs (   485,   394)
+	 21: Rel (  -159,     0)  ->  Abs (   326,   394)
+	 22: Rel (   -67,    92)  ->  Abs (   259,   486)
+	 23: Rel (   -58,    79)  ->  Abs (   201,   565)
+	 24: Rel (     0,   167)  ->  Abs (   201,   732)
+	 25: Rel (     0,   354)  ->  Abs (   201,  1086)
+	 26: Rel (   -90,     0)  ->  Abs (   111,  1086)
+	 27: Rel (   -70,     0)  ->  Abs (    41,  1086)
+	 28: Rel (     0,    42)  ->  Abs (    41,  1128)
+	 29: Rel (     0,    42)  ->  Abs (    41,  1170)
+	 30: Rel (    70,     0)  ->  Abs (   111,  1170)
+	 31: Rel (   288,     0)  ->  Abs (   399,  1170)
+	 32: Rel (    70,     0)  ->  Abs (   469,  1170)
+	 33: Rel (     0,   -42)  ->  Abs (   469,  1128)
+	 34: Rel (     0,   -42)  ->  Abs (   469,  1086)
+	 35: Rel (   -70,     0)  ->  Abs (   399,  1086)
+	 36: Rel (  -114,     0)  ->  Abs (   285,  1086)
+	 37: Rel (     0,  -344)  ->  Abs (   285,   742)
+	 38: Rel (     0,  -132)  ->  Abs (   285,   610)
+	 39: Rel (    36,   -57)  ->  Abs (   321,   553)
+	 40: Rel (    46,   -74)  ->  Abs (   367,   479)
+	 41: Rel (   122,     0)  ->  Abs (   489,   479)
+	 42: Rel (    26,     0)  ->  Abs (   515,   479)
+	 43: Rel (    27,     4)  ->  Abs (   542,   483)
+	 44: Rel (     0,   387)  ->  Abs (   542,   870)
+	 45: Rel (     0,    57)  ->  Abs (   542,   927)
+	 46: Rel (    42,     0)  ->  Abs (   584,   927)
+	 47: Rel (    42,     0)  ->  Abs (   626,   927)
+	 48: Rel (     0,   -57)  ->  Abs (   626,   870)
+	 49: Rel (     0,  -366)  ->  Abs (   626,   504)
+	 50: Rel (   117,    42)  ->  Abs (   743,   546)
+	 51: Rel (   131,   111)  ->  Abs (   874,   657)
+	 52: Rel (     0,   429)  ->  Abs (   874,  1086)
+	 53: Rel (   -98,     0)  ->  Abs (   776,  1086)
+	 54: Rel (   -70,     0)  ->  Abs (   706,  1086)
+	 55: Rel (     0,    42)  ->  Abs (   706,  1128)
+	 56: Rel (     0,    42)  ->  Abs (   706,  1170)
+	 57: Rel (    70,     0)  ->  Abs (   776,  1170)
+	 58: Rel (   275,     0)  ->  Abs (  1051,  1170)
+	 59: Rel (    70,     0)  ->  Abs (  1121,  1170)
+	 60: Rel (     0,   -42)  ->  Abs (  1121,  1128)
+	 61: Rel (     0,   -42)  ->  Abs (  1121,  1086)
+	 62: Rel (   -70,     0)  ->  Abs (  1051,  1086)
+	 63: Rel (   -92,     0)  ->  Abs (   959,  1086)
+	 64: Rel (     0, -1002)  ->  Abs (   959,    84)
+	 65: Rel (    92,     0)  ->  Abs (  1051,    84)
+	 66: Rel (    70,     0)  ->  Abs (  1121,    84)
+
+	Glyph 1311: off = 0x0003B978, len = 308
+	  numberOfContours:	1
+	  xMin:			70
+	  yMin:			0
+	  xMax:			1119
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  63
+
+	  Length of Instructions:	147
+	00000: NPUSHB      (88):   215    36   231    36     2    57     0    61    32     8 
+	                            46    11    32    40     0    16    16    16   128    16 
+	                             3    16    16    33    15    52     1    52    48    15 
+	                             5    31     5     2     5    15     8     1     8    65 
+	                             0    30    16    30     2    30    33    32    25    21 
+	                            60    49    32    54    28    43    43    22    48    46 
+	                            40    38    32    19    17    11     9    19     0    19 
+	                            16    19     2    14    19    14    19     8    33    22 
+	                            32    28     6    61     8    32     3    10 
+	00090: SVTCA[y-axis] 
+	00091: MIAP[rd+ci] 
+	00092: MIRP[srp0,md,rd,1] 
+	00093: MDRP[nrp0,nmd,nrd,0] 
+	00094: MIAP[rd+ci] 
+	00095: MIRP[srp0,md,rd,1] 
+	00096: MDRP[nrp0,nmd,nrd,0] 
+	00097: SRP2       
+	00098: IP         
+	00099: IP         
+	00100: MDAP[rd]   
+	00101: MDAP[rd]   
+	00102: DELTAP1    
+	00103: SRP1       
+	00104: SHP[rp1,zp0] 
+	00105: SHP[rp1,zp0] 
+	00106: SHP[rp1,zp0] 
+	00107: SRP0       
+	00108: MIRP[nrp0,md,rd,1] 
+	00109: SHP[rp2,zp1] 
+	00110: SHP[rp2,zp1] 
+	00111: SHP[rp2,zp1] 
+	00112: SRP1       
+	00113: IP         
+	00114: MDAP[rd]   
+	00115: SRP0       
+	00116: MDRP[srp0,nmd,nrd,0] 
+	00117: MIRP[srp0,md,rd,1] 
+	00118: MDRP[nrp0,nmd,nrd,0] 
+	00119: SVTCA[x-axis] 
+	00120: MDAP[rd]   
+	00121: MDRP[nrp0,md,rd,0] 
+	00122: MIRP[srp0,md,rd,1] 
+	00123: MDRP[nrp0,md,rd,1] 
+	00124: DELTAP1    
+	00125: SRP0       
+	00126: MDRP[srp0,nmd,rd,0] 
+	00127: DELTAP1    
+	00128: MDRP[nrp0,md,rd,1] 
+	00129: DELTAP1    
+	00130: MDRP[nrp0,nmd,nrd,0] 
+	00131: MDRP[nrp0,nmd,rd,0] 
+	00132: DELTAP1    
+	00133: SRP2       
+	00134: IP         
+	00135: MDAP[rd]   
+	00136: DELTAP1    
+	00137: MDRP[nrp0,nmd,nrd,0] 
+	00138: MIRP[srp0,md,rd,1] 
+	00139: MDRP[nrp0,nmd,nrd,0] 
+	00140: SRP0       
+	00141: MIRP[srp0,md,rd,1] 
+	00142: MDRP[srp0,md,rd,1] 
+	00143: MDRP[nrp0,nmd,nrd,0] 
+	00144: IUP[y]     
+	00145: IUP[x]     
+	00146: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                               On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual                         On
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short X-Short On
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         On
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                               Off
+	 21:        XDual                         On
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual                               On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short On
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:        XDual         Y-Short X-Short On
+	 37:        XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:  YDual XDual         Y-Short X-Short On
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         On
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short X-Short On
+	 49:        XDual                         On
+	 50:  YDual                       X-Short On
+	 51:  YDual                       X-Short Off
+	 52:  YDual XDual         Y-Short         On
+	 53:  YDual XDual         Y-Short         Off
+	 54:  YDual XDual                 X-Short On
+	 55:  YDual                               On
+	 56:  YDual XDual                 X-Short Off
+	 57:        XDual         Y-Short         On
+	 58:        XDual         Y-Short         Off
+	 59:  YDual                       X-Short On
+	 60:  YDual                       X-Short On
+	 61:        XDual                         On
+	 62:  YDual XDual                 X-Short On
+	 63:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1119,    42)  ->  Abs (  1119,    42)
+	  1: Rel (     0,   -42)  ->  Abs (  1119,     0)
+	  2: Rel (   -70,     0)  ->  Abs (  1049,     0)
+	  3: Rel (  -399,     0)  ->  Abs (   650,     0)
+	  4: Rel (   -71,     0)  ->  Abs (   579,     0)
+	  5: Rel (     0,    42)  ->  Abs (   579,    42)
+	  6: Rel (     0,    42)  ->  Abs (   579,    84)
+	  7: Rel (    71,     0)  ->  Abs (   650,    84)
+	  8: Rel (   227,     0)  ->  Abs (   877,    84)
+	  9: Rel (     0,   314)  ->  Abs (   877,   398)
+	 10: Rel (  -106,   -74)  ->  Abs (   771,   324)
+	 11: Rel (  -125,   -27)  ->  Abs (   646,   297)
+	 12: Rel (     0,   -86)  ->  Abs (   646,   211)
+	 13: Rel (     0,   -56)  ->  Abs (   646,   155)
+	 14: Rel (   -42,     0)  ->  Abs (   604,   155)
+	 15: Rel (   -42,     0)  ->  Abs (   562,   155)
+	 16: Rel (     0,    56)  ->  Abs (   562,   211)
+	 17: Rel (     0,    73)  ->  Abs (   562,   284)
+	 18: Rel (   -24,    -2)  ->  Abs (   538,   282)
+	 19: Rel (   -34,     0)  ->  Abs (   504,   282)
+	 20: Rel (  -279,     0)  ->  Abs (   225,   282)
+	 21: Rel (     0,   263)  ->  Abs (   225,   545)
+	 22: Rel (     0,   236)  ->  Abs (   225,   781)
+	 23: Rel (   -85,     0)  ->  Abs (   140,   781)
+	 24: Rel (   -70,     0)  ->  Abs (    70,   781)
+	 25: Rel (     0,    42)  ->  Abs (    70,   823)
+	 26: Rel (     0,    43)  ->  Abs (    70,   866)
+	 27: Rel (    70,     0)  ->  Abs (   140,   866)
+	 28: Rel (   276,     0)  ->  Abs (   416,   866)
+	 29: Rel (    71,     0)  ->  Abs (   487,   866)
+	 30: Rel (     0,   -43)  ->  Abs (   487,   823)
+	 31: Rel (     0,   -42)  ->  Abs (   487,   781)
+	 32: Rel (   -71,     0)  ->  Abs (   416,   781)
+	 33: Rel (  -107,     0)  ->  Abs (   309,   781)
+	 34: Rel (     0,  -236)  ->  Abs (   309,   545)
+	 35: Rel (     0,  -102)  ->  Abs (   309,   443)
+	 36: Rel (    47,   -40)  ->  Abs (   356,   403)
+	 37: Rel (    44,   -38)  ->  Abs (   400,   365)
+	 38: Rel (   104,     0)  ->  Abs (   504,   365)
+	 39: Rel (    25,     0)  ->  Abs (   529,   365)
+	 40: Rel (    33,     4)  ->  Abs (   562,   369)
+	 41: Rel (     0,   211)  ->  Abs (   562,   580)
+	 42: Rel (     0,    57)  ->  Abs (   562,   637)
+	 43: Rel (    42,     0)  ->  Abs (   604,   637)
+	 44: Rel (    42,     0)  ->  Abs (   646,   637)
+	 45: Rel (     0,   -57)  ->  Abs (   646,   580)
+	 46: Rel (     0,  -195)  ->  Abs (   646,   385)
+	 47: Rel (   109,    31)  ->  Abs (   755,   416)
+	 48: Rel (   122,    78)  ->  Abs (   877,   494)
+	 49: Rel (     0,   287)  ->  Abs (   877,   781)
+	 50: Rel (   -89,     0)  ->  Abs (   788,   781)
+	 51: Rel (   -71,     0)  ->  Abs (   717,   781)
+	 52: Rel (     0,    42)  ->  Abs (   717,   823)
+	 53: Rel (     0,    43)  ->  Abs (   717,   866)
+	 54: Rel (    71,     0)  ->  Abs (   788,   866)
+	 55: Rel (   261,     0)  ->  Abs (  1049,   866)
+	 56: Rel (    70,     0)  ->  Abs (  1119,   866)
+	 57: Rel (     0,   -43)  ->  Abs (  1119,   823)
+	 58: Rel (     0,   -42)  ->  Abs (  1119,   781)
+	 59: Rel (   -70,     0)  ->  Abs (  1049,   781)
+	 60: Rel (   -87,     0)  ->  Abs (   962,   781)
+	 61: Rel (     0,  -697)  ->  Abs (   962,    84)
+	 62: Rel (    87,     0)  ->  Abs (  1049,    84)
+	 63: Rel (    70,     0)  ->  Abs (  1119,    84)
+
+	Glyph 1312: off = 0x0003BAAC, len = 222
+	  numberOfContours:	1
+	  xMin:			107
+	  yMin:			0
+	  xMax:			1187
+	  yMax:			1170
+
+	EndPoints
+	---------
+	  0:  50
+
+	  Length of Instructions:	88
+	00000: NPUSHB      (49):     0    47    30    15     5     1     5   175     8     1 
+	                             8    52    31    24    27    40    36    19    16    30 
+	                            48    27     1    27    15    13    38    22    40     1 
+	                            40    43    43    16    28    39    38    34     2    27 
+	                            16    38    21    48     8    38     3    21     8 
+	00051: SVTCA[y-axis] 
+	00052: MIAP[rd+ci] 
+	00053: MDRP[srp0,nmd,nrd,0] 
+	00054: MIRP[srp0,md,rd,1] 
+	00055: MDRP[nrp0,nmd,nrd,0] 
+	00056: SRP0       
+	00057: MIRP[srp0,md,rd,1] 
+	00058: MDRP[nrp0,nmd,nrd,0] 
+	00059: MIAP[rd+ci] 
+	00060: MIRP[srp0,md,rd,1] 
+	00061: MDRP[nrp0,nmd,nrd,0] 
+	00062: SRP2       
+	00063: IP         
+	00064: MDAP[rd]   
+	00065: SHP[rp1,zp0] 
+	00066: DELTAP1    
+	00067: MIRP[nrp0,md,rd,1] 
+	00068: SHP[rp2,zp1] 
+	00069: SVTCA[x-axis] 
+	00070: MDAP[rd]   
+	00071: DELTAP1    
+	00072: MIRP[srp0,md,rd,1] 
+	00073: MDRP[nrp0,md,rd,1] 
+	00074: MDRP[nrp0,nmd,rd,0] 
+	00075: MDRP[nrp0,nmd,nrd,0] 
+	00076: SRP0       
+	00077: MDRP[srp0,md,rd,1] 
+	00078: MDRP[nrp0,nmd,nrd,0] 
+	00079: SRP0       
+	00080: MDRP[srp0,nmd,rd,0] 
+	00081: DELTAP1    
+	00082: MDRP[nrp0,md,rd,1] 
+	00083: DELTAP1    
+	00084: MIRP[srp0,md,rd,1] 
+	00085: MDRP[nrp0,md,rd,0] 
+	00086: IUP[y]     
+	00087: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                               On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short On
+	  9:        XDual                         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:        XDual                         On
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                               On
+	 23:  YDual                       X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short On
+	 28:        XDual                         On
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual                               On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short On
+	 40:        XDual                         On
+	 41:  YDual XDual         Y-Short X-Short On
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:        XDual         Y-Short X-Short On
+	 46:        XDual         Y-Short X-Short Off
+	 47:        XDual         Y-Short         On
+	 48:        XDual                         On
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1187,    42)  ->  Abs (  1187,    42)
+	  1: Rel (     0,   -42)  ->  Abs (  1187,     0)
+	  2: Rel (   -70,     0)  ->  Abs (  1117,     0)
+	  3: Rel (  -288,     0)  ->  Abs (   829,     0)
+	  4: Rel (   -70,     0)  ->  Abs (   759,     0)
+	  5: Rel (     0,    42)  ->  Abs (   759,    42)
+	  6: Rel (     0,    42)  ->  Abs (   759,    84)
+	  7: Rel (    70,     0)  ->  Abs (   829,    84)
+	  8: Rel (   114,     0)  ->  Abs (   943,    84)
+	  9: Rel (     0,   344)  ->  Abs (   943,   428)
+	 10: Rel (     0,   134)  ->  Abs (   943,   562)
+	 11: Rel (   -35,    56)  ->  Abs (   908,   618)
+	 12: Rel (   -45,    73)  ->  Abs (   863,   691)
+	 13: Rel (  -124,     0)  ->  Abs (   739,   691)
+	 14: Rel (  -175,     0)  ->  Abs (   564,   691)
+	 15: Rel (  -210,  -178)  ->  Abs (   354,   513)
+	 16: Rel (     0,  -429)  ->  Abs (   354,    84)
+	 17: Rel (    98,     0)  ->  Abs (   452,    84)
+	 18: Rel (    70,     0)  ->  Abs (   522,    84)
+	 19: Rel (     0,   -42)  ->  Abs (   522,    42)
+	 20: Rel (     0,   -42)  ->  Abs (   522,     0)
+	 21: Rel (   -70,     0)  ->  Abs (   452,     0)
+	 22: Rel (  -275,     0)  ->  Abs (   177,     0)
+	 23: Rel (   -70,     0)  ->  Abs (   107,     0)
+	 24: Rel (     0,    42)  ->  Abs (   107,    42)
+	 25: Rel (     0,    42)  ->  Abs (   107,    84)
+	 26: Rel (    70,     0)  ->  Abs (   177,    84)
+	 27: Rel (    92,     0)  ->  Abs (   269,    84)
+	 28: Rel (     0,  1002)  ->  Abs (   269,  1086)
+	 29: Rel (   -92,     0)  ->  Abs (   177,  1086)
+	 30: Rel (   -70,     0)  ->  Abs (   107,  1086)
+	 31: Rel (     0,    42)  ->  Abs (   107,  1128)
+	 32: Rel (     0,    42)  ->  Abs (   107,  1170)
+	 33: Rel (    70,     0)  ->  Abs (   177,  1170)
+	 34: Rel (   417,     0)  ->  Abs (   594,  1170)
+	 35: Rel (    70,     0)  ->  Abs (   664,  1170)
+	 36: Rel (     0,   -42)  ->  Abs (   664,  1128)
+	 37: Rel (     0,   -42)  ->  Abs (   664,  1086)
+	 38: Rel (   -70,     0)  ->  Abs (   594,  1086)
+	 39: Rel (  -240,     0)  ->  Abs (   354,  1086)
+	 40: Rel (     0,  -467)  ->  Abs (   354,   619)
+	 41: Rel (    74,    54)  ->  Abs (   428,   673)
+	 42: Rel (   141,   103)  ->  Abs (   569,   776)
+	 43: Rel (   174,     0)  ->  Abs (   743,   776)
+	 44: Rel (   159,     0)  ->  Abs (   902,   776)
+	 45: Rel (    67,   -92)  ->  Abs (   969,   684)
+	 46: Rel (    58,   -79)  ->  Abs (  1027,   605)
+	 47: Rel (     0,  -167)  ->  Abs (  1027,   438)
+	 48: Rel (     0,  -354)  ->  Abs (  1027,    84)
+	 49: Rel (    90,     0)  ->  Abs (  1117,    84)
+	 50: Rel (    70,     0)  ->  Abs (  1187,    84)
+
+	Glyph 1313: off = 0x0003BB8A, len = 218
+	  numberOfContours:	1
+	  xMin:			108
+	  yMin:			0
+	  xMax:			1157
+	  yMax:			866
+
+	EndPoints
+	---------
+	  0:  49
+
+	  Length of Instructions:	90
+	00000: NPUSHB      (53):     0    46    32    15     5    31     5     2     5     8 
+	                            51    31    24    27    40     0    36    16    36     2 
+	                            36    19    16    32    48    27     1    27    13    33 
+	                            15    42    31    42     2    42    42    16    28    39 
+	                            33    34     6    27    16    33    21    47     8    33 
+	                             3    21    10 
+	00055: SVTCA[y-axis] 
+	00056: MIAP[rd+ci] 
+	00057: MDRP[srp0,nmd,nrd,0] 
+	00058: MIRP[srp0,md,rd,1] 
+	00059: MDRP[nrp0,nmd,nrd,0] 
+	00060: SRP0       
+	00061: MIRP[srp0,md,rd,1] 
+	00062: MDRP[nrp0,nmd,nrd,0] 
+	00063: MIAP[rd+ci] 
+	00064: MIRP[srp0,md,rd,1] 
+	00065: MDRP[nrp0,nmd,nrd,0] 
+	00066: SRP2       
+	00067: IP         
+	00068: MDAP[rd]   
+	00069: DELTAP1    
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: SVTCA[x-axis] 
+	00072: MDAP[rd]   
+	00073: DELTAP1    
+	00074: MIRP[srp0,md,rd,1] 
+	00075: MDRP[nrp0,md,rd,1] 
+	00076: MDRP[nrp0,nmd,rd,0] 
+	00077: DELTAP1    
+	00078: MDRP[nrp0,nmd,nrd,0] 
+	00079: SRP0       
+	00080: MDRP[srp0,md,rd,1] 
+	00081: MDRP[nrp0,nmd,nrd,0] 
+	00082: SRP0       
+	00083: MDRP[srp0,nmd,rd,0] 
+	00084: MDRP[nrp0,md,rd,1] 
+	00085: DELTAP1    
+	00086: MIRP[srp0,md,rd,1] 
+	00087: MDRP[nrp0,md,rd,0] 
+	00088: IUP[y]     
+	00089: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:        XDual         Y-Short         Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                               On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:        XDual                         On
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                               On
+	 23:  YDual                       X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short On
+	 28:        XDual                         On
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual                               On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short On
+	 40:        XDual                         On
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:        XDual         Y-Short X-Short On
+	 45:        XDual         Y-Short X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual         Y-Short         On
+	 48:  YDual XDual                 X-Short On
+	 49:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1157,    43)  ->  Abs (  1157,    43)
+	  1: Rel (     0,   -43)  ->  Abs (  1157,     0)
+	  2: Rel (   -70,     0)  ->  Abs (  1087,     0)
+	  3: Rel (  -276,     0)  ->  Abs (   811,     0)
+	  4: Rel (   -71,     0)  ->  Abs (   740,     0)
+	  5: Rel (     0,    43)  ->  Abs (   740,    43)
+	  6: Rel (     0,    42)  ->  Abs (   740,    85)
+	  7: Rel (    71,     0)  ->  Abs (   811,    85)
+	  8: Rel (   107,     0)  ->  Abs (   918,    85)
+	  9: Rel (     0,   236)  ->  Abs (   918,   321)
+	 10: Rel (     0,   103)  ->  Abs (   918,   424)
+	 11: Rel (   -47,    40)  ->  Abs (   871,   464)
+	 12: Rel (   -43,    37)  ->  Abs (   828,   501)
+	 13: Rel (  -105,     0)  ->  Abs (   723,   501)
+	 14: Rel (  -173,     0)  ->  Abs (   550,   501)
+	 15: Rel (  -200,  -129)  ->  Abs (   350,   372)
+	 16: Rel (     0,  -287)  ->  Abs (   350,    85)
+	 17: Rel (    89,     0)  ->  Abs (   439,    85)
+	 18: Rel (    71,     0)  ->  Abs (   510,    85)
+	 19: Rel (     0,   -42)  ->  Abs (   510,    43)
+	 20: Rel (     0,   -43)  ->  Abs (   510,     0)
+	 21: Rel (   -71,     0)  ->  Abs (   439,     0)
+	 22: Rel (  -261,     0)  ->  Abs (   178,     0)
+	 23: Rel (   -70,     0)  ->  Abs (   108,     0)
+	 24: Rel (     0,    43)  ->  Abs (   108,    43)
+	 25: Rel (     0,    42)  ->  Abs (   108,    85)
+	 26: Rel (    70,     0)  ->  Abs (   178,    85)
+	 27: Rel (    87,     0)  ->  Abs (   265,    85)
+	 28: Rel (     0,   697)  ->  Abs (   265,   782)
+	 29: Rel (   -87,     0)  ->  Abs (   178,   782)
+	 30: Rel (   -70,     0)  ->  Abs (   108,   782)
+	 31: Rel (     0,    42)  ->  Abs (   108,   824)
+	 32: Rel (     0,    42)  ->  Abs (   108,   866)
+	 33: Rel (    70,     0)  ->  Abs (   178,   866)
+	 34: Rel (   399,     0)  ->  Abs (   577,   866)
+	 35: Rel (    71,     0)  ->  Abs (   648,   866)
+	 36: Rel (     0,   -42)  ->  Abs (   648,   824)
+	 37: Rel (     0,   -42)  ->  Abs (   648,   782)
+	 38: Rel (   -71,     0)  ->  Abs (   577,   782)
+	 39: Rel (  -227,     0)  ->  Abs (   350,   782)
+	 40: Rel (     0,  -314)  ->  Abs (   350,   468)
+	 41: Rel (   166,   116)  ->  Abs (   516,   584)
+	 42: Rel (   207,     0)  ->  Abs (   723,   584)
+	 43: Rel (   143,     0)  ->  Abs (   866,   584)
+	 44: Rel (    66,   -59)  ->  Abs (   932,   525)
+	 45: Rel (    70,   -63)  ->  Abs (  1002,   462)
+	 46: Rel (     0,  -141)  ->  Abs (  1002,   321)
+	 47: Rel (     0,  -236)  ->  Abs (  1002,    85)
+	 48: Rel (    85,     0)  ->  Abs (  1087,    85)
+	 49: Rel (    70,     0)  ->  Abs (  1157,    85)
+
+	Glyph 1314: off = 0x0003BC64, len = 276
+	  numberOfContours:	2
+	  xMin:			66
+	  yMin:			-33
+	  xMax:			1136
+	  yMax:			1197
+
+	EndPoints
+	---------
+	  0:  35
+	  1:  44
+
+	  Length of Instructions:	142
+	00000: NPUSHB      (98):   230    40     1   199    40   215    40     2   161    33 
+	                             1    69    33    85    33     2   232    30     1   198 
+	                            17   214    17     2   233    13     1   217    11   233 
+	                            11     2   134     1   150     1     2     8    37    37 
+	                           207     0   239     0     2    79     0    95     0   111 
+	                             0   143     0     4    16     0     1     0    46    29 
+	                            37    19    37     0    23    16    23     2    23    38 
+	                            37   207     6   239     6     2     6    45    38    37 
+	                            29    21    26     7    21     7    21    42    15    37 
+	                            31     3    26     2    42    37     3     9 
+	00100: SVTCA[y-axis] 
+	00101: MIAP[rd+ci] 
+	00102: MIRP[nrp0,md,rd,1] 
+	00103: MIAP[rd+ci] 
+	00104: MIAP[rd+ci] 
+	00105: MIRP[nrp0,md,rd,1] 
+	00106: SRP1       
+	00107: IP         
+	00108: IP         
+	00109: MDAP[rd]   
+	00110: MDAP[rd]   
+	00111: SRP1       
+	00112: SRP2       
+	00113: IP         
+	00114: MIRP[nrp0,md,rd,1] 
+	00115: SVTCA[x-axis] 
+	00116: SRP0       
+	00117: MDRP[srp0,md,rd,2] 
+	00118: DELTAP2    
+	00119: MIRP[nrp0,md,rd,1] 
+	00120: MDRP[srp0,nmd,rd,0] 
+	00121: DELTAP1    
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: MIRP[nrp0,md,rd,1] 
+	00124: SRP0       
+	00125: MDRP[srp0,nmd,rd,2] 
+	00126: DELTAP1    
+	00127: DELTAP1    
+	00128: DELTAP2    
+	00129: MIRP[srp0,md,rd,1] 
+	00130: MDRP[nrp0,nmd,nrd,0] 
+	00131: IUP[y]     
+	00132: IUP[x]     
+	00133: DELTAP1    
+	00134: DELTAP1    
+	00135: DELTAP1    
+	00136: DELTAP1    
+	00137: DELTAP1    
+	00138: DELTAP1    
+	00139: DELTAP1    
+	00140: DELTAP1    
+	00141: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                                      Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:                                      Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual                               On
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual         Y-Short X-Short On
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:                      Y-Short X-Short On
+	 37:  YDual XDual         Y-Short         On
+	 38:  YDual                               On
+	 39:        XDual         Y-Short         On
+	 40:        XDual         Y-Short         Off
+	 41:        XDual                 X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:                                      Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1136,   504)  ->  Abs (  1136,   504)
+	  1: Rel (     0,  -208)  ->  Abs (  1136,   296)
+	  2: Rel (  -328,  -329)  ->  Abs (   808,   -33)
+	  3: Rel (  -208,     0)  ->  Abs (   600,   -33)
+	  4: Rel (  -207,     0)  ->  Abs (   393,   -33)
+	  5: Rel (  -327,   329)  ->  Abs (    66,   296)
+	  6: Rel (     0,   208)  ->  Abs (    66,   504)
+	  7: Rel (     0,   145)  ->  Abs (    66,   649)
+	  8: Rel (   986,     0)  ->  Abs (  1052,   649)
+	  9: Rel (     0,    26)  ->  Abs (  1052,   675)
+	 10: Rel (     0,   110)  ->  Abs (  1052,   785)
+	 11: Rel (   -68,   118)  ->  Abs (   984,   903)
+	 12: Rel (   -71,   123)  ->  Abs (   913,  1026)
+	 13: Rel (   -96,    45)  ->  Abs (   817,  1071)
+	 14: Rel (   -91,    42)  ->  Abs (   726,  1113)
+	 15: Rel (   -90,     0)  ->  Abs (   636,  1113)
+	 16: Rel (  -116,     0)  ->  Abs (   520,  1113)
+	 17: Rel (  -108,   -61)  ->  Abs (   412,  1052)
+	 18: Rel (  -126,   -70)  ->  Abs (   286,   982)
+	 19: Rel (    -7,  -107)  ->  Abs (   279,   875)
+	 20: Rel (    -3,   -51)  ->  Abs (   276,   824)
+	 21: Rel (   -39,     0)  ->  Abs (   237,   824)
+	 22: Rel (   -42,     0)  ->  Abs (   195,   824)
+	 23: Rel (     0,    57)  ->  Abs (   195,   881)
+	 24: Rel (     0,   233)  ->  Abs (   195,  1114)
+	 25: Rel (     0,    56)  ->  Abs (   195,  1170)
+	 26: Rel (    42,     0)  ->  Abs (   237,  1170)
+	 27: Rel (    42,     0)  ->  Abs (   279,  1170)
+	 28: Rel (     0,   -56)  ->  Abs (   279,  1114)
+	 29: Rel (     0,   -59)  ->  Abs (   279,  1055)
+	 30: Rel (   150,   142)  ->  Abs (   429,  1197)
+	 31: Rel (   208,     0)  ->  Abs (   637,  1197)
+	 32: Rel (   211,     0)  ->  Abs (   848,  1197)
+	 33: Rel (   146,  -156)  ->  Abs (   994,  1041)
+	 34: Rel (   142,  -153)  ->  Abs (  1136,   888)
+	 35: Rel (     0,  -213)  ->  Abs (  1136,   675)
+	 36: Rel (   -84,  -159)  ->  Abs (  1052,   516)
+	 37: Rel (     0,    49)  ->  Abs (  1052,   565)
+	 38: Rel (  -902,     0)  ->  Abs (   150,   565)
+	 39: Rel (     0,   -49)  ->  Abs (   150,   516)
+	 40: Rel (     0,  -167)  ->  Abs (   150,   349)
+	 41: Rel (   254,  -298)  ->  Abs (   404,    51)
+	 42: Rel (   196,     0)  ->  Abs (   600,    51)
+	 43: Rel (   185,     0)  ->  Abs (   785,    51)
+	 44: Rel (   267,   279)  ->  Abs (  1052,   330)
+
+	Glyph 1315: off = 0x0003BD78, len = 222
+	  numberOfContours:	2
+	  xMin:			128
+	  yMin:			-33
+	  xMax:			1071
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  25
+	  1:  33
+
+	  Length of Instructions:	109
+	00000: NPUSHB      (74):   171    32   187    32     2   182    29     1   164    29 
+	                             1   162    24     1   155    10     1   138    10     1 
+	                            77    10    93    10   109    10     3    59    10     1 
+	                            26     8    33   207     0     1    15     0   191     0 
+	                           223     0     3     0    35    27    33    17   207     7 
+	                             1   111     7   191     7   223     7     3     7    27 
+	                            33     7    15     7    15    31    11    33    23     7 
+	                            31    33     4    11 
+	00076: SVTCA[y-axis] 
+	00077: MIAP[rd+ci] 
+	00078: MIRP[nrp0,md,rd,1] 
+	00079: MIAP[rd+ci] 
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: SRP1       
+	00082: IP         
+	00083: IP         
+	00084: MDAP[rd]   
+	00085: MDAP[rd]   
+	00086: MIRP[nrp0,md,rd,1] 
+	00087: SVTCA[x-axis] 
+	00088: MDAP[rd]   
+	00089: DELTAP1    
+	00090: DELTAP2    
+	00091: MDRP[nrp0,nmd,rd,0] 
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: SRP0       
+	00094: MDRP[srp0,nmd,rd,2] 
+	00095: DELTAP1    
+	00096: DELTAP2    
+	00097: MIRP[nrp0,md,rd,1] 
+	00098: SHP[rp2,zp1] 
+	00099: IUP[y]     
+	00100: IUP[x]     
+	00101: DELTAP1    
+	00102: DELTAP1    
+	00103: DELTAP1    
+	00104: DELTAP1    
+	00105: DELTAP1    
+	00106: DELTAP1    
+	00107: DELTAP1    
+	00108: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                                      Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual                               On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:                      Y-Short X-Short On
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:                                      Off
+	 26:                              X-Short On
+	 27:  YDual                               On
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short X-Short On
+	 30:        XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1071,   412)  ->  Abs (  1071,   412)
+	  1: Rel (     0,  -192)  ->  Abs (  1071,   220)
+	  2: Rel (  -141,  -128)  ->  Abs (   930,    92)
+	  3: Rel (  -136,  -125)  ->  Abs (   794,   -33)
+	  4: Rel (  -194,     0)  ->  Abs (   600,   -33)
+	  5: Rel (  -210,     0)  ->  Abs (   390,   -33)
+	  6: Rel (  -262,   272)  ->  Abs (   128,   239)
+	  7: Rel (     2,   211)  ->  Abs (   130,   450)
+	  8: Rel (   856,     0)  ->  Abs (   986,   450)
+	  9: Rel (   -22,   167)  ->  Abs (   964,   617)
+	 10: Rel (  -229,   195)  ->  Abs (   735,   812)
+	 11: Rel (  -169,     0)  ->  Abs (   566,   812)
+	 12: Rel (  -221,     0)  ->  Abs (   345,   812)
+	 13: Rel (  -144,  -113)  ->  Abs (   201,   699)
+	 14: Rel (   -19,   -15)  ->  Abs (   182,   684)
+	 15: Rel (   -14,     0)  ->  Abs (   168,   684)
+	 16: Rel (   -40,     0)  ->  Abs (   128,   684)
+	 17: Rel (     0,    42)  ->  Abs (   128,   726)
+	 18: Rel (     0,    17)  ->  Abs (   128,   743)
+	 19: Rel (    16,    16)  ->  Abs (   144,   759)
+	 20: Rel (    62,    63)  ->  Abs (   206,   822)
+	 21: Rel (   136,    40)  ->  Abs (   342,   862)
+	 22: Rel (   119,    34)  ->  Abs (   461,   896)
+	 23: Rel (   105,     0)  ->  Abs (   566,   896)
+	 24: Rel (   211,     0)  ->  Abs (   777,   896)
+	 25: Rel (   294,  -274)  ->  Abs (  1071,   622)
+	 26: Rel (   -86,  -257)  ->  Abs (   985,   365)
+	 27: Rel (  -770,     0)  ->  Abs (   215,   365)
+	 28: Rel (    25,  -141)  ->  Abs (   240,   224)
+	 29: Rel (   109,   -87)  ->  Abs (   349,   137)
+	 30: Rel (   106,   -85)  ->  Abs (   455,    52)
+	 31: Rel (   145,     0)  ->  Abs (   600,    52)
+	 32: Rel (   146,     0)  ->  Abs (   746,    52)
+	 33: Rel (   213,   170)  ->  Abs (   959,   222)
+
+	Glyph 1316: off = 0x0003BE56, len = 302
+	  numberOfContours:	3
+	  xMin:			104
+	  yMin:			-33
+	  xMax:			1128
+	  yMax:			1197
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  28
+	  2:  37
+
+	  Length of Instructions:	177
+	00000: NPUSHB     (126):   201    36     1   184    36     1    58    36     1    40 
+	                            36     1   197    32     1   183    32     1    52    32 
+	                             1    39    32     1   119    26     1    38    26    54 
+	                            26     2   120    22     1    57    22     1    40    22 
+	                             1   147    17     1   132    17     1    57    17     1 
+	                           155    12     1   138    12     1    54    12     1   154 
+	                             8     1   139     8     1    54     8     1   147     3 
+	                             1   130     3     1    57     3     1    28    30    30 
+	                           111    10   143    10     2    10    38    29    20    30 
+	                           111     0   143     0     2   207     0   239     0     2 
+	                            79     0   111     0   143     0     3    16     0    48 
+	                             0     2     0    20    37    30    30    34    24    37 
+	                            14     3    34    37     6     9 
+	00128: SVTCA[y-axis] 
+	00129: MIAP[rd+ci] 
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: MIAP[rd+ci] 
+	00132: MIRP[nrp0,md,rd,1] 
+	00133: SRP1       
+	00134: IP         
+	00135: MDAP[rd]   
+	00136: MIRP[nrp0,md,rd,1] 
+	00137: SVTCA[x-axis] 
+	00138: MDAP[rd]   
+	00139: DELTAP1    
+	00140: DELTAP1    
+	00141: DELTAP2    
+	00142: DELTAP3    
+	00143: MIRP[nrp0,md,rd,1] 
+	00144: SHP[rp2,zp1] 
+	00145: SRP0       
+	00146: MDRP[srp0,md,rd,2] 
+	00147: DELTAP3    
+	00148: MIRP[nrp0,md,rd,1] 
+	00149: SHP[rp2,zp1] 
+	00150: IUP[y]     
+	00151: IUP[x]     
+	00152: DELTAP1    
+	00153: DELTAP1    
+	00154: DELTAP1    
+	00155: DELTAP1    
+	00156: DELTAP1    
+	00157: DELTAP1    
+	00158: DELTAP1    
+	00159: DELTAP1    
+	00160: DELTAP1    
+	00161: DELTAP1    
+	00162: DELTAP1    
+	00163: DELTAP1    
+	00164: DELTAP1    
+	00165: DELTAP1    
+	00166: DELTAP1    
+	00167: DELTAP1    
+	00168: DELTAP1    
+	00169: DELTAP1    
+	00170: DELTAP1    
+	00171: DELTAP1    
+	00172: DELTAP1    
+	00173: DELTAP1    
+	00174: DELTAP1    
+	00175: DELTAP1    
+	00176: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:  YDual               Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:                      Y-Short X-Short On
+	 27:                      Y-Short X-Short Off
+	 28:                      Y-Short X-Short On
+	 29:                      Y-Short         On
+	 30:  YDual                               On
+	 31:        XDual         Y-Short X-Short Off
+	 32:        XDual         Y-Short X-Short On
+	 33:        XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1128,   582)  ->  Abs (  1128,   582)
+	  1: Rel (     0,  -160)  ->  Abs (  1128,   422)
+	  2: Rel (   -63,  -140)  ->  Abs (  1065,   282)
+	  3: Rel (   -68,  -152)  ->  Abs (   997,   130)
+	  4: Rel (  -124,   -83)  ->  Abs (   873,    47)
+	  5: Rel (  -119,   -80)  ->  Abs (   754,   -33)
+	  6: Rel (  -138,     0)  ->  Abs (   616,   -33)
+	  7: Rel (  -230,     0)  ->  Abs (   386,   -33)
+	  8: Rel (  -148,   198)  ->  Abs (   238,   165)
+	  9: Rel (  -134,   179)  ->  Abs (   104,   344)
+	 10: Rel (     0,   238)  ->  Abs (   104,   582)
+	 11: Rel (     0,   238)  ->  Abs (   104,   820)
+	 12: Rel (   134,   180)  ->  Abs (   238,  1000)
+	 13: Rel (   147,   197)  ->  Abs (   385,  1197)
+	 14: Rel (   231,     0)  ->  Abs (   616,  1197)
+	 15: Rel (   144,     0)  ->  Abs (   760,  1197)
+	 16: Rel (   121,   -86)  ->  Abs (   881,  1111)
+	 17: Rel (   114,   -81)  ->  Abs (   995,  1030)
+	 18: Rel (    65,  -136)  ->  Abs (  1060,   894)
+	 19: Rel (    68,  -142)  ->  Abs (  1128,   752)
+	 20: Rel (   -88,  -102)  ->  Abs (  1040,   650)
+	 21: Rel (   -17,   164)  ->  Abs (  1023,   814)
+	 22: Rel (   -99,   136)  ->  Abs (   924,   950)
+	 23: Rel (  -119,   163)  ->  Abs (   805,  1113)
+	 24: Rel (  -189,     0)  ->  Abs (   616,  1113)
+	 25: Rel (  -177,     0)  ->  Abs (   439,  1113)
+	 26: Rel (  -125,  -155)  ->  Abs (   314,   958)
+	 27: Rel (  -106,  -132)  ->  Abs (   208,   826)
+	 28: Rel (   -17,  -176)  ->  Abs (   191,   650)
+	 29: Rel (   852,   -84)  ->  Abs (  1043,   566)
+	 30: Rel (  -855,     0)  ->  Abs (   188,   566)
+	 31: Rel (     4,  -222)  ->  Abs (   192,   344)
+	 32: Rel (   128,  -144)  ->  Abs (   320,   200)
+	 33: Rel (   132,  -149)  ->  Abs (   452,    51)
+	 34: Rel (   164,     0)  ->  Abs (   616,    51)
+	 35: Rel (   190,     0)  ->  Abs (   806,    51)
+	 36: Rel (   122,   167)  ->  Abs (   928,   218)
+	 37: Rel (   111,   150)  ->  Abs (  1039,   368)
+
+	Glyph 1317: off = 0x0003BF84, len = 258
+	  numberOfContours:	3
+	  xMin:			145
+	  yMin:			-33
+	  xMax:			1084
+	  yMax:			896
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  19
+	  2:  27
+
+	  Length of Instructions:	155
+	00000: NPUSHB     (113):   204    26     1    75    26    91    26   107    26   171 
+	                            26   187    26     5    57    26     1   164    23   180 
+	                            23   196    23     3   135    23   151    23     2   100 
+	                            23     1    69    23    85    23     2    55    23     1 
+	                           180    17   196    17     2   165    17     1   202    14 
+	                             1   171    14   187    14     2    20    12    33   207 
+	                             0     1    96     0     1    15     0     1   223     0 
+	                             1   112     0   144     0   192     0     3    15     0 
+	                             1     0    29    19    21    33   111     6     1   240 
+	                             6     1   111     6   191     6   207     6     3     6 
+	                            12    33    21    21    25    15    33     9     7    25 
+	                            33     3     9 
+	00115: SVTCA[y-axis] 
+	00116: MIAP[rd+ci] 
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: MIAP[rd+ci] 
+	00119: MIRP[nrp0,md,rd,1] 
+	00120: SRP1       
+	00121: IP         
+	00122: MDAP[rd]   
+	00123: MIRP[nrp0,md,rd,1] 
+	00124: SVTCA[x-axis] 
+	00125: MDAP[rd]   
+	00126: DELTAP1    
+	00127: DELTAP1    
+	00128: DELTAP2    
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: SHP[rp2,zp1] 
+	00131: SRP0       
+	00132: MDRP[srp0,nmd,rd,2] 
+	00133: DELTAP1    
+	00134: DELTAP1    
+	00135: DELTAP1    
+	00136: DELTAP2    
+	00137: DELTAP2    
+	00138: DELTAP2    
+	00139: MIRP[nrp0,md,rd,1] 
+	00140: SHP[rp2,zp1] 
+	00141: IUP[y]     
+	00142: IUP[x]     
+	00143: DELTAP1    
+	00144: DELTAP1    
+	00145: DELTAP1    
+	00146: DELTAP1    
+	00147: DELTAP1    
+	00148: DELTAP1    
+	00149: DELTAP1    
+	00150: DELTAP1    
+	00151: DELTAP1    
+	00152: DELTAP1    
+	00153: DELTAP1    
+	00154: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                                      Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:                                      Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:                                      Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:                                      Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:                      Y-Short         On
+	 21:  YDual                               On
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short On
+	 24:        XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1084,   431)  ->  Abs (  1084,   431)
+	  1: Rel (     0,  -195)  ->  Abs (  1084,   236)
+	  2: Rel (  -274,  -269)  ->  Abs (   810,   -33)
+	  3: Rel (  -195,     0)  ->  Abs (   615,   -33)
+	  4: Rel (  -195,     0)  ->  Abs (   420,   -33)
+	  5: Rel (  -275,   270)  ->  Abs (   145,   237)
+	  6: Rel (     0,   194)  ->  Abs (   145,   431)
+	  7: Rel (     0,   196)  ->  Abs (   145,   627)
+	  8: Rel (   274,   269)  ->  Abs (   419,   896)
+	  9: Rel (   196,     0)  ->  Abs (   615,   896)
+	 10: Rel (   195,     0)  ->  Abs (   810,   896)
+	 11: Rel (   274,  -270)  ->  Abs (  1084,   626)
+	 12: Rel (   -87,  -158)  ->  Abs (   997,   468)
+	 13: Rel (   -13,   148)  ->  Abs (   984,   616)
+	 14: Rel (  -221,   195)  ->  Abs (   763,   811)
+	 15: Rel (  -149,     0)  ->  Abs (   614,   811)
+	 16: Rel (  -160,     0)  ->  Abs (   454,   811)
+	 17: Rel (  -112,  -111)  ->  Abs (   342,   700)
+	 18: Rel (   -99,   -98)  ->  Abs (   243,   602)
+	 19: Rel (   -12,  -134)  ->  Abs (   231,   468)
+	 20: Rel (   765,   -84)  ->  Abs (   996,   384)
+	 21: Rel (  -764,     0)  ->  Abs (   232,   384)
+	 22: Rel (    15,  -126)  ->  Abs (   247,   258)
+	 23: Rel (    95,   -95)  ->  Abs (   342,   163)
+	 24: Rel (   113,  -112)  ->  Abs (   455,    51)
+	 25: Rel (   159,     0)  ->  Abs (   614,    51)
+	 26: Rel (   145,     0)  ->  Abs (   759,    51)
+	 27: Rel (   221,   190)  ->  Abs (   980,   241)
+
diff --git a/lib/unstable/freetype/font.h b/lib/unstable/freetype/font.h
new file mode 100644
index 0000000..81b8c71
--- /dev/null
+++ b/lib/unstable/freetype/font.h
@@ -0,0 +1,67 @@
+//
+// Font System 1250 bytes.
+//
+unsigned short __index_font[96]={
+0x000,0x007,0x008,0x00B,0x012,0x017,0x021,0x028,0x029,0x02C,0x02F,0x034,
+0x039,0x03B,0x03F,0x040,0x044,0x049,0x04C,0x051,0x056,0x05B,0x060,0x065,
+0x06A,0x06F,0x074,0x075,0x077,0x07C,0x081,0x086,0x08B,0x097,0x0A0,0x0A7,
+0x0AF,0x0B7,0x0BE,0x0C5,0x0CD,0x0D5,0x0D6,0x0DB,0x0E2,0x0E8,0x0F1,0x0F9,
+0x101,0x109,0x111,0x11A,0x121,0x12A,0x132,0x13B,0x148,0x150,0x159,0x15F,
+0x162,0x166,0x169,0x16E,0x175,0x177,0x17E,0x184,0x18A,0x190,0x196,0x199,
+0x19F,0x1A4,0x1A5,0x1A7,0x1AD,0x1AE,0x1B7,0x1BC,0x1C2,0x1C8,0x1CE,0x1D1,
+0x1D6,0x1D9,0x1DE,0x1E5,0x1EE,0x1F4,0x1FB,0x1FF,0x204,0x205,0x20A,0x211};
+
+unsigned short __graph_font[0x211]={
+0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x17F8,0x0078,0x0000,
+0x0078,0x0200,0x1E40,0x03C0,0x1E78,0x03C0,0x0278,0x0040,0x08E0,0x1110,
+0x3FF8,0x1110,0x0E60,0x0030,0x0848,0x0448,0x0230,0x0100,0x0080,0x0C40,
+0x1220,0x1210,0x0C00,0x0E00,0x1170,0x1088,0x1188,0x1670,0x0800,0x1400,
+0x0078,0x1FC0,0x6030,0x8008,0x8008,0x6030,0x1FC0,0x0050,0x0060,0x0038,
+0x0060,0x0050,0x0100,0x0100,0x07C0,0x0100,0x0100,0x2000,0x1000,0x0100,
+0x0100,0x0100,0x0100,0x1000,0x7000,0x0E00,0x01C0,0x0038,0x0FF0,0x1008,
+0x1008,0x1008,0x0FF0,0x0010,0x0010,0x1FF8,0x1C30,0x1208,0x1108,0x1088,
+0x1070,0x0810,0x1008,0x1088,0x1088,0x0F70,0x0300,0x0280,0x0260,0x0210,
+0x1FF8,0x09F8,0x1088,0x1088,0x1088,0x0F08,0x0FF0,0x1108,0x1088,0x1088,
+0x0F10,0x0008,0x1C08,0x0308,0x00C8,0x0038,0x0F70,0x1088,0x1088,0x1088,
+0x0F70,0x08F0,0x1108,0x1108,0x1088,0x0FF0,0x1040,0x2000,0x1040,0x0100,
+0x0380,0x06C0,0x0C60,0x0820,0x0280,0x0280,0x0280,0x0280,0x0280,0x0820,
+0x0C60,0x06C0,0x0380,0x0100,0x0030,0x0008,0x1708,0x0088,0x0070,0x03C0,
+0x0C30,0x1008,0x1008,0x2384,0x2444,0x2444,0x2244,0x25C8,0x1408,0x1430,
+0x03C0,0x1800,0x0600,0x0380,0x0260,0x0218,0x0260,0x0380,0x0600,0x1800,
+0x1FF8,0x1088,0x1088,0x1088,0x1088,0x1088,0x0F70,0x07E0,0x0810,0x1008,
+0x1008,0x1008,0x1008,0x0810,0x0420,0x1FF8,0x1008,0x1008,0x1008,0x1008,
+0x1008,0x0810,0x07E0,0x1FF8,0x1088,0x1088,0x1088,0x1088,0x1088,0x1008,
+0x1FF8,0x0088,0x0088,0x0088,0x0088,0x0088,0x0008,0x07E0,0x0810,0x1008,
+0x1008,0x1008,0x1108,0x0910,0x1F20,0x1FF8,0x0080,0x0080,0x0080,0x0080,
+0x0080,0x0080,0x1FF8,0x1FF8,0x0C00,0x1000,0x1000,0x1000,0x0FF8,0x1FF8,
+0x0080,0x0140,0x0220,0x0410,0x0808,0x1000,0x1FF8,0x1000,0x1000,0x1000,
+0x1000,0x1000,0x1FF8,0x0060,0x0180,0x0600,0x1800,0x0600,0x0180,0x0060,
+0x1FF8,0x1FF8,0x0010,0x0060,0x0080,0x0100,0x0600,0x0800,0x1FF8,0x07E0,
+0x0810,0x1008,0x1008,0x1008,0x1008,0x0810,0x07E0,0x1FF8,0x0108,0x0108,
+0x0108,0x0108,0x0108,0x0090,0x0060,0x07E0,0x0810,0x1008,0x1008,0x1008,
+0x1408,0x0810,0x17E0,0x1FF8,0x0108,0x0108,0x0108,0x0108,0x0108,0x0190,
+0x0E60,0x1000,0x0C70,0x1088,0x1088,0x1088,0x1108,0x1108,0x0E30,0x0008,
+0x0008,0x0008,0x0008,0x1FF8,0x0008,0x0008,0x0008,0x0008,0x07F8,0x0800,
+0x1000,0x1000,0x1000,0x1000,0x0800,0x07F8,0x0018,0x0060,0x0180,0x0600,
+0x1800,0x0600,0x0180,0x0060,0x0018,0x0038,0x00C0,0x0700,0x1800,0x0700,
+0x00C0,0x0038,0x00C0,0x0700,0x1800,0x0700,0x00C0,0x0038,0x1818,0x0420,
+0x0240,0x0180,0x0180,0x0240,0x0420,0x1818,0x0018,0x0020,0x0040,0x0080,
+0x1F00,0x0080,0x0040,0x0020,0x0018,0x1808,0x1608,0x1108,0x1088,0x1068,
+0x1018,0xFFF8,0x8008,0x8008,0x0038,0x01C0,0x0E00,0x7000,0x8008,0x8008,
+0xFFF8,0x0010,0x0008,0x0004,0x0008,0x0010,0x4000,0x4000,0x4000,0x4000,
+0x4000,0x4000,0x4000,0x0008,0x0010,0x0E80,0x1140,0x1140,0x1140,0x1140,
+0x0F80,0x1000,0x1FF8,0x0880,0x1040,0x1040,0x1040,0x0F80,0x0F80,0x1040,
+0x1040,0x1040,0x1040,0x0880,0x0F80,0x1040,0x1040,0x1040,0x0880,0x1FF8,
+0x0F80,0x1240,0x1240,0x1240,0x1240,0x0B80,0x0040,0x1FF0,0x0048,0x0F80,
+0x9040,0x9040,0x9040,0x8880,0x7FC0,0x1FF8,0x0080,0x0040,0x0040,0x1F80,
+0x1FC8,0x8000,0x7FC8,0x1FF8,0x0200,0x0300,0x0480,0x0840,0x1000,0x1FF8,
+0x1FC0,0x0080,0x0040,0x0040,0x1F80,0x0080,0x0040,0x0040,0x1F80,0x1FC0,
+0x0080,0x0040,0x0040,0x1F80,0x0F80,0x1040,0x1040,0x1040,0x1040,0x0F80,
+0xFFC0,0x0880,0x1040,0x1040,0x1040,0x0F80,0x0F80,0x1040,0x1040,0x1040,
+0x0880,0xFFC0,0x1FC0,0x0080,0x0040,0x0980,0x1240,0x1240,0x1240,0x0C80,
+0x0040,0x0FF0,0x1040,0x0FC0,0x1000,0x1000,0x0800,0x1FC0,0x00C0,0x0300,
+0x0C00,0x1000,0x0C00,0x0300,0x00C0,0x00C0,0x0700,0x1800,0x0700,0x00C0,
+0x0700,0x1800,0x0700,0x00C0,0x1040,0x0880,0x0700,0x0700,0x0880,0x1040,
+0x80C0,0x8300,0x4C00,0x3000,0x0C00,0x0300,0x00C0,0x1840,0x1640,0x1140,
+0x10C0,0x0200,0x0200,0x7DF0,0x8008,0x8008,0xFFF8,0x8008,0x8008,0x7DF0,
+0x0200,0x0200,0x0030,0x0008,0x0008,0x0010,0x0020,0x0020,0x0018};
diff --git a/lib/unstable/freetype/font.ttf b/lib/unstable/freetype/font.ttf
new file mode 100644
index 0000000..7ecabb7
Binary files /dev/null and b/lib/unstable/freetype/font.ttf differ
diff --git a/lib/unstable/freetype/mvboli.ttf b/lib/unstable/freetype/mvboli.ttf
new file mode 100644
index 0000000..7ecabb7
Binary files /dev/null and b/lib/unstable/freetype/mvboli.ttf differ
diff --git a/lib/unstable/freetype/mvboli.txt b/lib/unstable/freetype/mvboli.txt
new file mode 100644
index 0000000..e06a714
--- /dev/null
+++ b/lib/unstable/freetype/mvboli.txt
@@ -0,0 +1,21666 @@
+
+; TrueType v1.0 Dump Program - v1.8, Oct 29 2002, rrt, dra, gch, ddb, lcp, pml
+; Copyright (C) 1991 ZSoft Corporation. All rights reserved.
+; Portions Copyright (C) 1991-2001 Microsoft Corporation. All rights reserved.
+
+; Dumping file 'toontime.ttf'
+
+Offset Table
+------ -----
+  sfnt version:     1.0
+  numTables =        20
+  searchRange =     256
+  entrySelector =     4
+  rangeShift =       64
+
+ 0. 'DSIG' - chksm = 0x37490314, off = 0x000084E8, len =     6476
+ 1. 'GDEF' - chksm = 0x01810198, off = 0x00007E84, len =       48
+ 2. 'GPOS' - chksm = 0x6FC5DEF6, off = 0x00007EB4, len =     1492
+ 3. 'GSUB' - chksm = 0xDAB9D231, off = 0x00008488, len =       94
+ 4. 'LTSH' - chksm = 0xD77AD03A, off = 0x000008F8, len =      124
+ 5. 'OS/2' - chksm = 0x6CA7717E, off = 0x000001C8, len =       86
+ 6. 'VDMX' - chksm = 0x69D6715B, off = 0x00000974, len =     1504
+ 7. 'cmap' - chksm = 0x1EC5DA52, off = 0x00000630, len =      466
+ 8. 'cvt ' - chksm = 0x191B27A2, off = 0x00001A1C, len =      520
+ 9. 'fpgm' - chksm = 0x07DB318A, off = 0x00001260, len =     1978
+10. 'glyf' - chksm = 0xC28F876E, off = 0x0000291C, len =    20602
+11. 'hdmx' - chksm = 0xE3455448, off = 0x00001DF0, len =     2860
+12. 'head' - chksm = 0xD3D49E88, off = 0x0000014C, len =       54
+13. 'hhea' - chksm = 0x1181049A, off = 0x00000184, len =       36
+14. 'hmtx' - chksm = 0xDD231B2D, off = 0x00001C24, len =      460
+15. 'loca' - chksm = 0x2BD517A1, off = 0x00000804, len =      242
+16. 'maxp' - chksm = 0x02950906, off = 0x000001A8, len =       32
+17. 'name' - chksm = 0x1AD83746, off = 0x00000220, len =     1037
+18. 'post' - chksm = 0x51FD5D61, off = 0x00007998, len =     1259
+19. 'prep' - chksm = 0xFD391FDA, off = 0x00000F54, len =      780
+
+'head' Table - Font Header
+--------------------------
+Size = 54 bytes (expecting 54 bytes)
+  'head' version:      1.0
+  fontRevision:        1.0
+  checkSumAdjustment:  0x626E2E1C
+  magicNumber:         0x5F0F3CF5
+  flags:               0x001B- baseline(y)=0 - lsb(x)=0 - int ppem - nonlin aw
+  unitsPerEm:          2048
+  created:             Wed Nov 29 17:51:34 2000
+  modified:            Thu May 03 01:05:42 2001
+  xMin:                -313
+  yMin:                -610
+  xMax:                2175
+  yMax:                1792
+  macStyle bits:       0x0000
+  lowestRecPPEM:       9
+  fontDirectionHint:   1
+  indexToLocFormat:    0
+  glyphDataFormat:     0
+
+'hhea' Table - Horizontal Header
+--------------------------------
+Size = 36 bytes (expecting 36 bytes)
+	'hhea' version:         1.0
+	yAscender:            2333
+	yDescender:           -967
+	yLineGap:             0
+	advanceWidthMax:      2195
+	minLeftSideBearing:   -313
+	minRightSideBearing:  -1024
+	xMaxExtent:           2175
+	horizCaretSlopeNum:   984
+	horizCaretSlopeDenom: 282
+	reserved0:            65416
+	reserved1:            0
+	reserved2:            0
+	reserved3:            0
+	reserved4:            0
+	metricDataFormat:     0
+	numOf_LongHorMetrics: 110
+
+'maxp' Table - Maximum Profile
+------------------------------
+Size = 32 bytes (expecting 32 bytes)
+	'maxp' version:		  1.0
+	numGlyphs:		120
+	maxPoints:		194
+	maxContours:		18
+	maxCompositePoints:	88
+	maxCompositeContours:	9
+	maxZones:		2
+	maxTwilightPoints:	16
+	maxStorage:		47
+	maxFunctionDefs:	83
+	maxInstructionDefs:	0
+	maxStackElements:	412
+	maxSizeOfInstructions:	1978
+	maxComponentElements:	2
+	maxComponentDepth:	1
+
+'name' Table - Naming Table
+---------------------------
+	Format:		0
+	Count:		19
+	stringOffset:	 234
+Size = 1037 bytes
+	  0. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		0
+	     Length:		75
+	     Offset:		0
+		Data: 44 69 67 69 74 69 7A 65 64 20  >  Digitized 
+		      64 61 74 61 20 A9 20 32 30 30  >  data © 200
+		      30 2D 32 30 30 31 2C 20 41 67  >  0-2001, Ag
+		      66 61 20 4D 6F 6E 6F 74 79 70  >  fa Monotyp
+		      65 20 43 6F 72 70 6F 72 61 74  >  e Corporat
+		      69 6F 6E 2E 20 41 6C 6C 20 72  >  ion. All r
+		      69 67 68 74 73 20 72 65 73 65  >  ights rese
+		      72 76 65 64 2E                 >  rved.
+
+	  1. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		1
+	     Length:		7
+	     Offset:		75
+		Data: 4D 56 20 42 6F 6C 69           >  MV Boli
+
+	  2. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		2
+	     Length:		7
+	     Offset:		82
+		Data: 52 65 67 75 6C 61 72           >  Regular
+
+	  3. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		3
+	     Length:		29
+	     Offset:		89
+		Data: 41 67 66 61 20 4D 6F 6E 6F 74  >  Agfa Monot
+		      79 70 65 20 4D 56 20 42 6F 6C  >  ype MV Bol
+		      69 20 52 65 67 75 6C 61 72     >  i Regular
+
+	  4. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		4
+	     Length:		7
+	     Offset:		118
+		Data: 4D 56 20 42 6F 6C 69           >  MV Boli
+
+	  5. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		5
+	     Length:		12
+	     Offset:		125
+		Data: 56 65 72 73 69 6F 6E 20 31 2E  >  Version 1.
+		      30 30                          >  00
+
+	  6. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		6
+	     Length:		6
+	     Offset:		137
+		Data: 4D 56 42 6F 6C 69              >  MVBoli
+
+	  7. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		0
+	     Length:		150
+	     Offset:		143
+		Data:  0 44  0 69  0 67  0 69  0 74  >  .D.i.g.i.t
+		       0 69  0 7A  0 65  0 64  0 20  >  .i.z.e.d. 
+		       0 64  0 61  0 74  0 61  0 20  >  .d.a.t.a. 
+		       0 A9  0 20  0 32  0 30  0 30  >  .©. .2.0.0
+		       0 30  0 2D  0 32  0 30  0 30  >  .0.-.2.0.0
+		       0 31  0 2C  0 20  0 41  0 67  >  .1.,. .A.g
+		       0 66  0 61  0 20  0 4D  0 6F  >  .f.a. .M.o
+		       0 6E  0 6F  0 74  0 79  0 70  >  .n.o.t.y.p
+		       0 65  0 20  0 43  0 6F  0 72  >  .e. .C.o.r
+		       0 70  0 6F  0 72  0 61  0 74  >  .p.o.r.a.t
+		       0 69  0 6F  0 6E  0 2E  0 20  >  .i.o.n... 
+		       0 41  0 6C  0 6C  0 20  0 72  >  .A.l.l. .r
+		       0 69  0 67  0 68  0 74  0 73  >  .i.g.h.t.s
+		       0 20  0 72  0 65  0 73  0 65  >  . .r.e.s.e
+		       0 72  0 76  0 65  0 64  0 2E  >  .r.v.e.d..
+
+	  8. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		1
+	     Length:		14
+	     Offset:		293
+		Data:  0 4D  0 56  0 20  0 42  0 6F  >  .M.V. .B.o
+		       0 6C  0 69                    >  .l.i
+
+	  9. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		2
+	     Length:		14
+	     Offset:		307
+		Data:  0 52  0 65  0 67  0 75  0 6C  >  .R.e.g.u.l
+		       0 61  0 72                    >  .a.r
+
+	 10. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		3
+	     Length:		58
+	     Offset:		321
+		Data:  0 41  0 67  0 66  0 61  0 20  >  .A.g.f.a. 
+		       0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 4D  >  .y.p.e. .M
+		       0 56  0 20  0 42  0 6F  0 6C  >  .V. .B.o.l
+		       0 69  0 20  0 52  0 65  0 67  >  .i. .R.e.g
+		       0 75  0 6C  0 61  0 72        >  .u.l.a.r
+
+	 11. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		4
+	     Length:		14
+	     Offset:		379
+		Data:  0 4D  0 56  0 20  0 42  0 6F  >  .M.V. .B.o
+		       0 6C  0 69                    >  .l.i
+
+	 12. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		5
+	     Length:		24
+	     Offset:		393
+		Data:  0 56  0 65  0 72  0 73  0 69  >  .V.e.r.s.i
+		       0 6F  0 6E  0 20  0 31  0 2E  >  .o.n. .1..
+		       0 30  0 30                    >  .0.0
+
+	 13. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		6
+	     Length:		12
+	     Offset:		417
+		Data:  0 4D  0 56  0 42  0 6F  0 6C  >  .M.V.B.o.l
+		       0 69                          >  .i
+
+	 14. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		8
+	     Length:		50
+	     Offset:		429
+		Data:  0 41  0 67  0 66  0 61  0 20  >  .A.g.f.a. 
+		       0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 43  >  .y.p.e. .C
+		       0 6F  0 72  0 70  0 6F  0 72  >  .o.r.p.o.r
+		       0 61  0 74  0 69  0 6F  0 6E  >  .a.t.i.o.n
+
+	 15. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		9
+	     Length:		58
+	     Offset:		479
+		Data:  0 54  0 68  0 6F  0 6D  0 61  >  .T.h.o.m.a
+		       0 73  0 20  0 52  0 69  0 63  >  .s. .R.i.c
+		       0 6B  0 6E  0 65  0 72  0 2C  >  .k.n.e.r.,
+		       0 20  0 4B  0 61  0 6D  0 61  >  . .K.a.m.a
+		       0 6C  0 20  0 4D  0 61  0 6E  >  .l. .M.a.n
+		       0 73  0 6F  0 75  0 72        >  .s.o.u.r
+
+	 16. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		11
+	     Length:		54
+	     Offset:		537
+		Data:  0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 61  0 67  0 66  0 61  >  ...a.g.f.a
+		       0 6D  0 6F  0 6E  0 6F  0 74  >  .m.o.n.o.t
+		       0 79  0 70  0 65  0 2E  0 63  >  .y.p.e...c
+		       0 6F  0 6D                    >  .o.m
+
+	 17. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		12
+	     Length:		112
+	     Offset:		591
+		Data:  0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 61  0 67  0 66  0 61  >  ...a.g.f.a
+		       0 6D  0 6F  0 6E  0 6F  0 74  >  .m.o.n.o.t
+		       0 79  0 70  0 65  0 2E  0 63  >  .y.p.e...c
+		       0 6F  0 6D  0 2F  0 68  0 74  >  .o.m./.h.t
+		       0 6D  0 6C  0 2F  0 64  0 65  >  .m.l./.d.e
+		       0 73  0 69  0 67  0 6E  0 65  >  .s.i.g.n.e
+		       0 72  0 2F  0 64  0 65  0 73  >  .r./.d.e.s
+		       0 5F  0 69  0 6E  0 64  0 65  >  ._.i.n.d.e
+		       0 78  0 2E  0 68  0 74  0 6D  >  .x...h.t.m
+		       0 6C                          >  .l
+
+	 18. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		14
+	     Length:		100
+	     Offset:		703
+		Data:  0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 61  0 67  0 66  0 61  >  ...a.g.f.a
+		       0 6D  0 6F  0 6E  0 6F  0 74  >  .m.o.n.o.t
+		       0 79  0 70  0 65  0 2E  0 63  >  .y.p.e...c
+		       0 6F  0 6D  0 2F  0 68  0 74  >  .o.m./.h.t
+		       0 6D  0 6C  0 2F  0 74  0 79  >  .m.l./.t.y
+		       0 70  0 65  0 2F  0 6C  0 69  >  .p.e./.l.i
+		       0 63  0 65  0 6E  0 73  0 65  >  .c.e.n.s.e
+		       0 2E  0 68  0 74  0 6D  0 6C  >  ...h.t.m.l
+
+
+'OS/2' Table - OS/2 and Windows Metrics
+---------------------------------------
+Size = 86 bytes (expecting 86 bytes)
+  'OS/2' version:           1
+  xAvgCharWidth:            1025
+  usWeightClass:            400
+  usWidthClass:             5
+  fsType:                   0x0008
+  ySubscriptXSize:          1434
+  ySubscriptYSize:          1331
+  ySubscriptXOffset:        0
+  ySubscriptYOffset:        0
+  ySuperscriptXSize:        1434
+  ySuperscriptYSize:        1331
+  ySuperscriptXOffset:      0
+  ySuperscriptYOffset:      0
+  yStrikeoutSize:           102
+  yStrikeoutPosition:       430
+  sFamilyClass:             10    subclass = 6
+  PANOSE:                   2  0  5  0  3  2  0  9  0  0
+  Unicode Range 1( Bits 0 - 31 ): 00000000
+  Unicode Range 2( Bits 32- 63 ): 00000000
+  Unicode Range 3( Bits 64- 95 ): 00000100
+  Unicode Range 4( Bits 96-127 ): 00000000
+  achVendID:                'MONO'
+  fsSelection:              0x0040
+  usFirstCharIndex:         0x0020
+  usLastCharIndex:          0xFDF2
+  sTypoAscender:            1464
+  sTypoDescender:           -463
+  sTypoLineGap:             264
+  usWinAscent:              2333
+  usWinDescent:             967
+  CodePage Range 1( Bits 0 - 31 ): 00000000
+  CodePage Range 2( Bits 32- 63 ): 00000000
+
+'post' Table - PostScript Metrics
+---------------------------------
+Size = 1259 bytes
+	'post' version:	        2.0
+	italicAngle:	      -16.0000
+	underlinePosition:	-340
+	underlineThickness:	100
+	isFixedPitch:		0
+	minMemType42:		0
+	maxMemType42:		0
+	minMemType1:		0
+	maxMemType1:		0
+
+	Format 2.0:  Non-Standard (for PostScript) TrueType Glyph Set.
+	numGlyphs:	120
+	Glyf   0 -> Mac Glyph # 0, '.notdef'
+	Glyf   1 -> Mac Glyph # 1, 'null'
+	Glyf   2 -> Mac Glyph # 2, 'CR'
+	Glyf   3 -> PSGlyf Name # 1, name= 'space'
+	Glyf   4 -> PSGlyf Name # 2, name= 'exclam'
+	Glyf   5 -> PSGlyf Name # 3, name= 'quotedbl'
+	Glyf   6 -> PSGlyf Name # 4, name= 'numbersign'
+	Glyf   7 -> PSGlyf Name # 5, name= 'dollar'
+	Glyf   8 -> PSGlyf Name # 6, name= 'percent'
+	Glyf   9 -> PSGlyf Name # 7, name= 'ampersand'
+	Glyf  10 -> PSGlyf Name # 8, name= 'quotesingle'
+	Glyf  11 -> PSGlyf Name # 9, name= 'parenleft'
+	Glyf  12 -> PSGlyf Name # 10, name= 'parenright'
+	Glyf  13 -> PSGlyf Name # 11, name= 'asterisk'
+	Glyf  14 -> PSGlyf Name # 12, name= 'plus'
+	Glyf  15 -> PSGlyf Name # 13, name= 'comma'
+	Glyf  16 -> PSGlyf Name # 14, name= 'hyphen'
+	Glyf  17 -> PSGlyf Name # 15, name= 'period'
+	Glyf  18 -> PSGlyf Name # 16, name= 'slash'
+	Glyf  19 -> PSGlyf Name # 17, name= 'zero'
+	Glyf  20 -> PSGlyf Name # 18, name= 'one'
+	Glyf  21 -> PSGlyf Name # 19, name= 'two'
+	Glyf  22 -> PSGlyf Name # 20, name= 'three'
+	Glyf  23 -> PSGlyf Name # 21, name= 'four'
+	Glyf  24 -> PSGlyf Name # 22, name= 'five'
+	Glyf  25 -> PSGlyf Name # 23, name= 'six'
+	Glyf  26 -> PSGlyf Name # 24, name= 'seven'
+	Glyf  27 -> PSGlyf Name # 25, name= 'eight'
+	Glyf  28 -> PSGlyf Name # 26, name= 'nine'
+	Glyf  29 -> PSGlyf Name # 27, name= 'colon'
+	Glyf  30 -> PSGlyf Name # 28, name= 'semicolon'
+	Glyf  31 -> PSGlyf Name # 29, name= 'less'
+	Glyf  32 -> PSGlyf Name # 30, name= 'equal'
+	Glyf  33 -> PSGlyf Name # 31, name= 'greater'
+	Glyf  34 -> PSGlyf Name # 32, name= 'bracketleft'
+	Glyf  35 -> PSGlyf Name # 33, name= 'backslash'
+	Glyf  36 -> PSGlyf Name # 34, name= 'bracketright'
+	Glyf  37 -> PSGlyf Name # 35, name= 'braceleft'
+	Glyf  38 -> PSGlyf Name # 36, name= 'bar'
+	Glyf  39 -> PSGlyf Name # 37, name= 'braceright'
+	Glyf  40 -> PSGlyf Name # 38, name= 'bullet'
+	Glyf  41 -> PSGlyf Name # 39, name= 'guillemotleft'
+	Glyf  42 -> PSGlyf Name # 40, name= 'guillemotright'
+	Glyf  43 -> PSGlyf Name # 41, name= 'endash'
+	Glyf  44 -> PSGlyf Name # 42, name= 'emdash'
+	Glyf  45 -> PSGlyf Name # 43, name= 'quotedblleft'
+	Glyf  46 -> PSGlyf Name # 44, name= 'quotedblright'
+	Glyf  47 -> PSGlyf Name # 45, name= 'quoteleft'
+	Glyf  48 -> PSGlyf Name # 46, name= 'quoteright'
+	Glyf  49 -> PSGlyf Name # 47, name= 'uni00B7'
+	Glyf  50 -> PSGlyf Name # 48, name= 'afii57388'
+	Glyf  51 -> PSGlyf Name # 49, name= 'afii57403'
+	Glyf  52 -> PSGlyf Name # 50, name= 'afii57407'
+	Glyf  53 -> PSGlyf Name # 51, name= 'uni0780'
+	Glyf  54 -> PSGlyf Name # 52, name= 'uni0781'
+	Glyf  55 -> PSGlyf Name # 53, name= 'uni0782'
+	Glyf  56 -> PSGlyf Name # 54, name= 'uni0783'
+	Glyf  57 -> PSGlyf Name # 55, name= 'uni0784'
+	Glyf  58 -> PSGlyf Name # 56, name= 'uni0785'
+	Glyf  59 -> PSGlyf Name # 57, name= 'uni0786'
+	Glyf  60 -> PSGlyf Name # 58, name= 'uni0787'
+	Glyf  61 -> PSGlyf Name # 59, name= 'uni0788'
+	Glyf  62 -> PSGlyf Name # 60, name= 'uni0789'
+	Glyf  63 -> PSGlyf Name # 61, name= 'uni078A'
+	Glyf  64 -> PSGlyf Name # 62, name= 'uni078B'
+	Glyf  65 -> PSGlyf Name # 63, name= 'uni078C'
+	Glyf  66 -> PSGlyf Name # 64, name= 'uni078D'
+	Glyf  67 -> PSGlyf Name # 65, name= 'uni078E'
+	Glyf  68 -> PSGlyf Name # 66, name= 'uni078F'
+	Glyf  69 -> PSGlyf Name # 67, name= 'uni0790'
+	Glyf  70 -> PSGlyf Name # 68, name= 'uni0791'
+	Glyf  71 -> PSGlyf Name # 69, name= 'uni0792'
+	Glyf  72 -> PSGlyf Name # 70, name= 'uni0793'
+	Glyf  73 -> PSGlyf Name # 71, name= 'uni0794'
+	Glyf  74 -> PSGlyf Name # 72, name= 'uni0795'
+	Glyf  75 -> PSGlyf Name # 73, name= 'uni0796'
+	Glyf  76 -> PSGlyf Name # 74, name= 'uni0797'
+	Glyf  77 -> PSGlyf Name # 75, name= 'uni0798'
+	Glyf  78 -> PSGlyf Name # 76, name= 'uni0799'
+	Glyf  79 -> PSGlyf Name # 77, name= 'uni079A'
+	Glyf  80 -> PSGlyf Name # 78, name= 'uni079B'
+	Glyf  81 -> PSGlyf Name # 79, name= 'uni079C'
+	Glyf  82 -> PSGlyf Name # 80, name= 'uni079D'
+	Glyf  83 -> PSGlyf Name # 81, name= 'uni079E'
+	Glyf  84 -> PSGlyf Name # 82, name= 'uni079F'
+	Glyf  85 -> PSGlyf Name # 83, name= 'uni07A0'
+	Glyf  86 -> PSGlyf Name # 84, name= 'uni07A1'
+	Glyf  87 -> PSGlyf Name # 85, name= 'uni07A2'
+	Glyf  88 -> PSGlyf Name # 86, name= 'uni07A3'
+	Glyf  89 -> PSGlyf Name # 87, name= 'uni07A4'
+	Glyf  90 -> PSGlyf Name # 88, name= 'uni07A5'
+	Glyf  91 -> PSGlyf Name # 89, name= 'uni07A6'
+	Glyf  92 -> PSGlyf Name # 90, name= 'uni07A7'
+	Glyf  93 -> PSGlyf Name # 91, name= 'uni07A8'
+	Glyf  94 -> PSGlyf Name # 92, name= 'uni07A9'
+	Glyf  95 -> PSGlyf Name # 93, name= 'uni07AA'
+	Glyf  96 -> PSGlyf Name # 94, name= 'uni07AB'
+	Glyf  97 -> PSGlyf Name # 95, name= 'uni07AC'
+	Glyf  98 -> PSGlyf Name # 96, name= 'uni07AD'
+	Glyf  99 -> PSGlyf Name # 97, name= 'uni07AE'
+	Glyf 100 -> PSGlyf Name # 98, name= 'uni07AF'
+	Glyf 101 -> PSGlyf Name # 99, name= 'uni07B0'
+	Glyf 102 -> PSGlyf Name # 100, name= 'uni07B1'
+	Glyf 103 -> PSGlyf Name # 117, name= 'DotAbove'
+	Glyf 104 -> PSGlyf Name # 101, name= 'DotBelow'
+	Glyf 105 -> PSGlyf Name # 102, name= 'TwoDots'
+	Glyf 106 -> PSGlyf Name # 103, name= 'ThreeDots'
+	Glyf 107 -> PSGlyf Name # 104, name= 'uni25CC'
+	Glyf 108 -> PSGlyf Name # 105, name= 'uniFDF2'
+	Glyf 109 -> PSGlyf Name # 106, name= 'uni07A6nsp'
+	Glyf 110 -> PSGlyf Name # 107, name= 'uni07A7nsp'
+	Glyf 111 -> PSGlyf Name # 108, name= 'uni07A8nsp'
+	Glyf 112 -> PSGlyf Name # 109, name= 'uni07A9nsp'
+	Glyf 113 -> PSGlyf Name # 110, name= 'uni07AAnsp'
+	Glyf 114 -> PSGlyf Name # 111, name= 'uni07ABnsp'
+	Glyf 115 -> PSGlyf Name # 112, name= 'uni07ACnsp'
+	Glyf 116 -> PSGlyf Name # 113, name= 'uni07ADnsp'
+	Glyf 117 -> PSGlyf Name # 114, name= 'uni07AEnsp'
+	Glyf 118 -> PSGlyf Name # 115, name= 'uni07AFnsp'
+	Glyf 119 -> PSGlyf Name # 116, name= 'uni07B0nsp'
+
+	Full List of PSGlyf Names
+	-------------------------
+	PSGlyf Name #   1: space
+	PSGlyf Name #   2: exclam
+	PSGlyf Name #   3: quotedbl
+	PSGlyf Name #   4: numbersign
+	PSGlyf Name #   5: dollar
+	PSGlyf Name #   6: percent
+	PSGlyf Name #   7: ampersand
+	PSGlyf Name #   8: quotesingle
+	PSGlyf Name #   9: parenleft
+	PSGlyf Name #  10: parenright
+	PSGlyf Name #  11: asterisk
+	PSGlyf Name #  12: plus
+	PSGlyf Name #  13: comma
+	PSGlyf Name #  14: hyphen
+	PSGlyf Name #  15: period
+	PSGlyf Name #  16: slash
+	PSGlyf Name #  17: zero
+	PSGlyf Name #  18: one
+	PSGlyf Name #  19: two
+	PSGlyf Name #  20: three
+	PSGlyf Name #  21: four
+	PSGlyf Name #  22: five
+	PSGlyf Name #  23: six
+	PSGlyf Name #  24: seven
+	PSGlyf Name #  25: eight
+	PSGlyf Name #  26: nine
+	PSGlyf Name #  27: colon
+	PSGlyf Name #  28: semicolon
+	PSGlyf Name #  29: less
+	PSGlyf Name #  30: equal
+	PSGlyf Name #  31: greater
+	PSGlyf Name #  32: bracketleft
+	PSGlyf Name #  33: backslash
+	PSGlyf Name #  34: bracketright
+	PSGlyf Name #  35: braceleft
+	PSGlyf Name #  36: bar
+	PSGlyf Name #  37: braceright
+	PSGlyf Name #  38: bullet
+	PSGlyf Name #  39: guillemotleft
+	PSGlyf Name #  40: guillemotright
+	PSGlyf Name #  41: endash
+	PSGlyf Name #  42: emdash
+	PSGlyf Name #  43: quotedblleft
+	PSGlyf Name #  44: quotedblright
+	PSGlyf Name #  45: quoteleft
+	PSGlyf Name #  46: quoteright
+	PSGlyf Name #  47: uni00B7
+	PSGlyf Name #  48: afii57388
+	PSGlyf Name #  49: afii57403
+	PSGlyf Name #  50: afii57407
+	PSGlyf Name #  51: uni0780
+	PSGlyf Name #  52: uni0781
+	PSGlyf Name #  53: uni0782
+	PSGlyf Name #  54: uni0783
+	PSGlyf Name #  55: uni0784
+	PSGlyf Name #  56: uni0785
+	PSGlyf Name #  57: uni0786
+	PSGlyf Name #  58: uni0787
+	PSGlyf Name #  59: uni0788
+	PSGlyf Name #  60: uni0789
+	PSGlyf Name #  61: uni078A
+	PSGlyf Name #  62: uni078B
+	PSGlyf Name #  63: uni078C
+	PSGlyf Name #  64: uni078D
+	PSGlyf Name #  65: uni078E
+	PSGlyf Name #  66: uni078F
+	PSGlyf Name #  67: uni0790
+	PSGlyf Name #  68: uni0791
+	PSGlyf Name #  69: uni0792
+	PSGlyf Name #  70: uni0793
+	PSGlyf Name #  71: uni0794
+	PSGlyf Name #  72: uni0795
+	PSGlyf Name #  73: uni0796
+	PSGlyf Name #  74: uni0797
+	PSGlyf Name #  75: uni0798
+	PSGlyf Name #  76: uni0799
+	PSGlyf Name #  77: uni079A
+	PSGlyf Name #  78: uni079B
+	PSGlyf Name #  79: uni079C
+	PSGlyf Name #  80: uni079D
+	PSGlyf Name #  81: uni079E
+	PSGlyf Name #  82: uni079F
+	PSGlyf Name #  83: uni07A0
+	PSGlyf Name #  84: uni07A1
+	PSGlyf Name #  85: uni07A2
+	PSGlyf Name #  86: uni07A3
+	PSGlyf Name #  87: uni07A4
+	PSGlyf Name #  88: uni07A5
+	PSGlyf Name #  89: uni07A6
+	PSGlyf Name #  90: uni07A7
+	PSGlyf Name #  91: uni07A8
+	PSGlyf Name #  92: uni07A9
+	PSGlyf Name #  93: uni07AA
+	PSGlyf Name #  94: uni07AB
+	PSGlyf Name #  95: uni07AC
+	PSGlyf Name #  96: uni07AD
+	PSGlyf Name #  97: uni07AE
+	PSGlyf Name #  98: uni07AF
+	PSGlyf Name #  99: uni07B0
+	PSGlyf Name # 100: uni07B1
+	PSGlyf Name # 101: DotBelow
+	PSGlyf Name # 102: TwoDots
+	PSGlyf Name # 103: ThreeDots
+	PSGlyf Name # 104: uni25CC
+	PSGlyf Name # 105: uniFDF2
+	PSGlyf Name # 106: uni07A6nsp
+	PSGlyf Name # 107: uni07A7nsp
+	PSGlyf Name # 108: uni07A8nsp
+	PSGlyf Name # 109: uni07A9nsp
+	PSGlyf Name # 110: uni07AAnsp
+	PSGlyf Name # 111: uni07ABnsp
+	PSGlyf Name # 112: uni07ACnsp
+	PSGlyf Name # 113: uni07ADnsp
+	PSGlyf Name # 114: uni07AEnsp
+	PSGlyf Name # 115: uni07AFnsp
+	PSGlyf Name # 116: uni07B0nsp
+	PSGlyf Name # 117: DotAbove
+
+'cmap' Table - Character To Index Map
+-------------------------------------
+Size = 466 bytes
+  'cmap' version:  0
+  numTables:       2
+  
+Subtable  1.   Platform ID:   1
+               Specific ID:   0
+               'cmap' Offset: 0x00000014
+	      ->Format:	0 : Byte encoding table
+		Length:		262
+		Version:	0
+
+		Char   0 -> Index 0
+		Char   1 -> Index 0
+		Char   2 -> Index 0
+		Char   3 -> Index 0
+		Char   4 -> Index 0
+		Char   5 -> Index 0
+		Char   6 -> Index 0
+		Char   7 -> Index 0
+		Char   8 -> Index 0
+		Char   9 -> Index 0
+		Char  10 -> Index 0
+		Char  11 -> Index 0
+		Char  12 -> Index 0
+		Char  13 -> Index 0
+		Char  14 -> Index 0
+		Char  15 -> Index 0
+		Char  16 -> Index 0
+		Char  17 -> Index 0
+		Char  18 -> Index 0
+		Char  19 -> Index 0
+		Char  20 -> Index 0
+		Char  21 -> Index 0
+		Char  22 -> Index 0
+		Char  23 -> Index 0
+		Char  24 -> Index 0
+		Char  25 -> Index 0
+		Char  26 -> Index 0
+		Char  27 -> Index 0
+		Char  28 -> Index 0
+		Char  29 -> Index 0
+		Char  30 -> Index 0
+		Char  31 -> Index 0
+		Char  32 -> Index 3
+		Char  33 -> Index 4
+		Char  34 -> Index 5
+		Char  35 -> Index 6
+		Char  36 -> Index 7
+		Char  37 -> Index 8
+		Char  38 -> Index 9
+		Char  39 -> Index 10
+		Char  40 -> Index 11
+		Char  41 -> Index 12
+		Char  42 -> Index 13
+		Char  43 -> Index 14
+		Char  44 -> Index 15
+		Char  45 -> Index 16
+		Char  46 -> Index 17
+		Char  47 -> Index 18
+		Char  48 -> Index 19
+		Char  49 -> Index 20
+		Char  50 -> Index 21
+		Char  51 -> Index 22
+		Char  52 -> Index 23
+		Char  53 -> Index 24
+		Char  54 -> Index 25
+		Char  55 -> Index 26
+		Char  56 -> Index 27
+		Char  57 -> Index 28
+		Char  58 -> Index 29
+		Char  59 -> Index 30
+		Char  60 -> Index 31
+		Char  61 -> Index 32
+		Char  62 -> Index 33
+		Char  63 -> Index 0
+		Char  64 -> Index 0
+		Char  65 -> Index 0
+		Char  66 -> Index 0
+		Char  67 -> Index 0
+		Char  68 -> Index 0
+		Char  69 -> Index 0
+		Char  70 -> Index 0
+		Char  71 -> Index 0
+		Char  72 -> Index 0
+		Char  73 -> Index 0
+		Char  74 -> Index 0
+		Char  75 -> Index 0
+		Char  76 -> Index 0
+		Char  77 -> Index 0
+		Char  78 -> Index 0
+		Char  79 -> Index 0
+		Char  80 -> Index 0
+		Char  81 -> Index 0
+		Char  82 -> Index 0
+		Char  83 -> Index 0
+		Char  84 -> Index 0
+		Char  85 -> Index 0
+		Char  86 -> Index 0
+		Char  87 -> Index 0
+		Char  88 -> Index 0
+		Char  89 -> Index 0
+		Char  90 -> Index 0
+		Char  91 -> Index 34
+		Char  92 -> Index 35
+		Char  93 -> Index 36
+		Char  94 -> Index 0
+		Char  95 -> Index 0
+		Char  96 -> Index 0
+		Char  97 -> Index 0
+		Char  98 -> Index 0
+		Char  99 -> Index 0
+		Char 100 -> Index 0
+		Char 101 -> Index 0
+		Char 102 -> Index 0
+		Char 103 -> Index 0
+		Char 104 -> Index 0
+		Char 105 -> Index 0
+		Char 106 -> Index 0
+		Char 107 -> Index 0
+		Char 108 -> Index 0
+		Char 109 -> Index 0
+		Char 110 -> Index 0
+		Char 111 -> Index 0
+		Char 112 -> Index 0
+		Char 113 -> Index 0
+		Char 114 -> Index 0
+		Char 115 -> Index 0
+		Char 116 -> Index 0
+		Char 117 -> Index 0
+		Char 118 -> Index 0
+		Char 119 -> Index 0
+		Char 120 -> Index 0
+		Char 121 -> Index 0
+		Char 122 -> Index 0
+		Char 123 -> Index 37
+		Char 124 -> Index 38
+		Char 125 -> Index 39
+		Char 126 -> Index 0
+		Char 127 -> Index 0
+		Char 128 -> Index 0
+		Char 129 -> Index 0
+		Char 130 -> Index 0
+		Char 131 -> Index 0
+		Char 132 -> Index 0
+		Char 133 -> Index 0
+		Char 134 -> Index 0
+		Char 135 -> Index 0
+		Char 136 -> Index 0
+		Char 137 -> Index 0
+		Char 138 -> Index 0
+		Char 139 -> Index 0
+		Char 140 -> Index 0
+		Char 141 -> Index 0
+		Char 142 -> Index 0
+		Char 143 -> Index 0
+		Char 144 -> Index 0
+		Char 145 -> Index 0
+		Char 146 -> Index 0
+		Char 147 -> Index 0
+		Char 148 -> Index 0
+		Char 149 -> Index 0
+		Char 150 -> Index 0
+		Char 151 -> Index 0
+		Char 152 -> Index 0
+		Char 153 -> Index 0
+		Char 154 -> Index 0
+		Char 155 -> Index 0
+		Char 156 -> Index 0
+		Char 157 -> Index 0
+		Char 158 -> Index 0
+		Char 159 -> Index 0
+		Char 160 -> Index 0
+		Char 161 -> Index 0
+		Char 162 -> Index 0
+		Char 163 -> Index 0
+		Char 164 -> Index 0
+		Char 165 -> Index 40
+		Char 166 -> Index 0
+		Char 167 -> Index 0
+		Char 168 -> Index 0
+		Char 169 -> Index 0
+		Char 170 -> Index 0
+		Char 171 -> Index 0
+		Char 172 -> Index 0
+		Char 173 -> Index 0
+		Char 174 -> Index 0
+		Char 175 -> Index 0
+		Char 176 -> Index 0
+		Char 177 -> Index 0
+		Char 178 -> Index 0
+		Char 179 -> Index 0
+		Char 180 -> Index 0
+		Char 181 -> Index 0
+		Char 182 -> Index 0
+		Char 183 -> Index 0
+		Char 184 -> Index 0
+		Char 185 -> Index 0
+		Char 186 -> Index 0
+		Char 187 -> Index 0
+		Char 188 -> Index 0
+		Char 189 -> Index 0
+		Char 190 -> Index 0
+		Char 191 -> Index 0
+		Char 192 -> Index 0
+		Char 193 -> Index 0
+		Char 194 -> Index 0
+		Char 195 -> Index 0
+		Char 196 -> Index 0
+		Char 197 -> Index 0
+		Char 198 -> Index 0
+		Char 199 -> Index 41
+		Char 200 -> Index 42
+		Char 201 -> Index 0
+		Char 202 -> Index 0
+		Char 203 -> Index 0
+		Char 204 -> Index 0
+		Char 205 -> Index 0
+		Char 206 -> Index 0
+		Char 207 -> Index 0
+		Char 208 -> Index 43
+		Char 209 -> Index 44
+		Char 210 -> Index 45
+		Char 211 -> Index 46
+		Char 212 -> Index 47
+		Char 213 -> Index 48
+		Char 214 -> Index 0
+		Char 215 -> Index 0
+		Char 216 -> Index 0
+		Char 217 -> Index 0
+		Char 218 -> Index 0
+		Char 219 -> Index 0
+		Char 220 -> Index 0
+		Char 221 -> Index 0
+		Char 222 -> Index 0
+		Char 223 -> Index 0
+		Char 224 -> Index 0
+		Char 225 -> Index 49
+		Char 226 -> Index 0
+		Char 227 -> Index 0
+		Char 228 -> Index 0
+		Char 229 -> Index 0
+		Char 230 -> Index 0
+		Char 231 -> Index 0
+		Char 232 -> Index 0
+		Char 233 -> Index 0
+		Char 234 -> Index 0
+		Char 235 -> Index 0
+		Char 236 -> Index 0
+		Char 237 -> Index 0
+		Char 238 -> Index 0
+		Char 239 -> Index 0
+		Char 240 -> Index 0
+		Char 241 -> Index 0
+		Char 242 -> Index 0
+		Char 243 -> Index 0
+		Char 244 -> Index 0
+		Char 245 -> Index 0
+		Char 246 -> Index 0
+		Char 247 -> Index 0
+		Char 248 -> Index 0
+		Char 249 -> Index 0
+		Char 250 -> Index 0
+		Char 251 -> Index 0
+		Char 252 -> Index 0
+		Char 253 -> Index 0
+		Char 254 -> Index 0
+		Char 255 -> Index 0
+  
+Subtable  2.   Platform ID:   3
+               Specific ID:   1
+               'cmap' Offset: 0x0000011A
+	      ->Format:	4 : Segment mapping to delta values
+		Length:		184
+		Version:	0
+		segCount:	18  (X2 = 36)
+		searchRange:	32
+		entrySelector:	4
+		rangeShift:	4
+		Seg   1 : St = 0020, En = 003E, D =    -29, RO =     0, gId# = N/A
+		Seg   2 : St = 005B, En = 005D, D =    -57, RO =     0, gId# = N/A
+		Seg   3 : St = 007B, En = 007D, D =    -86, RO =     0, gId# = N/A
+		Seg   4 : St = 00AB, En = 00AB, D =   -130, RO =     0, gId# = N/A
+		Seg   5 : St = 00B7, En = 00B7, D =   -134, RO =     0, gId# = N/A
+		Seg   6 : St = 00BB, En = 00BB, D =   -145, RO =     0, gId# = N/A
+		Seg   7 : St = 060C, En = 060C, D =  -1498, RO =     0, gId# = N/A
+		Seg   8 : St = 061B, En = 061B, D =  -1512, RO =     0, gId# = N/A
+		Seg   9 : St = 061F, En = 061F, D =  -1515, RO =     0, gId# = N/A
+		Seg  10 : St = 0780, En = 07A5, D =  -1867, RO =     0, gId# = N/A
+		Seg  11 : St = 07A6, En = 07B1, D =      0, RO =    16, gId# = 0
+		Seg  12 : St = 2013, En = 2014, D =  -8168, RO =     0, gId# = N/A
+		Seg  13 : St = 2018, En = 2019, D =  -8169, RO =     0, gId# = N/A
+		Seg  14 : St = 201C, En = 201D, D =  -8175, RO =     0, gId# = N/A
+		Seg  15 : St = 2022, En = 2022, D =  -8186, RO =     0, gId# = N/A
+		Seg  16 : St = 25CC, En = 25CC, D =  -9569, RO =     0, gId# = N/A
+		Seg  17 : St = FDF2, En = FDF2, D =    634, RO =     0, gId# = N/A
+		Seg  18 : St = FFFF, En = FFFF, D =      1, RO =     0, gId# = N/A
+		glyphIdArray[0] =  109 (Offset = 00A0)
+		glyphIdArray[1] =  110 (Offset = 00A2)
+		glyphIdArray[2] =  111 (Offset = 00A4)
+		glyphIdArray[3] =  112 (Offset = 00A6)
+		glyphIdArray[4] =  113 (Offset = 00A8)
+		glyphIdArray[5] =  114 (Offset = 00AA)
+		glyphIdArray[6] =  115 (Offset = 00AC)
+		glyphIdArray[7] =  116 (Offset = 00AE)
+		glyphIdArray[8] =  117 (Offset = 00B0)
+		glyphIdArray[9] =  118 (Offset = 00B2)
+		glyphIdArray[10] =  119 (Offset = 00B4)
+		glyphIdArray[11] =  102 (Offset = 00B6)
+
+		Which Means:
+		   1. Char 0020 -> Index 3
+		      Char 0021 -> Index 4
+		      Char 0022 -> Index 5
+		      Char 0023 -> Index 6
+		      Char 0024 -> Index 7
+		      Char 0025 -> Index 8
+		      Char 0026 -> Index 9
+		      Char 0027 -> Index 10
+		      Char 0028 -> Index 11
+		      Char 0029 -> Index 12
+		      Char 002A -> Index 13
+		      Char 002B -> Index 14
+		      Char 002C -> Index 15
+		      Char 002D -> Index 16
+		      Char 002E -> Index 17
+		      Char 002F -> Index 18
+		      Char 0030 -> Index 19
+		      Char 0031 -> Index 20
+		      Char 0032 -> Index 21
+		      Char 0033 -> Index 22
+		      Char 0034 -> Index 23
+		      Char 0035 -> Index 24
+		      Char 0036 -> Index 25
+		      Char 0037 -> Index 26
+		      Char 0038 -> Index 27
+		      Char 0039 -> Index 28
+		      Char 003A -> Index 29
+		      Char 003B -> Index 30
+		      Char 003C -> Index 31
+		      Char 003D -> Index 32
+		      Char 003E -> Index 33
+		   2. Char 005B -> Index 34
+		      Char 005C -> Index 35
+		      Char 005D -> Index 36
+		   3. Char 007B -> Index 37
+		      Char 007C -> Index 38
+		      Char 007D -> Index 39
+		   4. Char 00AB -> Index 41
+		   5. Char 00B7 -> Index 49
+		   6. Char 00BB -> Index 42
+		   7. Char 060C -> Index 50
+		   8. Char 061B -> Index 51
+		   9. Char 061F -> Index 52
+		  10. Char 0780 -> Index 53
+		      Char 0781 -> Index 54
+		      Char 0782 -> Index 55
+		      Char 0783 -> Index 56
+		      Char 0784 -> Index 57
+		      Char 0785 -> Index 58
+		      Char 0786 -> Index 59
+		      Char 0787 -> Index 60
+		      Char 0788 -> Index 61
+		      Char 0789 -> Index 62
+		      Char 078A -> Index 63
+		      Char 078B -> Index 64
+		      Char 078C -> Index 65
+		      Char 078D -> Index 66
+		      Char 078E -> Index 67
+		      Char 078F -> Index 68
+		      Char 0790 -> Index 69
+		      Char 0791 -> Index 70
+		      Char 0792 -> Index 71
+		      Char 0793 -> Index 72
+		      Char 0794 -> Index 73
+		      Char 0795 -> Index 74
+		      Char 0796 -> Index 75
+		      Char 0797 -> Index 76
+		      Char 0798 -> Index 77
+		      Char 0799 -> Index 78
+		      Char 079A -> Index 79
+		      Char 079B -> Index 80
+		      Char 079C -> Index 81
+		      Char 079D -> Index 82
+		      Char 079E -> Index 83
+		      Char 079F -> Index 84
+		      Char 07A0 -> Index 85
+		      Char 07A1 -> Index 86
+		      Char 07A2 -> Index 87
+		      Char 07A3 -> Index 88
+		      Char 07A4 -> Index 89
+		      Char 07A5 -> Index 90
+		  11. Char 07A6 -> Index 109
+		      Char 07A7 -> Index 110
+		      Char 07A8 -> Index 111
+		      Char 07A9 -> Index 112
+		      Char 07AA -> Index 113
+		      Char 07AB -> Index 114
+		      Char 07AC -> Index 115
+		      Char 07AD -> Index 116
+		      Char 07AE -> Index 117
+		      Char 07AF -> Index 118
+		      Char 07B0 -> Index 119
+		      Char 07B1 -> Index 102
+		  12. Char 2013 -> Index 43
+		      Char 2014 -> Index 44
+		  13. Char 2018 -> Index 47
+		      Char 2019 -> Index 48
+		  14. Char 201C -> Index 45
+		      Char 201D -> Index 46
+		  15. Char 2022 -> Index 40
+		  16. Char 25CC -> Index 107
+		  17. Char FDF2 -> Index 108
+
+'cvt ' Table - Control Value Table
+----------------------------------
+Size = 520 bytes, 260 entries
+	Values
+	------
+	   0: 0
+	   1: 0
+	   2: 0
+	   3: 0
+	   4: 0
+	   5: 0
+	   6: 1456
+	   7: 8
+	   8: 0
+	   9: 0
+	  10: 0
+	  11: 0
+	  12: 0
+	  13: 0
+	  14: 0
+	  15: 821
+	  16: 41
+	  17: 187
+	  18: 0
+	  19: 0
+	  20: 0
+	  21: 0
+	  22: 0
+	  23: 0
+	  24: 0
+	  25: -8
+	  26: 0
+	  27: -461
+	  28: 0
+	  29: 0
+	  30: 0
+	  31: 0
+	  32: 0
+	  33: 0
+	  34: 0
+	  35: 0
+	  36: 0
+	  37: 0
+	  38: 0
+	  39: 0
+	  40: 0
+	  41: 0
+	  42: 0
+	  43: 0
+	  44: 0
+	  45: 0
+	  46: 0
+	  47: 0
+	  48: 0
+	  49: 0
+	  50: 0
+	  51: 0
+	  52: 0
+	  53: 0
+	  54: 0
+	  55: 0
+	  56: 0
+	  57: 0
+	  58: 0
+	  59: 0
+	  60: 0
+	  61: 0
+	  62: 0
+	  63: 0
+	  64: 0
+	  65: 2048
+	  66: 0
+	  67: 2048
+	  68: 0
+	  69: 1024
+	  70: 0
+	  71: 0
+	  72: 0
+	  73: 0
+	  74: 0
+	  75: 0
+	  76: 0
+	  77: 0
+	  78: 0
+	  79: 0
+	  80: 0
+	  81: 0
+	  82: 0
+	  83: 0
+	  84: 0
+	  85: 0
+	  86: 0
+	  87: 0
+	  88: 0
+	  89: 0
+	  90: 0
+	  91: 0
+	  92: 0
+	  93: 0
+	  94: 0
+	  95: 0
+	  96: 0
+	  97: 0
+	  98: 0
+	  99: 0
+	 100: 0
+	 101: 0
+	 102: 0
+	 103: 0
+	 104: 0
+	 105: 0
+	 106: 0
+	 107: 0
+	 108: 0
+	 109: 0
+	 110: 0
+	 111: 0
+	 112: 0
+	 113: 0
+	 114: 0
+	 115: 0
+	 116: 0
+	 117: 0
+	 118: 0
+	 119: 0
+	 120: 0
+	 121: 0
+	 122: 0
+	 123: 0
+	 124: 0
+	 125: 0
+	 126: 0
+	 127: 0
+	 128: 0
+	 129: 0
+	 130: 0
+	 131: 0
+	 132: 0
+	 133: 0
+	 134: 0
+	 135: 0
+	 136: 0
+	 137: 195
+	 138: 184
+	 139: 172
+	 140: 142
+	 141: 195
+	 142: 172
+	 143: 0
+	 144: 0
+	 145: 0
+	 146: 0
+	 147: 0
+	 148: 0
+	 149: 0
+	 150: 0
+	 151: 0
+	 152: 0
+	 153: 172
+	 154: 166
+	 155: 0
+	 156: 139
+	 157: 0
+	 158: 0
+	 159: 0
+	 160: 0
+	 161: 0
+	 162: 0
+	 163: 0
+	 164: 0
+	 165: 0
+	 166: 0
+	 167: 0
+	 168: 422
+	 169: 0
+	 170: 0
+	 171: 0
+	 172: 0
+	 173: 0
+	 174: 0
+	 175: 299
+	 176: 299
+	 177: 184
+	 178: 567
+	 179: 0
+	 180: 39
+	 181: 0
+	 182: 0
+	 183: 0
+	 184: 0
+	 185: 0
+	 186: 0
+	 187: 0
+	 188: 0
+	 189: 0
+	 190: 0
+	 191: 0
+	 192: 0
+	 193: 0
+	 194: 0
+	 195: 0
+	 196: 0
+	 197: 0
+	 198: 0
+	 199: 0
+	 200: 0
+	 201: 0
+	 202: 0
+	 203: 0
+	 204: 0
+	 205: 0
+	 206: 0
+	 207: 0
+	 208: 0
+	 209: 0
+	 210: 0
+	 211: 0
+	 212: 0
+	 213: 0
+	 214: 0
+	 215: 0
+	 216: 0
+	 217: 0
+	 218: 0
+	 219: 0
+	 220: 0
+	 221: 0
+	 222: 0
+	 223: 0
+	 224: 0
+	 225: 157
+	 226: 434
+	 227: 612
+	 228: 821
+	 229: -184
+	 230: -348
+	 231: 205
+	 232: 184
+	 233: 172
+	 234: 166
+	 235: 158
+	 236: 150
+	 237: 140
+	 238: -313
+	 239: -235
+	 240: -115
+	 241: -94
+	 242: 131
+	 243: -66
+	 244: -52
+	 245: -37
+	 246: -24
+	 247: 205
+	 248: 198
+	 249: 193
+	 250: 188
+	 251: 180
+	 252: 152
+	 253: 145
+	 254: 60
+	 255: 250
+	 256: 61
+	 257: 61
+	 258: 1100
+	 259: 1400
+
+'prep' Table - Control Value Program
+------------------------------------
+Size = 780 bytes
+	00000: NPUSHB      (83):   223   224    22    23    28   212   213    22    23    28 
+	                           123   124    22    27   123   124    25   209   210    22 
+	                            23    28   118   119    22    23    28   109   112    22 
+	                            23    28   108   111    22    23    28   107   110    22 
+	                            27   107   110   127   114    26   116   117    20    21 
+	                            28   103   106    20    21    28   102   105    20    21 
+	                            28   101   104    20    27   101   104   133   113    26 
+	                            25   115    22   122    67    25    33   121    67    25 
+	                            33     2    15 
+	00085: NPUSHW      (10):   259    32   259     2    32   258   112   258   175   258 
+	00107: NPUSHB      (26):     3   237   235     3    43   236   235     3    43   234 
+	                           233     3    43   231   232     3    43   232   233     3 
+	                            43    63   178   128   178     2 
+	00135: PUSHW[1]            -64 
+	00138: PUSHB[4]            176    31    36    57 
+	00143: PUSHW[1]            -64 
+	00146: NPUSHB      (59):   176    24    26    57    32   176     1   154   153     4 
+	                            43   145   147     1    43   147   149     2    43   150 
+	                           149     1    43   143   252     1   191   252     1   250 
+	                           251     5    43   249   251     5    43   247   248     2 
+	                            43   248   251     5    43   251   138     5    43    11 
+	                           180    27   180    43   180     3   128   177     1 
+	00207: PUSHW[1]            -64 
+	00210: PUSHB[4]            175    31    36    57 
+	00215: PUSHW[1]            -64 
+	00218: NPUSHB     (189):   175    24    26    57    32   175     1   142   139    10 
+	                            43   141   137    10    43   139   137     3    43   138 
+	                           137     3    43   118   137   134   137     2   129   127 
+	                             1    43   125   127     1    43   127   133     2    43 
+	                           136   133     1    43   135   133     1    43   132   133 
+	                             1    43   131   133     1    43    27    55    21    24 
+	                            54    21    21    53    21    18    52    21    15    51 
+	                            21    12    50    21     9    49    21     6    48    21 
+	                             3    47    21     0    46    21    38    39    14    40 
+	                            39    15    42    43    14    44    43    15    34    35 
+	                            14    36    35    15    30    31    14    32    31    15 
+	                            15    16    17    12     9    10    11    12     6     7 
+	                             8    12     3     4     5    12     0     1     2    12 
+	                             9     6    73     6   121     6     3    27     1    29 
+	                            13    24     7    26    13    21    16    23    13    18 
+	                             4    20    13    44    60    42    60    40    60    38 
+	                            60    36    60    34    60    32    60    30    60    27 
+	                            60    24    60    21    60    18    60    15    60     9 
+	                            60     6    60     3    60     0    60    80    51 
+	00409: SVTCA[x-axis] 
+	00410: PUSHB[1]             18 
+	00412: MPPEM      
+	00413: SVTCA[y-axis] 
+	00414: MPPEM      
+	00415: EQ         
+	00416: WS         
+	00417: PUSHB[1]             19 
+	00419: SVTCA[x-axis] 
+	00420: MPPEM      
+	00421: SVTCA[y-axis] 
+	00422: MPPEM      
+	00423: GTEQ       
+	00424: WS         
+	00425: PUSHB[1]             51 
+	00427: CALL       
+	00428: MPPEM      
+	00429: PUSHW[1]            800 
+	00432: GT         
+	00433: PUSHB[1]             50 
+	00435: CALL       
+	00436: MPPEM      
+	00437: PUSHB[1]              9 
+	00439: LT         
+	00440: OR         
+	00441: IF         
+	00442: PUSHB[2]              1     1 
+	00445: INSTCTRL   
+	00446: EIF        
+	00447: PUSHB[1]             51 
+	00449: CALL       
+	00450: PUSHB[1]              2 
+	00452: GETINFO    
+	00453: PUSHW[1]            256 
+	00456: EQ         
+	00457: PUSHB[1]              4 
+	00459: GETINFO    
+	00460: PUSHW[1]            512 
+	00463: EQ         
+	00464: PUSHB[1]             18 
+	00466: RS         
+	00467: AND        
+	00468: OR         
+	00469: IF         
+	00470: PUSHW[1]            281 
+	00473: PUSHB[2]              1     1 
+	00476: INSTCTRL   
+	00477: SCANCTRL   
+	00478: ELSE       
+	00479: PUSHW[2]              1   256 
+	00484: PUSHB[1]             75 
+	00486: ADD        
+	00487: SCANCTRL   
+	00488: SCANTYPE   
+	00489: EIF        
+	00490: PUSHB[2]              2     0 
+	00493: WS         
+	00494: PUSHB[1]              1 
+	00496: GETINFO    
+	00497: PUSHB[1]             35 
+	00499: GTEQ       
+	00500: IF         
+	00501: PUSHB[1]              1 
+	00503: GETINFO    
+	00504: PUSHB[1]             64 
+	00506: LTEQ       
+	00507: IF         
+	00508: PUSHB[1]             32 
+	00510: GETINFO    
+	00511: PUSHW[1]           4096 
+	00514: EQ         
+	00515: IF         
+	00516: PUSHB[2]              2     1 
+	00519: WS         
+	00520: EIF        
+	00521: EIF        
+	00522: EIF        
+	00523: PUSHB[1]             55 
+	00525: MPPEM      
+	00526: LT         
+	00527: IF         
+	00528: PUSHB[2]              2     0 
+	00531: WS         
+	00532: EIF        
+	00533: CALL       
+	00534: SCVTCI     
+	00535: PUSHB[1]            100 
+	00537: MPPEM      
+	00538: GTEQ       
+	00539: IF         
+	00540: PUSHB[1]            128 
+	00542: SCVTCI     
+	00543: EIF        
+	00544: PUSHB[1]             50 
+	00546: MPPEM      
+	00547: GTEQ       
+	00548: IF         
+	00549: PUSHB[1]            144 
+	00551: SCVTCI     
+	00552: EIF        
+	00553: SVTCA[y-axis] 
+	00554: MPPEM      
+	00555: PUSHB[1]             58 
+	00557: LTEQ       
+	00558: PUSHB[1]             27 
+	00560: SWAP       
+	00561: WS         
+	00562: CALL       
+	00563: CALL       
+	00564: CALL       
+	00565: CALL       
+	00566: CALL       
+	00567: CALL       
+	00568: CALL       
+	00569: CALL       
+	00570: CALL       
+	00571: CALL       
+	00572: CALL       
+	00573: CALL       
+	00574: CALL       
+	00575: CALL       
+	00576: CALL       
+	00577: CALL       
+	00578: CALL       
+	00579: CALL       
+	00580: CALL       
+	00581: CALL       
+	00582: CALL       
+	00583: DELTAC1    
+	00584: CALL       
+	00585: CALL       
+	00586: CALL       
+	00587: CALL       
+	00588: CALL       
+	00589: CALL       
+	00590: CALL       
+	00591: CALL       
+	00592: CALL       
+	00593: CALL       
+	00594: CALL       
+	00595: PUSHB[2]             40    38 
+	00598: RCVT       
+	00599: PUSHB[1]             42 
+	00601: RCVT       
+	00602: SUB        
+	00603: PUSHB[1]             44 
+	00605: RCVT       
+	00606: ADD        
+	00607: WCVTP      
+	00608: CALL       
+	00609: CALL       
+	00610: CALL       
+	00611: CALL       
+	00612: CALL       
+	00613: CALL       
+	00614: CALL       
+	00615: CALL       
+	00616: CALL       
+	00617: CALL       
+	00618: CALL       
+	00619: CALL       
+	00620: SVTCA[x-axis] 
+	00621: CALL       
+	00622: CALL       
+	00623: CALL       
+	00624: CALL       
+	00625: CALL       
+	00626: CALL       
+	00627: CALL       
+	00628: DELTAC1    
+	00629: CALL       
+	00630: CALL       
+	00631: CALL       
+	00632: CALL       
+	00633: DELTAC1    
+	00634: CALL       
+	00635: CALL       
+	00636: DELTAC1    
+	00637: DELTAC1    
+	00638: CALL       
+	00639: CALL       
+	00640: CALL       
+	00641: CALL       
+	00642: CALL       
+	00643: DELTAC1    
+	00644: DELTAC2    
+	00645: SVTCA[y-axis] 
+	00646: CALL       
+	00647: CALL       
+	00648: CALL       
+	00649: CALL       
+	00650: DELTAC1    
+	00651: CALL       
+	00652: CALL       
+	00653: DELTAC1    
+	00654: CALL       
+	00655: CALL       
+	00656: CALL       
+	00657: CALL       
+	00658: CALL       
+	00659: DELTAC1    
+	00660: DELTAC1    
+	00661: SVTCA[x-axis] 
+	00662: RS         
+	00663: IF         
+	00664: ELSE       
+	00665: EIF        
+	00666: CALL       
+	00667: CALL       
+	00668: PUSHB[1]             24 
+	00670: PUSHB[1]             35 
+	00672: MPPEM      
+	00673: GTEQ       
+	00674: WS         
+	00675: CALL       
+	00676: CALL       
+	00677: CALL       
+	00678: CALL       
+	00679: CALL       
+	00680: CALL       
+	00681: CALL       
+	00682: CALL       
+	00683: CALL       
+	00684: CALL       
+	00685: CALL       
+	00686: CALL       
+	00687: CALL       
+	00688: CALL       
+	00689: CALL       
+	00690: CALL       
+	00691: PUSHB[1]            238 
+	00693: DUP        
+	00694: RCVT       
+	00695: ROUND[White] 
+	00696: WCVTP      
+	00697: PUSHB[1]            239 
+	00699: DUP        
+	00700: RCVT       
+	00701: ROUND[White] 
+	00702: WCVTP      
+	00703: PUSHB[1]            240 
+	00705: DUP        
+	00706: RCVT       
+	00707: ROUND[White] 
+	00708: WCVTP      
+	00709: PUSHB[1]            241 
+	00711: DUP        
+	00712: RCVT       
+	00713: ROUND[White] 
+	00714: WCVTP      
+	00715: PUSHB[1]            242 
+	00717: DUP        
+	00718: RCVT       
+	00719: ROUND[White] 
+	00720: WCVTP      
+	00721: PUSHB[1]            243 
+	00723: DUP        
+	00724: RCVT       
+	00725: ROUND[White] 
+	00726: WCVTP      
+	00727: PUSHB[1]            244 
+	00729: DUP        
+	00730: RCVT       
+	00731: ROUND[White] 
+	00732: WCVTP      
+	00733: PUSHB[1]            245 
+	00735: DUP        
+	00736: RCVT       
+	00737: ROUND[White] 
+	00738: WCVTP      
+	00739: PUSHB[1]            246 
+	00741: DUP        
+	00742: RCVT       
+	00743: ROUND[White] 
+	00744: WCVTP      
+	00745: PUSHB[2]              9    50 
+	00748: CALL       
+	00749: MPPEM      
+	00750: PUSHB[1]             80 
+	00752: GT         
+	00753: WS         
+	00754: MPPEM      
+	00755: PUSHB[1]              8 
+	00757: GT         
+	00758: MPPEM      
+	00759: PUSHB[1]              8 
+	00761: LT         
+	00762: OR         
+	00763: PUSHB[1]             26 
+	00765: SWAP       
+	00766: WS         
+	00767: MPPEM      
+	00768: PUSHB[1]            200 
+	00770: GT         
+	00771: MPPEM      
+	00772: PUSHB[1]             54 
+	00774: LT         
+	00775: OR         
+	00776: PUSHB[1]             12 
+	00778: SWAP       
+	00779: WS         
+
+
+'fpgm' Table - Font Program
+---------------------------
+Size = 1978 bytes
+	00000: NPUSHB      (64):    82    73    72    60    59    58    57    56    55    54 
+	                            53    52    51    50    49    48    47    46    45    44 
+	                            43    42    41    40    39    38    37    36    35    34 
+	                            33    32    31    30    29    28    27    26    25    24 
+	                            23    22    21    20    19    18    17    16    15    14 
+	                            13    12    11    10     9     8     7     6     5     4 
+	                             3     2     1     0 
+	00066: FDEF       
+	00067: SVTCA[x-axis] 
+	00068: RTG        
+	00069: PUSHB[1]             24 
+	00071: RS         
+	00072: IF         
+	00073: RCVT       
+	00074: ROUND[White] 
+	00075: PUSHB[1]             25 
+	00077: RS         
+	00078: ADD        
+	00079: PUSHB[1]             12 
+	00081: SWAP       
+	00082: WCVTP      
+	00083: SWAP       
+	00084: SRP0       
+	00085: DUP        
+	00086: PUSHB[1]             12 
+	00088: FLIPOFF    
+	00089: MIRP[srp0,nmd,nrd,0] 
+	00090: FLIPON     
+	00091: MDAP[rd]   
+	00092: PUSHB[1]              0 
+	00094: SRP2       
+	00095: ELSE       
+	00096: POP        
+	00097: SWAP       
+	00098: SRP1       
+	00099: DUP        
+	00100: SHP[rp1,zp0] 
+	00101: MDAP[rd]   
+	00102: EIF        
+	00103: ENDF       
+	00104: FDEF       
+	00105: SVTCA[x-axis] 
+	00106: RTG        
+	00107: PUSHB[1]             24 
+	00109: RS         
+	00110: IF         
+	00111: PUSHB[1]              5 
+	00113: CALL       
+	00114: PUSHB[1]              0 
+	00116: SZP0       
+	00117: MPPEM      
+	00118: PUSHB[1]             20 
+	00120: LT         
+	00121: IF         
+	00122: PUSHB[2]              0    64 
+	00125: SHPIX      
+	00126: EIF        
+	00127: PUSHB[1]              6 
+	00129: CALL       
+	00130: ELSE       
+	00131: POP        
+	00132: SWAP       
+	00133: SRP1       
+	00134: DUP        
+	00135: SHP[rp1,zp0] 
+	00136: MDAP[rd]   
+	00137: EIF        
+	00138: ENDF       
+	00139: FDEF       
+	00140: SVTCA[x-axis] 
+	00141: RTG        
+	00142: PUSHB[1]             24 
+	00144: RS         
+	00145: IF         
+	00146: FLIPOFF    
+	00147: PUSHB[1]              3 
+	00149: CINDEX     
+	00150: SRP0       
+	00151: MIRP[srp0,nmd,nrd,2] 
+	00152: POP        
+	00153: PUSHB[1]              0 
+	00155: SRP2       
+	00156: FLIPON     
+	00157: ELSE       
+	00158: DUP        
+	00159: RCVT       
+	00160: PUSHB[1]              4 
+	00162: CINDEX     
+	00163: PUSHB[1]              4 
+	00165: CINDEX     
+	00166: SWAP       
+	00167: MD[org]    
+	00168: SUB        
+	00169: ABS        
+	00170: PUSHB[1]             40 
+	00172: GT         
+	00173: IF         
+	00174: POP        
+	00175: SWAP       
+	00176: SRP0       
+	00177: MDRP[srp0,nmd,rd,2] 
+	00178: ELSE       
+	00179: PUSHB[1]              3 
+	00181: CINDEX     
+	00182: SRP0       
+	00183: MIRP[srp0,nmd,nrd,2] 
+	00184: POP        
+	00185: PUSHB[1]              0 
+	00187: SRP2       
+	00188: EIF        
+	00189: EIF        
+	00190: ENDF       
+	00191: FDEF       
+	00192: PUSHB[1]             26 
+	00194: RS         
+	00195: IF         
+	00196: POP        
+	00197: POP        
+	00198: ELSE       
+	00199: PUSHB[1]              2 
+	00201: CINDEX     
+	00202: PUSHB[1]              2 
+	00204: CINDEX     
+	00205: MD[cur]    
+	00206: PUSHB[1]              3 
+	00208: CINDEX     
+	00209: PUSHB[1]              3 
+	00211: CINDEX     
+	00212: MD[org]    
+	00213: SUB        
+	00214: DUP        
+	00215: ABS        
+	00216: PUSHB[1]             16 
+	00218: LT         
+	00219: IF         
+	00220: POP        
+	00221: POP        
+	00222: POP        
+	00223: ELSE       
+	00224: PUSHB[1]              3 
+	00226: CINDEX     
+	00227: PUSHB[1]              3 
+	00229: CINDEX     
+	00230: MD[cur]    
+	00231: PUSHB[1]              0 
+	00233: LT         
+	00234: IF         
+	00235: PUSHB[1]              0 
+	00237: LT         
+	00238: IF         
+	00239: PUSHW[1]            -30 
+	00242: SHPIX      
+	00243: POP        
+	00244: ELSE       
+	00245: PUSHB[1]              0 
+	00247: SHPIX      
+	00248: POP        
+	00249: EIF        
+	00250: ELSE       
+	00251: PUSHB[1]              0 
+	00253: GT         
+	00254: IF         
+	00255: PUSHB[1]             30 
+	00257: SHPIX      
+	00258: POP        
+	00259: ELSE       
+	00260: PUSHB[1]              0 
+	00262: SHPIX      
+	00263: POP        
+	00264: EIF        
+	00265: EIF        
+	00266: EIF        
+	00267: EIF        
+	00268: ENDF       
+	00269: FDEF       
+	00270: SVTCA[x-axis] 
+	00271: RTG        
+	00272: PUSHB[1]             24 
+	00274: RS         
+	00275: IF         
+	00276: PUSHB[1]              5 
+	00278: CALL       
+	00279: PUSHB[1]              0 
+	00281: SZP0       
+	00282: MPPEM      
+	00283: PUSHB[1]             20 
+	00285: LT         
+	00286: IF         
+	00287: PUSHW[2]              0   -64 
+	00292: SHPIX      
+	00293: EIF        
+	00294: PUSHB[1]              6 
+	00296: CALL       
+	00297: ELSE       
+	00298: POP        
+	00299: SWAP       
+	00300: SRP1       
+	00301: DUP        
+	00302: SHP[rp1,zp0] 
+	00303: MDAP[rd]   
+	00304: EIF        
+	00305: ENDF       
+	00306: FDEF       
+	00307: FLIPOFF    
+	00308: SVTCA[x-axis] 
+	00309: ROLL       
+	00310: SRP0       
+	00311: PUSHB[2]             12    25 
+	00314: RS         
+	00315: WCVTP      
+	00316: PUSHB[1]              0 
+	00318: SZP1       
+	00319: PUSHB[2]              0    12 
+	00322: MIRP[nrp0,nmd,nrd,2] 
+	00323: PUSHB[1]              0 
+	00325: SZP2       
+	00326: PUSHW[2]              0   -16 
+	00331: SHPIX      
+	00332: SVTCA[y-axis] 
+	00333: PUSHB[1]              0 
+	00335: ALIGNRP    
+	00336: PUSHB[1]             40 
+	00338: CALL       
+	00339: PUSHB[1]              2 
+	00341: CINDEX     
+	00342: SRP0       
+	00343: PUSHB[1]              0 
+	00345: ALIGNRP    
+	00346: ENDF       
+	00347: FDEF       
+	00348: SVTCA[x-axis] 
+	00349: RTG        
+	00350: PUSHB[1]              0 
+	00352: MDAP[rd]   
+	00353: PUSHB[1]              1 
+	00355: SZP1       
+	00356: MIRP[srp0,nmd,nrd,2] 
+	00357: PUSHB[1]              1 
+	00359: SZP0       
+	00360: PUSHB[1]              1 
+	00362: SZP2       
+	00363: FLIPON     
+	00364: PUSHB[1]              0 
+	00366: SRP2       
+	00367: ENDF       
+	00368: FDEF       
+	00369: SVTCA[x-axis] 
+	00370: RTG        
+	00371: PUSHB[1]             24 
+	00373: RS         
+	00374: IF         
+	00375: PUSHB[1]              5 
+	00377: CALL       
+	00378: PUSHB[1]              0 
+	00380: SZP0       
+	00381: PUSHW[2]              0   -32 
+	00386: SHPIX      
+	00387: PUSHB[1]              6 
+	00389: CALL       
+	00390: ELSE       
+	00391: POP        
+	00392: SWAP       
+	00393: SRP1       
+	00394: DUP        
+	00395: SHP[rp1,zp0] 
+	00396: MDAP[rd]   
+	00397: EIF        
+	00398: ENDF       
+	00399: FDEF       
+	00400: SVTCA[x-axis] 
+	00401: RTG        
+	00402: PUSHB[1]             24 
+	00404: RS         
+	00405: IF         
+	00406: RCVT       
+	00407: ABS        
+	00408: ROUND[White] 
+	00409: SWAP       
+	00410: RCVT       
+	00411: ABS        
+	00412: ROUND[Black] 
+	00413: PUSHB[1]             25 
+	00415: RS         
+	00416: ABS        
+	00417: ADD        
+	00418: ADD        
+	00419: PUSHB[1]             12 
+	00421: SWAP       
+	00422: WCVTP      
+	00423: SWAP       
+	00424: SRP0       
+	00425: DUP        
+	00426: PUSHB[1]             12 
+	00428: MIRP[srp0,nmd,nrd,0] 
+	00429: MDAP[rd]   
+	00430: PUSHB[1]              0 
+	00432: SRP2       
+	00433: ELSE       
+	00434: POP        
+	00435: POP        
+	00436: DUP        
+	00437: ROLL       
+	00438: DUP        
+	00439: ROLL       
+	00440: GT         
+	00441: IF         
+	00442: SRP1       
+	00443: SHP[rp1,zp0] 
+	00444: ELSE       
+	00445: POP        
+	00446: POP        
+	00447: EIF        
+	00448: EIF        
+	00449: ENDF       
+	00450: FDEF       
+	00451: SVTCA[x-axis] 
+	00452: MPPEM      
+	00453: PUSHB[1]            200 
+	00455: LTEQ       
+	00456: IF         
+	00457: PUSHB[2]             11    10 
+	00460: RS         
+	00461: SWAP       
+	00462: RS         
+	00463: NEG        
+	00464: SPVFS      
+	00465: EIF        
+	00466: ENDF       
+	00467: FDEF       
+	00468: SVTCA[y-axis] 
+	00469: MPPEM      
+	00470: PUSHB[1]            200 
+	00472: LTEQ       
+	00473: IF         
+	00474: SVTCA[y-axis] 
+	00475: PUSHB[2]             10    11 
+	00478: RS         
+	00479: SWAP       
+	00480: RS         
+	00481: SFVFS      
+	00482: EIF        
+	00483: ENDF       
+	00484: FDEF       
+	00485: SVTCA[y-axis] 
+	00486: PUSHB[1]             12 
+	00488: SWAP       
+	00489: WCVTF      
+	00490: PUSHB[2]              1    12 
+	00493: MIAP[nrd+nci] 
+	00494: SVTCA[x-axis] 
+	00495: PUSHB[1]             12 
+	00497: SWAP       
+	00498: WCVTF      
+	00499: PUSHB[2]              2    12 
+	00502: RCVT       
+	00503: MSIRP[nrp] 
+	00504: PUSHB[2]              2     0 
+	00507: SFVTL[=p1,p2] 
+	00508: GFV        
+	00509: ENDF       
+	00510: FDEF       
+	00511: PUSHB[1]             18 
+	00513: CALL       
+	00514: PUSHB[1]              2 
+	00516: CINDEX     
+	00517: RCVT       
+	00518: PUSHB[1]              2 
+	00520: CINDEX     
+	00521: RCVT       
+	00522: ROUND[White] 
+	00523: PUSHB[1]             64 
+	00525: MAX        
+	00526: ADD        
+	00527: PUSHB[1]              2 
+	00529: CINDEX     
+	00530: SWAP       
+	00531: WCVTP      
+	00532: POP        
+	00533: POP        
+	00534: POP        
+	00535: ENDF       
+	00536: FDEF       
+	00537: PUSHB[1]             19 
+	00539: CALL       
+	00540: PUSHB[1]              2 
+	00542: CINDEX     
+	00543: RCVT       
+	00544: PUSHB[1]              2 
+	00546: CINDEX     
+	00547: RCVT       
+	00548: ROUND[White] 
+	00549: PUSHW[1]            -64 
+	00552: MIN        
+	00553: ADD        
+	00554: PUSHB[1]              2 
+	00556: CINDEX     
+	00557: SWAP       
+	00558: WCVTP      
+	00559: POP        
+	00560: POP        
+	00561: POP        
+	00562: ENDF       
+	00563: FDEF       
+	00564: PUSHB[1]              0 
+	00566: PUSHB[1]             18 
+	00568: CALL       
+	00569: POP        
+	00570: POP        
+	00571: POP        
+	00572: ENDF       
+	00573: FDEF       
+	00574: PUSHB[1]              0 
+	00576: PUSHB[1]             19 
+	00578: CALL       
+	00579: POP        
+	00580: POP        
+	00581: POP        
+	00582: ENDF       
+	00583: FDEF       
+	00584: SVTCA[x-axis] 
+	00585: MPPEM      
+	00586: PUSHB[1]            200 
+	00588: LTEQ       
+	00589: IF         
+	00590: PUSHB[1]              6 
+	00592: RS         
+	00593: PUSHB[1]              7 
+	00595: RS         
+	00596: NEG        
+	00597: SPVFS      
+	00598: EIF        
+	00599: ENDF       
+	00600: FDEF       
+	00601: DUP        
+	00602: ROUND[Black] 
+	00603: PUSHB[1]             64 
+	00605: SUB        
+	00606: PUSHB[1]              0 
+	00608: MAX        
+	00609: DUP        
+	00610: PUSHB[2]             44   192 
+	00613: ROLL       
+	00614: MIN        
+	00615: PUSHW[1]           4096 
+	00618: DIV        
+	00619: ADD        
+	00620: CALL       
+	00621: GPV        
+	00622: ABS        
+	00623: SWAP       
+	00624: ABS        
+	00625: SUB        
+	00626: NOT        
+	00627: IF         
+	00628: PUSHB[1]              3 
+	00630: SUB        
+	00631: EIF        
+	00632: ENDF       
+	00633: FDEF       
+	00634: PUSHB[2]              0     3 
+	00637: CINDEX     
+	00638: RCVT       
+	00639: ROUND[Gray] 
+	00640: EQ         
+	00641: PUSHB[1]             28 
+	00643: MPPEM      
+	00644: LT         
+	00645: AND        
+	00646: IF         
+	00647: PUSHB[1]              3 
+	00649: CINDEX     
+	00650: RCVT       
+	00651: PUSHB[1]              3 
+	00653: CINDEX     
+	00654: RCVT       
+	00655: ADD        
+	00656: ROUND[Gray] 
+	00657: DUP        
+	00658: PUSHB[1]              4 
+	00660: CINDEX     
+	00661: SWAP       
+	00662: WCVTP      
+	00663: PUSHB[1]              4 
+	00665: CINDEX     
+	00666: SWAP       
+	00667: WCVTP      
+	00668: ELSE       
+	00669: PUSHB[1]              3 
+	00671: CINDEX     
+	00672: DUP        
+	00673: RCVT       
+	00674: ROUND[Gray] 
+	00675: DUP        
+	00676: ROLL       
+	00677: SWAP       
+	00678: WCVTP      
+	00679: PUSHB[1]              3 
+	00681: CINDEX     
+	00682: RCVT       
+	00683: ROUND[Gray] 
+	00684: ADD        
+	00685: PUSHB[1]              3 
+	00687: CINDEX     
+	00688: SWAP       
+	00689: WCVTP      
+	00690: EIF        
+	00691: ENDF       
+	00692: FDEF       
+	00693: PUSHB[1]              3 
+	00695: CINDEX     
+	00696: DUP        
+	00697: RCVT       
+	00698: ROUND[Gray] 
+	00699: DUP        
+	00700: ROLL       
+	00701: SWAP       
+	00702: WCVTP      
+	00703: PUSHB[1]              3 
+	00705: CINDEX     
+	00706: RCVT       
+	00707: ABS        
+	00708: ROUND[Gray] 
+	00709: NEG        
+	00710: ADD        
+	00711: PUSHB[1]              4 
+	00713: CINDEX     
+	00714: PUSHB[1]              1 
+	00716: ADD        
+	00717: SWAP       
+	00718: WCVTP      
+	00719: ENDF       
+	00720: FDEF       
+	00721: PUSHB[1]              9 
+	00723: RS         
+	00724: IF         
+	00725: SDPVTL[1]  
+	00726: POP        
+	00727: MDRP[nrp0,nmd,nrd,0] 
+	00728: ELSE       
+	00729: PUSHB[1]             18 
+	00731: RS         
+	00732: IF         
+	00733: SDPVTL[1]  
+	00734: RCVT       
+	00735: PUSHB[1]             17 
+	00737: CALL       
+	00738: PUSHB[1]             13 
+	00740: SWAP       
+	00741: WCVTP      
+	00742: PUSHB[1]             13 
+	00744: ROFF       
+	00745: MIRP[nrp0,nmd,rd,0] 
+	00746: ELSE       
+	00747: SPVTCA[x-axis] 
+	00748: ROLL       
+	00749: RCVT       
+	00750: RTG        
+	00751: ROUND[Black] 
+	00752: DUP        
+	00753: PUSHB[1]             13 
+	00755: SWAP       
+	00756: WCVTP      
+	00757: ROLL       
+	00758: ROLL       
+	00759: SDPVTL[1]  
+	00760: DUP        
+	00761: PUSHB[1]            160 
+	00763: LTEQ       
+	00764: IF         
+	00765: PUSHB[1]             17 
+	00767: CALL       
+	00768: PUSHB[1]             13 
+	00770: SWAP       
+	00771: WCVTP      
+	00772: PUSHB[1]             13 
+	00774: ROFF       
+	00775: MIRP[nrp0,nmd,rd,0] 
+	00776: ELSE       
+	00777: POP        
+	00778: PUSHB[1]             13 
+	00780: ROFF       
+	00781: MIRP[nrp0,nmd,rd,0] 
+	00782: EIF        
+	00783: EIF        
+	00784: EIF        
+	00785: RTG        
+	00786: ENDF       
+	00787: FDEF       
+	00788: DUP        
+	00789: ROLL       
+	00790: RCVT       
+	00791: SWAP       
+	00792: RCVT       
+	00793: ROUND[Gray] 
+	00794: ADD        
+	00795: WCVTP      
+	00796: ENDF       
+	00797: FDEF       
+	00798: RCVT       
+	00799: ROUND[White] 
+	00800: WS         
+	00801: ENDF       
+	00802: FDEF       
+	00803: SVTCA[x-axis] 
+	00804: RTG        
+	00805: MDAP[rd]   
+	00806: ENDF       
+	00807: FDEF       
+	00808: SVTCA[x-axis] 
+	00809: RTG        
+	00810: PUSHB[1]             24 
+	00812: RS         
+	00813: IF         
+	00814: PUSHB[1]              4 
+	00816: CINDEX     
+	00817: PUSHB[1]              4 
+	00819: CINDEX     
+	00820: MD[cur]    
+	00821: ABS        
+	00822: SWAP       
+	00823: RCVT       
+	00824: ABS        
+	00825: ROUND[Black] 
+	00826: PUSHB[1]             64 
+	00828: MAX        
+	00829: SUB        
+	00830: DUP        
+	00831: PUSHB[1]            128 
+	00833: DIV        
+	00834: ROUND[White] 
+	00835: PUSHB[1]              2 
+	00837: CINDEX     
+	00838: PUSHB[1]              2 
+	00840: CINDEX     
+	00841: SUB        
+	00842: MIN        
+	00843: PUSHB[1]             25 
+	00845: RS         
+	00846: ADD        
+	00847: PUSHB[1]             12 
+	00849: SWAP       
+	00850: WCVTP      
+	00851: POP        
+	00852: ROLL       
+	00853: SRP0       
+	00854: PUSHB[1]             12 
+	00856: MIRP[srp0,nmd,rd,2] 
+	00857: POP        
+	00858: ELSE       
+	00859: POP        
+	00860: POP        
+	00861: POP        
+	00862: POP        
+	00863: EIF        
+	00864: ENDF       
+	00865: FDEF       
+	00866: SVTCA[x-axis] 
+	00867: PUSHB[1]             24 
+	00869: RS         
+	00870: IF         
+	00871: PUSHB[1]              2 
+	00873: CINDEX     
+	00874: RCVT       
+	00875: PUSHB[1]              2 
+	00877: CINDEX     
+	00878: RCVT       
+	00879: ABS        
+	00880: ADD        
+	00881: ROUND[White] 
+	00882: PUSHB[1]              3 
+	00884: CINDEX     
+	00885: RCVT       
+	00886: ROUND[White] 
+	00887: SUB        
+	00888: DUP        
+	00889: PUSHB[1]              4 
+	00891: CINDEX     
+	00892: RCVT       
+	00893: ROUND[White] 
+	00894: DUP        
+	00895: ROLL       
+	00896: MAX        
+	00897: NEG        
+	00898: PUSHB[1]              4 
+	00900: CINDEX     
+	00901: SWAP       
+	00902: WCVTP      
+	00903: MIN        
+	00904: PUSHB[1]              3 
+	00906: CINDEX     
+	00907: SWAP       
+	00908: WCVTP      
+	00909: POP        
+	00910: POP        
+	00911: ELSE       
+	00912: DUP        
+	00913: RCVT       
+	00914: ROUND[White] 
+	00915: WCVTP      
+	00916: DUP        
+	00917: RCVT       
+	00918: ROUND[White] 
+	00919: WCVTP      
+	00920: EIF        
+	00921: ENDF       
+	00922: FDEF       
+	00923: SVTCA[x-axis] 
+	00924: DUP        
+	00925: RCVT       
+	00926: PUSHB[1]              0 
+	00928: NEQ        
+	00929: PUSHB[1]             24 
+	00931: RS         
+	00932: AND        
+	00933: IF         
+	00934: RCVT       
+	00935: ROUND[Gray] 
+	00936: SWAP       
+	00937: RCVT       
+	00938: ROUND[Black] 
+	00939: PUSHB[1]             64 
+	00941: MAX        
+	00942: SUB        
+	00943: DUP        
+	00944: PUSHB[1]            128 
+	00946: DIV        
+	00947: ROUND[White] 
+	00948: DUP        
+	00949: ROLL       
+	00950: SWAP       
+	00951: SUB        
+	00952: DUP        
+	00953: PUSHB[1]              3 
+	00955: CINDEX     
+	00956: MAX        
+	00957: NEG        
+	00958: PUSHB[1]              4 
+	00960: CINDEX     
+	00961: SWAP       
+	00962: WCVTP      
+	00963: MIN        
+	00964: PUSHB[1]              3 
+	00966: CINDEX     
+	00967: SWAP       
+	00968: WCVTP      
+	00969: POP        
+	00970: POP        
+	00971: ELSE       
+	00972: POP        
+	00973: POP        
+	00974: PUSHB[1]             25 
+	00976: CALL       
+	00977: EIF        
+	00978: ENDF       
+	00979: FDEF       
+	00980: SVTCA[x-axis] 
+	00981: ROLL       
+	00982: ROLL       
+	00983: RCVT       
+	00984: ABS        
+	00985: SWAP       
+	00986: RCVT       
+	00987: ABS        
+	00988: SUB        
+	00989: ABS        
+	00990: WS         
+	00991: ENDF       
+	00992: FDEF       
+	00993: PUSHB[1]              4 
+	00995: CINDEX     
+	00996: PUSHB[1]              4 
+	00998: CINDEX     
+	00999: PUSHB[1]             25 
+	01001: CALL       
+	01002: PUSHB[1]             24 
+	01004: RS         
+	01005: IF         
+	01006: PUSHB[1]              4 
+	01008: CINDEX     
+	01009: PUSHB[1]              4 
+	01011: CINDEX     
+	01012: PUSHB[1]              3 
+	01014: CINDEX     
+	01015: PUSHB[1]             27 
+	01017: CALL       
+	01018: SVTCA[x-axis] 
+	01019: PUSHB[1]              2 
+	01021: CINDEX     
+	01022: RS         
+	01023: PUSHB[1]             64 
+	01025: EQ         
+	01026: PUSHB[1]              2 
+	01028: CINDEX     
+	01029: RS         
+	01030: PUSHB[1]              0 
+	01032: EQ         
+	01033: AND        
+	01034: IF         
+	01035: PUSHB[1]              3 
+	01037: CINDEX     
+	01038: DUP        
+	01039: RCVT       
+	01040: PUSHB[1]             64 
+	01042: SUB        
+	01043: WCVTP      
+	01044: EIF        
+	01045: PUSHB[1]              2 
+	01047: CINDEX     
+	01048: RS         
+	01049: PUSHB[1]              0 
+	01051: EQ         
+	01052: PUSHB[1]              2 
+	01054: CINDEX     
+	01055: RS         
+	01056: PUSHB[1]             64 
+	01058: EQ         
+	01059: AND        
+	01060: IF         
+	01061: PUSHB[1]              4 
+	01063: CINDEX     
+	01064: DUP        
+	01065: RCVT       
+	01066: PUSHB[1]             64 
+	01068: ADD        
+	01069: WCVTP      
+	01070: EIF        
+	01071: EIF        
+	01072: POP        
+	01073: POP        
+	01074: POP        
+	01075: POP        
+	01076: ENDF       
+	01077: FDEF       
+	01078: PUSHB[1]              3 
+	01080: CINDEX     
+	01081: DUP        
+	01082: PUSHB[1]              7 
+	01084: CINDEX     
+	01085: SDPVTL[1]  
+	01086: SFVTCA[x-axis] 
+	01087: MDAP[nrd]  
+	01088: SWAP       
+	01089: DUP        
+	01090: ROLL       
+	01091: PUSHB[1]              4 
+	01093: CINDEX     
+	01094: PUSHB[1]              7 
+	01096: CINDEX     
+	01097: PUSHB[1]             20 
+	01099: CALL       
+	01100: SRP0       
+	01101: POP        
+	01102: MDRP[nrp0,nmd,rd,0] 
+	01103: POP        
+	01104: ENDF       
+	01105: FDEF       
+	01106: MDRP[nrp0,nmd,nrd,0] 
+	01107: ENDF       
+	01108: FDEF       
+	01109: MPPEM      
+	01110: GT         
+	01111: IF         
+	01112: RCVT       
+	01113: WCVTP      
+	01114: ELSE       
+	01115: POP        
+	01116: POP        
+	01117: EIF        
+	01118: ENDF       
+	01119: FDEF       
+	01120: PUSHB[1]              2 
+	01122: RS         
+	01123: IF         
+	01124: RTDG       
+	01125: MIRP[nrp0,md,rd,1] 
+	01126: RTG        
+	01127: ELSE       
+	01128: MIRP[nrp0,md,rd,1] 
+	01129: EIF        
+	01130: ENDF       
+	01131: FDEF       
+	01132: MPPEM      
+	01133: LT         
+	01134: IF         
+	01135: RCVT       
+	01136: WCVTP      
+	01137: ELSE       
+	01138: POP        
+	01139: POP        
+	01140: EIF        
+	01141: ENDF       
+	01142: FDEF       
+	01143: SVTCA[x-axis] 
+	01144: RTG        
+	01145: MPPEM      
+	01146: GT         
+	01147: IF         
+	01148: ROLL       
+	01149: MDAP[rd]   
+	01150: MIRP[nrp0,md,rd,1] 
+	01151: ELSE       
+	01152: POP        
+	01153: POP        
+	01154: POP        
+	01155: EIF        
+	01156: ENDF       
+	01157: FDEF       
+	01158: MPPEM      
+	01159: GTEQ       
+	01160: SWAP       
+	01161: MPPEM      
+	01162: LTEQ       
+	01163: AND        
+	01164: IF         
+	01165: PUSHB[1]              3 
+	01167: CINDEX     
+	01168: RCVT       
+	01169: ROUND[Gray] 
+	01170: PUSHB[1]              3 
+	01172: CINDEX     
+	01173: RCVT       
+	01174: ROUND[Gray] 
+	01175: PUSHB[1]              3 
+	01177: CINDEX     
+	01178: ADD        
+	01179: EQ         
+	01180: IF         
+	01181: POP        
+	01182: POP        
+	01183: POP        
+	01184: ELSE       
+	01185: PUSHB[1]              2 
+	01187: CINDEX     
+	01188: RCVT       
+	01189: ROUND[Gray] 
+	01190: ADD        
+	01191: PUSHB[1]              3 
+	01193: CINDEX     
+	01194: SWAP       
+	01195: WCVTP      
+	01196: POP        
+	01197: POP        
+	01198: EIF        
+	01199: ELSE       
+	01200: POP        
+	01201: POP        
+	01202: POP        
+	01203: EIF        
+	01204: ENDF       
+	01205: FDEF       
+	01206: PUSHB[1]              2 
+	01208: RS         
+	01209: IF         
+	01210: RTDG       
+	01211: MDRP[nrp0,md,rd,1] 
+	01212: RTG        
+	01213: ELSE       
+	01214: MDRP[nrp0,md,rd,1] 
+	01215: EIF        
+	01216: ENDF       
+	01217: FDEF       
+	01218: GC[cur p]  
+	01219: SWAP       
+	01220: GC[cur p]  
+	01221: ADD        
+	01222: ROLL       
+	01223: ROLL       
+	01224: GC[cur p]  
+	01225: SWAP       
+	01226: DUP        
+	01227: GC[cur p]  
+	01228: ROLL       
+	01229: ADD        
+	01230: ROLL       
+	01231: SUB        
+	01232: PUSHW[1]           -128 
+	01235: DIV        
+	01236: SWAP       
+	01237: DUP        
+	01238: SRP0       
+	01239: SWAP       
+	01240: ROLL       
+	01241: PUSHB[2]             12    12 
+	01244: ROLL       
+	01245: WCVTF      
+	01246: RCVT       
+	01247: ADD        
+	01248: DUP        
+	01249: PUSHB[1]              0 
+	01251: LT         
+	01252: IF         
+	01253: PUSHB[1]              1 
+	01255: SUB        
+	01256: PUSHW[1]            -70 
+	01259: MAX        
+	01260: ELSE       
+	01261: PUSHB[1]             70 
+	01263: MIN        
+	01264: EIF        
+	01265: PUSHB[1]             16 
+	01267: ADD        
+	01268: ROUND[Gray] 
+	01269: SVTCA[x-axis] 
+	01270: MSIRP[nrp] 
+	01271: ENDF       
+	01272: FDEF       
+	01273: DUP        
+	01274: RCVT       
+	01275: PUSHB[1]              3 
+	01277: CINDEX     
+	01278: GC[cur p]  
+	01279: GT         
+	01280: MPPEM      
+	01281: PUSHB[1]             19 
+	01283: LTEQ       
+	01284: OR         
+	01285: IF         
+	01286: PUSHB[1]              2 
+	01288: CINDEX     
+	01289: GC[cur p]  
+	01290: DUP        
+	01291: ROUND[Gray] 
+	01292: SUB        
+	01293: PUSHB[1]              3 
+	01295: CINDEX     
+	01296: PUSHB[1]              3 
+	01298: CINDEX     
+	01299: MIAP[rd+ci] 
+	01300: SWAP       
+	01301: POP        
+	01302: SHPIX      
+	01303: ELSE       
+	01304: POP        
+	01305: SRP1       
+	01306: EIF        
+	01307: ENDF       
+	01308: FDEF       
+	01309: DUP        
+	01310: RCVT       
+	01311: PUSHB[1]              3 
+	01313: CINDEX     
+	01314: GC[cur p]  
+	01315: LT         
+	01316: IF         
+	01317: PUSHB[1]              2 
+	01319: CINDEX     
+	01320: GC[cur p]  
+	01321: DUP        
+	01322: ROUND[Gray] 
+	01323: SUB        
+	01324: PUSHB[1]              3 
+	01326: CINDEX     
+	01327: PUSHB[1]              3 
+	01329: CINDEX     
+	01330: MIAP[rd+ci] 
+	01331: SWAP       
+	01332: POP        
+	01333: SHPIX      
+	01334: ELSE       
+	01335: POP        
+	01336: SRP1       
+	01337: EIF        
+	01338: ENDF       
+	01339: FDEF       
+	01340: SVTCA[y-axis] 
+	01341: MPPEM      
+	01342: PUSHB[1]            200 
+	01344: LTEQ       
+	01345: IF         
+	01346: SVTCA[y-axis] 
+	01347: PUSHB[1]              7 
+	01349: RS         
+	01350: PUSHB[1]              6 
+	01352: RS         
+	01353: SFVFS      
+	01354: EIF        
+	01355: ENDF       
+	01356: FDEF       
+	01357: ROLL       
+	01358: SRP0       
+	01359: MIRP[nrp0,md,rd,0] 
+	01360: ENDF       
+	01361: FDEF       
+	01362: PUSHB[1]             12 
+	01364: RS         
+	01365: IF         
+	01366: POP        
+	01367: ELSE       
+	01368: DUP        
+	01369: GC[cur p]  
+	01370: PUSHB[1]              0 
+	01372: GT         
+	01373: IF         
+	01374: PUSHW[1]            -16 
+	01377: SHPIX      
+	01378: ELSE       
+	01379: PUSHB[1]             16 
+	01381: SHPIX      
+	01382: EIF        
+	01383: EIF        
+	01384: ENDF       
+	01385: FDEF       
+	01386: DUP        
+	01387: PUSHB[1]              0 
+	01389: NEQ        
+	01390: IF         
+	01391: PUSHW[1]           4096 
+	01394: MUL        
+	01395: PUSHB[1]              3 
+	01397: CINDEX     
+	01398: RCVT       
+	01399: ABS        
+	01400: PUSHB[1]              3 
+	01402: CINDEX     
+	01403: RCVT       
+	01404: ABS        
+	01405: SUB        
+	01406: PUSHB[1]              0 
+	01408: GTEQ       
+	01409: IF         
+	01410: PUSHB[1]              2 
+	01412: ELSE       
+	01413: PUSHB[1]             64 
+	01415: SUB        
+	01416: PUSHB[1]              3 
+	01418: EIF        
+	01419: CINDEX     
+	01420: RCVT       
+	01421: ROUND[Black] 
+	01422: GTEQ       
+	01423: IF         
+	01424: RCVT       
+	01425: WCVTP      
+	01426: ELSE       
+	01427: POP        
+	01428: POP        
+	01429: EIF        
+	01430: ELSE       
+	01431: POP        
+	01432: PUSHB[1]              2 
+	01434: CINDEX     
+	01435: RCVT       
+	01436: PUSHB[1]              2 
+	01438: CINDEX     
+	01439: RCVT       
+	01440: SUB        
+	01441: ABS        
+	01442: PUSHB[1]             40 
+	01444: LTEQ       
+	01445: IF         
+	01446: RCVT       
+	01447: WCVTP      
+	01448: ELSE       
+	01449: POP        
+	01450: POP        
+	01451: EIF        
+	01452: EIF        
+	01453: ENDF       
+	01454: FDEF       
+	01455: POP        
+	01456: POP        
+	01457: GPV        
+	01458: ABS        
+	01459: SWAP       
+	01460: ABS        
+	01461: MAX        
+	01462: PUSHW[1]          16384 
+	01465: DIV        
+	01466: ENDF       
+	01467: FDEF       
+	01468: POP        
+	01469: PUSHB[1]            128 
+	01471: LTEQ       
+	01472: IF         
+	01473: GPV        
+	01474: ABS        
+	01475: SWAP       
+	01476: ABS        
+	01477: MAX        
+	01478: PUSHW[1]           8192 
+	01481: DIV        
+	01482: ELSE       
+	01483: PUSHB[3]              0    64    47 
+	01487: CALL       
+	01488: EIF        
+	01489: PUSHB[1]              2 
+	01491: ADD        
+	01492: ENDF       
+	01493: FDEF       
+	01494: POP        
+	01495: PUSHB[1]            192 
+	01497: LTEQ       
+	01498: IF         
+	01499: GPV        
+	01500: ABS        
+	01501: SWAP       
+	01502: ABS        
+	01503: MAX        
+	01504: PUSHW[1]           5461 
+	01507: DIV        
+	01508: ELSE       
+	01509: PUSHB[3]              0   128    47 
+	01513: CALL       
+	01514: EIF        
+	01515: PUSHB[1]              2 
+	01517: ADD        
+	01518: ENDF       
+	01519: FDEF       
+	01520: GPV        
+	01521: ABS        
+	01522: SWAP       
+	01523: ABS        
+	01524: MAX        
+	01525: PUSHW[1]          16384 
+	01528: DIV        
+	01529: ADD        
+	01530: SWAP       
+	01531: POP        
+	01532: ENDF       
+	01533: FDEF       
+	01534: RTG        
+	01535: MPPEM      
+	01536: GTEQ       
+	01537: IF         
+	01538: PUSHB[1]              4 
+	01540: CINDEX     
+	01541: PUSHB[1]              4 
+	01543: CINDEX     
+	01544: MD[cur]    
+	01545: ABS        
+	01546: SWAP       
+	01547: RCVT       
+	01548: ABS        
+	01549: ROUND[Black] 
+	01550: PUSHB[1]             64 
+	01552: MAX        
+	01553: SUB        
+	01554: DUP        
+	01555: PUSHB[1]            128 
+	01557: DIV        
+	01558: ROUND[White] 
+	01559: PUSHB[1]              2 
+	01561: CINDEX     
+	01562: PUSHB[1]              2 
+	01564: CINDEX     
+	01565: SUB        
+	01566: MIN        
+	01567: PUSHB[1]             12 
+	01569: SWAP       
+	01570: WCVTP      
+	01571: POP        
+	01572: ROLL       
+	01573: SRP0       
+	01574: PUSHB[1]             12 
+	01576: MIRP[srp0,nmd,rd,2] 
+	01577: POP        
+	01578: ELSE       
+	01579: POP        
+	01580: ROLL       
+	01581: SRP1       
+	01582: SWAP       
+	01583: SRP2       
+	01584: DUP        
+	01585: IP         
+	01586: MDAP[rd]   
+	01587: EIF        
+	01588: ENDF       
+	01589: FDEF       
+	01590: PUSHB[1]              2 
+	01592: CINDEX     
+	01593: PUSHB[1]              2 
+	01595: CINDEX     
+	01596: MD[cur]    
+	01597: ABS        
+	01598: PUSHB[1]            192 
+	01600: EQ         
+	01601: IF         
+	01602: PUSHW[1]             -8 
+	01605: SHPIX      
+	01606: PUSHB[1]              8 
+	01608: SHPIX      
+	01609: ELSE       
+	01610: POP        
+	01611: POP        
+	01612: EIF        
+	01613: ENDF       
+	01614: FDEF       
+	01615: PUSHB[1]             19 
+	01617: RS         
+	01618: IF         
+	01619: SPVTCA[x-axis] 
+	01620: ELSE       
+	01621: SPVTCA[y-axis] 
+	01622: EIF        
+	01623: ENDF       
+	01624: FDEF       
+	01625: PUSHB[1]             19 
+	01627: RS         
+	01628: IF         
+	01629: SPVTCA[y-axis] 
+	01630: ELSE       
+	01631: SPVTCA[x-axis] 
+	01632: EIF        
+	01633: ENDF       
+	01634: FDEF       
+	01635: PUSHB[1]             10 
+	01637: CALL       
+	01638: SWAP       
+	01639: SRP0       
+	01640: DUP        
+	01641: ALIGNRP    
+	01642: PUSHB[1]             23 
+	01644: CALL       
+	01645: ENDF       
+	01646: FDEF       
+	01647: PUSHB[1]              2 
+	01649: CINDEX     
+	01650: PUSHW[1]            -16 
+	01653: SHPIX      
+	01654: PUSHB[1]             40 
+	01656: CALL       
+	01657: ROLL       
+	01658: SRP0       
+	01659: SWAP       
+	01660: DUP        
+	01661: MDRP[srp0,nmd,nrd,0] 
+	01662: SWAP       
+	01663: PUSHB[1]             16 
+	01665: CALL       
+	01666: PUSHB[1]              5 
+	01668: RS         
+	01669: IF         
+	01670: MDRP[nrp0,nmd,nrd,0] 
+	01671: ELSE       
+	01672: ALIGNRP    
+	01673: EIF        
+	01674: DUP        
+	01675: SRP0       
+	01676: SRP1       
+	01677: PUSHB[1]              0 
+	01679: SRP2       
+	01680: SVTCA[x-axis] 
+	01681: ENDF       
+	01682: FDEF       
+	01683: MPPEM      
+	01684: GTEQ       
+	01685: SWAP       
+	01686: MPPEM      
+	01687: LTEQ       
+	01688: AND        
+	01689: IF         
+	01690: SHPIX      
+	01691: ELSE       
+	01692: POP        
+	01693: POP        
+	01694: EIF        
+	01695: ENDF       
+	01696: FDEF       
+	01697: SVTCA[x-axis] 
+	01698: PUSHB[1]              2 
+	01700: CINDEX     
+	01701: SRP0       
+	01702: MDRP[srp0,nmd,nrd,0] 
+	01703: SWAP       
+	01704: MDRP[nrp0,md,nrd,1] 
+	01705: SVTCA[x-axis] 
+	01706: PUSHB[1]              1 
+	01708: SZP0       
+	01709: PUSHB[1]              0 
+	01711: SZP1       
+	01712: SRP0       
+	01713: PUSHB[1]              1 
+	01715: ALIGNRP    
+	01716: PUSHB[1]              1 
+	01718: SZPS       
+	01719: ENDF       
+	01720: FDEF       
+	01721: SVTCA[x-axis] 
+	01722: PUSHB[1]              0 
+	01724: SZP0       
+	01725: PUSHB[1]              1 
+	01727: PUSHB[1]              3 
+	01729: CINDEX     
+	01730: MD[cur]    
+	01731: PUSHB[1]              3 
+	01733: SLOOP      
+	01734: SHPIX      
+	01735: PUSHB[1]              1 
+	01737: SZP0       
+	01738: ENDF       
+	01739: FDEF       
+	01740: MPPEM      
+	01741: GTEQ       
+	01742: SWAP       
+	01743: MPPEM      
+	01744: LTEQ       
+	01745: AND        
+	01746: IF         
+	01747: DUP        
+	01748: RCVT       
+	01749: ROLL       
+	01750: ADD        
+	01751: WCVTP      
+	01752: ELSE       
+	01753: POP        
+	01754: POP        
+	01755: EIF        
+	01756: ENDF       
+	01757: FDEF       
+	01758: RTG        
+	01759: MPPEM      
+	01760: GTEQ       
+	01761: IF         
+	01762: PUSHB[1]              4 
+	01764: CINDEX     
+	01765: PUSHB[1]              4 
+	01767: CINDEX     
+	01768: MD[cur]    
+	01769: ABS        
+	01770: PUSHB[1]              3 
+	01772: CINDEX     
+	01773: PUSHB[1]              3 
+	01775: CINDEX     
+	01776: MD[cur]    
+	01777: ABS        
+	01778: ROUND[Gray] 
+	01779: PUSHB[1]             64 
+	01781: MAX        
+	01782: SUB        
+	01783: DUP        
+	01784: PUSHB[1]            128 
+	01786: DIV        
+	01787: ROUND[White] 
+	01788: PUSHB[1]              2 
+	01790: CINDEX     
+	01791: PUSHB[1]              2 
+	01793: CINDEX     
+	01794: SUB        
+	01795: MIN        
+	01796: PUSHB[1]             12 
+	01798: SWAP       
+	01799: WCVTP      
+	01800: POP        
+	01801: PUSHB[1]              4 
+	01803: CINDEX     
+	01804: SRP0       
+	01805: SWAP       
+	01806: PUSHB[1]             12 
+	01808: MIRP[srp0,nmd,rd,2] 
+	01809: ELSE       
+	01810: PUSHB[1]              4 
+	01812: CINDEX     
+	01813: PUSHB[1]              4 
+	01815: CINDEX     
+	01816: SRP1       
+	01817: SRP2       
+	01818: SWAP       
+	01819: DUP        
+	01820: IP         
+	01821: MDAP[rd]   
+	01822: EIF        
+	01823: MDRP[nrp0,md,rd,0] 
+	01824: POP        
+	01825: POP        
+	01826: ENDF       
+	01827: FDEF       
+	01828: SVTCA[x-axis] 
+	01829: RTG        
+	01830: PUSHB[1]             24 
+	01832: RS         
+	01833: IF         
+	01834: PUSHB[1]              5 
+	01836: CINDEX     
+	01837: GC[cur p]  
+	01838: SWAP       
+	01839: RCVT       
+	01840: ABS        
+	01841: SUB        
+	01842: ELSE       
+	01843: POP        
+	01844: PUSHB[1]              4 
+	01846: CINDEX     
+	01847: PUSHB[1]              4 
+	01849: CINDEX     
+	01850: MD[org]    
+	01851: EIF        
+	01852: PUSHB[1]             14 
+	01854: SWAP       
+	01855: WCVTP      
+	01856: SWAP       
+	01857: SRP0       
+	01858: PUSHB[1]             14 
+	01860: MIRP[nrp0,md,rd,0] 
+	01861: SWAP       
+	01862: SRP0       
+	01863: PUSHB[1]             14 
+	01865: MIRP[nrp0,md,rd,0] 
+	01866: ENDF       
+	01867: FDEF       
+	01868: PUSHB[1]             27 
+	01870: RS         
+	01871: IF         
+	01872: DUP        
+	01873: PUSHB[1]              1 
+	01875: ADD        
+	01876: RCVT       
+	01877: PUSHB[1]              0 
+	01879: LTEQ       
+	01880: IF         
+	01881: DUP        
+	01882: PUSHB[1]              1 
+	01884: ADD        
+	01885: DUP        
+	01886: RCVT       
+	01887: DUP        
+	01888: ROUND[Gray] 
+	01889: PUSHB[1]              0 
+	01891: NEQ        
+	01892: IF         
+	01893: PUSHB[1]             32 
+	01895: ADD        
+	01896: WCVTP      
+	01897: POP        
+	01898: ELSE       
+	01899: POP        
+	01900: POP        
+	01901: POP        
+	01902: EIF        
+	01903: ELSE       
+	01904: DUP        
+	01905: PUSHB[1]              1 
+	01907: ADD        
+	01908: DUP        
+	01909: RCVT       
+	01910: DUP        
+	01911: ROUND[Gray] 
+	01912: PUSHB[1]              0 
+	01914: NEQ        
+	01915: IF         
+	01916: PUSHW[1]            -32 
+	01919: ADD        
+	01920: WCVTP      
+	01921: PUSHB[1]             28 
+	01923: MPPEM      
+	01924: LT         
+	01925: IF         
+	01926: DUP        
+	01927: RCVT       
+	01928: PUSHB[1]             32 
+	01930: ADD        
+	01931: WCVTP      
+	01932: ELSE       
+	01933: POP        
+	01934: EIF        
+	01935: ELSE       
+	01936: POP        
+	01937: POP        
+	01938: POP        
+	01939: EIF        
+	01940: EIF        
+	01941: ELSE       
+	01942: POP        
+	01943: EIF        
+	01944: ENDF       
+	01945: FDEF       
+	01946: MPPEM      
+	01947: GTEQ       
+	01948: SWAP       
+	01949: MPPEM      
+	01950: LTEQ       
+	01951: AND        
+	01952: IF         
+	01953: SHPIX      
+	01954: ELSE       
+	01955: POP        
+	01956: POP        
+	01957: EIF        
+	01958: ENDF       
+	01959: FDEF       
+	01960: MPPEM      
+	01961: EQ         
+	01962: IF         
+	01963: SHPIX      
+	01964: ELSE       
+	01965: POP        
+	01966: POP        
+	01967: EIF        
+	01968: ENDF       
+	01969: FDEF       
+	01970: MPPEM      
+	01971: GT         
+	01972: IF         
+	01973: RDTG       
+	01974: ELSE       
+	01975: ROFF       
+	01976: EIF        
+	01977: ENDF       
+
+
+'hmtx' Table - Horizontal Metrics
+---------------------------------
+Size = 460 bytes, 110 entries
+	  0. advWid: 2048, LSdBear: 256
+	  1. advWid:    0, LSdBear: 0
+	  2. advWid: 1024, LSdBear: 0
+	  3. advWid: 1000, LSdBear: 0
+	  4. advWid:  745, LSdBear: 176
+	  5. advWid:  928, LSdBear: 248
+	  6. advWid: 1407, LSdBear: 100
+	  7. advWid: 1147, LSdBear: 63
+	  8. advWid: 1438, LSdBear: 145
+	  9. advWid: 1499, LSdBear: 49
+	 10. advWid:  457, LSdBear: 248
+	 11. advWid: 1090, LSdBear: 195
+	 12. advWid: 1090, LSdBear: -43
+	 13. advWid:  754, LSdBear: 182
+	 14. advWid: 1147, LSdBear: 150
+	 15. advWid:  745, LSdBear: 137
+	 16. advWid:  942, LSdBear: 184
+	 17. advWid:  745, LSdBear: 332
+	 18. advWid: 1053, LSdBear: 20
+	 19. advWid: 1438, LSdBear: 178
+	 20. advWid:  827, LSdBear: 227
+	 21. advWid: 1368, LSdBear: 61
+	 22. advWid: 1368, LSdBear: 94
+	 23. advWid: 1397, LSdBear: 174
+	 24. advWid: 1368, LSdBear: 88
+	 25. advWid: 1368, LSdBear: 168
+	 26. advWid: 1225, LSdBear: 287
+	 27. advWid: 1346, LSdBear: 84
+	 28. advWid: 1368, LSdBear: 217
+	 29. advWid:  745, LSdBear: 176
+	 30. advWid:  745, LSdBear: 137
+	 31. advWid: 1147, LSdBear: 168
+	 32. advWid: 1147, LSdBear: 160
+	 33. advWid: 1147, LSdBear: 84
+	 34. advWid:  885, LSdBear: 47
+	 35. advWid: 1053, LSdBear: 303
+	 36. advWid:  885, LSdBear: -121
+	 37. advWid:  934, LSdBear: 100
+	 38. advWid:  893, LSdBear: 168
+	 39. advWid:  934, LSdBear: -182
+	 40. advWid:  950, LSdBear: 274
+	 41. advWid: 1229, LSdBear: 127
+	 42. advWid: 1229, LSdBear: 47
+	 43. advWid: 1126, LSdBear: 184
+	 44. advWid: 1884, LSdBear: 184
+	 45. advWid: 1217, LSdBear: 418
+	 46. advWid: 1217, LSdBear: 395
+	 47. advWid:  745, LSdBear: 418
+	 48. advWid:  745, LSdBear: 395
+	 49. advWid:  745, LSdBear: 266
+	 50. advWid:  745, LSdBear: 332
+	 51. advWid:  745, LSdBear: 176
+	 52. advWid:  868, LSdBear: 203
+	 53. advWid: 1096, LSdBear: -115
+	 54. advWid: 1608, LSdBear: -115
+	 55. advWid: 1710, LSdBear: -115
+	 56. advWid: 1513, LSdBear: -115
+	 57. advWid: 1526, LSdBear: 133
+	 58. advWid: 1434, LSdBear: -115
+	 59. advWid: 1180, LSdBear: 123
+	 60. advWid: 1130, LSdBear: -29
+	 61. advWid:  903, LSdBear: -123
+	 62. advWid: 1047, LSdBear: -121
+	 63. advWid: 1057, LSdBear: -313
+	 64. advWid: 1294, LSdBear: -233
+	 65. advWid: 1153, LSdBear: -94
+	 66. advWid: 1163, LSdBear: -238
+	 67. advWid: 1171, LSdBear: -78
+	 68. advWid: 1378, LSdBear: 41
+	 69. advWid: 2195, LSdBear: 80
+	 70. advWid:  856, LSdBear: 31
+	 71. advWid: 1135, LSdBear: 98
+	 72. advWid: 1526, LSdBear: 131
+	 73. advWid: 1458, LSdBear: -133
+	 74. advWid: 1057, LSdBear: -313
+	 75. advWid: 1243, LSdBear: -102
+	 76. advWid: 1153, LSdBear: -94
+	 77. advWid: 1153, LSdBear: -94
+	 78. advWid: 1096, LSdBear: -115
+	 79. advWid: 1096, LSdBear: -115
+	 80. advWid: 1294, LSdBear: -233
+	 81. advWid: 1513, LSdBear: -115
+	 82. advWid: 2195, LSdBear: 80
+	 83. advWid: 2195, LSdBear: 80
+	 84. advWid: 2195, LSdBear: 80
+	 85. advWid: 1153, LSdBear: -94
+	 86. advWid: 1153, LSdBear: -94
+	 87. advWid: 1130, LSdBear: -29
+	 88. advWid: 1130, LSdBear: -29
+	 89. advWid: 1171, LSdBear: -78
+	 90. advWid:  903, LSdBear: -123
+	 91. advWid:  600, LSdBear: 25
+	 92. advWid:  887, LSdBear: 25
+	 93. advWid:  618, LSdBear: 25
+	 94. advWid: 1038, LSdBear: 14
+	 95. advWid:  526, LSdBear: 25
+	 96. advWid: 1018, LSdBear: 25
+	 97. advWid:  522, LSdBear: 23
+	 98. advWid: 1014, LSdBear: 23
+	 99. advWid:  934, LSdBear: 25
+	100. advWid: 1008, LSdBear: 37
+	101. advWid:  635, LSdBear: 37
+	102. advWid:  903, LSdBear: 10
+	103. advWid:  682, LSdBear: 238
+	104. advWid:  682, LSdBear: 238
+	105. advWid:  682, LSdBear: 74
+	106. advWid:  682, LSdBear: 33
+	107. advWid: 1229, LSdBear: 119
+	108. advWid: 1677, LSdBear: 10
+	109. advWid:    0, LSdBear: 25
+	LSdBear 110: 25
+	LSdBear 111: 25
+	LSdBear 112: 14
+	LSdBear 113: 25
+	LSdBear 114: 25
+	LSdBear 115: 23
+	LSdBear 116: 23
+	LSdBear 117: 25
+	LSdBear 118: 37
+	LSdBear 119: 37
+
+'VDMX' Table - Precomputed Vertical Device Metrics
+--------------------------------------------------
+  Version:                 1
+  Number of Hgt Records:   1
+  Number of Ratio Records: 1
+
+    Ratio Record #1
+	CharSetId     1
+	xRatio        1
+	yStartRatio   1
+	yEndRatio     1
+	Record Offset 12 (group #1)
+
+   VDMX Height Record Groups
+   -------------------------
+   1.	Number of Hgt Records  248
+	Starting Y Pel Height  8
+	Ending Y Pel Height    255
+
+	     1. Pel Height= 8
+	        yMax=       7
+	        yMin=       -2
+
+	     2. Pel Height= 9
+	        yMax=       8
+	        yMin=       -2
+
+	     3. Pel Height= 10
+	        yMax=       9
+	        yMin=       -3
+
+	     4. Pel Height= 11
+	        yMax=       9
+	        yMin=       -3
+
+	     5. Pel Height= 12
+	        yMax=       11
+	        yMin=       -3
+
+	     6. Pel Height= 13
+	        yMax=       11
+	        yMin=       -3
+
+	     7. Pel Height= 14
+	        yMax=       13
+	        yMin=       -3
+
+	     8. Pel Height= 15
+	        yMax=       13
+	        yMin=       -4
+
+	     9. Pel Height= 16
+	        yMax=       14
+	        yMin=       -4
+
+	    10. Pel Height= 17
+	        yMax=       15
+	        yMin=       -4
+
+	    11. Pel Height= 18
+	        yMax=       16
+	        yMin=       -4
+
+	    12. Pel Height= 19
+	        yMax=       17
+	        yMin=       -5
+
+	    13. Pel Height= 20
+	        yMax=       17
+	        yMin=       -5
+
+	    14. Pel Height= 21
+	        yMax=       18
+	        yMin=       -6
+
+	    15. Pel Height= 22
+	        yMax=       19
+	        yMin=       -6
+
+	    16. Pel Height= 23
+	        yMax=       20
+	        yMin=       -6
+
+	    17. Pel Height= 24
+	        yMax=       21
+	        yMin=       -6
+
+	    18. Pel Height= 25
+	        yMax=       22
+	        yMin=       -6
+
+	    19. Pel Height= 26
+	        yMax=       22
+	        yMin=       -6
+
+	    20. Pel Height= 27
+	        yMax=       24
+	        yMin=       -7
+
+	    21. Pel Height= 28
+	        yMax=       24
+	        yMin=       -8
+
+	    22. Pel Height= 29
+	        yMax=       26
+	        yMin=       -8
+
+	    23. Pel Height= 30
+	        yMax=       26
+	        yMin=       -8
+
+	    24. Pel Height= 31
+	        yMax=       27
+	        yMin=       -8
+
+	    25. Pel Height= 32
+	        yMax=       28
+	        yMin=       -8
+
+	    26. Pel Height= 33
+	        yMax=       29
+	        yMin=       -9
+
+	    27. Pel Height= 34
+	        yMax=       30
+	        yMin=       -9
+
+	    28. Pel Height= 35
+	        yMax=       31
+	        yMin=       -9
+
+	    29. Pel Height= 36
+	        yMax=       31
+	        yMin=       -9
+
+	    30. Pel Height= 37
+	        yMax=       33
+	        yMin=       -9
+
+	    31. Pel Height= 38
+	        yMax=       33
+	        yMin=       -10
+
+	    32. Pel Height= 39
+	        yMax=       34
+	        yMin=       -10
+
+	    33. Pel Height= 40
+	        yMax=       35
+	        yMin=       -10
+
+	    34. Pel Height= 41
+	        yMax=       35
+	        yMin=       -10
+
+	    35. Pel Height= 42
+	        yMax=       37
+	        yMin=       -10
+
+	    36. Pel Height= 43
+	        yMax=       37
+	        yMin=       -10
+
+	    37. Pel Height= 44
+	        yMax=       39
+	        yMin=       -11
+
+	    38. Pel Height= 45
+	        yMax=       39
+	        yMin=       -11
+
+	    39. Pel Height= 46
+	        yMax=       40
+	        yMin=       -12
+
+	    40. Pel Height= 47
+	        yMax=       41
+	        yMin=       -12
+
+	    41. Pel Height= 48
+	        yMax=       42
+	        yMin=       -12
+
+	    42. Pel Height= 49
+	        yMax=       43
+	        yMin=       -12
+
+	    43. Pel Height= 50
+	        yMax=       44
+	        yMin=       -13
+
+	    44. Pel Height= 51
+	        yMax=       45
+	        yMin=       -13
+
+	    45. Pel Height= 52
+	        yMax=       46
+	        yMin=       -13
+
+	    46. Pel Height= 53
+	        yMax=       46
+	        yMin=       -13
+
+	    47. Pel Height= 54
+	        yMax=       48
+	        yMin=       -13
+
+	    48. Pel Height= 55
+	        yMax=       48
+	        yMin=       -14
+
+	    49. Pel Height= 56
+	        yMax=       50
+	        yMin=       -15
+
+	    50. Pel Height= 57
+	        yMax=       50
+	        yMin=       -15
+
+	    51. Pel Height= 58
+	        yMax=       50
+	        yMin=       -15
+
+	    52. Pel Height= 59
+	        yMax=       52
+	        yMin=       -15
+
+	    53. Pel Height= 60
+	        yMax=       52
+	        yMin=       -15
+
+	    54. Pel Height= 61
+	        yMax=       54
+	        yMin=       -15
+
+	    55. Pel Height= 62
+	        yMax=       54
+	        yMin=       -16
+
+	    56. Pel Height= 63
+	        yMax=       55
+	        yMin=       -16
+
+	    57. Pel Height= 64
+	        yMax=       56
+	        yMin=       -16
+
+	    58. Pel Height= 65
+	        yMax=       57
+	        yMin=       -17
+
+	    59. Pel Height= 66
+	        yMax=       58
+	        yMin=       -17
+
+	    60. Pel Height= 67
+	        yMax=       59
+	        yMin=       -17
+
+	    61. Pel Height= 68
+	        yMax=       59
+	        yMin=       -18
+
+	    62. Pel Height= 69
+	        yMax=       61
+	        yMin=       -18
+
+	    63. Pel Height= 70
+	        yMax=       61
+	        yMin=       -18
+
+	    64. Pel Height= 71
+	        yMax=       63
+	        yMin=       -18
+
+	    65. Pel Height= 72
+	        yMax=       63
+	        yMin=       -18
+
+	    66. Pel Height= 73
+	        yMax=       64
+	        yMin=       -18
+
+	    67. Pel Height= 74
+	        yMax=       65
+	        yMin=       -19
+
+	    68. Pel Height= 75
+	        yMax=       65
+	        yMin=       -19
+
+	    69. Pel Height= 76
+	        yMax=       67
+	        yMin=       -19
+
+	    70. Pel Height= 77
+	        yMax=       67
+	        yMin=       -19
+
+	    71. Pel Height= 78
+	        yMax=       68
+	        yMin=       -19
+
+	    72. Pel Height= 79
+	        yMax=       69
+	        yMin=       -20
+
+	    73. Pel Height= 80
+	        yMax=       70
+	        yMin=       -20
+
+	    74. Pel Height= 81
+	        yMax=       71
+	        yMin=       -20
+
+	    75. Pel Height= 82
+	        yMax=       72
+	        yMin=       -20
+
+	    76. Pel Height= 83
+	        yMax=       72
+	        yMin=       -21
+
+	    77. Pel Height= 84
+	        yMax=       74
+	        yMin=       -21
+
+	    78. Pel Height= 85
+	        yMax=       74
+	        yMin=       -22
+
+	    79. Pel Height= 86
+	        yMax=       76
+	        yMin=       -22
+
+	    80. Pel Height= 87
+	        yMax=       76
+	        yMin=       -22
+
+	    81. Pel Height= 88
+	        yMax=       77
+	        yMin=       -22
+
+	    82. Pel Height= 89
+	        yMax=       78
+	        yMin=       -22
+
+	    83. Pel Height= 90
+	        yMax=       79
+	        yMin=       -22
+
+	    84. Pel Height= 91
+	        yMax=       80
+	        yMin=       -23
+
+	    85. Pel Height= 92
+	        yMax=       81
+	        yMin=       -24
+
+	    86. Pel Height= 93
+	        yMax=       81
+	        yMin=       -24
+
+	    87. Pel Height= 94
+	        yMax=       82
+	        yMin=       -24
+
+	    88. Pel Height= 95
+	        yMax=       83
+	        yMin=       -24
+
+	    89. Pel Height= 96
+	        yMax=       84
+	        yMin=       -24
+
+	    90. Pel Height= 97
+	        yMax=       85
+	        yMin=       -25
+
+	    91. Pel Height= 98
+	        yMax=       85
+	        yMin=       -25
+
+	    92. Pel Height= 99
+	        yMax=       87
+	        yMin=       -25
+
+	    93. Pel Height= 100
+	        yMax=       87
+	        yMin=       -25
+
+	    94. Pel Height= 101
+	        yMax=       89
+	        yMin=       -25
+
+	    95. Pel Height= 102
+	        yMax=       89
+	        yMin=       -26
+
+	    96. Pel Height= 103
+	        yMax=       90
+	        yMin=       -27
+
+	    97. Pel Height= 104
+	        yMax=       91
+	        yMin=       -27
+
+	    98. Pel Height= 105
+	        yMax=       92
+	        yMin=       -27
+
+	    99. Pel Height= 106
+	        yMax=       93
+	        yMin=       -27
+
+	   100. Pel Height= 107
+	        yMax=       94
+	        yMin=       -27
+
+	   101. Pel Height= 108
+	        yMax=       94
+	        yMin=       -27
+
+	   102. Pel Height= 109
+	        yMax=       96
+	        yMin=       -28
+
+	   103. Pel Height= 110
+	        yMax=       96
+	        yMin=       -28
+
+	   104. Pel Height= 111
+	        yMax=       98
+	        yMin=       -28
+
+	   105. Pel Height= 112
+	        yMax=       98
+	        yMin=       -28
+
+	   106. Pel Height= 113
+	        yMax=       98
+	        yMin=       -28
+
+	   107. Pel Height= 114
+	        yMax=       100
+	        yMin=       -28
+
+	   108. Pel Height= 115
+	        yMax=       100
+	        yMin=       -29
+
+	   109. Pel Height= 116
+	        yMax=       102
+	        yMin=       -29
+
+	   110. Pel Height= 117
+	        yMax=       102
+	        yMin=       -29
+
+	   111. Pel Height= 118
+	        yMax=       103
+	        yMin=       -29
+
+	   112. Pel Height= 119
+	        yMax=       104
+	        yMin=       -29
+
+	   113. Pel Height= 120
+	        yMax=       105
+	        yMin=       -31
+
+	   114. Pel Height= 121
+	        yMax=       106
+	        yMin=       -31
+
+	   115. Pel Height= 122
+	        yMax=       107
+	        yMin=       -31
+
+	   116. Pel Height= 123
+	        yMax=       107
+	        yMin=       -31
+
+	   117. Pel Height= 124
+	        yMax=       109
+	        yMin=       -31
+
+	   118. Pel Height= 125
+	        yMax=       109
+	        yMin=       -31
+
+	   119. Pel Height= 126
+	        yMax=       111
+	        yMin=       -32
+
+	   120. Pel Height= 127
+	        yMax=       111
+	        yMin=       -32
+
+	   121. Pel Height= 128
+	        yMax=       112
+	        yMin=       -33
+
+	   122. Pel Height= 129
+	        yMax=       113
+	        yMin=       -33
+
+	   123. Pel Height= 130
+	        yMax=       114
+	        yMin=       -33
+
+	   124. Pel Height= 131
+	        yMax=       115
+	        yMin=       -33
+
+	   125. Pel Height= 132
+	        yMax=       115
+	        yMin=       -34
+
+	   126. Pel Height= 133
+	        yMax=       116
+	        yMin=       -34
+
+	   127. Pel Height= 134
+	        yMax=       117
+	        yMin=       -34
+
+	   128. Pel Height= 135
+	        yMax=       118
+	        yMin=       -34
+
+	   129. Pel Height= 136
+	        yMax=       119
+	        yMin=       -34
+
+	   130. Pel Height= 137
+	        yMax=       120
+	        yMin=       -34
+
+	   131. Pel Height= 138
+	        yMax=       120
+	        yMin=       -35
+
+	   132. Pel Height= 139
+	        yMax=       122
+	        yMin=       -36
+
+	   133. Pel Height= 140
+	        yMax=       122
+	        yMin=       -36
+
+	   134. Pel Height= 141
+	        yMax=       124
+	        yMin=       -36
+
+	   135. Pel Height= 142
+	        yMax=       124
+	        yMin=       -36
+
+	   136. Pel Height= 143
+	        yMax=       125
+	        yMin=       -36
+
+	   137. Pel Height= 144
+	        yMax=       126
+	        yMin=       -37
+
+	   138. Pel Height= 145
+	        yMax=       127
+	        yMin=       -37
+
+	   139. Pel Height= 146
+	        yMax=       128
+	        yMin=       -37
+
+	   140. Pel Height= 147
+	        yMax=       129
+	        yMin=       -37
+
+	   141. Pel Height= 148
+	        yMax=       129
+	        yMin=       -37
+
+	   142. Pel Height= 149
+	        yMax=       131
+	        yMin=       -37
+
+	   143. Pel Height= 150
+	        yMax=       131
+	        yMin=       -38
+
+	   144. Pel Height= 151
+	        yMax=       132
+	        yMin=       -38
+
+	   145. Pel Height= 152
+	        yMax=       133
+	        yMin=       -38
+
+	   146. Pel Height= 153
+	        yMax=       133
+	        yMin=       -38
+
+	   147. Pel Height= 154
+	        yMax=       135
+	        yMin=       -38
+
+	   148. Pel Height= 155
+	        yMax=       135
+	        yMin=       -38
+
+	   149. Pel Height= 156
+	        yMax=       137
+	        yMin=       -39
+
+	   150. Pel Height= 157
+	        yMax=       137
+	        yMin=       -40
+
+	   151. Pel Height= 158
+	        yMax=       139
+	        yMin=       -40
+
+	   152. Pel Height= 159
+	        yMax=       139
+	        yMin=       -40
+
+	   153. Pel Height= 160
+	        yMax=       140
+	        yMin=       -40
+
+	   154. Pel Height= 161
+	        yMax=       141
+	        yMin=       -41
+
+	   155. Pel Height= 162
+	        yMax=       142
+	        yMin=       -41
+
+	   156. Pel Height= 163
+	        yMax=       143
+	        yMin=       -41
+
+	   157. Pel Height= 164
+	        yMax=       144
+	        yMin=       -41
+
+	   158. Pel Height= 165
+	        yMax=       144
+	        yMin=       -42
+
+	   159. Pel Height= 166
+	        yMax=       146
+	        yMin=       -42
+
+	   160. Pel Height= 167
+	        yMax=       146
+	        yMin=       -43
+
+	   161. Pel Height= 168
+	        yMax=       147
+	        yMin=       -43
+
+	   162. Pel Height= 169
+	        yMax=       148
+	        yMin=       -43
+
+	   163. Pel Height= 170
+	        yMax=       148
+	        yMin=       -43
+
+	   164. Pel Height= 171
+	        yMax=       150
+	        yMin=       -43
+
+	   165. Pel Height= 172
+	        yMax=       150
+	        yMin=       -43
+
+	   166. Pel Height= 173
+	        yMax=       152
+	        yMin=       -44
+
+	   167. Pel Height= 174
+	        yMax=       152
+	        yMin=       -44
+
+	   168. Pel Height= 175
+	        yMax=       153
+	        yMin=       -44
+
+	   169. Pel Height= 176
+	        yMax=       154
+	        yMin=       -45
+
+	   170. Pel Height= 177
+	        yMax=       155
+	        yMin=       -45
+
+	   171. Pel Height= 178
+	        yMax=       156
+	        yMin=       -45
+
+	   172. Pel Height= 179
+	        yMax=       157
+	        yMin=       -46
+
+	   173. Pel Height= 180
+	        yMax=       157
+	        yMin=       -46
+
+	   174. Pel Height= 181
+	        yMax=       159
+	        yMin=       -46
+
+	   175. Pel Height= 182
+	        yMax=       159
+	        yMin=       -46
+
+	   176. Pel Height= 183
+	        yMax=       161
+	        yMin=       -46
+
+	   177. Pel Height= 184
+	        yMax=       161
+	        yMin=       -46
+
+	   178. Pel Height= 185
+	        yMax=       162
+	        yMin=       -47
+
+	   179. Pel Height= 186
+	        yMax=       163
+	        yMin=       -47
+
+	   180. Pel Height= 187
+	        yMax=       163
+	        yMin=       -47
+
+	   181. Pel Height= 188
+	        yMax=       165
+	        yMin=       -47
+
+	   182. Pel Height= 189
+	        yMax=       165
+	        yMin=       -47
+
+	   183. Pel Height= 190
+	        yMax=       166
+	        yMin=       -47
+
+	   184. Pel Height= 191
+	        yMax=       167
+	        yMin=       -48
+
+	   185. Pel Height= 192
+	        yMax=       168
+	        yMin=       -48
+
+	   186. Pel Height= 193
+	        yMax=       169
+	        yMin=       -48
+
+	   187. Pel Height= 194
+	        yMax=       170
+	        yMin=       -49
+
+	   188. Pel Height= 195
+	        yMax=       170
+	        yMin=       -49
+
+	   189. Pel Height= 196
+	        yMax=       172
+	        yMin=       -50
+
+	   190. Pel Height= 197
+	        yMax=       172
+	        yMin=       -50
+
+	   191. Pel Height= 198
+	        yMax=       174
+	        yMin=       -50
+
+	   192. Pel Height= 199
+	        yMax=       174
+	        yMin=       -50
+
+	   193. Pel Height= 200
+	        yMax=       175
+	        yMin=       -50
+
+	   194. Pel Height= 201
+	        yMax=       176
+	        yMin=       -51
+
+	   195. Pel Height= 202
+	        yMax=       177
+	        yMin=       -52
+
+	   196. Pel Height= 203
+	        yMax=       178
+	        yMin=       -52
+
+	   197. Pel Height= 204
+	        yMax=       179
+	        yMin=       -52
+
+	   198. Pel Height= 205
+	        yMax=       179
+	        yMin=       -52
+
+	   199. Pel Height= 206
+	        yMax=       180
+	        yMin=       -52
+
+	   200. Pel Height= 207
+	        yMax=       181
+	        yMin=       -52
+
+	   201. Pel Height= 208
+	        yMax=       182
+	        yMin=       -53
+
+	   202. Pel Height= 209
+	        yMax=       183
+	        yMin=       -53
+
+	   203. Pel Height= 210
+	        yMax=       183
+	        yMin=       -53
+
+	   204. Pel Height= 211
+	        yMax=       185
+	        yMin=       -53
+
+	   205. Pel Height= 212
+	        yMax=       185
+	        yMin=       -53
+
+	   206. Pel Height= 213
+	        yMax=       187
+	        yMin=       -54
+
+	   207. Pel Height= 214
+	        yMax=       187
+	        yMin=       -55
+
+	   208. Pel Height= 215
+	        yMax=       188
+	        yMin=       -55
+
+	   209. Pel Height= 216
+	        yMax=       189
+	        yMin=       -55
+
+	   210. Pel Height= 217
+	        yMax=       190
+	        yMin=       -55
+
+	   211. Pel Height= 218
+	        yMax=       191
+	        yMin=       -55
+
+	   212. Pel Height= 219
+	        yMax=       192
+	        yMin=       -55
+
+	   213. Pel Height= 220
+	        yMax=       192
+	        yMin=       -56
+
+	   214. Pel Height= 221
+	        yMax=       194
+	        yMin=       -56
+
+	   215. Pel Height= 222
+	        yMax=       194
+	        yMin=       -56
+
+	   216. Pel Height= 223
+	        yMax=       196
+	        yMin=       -56
+
+	   217. Pel Height= 224
+	        yMax=       196
+	        yMin=       -56
+
+	   218. Pel Height= 225
+	        yMax=       196
+	        yMin=       -56
+
+	   219. Pel Height= 226
+	        yMax=       198
+	        yMin=       -57
+
+	   220. Pel Height= 227
+	        yMax=       198
+	        yMin=       -57
+
+	   221. Pel Height= 228
+	        yMax=       200
+	        yMin=       -57
+
+	   222. Pel Height= 229
+	        yMax=       200
+	        yMin=       -57
+
+	   223. Pel Height= 230
+	        yMax=       201
+	        yMin=       -57
+
+	   224. Pel Height= 231
+	        yMax=       202
+	        yMin=       -58
+
+	   225. Pel Height= 232
+	        yMax=       203
+	        yMin=       -59
+
+	   226. Pel Height= 233
+	        yMax=       204
+	        yMin=       -59
+
+	   227. Pel Height= 234
+	        yMax=       205
+	        yMin=       -59
+
+	   228. Pel Height= 235
+	        yMax=       205
+	        yMin=       -59
+
+	   229. Pel Height= 236
+	        yMax=       207
+	        yMin=       -59
+
+	   230. Pel Height= 237
+	        yMax=       207
+	        yMin=       -60
+
+	   231. Pel Height= 238
+	        yMax=       209
+	        yMin=       -61
+
+	   232. Pel Height= 239
+	        yMax=       209
+	        yMin=       -61
+
+	   233. Pel Height= 240
+	        yMax=       210
+	        yMin=       -61
+
+	   234. Pel Height= 241
+	        yMax=       211
+	        yMin=       -61
+
+	   235. Pel Height= 242
+	        yMax=       212
+	        yMin=       -61
+
+	   236. Pel Height= 243
+	        yMax=       213
+	        yMin=       -62
+
+	   237. Pel Height= 244
+	        yMax=       213
+	        yMin=       -62
+
+	   238. Pel Height= 245
+	        yMax=       214
+	        yMin=       -62
+
+	   239. Pel Height= 246
+	        yMax=       215
+	        yMin=       -62
+
+	   240. Pel Height= 247
+	        yMax=       216
+	        yMin=       -62
+
+	   241. Pel Height= 248
+	        yMax=       217
+	        yMin=       -62
+
+	   242. Pel Height= 249
+	        yMax=       218
+	        yMin=       -64
+
+	   243. Pel Height= 250
+	        yMax=       218
+	        yMin=       -64
+
+	   244. Pel Height= 251
+	        yMax=       220
+	        yMin=       -64
+
+	   245. Pel Height= 252
+	        yMax=       220
+	        yMin=       -64
+
+	   246. Pel Height= 253
+	        yMax=       222
+	        yMin=       -64
+
+	   247. Pel Height= 254
+	        yMax=       222
+	        yMin=       -64
+
+	   248. Pel Height= 255
+	        yMax=       223
+	        yMin=       -65
+
+
+
+'LTSH' Table - Linear Threshold Table
+-------------------------------------
+Size = 124 bytes
+ 'LTSH' Version:          0
+ Number of Glyphs:        120
+
+   Glyph #   Threshold
+   -------   ---------
+        0.           1
+        1.           1
+        2.           1
+        3.           1
+        4.           1
+        5.           1
+        6.           9
+        7.           1
+        8.           1
+        9.          29
+       10.           1
+       11.          32
+       12.          32
+       13.           1
+       14.           1
+       15.           1
+       16.          26
+       17.           1
+       18.           1
+       19.           1
+       20.          27
+       21.           1
+       22.           1
+       23.           1
+       24.           1
+       25.           1
+       26.           1
+       27.           1
+       28.           1
+       29.           1
+       30.           1
+       31.           1
+       32.           1
+       33.           1
+       34.           1
+       35.           1
+       36.           1
+       37.           1
+       38.          48
+       39.           1
+       40.          15
+       41.           1
+       42.           1
+       43.          31
+       44.           1
+       45.           1
+       46.           1
+       47.           1
+       48.           1
+       49.           1
+       50.           1
+       51.           1
+       52.          47
+       53.          15
+       54.           8
+       55.           1
+       56.           1
+       57.           1
+       58.           1
+       59.           1
+       60.           1
+       61.          18
+       62.          45
+       63.           1
+       64.           1
+       65.           1
+       66.          23
+       67.           1
+       68.          27
+       69.           1
+       70.           1
+       71.          47
+       72.           1
+       73.          34
+       74.           1
+       75.          15
+       76.           1
+       77.           1
+       78.          15
+       79.          15
+       80.           1
+       81.           1
+       82.           1
+       83.           1
+       84.           1
+       85.           1
+       86.           1
+       87.           1
+       88.           1
+       89.           1
+       90.          18
+       91.          30
+       92.          16
+       93.           1
+       94.           1
+       95.           1
+       96.           2
+       97.           1
+       98.           2
+       99.           1
+      100.           2
+      101.           1
+      102.          18
+      103.           1
+      104.           1
+      105.           1
+      106.           1
+      107.           1
+      108.           1
+      109.           1
+      110.           1
+      111.           1
+      112.           1
+      113.           1
+      114.           1
+      115.           1
+      116.           1
+      117.           1
+      118.           1
+      119.           1
+
+'hdmx' Table - Horizontal Device Metrics
+----------------------------------------
+Size = 2860 bytes
+	'hdmx' version:		0
+	# device records:	23
+	Record length:		124
+	DevRec  0: ppem =   9, maxWid =  10
+    0.   9
+    1.   0
+    2.   5
+    3.   4
+    4.   3
+    5.   4
+    6.   6
+    7.   5
+    8.   6
+    9.   7
+   10.   2
+   11.   5
+   12.   5
+   13.   3
+   14.   5
+   15.   3
+   16.   4
+   17.   3
+   18.   5
+   19.   6
+   20.   4
+   21.   6
+   22.   6
+   23.   6
+   24.   6
+   25.   6
+   26.   5
+   27.   6
+   28.   6
+   29.   3
+   30.   3
+   31.   5
+   32.   5
+   33.   5
+   34.   4
+   35.   5
+   36.   4
+   37.   4
+   38.   4
+   39.   4
+   40.   4
+   41.   5
+   42.   5
+   43.   5
+   44.   8
+   45.   5
+   46.   5
+   47.   3
+   48.   3
+   49.   3
+   50.   3
+   51.   3
+   52.   4
+   53.   5
+   54.   7
+   55.   8
+   56.   7
+   57.   7
+   58.   6
+   59.   5
+   60.   5
+   61.   4
+   62.   5
+   63.   5
+   64.   6
+   65.   5
+   66.   5
+   67.   5
+   68.   6
+   69.  10
+   70.   4
+   71.   5
+   72.   7
+   73.   6
+   74.   5
+   75.   5
+   76.   5
+   77.   5
+   78.   5
+   79.   5
+   80.   6
+   81.   7
+   82.  10
+   83.  10
+   84.  10
+   85.   5
+   86.   5
+   87.   5
+   88.   5
+   89.   5
+   90.   4
+   91.   3
+   92.   4
+   93.   3
+   94.   5
+   95.   2
+   96.   4
+   97.   2
+   98.   4
+   99.   4
+  100.   4
+  101.   3
+  102.   4
+  103.   3
+  104.   3
+  105.   3
+  106.   3
+  107.   5
+  108.   7
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec  1: ppem =  10, maxWid =  11
+    0.  10
+    1.   0
+    2.   5
+    3.   5
+    4.   4
+    5.   5
+    6.   7
+    7.   6
+    8.   7
+    9.   7
+   10.   2
+   11.   5
+   12.   5
+   13.   4
+   14.   6
+   15.   4
+   16.   5
+   17.   4
+   18.   5
+   19.   7
+   20.   4
+   21.   7
+   22.   7
+   23.   7
+   24.   7
+   25.   7
+   26.   6
+   27.   7
+   28.   7
+   29.   4
+   30.   4
+   31.   6
+   32.   6
+   33.   6
+   34.   4
+   35.   5
+   36.   4
+   37.   5
+   38.   4
+   39.   5
+   40.   5
+   41.   6
+   42.   6
+   43.   6
+   44.   9
+   45.   6
+   46.   6
+   47.   4
+   48.   4
+   49.   4
+   50.   4
+   51.   4
+   52.   4
+   53.   5
+   54.   8
+   55.   8
+   56.   7
+   57.   7
+   58.   7
+   59.   6
+   60.   6
+   61.   4
+   62.   5
+   63.   5
+   64.   6
+   65.   6
+   66.   6
+   67.   6
+   68.   7
+   69.  11
+   70.   4
+   71.   6
+   72.   7
+   73.   7
+   74.   5
+   75.   6
+   76.   6
+   77.   6
+   78.   5
+   79.   5
+   80.   6
+   81.   7
+   82.  11
+   83.  11
+   84.  11
+   85.   6
+   86.   6
+   87.   6
+   88.   6
+   89.   6
+   90.   4
+   91.   3
+   92.   4
+   93.   3
+   94.   5
+   95.   3
+   96.   5
+   97.   3
+   98.   5
+   99.   5
+  100.   5
+  101.   3
+  102.   4
+  103.   3
+  104.   3
+  105.   3
+  106.   3
+  107.   6
+  108.   8
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec  2: ppem =  11, maxWid =  12
+    0.  11
+    1.   0
+    2.   6
+    3.   5
+    4.   4
+    5.   5
+    6.   8
+    7.   6
+    8.   8
+    9.   8
+   10.   2
+   11.   6
+   12.   6
+   13.   4
+   14.   6
+   15.   4
+   16.   5
+   17.   4
+   18.   6
+   19.   8
+   20.   4
+   21.   7
+   22.   7
+   23.   8
+   24.   7
+   25.   7
+   26.   7
+   27.   7
+   28.   7
+   29.   4
+   30.   4
+   31.   6
+   32.   6
+   33.   6
+   34.   5
+   35.   6
+   36.   5
+   37.   5
+   38.   5
+   39.   5
+   40.   5
+   41.   7
+   42.   7
+   43.   6
+   44.  10
+   45.   7
+   46.   7
+   47.   4
+   48.   4
+   49.   4
+   50.   4
+   51.   4
+   52.   5
+   53.   6
+   54.   9
+   55.   9
+   56.   8
+   57.   8
+   58.   8
+   59.   6
+   60.   6
+   61.   5
+   62.   6
+   63.   6
+   64.   7
+   65.   6
+   66.   6
+   67.   6
+   68.   7
+   69.  12
+   70.   5
+   71.   6
+   72.   8
+   73.   8
+   74.   6
+   75.   7
+   76.   6
+   77.   6
+   78.   6
+   79.   6
+   80.   7
+   81.   8
+   82.  12
+   83.  12
+   84.  12
+   85.   6
+   86.   6
+   87.   6
+   88.   6
+   89.   6
+   90.   5
+   91.   3
+   92.   5
+   93.   3
+   94.   6
+   95.   3
+   96.   5
+   97.   3
+   98.   5
+   99.   5
+  100.   5
+  101.   3
+  102.   5
+  103.   4
+  104.   4
+  105.   4
+  106.   4
+  107.   7
+  108.   9
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec  3: ppem =  12, maxWid =  13
+    0.  12
+    1.   0
+    2.   6
+    3.   6
+    4.   4
+    5.   5
+    6.   8
+    7.   7
+    8.   8
+    9.   9
+   10.   3
+   11.   6
+   12.   6
+   13.   4
+   14.   7
+   15.   4
+   16.   6
+   17.   4
+   18.   6
+   19.   8
+   20.   5
+   21.   8
+   22.   8
+   23.   8
+   24.   8
+   25.   8
+   26.   7
+   27.   8
+   28.   8
+   29.   4
+   30.   4
+   31.   7
+   32.   7
+   33.   7
+   34.   5
+   35.   6
+   36.   5
+   37.   5
+   38.   5
+   39.   5
+   40.   6
+   41.   7
+   42.   7
+   43.   7
+   44.  11
+   45.   7
+   46.   7
+   47.   4
+   48.   4
+   49.   4
+   50.   4
+   51.   4
+   52.   5
+   53.   6
+   54.   9
+   55.  10
+   56.   9
+   57.   9
+   58.   8
+   59.   7
+   60.   7
+   61.   5
+   62.   6
+   63.   6
+   64.   8
+   65.   7
+   66.   7
+   67.   7
+   68.   8
+   69.  13
+   70.   5
+   71.   7
+   72.   9
+   73.   9
+   74.   6
+   75.   7
+   76.   7
+   77.   7
+   78.   6
+   79.   6
+   80.   8
+   81.   9
+   82.  13
+   83.  13
+   84.  13
+   85.   7
+   86.   7
+   87.   7
+   88.   7
+   89.   7
+   90.   5
+   91.   4
+   92.   5
+   93.   4
+   94.   6
+   95.   3
+   96.   6
+   97.   3
+   98.   6
+   99.   5
+  100.   6
+  101.   4
+  102.   5
+  103.   4
+  104.   4
+  105.   4
+  106.   4
+  107.   7
+  108.  10
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec  4: ppem =  13, maxWid =  14
+    0.  13
+    1.   0
+    2.   7
+    3.   6
+    4.   5
+    5.   6
+    6.   9
+    7.   7
+    8.   9
+    9.  10
+   10.   3
+   11.   7
+   12.   7
+   13.   5
+   14.   7
+   15.   5
+   16.   6
+   17.   5
+   18.   7
+   19.   9
+   20.   5
+   21.   9
+   22.   9
+   23.   9
+   24.   9
+   25.   9
+   26.   8
+   27.   9
+   28.   9
+   29.   5
+   30.   5
+   31.   7
+   32.   7
+   33.   7
+   34.   6
+   35.   7
+   36.   6
+   37.   6
+   38.   6
+   39.   6
+   40.   6
+   41.   8
+   42.   8
+   43.   7
+   44.  12
+   45.   8
+   46.   8
+   47.   5
+   48.   5
+   49.   5
+   50.   5
+   51.   5
+   52.   6
+   53.   7
+   54.  10
+   55.  11
+   56.  10
+   57.  10
+   58.   9
+   59.   7
+   60.   7
+   61.   6
+   62.   7
+   63.   7
+   64.   8
+   65.   7
+   66.   7
+   67.   7
+   68.   9
+   69.  14
+   70.   5
+   71.   7
+   72.  10
+   73.   9
+   74.   7
+   75.   8
+   76.   7
+   77.   7
+   78.   7
+   79.   7
+   80.   8
+   81.  10
+   82.  14
+   83.  14
+   84.  14
+   85.   7
+   86.   7
+   87.   7
+   88.   7
+   89.   7
+   90.   6
+   91.   4
+   92.   6
+   93.   4
+   94.   7
+   95.   3
+   96.   6
+   97.   3
+   98.   6
+   99.   6
+  100.   6
+  101.   4
+  102.   6
+  103.   4
+  104.   4
+  105.   4
+  106.   4
+  107.   8
+  108.  11
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec  5: ppem =  14, maxWid =  15
+    0.  14
+    1.   0
+    2.   7
+    3.   7
+    4.   5
+    5.   6
+    6.  10
+    7.   8
+    8.  10
+    9.  10
+   10.   3
+   11.   7
+   12.   7
+   13.   5
+   14.   8
+   15.   5
+   16.   6
+   17.   5
+   18.   7
+   19.  10
+   20.   6
+   21.   9
+   22.   9
+   23.  10
+   24.   9
+   25.   9
+   26.   8
+   27.   9
+   28.   9
+   29.   5
+   30.   5
+   31.   8
+   32.   8
+   33.   8
+   34.   6
+   35.   7
+   36.   6
+   37.   6
+   38.   6
+   39.   6
+   40.   7
+   41.   8
+   42.   8
+   43.   8
+   44.  13
+   45.   8
+   46.   8
+   47.   5
+   48.   5
+   49.   5
+   50.   5
+   51.   5
+   52.   6
+   53.   8
+   54.  11
+   55.  12
+   56.  10
+   57.  10
+   58.  10
+   59.   8
+   60.   8
+   61.   6
+   62.   7
+   63.   7
+   64.   9
+   65.   8
+   66.   8
+   67.   8
+   68.   9
+   69.  15
+   70.   6
+   71.   8
+   72.  10
+   73.  10
+   74.   7
+   75.   9
+   76.   8
+   77.   8
+   78.   8
+   79.   8
+   80.   9
+   81.  10
+   82.  15
+   83.  15
+   84.  15
+   85.   8
+   86.   8
+   87.   8
+   88.   8
+   89.   8
+   90.   6
+   91.   4
+   92.   6
+   93.   4
+   94.   7
+   95.   4
+   96.   7
+   97.   4
+   98.   7
+   99.   6
+  100.   7
+  101.   4
+  102.   6
+  103.   5
+  104.   5
+  105.   5
+  106.   5
+  107.   8
+  108.  11
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec  6: ppem =  15, maxWid =  16
+    0.  15
+    1.   0
+    2.   8
+    3.   7
+    4.   5
+    5.   7
+    6.  10
+    7.   8
+    8.  11
+    9.  11
+   10.   3
+   11.   8
+   12.   8
+   13.   6
+   14.   8
+   15.   5
+   16.   7
+   17.   5
+   18.   8
+   19.  11
+   20.   6
+   21.  10
+   22.  10
+   23.  10
+   24.  10
+   25.  10
+   26.   9
+   27.  10
+   28.  10
+   29.   5
+   30.   5
+   31.   8
+   32.   8
+   33.   8
+   34.   6
+   35.   8
+   36.   6
+   37.   7
+   38.   7
+   39.   7
+   40.   7
+   41.   9
+   42.   9
+   43.   8
+   44.  14
+   45.   9
+   46.   9
+   47.   5
+   48.   5
+   49.   5
+   50.   5
+   51.   5
+   52.   6
+   53.   8
+   54.  12
+   55.  13
+   56.  11
+   57.  11
+   58.  11
+   59.   9
+   60.   8
+   61.   7
+   62.   8
+   63.   8
+   64.   9
+   65.   8
+   66.   9
+   67.   9
+   68.  10
+   69.  16
+   70.   6
+   71.   8
+   72.  11
+   73.  11
+   74.   8
+   75.   9
+   76.   8
+   77.   8
+   78.   8
+   79.   8
+   80.   9
+   81.  11
+   82.  16
+   83.  16
+   84.  16
+   85.   8
+   86.   8
+   87.   8
+   88.   8
+   89.   9
+   90.   7
+   91.   4
+   92.   7
+   93.   5
+   94.   8
+   95.   4
+   96.   7
+   97.   4
+   98.   7
+   99.   7
+  100.   7
+  101.   5
+  102.   7
+  103.   5
+  104.   5
+  105.   5
+  106.   5
+  107.   9
+  108.  12
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec  7: ppem =  16, maxWid =  17
+    0.  16
+    1.   0
+    2.   8
+    3.   8
+    4.   6
+    5.   7
+    6.  11
+    7.   9
+    8.  11
+    9.  12
+   10.   4
+   11.   9
+   12.   9
+   13.   6
+   14.   9
+   15.   6
+   16.   7
+   17.   6
+   18.   8
+   19.  11
+   20.   6
+   21.  11
+   22.  11
+   23.  11
+   24.  11
+   25.  11
+   26.  10
+   27.  11
+   28.  11
+   29.   6
+   30.   6
+   31.   9
+   32.   9
+   33.   9
+   34.   7
+   35.   8
+   36.   7
+   37.   7
+   38.   7
+   39.   7
+   40.   7
+   41.  10
+   42.  10
+   43.   9
+   44.  15
+   45.  10
+   46.  10
+   47.   6
+   48.   6
+   49.   6
+   50.   6
+   51.   6
+   52.   7
+   53.   9
+   54.  13
+   55.  13
+   56.  12
+   57.  12
+   58.  11
+   59.   9
+   60.   9
+   61.   7
+   62.   8
+   63.   8
+   64.  10
+   65.   9
+   66.   9
+   67.   9
+   68.  11
+   69.  17
+   70.   7
+   71.   9
+   72.  12
+   73.  11
+   74.   8
+   75.  10
+   76.   9
+   77.   9
+   78.   9
+   79.   9
+   80.  10
+   81.  12
+   82.  17
+   83.  17
+   84.  17
+   85.   9
+   86.   9
+   87.   9
+   88.   9
+   89.   9
+   90.   7
+   91.   5
+   92.   7
+   93.   5
+   94.   8
+   95.   4
+   96.   8
+   97.   4
+   98.   8
+   99.   7
+  100.   8
+  101.   5
+  102.   7
+  103.   5
+  104.   5
+  105.   5
+  106.   5
+  107.  10
+  108.  13
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec  8: ppem =  17, maxWid =  18
+    0.  17
+    1.   0
+    2.   9
+    3.   8
+    4.   6
+    5.   8
+    6.  12
+    7.  10
+    8.  12
+    9.  12
+   10.   4
+   11.   9
+   12.   9
+   13.   6
+   14.  10
+   15.   6
+   16.   8
+   17.   6
+   18.   9
+   19.  12
+   20.   7
+   21.  11
+   22.  11
+   23.  12
+   24.  11
+   25.  11
+   26.  10
+   27.  11
+   28.  11
+   29.   6
+   30.   6
+   31.  10
+   32.  10
+   33.  10
+   34.   7
+   35.   9
+   36.   7
+   37.   8
+   38.   7
+   39.   8
+   40.   8
+   41.  10
+   42.  10
+   43.   9
+   44.  16
+   45.  10
+   46.  10
+   47.   6
+   48.   6
+   49.   6
+   50.   6
+   51.   6
+   52.   7
+   53.   9
+   54.  13
+   55.  14
+   56.  13
+   57.  13
+   58.  12
+   59.  10
+   60.   9
+   61.   8
+   62.   9
+   63.   9
+   64.  11
+   65.  10
+   66.  10
+   67.  10
+   68.  11
+   69.  18
+   70.   7
+   71.   9
+   72.  13
+   73.  12
+   74.   9
+   75.  10
+   76.  10
+   77.  10
+   78.   9
+   79.   9
+   80.  11
+   81.  13
+   82.  18
+   83.  18
+   84.  18
+   85.  10
+   86.  10
+   87.   9
+   88.   9
+   89.  10
+   90.   8
+   91.   5
+   92.   7
+   93.   5
+   94.   9
+   95.   4
+   96.   8
+   97.   4
+   98.   8
+   99.   8
+  100.   8
+  101.   5
+  102.   8
+  103.   6
+  104.   6
+  105.   6
+  106.   6
+  107.  10
+  108.  14
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec  9: ppem =  18, maxWid =  19
+    0.  18
+    1.   0
+    2.   9
+    3.   9
+    4.   7
+    5.   8
+    6.  12
+    7.  10
+    8.  13
+    9.  13
+   10.   4
+   11.  10
+   12.  10
+   13.   7
+   14.  10
+   15.   7
+   16.   8
+   17.   7
+   18.   9
+   19.  13
+   20.   7
+   21.  12
+   22.  12
+   23.  12
+   24.  12
+   25.  12
+   26.  11
+   27.  12
+   28.  12
+   29.   7
+   30.   7
+   31.  10
+   32.  10
+   33.  10
+   34.   8
+   35.   9
+   36.   8
+   37.   8
+   38.   8
+   39.   8
+   40.   8
+   41.  11
+   42.  11
+   43.  10
+   44.  17
+   45.  11
+   46.  11
+   47.   7
+   48.   7
+   49.   7
+   50.   7
+   51.   7
+   52.   8
+   53.  10
+   54.  14
+   55.  15
+   56.  13
+   57.  13
+   58.  13
+   59.  10
+   60.  10
+   61.   8
+   62.   9
+   63.   9
+   64.  11
+   65.  10
+   66.  10
+   67.  10
+   68.  12
+   69.  19
+   70.   8
+   71.  10
+   72.  13
+   73.  13
+   74.   9
+   75.  11
+   76.  10
+   77.  10
+   78.  10
+   79.  10
+   80.  11
+   81.  13
+   82.  19
+   83.  19
+   84.  19
+   85.  10
+   86.  10
+   87.  10
+   88.  10
+   89.  10
+   90.   8
+   91.   5
+   92.   8
+   93.   5
+   94.   9
+   95.   5
+   96.   9
+   97.   5
+   98.   9
+   99.   8
+  100.   9
+  101.   6
+  102.   8
+  103.   6
+  104.   6
+  105.   6
+  106.   6
+  107.  11
+  108.  15
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 10: ppem =  19, maxWid =  20
+    0.  19
+    1.   0
+    2.  10
+    3.   9
+    4.   7
+    5.   9
+    6.  13
+    7.  11
+    8.  13
+    9.  14
+   10.   4
+   11.  10
+   12.  10
+   13.   7
+   14.  11
+   15.   7
+   16.   9
+   17.   7
+   18.  10
+   19.  13
+   20.   8
+   21.  13
+   22.  13
+   23.  13
+   24.  13
+   25.  13
+   26.  11
+   27.  12
+   28.  13
+   29.   7
+   30.   7
+   31.  11
+   32.  11
+   33.  11
+   34.   8
+   35.  10
+   36.   8
+   37.   9
+   38.   8
+   39.   9
+   40.   9
+   41.  11
+   42.  11
+   43.  10
+   44.  17
+   45.  11
+   46.  11
+   47.   7
+   48.   7
+   49.   7
+   50.   7
+   51.   7
+   52.   8
+   53.  10
+   54.  15
+   55.  16
+   56.  14
+   57.  14
+   58.  13
+   59.  11
+   60.  10
+   61.   8
+   62.  10
+   63.  10
+   64.  12
+   65.  11
+   66.  11
+   67.  11
+   68.  13
+   69.  20
+   70.   8
+   71.  11
+   72.  14
+   73.  14
+   74.  10
+   75.  12
+   76.  11
+   77.  11
+   78.  10
+   79.  10
+   80.  12
+   81.  14
+   82.  20
+   83.  20
+   84.  20
+   85.  11
+   86.  11
+   87.  10
+   88.  10
+   89.  11
+   90.   8
+   91.   6
+   92.   8
+   93.   6
+   94.  10
+   95.   5
+   96.   9
+   97.   5
+   98.   9
+   99.   9
+  100.   9
+  101.   6
+  102.   8
+  103.   6
+  104.   6
+  105.   6
+  106.   6
+  107.  11
+  108.  16
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 11: ppem =  20, maxWid =  21
+    0.  20
+    1.   0
+    2.  10
+    3.  10
+    4.   7
+    5.   9
+    6.  14
+    7.  11
+    8.  14
+    9.  15
+   10.   4
+   11.  11
+   12.  11
+   13.   7
+   14.  11
+   15.   7
+   16.   9
+   17.   7
+   18.  10
+   19.  14
+   20.   8
+   21.  13
+   22.  13
+   23.  14
+   24.  13
+   25.  13
+   26.  12
+   27.  13
+   28.  13
+   29.   7
+   30.   7
+   31.  11
+   32.  11
+   33.  11
+   34.   9
+   35.  10
+   36.   9
+   37.   9
+   38.   9
+   39.   9
+   40.   9
+   41.  12
+   42.  12
+   43.  11
+   44.  18
+   45.  12
+   46.  12
+   47.   7
+   48.   7
+   49.   7
+   50.   7
+   51.   7
+   52.   8
+   53.  11
+   54.  16
+   55.  17
+   56.  15
+   57.  15
+   58.  14
+   59.  12
+   60.  11
+   61.   9
+   62.  10
+   63.  10
+   64.  13
+   65.  11
+   66.  11
+   67.  11
+   68.  13
+   69.  21
+   70.   8
+   71.  11
+   72.  15
+   73.  14
+   74.  10
+   75.  12
+   76.  11
+   77.  11
+   78.  11
+   79.  11
+   80.  13
+   81.  15
+   82.  21
+   83.  21
+   84.  21
+   85.  11
+   86.  11
+   87.  11
+   88.  11
+   89.  11
+   90.   9
+   91.   6
+   92.   9
+   93.   6
+   94.  10
+   95.   5
+   96.  10
+   97.   5
+   98.  10
+   99.   9
+  100.  10
+  101.   6
+  102.   9
+  103.   7
+  104.   7
+  105.   7
+  106.   7
+  107.  12
+  108.  16
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 12: ppem =  21, maxWid =  23
+    0.  21
+    1.   0
+    2.  11
+    3.  10
+    4.   8
+    5.  10
+    6.  14
+    7.  12
+    8.  15
+    9.  15
+   10.   5
+   11.  11
+   12.  11
+   13.   8
+   14.  12
+   15.   8
+   16.  10
+   17.   8
+   18.  11
+   19.  15
+   20.   8
+   21.  14
+   22.  14
+   23.  14
+   24.  14
+   25.  14
+   26.  13
+   27.  14
+   28.  14
+   29.   8
+   30.   8
+   31.  12
+   32.  12
+   33.  12
+   34.   9
+   35.  11
+   36.   9
+   37.  10
+   38.   9
+   39.  10
+   40.  10
+   41.  13
+   42.  13
+   43.  12
+   44.  19
+   45.  12
+   46.  12
+   47.   8
+   48.   8
+   49.   8
+   50.   8
+   51.   8
+   52.   9
+   53.  11
+   54.  16
+   55.  18
+   56.  16
+   57.  16
+   58.  15
+   59.  12
+   60.  12
+   61.   9
+   62.  11
+   63.  11
+   64.  13
+   65.  12
+   66.  12
+   67.  12
+   68.  14
+   69.  23
+   70.   9
+   71.  12
+   72.  16
+   73.  15
+   74.  11
+   75.  13
+   76.  12
+   77.  12
+   78.  11
+   79.  11
+   80.  13
+   81.  16
+   82.  23
+   83.  23
+   84.  23
+   85.  12
+   86.  12
+   87.  12
+   88.  12
+   89.  12
+   90.   9
+   91.   6
+   92.   9
+   93.   6
+   94.  11
+   95.   5
+   96.  10
+   97.   5
+   98.  10
+   99.  10
+  100.  10
+  101.   7
+  102.   9
+  103.   7
+  104.   7
+  105.   7
+  106.   7
+  107.  13
+  108.  17
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 13: ppem =  22, maxWid =  24
+    0.  22
+    1.   0
+    2.  11
+    3.  11
+    4.   8
+    5.  10
+    6.  15
+    7.  12
+    8.  15
+    9.  16
+   10.   5
+   11.  12
+   12.  12
+   13.   8
+   14.  12
+   15.   8
+   16.  10
+   17.   8
+   18.  11
+   19.  15
+   20.   9
+   21.  15
+   22.  15
+   23.  15
+   24.  15
+   25.  15
+   26.  13
+   27.  14
+   28.  15
+   29.   8
+   30.   8
+   31.  12
+   32.  12
+   33.  12
+   34.  10
+   35.  11
+   36.  10
+   37.  10
+   38.  10
+   39.  10
+   40.  10
+   41.  13
+   42.  13
+   43.  12
+   44.  20
+   45.  13
+   46.  13
+   47.   8
+   48.   8
+   49.   8
+   50.   8
+   51.   8
+   52.   9
+   53.  12
+   54.  17
+   55.  18
+   56.  16
+   57.  16
+   58.  15
+   59.  13
+   60.  12
+   61.  10
+   62.  11
+   63.  11
+   64.  14
+   65.  12
+   66.  13
+   67.  13
+   68.  15
+   69.  24
+   70.   9
+   71.  12
+   72.  16
+   73.  16
+   74.  11
+   75.  13
+   76.  12
+   77.  12
+   78.  12
+   79.  12
+   80.  14
+   81.  16
+   82.  24
+   83.  24
+   84.  24
+   85.  12
+   86.  12
+   87.  12
+   88.  12
+   89.  13
+   90.  10
+   91.   6
+   92.  10
+   93.   7
+   94.  11
+   95.   6
+   96.  11
+   97.   6
+   98.  11
+   99.  10
+  100.  11
+  101.   7
+  102.  10
+  103.   7
+  104.   7
+  105.   7
+  106.   7
+  107.  13
+  108.  18
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 14: ppem =  23, maxWid =  25
+    0.  23
+    1.   0
+    2.  12
+    3.  11
+    4.   8
+    5.  10
+    6.  16
+    7.  13
+    8.  16
+    9.  17
+   10.   5
+   11.  12
+   12.  12
+   13.   8
+   14.  13
+   15.   8
+   16.  11
+   17.   8
+   18.  12
+   19.  16
+   20.   9
+   21.  15
+   22.  15
+   23.  16
+   24.  15
+   25.  15
+   26.  14
+   27.  15
+   28.  15
+   29.   8
+   30.   8
+   31.  13
+   32.  13
+   33.  13
+   34.  10
+   35.  12
+   36.  10
+   37.  10
+   38.  10
+   39.  10
+   40.  11
+   41.  14
+   42.  14
+   43.  13
+   44.  21
+   45.  14
+   46.  14
+   47.   8
+   48.   8
+   49.   8
+   50.   8
+   51.   8
+   52.  10
+   53.  12
+   54.  18
+   55.  19
+   56.  17
+   57.  17
+   58.  16
+   59.  13
+   60.  13
+   61.  10
+   62.  12
+   63.  12
+   64.  15
+   65.  13
+   66.  13
+   67.  13
+   68.  15
+   69.  25
+   70.  10
+   71.  13
+   72.  17
+   73.  16
+   74.  12
+   75.  14
+   76.  13
+   77.  13
+   78.  12
+   79.  12
+   80.  15
+   81.  17
+   82.  25
+   83.  25
+   84.  25
+   85.  13
+   86.  13
+   87.  13
+   88.  13
+   89.  13
+   90.  10
+   91.   7
+   92.  10
+   93.   7
+   94.  12
+   95.   6
+   96.  11
+   97.   6
+   98.  11
+   99.  10
+  100.  11
+  101.   7
+  102.  10
+  103.   8
+  104.   8
+  105.   8
+  106.   8
+  107.  14
+  108.  19
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 15: ppem =  24, maxWid =  26
+    0.  24
+    1.   0
+    2.  12
+    3.  12
+    4.   9
+    5.  11
+    6.  16
+    7.  13
+    8.  17
+    9.  18
+   10.   5
+   11.  13
+   12.  13
+   13.   9
+   14.  13
+   15.   9
+   16.  11
+   17.   9
+   18.  12
+   19.  17
+   20.  10
+   21.  16
+   22.  16
+   23.  16
+   24.  16
+   25.  16
+   26.  14
+   27.  16
+   28.  16
+   29.   9
+   30.   9
+   31.  13
+   32.  13
+   33.  13
+   34.  10
+   35.  12
+   36.  10
+   37.  11
+   38.  10
+   39.  11
+   40.  11
+   41.  14
+   42.  14
+   43.  13
+   44.  22
+   45.  14
+   46.  14
+   47.   9
+   48.   9
+   49.   9
+   50.   9
+   51.   9
+   52.  10
+   53.  13
+   54.  19
+   55.  20
+   56.  18
+   57.  18
+   58.  17
+   59.  14
+   60.  13
+   61.  11
+   62.  12
+   63.  12
+   64.  15
+   65.  14
+   66.  14
+   67.  14
+   68.  16
+   69.  26
+   70.  10
+   71.  13
+   72.  18
+   73.  17
+   74.  12
+   75.  15
+   76.  14
+   77.  14
+   78.  13
+   79.  13
+   80.  15
+   81.  18
+   82.  26
+   83.  26
+   84.  26
+   85.  14
+   86.  14
+   87.  13
+   88.  13
+   89.  14
+   90.  11
+   91.   7
+   92.  10
+   93.   7
+   94.  12
+   95.   6
+   96.  12
+   97.   6
+   98.  12
+   99.  11
+  100.  12
+  101.   7
+  102.  11
+  103.   8
+  104.   8
+  105.   8
+  106.   8
+  107.  14
+  108.  20
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 16: ppem =  27, maxWid =  29
+    0.  27
+    1.   0
+    2.  14
+    3.  13
+    4.  10
+    5.  12
+    6.  19
+    7.  15
+    8.  19
+    9.  20
+   10.   6
+   11.  14
+   12.  14
+   13.  10
+   14.  15
+   15.  10
+   16.  12
+   17.  10
+   18.  14
+   19.  19
+   20.  11
+   21.  18
+   22.  18
+   23.  18
+   24.  18
+   25.  18
+   26.  16
+   27.  18
+   28.  18
+   29.  10
+   30.  10
+   31.  15
+   32.  15
+   33.  15
+   34.  12
+   35.  14
+   36.  12
+   37.  12
+   38.  12
+   39.  12
+   40.  13
+   41.  16
+   42.  16
+   43.  15
+   44.  25
+   45.  16
+   46.  16
+   47.  10
+   48.  10
+   49.  10
+   50.  10
+   51.  10
+   52.  11
+   53.  14
+   54.  21
+   55.  23
+   56.  20
+   57.  20
+   58.  19
+   59.  16
+   60.  15
+   61.  12
+   62.  14
+   63.  14
+   64.  17
+   65.  15
+   66.  15
+   67.  15
+   68.  18
+   69.  29
+   70.  11
+   71.  15
+   72.  20
+   73.  19
+   74.  14
+   75.  16
+   76.  15
+   77.  15
+   78.  14
+   79.  14
+   80.  17
+   81.  20
+   82.  29
+   83.  29
+   84.  29
+   85.  15
+   86.  15
+   87.  15
+   88.  15
+   89.  15
+   90.  12
+   91.   8
+   92.  12
+   93.   8
+   94.  14
+   95.   7
+   96.  13
+   97.   7
+   98.  13
+   99.  12
+  100.  13
+  101.   8
+  102.  12
+  103.   9
+  104.   9
+  105.   9
+  106.   9
+  107.  16
+  108.  22
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 17: ppem =  29, maxWid =  31
+    0.  29
+    1.   0
+    2.  15
+    3.  14
+    4.  11
+    5.  13
+    6.  20
+    7.  16
+    8.  20
+    9.  21
+   10.   6
+   11.  15
+   12.  15
+   13.  11
+   14.  16
+   15.  11
+   16.  13
+   17.  11
+   18.  15
+   19.  20
+   20.  12
+   21.  19
+   22.  19
+   23.  20
+   24.  19
+   25.  19
+   26.  17
+   27.  19
+   28.  19
+   29.  11
+   30.  11
+   31.  16
+   32.  16
+   33.  16
+   34.  13
+   35.  15
+   36.  13
+   37.  13
+   38.  13
+   39.  13
+   40.  13
+   41.  17
+   42.  17
+   43.  16
+   44.  27
+   45.  17
+   46.  17
+   47.  11
+   48.  11
+   49.  11
+   50.  11
+   51.  11
+   52.  12
+   53.  16
+   54.  23
+   55.  24
+   56.  21
+   57.  22
+   58.  20
+   59.  17
+   60.  16
+   61.  13
+   62.  15
+   63.  15
+   64.  18
+   65.  16
+   66.  16
+   67.  17
+   68.  20
+   69.  31
+   70.  12
+   71.  16
+   72.  22
+   73.  21
+   74.  15
+   75.  18
+   76.  16
+   77.  16
+   78.  16
+   79.  16
+   80.  18
+   81.  21
+   82.  31
+   83.  31
+   84.  31
+   85.  16
+   86.  16
+   87.  16
+   88.  16
+   89.  17
+   90.  13
+   91.   9
+   92.  13
+   93.   9
+   94.  15
+   95.   7
+   96.  14
+   97.   7
+   98.  14
+   99.  13
+  100.  14
+  101.   9
+  102.  13
+  103.  10
+  104.  10
+  105.  10
+  106.  10
+  107.  17
+  108.  24
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 18: ppem =  32, maxWid =  34
+    0.  32
+    1.   0
+    2.  16
+    3.  16
+    4.  12
+    5.  15
+    6.  22
+    7.  18
+    8.  22
+    9.  23
+   10.   7
+   11.  17
+   12.  17
+   13.  12
+   14.  18
+   15.  12
+   16.  15
+   17.  12
+   18.  16
+   19.  22
+   20.  13
+   21.  21
+   22.  21
+   23.  22
+   24.  21
+   25.  21
+   26.  19
+   27.  21
+   28.  21
+   29.  12
+   30.  12
+   31.  18
+   32.  18
+   33.  18
+   34.  14
+   35.  16
+   36.  14
+   37.  15
+   38.  14
+   39.  15
+   40.  15
+   41.  19
+   42.  19
+   43.  18
+   44.  29
+   45.  19
+   46.  19
+   47.  12
+   48.  12
+   49.  12
+   50.  12
+   51.  12
+   52.  14
+   53.  17
+   54.  25
+   55.  27
+   56.  24
+   57.  24
+   58.  22
+   59.  18
+   60.  18
+   61.  14
+   62.  16
+   63.  17
+   64.  20
+   65.  18
+   66.  18
+   67.  18
+   68.  22
+   69.  34
+   70.  13
+   71.  18
+   72.  24
+   73.  23
+   74.  17
+   75.  19
+   76.  18
+   77.  18
+   78.  17
+   79.  17
+   80.  20
+   81.  24
+   82.  34
+   83.  34
+   84.  34
+   85.  18
+   86.  18
+   87.  18
+   88.  18
+   89.  18
+   90.  14
+   91.   9
+   92.  14
+   93.  10
+   94.  16
+   95.   8
+   96.  16
+   97.   8
+   98.  16
+   99.  15
+  100.  16
+  101.  10
+  102.  14
+  103.  11
+  104.  11
+  105.  11
+  106.  11
+  107.  19
+  108.  26
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 19: ppem =  33, maxWid =  35
+    0.  33
+    1.   0
+    2.  17
+    3.  16
+    4.  12
+    5.  15
+    6.  23
+    7.  18
+    8.  23
+    9.  24
+   10.   7
+   11.  18
+   12.  18
+   13.  12
+   14.  18
+   15.  12
+   16.  15
+   17.  12
+   18.  17
+   19.  23
+   20.  13
+   21.  22
+   22.  22
+   23.  23
+   24.  22
+   25.  22
+   26.  20
+   27.  22
+   28.  22
+   29.  12
+   30.  12
+   31.  18
+   32.  18
+   33.  18
+   34.  14
+   35.  17
+   36.  14
+   37.  15
+   38.  14
+   39.  15
+   40.  15
+   41.  20
+   42.  20
+   43.  18
+   44.  30
+   45.  20
+   46.  20
+   47.  12
+   48.  12
+   49.  12
+   50.  12
+   51.  12
+   52.  14
+   53.  18
+   54.  26
+   55.  28
+   56.  24
+   57.  25
+   58.  23
+   59.  19
+   60.  18
+   61.  15
+   62.  17
+   63.  17
+   64.  21
+   65.  19
+   66.  19
+   67.  19
+   68.  22
+   69.  35
+   70.  14
+   71.  18
+   72.  25
+   73.  24
+   74.  17
+   75.  20
+   76.  19
+   77.  19
+   78.  18
+   79.  18
+   80.  21
+   81.  24
+   82.  35
+   83.  35
+   84.  35
+   85.  19
+   86.  19
+   87.  18
+   88.  18
+   89.  19
+   90.  15
+   91.  10
+   92.  14
+   93.  10
+   94.  17
+   95.   8
+   96.  16
+   97.   8
+   98.  16
+   99.  15
+  100.  16
+  101.  10
+  102.  15
+  103.  11
+  104.  11
+  105.  11
+  106.  11
+  107.  20
+  108.  27
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 20: ppem =  37, maxWid =  40
+    0.  37
+    1.   0
+    2.  19
+    3.  18
+    4.  13
+    5.  17
+    6.  25
+    7.  21
+    8.  26
+    9.  27
+   10.   8
+   11.  20
+   12.  20
+   13.  14
+   14.  21
+   15.  13
+   16.  17
+   17.  13
+   18.  19
+   19.  26
+   20.  15
+   21.  25
+   22.  25
+   23.  25
+   24.  25
+   25.  25
+   26.  22
+   27.  24
+   28.  25
+   29.  13
+   30.  13
+   31.  21
+   32.  21
+   33.  21
+   34.  16
+   35.  19
+   36.  16
+   37.  17
+   38.  16
+   39.  17
+   40.  17
+   41.  22
+   42.  22
+   43.  20
+   44.  34
+   45.  22
+   46.  22
+   47.  13
+   48.  13
+   49.  13
+   50.  13
+   51.  13
+   52.  16
+   53.  20
+   54.  29
+   55.  31
+   56.  27
+   57.  28
+   58.  26
+   59.  21
+   60.  20
+   61.  16
+   62.  19
+   63.  19
+   64.  23
+   65.  21
+   66.  21
+   67.  21
+   68.  25
+   69.  40
+   70.  15
+   71.  21
+   72.  28
+   73.  26
+   74.  19
+   75.  22
+   76.  21
+   77.  21
+   78.  20
+   79.  20
+   80.  23
+   81.  27
+   82.  40
+   83.  40
+   84.  40
+   85.  21
+   86.  21
+   87.  20
+   88.  20
+   89.  21
+   90.  16
+   91.  11
+   92.  16
+   93.  11
+   94.  19
+   95.  10
+   96.  18
+   97.   9
+   98.  18
+   99.  17
+  100.  18
+  101.  11
+  102.  16
+  103.  12
+  104.  12
+  105.  12
+  106.  12
+  107.  22
+  108.  30
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 21: ppem =  42, maxWid =  45
+    0.  42
+    1.   0
+    2.  21
+    3.  21
+    4.  15
+    5.  19
+    6.  29
+    7.  24
+    8.  29
+    9.  31
+   10.   9
+   11.  22
+   12.  22
+   13.  15
+   14.  24
+   15.  15
+   16.  19
+   17.  15
+   18.  22
+   19.  29
+   20.  17
+   21.  28
+   22.  28
+   23.  29
+   24.  28
+   25.  28
+   26.  25
+   27.  28
+   28.  28
+   29.  15
+   30.  15
+   31.  24
+   32.  24
+   33.  24
+   34.  18
+   35.  22
+   36.  18
+   37.  19
+   38.  18
+   39.  19
+   40.  19
+   41.  25
+   42.  25
+   43.  23
+   44.  39
+   45.  25
+   46.  25
+   47.  15
+   48.  15
+   49.  15
+   50.  15
+   51.  15
+   52.  18
+   53.  22
+   54.  33
+   55.  35
+   56.  31
+   57.  31
+   58.  29
+   59.  24
+   60.  23
+   61.  19
+   62.  21
+   63.  22
+   64.  27
+   65.  24
+   66.  24
+   67.  24
+   68.  28
+   69.  45
+   70.  18
+   71.  23
+   72.  31
+   73.  30
+   74.  22
+   75.  25
+   76.  24
+   77.  24
+   78.  22
+   79.  22
+   80.  27
+   81.  31
+   82.  45
+   83.  45
+   84.  45
+   85.  24
+   86.  24
+   87.  23
+   88.  23
+   89.  24
+   90.  19
+   91.  12
+   92.  18
+   93.  13
+   94.  21
+   95.  11
+   96.  21
+   97.  11
+   98.  21
+   99.  19
+  100.  21
+  101.  13
+  102.  19
+  103.  14
+  104.  14
+  105.  14
+  106.  14
+  107.  25
+  108.  34
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 22: ppem =  46, maxWid =  49
+    0.  46
+    1.   0
+    2.  23
+    3.  22
+    4.  17
+    5.  21
+    6.  32
+    7.  26
+    8.  32
+    9.  34
+   10.  10
+   11.  24
+   12.  24
+   13.  17
+   14.  26
+   15.  17
+   16.  21
+   17.  17
+   18.  24
+   19.  32
+   20.  19
+   21.  31
+   22.  31
+   23.  31
+   24.  31
+   25.  31
+   26.  28
+   27.  30
+   28.  31
+   29.  17
+   30.  17
+   31.  26
+   32.  26
+   33.  26
+   34.  20
+   35.  24
+   36.  20
+   37.  21
+   38.  20
+   39.  21
+   40.  21
+   41.  28
+   42.  28
+   43.  25
+   44.  42
+   45.  27
+   46.  27
+   47.  17
+   48.  17
+   49.  17
+   50.  17
+   51.  17
+   52.  20
+   53.  25
+   54.  36
+   55.  38
+   56.  34
+   57.  34
+   58.  32
+   59.  27
+   60.  25
+   61.  20
+   62.  24
+   63.  24
+   64.  29
+   65.  26
+   66.  26
+   67.  26
+   68.  31
+   69.  49
+   70.  19
+   71.  26
+   72.  34
+   73.  33
+   74.  24
+   75.  28
+   76.  26
+   77.  26
+   78.  25
+   79.  25
+   80.  29
+   81.  34
+   82.  49
+   83.  49
+   84.  49
+   85.  26
+   86.  26
+   87.  25
+   88.  25
+   89.  26
+   90.  20
+   91.  13
+   92.  20
+   93.  14
+   94.  23
+   95.  12
+   96.  23
+   97.  12
+   98.  23
+   99.  21
+  100.  23
+  101.  14
+  102.  20
+  103.  15
+  104.  15
+  105.  15
+  106.  15
+  107.  28
+  108.  38
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+
+; 'GPOS' Table - Glyph Positioning
+; -------------------------------------
+
+GPOSHeader GPOSHeaderT0000  
+0X00010000            
+ScriptListT000a       
+FeatureListT0020      
+LookupListT003a       
+
+ScriptList ScriptListT000a  
+1                     
+                      ; ScriptRecord[0]
+'thaa'                
+ScriptT0012           
+
+Script ScriptT0012  
+LangSysT0016          
+0                     
+
+LangSys LangSysT0016  
+NULL                  
+0XFFFF                
+2                     
+0                     
+1                     
+
+FeatureList FeatureListT0020  
+2                     
+                      ; FeatureRecord[0]
+'kern'                
+FeatureT002e          
+                      ; FeatureRecord[1]
+'mark'                
+FeatureT0034          
+
+Feature FeatureT002e  
+NULL                  
+1                     
+1                     
+
+Feature FeatureT0034  
+NULL                  
+1                     
+0                     
+
+LookupList LookupListT003a  
+2                     
+LookupT0040           
+LookupT0048           
+
+Lookup LookupT0040  
+4                     
+1                     
+1                     
+MarkBasePosFormat1T0050 
+
+Lookup LookupT0048  
+2                     
+9                     
+1                     
+PairPosFormat2T017e   
+
+MarkBasePosFormat1 MarkBasePosFormat1T0050  
+1                     
+CoverageFormat2T0158  
+CoverageFormat2T0168  
+2                     
+MarkArrayT005c        
+BaseArrayT00b6        
+
+MarkArray MarkArrayT005c  
+22                    
+                      ; MarkRecord[0]
+0                     
+AnchorFormat1T0376    
+                      ; MarkRecord[1]
+0                     
+AnchorFormat1T0472    
+                      ; MarkRecord[2]
+1                     
+AnchorFormat1T0382    
+                      ; MarkRecord[3]
+1                     
+AnchorFormat1T0388    
+                      ; MarkRecord[4]
+0                     
+AnchorFormat1T0484    
+                      ; MarkRecord[5]
+0                     
+AnchorFormat1T048a    
+                      ; MarkRecord[6]
+0                     
+AnchorFormat1T0490    
+                      ; MarkRecord[7]
+0                     
+AnchorFormat1T0496    
+                      ; MarkRecord[8]
+0                     
+AnchorFormat1T049c    
+                      ; MarkRecord[9]
+0                     
+AnchorFormat1T04a2    
+                      ; MarkRecord[10]
+0                     
+AnchorFormat1T04a8    
+                      ; MarkRecord[11]
+0                     
+AnchorFormat1T0592    
+                      ; MarkRecord[12]
+0                     
+AnchorFormat1T0598    
+                      ; MarkRecord[13]
+1                     
+AnchorFormat1T05a4    
+                      ; MarkRecord[14]
+1                     
+AnchorFormat1T059e    
+                      ; MarkRecord[15]
+0                     
+AnchorFormat1T05ce    
+                      ; MarkRecord[16]
+0                     
+AnchorFormat1T05c8    
+                      ; MarkRecord[17]
+0                     
+AnchorFormat1T05c2    
+                      ; MarkRecord[18]
+0                     
+AnchorFormat1T05bc    
+                      ; MarkRecord[19]
+0                     
+AnchorFormat1T05b6    
+                      ; MarkRecord[20]
+0                     
+AnchorFormat1T05b0    
+                      ; MarkRecord[21]
+0                     
+AnchorFormat1T05aa    
+
+BaseArray BaseArrayT00b6  
+40                    
+                      ; BaseRecord[0]
+AnchorFormat1T0370    
+AnchorFormat1T037c    
+                      ; BaseRecord[1]
+AnchorFormat1T04f6    
+AnchorFormat1T038e    
+                      ; BaseRecord[2]
+AnchorFormat1T04fc    
+AnchorFormat1T0394    
+                      ; BaseRecord[3]
+AnchorFormat1T0502    
+AnchorFormat1T039a    
+                      ; BaseRecord[4]
+AnchorFormat1T0508    
+AnchorFormat1T03a0    
+                      ; BaseRecord[5]
+AnchorFormat1T050e    
+AnchorFormat1T03a6    
+                      ; BaseRecord[6]
+AnchorFormat1T0514    
+AnchorFormat1T03ac    
+                      ; BaseRecord[7]
+AnchorFormat1T051a    
+AnchorFormat1T03b2    
+                      ; BaseRecord[8]
+AnchorFormat1T0520    
+AnchorFormat1T03b8    
+                      ; BaseRecord[9]
+AnchorFormat1T0526    
+AnchorFormat1T03be    
+                      ; BaseRecord[10]
+AnchorFormat1T052c    
+AnchorFormat1T03c4    
+                      ; BaseRecord[11]
+AnchorFormat1T0532    
+AnchorFormat1T03ca    
+                      ; BaseRecord[12]
+AnchorFormat1T0538    
+AnchorFormat1T03d0    
+                      ; BaseRecord[13]
+AnchorFormat1T053e    
+AnchorFormat1T03d6    
+                      ; BaseRecord[14]
+AnchorFormat1T0544    
+AnchorFormat1T03dc    
+                      ; BaseRecord[15]
+AnchorFormat1T054a    
+AnchorFormat1T03e2    
+                      ; BaseRecord[16]
+AnchorFormat1T0550    
+AnchorFormat1T03e8    
+                      ; BaseRecord[17]
+AnchorFormat1T0556    
+AnchorFormat1T03ee    
+                      ; BaseRecord[18]
+AnchorFormat1T055c    
+AnchorFormat1T03f4    
+                      ; BaseRecord[19]
+AnchorFormat1T0562    
+AnchorFormat1T03fa    
+                      ; BaseRecord[20]
+AnchorFormat1T0568    
+AnchorFormat1T0400    
+                      ; BaseRecord[21]
+AnchorFormat1T056e    
+AnchorFormat1T0406    
+                      ; BaseRecord[22]
+AnchorFormat1T0574    
+AnchorFormat1T040c    
+                      ; BaseRecord[23]
+AnchorFormat1T04f0    
+AnchorFormat1T0412    
+                      ; BaseRecord[24]
+AnchorFormat1T04ea    
+AnchorFormat1T0418    
+                      ; BaseRecord[25]
+AnchorFormat1T04e4    
+AnchorFormat1T041e    
+                      ; BaseRecord[26]
+AnchorFormat1T04de    
+AnchorFormat1T0424    
+                      ; BaseRecord[27]
+AnchorFormat1T04d8    
+AnchorFormat1T042a    
+                      ; BaseRecord[28]
+AnchorFormat1T04d2    
+AnchorFormat1T0430    
+                      ; BaseRecord[29]
+AnchorFormat1T04cc    
+AnchorFormat1T0436    
+                      ; BaseRecord[30]
+AnchorFormat1T04c6    
+AnchorFormat1T043c    
+                      ; BaseRecord[31]
+AnchorFormat1T04c0    
+AnchorFormat1T0442    
+                      ; BaseRecord[32]
+AnchorFormat1T04ba    
+AnchorFormat1T0448    
+                      ; BaseRecord[33]
+AnchorFormat1T04b4    
+AnchorFormat1T044e    
+                      ; BaseRecord[34]
+AnchorFormat1T04ae    
+AnchorFormat1T0454    
+                      ; BaseRecord[35]
+AnchorFormat1T047e    
+AnchorFormat1T045a    
+                      ; BaseRecord[36]
+AnchorFormat1T0478    
+AnchorFormat1T0460    
+                      ; BaseRecord[37]
+AnchorFormat1T046c    
+AnchorFormat1T0466    
+                      ; BaseRecord[38]
+AnchorFormat1T057a    
+AnchorFormat1T0580    
+                      ; BaseRecord[39]
+AnchorFormat1T0586    
+AnchorFormat1T058c    
+
+CoverageFormat2 CoverageFormat2T0158  
+2                     
+2                     
+                      ; RangeRecord[0]
+91                    
+101                   
+0                     
+                      ; RangeRecord[1]
+109                   
+119                   
+11                    
+
+CoverageFormat2 CoverageFormat2T0168  
+2                     
+3                     
+                      ; RangeRecord[0]
+53                    
+90                    
+0                     
+                      ; RangeRecord[1]
+102                   
+102                   
+38                    
+                      ; RangeRecord[2]
+107                   
+107                   
+39                    
+
+PairPosFormat2 PairPosFormat2T017e  
+2                     
+CoverageFormat2T0292  
+0                     
+4                     
+ClassDefFormat2T02ba  
+ClassDefFormat2T0354  
+26                    
+5                     
+                      ; PairPosFormat2Class1Record[0]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+0                     
+                      ; PairPosFormat2ClassRecord[3]
+0                     
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[1]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+160                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[2]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+160                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[3]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+160                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[4]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+160                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[5]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+160                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[6]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+160                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[7]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+160                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[8]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+240                   
+                      ; PairPosFormat2ClassRecord[3]
+270                   
+                      ; PairPosFormat2ClassRecord[4]
+160                   
+                      ; PairPosFormat2Class1Record[9]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+240                   
+                      ; PairPosFormat2ClassRecord[3]
+270                   
+                      ; PairPosFormat2ClassRecord[4]
+100                   
+                      ; PairPosFormat2Class1Record[10]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+150                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[11]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+240                   
+                      ; PairPosFormat2ClassRecord[3]
+270                   
+                      ; PairPosFormat2ClassRecord[4]
+100                   
+                      ; PairPosFormat2Class1Record[12]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+150                   
+                      ; PairPosFormat2ClassRecord[3]
+120                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[13]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+220                   
+                      ; PairPosFormat2ClassRecord[3]
+180                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[14]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+240                   
+                      ; PairPosFormat2ClassRecord[3]
+270                   
+                      ; PairPosFormat2ClassRecord[4]
+160                   
+                      ; PairPosFormat2Class1Record[15]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+180                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[16]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+150                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[17]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+150                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[18]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+160                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[19]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+160                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[20]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+240                   
+                      ; PairPosFormat2ClassRecord[3]
+270                   
+                      ; PairPosFormat2ClassRecord[4]
+100                   
+                      ; PairPosFormat2Class1Record[21]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+160                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[22]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+150                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[23]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+150                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[24]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+150                   
+                      ; PairPosFormat2ClassRecord[3]
+120                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[25]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+180                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+
+CoverageFormat2 CoverageFormat2T0292  
+2                     
+6                     
+                      ; RangeRecord[0]
+53                    
+56                    
+0                     
+                      ; RangeRecord[1]
+58                    
+58                    
+4                     
+                      ; RangeRecord[2]
+61                    
+67                    
+5                     
+                      ; RangeRecord[3]
+73                    
+81                    
+12                    
+                      ; RangeRecord[4]
+85                    
+86                    
+21                    
+                      ; RangeRecord[5]
+89                    
+90                    
+23                    
+
+ClassDefFormat2 ClassDefFormat2T02ba  
+2                     
+25                    
+                      ; ClassRangeRecord[0]
+53                    
+53                    
+1                     
+                      ; ClassRangeRecord[1]
+54                    
+54                    
+2                     
+                      ; ClassRangeRecord[2]
+55                    
+55                    
+3                     
+                      ; ClassRangeRecord[3]
+56                    
+56                    
+4                     
+                      ; ClassRangeRecord[4]
+58                    
+58                    
+5                     
+                      ; ClassRangeRecord[5]
+61                    
+61                    
+6                     
+                      ; ClassRangeRecord[6]
+62                    
+62                    
+7                     
+                      ; ClassRangeRecord[7]
+63                    
+63                    
+8                     
+                      ; ClassRangeRecord[8]
+64                    
+64                    
+9                     
+                      ; ClassRangeRecord[9]
+65                    
+65                    
+10                    
+                      ; ClassRangeRecord[10]
+66                    
+66                    
+11                    
+                      ; ClassRangeRecord[11]
+67                    
+67                    
+12                    
+                      ; ClassRangeRecord[12]
+73                    
+73                    
+13                    
+                      ; ClassRangeRecord[13]
+74                    
+74                    
+14                    
+                      ; ClassRangeRecord[14]
+75                    
+75                    
+15                    
+                      ; ClassRangeRecord[15]
+76                    
+76                    
+16                    
+                      ; ClassRangeRecord[16]
+77                    
+77                    
+17                    
+                      ; ClassRangeRecord[17]
+78                    
+78                    
+18                    
+                      ; ClassRangeRecord[18]
+79                    
+79                    
+19                    
+                      ; ClassRangeRecord[19]
+80                    
+80                    
+20                    
+                      ; ClassRangeRecord[20]
+81                    
+81                    
+21                    
+                      ; ClassRangeRecord[21]
+85                    
+85                    
+22                    
+                      ; ClassRangeRecord[22]
+86                    
+86                    
+23                    
+                      ; ClassRangeRecord[23]
+89                    
+89                    
+24                    
+                      ; ClassRangeRecord[24]
+90                    
+90                    
+25                    
+
+ClassDefFormat2 ClassDefFormat2T0354  
+2                     
+4                     
+                      ; ClassRangeRecord[0]
+60                    
+60                    
+1                     
+                      ; ClassRangeRecord[1]
+70                    
+70                    
+2                     
+                      ; ClassRangeRecord[2]
+71                    
+71                    
+3                     
+                      ; ClassRangeRecord[3]
+72                    
+72                    
+4                     
+
+AnchorFormat1 AnchorFormat1T0370  
+1                     
+589                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0376  
+1                     
+310                   
+969                   
+
+AnchorFormat1 AnchorFormat1T037c  
+1                     
+520                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T0382  
+1                     
+315                   
+0                     
+
+AnchorFormat1 AnchorFormat1T0388  
+1                     
+510                   
+0                     
+
+AnchorFormat1 AnchorFormat1T038e  
+1                     
+800                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T0394  
+1                     
+780                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T039a  
+1                     
+780                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T03a0  
+1                     
+765                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T03a6  
+1                     
+760                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T03ac  
+1                     
+550                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T03b2  
+1                     
+540                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T03b8  
+1                     
+440                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T03be  
+1                     
+525                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T03c4  
+1                     
+560                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T03ca  
+1                     
+660                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T03d0  
+1                     
+630                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T03d6  
+1                     
+550                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T03dc  
+1                     
+555                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T03e2  
+1                     
+715                   
+-360                  
+
+AnchorFormat1 AnchorFormat1T03e8  
+1                     
+1110                  
+-220                  
+
+AnchorFormat1 AnchorFormat1T03ee  
+1                     
+465                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T03f4  
+1                     
+600                   
+-360                  
+
+AnchorFormat1 AnchorFormat1T03fa  
+1                     
+735                   
+-445                  
+
+AnchorFormat1 AnchorFormat1T0400  
+1                     
+680                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T0406  
+1                     
+580                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T040c  
+1                     
+660                   
+-445                  
+
+AnchorFormat1 AnchorFormat1T0412  
+1                     
+630                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T0418  
+1                     
+630                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T041e  
+1                     
+520                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T0424  
+1                     
+520                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T042a  
+1                     
+660                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T0430  
+1                     
+780                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T0436  
+1                     
+1110                  
+-220                  
+
+AnchorFormat1 AnchorFormat1T043c  
+1                     
+1110                  
+-220                  
+
+AnchorFormat1 AnchorFormat1T0442  
+1                     
+1110                  
+-220                  
+
+AnchorFormat1 AnchorFormat1T0448  
+1                     
+630                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T044e  
+1                     
+630                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T0454  
+1                     
+540                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T045a  
+1                     
+540                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T0460  
+1                     
+555                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T0466  
+1                     
+440                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T046c  
+1                     
+461                   
+1380                  
+
+AnchorFormat1 AnchorFormat1T0472  
+1                     
+445                   
+969                   
+
+AnchorFormat1 AnchorFormat1T0478  
+1                     
+600                   
+1380                  
+
+AnchorFormat1 AnchorFormat1T047e  
+1                     
+595                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0484  
+1                     
+250                   
+969                   
+
+AnchorFormat1 AnchorFormat1T048a  
+1                     
+500                   
+969                   
+
+AnchorFormat1 AnchorFormat1T0490  
+1                     
+280                   
+969                   
+
+AnchorFormat1 AnchorFormat1T0496  
+1                     
+566                   
+969                   
+
+AnchorFormat1 AnchorFormat1T049c  
+1                     
+505                   
+969                   
+
+AnchorFormat1 AnchorFormat1T04a2  
+1                     
+544                   
+969                   
+
+AnchorFormat1 AnchorFormat1T04a8  
+1                     
+350                   
+969                   
+
+AnchorFormat1 AnchorFormat1T04ae  
+1                     
+595                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T04b4  
+1                     
+625                   
+1380                  
+
+AnchorFormat1 AnchorFormat1T04ba  
+1                     
+625                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T04c0  
+1                     
+1120                  
+1300                  
+
+AnchorFormat1 AnchorFormat1T04c6  
+1                     
+1120                  
+1300                  
+
+AnchorFormat1 AnchorFormat1T04cc  
+1                     
+1120                  
+1300                  
+
+AnchorFormat1 AnchorFormat1T04d2  
+1                     
+690                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T04d8  
+1                     
+570                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T04de  
+1                     
+589                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T04e4  
+1                     
+589                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T04ea  
+1                     
+625                   
+1450                  
+
+AnchorFormat1 AnchorFormat1T04f0  
+1                     
+489                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T04f6  
+1                     
+720                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T04fc  
+1                     
+820                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0502  
+1                     
+690                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0508  
+1                     
+797                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T050e  
+1                     
+585                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0514  
+1                     
+650                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T051a  
+1                     
+595                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0520  
+1                     
+461                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0526  
+1                     
+510                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T052c  
+1                     
+420                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0532  
+1                     
+570                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0538  
+1                     
+625                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T053e  
+1                     
+526                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0544  
+1                     
+600                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T054a  
+1                     
+720                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0550  
+1                     
+1120                  
+1300                  
+
+AnchorFormat1 AnchorFormat1T0556  
+1                     
+405                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T055c  
+1                     
+595                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0562  
+1                     
+820                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0568  
+1                     
+720                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T056e  
+1                     
+420                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0574  
+1                     
+480                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T057a  
+1                     
+487                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0580  
+1                     
+435                   
+-445                  
+
+AnchorFormat1 AnchorFormat1T0586  
+1                     
+615                   
+1400                  
+
+AnchorFormat1 AnchorFormat1T058c  
+1                     
+615                   
+-100                  
+
+AnchorFormat1 AnchorFormat1T0592  
+1                     
+310                   
+969                   
+
+AnchorFormat1 AnchorFormat1T0598  
+1                     
+445                   
+969                   
+
+AnchorFormat1 AnchorFormat1T059e  
+1                     
+510                   
+0                     
+
+AnchorFormat1 AnchorFormat1T05a4  
+1                     
+315                   
+0                     
+
+AnchorFormat1 AnchorFormat1T05aa  
+1                     
+350                   
+969                   
+
+AnchorFormat1 AnchorFormat1T05b0  
+1                     
+544                   
+969                   
+
+AnchorFormat1 AnchorFormat1T05b6  
+1                     
+505                   
+969                   
+
+AnchorFormat1 AnchorFormat1T05bc  
+1                     
+566                   
+969                   
+
+AnchorFormat1 AnchorFormat1T05c2  
+1                     
+280                   
+969                   
+
+AnchorFormat1 AnchorFormat1T05c8  
+1                     
+500                   
+969                   
+
+AnchorFormat1 AnchorFormat1T05ce  
+1                     
+250                   
+969                   
+
+; 'GSUB' Table - Glyph Substitution
+; -------------------------------------
+
+GSUBHeader GSUBHeaderT0000  
+0X00010000            
+ScriptListT000a       
+FeatureListT001e      
+LookupListT002c       
+
+ScriptList ScriptListT000a  
+1                     
+                      ; ScriptRecord[0]
+'thaa'                
+ScriptT0012           
+
+Script ScriptT0012  
+LangSysT0016          
+0                     
+
+LangSys LangSysT0016  
+NULL                  
+0XFFFF                
+1                     
+0                     
+
+FeatureList FeatureListT001e  
+1                     
+                      ; FeatureRecord[0]
+'ccmp'                
+FeatureT0026          
+
+Feature FeatureT0026  
+NULL                  
+1                     
+0                     
+
+LookupList LookupListT002c  
+1                     
+LookupT0030           
+
+Lookup LookupT0030  
+1                     
+1                     
+1                     
+SingleSubstFormat2T0038 
+
+SingleSubstFormat2 SingleSubstFormat2T0038  
+2                     
+CoverageFormat2T0054  
+11                    
+109                   
+110                   
+111                   
+112                   
+113                   
+114                   
+115                   
+116                   
+117                   
+118                   
+119                   
+
+CoverageFormat2 CoverageFormat2T0054  
+2                     
+1                     
+                      ; RangeRecord[0]
+91                    
+101                   
+0                     
+
+; 'GDEF' Table - Glyph Definition
+;-------------------------------------
+
+GDEFHeader GDEFHeaderT0000  
+0X00010000            
+ClassDefFormat2T000c  
+NULL                  
+LigCaretListT0028     
+NULL                  ; AttachClassDef (1.2)
+
+ClassDefFormat2 ClassDefFormat2T000c  
+2                     
+4                     
+                      ; ClassRangeRecord[0]
+0                     
+90                    
+1                     
+                      ; ClassRangeRecord[1]
+91                    
+101                   
+3                     
+                      ; ClassRangeRecord[2]
+102                   
+108                   
+1                     
+                      ; ClassRangeRecord[3]
+109                   
+119                   
+3                     
+
+LigCaretList LigCaretListT0028  
+CoverageFormat2T002c  
+0                     
+
+CoverageFormat2 CoverageFormat2T002c  
+2                     
+0                     
+
+'DSIG' Table - Digital Signature
+-------------------------------------
+Size = 6476 bytes
+  'DSIG' version:  1
+  numSigs:       1
+  Flags:			0001
+
+'loca' Table - Index To Location Table
+--------------------------------------
+Size = 242 bytes, 121 entries
+	Idx   0 -> glyfOff 0x00000
+	Idx   1 -> glyfOff 0x0003E* No contours *
+	Idx   2 -> glyfOff 0x0003E* No contours *
+	Idx   3 -> glyfOff 0x0003E* No contours *
+	Idx   4 -> glyfOff 0x0003E
+	Idx   5 -> glyfOff 0x000DC
+	Idx   6 -> glyfOff 0x00154
+	Idx   7 -> glyfOff 0x00334
+	Idx   8 -> glyfOff 0x004B2
+	Idx   9 -> glyfOff 0x00604
+	Idx  10 -> glyfOff 0x0076C
+	Idx  11 -> glyfOff 0x007B4
+	Idx  12 -> glyfOff 0x0084E
+	Idx  13 -> glyfOff 0x008EE
+	Idx  14 -> glyfOff 0x009EC
+	Idx  15 -> glyfOff 0x00AAE
+	Idx  16 -> glyfOff 0x00B0A
+	Idx  17 -> glyfOff 0x00B54
+	Idx  18 -> glyfOff 0x00B90
+	Idx  19 -> glyfOff 0x00C2A
+	Idx  20 -> glyfOff 0x00CF6
+	Idx  21 -> glyfOff 0x00DCE
+	Idx  22 -> glyfOff 0x00F1A
+	Idx  23 -> glyfOff 0x01042
+	Idx  24 -> glyfOff 0x01162
+	Idx  25 -> glyfOff 0x0127A
+	Idx  26 -> glyfOff 0x01380
+	Idx  27 -> glyfOff 0x01418
+	Idx  28 -> glyfOff 0x01596
+	Idx  29 -> glyfOff 0x01698
+	Idx  30 -> glyfOff 0x01700
+	Idx  31 -> glyfOff 0x01788
+	Idx  32 -> glyfOff 0x01838
+	Idx  33 -> glyfOff 0x018B8
+	Idx  34 -> glyfOff 0x01960
+	Idx  35 -> glyfOff 0x01A18
+	Idx  36 -> glyfOff 0x01A94
+	Idx  37 -> glyfOff 0x01B42
+	Idx  38 -> glyfOff 0x01C46
+	Idx  39 -> glyfOff 0x01CB0
+	Idx  40 -> glyfOff 0x01DB2
+	Idx  41 -> glyfOff 0x01DF6
+	Idx  42 -> glyfOff 0x01F04
+	Idx  43 -> glyfOff 0x0200A
+	Idx  44 -> glyfOff 0x02054
+	Idx  45 -> glyfOff 0x020A2
+	Idx  46 -> glyfOff 0x02148
+	Idx  47 -> glyfOff 0x021EE
+	Idx  48 -> glyfOff 0x0224A
+	Idx  49 -> glyfOff 0x022A6
+	Idx  50 -> glyfOff 0x022E2
+	Idx  51 -> glyfOff 0x0233E
+	Idx  52 -> glyfOff 0x023C4
+	Idx  53 -> glyfOff 0x024A2
+	Idx  54 -> glyfOff 0x02548
+	Idx  55 -> glyfOff 0x02622
+	Idx  56 -> glyfOff 0x02746
+	Idx  57 -> glyfOff 0x0285E
+	Idx  58 -> glyfOff 0x02984
+	Idx  59 -> glyfOff 0x02A76
+	Idx  60 -> glyfOff 0x02B44
+	Idx  61 -> glyfOff 0x02C42
+	Idx  62 -> glyfOff 0x02D2A
+	Idx  63 -> glyfOff 0x02DDE
+	Idx  64 -> glyfOff 0x02F0E
+	Idx  65 -> glyfOff 0x03058
+	Idx  66 -> glyfOff 0x031A0
+	Idx  67 -> glyfOff 0x0327E
+	Idx  68 -> glyfOff 0x03382
+	Idx  69 -> glyfOff 0x034B8
+	Idx  70 -> glyfOff 0x035E4
+	Idx  71 -> glyfOff 0x03712
+	Idx  72 -> glyfOff 0x03834
+	Idx  73 -> glyfOff 0x039C2
+	Idx  74 -> glyfOff 0x03AEA
+	Idx  75 -> glyfOff 0x03B22
+	Idx  76 -> glyfOff 0x03C9C
+	Idx  77 -> glyfOff 0x03E50
+	Idx  78 -> glyfOff 0x03E88
+	Idx  79 -> glyfOff 0x03EC0
+	Idx  80 -> glyfOff 0x03F00
+	Idx  81 -> glyfOff 0x03F3A
+	Idx  82 -> glyfOff 0x03F7E
+	Idx  83 -> glyfOff 0x03FB4
+	Idx  84 -> glyfOff 0x03FE2
+	Idx  85 -> glyfOff 0x04010
+	Idx  86 -> glyfOff 0x04042
+	Idx  87 -> glyfOff 0x04074
+	Idx  88 -> glyfOff 0x0408C
+	Idx  89 -> glyfOff 0x040DC
+	Idx  90 -> glyfOff 0x0410C
+	Idx  91 -> glyfOff 0x04138
+	Idx  92 -> glyfOff 0x04198
+	Idx  93 -> glyfOff 0x04234
+	Idx  94 -> glyfOff 0x0428E
+	Idx  95 -> glyfOff 0x0434A
+	Idx  96 -> glyfOff 0x043C2
+	Idx  97 -> glyfOff 0x0448E
+	Idx  98 -> glyfOff 0x044FE
+	Idx  99 -> glyfOff 0x045C6
+	Idx 100 -> glyfOff 0x0467E
+	Idx 101 -> glyfOff 0x04736
+	Idx 102 -> glyfOff 0x047BA
+	Idx 103 -> glyfOff 0x048D8
+	Idx 104 -> glyfOff 0x04912
+	Idx 105 -> glyfOff 0x0494C
+	Idx 106 -> glyfOff 0x049B4
+	Idx 107 -> glyfOff 0x04A52
+	Idx 108 -> glyfOff 0x04DB2
+	Idx 109 -> glyfOff 0x04FCA
+	Idx 110 -> glyfOff 0x04FDA
+	Idx 111 -> glyfOff 0x04FEA
+	Idx 112 -> glyfOff 0x04FFA
+	Idx 113 -> glyfOff 0x0500A
+	Idx 114 -> glyfOff 0x0501A
+	Idx 115 -> glyfOff 0x0502A
+	Idx 116 -> glyfOff 0x0503A
+	Idx 117 -> glyfOff 0x0504A
+	Idx 118 -> glyfOff 0x0505A
+	Idx 119 -> glyfOff 0x0506A
+	           Ends at 0x0507A
+
+'glyf' Table - Glyph Data
+-------------------------
+Size = 20602 bytes, 120 entries
+	Glyph   0: off = 0x00000000, len = 62
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1792
+	  yMax:			1536
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	20
+	00000: PUSHB[8]              6     2     4     0     6     2     4     0 
+	00009: MDAP[rd]   
+	00010: MDRP[nrp0,md,rd,1] 
+	00011: MDRP[srp0,nmd,rd,0] 
+	00012: MDRP[nrp0,md,rd,1] 
+	00013: SVTCA[y-axis] 
+	00014: MDAP[rd]   
+	00015: MDRP[nrp0,md,rd,1] 
+	00016: MDRP[srp0,nmd,rd,0] 
+	00017: MDRP[nrp0,md,rd,1] 
+	00018: IUP[y]     
+	00019: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1536)  ->  Abs (   256,  1536)
+	  2: Rel (  1536,     0)  ->  Abs (  1792,  1536)
+	  3: Rel (     0, -1536)  ->  Abs (  1792,     0)
+	  4: Rel ( -1408,   128)  ->  Abs (   384,   128)
+	  5: Rel (  1280,     0)  ->  Abs (  1664,   128)
+	  6: Rel (     0,  1280)  ->  Abs (  1664,  1408)
+	  7: Rel ( -1280,     0)  ->  Abs (   384,  1408)
+
+	Glyph   1: off = 0x0000003E, len = 0
+
+	Glyph   2: off = 0x0000003E, len = 0
+
+	Glyph   3: off = 0x0000003E, len = 0
+
+	Glyph   4: off = 0x0000003E, len = 158
+	  numberOfContours:	2
+	  xMin:			176
+	  yMin:			-8
+	  xMax:			807
+	  yMax:			1462
+
+	EndPoints
+	---------
+	  0:  15
+	  1:  27
+
+	  Length of Instructions:	66
+	00000: PUSHB[4]            151    12     1     4 
+	00005: PUSHW[1]            -16 
+	00008: NPUSHB      (33):    13    17    72    13     1    82     6     0     6   141 
+	                            10    13    20    10    13    13     0     6   177    10 
+	                            16   175   143    22     1    22    14     7     8    25 
+	                           176    19     4 
+	00043: SVTCA[y-axis] 
+	00044: MIAP[rd+ci] 
+	00045: MIRP[srp0,md,rd,1] 
+	00046: MDRP[nrp0,nmd,rd,2] 
+	00047: MIAP[rd+ci] 
+	00048: IUP[x]     
+	00049: SVTCA[x-axis] 
+	00050: MDAP[rd]   
+	00051: DELTAP1    
+	00052: MIRP[nrp0,md,rd,1] 
+	00053: MDRP[srp0,nmd,rd,0] 
+	00054: MIRP[nrp0,md,rd,1] 
+	00055: MDRP[nrp0,md,rd,1] 
+	00056: SHP[rp2,zp1] 
+	00057: SDPVTL[1]  
+	00058: CALL       
+	00059: SDPVTL[1]  
+	00060: CALL       
+	00061: MDRP[nrp0,nmd,rd,0] 
+	00062: IUP[y]     
+	00063: SVTCA[x-axis] 
+	00064: CALL       
+	00065: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                              X-Short Off
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:        XDual                 X-Short Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:                                      On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   807,  1405)  ->  Abs (   807,  1405)
+	  1: Rel (     0,   -42)  ->  Abs (   807,  1363)
+	  2: Rel (   -41,   -85)  ->  Abs (   766,  1278)
+	  3: Rel (   -31,   -65)  ->  Abs (   735,  1213)
+	  4: Rel (  -183,  -489)  ->  Abs (   552,   724)
+	  5: Rel (   -40,  -116)  ->  Abs (   512,   608)
+	  6: Rel (   -16,   -84)  ->  Abs (   496,   524)
+	  7: Rel (   -13,   -65)  ->  Abs (   483,   459)
+	  8: Rel (   -77,     0)  ->  Abs (   406,   459)
+	  9: Rel (   -99,     0)  ->  Abs (   307,   459)
+	 10: Rel (     0,    98)  ->  Abs (   307,   557)
+	 11: Rel (     0,   103)  ->  Abs (   307,   660)
+	 12: Rel (   245,   585)  ->  Abs (   552,  1245)
+	 13: Rel (   132,   217)  ->  Abs (   684,  1462)
+	 14: Rel (    61,     0)  ->  Abs (   745,  1462)
+	 15: Rel (    62,     0)  ->  Abs (   807,  1462)
+	 16: Rel (  -332, -1300)  ->  Abs (   475,   162)
+	 17: Rel (     0,   -69)  ->  Abs (   475,    93)
+	 18: Rel (  -106,  -101)  ->  Abs (   369,    -8)
+	 19: Rel (   -68,     0)  ->  Abs (   301,    -8)
+	 20: Rel (   -52,     0)  ->  Abs (   249,    -8)
+	 21: Rel (   -73,    73)  ->  Abs (   176,    65)
+	 22: Rel (     0,    52)  ->  Abs (   176,   117)
+	 23: Rel (     0,    69)  ->  Abs (   176,   186)
+	 24: Rel (   111,   105)  ->  Abs (   287,   291)
+	 25: Rel (    67,     0)  ->  Abs (   354,   291)
+	 26: Rel (    52,     0)  ->  Abs (   406,   291)
+	 27: Rel (    69,   -74)  ->  Abs (   475,   217)
+
+	Glyph   5: off = 0x000000DC, len = 120
+	  numberOfContours:	2
+	  xMin:			248
+	  yMin:			823
+	  xMax:			1081
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  12
+	  1:  25
+
+	  Length of Instructions:	34
+	00000: NPUSHB      (18):    24    19     6    11     7    21   137    17    13     0 
+	                             4   137    31     8    47     8     2     8 
+	00020: MDAP[rd]   
+	00021: DELTAP1    
+	00022: MIRP[srp0,md,rd,1] 
+	00023: MDRP[srp0,nmd,rd,0] 
+	00024: MDRP[srp0,nmd,rd,0] 
+	00025: MDRP[srp0,nmd,rd,0] 
+	00026: MIRP[nrp0,md,rd,1] 
+	00027: SVTCA[y-axis] 
+	00028: MIAP[rd+ci] 
+	00029: MDRP[nrp0,md,rd,1] 
+	00030: IP         
+	00031: IP         
+	00032: IUP[y]     
+	00033: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:        XDual                 X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:                      Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:        XDual                 X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   631,  1401)  ->  Abs (   631,  1401)
+	  1: Rel (     0,   -21)  ->  Abs (   631,  1380)
+	  2: Rel (   -39,   -82)  ->  Abs (   592,  1298)
+	  3: Rel (   -85,  -169)  ->  Abs (   507,  1129)
+	  4: Rel (   -63,  -242)  ->  Abs (   444,   887)
+	  5: Rel (   -15,   -64)  ->  Abs (   429,   823)
+	  6: Rel (   -83,     0)  ->  Abs (   346,   823)
+	  7: Rel (   -98,     0)  ->  Abs (   248,   823)
+	  8: Rel (     0,    86)  ->  Abs (   248,   909)
+	  9: Rel (     0,    69)  ->  Abs (   248,   978)
+	 10: Rel (   235,   488)  ->  Abs (   483,  1466)
+	 11: Rel (    70,     0)  ->  Abs (   553,  1466)
+	 12: Rel (    78,     0)  ->  Abs (   631,  1466)
+	 13: Rel (   450,   -65)  ->  Abs (  1081,  1401)
+	 14: Rel (     0,   -25)  ->  Abs (  1081,  1376)
+	 15: Rel (   -39,   -78)  ->  Abs (  1042,  1298)
+	 16: Rel (   -84,  -169)  ->  Abs (   958,  1129)
+	 17: Rel (   -63,  -242)  ->  Abs (   895,   887)
+	 18: Rel (   -16,   -64)  ->  Abs (   879,   823)
+	 19: Rel (   -82,     0)  ->  Abs (   797,   823)
+	 20: Rel (   -99,     0)  ->  Abs (   698,   823)
+	 21: Rel (     0,    86)  ->  Abs (   698,   909)
+	 22: Rel (     0,    69)  ->  Abs (   698,   978)
+	 23: Rel (   235,   488)  ->  Abs (   933,  1466)
+	 24: Rel (    71,     0)  ->  Abs (  1004,  1466)
+	 25: Rel (    77,     0)  ->  Abs (  1081,  1466)
+
+	Glyph   6: off = 0x00000154, len = 480
+	  numberOfContours:	2
+	  xMin:			100
+	  yMin:			-2
+	  xMax:			1454
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  70
+	  1:  81
+
+	  Length of Instructions:	247
+	00000: NPUSHB     (152):    57    53   121    53     2   121    44     1   105    34 
+	                             1     9    26     1    80    76    71    53    19    51 
+	                            21    51    44    36    34    27    46    21     1    82 
+	                            46    24    46   142    51    21    20    51    51    21 
+	                            69    63     7     0    61     9    61    17    73    75 
+	                            54    56     9     1    82    56    12    56   142    61 
+	                             9    20    61    61     9    21    40    30    24    46 
+	                           139    51     0     7    63    69     4     9    61     9 
+	                            17    54    73    75     4   192    12     1    12    56 
+	                           139     4    66    51    47    61     1    61    36    37 
+	                            69    75    76     5    38    68   153    43    44    53 
+	                            54    63     5    64    42   153    38     7    17    19 
+	                            27     4    28     6   153     0    34    71    73    78 
+	                            80     6   255     2     1     2    33   153   159    28 
+	                             1    28    38    28    48    10    22     7    48     4 
+	                            59     4 
+	00154: SVTCA[y-axis] 
+	00155: MIAP[rd+ci] 
+	00156: MIAP[rd+ci] 
+	00157: MIAP[rd+ci] 
+	00158: MDRP[nrp0,nmd,rd,0] 
+	00159: SRP2       
+	00160: IP         
+	00161: IP         
+	00162: MDAP[rd]   
+	00163: DELTAP1    
+	00164: MIRP[srp0,md,rd,1] 
+	00165: MDRP[srp0,nmd,rd,0] 
+	00166: DELTAP1    
+	00167: SLOOP      
+	00168: IP         
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: SRP1       
+	00171: SLOOP      
+	00172: IP         
+	00173: MDAP[rd]   
+	00174: MIRP[srp0,md,rd,1] 
+	00175: MDRP[srp0,nmd,rd,0] 
+	00176: SLOOP      
+	00177: IP         
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: SRP1       
+	00180: SLOOP      
+	00181: IP         
+	00182: IUP[x]     
+	00183: SVTCA[x-axis] 
+	00184: MDAP[rd]   
+	00185: DELTAP1    
+	00186: SHP[rp1,zp0] 
+	00187: MDRP[nrp0,nmd,rd,0] 
+	00188: MDRP[nrp0,nmd,rd,0] 
+	00189: MIRP[srp0,md,rd,1] 
+	00190: MDRP[nrp0,nmd,rd,0] 
+	00191: DELTAP1    
+	00192: SLOOP      
+	00193: IP         
+	00194: SHP[rp2,zp1] 
+	00195: SRP1       
+	00196: SRP2       
+	00197: SLOOP      
+	00198: IP         
+	00199: MDAP[rd]   
+	00200: MIRP[srp0,md,rd,1] 
+	00201: MDRP[srp0,nmd,rd,0] 
+	00202: MDRP[nrp0,nmd,rd,0] 
+	00203: MDRP[nrp0,nmd,rd,0] 
+	00204: SHP[rp1,zp0] 
+	00205: SDPVTL[1]  
+	00206: SRP0       
+	00207: CALL       
+	00208: SDPVTL[1]  
+	00209: CALL       
+	00210: MDRP[nrp0,nmd,rd,0] 
+	00211: SRP0       
+	00212: MDRP[nrp0,nmd,nrd,0] 
+	00213: MDRP[nrp0,nmd,nrd,0] 
+	00214: MDRP[nrp0,nmd,nrd,0] 
+	00215: MDRP[nrp0,nmd,nrd,0] 
+	00216: SRP0       
+	00217: SDPVTL[1]  
+	00218: MDRP[nrp0,nmd,nrd,0] 
+	00219: MDRP[nrp0,nmd,nrd,0] 
+	00220: MDRP[nrp0,nmd,nrd,0] 
+	00221: MDRP[nrp0,nmd,nrd,0] 
+	00222: SDPVTL[1]  
+	00223: RTG        
+	00224: SRP0       
+	00225: CALL       
+	00226: SDPVTL[1]  
+	00227: CALL       
+	00228: MDRP[nrp0,nmd,rd,0] 
+	00229: SRP0       
+	00230: MDRP[nrp0,nmd,nrd,0] 
+	00231: MDRP[nrp0,nmd,nrd,0] 
+	00232: MDRP[nrp0,nmd,nrd,0] 
+	00233: MDRP[nrp0,nmd,nrd,0] 
+	00234: SRP0       
+	00235: SDPVTL[1]  
+	00236: MDRP[nrp0,nmd,nrd,0] 
+	00237: MDRP[nrp0,nmd,nrd,0] 
+	00238: MDRP[nrp0,nmd,nrd,0] 
+	00239: MDRP[nrp0,nmd,nrd,0] 
+	00240: MDRP[nrp0,nmd,nrd,0] 
+	00241: IUP[y]     
+	00242: SVTCA[x-axis] 
+	00243: DELTAP1    
+	00244: DELTAP1    
+	00245: DELTAP1    
+	00246: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:        XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short On
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:  YDual       Rep-  1         X-Short On
+	 35:                      Y-Short X-Short Off
+	 36:                      Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:  YDual                       X-Short On
+	 43:  YDual                       X-Short Off
+	 44:                      Y-Short X-Short On
+	 45:                      Y-Short X-Short Off
+	 46:                      Y-Short X-Short On
+	 47:                      Y-Short X-Short Off
+	 48:  YDual                       X-Short On
+	 49:  YDual                       X-Short Off
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:                      Y-Short         On
+	 55:                      Y-Short X-Short Off
+	 56:                      Y-Short X-Short On
+	 57:              Rep-  1 Y-Short X-Short Off
+	 59:  YDual                       X-Short On
+	 60:  YDual                       X-Short Off
+	 61:  YDual XDual         Y-Short         On
+	 62:  YDual XDual         Y-Short         Off
+	 63:        XDual                 X-Short On
+	 64:                      Y-Short X-Short On
+	 65:  YDual                       X-Short Off
+	 66:  YDual XDual         Y-Short         On
+	 67:  YDual XDual         Y-Short         Off
+	 68:  YDual XDual         Y-Short X-Short Off
+	 69:  YDual XDual         Y-Short X-Short On
+	 70:  YDual XDual         Y-Short X-Short Off
+	 71:  YDual               Y-Short         On
+	 72:                      Y-Short X-Short Off
+	 73:                      Y-Short X-Short On
+	 74:                      Y-Short X-Short Off
+	 75:                      Y-Short X-Short On
+	 76:  YDual               Y-Short         On
+	 77:  YDual XDual         Y-Short X-Short Off
+	 78:  YDual XDual         Y-Short X-Short On
+	 79:  YDual XDual         Y-Short X-Short Off
+	 80:  YDual XDual         Y-Short X-Short On
+	 81:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   504,   881)  ->  Abs (   504,   881)
+	  1: Rel (  -139,   -21)  ->  Abs (   365,   860)
+	  2: Rel (   -29,     0)  ->  Abs (   336,   860)
+	  3: Rel (   -98,     0)  ->  Abs (   238,   860)
+	  4: Rel (     0,    68)  ->  Abs (   238,   928)
+	  5: Rel (     0,    56)  ->  Abs (   238,   984)
+	  6: Rel (   111,    43)  ->  Abs (   349,  1027)
+	  7: Rel (   218,    11)  ->  Abs (   567,  1038)
+	  8: Rel (    76,   191)  ->  Abs (   643,  1229)
+	  9: Rel (   132,   233)  ->  Abs (   775,  1462)
+	 10: Rel (    56,     0)  ->  Abs (   831,  1462)
+	 11: Rel (    46,     0)  ->  Abs (   877,  1462)
+	 12: Rel (     0,   -24)  ->  Abs (   877,  1438)
+	 13: Rel (     0,   -36)  ->  Abs (   877,  1402)
+	 14: Rel (   -21,   -59)  ->  Abs (   856,  1343)
+	 15: Rel (   -33,   -69)  ->  Abs (   823,  1274)
+	 16: Rel (   -39,   -83)  ->  Abs (   784,  1191)
+	 17: Rel (   -57,  -142)  ->  Abs (   727,  1049)
+	 18: Rel (   228,     8)  ->  Abs (   955,  1057)
+	 19: Rel (   118,     0)  ->  Abs (  1073,  1057)
+	 20: Rel (   115,   278)  ->  Abs (  1188,  1335)
+	 21: Rel (   101,   129)  ->  Abs (  1289,  1464)
+	 22: Rel (    38,     0)  ->  Abs (  1327,  1464)
+	 23: Rel (    57,     0)  ->  Abs (  1384,  1464)
+	 24: Rel (     0,   -41)  ->  Abs (  1384,  1423)
+	 25: Rel (     0,   -16)  ->  Abs (  1384,  1407)
+	 26: Rel (   -86,  -184)  ->  Abs (  1298,  1223)
+	 27: Rel (   -65,  -162)  ->  Abs (  1233,  1061)
+	 28: Rel (   131,     0)  ->  Abs (  1364,  1061)
+	 29: Rel (    90,     0)  ->  Abs (  1454,  1061)
+	 30: Rel (     0,   -74)  ->  Abs (  1454,   987)
+	 31: Rel (     0,   -49)  ->  Abs (  1454,   938)
+	 32: Rel (   -98,   -35)  ->  Abs (  1356,   903)
+	 33: Rel (  -107,     0)  ->  Abs (  1249,   903)
+	 34: Rel (   -73,     0)  ->  Abs (  1176,   903)
+	 35: Rel (   -45,  -119)  ->  Abs (  1131,   784)
+	 36: Rel (   -64,  -211)  ->  Abs (  1067,   573)
+	 37: Rel (    81,     2)  ->  Abs (  1148,   575)
+	 38: Rel (   140,     0)  ->  Abs (  1288,   575)
+	 39: Rel (    78,     0)  ->  Abs (  1366,   575)
+	 40: Rel (     0,   -73)  ->  Abs (  1366,   502)
+	 41: Rel (     0,   -84)  ->  Abs (  1366,   418)
+	 42: Rel (  -113,     0)  ->  Abs (  1253,   418)
+	 43: Rel (  -146,     0)  ->  Abs (  1107,   418)
+	 44: Rel (   -83,    -2)  ->  Abs (  1024,   416)
+	 45: Rel (   -51,  -191)  ->  Abs (   973,   225)
+	 46: Rel (   -25,  -157)  ->  Abs (   948,    68)
+	 47: Rel (   -10,   -70)  ->  Abs (   938,    -2)
+	 48: Rel (   -76,     0)  ->  Abs (   862,    -2)
+	 49: Rel (   -39,     0)  ->  Abs (   823,    -2)
+	 50: Rel (   -49,    46)  ->  Abs (   774,    44)
+	 51: Rel (     0,    36)  ->  Abs (   774,    80)
+	 52: Rel (     0,    96)  ->  Abs (   774,   176)
+	 53: Rel (    70,   238)  ->  Abs (   844,   414)
+	 54: Rel (  -328,    -6)  ->  Abs (   516,   408)
+	 55: Rel (   -53,  -184)  ->  Abs (   463,   224)
+	 56: Rel (   -31,  -158)  ->  Abs (   432,    66)
+	 57: Rel (    -5,   -30)  ->  Abs (   427,    36)
+	 58: Rel (   -68,   -38)  ->  Abs (   359,    -2)
+	 59: Rel (   -33,     0)  ->  Abs (   326,    -2)
+	 60: Rel (   -74,     0)  ->  Abs (   252,    -2)
+	 61: Rel (     0,    78)  ->  Abs (   252,    76)
+	 62: Rel (     0,    60)  ->  Abs (   252,   136)
+	 63: Rel (    82,   263)  ->  Abs (   334,   399)
+	 64: Rel (  -176,   -14)  ->  Abs (   158,   385)
+	 65: Rel (   -58,     0)  ->  Abs (   100,   385)
+	 66: Rel (     0,    92)  ->  Abs (   100,   477)
+	 67: Rel (     0,    36)  ->  Abs (   100,   513)
+	 68: Rel (    93,    40)  ->  Abs (   193,   553)
+	 69: Rel (   194,     6)  ->  Abs (   387,   559)
+	 70: Rel (    81,   239)  ->  Abs (   468,   798)
+	 71: Rel (   544,   103)  ->  Abs (  1012,   901)
+	 72: Rel (  -233,    -4)  ->  Abs (   779,   897)
+	 73: Rel (  -107,    -6)  ->  Abs (   672,   891)
+	 74: Rel (   -59,  -161)  ->  Abs (   613,   730)
+	 75: Rel (   -50,  -167)  ->  Abs (   563,   563)
+	 76: Rel (   330,     8)  ->  Abs (   893,   571)
+	 77: Rel (    44,   134)  ->  Abs (   937,   705)
+	 78: Rel (    71,   184)  ->  Abs (  1008,   889)
+	 79: Rel (     1,     2)  ->  Abs (  1009,   891)
+	 80: Rel (     1,     4)  ->  Abs (  1010,   895)
+	 81: Rel (     1,     4)  ->  Abs (  1011,   899)
+
+	Glyph   7: off = 0x00000334, len = 382
+	  numberOfContours:	3
+	  xMin:			63
+	  yMin:			-20
+	  xMax:			1190
+	  yMax:			1473
+
+	EndPoints
+	---------
+	  0:  50
+	  1:  58
+	  2:  66
+
+	  Length of Instructions:	186
+	00000: NPUSHB     (119):   100    58     1   105    66     1    58    62   106    62 
+	                             2    74    55     1    74    49    90    49     2    70 
+	                            22    86    22     2     0    20    32    20   112    20 
+	                           128    20     4   169    17     1    64   138    21    56 
+	                           138    48    53    51    46    44    32     0    30     2 
+	                            30    61    59    24    19    17     7    25     2     1 
+	                            82    25     5    25   225    30     2    20    30    30 
+	                             2     2     5    25    30     5    21    30    48     4 
+	                            36    15    12    31    12    47    12     3    12    68 
+	                            36    15    61    53    44    17   153     0     7    19 
+	                            21    24    32    46    48    51    56    59    64    12 
+	                            33     9     3     7    39    44   153    33    28 
+	00121: SVTCA[y-axis] 
+	00122: MDAP[rd]   
+	00123: MDAP[rd]   
+	00124: MIRP[srp0,md,rd,1] 
+	00125: MDRP[nrp0,nmd,rd,0] 
+	00126: MIAP[rd+ci] 
+	00127: MDRP[srp0,nmd,rd,0] 
+	00128: SRP1       
+	00129: SLOOP      
+	00130: IP         
+	00131: MIRP[srp0,md,rd,1] 
+	00132: SRP1       
+	00133: IP         
+	00134: IP         
+	00135: MDRP[nrp0,nmd,rd,2] 
+	00136: IUP[x]     
+	00137: SVTCA[x-axis] 
+	00138: MDAP[rd]   
+	00139: SRP0       
+	00140: MDRP[nrp0,nmd,rd,0] 
+	00141: DELTAP1    
+	00142: SRP1       
+	00143: SLOOP      
+	00144: IP         
+	00145: MDAP[rd]   
+	00146: SHP[rp1,zp0] 
+	00147: MDAP[rd]   
+	00148: SHP[rp1,zp0] 
+	00149: SDPVTL[1]  
+	00150: SRP0       
+	00151: CALL       
+	00152: SDPVTL[1]  
+	00153: CALL       
+	00154: MDRP[nrp0,nmd,rd,0] 
+	00155: SRP0       
+	00156: MDRP[nrp0,nmd,nrd,0] 
+	00157: MDRP[nrp0,nmd,nrd,0] 
+	00158: MDRP[nrp0,nmd,nrd,0] 
+	00159: MDRP[nrp0,nmd,nrd,0] 
+	00160: MDRP[nrp0,nmd,nrd,0] 
+	00161: MDRP[nrp0,nmd,nrd,0] 
+	00162: SRP0       
+	00163: SDPVTL[1]  
+	00164: MDRP[nrp0,nmd,nrd,0] 
+	00165: MDRP[nrp0,nmd,nrd,0] 
+	00166: MDRP[nrp0,nmd,nrd,0] 
+	00167: MDRP[nrp0,nmd,nrd,0] 
+	00168: MDRP[nrp0,nmd,nrd,0] 
+	00169: MDRP[nrp0,nmd,nrd,0] 
+	00170: SVTCA[x-axis] 
+	00171: RTG        
+	00172: MDAP[rd]   
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: MDAP[rd]   
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: IUP[y]     
+	00177: DELTAP1    
+	00178: DELTAP1    
+	00179: DELTAP1    
+	00180: DELTAP1    
+	00181: DELTAP1    
+	00182: DELTAP1    
+	00183: DELTAP1    
+	00184: SVTCA[y-axis] 
+	00185: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual Rep-  1 Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:                      Y-Short         Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short X-Short Off
+	 24:              Rep-  1 Y-Short X-Short On
+	 26:              Rep-  1 Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:        XDual         Y-Short X-Short On
+	 42:        XDual         Y-Short X-Short Off
+	 43:  YDual XDual Rep-  1         X-Short On
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short X-Short On
+	 47:  YDual               Y-Short         Off
+	 48:  YDual XDual         Y-Short         On
+	 49:  YDual XDual         Y-Short         Off
+	 50:  YDual               Y-Short         Off
+	 51:        XDual                 X-Short On
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:              Rep-  1 Y-Short X-Short Off
+	 56:        XDual         Y-Short         On
+	 57:        XDual         Y-Short         Off
+	 58:        XDual         Y-Short X-Short Off
+	 59:        XDual         Y-Short X-Short On
+	 60:                      Y-Short X-Short Off
+	 61:                      Y-Short X-Short On
+	 62:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 64:  YDual XDual         Y-Short         On
+	 65:  YDual XDual         Y-Short         Off
+	 66:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   823,  1286)  ->  Abs (   823,  1286)
+	  1: Rel (    48,   105)  ->  Abs (   871,  1391)
+	  2: Rel (    67,    82)  ->  Abs (   938,  1473)
+	  3: Rel (    35,     0)  ->  Abs (   973,  1473)
+	  4: Rel (    43,     0)  ->  Abs (  1016,  1473)
+	  5: Rel (     0,   -27)  ->  Abs (  1016,  1446)
+	  6: Rel (     0,   -45)  ->  Abs (  1016,  1401)
+	  7: Rel (   -49,   -98)  ->  Abs (   967,  1303)
+	  8: Rel (    83,     4)  ->  Abs (  1050,  1307)
+	  9: Rel (    48,     0)  ->  Abs (  1098,  1307)
+	 10: Rel (    42,     0)  ->  Abs (  1140,  1307)
+	 11: Rel (    50,   -43)  ->  Abs (  1190,  1264)
+	 12: Rel (     0,   -31)  ->  Abs (  1190,  1233)
+	 13: Rel (     0,   -39)  ->  Abs (  1190,  1194)
+	 14: Rel (   -50,   -76)  ->  Abs (  1140,  1118)
+	 15: Rel (   -55,     0)  ->  Abs (  1085,  1118)
+	 16: Rel (   -75,     6)  ->  Abs (  1010,  1124)
+	 17: Rel (  -127,     0)  ->  Abs (   883,  1124)
+	 18: Rel (   -66,  -159)  ->  Abs (   817,   965)
+	 19: Rel (   -55,  -164)  ->  Abs (   762,   801)
+	 20: Rel (   282,   -99)  ->  Abs (  1044,   702)
+	 21: Rel (     0,  -198)  ->  Abs (  1044,   504)
+	 22: Rel (     0,  -124)  ->  Abs (  1044,   380)
+	 23: Rel (  -247,  -198)  ->  Abs (   797,   182)
+	 24: Rel (  -215,   -39)  ->  Abs (   582,   143)
+	 25: Rel (   -21,  -104)  ->  Abs (   561,    39)
+	 26: Rel (    -4,   -27)  ->  Abs (   557,    12)
+	 27: Rel (   -60,   -32)  ->  Abs (   497,   -20)
+	 28: Rel (   -32,     0)  ->  Abs (   465,   -20)
+	 29: Rel (   -57,     0)  ->  Abs (   408,   -20)
+	 30: Rel (     0,    69)  ->  Abs (   408,    49)
+	 31: Rel (     0,    26)  ->  Abs (   408,    75)
+	 32: Rel (    12,    52)  ->  Abs (   420,   127)
+	 33: Rel (   -43,     0)  ->  Abs (   377,   127)
+	 34: Rel (  -133,     0)  ->  Abs (   244,   127)
+	 35: Rel (  -181,    80)  ->  Abs (    63,   207)
+	 36: Rel (     0,    57)  ->  Abs (    63,   264)
+	 37: Rel (     0,    34)  ->  Abs (    63,   298)
+	 38: Rel (    40,    46)  ->  Abs (   103,   344)
+	 39: Rel (    34,     0)  ->  Abs (   137,   344)
+	 40: Rel (    23,     0)  ->  Abs (   160,   344)
+	 41: Rel (    54,   -15)  ->  Abs (   214,   329)
+	 42: Rel (   119,   -34)  ->  Abs (   333,   295)
+	 43: Rel (   109,     0)  ->  Abs (   442,   295)
+	 44: Rel (    21,     0)  ->  Abs (   463,   295)
+	 45: Rel (    49,   177)  ->  Abs (   512,   472)
+	 46: Rel (    74,   212)  ->  Abs (   586,   684)
+	 47: Rel (  -277,    97)  ->  Abs (   309,   781)
+	 48: Rel (     0,   173)  ->  Abs (   309,   954)
+	 49: Rel (     0,   115)  ->  Abs (   309,  1069)
+	 50: Rel (   271,   180)  ->  Abs (   580,  1249)
+	 51: Rel (    61,  -409)  ->  Abs (   641,   840)
+	 52: Rel (    58,   159)  ->  Abs (   699,   999)
+	 53: Rel (    49,   115)  ->  Abs (   748,  1114)
+	 54: Rel (  -126,   -20)  ->  Abs (   622,  1094)
+	 55: Rel (  -128,   -86)  ->  Abs (   494,  1008)
+	 56: Rel (     0,   -45)  ->  Abs (   494,   963)
+	 57: Rel (     0,   -42)  ->  Abs (   494,   921)
+	 58: Rel (    67,   -56)  ->  Abs (   561,   865)
+	 59: Rel (   150,  -228)  ->  Abs (   711,   637)
+	 60: Rel (   -60,  -199)  ->  Abs (   651,   438)
+	 61: Rel (   -30,  -121)  ->  Abs (   621,   317)
+	 62: Rel (   110,    29)  ->  Abs (   731,   346)
+	 63: Rel (   129,    95)  ->  Abs (   860,   441)
+	 64: Rel (     0,    46)  ->  Abs (   860,   487)
+	 65: Rel (     0,    51)  ->  Abs (   860,   538)
+	 66: Rel (   -72,    66)  ->  Abs (   788,   604)
+
+	Glyph   8: off = 0x000004B2, len = 338
+	  numberOfContours:	5
+	  xMin:			145
+	  yMin:			-8
+	  xMax:			1565
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+	  2:  46
+	  3:  58
+	  4:  70
+
+	  Length of Instructions:	121
+	00000: NPUSHB      (82):   105    52   121    52   137    52     3    18   156     6 
+	                            12   156    34     0     7    59   156    47    65   156 
+	                            53    25    44    25    62   139   144    56     1    56 
+	                            68   139   160    50     1    50    21   139     3    15 
+	                           139    47     9    95     9     2     9    67    42   115 
+	                            42     2    53    42     1   105    42     1    92    32 
+	                           140    32     2   111    24   143    24     2     9    32 
+	                            42    50     4    24   175    37   223    37     2    37 
+	                            72    24 
+	00084: MDAP[rd]   
+	00085: SRP0       
+	00086: MDRP[nrp0,nmd,rd,0] 
+	00087: DELTAP1    
+	00088: SRP1       
+	00089: SLOOP      
+	00090: IP         
+	00091: DELTAP1    
+	00092: DELTAP1    
+	00093: DELTAP1    
+	00094: DELTAP1    
+	00095: DELTAP1    
+	00096: MDAP[rd]   
+	00097: DELTAP1    
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: MDRP[srp0,nmd,rd,0] 
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: MDAP[rd]   
+	00102: DELTAP1    
+	00103: MIRP[nrp0,md,rd,1] 
+	00104: MDRP[srp0,nmd,rd,0] 
+	00105: DELTAP1    
+	00106: MIRP[nrp0,md,rd,1] 
+	00107: SVTCA[y-axis] 
+	00108: MIAP[rd+ci] 
+	00109: MIAP[rd+ci] 
+	00110: MIRP[nrp0,md,rd,1] 
+	00111: MDRP[srp0,nmd,rd,0] 
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: MIAP[rd+ci] 
+	00114: MDRP[nrp0,nmd,rd,0] 
+	00115: MIRP[nrp0,md,rd,1] 
+	00116: MDRP[srp0,nmd,rd,0] 
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: IUP[y]     
+	00119: IUP[x]     
+	00120: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:        XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:                                      On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:                                      Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:                                      Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:                      Y-Short X-Short On
+	 40:              Rep-  1                 Off
+	 42:                      Y-Short X-Short On
+	 43:                      Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short Off
+	 46:  YDual               Y-Short X-Short Off
+	 47:                                      On
+	 48:  YDual XDual                 X-Short Off
+	 49:        XDual         Y-Short X-Short Off
+	 50:        XDual         Y-Short         On
+	 51:        XDual         Y-Short         Off
+	 52:                      Y-Short X-Short Off
+	 53:  YDual                       X-Short On
+	 54:  YDual                       X-Short Off
+	 55:  YDual               Y-Short X-Short Off
+	 56:  YDual XDual         Y-Short         On
+	 57:  YDual XDual         Y-Short         Off
+	 58:        XDual                 X-Short Off
+	 59:        XDual         Y-Short X-Short On
+	 60:  YDual                       X-Short Off
+	 61:                      Y-Short X-Short Off
+	 62:        XDual         Y-Short         On
+	 63:        XDual         Y-Short         Off
+	 64:        XDual         Y-Short X-Short Off
+	 65:  YDual XDual                 X-Short On
+	 66:  YDual XDual                 X-Short Off
+	 67:  YDual XDual         Y-Short X-Short Off
+	 68:  YDual XDual         Y-Short         On
+	 69:  YDual XDual         Y-Short         Off
+	 70:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   614,  1464)  ->  Abs (   614,  1464)
+	  1: Rel (    93,     0)  ->  Abs (   707,  1464)
+	  2: Rel (   131,  -125)  ->  Abs (   838,  1339)
+	  3: Rel (     0,   -79)  ->  Abs (   838,  1260)
+	  4: Rel (     0,  -169)  ->  Abs (   838,  1091)
+	  5: Rel (  -230,  -251)  ->  Abs (   608,   840)
+	  6: Rel (  -168,     0)  ->  Abs (   440,   840)
+	  7: Rel (   -97,     0)  ->  Abs (   343,   840)
+	  8: Rel (  -130,   129)  ->  Abs (   213,   969)
+	  9: Rel (     0,    92)  ->  Abs (   213,  1061)
+	 10: Rel (     0,   145)  ->  Abs (   213,  1206)
+	 11: Rel (   242,   258)  ->  Abs (   455,  1464)
+	 12: Rel (   131,  -139)  ->  Abs (   586,  1325)
+	 13: Rel (   -92,     0)  ->  Abs (   494,  1325)
+	 14: Rel (  -111,  -157)  ->  Abs (   383,  1168)
+	 15: Rel (     0,   -87)  ->  Abs (   383,  1081)
+	 16: Rel (     0,   -42)  ->  Abs (   383,  1039)
+	 17: Rel (    55,   -60)  ->  Abs (   438,   979)
+	 18: Rel (    39,     0)  ->  Abs (   477,   979)
+	 19: Rel (    73,     0)  ->  Abs (   550,   979)
+	 20: Rel (   118,   172)  ->  Abs (   668,  1151)
+	 21: Rel (     0,    82)  ->  Abs (   668,  1233)
+	 22: Rel (     0,    33)  ->  Abs (   668,  1266)
+	 23: Rel (   -46,    59)  ->  Abs (   622,  1325)
+	 24: Rel (  -477, -1255)  ->  Abs (   145,    70)
+	 25: Rel (     0,    23)  ->  Abs (   145,    93)
+	 26: Rel (    13,    23)  ->  Abs (   158,   116)
+	 27: Rel (    26,    47)  ->  Abs (   184,   163)
+	 28: Rel (   389,   447)  ->  Abs (   573,   610)
+	 29: Rel (   207,   205)  ->  Abs (   780,   815)
+	 30: Rel (   280,   277)  ->  Abs (  1060,  1092)
+	 31: Rel (   135,   122)  ->  Abs (  1195,  1214)
+	 32: Rel (   209,   189)  ->  Abs (  1404,  1403)
+	 33: Rel (    66,    37)  ->  Abs (  1470,  1440)
+	 34: Rel (    27,     0)  ->  Abs (  1497,  1440)
+	 35: Rel (    23,     0)  ->  Abs (  1520,  1440)
+	 36: Rel (    45,   -43)  ->  Abs (  1565,  1397)
+	 37: Rel (     0,   -33)  ->  Abs (  1565,  1364)
+	 38: Rel (     0,   -27)  ->  Abs (  1565,  1337)
+	 39: Rel (   -62,   -51)  ->  Abs (  1503,  1286)
+	 40: Rel (  -328,  -273)  ->  Abs (  1175,  1013)
+	 41: Rel (  -642,  -674)  ->  Abs (   533,   339)
+	 42: Rel (  -189,  -253)  ->  Abs (   344,    86)
+	 43: Rel (   -64,   -90)  ->  Abs (   280,    -4)
+	 44: Rel (   -63,     0)  ->  Abs (   217,    -4)
+	 45: Rel (   -31,     0)  ->  Abs (   186,    -4)
+	 46: Rel (   -41,    43)  ->  Abs (   145,    39)
+	 47: Rel (  1049,   577)  ->  Abs (  1194,   616)
+	 48: Rel (    93,     0)  ->  Abs (  1287,   616)
+	 49: Rel (   130,  -124)  ->  Abs (  1417,   492)
+	 50: Rel (     0,   -80)  ->  Abs (  1417,   412)
+	 51: Rel (     0,  -169)  ->  Abs (  1417,   243)
+	 52: Rel (  -229,  -251)  ->  Abs (  1188,    -8)
+	 53: Rel (  -168,     0)  ->  Abs (  1020,    -8)
+	 54: Rel (   -97,     0)  ->  Abs (   923,    -8)
+	 55: Rel (  -130,   129)  ->  Abs (   793,   121)
+	 56: Rel (     0,    92)  ->  Abs (   793,   213)
+	 57: Rel (     0,   145)  ->  Abs (   793,   358)
+	 58: Rel (   241,   258)  ->  Abs (  1034,   616)
+	 59: Rel (   131,  -139)  ->  Abs (  1165,   477)
+	 60: Rel (   -92,     0)  ->  Abs (  1073,   477)
+	 61: Rel (  -110,  -157)  ->  Abs (   963,   320)
+	 62: Rel (     0,   -87)  ->  Abs (   963,   233)
+	 63: Rel (     0,   -41)  ->  Abs (   963,   192)
+	 64: Rel (    54,   -61)  ->  Abs (  1017,   131)
+	 65: Rel (    40,     0)  ->  Abs (  1057,   131)
+	 66: Rel (    72,     0)  ->  Abs (  1129,   131)
+	 67: Rel (   118,   173)  ->  Abs (  1247,   304)
+	 68: Rel (     0,    81)  ->  Abs (  1247,   385)
+	 69: Rel (     0,    33)  ->  Abs (  1247,   418)
+	 70: Rel (   -46,    59)  ->  Abs (  1201,   477)
+
+	Glyph   9: off = 0x00000604, len = 360
+	  numberOfContours:	3
+	  xMin:			49
+	  yMin:			-4
+	  xMax:			1491
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  41
+	  1:  52
+	  2:  63
+
+	  Length of Instructions:	170
+	00000: NPUSHB      (43):   107    63     1    73    62    89    62     2   123    61 
+	                           139    61     2    58    50    74    50    90    50     3 
+	                            54    40     1   121    38   137    38     2    37     7 
+	                             1   102     3     1   124    54   140    54     2   120 
+	                            42     1    42 
+	00045: PUSHW[1]            -40 
+	00048: NPUSHB      (74):    12    17    72    33    40    13    17    72    35    13 
+	                            99    13   115    13   131    13     4    17     0    11 
+	                            13    17    24    33    42    53    54    62    10    31 
+	                            48   153     5     7    26   153    31    25    60   153 
+	                            36    25    11    13    24    42     4    28    51   137 
+	                             0    33    53    54    62     5    28     2    45   137 
+	                             8    15   139    20     2     8    20     3    39    28 
+	                            65    57   137    39 
+	00124: MDAP[rd]   
+	00125: MIRP[nrp0,md,rd,1] 
+	00126: SRP0       
+	00127: MDRP[nrp0,nmd,rd,2] 
+	00128: SRP1       
+	00129: SLOOP      
+	00130: IP         
+	00131: MDAP[rd]   
+	00132: MIRP[nrp0,md,rd,1] 
+	00133: MDAP[rd]   
+	00134: MIRP[nrp0,md,rd,1] 
+	00135: MDAP[rd]   
+	00136: SRP2       
+	00137: SLOOP      
+	00138: IP         
+	00139: MIRP[nrp0,md,rd,1] 
+	00140: SRP1       
+	00141: SLOOP      
+	00142: IP         
+	00143: SVTCA[y-axis] 
+	00144: MIAP[rd+ci] 
+	00145: MIRP[nrp0,md,rd,1] 
+	00146: MIAP[rd+ci] 
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: MIAP[rd+ci] 
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: SRP2       
+	00151: SLOOP      
+	00152: IP         
+	00153: MDAP[rd]   
+	00154: DELTAP1    
+	00155: CALL       
+	00156: CALL       
+	00157: DELTAP1    
+	00158: DELTAP1    
+	00159: IUP[y]     
+	00160: IUP[x]     
+	00161: DELTAP1    
+	00162: DELTAP1    
+	00163: DELTAP1    
+	00164: DELTAP1    
+	00165: DELTAP1    
+	00166: SVTCA[x-axis] 
+	00167: DELTAP1    
+	00168: DELTAP1    
+	00169: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual               Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short         On
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:              Rep-  1 Y-Short X-Short Off
+	 24:                      Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:                      Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:  YDual               Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short         Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:  YDual               Y-Short         Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual               Y-Short         On
+	 43:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual               Y-Short X-Short Off
+	 48:  YDual                       X-Short On
+	 49:  YDual                       X-Short Off
+	 50:                      Y-Short X-Short Off
+	 51:        XDual         Y-Short         On
+	 52:        XDual         Y-Short         Off
+	 53:                              X-Short On
+	 54:                      Y-Short X-Short On
+	 55:              Rep-  1 Y-Short X-Short Off
+	 57:        XDual         Y-Short         On
+	 58:        XDual         Y-Short         Off
+	 59:        XDual         Y-Short X-Short Off
+	 60:  YDual XDual                 X-Short On
+	 61:  YDual XDual                 X-Short Off
+	 62:  YDual XDual         Y-Short X-Short On
+	 63:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   520,   838)  ->  Abs (   520,   838)
+	  1: Rel (   -45,   123)  ->  Abs (   475,   961)
+	  2: Rel (     0,   110)  ->  Abs (   475,  1071)
+	  3: Rel (     0,   155)  ->  Abs (   475,  1226)
+	  4: Rel (   275,   238)  ->  Abs (   750,  1464)
+	  5: Rel (   206,     0)  ->  Abs (   956,  1464)
+	  6: Rel (   111,     0)  ->  Abs (  1067,  1464)
+	  7: Rel (   184,  -155)  ->  Abs (  1251,  1309)
+	  8: Rel (     0,  -103)  ->  Abs (  1251,  1206)
+	  9: Rel (     0,  -122)  ->  Abs (  1251,  1084)
+	 10: Rel (  -229,  -195)  ->  Abs (  1022,   889)
+	 11: Rel (  -268,  -117)  ->  Abs (   754,   772)
+	 12: Rel (    71,  -138)  ->  Abs (   825,   634)
+	 13: Rel (   189,  -216)  ->  Abs (  1014,   418)
+	 14: Rel (   171,   154)  ->  Abs (  1185,   572)
+	 15: Rel (    83,   161)  ->  Abs (  1268,   733)
+	 16: Rel (    19,    45)  ->  Abs (  1287,   778)
+	 17: Rel (    50,     0)  ->  Abs (  1337,   778)
+	 18: Rel (    34,     0)  ->  Abs (  1371,   778)
+	 19: Rel (    61,   -49)  ->  Abs (  1432,   729)
+	 20: Rel (     0,   -33)  ->  Abs (  1432,   696)
+	 21: Rel (     0,   -25)  ->  Abs (  1432,   671)
+	 22: Rel (   -42,   -80)  ->  Abs (  1390,   591)
+	 23: Rel (  -156,  -185)  ->  Abs (  1234,   406)
+	 24: Rel (  -108,   -99)  ->  Abs (  1126,   307)
+	 25: Rel (   128,  -106)  ->  Abs (  1254,   201)
+	 26: Rel (   147,   -15)  ->  Abs (  1401,   186)
+	 27: Rel (    90,    -8)  ->  Abs (  1491,   178)
+	 28: Rel (     0,  -100)  ->  Abs (  1491,    78)
+	 29: Rel (     0,   -35)  ->  Abs (  1491,    43)
+	 30: Rel (   -49,   -47)  ->  Abs (  1442,    -4)
+	 31: Rel (   -39,     0)  ->  Abs (  1403,    -4)
+	 32: Rel (  -197,     0)  ->  Abs (  1206,    -4)
+	 33: Rel (  -221,   194)  ->  Abs (   985,   190)
+	 34: Rel (  -122,   -92)  ->  Abs (   863,    98)
+	 35: Rel (  -282,  -102)  ->  Abs (   581,    -4)
+	 36: Rel (  -126,     0)  ->  Abs (   455,    -4)
+	 37: Rel (  -143,     0)  ->  Abs (   312,    -4)
+	 38: Rel (  -263,   213)  ->  Abs (    49,   209)
+	 39: Rel (     0,   149)  ->  Abs (    49,   358)
+	 40: Rel (     0,   143)  ->  Abs (    49,   501)
+	 41: Rel (   235,   240)  ->  Abs (   284,   741)
+	 42: Rel (   410,   168)  ->  Abs (   694,   909)
+	 43: Rel (   190,    84)  ->  Abs (   884,   993)
+	 44: Rel (   177,   137)  ->  Abs (  1061,  1130)
+	 45: Rel (     0,    76)  ->  Abs (  1061,  1206)
+	 46: Rel (     0,    36)  ->  Abs (  1061,  1242)
+	 47: Rel (   -58,    54)  ->  Abs (  1003,  1296)
+	 48: Rel (   -47,     0)  ->  Abs (   956,  1296)
+	 49: Rel (  -130,     0)  ->  Abs (   826,  1296)
+	 50: Rel (  -160,  -123)  ->  Abs (   666,  1173)
+	 51: Rel (     0,  -102)  ->  Abs (   666,  1071)
+	 52: Rel (     0,   -70)  ->  Abs (   666,  1001)
+	 53: Rel (   -84,  -303)  ->  Abs (   582,   698)
+	 54: Rel (    -4,    -2)  ->  Abs (   578,   696)
+	 55: Rel (  -176,   -75)  ->  Abs (   402,   621)
+	 56: Rel (  -158,  -161)  ->  Abs (   244,   460)
+	 57: Rel (     0,  -102)  ->  Abs (   244,   358)
+	 58: Rel (     0,   -87)  ->  Abs (   244,   271)
+	 59: Rel (   143,  -101)  ->  Abs (   387,   170)
+	 60: Rel (    86,     0)  ->  Abs (   473,   170)
+	 61: Rel (   183,     0)  ->  Abs (   656,   170)
+	 62: Rel (   212,   135)  ->  Abs (   868,   305)
+	 63: Rel (  -191,   208)  ->  Abs (   677,   513)
+
+	Glyph  10: off = 0x0000076C, len = 72
+	  numberOfContours:	1
+	  xMin:			248
+	  yMin:			823
+	  xMax:			631
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  12
+
+	  Length of Instructions:	23
+	00000: NPUSHB      (12):     6    11     7     0     4   137    63     8   143     8 
+	                             2     8 
+	00014: MDAP[rd]   
+	00015: DELTAP1    
+	00016: MIRP[srp0,md,rd,1] 
+	00017: MDRP[nrp0,nmd,rd,0] 
+	00018: SVTCA[y-axis] 
+	00019: MIAP[rd+ci] 
+	00020: MDRP[nrp0,md,rd,1] 
+	00021: IUP[y]     
+	00022: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:        XDual                 X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   631,  1401)  ->  Abs (   631,  1401)
+	  1: Rel (     0,   -21)  ->  Abs (   631,  1380)
+	  2: Rel (   -39,   -82)  ->  Abs (   592,  1298)
+	  3: Rel (   -85,  -169)  ->  Abs (   507,  1129)
+	  4: Rel (   -63,  -242)  ->  Abs (   444,   887)
+	  5: Rel (   -15,   -64)  ->  Abs (   429,   823)
+	  6: Rel (   -83,     0)  ->  Abs (   346,   823)
+	  7: Rel (   -98,     0)  ->  Abs (   248,   823)
+	  8: Rel (     0,    86)  ->  Abs (   248,   909)
+	  9: Rel (     0,    69)  ->  Abs (   248,   978)
+	 10: Rel (   235,   488)  ->  Abs (   483,  1466)
+	 11: Rel (    70,     0)  ->  Abs (   553,  1466)
+	 12: Rel (    78,     0)  ->  Abs (   631,  1466)
+
+	Glyph  11: off = 0x000007B4, len = 154
+	  numberOfContours:	1
+	  xMin:			195
+	  yMin:			-461
+	  xMax:			1231
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	59
+	00000: NPUSHB      (41):    54    19   134    19     2   117    18   133    18     2 
+	                           108     9   124     9   140     9     3    41     8     1 
+	                           107     5   123     5   139     5     3     4    32    12 
+	                            17    72    11     7     3    27    14     0    21   137 
+	                             7 
+	00043: MDAP[rd]   
+	00044: MIRP[nrp0,md,rd,1] 
+	00045: MDRP[nrp0,md,rd,1] 
+	00046: MDRP[nrp0,nmd,rd,0] 
+	00047: SVTCA[y-axis] 
+	00048: MIAP[rd+ci] 
+	00049: MIAP[rd+ci] 
+	00050: IUP[y]     
+	00051: IUP[x]     
+	00052: SVTCA[x-axis] 
+	00053: CALL       
+	00054: DELTAP1    
+	00055: DELTAP1    
+	00056: DELTAP1    
+	00057: DELTAP1    
+	00058: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:                              X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:        XDual                         Off
+	  9:              Rep-  1                 Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:              Rep-  1                 Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:        XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   623,  -393)  ->  Abs (   623,  -393)
+	  1: Rel (     0,   -29)  ->  Abs (   623,  -422)
+	  2: Rel (   -52,   -39)  ->  Abs (   571,  -461)
+	  3: Rel (   -49,     0)  ->  Abs (   522,  -461)
+	  4: Rel (   -58,     0)  ->  Abs (   464,  -461)
+	  5: Rel (  -160,   178)  ->  Abs (   304,  -283)
+	  6: Rel (  -109,   304)  ->  Abs (   195,    21)
+	  7: Rel (     0,   161)  ->  Abs (   195,   182)
+	  8: Rel (     0,   319)  ->  Abs (   195,   501)
+	  9: Rel (   312,   563)  ->  Abs (   507,  1064)
+	 10: Rel (   492,   400)  ->  Abs (   999,  1464)
+	 11: Rel (   162,     0)  ->  Abs (  1161,  1464)
+	 12: Rel (    32,     0)  ->  Abs (  1193,  1464)
+	 13: Rel (    38,   -34)  ->  Abs (  1231,  1430)
+	 14: Rel (     0,   -25)  ->  Abs (  1231,  1405)
+	 15: Rel (     0,   -32)  ->  Abs (  1231,  1373)
+	 16: Rel (   -37,   -40)  ->  Abs (  1194,  1333)
+	 17: Rel (   -51,   -16)  ->  Abs (  1143,  1317)
+	 18: Rel (  -119,   -37)  ->  Abs (  1024,  1280)
+	 19: Rel (  -362,  -317)  ->  Abs (   662,   963)
+	 20: Rel (  -271,  -533)  ->  Abs (   391,   430)
+	 21: Rel (     0,  -248)  ->  Abs (   391,   182)
+	 22: Rel (     0,  -133)  ->  Abs (   391,    49)
+	 23: Rel (    99,  -263)  ->  Abs (   490,  -214)
+	 24: Rel (    71,   -73)  ->  Abs (   561,  -287)
+	 25: Rel (    62,   -64)  ->  Abs (   623,  -351)
+
+	Glyph  12: off = 0x0000084E, len = 160
+	  numberOfContours:	1
+	  xMin:			-43
+	  yMin:			-463
+	  xMax:			993
+	  yMax:			1462
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	65
+	00000: NPUSHB      (28):    57    19   137    19     2   122    18   138    18     2 
+	                            99     9   115     9     2    38     8   134     8     2 
+	                           100     5   116     5   132     5     3     4 
+	00030: PUSHW[1]            -32 
+	00033: NPUSHB      (13):    12    17    72     3     7    11    27    14     0    21 
+	                           137     7    27 
+	00048: SRP0       
+	00049: MDRP[srp0,nmd,rd,2] 
+	00050: MIRP[nrp0,md,rd,1] 
+	00051: MDRP[nrp0,md,rd,1] 
+	00052: MDRP[nrp0,nmd,rd,0] 
+	00053: SVTCA[y-axis] 
+	00054: MIAP[rd+ci] 
+	00055: MIAP[rd+ci] 
+	00056: IUP[y]     
+	00057: IUP[x]     
+	00058: SVTCA[x-axis] 
+	00059: CALL       
+	00060: DELTAP1    
+	00061: DELTAP1    
+	00062: DELTAP1    
+	00063: DELTAP1    
+	00064: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual                 X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual                         Off
+	  9:              Rep-  1                 Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:              Rep-  1                 Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:                              X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   565,  1395)  ->  Abs (   565,  1395)
+	  1: Rel (     0,    29)  ->  Abs (   565,  1424)
+	  2: Rel (    53,    38)  ->  Abs (   618,  1462)
+	  3: Rel (    48,     0)  ->  Abs (   666,  1462)
+	  4: Rel (    58,     0)  ->  Abs (   724,  1462)
+	  5: Rel (   163,  -183)  ->  Abs (   887,  1279)
+	  6: Rel (   106,  -302)  ->  Abs (   993,   977)
+	  7: Rel (     0,  -158)  ->  Abs (   993,   819)
+	  8: Rel (     0,  -318)  ->  Abs (   993,   501)
+	  9: Rel (  -312,  -564)  ->  Abs (   681,   -63)
+	 10: Rel (  -492,  -400)  ->  Abs (   189,  -463)
+	 11: Rel (  -162,     0)  ->  Abs (    27,  -463)
+	 12: Rel (   -32,     0)  ->  Abs (    -5,  -463)
+	 13: Rel (   -38,    35)  ->  Abs (   -43,  -428)
+	 14: Rel (     0,    25)  ->  Abs (   -43,  -403)
+	 15: Rel (     0,    35)  ->  Abs (   -43,  -368)
+	 16: Rel (    42,    38)  ->  Abs (    -1,  -330)
+	 17: Rel (    46,    15)  ->  Abs (    45,  -315)
+	 18: Rel (   120,    37)  ->  Abs (   165,  -278)
+	 19: Rel (   359,   314)  ->  Abs (   524,    36)
+	 20: Rel (   273,   534)  ->  Abs (   797,   570)
+	 21: Rel (     0,   249)  ->  Abs (   797,   819)
+	 22: Rel (     0,   137)  ->  Abs (   797,   956)
+	 23: Rel (  -100,   261)  ->  Abs (   697,  1217)
+	 24: Rel (   -70,    71)  ->  Abs (   627,  1288)
+	 25: Rel (   -62,    62)  ->  Abs (   565,  1350)
+
+	Glyph  13: off = 0x000008EE, len = 254
+	  numberOfContours:	1
+	  xMin:			182
+	  yMin:			752
+	  xMax:			924
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  48
+
+	  Length of Instructions:	114
+	00000: NPUSHB      (79):   118    42   134    42   150    42     3    70    34    86 
+	                            34   102    34     3    86    25   102    25     2   118 
+	                             0   134     0   150     0     3     5    20    44    32 
+	                             0     5     8    16    20    25    32    34    42    44 
+	                            10    12    37     7     0    25    16    25     2    15 
+	                             0    31     0     2    29     2     2    46     0    16 
+	                            25    34     4    14    35   140    42     8    40    10 
+	                           140    29    22   143    14   207    14     2    14 
+	00081: MDAP[rd]   
+	00082: DELTAP1    
+	00083: MDRP[nrp0,nmd,rd,0] 
+	00084: IP         
+	00085: MIRP[srp0,md,rd,1] 
+	00086: MDRP[srp0,nmd,rd,0] 
+	00087: IP         
+	00088: IP         
+	00089: MIRP[nrp0,md,rd,1] 
+	00090: SRP1       
+	00091: SLOOP      
+	00092: IP         
+	00093: MDRP[nrp0,nmd,rd,0] 
+	00094: IP         
+	00095: MDAP[rd]   
+	00096: MDAP[rd]   
+	00097: DELTAP1    
+	00098: DELTAP1    
+	00099: SVTCA[y-axis] 
+	00100: MIAP[rd+ci] 
+	00101: MDRP[nrp0,md,rd,1] 
+	00102: SLOOP      
+	00103: IP         
+	00104: MDAP[rd]   
+	00105: MDAP[rd]   
+	00106: MDAP[rd]   
+	00107: MDAP[rd]   
+	00108: IUP[y]     
+	00109: IUP[x]     
+	00110: DELTAP1    
+	00111: DELTAP1    
+	00112: DELTAP1    
+	00113: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:        XDual         Y-Short X-Short On
+	 35:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:                      Y-Short X-Short On
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual         Y-Short         Off
+	 48:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   696,  1122)  ->  Abs (   696,  1122)
+	  1: Rel (   158,  -129)  ->  Abs (   854,   993)
+	  2: Rel (     0,   -57)  ->  Abs (   854,   936)
+	  3: Rel (     0,   -25)  ->  Abs (   854,   911)
+	  4: Rel (   -36,   -34)  ->  Abs (   818,   877)
+	  5: Rel (   -25,     0)  ->  Abs (   793,   877)
+	  6: Rel (   -41,     0)  ->  Abs (   752,   877)
+	  7: Rel (  -106,   103)  ->  Abs (   646,   980)
+	  8: Rel (   -52,    44)  ->  Abs (   594,  1024)
+	  9: Rel (   -26,  -105)  ->  Abs (   568,   919)
+	 10: Rel (   -15,   -92)  ->  Abs (   553,   827)
+	 11: Rel (   -15,   -75)  ->  Abs (   538,   752)
+	 12: Rel (   -59,     0)  ->  Abs (   479,   752)
+	 13: Rel (   -69,     0)  ->  Abs (   410,   752)
+	 14: Rel (     0,    90)  ->  Abs (   410,   842)
+	 15: Rel (     0,    55)  ->  Abs (   410,   897)
+	 16: Rel (    30,   121)  ->  Abs (   440,  1018)
+	 17: Rel (   -26,   -15)  ->  Abs (   414,  1003)
+	 18: Rel (   -27,   -20)  ->  Abs (   387,   983)
+	 19: Rel (   -89,   -68)  ->  Abs (   298,   915)
+	 20: Rel (   -46,     0)  ->  Abs (   252,   915)
+	 21: Rel (   -70,     0)  ->  Abs (   182,   915)
+	 22: Rel (     0,    68)  ->  Abs (   182,   983)
+	 23: Rel (     0,    21)  ->  Abs (   182,  1004)
+	 24: Rel (    54,    47)  ->  Abs (   236,  1051)
+	 25: Rel (   190,   100)  ->  Abs (   426,  1151)
+	 26: Rel (   -63,    40)  ->  Abs (   363,  1191)
+	 27: Rel (   -35,    17)  ->  Abs (   328,  1208)
+	 28: Rel (   -60,    32)  ->  Abs (   268,  1240)
+	 29: Rel (     0,    42)  ->  Abs (   268,  1282)
+	 30: Rel (     0,    27)  ->  Abs (   268,  1309)
+	 31: Rel (    43,    34)  ->  Abs (   311,  1343)
+	 32: Rel (    29,     0)  ->  Abs (   340,  1343)
+	 33: Rel (    57,     0)  ->  Abs (   397,  1343)
+	 34: Rel (   121,   -86)  ->  Abs (   518,  1257)
+	 35: Rel (    37,   104)  ->  Abs (   555,  1361)
+	 36: Rel (    52,   103)  ->  Abs (   607,  1464)
+	 37: Rel (    28,     0)  ->  Abs (   635,  1464)
+	 38: Rel (    37,     0)  ->  Abs (   672,  1464)
+	 39: Rel (    24,   -27)  ->  Abs (   696,  1437)
+	 40: Rel (     0,   -32)  ->  Abs (   696,  1405)
+	 41: Rel (     0,   -42)  ->  Abs (   696,  1363)
+	 42: Rel (   -37,  -116)  ->  Abs (   659,  1247)
+	 43: Rel (   168,    53)  ->  Abs (   827,  1300)
+	 44: Rel (    35,     0)  ->  Abs (   862,  1300)
+	 45: Rel (    62,     0)  ->  Abs (   924,  1300)
+	 46: Rel (     0,   -55)  ->  Abs (   924,  1245)
+	 47: Rel (     0,   -51)  ->  Abs (   924,  1194)
+	 48: Rel (  -174,   -54)  ->  Abs (   750,  1140)
+
+	Glyph  14: off = 0x000009EC, len = 194
+	  numberOfContours:	1
+	  xMin:			150
+	  yMin:			227
+	  xMax:			1155
+	  yMax:			1231
+
+	EndPoints
+	---------
+	  0:  34
+
+	  Length of Instructions:	89
+	00000: NPUSHB      (53):    19    10     8    20     8    27     0     2    20     1 
+	                            82     2    24     2   141     8    20    20     8     8 
+	                            20    31    31   143    31     2    31    20    24     2 
+	                           137    16    95     8   111     8     2     8    18   153 
+	                            10     0    14     5    33   153    63    22   143    22 
+	                             2    22    29 
+	00055: SVTCA[y-axis] 
+	00056: MDAP[rd]   
+	00057: MDRP[nrp0,nmd,rd,0] 
+	00058: DELTAP1    
+	00059: MIRP[srp0,md,rd,1] 
+	00060: MDRP[nrp0,nmd,rd,0] 
+	00061: MDRP[srp0,nmd,rd,0] 
+	00062: IP         
+	00063: IP         
+	00064: MIRP[nrp0,md,rd,1] 
+	00065: IUP[x]     
+	00066: SVTCA[x-axis] 
+	00067: MDAP[rd]   
+	00068: DELTAP1    
+	00069: MDRP[nrp0,nmd,rd,0] 
+	00070: MIRP[srp0,md,rd,1] 
+	00071: MDRP[srp0,nmd,rd,0] 
+	00072: SHP[rp2,zp1] 
+	00073: MDRP[nrp0,nmd,rd,0] 
+	00074: DELTAP1    
+	00075: SDPVTL[1]  
+	00076: SRP0       
+	00077: CALL       
+	00078: SDPVTL[1]  
+	00079: CALL       
+	00080: MDRP[nrp0,nmd,rd,0] 
+	00081: SRP0       
+	00082: MDRP[nrp0,nmd,nrd,0] 
+	00083: MDRP[nrp0,nmd,nrd,0] 
+	00084: SRP0       
+	00085: SDPVTL[1]  
+	00086: MDRP[nrp0,nmd,nrd,0] 
+	00087: MDRP[nrp0,nmd,nrd,0] 
+	00088: IUP[y]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                              X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual               Y-Short         On
+	 20:        XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short Off
+	 27:                              X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   729,   647)  ->  Abs (   729,   647)
+	  1: Rel (   -57,  -269)  ->  Abs (   672,   378)
+	  2: Rel (     0,   -87)  ->  Abs (   672,   291)
+	  3: Rel (     0,   -28)  ->  Abs (   672,   263)
+	  4: Rel (   -71,   -36)  ->  Abs (   601,   227)
+	  5: Rel (   -36,     0)  ->  Abs (   565,   227)
+	  6: Rel (   -40,     0)  ->  Abs (   525,   227)
+	  7: Rel (   -50,    40)  ->  Abs (   475,   267)
+	  8: Rel (     0,    30)  ->  Abs (   475,   297)
+	  9: Rel (     0,   107)  ->  Abs (   475,   404)
+	 10: Rel (    57,   237)  ->  Abs (   532,   641)
+	 11: Rel (  -141,    -3)  ->  Abs (   391,   638)
+	 12: Rel (  -103,   -11)  ->  Abs (   288,   627)
+	 13: Rel (   -60,    -6)  ->  Abs (   228,   621)
+	 14: Rel (   -21,     0)  ->  Abs (   207,   621)
+	 15: Rel (   -57,     0)  ->  Abs (   150,   621)
+	 16: Rel (     0,   100)  ->  Abs (   150,   721)
+	 17: Rel (     0,    39)  ->  Abs (   150,   760)
+	 18: Rel (   111,    46)  ->  Abs (   261,   806)
+	 19: Rel (   317,     5)  ->  Abs (   578,   811)
+	 20: Rel (   100,   339)  ->  Abs (   678,  1150)
+	 21: Rel (    54,    81)  ->  Abs (   732,  1231)
+	 22: Rel (    52,     0)  ->  Abs (   784,  1231)
+	 23: Rel (    82,     0)  ->  Abs (   866,  1231)
+	 24: Rel (     0,   -39)  ->  Abs (   866,  1192)
+	 25: Rel (     0,   -21)  ->  Abs (   866,  1171)
+	 26: Rel (   -30,   -86)  ->  Abs (   836,  1085)
+	 27: Rel (   -70,  -268)  ->  Abs (   766,   817)
+	 28: Rel (   189,     6)  ->  Abs (   955,   823)
+	 29: Rel (   122,     0)  ->  Abs (  1077,   823)
+	 30: Rel (    78,     0)  ->  Abs (  1155,   823)
+	 31: Rel (     0,   -78)  ->  Abs (  1155,   745)
+	 32: Rel (     0,   -92)  ->  Abs (  1155,   653)
+	 33: Rel (  -115,     0)  ->  Abs (  1040,   653)
+	 34: Rel (  -130,     0)  ->  Abs (   910,   653)
+
+	Glyph  15: off = 0x00000AAE, len = 92
+	  numberOfContours:	1
+	  xMin:			137
+	  yMin:			-276
+	  xMax:			475
+	  yMax:			291
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	25
+	00000: NPUSHB      (13):    12   178     6   176     0     4     0   177     9   175 
+	                            15   180     3 
+	00015: MDAP[rd]   
+	00016: MIRP[nrp0,nmd,rd,0] 
+	00017: MIRP[srp0,md,rd,1] 
+	00018: MIRP[nrp0,md,rd,1] 
+	00019: SVTCA[y-axis] 
+	00020: MIAP[rd+ci] 
+	00021: MIRP[srp0,md,rd,1] 
+	00022: MIRP[nrp0,nmd,rd,0] 
+	00023: IUP[y]     
+	00024: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual       Rep-  1 Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                              X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   291,    -8)  ->  Abs (   291,    -8)
+	  1: Rel (   -51,     6)  ->  Abs (   240,    -2)
+	  2: Rel (   -64,    70)  ->  Abs (   176,    68)
+	  3: Rel (     0,    49)  ->  Abs (   176,   117)
+	  4: Rel (     0,    69)  ->  Abs (   176,   186)
+	  5: Rel (   111,   105)  ->  Abs (   287,   291)
+	  6: Rel (    67,     0)  ->  Abs (   354,   291)
+	  7: Rel (    57,     0)  ->  Abs (   411,   291)
+	  8: Rel (    64,   -80)  ->  Abs (   475,   211)
+	  9: Rel (     0,   -72)  ->  Abs (   475,   139)
+	 10: Rel (     0,  -114)  ->  Abs (   475,    25)
+	 11: Rel (  -203,  -301)  ->  Abs (   272,  -276)
+	 12: Rel (   -73,     0)  ->  Abs (   199,  -276)
+	 13: Rel (   -24,     0)  ->  Abs (   175,  -276)
+	 14: Rel (   -38,    35)  ->  Abs (   137,  -241)
+	 15: Rel (     0,    22)  ->  Abs (   137,  -219)
+	 16: Rel (     0,    28)  ->  Abs (   137,  -191)
+	 17: Rel (    26,    38)  ->  Abs (   163,  -153)
+	 18: Rel (    42,    30)  ->  Abs (   205,  -123)
+	 19: Rel (    61,    44)  ->  Abs (   266,   -79)
+
+	Glyph  16: off = 0x00000B0A, len = 74
+	  numberOfContours:	1
+	  xMin:			184
+	  yMin:			612
+	  xMax:			887
+	  yMax:			834
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	18
+	00000: PUSHB[8]              9   128     0     1     5     0     2    11 
+	00009: MDAP[rd]   
+	00010: MDRP[nrp0,md,rd,1] 
+	00011: SVTCA[y-axis] 
+	00012: MDAP[rd]   
+	00013: MDRP[srp0,md,rd,1] 
+	00014: DELTAP1    
+	00015: MDRP[nrp0,nmd,rd,0] 
+	00016: IUP[y]     
+	00017: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 15:  YDual               Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   819,   834)  ->  Abs (   819,   834)
+	  1: Rel (    68,     0)  ->  Abs (   887,   834)
+	  2: Rel (     0,   -74)  ->  Abs (   887,   760)
+	  3: Rel (     0,   -54)  ->  Abs (   887,   706)
+	  4: Rel (   -47,   -63)  ->  Abs (   840,   643)
+	  5: Rel (   -41,     0)  ->  Abs (   799,   643)
+	  6: Rel (  -230,     0)  ->  Abs (   569,   643)
+	  7: Rel (  -184,   -20)  ->  Abs (   385,   623)
+	  8: Rel (   -85,   -11)  ->  Abs (   300,   612)
+	  9: Rel (   -50,     0)  ->  Abs (   250,   612)
+	 10: Rel (   -66,     0)  ->  Abs (   184,   612)
+	 11: Rel (     0,    97)  ->  Abs (   184,   709)
+	 12: Rel (     0,    32)  ->  Abs (   184,   741)
+	 13: Rel (    52,    53)  ->  Abs (   236,   794)
+	 14: Rel (    77,    17)  ->  Abs (   313,   811)
+	 15: Rel (   375,    23)  ->  Abs (   688,   834)
+
+	Glyph  17: off = 0x00000B54, len = 60
+	  numberOfContours:	1
+	  xMin:			332
+	  yMin:			543
+	  xMax:			631
+	  yMax:			842
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	14
+	00000: PUSHB[6]              9   176     3     0   175     6 
+	00007: MDAP[rd]   
+	00008: MIRP[nrp0,md,rd,1] 
+	00009: SVTCA[y-axis] 
+	00010: MDAP[rd]   
+	00011: MIRP[nrp0,md,rd,1] 
+	00012: IUP[y]     
+	00013: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   631,   713)  ->  Abs (   631,   713)
+	  1: Rel (     0,   -69)  ->  Abs (   631,   644)
+	  2: Rel (  -106,  -101)  ->  Abs (   525,   543)
+	  3: Rel (   -68,     0)  ->  Abs (   457,   543)
+	  4: Rel (   -52,     0)  ->  Abs (   405,   543)
+	  5: Rel (   -73,    73)  ->  Abs (   332,   616)
+	  6: Rel (     0,    52)  ->  Abs (   332,   668)
+	  7: Rel (     0,    69)  ->  Abs (   332,   737)
+	  8: Rel (   111,   105)  ->  Abs (   443,   842)
+	  9: Rel (    67,     0)  ->  Abs (   510,   842)
+	 10: Rel (    52,     0)  ->  Abs (   562,   842)
+	 11: Rel (    69,   -74)  ->  Abs (   631,   768)
+
+	Glyph  18: off = 0x00000B90, len = 154
+	  numberOfContours:	1
+	  xMin:			20
+	  yMin:			0
+	  xMax:			1276
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  23
+
+	  Length of Instructions:	66
+	00000: NPUSHB      (19):   121    19   137    19     2    91    18     1    88    14 
+	                           120    14     2   117     5   133     5     2     4 
+	00021: PUSHW[1]            -72 
+	00024: NPUSHB      (24):    15    17    72    67     4    83     4     2    37     4 
+	                            53     4     2    53     3    69     3     2    21     7 
+	                             8    24     0    11 
+	00050: MDAP[rd]   
+	00051: MDRP[nrp0,nmd,rd,0] 
+	00052: SVTCA[y-axis] 
+	00053: MIAP[rd+ci] 
+	00054: MIAP[rd+ci] 
+	00055: IUP[y]     
+	00056: IUP[x]     
+	00057: SVTCA[x-axis] 
+	00058: DELTAP1    
+	00059: DELTAP1    
+	00060: DELTAP1    
+	00061: CALL       
+	00062: DELTAP1    
+	00063: DELTAP1    
+	00064: DELTAP1    
+	00065: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:              Rep-  1                 Off
+	  5:                      Y-Short X-Short On
+	  6:              Rep-  1 Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:        XDual                 X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:                                      Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1276,  1380)  ->  Abs (  1276,  1380)
+	  1: Rel (     0,   -36)  ->  Abs (  1276,  1344)
+	  2: Rel (   -82,   -60)  ->  Abs (  1194,  1284)
+	  3: Rel (  -310,  -278)  ->  Abs (   884,  1006)
+	  4: Rel (  -564,  -750)  ->  Abs (   320,   256)
+	  5: Rel (  -101,  -164)  ->  Abs (   219,    92)
+	  6: Rel (   -30,   -49)  ->  Abs (   189,    43)
+	  7: Rel (   -52,   -43)  ->  Abs (   137,     0)
+	  8: Rel (   -43,     0)  ->  Abs (    94,     0)
+	  9: Rel (   -32,     0)  ->  Abs (    62,     0)
+	 10: Rel (   -42,    46)  ->  Abs (    20,    46)
+	 11: Rel (     0,    32)  ->  Abs (    20,    78)
+	 12: Rel (     0,    35)  ->  Abs (    20,   113)
+	 13: Rel (    18,    33)  ->  Abs (    38,   146)
+	 14: Rel (    40,    75)  ->  Abs (    78,   221)
+	 15: Rel (   201,   277)  ->  Abs (   279,   498)
+	 16: Rel (   146,   200)  ->  Abs (   425,   698)
+	 17: Rel (   120,   143)  ->  Abs (   545,   841)
+	 18: Rel (   187,   222)  ->  Abs (   732,  1063)
+	 19: Rel (   377,   381)  ->  Abs (  1109,  1444)
+	 20: Rel (    53,    20)  ->  Abs (  1162,  1464)
+	 21: Rel (    38,     0)  ->  Abs (  1200,  1464)
+	 22: Rel (    26,     0)  ->  Abs (  1226,  1464)
+	 23: Rel (    50,   -46)  ->  Abs (  1276,  1418)
+
+	Glyph  19: off = 0x00000C2A, len = 204
+	  numberOfContours:	2
+	  xMin:			178
+	  yMin:			-8
+	  xMax:			1442
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  27
+
+	  Length of Instructions:	101
+	00000: NPUSHB      (76):   107    26     1    89    25     1     9    19     1   100 
+	                            19     1    66    15    82    15     2   101    13   117 
+	                            13   133    13     3    69     9   117     9   133     9 
+	                             3    35     8    67     8    83     8     3    25     3 
+	                            73     3   121     3   137     3     4    12     2    44 
+	                             2    76     2   124     2   140     2     5    24   153 
+	                            11     7    17   153     4     7    21   137     0    29 
+	                            14   137   143     7     1     7 
+	00078: MDAP[rd]   
+	00079: DELTAP1    
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: SRP0       
+	00082: MDRP[srp0,nmd,rd,0] 
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: SVTCA[y-axis] 
+	00085: MIAP[rd+ci] 
+	00086: MIRP[nrp0,md,rd,1] 
+	00087: MIAP[rd+ci] 
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: IUP[y]     
+	00090: IUP[x]     
+	00091: DELTAP1    
+	00092: DELTAP1    
+	00093: DELTAP1    
+	00094: DELTAP1    
+	00095: DELTAP1    
+	00096: DELTAP1    
+	00097: DELTAP1    
+	00098: DELTAP1    
+	00099: DELTAP1    
+	00100: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                              X-Short Off
+	  3:                                      Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                              X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:              Rep-  1                 Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:                                      On
+	 15:        XDual         Y-Short         Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:                                      Off
+	 20:        XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:                      Y-Short         Off
+	 27:                              X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1442,   997)  ->  Abs (  1442,   997)
+	  1: Rel (     0,  -221)  ->  Abs (  1442,   776)
+	  2: Rel (  -253,  -481)  ->  Abs (  1189,   295)
+	  3: Rel (  -392,  -303)  ->  Abs (   797,    -8)
+	  4: Rel (  -187,     0)  ->  Abs (   610,    -8)
+	  5: Rel (  -194,     0)  ->  Abs (   416,    -8)
+	  6: Rel (  -238,   259)  ->  Abs (   178,   251)
+	  7: Rel (     0,   228)  ->  Abs (   178,   479)
+	  8: Rel (     0,   218)  ->  Abs (   178,   697)
+	  9: Rel (   265,   468)  ->  Abs (   443,  1165)
+	 10: Rel (   407,   299)  ->  Abs (   850,  1464)
+	 11: Rel (   180,     0)  ->  Abs (  1030,  1464)
+	 12: Rel (   192,     0)  ->  Abs (  1222,  1464)
+	 13: Rel (   220,  -250)  ->  Abs (  1442,  1214)
+	 14: Rel ( -1069,  -759)  ->  Abs (   373,   455)
+	 15: Rel (     0,  -128)  ->  Abs (   373,   327)
+	 16: Rel (   135,  -163)  ->  Abs (   508,   164)
+	 17: Rel (   106,     0)  ->  Abs (   614,   164)
+	 18: Rel (   141,     0)  ->  Abs (   755,   164)
+	 19: Rel (   297,   263)  ->  Abs (  1052,   427)
+	 20: Rel (   195,   414)  ->  Abs (  1247,   841)
+	 21: Rel (     0,   183)  ->  Abs (  1247,  1024)
+	 22: Rel (     0,   129)  ->  Abs (  1247,  1153)
+	 23: Rel (  -113,   139)  ->  Abs (  1134,  1292)
+	 24: Rel (  -106,     0)  ->  Abs (  1028,  1292)
+	 25: Rel (  -146,     0)  ->  Abs (   882,  1292)
+	 26: Rel (  -309,  -253)  ->  Abs (   573,  1039)
+	 27: Rel (  -200,  -401)  ->  Abs (   373,   638)
+
+	Glyph  20: off = 0x00000CF6, len = 216
+	  numberOfContours:	1
+	  xMin:			227
+	  yMin:			-8
+	  xMax:			887
+	  yMax:			1460
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	128
+	00000: NPUSHB      (77):   105     9     1   137     3     1   105     2     1     0 
+	                             1    82     0    23     9    11     9   142     4     0 
+	                            20     4     0     9     4    25    24    23     0    25 
+	                            24     0     1    82    18    14    18   141    23     0 
+	                            20    23    23     0     7     0    13    23    14    18 
+	                           137    63    23    79    23   143    23   223    23     4 
+	                            23    23    18    13    14     4    21     9     0    47 
+	                             4     1     4    11     7    21     7 
+	00079: SVTCA[y-axis] 
+	00080: MIAP[rd+ci] 
+	00081: MIAP[rd+ci] 
+	00082: MDRP[nrp0,md,rd,1] 
+	00083: DELTAP1    
+	00084: IP         
+	00085: IP         
+	00086: SRP2       
+	00087: SLOOP      
+	00088: IP         
+	00089: SVTCA[x-axis] 
+	00090: MDAP[rd]   
+	00091: DELTAP1    
+	00092: MIRP[srp0,md,rd,1] 
+	00093: MDRP[srp0,nmd,rd,2] 
+	00094: SRP1       
+	00095: SRP2       
+	00096: IP         
+	00097: MDRP[nrp0,md,rd,1] 
+	00098: SDPVTL[1]  
+	00099: SRP0       
+	00100: CALL       
+	00101: SDPVTL[1]  
+	00102: CALL       
+	00103: MDRP[nrp0,nmd,rd,0] 
+	00104: SVTCA[y-axis] 
+	00105: IP         
+	00106: IP         
+	00107: SDPVTL[1]  
+	00108: SFVTCA[x-axis] 
+	00109: MDRP[nrp0,nmd,nrd,0] 
+	00110: MDRP[nrp0,nmd,nrd,0] 
+	00111: SRP0       
+	00112: SVTCA[x-axis] 
+	00113: MDRP[nrp0,nmd,nrd,1] 
+	00114: SDPVTL[1]  
+	00115: SFVTCA[y-axis] 
+	00116: RTG        
+	00117: CALL       
+	00118: SDPVTL[1]  
+	00119: SFVTL[=p1,p2] 
+	00120: CALL       
+	00121: MDRP[nrp0,nmd,rd,0] 
+	00122: IUP[y]     
+	00123: IUP[x]     
+	00124: SVTCA[y-axis] 
+	00125: DELTAP1    
+	00126: DELTAP1    
+	00127: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual               Y-Short         Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:                                      Off
+	 18:                      Y-Short X-Short On
+	 19:              Rep-  1 Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:                                      Off
+
+	Coordinates
+	-----------
+	  0: Rel (   655,  1264)  ->  Abs (   655,  1264)
+	  1: Rel (   -28,    -9)  ->  Abs (   627,  1255)
+	  2: Rel (   -81,   -31)  ->  Abs (   546,  1224)
+	  3: Rel (  -177,   -67)  ->  Abs (   369,  1157)
+	  4: Rel (   -45,     0)  ->  Abs (   324,  1157)
+	  5: Rel (   -31,     0)  ->  Abs (   293,  1157)
+	  6: Rel (   -33,    37)  ->  Abs (   260,  1194)
+	  7: Rel (     0,    25)  ->  Abs (   260,  1219)
+	  8: Rel (     0,    70)  ->  Abs (   260,  1289)
+	  9: Rel (   126,    72)  ->  Abs (   386,  1361)
+	 10: Rel (   398,    99)  ->  Abs (   784,  1460)
+	 11: Rel (    41,     0)  ->  Abs (   825,  1460)
+	 12: Rel (    62,     0)  ->  Abs (   887,  1460)
+	 13: Rel (     0,   -57)  ->  Abs (   887,  1403)
+	 14: Rel (     0,   -41)  ->  Abs (   887,  1362)
+	 15: Rel (   -43,   -74)  ->  Abs (   844,  1288)
+	 16: Rel (  -102,  -174)  ->  Abs (   742,  1114)
+	 17: Rel (  -290,  -799)  ->  Abs (   452,   315)
+	 18: Rel (   -34,  -245)  ->  Abs (   418,    70)
+	 19: Rel (    -5,   -38)  ->  Abs (   413,    32)
+	 20: Rel (   -59,   -40)  ->  Abs (   354,    -8)
+	 21: Rel (   -39,     0)  ->  Abs (   315,    -8)
+	 22: Rel (   -88,     0)  ->  Abs (   227,    -8)
+	 23: Rel (     0,    80)  ->  Abs (   227,    72)
+	 24: Rel (     0,   131)  ->  Abs (   227,   203)
+	 25: Rel (   290,   820)  ->  Abs (   517,  1023)
+
+	Glyph  21: off = 0x00000DCE, len = 332
+	  numberOfContours:	1
+	  xMin:			61
+	  yMin:			-33
+	  xMax:			1321
+	  yMax:			1460
+
+	EndPoints
+	---------
+	  0:  50
+
+	  Length of Instructions:	179
+	00000: PUSHW[2]             49   -16 
+	00005: PUSHB[4]             13    16    72    48 
+	00010: PUSHW[1]            -16 
+	00013: NPUSHB      (37):    13    16    72   105    41   121    41   137    41     3 
+	                           101    34   117    34   133    34     3    53     0     1 
+	                            84    41     1    73    35     1    75    30    91    30 
+	                             2    14    16    13    17    72     5 
+	00052: PUSHW[1]            -40 
+	00055: NPUSHB      (69):    12    17    72    48    25    27    25   142    50    48 
+	                            20    50    50    48    25    50    41    50    57    50 
+	                             3    38    27     1    25    27    29    46    48    50 
+	                             6     0    37    32   153    43     7    11     0    20 
+	                             2   153    16    20     8    40    48    50    46     0 
+	                            27    25    29   128     0     1     0     8    40     3 
+	                            23    29   137    46    52   127    23     1    23 
+	00126: MDAP[rd]   
+	00127: DELTAP1    
+	00128: SRP0       
+	00129: MDRP[srp0,nmd,rd,2] 
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: SRP2       
+	00132: SLOOP      
+	00133: IP         
+	00134: DELTAP1    
+	00135: SRP1       
+	00136: IP         
+	00137: IP         
+	00138: SRP1       
+	00139: SRP2       
+	00140: IP         
+	00141: IP         
+	00142: MDAP[rd]   
+	00143: MDAP[rd]   
+	00144: SVTCA[y-axis] 
+	00145: MDAP[rd]   
+	00146: MDRP[srp0,nmd,rd,0] 
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: SRP1       
+	00149: IP         
+	00150: MDRP[nrp0,nmd,rd,0] 
+	00151: MIAP[rd+ci] 
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: MDRP[nrp0,nmd,rd,0] 
+	00154: SRP2       
+	00155: SLOOP      
+	00156: IP         
+	00157: DELTAP1    
+	00158: DELTAP1    
+	00159: SDPVTL[1]  
+	00160: SRP0       
+	00161: CALL       
+	00162: SDPVTL[1]  
+	00163: RDTG       
+	00164: MDRP[nrp0,nmd,rd,0] 
+	00165: IUP[y]     
+	00166: IUP[x]     
+	00167: SVTCA[y-axis] 
+	00168: CALL       
+	00169: CALL       
+	00170: DELTAP1    
+	00171: DELTAP1    
+	00172: DELTAP1    
+	00173: SVTCA[x-axis] 
+	00174: DELTAP1    
+	00175: DELTAP1    
+	00176: DELTAP1    
+	00177: CALL       
+	00178: CALL       
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:                      Y-Short         Off
+	  5:        XDual Rep-  2 Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short         Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:                                      Off
+	 26:  YDual               Y-Short         On
+	 27:  YDual               Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short On
+	 36:                      Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual               Y-Short         Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:        XDual         Y-Short X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual         Y-Short         Off
+	 48:                                      Off
+	 49:                      Y-Short         On
+	 50:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   399,   223)  ->  Abs (   399,   223)
+	  1: Rel (    62,     4)  ->  Abs (   461,   227)
+	  2: Rel (    33,     0)  ->  Abs (   494,   227)
+	  3: Rel (    84,     0)  ->  Abs (   578,   227)
+	  4: Rel (   393,   -35)  ->  Abs (   971,   192)
+	  5: Rel (   206,   -33)  ->  Abs (  1177,   159)
+	  6: Rel (    50,   -31)  ->  Abs (  1227,   128)
+	  7: Rel (    30,   -53)  ->  Abs (  1257,    75)
+	  8: Rel (     0,   -30)  ->  Abs (  1257,    45)
+	  9: Rel (     0,   -25)  ->  Abs (  1257,    20)
+	 10: Rel (   -75,   -53)  ->  Abs (  1182,   -33)
+	 11: Rel (   -33,     0)  ->  Abs (  1149,   -33)
+	 12: Rel (   -39,     0)  ->  Abs (  1110,   -33)
+	 13: Rel (   -80,    19)  ->  Abs (  1030,   -14)
+	 14: Rel (  -135,    33)  ->  Abs (   895,    19)
+	 15: Rel (  -377,    34)  ->  Abs (   518,    53)
+	 16: Rel (  -162,     0)  ->  Abs (   356,    53)
+	 17: Rel (   -72,     0)  ->  Abs (   284,    53)
+	 18: Rel (   -77,   -22)  ->  Abs (   207,    31)
+	 19: Rel (   -43,   -15)  ->  Abs (   164,    16)
+	 20: Rel (   -41,     0)  ->  Abs (   123,    16)
+	 21: Rel (   -25,     0)  ->  Abs (    98,    16)
+	 22: Rel (   -37,    30)  ->  Abs (    61,    46)
+	 23: Rel (     0,    26)  ->  Abs (    61,    72)
+	 24: Rel (     0,    92)  ->  Abs (    61,   164)
+	 25: Rel (   285,   263)  ->  Abs (   346,   427)
+	 26: Rel (   259,   133)  ->  Abs (   605,   560)
+	 27: Rel (   317,   163)  ->  Abs (   922,   723)
+	 28: Rel (   204,   220)  ->  Abs (  1126,   943)
+	 29: Rel (     0,   106)  ->  Abs (  1126,  1049)
+	 30: Rel (     0,    97)  ->  Abs (  1126,  1146)
+	 31: Rel (  -151,   142)  ->  Abs (   975,  1288)
+	 32: Rel (  -113,     0)  ->  Abs (   862,  1288)
+	 33: Rel (  -104,     0)  ->  Abs (   758,  1288)
+	 34: Rel (  -176,   -70)  ->  Abs (   582,  1218)
+	 35: Rel (   -83,   -93)  ->  Abs (   499,  1125)
+	 36: Rel (   -34,   -38)  ->  Abs (   465,  1087)
+	 37: Rel (   -29,     0)  ->  Abs (   436,  1087)
+	 38: Rel (   -36,     0)  ->  Abs (   400,  1087)
+	 39: Rel (   -58,    51)  ->  Abs (   342,  1138)
+	 40: Rel (     0,    33)  ->  Abs (   342,  1171)
+	 41: Rel (     0,   102)  ->  Abs (   342,  1273)
+	 42: Rel (   323,   187)  ->  Abs (   665,  1460)
+	 43: Rel (   218,     0)  ->  Abs (   883,  1460)
+	 44: Rel (   187,     0)  ->  Abs (  1070,  1460)
+	 45: Rel (   251,  -226)  ->  Abs (  1321,  1234)
+	 46: Rel (     0,  -179)  ->  Abs (  1321,  1055)
+	 47: Rel (     0,  -178)  ->  Abs (  1321,   877)
+	 48: Rel (  -273,  -299)  ->  Abs (  1048,   578)
+	 49: Rel (  -374,  -179)  ->  Abs (   674,   399)
+	 50: Rel (  -160,   -77)  ->  Abs (   514,   322)
+
+	Glyph  22: off = 0x00000F1A, len = 296
+	  numberOfContours:	1
+	  xMin:			94
+	  yMin:			-8
+	  xMax:			1350
+	  yMax:			1458
+
+	EndPoints
+	---------
+	  0:  54
+
+	  Length of Instructions:	139
+	00000: NPUSHB      (93):    26    54    42    54    58    54     3    86    51   102 
+	                            51     2    70    47    86    47   102    47     3    41 
+	                            48    14    17    72    73    37     1    85    14   101 
+	                            14     2     8    32    13    17    72    15     4    31 
+	                             4     2    11     3     0     1    16     1     2    16 
+	                             5    32     0     6    23   153    29    64    49     6 
+	                            29   153   100    48    43    39   153    49     7    12 
+	                            16   153     6     7    46    26    19   137     3     0 
+	                             3    26    46     4     9    36   137    52    56    32 
+	                             9     1     9 
+	00095: MDAP[rd]   
+	00096: DELTAP1    
+	00097: SRP0       
+	00098: MDRP[srp0,nmd,rd,2] 
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: SRP2       
+	00101: SLOOP      
+	00102: IP         
+	00103: MDAP[rd]   
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: MDAP[rd]   
+	00106: MDAP[rd]   
+	00107: SVTCA[y-axis] 
+	00108: MIAP[rd+ci] 
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: MDRP[nrp0,nmd,rd,0] 
+	00111: MIAP[rd+ci] 
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: MDRP[nrp0,nmd,rd,0] 
+	00114: CALL       
+	00115: SVTCA[y-axis] 
+	00116: SMD        
+	00117: RTG        
+	00118: SRP0       
+	00119: FLIPON     
+	00120: MIRP[nrp0,md,rd,1] 
+	00121: SRP2       
+	00122: IP         
+	00123: IP         
+	00124: IUP[y]     
+	00125: IUP[x]     
+	00126: SDS        
+	00127: SDB        
+	00128: DELTAP1    
+	00129: SDS        
+	00130: SDB        
+	00131: DELTAP1    
+	00132: CALL       
+	00133: DELTAP1    
+	00134: DELTAP1    
+	00135: CALL       
+	00136: DELTAP1    
+	00137: DELTAP1    
+	00138: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual Rep-  1 Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                                      Off
+	  6:  YDual                               On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short         Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:  YDual                               On
+	 17:  YDual XDual                 X-Short Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual       Rep-  1 Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual Rep-  1 Y-Short X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:                      Y-Short X-Short On
+	 42:                      Y-Short X-Short Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short Off
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short         On
+	 47:  YDual XDual         Y-Short         Off
+	 48:  YDual               Y-Short         Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:                      Y-Short         Off
+	 52:        XDual         Y-Short         On
+	 53:        XDual         Y-Short         Off
+	 54:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1032,   739)  ->  Abs (  1032,   739)
+	  1: Rel (    84,   -35)  ->  Abs (  1116,   704)
+	  2: Rel (   105,  -160)  ->  Abs (  1221,   544)
+	  3: Rel (     0,   -79)  ->  Abs (  1221,   465)
+	  4: Rel (     0,  -210)  ->  Abs (  1221,   255)
+	  5: Rel (  -325,  -263)  ->  Abs (   896,    -8)
+	  6: Rel (  -259,     0)  ->  Abs (   637,    -8)
+	  7: Rel (  -202,     0)  ->  Abs (   435,    -8)
+	  8: Rel (  -341,   202)  ->  Abs (    94,   194)
+	  9: Rel (     0,   111)  ->  Abs (    94,   305)
+	 10: Rel (     0,    39)  ->  Abs (    94,   344)
+	 11: Rel (    54,    62)  ->  Abs (   148,   406)
+	 12: Rel (    36,     0)  ->  Abs (   184,   406)
+	 13: Rel (    67,     0)  ->  Abs (   251,   406)
+	 14: Rel (    21,   -41)  ->  Abs (   272,   365)
+	 15: Rel (   113,  -201)  ->  Abs (   385,   164)
+	 16: Rel (   260,     0)  ->  Abs (   645,   164)
+	 17: Rel (   182,     0)  ->  Abs (   827,   164)
+	 18: Rel (   199,   163)  ->  Abs (  1026,   327)
+	 19: Rel (     0,   124)  ->  Abs (  1026,   451)
+	 20: Rel (     0,    64)  ->  Abs (  1026,   515)
+	 21: Rel (   -79,    92)  ->  Abs (   947,   607)
+	 22: Rel (  -110,    34)  ->  Abs (   837,   641)
+	 23: Rel (  -147,     0)  ->  Abs (   690,   641)
+	 24: Rel (   -39,     0)  ->  Abs (   651,   641)
+	 25: Rel (   -47,    53)  ->  Abs (   604,   694)
+	 26: Rel (     0,    35)  ->  Abs (   604,   729)
+	 27: Rel (     0,    32)  ->  Abs (   604,   761)
+	 28: Rel (    59,    52)  ->  Abs (   663,   813)
+	 29: Rel (    52,     0)  ->  Abs (   715,   813)
+	 30: Rel (    40,     0)  ->  Abs (   755,   813)
+	 31: Rel (    36,    -2)  ->  Abs (   791,   811)
+	 32: Rel (    71,    -6)  ->  Abs (   862,   805)
+	 33: Rel (    16,     0)  ->  Abs (   878,   805)
+	 34: Rel (   177,    73)  ->  Abs (  1055,   878)
+	 35: Rel (   100,   119)  ->  Abs (  1155,   997)
+	 36: Rel (     0,    78)  ->  Abs (  1155,  1075)
+	 37: Rel (     0,    90)  ->  Abs (  1155,  1165)
+	 38: Rel (  -155,   121)  ->  Abs (  1000,  1286)
+	 39: Rel (  -128,     0)  ->  Abs (   872,  1286)
+	 40: Rel (  -220,     0)  ->  Abs (   652,  1286)
+	 41: Rel (  -115,  -153)  ->  Abs (   537,  1133)
+	 42: Rel (   -31,   -43)  ->  Abs (   506,  1090)
+	 43: Rel (   -49,     0)  ->  Abs (   457,  1090)
+	 44: Rel (   -38,     0)  ->  Abs (   419,  1090)
+	 45: Rel (   -50,    46)  ->  Abs (   369,  1136)
+	 46: Rel (     0,    38)  ->  Abs (   369,  1174)
+	 47: Rel (     0,    89)  ->  Abs (   369,  1263)
+	 48: Rel (   322,   195)  ->  Abs (   691,  1458)
+	 49: Rel (   204,     0)  ->  Abs (   895,  1458)
+	 50: Rel (   194,     0)  ->  Abs (  1089,  1458)
+	 51: Rel (   261,  -210)  ->  Abs (  1350,  1248)
+	 52: Rel (     0,  -156)  ->  Abs (  1350,  1092)
+	 53: Rel (     0,  -119)  ->  Abs (  1350,   973)
+	 54: Rel (  -166,  -187)  ->  Abs (  1184,   786)
+
+	Glyph  23: off = 0x00001042, len = 288
+	  numberOfContours:	1
+	  xMin:			174
+	  yMin:			-8
+	  xMax:			1382
+	  yMax:			1460
+
+	EndPoints
+	---------
+	  0:  47
+
+	  Length of Instructions:	139
+	00000: NPUSHB      (80):   105    28     1    34    36     1    82    36   141    26 
+	                            27    20    26    26    27    27    26    25    16    31 
+	                             1    31    31    40    25     0    10    13    44    13 
+	                            38    20    18    40    40     1    82    13    44    13 
+	                           141    18    40    20    18    18    40    40     5    44 
+	                            13   137    47    18   143    18     2    18   143    25 
+	                             1    25    38     0    36     2   153    20    10     8 
+	                            36   153    22    22    15    29    42     7    15    25 
+	00082: SVTCA[y-axis] 
+	00083: MIAP[rd+ci] 
+	00084: MIAP[rd+ci] 
+	00085: MDRP[nrp0,nmd,rd,0] 
+	00086: SRP2       
+	00087: IP         
+	00088: MDAP[rd]   
+	00089: MIRP[nrp0,md,rd,1] 
+	00090: MDRP[srp0,nmd,rd,0] 
+	00091: IP         
+	00092: IP         
+	00093: MIRP[nrp0,md,rd,1] 
+	00094: SRP1       
+	00095: IP         
+	00096: IP         
+	00097: IUP[x]     
+	00098: SVTCA[x-axis] 
+	00099: MDAP[rd]   
+	00100: DELTAP1    
+	00101: MDAP[rd]   
+	00102: DELTAP1    
+	00103: MIRP[srp0,md,rd,1] 
+	00104: MDRP[srp0,nmd,rd,0] 
+	00105: MDRP[nrp0,nmd,rd,0] 
+	00106: SHP[rp1,zp0] 
+	00107: SDPVTL[1]  
+	00108: SRP0       
+	00109: CALL       
+	00110: SDPVTL[1]  
+	00111: CALL       
+	00112: MDRP[nrp0,nmd,rd,0] 
+	00113: SDPVTL[1]  
+	00114: MDRP[nrp0,nmd,nrd,0] 
+	00115: MDRP[nrp0,nmd,nrd,0] 
+	00116: SRP0       
+	00117: SDPVTL[1]  
+	00118: MDRP[nrp0,nmd,nrd,0] 
+	00119: MDRP[nrp0,nmd,nrd,0] 
+	00120: SVTCA[x-axis] 
+	00121: SRP1       
+	00122: SRP2       
+	00123: IP         
+	00124: RTG        
+	00125: MDAP[rd]   
+	00126: DELTAP1    
+	00127: SRP2       
+	00128: IP         
+	00129: IP         
+	00130: SDPVTL[1]  
+	00131: SRP0       
+	00132: CALL       
+	00133: CALL       
+	00134: SRP0       
+	00135: MDRP[nrp0,nmd,rd,0] 
+	00136: IUP[y]     
+	00137: SVTCA[x-axis] 
+	00138: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:                              X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:              Rep-  1 Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:        XDual                 X-Short On
+	 21:                      Y-Short         Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:        XDual                 X-Short Off
+	 28:                                      Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:                                      Off
+	 36:                      Y-Short X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:  YDual               Y-Short         On
+	 39:        XDual Rep-  1         X-Short Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:        XDual         Y-Short         On
+	 45:        XDual         Y-Short         Off
+	 46:                      Y-Short X-Short Off
+	 47:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1106,   743)  ->  Abs (  1106,   743)
+	  1: Rel (   166,     5)  ->  Abs (  1272,   748)
+	  2: Rel (    39,     0)  ->  Abs (  1311,   748)
+	  3: Rel (    36,     0)  ->  Abs (  1347,   748)
+	  4: Rel (    35,   -27)  ->  Abs (  1382,   721)
+	  5: Rel (     0,   -41)  ->  Abs (  1382,   680)
+	  6: Rel (     0,   -51)  ->  Abs (  1382,   629)
+	  7: Rel (   -62,   -60)  ->  Abs (  1320,   569)
+	  8: Rel (   -54,     0)  ->  Abs (  1266,   569)
+	  9: Rel (  -141,     0)  ->  Abs (  1125,   569)
+	 10: Rel (   -78,    -2)  ->  Abs (  1047,   567)
+	 11: Rel (   -90,  -266)  ->  Abs (   957,   301)
+	 12: Rel (   -20,  -131)  ->  Abs (   937,   170)
+	 13: Rel (   -17,  -108)  ->  Abs (   920,    62)
+	 14: Rel (   -38,   -70)  ->  Abs (   882,    -8)
+	 15: Rel (   -63,     0)  ->  Abs (   819,    -8)
+	 16: Rel (   -43,     0)  ->  Abs (   776,    -8)
+	 17: Rel (   -47,    57)  ->  Abs (   729,    49)
+	 18: Rel (     0,    47)  ->  Abs (   729,    96)
+	 19: Rel (     0,   101)  ->  Abs (   729,   197)
+	 20: Rel (   131,   366)  ->  Abs (   860,   563)
+	 21: Rel (  -481,   -12)  ->  Abs (   379,   551)
+	 22: Rel (   -90,     0)  ->  Abs (   289,   551)
+	 23: Rel (   -48,     0)  ->  Abs (   241,   551)
+	 24: Rel (   -67,    72)  ->  Abs (   174,   623)
+	 25: Rel (     0,    45)  ->  Abs (   174,   668)
+	 26: Rel (     0,    53)  ->  Abs (   174,   721)
+	 27: Rel (   228,   389)  ->  Abs (   402,  1110)
+	 28: Rel (   296,   320)  ->  Abs (   698,  1430)
+	 29: Rel (    86,     0)  ->  Abs (   784,  1430)
+	 30: Rel (    84,     0)  ->  Abs (   868,  1430)
+	 31: Rel (     0,   -52)  ->  Abs (   868,  1378)
+	 32: Rel (     0,   -35)  ->  Abs (   868,  1343)
+	 33: Rel (   -49,   -34)  ->  Abs (   819,  1309)
+	 34: Rel (  -132,   -91)  ->  Abs (   687,  1218)
+	 35: Rel (  -275,  -419)  ->  Abs (   412,   799)
+	 36: Rel (   -25,   -78)  ->  Abs (   387,   721)
+	 37: Rel (    86,     0)  ->  Abs (   473,   721)
+	 38: Rel (   451,    16)  ->  Abs (   924,   737)
+	 39: Rel (   112,   301)  ->  Abs (  1036,  1038)
+	 40: Rel (   147,   322)  ->  Abs (  1183,  1360)
+	 41: Rel (    74,   100)  ->  Abs (  1257,  1460)
+	 42: Rel (    50,     0)  ->  Abs (  1307,  1460)
+	 43: Rel (    53,     0)  ->  Abs (  1360,  1460)
+	 44: Rel (     0,   -57)  ->  Abs (  1360,  1403)
+	 45: Rel (     0,   -33)  ->  Abs (  1360,  1370)
+	 46: Rel (   -91,  -195)  ->  Abs (  1269,  1175)
+	 47: Rel (   -51,  -133)  ->  Abs (  1218,  1042)
+
+	Glyph  24: off = 0x00001162, len = 280
+	  numberOfContours:	1
+	  xMin:			88
+	  yMin:			-8
+	  xMax:			1430
+	  yMax:			1460
+
+	EndPoints
+	---------
+	  0:  47
+
+	  Length of Instructions:	137
+	00000: NPUSHB      (92):   121    26   137    26     2    75    22    91    22   107 
+	                            22     3   112    16   128    16     2    10    32    13 
+	                            17    72    75     9    91     9   107     9     3    10 
+	                             6    26     6    42     6   122     6   138     6     5 
+	                            27     0    46    46     0     1    82     0   142    32 
+	                            34    20    32    34    34    15    32    31    32    47 
+	                            32     3    32    32    11    41    21   137     5    49 
+	                            11     0     2    28    24   153     2     2    38     8 
+	                            36   153    46    44   153    38     7    14    18   153 
+	                             8    25 
+	00094: SVTCA[y-axis] 
+	00095: MIAP[rd+ci] 
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: MDRP[nrp0,nmd,rd,0] 
+	00098: MIAP[rd+ci] 
+	00099: MIRP[srp0,md,rd,1] 
+	00100: MDRP[srp0,nmd,rd,2] 
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: SRP1       
+	00103: SRP2       
+	00104: IP         
+	00105: MDAP[rd]   
+	00106: MIRP[srp0,md,rd,1] 
+	00107: MDRP[nrp0,nmd,rd,0] 
+	00108: SRP1       
+	00109: IP         
+	00110: IUP[x]     
+	00111: SVTCA[x-axis] 
+	00112: MDAP[rd]   
+	00113: SRP0       
+	00114: MDRP[srp0,nmd,rd,2] 
+	00115: MIRP[nrp0,md,rd,1] 
+	00116: MDRP[nrp0,nmd,rd,0] 
+	00117: SRP2       
+	00118: IP         
+	00119: MDAP[rd]   
+	00120: DELTAP1    
+	00121: SHP[rp1,zp0] 
+	00122: SDPVTL[1]  
+	00123: CALL       
+	00124: CALL       
+	00125: SRP0       
+	00126: MDRP[nrp0,nmd,rd,0] 
+	00127: SDPVTL[1]  
+	00128: MDRP[nrp0,nmd,nrd,0] 
+	00129: IUP[y]     
+	00130: SVTCA[y-axis] 
+	00131: DELTAP1    
+	00132: DELTAP1    
+	00133: CALL       
+	00134: DELTAP1    
+	00135: DELTAP1    
+	00136: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                                      Off
+	  8:  YDual                               On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short         Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual                               On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:                      Y-Short X-Short On
+	 27:                      Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:        XDual                 X-Short Off
+	 34:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 37:  YDual               Y-Short         Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:        XDual         Y-Short         Off
+	 43:                      Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                               Off
+	 46:                      Y-Short         On
+	 47:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   506,   887)  ->  Abs (   506,   887)
+	  1: Rel (   138,    63)  ->  Abs (   644,   950)
+	  2: Rel (   155,     0)  ->  Abs (   799,   950)
+	  3: Rel (   206,     0)  ->  Abs (  1005,   950)
+	  4: Rel (   255,  -248)  ->  Abs (  1260,   702)
+	  5: Rel (     0,  -163)  ->  Abs (  1260,   539)
+	  6: Rel (     0,  -239)  ->  Abs (  1260,   300)
+	  7: Rel (  -363,  -308)  ->  Abs (   897,    -8)
+	  8: Rel (  -309,     0)  ->  Abs (   588,    -8)
+	  9: Rel (  -209,     0)  ->  Abs (   379,    -8)
+	 10: Rel (  -291,   206)  ->  Abs (    88,   198)
+	 11: Rel (     0,   105)  ->  Abs (    88,   303)
+	 12: Rel (     0,    45)  ->  Abs (    88,   348)
+	 13: Rel (    50,    70)  ->  Abs (   138,   418)
+	 14: Rel (    36,     0)  ->  Abs (   174,   418)
+	 15: Rel (    74,     0)  ->  Abs (   248,   418)
+	 16: Rel (    14,   -39)  ->  Abs (   262,   379)
+	 17: Rel (    86,  -213)  ->  Abs (   348,   166)
+	 18: Rel (   281,     0)  ->  Abs (   629,   166)
+	 19: Rel (   192,     0)  ->  Abs (   821,   166)
+	 20: Rel (   244,   223)  ->  Abs (  1065,   389)
+	 21: Rel (     0,   131)  ->  Abs (  1065,   520)
+	 22: Rel (     0,   115)  ->  Abs (  1065,   635)
+	 23: Rel (  -147,   141)  ->  Abs (   918,   776)
+	 24: Rel (  -160,     0)  ->  Abs (   758,   776)
+	 25: Rel (   -81,     0)  ->  Abs (   677,   776)
+	 26: Rel (  -124,   -39)  ->  Abs (   553,   737)
+	 27: Rel (  -101,   -32)  ->  Abs (   452,   705)
+	 28: Rel (   -55,     0)  ->  Abs (   397,   705)
+	 29: Rel (   -33,     0)  ->  Abs (   364,   705)
+	 30: Rel (   -49,    50)  ->  Abs (   315,   755)
+	 31: Rel (     0,    36)  ->  Abs (   315,   791)
+	 32: Rel (     0,    59)  ->  Abs (   315,   850)
+	 33: Rel (    99,   323)  ->  Abs (   414,  1173)
+	 34: Rel (    77,   154)  ->  Abs (   491,  1327)
+	 35: Rel (    75,    80)  ->  Abs (   566,  1407)
+	 36: Rel (    58,    17)  ->  Abs (   624,  1424)
+	 37: Rel (   531,    36)  ->  Abs (  1155,  1460)
+	 38: Rel (   203,     0)  ->  Abs (  1358,  1460)
+	 39: Rel (    36,     0)  ->  Abs (  1394,  1460)
+	 40: Rel (    36,   -27)  ->  Abs (  1430,  1433)
+	 41: Rel (     0,   -42)  ->  Abs (  1430,  1391)
+	 42: Rel (     0,   -51)  ->  Abs (  1430,  1340)
+	 43: Rel (   -64,   -62)  ->  Abs (  1366,  1278)
+	 44: Rel (   -53,     0)  ->  Abs (  1313,  1278)
+	 45: Rel (  -380,     0)  ->  Abs (   933,  1278)
+	 46: Rel (  -294,   -27)  ->  Abs (   639,  1251)
+	 47: Rel (   -79,  -163)  ->  Abs (   560,  1088)
+
+	Glyph  25: off = 0x0000127A, len = 262
+	  numberOfContours:	2
+	  xMin:			168
+	  yMin:			-8
+	  xMax:			1432
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  27
+	  1:  40
+
+	  Length of Instructions:	133
+	00000: NPUSHB      (29):   105    40     1    36    38   100    38     2    70    34 
+	                            86    34     2   107    22   123    22     2   128    17 
+	                             1     6    17    22    17    38    17     3    13 
+	00031: PUSHW[1]            -16 
+	00034: NPUSHB      (61):     9    17    72   122     6   138     6     2     6     4 
+	                            22     4   118     4   134     4     4    28   153    64 
+	                             0     5    31    11     4     2     2     8    20   128 
+	                            25   153    15     7    36   153     8    25     0    33 
+	                            18    39   137   143     5   159     5     2    16     5 
+	                             1     5    42    33   137   143    11   159    11     2 
+	                            11 
+	00097: MDAP[rd]   
+	00098: DELTAP1    
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: SRP0       
+	00101: MDRP[srp0,nmd,rd,2] 
+	00102: DELTAP1    
+	00103: DELTAP1    
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: MDRP[nrp0,nmd,rd,0] 
+	00106: SRP1       
+	00107: IP         
+	00108: SVTCA[y-axis] 
+	00109: MIAP[rd+ci] 
+	00110: MIRP[nrp0,md,rd,1] 
+	00111: MIAP[rd+ci] 
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: SMD        
+	00114: MDRP[nrp0,md,rd,1] 
+	00115: SRP2       
+	00116: IP         
+	00117: MDAP[rd]   
+	00118: SLOOP      
+	00119: IP         
+	00120: SMD        
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: IUP[y]     
+	00123: IUP[x]     
+	00124: DELTAP1    
+	00125: DELTAP1    
+	00126: CALL       
+	00127: DELTAP1    
+	00128: DELTAP1    
+	00129: DELTAP1    
+	00130: DELTAP1    
+	00131: DELTAP1    
+	00132: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                                      Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:                                      Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:              Rep-  1                 Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short On
+	 23:  YDual       Rep-  1 Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:                                      Off
+	 28:        XDual                 X-Short On
+	 29:  YDual                       X-Short Off
+	 30:              Rep-  2 Y-Short X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:  YDual               Y-Short         Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   430,   770)  ->  Abs (   430,   770)
+	  1: Rel (   222,   137)  ->  Abs (   652,   907)
+	  2: Rel (   169,     0)  ->  Abs (   821,   907)
+	  3: Rel (   207,     0)  ->  Abs (  1028,   907)
+	  4: Rel (   248,  -220)  ->  Abs (  1276,   687)
+	  5: Rel (     0,  -189)  ->  Abs (  1276,   498)
+	  6: Rel (     0,  -199)  ->  Abs (  1276,   299)
+	  7: Rel (  -388,  -307)  ->  Abs (   888,    -8)
+	  8: Rel (  -222,     0)  ->  Abs (   666,    -8)
+	  9: Rel (  -225,     0)  ->  Abs (   441,    -8)
+	 10: Rel (  -273,   265)  ->  Abs (   168,   257)
+	 11: Rel (     0,   204)  ->  Abs (   168,   461)
+	 12: Rel (     0,   211)  ->  Abs (   168,   672)
+	 13: Rel (   256,   490)  ->  Abs (   424,  1162)
+	 14: Rel (   413,   302)  ->  Abs (   837,  1464)
+	 15: Rel (   226,     0)  ->  Abs (  1063,  1464)
+	 16: Rel (   124,     0)  ->  Abs (  1187,  1464)
+	 17: Rel (   245,  -133)  ->  Abs (  1432,  1331)
+	 18: Rel (     0,   -76)  ->  Abs (  1432,  1255)
+	 19: Rel (     0,  -100)  ->  Abs (  1432,  1155)
+	 20: Rel (   -89,     0)  ->  Abs (  1343,  1155)
+	 21: Rel (   -58,     0)  ->  Abs (  1285,  1155)
+	 22: Rel (   -66,    70)  ->  Abs (  1219,  1225)
+	 23: Rel (   -27,    28)  ->  Abs (  1192,  1253)
+	 24: Rel (  -114,    39)  ->  Abs (  1078,  1292)
+	 25: Rel (   -54,     0)  ->  Abs (  1024,  1292)
+	 26: Rel (  -168,     0)  ->  Abs (   856,  1292)
+	 27: Rel (  -304,  -266)  ->  Abs (   552,  1026)
+	 28: Rel (   249,  -289)  ->  Abs (   801,   737)
+	 29: Rel (   -86,     0)  ->  Abs (   715,   737)
+	 30: Rel (  -168,   -54)  ->  Abs (   547,   683)
+	 31: Rel (  -167,  -109)  ->  Abs (   380,   574)
+	 32: Rel (   -18,   -70)  ->  Abs (   362,   504)
+	 33: Rel (     0,   -43)  ->  Abs (   362,   461)
+	 34: Rel (     0,  -138)  ->  Abs (   362,   323)
+	 35: Rel (   162,  -159)  ->  Abs (   524,   164)
+	 36: Rel (   142,     0)  ->  Abs (   666,   164)
+	 37: Rel (   154,     0)  ->  Abs (   820,   164)
+	 38: Rel (   261,   204)  ->  Abs (  1081,   368)
+	 39: Rel (     0,   130)  ->  Abs (  1081,   498)
+	 40: Rel (     0,   239)  ->  Abs (  1081,   737)
+
+	Glyph  26: off = 0x00001380, len = 152
+	  numberOfContours:	1
+	  xMin:			287
+	  yMin:			-10
+	  xMax:			1409
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	60
+	00000: NPUSHB      (37):   136    16     1    15    64     9    17    72     0   153 
+	                             7     9     7     8     6    19    25   150     0   166 
+	                             0     2     0    40    11    17    72     0    11    17 
+	                           137    21    21     4    11    27     4 
+	00039: MDAP[rd]   
+	00040: SRP0       
+	00041: MDRP[nrp0,nmd,rd,0] 
+	00042: SRP1       
+	00043: IP         
+	00044: MDAP[rd]   
+	00045: MIRP[nrp0,md,rd,1] 
+	00046: SRP2       
+	00047: IP         
+	00048: CALL       
+	00049: DELTAP1    
+	00050: SVTCA[y-axis] 
+	00051: MIAP[rd+ci] 
+	00052: MIAP[rd+ci] 
+	00053: MIAP[rd+ci] 
+	00054: SHP[rp1,zp0] 
+	00055: MIRP[nrp0,md,rd,1] 
+	00056: IUP[y]     
+	00057: IUP[x]     
+	00058: CALL       
+	00059: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:                      Y-Short         On
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short On
+	 14:              Rep-  1                 Off
+	 16:                      Y-Short X-Short On
+	 17:              Rep-  1 Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:              Rep-  1                 Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1135,  1292)  ->  Abs (  1135,  1292)
+	  1: Rel (  -752,     0)  ->  Abs (   383,  1292)
+	  2: Rel (   -44,     0)  ->  Abs (   339,  1292)
+	  3: Rel (   -52,    54)  ->  Abs (   287,  1346)
+	  4: Rel (     0,    40)  ->  Abs (   287,  1386)
+	  5: Rel (     0,    34)  ->  Abs (   287,  1420)
+	  6: Rel (    41,    46)  ->  Abs (   328,  1466)
+	  7: Rel (    34,     0)  ->  Abs (   362,  1466)
+	  8: Rel (   701,    -8)  ->  Abs (  1063,  1458)
+	  9: Rel (   252,     8)  ->  Abs (  1315,  1466)
+	 10: Rel (    94,     0)  ->  Abs (  1409,  1466)
+	 11: Rel (     0,   -71)  ->  Abs (  1409,  1395)
+	 12: Rel (     0,   -26)  ->  Abs (  1409,  1369)
+	 13: Rel (   -37,   -44)  ->  Abs (  1372,  1325)
+	 14: Rel (  -263,  -289)  ->  Abs (  1109,  1036)
+	 15: Rel (  -462,  -701)  ->  Abs (   647,   335)
+	 16: Rel (  -108,  -251)  ->  Abs (   539,    84)
+	 17: Rel (   -21,   -47)  ->  Abs (   518,    37)
+	 18: Rel (   -60,   -47)  ->  Abs (   458,   -10)
+	 19: Rel (   -38,     0)  ->  Abs (   420,   -10)
+	 20: Rel (   -98,     0)  ->  Abs (   322,   -10)
+	 21: Rel (     0,    90)  ->  Abs (   322,    80)
+	 22: Rel (     0,    25)  ->  Abs (   322,   105)
+	 23: Rel (    35,   116)  ->  Abs (   357,   221)
+	 24: Rel (   343,   532)  ->  Abs (   700,   753)
+	 25: Rel (   316,   411)  ->  Abs (  1016,  1164)
+
+	Glyph  27: off = 0x00001418, len = 382
+	  numberOfContours:	3
+	  xMin:			84
+	  yMin:			-8
+	  xMax:			1507
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  27
+	  1:  36
+	  2:  48
+
+	  Length of Instructions:	232
+	00000: NPUSHB      (12):    54    45     1   121    38   137    38     2    74    34 
+	                             1    29 
+	00014: PUSHW[1]            -64 
+	00017: NPUSHB     (146):    10    14    72   118    28   134    28     2     3    19 
+	                            19    19    35    19    99    19   115    19   131    19 
+	                             6    84    15   100    15     2    54    10   134    10 
+	                             2   122     8   138     8     2     9     7     1    73 
+	                             3    89     3     2   102     0     1     0    37     0 
+	                            28    37   153    12    28    20    37    12    12    28 
+	                            37    28     0    28   141    12    37    20    12    12 
+	                            37   165    12     1     6    12   150    12     2    45 
+	                            26    61    26    77    26     3   125    26   141    26 
+	                             2    26    30    20    28    47    22     1    22     0 
+	                             2    12    14    22    28    35    37    46     9     6 
+	                            32   153    17     7    43   153     6    25    37    12 
+	                            14    46   137    28     0     2    35   137   127    14 
+	                           143    14     2    14    14     2     9    30   137    24 
+	                            20    50    40   137     9    49 
+	00165: SRP0       
+	00166: MDRP[srp0,md,rd,2] 
+	00167: MIRP[nrp0,md,rd,1] 
+	00168: SRP0       
+	00169: MDRP[srp0,nmd,rd,0] 
+	00170: MDRP[nrp0,md,rd,1] 
+	00171: MIRP[nrp0,md,rd,1] 
+	00172: SRP2       
+	00173: IP         
+	00174: IP         
+	00175: MDAP[rd]   
+	00176: DELTAP1    
+	00177: MIRP[nrp0,md,rd,1] 
+	00178: MDAP[rd]   
+	00179: IP         
+	00180: IP         
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: SRP1       
+	00183: IP         
+	00184: IP         
+	00185: SVTCA[y-axis] 
+	00186: MIAP[rd+ci] 
+	00187: MIRP[nrp0,md,rd,1] 
+	00188: MIAP[rd+ci] 
+	00189: MIRP[nrp0,md,rd,1] 
+	00190: SRP2       
+	00191: SLOOP      
+	00192: IP         
+	00193: MDAP[rd]   
+	00194: DELTAP1    
+	00195: SRP2       
+	00196: IP         
+	00197: IP         
+	00198: MDRP[nrp0,md,rd,1] 
+	00199: DELTAP1    
+	00200: DELTAP2    
+	00201: DELTAP1    
+	00202: DELTAP1    
+	00203: SDPVTL[1]  
+	00204: SRP0       
+	00205: CALL       
+	00206: SDPVTL[1]  
+	00207: RDTG       
+	00208: MDRP[nrp0,nmd,rd,0] 
+	00209: SDPVTL[1]  
+	00210: SFVTL[=p1,p2] 
+	00211: RTG        
+	00212: CALL       
+	00213: SFVTL[=p1,p2] 
+	00214: RDTG       
+	00215: SRP0       
+	00216: MDRP[nrp0,nmd,rd,0] 
+	00217: IUP[y]     
+	00218: IUP[x]     
+	00219: SVTCA[y-axis] 
+	00220: DELTAP1    
+	00221: DELTAP1    
+	00222: DELTAP1    
+	00223: DELTAP1    
+	00224: DELTAP1    
+	00225: DELTAP1    
+	00226: DELTAP1    
+	00227: DELTAP1    
+	00228: CALL       
+	00229: DELTAP1    
+	00230: DELTAP1    
+	00231: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short         Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:                      Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short         Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual               Y-Short         Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:                      Y-Short         Off
+	 20:        XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:                      Y-Short         On
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual               Y-Short         On
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:                      Y-Short X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:        XDual                 X-Short On
+	 38:              Rep-  1 Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:        XDual         Y-Short X-Short Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short         On
+	 47:  YDual XDual         Y-Short         Off
+	 48:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   831,   805)  ->  Abs (   831,   805)
+	  1: Rel (   310,  -204)  ->  Abs (  1141,   601)
+	  2: Rel (     0,  -187)  ->  Abs (  1141,   414)
+	  3: Rel (     0,  -113)  ->  Abs (  1141,   301)
+	  4: Rel (  -167,  -194)  ->  Abs (   974,   107)
+	  5: Rel (  -281,  -115)  ->  Abs (   693,    -8)
+	  6: Rel (  -134,     0)  ->  Abs (   559,    -8)
+	  7: Rel (  -205,     0)  ->  Abs (   354,    -8)
+	  8: Rel (  -270,   206)  ->  Abs (    84,   198)
+	  9: Rel (     0,   144)  ->  Abs (    84,   342)
+	 10: Rel (     0,   144)  ->  Abs (    84,   486)
+	 11: Rel (   196,   215)  ->  Abs (   280,   701)
+	 12: Rel (   230,   122)  ->  Abs (   510,   823)
+	 13: Rel (  -117,   106)  ->  Abs (   393,   929)
+	 14: Rel (     0,   146)  ->  Abs (   393,  1075)
+	 15: Rel (     0,   166)  ->  Abs (   393,  1241)
+	 16: Rel (   307,   223)  ->  Abs (   700,  1464)
+	 17: Rel (   215,     0)  ->  Abs (   915,  1464)
+	 18: Rel (   157,     0)  ->  Abs (  1072,  1464)
+	 19: Rel (   256,  -154)  ->  Abs (  1328,  1310)
+	 20: Rel (    52,  -136)  ->  Abs (  1380,  1174)
+	 21: Rel (    44,     4)  ->  Abs (  1424,  1178)
+	 22: Rel (    22,     0)  ->  Abs (  1446,  1178)
+	 23: Rel (    61,     0)  ->  Abs (  1507,  1178)
+	 24: Rel (     0,   -68)  ->  Abs (  1507,  1110)
+	 25: Rel (     0,  -125)  ->  Abs (  1507,   985)
+	 26: Rel (  -149,     0)  ->  Abs (  1358,   985)
+	 27: Rel (  -141,     0)  ->  Abs (  1217,   985)
+	 28: Rel (  -539,   -78)  ->  Abs (   678,   907)
+	 29: Rel (   249,   117)  ->  Abs (   927,  1024)
+	 30: Rel (   279,    98)  ->  Abs (  1206,  1122)
+	 31: Rel (   -56,   170)  ->  Abs (  1150,  1292)
+	 32: Rel (  -251,     0)  ->  Abs (   899,  1292)
+	 33: Rel (  -123,     0)  ->  Abs (   776,  1292)
+	 34: Rel (  -190,  -132)  ->  Abs (   586,  1160)
+	 35: Rel (     0,   -85)  ->  Abs (   586,  1075)
+	 36: Rel (     0,   -99)  ->  Abs (   586,   976)
+	 37: Rel (    71,  -257)  ->  Abs (   657,   719)
+	 38: Rel (  -193,   -98)  ->  Abs (   464,   621)
+	 39: Rel (  -185,  -182)  ->  Abs (   279,   439)
+	 40: Rel (     0,   -97)  ->  Abs (   279,   342)
+	 41: Rel (     0,   -67)  ->  Abs (   279,   275)
+	 42: Rel (   136,  -111)  ->  Abs (   415,   164)
+	 43: Rel (   144,     0)  ->  Abs (   559,   164)
+	 44: Rel (   155,     0)  ->  Abs (   714,   164)
+	 45: Rel (   232,   151)  ->  Abs (   946,   315)
+	 46: Rel (     0,    99)  ->  Abs (   946,   414)
+	 47: Rel (     0,    78)  ->  Abs (   946,   492)
+	 48: Rel (  -131,   130)  ->  Abs (   815,   622)
+
+	Glyph  28: off = 0x00001596, len = 258
+	  numberOfContours:	2
+	  xMin:			217
+	  yMin:			-10
+	  xMax:			1364
+	  yMax:			1462
+
+	EndPoints
+	---------
+	  0:  28
+	  1:  45
+
+	  Length of Instructions:	117
+	00000: NPUSHB      (83):    69    44    85    44     2    41    42   105    42   121 
+	                            42   137    42     4    52    28   100    28     2   122 
+	                            14   138    14     2    41    13     1   102    11   118 
+	                            11   134    11     3   105     5   121     5   137     5 
+	                             3   105     1   121     1   137     1     3    29   153 
+	                             0     6    12    38     4     9     3     3    16    40 
+	                           153     9     7    22    26   153    16    25     0    19 
+	                            38   137    12    47    43   137     6     0    19    96 
+	                            19     2    19 
+	00085: MDAP[rd]   
+	00086: DELTAP1    
+	00087: MDRP[srp0,md,rd,0] 
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: SRP0       
+	00090: MDRP[srp0,nmd,rd,2] 
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: SRP1       
+	00093: IP         
+	00094: SVTCA[y-axis] 
+	00095: MIAP[rd+ci] 
+	00096: MIRP[srp0,md,rd,1] 
+	00097: MDRP[nrp0,nmd,rd,0] 
+	00098: MIAP[rd+ci] 
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: SRP2       
+	00101: IP         
+	00102: MDAP[rd]   
+	00103: SRP2       
+	00104: SLOOP      
+	00105: IP         
+	00106: MIRP[nrp0,md,rd,1] 
+	00107: IUP[y]     
+	00108: IUP[x]     
+	00109: DELTAP1    
+	00110: DELTAP1    
+	00111: DELTAP1    
+	00112: DELTAP1    
+	00113: DELTAP1    
+	00114: DELTAP1    
+	00115: DELTAP1    
+	00116: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:              Rep-  1 Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short         Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:                                      Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:                      Y-Short         Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                              X-Short Off
+	 15:                                      Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:                                      Off
+	 29:                              X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual Rep-  6 Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:        XDual                         Off
+	 40:  YDual                               On
+	 41:  YDual                       X-Short Off
+	 42:                      Y-Short X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1087,   668)  ->  Abs (  1087,   668)
+	  1: Rel (   -69,   -56)  ->  Abs (  1018,   612)
+	  2: Rel (  -190,   -67)  ->  Abs (   828,   545)
+	  3: Rel (   -83,     0)  ->  Abs (   745,   545)
+	  4: Rel (  -198,     0)  ->  Abs (   547,   545)
+	  5: Rel (  -260,   231)  ->  Abs (   287,   776)
+	  6: Rel (     0,   180)  ->  Abs (   287,   956)
+	  7: Rel (     0,   195)  ->  Abs (   287,  1151)
+	  8: Rel (   357,   311)  ->  Abs (   644,  1462)
+	  9: Rel (   247,     0)  ->  Abs (   891,  1462)
+	 10: Rel (   217,     0)  ->  Abs (  1108,  1462)
+	 11: Rel (   256,  -241)  ->  Abs (  1364,  1221)
+	 12: Rel (     0,  -197)  ->  Abs (  1364,  1024)
+	 13: Rel (     0,  -222)  ->  Abs (  1364,   802)
+	 14: Rel (  -250,  -506)  ->  Abs (  1114,   296)
+	 15: Rel (  -415,  -306)  ->  Abs (   699,   -10)
+	 16: Rel (  -244,     0)  ->  Abs (   455,   -10)
+	 17: Rel (  -103,     0)  ->  Abs (   352,   -10)
+	 18: Rel (  -135,    62)  ->  Abs (   217,    52)
+	 19: Rel (     0,    50)  ->  Abs (   217,   102)
+	 20: Rel (     0,    42)  ->  Abs (   217,   144)
+	 21: Rel (    46,    51)  ->  Abs (   263,   195)
+	 22: Rel (    38,     0)  ->  Abs (   301,   195)
+	 23: Rel (    33,     0)  ->  Abs (   334,   195)
+	 24: Rel (    62,   -18)  ->  Abs (   396,   177)
+	 25: Rel (    54,   -15)  ->  Abs (   450,   162)
+	 26: Rel (    25,     0)  ->  Abs (   475,   162)
+	 27: Rel (   163,     0)  ->  Abs (   638,   162)
+	 28: Rel (   354,   282)  ->  Abs (   992,   444)
+	 29: Rel (  -226,   271)  ->  Abs (   766,   715)
+	 30: Rel (    31,     0)  ->  Abs (   797,   715)
+	 31: Rel (    64,    10)  ->  Abs (   861,   725)
+	 32: Rel (    64,    21)  ->  Abs (   925,   746)
+	 33: Rel (    61,    30)  ->  Abs (   986,   776)
+	 34: Rel (    58,    37)  ->  Abs (  1044,   813)
+	 35: Rel (    53,    46)  ->  Abs (  1097,   859)
+	 36: Rel (    61,    70)  ->  Abs (  1158,   929)
+	 37: Rel (    11,    74)  ->  Abs (  1169,  1003)
+	 38: Rel (     0,    21)  ->  Abs (  1169,  1024)
+	 39: Rel (     0,   266)  ->  Abs (  1169,  1290)
+	 40: Rel (  -278,     0)  ->  Abs (   891,  1290)
+	 41: Rel (  -182,     0)  ->  Abs (   709,  1290)
+	 42: Rel (  -228,  -208)  ->  Abs (   481,  1082)
+	 43: Rel (     0,  -126)  ->  Abs (   481,   956)
+	 44: Rel (     0,  -112)  ->  Abs (   481,   844)
+	 45: Rel (   160,  -129)  ->  Abs (   641,   715)
+
+	Glyph  29: off = 0x00001698, len = 104
+	  numberOfContours:	2
+	  xMin:			176
+	  yMin:			-8
+	  xMax:			668
+	  yMax:			969
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	26
+	00000: NPUSHB      (13):     3   176     9    21   176    15     4     0   175     6 
+	                            12   175    18 
+	00015: MDAP[rd]   
+	00016: MIRP[nrp0,md,rd,1] 
+	00017: MDRP[srp0,nmd,rd,0] 
+	00018: MIRP[nrp0,md,rd,1] 
+	00019: SVTCA[y-axis] 
+	00020: MIAP[rd+ci] 
+	00021: MIRP[nrp0,md,rd,1] 
+	00022: MDAP[rd]   
+	00023: MIRP[nrp0,md,rd,1] 
+	00024: IUP[y]     
+	00025: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:                              X-Short On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   668,   840)  ->  Abs (   668,   840)
+	  1: Rel (     0,   -68)  ->  Abs (   668,   772)
+	  2: Rel (  -106,  -102)  ->  Abs (   562,   670)
+	  3: Rel (   -68,     0)  ->  Abs (   494,   670)
+	  4: Rel (   -52,     0)  ->  Abs (   442,   670)
+	  5: Rel (   -73,    73)  ->  Abs (   369,   743)
+	  6: Rel (     0,    52)  ->  Abs (   369,   795)
+	  7: Rel (     0,    68)  ->  Abs (   369,   863)
+	  8: Rel (   110,   106)  ->  Abs (   479,   969)
+	  9: Rel (    68,     0)  ->  Abs (   547,   969)
+	 10: Rel (    52,     0)  ->  Abs (   599,   969)
+	 11: Rel (    69,   -74)  ->  Abs (   668,   895)
+	 12: Rel (  -193,  -733)  ->  Abs (   475,   162)
+	 13: Rel (     0,   -69)  ->  Abs (   475,    93)
+	 14: Rel (  -106,  -101)  ->  Abs (   369,    -8)
+	 15: Rel (   -68,     0)  ->  Abs (   301,    -8)
+	 16: Rel (   -52,     0)  ->  Abs (   249,    -8)
+	 17: Rel (   -73,    73)  ->  Abs (   176,    65)
+	 18: Rel (     0,    52)  ->  Abs (   176,   117)
+	 19: Rel (     0,    69)  ->  Abs (   176,   186)
+	 20: Rel (   111,   105)  ->  Abs (   287,   291)
+	 21: Rel (    67,     0)  ->  Abs (   354,   291)
+	 22: Rel (    52,     0)  ->  Abs (   406,   291)
+	 23: Rel (    69,   -74)  ->  Abs (   475,   217)
+
+	Glyph  30: off = 0x00001700, len = 136
+	  numberOfContours:	2
+	  xMin:			137
+	  yMin:			-276
+	  xMax:			668
+	  yMax:			969
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  31
+
+	  Length of Instructions:	35
+	00000: NPUSHB      (19):     3   176     9    24   178    18   176    12     4     6 
+	                           175     0    12   177    21   175    27   180    15 
+	00021: MDAP[rd]   
+	00022: MIRP[nrp0,nmd,rd,0] 
+	00023: MIRP[srp0,md,rd,1] 
+	00024: MIRP[nrp0,md,rd,1] 
+	00025: MDRP[srp0,nmd,rd,0] 
+	00026: MIRP[nrp0,md,rd,1] 
+	00027: SVTCA[y-axis] 
+	00028: MIAP[rd+ci] 
+	00029: MIRP[srp0,md,rd,1] 
+	00030: MIRP[nrp0,nmd,rd,0] 
+	00031: MDAP[rd]   
+	00032: MIRP[nrp0,md,rd,1] 
+	00033: IUP[y]     
+	00034: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:                                      On
+	 13:  YDual       Rep-  1 Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                              X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   668,   840)  ->  Abs (   668,   840)
+	  1: Rel (     0,   -68)  ->  Abs (   668,   772)
+	  2: Rel (  -106,  -102)  ->  Abs (   562,   670)
+	  3: Rel (   -68,     0)  ->  Abs (   494,   670)
+	  4: Rel (   -52,     0)  ->  Abs (   442,   670)
+	  5: Rel (   -73,    73)  ->  Abs (   369,   743)
+	  6: Rel (     0,    52)  ->  Abs (   369,   795)
+	  7: Rel (     0,    68)  ->  Abs (   369,   863)
+	  8: Rel (   110,   106)  ->  Abs (   479,   969)
+	  9: Rel (    68,     0)  ->  Abs (   547,   969)
+	 10: Rel (    52,     0)  ->  Abs (   599,   969)
+	 11: Rel (    69,   -74)  ->  Abs (   668,   895)
+	 12: Rel (  -377,  -903)  ->  Abs (   291,    -8)
+	 13: Rel (   -51,     6)  ->  Abs (   240,    -2)
+	 14: Rel (   -64,    70)  ->  Abs (   176,    68)
+	 15: Rel (     0,    49)  ->  Abs (   176,   117)
+	 16: Rel (     0,    69)  ->  Abs (   176,   186)
+	 17: Rel (   111,   105)  ->  Abs (   287,   291)
+	 18: Rel (    67,     0)  ->  Abs (   354,   291)
+	 19: Rel (    57,     0)  ->  Abs (   411,   291)
+	 20: Rel (    64,   -80)  ->  Abs (   475,   211)
+	 21: Rel (     0,   -72)  ->  Abs (   475,   139)
+	 22: Rel (     0,  -114)  ->  Abs (   475,    25)
+	 23: Rel (  -203,  -301)  ->  Abs (   272,  -276)
+	 24: Rel (   -73,     0)  ->  Abs (   199,  -276)
+	 25: Rel (   -24,     0)  ->  Abs (   175,  -276)
+	 26: Rel (   -38,    35)  ->  Abs (   137,  -241)
+	 27: Rel (     0,    22)  ->  Abs (   137,  -219)
+	 28: Rel (     0,    28)  ->  Abs (   137,  -191)
+	 29: Rel (    26,    38)  ->  Abs (   163,  -153)
+	 30: Rel (    42,    30)  ->  Abs (   205,  -123)
+	 31: Rel (    61,    44)  ->  Abs (   266,   -79)
+
+	Glyph  31: off = 0x00001788, len = 176
+	  numberOfContours:	1
+	  xMin:			168
+	  yMin:			289
+	  xMax:			1219
+	  yMax:			1180
+
+	EndPoints
+	---------
+	  0:  31
+
+	  Length of Instructions:	71
+	00000: NPUSHB      (18):   104    21   120    21     2    70    19    86    19     2 
+	                           106    29   122    29   138    29     3     3 
+	00020: PUSHW[1]            -24 
+	00023: NPUSHB      (10):    13    17    72     3     0    29     3     8    24     0 
+	00035: PUSHW[1]            -56 
+	00038: NPUSHB      (13):    13    17    72     5     5     0    27   143    16   159 
+	                            16     2    16 
+	00053: MDAP[rd]   
+	00054: DELTAP1    
+	00055: MDRP[nrp0,md,rd,1] 
+	00056: IP         
+	00057: IP         
+	00058: MDAP[rd]   
+	00059: CALL       
+	00060: SVTCA[y-axis] 
+	00061: MDAP[rd]   
+	00062: MDRP[nrp0,nmd,rd,0] 
+	00063: SLOOP      
+	00064: IP         
+	00065: CALL       
+	00066: DELTAP1    
+	00067: IUP[y]     
+	00068: IUP[x]     
+	00069: DELTAP1    
+	00070: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:                      Y-Short         Off
+	  3:        XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual       Rep-  1 Y-Short X-Short On
+	 12:  YDual               Y-Short         On
+	 13:  YDual       Rep-  2 Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual               Y-Short         On
+	 22:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:                      Y-Short X-Short On
+	 30:                      Y-Short X-Short Off
+	 31:                      Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   420,   725)  ->  Abs (   420,   725)
+	  1: Rel (   167,   -89)  ->  Abs (   587,   636)
+	  2: Rel (   365,  -174)  ->  Abs (   952,   462)
+	  3: Rel (    49,   -16)  ->  Abs (  1001,   446)
+	  4: Rel (    39,   -10)  ->  Abs (  1040,   436)
+	  5: Rel (     0,   -53)  ->  Abs (  1040,   383)
+	  6: Rel (     0,   -42)  ->  Abs (  1040,   341)
+	  7: Rel (   -40,   -52)  ->  Abs (  1000,   289)
+	  8: Rel (   -37,     0)  ->  Abs (   963,   289)
+	  9: Rel (   -30,     0)  ->  Abs (   933,   289)
+	 10: Rel (   -88,    41)  ->  Abs (   845,   330)
+	 11: Rel (  -196,    94)  ->  Abs (   649,   424)
+	 12: Rel (  -266,   133)  ->  Abs (   383,   557)
+	 13: Rel (  -158,    80)  ->  Abs (   225,   637)
+	 14: Rel (   -41,    27)  ->  Abs (   184,   664)
+	 15: Rel (   -16,    34)  ->  Abs (   168,   698)
+	 16: Rel (     0,    29)  ->  Abs (   168,   727)
+	 17: Rel (     0,    32)  ->  Abs (   168,   759)
+	 18: Rel (    22,    40)  ->  Abs (   190,   799)
+	 19: Rel (    46,    28)  ->  Abs (   236,   827)
+	 20: Rel (   133,    55)  ->  Abs (   369,   882)
+	 21: Rel (   339,   138)  ->  Abs (   708,  1020)
+	 22: Rel (   204,    83)  ->  Abs (   912,  1103)
+	 23: Rel (   212,    77)  ->  Abs (  1124,  1180)
+	 24: Rel (    31,     0)  ->  Abs (  1155,  1180)
+	 25: Rel (    29,     0)  ->  Abs (  1184,  1180)
+	 26: Rel (    35,   -59)  ->  Abs (  1219,  1121)
+	 27: Rel (     0,   -40)  ->  Abs (  1219,  1081)
+	 28: Rel (     0,   -53)  ->  Abs (  1219,  1028)
+	 29: Rel (   -89,   -31)  ->  Abs (  1130,   997)
+	 30: Rel (   -91,   -26)  ->  Abs (  1039,   971)
+	 31: Rel (  -462,  -177)  ->  Abs (   577,   794)
+
+	Glyph  32: off = 0x00001838, len = 128
+	  numberOfContours:	2
+	  xMin:			160
+	  yMin:			426
+	  xMax:			1145
+	  yMax:			1018
+
+	EndPoints
+	---------
+	  0:  15
+	  1:  31
+
+	  Length of Instructions:	27
+	00000: NPUSHB      (12):    25    16   153    20     9     4   153     0     2    18 
+	                            11    27 
+	00014: MDAP[rd]   
+	00015: MDRP[nrp0,nmd,rd,0] 
+	00016: MDRP[srp0,md,rd,1] 
+	00017: MDRP[nrp0,nmd,rd,0] 
+	00018: SVTCA[y-axis] 
+	00019: MDAP[rd]   
+	00020: MIRP[srp0,md,rd,1] 
+	00021: MDRP[nrp0,nmd,rd,0] 
+	00022: MDRP[srp0,nmd,rd,0] 
+	00023: MIRP[nrp0,md,rd,1] 
+	00024: MDRP[nrp0,nmd,rd,0] 
+	00025: IUP[y]     
+	00026: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                      Y-Short         Off
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 15:  YDual               Y-Short         Off
+	 16:        XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:                      Y-Short         Off
+	 23:                      Y-Short X-Short On
+	 24:                      Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 31:  YDual               Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1067,  1018)  ->  Abs (  1067,  1018)
+	  1: Rel (    78,     0)  ->  Abs (  1145,  1018)
+	  2: Rel (     0,   -78)  ->  Abs (  1145,   940)
+	  3: Rel (     0,   -92)  ->  Abs (  1145,   848)
+	  4: Rel (  -115,     0)  ->  Abs (  1030,   848)
+	  5: Rel (  -157,     0)  ->  Abs (   873,   848)
+	  6: Rel (  -430,   -18)  ->  Abs (   443,   830)
+	  7: Rel (   -83,    -9)  ->  Abs (   360,   821)
+	  8: Rel (   -60,    -6)  ->  Abs (   300,   815)
+	  9: Rel (   -21,     0)  ->  Abs (   279,   815)
+	 10: Rel (   -58,     0)  ->  Abs (   221,   815)
+	 11: Rel (     0,   100)  ->  Abs (   221,   915)
+	 12: Rel (     0,    33)  ->  Abs (   221,   948)
+	 13: Rel (    71,    39)  ->  Abs (   292,   987)
+	 14: Rel (   131,    13)  ->  Abs (   423,  1000)
+	 15: Rel (   518,    18)  ->  Abs (   941,  1018)
+	 16: Rel (    65,  -389)  ->  Abs (  1006,   629)
+	 17: Rel (    77,     0)  ->  Abs (  1083,   629)
+	 18: Rel (     0,   -78)  ->  Abs (  1083,   551)
+	 19: Rel (     0,   -92)  ->  Abs (  1083,   459)
+	 20: Rel (  -112,     0)  ->  Abs (   971,   459)
+	 21: Rel (  -158,     0)  ->  Abs (   813,   459)
+	 22: Rel (  -432,   -18)  ->  Abs (   381,   441)
+	 23: Rel (   -84,    -9)  ->  Abs (   297,   432)
+	 24: Rel (   -58,    -6)  ->  Abs (   239,   426)
+	 25: Rel (   -20,     0)  ->  Abs (   219,   426)
+	 26: Rel (   -59,     0)  ->  Abs (   160,   426)
+	 27: Rel (     0,   100)  ->  Abs (   160,   526)
+	 28: Rel (     0,    33)  ->  Abs (   160,   559)
+	 29: Rel (    70,    39)  ->  Abs (   230,   598)
+	 30: Rel (   131,    13)  ->  Abs (   361,   611)
+	 31: Rel (   519,    18)  ->  Abs (   880,   629)
+
+	Glyph  33: off = 0x000018B8, len = 168
+	  numberOfContours:	1
+	  xMin:			84
+	  yMin:			287
+	  xMax:			1135
+	  yMax:			1178
+
+	EndPoints
+	---------
+	  0:  31
+
+	  Length of Instructions:	61
+	00000: NPUSHB      (41):    73    19    89    19     2   101    29   117    29   133 
+	                            29     3     3    24    13    17    72     3     0    29 
+	                             3    24     9    70     0    86     0     2     0    56 
+	                            13    17    72     6     6     0    17    31    27     1 
+	                            27 
+	00043: MDAP[rd]   
+	00044: DELTAP1    
+	00045: MDRP[nrp0,md,rd,1] 
+	00046: IP         
+	00047: IP         
+	00048: MDAP[rd]   
+	00049: CALL       
+	00050: DELTAP1    
+	00051: SVTCA[y-axis] 
+	00052: MDAP[rd]   
+	00053: MDRP[nrp0,nmd,rd,0] 
+	00054: SLOOP      
+	00055: IP         
+	00056: CALL       
+	00057: DELTAP1    
+	00058: IUP[y]     
+	00059: IUP[x]     
+	00060: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short         Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual       Rep-  1 Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual Rep-  1 Y-Short X-Short On
+	 13:                      Y-Short         On
+	 14:        XDual Rep-  2 Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short         On
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short         Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual               Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   883,   741)  ->  Abs (   883,   741)
+	  1: Rel (  -168,    90)  ->  Abs (   715,   831)
+	  2: Rel (  -365,   173)  ->  Abs (   350,  1004)
+	  3: Rel (   -49,    16)  ->  Abs (   301,  1020)
+	  4: Rel (   -16,     5)  ->  Abs (   285,  1025)
+	  5: Rel (   -23,    36)  ->  Abs (   262,  1061)
+	  6: Rel (     0,    22)  ->  Abs (   262,  1083)
+	  7: Rel (     0,    42)  ->  Abs (   262,  1125)
+	  8: Rel (    40,    53)  ->  Abs (   302,  1178)
+	  9: Rel (    38,     0)  ->  Abs (   340,  1178)
+	 10: Rel (    30,     0)  ->  Abs (   370,  1178)
+	 11: Rel (    87,   -41)  ->  Abs (   457,  1137)
+	 12: Rel (   197,   -95)  ->  Abs (   654,  1042)
+	 13: Rel (   266,  -133)  ->  Abs (   920,   909)
+	 14: Rel (   157,   -80)  ->  Abs (  1077,   829)
+	 15: Rel (    41,   -27)  ->  Abs (  1118,   802)
+	 16: Rel (    17,   -34)  ->  Abs (  1135,   768)
+	 17: Rel (     0,   -29)  ->  Abs (  1135,   739)
+	 18: Rel (     0,   -43)  ->  Abs (  1135,   696)
+	 19: Rel (   -42,   -46)  ->  Abs (  1093,   650)
+	 20: Rel (  -104,   -43)  ->  Abs (   989,   607)
+	 21: Rel (  -321,  -132)  ->  Abs (   668,   475)
+	 22: Rel (  -216,   -89)  ->  Abs (   452,   386)
+	 23: Rel (  -272,   -99)  ->  Abs (   180,   287)
+	 24: Rel (   -33,     0)  ->  Abs (   147,   287)
+	 25: Rel (   -28,     0)  ->  Abs (   119,   287)
+	 26: Rel (   -35,    58)  ->  Abs (    84,   345)
+	 27: Rel (     0,    40)  ->  Abs (    84,   385)
+	 28: Rel (     0,    54)  ->  Abs (    84,   439)
+	 29: Rel (    88,    30)  ->  Abs (   172,   469)
+	 30: Rel (    92,    26)  ->  Abs (   264,   495)
+	 31: Rel (   462,   177)  ->  Abs (   726,   672)
+
+	Glyph  34: off = 0x00001960, len = 184
+	  numberOfContours:	1
+	  xMin:			47
+	  yMin:			-461
+	  xMax:			1100
+	  yMax:			1460
+
+	EndPoints
+	---------
+	  0:  34
+
+	  Length of Instructions:	74
+	00000: NPUSHB      (43):    23    34    39    34   119    34     3    32     0     1 
+	                            82     0   141    15    19    20    15    15    19    32 
+	                            19     0    15    63    27     1    27    27    19     8 
+	                            15     0   153    13     3   153    11    27    29    32 
+	                           153    22     7 
+	00045: SVTCA[y-axis] 
+	00046: MIAP[rd+ci] 
+	00047: MIRP[srp0,md,rd,1] 
+	00048: MDRP[nrp0,nmd,rd,0] 
+	00049: MIAP[rd+ci] 
+	00050: MIRP[nrp0,md,rd,1] 
+	00051: MDRP[srp0,nmd,rd,1] 
+	00052: MIRP[nrp0,md,rd,1] 
+	00053: IUP[x]     
+	00054: SVTCA[x-axis] 
+	00055: MDAP[rd]   
+	00056: MDRP[nrp0,md,rd,1] 
+	00057: SHP[rp1,zp0] 
+	00058: SHP[rp1,zp0] 
+	00059: MDAP[rd]   
+	00060: DELTAP1    
+	00061: SRP1       
+	00062: SHP[rp1,zp0] 
+	00063: SRP1       
+	00064: SHP[rp1,zp0] 
+	00065: SDPVTL[1]  
+	00066: SRP0       
+	00067: CALL       
+	00068: CALL       
+	00069: SRP0       
+	00070: MDRP[nrp0,nmd,rd,0] 
+	00071: IUP[y]     
+	00072: SVTCA[x-axis] 
+	00073: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual Rep-  1 Y-Short X-Short On
+	  4:        XDual Rep-  3 Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short         Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:        XDual Rep-  2         X-Short Off
+	 20:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual Rep-  2 Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:                      Y-Short X-Short Off
+	 34:                                      Off
+
+	Coordinates
+	-----------
+	  0: Rel (   262,  -268)  ->  Abs (   262,  -268)
+	  1: Rel (    50,    -2)  ->  Abs (   312,  -270)
+	  2: Rel (    91,    -5)  ->  Abs (   403,  -275)
+	  3: Rel (   151,   -11)  ->  Abs (   554,  -286)
+	  4: Rel (    61,    -4)  ->  Abs (   615,  -290)
+	  5: Rel (    25,   -12)  ->  Abs (   640,  -302)
+	  6: Rel (    18,   -24)  ->  Abs (   658,  -326)
+	  7: Rel (     8,   -30)  ->  Abs (   666,  -356)
+	  8: Rel (     0,   -17)  ->  Abs (   666,  -373)
+	  9: Rel (     0,   -33)  ->  Abs (   666,  -406)
+	 10: Rel (   -60,   -55)  ->  Abs (   606,  -461)
+	 11: Rel (   -49,     0)  ->  Abs (   557,  -461)
+	 12: Rel (   -36,     0)  ->  Abs (   521,  -461)
+	 13: Rel (  -420,    18)  ->  Abs (   101,  -443)
+	 14: Rel (   -54,    33)  ->  Abs (    47,  -410)
+	 15: Rel (     0,    41)  ->  Abs (    47,  -369)
+	 16: Rel (     0,    43)  ->  Abs (    47,  -326)
+	 17: Rel (   115,   501)  ->  Abs (   162,   175)
+	 18: Rel (   192,   696)  ->  Abs (   354,   871)
+	 19: Rel (   179,   517)  ->  Abs (   533,  1388)
+	 20: Rel (    36,    48)  ->  Abs (   569,  1436)
+	 21: Rel (    62,    24)  ->  Abs (   631,  1460)
+	 22: Rel (    39,     0)  ->  Abs (   670,  1460)
+	 23: Rel (   110,     0)  ->  Abs (   780,  1460)
+	 24: Rel (   242,    -9)  ->  Abs (  1022,  1451)
+	 25: Rel (    55,   -18)  ->  Abs (  1077,  1433)
+	 26: Rel (    23,   -37)  ->  Abs (  1100,  1396)
+	 27: Rel (     0,   -30)  ->  Abs (  1100,  1366)
+	 28: Rel (     0,   -94)  ->  Abs (  1100,  1272)
+	 29: Rel (  -103,     0)  ->  Abs (   997,  1272)
+	 30: Rel (   -54,     0)  ->  Abs (   943,  1272)
+	 31: Rel (  -177,    12)  ->  Abs (   766,  1284)
+	 32: Rel (   -68,     0)  ->  Abs (   698,  1284)
+	 33: Rel (   -92,  -223)  ->  Abs (   606,  1061)
+	 34: Rel (  -316, -1150)  ->  Abs (   290,   -89)
+
+	Glyph  35: off = 0x00001A18, len = 124
+	  numberOfContours:	1
+	  xMin:			303
+	  yMin:			0
+	  xMax:			852
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  20
+
+	  Length of Instructions:	49
+	00000: NPUSHB      (28):   135    14     1    88     5     1     2     1    82    13 
+	                            18    13   141     7     2    20     7     2     2    13 
+	                            15    18     1    18     7    10     7     0 
+	00030: SVTCA[y-axis] 
+	00031: MDAP[rd]   
+	00032: MIAP[rd+ci] 
+	00033: IUP[x]     
+	00034: SVTCA[x-axis] 
+	00035: MDAP[rd]   
+	00036: MDRP[nrp0,md,rd,1] 
+	00037: DELTAP1    
+	00038: SHP[rp1,zp0] 
+	00039: SHP[rp2,zp1] 
+	00040: SDPVTL[1]  
+	00041: CALL       
+	00042: SDPVTL[1]  
+	00043: CALL       
+	00044: MDRP[nrp0,nmd,rd,0] 
+	00045: IUP[y]     
+	00046: SVTCA[x-axis] 
+	00047: DELTAP1    
+	00048: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:                              X-Short Off
+	  5:                              X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual Rep-  2         X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   772,     0)  ->  Abs (   772,     0)
+	  1: Rel (  -108,     0)  ->  Abs (   664,     0)
+	  2: Rel (   -11,    78)  ->  Abs (   653,    78)
+	  3: Rel (   -30,   252)  ->  Abs (   623,   330)
+	  4: Rel (  -163,   676)  ->  Abs (   460,  1006)
+	  5: Rel (  -119,   271)  ->  Abs (   341,  1277)
+	  6: Rel (   -38,    86)  ->  Abs (   303,  1363)
+	  7: Rel (     0,    23)  ->  Abs (   303,  1386)
+	  8: Rel (     0,    39)  ->  Abs (   303,  1425)
+	  9: Rel (    59,    39)  ->  Abs (   362,  1464)
+	 10: Rel (    27,     0)  ->  Abs (   389,  1464)
+	 11: Rel (    41,     0)  ->  Abs (   430,  1464)
+	 12: Rel (    37,   -15)  ->  Abs (   467,  1449)
+	 13: Rel (    16,   -38)  ->  Abs (   483,  1411)
+	 14: Rel (    61,  -138)  ->  Abs (   544,  1273)
+	 15: Rel (   105,  -312)  ->  Abs (   649,   961)
+	 16: Rel (   123,  -447)  ->  Abs (   772,   514)
+	 17: Rel (    80,  -386)  ->  Abs (   852,   128)
+	 18: Rel (     0,   -46)  ->  Abs (   852,    82)
+	 19: Rel (     0,   -32)  ->  Abs (   852,    50)
+	 20: Rel (   -46,   -50)  ->  Abs (   806,     0)
+
+	Glyph  36: off = 0x00001A94, len = 174
+	  numberOfContours:	1
+	  xMin:			-121
+	  yMin:			-461
+	  xMax:			928
+	  yMax:			1458
+
+	EndPoints
+	---------
+	  0:  30
+
+	  Length of Instructions:	70
+	00000: NPUSHB      (40):    38    16    54    16     2   118    14     1     0    29 
+	                             1    82    29   141    17    11    20    17    17    11 
+	                             0    11    29    17     3    17    11    23     0   153 
+	                             8     1   153     6     6    26    29   153    20    27 
+	00042: SVTCA[y-axis] 
+	00043: MIAP[rd+ci] 
+	00044: MIRP[srp0,md,rd,1] 
+	00045: MDRP[nrp0,nmd,rd,0] 
+	00046: MIAP[rd+ci] 
+	00047: MIRP[nrp0,md,rd,1] 
+	00048: MDRP[srp0,nmd,rd,1] 
+	00049: MIRP[nrp0,md,rd,1] 
+	00050: IUP[x]     
+	00051: SVTCA[x-axis] 
+	00052: MDAP[rd]   
+	00053: MDRP[srp0,nmd,rd,0] 
+	00054: SHP[rp2,zp1] 
+	00055: MDRP[nrp0,md,rd,1] 
+	00056: SRP1       
+	00057: SHP[rp1,zp0] 
+	00058: SRP1       
+	00059: SHP[rp1,zp0] 
+	00060: SDPVTL[1]  
+	00061: SRP0       
+	00062: CALL       
+	00063: CALL       
+	00064: SRP0       
+	00065: MDRP[nrp0,nmd,rd,0] 
+	00066: IUP[y]     
+	00067: SVTCA[x-axis] 
+	00068: DELTAP1    
+	00069: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short         Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:                      Y-Short         Off
+	  9:        XDual Rep-  1 Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                              X-Short On
+	 14:              Rep-  1         X-Short Off
+	 16:                              X-Short On
+	 17:              Rep-  2 Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                               Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:        XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   721,  1272)  ->  Abs (   721,  1272)
+	  1: Rel (  -338,     7)  ->  Abs (   383,  1279)
+	  2: Rel (   -70,    33)  ->  Abs (   313,  1312)
+	  3: Rel (     0,    58)  ->  Abs (   313,  1370)
+	  4: Rel (     0,    36)  ->  Abs (   313,  1406)
+	  5: Rel (    61,    52)  ->  Abs (   374,  1458)
+	  6: Rel (    48,     0)  ->  Abs (   422,  1458)
+	  7: Rel (    73,     0)  ->  Abs (   495,  1458)
+	  8: Rel (   330,   -10)  ->  Abs (   825,  1448)
+	  9: Rel (    76,   -10)  ->  Abs (   901,  1438)
+	 10: Rel (    27,   -33)  ->  Abs (   928,  1405)
+	 11: Rel (     0,   -33)  ->  Abs (   928,  1372)
+	 12: Rel (     0,   -58)  ->  Abs (   928,  1314)
+	 13: Rel (  -119,  -398)  ->  Abs (   809,   916)
+	 14: Rel (  -123,  -410)  ->  Abs (   686,   506)
+	 15: Rel (  -136,  -525)  ->  Abs (   550,   -19)
+	 16: Rel (   -67,  -306)  ->  Abs (   483,  -325)
+	 17: Rel (   -14,   -62)  ->  Abs (   469,  -387)
+	 18: Rel (   -25,   -46)  ->  Abs (   444,  -433)
+	 19: Rel (   -47,   -28)  ->  Abs (   397,  -461)
+	 20: Rel (   -30,     0)  ->  Abs (   367,  -461)
+	 21: Rel (  -373,     0)  ->  Abs (    -6,  -461)
+	 22: Rel (  -115,    34)  ->  Abs (  -121,  -427)
+	 23: Rel (     0,    58)  ->  Abs (  -121,  -369)
+	 24: Rel (     0,    39)  ->  Abs (  -121,  -330)
+	 25: Rel (    55,    58)  ->  Abs (   -66,  -272)
+	 26: Rel (    48,     0)  ->  Abs (   -18,  -272)
+	 27: Rel (    43,     0)  ->  Abs (    25,  -272)
+	 28: Rel (   196,   -11)  ->  Abs (   221,  -283)
+	 29: Rel (    74,     0)  ->  Abs (   295,  -283)
+	 30: Rel (   209,   944)  ->  Abs (   504,   661)
+
+	Glyph  37: off = 0x00001B42, len = 260
+	  numberOfContours:	1
+	  xMin:			100
+	  yMin:			-461
+	  xMax:			1182
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  53
+
+	  Length of Instructions:	108
+	00000: NPUSHB      (14):   101    52   117    52     2     5    48     1    73    37 
+	                            89    37     2     5 
+	00016: PUSHW[1]            -16 
+	00019: NPUSHB      (47):    12    17    72    48    51     1    82    51   138    33 
+	                            35    20    33    33    35    48    35    51    33    35 
+	                            33    43    18     0    28     3   138    22    28    12 
+	                             7   138    18     0    25   154    30    30    15    45 
+	                           153    40     7    10   153    15    27 
+	00068: SVTCA[y-axis] 
+	00069: MIAP[rd+ci] 
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: MIAP[rd+ci] 
+	00072: MIRP[nrp0,md,rd,1] 
+	00073: SRP2       
+	00074: IP         
+	00075: MDAP[rd]   
+	00076: MIRP[nrp0,md,rd,1] 
+	00077: IP         
+	00078: IUP[x]     
+	00079: SVTCA[x-axis] 
+	00080: MDAP[rd]   
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: MDRP[nrp0,md,rd,1] 
+	00083: MDRP[nrp0,nmd,rd,0] 
+	00084: MDRP[srp0,nmd,rd,0] 
+	00085: MIRP[nrp0,md,rd,1] 
+	00086: SRP1       
+	00087: IP         
+	00088: SRP0       
+	00089: MDRP[nrp0,nmd,rd,0] 
+	00090: IP         
+	00091: IP         
+	00092: SRP1       
+	00093: SHP[rp1,zp0] 
+	00094: SRP1       
+	00095: SHP[rp1,zp0] 
+	00096: SDPVTL[1]  
+	00097: SRP0       
+	00098: CALL       
+	00099: CALL       
+	00100: SRP0       
+	00101: MDRP[nrp0,nmd,rd,0] 
+	00102: IUP[y]     
+	00103: SVTCA[x-axis] 
+	00104: CALL       
+	00105: DELTAP1    
+	00106: DELTAP1    
+	00107: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual Rep-  1 Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual       Rep-  1 Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual XDual Rep-  4 Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:        XDual         Y-Short X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short Off
+	 47:              Rep-  2 Y-Short X-Short Off
+	 50:                      Y-Short X-Short On
+	 51:              Rep-  2 Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   422,   551)  ->  Abs (   422,   551)
+	  1: Rel (    51,   -20)  ->  Abs (   473,   531)
+	  2: Rel (    57,  -105)  ->  Abs (   530,   426)
+	  3: Rel (     0,   -55)  ->  Abs (   530,   371)
+	  4: Rel (     0,   -98)  ->  Abs (   530,   273)
+	  5: Rel (   -61,  -236)  ->  Abs (   469,    37)
+	  6: Rel (   -33,  -128)  ->  Abs (   436,   -91)
+	  7: Rel (     0,   -63)  ->  Abs (   436,  -154)
+	  8: Rel (     0,   -48)  ->  Abs (   436,  -202)
+	  9: Rel (   101,   -77)  ->  Abs (   537,  -279)
+	 10: Rel (   145,   -10)  ->  Abs (   682,  -289)
+	 11: Rel (    66,    -5)  ->  Abs (   748,  -294)
+	 12: Rel (     0,   -79)  ->  Abs (   748,  -373)
+	 13: Rel (     0,   -34)  ->  Abs (   748,  -407)
+	 14: Rel (   -59,   -54)  ->  Abs (   689,  -461)
+	 15: Rel (   -50,     0)  ->  Abs (   639,  -461)
+	 16: Rel (  -160,     0)  ->  Abs (   479,  -461)
+	 17: Rel (  -229,   174)  ->  Abs (   250,  -287)
+	 18: Rel (     0,   121)  ->  Abs (   250,  -166)
+	 19: Rel (     0,    84)  ->  Abs (   250,   -82)
+	 20: Rel (    43,   166)  ->  Abs (   293,    84)
+	 21: Rel (    51,   199)  ->  Abs (   344,   283)
+	 22: Rel (     0,    65)  ->  Abs (   344,   348)
+	 23: Rel (     0,    51)  ->  Abs (   344,   399)
+	 24: Rel (   -92,    69)  ->  Abs (   252,   468)
+	 25: Rel (   -82,     7)  ->  Abs (   170,   475)
+	 26: Rel (   -28,     3)  ->  Abs (   142,   478)
+	 27: Rel (   -42,    46)  ->  Abs (   100,   524)
+	 28: Rel (     0,    27)  ->  Abs (   100,   551)
+	 29: Rel (     0,    84)  ->  Abs (   100,   635)
+	 30: Rel (    90,     6)  ->  Abs (   190,   641)
+	 31: Rel (   155,    10)  ->  Abs (   345,   651)
+	 32: Rel (   124,    67)  ->  Abs (   469,   718)
+	 33: Rel (    55,   131)  ->  Abs (   524,   849)
+	 34: Rel (    38,   167)  ->  Abs (   562,  1016)
+	 35: Rel (    31,   134)  ->  Abs (   593,  1150)
+	 36: Rel (    42,   105)  ->  Abs (   635,  1255)
+	 37: Rel (    96,   103)  ->  Abs (   731,  1358)
+	 38: Rel (   129,    75)  ->  Abs (   860,  1433)
+	 39: Rel (   157,    31)  ->  Abs (  1017,  1464)
+	 40: Rel (    87,     0)  ->  Abs (  1104,  1464)
+	 41: Rel (    35,     0)  ->  Abs (  1139,  1464)
+	 42: Rel (    43,   -49)  ->  Abs (  1182,  1415)
+	 43: Rel (     0,   -39)  ->  Abs (  1182,  1376)
+	 44: Rel (     0,   -90)  ->  Abs (  1182,  1286)
+	 45: Rel (   -90,     0)  ->  Abs (  1092,  1286)
+	 46: Rel (  -102,     0)  ->  Abs (   990,  1286)
+	 47: Rel (  -136,   -53)  ->  Abs (   854,  1233)
+	 48: Rel (   -80,   -93)  ->  Abs (   774,  1140)
+	 49: Rel (   -29,  -109)  ->  Abs (   745,  1031)
+	 50: Rel (   -18,   -78)  ->  Abs (   727,   953)
+	 51: Rel (   -43,  -179)  ->  Abs (   684,   774)
+	 52: Rel (   -51,  -108)  ->  Abs (   633,   666)
+	 53: Rel (  -134,  -102)  ->  Abs (   499,   564)
+
+	Glyph  38: off = 0x00001C46, len = 106
+	  numberOfContours:	1
+	  xMin:			168
+	  yMin:			-322
+	  xMax:			870
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	43
+	00000: NPUSHB      (24):    87     4   119     4     2    12     1    82     5     0 
+	                             5   141     9    12    20     9    12    12     5     0 
+	                             9     7    14     7 
+	00026: SVTCA[y-axis] 
+	00027: MIAP[rd+ci] 
+	00028: MDAP[rd]   
+	00029: IUP[x]     
+	00030: SVTCA[x-axis] 
+	00031: MDAP[rd]   
+	00032: MDRP[nrp0,md,rd,1] 
+	00033: SHP[rp1,zp0] 
+	00034: SHP[rp2,zp1] 
+	00035: SDPVTL[1]  
+	00036: CALL       
+	00037: SDPVTL[1]  
+	00038: CALL       
+	00039: MDRP[nrp0,nmd,rd,0] 
+	00040: IUP[y]     
+	00041: SVTCA[x-axis] 
+	00042: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                              X-Short Off
+	  4:                                      Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:        XDual                 X-Short Off
+	 12:                                      Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   870,  1411)  ->  Abs (   870,  1411)
+	  1: Rel (     0,   -41)  ->  Abs (   870,  1370)
+	  2: Rel (   -39,   -90)  ->  Abs (   831,  1280)
+	  3: Rel (  -128,  -295)  ->  Abs (   703,   985)
+	  4: Rel (  -310,  -984)  ->  Abs (   393,     1)
+	  5: Rel (   -37,  -247)  ->  Abs (   356,  -246)
+	  6: Rel (   -10,   -76)  ->  Abs (   346,  -322)
+	  7: Rel (   -90,     0)  ->  Abs (   256,  -322)
+	  8: Rel (   -88,     0)  ->  Abs (   168,  -322)
+	  9: Rel (     0,    78)  ->  Abs (   168,  -244)
+	 10: Rel (     0,   125)  ->  Abs (   168,  -119)
+	 11: Rel (   215,   764)  ->  Abs (   383,   645)
+	 12: Rel (   305,   757)  ->  Abs (   688,  1402)
+	 13: Rel (    72,    64)  ->  Abs (   760,  1466)
+	 14: Rel (    45,     0)  ->  Abs (   805,  1466)
+	 15: Rel (    65,     0)  ->  Abs (   870,  1466)
+
+	Glyph  39: off = 0x00001CB0, len = 258
+	  numberOfContours:	1
+	  xMin:			-182
+	  yMin:			-461
+	  xMax:			930
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  54
+
+	  Length of Instructions:	104
+	00000: NPUSHB      (63):   105    53   121    53   137    53     3    68    38    84 
+	                            38   132    38     3     6     0    22     0     2    52 
+	                            49     1    82    49   138    37    33    20    37    37 
+	                            33    52    33    49    37     0    28     3   138    23 
+	                             7   138    37    33    44    14    28    19    56     0 
+	                            30   154    26    26    41    11   154    16     7    46 
+	                           153    41    27 
+	00065: SVTCA[y-axis] 
+	00066: MIAP[rd+ci] 
+	00067: MIRP[nrp0,md,rd,1] 
+	00068: MIAP[rd+ci] 
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: SRP2       
+	00071: IP         
+	00072: MDAP[rd]   
+	00073: MIRP[nrp0,md,rd,1] 
+	00074: IP         
+	00075: IUP[x]     
+	00076: SVTCA[x-axis] 
+	00077: SRP0       
+	00078: MDRP[srp0,nmd,rd,0] 
+	00079: MDRP[nrp0,nmd,rd,0] 
+	00080: MDRP[nrp0,md,rd,1] 
+	00081: MDRP[nrp0,nmd,rd,0] 
+	00082: IP         
+	00083: IP         
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: MDRP[srp0,nmd,rd,0] 
+	00086: MIRP[nrp0,md,rd,1] 
+	00087: SRP1       
+	00088: IP         
+	00089: SRP1       
+	00090: SHP[rp1,zp0] 
+	00091: SRP1       
+	00092: SHP[rp1,zp0] 
+	00093: SDPVTL[1]  
+	00094: SRP0       
+	00095: CALL       
+	00096: CALL       
+	00097: SRP0       
+	00098: MDRP[nrp0,nmd,rd,0] 
+	00099: IUP[y]     
+	00100: SVTCA[x-axis] 
+	00101: DELTAP1    
+	00102: DELTAP1    
+	00103: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual       Rep-  1 Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual       Rep-  1 Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual       Rep-  1 Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:                      Y-Short X-Short On
+	 31:              Rep-  3 Y-Short X-Short Off
+	 35:                      Y-Short X-Short On
+	 36:              Rep-  4 Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:  YDual XDual Rep-  2 Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   594,   438)  ->  Abs (   594,   438)
+	  1: Rel (   -58,    18)  ->  Abs (   536,   456)
+	  2: Rel (   -67,   116)  ->  Abs (   469,   572)
+	  3: Rel (     0,    55)  ->  Abs (   469,   627)
+	  4: Rel (     0,    83)  ->  Abs (   469,   710)
+	  5: Rel (    63,   248)  ->  Abs (   532,   958)
+	  6: Rel (    23,    84)  ->  Abs (   555,  1042)
+	  7: Rel (     0,    82)  ->  Abs (   555,  1124)
+	  8: Rel (     0,    68)  ->  Abs (   555,  1192)
+	  9: Rel (   -58,    69)  ->  Abs (   497,  1261)
+	 10: Rel (   -79,    27)  ->  Abs (   418,  1288)
+	 11: Rel (   -82,     8)  ->  Abs (   336,  1296)
+	 12: Rel (   -35,     3)  ->  Abs (   301,  1299)
+	 13: Rel (   -41,    44)  ->  Abs (   260,  1343)
+	 14: Rel (     0,    31)  ->  Abs (   260,  1374)
+	 15: Rel (     0,    90)  ->  Abs (   260,  1464)
+	 16: Rel (   139,     0)  ->  Abs (   399,  1464)
+	 17: Rel (   150,     0)  ->  Abs (   549,  1464)
+	 18: Rel (   192,  -175)  ->  Abs (   741,  1289)
+	 19: Rel (     0,  -132)  ->  Abs (   741,  1157)
+	 20: Rel (     0,   -82)  ->  Abs (   741,  1075)
+	 21: Rel (   -43,  -162)  ->  Abs (   698,   913)
+	 22: Rel (   -49,  -188)  ->  Abs (   649,   725)
+	 23: Rel (     0,   -80)  ->  Abs (   649,   645)
+	 24: Rel (     0,   -37)  ->  Abs (   649,   608)
+	 25: Rel (    69,   -76)  ->  Abs (   718,   532)
+	 26: Rel (   148,   -12)  ->  Abs (   866,   520)
+	 27: Rel (    64,    -5)  ->  Abs (   930,   515)
+	 28: Rel (     0,   -58)  ->  Abs (   930,   457)
+	 29: Rel (     0,   -93)  ->  Abs (   930,   364)
+	 30: Rel (   -96,    -8)  ->  Abs (   834,   356)
+	 31: Rel (  -116,   -10)  ->  Abs (   718,   346)
+	 32: Rel (  -138,   -41)  ->  Abs (   580,   305)
+	 33: Rel (   -79,   -80)  ->  Abs (   501,   225)
+	 34: Rel (   -28,  -101)  ->  Abs (   473,   124)
+	 35: Rel (   -21,  -112)  ->  Abs (   452,    12)
+	 36: Rel (   -22,  -122)  ->  Abs (   430,  -110)
+	 37: Rel (   -32,  -105)  ->  Abs (   398,  -215)
+	 38: Rel (   -95,  -129)  ->  Abs (   303,  -344)
+	 39: Rel (  -129,   -83)  ->  Abs (   174,  -427)
+	 40: Rel (  -168,   -34)  ->  Abs (     6,  -461)
+	 41: Rel (   -90,     0)  ->  Abs (   -84,  -461)
+	 42: Rel (   -40,     0)  ->  Abs (  -124,  -461)
+	 43: Rel (   -58,    53)  ->  Abs (  -182,  -408)
+	 44: Rel (     0,    35)  ->  Abs (  -182,  -373)
+	 45: Rel (     0,    92)  ->  Abs (  -182,  -281)
+	 46: Rel (    92,     0)  ->  Abs (   -90,  -281)
+	 47: Rel (   111,     0)  ->  Abs (    21,  -281)
+	 48: Rel (   104,    31)  ->  Abs (   125,  -250)
+	 49: Rel (    83,    66)  ->  Abs (   208,  -184)
+	 50: Rel (    37,    98)  ->  Abs (   245,   -86)
+	 51: Rel (    30,   135)  ->  Abs (   275,    49)
+	 52: Rel (    36,   164)  ->  Abs (   311,   213)
+	 53: Rel (    50,   109)  ->  Abs (   361,   322)
+	 54: Rel (   137,   103)  ->  Abs (   498,   425)
+
+	Glyph  40: off = 0x00001DB2, len = 68
+	  numberOfContours:	1
+	  xMin:			274
+	  yMin:			287
+	  xMax:			766
+	  yMax:			776
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	22
+	00000: NPUSHB      (11):     0    31     6   143     6   159     6     3     6     3 
+	                             9 
+	00013: SVTCA[y-axis] 
+	00014: MDAP[rd]   
+	00015: MDRP[nrp0,md,rd,1] 
+	00016: SVTCA[x-axis] 
+	00017: MDAP[rd]   
+	00018: DELTAP1    
+	00019: MDRP[nrp0,md,rd,1] 
+	00020: IUP[y]     
+	00021: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   766,   567)  ->  Abs (   766,   567)
+	  1: Rel (     0,  -112)  ->  Abs (   766,   455)
+	  2: Rel (  -175,  -168)  ->  Abs (   591,   287)
+	  3: Rel (  -112,     0)  ->  Abs (   479,   287)
+	  4: Rel (   -86,     0)  ->  Abs (   393,   287)
+	  5: Rel (  -119,   120)  ->  Abs (   274,   407)
+	  6: Rel (     0,    87)  ->  Abs (   274,   494)
+	  7: Rel (     0,   111)  ->  Abs (   274,   605)
+	  8: Rel (   181,   171)  ->  Abs (   455,   776)
+	  9: Rel (   110,     0)  ->  Abs (   565,   776)
+	 10: Rel (    85,     0)  ->  Abs (   650,   776)
+	 11: Rel (   116,  -120)  ->  Abs (   766,   656)
+
+	Glyph  41: off = 0x00001DF6, len = 270
+	  numberOfContours:	2
+	  xMin:			127
+	  yMin:			41
+	  xMax:			1231
+	  yMax:			944
+
+	EndPoints
+	---------
+	  0:  24
+	  1:  49
+
+	  Length of Instructions:	120
+	00000: NPUSHB      (60):     6    49    22    49     2   124    48   140    48     2 
+	                            55    40     1     4    38    20    38   100    38     3 
+	                           138    34     1   138    33     1     6    24    22    24 
+	                             2   124    23   140    23     2    55    15     1     4 
+	                            13    20    13   100    13     3   138     9     1   138 
+	                             8     1    42    31   143     6     1     6    17    25 
+	00062: PUSHW[1]            -40 
+	00065: PUSHB[4]             13    17    72     0 
+	00070: PUSHW[1]            -40 
+	00073: NPUSHB      (15):    13    17    72    45   227    25    29   226    36    20 
+	                           227     0     4   226    11 
+	00090: MDAP[rd]   
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: IP         
+	00093: MIRP[nrp0,md,rd,1] 
+	00094: MDRP[srp0,nmd,rd,0] 
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: IP         
+	00097: MIRP[nrp0,md,rd,1] 
+	00098: CALL       
+	00099: CALL       
+	00100: SVTCA[y-axis] 
+	00101: MDAP[rd]   
+	00102: MDRP[nrp0,nmd,rd,0] 
+	00103: DELTAP1    
+	00104: IP         
+	00105: IP         
+	00106: IUP[y]     
+	00107: IUP[x]     
+	00108: DELTAP1    
+	00109: DELTAP1    
+	00110: DELTAP1    
+	00111: DELTAP1    
+	00112: DELTAP1    
+	00113: DELTAP1    
+	00114: DELTAP1    
+	00115: DELTAP1    
+	00116: DELTAP1    
+	00117: DELTAP1    
+	00118: DELTAP1    
+	00119: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual       Rep-  2 Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 15:  YDual               Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short X-Short On
+	 24:                      Y-Short X-Short Off
+	 25:                      Y-Short         On
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:  YDual       Rep-  2 Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 40:  YDual               Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:        XDual         Y-Short X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         Off
+	 47:                      Y-Short X-Short Off
+	 48:                      Y-Short X-Short On
+	 49:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   297,   487)  ->  Abs (   297,   487)
+	  1: Rel (   106,  -149)  ->  Abs (   403,   338)
+	  2: Rel (   125,  -139)  ->  Abs (   528,   199)
+	  3: Rel (    33,   -36)  ->  Abs (   561,   163)
+	  4: Rel (     0,   -54)  ->  Abs (   561,   109)
+	  5: Rel (     0,   -68)  ->  Abs (   561,    41)
+	  6: Rel (   -84,     0)  ->  Abs (   477,    41)
+	  7: Rel (   -36,     0)  ->  Abs (   441,    41)
+	  8: Rel (   -67,    55)  ->  Abs (   374,    96)
+	  9: Rel (  -181,   244)  ->  Abs (   193,   340)
+	 10: Rel (   -66,   108)  ->  Abs (   127,   448)
+	 11: Rel (     0,    58)  ->  Abs (   127,   506)
+	 12: Rel (     0,    30)  ->  Abs (   127,   536)
+	 13: Rel (    45,    60)  ->  Abs (   172,   596)
+	 14: Rel (   139,   118)  ->  Abs (   311,   714)
+	 15: Rel (   257,   194)  ->  Abs (   568,   908)
+	 16: Rel (    68,    36)  ->  Abs (   636,   944)
+	 17: Rel (    21,     0)  ->  Abs (   657,   944)
+	 18: Rel (    36,     0)  ->  Abs (   693,   944)
+	 19: Rel (    46,   -39)  ->  Abs (   739,   905)
+	 20: Rel (     0,   -31)  ->  Abs (   739,   874)
+	 21: Rel (     0,   -29)  ->  Abs (   739,   845)
+	 22: Rel (   -25,   -41)  ->  Abs (   714,   804)
+	 23: Rel (   -44,   -30)  ->  Abs (   670,   774)
+	 24: Rel (  -203,  -136)  ->  Abs (   467,   638)
+	 25: Rel (   321,  -151)  ->  Abs (   788,   487)
+	 26: Rel (   106,  -149)  ->  Abs (   894,   338)
+	 27: Rel (   126,  -139)  ->  Abs (  1020,   199)
+	 28: Rel (    33,   -36)  ->  Abs (  1053,   163)
+	 29: Rel (     0,   -54)  ->  Abs (  1053,   109)
+	 30: Rel (     0,   -68)  ->  Abs (  1053,    41)
+	 31: Rel (   -84,     0)  ->  Abs (   969,    41)
+	 32: Rel (   -37,     0)  ->  Abs (   932,    41)
+	 33: Rel (   -66,    55)  ->  Abs (   866,    96)
+	 34: Rel (  -181,   244)  ->  Abs (   685,   340)
+	 35: Rel (   -67,   108)  ->  Abs (   618,   448)
+	 36: Rel (     0,    58)  ->  Abs (   618,   506)
+	 37: Rel (     0,    30)  ->  Abs (   618,   536)
+	 38: Rel (    46,    60)  ->  Abs (   664,   596)
+	 39: Rel (   139,   118)  ->  Abs (   803,   714)
+	 40: Rel (   257,   194)  ->  Abs (  1060,   908)
+	 41: Rel (    68,    36)  ->  Abs (  1128,   944)
+	 42: Rel (    21,     0)  ->  Abs (  1149,   944)
+	 43: Rel (    36,     0)  ->  Abs (  1185,   944)
+	 44: Rel (    46,   -39)  ->  Abs (  1231,   905)
+	 45: Rel (     0,   -31)  ->  Abs (  1231,   874)
+	 46: Rel (     0,   -32)  ->  Abs (  1231,   842)
+	 47: Rel (   -30,   -41)  ->  Abs (  1201,   801)
+	 48: Rel (   -40,   -27)  ->  Abs (  1161,   774)
+	 49: Rel (  -202,  -136)  ->  Abs (   959,   638)
+
+	Glyph  42: off = 0x00001F04, len = 262
+	  numberOfContours:	2
+	  xMin:			47
+	  yMin:			41
+	  xMax:			1151
+	  yMax:			944
+
+	EndPoints
+	---------
+	  0:  24
+	  1:  49
+
+	  Length of Instructions:	113
+	00000: NPUSHB      (81):     9    49    25    49     2   115    48   131    48     2 
+	                            56    40     1    11    38    27    38   107    38     3 
+	                           133    34     1   132    33     1     9    24    25    24 
+	                             2   115    23   131    23     2    56    15     1    11 
+	                            13    27    13   107    13     3   133     9     1   132 
+	                             8     1    17     6   143    42     1    42    31    25 
+	                            40    13    17    72     0    40    13    17    72     0 
+	                             4   226    20   227    11    25    29   226    36   227 
+	                            45 
+	00083: MDAP[rd]   
+	00084: MIRP[srp0,md,rd,1] 
+	00085: MIRP[nrp0,md,rd,1] 
+	00086: IP         
+	00087: MDRP[srp0,nmd,rd,0] 
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: MIRP[nrp0,md,rd,1] 
+	00090: IP         
+	00091: CALL       
+	00092: CALL       
+	00093: SVTCA[y-axis] 
+	00094: MDAP[rd]   
+	00095: MDRP[nrp0,nmd,rd,0] 
+	00096: DELTAP1    
+	00097: IP         
+	00098: IP         
+	00099: IUP[y]     
+	00100: IUP[x]     
+	00101: DELTAP1    
+	00102: DELTAP1    
+	00103: DELTAP1    
+	00104: DELTAP1    
+	00105: DELTAP1    
+	00106: DELTAP1    
+	00107: DELTAP1    
+	00108: DELTAP1    
+	00109: DELTAP1    
+	00110: DELTAP1    
+	00111: DELTAP1    
+	00112: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual Rep-  2 Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:              Rep-  1 Y-Short X-Short Off
+	 15:                      Y-Short         Off
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual               Y-Short         On
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual Rep-  2 Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:              Rep-  1 Y-Short X-Short Off
+	 40:                      Y-Short         Off
+	 41:                      Y-Short X-Short Off
+	 42:  YDual                       X-Short On
+	 43:  YDual                       X-Short Off
+	 44:  YDual               Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short X-Short On
+	 49:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   981,   498)  ->  Abs (   981,   498)
+	  1: Rel (  -106,   149)  ->  Abs (   875,   647)
+	  2: Rel (  -125,   139)  ->  Abs (   750,   786)
+	  3: Rel (   -33,    36)  ->  Abs (   717,   822)
+	  4: Rel (     0,    55)  ->  Abs (   717,   877)
+	  5: Rel (     0,    67)  ->  Abs (   717,   944)
+	  6: Rel (    84,     0)  ->  Abs (   801,   944)
+	  7: Rel (    36,     0)  ->  Abs (   837,   944)
+	  8: Rel (    67,   -55)  ->  Abs (   904,   889)
+	  9: Rel (   181,  -243)  ->  Abs (  1085,   646)
+	 10: Rel (    66,  -109)  ->  Abs (  1151,   537)
+	 11: Rel (     0,   -58)  ->  Abs (  1151,   479)
+	 12: Rel (     0,   -30)  ->  Abs (  1151,   449)
+	 13: Rel (   -45,   -60)  ->  Abs (  1106,   389)
+	 14: Rel (  -139,  -118)  ->  Abs (   967,   271)
+	 15: Rel (  -257,  -194)  ->  Abs (   710,    77)
+	 16: Rel (   -68,   -36)  ->  Abs (   642,    41)
+	 17: Rel (   -21,     0)  ->  Abs (   621,    41)
+	 18: Rel (   -36,     0)  ->  Abs (   585,    41)
+	 19: Rel (   -46,    39)  ->  Abs (   539,    80)
+	 20: Rel (     0,    31)  ->  Abs (   539,   111)
+	 21: Rel (     0,    30)  ->  Abs (   539,   141)
+	 22: Rel (    25,    40)  ->  Abs (   564,   181)
+	 23: Rel (    44,    30)  ->  Abs (   608,   211)
+	 24: Rel (   203,   137)  ->  Abs (   811,   348)
+	 25: Rel (  -322,   150)  ->  Abs (   489,   498)
+	 26: Rel (  -106,   149)  ->  Abs (   383,   647)
+	 27: Rel (  -125,   139)  ->  Abs (   258,   786)
+	 28: Rel (   -33,    36)  ->  Abs (   225,   822)
+	 29: Rel (     0,    55)  ->  Abs (   225,   877)
+	 30: Rel (     0,    67)  ->  Abs (   225,   944)
+	 31: Rel (    84,     0)  ->  Abs (   309,   944)
+	 32: Rel (    37,     0)  ->  Abs (   346,   944)
+	 33: Rel (    66,   -55)  ->  Abs (   412,   889)
+	 34: Rel (   181,  -243)  ->  Abs (   593,   646)
+	 35: Rel (    66,  -109)  ->  Abs (   659,   537)
+	 36: Rel (     0,   -58)  ->  Abs (   659,   479)
+	 37: Rel (     0,   -30)  ->  Abs (   659,   449)
+	 38: Rel (   -45,   -60)  ->  Abs (   614,   389)
+	 39: Rel (  -139,  -118)  ->  Abs (   475,   271)
+	 40: Rel (  -257,  -194)  ->  Abs (   218,    77)
+	 41: Rel (   -68,   -36)  ->  Abs (   150,    41)
+	 42: Rel (   -21,     0)  ->  Abs (   129,    41)
+	 43: Rel (   -36,     0)  ->  Abs (    93,    41)
+	 44: Rel (   -46,    39)  ->  Abs (    47,    80)
+	 45: Rel (     0,    31)  ->  Abs (    47,   111)
+	 46: Rel (     0,    30)  ->  Abs (    47,   141)
+	 47: Rel (    25,    40)  ->  Abs (    72,   181)
+	 48: Rel (    45,    30)  ->  Abs (   117,   211)
+	 49: Rel (   202,   137)  ->  Abs (   319,   348)
+
+	Glyph  43: off = 0x0000200A, len = 74
+	  numberOfContours:	1
+	  xMin:			184
+	  yMin:			612
+	  xMax:			1071
+	  yMax:			834
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	18
+	00000: PUSHB[7]              7    17     0    14     9   153     5 
+	00008: SVTCA[y-axis] 
+	00009: MDAP[rd]   
+	00010: MIRP[srp0,md,rd,1] 
+	00011: MDRP[nrp0,nmd,rd,0] 
+	00012: SVTCA[x-axis] 
+	00013: MDAP[rd]   
+	00014: SRP0       
+	00015: MDRP[nrp0,nmd,rd,2] 
+	00016: IUP[y]     
+	00017: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual Rep-  1 Y-Short X-Short Off
+	  4:  YDual               Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:                      Y-Short         Off
+	 12:                      Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   184,   709)  ->  Abs (   184,   709)
+	  1: Rel (     0,    37)  ->  Abs (   184,   746)
+	  2: Rel (    63,    54)  ->  Abs (   247,   800)
+	  3: Rel (   100,    13)  ->  Abs (   347,   813)
+	  4: Rel (   524,    21)  ->  Abs (   871,   834)
+	  5: Rel (   124,     0)  ->  Abs (   995,   834)
+	  6: Rel (    76,     0)  ->  Abs (  1071,   834)
+	  7: Rel (     0,   -74)  ->  Abs (  1071,   760)
+	  8: Rel (     0,  -117)  ->  Abs (  1071,   643)
+	  9: Rel (   -96,     0)  ->  Abs (   975,   643)
+	 10: Rel (  -124,     0)  ->  Abs (   851,   643)
+	 11: Rel (  -409,   -14)  ->  Abs (   442,   629)
+	 12: Rel (   -51,    -6)  ->  Abs (   391,   623)
+	 13: Rel (   -85,   -11)  ->  Abs (   306,   612)
+	 14: Rel (   -48,     0)  ->  Abs (   258,   612)
+	 15: Rel (   -74,     0)  ->  Abs (   184,   612)
+
+	Glyph  44: off = 0x00002054, len = 78
+	  numberOfContours:	1
+	  xMin:			184
+	  yMin:			612
+	  xMax:			1829
+	  yMax:			834
+
+	EndPoints
+	---------
+	  0:  16
+
+	  Length of Instructions:	18
+	00000: PUSHB[7]              8    18     0    15    10   153     6 
+	00008: SVTCA[y-axis] 
+	00009: MDAP[rd]   
+	00010: MIRP[srp0,md,rd,1] 
+	00011: MDRP[nrp0,nmd,rd,0] 
+	00012: SVTCA[x-axis] 
+	00013: MDAP[rd]   
+	00014: SRP0       
+	00015: MDRP[nrp0,nmd,rd,2] 
+	00016: IUP[y]     
+	00017: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual               Y-Short         On
+	  5:  YDual               Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:                      Y-Short         Off
+	 13:                      Y-Short X-Short On
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   184,   709)  ->  Abs (   184,   709)
+	  1: Rel (     0,    42)  ->  Abs (   184,   751)
+	  2: Rel (    78,    55)  ->  Abs (   262,   806)
+	  3: Rel (    69,     4)  ->  Abs (   331,   810)
+	  4: Rel (   681,    14)  ->  Abs (  1012,   824)
+	  5: Rel (   611,    10)  ->  Abs (  1623,   834)
+	  6: Rel (   130,     0)  ->  Abs (  1753,   834)
+	  7: Rel (    76,     0)  ->  Abs (  1829,   834)
+	  8: Rel (     0,   -74)  ->  Abs (  1829,   760)
+	  9: Rel (     0,  -117)  ->  Abs (  1829,   643)
+	 10: Rel (   -96,     0)  ->  Abs (  1733,   643)
+	 11: Rel (  -170,     0)  ->  Abs (  1563,   643)
+	 12: Rel ( -1126,   -15)  ->  Abs (   437,   628)
+	 13: Rel (   -46,    -5)  ->  Abs (   391,   623)
+	 14: Rel (   -85,   -11)  ->  Abs (   306,   612)
+	 15: Rel (   -48,     0)  ->  Abs (   258,   612)
+	 16: Rel (   -74,     0)  ->  Abs (   184,   612)
+
+	Glyph  45: off = 0x000020A2, len = 166
+	  numberOfContours:	2
+	  xMin:			418
+	  yMin:			897
+	  xMax:			1227
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  40
+
+	  Length of Instructions:	42
+	00000: NPUSHB      (23):    26    20     0   176     6   178    33    12     7    20 
+	                           177    29   175    36   180    23    15   180     3   175 
+	                             0   177     9 
+	00025: MDAP[rd]   
+	00026: MIRP[nrp0,md,rd,1] 
+	00027: MIRP[srp0,md,rd,1] 
+	00028: MIRP[nrp0,nmd,rd,0] 
+	00029: MDRP[srp0,nmd,rd,0] 
+	00030: MIRP[nrp0,nmd,rd,0] 
+	00031: MIRP[srp0,md,rd,1] 
+	00032: MIRP[nrp0,md,rd,1] 
+	00033: SVTCA[y-axis] 
+	00034: MIAP[rd+ci] 
+	00035: SHP[rp1,zp0] 
+	00036: MIRP[srp0,nmd,rd,0] 
+	00037: MIRP[nrp0,md,rd,1] 
+	00038: IP         
+	00039: IP         
+	00040: IUP[y]     
+	00041: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual Rep-  1 Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:        XDual                 X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short         On
+	 21:        XDual Rep-  1 Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:                      Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short Off
+	 39:                      Y-Short X-Short On
+	 40:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   602,  1196)  ->  Abs (   602,  1196)
+	  1: Rel (    51,    -6)  ->  Abs (   653,  1190)
+	  2: Rel (    64,   -71)  ->  Abs (   717,  1119)
+	  3: Rel (     0,   -48)  ->  Abs (   717,  1071)
+	  4: Rel (     0,   -68)  ->  Abs (   717,  1003)
+	  5: Rel (  -111,  -106)  ->  Abs (   606,   897)
+	  6: Rel (   -67,     0)  ->  Abs (   539,   897)
+	  7: Rel (   -57,     0)  ->  Abs (   482,   897)
+	  8: Rel (   -64,    80)  ->  Abs (   418,   977)
+	  9: Rel (     0,    72)  ->  Abs (   418,  1049)
+	 10: Rel (     0,   114)  ->  Abs (   418,  1163)
+	 11: Rel (   203,   301)  ->  Abs (   621,  1464)
+	 12: Rel (    73,     0)  ->  Abs (   694,  1464)
+	 13: Rel (    24,     0)  ->  Abs (   718,  1464)
+	 14: Rel (    38,   -35)  ->  Abs (   756,  1429)
+	 15: Rel (     0,   -22)  ->  Abs (   756,  1407)
+	 16: Rel (     0,   -29)  ->  Abs (   756,  1378)
+	 17: Rel (   -26,   -37)  ->  Abs (   730,  1341)
+	 18: Rel (   -42,   -30)  ->  Abs (   688,  1311)
+	 19: Rel (   -61,   -44)  ->  Abs (   627,  1267)
+	 20: Rel (   446,   -71)  ->  Abs (  1073,  1196)
+	 21: Rel (    51,    -6)  ->  Abs (  1124,  1190)
+	 22: Rel (    64,   -71)  ->  Abs (  1188,  1119)
+	 23: Rel (     0,   -48)  ->  Abs (  1188,  1071)
+	 24: Rel (     0,   -68)  ->  Abs (  1188,  1003)
+	 25: Rel (  -111,  -106)  ->  Abs (  1077,   897)
+	 26: Rel (   -67,     0)  ->  Abs (  1010,   897)
+	 27: Rel (   -57,     0)  ->  Abs (   953,   897)
+	 28: Rel (   -64,    80)  ->  Abs (   889,   977)
+	 29: Rel (     0,    72)  ->  Abs (   889,  1049)
+	 30: Rel (     0,    61)  ->  Abs (   889,  1110)
+	 31: Rel (    77,   183)  ->  Abs (   966,  1293)
+	 32: Rel (   147,   171)  ->  Abs (  1113,  1464)
+	 33: Rel (    52,     0)  ->  Abs (  1165,  1464)
+	 34: Rel (    24,     0)  ->  Abs (  1189,  1464)
+	 35: Rel (    38,   -35)  ->  Abs (  1227,  1429)
+	 36: Rel (     0,   -22)  ->  Abs (  1227,  1407)
+	 37: Rel (     0,   -33)  ->  Abs (  1227,  1374)
+	 38: Rel (   -32,   -37)  ->  Abs (  1195,  1337)
+	 39: Rel (   -36,   -26)  ->  Abs (  1159,  1311)
+	 40: Rel (   -61,   -44)  ->  Abs (  1098,  1267)
+
+	Glyph  46: off = 0x00002148, len = 166
+	  numberOfContours:	2
+	  xMin:			395
+	  yMin:			897
+	  xMax:			1204
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  40
+
+	  Length of Instructions:	42
+	00000: NPUSHB      (23):    33    12   178    26    20     0   176     6     7    36 
+	                           180    23   175    20   177    29     0   177     9   175 
+	                            15   180     3 
+	00025: MDAP[rd]   
+	00026: MIRP[nrp0,nmd,rd,0] 
+	00027: MIRP[srp0,md,rd,1] 
+	00028: MIRP[nrp0,md,rd,1] 
+	00029: MDRP[srp0,nmd,rd,0] 
+	00030: MIRP[nrp0,md,rd,1] 
+	00031: MIRP[srp0,md,rd,1] 
+	00032: MIRP[nrp0,nmd,rd,0] 
+	00033: SVTCA[y-axis] 
+	00034: MIAP[rd+ci] 
+	00035: MIRP[nrp0,md,rd,1] 
+	00036: IP         
+	00037: IP         
+	00038: MIRP[nrp0,nmd,rd,0] 
+	00039: SHP[rp2,zp1] 
+	00040: IUP[y]     
+	00041: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual       Rep-  1 Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                              X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual               Y-Short         On
+	 21:  YDual       Rep-  1 Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:              Rep-  1 Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   549,  1165)  ->  Abs (   549,  1165)
+	  1: Rel (   -51,     6)  ->  Abs (   498,  1171)
+	  2: Rel (   -64,    71)  ->  Abs (   434,  1242)
+	  3: Rel (     0,    48)  ->  Abs (   434,  1290)
+	  4: Rel (     0,    70)  ->  Abs (   434,  1360)
+	  5: Rel (   111,   104)  ->  Abs (   545,  1464)
+	  6: Rel (    67,     0)  ->  Abs (   612,  1464)
+	  7: Rel (    57,     0)  ->  Abs (   669,  1464)
+	  8: Rel (    64,   -79)  ->  Abs (   733,  1385)
+	  9: Rel (     0,   -72)  ->  Abs (   733,  1313)
+	 10: Rel (     0,  -115)  ->  Abs (   733,  1198)
+	 11: Rel (  -203,  -301)  ->  Abs (   530,   897)
+	 12: Rel (   -73,     0)  ->  Abs (   457,   897)
+	 13: Rel (   -24,     0)  ->  Abs (   433,   897)
+	 14: Rel (   -38,    36)  ->  Abs (   395,   933)
+	 15: Rel (     0,    21)  ->  Abs (   395,   954)
+	 16: Rel (     0,    34)  ->  Abs (   395,   988)
+	 17: Rel (    32,    37)  ->  Abs (   427,  1025)
+	 18: Rel (    36,    26)  ->  Abs (   463,  1051)
+	 19: Rel (    61,    43)  ->  Abs (   524,  1094)
+	 20: Rel (   496,    71)  ->  Abs (  1020,  1165)
+	 21: Rel (   -51,     6)  ->  Abs (   969,  1171)
+	 22: Rel (   -64,    71)  ->  Abs (   905,  1242)
+	 23: Rel (     0,    48)  ->  Abs (   905,  1290)
+	 24: Rel (     0,    69)  ->  Abs (   905,  1359)
+	 25: Rel (   111,   105)  ->  Abs (  1016,  1464)
+	 26: Rel (    67,     0)  ->  Abs (  1083,  1464)
+	 27: Rel (    57,     0)  ->  Abs (  1140,  1464)
+	 28: Rel (    64,   -79)  ->  Abs (  1204,  1385)
+	 29: Rel (     0,   -72)  ->  Abs (  1204,  1313)
+	 30: Rel (     0,   -62)  ->  Abs (  1204,  1251)
+	 31: Rel (   -77,  -182)  ->  Abs (  1127,  1069)
+	 32: Rel (  -147,  -172)  ->  Abs (   980,   897)
+	 33: Rel (   -52,     0)  ->  Abs (   928,   897)
+	 34: Rel (   -24,     0)  ->  Abs (   904,   897)
+	 35: Rel (   -38,    36)  ->  Abs (   866,   933)
+	 36: Rel (     0,    21)  ->  Abs (   866,   954)
+	 37: Rel (     0,    34)  ->  Abs (   866,   988)
+	 38: Rel (    32,    37)  ->  Abs (   898,  1025)
+	 39: Rel (    36,    26)  ->  Abs (   934,  1051)
+	 40: Rel (    61,    43)  ->  Abs (   995,  1094)
+
+	Glyph  47: off = 0x000021EE, len = 92
+	  numberOfContours:	1
+	  xMin:			418
+	  yMin:			897
+	  xMax:			756
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	25
+	00000: NPUSHB      (13):     0   176     6   178    12     7    15   180     3   175 
+	                             0   177     9 
+	00015: MDAP[rd]   
+	00016: MIRP[nrp0,md,rd,1] 
+	00017: MIRP[srp0,md,rd,1] 
+	00018: MIRP[nrp0,nmd,rd,0] 
+	00019: SVTCA[y-axis] 
+	00020: MIAP[rd+ci] 
+	00021: MIRP[srp0,nmd,rd,0] 
+	00022: MIRP[nrp0,md,rd,1] 
+	00023: IUP[y]     
+	00024: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual Rep-  1 Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:        XDual                 X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   602,  1196)  ->  Abs (   602,  1196)
+	  1: Rel (    51,    -6)  ->  Abs (   653,  1190)
+	  2: Rel (    64,   -71)  ->  Abs (   717,  1119)
+	  3: Rel (     0,   -48)  ->  Abs (   717,  1071)
+	  4: Rel (     0,   -68)  ->  Abs (   717,  1003)
+	  5: Rel (  -111,  -106)  ->  Abs (   606,   897)
+	  6: Rel (   -67,     0)  ->  Abs (   539,   897)
+	  7: Rel (   -57,     0)  ->  Abs (   482,   897)
+	  8: Rel (   -64,    80)  ->  Abs (   418,   977)
+	  9: Rel (     0,    72)  ->  Abs (   418,  1049)
+	 10: Rel (     0,   114)  ->  Abs (   418,  1163)
+	 11: Rel (   203,   301)  ->  Abs (   621,  1464)
+	 12: Rel (    73,     0)  ->  Abs (   694,  1464)
+	 13: Rel (    24,     0)  ->  Abs (   718,  1464)
+	 14: Rel (    38,   -35)  ->  Abs (   756,  1429)
+	 15: Rel (     0,   -22)  ->  Abs (   756,  1407)
+	 16: Rel (     0,   -29)  ->  Abs (   756,  1378)
+	 17: Rel (   -26,   -37)  ->  Abs (   730,  1341)
+	 18: Rel (   -42,   -30)  ->  Abs (   688,  1311)
+	 19: Rel (   -61,   -44)  ->  Abs (   627,  1267)
+
+	Glyph  48: off = 0x0000224A, len = 92
+	  numberOfContours:	1
+	  xMin:			395
+	  yMin:			897
+	  xMax:			733
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	25
+	00000: NPUSHB      (13):    12   178     0   176     6     7     0   177     9   175 
+	                            15   180     3 
+	00015: MDAP[rd]   
+	00016: MIRP[nrp0,nmd,rd,0] 
+	00017: MIRP[srp0,md,rd,1] 
+	00018: MIRP[nrp0,md,rd,1] 
+	00019: SVTCA[y-axis] 
+	00020: MIAP[rd+ci] 
+	00021: MIRP[nrp0,md,rd,1] 
+	00022: MIRP[nrp0,nmd,rd,0] 
+	00023: IUP[y]     
+	00024: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual       Rep-  1 Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                              X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   549,  1165)  ->  Abs (   549,  1165)
+	  1: Rel (   -51,     6)  ->  Abs (   498,  1171)
+	  2: Rel (   -64,    71)  ->  Abs (   434,  1242)
+	  3: Rel (     0,    48)  ->  Abs (   434,  1290)
+	  4: Rel (     0,    70)  ->  Abs (   434,  1360)
+	  5: Rel (   111,   104)  ->  Abs (   545,  1464)
+	  6: Rel (    67,     0)  ->  Abs (   612,  1464)
+	  7: Rel (    57,     0)  ->  Abs (   669,  1464)
+	  8: Rel (    64,   -79)  ->  Abs (   733,  1385)
+	  9: Rel (     0,   -72)  ->  Abs (   733,  1313)
+	 10: Rel (     0,  -115)  ->  Abs (   733,  1198)
+	 11: Rel (  -203,  -301)  ->  Abs (   530,   897)
+	 12: Rel (   -73,     0)  ->  Abs (   457,   897)
+	 13: Rel (   -24,     0)  ->  Abs (   433,   897)
+	 14: Rel (   -38,    36)  ->  Abs (   395,   933)
+	 15: Rel (     0,    21)  ->  Abs (   395,   954)
+	 16: Rel (     0,    34)  ->  Abs (   395,   988)
+	 17: Rel (    32,    37)  ->  Abs (   427,  1025)
+	 18: Rel (    36,    26)  ->  Abs (   463,  1051)
+	 19: Rel (    61,    43)  ->  Abs (   524,  1094)
+
+	Glyph  49: off = 0x000022A6, len = 60
+	  numberOfContours:	1
+	  xMin:			266
+	  yMin:			381
+	  xMax:			565
+	  yMax:			680
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	14
+	00000: PUSHB[6]              3   176     9     0   175     6 
+	00007: MDAP[rd]   
+	00008: MIRP[nrp0,md,rd,1] 
+	00009: SVTCA[y-axis] 
+	00010: MDAP[rd]   
+	00011: MIRP[nrp0,md,rd,1] 
+	00012: IUP[y]     
+	00013: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   565,   551)  ->  Abs (   565,   551)
+	  1: Rel (     0,   -69)  ->  Abs (   565,   482)
+	  2: Rel (  -106,  -101)  ->  Abs (   459,   381)
+	  3: Rel (   -68,     0)  ->  Abs (   391,   381)
+	  4: Rel (   -52,     0)  ->  Abs (   339,   381)
+	  5: Rel (   -73,    73)  ->  Abs (   266,   454)
+	  6: Rel (     0,    52)  ->  Abs (   266,   506)
+	  7: Rel (     0,    68)  ->  Abs (   266,   574)
+	  8: Rel (   111,   106)  ->  Abs (   377,   680)
+	  9: Rel (    67,     0)  ->  Abs (   444,   680)
+	 10: Rel (    52,     0)  ->  Abs (   496,   680)
+	 11: Rel (    69,   -74)  ->  Abs (   565,   606)
+
+	Glyph  50: off = 0x000022E2, len = 92
+	  numberOfContours:	1
+	  xMin:			332
+	  yMin:			543
+	  xMax:			670
+	  yMax:			1110
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	24
+	00000: NPUSHB      (12):    12   178     0   176     6    15   180     3   175     0 
+	                           177     9 
+	00014: MDAP[rd]   
+	00015: MIRP[nrp0,md,rd,1] 
+	00016: MIRP[srp0,md,rd,1] 
+	00017: MIRP[nrp0,nmd,rd,0] 
+	00018: SVTCA[y-axis] 
+	00019: MDAP[rd]   
+	00020: MIRP[nrp0,md,rd,1] 
+	00021: MIRP[nrp0,nmd,rd,0] 
+	00022: IUP[y]     
+	00023: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual Rep-  1 Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:        XDual                 X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   516,   842)  ->  Abs (   516,   842)
+	  1: Rel (    51,    -6)  ->  Abs (   567,   836)
+	  2: Rel (    64,   -71)  ->  Abs (   631,   765)
+	  3: Rel (     0,   -48)  ->  Abs (   631,   717)
+	  4: Rel (     0,   -69)  ->  Abs (   631,   648)
+	  5: Rel (  -111,  -105)  ->  Abs (   520,   543)
+	  6: Rel (   -67,     0)  ->  Abs (   453,   543)
+	  7: Rel (   -56,     0)  ->  Abs (   397,   543)
+	  8: Rel (   -65,    79)  ->  Abs (   332,   622)
+	  9: Rel (     0,    72)  ->  Abs (   332,   694)
+	 10: Rel (     0,   115)  ->  Abs (   332,   809)
+	 11: Rel (   203,   301)  ->  Abs (   535,  1110)
+	 12: Rel (    74,     0)  ->  Abs (   609,  1110)
+	 13: Rel (    24,     0)  ->  Abs (   633,  1110)
+	 14: Rel (    37,   -36)  ->  Abs (   670,  1074)
+	 15: Rel (     0,   -21)  ->  Abs (   670,  1053)
+	 16: Rel (     0,   -33)  ->  Abs (   670,  1020)
+	 17: Rel (   -31,   -38)  ->  Abs (   639,   982)
+	 18: Rel (   -37,   -25)  ->  Abs (   602,   957)
+	 19: Rel (   -60,   -44)  ->  Abs (   542,   913)
+
+	Glyph  51: off = 0x0000233E, len = 134
+	  numberOfContours:	2
+	  xMin:			176
+	  yMin:			-8
+	  xMax:			627
+	  yMax:			1008
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  31
+
+	  Length of Instructions:	34
+	00000: NPUSHB      (18):    12   178     0   176     6    29   176    23    15   180 
+	                             3   175     0   177     9    20   175    26 
+	00020: MDAP[rd]   
+	00021: MIRP[nrp0,md,rd,1] 
+	00022: MDRP[srp0,nmd,rd,0] 
+	00023: MIRP[nrp0,md,rd,1] 
+	00024: MIRP[srp0,md,rd,1] 
+	00025: MIRP[nrp0,nmd,rd,0] 
+	00026: SVTCA[y-axis] 
+	00027: MDAP[rd]   
+	00028: MIRP[nrp0,md,rd,1] 
+	00029: MDRP[srp0,nmd,rd,0] 
+	00030: MIRP[nrp0,md,rd,1] 
+	00031: MIRP[nrp0,nmd,rd,0] 
+	00032: IUP[y]     
+	00033: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual Rep-  1 Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:        XDual                 X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:                              X-Short On
+	 21:        XDual         Y-Short         Off
+	 22:                      Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   473,   739)  ->  Abs (   473,   739)
+	  1: Rel (    51,    -6)  ->  Abs (   524,   733)
+	  2: Rel (    64,   -70)  ->  Abs (   588,   663)
+	  3: Rel (     0,   -49)  ->  Abs (   588,   614)
+	  4: Rel (     0,   -68)  ->  Abs (   588,   546)
+	  5: Rel (  -111,  -106)  ->  Abs (   477,   440)
+	  6: Rel (   -67,     0)  ->  Abs (   410,   440)
+	  7: Rel (   -57,     0)  ->  Abs (   353,   440)
+	  8: Rel (   -64,    80)  ->  Abs (   289,   520)
+	  9: Rel (     0,    72)  ->  Abs (   289,   592)
+	 10: Rel (     0,   115)  ->  Abs (   289,   707)
+	 11: Rel (   203,   301)  ->  Abs (   492,  1008)
+	 12: Rel (    73,     0)  ->  Abs (   565,  1008)
+	 13: Rel (    24,     0)  ->  Abs (   589,  1008)
+	 14: Rel (    38,   -36)  ->  Abs (   627,   972)
+	 15: Rel (     0,   -22)  ->  Abs (   627,   950)
+	 16: Rel (     0,   -33)  ->  Abs (   627,   917)
+	 17: Rel (   -32,   -37)  ->  Abs (   595,   880)
+	 18: Rel (   -36,   -26)  ->  Abs (   559,   854)
+	 19: Rel (   -61,   -44)  ->  Abs (   498,   810)
+	 20: Rel (   -23,  -648)  ->  Abs (   475,   162)
+	 21: Rel (     0,   -69)  ->  Abs (   475,    93)
+	 22: Rel (  -106,  -101)  ->  Abs (   369,    -8)
+	 23: Rel (   -68,     0)  ->  Abs (   301,    -8)
+	 24: Rel (   -52,     0)  ->  Abs (   249,    -8)
+	 25: Rel (   -73,    73)  ->  Abs (   176,    65)
+	 26: Rel (     0,    52)  ->  Abs (   176,   117)
+	 27: Rel (     0,    69)  ->  Abs (   176,   186)
+	 28: Rel (   111,   105)  ->  Abs (   287,   291)
+	 29: Rel (    67,     0)  ->  Abs (   354,   291)
+	 30: Rel (    52,     0)  ->  Abs (   406,   291)
+	 31: Rel (    69,   -74)  ->  Abs (   475,   217)
+
+	Glyph  52: off = 0x000023C4, len = 222
+	  numberOfContours:	2
+	  xMin:			203
+	  yMin:			-8
+	  xMax:			1004
+	  yMax:			1446
+
+	EndPoints
+	---------
+	  0:  35
+	  1:  47
+
+	  Length of Instructions:	84
+	00000: NPUSHB      (58):   106    34   122    34   138    34     3    54    29    70 
+	                            29    86    29     3   121    21   137    21     2    38 
+	                             5    54     5   102     5     3   144    32     1    32 
+	                             0   153    27     6    11    45   176    39     4     8 
+	                           137    14    18    18    30     3   137    24    36   175 
+	                            79    42    95    42   111    42     3    42 
+	00060: MDAP[rd]   
+	00061: DELTAP1    
+	00062: MIRP[nrp0,md,rd,1] 
+	00063: MDRP[srp0,nmd,rd,0] 
+	00064: MIRP[nrp0,md,rd,1] 
+	00065: MDRP[nrp0,nmd,rd,0] 
+	00066: IP         
+	00067: MDAP[rd]   
+	00068: MDRP[nrp0,nmd,rd,0] 
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: SVTCA[y-axis] 
+	00071: MIAP[rd+ci] 
+	00072: MIRP[srp0,md,rd,1] 
+	00073: MDRP[nrp0,nmd,rd,2] 
+	00074: MIAP[rd+ci] 
+	00075: MIRP[nrp0,md,rd,1] 
+	00076: MDRP[nrp0,md,rd,1] 
+	00077: DELTAP1    
+	00078: IUP[y]     
+	00079: IUP[x]     
+	00080: DELTAP1    
+	00081: DELTAP1    
+	00082: DELTAP1    
+	00083: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:                      Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual Rep-  1 Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual               Y-Short X-Short On
+	 22:  YDual       Rep-  1 Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:  YDual               Y-Short X-Short On
+	 35:  YDual               Y-Short X-Short Off
+	 36:                              X-Short On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   680,  1280)  ->  Abs (   680,  1280)
+	  1: Rel (  -104,     0)  ->  Abs (   576,  1280)
+	  2: Rel (  -134,  -145)  ->  Abs (   442,  1135)
+	  3: Rel (     0,   -76)  ->  Abs (   442,  1059)
+	  4: Rel (     0,   -63)  ->  Abs (   442,   996)
+	  5: Rel (    68,  -115)  ->  Abs (   510,   881)
+	  6: Rel (    54,   -91)  ->  Abs (   564,   790)
+	  7: Rel (    28,   -97)  ->  Abs (   592,   693)
+	  8: Rel (     0,   -42)  ->  Abs (   592,   651)
+	  9: Rel (     0,   -69)  ->  Abs (   592,   582)
+	 10: Rel (   -82,  -142)  ->  Abs (   510,   440)
+	 11: Rel (   -64,     0)  ->  Abs (   446,   440)
+	 12: Rel (   -30,     0)  ->  Abs (   416,   440)
+	 13: Rel (   -39,    40)  ->  Abs (   377,   480)
+	 14: Rel (     0,    32)  ->  Abs (   377,   512)
+	 15: Rel (     0,    24)  ->  Abs (   377,   536)
+	 16: Rel (    18,    37)  ->  Abs (   395,   573)
+	 17: Rel (    21,    42)  ->  Abs (   416,   615)
+	 18: Rel (     0,    32)  ->  Abs (   416,   647)
+	 19: Rel (     0,    27)  ->  Abs (   416,   674)
+	 20: Rel (   -23,    62)  ->  Abs (   393,   736)
+	 21: Rel (   -46,    63)  ->  Abs (   347,   799)
+	 22: Rel (   -64,    89)  ->  Abs (   283,   888)
+	 23: Rel (   -35,   116)  ->  Abs (   248,  1004)
+	 24: Rel (     0,    55)  ->  Abs (   248,  1059)
+	 25: Rel (     0,   148)  ->  Abs (   248,  1207)
+	 26: Rel (   253,   239)  ->  Abs (   501,  1446)
+	 27: Rel (   204,     0)  ->  Abs (   705,  1446)
+	 28: Rel (   123,     0)  ->  Abs (   828,  1446)
+	 29: Rel (   176,  -119)  ->  Abs (  1004,  1327)
+	 30: Rel (     0,   -74)  ->  Abs (  1004,  1253)
+	 31: Rel (     0,   -77)  ->  Abs (  1004,  1176)
+	 32: Rel (   -93,     0)  ->  Abs (   911,  1176)
+	 33: Rel (   -29,     0)  ->  Abs (   882,  1176)
+	 34: Rel (   -49,    40)  ->  Abs (   833,  1216)
+	 35: Rel (   -79,    64)  ->  Abs (   754,  1280)
+	 36: Rel (  -252, -1118)  ->  Abs (   502,   162)
+	 37: Rel (     0,   -68)  ->  Abs (   502,    94)
+	 38: Rel (  -106,  -102)  ->  Abs (   396,    -8)
+	 39: Rel (   -68,     0)  ->  Abs (   328,    -8)
+	 40: Rel (   -52,     0)  ->  Abs (   276,    -8)
+	 41: Rel (   -73,    73)  ->  Abs (   203,    65)
+	 42: Rel (     0,    52)  ->  Abs (   203,   117)
+	 43: Rel (     0,    69)  ->  Abs (   203,   186)
+	 44: Rel (   110,   105)  ->  Abs (   313,   291)
+	 45: Rel (    68,     0)  ->  Abs (   381,   291)
+	 46: Rel (    52,     0)  ->  Abs (   433,   291)
+	 47: Rel (    69,   -74)  ->  Abs (   502,   217)
+
+	Glyph  53: off = 0x000024A2, len = 166
+	  numberOfContours:	3
+	  xMin:			-115
+	  yMin:			-219
+	  xMax:			1059
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  18
+	  1:  19
+	  2:  20
+
+	  Length of Instructions:	81
+	00000: NPUSHB      (10):    10    14    26    14   138    14     3     9     3     5 
+	00012: PUSHW[1]            -32 
+	00015: NPUSHB      (14):    12    16    72     0     4     1    16     5    20     2 
+	                           233    16   229    19 
+	00031: PUSHW[1]            258 
+	00034: NPUSHB      (18):     9    15    19    19     0    20     6   251    12    64 
+	                            22    12   245     2    21     0   240     2 
+	00054: CALL       
+	00055: CALL       
+	00056: SVTCA[x-axis] 
+	00057: SMD        
+	00058: RTG        
+	00059: SRP0       
+	00060: FLIPON     
+	00061: MIRP[nrp0,md,rd,1] 
+	00062: MDRP[nrp0,nmd,rd,0] 
+	00063: SRP2       
+	00064: IP         
+	00065: MDAP[rd]   
+	00066: SVTCA[y-axis] 
+	00067: MIAP[rd+ci] 
+	00068: MIAP[rd+ci] 
+	00069: MIAP[rd+ci] 
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: MDRP[nrp0,nmd,rd,2] 
+	00072: IUP[y]     
+	00073: IUP[x]     
+	00074: SDS        
+	00075: SDB        
+	00076: DELTAP1    
+	00077: CALL       
+	00078: SDS        
+	00079: SDB        
+	00080: DELTAP1    
+
+	Flags
+	-----
+	  0:                      Y-Short X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual               Y-Short         Off
+	  5:                                      Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:  YDual XDual Rep-  1 Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:              Rep-  1                 Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:              Rep-  1                 On
+
+	Coordinates
+	-----------
+	  0: Rel (  -115,  -100)  ->  Abs (  -115,  -100)
+	  1: Rel (     0,    44)  ->  Abs (  -115,   -56)
+	  2: Rel (    53,    47)  ->  Abs (   -62,    -9)
+	  3: Rel (    62,    19)  ->  Abs (     0,    10)
+	  4: Rel (   303,    96)  ->  Abs (   303,   106)
+	  5: Rel (   467,   389)  ->  Abs (   770,   495)
+	  6: Rel (   111,   240)  ->  Abs (   881,   735)
+	  7: Rel (    21,    45)  ->  Abs (   902,   780)
+	  8: Rel (    42,    43)  ->  Abs (   944,   823)
+	  9: Rel (    43,     0)  ->  Abs (   987,   823)
+	 10: Rel (    33,     0)  ->  Abs (  1020,   823)
+	 11: Rel (    39,   -45)  ->  Abs (  1059,   778)
+	 12: Rel (     0,   -33)  ->  Abs (  1059,   745)
+	 13: Rel (     0,  -118)  ->  Abs (  1059,   627)
+	 14: Rel (  -389,  -455)  ->  Abs (   670,   172)
+	 15: Rel (  -562,  -356)  ->  Abs (   108,  -184)
+	 16: Rel (  -120,     0)  ->  Abs (   -12,  -184)
+	 17: Rel (   -46,     0)  ->  Abs (   -58,  -184)
+	 18: Rel (   -57,    47)  ->  Abs (  -115,  -137)
+	 19: Rel (   744,  1237)  ->  Abs (   629,  1100)
+	 20: Rel (   385, -1319)  ->  Abs (  1014,  -219)
+
+	Glyph  54: off = 0x00002548, len = 218
+	  numberOfContours:	3
+	  xMin:			-115
+	  yMin:			-184
+	  xMax:			1591
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  29
+	  1:  30
+	  2:  31
+
+	  Length of Instructions:	103
+	00000: NPUSHB      (15):    89    11     1    28    40    10    17    72    53     9 
+	                            85     9     2     3    30 
+	00017: PUSHW[1]            258 
+	00020: NPUSHB      (43):    11    16     0   233    19    24    16    15    31     7 
+	                           234     3   229     0     0    32     0    48     0     3 
+	                            12     5    30    30    27    13    11   251    64    19 
+	                             0     0     6    31    27    33    27   246     2    32 
+	                             6   240     2 
+	00065: CALL       
+	00066: CALL       
+	00067: SVTCA[x-axis] 
+	00068: RTG        
+	00069: SRP0       
+	00070: MDRP[nrp0,nmd,rd,0] 
+	00071: SRP2       
+	00072: IP         
+	00073: MDAP[rd]   
+	00074: MDRP[nrp0,nmd,rd,1] 
+	00075: SMD        
+	00076: FLIPON     
+	00077: MIRP[srp0,md,rd,1] 
+	00078: MDRP[nrp0,md,rd,1] 
+	00079: SRP1       
+	00080: IP         
+	00081: MDAP[rd]   
+	00082: SDS        
+	00083: SDB        
+	00084: DELTAP1    
+	00085: SVTCA[y-axis] 
+	00086: MIAP[rd+ci] 
+	00087: MIRP[nrp0,md,rd,1] 
+	00088: MDRP[nrp0,nmd,rd,0] 
+	00089: MIAP[rd+ci] 
+	00090: MDRP[nrp0,nmd,rd,0] 
+	00091: MDRP[srp0,md,rd,1] 
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: SRP1       
+	00094: IP         
+	00095: MIAP[rd+ci] 
+	00096: IUP[y]     
+	00097: IUP[x]     
+	00098: SDS        
+	00099: DELTAP1    
+	00100: CALL       
+	00101: SVTCA[x-axis] 
+	00102: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:              Rep-  1                 Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:                                      Off
+	 11:        XDual                 X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:                      Y-Short         Off
+	 30:                              X-Short On
+	 31:        XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1065,   580)  ->  Abs (  1065,   580)
+	  1: Rel (  -291,  -383)  ->  Abs (   774,   197)
+	  2: Rel (  -643,  -381)  ->  Abs (   131,  -184)
+	  3: Rel (  -141,     0)  ->  Abs (   -10,  -184)
+	  4: Rel (   -48,     0)  ->  Abs (   -58,  -184)
+	  5: Rel (   -57,    48)  ->  Abs (  -115,  -136)
+	  6: Rel (     0,    40)  ->  Abs (  -115,   -96)
+	  7: Rel (     0,    79)  ->  Abs (  -115,   -17)
+	  8: Rel (   133,    25)  ->  Abs (    18,     8)
+	  9: Rel (   217,    41)  ->  Abs (   235,    49)
+	 10: Rel (   420,   290)  ->  Abs (   655,   339)
+	 11: Rel (   230,   273)  ->  Abs (   885,   612)
+	 12: Rel (   -49,    34)  ->  Abs (   836,   646)
+	 13: Rel (     0,    54)  ->  Abs (   836,   700)
+	 14: Rel (     0,    48)  ->  Abs (   836,   748)
+	 15: Rel (    82,    73)  ->  Abs (   918,   821)
+	 16: Rel (    51,     0)  ->  Abs (   969,   821)
+	 17: Rel (    49,     0)  ->  Abs (  1018,   821)
+	 18: Rel (    70,   -41)  ->  Abs (  1088,   780)
+	 19: Rel (     4,   -26)  ->  Abs (  1092,   754)
+	 20: Rel (   188,    14)  ->  Abs (  1280,   768)
+	 21: Rel (   126,   135)  ->  Abs (  1406,   903)
+	 22: Rel (    33,    35)  ->  Abs (  1439,   938)
+	 23: Rel (    41,    29)  ->  Abs (  1480,   967)
+	 24: Rel (    31,     0)  ->  Abs (  1511,   967)
+	 25: Rel (    36,     0)  ->  Abs (  1547,   967)
+	 26: Rel (    44,   -43)  ->  Abs (  1591,   924)
+	 27: Rel (     0,   -33)  ->  Abs (  1591,   891)
+	 28: Rel (     0,  -107)  ->  Abs (  1591,   784)
+	 29: Rel (  -326,  -187)  ->  Abs (  1265,   597)
+	 30: Rel (   -98,   503)  ->  Abs (  1167,  1100)
+	 31: Rel (    86, -1196)  ->  Abs (  1253,   -96)
+
+	Glyph  55: off = 0x00002622, len = 292
+	  numberOfContours:	3
+	  xMin:			-115
+	  yMin:			-184
+	  xMax:			1686
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  43
+	  1:  44
+	  2:  45
+
+	  Length of Instructions:	144
+	00000: NPUSHB      (33):    10    41    26    41    42    41     3     9    58    37 
+	                            74    37    90    37     3     2    32    18    32    34 
+	                            32     3    12    35    10     1     3     1    24     9 
+	                            16    72    44 
+	00035: PUSHW[1]            258 
+	00038: NPUSHB      (54):    16    11    42    27    42    43    42     3    15    42 
+	                            30    25    39    11     0   231    16    20    34    25 
+	                            15    45    15     8     1    28     4     8   232     3 
+	                           229    45    44    45    44    36    14    13    11   251 
+	                            64    20     0     0    36     6    47    36   246     2 
+	                            46     6   240     2 
+	00094: CALL       
+	00095: CALL       
+	00096: SVTCA[x-axis] 
+	00097: SRP1       
+	00098: SRP2       
+	00099: IP         
+	00100: RTG        
+	00101: MDAP[rd]   
+	00102: SHP[rp1,zp0] 
+	00103: SMD        
+	00104: FLIPON     
+	00105: MIRP[srp0,md,rd,1] 
+	00106: MDRP[nrp0,md,rd,1] 
+	00107: SRP1       
+	00108: SRP2       
+	00109: IP         
+	00110: IP         
+	00111: MDAP[rd]   
+	00112: MDAP[rd]   
+	00113: SVTCA[y-axis] 
+	00114: MIAP[rd+ci] 
+	00115: MIRP[nrp0,md,rd,1] 
+	00116: SDS        
+	00117: SDB        
+	00118: DELTAP1    
+	00119: MDRP[nrp0,nmd,rd,0] 
+	00120: MIAP[rd+ci] 
+	00121: MDRP[nrp0,nmd,rd,0] 
+	00122: MDRP[srp0,nmd,rd,0] 
+	00123: IP         
+	00124: MIRP[srp0,md,rd,1] 
+	00125: SHP[rp2,zp1] 
+	00126: MDRP[nrp0,nmd,rd,2] 
+	00127: SRP1       
+	00128: IP         
+	00129: IP         
+	00130: SDB        
+	00131: DELTAP1    
+	00132: MDAP[rd]   
+	00133: MIAP[rd+ci] 
+	00134: IUP[y]     
+	00135: IUP[x]     
+	00136: CALL       
+	00137: SDS        
+	00138: DELTAP1    
+	00139: SDB        
+	00140: DELTAP1    
+	00141: DELTAP1    
+	00142: SDB        
+	00143: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                              X-Short Off
+	  2:                                      Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:                                      Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short X-Short On
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual               Y-Short X-Short On
+	 43:                      Y-Short X-Short Off
+	 44:        XDual Rep-  1         X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   942,   483)  ->  Abs (   942,   483)
+	  1: Rel (  -228,  -262)  ->  Abs (   714,   221)
+	  2: Rel (  -634,  -405)  ->  Abs (    80,  -184)
+	  3: Rel (   -90,     0)  ->  Abs (   -10,  -184)
+	  4: Rel (   -48,     0)  ->  Abs (   -58,  -184)
+	  5: Rel (   -57,    48)  ->  Abs (  -115,  -136)
+	  6: Rel (     0,    40)  ->  Abs (  -115,   -96)
+	  7: Rel (     0,    72)  ->  Abs (  -115,   -24)
+	  8: Rel (    90,    26)  ->  Abs (   -25,     2)
+	  9: Rel (   161,    47)  ->  Abs (   136,    49)
+	 10: Rel (   482,   311)  ->  Abs (   618,   360)
+	 11: Rel (   144,   162)  ->  Abs (   762,   522)
+	 12: Rel (   -94,    54)  ->  Abs (   668,   576)
+	 13: Rel (     0,    86)  ->  Abs (   668,   662)
+	 14: Rel (     0,    42)  ->  Abs (   668,   704)
+	 15: Rel (    57,    76)  ->  Abs (   725,   780)
+	 16: Rel (    61,     0)  ->  Abs (   786,   780)
+	 17: Rel (    55,     0)  ->  Abs (   841,   780)
+	 18: Rel (    40,   -45)  ->  Abs (   881,   735)
+	 19: Rel (    34,   -39)  ->  Abs (   915,   696)
+	 20: Rel (    41,     0)  ->  Abs (   956,   696)
+	 21: Rel (    28,     0)  ->  Abs (   984,   696)
+	 22: Rel (    58,    23)  ->  Abs (  1042,   719)
+	 23: Rel (    47,    43)  ->  Abs (  1089,   762)
+	 24: Rel (    65,    59)  ->  Abs (  1154,   821)
+	 25: Rel (    50,     0)  ->  Abs (  1204,   821)
+	 26: Rel (    24,     0)  ->  Abs (  1228,   821)
+	 27: Rel (    45,   -24)  ->  Abs (  1273,   797)
+	 28: Rel (    41,   -53)  ->  Abs (  1314,   744)
+	 29: Rel (    32,   -43)  ->  Abs (  1346,   701)
+	 30: Rel (    20,   -19)  ->  Abs (  1366,   682)
+	 31: Rel (    69,    34)  ->  Abs (  1435,   716)
+	 32: Rel (    50,    97)  ->  Abs (  1485,   813)
+	 33: Rel (    51,    94)  ->  Abs (  1536,   907)
+	 34: Rel (    57,     0)  ->  Abs (  1593,   907)
+	 35: Rel (    93,     0)  ->  Abs (  1686,   907)
+	 36: Rel (     0,   -88)  ->  Abs (  1686,   819)
+	 37: Rel (     0,   -75)  ->  Abs (  1686,   744)
+	 38: Rel (  -233,  -248)  ->  Abs (  1453,   496)
+	 39: Rel (  -103,     0)  ->  Abs (  1350,   496)
+	 40: Rel (   -49,     0)  ->  Abs (  1301,   496)
+	 41: Rel (   -76,    48)  ->  Abs (  1225,   544)
+	 42: Rel (   -47,    60)  ->  Abs (  1178,   604)
+	 43: Rel (   -69,   -94)  ->  Abs (  1109,   510)
+	 44: Rel (    58,   590)  ->  Abs (  1167,  1100)
+	 45: Rel (   125, -1196)  ->  Abs (  1292,   -96)
+
+	Glyph  56: off = 0x00002746, len = 280
+	  numberOfContours:	4
+	  xMin:			-115
+	  yMin:			-184
+	  xMax:			1495
+	  yMax:			1400
+
+	EndPoints
+	---------
+	  0:  34
+	  1:  35
+	  2:  36
+	  3:  37
+
+	  Length of Instructions:	150
+	00000: NPUSHB      (34):    27    25    43    25    91    25   107    25     4   110 
+	                            24     1     6    19     1    11    69    18    85    18 
+	                             2    23    11     1    38    10     1    10     0    26 
+	                             0     2    12    37 
+	00036: PUSHW[3]            259    35   258 
+	00043: NPUSHB      (28):    28     0    44     0     2     3     0    11    18    26 
+	                            28     5    33    20    16    15    36     8   231    64 
+	                             3   229    30    13    36    37    35    26 
+	00073: PUSHW[1]            -32 
+	00076: NPUSHB      (29):    14    17    72    15    11    31    11     2    15     4 
+	                             0    11    13    18    26    30    35    36     8    22 
+	                             6    39    22   246     2    38     6   240     2 
+	00107: CALL       
+	00108: CALL       
+	00109: SVTCA[x-axis] 
+	00110: SRP1       
+	00111: SRP2       
+	00112: SLOOP      
+	00113: IP         
+	00114: SDS        
+	00115: SDB        
+	00116: DELTAP1    
+	00117: CALL       
+	00118: RTG        
+	00119: MDAP[rd]   
+	00120: MDRP[nrp0,nmd,rd,2] 
+	00121: MDAP[rd]   
+	00122: MDAP[rd]   
+	00123: MDAP[rd]   
+	00124: SVTCA[y-axis] 
+	00125: MIAP[rd+ci] 
+	00126: SMD        
+	00127: FLIPON     
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: MDRP[nrp0,nmd,rd,0] 
+	00130: MIAP[rd+ci] 
+	00131: MDRP[nrp0,nmd,rd,0] 
+	00132: MDRP[nrp0,md,rd,1] 
+	00133: SLOOP      
+	00134: IP         
+	00135: SDS        
+	00136: DELTAP1    
+	00137: MIAP[rd+ci] 
+	00138: MIAP[rd+ci] 
+	00139: IUP[y]     
+	00140: IUP[x]     
+	00141: SDB        
+	00142: DELTAP1    
+	00143: DELTAP1    
+	00144: DELTAP1    
+	00145: DELTAP1    
+	00146: SDB        
+	00147: DELTAP1    
+	00148: DELTAP1    
+	00149: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:                                      Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:                                      Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short On
+	 19:                                      Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short X-Short On
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:                              X-Short On
+	 36:        XDual                 X-Short On
+	 37:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   944,   440)  ->  Abs (   944,   440)
+	  1: Rel (  -221,  -209)  ->  Abs (   723,   231)
+	  2: Rel (  -624,  -415)  ->  Abs (    99,  -184)
+	  3: Rel (  -109,     0)  ->  Abs (   -10,  -184)
+	  4: Rel (   -48,     0)  ->  Abs (   -58,  -184)
+	  5: Rel (   -57,    48)  ->  Abs (  -115,  -136)
+	  6: Rel (     0,    40)  ->  Abs (  -115,   -96)
+	  7: Rel (     0,    71)  ->  Abs (  -115,   -25)
+	  8: Rel (   115,    37)  ->  Abs (     0,    12)
+	  9: Rel (   152,    50)  ->  Abs (   152,    62)
+	 10: Rel (   458,   286)  ->  Abs (   610,   348)
+	 11: Rel (   205,   193)  ->  Abs (   815,   541)
+	 12: Rel (  -108,    73)  ->  Abs (   707,   614)
+	 13: Rel (     0,    86)  ->  Abs (   707,   700)
+	 14: Rel (     0,    56)  ->  Abs (   707,   756)
+	 15: Rel (    73,    65)  ->  Abs (   780,   821)
+	 16: Rel (    64,     0)  ->  Abs (   844,   821)
+	 17: Rel (   105,     0)  ->  Abs (   949,   821)
+	 18: Rel (    77,   -73)  ->  Abs (  1026,   748)
+	 19: Rel (   260,   260)  ->  Abs (  1286,  1008)
+	 20: Rel (   111,     0)  ->  Abs (  1397,  1008)
+	 21: Rel (    98,     0)  ->  Abs (  1495,  1008)
+	 22: Rel (     0,   -74)  ->  Abs (  1495,   934)
+	 23: Rel (     0,   -86)  ->  Abs (  1495,   848)
+	 24: Rel (  -115,   -53)  ->  Abs (  1380,   795)
+	 25: Rel (  -103,   -49)  ->  Abs (  1277,   746)
+	 26: Rel (  -128,  -121)  ->  Abs (  1149,   625)
+	 27: Rel (    39,   -28)  ->  Abs (  1188,   597)
+	 28: Rel (    96,   -11)  ->  Abs (  1284,   586)
+	 29: Rel (   107,   -13)  ->  Abs (  1391,   573)
+	 30: Rel (     0,   -96)  ->  Abs (  1391,   477)
+	 31: Rel (     0,   -53)  ->  Abs (  1391,   424)
+	 32: Rel (   -86,   -64)  ->  Abs (  1305,   360)
+	 33: Rel (   -64,     0)  ->  Abs (  1241,   360)
+	 34: Rel (  -143,     0)  ->  Abs (  1098,   360)
+	 35: Rel (   -84,   740)  ->  Abs (  1014,  1100)
+	 36: Rel (   254, -1186)  ->  Abs (  1268,   -86)
+	 37: Rel (  -252,  1486)  ->  Abs (  1016,  1400)
+
+	Glyph  57: off = 0x0000285E, len = 294
+	  numberOfContours:	5
+	  xMin:			133
+	  yMin:			-180
+	  xMax:			1460
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  16
+	  1:  27
+	  2:  39
+	  3:  40
+	  4:  41
+
+	  Length of Instructions:	153
+	00000: PUSHW[2]             27   -32 
+	00005: NPUSHB      (47):    12    17    72    90    39     1    85    29     1    74 
+	                            25   138    25     2     6    18    22    18     2     9 
+	                            70    12    86    12     2    73    10    89    10     2 
+	                            12     6    60     6   108     6     3    11     3     0 
+	                             4    16     4     2    12     4    40 
+	00054: PUSHW[1]            258 
+	00057: NPUSHB      (43):    23   233     2     0     8    37   233    14    15    17 
+	                            31   233     8     4    41    41    40    41    40     5 
+	                            11    17     0    26   251    34    34    11    20   248 
+	                             5    28   250    11    64    43     5   243     2    42 
+	                            11   242     2 
+	00102: CALL       
+	00103: CALL       
+	00104: SVTCA[x-axis] 
+	00105: SMD        
+	00106: RTG        
+	00107: SRP0       
+	00108: FLIPON     
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: SRP0       
+	00111: MIRP[nrp0,md,rd,1] 
+	00112: SRP1       
+	00113: IP         
+	00114: MDAP[rd]   
+	00115: MIRP[nrp0,md,rd,1] 
+	00116: IP         
+	00117: IP         
+	00118: SRP1       
+	00119: SRP2       
+	00120: IP         
+	00121: IP         
+	00122: MDAP[rd]   
+	00123: MDAP[rd]   
+	00124: SVTCA[y-axis] 
+	00125: MDAP[rd]   
+	00126: MIAP[rd+ci] 
+	00127: MIRP[nrp0,md,rd,1] 
+	00128: SHP[rp2,zp1] 
+	00129: MIAP[rd+ci] 
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: SRP2       
+	00132: IP         
+	00133: MDRP[srp0,nmd,rd,0] 
+	00134: MIRP[nrp0,md,rd,1] 
+	00135: MIAP[rd+ci] 
+	00136: IUP[y]     
+	00137: IUP[x]     
+	00138: SDS        
+	00139: SDB        
+	00140: DELTAP1    
+	00141: SDS        
+	00142: SDB        
+	00143: DELTAP1    
+	00144: DELTAP1    
+	00145: DELTAP1    
+	00146: SDB        
+	00147: DELTAP1    
+	00148: DELTAP1    
+	00149: DELTAP1    
+	00150: DELTAP1    
+	00151: SVTCA[x-axis] 
+	00152: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                                      Off
+	  8:  YDual                               On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short         Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:                              X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:                                      Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short X-Short On
+	 27:                      Y-Short X-Short Off
+	 28:  YDual               Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:                      Y-Short X-Short Off
+	 40:                                      On
+	 41:        XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   831,   633)  ->  Abs (   831,   633)
+	  1: Rel (   146,   250)  ->  Abs (   977,   883)
+	  2: Rel (   205,     0)  ->  Abs (  1182,   883)
+	  3: Rel (   124,     0)  ->  Abs (  1306,   883)
+	  4: Rel (   154,  -152)  ->  Abs (  1460,   731)
+	  5: Rel (     0,  -119)  ->  Abs (  1460,   612)
+	  6: Rel (     0,  -250)  ->  Abs (  1460,   362)
+	  7: Rel (  -488,  -370)  ->  Abs (   972,    -8)
+	  8: Rel (  -337,     0)  ->  Abs (   635,    -8)
+	  9: Rel (  -232,     0)  ->  Abs (   403,    -8)
+	 10: Rel (  -270,   243)  ->  Abs (   133,   235)
+	 11: Rel (     0,   168)  ->  Abs (   133,   403)
+	 12: Rel (     0,   174)  ->  Abs (   133,   577)
+	 13: Rel (   243,   244)  ->  Abs (   376,   821)
+	 14: Rel (   183,     0)  ->  Abs (   559,   821)
+	 15: Rel (    90,     0)  ->  Abs (   649,   821)
+	 16: Rel (   152,  -106)  ->  Abs (   801,   715)
+	 17: Rel (   -31,  -547)  ->  Abs (   770,   168)
+	 18: Rel (   219,    35)  ->  Abs (   989,   203)
+	 19: Rel (   273,   263)  ->  Abs (  1262,   466)
+	 20: Rel (     0,   132)  ->  Abs (  1262,   598)
+	 21: Rel (     0,    47)  ->  Abs (  1262,   645)
+	 22: Rel (   -64,    64)  ->  Abs (  1198,   709)
+	 23: Rel (   -51,     0)  ->  Abs (  1147,   709)
+	 24: Rel (   -79,     0)  ->  Abs (  1068,   709)
+	 25: Rel (  -153,  -156)  ->  Abs (   915,   553)
+	 26: Rel (   -30,  -117)  ->  Abs (   885,   436)
+	 27: Rel (   -46,  -178)  ->  Abs (   839,   258)
+	 28: Rel (  -517,   133)  ->  Abs (   322,   391)
+	 29: Rel (     0,   -90)  ->  Abs (   322,   301)
+	 30: Rel (   121,  -135)  ->  Abs (   443,   166)
+	 31: Rel (    83,     0)  ->  Abs (   526,   166)
+	 32: Rel (    70,     0)  ->  Abs (   596,   166)
+	 33: Rel (   109,   208)  ->  Abs (   705,   374)
+	 34: Rel (     0,   115)  ->  Abs (   705,   489)
+	 35: Rel (     0,    67)  ->  Abs (   705,   556)
+	 36: Rel (   -90,    93)  ->  Abs (   615,   649)
+	 37: Rel (   -64,     0)  ->  Abs (   551,   649)
+	 38: Rel (  -103,     0)  ->  Abs (   448,   649)
+	 39: Rel (  -126,  -143)  ->  Abs (   322,   506)
+	 40: Rel (   489,   594)  ->  Abs (   811,  1100)
+	 41: Rel (   236, -1280)  ->  Abs (  1047,  -180)
+
+	Glyph  58: off = 0x00002984, len = 242
+	  numberOfContours:	3
+	  xMin:			-115
+	  yMin:			-184
+	  xMax:			1399
+	  yMax:			1150
+
+	EndPoints
+	---------
+	  0:  38
+	  1:  39
+	  2:  40
+
+	  Length of Instructions:	112
+	00000: NPUSHB      (71):   122    21   138    21     2    11    28    59    28    75 
+	                            28    91    28     4    27    24    14    17    72    70 
+	                            20     1    18   236     0     0    23    30    39     8 
+	                            23    15    40    35   231    30   229   150     0     1 
+	                           143     0     1    39    15    11     1    11    15   250 
+	                            64     0    18    39     3     0     5     1     9     3 
+	                             5    40    26    42    26   245     2    41    33   240 
+	                             2 
+	00073: CALL       
+	00074: CALL       
+	00075: SVTCA[x-axis] 
+	00076: RTG        
+	00077: SRP0       
+	00078: MDRP[nrp0,nmd,rd,0] 
+	00079: MDRP[srp0,nmd,rd,0] 
+	00080: SDS        
+	00081: SDB        
+	00082: DELTAP1    
+	00083: SLOOP      
+	00084: IP         
+	00085: SMD        
+	00086: FLIPON     
+	00087: MIRP[srp0,md,rd,1] 
+	00088: MDRP[nrp0,nmd,rd,0] 
+	00089: DELTAP1    
+	00090: MDAP[rd]   
+	00091: DELTAP1    
+	00092: DELTAP1    
+	00093: SVTCA[y-axis] 
+	00094: MIAP[rd+ci] 
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: MDRP[nrp0,nmd,rd,0] 
+	00097: MIAP[rd+ci] 
+	00098: MDRP[srp0,nmd,rd,0] 
+	00099: MDRP[nrp0,nmd,rd,2] 
+	00100: SRP1       
+	00101: SRP2       
+	00102: IP         
+	00103: MDAP[rd]   
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: IUP[y]     
+	00106: IUP[x]     
+	00107: DELTAP1    
+	00108: CALL       
+	00109: DELTAP1    
+	00110: SVTCA[x-axis] 
+	00111: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short On
+	 14:                      Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:              Rep-  1                 Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual               Y-Short         Off
+	 39:        XDual Rep-  1         X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   958,   442)  ->  Abs (   958,   442)
+	  1: Rel (    -7,    -2)  ->  Abs (   951,   440)
+	  2: Rel (   -13,     0)  ->  Abs (   938,   440)
+	  3: Rel (  -115,     0)  ->  Abs (   823,   440)
+	  4: Rel (  -159,   123)  ->  Abs (   664,   563)
+	  5: Rel (     0,   101)  ->  Abs (   664,   664)
+	  6: Rel (     0,   109)  ->  Abs (   664,   773)
+	  7: Rel (   156,   175)  ->  Abs (   820,   948)
+	  8: Rel (    63,     0)  ->  Abs (   883,   948)
+	  9: Rel (    34,     0)  ->  Abs (   917,   948)
+	 10: Rel (    44,   -40)  ->  Abs (   961,   908)
+	 11: Rel (     0,   -31)  ->  Abs (   961,   877)
+	 12: Rel (     0,   -43)  ->  Abs (   961,   834)
+	 13: Rel (   -54,   -56)  ->  Abs (   907,   778)
+	 14: Rel (   -55,   -56)  ->  Abs (   852,   722)
+	 15: Rel (     0,   -44)  ->  Abs (   852,   678)
+	 16: Rel (     0,   -40)  ->  Abs (   852,   638)
+	 17: Rel (    89,   -50)  ->  Abs (   941,   588)
+	 18: Rel (    71,     0)  ->  Abs (  1012,   588)
+	 19: Rel (    47,     0)  ->  Abs (  1059,   588)
+	 20: Rel (    87,    67)  ->  Abs (  1146,   655)
+	 21: Rel (    54,    86)  ->  Abs (  1200,   741)
+	 22: Rel (    50,    80)  ->  Abs (  1250,   821)
+	 23: Rel (    71,     0)  ->  Abs (  1321,   821)
+	 24: Rel (    35,     0)  ->  Abs (  1356,   821)
+	 25: Rel (    43,   -50)  ->  Abs (  1399,   771)
+	 26: Rel (     0,   -38)  ->  Abs (  1399,   733)
+	 27: Rel (     0,  -101)  ->  Abs (  1399,   632)
+	 28: Rel (  -471,  -482)  ->  Abs (   928,   150)
+	 29: Rel (  -726,  -334)  ->  Abs (   202,  -184)
+	 30: Rel (  -212,     0)  ->  Abs (   -10,  -184)
+	 31: Rel (   -48,     0)  ->  Abs (   -58,  -184)
+	 32: Rel (   -57,    48)  ->  Abs (  -115,  -136)
+	 33: Rel (     0,    40)  ->  Abs (  -115,   -96)
+	 34: Rel (     0,    48)  ->  Abs (  -115,   -48)
+	 35: Rel (    66,    64)  ->  Abs (   -49,    16)
+	 36: Rel (    63,     4)  ->  Abs (    14,    20)
+	 37: Rel (   224,    15)  ->  Abs (   238,    35)
+	 38: Rel (   561,   239)  ->  Abs (   799,   274)
+	 39: Rel (   175,   876)  ->  Abs (   974,  1150)
+	 40: Rel (   255, -1269)  ->  Abs (  1229,  -119)
+
+	Glyph  59: off = 0x00002A76, len = 206
+	  numberOfContours:	3
+	  xMin:			123
+	  yMin:			-118
+	  xMax:			1145
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  29
+	  1:  30
+	  2:  31
+
+	  Length of Instructions:	97
+	00000: PUSHW[2]              0   -32 
+	00005: PUSHB[4]             12    16    72     2 
+	00010: PUSHW[1]            -32 
+	00013: PUSHB[4]             12    17    72     1 
+	00018: PUSHW[1]            -32 
+	00021: PUSHB[4]             12    17    72     0 
+	00026: PUSHW[1]            -24 
+	00029: PUSHB[4]             12    17    72    30 
+	00034: PUSHW[1]            258 
+	00037: NPUSHB      (26):     5     0    12    26    15    12    31    30    30    19 
+	                             3   248    64    31     8    33     8   245     2    23 
+	                             0    15    28   177    19    15 
+	00065: MDAP[rd]   
+	00066: MDRP[srp0,nmd,rd,0] 
+	00067: MIRP[nrp0,md,rd,1] 
+	00068: SRP1       
+	00069: IP         
+	00070: MDRP[nrp0,nmd,rd,0] 
+	00071: CALL       
+	00072: SVTCA[x-axis] 
+	00073: RTG        
+	00074: SRP0       
+	00075: MDRP[nrp0,nmd,rd,0] 
+	00076: SMD        
+	00077: FLIPON     
+	00078: MIRP[nrp0,md,rd,1] 
+	00079: SRP2       
+	00080: IP         
+	00081: MDAP[rd]   
+	00082: SVTCA[y-axis] 
+	00083: MDAP[rd]   
+	00084: MDAP[rd]   
+	00085: MIAP[rd+ci] 
+	00086: SRP2       
+	00087: IP         
+	00088: MDRP[nrp0,nmd,rd,0] 
+	00089: MIAP[rd+ci] 
+	00090: CALL       
+	00091: IUP[y]     
+	00092: IUP[x]     
+	00093: CALL       
+	00094: CALL       
+	00095: SVTCA[x-axis] 
+	00096: CALL       
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:                                      Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:              Rep-  1                 Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual               Y-Short X-Short On
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual                         On
+	 29:        XDual         Y-Short         Off
+	 30:        XDual                 X-Short On
+	 31:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   342,   180)  ->  Abs (   342,   180)
+	  1: Rel (   173,    83)  ->  Abs (   515,   263)
+	  2: Rel (   350,   336)  ->  Abs (   865,   599)
+	  3: Rel (    83,   189)  ->  Abs (   948,   788)
+	  4: Rel (    36,    80)  ->  Abs (   984,   868)
+	  5: Rel (    73,     0)  ->  Abs (  1057,   868)
+	  6: Rel (    40,     0)  ->  Abs (  1097,   868)
+	  7: Rel (    48,   -42)  ->  Abs (  1145,   826)
+	  8: Rel (     0,   -38)  ->  Abs (  1145,   788)
+	  9: Rel (     0,  -108)  ->  Abs (  1145,   680)
+	 10: Rel (  -331,  -397)  ->  Abs (   814,   283)
+	 11: Rel (  -461,  -301)  ->  Abs (   353,   -18)
+	 12: Rel (  -136,     0)  ->  Abs (   217,   -18)
+	 13: Rel (   -42,     0)  ->  Abs (   175,   -18)
+	 14: Rel (   -52,    48)  ->  Abs (   123,    30)
+	 15: Rel (     0,    31)  ->  Abs (   123,    61)
+	 16: Rel (     0,    52)  ->  Abs (   123,   113)
+	 17: Rel (    45,    88)  ->  Abs (   168,   201)
+	 18: Rel (    88,   172)  ->  Abs (   256,   373)
+	 19: Rel (     0,   164)  ->  Abs (   256,   537)
+	 20: Rel (     0,    54)  ->  Abs (   256,   591)
+	 21: Rel (   -24,    66)  ->  Abs (   232,   657)
+	 22: Rel (   -17,    48)  ->  Abs (   215,   705)
+	 23: Rel (     0,    28)  ->  Abs (   215,   733)
+	 24: Rel (     0,    37)  ->  Abs (   215,   770)
+	 25: Rel (    47,    51)  ->  Abs (   262,   821)
+	 26: Rel (    45,     0)  ->  Abs (   307,   821)
+	 27: Rel (   133,     0)  ->  Abs (   440,   821)
+	 28: Rel (     0,  -256)  ->  Abs (   440,   565)
+	 29: Rel (     0,  -236)  ->  Abs (   440,   329)
+	 30: Rel (   170,   771)  ->  Abs (   610,  1100)
+	 31: Rel (   353, -1218)  ->  Abs (   963,  -118)
+
+	Glyph  60: off = 0x00002B44, len = 254
+	  numberOfContours:	5
+	  xMin:			-29
+	  yMin:			-352
+	  xMax:			1077
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  28
+	  1:  29
+	  2:  30
+	  3:  31
+	  4:  32
+
+	  Length of Instructions:	135
+	00000: NPUSHB      (38):    25    32    12    16    72     9    24    25    24    41 
+	                            24     3    14     5    19     1     8    64    14    17 
+	                            72     5     1     1     3     0     8     1    17     5 
+	                            31    30    21    21    14     3    32    29 
+	00040: PUSHW[1]            258 
+	00043: NPUSHB      (10):     0   232    14    15     3    32    29    29    17     2 
+	00055: PUSHW[1]            -64 
+	00058: PUSHB[4]             10    17    72     0 
+	00063: PUSHW[1]            -16 
+	00066: NPUSHB      (20):    12    17    72     2     6    14     0    23    27   251 
+	                            17    64    31    30    17    34    17   244     2     6 
+	00088: MDAP[rd]   
+	00089: CALL       
+	00090: SVTCA[x-axis] 
+	00091: RTG        
+	00092: SRP0       
+	00093: MDRP[srp0,nmd,rd,0] 
+	00094: MDRP[nrp0,nmd,rd,2] 
+	00095: SMD        
+	00096: SRP0       
+	00097: FLIPON     
+	00098: MIRP[srp0,md,rd,1] 
+	00099: MDRP[nrp0,nmd,rd,0] 
+	00100: MDRP[nrp0,nmd,rd,2] 
+	00101: SHP[rp2,zp1] 
+	00102: SRP1       
+	00103: IP         
+	00104: CALL       
+	00105: CALL       
+	00106: SRP2       
+	00107: IP         
+	00108: MDAP[rd]   
+	00109: MDRP[nrp0,nmd,nrd,0] 
+	00110: SVTCA[y-axis] 
+	00111: MDAP[rd]   
+	00112: MIAP[rd+ci] 
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: MIAP[rd+ci] 
+	00115: MDRP[nrp0,nmd,nrd,0] 
+	00116: SRP1       
+	00117: SRP2       
+	00118: IP         
+	00119: MDAP[rd]   
+	00120: MDAP[rd]   
+	00121: MDAP[rd]   
+	00122: IUP[y]     
+	00123: IUP[x]     
+	00124: SDS        
+	00125: SDB        
+	00126: DELTAP1    
+	00127: SVTCA[x-axis] 
+	00128: SDS        
+	00129: DELTAP1    
+	00130: CALL       
+	00131: DELTAP1    
+	00132: SDB        
+	00133: DELTAP1    
+	00134: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                              X-Short Off
+	  2:                                      Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual               Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:              Rep-  1 Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:              Rep-  1                 On
+	 31:                      Y-Short X-Short On
+	 32:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   868,   631)  ->  Abs (   868,   631)
+	  1: Rel (  -202,  -305)  ->  Abs (   666,   326)
+	  2: Rel (  -447,  -344)  ->  Abs (   219,   -18)
+	  3: Rel (  -151,     0)  ->  Abs (    68,   -18)
+	  4: Rel (   -45,     0)  ->  Abs (    23,   -18)
+	  5: Rel (   -52,    42)  ->  Abs (   -29,    24)
+	  6: Rel (     0,    37)  ->  Abs (   -29,    61)
+	  7: Rel (     0,    79)  ->  Abs (   -29,   140)
+	  8: Rel (   111,    38)  ->  Abs (    82,   178)
+	  9: Rel (   162,    56)  ->  Abs (   244,   234)
+	 10: Rel (   301,   237)  ->  Abs (   545,   471)
+	 11: Rel (   110,   162)  ->  Abs (   655,   633)
+	 12: Rel (    74,   107)  ->  Abs (   729,   740)
+	 13: Rel (   101,    81)  ->  Abs (   830,   821)
+	 14: Rel (    51,     0)  ->  Abs (   881,   821)
+	 15: Rel (    76,     0)  ->  Abs (   957,   821)
+	 16: Rel (   120,  -189)  ->  Abs (  1077,   632)
+	 17: Rel (     0,  -116)  ->  Abs (  1077,   516)
+	 18: Rel (     0,  -158)  ->  Abs (  1077,   358)
+	 19: Rel (   -70,  -248)  ->  Abs (  1007,   110)
+	 20: Rel (   -68,   -85)  ->  Abs (   939,    25)
+	 21: Rel (   -58,     0)  ->  Abs (   881,    25)
+	 22: Rel (   -86,     0)  ->  Abs (   795,    25)
+	 23: Rel (     0,    88)  ->  Abs (   795,   113)
+	 24: Rel (     0,    54)  ->  Abs (   795,   167)
+	 25: Rel (    49,   101)  ->  Abs (   844,   268)
+	 26: Rel (    53,   114)  ->  Abs (   897,   382)
+	 27: Rel (     0,   118)  ->  Abs (   897,   500)
+	 28: Rel (     0,    82)  ->  Abs (   897,   582)
+	 29: Rel (  -282,   518)  ->  Abs (   615,  1100)
+	 30: Rel (   348, -1225)  ->  Abs (   963,  -125)
+	 31: Rel (    -5,  -227)  ->  Abs (   958,  -352)
+	 32: Rel (  -343,  1452)  ->  Abs (   615,  1100)
+
+	Glyph  61: off = 0x00002C42, len = 232
+	  numberOfContours:	5
+	  xMin:			-123
+	  yMin:			-219
+	  xMax:			864
+	  yMax:			1400
+
+	EndPoints
+	---------
+	  0:  21
+	  1:  31
+	  2:  32
+	  3:  33
+	  4:  34
+
+	  Length of Instructions:	111
+	00000: NPUSHB       (9):    86    20     1     3    32     9    14    72    34 
+	00011: PUSHW[3]            259    32   258 
+	00018: NPUSHB      (53):    11     0     8     2   235    29    24   235     8    15 
+	                            19   233    15   229    95     0     1    10     0    26 
+	                             0    42     0     3    12    34    32     0     2    32 
+	                             3    11     5   250    15    27     1    28     3    27 
+	                            22   250    64    33    11    36    11   245     2    35 
+	                            18   240     2 
+	00073: CALL       
+	00074: CALL       
+	00075: SVTCA[x-axis] 
+	00076: RTG        
+	00077: SRP0       
+	00078: MDRP[nrp0,nmd,rd,0] 
+	00079: SMD        
+	00080: FLIPON     
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: MDRP[srp0,nmd,rd,0] 
+	00083: SDS        
+	00084: SDB        
+	00085: DELTAP1    
+	00086: MIRP[nrp0,md,rd,1] 
+	00087: SRP1       
+	00088: SLOOP      
+	00089: IP         
+	00090: MDAP[rd]   
+	00091: MDRP[nrp0,nmd,rd,2] 
+	00092: SDB        
+	00093: DELTAP1    
+	00094: DELTAP1    
+	00095: SVTCA[y-axis] 
+	00096: MIAP[rd+ci] 
+	00097: MIRP[nrp0,md,rd,1] 
+	00098: MIAP[rd+ci] 
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: MDRP[srp0,nmd,rd,0] 
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: SRP1       
+	00103: IP         
+	00104: IP         
+	00105: MIAP[rd+ci] 
+	00106: MIAP[rd+ci] 
+	00107: IUP[y]     
+	00108: IUP[x]     
+	00109: CALL       
+	00110: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                              X-Short Off
+	 14:                                      Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual               Y-Short         Off
+	 22:                                      On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:                      Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:                              X-Short On
+	 33:              Rep-  1                 On
+
+	Coordinates
+	-----------
+	  0: Rel (   532,   283)  ->  Abs (   532,   283)
+	  1: Rel (   -28,    -7)  ->  Abs (   504,   276)
+	  2: Rel (   -31,     0)  ->  Abs (   473,   276)
+	  3: Rel (  -124,     0)  ->  Abs (   349,   276)
+	  4: Rel (  -154,   124)  ->  Abs (   195,   400)
+	  5: Rel (     0,   102)  ->  Abs (   195,   502)
+	  6: Rel (     0,   131)  ->  Abs (   195,   633)
+	  7: Rel (   225,   192)  ->  Abs (   420,   825)
+	  8: Rel (   149,     0)  ->  Abs (   569,   825)
+	  9: Rel (   136,     0)  ->  Abs (   705,   825)
+	 10: Rel (   159,  -139)  ->  Abs (   864,   686)
+	 11: Rel (     0,  -123)  ->  Abs (   864,   563)
+	 12: Rel (     0,  -130)  ->  Abs (   864,   433)
+	 13: Rel (  -216,  -313)  ->  Abs (   648,   120)
+	 14: Rel (  -503,  -304)  ->  Abs (   145,  -184)
+	 15: Rel (  -163,     0)  ->  Abs (   -18,  -184)
+	 16: Rel (   -48,     0)  ->  Abs (   -66,  -184)
+	 17: Rel (   -57,    48)  ->  Abs (  -123,  -136)
+	 18: Rel (     0,    40)  ->  Abs (  -123,   -96)
+	 19: Rel (     0,    83)  ->  Abs (  -123,   -13)
+	 20: Rel (   133,    23)  ->  Abs (    10,    10)
+	 21: Rel (   281,    48)  ->  Abs (   291,    58)
+	 22: Rel (   383,   511)  ->  Abs (   674,   569)
+	 23: Rel (     0,    95)  ->  Abs (   674,   664)
+	 24: Rel (  -113,     0)  ->  Abs (   561,   664)
+	 25: Rel (   -71,     0)  ->  Abs (   490,   664)
+	 26: Rel (  -105,   -95)  ->  Abs (   385,   569)
+	 27: Rel (     0,   -47)  ->  Abs (   385,   522)
+	 28: Rel (     0,   -88)  ->  Abs (   385,   434)
+	 29: Rel (   119,     0)  ->  Abs (   504,   434)
+	 30: Rel (    66,     0)  ->  Abs (   570,   434)
+	 31: Rel (   104,    93)  ->  Abs (   674,   527)
+	 32: Rel (  -213,   573)  ->  Abs (   461,  1100)
+	 33: Rel (   395, -1319)  ->  Abs (   856,  -219)
+	 34: Rel (  -401,  1619)  ->  Abs (   455,  1400)
+
+	Glyph  62: off = 0x00002D2A, len = 180
+	  numberOfContours:	3
+	  xMin:			-121
+	  yMin:			-315
+	  xMax:			1028
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  24
+	  1:  25
+	  2:  26
+
+	  Length of Instructions:	88
+	00000: NPUSHB      (18):    52    18     1    11    16    13    17    72    15    10 
+	                             1    14     0     8     1    17     5    25 
+	00020: PUSHW[1]            258 
+	00023: NPUSHB      (30):     9    19    19    15     0    21   233     6    15    26 
+	                            15   233    12   229    25    25     3    19   249    64 
+	                            26     9    28     9   246     2    27    14   240     2 
+	00055: CALL       
+	00056: CALL       
+	00057: SVTCA[x-axis] 
+	00058: RTG        
+	00059: SRP0       
+	00060: MDRP[nrp0,nmd,rd,0] 
+	00061: SMD        
+	00062: FLIPON     
+	00063: MIRP[nrp0,md,rd,1] 
+	00064: MDRP[nrp0,nmd,rd,0] 
+	00065: IP         
+	00066: MDAP[rd]   
+	00067: SVTCA[y-axis] 
+	00068: MIAP[rd+ci] 
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: MDRP[nrp0,nmd,rd,2] 
+	00071: MIAP[rd+ci] 
+	00072: MIRP[srp0,md,rd,1] 
+	00073: MDRP[nrp0,nmd,rd,0] 
+	00074: SRP2       
+	00075: IP         
+	00076: SRP1       
+	00077: SHP[rp1,zp0] 
+	00078: MIAP[rd+ci] 
+	00079: IUP[y]     
+	00080: IUP[x]     
+	00081: SDS        
+	00082: SDB        
+	00083: DELTAP1    
+	00084: SDB        
+	00085: DELTAP1    
+	00086: CALL       
+	00087: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                                      Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:                                      Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:                      Y-Short X-Short On
+	 24:                      Y-Short X-Short Off
+	 25:        XDual Rep-  1         X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   438,   598)  ->  Abs (   438,   598)
+	  1: Rel (   -39,     0)  ->  Abs (   399,   598)
+	  2: Rel (   -47,    46)  ->  Abs (   352,   644)
+	  3: Rel (     0,    36)  ->  Abs (   352,   680)
+	  4: Rel (     0,    69)  ->  Abs (   352,   749)
+	  5: Rel (   198,    76)  ->  Abs (   550,   825)
+	  6: Rel (   177,     0)  ->  Abs (   727,   825)
+	  7: Rel (   137,     0)  ->  Abs (   864,   825)
+	  8: Rel (   164,  -102)  ->  Abs (  1028,   723)
+	  9: Rel (     0,   -84)  ->  Abs (  1028,   639)
+	 10: Rel (     0,  -197)  ->  Abs (  1028,   442)
+	 11: Rel (  -849,  -616)  ->  Abs (   179,  -174)
+	 12: Rel (  -197,     0)  ->  Abs (   -18,  -174)
+	 13: Rel (  -103,     0)  ->  Abs (  -121,  -174)
+	 14: Rel (     0,    84)  ->  Abs (  -121,   -90)
+	 15: Rel (     0,    89)  ->  Abs (  -121,    -1)
+	 16: Rel (   131,    21)  ->  Abs (    10,    20)
+	 17: Rel (   224,    39)  ->  Abs (   234,    59)
+	 18: Rel (   602,   454)  ->  Abs (   836,   513)
+	 19: Rel (     0,   103)  ->  Abs (   836,   616)
+	 20: Rel (     0,    35)  ->  Abs (   836,   651)
+	 21: Rel (  -117,     0)  ->  Abs (   719,   651)
+	 22: Rel (   -74,     0)  ->  Abs (   645,   651)
+	 23: Rel (   -98,   -31)  ->  Abs (   547,   620)
+	 24: Rel (   -70,   -22)  ->  Abs (   477,   598)
+	 25: Rel (   150,   502)  ->  Abs (   627,  1100)
+	 26: Rel (   207, -1415)  ->  Abs (   834,  -315)
+
+	Glyph  63: off = 0x00002DDE, len = 304
+	  numberOfContours:	4
+	  xMin:			-313
+	  yMin:			-457
+	  xMax:			1016
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  44
+	  1:  45
+	  2:  46
+	  3:  47
+
+	  Length of Instructions:	146
+	00000: PUSHW[2]             32   -64 
+	00005: NPUSHB      (26):    13    16    72   134    29     1   138    16     1    70 
+	                            13    86    13     2   134    12     1   195     3   211 
+	                             3     2    57     3     1    45 
+	00033: PUSHW[4]            258    18     0   -64 
+	00042: NPUSHB      (54):     9    13    72     0     0     6   140    40     1    40 
+	                            28    35    47    15    46    11   232     6    28    45 
+	                           128    40     1    40    42    28     0    14   249     2 
+	                             2    28    45     3     0    18     1     9     3    18 
+	                            23   247    64    38    46    42    49    42   245     2 
+	                            48     9   238     2 
+	00098: CALL       
+	00099: CALL       
+	00100: SVTCA[x-axis] 
+	00101: RTG        
+	00102: SRP0       
+	00103: MDRP[nrp0,nmd,rd,0] 
+	00104: MDRP[nrp0,nmd,rd,0] 
+	00105: SMD        
+	00106: FLIPON     
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: MDRP[nrp0,md,rd,1] 
+	00109: SDS        
+	00110: SDB        
+	00111: DELTAP1    
+	00112: SLOOP      
+	00113: IP         
+	00114: MDAP[rd]   
+	00115: MIRP[nrp0,md,rd,1] 
+	00116: IP         
+	00117: MDAP[rd]   
+	00118: SRP2       
+	00119: IP         
+	00120: DELTAP1    
+	00121: MDAP[rd]   
+	00122: SVTCA[y-axis] 
+	00123: MIAP[rd+ci] 
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: MDRP[nrp0,nmd,rd,0] 
+	00126: MIAP[rd+ci] 
+	00127: MDRP[nrp0,nmd,rd,0] 
+	00128: SHP[rp1,zp0] 
+	00129: SHP[rp1,zp0] 
+	00130: DELTAP1    
+	00131: SRP2       
+	00132: IP         
+	00133: MDAP[rd]   
+	00134: CALL       
+	00135: SHP[rp1,zp0] 
+	00136: MIAP[rd+ci] 
+	00137: IUP[y]     
+	00138: IUP[x]     
+	00139: DELTAP1    
+	00140: DELTAP2    
+	00141: DELTAP1    
+	00142: DELTAP1    
+	00143: DELTAP1    
+	00144: DELTAP1    
+	00145: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:              Rep-  1                 Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual               Y-Short         Off
+	 13:                                      Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual               Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:                      Y-Short X-Short On
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:                      Y-Short X-Short Off
+	 45:                              X-Short On
+	 46:        XDual                 X-Short On
+	 47:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   727,   434)  ->  Abs (   727,   434)
+	  1: Rel (    70,   -36)  ->  Abs (   797,   398)
+	  2: Rel (     0,   -68)  ->  Abs (   797,   330)
+	  3: Rel (     0,  -100)  ->  Abs (   797,   230)
+	  4: Rel (  -366,  -359)  ->  Abs (   431,  -129)
+	  5: Rel (  -535,  -328)  ->  Abs (  -104,  -457)
+	  6: Rel (  -105,     0)  ->  Abs (  -209,  -457)
+	  7: Rel (   -47,     0)  ->  Abs (  -256,  -457)
+	  8: Rel (   -57,    49)  ->  Abs (  -313,  -408)
+	  9: Rel (     0,    39)  ->  Abs (  -313,  -369)
+	 10: Rel (     0,    72)  ->  Abs (  -313,  -297)
+	 11: Rel (    90,    27)  ->  Abs (  -223,  -270)
+	 12: Rel (   287,    87)  ->  Abs (    64,  -183)
+	 13: Rel (   538,   411)  ->  Abs (   602,   228)
+	 14: Rel (     0,    89)  ->  Abs (   602,   317)
+	 15: Rel (     0,    50)  ->  Abs (   602,   367)
+	 16: Rel (   -72,    20)  ->  Abs (   530,   387)
+	 17: Rel (   -77,    23)  ->  Abs (   453,   410)
+	 18: Rel (     0,    47)  ->  Abs (   453,   457)
+	 19: Rel (     0,    38)  ->  Abs (   453,   495)
+	 20: Rel (    52,    42)  ->  Abs (   505,   537)
+	 21: Rel (    87,    18)  ->  Abs (   592,   555)
+	 22: Rel (   207,    44)  ->  Abs (   799,   599)
+	 23: Rel (     0,    56)  ->  Abs (   799,   655)
+	 24: Rel (     0,    13)  ->  Abs (   799,   668)
+	 25: Rel (   -65,    37)  ->  Abs (   734,   705)
+	 26: Rel (   -58,    16)  ->  Abs (   676,   721)
+	 27: Rel (   -62,    15)  ->  Abs (   614,   736)
+	 28: Rel (     0,    57)  ->  Abs (   614,   793)
+	 29: Rel (     0,    54)  ->  Abs (   614,   847)
+	 30: Rel (    72,    27)  ->  Abs (   686,   874)
+	 31: Rel (    33,    14)  ->  Abs (   719,   888)
+	 32: Rel (   105,    62)  ->  Abs (   824,   950)
+	 33: Rel (    26,    23)  ->  Abs (   850,   973)
+	 34: Rel (    41,    35)  ->  Abs (   891,  1008)
+	 35: Rel (    41,     0)  ->  Abs (   932,  1008)
+	 36: Rel (    32,     0)  ->  Abs (   964,  1008)
+	 37: Rel (    46,   -47)  ->  Abs (  1010,   961)
+	 38: Rel (     0,   -33)  ->  Abs (  1010,   928)
+	 39: Rel (     0,   -56)  ->  Abs (  1010,   872)
+	 40: Rel (  -144,   -71)  ->  Abs (   866,   801)
+	 41: Rel (   150,   -51)  ->  Abs (  1016,   750)
+	 42: Rel (     0,   -97)  ->  Abs (  1016,   653)
+	 43: Rel (     0,   -73)  ->  Abs (  1016,   580)
+	 44: Rel (  -143,  -103)  ->  Abs (   873,   477)
+	 45: Rel (  -240,   623)  ->  Abs (   633,  1100)
+	 46: Rel (   201, -1520)  ->  Abs (   834,  -420)
+	 47: Rel (  -834,  1241)  ->  Abs (     0,   821)
+
+	Glyph  64: off = 0x00002F0E, len = 330
+	  numberOfContours:	5
+	  xMin:			-233
+	  yMin:			-381
+	  xMax:			1264
+	  yMax:			1460
+
+	EndPoints
+	---------
+	  0:  48
+	  1:  49
+	  2:  50
+	  3:  51
+	  4:  52
+
+	  Length of Instructions:	159
+	00000: NPUSHB      (43):    10    46    26    46     2    98    42   114    42   130 
+	                            42     3     9    30    25    30     2   138    26     1 
+	                            25    24    11    14    72     1    18    17    18     2 
+	                             9     3    75     2     1    11     1    27     1     2 
+	                            12    51    49 
+	00045: PUSHW[1]            258 
+	00048: NPUSHB      (55):    15    41     1    17     4    12     0    17    47   234 
+	                            17    22    28    41    35    52    15    50     9   232 
+	                             3   230    12    16    14    17    72    50    51    49 
+	                            41    38    28    20     0   251    14    28    49    50 
+	                             3    12    24   248    64    38    44    54    44   244 
+	                             2    53     6   239     2 
+	00105: CALL       
+	00106: CALL       
+	00107: SVTCA[x-axis] 
+	00108: RTG        
+	00109: SRP0       
+	00110: MDRP[nrp0,nmd,rd,0] 
+	00111: SMD        
+	00112: FLIPON     
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: MDRP[srp0,nmd,rd,0] 
+	00115: SLOOP      
+	00116: IP         
+	00117: MDRP[nrp0,md,rd,1] 
+	00118: MIRP[nrp0,md,rd,1] 
+	00119: SHP[rp2,zp1] 
+	00120: MDAP[rd]   
+	00121: SRP2       
+	00122: IP         
+	00123: MDAP[rd]   
+	00124: MDRP[nrp0,nmd,rd,2] 
+	00125: MDAP[rd]   
+	00126: CALL       
+	00127: SVTCA[y-axis] 
+	00128: MIAP[rd+ci] 
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: MDRP[nrp0,nmd,rd,2] 
+	00131: MIAP[rd+ci] 
+	00132: MDRP[nrp0,nmd,rd,0] 
+	00133: MDRP[srp0,nmd,rd,0] 
+	00134: SHP[rp2,zp1] 
+	00135: MDRP[srp0,nmd,rd,0] 
+	00136: MDRP[nrp0,md,rd,0] 
+	00137: MIRP[nrp0,md,rd,1] 
+	00138: SRP1       
+	00139: IP         
+	00140: IP         
+	00141: SDS        
+	00142: SDB        
+	00143: DELTAP1    
+	00144: MIAP[rd+ci] 
+	00145: MDAP[rd]   
+	00146: IUP[y]     
+	00147: IUP[x]     
+	00148: SDB        
+	00149: DELTAP1    
+	00150: DELTAP1    
+	00151: SDS        
+	00152: SDB        
+	00153: DELTAP1    
+	00154: CALL       
+	00155: DELTAP1    
+	00156: DELTAP1    
+	00157: DELTAP1    
+	00158: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:                                      Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:                                      Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual               Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:                      Y-Short X-Short Off
+	 41:                      Y-Short X-Short On
+	 42:        XDual Rep-  1 Y-Short X-Short Off
+	 44:        XDual         Y-Short         On
+	 45:        XDual         Y-Short         Off
+	 46:                      Y-Short X-Short Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short Off
+	 49:        XDual Rep-  1         X-Short On
+	 51:                              X-Short On
+	 52:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   727,   287)  ->  Abs (   727,   287)
+	  1: Rel (  -148,  -196)  ->  Abs (   579,    91)
+	  2: Rel (  -536,  -439)  ->  Abs (    43,  -348)
+	  3: Rel (  -180,     0)  ->  Abs (  -137,  -348)
+	  4: Rel (   -44,     0)  ->  Abs (  -181,  -348)
+	  5: Rel (   -52,    44)  ->  Abs (  -233,  -304)
+	  6: Rel (     0,    36)  ->  Abs (  -233,  -268)
+	  7: Rel (     0,    39)  ->  Abs (  -233,  -229)
+	  8: Rel (    59,    47)  ->  Abs (  -174,  -182)
+	  9: Rel (    70,    20)  ->  Abs (  -104,  -162)
+	 10: Rel (   155,    48)  ->  Abs (    51,  -114)
+	 11: Rel (   354,   262)  ->  Abs (   405,   148)
+	 12: Rel (   146,   184)  ->  Abs (   551,   332)
+	 13: Rel (   -47,    28)  ->  Abs (   504,   360)
+	 14: Rel (     0,    54)  ->  Abs (   504,   414)
+	 15: Rel (     0,    51)  ->  Abs (   504,   465)
+	 16: Rel (    83,    57)  ->  Abs (   587,   522)
+	 17: Rel (    56,     0)  ->  Abs (   643,   522)
+	 18: Rel (    46,     0)  ->  Abs (   689,   522)
+	 19: Rel (    75,   -46)  ->  Abs (   764,   476)
+	 20: Rel (     8,   -27)  ->  Abs (   772,   449)
+	 21: Rel (    47,   -13)  ->  Abs (   819,   436)
+	 22: Rel (    58,     0)  ->  Abs (   877,   436)
+	 23: Rel (   172,     0)  ->  Abs (  1049,   436)
+	 24: Rel (     0,   139)  ->  Abs (  1049,   575)
+	 25: Rel (     0,   104)  ->  Abs (  1049,   679)
+	 26: Rel (  -195,    38)  ->  Abs (   854,   717)
+	 27: Rel (   -74,    13)  ->  Abs (   780,   730)
+	 28: Rel (     0,    65)  ->  Abs (   780,   795)
+	 29: Rel (     0,    71)  ->  Abs (   780,   866)
+	 30: Rel (    84,    15)  ->  Abs (   864,   881)
+	 31: Rel (    35,     6)  ->  Abs (   899,   887)
+	 32: Rel (   145,    60)  ->  Abs (  1044,   947)
+	 33: Rel (    41,    26)  ->  Abs (  1085,   973)
+	 34: Rel (    56,    35)  ->  Abs (  1141,  1008)
+	 35: Rel (    41,     0)  ->  Abs (  1182,  1008)
+	 36: Rel (    36,     0)  ->  Abs (  1218,  1008)
+	 37: Rel (    46,   -46)  ->  Abs (  1264,   962)
+	 38: Rel (     0,   -34)  ->  Abs (  1264,   928)
+	 39: Rel (     0,   -41)  ->  Abs (  1264,   887)
+	 40: Rel (  -101,   -65)  ->  Abs (  1163,   822)
+	 41: Rel (   -94,   -36)  ->  Abs (  1069,   786)
+	 42: Rel (    81,   -21)  ->  Abs (  1150,   765)
+	 43: Rel (    97,  -115)  ->  Abs (  1247,   650)
+	 44: Rel (     0,   -72)  ->  Abs (  1247,   578)
+	 45: Rel (     0,  -135)  ->  Abs (  1247,   443)
+	 46: Rel (  -220,  -173)  ->  Abs (  1027,   270)
+	 47: Rel (  -157,     0)  ->  Abs (   870,   270)
+	 48: Rel (   -80,     0)  ->  Abs (   790,   270)
+	 49: Rel (    21,   830)  ->  Abs (   811,  1100)
+	 50: Rel (    29, -1481)  ->  Abs (   840,  -381)
+	 51: Rel (   -31,  1841)  ->  Abs (   809,  1460)
+	 52: Rel (  -809,  -639)  ->  Abs (     0,   821)
+
+	Glyph  65: off = 0x00003058, len = 328
+	  numberOfContours:	6
+	  xMin:			-94
+	  yMin:			-471
+	  xMax:			1124
+	  yMax:			1530
+
+	EndPoints
+	---------
+	  0:  36
+	  1:  47
+	  2:  48
+	  3:  49
+	  4:  50
+	  5:  51
+
+	  Length of Instructions:	162
+	00000: NPUSHB      (23):    36    48    11    17    72    22    30    38    30     2 
+	                            54    27    70    27     2    50     6     1   102     4 
+	                             1    51    50 
+	00025: PUSHW[3]            259    48   258 
+	00032: NPUSHB      (27):    34   233    15    40     1    11    40    37     0     2 
+	                            46     2     8    19    25     4    11    46   233    28 
+	                            15    16   232    49    11   230    37 
+	00061: PUSHW[1]            -16 
+	00064: NPUSHB      (43):    12    15    72    51    50    48    19   247     0     8 
+	                            16     8    32     8     3    18     3     8    37     0 
+	                            43     2   247    25     8    25    48    51     4    14 
+	                            43   249    64    49    31    53    31   246     2    52 
+	                            14   241     2 
+	00109: CALL       
+	00110: CALL       
+	00111: SVTCA[x-axis] 
+	00112: RTG        
+	00113: SRP0       
+	00114: MDRP[nrp0,nmd,rd,0] 
+	00115: SMD        
+	00116: FLIPON     
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: SRP2       
+	00119: SLOOP      
+	00120: IP         
+	00121: MDAP[rd]   
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: SRP1       
+	00124: IP         
+	00125: IP         
+	00126: MDAP[rd]   
+	00127: SDS        
+	00128: SDB        
+	00129: DELTAP1    
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: MDAP[rd]   
+	00132: MDRP[nrp0,nmd,nrd,0] 
+	00133: MDAP[rd]   
+	00134: CALL       
+	00135: SVTCA[y-axis] 
+	00136: MIAP[rd+ci] 
+	00137: MDRP[nrp0,nmd,rd,2] 
+	00138: MIRP[nrp0,md,rd,1] 
+	00139: MIAP[rd+ci] 
+	00140: MIRP[srp0,md,rd,1] 
+	00141: SRP2       
+	00142: SLOOP      
+	00143: IP         
+	00144: SRP1       
+	00145: SRP2       
+	00146: IP         
+	00147: IP         
+	00148: MDRP[srp0,nmd,rd,2] 
+	00149: SDB        
+	00150: DELTAP1    
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: MIAP[rd+ci] 
+	00153: MIAP[rd+ci] 
+	00154: MDAP[rd]   
+	00155: IUP[y]     
+	00156: IUP[x]     
+	00157: DELTAP1    
+	00158: DELTAP1    
+	00159: DELTAP1    
+	00160: DELTAP1    
+	00161: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual Rep-  1 Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short         Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short On
+	 23:  YDual       Rep-  1 Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:                                      Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short X-Short On
+	 38:        XDual Rep-  1 Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:                              X-Short On
+	 49:              Rep-  1                 On
+	 51:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   442,   401)  ->  Abs (   442,   401)
+	  1: Rel (  -135,  -118)  ->  Abs (   307,   283)
+	  2: Rel (     0,   -54)  ->  Abs (   307,   229)
+	  3: Rel (     0,   -15)  ->  Abs (   307,   214)
+	  4: Rel (    49,   -32)  ->  Abs (   356,   182)
+	  5: Rel (    82,   -37)  ->  Abs (   438,   145)
+	  6: Rel (   100,   -43)  ->  Abs (   538,   102)
+	  7: Rel (    89,   -83)  ->  Abs (   627,    19)
+	  8: Rel (     0,   -54)  ->  Abs (   627,   -35)
+	  9: Rel (     0,   -98)  ->  Abs (   627,  -133)
+	 10: Rel (  -419,  -215)  ->  Abs (   208,  -348)
+	 11: Rel (  -161,     0)  ->  Abs (    47,  -348)
+	 12: Rel (   -67,     0)  ->  Abs (   -20,  -348)
+	 13: Rel (   -74,    50)  ->  Abs (   -94,  -298)
+	 14: Rel (     0,    44)  ->  Abs (   -94,  -254)
+	 15: Rel (     0,    86)  ->  Abs (   -94,  -168)
+	 16: Rel (   139,    10)  ->  Abs (    45,  -158)
+	 17: Rel (   113,     8)  ->  Abs (   158,  -150)
+	 18: Rel (   217,    75)  ->  Abs (   375,   -75)
+	 19: Rel (     0,    26)  ->  Abs (   375,   -49)
+	 20: Rel (     0,    13)  ->  Abs (   375,   -36)
+	 21: Rel (   -33,    19)  ->  Abs (   342,   -17)
+	 22: Rel (   -51,    21)  ->  Abs (   291,     4)
+	 23: Rel (  -128,    52)  ->  Abs (   163,    56)
+	 24: Rel (   -79,    81)  ->  Abs (    84,   137)
+	 25: Rel (     0,    68)  ->  Abs (    84,   205)
+	 26: Rel (     0,   132)  ->  Abs (    84,   337)
+	 27: Rel (   559,   490)  ->  Abs (   643,   827)
+	 28: Rel (   225,     0)  ->  Abs (   868,   827)
+	 29: Rel (   113,     0)  ->  Abs (   981,   827)
+	 30: Rel (   143,  -152)  ->  Abs (  1124,   675)
+	 31: Rel (     0,  -114)  ->  Abs (  1124,   561)
+	 32: Rel (     0,  -152)  ->  Abs (  1124,   409)
+	 33: Rel (  -200,  -206)  ->  Abs (   924,   203)
+	 34: Rel (  -179,     0)  ->  Abs (   745,   203)
+	 35: Rel (   -78,     0)  ->  Abs (   667,   203)
+	 36: Rel (  -166,   108)  ->  Abs (   501,   311)
+	 37: Rel (    70,   201)  ->  Abs (   571,   512)
+	 38: Rel (    34,   -58)  ->  Abs (   605,   454)
+	 39: Rel (   113,   -77)  ->  Abs (   718,   377)
+	 40: Rel (    48,     0)  ->  Abs (   766,   377)
+	 41: Rel (    77,     0)  ->  Abs (   843,   377)
+	 42: Rel (    87,    89)  ->  Abs (   930,   466)
+	 43: Rel (     0,    77)  ->  Abs (   930,   543)
+	 44: Rel (     0,    50)  ->  Abs (   930,   593)
+	 45: Rel (   -49,    62)  ->  Abs (   881,   655)
+	 46: Rel (   -41,     0)  ->  Abs (   840,   655)
+	 47: Rel (  -115,     0)  ->  Abs (   725,   655)
+	 48: Rel (  -100,   445)  ->  Abs (   625,  1100)
+	 49: Rel (   265, -1571)  ->  Abs (   890,  -471)
+	 50: Rel (  -265,  1871)  ->  Abs (   625,  1400)
+	 51: Rel (   118,   130)  ->  Abs (   743,  1530)
+
+	Glyph  66: off = 0x000031A0, len = 222
+	  numberOfContours:	3
+	  xMin:			-238
+	  yMin:			-348
+	  xMax:			1155
+	  yMax:			1140
+
+	EndPoints
+	---------
+	  0:  34
+	  1:  35
+	  2:  36
+
+	  Length of Instructions:	98
+	00000: NPUSHB      (33):     5    33   133    33     2     3     0    24    48    24 
+	                            64    24    80    24     4     9     5    35    11     0 
+	                            20     5     2   234    16    20    15    36    32   232 
+	                            27   230    16 
+	00035: PUSHW[1]            -32 
+	00038: NPUSHB      (24):    13    17    72     0    64    12    17    72    16    14 
+	                            35     5    64     0    36    23    38    23   246     2 
+	                            37    30   239     2 
+	00064: CALL       
+	00065: CALL       
+	00066: SVTCA[x-axis] 
+	00067: RTG        
+	00068: SRP0       
+	00069: MDRP[nrp0,nmd,rd,0] 
+	00070: SHP[rp1,zp0] 
+	00071: SMD        
+	00072: MDRP[srp0,md,rd,1] 
+	00073: MDRP[nrp0,nmd,rd,0] 
+	00074: MDRP[nrp0,md,rd,1] 
+	00075: IP         
+	00076: CALL       
+	00077: CALL       
+	00078: SVTCA[y-axis] 
+	00079: MIAP[rd+ci] 
+	00080: FLIPON     
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: MDRP[nrp0,nmd,rd,0] 
+	00083: MIAP[rd+ci] 
+	00084: MDRP[srp0,nmd,rd,0] 
+	00085: MIRP[nrp0,md,rd,1] 
+	00086: IP         
+	00087: SRP1       
+	00088: IP         
+	00089: MDRP[srp0,md,rd,1] 
+	00090: MDRP[nrp0,nmd,rd,2] 
+	00091: IUP[y]     
+	00092: IUP[x]     
+	00093: SDS        
+	00094: SDB        
+	00095: DELTAP1    
+	00096: SDS        
+	00097: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:              Rep-  1                 Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual               Y-Short         Off
+	 34:                                      Off
+	 35:                              X-Short On
+	 36:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   915,   649)  ->  Abs (   915,   649)
+	  1: Rel (  -100,   -16)  ->  Abs (   815,   633)
+	  2: Rel (  -137,     0)  ->  Abs (   678,   633)
+	  3: Rel (   -84,     0)  ->  Abs (   594,   633)
+	  4: Rel (   -92,    61)  ->  Abs (   502,   694)
+	  5: Rel (     0,    47)  ->  Abs (   502,   741)
+	  6: Rel (     0,    47)  ->  Abs (   502,   788)
+	  7: Rel (    43,    31)  ->  Abs (   545,   819)
+	  8: Rel (   111,    80)  ->  Abs (   656,   899)
+	  9: Rel (    83,    94)  ->  Abs (   739,   993)
+	 10: Rel (    38,    43)  ->  Abs (   777,  1036)
+	 11: Rel (    52,     0)  ->  Abs (   829,  1036)
+	 12: Rel (    35,     0)  ->  Abs (   864,  1036)
+	 13: Rel (    43,   -49)  ->  Abs (   907,   987)
+	 14: Rel (     0,   -35)  ->  Abs (   907,   952)
+	 15: Rel (     0,   -67)  ->  Abs (   907,   885)
+	 16: Rel (  -139,   -88)  ->  Abs (   768,   797)
+	 17: Rel (    54,     0)  ->  Abs (   822,   797)
+	 18: Rel (   140,    14)  ->  Abs (   962,   811)
+	 19: Rel (    97,    10)  ->  Abs (  1059,   821)
+	 20: Rel (    26,     0)  ->  Abs (  1085,   821)
+	 21: Rel (    31,     0)  ->  Abs (  1116,   821)
+	 22: Rel (    39,   -44)  ->  Abs (  1155,   777)
+	 23: Rel (     0,   -32)  ->  Abs (  1155,   745)
+	 24: Rel (     0,   -69)  ->  Abs (  1155,   676)
+	 25: Rel (  -453,  -522)  ->  Abs (   702,   154)
+	 26: Rel (  -694,  -502)  ->  Abs (     8,  -348)
+	 27: Rel (  -141,     0)  ->  Abs (  -133,  -348)
+	 28: Rel (   -48,     0)  ->  Abs (  -181,  -348)
+	 29: Rel (   -57,    48)  ->  Abs (  -238,  -300)
+	 30: Rel (     0,    40)  ->  Abs (  -238,  -260)
+	 31: Rel (     0,    64)  ->  Abs (  -238,  -196)
+	 32: Rel (    91,    34)  ->  Abs (  -147,  -162)
+	 33: Rel (   295,   113)  ->  Abs (   148,   -49)
+	 34: Rel (   598,   474)  ->  Abs (   746,   425)
+	 35: Rel (  -220,   715)  ->  Abs (   526,  1140)
+	 36: Rel (   402, -1433)  ->  Abs (   928,  -293)
+
+	Glyph  67: off = 0x0000327E, len = 260
+	  numberOfContours:	4
+	  xMin:			-78
+	  yMin:			-348
+	  xMax:			1147
+	  yMax:			1400
+
+	EndPoints
+	---------
+	  0:  38
+	  1:  39
+	  2:  40
+	  3:  41
+
+	  Length of Instructions:	123
+	00000: NPUSHB      (23):    27    48    12    16    72    21    24     1   132    21 
+	                             1    52     9    68     9   132     9     3    10     6 
+	                             1     9    41 
+	00025: PUSHW[3]            259    39   258 
+	00032: NPUSHB      (47):     3     8    20    26     4    29    17   232    12    15 
+	                            35     0   232    40    29   229    41    39    40     3 
+	                           249    15    26    31    26     2    12     3    26    39 
+	                            15    20   247    64     8    26     8    15    32    43 
+	                            15   246     2    42    32   241     2 
+	00081: CALL       
+	00082: CALL       
+	00083: SVTCA[x-axis] 
+	00084: SRP1       
+	00085: SRP2       
+	00086: IP         
+	00087: IP         
+	00088: RTG        
+	00089: MDAP[rd]   
+	00090: SMD        
+	00091: FLIPON     
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: SRP2       
+	00094: IP         
+	00095: MDAP[rd]   
+	00096: SDS        
+	00097: SDB        
+	00098: DELTAP1    
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: MDRP[nrp0,nmd,rd,2] 
+	00101: MDAP[rd]   
+	00102: MDRP[nrp0,nmd,rd,2] 
+	00103: SVTCA[y-axis] 
+	00104: MIAP[rd+ci] 
+	00105: MDRP[nrp0,nmd,rd,2] 
+	00106: MIRP[srp0,md,rd,1] 
+	00107: MDRP[nrp0,nmd,rd,0] 
+	00108: MIAP[rd+ci] 
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: SRP2       
+	00111: SLOOP      
+	00112: IP         
+	00113: MIAP[rd+ci] 
+	00114: MIAP[rd+ci] 
+	00115: IUP[y]     
+	00116: IUP[x]     
+	00117: SDB        
+	00118: DELTAP1    
+	00119: DELTAP1    
+	00120: DELTAP1    
+	00121: DELTAP1    
+	00122: CALL       
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual XDual                 X-Short Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual               Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short         Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short On
+	 24:        XDual Rep-  1 Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:                      Y-Short         Off
+	 29:  YDual                               On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:        XDual         Y-Short X-Short On
+	 38:        XDual         Y-Short X-Short Off
+	 39:              Rep-  2                 On
+
+	Coordinates
+	-----------
+	  0: Rel (   305,     0)  ->  Abs (   305,     0)
+	  1: Rel (   171,     0)  ->  Abs (   476,     0)
+	  2: Rel (   239,    97)  ->  Abs (   715,    97)
+	  3: Rel (     0,    75)  ->  Abs (   715,   172)
+	  4: Rel (     0,    28)  ->  Abs (   715,   200)
+	  5: Rel (   -94,    53)  ->  Abs (   621,   253)
+	  6: Rel (  -109,    42)  ->  Abs (   512,   295)
+	  7: Rel (  -154,    58)  ->  Abs (   358,   353)
+	  8: Rel (     0,   118)  ->  Abs (   358,   471)
+	  9: Rel (     0,    68)  ->  Abs (   358,   539)
+	 10: Rel (   166,   117)  ->  Abs (   524,   656)
+	 11: Rel (   409,   167)  ->  Abs (   933,   823)
+	 12: Rel (   114,     0)  ->  Abs (  1047,   823)
+	 13: Rel (    46,     0)  ->  Abs (  1093,   823)
+	 14: Rel (    54,   -48)  ->  Abs (  1147,   775)
+	 15: Rel (     0,   -36)  ->  Abs (  1147,   739)
+	 16: Rel (     0,   -92)  ->  Abs (  1147,   647)
+	 17: Rel (  -113,   -10)  ->  Abs (  1034,   637)
+	 18: Rel (  -138,   -11)  ->  Abs (   896,   626)
+	 19: Rel (  -335,  -125)  ->  Abs (   561,   501)
+	 20: Rel (     0,   -34)  ->  Abs (   561,   467)
+	 21: Rel (     0,   -10)  ->  Abs (   561,   457)
+	 22: Rel (    21,   -14)  ->  Abs (   582,   443)
+	 23: Rel (    71,   -26)  ->  Abs (   653,   417)
+	 24: Rel (   160,   -59)  ->  Abs (   813,   358)
+	 25: Rel (    94,  -107)  ->  Abs (   907,   251)
+	 26: Rel (     0,   -54)  ->  Abs (   907,   197)
+	 27: Rel (     0,  -162)  ->  Abs (   907,    35)
+	 28: Rel (  -387,  -219)  ->  Abs (   520,  -184)
+	 29: Rel (  -278,     0)  ->  Abs (   242,  -184)
+	 30: Rel (  -136,     0)  ->  Abs (   106,  -184)
+	 31: Rel (  -184,    84)  ->  Abs (   -78,  -100)
+	 32: Rel (     0,    61)  ->  Abs (   -78,   -39)
+	 33: Rel (     0,    36)  ->  Abs (   -78,    -3)
+	 34: Rel (    46,    52)  ->  Abs (   -32,    49)
+	 35: Rel (    38,     0)  ->  Abs (     6,    49)
+	 36: Rel (    22,     0)  ->  Abs (    28,    49)
+	 37: Rel (    53,   -15)  ->  Abs (    81,    34)
+	 38: Rel (   117,   -34)  ->  Abs (   198,     0)
+	 39: Rel (   432,  1100)  ->  Abs (   630,  1100)
+	 40: Rel (   281, -1448)  ->  Abs (   911,  -348)
+	 41: Rel (  -258,  1748)  ->  Abs (   653,  1400)
+
+	Glyph  68: off = 0x00003382, len = 310
+	  numberOfContours:	3
+	  xMin:			41
+	  yMin:			-537
+	  xMax:			1354
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  53
+	  1:  54
+	  2:  55
+
+	  Length of Instructions:	142
+	00000: NPUSHB      (16):    73    49     1    34    44    50    44    66    44     3 
+	                            37    40    53    40     2     9 
+	00018: PUSHW[1]            -16 
+	00021: NPUSHB      (24):    14    17    72    38     5    54     5    70     5     3 
+	                            13     3    61     3    77     3     3    13    13     2 
+	                             1    17     3    55 
+	00047: PUSHW[1]            258 
+	00050: NPUSHB      (42):    54    32    51   232    42     4    22    32     3     7 
+	                            27    46    37    15    11     7   234    17   230    24 
+	                            24    22    20    37     0    14    55    54     0    14 
+	                            54    55     4    48     4   177    64    20    57    48 
+	                           246     2 
+	00094: CALL       
+	00095: SVTCA[x-axis] 
+	00096: RTG        
+	00097: MDAP[rd]   
+	00098: SMD        
+	00099: FLIPON     
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: SRP2       
+	00102: SLOOP      
+	00103: IP         
+	00104: MDAP[rd]   
+	00105: MDAP[rd]   
+	00106: MDAP[rd]   
+	00107: RTHG       
+	00108: MDAP[rd]   
+	00109: SHP[rp1,zp0] 
+	00110: SRP2       
+	00111: IP         
+	00112: IP         
+	00113: RTG        
+	00114: MDAP[rd]   
+	00115: SVTCA[y-axis] 
+	00116: MIAP[rd+ci] 
+	00117: MIRP[srp0,md,rd,1] 
+	00118: MDRP[nrp0,nmd,rd,0] 
+	00119: MIAP[rd+ci] 
+	00120: MDRP[nrp0,nmd,rd,0] 
+	00121: MDRP[nrp0,nmd,rd,0] 
+	00122: SRP2       
+	00123: SLOOP      
+	00124: IP         
+	00125: MDRP[srp0,nmd,rd,0] 
+	00126: MIRP[nrp0,md,rd,1] 
+	00127: MDAP[rd]   
+	00128: MDAP[rd]   
+	00129: MIAP[rd+ci] 
+	00130: IUP[y]     
+	00131: IUP[x]     
+	00132: SDS        
+	00133: SDB        
+	00134: DELTAP1    
+	00135: SDB        
+	00136: DELTAP1    
+	00137: DELTAP1    
+	00138: CALL       
+	00139: DELTAP1    
+	00140: DELTAP1    
+	00141: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short         Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:        XDual                         Off
+	 22:  YDual               Y-Short         On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short X-Short On
+	 31:        XDual         Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short X-Short On
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short X-Short On
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short X-Short On
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:        XDual         Y-Short         On
+	 49:        XDual         Y-Short         Off
+	 50:                      Y-Short X-Short Off
+	 51:  YDual                       X-Short On
+	 52:  YDual                       X-Short Off
+	 53:  YDual               Y-Short X-Short Off
+	 54:        XDual                 X-Short On
+	 55:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   815,   608)  ->  Abs (   815,   608)
+	  1: Rel (   -83,   -66)  ->  Abs (   732,   542)
+	  2: Rel (  -171,  -106)  ->  Abs (   561,   436)
+	  3: Rel (  -338,  -206)  ->  Abs (   223,   230)
+	  4: Rel (     0,  -203)  ->  Abs (   223,    27)
+	  5: Rel (     0,   -96)  ->  Abs (   223,   -69)
+	  6: Rel (   142,  -117)  ->  Abs (   365,  -186)
+	  7: Rel (   131,     0)  ->  Abs (   496,  -186)
+	  8: Rel (   112,     0)  ->  Abs (   608,  -186)
+	  9: Rel (   151,    49)  ->  Abs (   759,  -137)
+	 10: Rel (    73,    24)  ->  Abs (   832,  -113)
+	 11: Rel (    26,     0)  ->  Abs (   858,  -113)
+	 12: Rel (    33,     0)  ->  Abs (   891,  -113)
+	 13: Rel (    41,   -46)  ->  Abs (   932,  -159)
+	 14: Rel (     0,   -36)  ->  Abs (   932,  -195)
+	 15: Rel (     0,   -64)  ->  Abs (   932,  -259)
+	 16: Rel (  -279,   -93)  ->  Abs (   653,  -352)
+	 17: Rel (  -159,     0)  ->  Abs (   494,  -352)
+	 18: Rel (  -216,     0)  ->  Abs (   278,  -352)
+	 19: Rel (  -237,   204)  ->  Abs (    41,  -148)
+	 20: Rel (     0,   168)  ->  Abs (    41,    20)
+	 21: Rel (     0,   278)  ->  Abs (    41,   298)
+	 22: Rel (   365,   226)  ->  Abs (   406,   524)
+	 23: Rel (  -107,    49)  ->  Abs (   299,   573)
+	 24: Rel (     0,    91)  ->  Abs (   299,   664)
+	 25: Rel (     0,    59)  ->  Abs (   299,   723)
+	 26: Rel (    82,    84)  ->  Abs (   381,   807)
+	 27: Rel (    72,     0)  ->  Abs (   453,   807)
+	 28: Rel (    26,     0)  ->  Abs (   479,   807)
+	 29: Rel (    51,   -25)  ->  Abs (   530,   782)
+	 30: Rel (    34,   -46)  ->  Abs (   564,   736)
+	 31: Rel (    34,   -46)  ->  Abs (   598,   690)
+	 32: Rel (    25,     0)  ->  Abs (   623,   690)
+	 33: Rel (    24,     0)  ->  Abs (   647,   690)
+	 34: Rel (    27,    14)  ->  Abs (   674,   704)
+	 35: Rel (    28,    25)  ->  Abs (   702,   729)
+	 36: Rel (    95,    92)  ->  Abs (   797,   821)
+	 37: Rel (    43,     0)  ->  Abs (   840,   821)
+	 38: Rel (    22,     0)  ->  Abs (   862,   821)
+	 39: Rel (    44,   -33)  ->  Abs (   906,   788)
+	 40: Rel (    38,   -65)  ->  Abs (   944,   723)
+	 41: Rel (    36,   -61)  ->  Abs (   980,   662)
+	 42: Rel (    21,   -21)  ->  Abs (  1001,   641)
+	 43: Rel (    91,    30)  ->  Abs (  1092,   671)
+	 44: Rel (    57,   103)  ->  Abs (  1149,   774)
+	 45: Rel (    55,    98)  ->  Abs (  1204,   872)
+	 46: Rel (    56,     0)  ->  Abs (  1260,   872)
+	 47: Rel (    94,     0)  ->  Abs (  1354,   872)
+	 48: Rel (     0,   -94)  ->  Abs (  1354,   778)
+	 49: Rel (     0,   -89)  ->  Abs (  1354,   689)
+	 50: Rel (  -252,  -234)  ->  Abs (  1102,   455)
+	 51: Rel (  -123,     0)  ->  Abs (   979,   455)
+	 52: Rel (   -37,     0)  ->  Abs (   942,   455)
+	 53: Rel (   -71,    68)  ->  Abs (   871,   523)
+	 54: Rel (   108, -1060)  ->  Abs (   979,  -537)
+	 55: Rel (  -139,  1637)  ->  Abs (   840,  1100)
+
+	Glyph  69: off = 0x000034B8, len = 300
+	  numberOfContours:	6
+	  xMin:			80
+	  yMin:			-49
+	  xMax:			2175
+	  yMax:			1400
+
+	EndPoints
+	---------
+	  0:  35
+	  1:  36
+	  2:  37
+	  3:  38
+	  4:  39
+	  5:  40
+
+	  Length of Instructions:	153
+	00000: NPUSHB      (13):    31    32    14    17    72    99    26   115    26   131 
+	                            26     3    24 
+	00015: PUSHW[1]            -24 
+	00018: PUSHB[4]             11    17    72    10 
+	00023: PUSHW[1]            -32 
+	00026: NPUSHB      (13):    12    16    72   133     8     1   138     2     1    39 
+	                            39    36    38 
+	00041: PUSHW[3]            259    36   258 
+	00048: NPUSHB      (51):     0    40    16    40    32    40   144    40     4    40 
+	                            37    37     3    11     0    17    34   233    64    22 
+	                             3    22     3    41    27    17    15    40    15    37 
+	                             1     9     3    37    38    39    36    37    36    30 
+	                            14    42    30   246     2    20     0   177    14    11 
+	                             6 
+	00101: MDAP[rd]   
+	00102: MDRP[srp0,nmd,rd,0] 
+	00103: MDRP[nrp0,md,rd,1] 
+	00104: MIRP[srp0,md,rd,1] 
+	00105: MDRP[nrp0,nmd,rd,1] 
+	00106: CALL       
+	00107: SVTCA[x-axis] 
+	00108: SRP1       
+	00109: SRP2       
+	00110: IP         
+	00111: IP         
+	00112: RTG        
+	00113: MDAP[rd]   
+	00114: MDRP[nrp0,nmd,nrd,0] 
+	00115: MDRP[nrp0,nmd,nrd,0] 
+	00116: MDAP[rd]   
+	00117: SDS        
+	00118: SDB        
+	00119: DELTAP1    
+	00120: MDRP[nrp0,nmd,rd,2] 
+	00121: SVTCA[y-axis] 
+	00122: MIAP[rd+ci] 
+	00123: MDRP[nrp0,nmd,rd,0] 
+	00124: SRP2       
+	00125: IP         
+	00126: IP         
+	00127: MDAP[rd]   
+	00128: MDAP[rd]   
+	00129: SMD        
+	00130: FLIPON     
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: SRP1       
+	00133: IP         
+	00134: IP         
+	00135: SRP1       
+	00136: IP         
+	00137: MDAP[rd]   
+	00138: MDAP[rd]   
+	00139: DELTAP1    
+	00140: MIAP[rd+ci] 
+	00141: MIAP[rd+ci] 
+	00142: SRP2       
+	00143: IP         
+	00144: MDAP[rd]   
+	00145: IUP[y]     
+	00146: IUP[x]     
+	00147: DELTAP1    
+	00148: DELTAP1    
+	00149: CALL       
+	00150: CALL       
+	00151: DELTAP1    
+	00152: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:              Rep-  1 Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual       Rep-  1 Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual                               On
+	 23:  YDual                               Off
+	 24:  YDual               Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                              X-Short Off
+	 33:                      Y-Short         Off
+	 34:  YDual                               On
+	 35:  YDual                               Off
+	 36:              Rep-  2                 On
+	 39:        XDual         Y-Short         On
+	 40:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   539,   446)  ->  Abs (   539,   446)
+	  1: Rel (   -35,  -146)  ->  Abs (   504,   300)
+	  2: Rel (  -214,  -206)  ->  Abs (   290,    94)
+	  3: Rel (  -106,     0)  ->  Abs (   184,    94)
+	  4: Rel (   -47,     0)  ->  Abs (   137,    94)
+	  5: Rel (   -57,    48)  ->  Abs (    80,   142)
+	  6: Rel (     0,    40)  ->  Abs (    80,   182)
+	  7: Rel (     0,    76)  ->  Abs (    80,   258)
+	  8: Rel (   102,    18)  ->  Abs (   182,   276)
+	  9: Rel (    57,    11)  ->  Abs (   239,   287)
+	 10: Rel (   102,   127)  ->  Abs (   341,   414)
+	 11: Rel (    13,    75)  ->  Abs (   354,   489)
+	 12: Rel (   -55,    28)  ->  Abs (   299,   517)
+	 13: Rel (   -68,   108)  ->  Abs (   231,   625)
+	 14: Rel (     0,    57)  ->  Abs (   231,   682)
+	 15: Rel (     0,    58)  ->  Abs (   231,   740)
+	 16: Rel (    78,    81)  ->  Abs (   309,   821)
+	 17: Rel (    56,     0)  ->  Abs (   365,   821)
+	 18: Rel (    75,     0)  ->  Abs (   440,   821)
+	 19: Rel (   110,  -114)  ->  Abs (   550,   707)
+	 20: Rel (    13,   -86)  ->  Abs (   563,   621)
+	 21: Rel (   231,   -35)  ->  Abs (   794,   586)
+	 22: Rel (   336,     0)  ->  Abs (  1130,   586)
+	 23: Rel (   423,     0)  ->  Abs (  1553,   586)
+	 24: Rel (   352,   191)  ->  Abs (  1905,   777)
+	 25: Rel (    59,   126)  ->  Abs (  1964,   903)
+	 26: Rel (    40,    86)  ->  Abs (  2004,   989)
+	 27: Rel (    79,     0)  ->  Abs (  2083,   989)
+	 28: Rel (    39,     0)  ->  Abs (  2122,   989)
+	 29: Rel (    53,   -46)  ->  Abs (  2175,   943)
+	 30: Rel (     0,   -38)  ->  Abs (  2175,   905)
+	 31: Rel (     0,   -94)  ->  Abs (  2175,   811)
+	 32: Rel (  -248,  -262)  ->  Abs (  1927,   549)
+	 33: Rel (  -424,  -135)  ->  Abs (  1503,   414)
+	 34: Rel (  -399,     0)  ->  Abs (  1104,   414)
+	 35: Rel (  -353,     0)  ->  Abs (   751,   414)
+	 36: Rel (   439,   686)  ->  Abs (  1190,  1100)
+	 37: Rel (   283,  -895)  ->  Abs (  1473,   205)
+	 38: Rel (  -283,  1195)  ->  Abs (  1190,  1400)
+	 39: Rel (     0,  -250)  ->  Abs (  1190,  1150)
+	 40: Rel (   290, -1199)  ->  Abs (  1480,   -49)
+
+	Glyph  70: off = 0x000035E4, len = 302
+	  numberOfContours:	3
+	  xMin:			31
+	  yMin:			-354
+	  xMax:			901
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  38
+	  1:  39
+	  2:  40
+
+	  Length of Instructions:	171
+	00000: PUSHB[6]             38    24    12    17    72    35 
+	00007: PUSHW[1]            -24 
+	00010: NPUSHB      (31):    14    17    72    95    32     1    42    18    58    18 
+	                            74    18     3    38    13    54    13    70    13     3 
+	                            80    12     1    41    10    57    10    73    10     3 
+	                            40 
+	00043: PUSHW[1]            258 
+	00046: NPUSHB      (67):    21    33    36    84    16     1    16    11    84     0 
+	                             1     0     0    16    33     3     8    27    16    39 
+	                             3   232    64     8   229    80    33     1    15    16 
+	                             1    95    16     1    80     0     1     3     0     0 
+	                            16     0     2    12     5    16     0    11    36    33 
+	                            30    21     6    40     6    21    36    40     4    11 
+	                            39    30    42    30   243     2    11 
+	00115: MDAP[rd]   
+	00116: CALL       
+	00117: SVTCA[x-axis] 
+	00118: RTG        
+	00119: SRP0       
+	00120: MDRP[nrp0,nmd,rd,2] 
+	00121: SRP2       
+	00122: SLOOP      
+	00123: IP         
+	00124: MDAP[rd]   
+	00125: MDAP[rd]   
+	00126: MDAP[rd]   
+	00127: SRP2       
+	00128: IP         
+	00129: MDAP[rd]   
+	00130: SRP2       
+	00131: IP         
+	00132: IP         
+	00133: SDS        
+	00134: SDB        
+	00135: DELTAP1    
+	00136: SDS        
+	00137: DELTAP1    
+	00138: DELTAP1    
+	00139: DELTAP2    
+	00140: DELTAP1    
+	00141: SVTCA[y-axis] 
+	00142: MIAP[rd+ci] 
+	00143: SMD        
+	00144: FLIPON     
+	00145: MIRP[nrp0,md,rd,1] 
+	00146: MDRP[nrp0,nmd,rd,2] 
+	00147: MIAP[rd+ci] 
+	00148: SRP2       
+	00149: SLOOP      
+	00150: IP         
+	00151: RTHG       
+	00152: MDAP[rd]   
+	00153: DELTAP1    
+	00154: SHP[rp1,zp0] 
+	00155: MDAP[rd]   
+	00156: DELTAP1    
+	00157: SHP[rp1,zp0] 
+	00158: MDAP[rd]   
+	00159: SHP[rp1,zp0] 
+	00160: RTG        
+	00161: MIAP[rd+ci] 
+	00162: IUP[y]     
+	00163: IUP[x]     
+	00164: DELTAP1    
+	00165: DELTAP1    
+	00166: DELTAP1    
+	00167: DELTAP1    
+	00168: DELTAP1    
+	00169: CALL       
+	00170: CALL       
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:        XDual         Y-Short X-Short Off
+	  2:                      Y-Short         Off
+	  3:        XDual         Y-Short X-Short On
+	  4:        XDual Rep-  1 Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short         Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual               Y-Short X-Short On
+	 19:  YDual       Rep-  1 Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual Rep-  1 Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:                      Y-Short X-Short On
+	 34:        XDual Rep-  1 Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short Off
+	 39:              Rep-  1                 On
+
+	Coordinates
+	-----------
+	  0: Rel (   250,    90)  ->  Abs (   250,    90)
+	  1: Rel (    10,   -28)  ->  Abs (   260,    62)
+	  2: Rel (   259,   -52)  ->  Abs (   519,    10)
+	  3: Rel (   155,    -8)  ->  Abs (   674,     2)
+	  4: Rel (    63,    -3)  ->  Abs (   737,    -1)
+	  5: Rel (    49,   -46)  ->  Abs (   786,   -47)
+	  6: Rel (     0,   -49)  ->  Abs (   786,   -96)
+	  7: Rel (     0,   -84)  ->  Abs (   786,  -180)
+	  8: Rel (  -116,     0)  ->  Abs (   670,  -180)
+	  9: Rel (  -232,     0)  ->  Abs (   438,  -180)
+	 10: Rel (  -407,   159)  ->  Abs (    31,   -21)
+	 11: Rel (     0,    97)  ->  Abs (    31,    76)
+	 12: Rel (     0,   108)  ->  Abs (    31,   184)
+	 13: Rel (   180,    68)  ->  Abs (   211,   252)
+	 14: Rel (   146,    54)  ->  Abs (   357,   306)
+	 15: Rel (   149,    81)  ->  Abs (   506,   387)
+	 16: Rel (     0,    16)  ->  Abs (   506,   403)
+	 17: Rel (     0,    20)  ->  Abs (   506,   423)
+	 18: Rel (  -211,    56)  ->  Abs (   295,   479)
+	 19: Rel (   -29,     8)  ->  Abs (   266,   487)
+	 20: Rel (   -39,    43)  ->  Abs (   227,   530)
+	 21: Rel (     0,    29)  ->  Abs (   227,   559)
+	 22: Rel (     0,    35)  ->  Abs (   227,   594)
+	 23: Rel (    46,    61)  ->  Abs (   273,   655)
+	 24: Rel (   111,    59)  ->  Abs (   384,   714)
+	 25: Rel (   196,   103)  ->  Abs (   580,   817)
+	 26: Rel (    83,    45)  ->  Abs (   663,   862)
+	 27: Rel (    48,     0)  ->  Abs (   711,   862)
+	 28: Rel (    31,     0)  ->  Abs (   742,   862)
+	 29: Rel (    51,   -56)  ->  Abs (   793,   806)
+	 30: Rel (     0,   -32)  ->  Abs (   793,   774)
+	 31: Rel (     0,   -40)  ->  Abs (   793,   734)
+	 32: Rel (  -115,   -71)  ->  Abs (   678,   663)
+	 33: Rel (  -201,   -90)  ->  Abs (   477,   573)
+	 34: Rel (   138,   -35)  ->  Abs (   615,   538)
+	 35: Rel (   128,   -72)  ->  Abs (   743,   466)
+	 36: Rel (     0,   -63)  ->  Abs (   743,   403)
+	 37: Rel (     0,   -76)  ->  Abs (   743,   327)
+	 38: Rel (  -253,  -141)  ->  Abs (   490,   186)
+	 39: Rel (   411,  -540)  ->  Abs (   901,  -354)
+	 40: Rel (  -469,  1454)  ->  Abs (   432,  1100)
+
+	Glyph  71: off = 0x00003712, len = 290
+	  numberOfContours:	3
+	  xMin:			98
+	  yMin:			-582
+	  xMax:			1083
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  45
+	  1:  46
+	  2:  47
+
+	  Length of Instructions:	143
+	00000: NPUSHB      (11):    91    39   107    39   123    39     3   121    36     1 
+	                            26 
+	00013: PUSHW[1]            -32 
+	00016: NPUSHB      (30):    12    17    72   102    22     1    28    20   140    20 
+	                             2    75    19     1     3     9    32    13    17    72 
+	                             0     1    16     1    32     1     3     9     5    47 
+	00048: PUSHW[1]            258 
+	00051: NPUSHB      (45):     3     0    10    19    39     4    17    44    15    28 
+	                            24   234    64    34   230    46    31    15    41    47 
+	                            46    10    15    19    31     4    21     0    39    41 
+	                            46    47     5     6    37    49     6   244     2    21 
+	                           250    31    37     1    37 
+	00098: MDAP[rd]   
+	00099: DELTAP1    
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: CALL       
+	00102: SVTCA[x-axis] 
+	00103: SRP1       
+	00104: SRP2       
+	00105: SLOOP      
+	00106: IP         
+	00107: SRP1       
+	00108: SLOOP      
+	00109: IP         
+	00110: RTG        
+	00111: MDAP[rd]   
+	00112: MDAP[rd]   
+	00113: MDAP[rd]   
+	00114: MDAP[rd]   
+	00115: MDAP[rd]   
+	00116: SVTCA[y-axis] 
+	00117: MDAP[rd]   
+	00118: MIAP[rd+ci] 
+	00119: SMD        
+	00120: FLIPON     
+	00121: MIRP[srp0,md,rd,1] 
+	00122: MDRP[nrp0,nmd,rd,0] 
+	00123: MIAP[rd+ci] 
+	00124: MDRP[nrp0,md,rd,1] 
+	00125: SLOOP      
+	00126: IP         
+	00127: MDRP[nrp0,nmd,rd,0] 
+	00128: MIAP[rd+ci] 
+	00129: IUP[y]     
+	00130: IUP[x]     
+	00131: SDS        
+	00132: SDB        
+	00133: DELTAP1    
+	00134: CALL       
+	00135: SDS        
+	00136: DELTAP1    
+	00137: DELTAP1    
+	00138: DELTAP1    
+	00139: CALL       
+	00140: DELTAP1    
+	00141: SVTCA[x-axis] 
+	00142: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual Rep-  1 Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:        XDual Rep-  1 Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short         Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:        XDual                         Off
+	 39:        XDual                 X-Short On
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short Off
+	 46:              Rep-  1                 On
+
+	Coordinates
+	-----------
+	  0: Rel (   569,   750)  ->  Abs (   569,   750)
+	  1: Rel (   132,    90)  ->  Abs (   701,   840)
+	  2: Rel (   223,   102)  ->  Abs (   924,   942)
+	  3: Rel (    61,     0)  ->  Abs (   985,   942)
+	  4: Rel (    45,     0)  ->  Abs (  1030,   942)
+	  5: Rel (    53,   -44)  ->  Abs (  1083,   898)
+	  6: Rel (     0,   -38)  ->  Abs (  1083,   860)
+	  7: Rel (     0,   -73)  ->  Abs (  1083,   787)
+	  8: Rel (  -122,   -31)  ->  Abs (   961,   756)
+	  9: Rel (  -139,   -36)  ->  Abs (   822,   720)
+	 10: Rel (  -126,   -81)  ->  Abs (   696,   639)
+	 11: Rel (    54,   -32)  ->  Abs (   750,   607)
+	 12: Rel (    43,    -9)  ->  Abs (   793,   598)
+	 13: Rel (    45,   -11)  ->  Abs (   838,   587)
+	 14: Rel (    57,   -54)  ->  Abs (   895,   533)
+	 15: Rel (     0,   -33)  ->  Abs (   895,   500)
+	 16: Rel (     0,   -97)  ->  Abs (   895,   403)
+	 17: Rel (  -135,     0)  ->  Abs (   760,   403)
+	 18: Rel (  -104,     0)  ->  Abs (   656,   403)
+	 19: Rel (  -154,    70)  ->  Abs (   502,   473)
+	 20: Rel (  -217,  -238)  ->  Abs (   285,   235)
+	 21: Rel (     0,  -223)  ->  Abs (   285,    12)
+	 22: Rel (     0,   -92)  ->  Abs (   285,   -80)
+	 23: Rel (   147,  -106)  ->  Abs (   432,  -186)
+	 24: Rel (   133,     0)  ->  Abs (   565,  -186)
+	 25: Rel (   108,     0)  ->  Abs (   673,  -186)
+	 26: Rel (   177,    63)  ->  Abs (   850,  -123)
+	 27: Rel (    88,    31)  ->  Abs (   938,   -92)
+	 28: Rel (    27,     0)  ->  Abs (   965,   -92)
+	 29: Rel (    33,     0)  ->  Abs (   998,   -92)
+	 30: Rel (    40,   -46)  ->  Abs (  1038,  -138)
+	 31: Rel (     0,   -36)  ->  Abs (  1038,  -174)
+	 32: Rel (     0,   -65)  ->  Abs (  1038,  -239)
+	 33: Rel (  -326,  -113)  ->  Abs (   712,  -352)
+	 34: Rel (  -149,     0)  ->  Abs (   563,  -352)
+	 35: Rel (  -214,     0)  ->  Abs (   349,  -352)
+	 36: Rel (  -251,   203)  ->  Abs (    98,  -149)
+	 37: Rel (     0,   161)  ->  Abs (    98,    12)
+	 38: Rel (     0,   277)  ->  Abs (    98,   289)
+	 39: Rel (   242,   266)  ->  Abs (   340,   555)
+	 40: Rel (   -84,    52)  ->  Abs (   256,   607)
+	 41: Rel (     0,    81)  ->  Abs (   256,   688)
+	 42: Rel (     0,    54)  ->  Abs (   256,   742)
+	 43: Rel (    84,    79)  ->  Abs (   340,   821)
+	 44: Rel (    57,     0)  ->  Abs (   397,   821)
+	 45: Rel (    93,     0)  ->  Abs (   490,   821)
+	 46: Rel (   483, -1403)  ->  Abs (   973,  -582)
+	 47: Rel (  -311,  1682)  ->  Abs (   662,  1100)
+
+	Glyph  72: off = 0x00003834, len = 398
+	  numberOfContours:	5
+	  xMin:			131
+	  yMin:			-610
+	  xMax:			1458
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  36
+	  1:  45
+	  2:  57
+	  3:  58
+	  4:  59
+
+	  Length of Instructions:	214
+	00000: NPUSHB      (40):   106    18   122    18   138    18     3   101    56   117 
+	                            56     2   139    54     1    54    47    70    47    86 
+	                            47     3    45    40    13    17    72   149    35     1 
+	                            12    35    28    35    44    35   140    35     4    29 
+	00042: PUSHW[1]            -32 
+	00045: PUSHB[4]              9    12    72    27 
+	00050: PUSHW[1]            -32 
+	00053: NPUSHB      (29):    11    16    72   138    20     1    10    16    26    16 
+	                            42    16   122    16   138    16     5     9    22     6 
+	                            38     6    54     6     3    50    28     1    59 
+	00084: PUSHW[1]            258 
+	00087: NPUSHB      (62):    46    52    37   233    28    19    25    15     0     1 
+	                            14     3     0    43   233    31    52   233    25    15 
+	                             8     4   234    58    14    28    37     0     2    28 
+	                            46    19    17    49     2   177    17    11    59    58 
+	                            11    17    49    58    59     5    22    40   248    34 
+	                            55   250    22    64    61    34   243     2    60    22 
+	                           242     2 
+	00151: CALL       
+	00152: CALL       
+	00153: SVTCA[x-axis] 
+	00154: SMD        
+	00155: RTG        
+	00156: SRP0       
+	00157: FLIPON     
+	00158: MIRP[nrp0,md,rd,1] 
+	00159: SRP0       
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: SRP2       
+	00162: SLOOP      
+	00163: IP         
+	00164: MDAP[rd]   
+	00165: MDAP[rd]   
+	00166: MDAP[rd]   
+	00167: MDAP[rd]   
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: MDAP[rd]   
+	00170: SRP2       
+	00171: IP         
+	00172: IP         
+	00173: MDRP[nrp0,md,rd,1] 
+	00174: SRP1       
+	00175: IP         
+	00176: IP         
+	00177: SVTCA[y-axis] 
+	00178: MIAP[rd+ci] 
+	00179: MDRP[nrp0,nmd,rd,2] 
+	00180: MIRP[srp0,md,rd,1] 
+	00181: MDRP[nrp0,nmd,rd,0] 
+	00182: MIAP[rd+ci] 
+	00183: MIRP[nrp0,md,rd,1] 
+	00184: MDRP[srp0,nmd,rd,0] 
+	00185: MIRP[nrp0,md,rd,1] 
+	00186: MDAP[rd]   
+	00187: SDS        
+	00188: SDB        
+	00189: DELTAP1    
+	00190: SRP2       
+	00191: IP         
+	00192: IP         
+	00193: MIRP[nrp0,md,rd,1] 
+	00194: SRP1       
+	00195: IP         
+	00196: MIAP[rd+ci] 
+	00197: DELTAP1    
+	00198: IUP[y]     
+	00199: IUP[x]     
+	00200: DELTAP1    
+	00201: SDB        
+	00202: DELTAP1    
+	00203: DELTAP1    
+	00204: CALL       
+	00205: CALL       
+	00206: DELTAP1    
+	00207: DELTAP1    
+	00208: CALL       
+	00209: DELTAP1    
+	00210: DELTAP1    
+	00211: DELTAP1    
+	00212: SVTCA[x-axis] 
+	00213: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:  YDual                               On
+	  5:  YDual XDual                 X-Short Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short         Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short         Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual       Rep-  1 Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short X-Short On
+	 29:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:                                      Off
+	 37:  YDual               Y-Short X-Short On
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual               Y-Short         Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short Off
+	 45:                      Y-Short X-Short Off
+	 46:                      Y-Short         On
+	 47:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 49:  YDual XDual         Y-Short         On
+	 50:  YDual XDual         Y-Short         Off
+	 51:  YDual               Y-Short X-Short Off
+	 52:  YDual                       X-Short On
+	 53:  YDual                       X-Short Off
+	 54:                      Y-Short X-Short Off
+	 55:        XDual         Y-Short         On
+	 56:        XDual         Y-Short         Off
+	 57:        XDual         Y-Short X-Short Off
+	 58:                                      On
+	 59:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   539,    68)  ->  Abs (   539,    68)
+	  1: Rel (  -111,  -115)  ->  Abs (   428,   -47)
+	  2: Rel (     0,   -92)  ->  Abs (   428,  -139)
+	  3: Rel (     0,  -156)  ->  Abs (   428,  -295)
+	  4: Rel (   354,     0)  ->  Abs (   782,  -295)
+	  5: Rel (   124,     0)  ->  Abs (   906,  -295)
+	  6: Rel (   153,    61)  ->  Abs (  1059,  -234)
+	  7: Rel (    70,    27)  ->  Abs (  1129,  -207)
+	  8: Rel (    26,     0)  ->  Abs (  1155,  -207)
+	  9: Rel (    33,     0)  ->  Abs (  1188,  -207)
+	 10: Rel (    41,   -46)  ->  Abs (  1229,  -253)
+	 11: Rel (     0,   -36)  ->  Abs (  1229,  -289)
+	 12: Rel (     0,   -65)  ->  Abs (  1229,  -354)
+	 13: Rel (  -301,  -107)  ->  Abs (   928,  -461)
+	 14: Rel (  -158,     0)  ->  Abs (   770,  -461)
+	 15: Rel (  -240,     0)  ->  Abs (   530,  -461)
+	 16: Rel (  -288,   172)  ->  Abs (   242,  -289)
+	 17: Rel (     0,   152)  ->  Abs (   242,  -137)
+	 18: Rel (     0,   116)  ->  Abs (   242,   -21)
+	 19: Rel (   125,   123)  ->  Abs (   367,   102)
+	 20: Rel (  -100,    36)  ->  Abs (   267,   138)
+	 21: Rel (  -136,   192)  ->  Abs (   131,   330)
+	 22: Rel (     0,   119)  ->  Abs (   131,   449)
+	 23: Rel (     0,   148)  ->  Abs (   131,   597)
+	 24: Rel (   229,   224)  ->  Abs (   360,   821)
+	 25: Rel (   168,     0)  ->  Abs (   528,   821)
+	 26: Rel (    91,     0)  ->  Abs (   619,   821)
+	 27: Rel (   141,  -108)  ->  Abs (   760,   713)
+	 28: Rel (    12,   -74)  ->  Abs (   772,   639)
+	 29: Rel (    73,    96)  ->  Abs (   845,   735)
+	 30: Rel (   220,   121)  ->  Abs (  1065,   856)
+	 31: Rel (   111,     0)  ->  Abs (  1176,   856)
+	 32: Rel (   124,     0)  ->  Abs (  1300,   856)
+	 33: Rel (   158,  -158)  ->  Abs (  1458,   698)
+	 34: Rel (     0,  -120)  ->  Abs (  1458,   578)
+	 35: Rel (     0,  -217)  ->  Abs (  1458,   361)
+	 36: Rel (  -555,  -293)  ->  Abs (   903,    68)
+	 37: Rel (  -229,   170)  ->  Abs (   674,   238)
+	 38: Rel (   232,    10)  ->  Abs (   906,   248)
+	 39: Rel (   354,   204)  ->  Abs (  1260,   452)
+	 40: Rel (     0,   115)  ->  Abs (  1260,   567)
+	 41: Rel (     0,    50)  ->  Abs (  1260,   617)
+	 42: Rel (   -61,    65)  ->  Abs (  1199,   682)
+	 43: Rel (   -52,     0)  ->  Abs (  1147,   682)
+	 44: Rel (   -93,     0)  ->  Abs (  1054,   682)
+	 45: Rel (  -206,  -195)  ->  Abs (   848,   487)
+	 46: Rel (  -373,  -243)  ->  Abs (   475,   244)
+	 47: Rel (    70,    71)  ->  Abs (   545,   315)
+	 48: Rel (    88,   176)  ->  Abs (   633,   491)
+	 49: Rel (     0,    56)  ->  Abs (   633,   547)
+	 50: Rel (     0,    43)  ->  Abs (   633,   590)
+	 51: Rel (   -66,    59)  ->  Abs (   567,   649)
+	 52: Rel (   -57,     0)  ->  Abs (   510,   649)
+	 53: Rel (   -79,     0)  ->  Abs (   431,   649)
+	 54: Rel (  -112,  -126)  ->  Abs (   319,   523)
+	 55: Rel (     0,   -85)  ->  Abs (   319,   438)
+	 56: Rel (     0,   -69)  ->  Abs (   319,   369)
+	 57: Rel (    89,  -109)  ->  Abs (   408,   260)
+	 58: Rel (   641,  -870)  ->  Abs (  1049,  -610)
+	 59: Rel (  -209,  1710)  ->  Abs (   840,  1100)
+
+	Glyph  73: off = 0x000039C2, len = 296
+	  numberOfContours:	3
+	  xMin:			-133
+	  yMin:			-270
+	  xMax:			1376
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  41
+	  1:  42
+	  2:  43
+
+	  Length of Instructions:	156
+	00000: PUSHB[4]            117    36     1    35 
+	00005: PUSHW[1]            -48 
+	00008: NPUSHB      (29):    12    17    72   123    29   139    29     2   142    28 
+	                             1   102    12   118    12     2     4    11   132    11 
+	                             2     9     9     1    25     1     2    10    42 
+	00039: PUSHW[1]            258 
+	00042: NPUSHB      (61):    80     8     1    50     8    66     8     2     3     0 
+	                             8    16     8    32     8     3    12     4     8     4 
+	                            43    30    12    17    24     0   232    20    40   232 
+	                            24    15     4   229    14    12   251    20     0    43 
+	                            42    42    43     0     3    27     7    33    24    38 
+	                           251    27    64    45    27   241     2    44     7   240 
+	                             2 
+	00105: CALL       
+	00106: CALL       
+	00107: SVTCA[x-axis] 
+	00108: SMD        
+	00109: RTG        
+	00110: SRP0       
+	00111: FLIPON     
+	00112: MIRP[srp0,md,rd,1] 
+	00113: IP         
+	00114: MDRP[nrp0,nmd,rd,0] 
+	00115: SRP1       
+	00116: SRP2       
+	00117: SLOOP      
+	00118: IP         
+	00119: MDAP[rd]   
+	00120: MDAP[rd]   
+	00121: MDAP[rd]   
+	00122: MDRP[nrp0,nmd,rd,1] 
+	00123: MIRP[srp0,md,rd,1] 
+	00124: MDRP[nrp0,md,rd,1] 
+	00125: SVTCA[y-axis] 
+	00126: MIAP[rd+ci] 
+	00127: MIAP[rd+ci] 
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: MDRP[srp0,nmd,rd,0] 
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: SRP1       
+	00132: IP         
+	00133: IP         
+	00134: MDAP[rd]   
+	00135: MDAP[rd]   
+	00136: SRP1       
+	00137: IP         
+	00138: SDS        
+	00139: SDB        
+	00140: DELTAP1    
+	00141: SDS        
+	00142: DELTAP1    
+	00143: DELTAP1    
+	00144: MIAP[rd+ci] 
+	00145: IUP[y]     
+	00146: IUP[x]     
+	00147: SDB        
+	00148: DELTAP1    
+	00149: SDB        
+	00150: DELTAP1    
+	00151: DELTAP1    
+	00152: DELTAP1    
+	00153: DELTAP1    
+	00154: CALL       
+	00155: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:                                      Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:                                      Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:                              X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual               Y-Short X-Short On
+	 41:                      Y-Short X-Short Off
+	 42:                              X-Short On
+	 43:        XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   768,   500)  ->  Abs (   768,   500)
+	  1: Rel (  -154,  -248)  ->  Abs (   614,   252)
+	  2: Rel (  -390,  -326)  ->  Abs (   224,   -74)
+	  3: Rel (  -194,  -112)  ->  Abs (    30,  -186)
+	  4: Rel (   -65,     0)  ->  Abs (   -35,  -186)
+	  5: Rel (   -44,     0)  ->  Abs (   -79,  -186)
+	  6: Rel (   -54,    46)  ->  Abs (  -133,  -140)
+	  7: Rel (     0,    38)  ->  Abs (  -133,  -102)
+	  8: Rel (     0,    68)  ->  Abs (  -133,   -34)
+	  9: Rel (   102,    44)  ->  Abs (   -31,    10)
+	 10: Rel (   166,    72)  ->  Abs (   135,    82)
+	 11: Rel (   328,   276)  ->  Abs (   463,   358)
+	 12: Rel (   125,   185)  ->  Abs (   588,   543)
+	 13: Rel (   -84,    48)  ->  Abs (   504,   591)
+	 14: Rel (     0,    87)  ->  Abs (   504,   678)
+	 15: Rel (     0,    58)  ->  Abs (   504,   736)
+	 16: Rel (    85,    85)  ->  Abs (   589,   821)
+	 17: Rel (    64,     0)  ->  Abs (   653,   821)
+	 18: Rel (    62,     0)  ->  Abs (   715,   821)
+	 19: Rel (    84,   -78)  ->  Abs (   799,   743)
+	 20: Rel (     0,   -63)  ->  Abs (   799,   680)
+	 21: Rel (   141,    20)  ->  Abs (   940,   700)
+	 22: Rel (   168,    82)  ->  Abs (  1108,   782)
+	 23: Rel (    81,    39)  ->  Abs (  1189,   821)
+	 24: Rel (    40,     0)  ->  Abs (  1229,   821)
+	 25: Rel (    68,     0)  ->  Abs (  1297,   821)
+	 26: Rel (    79,  -150)  ->  Abs (  1376,   671)
+	 27: Rel (     0,  -110)  ->  Abs (  1376,   561)
+	 28: Rel (     0,  -183)  ->  Abs (  1376,   378)
+	 29: Rel (  -171,  -327)  ->  Abs (  1205,    51)
+	 30: Rel (  -103,     0)  ->  Abs (  1102,    51)
+	 31: Rel (   -46,     0)  ->  Abs (  1056,    51)
+	 32: Rel (   -57,    44)  ->  Abs (   999,    95)
+	 33: Rel (     0,    34)  ->  Abs (   999,   129)
+	 34: Rel (     0,    55)  ->  Abs (   999,   184)
+	 35: Rel (    78,    74)  ->  Abs (  1077,   258)
+	 36: Rel (    51,    47)  ->  Abs (  1128,   305)
+	 37: Rel (    68,   176)  ->  Abs (  1196,   481)
+	 38: Rel (     0,    78)  ->  Abs (  1196,   559)
+	 39: Rel (     0,    41)  ->  Abs (  1196,   600)
+	 40: Rel (   -14,    39)  ->  Abs (  1182,   639)
+	 41: Rel (  -182,   -96)  ->  Abs (  1000,   543)
+	 42: Rel (   -82,   557)  ->  Abs (   918,  1100)
+	 43: Rel (    10, -1370)  ->  Abs (   928,  -270)
+
+	Glyph  74: off = 0x00003AEA, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-313
+	  yMin:			-457
+	  xMax:			1016
+	  yMax:			1100
+
+	     0: Flags:		0x0236
+		Glyf Index:	63
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	104
+		X WOffset:	297
+		Y WOffset:	-309
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     4    54     0    54     1     4    54    80    54   191 
+	                            54   207    54     3    54    64     9    16    54 
+	00021: CALL       
+	00022: DELTAP1    
+	00023: SRP1       
+	00024: SHC[rp1,zp0] 
+	00025: SVTCA[y-axis] 
+	00026: DELTAP1    
+	00027: SRP1       
+	00028: SHC[rp1,zp0] 
+
+	Glyph  75: off = 0x00003B22, len = 378
+	  numberOfContours:	4
+	  xMin:			-102
+	  yMin:			-594
+	  xMax:			1155
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  62
+	  1:  63
+	  2:  64
+	  3:  65
+
+	  Length of Instructions:	187
+	00000: NPUSHB      (24):     9    52    25    52     2   138    48     1    47    24 
+	                            11    14    72     1    40    17    40   129    40     3 
+	                            52    33     1    32 
+	00026: PUSHW[1]            -48 
+	00029: NPUSHB      (98):     9    15    72   137    30     1   117    20   133    20 
+	                             2   140    12     1    10     4    26     4     2    96 
+	                             1   112     1   128     1     3   139     0     1    64 
+	                            34     8    39     5   234    39     0    44    96    44 
+	                             2     9    44    64    50     0    57    65    15    22 
+	                            18   234    63    28    28    63    25    64     0     2 
+	                            16    50    32    50    48    50     3    50    36     8 
+	                            25    42    50    63     5    15    34    63    34   111 
+	                            34     3    10     3    34    46   248    60     2    67 
+	                            15   177    31    64    66    31   241     2 
+	00129: CALL       
+	00130: SVTCA[x-axis] 
+	00131: SMD        
+	00132: RTG        
+	00133: SRP0       
+	00134: FLIPON     
+	00135: MIRP[nrp0,md,rd,1] 
+	00136: SRP0       
+	00137: MDRP[srp0,nmd,rd,2] 
+	00138: MDRP[nrp0,nmd,rd,0] 
+	00139: MIRP[nrp0,md,rd,1] 
+	00140: MDRP[srp0,nmd,rd,0] 
+	00141: SDS        
+	00142: SDB        
+	00143: DELTAP1    
+	00144: SLOOP      
+	00145: IP         
+	00146: MDRP[nrp0,md,rd,1] 
+	00147: MDAP[rd]   
+	00148: DELTAP1    
+	00149: SRP2       
+	00150: IP         
+	00151: MDRP[nrp0,nmd,rd,0] 
+	00152: MDAP[rd]   
+	00153: MDAP[rd]   
+	00154: SVTCA[y-axis] 
+	00155: MIAP[rd+ci] 
+	00156: MDRP[nrp0,nmd,rd,2] 
+	00157: MIRP[srp0,md,rd,1] 
+	00158: MDRP[nrp0,nmd,rd,0] 
+	00159: MIAP[rd+ci] 
+	00160: MDRP[nrp0,nmd,rd,0] 
+	00161: MDRP[srp0,nmd,rd,0] 
+	00162: SHP[rp2,zp1] 
+	00163: SHP[rp2,zp1] 
+	00164: MDRP[srp0,nmd,rd,0] 
+	00165: SDB        
+	00166: DELTAP1    
+	00167: MDRP[nrp0,md,rd,0] 
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: SRP1       
+	00170: IP         
+	00171: IP         
+	00172: MDAP[rd]   
+	00173: DELTAP1    
+	00174: IUP[y]     
+	00175: IUP[x]     
+	00176: DELTAP1    
+	00177: DELTAP1    
+	00178: DELTAP1    
+	00179: DELTAP1    
+	00180: DELTAP1    
+	00181: CALL       
+	00182: DELTAP1    
+	00183: DELTAP1    
+	00184: CALL       
+	00185: DELTAP1    
+	00186: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual       Rep-  1 Y-Short X-Short On
+	  9:  YDual                       X-Short Off
+	 10:              Rep-  4 Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:                      Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:        XDual                 X-Short Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short X-Short Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short Off
+	 46:  YDual XDual         Y-Short         On
+	 47:  YDual XDual         Y-Short         Off
+	 48:  YDual               Y-Short X-Short On
+	 49:  YDual               Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual XDual         Y-Short X-Short On
+	 53:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 55:  YDual XDual         Y-Short X-Short On
+	 56:  YDual XDual         Y-Short X-Short Off
+	 57:  YDual XDual                 X-Short On
+	 58:  YDual XDual                 X-Short Off
+	 59:        XDual         Y-Short X-Short Off
+	 60:        XDual         Y-Short         On
+	 61:        XDual         Y-Short         Off
+	 62:                      Y-Short X-Short Off
+	 63:              Rep-  1         X-Short On
+	 65:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   956,   791)  ->  Abs (   956,   791)
+	  1: Rel (   179,   -50)  ->  Abs (  1135,   741)
+	  2: Rel (     0,  -145)  ->  Abs (  1135,   596)
+	  3: Rel (     0,  -136)  ->  Abs (  1135,   460)
+	  4: Rel (  -221,  -169)  ->  Abs (   914,   291)
+	  5: Rel (  -185,     0)  ->  Abs (   729,   291)
+	  6: Rel (   -39,     0)  ->  Abs (   690,   291)
+	  7: Rel (   -33,     3)  ->  Abs (   657,   294)
+	  8: Rel (   -63,     7)  ->  Abs (   594,   301)
+	  9: Rel (   -24,     0)  ->  Abs (   570,   301)
+	 10: Rel (  -202,   -89)  ->  Abs (   368,   212)
+	 11: Rel (  -115,   -69)  ->  Abs (   253,   143)
+	 12: Rel (   -86,   -74)  ->  Abs (   167,    69)
+	 13: Rel (   -58,   -78)  ->  Abs (   109,    -9)
+	 14: Rel (   -29,   -79)  ->  Abs (    80,   -88)
+	 15: Rel (     0,   -39)  ->  Abs (    80,  -127)
+	 16: Rel (     0,   -77)  ->  Abs (    80,  -204)
+	 17: Rel (   146,   -91)  ->  Abs (   226,  -295)
+	 18: Rel (   130,     0)  ->  Abs (   356,  -295)
+	 19: Rel (   102,     0)  ->  Abs (   458,  -295)
+	 20: Rel (   121,    43)  ->  Abs (   579,  -252)
+	 21: Rel (    64,    23)  ->  Abs (   643,  -229)
+	 22: Rel (    29,     0)  ->  Abs (   672,  -229)
+	 23: Rel (    34,     0)  ->  Abs (   706,  -229)
+	 24: Rel (    44,   -46)  ->  Abs (   750,  -275)
+	 25: Rel (     0,   -34)  ->  Abs (   750,  -309)
+	 26: Rel (     0,   -63)  ->  Abs (   750,  -372)
+	 27: Rel (  -245,   -89)  ->  Abs (   505,  -461)
+	 28: Rel (  -151,     0)  ->  Abs (   354,  -461)
+	 29: Rel (  -211,     0)  ->  Abs (   143,  -461)
+	 30: Rel (  -245,   189)  ->  Abs (  -102,  -272)
+	 31: Rel (     0,   141)  ->  Abs (  -102,  -131)
+	 32: Rel (     0,   157)  ->  Abs (  -102,    26)
+	 33: Rel (   255,   266)  ->  Abs (   153,   292)
+	 34: Rel (   246,    85)  ->  Abs (   399,   377)
+	 35: Rel (   -32,    19)  ->  Abs (   367,   396)
+	 36: Rel (     0,    46)  ->  Abs (   367,   442)
+	 37: Rel (     0,    54)  ->  Abs (   367,   496)
+	 38: Rel (    83,    61)  ->  Abs (   450,   557)
+	 39: Rel (    70,     0)  ->  Abs (   520,   557)
+	 40: Rel (    49,     0)  ->  Abs (   569,   557)
+	 41: Rel (    68,   -63)  ->  Abs (   637,   494)
+	 42: Rel (     0,   -27)  ->  Abs (   637,   467)
+	 43: Rel (    38,   -10)  ->  Abs (   675,   457)
+	 44: Rel (    60,     0)  ->  Abs (   735,   457)
+	 45: Rel (   201,     0)  ->  Abs (   936,   457)
+	 46: Rel (     0,   137)  ->  Abs (   936,   594)
+	 47: Rel (     0,    99)  ->  Abs (   936,   693)
+	 48: Rel (  -191,    28)  ->  Abs (   745,   721)
+	 49: Rel (   -71,    10)  ->  Abs (   674,   731)
+	 50: Rel (     0,    68)  ->  Abs (   674,   799)
+	 51: Rel (     0,    67)  ->  Abs (   674,   866)
+	 52: Rel (    78,    19)  ->  Abs (   752,   885)
+	 53: Rel (    41,     9)  ->  Abs (   793,   894)
+	 54: Rel (   143,    54)  ->  Abs (   936,   948)
+	 55: Rel (    37,    23)  ->  Abs (   973,   971)
+	 56: Rel (    56,    35)  ->  Abs (  1029,  1006)
+	 57: Rel (    40,     0)  ->  Abs (  1069,  1006)
+	 58: Rel (    37,     0)  ->  Abs (  1106,  1006)
+	 59: Rel (    49,   -47)  ->  Abs (  1155,   959)
+	 60: Rel (     0,   -33)  ->  Abs (  1155,   926)
+	 61: Rel (     0,   -42)  ->  Abs (  1155,   884)
+	 62: Rel (  -103,   -62)  ->  Abs (  1052,   822)
+	 63: Rel (  -118, -1416)  ->  Abs (   934,  -594)
+	 64: Rel (  -234,  1694)  ->  Abs (   700,  1100)
+	 65: Rel (  -700,  -279)  ->  Abs (     0,   821)
+
+	Glyph  76: off = 0x00003C9C, len = 436
+	  numberOfContours:	4
+	  xMin:			-94
+	  yMin:			-465
+	  xMax:			1276
+	  yMax:			1393
+
+	EndPoints
+	---------
+	  0:  54
+	  1:  67
+	  2:  68
+	  3:  69
+
+	  Length of Instructions:	224
+	00000: NPUSHB      (61):    99    46   115    46     2    15    53     1    10   105 
+	                            50     1    22    48    38    48     2   101    46     1 
+	                            93    45   109    45     2    41    44     1    38    36 
+	                             1    69    29     1    16     8    32     8    48     8 
+	                             3   100     4     1    46     0     1    82    29    34 
+	                            46    34     0   141    29    34    20    29    29    34 
+	                            69 
+	00063: PUSHW[1]            258 
+	00066: NPUSHB      (76):    40    52   234    95    63     1    63    58     0     3 
+	                            55     3     9    20    29    34    32     6    12    55 
+	                           233    47    46    15    68    17   232    12   230     0 
+	                            60     1    11    69    29    34    69     3    37    26 
+	                            60   251    54     0    68    20   247     0     9     1 
+	                            18     3     9    37     0    43     2     3   247    26 
+	                            26     9    15    66   249    64    43    49    71    49 
+	                           246     2    70    15   241     2 
+	00144: CALL       
+	00145: CALL       
+	00146: SVTCA[x-axis] 
+	00147: RTG        
+	00148: SRP0       
+	00149: MDRP[nrp0,nmd,rd,0] 
+	00150: SMD        
+	00151: FLIPON     
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: SRP2       
+	00154: IP         
+	00155: IP         
+	00156: MDAP[rd]   
+	00157: MIRP[nrp0,md,rd,1] 
+	00158: SRP1       
+	00159: SRP2       
+	00160: IP         
+	00161: IP         
+	00162: MDAP[rd]   
+	00163: SDS        
+	00164: SDB        
+	00165: DELTAP1    
+	00166: MIRP[nrp0,md,rd,1] 
+	00167: MDRP[nrp0,nmd,rd,2] 
+	00168: MDAP[rd]   
+	00169: SHP[rp1,zp0] 
+	00170: MIRP[nrp0,md,rd,1] 
+	00171: SRP1       
+	00172: SRP2       
+	00173: SLOOP      
+	00174: IP         
+	00175: MDAP[rd]   
+	00176: SDB        
+	00177: DELTAP1    
+	00178: SVTCA[y-axis] 
+	00179: MIAP[rd+ci] 
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: MDRP[nrp0,nmd,rd,2] 
+	00182: MIAP[rd+ci] 
+	00183: SHP[rp1,zp0] 
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: SRP2       
+	00186: SLOOP      
+	00187: IP         
+	00188: SRP1       
+	00189: SRP2       
+	00190: IP         
+	00191: IP         
+	00192: MDRP[srp0,nmd,rd,0] 
+	00193: DELTAP1    
+	00194: MIRP[nrp0,md,rd,1] 
+	00195: MDAP[rd]   
+	00196: MIAP[rd+ci] 
+	00197: SDPVTL[1]  
+	00198: SRP0       
+	00199: CALL       
+	00200: SRP0       
+	00201: SVTCA[x-axis] 
+	00202: MDRP[nrp0,nmd,nrd,1] 
+	00203: SDPVTL[1]  
+	00204: SFVTCA[y-axis] 
+	00205: CALL       
+	00206: SRP0       
+	00207: MDRP[nrp0,nmd,rd,0] 
+	00208: IUP[y]     
+	00209: IUP[x]     
+	00210: SVTCA[y-axis] 
+	00211: DELTAP1    
+	00212: DELTAP1    
+	00213: DELTAP1    
+	00214: DELTAP1    
+	00215: DELTAP1    
+	00216: DELTAP1    
+	00217: DELTAP1    
+	00218: DELTAP1    
+	00219: DELTAP1    
+	00220: SDB        
+	00221: DELTAP1    
+	00222: SVTCA[x-axis] 
+	00223: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:              Rep-  1 Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:        XDual Rep-  1 Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short         Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual       Rep-  1 Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short X-Short On
+	 38:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:        XDual         Y-Short X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:                              X-Short Off
+	 46:                      Y-Short X-Short On
+	 47:        XDual Rep-  1 Y-Short X-Short Off
+	 49:        XDual         Y-Short         On
+	 50:        XDual         Y-Short         Off
+	 51:                      Y-Short X-Short Off
+	 52:  YDual                       X-Short On
+	 53:  YDual                       X-Short Off
+	 54:  YDual               Y-Short X-Short Off
+	 55:                                      On
+	 56:  YDual                       X-Short Off
+	 57:              Rep-  2 Y-Short X-Short Off
+	 60:        XDual         Y-Short         On
+	 61:        XDual         Y-Short         Off
+	 62:        XDual         Y-Short X-Short Off
+	 63:  YDual XDual                 X-Short On
+	 64:  YDual XDual                 X-Short Off
+	 65:  YDual XDual         Y-Short X-Short Off
+	 66:  YDual XDual         Y-Short         On
+	 67:  YDual XDual         Y-Short         Off
+	 68:                              X-Short On
+	 69:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   475,   442)  ->  Abs (   475,   442)
+	  1: Rel (  -108,  -101)  ->  Abs (   367,   341)
+	  2: Rel (   -60,   -77)  ->  Abs (   307,   264)
+	  3: Rel (     0,   -35)  ->  Abs (   307,   229)
+	  4: Rel (     0,   -15)  ->  Abs (   307,   214)
+	  5: Rel (    49,   -32)  ->  Abs (   356,   182)
+	  6: Rel (    82,   -37)  ->  Abs (   438,   145)
+	  7: Rel (   100,   -43)  ->  Abs (   538,   102)
+	  8: Rel (    89,   -83)  ->  Abs (   627,    19)
+	  9: Rel (     0,   -54)  ->  Abs (   627,   -35)
+	 10: Rel (     0,   -98)  ->  Abs (   627,  -133)
+	 11: Rel (  -419,  -215)  ->  Abs (   208,  -348)
+	 12: Rel (  -161,     0)  ->  Abs (    47,  -348)
+	 13: Rel (   -67,     0)  ->  Abs (   -20,  -348)
+	 14: Rel (   -74,    50)  ->  Abs (   -94,  -298)
+	 15: Rel (     0,    44)  ->  Abs (   -94,  -254)
+	 16: Rel (     0,    86)  ->  Abs (   -94,  -168)
+	 17: Rel (   139,    10)  ->  Abs (    45,  -158)
+	 18: Rel (   113,     8)  ->  Abs (   158,  -150)
+	 19: Rel (   217,    75)  ->  Abs (   375,   -75)
+	 20: Rel (     0,    26)  ->  Abs (   375,   -49)
+	 21: Rel (     0,    13)  ->  Abs (   375,   -36)
+	 22: Rel (   -33,    19)  ->  Abs (   342,   -17)
+	 23: Rel (   -51,    21)  ->  Abs (   291,     4)
+	 24: Rel (  -128,    52)  ->  Abs (   163,    56)
+	 25: Rel (   -79,    81)  ->  Abs (    84,   137)
+	 26: Rel (     0,    68)  ->  Abs (    84,   205)
+	 27: Rel (     0,    59)  ->  Abs (    84,   264)
+	 28: Rel (    97,   144)  ->  Abs (   181,   408)
+	 29: Rel (   112,   106)  ->  Abs (   293,   514)
+	 30: Rel (    79,    75)  ->  Abs (   372,   589)
+	 31: Rel (   137,   101)  ->  Abs (   509,   690)
+	 32: Rel (    52,    30)  ->  Abs (   561,   720)
+	 33: Rel (    17,    11)  ->  Abs (   578,   731)
+	 34: Rel (    73,    66)  ->  Abs (   651,   797)
+	 35: Rel (   160,   148)  ->  Abs (   811,   945)
+	 36: Rel (   172,   202)  ->  Abs (   983,  1147)
+	 37: Rel (   103,   159)  ->  Abs (  1086,  1306)
+	 38: Rel (    37,    58)  ->  Abs (  1123,  1364)
+	 39: Rel (    53,    29)  ->  Abs (  1176,  1393)
+	 40: Rel (    28,     0)  ->  Abs (  1204,  1393)
+	 41: Rel (    34,     0)  ->  Abs (  1238,  1393)
+	 42: Rel (    38,   -39)  ->  Abs (  1276,  1354)
+	 43: Rel (     0,   -31)  ->  Abs (  1276,  1323)
+	 44: Rel (     0,   -68)  ->  Abs (  1276,  1255)
+	 45: Rel (  -196,  -268)  ->  Abs (  1080,   987)
+	 46: Rel (  -177,  -170)  ->  Abs (   903,   817)
+	 47: Rel (   106,   -14)  ->  Abs (  1009,   803)
+	 48: Rel (   115,  -135)  ->  Abs (  1124,   668)
+	 49: Rel (     0,  -101)  ->  Abs (  1124,   567)
+	 50: Rel (     0,  -144)  ->  Abs (  1124,   423)
+	 51: Rel (  -232,  -218)  ->  Abs (   892,   205)
+	 52: Rel (  -142,     0)  ->  Abs (   750,   205)
+	 53: Rel (  -109,     0)  ->  Abs (   641,   205)
+	 54: Rel (  -157,   127)  ->  Abs (   484,   332)
+	 55: Rel (   356,   325)  ->  Abs (   840,   657)
+	 56: Rel (   -39,     0)  ->  Abs (   801,   657)
+	 57: Rel (  -113,   -51)  ->  Abs (   688,   606)
+	 58: Rel (   -21,   -24)  ->  Abs (   667,   582)
+	 59: Rel (   -24,   -63)  ->  Abs (   643,   519)
+	 60: Rel (     0,   -38)  ->  Abs (   643,   481)
+	 61: Rel (     0,   -51)  ->  Abs (   643,   430)
+	 62: Rel (    58,   -61)  ->  Abs (   701,   369)
+	 63: Rel (    44,     0)  ->  Abs (   745,   369)
+	 64: Rel (    68,     0)  ->  Abs (   813,   369)
+	 65: Rel (   117,   113)  ->  Abs (   930,   482)
+	 66: Rel (     0,    73)  ->  Abs (   930,   555)
+	 67: Rel (     0,   102)  ->  Abs (   930,   657)
+	 68: Rel (    -8, -1122)  ->  Abs (   922,  -465)
+	 69: Rel (  -406,  1565)  ->  Abs (   516,  1100)
+
+	Glyph  77: off = 0x00003E50, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-94
+	  yMin:			-471
+	  xMax:			1136
+	  yMax:			1530
+
+	     0: Flags:		0x0236
+		Glyf Index:	65
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	106
+		X WOffset:	489
+		Y WOffset:	870
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     8     7     6    73    28     8     7     6     0    64 
+	                             1   225    64    82    25    31    37 
+	00019: CALL       
+	00020: DELTAP1    
+	00021: SHC[rp1,zp0] 
+	00022: SHC[rp1,zp0] 
+	00023: SHC[rp1,zp0] 
+	00024: SVTCA[y-axis] 
+	00025: SRP0       
+	00026: MDRP[srp0,md,rd,2] 
+	00027: SHC[rp2,zp1] 
+	00028: SHC[rp2,zp1] 
+	00029: SHC[rp2,zp1] 
+
+	Glyph  78: off = 0x00003E88, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-115
+	  yMin:			-219
+	  xMax:			1072
+	  yMax:			1100
+
+	     0: Flags:		0x0236
+		Glyf Index:	53
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	104
+		X WOffset:	630
+		Y WOffset:	106
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              3   144    21     1    21 
+	00006: PUSHW[1]            -64 
+	00009: PUSHB[4]             10    13    54     3 
+	00014: PUSHW[1]            498 
+	00017: PUSHB[5]             21    27     0    12    37 
+	00023: CALL       
+	00024: SHC[rp1,zp0] 
+	00025: SVTCA[y-axis] 
+	00026: CALL       
+	00027: DELTAP1    
+	00028: SHC[rp1,zp0] 
+
+	Glyph  79: off = 0x00003EC0, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-115
+	  yMin:			-219
+	  xMax:			1059
+	  yMax:			1100
+
+	     0: Flags:		0x0236
+		Glyf Index:	53
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	103
+		X WOffset:	186
+		Y WOffset:	473
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     3    15    21    31    21    95    21   111    21     4 
+	                             3   160    21     1    21 
+	00017: PUSHW[1]            -64 
+	00020: NPUSHB       (9):     9    15    54    54    21    27     0    12    37 
+	00031: CALL       
+	00032: CALL       
+	00033: DELTAP1    
+	00034: SHC[rp1,zp0] 
+	00035: SVTCA[y-axis] 
+	00036: DELTAP1    
+	00037: SHC[rp1,zp0] 
+
+	Glyph  80: off = 0x00003F00, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-233
+	  yMin:			-381
+	  xMax:			1264
+	  yMax:			1460
+
+	     0: Flags:		0x0236
+		Glyf Index:	64
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	103
+		X WOffset:	522
+		Y WOffset:	967
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):    64     5    62    62   128    52     5    48    53     1 
+	00012: PUSHW[1]            -37 
+	00015: PUSHB[5]             53    59    12    44    37 
+	00021: CALL       
+	00022: DELTAP2    
+	00023: SHC[rp1,zp0] 
+	00024: SVTCA[y-axis] 
+	00025: SRP0       
+	00026: SMD        
+	00027: MDRP[srp0,md,rd,2] 
+	00028: MDAP[rd]   
+	00029: SHC[rp2,zp1] 
+	00030: SMD        
+
+	Glyph  81: off = 0x00003F3A, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-115
+	  yMin:			-184
+	  xMax:			1495
+	  yMax:			1400
+
+	     0: Flags:		0x0236
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	103
+		X WOffset:	665
+		Y WOffset:	895
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              4    47    16     4    38 
+	00006: PUSHW[1]            -64 
+	00009: NPUSHB      (14):    21    25    54    48    38    64    38    80    38   144 
+	                            38   160    38     5 
+	00025: PUSHW[1]            -96 
+	00028: PUSHB[5]             38    44    13    22    37 
+	00034: CALL       
+	00035: DELTAP1    
+	00036: CALL       
+	00037: SHC[rp1,zp0] 
+	00038: SVTCA[y-axis] 
+	00039: SRP0       
+	00040: MDRP[srp0,md,rd,2] 
+	00041: SHC[rp2,zp1] 
+
+	Glyph  82: off = 0x00003F7E, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			80
+	  yMin:			-49
+	  xMax:			2175
+	  yMax:			1400
+
+	     0: Flags:		0x0236
+		Glyf Index:	69
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	106
+		X WOffset:	813
+		Y WOffset:	676
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              8     7     6    62    22     8     7     6 
+	00009: PUSHW[1]            -50 
+	00012: PUSHB[5]             53    71    14    30    37 
+	00018: CALL       
+	00019: SHC[rp1,zp0] 
+	00020: SHC[rp1,zp0] 
+	00021: SHC[rp1,zp0] 
+	00022: SVTCA[y-axis] 
+	00023: SRP0       
+	00024: MDRP[srp0,md,rd,2] 
+	00025: SHC[rp2,zp1] 
+	00026: SHC[rp2,zp1] 
+	00027: SHC[rp2,zp1] 
+
+	Glyph  83: off = 0x00003FB4, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			80
+	  yMin:			-49
+	  xMax:			2175
+	  yMax:			1400
+
+	     0: Flags:		0x0236
+		Glyf Index:	69
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	104
+		X WOffset:	813
+		Y WOffset:	90
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              6   144    41     1     6 
+	00006: PUSHW[1]            -50 
+	00009: PUSHB[5]             41    47    14    30    37 
+	00015: CALL       
+	00016: SHC[rp1,zp0] 
+	00017: SVTCA[y-axis] 
+	00018: DELTAP1    
+	00019: SHC[rp1,zp0] 
+
+	Glyph  84: off = 0x00003FE2, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			80
+	  yMin:			-49
+	  xMax:			2175
+	  yMax:			1400
+
+	     0: Flags:		0x0236
+		Glyf Index:	69
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	103
+		X WOffset:	813
+		Y WOffset:	696
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              6    50    22     6 
+	00005: PUSHW[1]            -50 
+	00008: PUSHB[5]             41    47    14    30    37 
+	00014: CALL       
+	00015: SHC[rp1,zp0] 
+	00016: SVTCA[y-axis] 
+	00017: SRP0       
+	00018: MDRP[srp0,md,rd,2] 
+	00019: SHC[rp2,zp1] 
+
+	Glyph  85: off = 0x00004010, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-94
+	  yMin:			-471
+	  xMax:			1124
+	  yMax:			1530
+
+	     0: Flags:		0x0236
+		Glyf Index:	65
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	104
+		X WOffset:	542
+		Y WOffset:	-119
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     6   144    52   160    52   176    52   192    52     4 
+	                             6     7    52    58     8    31    37 
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+	00021: SVTCA[y-axis] 
+	00022: DELTAP1    
+	00023: SHC[rp1,zp0] 
+
+	Glyph  86: off = 0x00004042, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-94
+	  yMin:			-471
+	  xMax:			1124
+	  yMax:			1530
+
+	     0: Flags:		0x0236
+		Glyf Index:	65
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	103
+		X WOffset:	512
+		Y WOffset:	922
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     6    61    28     6     0    52     1   248    52    58 
+	                            25    31    37 
+	00015: SVTCA[x-axis] 
+	00016: CALL       
+	00017: DELTAP1    
+	00018: SHC[rp1,zp0] 
+	00019: SVTCA[y-axis] 
+	00020: SRP0       
+	00021: MDRP[srp0,md,rd,2] 
+	00022: SHC[rp2,zp1] 
+
+	Glyph  87: off = 0x00004074, len = 24
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-29
+	  yMin:			-352
+	  xMax:			1077
+	  yMax:			1100
+
+	     0: Flags:		0x0236
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0017
+		Glyf Index:	104
+		X WOffset:	188
+		Y WOffset:	-207
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph  88: off = 0x0000408C, len = 80
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-29
+	  yMin:			-352
+	  xMax:			1077
+	  yMax:			1100
+
+	     0: Flags:		0x0236
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	103
+		X WOffset:	114
+		Y WOffset:	637
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     5    95    33   143    33   144    33   192    33     4 
+	                             5    32    33    48    33   160    33     3    33 
+	00021: PUSHW[1]            -64 
+	00024: PUSHB[4]             18    21    54    33 
+	00029: PUSHW[1]            -64 
+	00032: PUSHB[3]              9    13    54 
+	00036: PUSHW[1]            -70 
+	00039: PUSHB[5]             33    39     6    17    37 
+	00045: CALL       
+	00046: CALL       
+	00047: CALL       
+	00048: DELTAP2    
+	00049: SHC[rp1,zp0] 
+	00050: SVTCA[y-axis] 
+	00051: DELTAP1    
+	00052: SHC[rp1,zp0] 
+
+	Glyph  89: off = 0x000040DC, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-78
+	  yMin:			-348
+	  xMax:			1147
+	  yMax:			1400
+
+	     0: Flags:		0x0236
+		Glyf Index:	67
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	105
+		X WOffset:	413
+		Y WOffset:	905
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     5     4    63    12     5     4     0    42    60     8 
+	                            15    37 
+	00014: CALL       
+	00015: SHC[rp1,zp0] 
+	00016: SHC[rp1,zp0] 
+	00017: SVTCA[y-axis] 
+	00018: SRP0       
+	00019: MDRP[srp0,md,rd,2] 
+	00020: SHC[rp2,zp1] 
+	00021: SHC[rp2,zp1] 
+
+	Glyph  90: off = 0x0000410C, len = 44
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-123
+	  yMin:			-219
+	  xMax:			864
+	  yMax:			1400
+
+	     0: Flags:		0x0236
+		Glyf Index:	61
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	103
+		X WOffset:	223
+		Y WOffset:	922
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     5    44     8     5    34    35    41     5    11    37 
+	00012: CALL       
+	00013: SHC[rp1,zp0] 
+	00014: SVTCA[y-axis] 
+	00015: SRP0       
+	00016: MDRP[srp0,md,rd,2] 
+	00017: SHC[rp2,zp1] 
+
+	Glyph  91: off = 0x00004138, len = 96
+	  numberOfContours:	2
+	  xMin:			25
+	  yMin:			969
+	  xMax:			575
+	  yMax:			1425
+
+	EndPoints
+	---------
+	  0:  14
+	  1:  15
+
+	  Length of Instructions:	35
+	00000: NPUSHB      (20):   123    10     1    84     4   100     4   132     4     3 
+	                           134     3     1     7    15    12    15    15     9     0 
+	00022: MDAP[rd]   
+	00023: MDRP[nrp0,md,rd,1] 
+	00024: IP         
+	00025: MDAP[rd]   
+	00026: SVTCA[y-axis] 
+	00027: MDAP[rd]   
+	00028: MDRP[nrp0,nmd,rd,2] 
+	00029: MDRP[nrp0,md,rd,1] 
+	00030: IUP[y]     
+	00031: IUP[x]     
+	00032: DELTAP1    
+	00033: DELTAP1    
+	00034: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                                      Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    25,  1038)  ->  Abs (    25,  1038)
+	  1: Rel (     0,    30)  ->  Abs (    25,  1068)
+	  2: Rel (    32,    34)  ->  Abs (    57,  1102)
+	  3: Rel (    45,    20)  ->  Abs (   102,  1122)
+	  4: Rel (   136,    59)  ->  Abs (   238,  1181)
+	  5: Rel (   193,   201)  ->  Abs (   431,  1382)
+	  6: Rel (    42,    43)  ->  Abs (   473,  1425)
+	  7: Rel (    43,     0)  ->  Abs (   516,  1425)
+	  8: Rel (    59,     0)  ->  Abs (   575,  1425)
+	  9: Rel (     0,   -63)  ->  Abs (   575,  1362)
+	 10: Rel (     0,   -57)  ->  Abs (   575,  1305)
+	 11: Rel (  -368,  -336)  ->  Abs (   207,   969)
+	 12: Rel (  -101,     0)  ->  Abs (   106,   969)
+	 13: Rel (   -37,     0)  ->  Abs (    69,   969)
+	 14: Rel (   -44,    38)  ->  Abs (    25,  1007)
+	 15: Rel (   171,   -38)  ->  Abs (   196,   969)
+
+	Glyph  92: off = 0x00004198, len = 156
+	  numberOfContours:	3
+	  xMin:			25
+	  yMin:			969
+	  xMax:			862
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  14
+	  1:  29
+	  2:  30
+
+	  Length of Instructions:	53
+	00000: NPUSHB      (31):   102    19   118    19   134    19     3   102     4   118 
+	                             4   134     4     3     7    47    12     1    12    22 
+	                            30    27    30    30     0    24    64    15   128     9 
+	                             0 
+	00033: MDAP[rd]   
+	00034: MDRP[nrp0,md,rd,1] 
+	00035: SMD        
+	00036: MDRP[srp0,md,rd,0] 
+	00037: SMD        
+	00038: MDRP[nrp0,md,rd,1] 
+	00039: SRP1       
+	00040: IP         
+	00041: MDAP[rd]   
+	00042: SVTCA[y-axis] 
+	00043: MDAP[rd]   
+	00044: MDRP[nrp0,nmd,rd,2] 
+	00045: MDRP[nrp0,md,rd,1] 
+	00046: MDRP[srp0,nmd,rd,0] 
+	00047: DELTAP1    
+	00048: MDRP[nrp0,md,rd,1] 
+	00049: IUP[y]     
+	00050: IUP[x]     
+	00051: DELTAP1    
+	00052: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                                      Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:                      Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                                      Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    25,  1124)  ->  Abs (    25,  1124)
+	  1: Rel (     0,    30)  ->  Abs (    25,  1154)
+	  2: Rel (    32,    34)  ->  Abs (    57,  1188)
+	  3: Rel (    45,    20)  ->  Abs (   102,  1208)
+	  4: Rel (   139,    62)  ->  Abs (   241,  1270)
+	  5: Rel (   153,   153)  ->  Abs (   394,  1423)
+	  6: Rel (    40,    41)  ->  Abs (   434,  1464)
+	  7: Rel (    41,     0)  ->  Abs (   475,  1464)
+	  8: Rel (    60,     0)  ->  Abs (   535,  1464)
+	  9: Rel (     0,   -63)  ->  Abs (   535,  1401)
+	 10: Rel (     0,   -56)  ->  Abs (   535,  1345)
+	 11: Rel (  -337,  -290)  ->  Abs (   198,  1055)
+	 12: Rel (   -92,     0)  ->  Abs (   106,  1055)
+	 13: Rel (   -37,     0)  ->  Abs (    69,  1055)
+	 14: Rel (   -44,    38)  ->  Abs (    25,  1093)
+	 15: Rel (   327,   -55)  ->  Abs (   352,  1038)
+	 16: Rel (     0,    31)  ->  Abs (   352,  1069)
+	 17: Rel (    34,    34)  ->  Abs (   386,  1103)
+	 18: Rel (    44,    19)  ->  Abs (   430,  1122)
+	 19: Rel (   138,    62)  ->  Abs (   568,  1184)
+	 20: Rel (   153,   153)  ->  Abs (   721,  1337)
+	 21: Rel (    41,    41)  ->  Abs (   762,  1378)
+	 22: Rel (    41,     0)  ->  Abs (   803,  1378)
+	 23: Rel (    59,     0)  ->  Abs (   862,  1378)
+	 24: Rel (     0,   -63)  ->  Abs (   862,  1315)
+	 25: Rel (     0,   -56)  ->  Abs (   862,  1259)
+	 26: Rel (  -336,  -290)  ->  Abs (   526,   969)
+	 27: Rel (   -92,     0)  ->  Abs (   434,   969)
+	 28: Rel (   -37,     0)  ->  Abs (   397,   969)
+	 29: Rel (   -45,    38)  ->  Abs (   352,  1007)
+	 30: Rel (    93,   -38)  ->  Abs (   445,   969)
+
+	Glyph  93: off = 0x00004234, len = 90
+	  numberOfContours:	2
+	  xMin:			25
+	  yMin:			-461
+	  xMax:			822
+	  yMax:			-69
+
+	EndPoints
+	---------
+	  0:  14
+	  1:  15
+
+	  Length of Instructions:	29
+	00000: NPUSHB      (16):   134     4     1    99     3   115     3   131     3     3 
+	                            12    15     6    15     9     0 
+	00018: MDAP[rd]   
+	00019: MDRP[srp0,md,rd,1] 
+	00020: MDRP[nrp0,nmd,rd,2] 
+	00021: SVTCA[y-axis] 
+	00022: MDAP[rd]   
+	00023: MDRP[nrp0,nmd,rd,2] 
+	00024: MDRP[nrp0,md,rd,1] 
+	00025: IUP[y]     
+	00026: IUP[x]     
+	00027: DELTAP1    
+	00028: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short         Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (    25,  -397)  ->  Abs (    25,  -397)
+	  1: Rel (     0,    62)  ->  Abs (    25,  -335)
+	  2: Rel (    77,    28)  ->  Abs (   102,  -307)
+	  3: Rel (   160,    57)  ->  Abs (   262,  -250)
+	  4: Rel (   182,   111)  ->  Abs (   444,  -139)
+	  5: Rel (    48,    28)  ->  Abs (   492,  -111)
+	  6: Rel (    40,     0)  ->  Abs (   532,  -111)
+	  7: Rel (    26,     0)  ->  Abs (   558,  -111)
+	  8: Rel (    36,   -35)  ->  Abs (   594,  -146)
+	  9: Rel (     0,   -22)  ->  Abs (   594,  -168)
+	 10: Rel (     0,   -59)  ->  Abs (   594,  -227)
+	 11: Rel (  -404,  -234)  ->  Abs (   190,  -461)
+	 12: Rel (   -88,     0)  ->  Abs (   102,  -461)
+	 13: Rel (   -34,     0)  ->  Abs (    68,  -461)
+	 14: Rel (   -43,    37)  ->  Abs (    25,  -424)
+	 15: Rel (   797,   355)  ->  Abs (   822,   -69)
+
+	Glyph  94: off = 0x0000428E, len = 188
+	  numberOfContours:	3
+	  xMin:			14
+	  yMin:			-517
+	  xMax:			1024
+	  yMax:			-111
+
+	EndPoints
+	---------
+	  0:  14
+	  1:  29
+	  2:  30
+
+	  Length of Instructions:	85
+	00000: NPUSHB      (58):   131    19     1   131    18     1   106    26   122    26 
+	                             2   106    11   122    11     2   131     4     1   131 
+	                             3     1    30    30     6    27    21    12     6    30 
+	                            30     0     0    24    16    24    32    24    64    24 
+	                            80    24     5    24    15     0     9    16     9    32 
+	                             9    64     9    80     9     5     9     0 
+	00060: MDAP[rd]   
+	00061: MDRP[nrp0,md,rd,1] 
+	00062: DELTAP1    
+	00063: MDRP[srp0,nmd,rd,0] 
+	00064: MDRP[nrp0,md,rd,1] 
+	00065: DELTAP1    
+	00066: SRP1       
+	00067: IP         
+	00068: MDAP[rd]   
+	00069: SVTCA[y-axis] 
+	00070: MDAP[rd]   
+	00071: MDRP[nrp0,md,rd,1] 
+	00072: MDRP[srp0,nmd,rd,0] 
+	00073: MDRP[nrp0,md,rd,1] 
+	00074: SRP2       
+	00075: IP         
+	00076: MDAP[rd]   
+	00077: IUP[y]     
+	00078: IUP[x]     
+	00079: DELTAP1    
+	00080: DELTAP1    
+	00081: DELTAP1    
+	00082: DELTAP1    
+	00083: DELTAP1    
+	00084: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short         Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:                      Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short         Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (    14,  -398)  ->  Abs (    14,  -398)
+	  1: Rel (     0,    62)  ->  Abs (    14,  -336)
+	  2: Rel (    78,    28)  ->  Abs (    92,  -308)
+	  3: Rel (   159,    57)  ->  Abs (   251,  -251)
+	  4: Rel (   183,   111)  ->  Abs (   434,  -140)
+	  5: Rel (    47,    29)  ->  Abs (   481,  -111)
+	  6: Rel (    41,     0)  ->  Abs (   522,  -111)
+	  7: Rel (    25,     0)  ->  Abs (   547,  -111)
+	  8: Rel (    37,   -35)  ->  Abs (   584,  -146)
+	  9: Rel (     0,   -23)  ->  Abs (   584,  -169)
+	 10: Rel (     0,   -60)  ->  Abs (   584,  -229)
+	 11: Rel (  -406,  -233)  ->  Abs (   178,  -462)
+	 12: Rel (   -86,     0)  ->  Abs (    92,  -462)
+	 13: Rel (   -34,     0)  ->  Abs (    58,  -462)
+	 14: Rel (   -44,    37)  ->  Abs (    14,  -425)
+	 15: Rel (   441,   -28)  ->  Abs (   455,  -453)
+	 16: Rel (     0,    62)  ->  Abs (   455,  -391)
+	 17: Rel (    77,    28)  ->  Abs (   532,  -363)
+	 18: Rel (   160,    57)  ->  Abs (   692,  -306)
+	 19: Rel (   182,   111)  ->  Abs (   874,  -195)
+	 20: Rel (    48,    28)  ->  Abs (   922,  -167)
+	 21: Rel (    41,     0)  ->  Abs (   963,  -167)
+	 22: Rel (    25,     0)  ->  Abs (   988,  -167)
+	 23: Rel (    36,   -35)  ->  Abs (  1024,  -202)
+	 24: Rel (     0,   -22)  ->  Abs (  1024,  -224)
+	 25: Rel (     0,   -59)  ->  Abs (  1024,  -283)
+	 26: Rel (  -404,  -234)  ->  Abs (   620,  -517)
+	 27: Rel (   -88,     0)  ->  Abs (   532,  -517)
+	 28: Rel (   -34,     0)  ->  Abs (   498,  -517)
+	 29: Rel (   -43,    37)  ->  Abs (   455,  -480)
+	 30: Rel (   506,   355)  ->  Abs (   961,  -125)
+
+	Glyph  95: off = 0x0000434A, len = 120
+	  numberOfContours:	2
+	  xMin:			25
+	  yMin:			969
+	  xMax:			502
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  20
+
+	  Length of Instructions:	46
+	00000: PUSHW[2]              9   -16 
+	00005: NPUSHB      (24):    11    14    72     7    20    13   106     0   122     0 
+	                           138     0     3    20     4     0     4    20     3   175 
+	                            10     1    10    15 
+	00031: MDAP[rd]   
+	00032: MDRP[nrp0,md,rd,1] 
+	00033: DELTAP1    
+	00034: SLOOP      
+	00035: IP         
+	00036: MDAP[rd]   
+	00037: MDAP[rd]   
+	00038: DELTAP1    
+	00039: SVTCA[y-axis] 
+	00040: MDAP[rd]   
+	00041: MDRP[nrp0,nmd,rd,2] 
+	00042: MDRP[nrp0,nmd,rd,0] 
+	00043: IUP[y]     
+	00044: IUP[x]     
+	00045: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:                      Y-Short         Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short         Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   350,  1257)  ->  Abs (   350,  1257)
+	  1: Rel (   -64,    51)  ->  Abs (   286,  1308)
+	  2: Rel (  -147,    15)  ->  Abs (   139,  1323)
+	  3: Rel (   -78,     8)  ->  Abs (    61,  1331)
+	  4: Rel (     0,    60)  ->  Abs (    61,  1391)
+	  5: Rel (     0,    31)  ->  Abs (    61,  1422)
+	  6: Rel (    45,    42)  ->  Abs (   106,  1464)
+	  7: Rel (    37,     0)  ->  Abs (   143,  1464)
+	  8: Rel (    93,     0)  ->  Abs (   236,  1464)
+	  9: Rel (   266,  -101)  ->  Abs (   502,  1363)
+	 10: Rel (     0,   -85)  ->  Abs (   502,  1278)
+	 11: Rel (     0,   -80)  ->  Abs (   502,  1198)
+	 12: Rel (  -321,  -229)  ->  Abs (   181,   969)
+	 13: Rel (   -75,     0)  ->  Abs (   106,   969)
+	 14: Rel (   -81,     0)  ->  Abs (    25,   969)
+	 15: Rel (     0,    65)  ->  Abs (    25,  1034)
+	 16: Rel (     0,    35)  ->  Abs (    25,  1069)
+	 17: Rel (    36,    35)  ->  Abs (    61,  1104)
+	 18: Rel (    41,    14)  ->  Abs (   102,  1118)
+	 19: Rel (   186,    68)  ->  Abs (   288,  1186)
+	 20: Rel (  -151,  -217)  ->  Abs (   137,   969)
+
+	Glyph  96: off = 0x000043C2, len = 204
+	  numberOfContours:	3
+	  xMin:			25
+	  yMin:			969
+	  xMax:			993
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  39
+	  2:  40
+
+	  Length of Instructions:	75
+	00000: PUSHW[2]             29   -16 
+	00005: PUSHB[4]             11    14    72     9 
+	00010: PUSHW[1]            -16 
+	00013: NPUSHB      (35):    11    14    72    33    27     7    40    13   106    20 
+	                           122    20   138    20     3   106     0   122     0   138 
+	                             0     3    40    24     4    40    15    24    20    30 
+	                            35     4     0    10    15 
+	00050: MDAP[rd]   
+	00051: MDRP[nrp0,md,rd,1] 
+	00052: IP         
+	00053: IP         
+	00054: MDRP[srp0,nmd,rd,0] 
+	00055: MDRP[nrp0,md,rd,1] 
+	00056: IP         
+	00057: IP         
+	00058: SRP1       
+	00059: IP         
+	00060: MDAP[rd]   
+	00061: MDAP[rd]   
+	00062: MDAP[rd]   
+	00063: DELTAP1    
+	00064: DELTAP1    
+	00065: SVTCA[y-axis] 
+	00066: MDAP[rd]   
+	00067: MDRP[nrp0,nmd,rd,2] 
+	00068: MDRP[nrp0,nmd,rd,0] 
+	00069: IP         
+	00070: IP         
+	00071: IUP[y]     
+	00072: IUP[x]     
+	00073: CALL       
+	00074: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:                      Y-Short         Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short         Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual               Y-Short         On
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:                      Y-Short         Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short         Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   350,  1257)  ->  Abs (   350,  1257)
+	  1: Rel (   -64,    51)  ->  Abs (   286,  1308)
+	  2: Rel (  -147,    15)  ->  Abs (   139,  1323)
+	  3: Rel (   -78,     8)  ->  Abs (    61,  1331)
+	  4: Rel (     0,    60)  ->  Abs (    61,  1391)
+	  5: Rel (     0,    31)  ->  Abs (    61,  1422)
+	  6: Rel (    45,    42)  ->  Abs (   106,  1464)
+	  7: Rel (    37,     0)  ->  Abs (   143,  1464)
+	  8: Rel (    93,     0)  ->  Abs (   236,  1464)
+	  9: Rel (   266,  -101)  ->  Abs (   502,  1363)
+	 10: Rel (     0,   -85)  ->  Abs (   502,  1278)
+	 11: Rel (     0,   -80)  ->  Abs (   502,  1198)
+	 12: Rel (  -321,  -229)  ->  Abs (   181,   969)
+	 13: Rel (   -75,     0)  ->  Abs (   106,   969)
+	 14: Rel (   -81,     0)  ->  Abs (    25,   969)
+	 15: Rel (     0,    65)  ->  Abs (    25,  1034)
+	 16: Rel (     0,    35)  ->  Abs (    25,  1069)
+	 17: Rel (    36,    35)  ->  Abs (    61,  1104)
+	 18: Rel (    41,    14)  ->  Abs (   102,  1118)
+	 19: Rel (   186,    68)  ->  Abs (   288,  1186)
+	 20: Rel (   554,    71)  ->  Abs (   842,  1257)
+	 21: Rel (   -65,    51)  ->  Abs (   777,  1308)
+	 22: Rel (  -146,    15)  ->  Abs (   631,  1323)
+	 23: Rel (   -78,     8)  ->  Abs (   553,  1331)
+	 24: Rel (     0,    60)  ->  Abs (   553,  1391)
+	 25: Rel (     0,    32)  ->  Abs (   553,  1423)
+	 26: Rel (    45,    41)  ->  Abs (   598,  1464)
+	 27: Rel (    37,     0)  ->  Abs (   635,  1464)
+	 28: Rel (    92,     0)  ->  Abs (   727,  1464)
+	 29: Rel (   266,  -101)  ->  Abs (   993,  1363)
+	 30: Rel (     0,   -85)  ->  Abs (   993,  1278)
+	 31: Rel (     0,   -80)  ->  Abs (   993,  1198)
+	 32: Rel (  -321,  -229)  ->  Abs (   672,   969)
+	 33: Rel (   -74,     0)  ->  Abs (   598,   969)
+	 34: Rel (   -82,     0)  ->  Abs (   516,   969)
+	 35: Rel (     0,    65)  ->  Abs (   516,  1034)
+	 36: Rel (     0,    35)  ->  Abs (   516,  1069)
+	 37: Rel (    37,    35)  ->  Abs (   553,  1104)
+	 38: Rel (    41,    14)  ->  Abs (   594,  1118)
+	 39: Rel (   185,    68)  ->  Abs (   779,  1186)
+	 40: Rel (  -173,  -217)  ->  Abs (   606,   969)
+
+	Glyph  97: off = 0x0000448E, len = 112
+	  numberOfContours:	2
+	  xMin:			23
+	  yMin:			969
+	  xMax:			500
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  20
+
+	  Length of Instructions:	39
+	00000: NPUSHB      (23):     9    16    11    14    72    13    20     7   101     0 
+	                           117     0   133     0     3    20     4     0     4    20 
+	                             3    15    10 
+	00025: MDAP[rd]   
+	00026: MDRP[nrp0,md,rd,1] 
+	00027: SLOOP      
+	00028: IP         
+	00029: MDAP[rd]   
+	00030: MDAP[rd]   
+	00031: DELTAP1    
+	00032: SVTCA[y-axis] 
+	00033: MDAP[rd]   
+	00034: MDRP[nrp0,nmd,rd,2] 
+	00035: MDRP[nrp0,nmd,rd,0] 
+	00036: IUP[y]     
+	00037: IUP[x]     
+	00038: CALL       
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short         Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual               Y-Short         Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:        XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   174,  1176)  ->  Abs (   174,  1176)
+	  1: Rel (    64,   -51)  ->  Abs (   238,  1125)
+	  2: Rel (   147,   -15)  ->  Abs (   385,  1110)
+	  3: Rel (    78,    -8)  ->  Abs (   463,  1102)
+	  4: Rel (     0,   -60)  ->  Abs (   463,  1042)
+	  5: Rel (     0,   -32)  ->  Abs (   463,  1010)
+	  6: Rel (   -45,   -41)  ->  Abs (   418,   969)
+	  7: Rel (   -37,     0)  ->  Abs (   381,   969)
+	  8: Rel (   -93,     0)  ->  Abs (   288,   969)
+	  9: Rel (  -265,   101)  ->  Abs (    23,  1070)
+	 10: Rel (     0,    85)  ->  Abs (    23,  1155)
+	 11: Rel (     0,    81)  ->  Abs (    23,  1236)
+	 12: Rel (   320,   228)  ->  Abs (   343,  1464)
+	 13: Rel (    75,     0)  ->  Abs (   418,  1464)
+	 14: Rel (    82,     0)  ->  Abs (   500,  1464)
+	 15: Rel (     0,   -65)  ->  Abs (   500,  1399)
+	 16: Rel (     0,   -35)  ->  Abs (   500,  1364)
+	 17: Rel (   -37,   -35)  ->  Abs (   463,  1329)
+	 18: Rel (   -41,   -14)  ->  Abs (   422,  1315)
+	 19: Rel (  -186,   -68)  ->  Abs (   236,  1247)
+	 20: Rel (    44,  -278)  ->  Abs (   280,   969)
+
+	Glyph  98: off = 0x000044FE, len = 200
+	  numberOfContours:	3
+	  xMin:			23
+	  yMin:			969
+	  xMax:			991
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  39
+	  2:  40
+
+	  Length of Instructions:	69
+	00000: NPUSHB      (42):    29    16    11    14    72     9    16    11    14    72 
+	                            33    27    13    40     7   101    20   117    20   133 
+	                            20     3   101     0   117     0   133     0     3    40 
+	                            24     4    40    30     4     0    15    10    24    20 
+	                            35    30 
+	00044: MDAP[rd]   
+	00045: MDRP[nrp0,md,rd,1] 
+	00046: IP         
+	00047: IP         
+	00048: MDRP[srp0,nmd,rd,0] 
+	00049: MDRP[nrp0,md,rd,1] 
+	00050: IP         
+	00051: IP         
+	00052: SRP1       
+	00053: IP         
+	00054: MDAP[rd]   
+	00055: MDAP[rd]   
+	00056: MDAP[rd]   
+	00057: DELTAP1    
+	00058: DELTAP1    
+	00059: SVTCA[y-axis] 
+	00060: MDAP[rd]   
+	00061: MDRP[nrp0,nmd,rd,2] 
+	00062: MDRP[nrp0,nmd,rd,0] 
+	00063: IP         
+	00064: IP         
+	00065: IUP[y]     
+	00066: IUP[x]     
+	00067: CALL       
+	00068: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short         Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual               Y-Short         Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short         On
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short         Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual               Y-Short         Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:                      Y-Short X-Short Off
+	 38:                      Y-Short X-Short On
+	 39:                      Y-Short X-Short Off
+	 40:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   666,  1176)  ->  Abs (   666,  1176)
+	  1: Rel (    64,   -51)  ->  Abs (   730,  1125)
+	  2: Rel (   147,   -15)  ->  Abs (   877,  1110)
+	  3: Rel (    77,    -8)  ->  Abs (   954,  1102)
+	  4: Rel (     0,   -60)  ->  Abs (   954,  1042)
+	  5: Rel (     0,   -31)  ->  Abs (   954,  1011)
+	  6: Rel (   -44,   -42)  ->  Abs (   910,   969)
+	  7: Rel (   -38,     0)  ->  Abs (   872,   969)
+	  8: Rel (   -92,     0)  ->  Abs (   780,   969)
+	  9: Rel (  -266,   101)  ->  Abs (   514,  1070)
+	 10: Rel (     0,    85)  ->  Abs (   514,  1155)
+	 11: Rel (     0,    81)  ->  Abs (   514,  1236)
+	 12: Rel (   321,   228)  ->  Abs (   835,  1464)
+	 13: Rel (    74,     0)  ->  Abs (   909,  1464)
+	 14: Rel (    82,     0)  ->  Abs (   991,  1464)
+	 15: Rel (     0,   -65)  ->  Abs (   991,  1399)
+	 16: Rel (     0,   -31)  ->  Abs (   991,  1368)
+	 17: Rel (   -32,   -37)  ->  Abs (   959,  1331)
+	 18: Rel (   -46,   -16)  ->  Abs (   913,  1315)
+	 19: Rel (  -185,   -68)  ->  Abs (   728,  1247)
+	 20: Rel (  -554,   -71)  ->  Abs (   174,  1176)
+	 21: Rel (    64,   -51)  ->  Abs (   238,  1125)
+	 22: Rel (   147,   -15)  ->  Abs (   385,  1110)
+	 23: Rel (    78,    -8)  ->  Abs (   463,  1102)
+	 24: Rel (     0,   -60)  ->  Abs (   463,  1042)
+	 25: Rel (     0,   -32)  ->  Abs (   463,  1010)
+	 26: Rel (   -45,   -41)  ->  Abs (   418,   969)
+	 27: Rel (   -37,     0)  ->  Abs (   381,   969)
+	 28: Rel (   -93,     0)  ->  Abs (   288,   969)
+	 29: Rel (  -265,   101)  ->  Abs (    23,  1070)
+	 30: Rel (     0,    85)  ->  Abs (    23,  1155)
+	 31: Rel (     0,    81)  ->  Abs (    23,  1236)
+	 32: Rel (   320,   228)  ->  Abs (   343,  1464)
+	 33: Rel (    75,     0)  ->  Abs (   418,  1464)
+	 34: Rel (    82,     0)  ->  Abs (   500,  1464)
+	 35: Rel (     0,   -65)  ->  Abs (   500,  1399)
+	 36: Rel (     0,   -35)  ->  Abs (   500,  1364)
+	 37: Rel (   -37,   -35)  ->  Abs (   463,  1329)
+	 38: Rel (   -41,   -14)  ->  Abs (   422,  1315)
+	 39: Rel (  -186,   -68)  ->  Abs (   236,  1247)
+	 40: Rel (   330,  -278)  ->  Abs (   566,   969)
+
+	Glyph  99: off = 0x000045C6, len = 184
+	  numberOfContours:	2
+	  xMin:			25
+	  yMin:			969
+	  xMax:			909
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  41
+	  1:  42
+
+	  Length of Instructions:	53
+	00000: NPUSHB      (35):     9     1    25     1     2    17    42     3   100    31 
+	                           116    31   132    31     3   107    10   123    10   139 
+	                            10     3    35    14    42     0    10    14    21    31 
+	                            35    42     7    26     5 
+	00037: MDAP[rd]   
+	00038: MDRP[nrp0,md,rd,1] 
+	00039: SLOOP      
+	00040: IP         
+	00041: MDAP[rd]   
+	00042: MDAP[rd]   
+	00043: MDAP[rd]   
+	00044: DELTAP1    
+	00045: DELTAP1    
+	00046: SVTCA[y-axis] 
+	00047: MDAP[rd]   
+	00048: MDRP[nrp0,nmd,rd,2] 
+	00049: MDRP[nrp0,nmd,rd,0] 
+	00050: IUP[y]     
+	00051: IUP[x]     
+	00052: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:              Rep-  1 Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:                      Y-Short         Off
+	 20:        XDual Rep-  1 Y-Short         On
+	 22:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:                      Y-Short X-Short Off
+	 29:                      Y-Short X-Short On
+	 30:                      Y-Short X-Short Off
+	 31:                      Y-Short X-Short On
+	 32:        XDual         Y-Short X-Short Off
+	 33:        XDual         Y-Short X-Short On
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:                      Y-Short X-Short Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short Off
+	 40:  YDual               Y-Short         Off
+	 41:  YDual XDual         Y-Short         On
+	 42:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   432,  1157)  ->  Abs (   432,  1157)
+	  1: Rel (   -56,   -56)  ->  Abs (   376,  1101)
+	  2: Rel (  -214,  -132)  ->  Abs (   162,   969)
+	  3: Rel (   -56,     0)  ->  Abs (   106,   969)
+	  4: Rel (   -81,     0)  ->  Abs (    25,   969)
+	  5: Rel (     0,    65)  ->  Abs (    25,  1034)
+	  6: Rel (     0,    35)  ->  Abs (    25,  1069)
+	  7: Rel (    36,    35)  ->  Abs (    61,  1104)
+	  8: Rel (    41,    14)  ->  Abs (   102,  1118)
+	  9: Rel (   186,    68)  ->  Abs (   288,  1186)
+	 10: Rel (    62,    71)  ->  Abs (   350,  1257)
+	 11: Rel (   -64,    51)  ->  Abs (   286,  1308)
+	 12: Rel (  -147,    15)  ->  Abs (   139,  1323)
+	 13: Rel (   -78,     8)  ->  Abs (    61,  1331)
+	 14: Rel (     0,    60)  ->  Abs (    61,  1391)
+	 15: Rel (     0,    31)  ->  Abs (    61,  1422)
+	 16: Rel (    45,    42)  ->  Abs (   106,  1464)
+	 17: Rel (    37,     0)  ->  Abs (   143,  1464)
+	 18: Rel (    93,     0)  ->  Abs (   236,  1464)
+	 19: Rel (   266,  -101)  ->  Abs (   502,  1363)
+	 20: Rel (     0,   -85)  ->  Abs (   502,  1278)
+	 21: Rel (     0,    -2)  ->  Abs (   502,  1276)
+	 22: Rel (    63,    61)  ->  Abs (   565,  1337)
+	 23: Rel (   207,   127)  ->  Abs (   772,  1464)
+	 24: Rel (    55,     0)  ->  Abs (   827,  1464)
+	 25: Rel (    82,     0)  ->  Abs (   909,  1464)
+	 26: Rel (     0,   -65)  ->  Abs (   909,  1399)
+	 27: Rel (     0,   -31)  ->  Abs (   909,  1368)
+	 28: Rel (   -32,   -37)  ->  Abs (   877,  1331)
+	 29: Rel (   -46,   -16)  ->  Abs (   831,  1315)
+	 30: Rel (  -185,   -68)  ->  Abs (   646,  1247)
+	 31: Rel (   -62,   -71)  ->  Abs (   584,  1176)
+	 32: Rel (    64,   -51)  ->  Abs (   648,  1125)
+	 33: Rel (   147,   -15)  ->  Abs (   795,  1110)
+	 34: Rel (    77,    -8)  ->  Abs (   872,  1102)
+	 35: Rel (     0,   -60)  ->  Abs (   872,  1042)
+	 36: Rel (     0,   -32)  ->  Abs (   872,  1010)
+	 37: Rel (   -45,   -41)  ->  Abs (   827,   969)
+	 38: Rel (   -36,     0)  ->  Abs (   791,   969)
+	 39: Rel (   -93,     0)  ->  Abs (   698,   969)
+	 40: Rel (  -266,   101)  ->  Abs (   432,  1070)
+	 41: Rel (     0,    85)  ->  Abs (   432,  1155)
+	 42: Rel (    73,  -186)  ->  Abs (   505,   969)
+
+	Glyph 100: off = 0x0000467E, len = 184
+	  numberOfContours:	2
+	  xMin:			37
+	  yMin:			969
+	  xMax:			971
+	  yMax:			1792
+
+	EndPoints
+	---------
+	  0:  34
+	  1:  35
+
+	  Length of Instructions:	69
+	00000: NPUSHB      (42):   133    31     1   140    24     1   133    16     1   133 
+	                            15     1    58     2    74     2     2    25     0   237 
+	                             3    14    25     3    18     6   235    35    11    35 
+	                            28     8    33   252     8    28    35     3    21     3 
+	                           252    14 
+	00044: MDAP[rd]   
+	00045: MIRP[nrp0,md,rd,1] 
+	00046: MDRP[srp0,nmd,rd,0] 
+	00047: SLOOP      
+	00048: IP         
+	00049: MIRP[nrp0,md,rd,1] 
+	00050: MDAP[rd]   
+	00051: MDAP[rd]   
+	00052: MDAP[rd]   
+	00053: SVTCA[y-axis] 
+	00054: MDAP[rd]   
+	00055: MDRP[nrp0,nmd,rd,2] 
+	00056: MIRP[nrp0,md,rd,1] 
+	00057: MDRP[srp0,nmd,rd,0] 
+	00058: SLOOP      
+	00059: IP         
+	00060: MIRP[nrp0,md,rd,1] 
+	00061: MDAP[rd]   
+	00062: IUP[y]     
+	00063: IUP[x]     
+	00064: DELTAP1    
+	00065: DELTAP1    
+	00066: DELTAP1    
+	00067: DELTAP1    
+	00068: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:                                      Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:                                      Off
+	 17:  YDual               Y-Short         Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:              Rep-  1 Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   750,  1651)  ->  Abs (   750,  1651)
+	  1: Rel (  -129,     0)  ->  Abs (   621,  1651)
+	  2: Rel (  -433,  -308)  ->  Abs (   188,  1343)
+	  3: Rel (     0,  -100)  ->  Abs (   188,  1243)
+	  4: Rel (     0,   -48)  ->  Abs (   188,  1195)
+	  5: Rel (    99,   -58)  ->  Abs (   287,  1137)
+	  6: Rel (    71,   -11)  ->  Abs (   358,  1126)
+	  7: Rel (    78,   -11)  ->  Abs (   436,  1115)
+	  8: Rel (     0,   -73)  ->  Abs (   436,  1042)
+	  9: Rel (     0,   -32)  ->  Abs (   436,  1010)
+	 10: Rel (   -45,   -41)  ->  Abs (   391,   969)
+	 11: Rel (   -37,     0)  ->  Abs (   354,   969)
+	 12: Rel (  -108,     0)  ->  Abs (   246,   969)
+	 13: Rel (  -209,   163)  ->  Abs (    37,  1132)
+	 14: Rel (     0,   117)  ->  Abs (    37,  1249)
+	 15: Rel (     0,    99)  ->  Abs (    37,  1348)
+	 16: Rel (   273,   264)  ->  Abs (   310,  1612)
+	 17: Rel (   344,   180)  ->  Abs (   654,  1792)
+	 18: Rel (   106,     0)  ->  Abs (   760,  1792)
+	 19: Rel (    95,     0)  ->  Abs (   855,  1792)
+	 20: Rel (   116,  -102)  ->  Abs (   971,  1690)
+	 21: Rel (     0,   -95)  ->  Abs (   971,  1595)
+	 22: Rel (     0,   -50)  ->  Abs (   971,  1545)
+	 23: Rel (   -46,  -149)  ->  Abs (   925,  1396)
+	 24: Rel (  -134,  -157)  ->  Abs (   791,  1239)
+	 25: Rel (   -62,     0)  ->  Abs (   729,  1239)
+	 26: Rel (   -27,     0)  ->  Abs (   702,  1239)
+	 27: Rel (   -45,    42)  ->  Abs (   657,  1281)
+	 28: Rel (     0,    30)  ->  Abs (   657,  1311)
+	 29: Rel (     0,    29)  ->  Abs (   657,  1340)
+	 30: Rel (    22,    47)  ->  Abs (   679,  1387)
+	 31: Rel (    38,    32)  ->  Abs (   717,  1419)
+	 32: Rel (   102,    89)  ->  Abs (   819,  1508)
+	 33: Rel (     0,    77)  ->  Abs (   819,  1585)
+	 34: Rel (     0,    66)  ->  Abs (   819,  1651)
+	 35: Rel (  -275,  -682)  ->  Abs (   544,   969)
+
+	Glyph 101: off = 0x00004736, len = 132
+	  numberOfContours:	3
+	  xMin:			37
+	  yMin:			969
+	  xMax:			598
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  22
+	  2:  23
+
+	  Length of Instructions:	51
+	00000: PUSHW[2]             14   -32 
+	00005: PUSHB[4]             15    18    72     7 
+	00010: PUSHW[1]            -64 
+	00013: NPUSHB      (19):    15    18    72    17   156     9    12   156    23     3 
+	                            23    23     6    15   140     0    20   140     6 
+	00034: MDAP[rd]   
+	00035: MIRP[nrp0,md,rd,1] 
+	00036: MDRP[srp0,nmd,rd,0] 
+	00037: MIRP[nrp0,md,rd,1] 
+	00038: SRP2       
+	00039: IP         
+	00040: MDAP[rd]   
+	00041: SVTCA[y-axis] 
+	00042: MDAP[rd]   
+	00043: MDRP[nrp0,nmd,rd,2] 
+	00044: MIRP[nrp0,md,rd,1] 
+	00045: MDRP[srp0,nmd,rd,0] 
+	00046: MIRP[nrp0,md,rd,1] 
+	00047: IUP[y]     
+	00048: IUP[x]     
+	00049: CALL       
+	00050: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:                                      On
+	 13:  YDual XDual                 X-Short Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:                      Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   598,  1286)  ->  Abs (   598,  1286)
+	  1: Rel (     0,  -102)  ->  Abs (   598,  1184)
+	  2: Rel (  -194,  -215)  ->  Abs (   404,   969)
+	  3: Rel (  -130,     0)  ->  Abs (   274,   969)
+	  4: Rel (  -103,     0)  ->  Abs (   171,   969)
+	  5: Rel (  -134,   121)  ->  Abs (    37,  1090)
+	  6: Rel (     0,    94)  ->  Abs (    37,  1184)
+	  7: Rel (     0,    93)  ->  Abs (    37,  1277)
+	  8: Rel (   241,   187)  ->  Abs (   278,  1464)
+	  9: Rel (   136,     0)  ->  Abs (   414,  1464)
+	 10: Rel (    84,     0)  ->  Abs (   498,  1464)
+	 11: Rel (   100,   -93)  ->  Abs (   598,  1371)
+	 12: Rel (  -319,  -263)  ->  Abs (   279,  1108)
+	 13: Rel (    50,     0)  ->  Abs (   329,  1108)
+	 14: Rel (   117,   134)  ->  Abs (   446,  1242)
+	 15: Rel (     0,    40)  ->  Abs (   446,  1282)
+	 16: Rel (     0,    47)  ->  Abs (   446,  1329)
+	 17: Rel (   -43,     0)  ->  Abs (   403,  1329)
+	 18: Rel (   -65,     0)  ->  Abs (   338,  1329)
+	 19: Rel (  -150,  -111)  ->  Abs (   188,  1218)
+	 20: Rel (     0,   -40)  ->  Abs (   188,  1178)
+	 21: Rel (     0,   -28)  ->  Abs (   188,  1150)
+	 22: Rel (    51,   -42)  ->  Abs (   239,  1108)
+	 23: Rel (   162,  -139)  ->  Abs (   401,   969)
+
+	Glyph 102: off = 0x000047BA, len = 286
+	  numberOfContours:	4
+	  xMin:			10
+	  yMin:			-606
+	  xMax:			864
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  37
+	  1:  47
+	  2:  48
+	  3:  49
+
+	  Length of Instructions:	137
+	00000: PUSHB[7]             15    35     1    80    34     1    22 
+	00008: PUSHW[1]            -40 
+	00011: NPUSHB      (18):    13    17    72    15    14   111    14     2    11     0 
+	                             9     1    15     3     1    14     5    48 
+	00031: PUSHW[1]            258 
+	00034: NPUSHB      (53):    13    64     9    17    72    13    11    17    33    17 
+	                            30    11     8     2   235    45    40   235     8    15 
+	                            24    19   234    49    30    28    48     0     2    13 
+	                            48     4    11     5   250    43    38   250    27    49 
+	                            11    17   250    33    64    51    11   245     2    50 
+	                            33   246     2 
+	00089: CALL       
+	00090: CALL       
+	00091: SVTCA[x-axis] 
+	00092: SMD        
+	00093: RTG        
+	00094: SRP0       
+	00095: FLIPON     
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: SRP0       
+	00098: MDRP[nrp0,nmd,rd,0] 
+	00099: MDRP[nrp0,nmd,rd,0] 
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: MDRP[srp0,nmd,rd,0] 
+	00102: MIRP[nrp0,md,rd,1] 
+	00103: SRP1       
+	00104: SLOOP      
+	00105: IP         
+	00106: MDAP[rd]   
+	00107: SVTCA[y-axis] 
+	00108: MIAP[rd+ci] 
+	00109: MDRP[nrp0,nmd,rd,2] 
+	00110: MIRP[srp0,md,rd,1] 
+	00111: MDRP[nrp0,nmd,rd,0] 
+	00112: MIAP[rd+ci] 
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: MDRP[srp0,nmd,rd,0] 
+	00115: MIRP[nrp0,md,rd,1] 
+	00116: SRP1       
+	00117: IP         
+	00118: SRP2       
+	00119: IP         
+	00120: IP         
+	00121: SRP1       
+	00122: SRP2       
+	00123: IP         
+	00124: CALL       
+	00125: MIAP[rd+ci] 
+	00126: IUP[y]     
+	00127: IUP[x]     
+	00128: SDS        
+	00129: SDB        
+	00130: DELTAP1    
+	00131: DELTAP1    
+	00132: SDB        
+	00133: DELTAP1    
+	00134: CALL       
+	00135: DELTAP1    
+	00136: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:              Rep-  1 Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:                      Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:        XDual                 X-Short On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:                      Y-Short X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:                              X-Short On
+	 49:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   494,   279)  ->  Abs (   494,   279)
+	  1: Rel (    -8,    -3)  ->  Abs (   486,   276)
+	  2: Rel (   -13,     0)  ->  Abs (   473,   276)
+	  3: Rel (  -124,     0)  ->  Abs (   349,   276)
+	  4: Rel (  -154,   124)  ->  Abs (   195,   400)
+	  5: Rel (     0,   102)  ->  Abs (   195,   502)
+	  6: Rel (     0,   131)  ->  Abs (   195,   633)
+	  7: Rel (   225,   192)  ->  Abs (   420,   825)
+	  8: Rel (   149,     0)  ->  Abs (   569,   825)
+	  9: Rel (   136,     0)  ->  Abs (   705,   825)
+	 10: Rel (   159,  -139)  ->  Abs (   864,   686)
+	 11: Rel (     0,  -123)  ->  Abs (   864,   563)
+	 12: Rel (     0,  -157)  ->  Abs (   864,   406)
+	 13: Rel (  -196,  -238)  ->  Abs (   668,   168)
+	 14: Rel (  -205,  -109)  ->  Abs (   463,    59)
+	 15: Rel (  -144,   -77)  ->  Abs (   319,   -18)
+	 16: Rel (  -122,   -99)  ->  Abs (   197,  -117)
+	 17: Rel (     0,   -55)  ->  Abs (   197,  -172)
+	 18: Rel (     0,  -123)  ->  Abs (   197,  -295)
+	 19: Rel (   219,     0)  ->  Abs (   416,  -295)
+	 20: Rel (    52,     0)  ->  Abs (   468,  -295)
+	 21: Rel (   111,    28)  ->  Abs (   579,  -267)
+	 22: Rel (    74,    49)  ->  Abs (   653,  -218)
+	 23: Rel (    54,    36)  ->  Abs (   707,  -182)
+	 24: Rel (    26,     0)  ->  Abs (   733,  -182)
+	 25: Rel (    34,     0)  ->  Abs (   767,  -182)
+	 26: Rel (    40,   -46)  ->  Abs (   807,  -228)
+	 27: Rel (     0,   -36)  ->  Abs (   807,  -264)
+	 28: Rel (     0,   -73)  ->  Abs (   807,  -337)
+	 29: Rel (  -234,  -124)  ->  Abs (   573,  -461)
+	 30: Rel (  -159,     0)  ->  Abs (   414,  -461)
+	 31: Rel (  -187,     0)  ->  Abs (   227,  -461)
+	 32: Rel (  -217,   158)  ->  Abs (    10,  -303)
+	 33: Rel (     0,   131)  ->  Abs (    10,  -172)
+	 34: Rel (     0,   108)  ->  Abs (    10,   -64)
+	 35: Rel (   148,   144)  ->  Abs (   158,    80)
+	 36: Rel (   198,   110)  ->  Abs (   356,   190)
+	 37: Rel (   109,    62)  ->  Abs (   465,   252)
+	 38: Rel (   209,   317)  ->  Abs (   674,   569)
+	 39: Rel (     0,    95)  ->  Abs (   674,   664)
+	 40: Rel (  -113,     0)  ->  Abs (   561,   664)
+	 41: Rel (   -71,     0)  ->  Abs (   490,   664)
+	 42: Rel (  -105,   -95)  ->  Abs (   385,   569)
+	 43: Rel (     0,   -47)  ->  Abs (   385,   522)
+	 44: Rel (     0,   -88)  ->  Abs (   385,   434)
+	 45: Rel (   119,     0)  ->  Abs (   504,   434)
+	 46: Rel (    66,     0)  ->  Abs (   570,   434)
+	 47: Rel (   104,    93)  ->  Abs (   674,   527)
+	 48: Rel (  -187,   573)  ->  Abs (   487,  1100)
+	 49: Rel (   369, -1706)  ->  Abs (   856,  -606)
+
+	Glyph 103: off = 0x000048D8, len = 58
+	  numberOfContours:	1
+	  xMin:			238
+	  yMin:			0
+	  xMax:			442
+	  yMax:			205
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	14
+	00000: PUSHB[6]              3   231     9     6   247     0 
+	00007: MDAP[rd]   
+	00008: MIRP[nrp0,md,rd,1] 
+	00009: SVTCA[y-axis] 
+	00010: MDAP[rd]   
+	00011: MIRP[nrp0,md,rd,1] 
+	00012: IUP[y]     
+	00013: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   238,    94)  ->  Abs (   238,    94)
+	  1: Rel (     0,    39)  ->  Abs (   238,   133)
+	  2: Rel (    67,    72)  ->  Abs (   305,   205)
+	  3: Rel (    39,     0)  ->  Abs (   344,   205)
+	  4: Rel (    45,     0)  ->  Abs (   389,   205)
+	  5: Rel (    53,   -54)  ->  Abs (   442,   151)
+	  6: Rel (     0,   -45)  ->  Abs (   442,   106)
+	  7: Rel (     0,   -41)  ->  Abs (   442,    65)
+	  8: Rel (   -64,   -65)  ->  Abs (   378,     0)
+	  9: Rel (   -40,     0)  ->  Abs (   338,     0)
+	 10: Rel (   -46,     0)  ->  Abs (   292,     0)
+	 11: Rel (   -54,    52)  ->  Abs (   238,    52)
+
+	Glyph 104: off = 0x00004912, len = 58
+	  numberOfContours:	1
+	  xMin:			238
+	  yMin:			0
+	  xMax:			442
+	  yMax:			205
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	14
+	00000: PUSHB[6]              3   231     9     6   247     0 
+	00007: MDAP[rd]   
+	00008: MIRP[nrp0,md,rd,1] 
+	00009: SVTCA[y-axis] 
+	00010: MDAP[rd]   
+	00011: MIRP[nrp0,md,rd,1] 
+	00012: IUP[y]     
+	00013: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   238,    94)  ->  Abs (   238,    94)
+	  1: Rel (     0,    39)  ->  Abs (   238,   133)
+	  2: Rel (    67,    72)  ->  Abs (   305,   205)
+	  3: Rel (    39,     0)  ->  Abs (   344,   205)
+	  4: Rel (    45,     0)  ->  Abs (   389,   205)
+	  5: Rel (    53,   -54)  ->  Abs (   442,   151)
+	  6: Rel (     0,   -45)  ->  Abs (   442,   106)
+	  7: Rel (     0,   -41)  ->  Abs (   442,    65)
+	  8: Rel (   -64,   -65)  ->  Abs (   378,     0)
+	  9: Rel (   -40,     0)  ->  Abs (   338,     0)
+	 10: Rel (   -46,     0)  ->  Abs (   292,     0)
+	 11: Rel (   -54,    52)  ->  Abs (   238,    52)
+
+	Glyph 105: off = 0x0000494C, len = 104
+	  numberOfContours:	2
+	  xMin:			74
+	  yMin:			0
+	  xMax:			606
+	  yMax:			205
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	28
+	00000: NPUSHB      (13):    21    15     3   231     9    18   247    64    12   128 
+	                             6   247     0 
+	00015: MDAP[rd]   
+	00016: MIRP[nrp0,md,rd,1] 
+	00017: SMD        
+	00018: MDRP[srp0,md,rd,0] 
+	00019: SMD        
+	00020: MIRP[nrp0,md,rd,1] 
+	00021: SVTCA[y-axis] 
+	00022: MDAP[rd]   
+	00023: MIRP[nrp0,md,rd,1] 
+	00024: IP         
+	00025: IP         
+	00026: IUP[y]     
+	00027: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    74,    94)  ->  Abs (    74,    94)
+	  1: Rel (     0,    39)  ->  Abs (    74,   133)
+	  2: Rel (    67,    72)  ->  Abs (   141,   205)
+	  3: Rel (    39,     0)  ->  Abs (   180,   205)
+	  4: Rel (    45,     0)  ->  Abs (   225,   205)
+	  5: Rel (    54,   -54)  ->  Abs (   279,   151)
+	  6: Rel (     0,   -45)  ->  Abs (   279,   106)
+	  7: Rel (     0,   -41)  ->  Abs (   279,    65)
+	  8: Rel (   -65,   -65)  ->  Abs (   214,     0)
+	  9: Rel (   -40,     0)  ->  Abs (   174,     0)
+	 10: Rel (   -46,     0)  ->  Abs (   128,     0)
+	 11: Rel (   -54,    52)  ->  Abs (    74,    52)
+	 12: Rel (   327,    42)  ->  Abs (   401,    94)
+	 13: Rel (     0,    39)  ->  Abs (   401,   133)
+	 14: Rel (    68,    72)  ->  Abs (   469,   205)
+	 15: Rel (    39,     0)  ->  Abs (   508,   205)
+	 16: Rel (    45,     0)  ->  Abs (   553,   205)
+	 17: Rel (    53,   -54)  ->  Abs (   606,   151)
+	 18: Rel (     0,   -45)  ->  Abs (   606,   106)
+	 19: Rel (     0,   -41)  ->  Abs (   606,    65)
+	 20: Rel (   -64,   -65)  ->  Abs (   542,     0)
+	 21: Rel (   -40,     0)  ->  Abs (   502,     0)
+	 22: Rel (   -46,     0)  ->  Abs (   456,     0)
+	 23: Rel (   -55,    52)  ->  Abs (   401,    52)
+
+	Glyph 106: off = 0x000049B4, len = 158
+	  numberOfContours:	3
+	  xMin:			33
+	  yMin:			0
+	  xMax:			647
+	  yMax:			465
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+	  2:  35
+
+	  Length of Instructions:	50
+	00000: NPUSHB      (29):     3   231   159     9   175     9     2    48     9    64 
+	                             9     2     9    33    27    15   231    21     6   247 
+	                             0     0    12    30   247    24    18   247    12 
+	00031: MDAP[rd]   
+	00032: MIRP[nrp0,md,rd,1] 
+	00033: MDRP[srp0,nmd,rd,0] 
+	00034: MIRP[nrp0,md,rd,1] 
+	00035: SRP2       
+	00036: IP         
+	00037: MDAP[rd]   
+	00038: MIRP[nrp0,md,rd,1] 
+	00039: SVTCA[y-axis] 
+	00040: MDAP[rd]   
+	00041: MIRP[nrp0,md,rd,1] 
+	00042: IP         
+	00043: IP         
+	00044: MDAP[rd]   
+	00045: DELTAP1    
+	00046: DELTAP1    
+	00047: MIRP[nrp0,md,rd,1] 
+	00048: IUP[y]     
+	00049: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual               Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   260,   354)  ->  Abs (   260,   354)
+	  1: Rel (     0,    39)  ->  Abs (   260,   393)
+	  2: Rel (    68,    72)  ->  Abs (   328,   465)
+	  3: Rel (    39,     0)  ->  Abs (   367,   465)
+	  4: Rel (    44,     0)  ->  Abs (   411,   465)
+	  5: Rel (    54,   -54)  ->  Abs (   465,   411)
+	  6: Rel (     0,   -44)  ->  Abs (   465,   367)
+	  7: Rel (     0,   -41)  ->  Abs (   465,   326)
+	  8: Rel (   -65,   -66)  ->  Abs (   400,   260)
+	  9: Rel (   -40,     0)  ->  Abs (   360,   260)
+	 10: Rel (   -46,     0)  ->  Abs (   314,   260)
+	 11: Rel (   -54,    52)  ->  Abs (   260,   312)
+	 12: Rel (  -227,  -218)  ->  Abs (    33,    94)
+	 13: Rel (     0,    39)  ->  Abs (    33,   133)
+	 14: Rel (    67,    72)  ->  Abs (   100,   205)
+	 15: Rel (    39,     0)  ->  Abs (   139,   205)
+	 16: Rel (    45,     0)  ->  Abs (   184,   205)
+	 17: Rel (    54,   -54)  ->  Abs (   238,   151)
+	 18: Rel (     0,   -45)  ->  Abs (   238,   106)
+	 19: Rel (     0,   -41)  ->  Abs (   238,    65)
+	 20: Rel (   -65,   -65)  ->  Abs (   173,     0)
+	 21: Rel (   -40,     0)  ->  Abs (   133,     0)
+	 22: Rel (   -46,     0)  ->  Abs (    87,     0)
+	 23: Rel (   -54,    52)  ->  Abs (    33,    52)
+	 24: Rel (   409,    42)  ->  Abs (   442,    94)
+	 25: Rel (     0,    39)  ->  Abs (   442,   133)
+	 26: Rel (    68,    72)  ->  Abs (   510,   205)
+	 27: Rel (    39,     0)  ->  Abs (   549,   205)
+	 28: Rel (    45,     0)  ->  Abs (   594,   205)
+	 29: Rel (    53,   -54)  ->  Abs (   647,   151)
+	 30: Rel (     0,   -45)  ->  Abs (   647,   106)
+	 31: Rel (     0,   -41)  ->  Abs (   647,    65)
+	 32: Rel (   -64,   -65)  ->  Abs (   583,     0)
+	 33: Rel (   -40,     0)  ->  Abs (   543,     0)
+	 34: Rel (   -46,     0)  ->  Abs (   497,     0)
+	 35: Rel (   -55,    52)  ->  Abs (   442,    52)
+
+	Glyph 107: off = 0x00004A52, len = 864
+	  numberOfContours:	18
+	  xMin:			119
+	  yMin:			-82
+	  xMax:			1106
+	  yMax:			1309
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+	  2:  35
+	  3:  47
+	  4:  59
+	  5:  71
+	  6:  83
+	  7:  95
+	  8:  107
+	  9:  119
+	 10:  131
+	 11:  143
+	 12:  155
+	 13:  167
+	 14:  179
+	 15:  191
+	 16:  192
+	 17:  193
+
+	  Length of Instructions:	329
+	00000: NPUSHW      (17):    30   257    24    54   257    48    78   257    72    90 
+	                           257    84   114   257   108   138   257 
+	00036: PUSHB[5]            240   132     1   132   162 
+	00042: NPUSHW      (10):   257   156    18   257    12    42   257    36    66   257 
+	00064: PUSHB[5]            240    60     1    60   102 
+	00070: PUSHW[4]            257    96   126   257 
+	00079: PUSHB[5]             63   120     1   120   150 
+	00085: PUSHW[4]            257   144   174   257 
+	00094: PUSHB[3]            168   192     6 
+	00098: PUSHW[1]            257 
+	00101: NPUSHB      (17):    12    24    36    48    60    72    84    96   108   120 
+	                           132   144   156   168    14     0   186 
+	00120: PUSHW[1]            257 
+	00123: PUSHB[5]            193   180   193   192   117 
+	00129: PUSHW[4]            256   111   141   256 
+	00138: PUSHB[5]            255   135     1   135   165 
+	00144: NPUSHW      (28):   256   159   189   256   183   177   256   171   153   256 
+	                           147   129   256   123    81   256    75    57   256    51 
+	                            33   256    27     9   256     3    21   256 
+	00202: PUSHB[5]            255    15     1    15    45 
+	00208: PUSHW[7]            256    39    69   256    63    93   256 
+	00223: NPUSHB      (19):     3    15    27    39    51    63    75   111   123   135 
+	                           147   159   171   183   192   193    16    87   105 
+	00244: PUSHW[2]            256    99 
+	00249: MDAP[rd]   
+	00250: MIRP[nrp0,md,rd,1] 
+	00251: MDRP[srp0,nmd,rd,0] 
+	00252: SLOOP      
+	00253: IP         
+	00254: MIRP[nrp0,md,rd,1] 
+	00255: MDAP[rd]   
+	00256: MIRP[nrp0,md,rd,1] 
+	00257: MDAP[rd]   
+	00258: MIRP[nrp0,md,rd,1] 
+	00259: MDAP[rd]   
+	00260: DELTAP1    
+	00261: MIRP[nrp0,md,rd,1] 
+	00262: MDAP[rd]   
+	00263: MIRP[nrp0,md,rd,1] 
+	00264: MDAP[rd]   
+	00265: MIRP[nrp0,md,rd,1] 
+	00266: MDAP[rd]   
+	00267: MIRP[nrp0,md,rd,1] 
+	00268: MDAP[rd]   
+	00269: MIRP[nrp0,md,rd,1] 
+	00270: MDAP[rd]   
+	00271: MIRP[nrp0,md,rd,1] 
+	00272: MDAP[rd]   
+	00273: MIRP[nrp0,md,rd,1] 
+	00274: MDAP[rd]   
+	00275: MIRP[nrp0,md,rd,1] 
+	00276: MDAP[rd]   
+	00277: MIRP[nrp0,md,rd,1] 
+	00278: MDAP[rd]   
+	00279: MIRP[nrp0,md,rd,1] 
+	00280: MDAP[rd]   
+	00281: DELTAP1    
+	00282: MIRP[nrp0,md,rd,1] 
+	00283: MDAP[rd]   
+	00284: MIRP[nrp0,md,rd,1] 
+	00285: MDAP[rd]   
+	00286: MDAP[rd]   
+	00287: SVTCA[y-axis] 
+	00288: MDAP[rd]   
+	00289: MDRP[nrp0,nmd,rd,2] 
+	00290: MIRP[nrp0,md,rd,1] 
+	00291: MDRP[srp0,nmd,rd,0] 
+	00292: SLOOP      
+	00293: IP         
+	00294: MIRP[srp0,md,rd,1] 
+	00295: MDRP[nrp0,nmd,rd,2] 
+	00296: MDAP[rd]   
+	00297: MIRP[nrp0,md,rd,1] 
+	00298: MDAP[rd]   
+	00299: MIRP[nrp0,md,rd,1] 
+	00300: MDAP[rd]   
+	00301: DELTAP1    
+	00302: MIRP[nrp0,md,rd,1] 
+	00303: MDAP[rd]   
+	00304: MIRP[nrp0,md,rd,1] 
+	00305: MDAP[rd]   
+	00306: DELTAP1    
+	00307: MIRP[nrp0,md,rd,1] 
+	00308: MDAP[rd]   
+	00309: MIRP[nrp0,md,rd,1] 
+	00310: MDAP[rd]   
+	00311: MIRP[nrp0,md,rd,1] 
+	00312: MDAP[rd]   
+	00313: MIRP[nrp0,md,rd,1] 
+	00314: MDAP[rd]   
+	00315: DELTAP1    
+	00316: MIRP[nrp0,md,rd,1] 
+	00317: MDAP[rd]   
+	00318: MIRP[nrp0,md,rd,1] 
+	00319: MDAP[rd]   
+	00320: MIRP[nrp0,md,rd,1] 
+	00321: MDAP[rd]   
+	00322: MIRP[nrp0,md,rd,1] 
+	00323: MDAP[rd]   
+	00324: MIRP[nrp0,md,rd,1] 
+	00325: MDAP[rd]   
+	00326: MIRP[nrp0,md,rd,1] 
+	00327: IUP[y]     
+	00328: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short         On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:        XDual         Y-Short X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:                      Y-Short X-Short Off
+	 36:                      Y-Short         On
+	 37:  YDual                       X-Short Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:        XDual         Y-Short X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         Off
+	 47:                      Y-Short X-Short Off
+	 48:                      Y-Short         On
+	 49:  YDual                       X-Short Off
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         Off
+	 53:  YDual XDual         Y-Short X-Short Off
+	 54:  YDual XDual                 X-Short On
+	 55:  YDual XDual                 X-Short Off
+	 56:        XDual         Y-Short X-Short Off
+	 57:        XDual         Y-Short         On
+	 58:        XDual         Y-Short         Off
+	 59:                      Y-Short X-Short Off
+	 60:                      Y-Short         On
+	 61:  YDual                       X-Short Off
+	 62:  YDual               Y-Short X-Short Off
+	 63:  YDual XDual         Y-Short         On
+	 64:  YDual XDual         Y-Short         Off
+	 65:  YDual XDual         Y-Short X-Short Off
+	 66:  YDual XDual                 X-Short On
+	 67:  YDual XDual                 X-Short Off
+	 68:        XDual         Y-Short X-Short Off
+	 69:        XDual         Y-Short         On
+	 70:        XDual         Y-Short         Off
+	 71:                      Y-Short X-Short Off
+	 72:                      Y-Short         On
+	 73:  YDual                       X-Short Off
+	 74:  YDual               Y-Short X-Short Off
+	 75:  YDual XDual         Y-Short         On
+	 76:  YDual XDual         Y-Short         Off
+	 77:  YDual XDual         Y-Short X-Short Off
+	 78:  YDual XDual                 X-Short On
+	 79:  YDual XDual                 X-Short Off
+	 80:        XDual         Y-Short X-Short Off
+	 81:        XDual         Y-Short         On
+	 82:        XDual         Y-Short         Off
+	 83:                      Y-Short X-Short Off
+	 84:        XDual         Y-Short X-Short On
+	 85:  YDual                       X-Short Off
+	 86:  YDual               Y-Short X-Short Off
+	 87:  YDual XDual         Y-Short         On
+	 88:  YDual XDual         Y-Short         Off
+	 89:  YDual XDual         Y-Short X-Short Off
+	 90:  YDual XDual                 X-Short On
+	 91:  YDual XDual                 X-Short Off
+	 92:        XDual         Y-Short X-Short Off
+	 93:        XDual         Y-Short         On
+	 94:        XDual         Y-Short         Off
+	 95:                      Y-Short X-Short Off
+	 96:  YDual                               On
+	 97:  YDual                       X-Short Off
+	 98:  YDual               Y-Short X-Short Off
+	 99:  YDual XDual         Y-Short         On
+	100:  YDual XDual         Y-Short         Off
+	101:  YDual XDual         Y-Short X-Short Off
+	102:  YDual XDual                 X-Short On
+	103:  YDual XDual                 X-Short Off
+	104:        XDual         Y-Short X-Short Off
+	105:        XDual         Y-Short         On
+	106:        XDual         Y-Short         Off
+	107:                      Y-Short X-Short Off
+	108:                      Y-Short         On
+	109:  YDual                       X-Short Off
+	110:  YDual               Y-Short X-Short Off
+	111:  YDual XDual         Y-Short         On
+	112:  YDual XDual         Y-Short         Off
+	113:  YDual XDual         Y-Short X-Short Off
+	114:  YDual XDual                 X-Short On
+	115:  YDual XDual                 X-Short Off
+	116:        XDual         Y-Short X-Short Off
+	117:        XDual         Y-Short         On
+	118:        XDual         Y-Short         Off
+	119:                      Y-Short X-Short Off
+	120:                      Y-Short         On
+	121:  YDual                       X-Short Off
+	122:  YDual               Y-Short X-Short Off
+	123:  YDual XDual         Y-Short         On
+	124:  YDual XDual         Y-Short         Off
+	125:  YDual XDual         Y-Short X-Short Off
+	126:  YDual XDual                 X-Short On
+	127:  YDual XDual                 X-Short Off
+	128:        XDual         Y-Short X-Short Off
+	129:        XDual         Y-Short         On
+	130:        XDual         Y-Short         Off
+	131:                      Y-Short X-Short Off
+	132:                      Y-Short         On
+	133:  YDual                       X-Short Off
+	134:  YDual               Y-Short X-Short Off
+	135:  YDual XDual         Y-Short         On
+	136:  YDual XDual         Y-Short         Off
+	137:  YDual XDual         Y-Short X-Short Off
+	138:  YDual XDual                 X-Short On
+	139:  YDual XDual                 X-Short Off
+	140:        XDual         Y-Short X-Short Off
+	141:        XDual         Y-Short         On
+	142:        XDual         Y-Short         Off
+	143:                      Y-Short X-Short Off
+	144:                      Y-Short         On
+	145:  YDual                       X-Short Off
+	146:  YDual               Y-Short X-Short Off
+	147:  YDual XDual         Y-Short         On
+	148:  YDual XDual         Y-Short         Off
+	149:  YDual XDual         Y-Short X-Short Off
+	150:  YDual XDual                 X-Short On
+	151:  YDual XDual                 X-Short Off
+	152:        XDual         Y-Short X-Short Off
+	153:        XDual         Y-Short         On
+	154:        XDual         Y-Short         Off
+	155:                      Y-Short X-Short Off
+	156:                      Y-Short         On
+	157:  YDual                       X-Short Off
+	158:  YDual               Y-Short X-Short Off
+	159:  YDual XDual         Y-Short         On
+	160:  YDual XDual         Y-Short         Off
+	161:  YDual XDual         Y-Short X-Short Off
+	162:  YDual XDual                 X-Short On
+	163:  YDual XDual                 X-Short Off
+	164:        XDual         Y-Short X-Short Off
+	165:        XDual         Y-Short         On
+	166:        XDual         Y-Short         Off
+	167:                      Y-Short X-Short Off
+	168:                      Y-Short         On
+	169:  YDual                       X-Short Off
+	170:  YDual               Y-Short X-Short Off
+	171:  YDual XDual         Y-Short         On
+	172:  YDual XDual         Y-Short         Off
+	173:  YDual XDual         Y-Short X-Short Off
+	174:  YDual XDual                 X-Short On
+	175:  YDual XDual                 X-Short Off
+	176:        XDual         Y-Short X-Short Off
+	177:        XDual         Y-Short         On
+	178:        XDual         Y-Short         Off
+	179:                      Y-Short X-Short Off
+	180:        XDual         Y-Short X-Short On
+	181:  YDual                       X-Short Off
+	182:  YDual               Y-Short X-Short Off
+	183:  YDual XDual         Y-Short         On
+	184:  YDual XDual         Y-Short         Off
+	185:  YDual XDual         Y-Short X-Short Off
+	186:  YDual XDual                 X-Short On
+	187:  YDual XDual                 X-Short Off
+	188:        XDual         Y-Short X-Short Off
+	189:        XDual         Y-Short         On
+	190:        XDual         Y-Short         Off
+	191:                      Y-Short X-Short Off
+	192:                              X-Short On
+	193:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   614,  1028)  ->  Abs (   614,  1028)
+	  1: Rel (   -12,     0)  ->  Abs (   602,  1028)
+	  2: Rel (   -18,    19)  ->  Abs (   584,  1047)
+	  3: Rel (     0,    12)  ->  Abs (   584,  1059)
+	  4: Rel (     0,    12)  ->  Abs (   584,  1071)
+	  5: Rel (    18,    19)  ->  Abs (   602,  1090)
+	  6: Rel (    12,     0)  ->  Abs (   614,  1090)
+	  7: Rel (    13,     0)  ->  Abs (   627,  1090)
+	  8: Rel (    18,   -19)  ->  Abs (   645,  1071)
+	  9: Rel (     0,   -12)  ->  Abs (   645,  1059)
+	 10: Rel (     0,   -12)  ->  Abs (   645,  1047)
+	 11: Rel (   -18,   -19)  ->  Abs (   627,  1028)
+	 12: Rel (  -197,   -41)  ->  Abs (   430,   987)
+	 13: Rel (   -12,     0)  ->  Abs (   418,   987)
+	 14: Rel (   -19,    19)  ->  Abs (   399,  1006)
+	 15: Rel (     0,    12)  ->  Abs (   399,  1018)
+	 16: Rel (     0,    12)  ->  Abs (   399,  1030)
+	 17: Rel (    19,    19)  ->  Abs (   418,  1049)
+	 18: Rel (    12,     0)  ->  Abs (   430,  1049)
+	 19: Rel (    12,     0)  ->  Abs (   442,  1049)
+	 20: Rel (    19,   -19)  ->  Abs (   461,  1030)
+	 21: Rel (     0,   -12)  ->  Abs (   461,  1018)
+	 22: Rel (     0,   -12)  ->  Abs (   461,  1006)
+	 23: Rel (   -19,   -19)  ->  Abs (   442,   987)
+	 24: Rel (   363,    -4)  ->  Abs (   805,   983)
+	 25: Rel (   -12,     0)  ->  Abs (   793,   983)
+	 26: Rel (   -19,    19)  ->  Abs (   774,  1002)
+	 27: Rel (     0,    12)  ->  Abs (   774,  1014)
+	 28: Rel (     0,    12)  ->  Abs (   774,  1026)
+	 29: Rel (    19,    18)  ->  Abs (   793,  1044)
+	 30: Rel (    12,     0)  ->  Abs (   805,  1044)
+	 31: Rel (    12,     0)  ->  Abs (   817,  1044)
+	 32: Rel (    19,   -18)  ->  Abs (   836,  1026)
+	 33: Rel (     0,   -12)  ->  Abs (   836,  1014)
+	 34: Rel (     0,   -13)  ->  Abs (   836,  1001)
+	 35: Rel (   -19,   -18)  ->  Abs (   817,   983)
+	 36: Rel (  -528,   -96)  ->  Abs (   289,   887)
+	 37: Rel (   -12,     0)  ->  Abs (   277,   887)
+	 38: Rel (   -19,    18)  ->  Abs (   258,   905)
+	 39: Rel (     0,    13)  ->  Abs (   258,   918)
+	 40: Rel (     0,    12)  ->  Abs (   258,   930)
+	 41: Rel (    18,    18)  ->  Abs (   276,   948)
+	 42: Rel (    13,     0)  ->  Abs (   289,   948)
+	 43: Rel (    12,     0)  ->  Abs (   301,   948)
+	 44: Rel (    18,   -18)  ->  Abs (   319,   930)
+	 45: Rel (     0,   -12)  ->  Abs (   319,   918)
+	 46: Rel (     0,   -13)  ->  Abs (   319,   905)
+	 47: Rel (   -18,   -18)  ->  Abs (   301,   887)
+	 48: Rel (   660,   -17)  ->  Abs (   961,   870)
+	 49: Rel (   -13,     0)  ->  Abs (   948,   870)
+	 50: Rel (   -18,    19)  ->  Abs (   930,   889)
+	 51: Rel (     0,    12)  ->  Abs (   930,   901)
+	 52: Rel (     0,    12)  ->  Abs (   930,   913)
+	 53: Rel (    18,    19)  ->  Abs (   948,   932)
+	 54: Rel (    13,     0)  ->  Abs (   961,   932)
+	 55: Rel (    12,     0)  ->  Abs (   973,   932)
+	 56: Rel (    18,   -19)  ->  Abs (   991,   913)
+	 57: Rel (     0,   -12)  ->  Abs (   991,   901)
+	 58: Rel (     0,   -12)  ->  Abs (   991,   889)
+	 59: Rel (   -18,   -19)  ->  Abs (   973,   870)
+	 60: Rel (  -785,  -129)  ->  Abs (   188,   741)
+	 61: Rel (   -12,     0)  ->  Abs (   176,   741)
+	 62: Rel (   -18,    19)  ->  Abs (   158,   760)
+	 63: Rel (     0,    12)  ->  Abs (   158,   772)
+	 64: Rel (     0,    12)  ->  Abs (   158,   784)
+	 65: Rel (    18,    19)  ->  Abs (   176,   803)
+	 66: Rel (    12,     0)  ->  Abs (   188,   803)
+	 67: Rel (    13,     0)  ->  Abs (   201,   803)
+	 68: Rel (    18,   -19)  ->  Abs (   219,   784)
+	 69: Rel (     0,   -12)  ->  Abs (   219,   772)
+	 70: Rel (     0,   -12)  ->  Abs (   219,   760)
+	 71: Rel (   -18,   -19)  ->  Abs (   201,   741)
+	 72: Rel (   850,   -20)  ->  Abs (  1051,   721)
+	 73: Rel (   -13,     0)  ->  Abs (  1038,   721)
+	 74: Rel (   -18,    18)  ->  Abs (  1020,   739)
+	 75: Rel (     0,    13)  ->  Abs (  1020,   752)
+	 76: Rel (     0,    12)  ->  Abs (  1020,   764)
+	 77: Rel (    18,    18)  ->  Abs (  1038,   782)
+	 78: Rel (    13,     0)  ->  Abs (  1051,   782)
+	 79: Rel (    12,     0)  ->  Abs (  1063,   782)
+	 80: Rel (    18,   -18)  ->  Abs (  1081,   764)
+	 81: Rel (     0,   -12)  ->  Abs (  1081,   752)
+	 82: Rel (     0,   -13)  ->  Abs (  1081,   739)
+	 83: Rel (   -18,   -18)  ->  Abs (  1063,   721)
+	 84: Rel (    12,  -158)  ->  Abs (  1075,   563)
+	 85: Rel (   -12,     0)  ->  Abs (  1063,   563)
+	 86: Rel (   -19,    19)  ->  Abs (  1044,   582)
+	 87: Rel (     0,    12)  ->  Abs (  1044,   594)
+	 88: Rel (     0,    12)  ->  Abs (  1044,   606)
+	 89: Rel (    19,    19)  ->  Abs (  1063,   625)
+	 90: Rel (    12,     0)  ->  Abs (  1075,   625)
+	 91: Rel (    12,     0)  ->  Abs (  1087,   625)
+	 92: Rel (    19,   -19)  ->  Abs (  1106,   606)
+	 93: Rel (     0,   -12)  ->  Abs (  1106,   594)
+	 94: Rel (     0,   -12)  ->  Abs (  1106,   582)
+	 95: Rel (   -19,   -19)  ->  Abs (  1087,   563)
+	 96: Rel (  -937,     0)  ->  Abs (   150,   563)
+	 97: Rel (   -13,     0)  ->  Abs (   137,   563)
+	 98: Rel (   -18,    19)  ->  Abs (   119,   582)
+	 99: Rel (     0,    12)  ->  Abs (   119,   594)
+	100: Rel (     0,    12)  ->  Abs (   119,   606)
+	101: Rel (    18,    19)  ->  Abs (   137,   625)
+	102: Rel (    13,     0)  ->  Abs (   150,   625)
+	103: Rel (    12,     0)  ->  Abs (   162,   625)
+	104: Rel (    18,   -19)  ->  Abs (   180,   606)
+	105: Rel (     0,   -12)  ->  Abs (   180,   594)
+	106: Rel (     0,   -12)  ->  Abs (   180,   582)
+	107: Rel (   -18,   -19)  ->  Abs (   162,   563)
+	108: Rel (   878,  -180)  ->  Abs (  1040,   383)
+	109: Rel (   -12,     0)  ->  Abs (  1028,   383)
+	110: Rel (   -18,    18)  ->  Abs (  1010,   401)
+	111: Rel (     0,    13)  ->  Abs (  1010,   414)
+	112: Rel (     0,    12)  ->  Abs (  1010,   426)
+	113: Rel (    18,    18)  ->  Abs (  1028,   444)
+	114: Rel (    12,     0)  ->  Abs (  1040,   444)
+	115: Rel (    13,     0)  ->  Abs (  1053,   444)
+	116: Rel (    18,   -18)  ->  Abs (  1071,   426)
+	117: Rel (     0,   -12)  ->  Abs (  1071,   414)
+	118: Rel (     0,   -13)  ->  Abs (  1071,   401)
+	119: Rel (   -18,   -18)  ->  Abs (  1053,   383)
+	120: Rel (  -856,   -16)  ->  Abs (   197,   367)
+	121: Rel (   -13,     0)  ->  Abs (   184,   367)
+	122: Rel (   -18,    18)  ->  Abs (   166,   385)
+	123: Rel (     0,    12)  ->  Abs (   166,   397)
+	124: Rel (     0,    13)  ->  Abs (   166,   410)
+	125: Rel (    18,    18)  ->  Abs (   184,   428)
+	126: Rel (    13,     0)  ->  Abs (   197,   428)
+	127: Rel (    12,     0)  ->  Abs (   209,   428)
+	128: Rel (    18,   -18)  ->  Abs (   227,   410)
+	129: Rel (     0,   -13)  ->  Abs (   227,   397)
+	130: Rel (     0,   -12)  ->  Abs (   227,   385)
+	131: Rel (   -18,   -18)  ->  Abs (   209,   367)
+	132: Rel (   733,  -129)  ->  Abs (   942,   238)
+	133: Rel (   -12,     0)  ->  Abs (   930,   238)
+	134: Rel (   -19,    18)  ->  Abs (   911,   256)
+	135: Rel (     0,    12)  ->  Abs (   911,   268)
+	136: Rel (     0,    13)  ->  Abs (   911,   281)
+	137: Rel (    19,    18)  ->  Abs (   930,   299)
+	138: Rel (    12,     0)  ->  Abs (   942,   299)
+	139: Rel (    12,     0)  ->  Abs (   954,   299)
+	140: Rel (    19,   -18)  ->  Abs (   973,   281)
+	141: Rel (     0,   -13)  ->  Abs (   973,   268)
+	142: Rel (     0,   -12)  ->  Abs (   973,   256)
+	143: Rel (   -19,   -18)  ->  Abs (   954,   238)
+	144: Rel (  -649,   -19)  ->  Abs (   305,   219)
+	145: Rel (   -12,     0)  ->  Abs (   293,   219)
+	146: Rel (   -19,    19)  ->  Abs (   274,   238)
+	147: Rel (     0,    12)  ->  Abs (   274,   250)
+	148: Rel (     0,    12)  ->  Abs (   274,   262)
+	149: Rel (    19,    19)  ->  Abs (   293,   281)
+	150: Rel (    12,     0)  ->  Abs (   305,   281)
+	151: Rel (    12,     0)  ->  Abs (   317,   281)
+	152: Rel (    19,   -19)  ->  Abs (   336,   262)
+	153: Rel (     0,   -12)  ->  Abs (   336,   250)
+	154: Rel (     0,   -12)  ->  Abs (   336,   238)
+	155: Rel (   -19,   -19)  ->  Abs (   317,   219)
+	156: Rel (   482,   -82)  ->  Abs (   799,   137)
+	157: Rel (   -12,     0)  ->  Abs (   787,   137)
+	158: Rel (   -19,    19)  ->  Abs (   768,   156)
+	159: Rel (     0,    12)  ->  Abs (   768,   168)
+	160: Rel (     0,    12)  ->  Abs (   768,   180)
+	161: Rel (    18,    19)  ->  Abs (   786,   199)
+	162: Rel (    13,     0)  ->  Abs (   799,   199)
+	163: Rel (    12,     0)  ->  Abs (   811,   199)
+	164: Rel (    18,   -19)  ->  Abs (   829,   180)
+	165: Rel (     0,   -12)  ->  Abs (   829,   168)
+	166: Rel (     0,   -12)  ->  Abs (   829,   156)
+	167: Rel (   -18,   -19)  ->  Abs (   811,   137)
+	168: Rel (  -360,    -8)  ->  Abs (   451,   129)
+	169: Rel (   -13,     0)  ->  Abs (   438,   129)
+	170: Rel (   -18,    19)  ->  Abs (   420,   148)
+	171: Rel (     0,    12)  ->  Abs (   420,   160)
+	172: Rel (     0,    12)  ->  Abs (   420,   172)
+	173: Rel (    18,    18)  ->  Abs (   438,   190)
+	174: Rel (    13,     0)  ->  Abs (   451,   190)
+	175: Rel (    12,     0)  ->  Abs (   463,   190)
+	176: Rel (    18,   -18)  ->  Abs (   481,   172)
+	177: Rel (     0,   -12)  ->  Abs (   481,   160)
+	178: Rel (     0,   -12)  ->  Abs (   481,   148)
+	179: Rel (   -18,   -19)  ->  Abs (   463,   129)
+	180: Rel (   151,   -29)  ->  Abs (   614,   100)
+	181: Rel (   -12,     0)  ->  Abs (   602,   100)
+	182: Rel (   -18,    19)  ->  Abs (   584,   119)
+	183: Rel (     0,    12)  ->  Abs (   584,   131)
+	184: Rel (     0,    12)  ->  Abs (   584,   143)
+	185: Rel (    18,    19)  ->  Abs (   602,   162)
+	186: Rel (    12,     0)  ->  Abs (   614,   162)
+	187: Rel (    13,     0)  ->  Abs (   627,   162)
+	188: Rel (    18,   -19)  ->  Abs (   645,   143)
+	189: Rel (     0,   -12)  ->  Abs (   645,   131)
+	190: Rel (     0,   -12)  ->  Abs (   645,   119)
+	191: Rel (   -18,   -19)  ->  Abs (   627,   100)
+	192: Rel (   -28,  1209)  ->  Abs (   599,  1309)
+	193: Rel (   325, -1391)  ->  Abs (   924,   -82)
+
+	Glyph 108: off = 0x00004DB2, len = 536
+	  numberOfContours:	4
+	  xMin:			10
+	  yMin:			-8
+	  xMax:			1647
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  9
+	  1:  25
+	  2:  68
+	  3:  117
+
+	  Length of Instructions:	219
+	00000: NPUSHB      (19):    32    79    48    79     2    74    69    90    69     2 
+	                             5    64     9    13    72     5     5     0    49 
+	00021: PUSHW[1]            -64 
+	00024: NPUSHB     (114):    14    17    72    49    35    26    35    49     3    28 
+	                            32    61     1    61    53   156    67    43   156    47 
+	                            28   143    28     2    28    69   116     0    83    80 
+	                            83     2    83   114   111     0    92    80    92     2 
+	                            92   104    16    16    83    92   104     4    72    10 
+	                            87   255   116   116    72    98   255   111   111     1 
+	                           111    78   236    72     7     8   254     2    26    47 
+	                           254    51    51     2    65    37    41   254    31    65 
+	                            59    55   254     0    65    16    65     2    65    69 
+	                            80   253   143    85     1    85   114    90   253    95 
+	                            85    95    65     3    75   102   253   107    19    23 
+	                           253    12   119    75 
+	00140: MDAP[rd]   
+	00141: SRP0       
+	00142: MDRP[srp0,nmd,rd,2] 
+	00143: MIRP[srp0,md,rd,1] 
+	00144: MDRP[nrp0,nmd,rd,0] 
+	00145: MDRP[srp0,nmd,rd,2] 
+	00146: MIRP[nrp0,md,rd,1] 
+	00147: SRP2       
+	00148: SLOOP      
+	00149: IP         
+	00150: MDAP[rd]   
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: IP         
+	00153: MDAP[rd]   
+	00154: DELTAP1    
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: IP         
+	00157: MDAP[rd]   
+	00158: DELTAP1    
+	00159: MIRP[srp0,md,rd,1] 
+	00160: MDRP[nrp0,nmd,rd,0] 
+	00161: SRP0       
+	00162: MDRP[srp0,nmd,rd,0] 
+	00163: MIRP[srp0,md,rd,1] 
+	00164: MDRP[nrp0,nmd,rd,0] 
+	00165: SRP2       
+	00166: IP         
+	00167: IP         
+	00168: MDAP[rd]   
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: IP         
+	00171: MDAP[rd]   
+	00172: MIRP[srp0,md,rd,1] 
+	00173: MDRP[nrp0,nmd,rd,1] 
+	00174: SVTCA[y-axis] 
+	00175: MDAP[rd]   
+	00176: MIRP[nrp0,md,rd,1] 
+	00177: MDAP[rd]   
+	00178: DELTAP1    
+	00179: MIRP[nrp0,md,rd,1] 
+	00180: SRP2       
+	00181: IP         
+	00182: MDAP[rd]   
+	00183: MIRP[nrp0,md,rd,1] 
+	00184: MDAP[rd]   
+	00185: SRP2       
+	00186: SLOOP      
+	00187: IP         
+	00188: MDAP[rd]   
+	00189: MDAP[rd]   
+	00190: MDAP[rd]   
+	00191: DELTAP1    
+	00192: SRP2       
+	00193: IP         
+	00194: MDAP[rd]   
+	00195: DELTAP1    
+	00196: SRP2       
+	00197: IP         
+	00198: MDAP[rd]   
+	00199: DELTAP1    
+	00200: MIRP[nrp0,md,rd,1] 
+	00201: MDRP[srp0,nmd,rd,0] 
+	00202: MIRP[nrp0,md,rd,1] 
+	00203: MDRP[nrp0,nmd,rd,0] 
+	00204: DELTAP1    
+	00205: SRP1       
+	00206: SLOOP      
+	00207: IP         
+	00208: MDAP[rd]   
+	00209: MDAP[rd]   
+	00210: CALL       
+	00211: MDAP[rd]   
+	00212: IP         
+	00213: MDAP[rd]   
+	00214: CALL       
+	00215: IUP[y]     
+	00216: IUP[x]     
+	00217: DELTAP1    
+	00218: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short         Off
+	 10:                      Y-Short         On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual                         Off
+	 14:                              X-Short Off
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:        XDual                         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:                                      On
+	 27:                      Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:                      Y-Short X-Short On
+	 40:                      Y-Short X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:        XDual         Y-Short         Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:        XDual         Y-Short         On
+	 52:        XDual         Y-Short         Off
+	 53:  YDual XDual                 X-Short On
+	 54:  YDual XDual                 X-Short Off
+	 55:  YDual XDual         Y-Short         On
+	 56:  YDual XDual         Y-Short         Off
+	 57:  YDual               Y-Short X-Short On
+	 58:  YDual               Y-Short X-Short Off
+	 59:  YDual XDual         Y-Short         On
+	 60:  YDual XDual         Y-Short         Off
+	 61:  YDual XDual                 X-Short On
+	 62:  YDual XDual                 X-Short Off
+	 63:        XDual Rep-  1 Y-Short X-Short Off
+	 65:        XDual         Y-Short         On
+	 66:        XDual         Y-Short         Off
+	 67:  YDual                       X-Short On
+	 68:  YDual                       X-Short Off
+	 69:                                      On
+	 70:              Rep-  1 Y-Short X-Short Off
+	 72:  YDual                       X-Short On
+	 73:  YDual                       X-Short Off
+	 74:  YDual               Y-Short X-Short Off
+	 75:  YDual XDual         Y-Short         On
+	 76:  YDual XDual         Y-Short         Off
+	 77:  YDual XDual         Y-Short X-Short Off
+	 78:  YDual XDual         Y-Short X-Short On
+	 79:  YDual               Y-Short         Off
+	 80:  YDual XDual         Y-Short X-Short On
+	 81:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 83:  YDual XDual                 X-Short On
+	 84:  YDual XDual                 X-Short Off
+	 85:        XDual         Y-Short         On
+	 86:        XDual         Y-Short         Off
+	 87:  YDual XDual                 X-Short On
+	 88:  YDual XDual                 X-Short Off
+	 89:  YDual XDual         Y-Short X-Short Off
+	 90:  YDual XDual         Y-Short         On
+	 91:  YDual XDual         Y-Short         Off
+	 92:  YDual XDual                 X-Short On
+	 93:  YDual XDual                 X-Short Off
+	 94:        XDual         Y-Short X-Short Off
+	 95:        XDual         Y-Short X-Short On
+	 96:        XDual Rep-  1 Y-Short X-Short Off
+	 98:  YDual XDual                 X-Short On
+	 99:  YDual XDual                 X-Short Off
+	100:  YDual XDual         Y-Short X-Short Off
+	101:        XDual                 X-Short Off
+	102:  YDual XDual         Y-Short         On
+	103:  YDual XDual         Y-Short         Off
+	104:  YDual XDual                 X-Short On
+	105:  YDual XDual                 X-Short Off
+	106:        XDual         Y-Short X-Short Off
+	107:        XDual         Y-Short         On
+	108:        XDual         Y-Short         Off
+	109:                              X-Short Off
+	110:                      Y-Short X-Short Off
+	111:  YDual                       X-Short On
+	112:  YDual                       X-Short Off
+	113:  YDual               Y-Short X-Short Off
+	114:  YDual               Y-Short X-Short On
+	115:                      Y-Short X-Short Off
+	116:  YDual                       X-Short On
+	117:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   834,  1464)  ->  Abs (   834,  1464)
+	  1: Rel (    38,     0)  ->  Abs (   872,  1464)
+	  2: Rel (     0,   -28)  ->  Abs (   872,  1436)
+	  3: Rel (     0,  -190)  ->  Abs (   872,  1246)
+	  4: Rel (   -14,   -91)  ->  Abs (   858,  1155)
+	  5: Rel (   -35,     0)  ->  Abs (   823,  1155)
+	  6: Rel (   -39,     0)  ->  Abs (   784,  1155)
+	  7: Rel (     0,    43)  ->  Abs (   784,  1198)
+	  8: Rel (     9,   211)  ->  Abs (   793,  1409)
+	  9: Rel (     0,    55)  ->  Abs (   793,  1464)
+	 10: Rel (   788,  -190)  ->  Abs (  1581,  1274)
+	 11: Rel (    66,     0)  ->  Abs (  1647,  1274)
+	 12: Rel (     0,   -76)  ->  Abs (  1647,  1198)
+	 13: Rel (     0,  -334)  ->  Abs (  1647,   864)
+	 14: Rel (   -51,  -527)  ->  Abs (  1596,   337)
+	 15: Rel (   -59,   -81)  ->  Abs (  1537,   256)
+	 16: Rel (   -40,     0)  ->  Abs (  1497,   256)
+	 17: Rel (   -30,     0)  ->  Abs (  1467,   256)
+	 18: Rel (   -40,    39)  ->  Abs (  1427,   295)
+	 19: Rel (     0,    27)  ->  Abs (  1427,   322)
+	 20: Rel (     0,    29)  ->  Abs (  1427,   351)
+	 21: Rel (    17,    59)  ->  Abs (  1444,   410)
+	 22: Rel (    53,   191)  ->  Abs (  1497,   601)
+	 23: Rel (     0,   546)  ->  Abs (  1497,  1147)
+	 24: Rel (     0,    55)  ->  Abs (  1497,  1202)
+	 25: Rel (    44,    72)  ->  Abs (  1541,  1274)
+	 26: Rel (  -734,  -428)  ->  Abs (   807,   846)
+	 27: Rel (   -28,   -70)  ->  Abs (   779,   776)
+	 28: Rel (   -74,     0)  ->  Abs (   705,   776)
+	 29: Rel (   -40,     0)  ->  Abs (   665,   776)
+	 30: Rel (   -59,    76)  ->  Abs (   606,   852)
+	 31: Rel (     0,    51)  ->  Abs (   606,   903)
+	 32: Rel (     0,    46)  ->  Abs (   606,   949)
+	 33: Rel (    30,    70)  ->  Abs (   636,  1019)
+	 34: Rel (    24,    30)  ->  Abs (   660,  1049)
+	 35: Rel (    22,     0)  ->  Abs (   682,  1049)
+	 36: Rel (    23,     0)  ->  Abs (   705,  1049)
+	 37: Rel (     0,   -25)  ->  Abs (   705,  1024)
+	 38: Rel (     0,   -16)  ->  Abs (   705,  1008)
+	 39: Rel (   -17,   -29)  ->  Abs (   688,   979)
+	 40: Rel (   -14,   -26)  ->  Abs (   674,   953)
+	 41: Rel (     0,   -40)  ->  Abs (   674,   913)
+	 42: Rel (     0,   -45)  ->  Abs (   674,   868)
+	 43: Rel (    45,     0)  ->  Abs (   719,   868)
+	 44: Rel (    24,     0)  ->  Abs (   743,   868)
+	 45: Rel (    31,    29)  ->  Abs (   774,   897)
+	 46: Rel (     0,    49)  ->  Abs (   774,   946)
+	 47: Rel (     3,    46)  ->  Abs (   777,   992)
+	 48: Rel (    14,    32)  ->  Abs (   791,  1024)
+	 49: Rel (    16,     0)  ->  Abs (   807,  1024)
+	 50: Rel (    33,     0)  ->  Abs (   840,  1024)
+	 51: Rel (     0,   -23)  ->  Abs (   840,  1001)
+	 52: Rel (     0,  -120)  ->  Abs (   840,   881)
+	 53: Rel (    57,     0)  ->  Abs (   897,   881)
+	 54: Rel (    47,     0)  ->  Abs (   944,   881)
+	 55: Rel (     0,    59)  ->  Abs (   944,   940)
+	 56: Rel (     0,    27)  ->  Abs (   944,   967)
+	 57: Rel (   -11,    43)  ->  Abs (   933,  1010)
+	 58: Rel (    -7,    26)  ->  Abs (   926,  1036)
+	 59: Rel (     0,    11)  ->  Abs (   926,  1047)
+	 60: Rel (     0,    30)  ->  Abs (   926,  1077)
+	 61: Rel (    26,     0)  ->  Abs (   952,  1077)
+	 62: Rel (    15,     0)  ->  Abs (   967,  1077)
+	 63: Rel (    14,   -29)  ->  Abs (   981,  1048)
+	 64: Rel (    16,   -85)  ->  Abs (   997,   963)
+	 65: Rel (     0,   -27)  ->  Abs (   997,   936)
+	 66: Rel (     0,  -148)  ->  Abs (   997,   788)
+	 67: Rel (  -106,     0)  ->  Abs (   891,   788)
+	 68: Rel (   -60,     0)  ->  Abs (   831,   788)
+	 69: Rel (  -442,  -622)  ->  Abs (   389,   166)
+	 70: Rel (   -64,   -77)  ->  Abs (   325,    89)
+	 71: Rel (  -182,   -97)  ->  Abs (   143,    -8)
+	 72: Rel (   -69,     0)  ->  Abs (    74,    -8)
+	 73: Rel (   -29,     0)  ->  Abs (    45,    -8)
+	 74: Rel (   -35,    41)  ->  Abs (    10,    33)
+	 75: Rel (     0,    28)  ->  Abs (    10,    61)
+	 76: Rel (     0,    31)  ->  Abs (    10,    92)
+	 77: Rel (    33,    48)  ->  Abs (    43,   140)
+	 78: Rel (    27,     7)  ->  Abs (    70,   147)
+	 79: Rel (   264,    81)  ->  Abs (   334,   228)
+	 80: Rel (    37,   249)  ->  Abs (   371,   477)
+	 81: Rel (     3,    27)  ->  Abs (   374,   504)
+	 82: Rel (    40,    37)  ->  Abs (   414,   541)
+	 83: Rel (    26,     0)  ->  Abs (   440,   541)
+	 84: Rel (    74,     0)  ->  Abs (   514,   541)
+	 85: Rel (     0,   -60)  ->  Abs (   514,   481)
+	 86: Rel (     0,  -200)  ->  Abs (   514,   281)
+	 87: Rel (    92,     0)  ->  Abs (   606,   281)
+	 88: Rel (    57,     0)  ->  Abs (   663,   281)
+	 89: Rel (    72,   164)  ->  Abs (   735,   445)
+	 90: Rel (     0,    98)  ->  Abs (   735,   543)
+	 91: Rel (     0,   106)  ->  Abs (   735,   649)
+	 92: Rel (    72,     0)  ->  Abs (   807,   649)
+	 93: Rel (    41,     0)  ->  Abs (   848,   649)
+	 94: Rel (    28,   -31)  ->  Abs (   876,   618)
+	 95: Rel (     6,   -51)  ->  Abs (   882,   567)
+	 96: Rel (    15,  -157)  ->  Abs (   897,   410)
+	 97: Rel (    55,   -95)  ->  Abs (   952,   315)
+	 98: Rel (    43,     0)  ->  Abs (   995,   315)
+	 99: Rel (    61,     0)  ->  Abs (  1056,   315)
+	100: Rel (    62,    97)  ->  Abs (  1118,   412)
+	101: Rel (    25,   313)  ->  Abs (  1143,   725)
+	102: Rel (     0,   158)  ->  Abs (  1143,   883)
+	103: Rel (     0,    80)  ->  Abs (  1143,   963)
+	104: Rel (    69,     0)  ->  Abs (  1212,   963)
+	105: Rel (    25,     0)  ->  Abs (  1237,   963)
+	106: Rel (    49,   -35)  ->  Abs (  1286,   928)
+	107: Rel (     0,   -27)  ->  Abs (  1286,   901)
+	108: Rel (     0,  -178)  ->  Abs (  1286,   723)
+	109: Rel (   -29,  -414)  ->  Abs (  1257,   309)
+	110: Rel (  -168,  -243)  ->  Abs (  1089,    66)
+	111: Rel (  -116,     0)  ->  Abs (   973,    66)
+	112: Rel (   -70,     0)  ->  Abs (   903,    66)
+	113: Rel (  -111,    94)  ->  Abs (   792,   160)
+	114: Rel (   -20,    78)  ->  Abs (   772,   238)
+	115: Rel (   -73,  -207)  ->  Abs (   699,    31)
+	116: Rel (  -136,     0)  ->  Abs (   563,    31)
+	117: Rel (  -133,     0)  ->  Abs (   430,    31)
+
+	Glyph 109: off = 0x00004FCA, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			25
+	  yMin:			969
+	  xMax:			575
+	  yMax:			1425
+
+	     0: Flags:		0x0006
+		Glyf Index:	91
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 110: off = 0x00004FDA, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			25
+	  yMin:			969
+	  xMax:			862
+	  yMax:			1464
+
+	     0: Flags:		0x0006
+		Glyf Index:	92
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 111: off = 0x00004FEA, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			25
+	  yMin:			-461
+	  xMax:			822
+	  yMax:			-69
+
+	     0: Flags:		0x0006
+		Glyf Index:	93
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 112: off = 0x00004FFA, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			14
+	  yMin:			-517
+	  xMax:			1024
+	  yMax:			-111
+
+	     0: Flags:		0x0006
+		Glyf Index:	94
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 113: off = 0x0000500A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			25
+	  yMin:			969
+	  xMax:			502
+	  yMax:			1464
+
+	     0: Flags:		0x0006
+		Glyf Index:	95
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 114: off = 0x0000501A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			25
+	  yMin:			969
+	  xMax:			993
+	  yMax:			1464
+
+	     0: Flags:		0x0006
+		Glyf Index:	96
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 115: off = 0x0000502A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			23
+	  yMin:			969
+	  xMax:			500
+	  yMax:			1464
+
+	     0: Flags:		0x0006
+		Glyf Index:	97
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 116: off = 0x0000503A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			23
+	  yMin:			969
+	  xMax:			991
+	  yMax:			1464
+
+	     0: Flags:		0x0006
+		Glyf Index:	98
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 117: off = 0x0000504A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			25
+	  yMin:			969
+	  xMax:			909
+	  yMax:			1464
+
+	     0: Flags:		0x0006
+		Glyf Index:	99
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 118: off = 0x0000505A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			37
+	  yMin:			969
+	  xMax:			971
+	  yMax:			1792
+
+	     0: Flags:		0x0006
+		Glyf Index:	100
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 119: off = 0x0000506A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			37
+	  yMin:			969
+	  xMax:			598
+	  yMax:			1464
+
+	     0: Flags:		0x0006
+		Glyf Index:	101
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
diff --git a/lib/unstable/freetype/point_int.li b/lib/unstable/freetype/point_int.li
new file mode 100644
index 0000000..405d272
--- /dev/null
+++ b/lib/unstable/freetype/point_int.li
@@ -0,0 +1,76 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := POINT_INT;
+  
+  - comment     := "Point graphics Vector in INTEGER.";
+  
+  - bibliography:= "http://IsaacOS.com";
+  
+  - author      := "Benoit Sonntag (bsonntag at loria.fr), Jerome Boutet (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Mapping
+ 
+  + x:INTEGER;  
+  + y:INTEGER;
+  
+Section Public
+  
+  //
+  // Constructor.
+  // 
+  
+  - create (new_x,new_y:INTEGER) :SELF <-
+  ( + result:SELF;
+    
+    result:=clone;
+    result.make (new_x,new_y);
+    
+    result
+  );
+  
+  //
+  // Modification.
+  //
+  
+  - make (new_x,new_y:INTEGER) <-
+  (
+    x:=new_x;
+    y:=new_y;
+  );
+  
+  - translate (dx,dy:INTEGER) <-
+  (
+    x:=x+dx;
+    y:=y+dy;
+  );
+  
+  - multiply (cx,cy:INTEGER) <-
+  (
+    x:=x*cx;
+    y:=y*cy;
+  );
+  
+  //
+  // Display.
+  //
+
+  - display bmp:BITMAP <-
+  (
+    deferred;
+  );
\ No newline at end of file
diff --git a/lib/unstable/freetype/toontime.ttf b/lib/unstable/freetype/toontime.ttf
new file mode 100644
index 0000000..7ecabb7
Binary files /dev/null and b/lib/unstable/freetype/toontime.ttf differ
diff --git a/lib/unstable/freetype/toontime.txt b/lib/unstable/freetype/toontime.txt
new file mode 100644
index 0000000..242bb3e
--- /dev/null
+++ b/lib/unstable/freetype/toontime.txt
@@ -0,0 +1,21666 @@
+
+; TrueType v1.0 Dump Program - v1.8, Oct 29 2002, rrt, dra, gch, ddb, lcp, pml
+; Copyright (C) 1991 ZSoft Corporation. All rights reserved.
+; Portions Copyright (C) 1991-2001 Microsoft Corporation. All rights reserved.
+
+; Dumping file 'z:\isaac\freetype\font.ttf'
+
+Offset Table
+------ -----
+  sfnt version:     1.0
+  numTables =        20
+  searchRange =     256
+  entrySelector =     4
+  rangeShift =       64
+
+ 0. 'DSIG' - chksm = 0x37490314, off = 0x000084E8, len =     6476
+ 1. 'GDEF' - chksm = 0x01810198, off = 0x00007E84, len =       48
+ 2. 'GPOS' - chksm = 0x6FC5DEF6, off = 0x00007EB4, len =     1492
+ 3. 'GSUB' - chksm = 0xDAB9D231, off = 0x00008488, len =       94
+ 4. 'LTSH' - chksm = 0xD77AD03A, off = 0x000008F8, len =      124
+ 5. 'OS/2' - chksm = 0x6CA7717E, off = 0x000001C8, len =       86
+ 6. 'VDMX' - chksm = 0x69D6715B, off = 0x00000974, len =     1504
+ 7. 'cmap' - chksm = 0x1EC5DA52, off = 0x00000630, len =      466
+ 8. 'cvt ' - chksm = 0x191B27A2, off = 0x00001A1C, len =      520
+ 9. 'fpgm' - chksm = 0x07DB318A, off = 0x00001260, len =     1978
+10. 'glyf' - chksm = 0xC28F876E, off = 0x0000291C, len =    20602
+11. 'hdmx' - chksm = 0xE3455448, off = 0x00001DF0, len =     2860
+12. 'head' - chksm = 0xD3D49E88, off = 0x0000014C, len =       54
+13. 'hhea' - chksm = 0x1181049A, off = 0x00000184, len =       36
+14. 'hmtx' - chksm = 0xDD231B2D, off = 0x00001C24, len =      460
+15. 'loca' - chksm = 0x2BD517A1, off = 0x00000804, len =      242
+16. 'maxp' - chksm = 0x02950906, off = 0x000001A8, len =       32
+17. 'name' - chksm = 0x1AD83746, off = 0x00000220, len =     1037
+18. 'post' - chksm = 0x51FD5D61, off = 0x00007998, len =     1259
+19. 'prep' - chksm = 0xFD391FDA, off = 0x00000F54, len =      780
+
+'head' Table - Font Header
+--------------------------
+Size = 54 bytes (expecting 54 bytes)
+  'head' version:      1.0
+  fontRevision:        1.0
+  checkSumAdjustment:  0x626E2E1C
+  magicNumber:         0x5F0F3CF5
+  flags:               0x001B- baseline(y)=0 - lsb(x)=0 - int ppem - nonlin aw
+  unitsPerEm:          2048
+  created:             Wed Nov 29 17:51:34 2000
+  modified:            Thu May 03 01:05:42 2001
+  xMin:                -313
+  yMin:                -610
+  xMax:                2175
+  yMax:                1792
+  macStyle bits:       0x0000
+  lowestRecPPEM:       9
+  fontDirectionHint:   1
+  indexToLocFormat:    0
+  glyphDataFormat:     0
+
+'hhea' Table - Horizontal Header
+--------------------------------
+Size = 36 bytes (expecting 36 bytes)
+	'hhea' version:         1.0
+	yAscender:            2333
+	yDescender:           -967
+	yLineGap:             0
+	advanceWidthMax:      2195
+	minLeftSideBearing:   -313
+	minRightSideBearing:  -1024
+	xMaxExtent:           2175
+	horizCaretSlopeNum:   984
+	horizCaretSlopeDenom: 282
+	reserved0:            65416
+	reserved1:            0
+	reserved2:            0
+	reserved3:            0
+	reserved4:            0
+	metricDataFormat:     0
+	numOf_LongHorMetrics: 110
+
+'maxp' Table - Maximum Profile
+------------------------------
+Size = 32 bytes (expecting 32 bytes)
+	'maxp' version:		  1.0
+	numGlyphs:		120
+	maxPoints:		194
+	maxContours:		18
+	maxCompositePoints:	88
+	maxCompositeContours:	9
+	maxZones:		2
+	maxTwilightPoints:	16
+	maxStorage:		47
+	maxFunctionDefs:	83
+	maxInstructionDefs:	0
+	maxStackElements:	412
+	maxSizeOfInstructions:	1978
+	maxComponentElements:	2
+	maxComponentDepth:	1
+
+'name' Table - Naming Table
+---------------------------
+	Format:		0
+	Count:		19
+	stringOffset:	 234
+Size = 1037 bytes
+	  0. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		0
+	     Length:		75
+	     Offset:		0
+		Data: 44 69 67 69 74 69 7A 65 64 20  >  Digitized 
+		      64 61 74 61 20 A9 20 32 30 30  >  data © 200
+		      30 2D 32 30 30 31 2C 20 41 67  >  0-2001, Ag
+		      66 61 20 4D 6F 6E 6F 74 79 70  >  fa Monotyp
+		      65 20 43 6F 72 70 6F 72 61 74  >  e Corporat
+		      69 6F 6E 2E 20 41 6C 6C 20 72  >  ion. All r
+		      69 67 68 74 73 20 72 65 73 65  >  ights rese
+		      72 76 65 64 2E                 >  rved.
+
+	  1. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		1
+	     Length:		7
+	     Offset:		75
+		Data: 4D 56 20 42 6F 6C 69           >  MV Boli
+
+	  2. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		2
+	     Length:		7
+	     Offset:		82
+		Data: 52 65 67 75 6C 61 72           >  Regular
+
+	  3. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		3
+	     Length:		29
+	     Offset:		89
+		Data: 41 67 66 61 20 4D 6F 6E 6F 74  >  Agfa Monot
+		      79 70 65 20 4D 56 20 42 6F 6C  >  ype MV Bol
+		      69 20 52 65 67 75 6C 61 72     >  i Regular
+
+	  4. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		4
+	     Length:		7
+	     Offset:		118
+		Data: 4D 56 20 42 6F 6C 69           >  MV Boli
+
+	  5. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		5
+	     Length:		12
+	     Offset:		125
+		Data: 56 65 72 73 69 6F 6E 20 31 2E  >  Version 1.
+		      30 30                          >  00
+
+	  6. Platform ID:	1
+	     Specific ID:	0
+	     Language ID:	0
+	     Name ID:		6
+	     Length:		6
+	     Offset:		137
+		Data: 4D 56 42 6F 6C 69              >  MVBoli
+
+	  7. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		0
+	     Length:		150
+	     Offset:		143
+		Data:  0 44  0 69  0 67  0 69  0 74  >  .D.i.g.i.t
+		       0 69  0 7A  0 65  0 64  0 20  >  .i.z.e.d. 
+		       0 64  0 61  0 74  0 61  0 20  >  .d.a.t.a. 
+		       0 A9  0 20  0 32  0 30  0 30  >  .©. .2.0.0
+		       0 30  0 2D  0 32  0 30  0 30  >  .0.-.2.0.0
+		       0 31  0 2C  0 20  0 41  0 67  >  .1.,. .A.g
+		       0 66  0 61  0 20  0 4D  0 6F  >  .f.a. .M.o
+		       0 6E  0 6F  0 74  0 79  0 70  >  .n.o.t.y.p
+		       0 65  0 20  0 43  0 6F  0 72  >  .e. .C.o.r
+		       0 70  0 6F  0 72  0 61  0 74  >  .p.o.r.a.t
+		       0 69  0 6F  0 6E  0 2E  0 20  >  .i.o.n... 
+		       0 41  0 6C  0 6C  0 20  0 72  >  .A.l.l. .r
+		       0 69  0 67  0 68  0 74  0 73  >  .i.g.h.t.s
+		       0 20  0 72  0 65  0 73  0 65  >  . .r.e.s.e
+		       0 72  0 76  0 65  0 64  0 2E  >  .r.v.e.d..
+
+	  8. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		1
+	     Length:		14
+	     Offset:		293
+		Data:  0 4D  0 56  0 20  0 42  0 6F  >  .M.V. .B.o
+		       0 6C  0 69                    >  .l.i
+
+	  9. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		2
+	     Length:		14
+	     Offset:		307
+		Data:  0 52  0 65  0 67  0 75  0 6C  >  .R.e.g.u.l
+		       0 61  0 72                    >  .a.r
+
+	 10. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		3
+	     Length:		58
+	     Offset:		321
+		Data:  0 41  0 67  0 66  0 61  0 20  >  .A.g.f.a. 
+		       0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 4D  >  .y.p.e. .M
+		       0 56  0 20  0 42  0 6F  0 6C  >  .V. .B.o.l
+		       0 69  0 20  0 52  0 65  0 67  >  .i. .R.e.g
+		       0 75  0 6C  0 61  0 72        >  .u.l.a.r
+
+	 11. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		4
+	     Length:		14
+	     Offset:		379
+		Data:  0 4D  0 56  0 20  0 42  0 6F  >  .M.V. .B.o
+		       0 6C  0 69                    >  .l.i
+
+	 12. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		5
+	     Length:		24
+	     Offset:		393
+		Data:  0 56  0 65  0 72  0 73  0 69  >  .V.e.r.s.i
+		       0 6F  0 6E  0 20  0 31  0 2E  >  .o.n. .1..
+		       0 30  0 30                    >  .0.0
+
+	 13. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		6
+	     Length:		12
+	     Offset:		417
+		Data:  0 4D  0 56  0 42  0 6F  0 6C  >  .M.V.B.o.l
+		       0 69                          >  .i
+
+	 14. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		8
+	     Length:		50
+	     Offset:		429
+		Data:  0 41  0 67  0 66  0 61  0 20  >  .A.g.f.a. 
+		       0 4D  0 6F  0 6E  0 6F  0 74  >  .M.o.n.o.t
+		       0 79  0 70  0 65  0 20  0 43  >  .y.p.e. .C
+		       0 6F  0 72  0 70  0 6F  0 72  >  .o.r.p.o.r
+		       0 61  0 74  0 69  0 6F  0 6E  >  .a.t.i.o.n
+
+	 15. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		9
+	     Length:		58
+	     Offset:		479
+		Data:  0 54  0 68  0 6F  0 6D  0 61  >  .T.h.o.m.a
+		       0 73  0 20  0 52  0 69  0 63  >  .s. .R.i.c
+		       0 6B  0 6E  0 65  0 72  0 2C  >  .k.n.e.r.,
+		       0 20  0 4B  0 61  0 6D  0 61  >  . .K.a.m.a
+		       0 6C  0 20  0 4D  0 61  0 6E  >  .l. .M.a.n
+		       0 73  0 6F  0 75  0 72        >  .s.o.u.r
+
+	 16. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		11
+	     Length:		54
+	     Offset:		537
+		Data:  0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 61  0 67  0 66  0 61  >  ...a.g.f.a
+		       0 6D  0 6F  0 6E  0 6F  0 74  >  .m.o.n.o.t
+		       0 79  0 70  0 65  0 2E  0 63  >  .y.p.e...c
+		       0 6F  0 6D                    >  .o.m
+
+	 17. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		12
+	     Length:		112
+	     Offset:		591
+		Data:  0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 61  0 67  0 66  0 61  >  ...a.g.f.a
+		       0 6D  0 6F  0 6E  0 6F  0 74  >  .m.o.n.o.t
+		       0 79  0 70  0 65  0 2E  0 63  >  .y.p.e...c
+		       0 6F  0 6D  0 2F  0 68  0 74  >  .o.m./.h.t
+		       0 6D  0 6C  0 2F  0 64  0 65  >  .m.l./.d.e
+		       0 73  0 69  0 67  0 6E  0 65  >  .s.i.g.n.e
+		       0 72  0 2F  0 64  0 65  0 73  >  .r./.d.e.s
+		       0 5F  0 69  0 6E  0 64  0 65  >  ._.i.n.d.e
+		       0 78  0 2E  0 68  0 74  0 6D  >  .x...h.t.m
+		       0 6C                          >  .l
+
+	 18. Platform ID:	3
+	     Specific ID:	1
+	     Language ID:	1033
+	     Name ID:		14
+	     Length:		100
+	     Offset:		703
+		Data:  0 68  0 74  0 74  0 70  0 3A  >  .h.t.t.p.:
+		       0 2F  0 2F  0 77  0 77  0 77  >  ././.w.w.w
+		       0 2E  0 61  0 67  0 66  0 61  >  ...a.g.f.a
+		       0 6D  0 6F  0 6E  0 6F  0 74  >  .m.o.n.o.t
+		       0 79  0 70  0 65  0 2E  0 63  >  .y.p.e...c
+		       0 6F  0 6D  0 2F  0 68  0 74  >  .o.m./.h.t
+		       0 6D  0 6C  0 2F  0 74  0 79  >  .m.l./.t.y
+		       0 70  0 65  0 2F  0 6C  0 69  >  .p.e./.l.i
+		       0 63  0 65  0 6E  0 73  0 65  >  .c.e.n.s.e
+		       0 2E  0 68  0 74  0 6D  0 6C  >  ...h.t.m.l
+
+
+'OS/2' Table - OS/2 and Windows Metrics
+---------------------------------------
+Size = 86 bytes (expecting 86 bytes)
+  'OS/2' version:           1
+  xAvgCharWidth:            1025
+  usWeightClass:            400
+  usWidthClass:             5
+  fsType:                   0x0008
+  ySubscriptXSize:          1434
+  ySubscriptYSize:          1331
+  ySubscriptXOffset:        0
+  ySubscriptYOffset:        0
+  ySuperscriptXSize:        1434
+  ySuperscriptYSize:        1331
+  ySuperscriptXOffset:      0
+  ySuperscriptYOffset:      0
+  yStrikeoutSize:           102
+  yStrikeoutPosition:       430
+  sFamilyClass:             10    subclass = 6
+  PANOSE:                   2  0  5  0  3  2  0  9  0  0
+  Unicode Range 1( Bits 0 - 31 ): 00000000
+  Unicode Range 2( Bits 32- 63 ): 00000000
+  Unicode Range 3( Bits 64- 95 ): 00000100
+  Unicode Range 4( Bits 96-127 ): 00000000
+  achVendID:                'MONO'
+  fsSelection:              0x0040
+  usFirstCharIndex:         0x0020
+  usLastCharIndex:          0xFDF2
+  sTypoAscender:            1464
+  sTypoDescender:           -463
+  sTypoLineGap:             264
+  usWinAscent:              2333
+  usWinDescent:             967
+  CodePage Range 1( Bits 0 - 31 ): 00000000
+  CodePage Range 2( Bits 32- 63 ): 00000000
+
+'post' Table - PostScript Metrics
+---------------------------------
+Size = 1259 bytes
+	'post' version:	        2.0
+	italicAngle:	      -16.0000
+	underlinePosition:	-340
+	underlineThickness:	100
+	isFixedPitch:		0
+	minMemType42:		0
+	maxMemType42:		0
+	minMemType1:		0
+	maxMemType1:		0
+
+	Format 2.0:  Non-Standard (for PostScript) TrueType Glyph Set.
+	numGlyphs:	120
+	Glyf   0 -> Mac Glyph # 0, '.notdef'
+	Glyf   1 -> Mac Glyph # 1, 'null'
+	Glyf   2 -> Mac Glyph # 2, 'CR'
+	Glyf   3 -> PSGlyf Name # 1, name= 'space'
+	Glyf   4 -> PSGlyf Name # 2, name= 'exclam'
+	Glyf   5 -> PSGlyf Name # 3, name= 'quotedbl'
+	Glyf   6 -> PSGlyf Name # 4, name= 'numbersign'
+	Glyf   7 -> PSGlyf Name # 5, name= 'dollar'
+	Glyf   8 -> PSGlyf Name # 6, name= 'percent'
+	Glyf   9 -> PSGlyf Name # 7, name= 'ampersand'
+	Glyf  10 -> PSGlyf Name # 8, name= 'quotesingle'
+	Glyf  11 -> PSGlyf Name # 9, name= 'parenleft'
+	Glyf  12 -> PSGlyf Name # 10, name= 'parenright'
+	Glyf  13 -> PSGlyf Name # 11, name= 'asterisk'
+	Glyf  14 -> PSGlyf Name # 12, name= 'plus'
+	Glyf  15 -> PSGlyf Name # 13, name= 'comma'
+	Glyf  16 -> PSGlyf Name # 14, name= 'hyphen'
+	Glyf  17 -> PSGlyf Name # 15, name= 'period'
+	Glyf  18 -> PSGlyf Name # 16, name= 'slash'
+	Glyf  19 -> PSGlyf Name # 17, name= 'zero'
+	Glyf  20 -> PSGlyf Name # 18, name= 'one'
+	Glyf  21 -> PSGlyf Name # 19, name= 'two'
+	Glyf  22 -> PSGlyf Name # 20, name= 'three'
+	Glyf  23 -> PSGlyf Name # 21, name= 'four'
+	Glyf  24 -> PSGlyf Name # 22, name= 'five'
+	Glyf  25 -> PSGlyf Name # 23, name= 'six'
+	Glyf  26 -> PSGlyf Name # 24, name= 'seven'
+	Glyf  27 -> PSGlyf Name # 25, name= 'eight'
+	Glyf  28 -> PSGlyf Name # 26, name= 'nine'
+	Glyf  29 -> PSGlyf Name # 27, name= 'colon'
+	Glyf  30 -> PSGlyf Name # 28, name= 'semicolon'
+	Glyf  31 -> PSGlyf Name # 29, name= 'less'
+	Glyf  32 -> PSGlyf Name # 30, name= 'equal'
+	Glyf  33 -> PSGlyf Name # 31, name= 'greater'
+	Glyf  34 -> PSGlyf Name # 32, name= 'bracketleft'
+	Glyf  35 -> PSGlyf Name # 33, name= 'backslash'
+	Glyf  36 -> PSGlyf Name # 34, name= 'bracketright'
+	Glyf  37 -> PSGlyf Name # 35, name= 'braceleft'
+	Glyf  38 -> PSGlyf Name # 36, name= 'bar'
+	Glyf  39 -> PSGlyf Name # 37, name= 'braceright'
+	Glyf  40 -> PSGlyf Name # 38, name= 'bullet'
+	Glyf  41 -> PSGlyf Name # 39, name= 'guillemotleft'
+	Glyf  42 -> PSGlyf Name # 40, name= 'guillemotright'
+	Glyf  43 -> PSGlyf Name # 41, name= 'endash'
+	Glyf  44 -> PSGlyf Name # 42, name= 'emdash'
+	Glyf  45 -> PSGlyf Name # 43, name= 'quotedblleft'
+	Glyf  46 -> PSGlyf Name # 44, name= 'quotedblright'
+	Glyf  47 -> PSGlyf Name # 45, name= 'quoteleft'
+	Glyf  48 -> PSGlyf Name # 46, name= 'quoteright'
+	Glyf  49 -> PSGlyf Name # 47, name= 'uni00B7'
+	Glyf  50 -> PSGlyf Name # 48, name= 'afii57388'
+	Glyf  51 -> PSGlyf Name # 49, name= 'afii57403'
+	Glyf  52 -> PSGlyf Name # 50, name= 'afii57407'
+	Glyf  53 -> PSGlyf Name # 51, name= 'uni0780'
+	Glyf  54 -> PSGlyf Name # 52, name= 'uni0781'
+	Glyf  55 -> PSGlyf Name # 53, name= 'uni0782'
+	Glyf  56 -> PSGlyf Name # 54, name= 'uni0783'
+	Glyf  57 -> PSGlyf Name # 55, name= 'uni0784'
+	Glyf  58 -> PSGlyf Name # 56, name= 'uni0785'
+	Glyf  59 -> PSGlyf Name # 57, name= 'uni0786'
+	Glyf  60 -> PSGlyf Name # 58, name= 'uni0787'
+	Glyf  61 -> PSGlyf Name # 59, name= 'uni0788'
+	Glyf  62 -> PSGlyf Name # 60, name= 'uni0789'
+	Glyf  63 -> PSGlyf Name # 61, name= 'uni078A'
+	Glyf  64 -> PSGlyf Name # 62, name= 'uni078B'
+	Glyf  65 -> PSGlyf Name # 63, name= 'uni078C'
+	Glyf  66 -> PSGlyf Name # 64, name= 'uni078D'
+	Glyf  67 -> PSGlyf Name # 65, name= 'uni078E'
+	Glyf  68 -> PSGlyf Name # 66, name= 'uni078F'
+	Glyf  69 -> PSGlyf Name # 67, name= 'uni0790'
+	Glyf  70 -> PSGlyf Name # 68, name= 'uni0791'
+	Glyf  71 -> PSGlyf Name # 69, name= 'uni0792'
+	Glyf  72 -> PSGlyf Name # 70, name= 'uni0793'
+	Glyf  73 -> PSGlyf Name # 71, name= 'uni0794'
+	Glyf  74 -> PSGlyf Name # 72, name= 'uni0795'
+	Glyf  75 -> PSGlyf Name # 73, name= 'uni0796'
+	Glyf  76 -> PSGlyf Name # 74, name= 'uni0797'
+	Glyf  77 -> PSGlyf Name # 75, name= 'uni0798'
+	Glyf  78 -> PSGlyf Name # 76, name= 'uni0799'
+	Glyf  79 -> PSGlyf Name # 77, name= 'uni079A'
+	Glyf  80 -> PSGlyf Name # 78, name= 'uni079B'
+	Glyf  81 -> PSGlyf Name # 79, name= 'uni079C'
+	Glyf  82 -> PSGlyf Name # 80, name= 'uni079D'
+	Glyf  83 -> PSGlyf Name # 81, name= 'uni079E'
+	Glyf  84 -> PSGlyf Name # 82, name= 'uni079F'
+	Glyf  85 -> PSGlyf Name # 83, name= 'uni07A0'
+	Glyf  86 -> PSGlyf Name # 84, name= 'uni07A1'
+	Glyf  87 -> PSGlyf Name # 85, name= 'uni07A2'
+	Glyf  88 -> PSGlyf Name # 86, name= 'uni07A3'
+	Glyf  89 -> PSGlyf Name # 87, name= 'uni07A4'
+	Glyf  90 -> PSGlyf Name # 88, name= 'uni07A5'
+	Glyf  91 -> PSGlyf Name # 89, name= 'uni07A6'
+	Glyf  92 -> PSGlyf Name # 90, name= 'uni07A7'
+	Glyf  93 -> PSGlyf Name # 91, name= 'uni07A8'
+	Glyf  94 -> PSGlyf Name # 92, name= 'uni07A9'
+	Glyf  95 -> PSGlyf Name # 93, name= 'uni07AA'
+	Glyf  96 -> PSGlyf Name # 94, name= 'uni07AB'
+	Glyf  97 -> PSGlyf Name # 95, name= 'uni07AC'
+	Glyf  98 -> PSGlyf Name # 96, name= 'uni07AD'
+	Glyf  99 -> PSGlyf Name # 97, name= 'uni07AE'
+	Glyf 100 -> PSGlyf Name # 98, name= 'uni07AF'
+	Glyf 101 -> PSGlyf Name # 99, name= 'uni07B0'
+	Glyf 102 -> PSGlyf Name # 100, name= 'uni07B1'
+	Glyf 103 -> PSGlyf Name # 117, name= 'DotAbove'
+	Glyf 104 -> PSGlyf Name # 101, name= 'DotBelow'
+	Glyf 105 -> PSGlyf Name # 102, name= 'TwoDots'
+	Glyf 106 -> PSGlyf Name # 103, name= 'ThreeDots'
+	Glyf 107 -> PSGlyf Name # 104, name= 'uni25CC'
+	Glyf 108 -> PSGlyf Name # 105, name= 'uniFDF2'
+	Glyf 109 -> PSGlyf Name # 106, name= 'uni07A6nsp'
+	Glyf 110 -> PSGlyf Name # 107, name= 'uni07A7nsp'
+	Glyf 111 -> PSGlyf Name # 108, name= 'uni07A8nsp'
+	Glyf 112 -> PSGlyf Name # 109, name= 'uni07A9nsp'
+	Glyf 113 -> PSGlyf Name # 110, name= 'uni07AAnsp'
+	Glyf 114 -> PSGlyf Name # 111, name= 'uni07ABnsp'
+	Glyf 115 -> PSGlyf Name # 112, name= 'uni07ACnsp'
+	Glyf 116 -> PSGlyf Name # 113, name= 'uni07ADnsp'
+	Glyf 117 -> PSGlyf Name # 114, name= 'uni07AEnsp'
+	Glyf 118 -> PSGlyf Name # 115, name= 'uni07AFnsp'
+	Glyf 119 -> PSGlyf Name # 116, name= 'uni07B0nsp'
+
+	Full List of PSGlyf Names
+	-------------------------
+	PSGlyf Name #   1: space
+	PSGlyf Name #   2: exclam
+	PSGlyf Name #   3: quotedbl
+	PSGlyf Name #   4: numbersign
+	PSGlyf Name #   5: dollar
+	PSGlyf Name #   6: percent
+	PSGlyf Name #   7: ampersand
+	PSGlyf Name #   8: quotesingle
+	PSGlyf Name #   9: parenleft
+	PSGlyf Name #  10: parenright
+	PSGlyf Name #  11: asterisk
+	PSGlyf Name #  12: plus
+	PSGlyf Name #  13: comma
+	PSGlyf Name #  14: hyphen
+	PSGlyf Name #  15: period
+	PSGlyf Name #  16: slash
+	PSGlyf Name #  17: zero
+	PSGlyf Name #  18: one
+	PSGlyf Name #  19: two
+	PSGlyf Name #  20: three
+	PSGlyf Name #  21: four
+	PSGlyf Name #  22: five
+	PSGlyf Name #  23: six
+	PSGlyf Name #  24: seven
+	PSGlyf Name #  25: eight
+	PSGlyf Name #  26: nine
+	PSGlyf Name #  27: colon
+	PSGlyf Name #  28: semicolon
+	PSGlyf Name #  29: less
+	PSGlyf Name #  30: equal
+	PSGlyf Name #  31: greater
+	PSGlyf Name #  32: bracketleft
+	PSGlyf Name #  33: backslash
+	PSGlyf Name #  34: bracketright
+	PSGlyf Name #  35: braceleft
+	PSGlyf Name #  36: bar
+	PSGlyf Name #  37: braceright
+	PSGlyf Name #  38: bullet
+	PSGlyf Name #  39: guillemotleft
+	PSGlyf Name #  40: guillemotright
+	PSGlyf Name #  41: endash
+	PSGlyf Name #  42: emdash
+	PSGlyf Name #  43: quotedblleft
+	PSGlyf Name #  44: quotedblright
+	PSGlyf Name #  45: quoteleft
+	PSGlyf Name #  46: quoteright
+	PSGlyf Name #  47: uni00B7
+	PSGlyf Name #  48: afii57388
+	PSGlyf Name #  49: afii57403
+	PSGlyf Name #  50: afii57407
+	PSGlyf Name #  51: uni0780
+	PSGlyf Name #  52: uni0781
+	PSGlyf Name #  53: uni0782
+	PSGlyf Name #  54: uni0783
+	PSGlyf Name #  55: uni0784
+	PSGlyf Name #  56: uni0785
+	PSGlyf Name #  57: uni0786
+	PSGlyf Name #  58: uni0787
+	PSGlyf Name #  59: uni0788
+	PSGlyf Name #  60: uni0789
+	PSGlyf Name #  61: uni078A
+	PSGlyf Name #  62: uni078B
+	PSGlyf Name #  63: uni078C
+	PSGlyf Name #  64: uni078D
+	PSGlyf Name #  65: uni078E
+	PSGlyf Name #  66: uni078F
+	PSGlyf Name #  67: uni0790
+	PSGlyf Name #  68: uni0791
+	PSGlyf Name #  69: uni0792
+	PSGlyf Name #  70: uni0793
+	PSGlyf Name #  71: uni0794
+	PSGlyf Name #  72: uni0795
+	PSGlyf Name #  73: uni0796
+	PSGlyf Name #  74: uni0797
+	PSGlyf Name #  75: uni0798
+	PSGlyf Name #  76: uni0799
+	PSGlyf Name #  77: uni079A
+	PSGlyf Name #  78: uni079B
+	PSGlyf Name #  79: uni079C
+	PSGlyf Name #  80: uni079D
+	PSGlyf Name #  81: uni079E
+	PSGlyf Name #  82: uni079F
+	PSGlyf Name #  83: uni07A0
+	PSGlyf Name #  84: uni07A1
+	PSGlyf Name #  85: uni07A2
+	PSGlyf Name #  86: uni07A3
+	PSGlyf Name #  87: uni07A4
+	PSGlyf Name #  88: uni07A5
+	PSGlyf Name #  89: uni07A6
+	PSGlyf Name #  90: uni07A7
+	PSGlyf Name #  91: uni07A8
+	PSGlyf Name #  92: uni07A9
+	PSGlyf Name #  93: uni07AA
+	PSGlyf Name #  94: uni07AB
+	PSGlyf Name #  95: uni07AC
+	PSGlyf Name #  96: uni07AD
+	PSGlyf Name #  97: uni07AE
+	PSGlyf Name #  98: uni07AF
+	PSGlyf Name #  99: uni07B0
+	PSGlyf Name # 100: uni07B1
+	PSGlyf Name # 101: DotBelow
+	PSGlyf Name # 102: TwoDots
+	PSGlyf Name # 103: ThreeDots
+	PSGlyf Name # 104: uni25CC
+	PSGlyf Name # 105: uniFDF2
+	PSGlyf Name # 106: uni07A6nsp
+	PSGlyf Name # 107: uni07A7nsp
+	PSGlyf Name # 108: uni07A8nsp
+	PSGlyf Name # 109: uni07A9nsp
+	PSGlyf Name # 110: uni07AAnsp
+	PSGlyf Name # 111: uni07ABnsp
+	PSGlyf Name # 112: uni07ACnsp
+	PSGlyf Name # 113: uni07ADnsp
+	PSGlyf Name # 114: uni07AEnsp
+	PSGlyf Name # 115: uni07AFnsp
+	PSGlyf Name # 116: uni07B0nsp
+	PSGlyf Name # 117: DotAbove
+
+'cmap' Table - Character To Index Map
+-------------------------------------
+Size = 466 bytes
+  'cmap' version:  0
+  numTables:       2
+  
+Subtable  1.   Platform ID:   1
+               Specific ID:   0
+               'cmap' Offset: 0x00000014
+	      ->Format:	0 : Byte encoding table
+		Length:		262
+		Version:	0
+
+		Char   0 -> Index 0
+		Char   1 -> Index 0
+		Char   2 -> Index 0
+		Char   3 -> Index 0
+		Char   4 -> Index 0
+		Char   5 -> Index 0
+		Char   6 -> Index 0
+		Char   7 -> Index 0
+		Char   8 -> Index 0
+		Char   9 -> Index 0
+		Char  10 -> Index 0
+		Char  11 -> Index 0
+		Char  12 -> Index 0
+		Char  13 -> Index 0
+		Char  14 -> Index 0
+		Char  15 -> Index 0
+		Char  16 -> Index 0
+		Char  17 -> Index 0
+		Char  18 -> Index 0
+		Char  19 -> Index 0
+		Char  20 -> Index 0
+		Char  21 -> Index 0
+		Char  22 -> Index 0
+		Char  23 -> Index 0
+		Char  24 -> Index 0
+		Char  25 -> Index 0
+		Char  26 -> Index 0
+		Char  27 -> Index 0
+		Char  28 -> Index 0
+		Char  29 -> Index 0
+		Char  30 -> Index 0
+		Char  31 -> Index 0
+		Char  32 -> Index 3
+		Char  33 -> Index 4
+		Char  34 -> Index 5
+		Char  35 -> Index 6
+		Char  36 -> Index 7
+		Char  37 -> Index 8
+		Char  38 -> Index 9
+		Char  39 -> Index 10
+		Char  40 -> Index 11
+		Char  41 -> Index 12
+		Char  42 -> Index 13
+		Char  43 -> Index 14
+		Char  44 -> Index 15
+		Char  45 -> Index 16
+		Char  46 -> Index 17
+		Char  47 -> Index 18
+		Char  48 -> Index 19
+		Char  49 -> Index 20
+		Char  50 -> Index 21
+		Char  51 -> Index 22
+		Char  52 -> Index 23
+		Char  53 -> Index 24
+		Char  54 -> Index 25
+		Char  55 -> Index 26
+		Char  56 -> Index 27
+		Char  57 -> Index 28
+		Char  58 -> Index 29
+		Char  59 -> Index 30
+		Char  60 -> Index 31
+		Char  61 -> Index 32
+		Char  62 -> Index 33
+		Char  63 -> Index 0
+		Char  64 -> Index 0
+		Char  65 -> Index 0
+		Char  66 -> Index 0
+		Char  67 -> Index 0
+		Char  68 -> Index 0
+		Char  69 -> Index 0
+		Char  70 -> Index 0
+		Char  71 -> Index 0
+		Char  72 -> Index 0
+		Char  73 -> Index 0
+		Char  74 -> Index 0
+		Char  75 -> Index 0
+		Char  76 -> Index 0
+		Char  77 -> Index 0
+		Char  78 -> Index 0
+		Char  79 -> Index 0
+		Char  80 -> Index 0
+		Char  81 -> Index 0
+		Char  82 -> Index 0
+		Char  83 -> Index 0
+		Char  84 -> Index 0
+		Char  85 -> Index 0
+		Char  86 -> Index 0
+		Char  87 -> Index 0
+		Char  88 -> Index 0
+		Char  89 -> Index 0
+		Char  90 -> Index 0
+		Char  91 -> Index 34
+		Char  92 -> Index 35
+		Char  93 -> Index 36
+		Char  94 -> Index 0
+		Char  95 -> Index 0
+		Char  96 -> Index 0
+		Char  97 -> Index 0
+		Char  98 -> Index 0
+		Char  99 -> Index 0
+		Char 100 -> Index 0
+		Char 101 -> Index 0
+		Char 102 -> Index 0
+		Char 103 -> Index 0
+		Char 104 -> Index 0
+		Char 105 -> Index 0
+		Char 106 -> Index 0
+		Char 107 -> Index 0
+		Char 108 -> Index 0
+		Char 109 -> Index 0
+		Char 110 -> Index 0
+		Char 111 -> Index 0
+		Char 112 -> Index 0
+		Char 113 -> Index 0
+		Char 114 -> Index 0
+		Char 115 -> Index 0
+		Char 116 -> Index 0
+		Char 117 -> Index 0
+		Char 118 -> Index 0
+		Char 119 -> Index 0
+		Char 120 -> Index 0
+		Char 121 -> Index 0
+		Char 122 -> Index 0
+		Char 123 -> Index 37
+		Char 124 -> Index 38
+		Char 125 -> Index 39
+		Char 126 -> Index 0
+		Char 127 -> Index 0
+		Char 128 -> Index 0
+		Char 129 -> Index 0
+		Char 130 -> Index 0
+		Char 131 -> Index 0
+		Char 132 -> Index 0
+		Char 133 -> Index 0
+		Char 134 -> Index 0
+		Char 135 -> Index 0
+		Char 136 -> Index 0
+		Char 137 -> Index 0
+		Char 138 -> Index 0
+		Char 139 -> Index 0
+		Char 140 -> Index 0
+		Char 141 -> Index 0
+		Char 142 -> Index 0
+		Char 143 -> Index 0
+		Char 144 -> Index 0
+		Char 145 -> Index 0
+		Char 146 -> Index 0
+		Char 147 -> Index 0
+		Char 148 -> Index 0
+		Char 149 -> Index 0
+		Char 150 -> Index 0
+		Char 151 -> Index 0
+		Char 152 -> Index 0
+		Char 153 -> Index 0
+		Char 154 -> Index 0
+		Char 155 -> Index 0
+		Char 156 -> Index 0
+		Char 157 -> Index 0
+		Char 158 -> Index 0
+		Char 159 -> Index 0
+		Char 160 -> Index 0
+		Char 161 -> Index 0
+		Char 162 -> Index 0
+		Char 163 -> Index 0
+		Char 164 -> Index 0
+		Char 165 -> Index 40
+		Char 166 -> Index 0
+		Char 167 -> Index 0
+		Char 168 -> Index 0
+		Char 169 -> Index 0
+		Char 170 -> Index 0
+		Char 171 -> Index 0
+		Char 172 -> Index 0
+		Char 173 -> Index 0
+		Char 174 -> Index 0
+		Char 175 -> Index 0
+		Char 176 -> Index 0
+		Char 177 -> Index 0
+		Char 178 -> Index 0
+		Char 179 -> Index 0
+		Char 180 -> Index 0
+		Char 181 -> Index 0
+		Char 182 -> Index 0
+		Char 183 -> Index 0
+		Char 184 -> Index 0
+		Char 185 -> Index 0
+		Char 186 -> Index 0
+		Char 187 -> Index 0
+		Char 188 -> Index 0
+		Char 189 -> Index 0
+		Char 190 -> Index 0
+		Char 191 -> Index 0
+		Char 192 -> Index 0
+		Char 193 -> Index 0
+		Char 194 -> Index 0
+		Char 195 -> Index 0
+		Char 196 -> Index 0
+		Char 197 -> Index 0
+		Char 198 -> Index 0
+		Char 199 -> Index 41
+		Char 200 -> Index 42
+		Char 201 -> Index 0
+		Char 202 -> Index 0
+		Char 203 -> Index 0
+		Char 204 -> Index 0
+		Char 205 -> Index 0
+		Char 206 -> Index 0
+		Char 207 -> Index 0
+		Char 208 -> Index 43
+		Char 209 -> Index 44
+		Char 210 -> Index 45
+		Char 211 -> Index 46
+		Char 212 -> Index 47
+		Char 213 -> Index 48
+		Char 214 -> Index 0
+		Char 215 -> Index 0
+		Char 216 -> Index 0
+		Char 217 -> Index 0
+		Char 218 -> Index 0
+		Char 219 -> Index 0
+		Char 220 -> Index 0
+		Char 221 -> Index 0
+		Char 222 -> Index 0
+		Char 223 -> Index 0
+		Char 224 -> Index 0
+		Char 225 -> Index 49
+		Char 226 -> Index 0
+		Char 227 -> Index 0
+		Char 228 -> Index 0
+		Char 229 -> Index 0
+		Char 230 -> Index 0
+		Char 231 -> Index 0
+		Char 232 -> Index 0
+		Char 233 -> Index 0
+		Char 234 -> Index 0
+		Char 235 -> Index 0
+		Char 236 -> Index 0
+		Char 237 -> Index 0
+		Char 238 -> Index 0
+		Char 239 -> Index 0
+		Char 240 -> Index 0
+		Char 241 -> Index 0
+		Char 242 -> Index 0
+		Char 243 -> Index 0
+		Char 244 -> Index 0
+		Char 245 -> Index 0
+		Char 246 -> Index 0
+		Char 247 -> Index 0
+		Char 248 -> Index 0
+		Char 249 -> Index 0
+		Char 250 -> Index 0
+		Char 251 -> Index 0
+		Char 252 -> Index 0
+		Char 253 -> Index 0
+		Char 254 -> Index 0
+		Char 255 -> Index 0
+  
+Subtable  2.   Platform ID:   3
+               Specific ID:   1
+               'cmap' Offset: 0x0000011A
+	      ->Format:	4 : Segment mapping to delta values
+		Length:		184
+		Version:	0
+		segCount:	18  (X2 = 36)
+		searchRange:	32
+		entrySelector:	4
+		rangeShift:	4
+		Seg   1 : St = 0020, En = 003E, D =    -29, RO =     0, gId# = N/A
+		Seg   2 : St = 005B, En = 005D, D =    -57, RO =     0, gId# = N/A
+		Seg   3 : St = 007B, En = 007D, D =    -86, RO =     0, gId# = N/A
+		Seg   4 : St = 00AB, En = 00AB, D =   -130, RO =     0, gId# = N/A
+		Seg   5 : St = 00B7, En = 00B7, D =   -134, RO =     0, gId# = N/A
+		Seg   6 : St = 00BB, En = 00BB, D =   -145, RO =     0, gId# = N/A
+		Seg   7 : St = 060C, En = 060C, D =  -1498, RO =     0, gId# = N/A
+		Seg   8 : St = 061B, En = 061B, D =  -1512, RO =     0, gId# = N/A
+		Seg   9 : St = 061F, En = 061F, D =  -1515, RO =     0, gId# = N/A
+		Seg  10 : St = 0780, En = 07A5, D =  -1867, RO =     0, gId# = N/A
+		Seg  11 : St = 07A6, En = 07B1, D =      0, RO =    16, gId# = 0
+		Seg  12 : St = 2013, En = 2014, D =  -8168, RO =     0, gId# = N/A
+		Seg  13 : St = 2018, En = 2019, D =  -8169, RO =     0, gId# = N/A
+		Seg  14 : St = 201C, En = 201D, D =  -8175, RO =     0, gId# = N/A
+		Seg  15 : St = 2022, En = 2022, D =  -8186, RO =     0, gId# = N/A
+		Seg  16 : St = 25CC, En = 25CC, D =  -9569, RO =     0, gId# = N/A
+		Seg  17 : St = FDF2, En = FDF2, D =    634, RO =     0, gId# = N/A
+		Seg  18 : St = FFFF, En = FFFF, D =      1, RO =     0, gId# = N/A
+		glyphIdArray[0] =  109 (Offset = 00A0)
+		glyphIdArray[1] =  110 (Offset = 00A2)
+		glyphIdArray[2] =  111 (Offset = 00A4)
+		glyphIdArray[3] =  112 (Offset = 00A6)
+		glyphIdArray[4] =  113 (Offset = 00A8)
+		glyphIdArray[5] =  114 (Offset = 00AA)
+		glyphIdArray[6] =  115 (Offset = 00AC)
+		glyphIdArray[7] =  116 (Offset = 00AE)
+		glyphIdArray[8] =  117 (Offset = 00B0)
+		glyphIdArray[9] =  118 (Offset = 00B2)
+		glyphIdArray[10] =  119 (Offset = 00B4)
+		glyphIdArray[11] =  102 (Offset = 00B6)
+
+		Which Means:
+		   1. Char 0020 -> Index 3
+		      Char 0021 -> Index 4
+		      Char 0022 -> Index 5
+		      Char 0023 -> Index 6
+		      Char 0024 -> Index 7
+		      Char 0025 -> Index 8
+		      Char 0026 -> Index 9
+		      Char 0027 -> Index 10
+		      Char 0028 -> Index 11
+		      Char 0029 -> Index 12
+		      Char 002A -> Index 13
+		      Char 002B -> Index 14
+		      Char 002C -> Index 15
+		      Char 002D -> Index 16
+		      Char 002E -> Index 17
+		      Char 002F -> Index 18
+		      Char 0030 -> Index 19
+		      Char 0031 -> Index 20
+		      Char 0032 -> Index 21
+		      Char 0033 -> Index 22
+		      Char 0034 -> Index 23
+		      Char 0035 -> Index 24
+		      Char 0036 -> Index 25
+		      Char 0037 -> Index 26
+		      Char 0038 -> Index 27
+		      Char 0039 -> Index 28
+		      Char 003A -> Index 29
+		      Char 003B -> Index 30
+		      Char 003C -> Index 31
+		      Char 003D -> Index 32
+		      Char 003E -> Index 33
+		   2. Char 005B -> Index 34
+		      Char 005C -> Index 35
+		      Char 005D -> Index 36
+		   3. Char 007B -> Index 37
+		      Char 007C -> Index 38
+		      Char 007D -> Index 39
+		   4. Char 00AB -> Index 41
+		   5. Char 00B7 -> Index 49
+		   6. Char 00BB -> Index 42
+		   7. Char 060C -> Index 50
+		   8. Char 061B -> Index 51
+		   9. Char 061F -> Index 52
+		  10. Char 0780 -> Index 53
+		      Char 0781 -> Index 54
+		      Char 0782 -> Index 55
+		      Char 0783 -> Index 56
+		      Char 0784 -> Index 57
+		      Char 0785 -> Index 58
+		      Char 0786 -> Index 59
+		      Char 0787 -> Index 60
+		      Char 0788 -> Index 61
+		      Char 0789 -> Index 62
+		      Char 078A -> Index 63
+		      Char 078B -> Index 64
+		      Char 078C -> Index 65
+		      Char 078D -> Index 66
+		      Char 078E -> Index 67
+		      Char 078F -> Index 68
+		      Char 0790 -> Index 69
+		      Char 0791 -> Index 70
+		      Char 0792 -> Index 71
+		      Char 0793 -> Index 72
+		      Char 0794 -> Index 73
+		      Char 0795 -> Index 74
+		      Char 0796 -> Index 75
+		      Char 0797 -> Index 76
+		      Char 0798 -> Index 77
+		      Char 0799 -> Index 78
+		      Char 079A -> Index 79
+		      Char 079B -> Index 80
+		      Char 079C -> Index 81
+		      Char 079D -> Index 82
+		      Char 079E -> Index 83
+		      Char 079F -> Index 84
+		      Char 07A0 -> Index 85
+		      Char 07A1 -> Index 86
+		      Char 07A2 -> Index 87
+		      Char 07A3 -> Index 88
+		      Char 07A4 -> Index 89
+		      Char 07A5 -> Index 90
+		  11. Char 07A6 -> Index 109
+		      Char 07A7 -> Index 110
+		      Char 07A8 -> Index 111
+		      Char 07A9 -> Index 112
+		      Char 07AA -> Index 113
+		      Char 07AB -> Index 114
+		      Char 07AC -> Index 115
+		      Char 07AD -> Index 116
+		      Char 07AE -> Index 117
+		      Char 07AF -> Index 118
+		      Char 07B0 -> Index 119
+		      Char 07B1 -> Index 102
+		  12. Char 2013 -> Index 43
+		      Char 2014 -> Index 44
+		  13. Char 2018 -> Index 47
+		      Char 2019 -> Index 48
+		  14. Char 201C -> Index 45
+		      Char 201D -> Index 46
+		  15. Char 2022 -> Index 40
+		  16. Char 25CC -> Index 107
+		  17. Char FDF2 -> Index 108
+
+'cvt ' Table - Control Value Table
+----------------------------------
+Size = 520 bytes, 260 entries
+	Values
+	------
+	   0: 0
+	   1: 0
+	   2: 0
+	   3: 0
+	   4: 0
+	   5: 0
+	   6: 1456
+	   7: 8
+	   8: 0
+	   9: 0
+	  10: 0
+	  11: 0
+	  12: 0
+	  13: 0
+	  14: 0
+	  15: 821
+	  16: 41
+	  17: 187
+	  18: 0
+	  19: 0
+	  20: 0
+	  21: 0
+	  22: 0
+	  23: 0
+	  24: 0
+	  25: -8
+	  26: 0
+	  27: -461
+	  28: 0
+	  29: 0
+	  30: 0
+	  31: 0
+	  32: 0
+	  33: 0
+	  34: 0
+	  35: 0
+	  36: 0
+	  37: 0
+	  38: 0
+	  39: 0
+	  40: 0
+	  41: 0
+	  42: 0
+	  43: 0
+	  44: 0
+	  45: 0
+	  46: 0
+	  47: 0
+	  48: 0
+	  49: 0
+	  50: 0
+	  51: 0
+	  52: 0
+	  53: 0
+	  54: 0
+	  55: 0
+	  56: 0
+	  57: 0
+	  58: 0
+	  59: 0
+	  60: 0
+	  61: 0
+	  62: 0
+	  63: 0
+	  64: 0
+	  65: 2048
+	  66: 0
+	  67: 2048
+	  68: 0
+	  69: 1024
+	  70: 0
+	  71: 0
+	  72: 0
+	  73: 0
+	  74: 0
+	  75: 0
+	  76: 0
+	  77: 0
+	  78: 0
+	  79: 0
+	  80: 0
+	  81: 0
+	  82: 0
+	  83: 0
+	  84: 0
+	  85: 0
+	  86: 0
+	  87: 0
+	  88: 0
+	  89: 0
+	  90: 0
+	  91: 0
+	  92: 0
+	  93: 0
+	  94: 0
+	  95: 0
+	  96: 0
+	  97: 0
+	  98: 0
+	  99: 0
+	 100: 0
+	 101: 0
+	 102: 0
+	 103: 0
+	 104: 0
+	 105: 0
+	 106: 0
+	 107: 0
+	 108: 0
+	 109: 0
+	 110: 0
+	 111: 0
+	 112: 0
+	 113: 0
+	 114: 0
+	 115: 0
+	 116: 0
+	 117: 0
+	 118: 0
+	 119: 0
+	 120: 0
+	 121: 0
+	 122: 0
+	 123: 0
+	 124: 0
+	 125: 0
+	 126: 0
+	 127: 0
+	 128: 0
+	 129: 0
+	 130: 0
+	 131: 0
+	 132: 0
+	 133: 0
+	 134: 0
+	 135: 0
+	 136: 0
+	 137: 195
+	 138: 184
+	 139: 172
+	 140: 142
+	 141: 195
+	 142: 172
+	 143: 0
+	 144: 0
+	 145: 0
+	 146: 0
+	 147: 0
+	 148: 0
+	 149: 0
+	 150: 0
+	 151: 0
+	 152: 0
+	 153: 172
+	 154: 166
+	 155: 0
+	 156: 139
+	 157: 0
+	 158: 0
+	 159: 0
+	 160: 0
+	 161: 0
+	 162: 0
+	 163: 0
+	 164: 0
+	 165: 0
+	 166: 0
+	 167: 0
+	 168: 422
+	 169: 0
+	 170: 0
+	 171: 0
+	 172: 0
+	 173: 0
+	 174: 0
+	 175: 299
+	 176: 299
+	 177: 184
+	 178: 567
+	 179: 0
+	 180: 39
+	 181: 0
+	 182: 0
+	 183: 0
+	 184: 0
+	 185: 0
+	 186: 0
+	 187: 0
+	 188: 0
+	 189: 0
+	 190: 0
+	 191: 0
+	 192: 0
+	 193: 0
+	 194: 0
+	 195: 0
+	 196: 0
+	 197: 0
+	 198: 0
+	 199: 0
+	 200: 0
+	 201: 0
+	 202: 0
+	 203: 0
+	 204: 0
+	 205: 0
+	 206: 0
+	 207: 0
+	 208: 0
+	 209: 0
+	 210: 0
+	 211: 0
+	 212: 0
+	 213: 0
+	 214: 0
+	 215: 0
+	 216: 0
+	 217: 0
+	 218: 0
+	 219: 0
+	 220: 0
+	 221: 0
+	 222: 0
+	 223: 0
+	 224: 0
+	 225: 157
+	 226: 434
+	 227: 612
+	 228: 821
+	 229: -184
+	 230: -348
+	 231: 205
+	 232: 184
+	 233: 172
+	 234: 166
+	 235: 158
+	 236: 150
+	 237: 140
+	 238: -313
+	 239: -235
+	 240: -115
+	 241: -94
+	 242: 131
+	 243: -66
+	 244: -52
+	 245: -37
+	 246: -24
+	 247: 205
+	 248: 198
+	 249: 193
+	 250: 188
+	 251: 180
+	 252: 152
+	 253: 145
+	 254: 60
+	 255: 250
+	 256: 61
+	 257: 61
+	 258: 1100
+	 259: 1400
+
+'prep' Table - Control Value Program
+------------------------------------
+Size = 780 bytes
+	00000: NPUSHB      (83):   223   224    22    23    28   212   213    22    23    28 
+	                           123   124    22    27   123   124    25   209   210    22 
+	                            23    28   118   119    22    23    28   109   112    22 
+	                            23    28   108   111    22    23    28   107   110    22 
+	                            27   107   110   127   114    26   116   117    20    21 
+	                            28   103   106    20    21    28   102   105    20    21 
+	                            28   101   104    20    27   101   104   133   113    26 
+	                            25   115    22   122    67    25    33   121    67    25 
+	                            33     2    15 
+	00085: NPUSHW      (10):   259    32   259     2    32   258   112   258   175   258 
+	00107: NPUSHB      (26):     3   237   235     3    43   236   235     3    43   234 
+	                           233     3    43   231   232     3    43   232   233     3 
+	                            43    63   178   128   178     2 
+	00135: PUSHW[1]            -64 
+	00138: PUSHB[4]            176    31    36    57 
+	00143: PUSHW[1]            -64 
+	00146: NPUSHB      (59):   176    24    26    57    32   176     1   154   153     4 
+	                            43   145   147     1    43   147   149     2    43   150 
+	                           149     1    43   143   252     1   191   252     1   250 
+	                           251     5    43   249   251     5    43   247   248     2 
+	                            43   248   251     5    43   251   138     5    43    11 
+	                           180    27   180    43   180     3   128   177     1 
+	00207: PUSHW[1]            -64 
+	00210: PUSHB[4]            175    31    36    57 
+	00215: PUSHW[1]            -64 
+	00218: NPUSHB     (189):   175    24    26    57    32   175     1   142   139    10 
+	                            43   141   137    10    43   139   137     3    43   138 
+	                           137     3    43   118   137   134   137     2   129   127 
+	                             1    43   125   127     1    43   127   133     2    43 
+	                           136   133     1    43   135   133     1    43   132   133 
+	                             1    43   131   133     1    43    27    55    21    24 
+	                            54    21    21    53    21    18    52    21    15    51 
+	                            21    12    50    21     9    49    21     6    48    21 
+	                             3    47    21     0    46    21    38    39    14    40 
+	                            39    15    42    43    14    44    43    15    34    35 
+	                            14    36    35    15    30    31    14    32    31    15 
+	                            15    16    17    12     9    10    11    12     6     7 
+	                             8    12     3     4     5    12     0     1     2    12 
+	                             9     6    73     6   121     6     3    27     1    29 
+	                            13    24     7    26    13    21    16    23    13    18 
+	                             4    20    13    44    60    42    60    40    60    38 
+	                            60    36    60    34    60    32    60    30    60    27 
+	                            60    24    60    21    60    18    60    15    60     9 
+	                            60     6    60     3    60     0    60    80    51 
+	00409: SVTCA[x-axis] 
+	00410: PUSHB[1]             18 
+	00412: MPPEM      
+	00413: SVTCA[y-axis] 
+	00414: MPPEM      
+	00415: EQ         
+	00416: WS         
+	00417: PUSHB[1]             19 
+	00419: SVTCA[x-axis] 
+	00420: MPPEM      
+	00421: SVTCA[y-axis] 
+	00422: MPPEM      
+	00423: GTEQ       
+	00424: WS         
+	00425: PUSHB[1]             51 
+	00427: CALL       
+	00428: MPPEM      
+	00429: PUSHW[1]            800 
+	00432: GT         
+	00433: PUSHB[1]             50 
+	00435: CALL       
+	00436: MPPEM      
+	00437: PUSHB[1]              9 
+	00439: LT         
+	00440: OR         
+	00441: IF         
+	00442: PUSHB[2]              1     1 
+	00445: INSTCTRL   
+	00446: EIF        
+	00447: PUSHB[1]             51 
+	00449: CALL       
+	00450: PUSHB[1]              2 
+	00452: GETINFO    
+	00453: PUSHW[1]            256 
+	00456: EQ         
+	00457: PUSHB[1]              4 
+	00459: GETINFO    
+	00460: PUSHW[1]            512 
+	00463: EQ         
+	00464: PUSHB[1]             18 
+	00466: RS         
+	00467: AND        
+	00468: OR         
+	00469: IF         
+	00470: PUSHW[1]            281 
+	00473: PUSHB[2]              1     1 
+	00476: INSTCTRL   
+	00477: SCANCTRL   
+	00478: ELSE       
+	00479: PUSHW[2]              1   256 
+	00484: PUSHB[1]             75 
+	00486: ADD        
+	00487: SCANCTRL   
+	00488: SCANTYPE   
+	00489: EIF        
+	00490: PUSHB[2]              2     0 
+	00493: WS         
+	00494: PUSHB[1]              1 
+	00496: GETINFO    
+	00497: PUSHB[1]             35 
+	00499: GTEQ       
+	00500: IF         
+	00501: PUSHB[1]              1 
+	00503: GETINFO    
+	00504: PUSHB[1]             64 
+	00506: LTEQ       
+	00507: IF         
+	00508: PUSHB[1]             32 
+	00510: GETINFO    
+	00511: PUSHW[1]           4096 
+	00514: EQ         
+	00515: IF         
+	00516: PUSHB[2]              2     1 
+	00519: WS         
+	00520: EIF        
+	00521: EIF        
+	00522: EIF        
+	00523: PUSHB[1]             55 
+	00525: MPPEM      
+	00526: LT         
+	00527: IF         
+	00528: PUSHB[2]              2     0 
+	00531: WS         
+	00532: EIF        
+	00533: CALL       
+	00534: SCVTCI     
+	00535: PUSHB[1]            100 
+	00537: MPPEM      
+	00538: GTEQ       
+	00539: IF         
+	00540: PUSHB[1]            128 
+	00542: SCVTCI     
+	00543: EIF        
+	00544: PUSHB[1]             50 
+	00546: MPPEM      
+	00547: GTEQ       
+	00548: IF         
+	00549: PUSHB[1]            144 
+	00551: SCVTCI     
+	00552: EIF        
+	00553: SVTCA[y-axis] 
+	00554: MPPEM      
+	00555: PUSHB[1]             58 
+	00557: LTEQ       
+	00558: PUSHB[1]             27 
+	00560: SWAP       
+	00561: WS         
+	00562: CALL       
+	00563: CALL       
+	00564: CALL       
+	00565: CALL       
+	00566: CALL       
+	00567: CALL       
+	00568: CALL       
+	00569: CALL       
+	00570: CALL       
+	00571: CALL       
+	00572: CALL       
+	00573: CALL       
+	00574: CALL       
+	00575: CALL       
+	00576: CALL       
+	00577: CALL       
+	00578: CALL       
+	00579: CALL       
+	00580: CALL       
+	00581: CALL       
+	00582: CALL       
+	00583: DELTAC1    
+	00584: CALL       
+	00585: CALL       
+	00586: CALL       
+	00587: CALL       
+	00588: CALL       
+	00589: CALL       
+	00590: CALL       
+	00591: CALL       
+	00592: CALL       
+	00593: CALL       
+	00594: CALL       
+	00595: PUSHB[2]             40    38 
+	00598: RCVT       
+	00599: PUSHB[1]             42 
+	00601: RCVT       
+	00602: SUB        
+	00603: PUSHB[1]             44 
+	00605: RCVT       
+	00606: ADD        
+	00607: WCVTP      
+	00608: CALL       
+	00609: CALL       
+	00610: CALL       
+	00611: CALL       
+	00612: CALL       
+	00613: CALL       
+	00614: CALL       
+	00615: CALL       
+	00616: CALL       
+	00617: CALL       
+	00618: CALL       
+	00619: CALL       
+	00620: SVTCA[x-axis] 
+	00621: CALL       
+	00622: CALL       
+	00623: CALL       
+	00624: CALL       
+	00625: CALL       
+	00626: CALL       
+	00627: CALL       
+	00628: DELTAC1    
+	00629: CALL       
+	00630: CALL       
+	00631: CALL       
+	00632: CALL       
+	00633: DELTAC1    
+	00634: CALL       
+	00635: CALL       
+	00636: DELTAC1    
+	00637: DELTAC1    
+	00638: CALL       
+	00639: CALL       
+	00640: CALL       
+	00641: CALL       
+	00642: CALL       
+	00643: DELTAC1    
+	00644: DELTAC2    
+	00645: SVTCA[y-axis] 
+	00646: CALL       
+	00647: CALL       
+	00648: CALL       
+	00649: CALL       
+	00650: DELTAC1    
+	00651: CALL       
+	00652: CALL       
+	00653: DELTAC1    
+	00654: CALL       
+	00655: CALL       
+	00656: CALL       
+	00657: CALL       
+	00658: CALL       
+	00659: DELTAC1    
+	00660: DELTAC1    
+	00661: SVTCA[x-axis] 
+	00662: RS         
+	00663: IF         
+	00664: ELSE       
+	00665: EIF        
+	00666: CALL       
+	00667: CALL       
+	00668: PUSHB[1]             24 
+	00670: PUSHB[1]             35 
+	00672: MPPEM      
+	00673: GTEQ       
+	00674: WS         
+	00675: CALL       
+	00676: CALL       
+	00677: CALL       
+	00678: CALL       
+	00679: CALL       
+	00680: CALL       
+	00681: CALL       
+	00682: CALL       
+	00683: CALL       
+	00684: CALL       
+	00685: CALL       
+	00686: CALL       
+	00687: CALL       
+	00688: CALL       
+	00689: CALL       
+	00690: CALL       
+	00691: PUSHB[1]            238 
+	00693: DUP        
+	00694: RCVT       
+	00695: ROUND[White] 
+	00696: WCVTP      
+	00697: PUSHB[1]            239 
+	00699: DUP        
+	00700: RCVT       
+	00701: ROUND[White] 
+	00702: WCVTP      
+	00703: PUSHB[1]            240 
+	00705: DUP        
+	00706: RCVT       
+	00707: ROUND[White] 
+	00708: WCVTP      
+	00709: PUSHB[1]            241 
+	00711: DUP        
+	00712: RCVT       
+	00713: ROUND[White] 
+	00714: WCVTP      
+	00715: PUSHB[1]            242 
+	00717: DUP        
+	00718: RCVT       
+	00719: ROUND[White] 
+	00720: WCVTP      
+	00721: PUSHB[1]            243 
+	00723: DUP        
+	00724: RCVT       
+	00725: ROUND[White] 
+	00726: WCVTP      
+	00727: PUSHB[1]            244 
+	00729: DUP        
+	00730: RCVT       
+	00731: ROUND[White] 
+	00732: WCVTP      
+	00733: PUSHB[1]            245 
+	00735: DUP        
+	00736: RCVT       
+	00737: ROUND[White] 
+	00738: WCVTP      
+	00739: PUSHB[1]            246 
+	00741: DUP        
+	00742: RCVT       
+	00743: ROUND[White] 
+	00744: WCVTP      
+	00745: PUSHB[2]              9    50 
+	00748: CALL       
+	00749: MPPEM      
+	00750: PUSHB[1]             80 
+	00752: GT         
+	00753: WS         
+	00754: MPPEM      
+	00755: PUSHB[1]              8 
+	00757: GT         
+	00758: MPPEM      
+	00759: PUSHB[1]              8 
+	00761: LT         
+	00762: OR         
+	00763: PUSHB[1]             26 
+	00765: SWAP       
+	00766: WS         
+	00767: MPPEM      
+	00768: PUSHB[1]            200 
+	00770: GT         
+	00771: MPPEM      
+	00772: PUSHB[1]             54 
+	00774: LT         
+	00775: OR         
+	00776: PUSHB[1]             12 
+	00778: SWAP       
+	00779: WS         
+
+
+'fpgm' Table - Font Program
+---------------------------
+Size = 1978 bytes
+	00000: NPUSHB      (64):    82    73    72    60    59    58    57    56    55    54 
+	                            53    52    51    50    49    48    47    46    45    44 
+	                            43    42    41    40    39    38    37    36    35    34 
+	                            33    32    31    30    29    28    27    26    25    24 
+	                            23    22    21    20    19    18    17    16    15    14 
+	                            13    12    11    10     9     8     7     6     5     4 
+	                             3     2     1     0 
+	00066: FDEF       
+	00067: SVTCA[x-axis] 
+	00068: RTG        
+	00069: PUSHB[1]             24 
+	00071: RS         
+	00072: IF         
+	00073: RCVT       
+	00074: ROUND[White] 
+	00075: PUSHB[1]             25 
+	00077: RS         
+	00078: ADD        
+	00079: PUSHB[1]             12 
+	00081: SWAP       
+	00082: WCVTP      
+	00083: SWAP       
+	00084: SRP0       
+	00085: DUP        
+	00086: PUSHB[1]             12 
+	00088: FLIPOFF    
+	00089: MIRP[srp0,nmd,nrd,0] 
+	00090: FLIPON     
+	00091: MDAP[rd]   
+	00092: PUSHB[1]              0 
+	00094: SRP2       
+	00095: ELSE       
+	00096: POP        
+	00097: SWAP       
+	00098: SRP1       
+	00099: DUP        
+	00100: SHP[rp1,zp0] 
+	00101: MDAP[rd]   
+	00102: EIF        
+	00103: ENDF       
+	00104: FDEF       
+	00105: SVTCA[x-axis] 
+	00106: RTG        
+	00107: PUSHB[1]             24 
+	00109: RS         
+	00110: IF         
+	00111: PUSHB[1]              5 
+	00113: CALL       
+	00114: PUSHB[1]              0 
+	00116: SZP0       
+	00117: MPPEM      
+	00118: PUSHB[1]             20 
+	00120: LT         
+	00121: IF         
+	00122: PUSHB[2]              0    64 
+	00125: SHPIX      
+	00126: EIF        
+	00127: PUSHB[1]              6 
+	00129: CALL       
+	00130: ELSE       
+	00131: POP        
+	00132: SWAP       
+	00133: SRP1       
+	00134: DUP        
+	00135: SHP[rp1,zp0] 
+	00136: MDAP[rd]   
+	00137: EIF        
+	00138: ENDF       
+	00139: FDEF       
+	00140: SVTCA[x-axis] 
+	00141: RTG        
+	00142: PUSHB[1]             24 
+	00144: RS         
+	00145: IF         
+	00146: FLIPOFF    
+	00147: PUSHB[1]              3 
+	00149: CINDEX     
+	00150: SRP0       
+	00151: MIRP[srp0,nmd,nrd,2] 
+	00152: POP        
+	00153: PUSHB[1]              0 
+	00155: SRP2       
+	00156: FLIPON     
+	00157: ELSE       
+	00158: DUP        
+	00159: RCVT       
+	00160: PUSHB[1]              4 
+	00162: CINDEX     
+	00163: PUSHB[1]              4 
+	00165: CINDEX     
+	00166: SWAP       
+	00167: MD[org]    
+	00168: SUB        
+	00169: ABS        
+	00170: PUSHB[1]             40 
+	00172: GT         
+	00173: IF         
+	00174: POP        
+	00175: SWAP       
+	00176: SRP0       
+	00177: MDRP[srp0,nmd,rd,2] 
+	00178: ELSE       
+	00179: PUSHB[1]              3 
+	00181: CINDEX     
+	00182: SRP0       
+	00183: MIRP[srp0,nmd,nrd,2] 
+	00184: POP        
+	00185: PUSHB[1]              0 
+	00187: SRP2       
+	00188: EIF        
+	00189: EIF        
+	00190: ENDF       
+	00191: FDEF       
+	00192: PUSHB[1]             26 
+	00194: RS         
+	00195: IF         
+	00196: POP        
+	00197: POP        
+	00198: ELSE       
+	00199: PUSHB[1]              2 
+	00201: CINDEX     
+	00202: PUSHB[1]              2 
+	00204: CINDEX     
+	00205: MD[cur]    
+	00206: PUSHB[1]              3 
+	00208: CINDEX     
+	00209: PUSHB[1]              3 
+	00211: CINDEX     
+	00212: MD[org]    
+	00213: SUB        
+	00214: DUP        
+	00215: ABS        
+	00216: PUSHB[1]             16 
+	00218: LT         
+	00219: IF         
+	00220: POP        
+	00221: POP        
+	00222: POP        
+	00223: ELSE       
+	00224: PUSHB[1]              3 
+	00226: CINDEX     
+	00227: PUSHB[1]              3 
+	00229: CINDEX     
+	00230: MD[cur]    
+	00231: PUSHB[1]              0 
+	00233: LT         
+	00234: IF         
+	00235: PUSHB[1]              0 
+	00237: LT         
+	00238: IF         
+	00239: PUSHW[1]            -30 
+	00242: SHPIX      
+	00243: POP        
+	00244: ELSE       
+	00245: PUSHB[1]              0 
+	00247: SHPIX      
+	00248: POP        
+	00249: EIF        
+	00250: ELSE       
+	00251: PUSHB[1]              0 
+	00253: GT         
+	00254: IF         
+	00255: PUSHB[1]             30 
+	00257: SHPIX      
+	00258: POP        
+	00259: ELSE       
+	00260: PUSHB[1]              0 
+	00262: SHPIX      
+	00263: POP        
+	00264: EIF        
+	00265: EIF        
+	00266: EIF        
+	00267: EIF        
+	00268: ENDF       
+	00269: FDEF       
+	00270: SVTCA[x-axis] 
+	00271: RTG        
+	00272: PUSHB[1]             24 
+	00274: RS         
+	00275: IF         
+	00276: PUSHB[1]              5 
+	00278: CALL       
+	00279: PUSHB[1]              0 
+	00281: SZP0       
+	00282: MPPEM      
+	00283: PUSHB[1]             20 
+	00285: LT         
+	00286: IF         
+	00287: PUSHW[2]              0   -64 
+	00292: SHPIX      
+	00293: EIF        
+	00294: PUSHB[1]              6 
+	00296: CALL       
+	00297: ELSE       
+	00298: POP        
+	00299: SWAP       
+	00300: SRP1       
+	00301: DUP        
+	00302: SHP[rp1,zp0] 
+	00303: MDAP[rd]   
+	00304: EIF        
+	00305: ENDF       
+	00306: FDEF       
+	00307: FLIPOFF    
+	00308: SVTCA[x-axis] 
+	00309: ROLL       
+	00310: SRP0       
+	00311: PUSHB[2]             12    25 
+	00314: RS         
+	00315: WCVTP      
+	00316: PUSHB[1]              0 
+	00318: SZP1       
+	00319: PUSHB[2]              0    12 
+	00322: MIRP[nrp0,nmd,nrd,2] 
+	00323: PUSHB[1]              0 
+	00325: SZP2       
+	00326: PUSHW[2]              0   -16 
+	00331: SHPIX      
+	00332: SVTCA[y-axis] 
+	00333: PUSHB[1]              0 
+	00335: ALIGNRP    
+	00336: PUSHB[1]             40 
+	00338: CALL       
+	00339: PUSHB[1]              2 
+	00341: CINDEX     
+	00342: SRP0       
+	00343: PUSHB[1]              0 
+	00345: ALIGNRP    
+	00346: ENDF       
+	00347: FDEF       
+	00348: SVTCA[x-axis] 
+	00349: RTG        
+	00350: PUSHB[1]              0 
+	00352: MDAP[rd]   
+	00353: PUSHB[1]              1 
+	00355: SZP1       
+	00356: MIRP[srp0,nmd,nrd,2] 
+	00357: PUSHB[1]              1 
+	00359: SZP0       
+	00360: PUSHB[1]              1 
+	00362: SZP2       
+	00363: FLIPON     
+	00364: PUSHB[1]              0 
+	00366: SRP2       
+	00367: ENDF       
+	00368: FDEF       
+	00369: SVTCA[x-axis] 
+	00370: RTG        
+	00371: PUSHB[1]             24 
+	00373: RS         
+	00374: IF         
+	00375: PUSHB[1]              5 
+	00377: CALL       
+	00378: PUSHB[1]              0 
+	00380: SZP0       
+	00381: PUSHW[2]              0   -32 
+	00386: SHPIX      
+	00387: PUSHB[1]              6 
+	00389: CALL       
+	00390: ELSE       
+	00391: POP        
+	00392: SWAP       
+	00393: SRP1       
+	00394: DUP        
+	00395: SHP[rp1,zp0] 
+	00396: MDAP[rd]   
+	00397: EIF        
+	00398: ENDF       
+	00399: FDEF       
+	00400: SVTCA[x-axis] 
+	00401: RTG        
+	00402: PUSHB[1]             24 
+	00404: RS         
+	00405: IF         
+	00406: RCVT       
+	00407: ABS        
+	00408: ROUND[White] 
+	00409: SWAP       
+	00410: RCVT       
+	00411: ABS        
+	00412: ROUND[Black] 
+	00413: PUSHB[1]             25 
+	00415: RS         
+	00416: ABS        
+	00417: ADD        
+	00418: ADD        
+	00419: PUSHB[1]             12 
+	00421: SWAP       
+	00422: WCVTP      
+	00423: SWAP       
+	00424: SRP0       
+	00425: DUP        
+	00426: PUSHB[1]             12 
+	00428: MIRP[srp0,nmd,nrd,0] 
+	00429: MDAP[rd]   
+	00430: PUSHB[1]              0 
+	00432: SRP2       
+	00433: ELSE       
+	00434: POP        
+	00435: POP        
+	00436: DUP        
+	00437: ROLL       
+	00438: DUP        
+	00439: ROLL       
+	00440: GT         
+	00441: IF         
+	00442: SRP1       
+	00443: SHP[rp1,zp0] 
+	00444: ELSE       
+	00445: POP        
+	00446: POP        
+	00447: EIF        
+	00448: EIF        
+	00449: ENDF       
+	00450: FDEF       
+	00451: SVTCA[x-axis] 
+	00452: MPPEM      
+	00453: PUSHB[1]            200 
+	00455: LTEQ       
+	00456: IF         
+	00457: PUSHB[2]             11    10 
+	00460: RS         
+	00461: SWAP       
+	00462: RS         
+	00463: NEG        
+	00464: SPVFS      
+	00465: EIF        
+	00466: ENDF       
+	00467: FDEF       
+	00468: SVTCA[y-axis] 
+	00469: MPPEM      
+	00470: PUSHB[1]            200 
+	00472: LTEQ       
+	00473: IF         
+	00474: SVTCA[y-axis] 
+	00475: PUSHB[2]             10    11 
+	00478: RS         
+	00479: SWAP       
+	00480: RS         
+	00481: SFVFS      
+	00482: EIF        
+	00483: ENDF       
+	00484: FDEF       
+	00485: SVTCA[y-axis] 
+	00486: PUSHB[1]             12 
+	00488: SWAP       
+	00489: WCVTF      
+	00490: PUSHB[2]              1    12 
+	00493: MIAP[nrd+nci] 
+	00494: SVTCA[x-axis] 
+	00495: PUSHB[1]             12 
+	00497: SWAP       
+	00498: WCVTF      
+	00499: PUSHB[2]              2    12 
+	00502: RCVT       
+	00503: MSIRP[nrp] 
+	00504: PUSHB[2]              2     0 
+	00507: SFVTL[=p1,p2] 
+	00508: GFV        
+	00509: ENDF       
+	00510: FDEF       
+	00511: PUSHB[1]             18 
+	00513: CALL       
+	00514: PUSHB[1]              2 
+	00516: CINDEX     
+	00517: RCVT       
+	00518: PUSHB[1]              2 
+	00520: CINDEX     
+	00521: RCVT       
+	00522: ROUND[White] 
+	00523: PUSHB[1]             64 
+	00525: MAX        
+	00526: ADD        
+	00527: PUSHB[1]              2 
+	00529: CINDEX     
+	00530: SWAP       
+	00531: WCVTP      
+	00532: POP        
+	00533: POP        
+	00534: POP        
+	00535: ENDF       
+	00536: FDEF       
+	00537: PUSHB[1]             19 
+	00539: CALL       
+	00540: PUSHB[1]              2 
+	00542: CINDEX     
+	00543: RCVT       
+	00544: PUSHB[1]              2 
+	00546: CINDEX     
+	00547: RCVT       
+	00548: ROUND[White] 
+	00549: PUSHW[1]            -64 
+	00552: MIN        
+	00553: ADD        
+	00554: PUSHB[1]              2 
+	00556: CINDEX     
+	00557: SWAP       
+	00558: WCVTP      
+	00559: POP        
+	00560: POP        
+	00561: POP        
+	00562: ENDF       
+	00563: FDEF       
+	00564: PUSHB[1]              0 
+	00566: PUSHB[1]             18 
+	00568: CALL       
+	00569: POP        
+	00570: POP        
+	00571: POP        
+	00572: ENDF       
+	00573: FDEF       
+	00574: PUSHB[1]              0 
+	00576: PUSHB[1]             19 
+	00578: CALL       
+	00579: POP        
+	00580: POP        
+	00581: POP        
+	00582: ENDF       
+	00583: FDEF       
+	00584: SVTCA[x-axis] 
+	00585: MPPEM      
+	00586: PUSHB[1]            200 
+	00588: LTEQ       
+	00589: IF         
+	00590: PUSHB[1]              6 
+	00592: RS         
+	00593: PUSHB[1]              7 
+	00595: RS         
+	00596: NEG        
+	00597: SPVFS      
+	00598: EIF        
+	00599: ENDF       
+	00600: FDEF       
+	00601: DUP        
+	00602: ROUND[Black] 
+	00603: PUSHB[1]             64 
+	00605: SUB        
+	00606: PUSHB[1]              0 
+	00608: MAX        
+	00609: DUP        
+	00610: PUSHB[2]             44   192 
+	00613: ROLL       
+	00614: MIN        
+	00615: PUSHW[1]           4096 
+	00618: DIV        
+	00619: ADD        
+	00620: CALL       
+	00621: GPV        
+	00622: ABS        
+	00623: SWAP       
+	00624: ABS        
+	00625: SUB        
+	00626: NOT        
+	00627: IF         
+	00628: PUSHB[1]              3 
+	00630: SUB        
+	00631: EIF        
+	00632: ENDF       
+	00633: FDEF       
+	00634: PUSHB[2]              0     3 
+	00637: CINDEX     
+	00638: RCVT       
+	00639: ROUND[Gray] 
+	00640: EQ         
+	00641: PUSHB[1]             28 
+	00643: MPPEM      
+	00644: LT         
+	00645: AND        
+	00646: IF         
+	00647: PUSHB[1]              3 
+	00649: CINDEX     
+	00650: RCVT       
+	00651: PUSHB[1]              3 
+	00653: CINDEX     
+	00654: RCVT       
+	00655: ADD        
+	00656: ROUND[Gray] 
+	00657: DUP        
+	00658: PUSHB[1]              4 
+	00660: CINDEX     
+	00661: SWAP       
+	00662: WCVTP      
+	00663: PUSHB[1]              4 
+	00665: CINDEX     
+	00666: SWAP       
+	00667: WCVTP      
+	00668: ELSE       
+	00669: PUSHB[1]              3 
+	00671: CINDEX     
+	00672: DUP        
+	00673: RCVT       
+	00674: ROUND[Gray] 
+	00675: DUP        
+	00676: ROLL       
+	00677: SWAP       
+	00678: WCVTP      
+	00679: PUSHB[1]              3 
+	00681: CINDEX     
+	00682: RCVT       
+	00683: ROUND[Gray] 
+	00684: ADD        
+	00685: PUSHB[1]              3 
+	00687: CINDEX     
+	00688: SWAP       
+	00689: WCVTP      
+	00690: EIF        
+	00691: ENDF       
+	00692: FDEF       
+	00693: PUSHB[1]              3 
+	00695: CINDEX     
+	00696: DUP        
+	00697: RCVT       
+	00698: ROUND[Gray] 
+	00699: DUP        
+	00700: ROLL       
+	00701: SWAP       
+	00702: WCVTP      
+	00703: PUSHB[1]              3 
+	00705: CINDEX     
+	00706: RCVT       
+	00707: ABS        
+	00708: ROUND[Gray] 
+	00709: NEG        
+	00710: ADD        
+	00711: PUSHB[1]              4 
+	00713: CINDEX     
+	00714: PUSHB[1]              1 
+	00716: ADD        
+	00717: SWAP       
+	00718: WCVTP      
+	00719: ENDF       
+	00720: FDEF       
+	00721: PUSHB[1]              9 
+	00723: RS         
+	00724: IF         
+	00725: SDPVTL[1]  
+	00726: POP        
+	00727: MDRP[nrp0,nmd,nrd,0] 
+	00728: ELSE       
+	00729: PUSHB[1]             18 
+	00731: RS         
+	00732: IF         
+	00733: SDPVTL[1]  
+	00734: RCVT       
+	00735: PUSHB[1]             17 
+	00737: CALL       
+	00738: PUSHB[1]             13 
+	00740: SWAP       
+	00741: WCVTP      
+	00742: PUSHB[1]             13 
+	00744: ROFF       
+	00745: MIRP[nrp0,nmd,rd,0] 
+	00746: ELSE       
+	00747: SPVTCA[x-axis] 
+	00748: ROLL       
+	00749: RCVT       
+	00750: RTG        
+	00751: ROUND[Black] 
+	00752: DUP        
+	00753: PUSHB[1]             13 
+	00755: SWAP       
+	00756: WCVTP      
+	00757: ROLL       
+	00758: ROLL       
+	00759: SDPVTL[1]  
+	00760: DUP        
+	00761: PUSHB[1]            160 
+	00763: LTEQ       
+	00764: IF         
+	00765: PUSHB[1]             17 
+	00767: CALL       
+	00768: PUSHB[1]             13 
+	00770: SWAP       
+	00771: WCVTP      
+	00772: PUSHB[1]             13 
+	00774: ROFF       
+	00775: MIRP[nrp0,nmd,rd,0] 
+	00776: ELSE       
+	00777: POP        
+	00778: PUSHB[1]             13 
+	00780: ROFF       
+	00781: MIRP[nrp0,nmd,rd,0] 
+	00782: EIF        
+	00783: EIF        
+	00784: EIF        
+	00785: RTG        
+	00786: ENDF       
+	00787: FDEF       
+	00788: DUP        
+	00789: ROLL       
+	00790: RCVT       
+	00791: SWAP       
+	00792: RCVT       
+	00793: ROUND[Gray] 
+	00794: ADD        
+	00795: WCVTP      
+	00796: ENDF       
+	00797: FDEF       
+	00798: RCVT       
+	00799: ROUND[White] 
+	00800: WS         
+	00801: ENDF       
+	00802: FDEF       
+	00803: SVTCA[x-axis] 
+	00804: RTG        
+	00805: MDAP[rd]   
+	00806: ENDF       
+	00807: FDEF       
+	00808: SVTCA[x-axis] 
+	00809: RTG        
+	00810: PUSHB[1]             24 
+	00812: RS         
+	00813: IF         
+	00814: PUSHB[1]              4 
+	00816: CINDEX     
+	00817: PUSHB[1]              4 
+	00819: CINDEX     
+	00820: MD[cur]    
+	00821: ABS        
+	00822: SWAP       
+	00823: RCVT       
+	00824: ABS        
+	00825: ROUND[Black] 
+	00826: PUSHB[1]             64 
+	00828: MAX        
+	00829: SUB        
+	00830: DUP        
+	00831: PUSHB[1]            128 
+	00833: DIV        
+	00834: ROUND[White] 
+	00835: PUSHB[1]              2 
+	00837: CINDEX     
+	00838: PUSHB[1]              2 
+	00840: CINDEX     
+	00841: SUB        
+	00842: MIN        
+	00843: PUSHB[1]             25 
+	00845: RS         
+	00846: ADD        
+	00847: PUSHB[1]             12 
+	00849: SWAP       
+	00850: WCVTP      
+	00851: POP        
+	00852: ROLL       
+	00853: SRP0       
+	00854: PUSHB[1]             12 
+	00856: MIRP[srp0,nmd,rd,2] 
+	00857: POP        
+	00858: ELSE       
+	00859: POP        
+	00860: POP        
+	00861: POP        
+	00862: POP        
+	00863: EIF        
+	00864: ENDF       
+	00865: FDEF       
+	00866: SVTCA[x-axis] 
+	00867: PUSHB[1]             24 
+	00869: RS         
+	00870: IF         
+	00871: PUSHB[1]              2 
+	00873: CINDEX     
+	00874: RCVT       
+	00875: PUSHB[1]              2 
+	00877: CINDEX     
+	00878: RCVT       
+	00879: ABS        
+	00880: ADD        
+	00881: ROUND[White] 
+	00882: PUSHB[1]              3 
+	00884: CINDEX     
+	00885: RCVT       
+	00886: ROUND[White] 
+	00887: SUB        
+	00888: DUP        
+	00889: PUSHB[1]              4 
+	00891: CINDEX     
+	00892: RCVT       
+	00893: ROUND[White] 
+	00894: DUP        
+	00895: ROLL       
+	00896: MAX        
+	00897: NEG        
+	00898: PUSHB[1]              4 
+	00900: CINDEX     
+	00901: SWAP       
+	00902: WCVTP      
+	00903: MIN        
+	00904: PUSHB[1]              3 
+	00906: CINDEX     
+	00907: SWAP       
+	00908: WCVTP      
+	00909: POP        
+	00910: POP        
+	00911: ELSE       
+	00912: DUP        
+	00913: RCVT       
+	00914: ROUND[White] 
+	00915: WCVTP      
+	00916: DUP        
+	00917: RCVT       
+	00918: ROUND[White] 
+	00919: WCVTP      
+	00920: EIF        
+	00921: ENDF       
+	00922: FDEF       
+	00923: SVTCA[x-axis] 
+	00924: DUP        
+	00925: RCVT       
+	00926: PUSHB[1]              0 
+	00928: NEQ        
+	00929: PUSHB[1]             24 
+	00931: RS         
+	00932: AND        
+	00933: IF         
+	00934: RCVT       
+	00935: ROUND[Gray] 
+	00936: SWAP       
+	00937: RCVT       
+	00938: ROUND[Black] 
+	00939: PUSHB[1]             64 
+	00941: MAX        
+	00942: SUB        
+	00943: DUP        
+	00944: PUSHB[1]            128 
+	00946: DIV        
+	00947: ROUND[White] 
+	00948: DUP        
+	00949: ROLL       
+	00950: SWAP       
+	00951: SUB        
+	00952: DUP        
+	00953: PUSHB[1]              3 
+	00955: CINDEX     
+	00956: MAX        
+	00957: NEG        
+	00958: PUSHB[1]              4 
+	00960: CINDEX     
+	00961: SWAP       
+	00962: WCVTP      
+	00963: MIN        
+	00964: PUSHB[1]              3 
+	00966: CINDEX     
+	00967: SWAP       
+	00968: WCVTP      
+	00969: POP        
+	00970: POP        
+	00971: ELSE       
+	00972: POP        
+	00973: POP        
+	00974: PUSHB[1]             25 
+	00976: CALL       
+	00977: EIF        
+	00978: ENDF       
+	00979: FDEF       
+	00980: SVTCA[x-axis] 
+	00981: ROLL       
+	00982: ROLL       
+	00983: RCVT       
+	00984: ABS        
+	00985: SWAP       
+	00986: RCVT       
+	00987: ABS        
+	00988: SUB        
+	00989: ABS        
+	00990: WS         
+	00991: ENDF       
+	00992: FDEF       
+	00993: PUSHB[1]              4 
+	00995: CINDEX     
+	00996: PUSHB[1]              4 
+	00998: CINDEX     
+	00999: PUSHB[1]             25 
+	01001: CALL       
+	01002: PUSHB[1]             24 
+	01004: RS         
+	01005: IF         
+	01006: PUSHB[1]              4 
+	01008: CINDEX     
+	01009: PUSHB[1]              4 
+	01011: CINDEX     
+	01012: PUSHB[1]              3 
+	01014: CINDEX     
+	01015: PUSHB[1]             27 
+	01017: CALL       
+	01018: SVTCA[x-axis] 
+	01019: PUSHB[1]              2 
+	01021: CINDEX     
+	01022: RS         
+	01023: PUSHB[1]             64 
+	01025: EQ         
+	01026: PUSHB[1]              2 
+	01028: CINDEX     
+	01029: RS         
+	01030: PUSHB[1]              0 
+	01032: EQ         
+	01033: AND        
+	01034: IF         
+	01035: PUSHB[1]              3 
+	01037: CINDEX     
+	01038: DUP        
+	01039: RCVT       
+	01040: PUSHB[1]             64 
+	01042: SUB        
+	01043: WCVTP      
+	01044: EIF        
+	01045: PUSHB[1]              2 
+	01047: CINDEX     
+	01048: RS         
+	01049: PUSHB[1]              0 
+	01051: EQ         
+	01052: PUSHB[1]              2 
+	01054: CINDEX     
+	01055: RS         
+	01056: PUSHB[1]             64 
+	01058: EQ         
+	01059: AND        
+	01060: IF         
+	01061: PUSHB[1]              4 
+	01063: CINDEX     
+	01064: DUP        
+	01065: RCVT       
+	01066: PUSHB[1]             64 
+	01068: ADD        
+	01069: WCVTP      
+	01070: EIF        
+	01071: EIF        
+	01072: POP        
+	01073: POP        
+	01074: POP        
+	01075: POP        
+	01076: ENDF       
+	01077: FDEF       
+	01078: PUSHB[1]              3 
+	01080: CINDEX     
+	01081: DUP        
+	01082: PUSHB[1]              7 
+	01084: CINDEX     
+	01085: SDPVTL[1]  
+	01086: SFVTCA[x-axis] 
+	01087: MDAP[nrd]  
+	01088: SWAP       
+	01089: DUP        
+	01090: ROLL       
+	01091: PUSHB[1]              4 
+	01093: CINDEX     
+	01094: PUSHB[1]              7 
+	01096: CINDEX     
+	01097: PUSHB[1]             20 
+	01099: CALL       
+	01100: SRP0       
+	01101: POP        
+	01102: MDRP[nrp0,nmd,rd,0] 
+	01103: POP        
+	01104: ENDF       
+	01105: FDEF       
+	01106: MDRP[nrp0,nmd,nrd,0] 
+	01107: ENDF       
+	01108: FDEF       
+	01109: MPPEM      
+	01110: GT         
+	01111: IF         
+	01112: RCVT       
+	01113: WCVTP      
+	01114: ELSE       
+	01115: POP        
+	01116: POP        
+	01117: EIF        
+	01118: ENDF       
+	01119: FDEF       
+	01120: PUSHB[1]              2 
+	01122: RS         
+	01123: IF         
+	01124: RTDG       
+	01125: MIRP[nrp0,md,rd,1] 
+	01126: RTG        
+	01127: ELSE       
+	01128: MIRP[nrp0,md,rd,1] 
+	01129: EIF        
+	01130: ENDF       
+	01131: FDEF       
+	01132: MPPEM      
+	01133: LT         
+	01134: IF         
+	01135: RCVT       
+	01136: WCVTP      
+	01137: ELSE       
+	01138: POP        
+	01139: POP        
+	01140: EIF        
+	01141: ENDF       
+	01142: FDEF       
+	01143: SVTCA[x-axis] 
+	01144: RTG        
+	01145: MPPEM      
+	01146: GT         
+	01147: IF         
+	01148: ROLL       
+	01149: MDAP[rd]   
+	01150: MIRP[nrp0,md,rd,1] 
+	01151: ELSE       
+	01152: POP        
+	01153: POP        
+	01154: POP        
+	01155: EIF        
+	01156: ENDF       
+	01157: FDEF       
+	01158: MPPEM      
+	01159: GTEQ       
+	01160: SWAP       
+	01161: MPPEM      
+	01162: LTEQ       
+	01163: AND        
+	01164: IF         
+	01165: PUSHB[1]              3 
+	01167: CINDEX     
+	01168: RCVT       
+	01169: ROUND[Gray] 
+	01170: PUSHB[1]              3 
+	01172: CINDEX     
+	01173: RCVT       
+	01174: ROUND[Gray] 
+	01175: PUSHB[1]              3 
+	01177: CINDEX     
+	01178: ADD        
+	01179: EQ         
+	01180: IF         
+	01181: POP        
+	01182: POP        
+	01183: POP        
+	01184: ELSE       
+	01185: PUSHB[1]              2 
+	01187: CINDEX     
+	01188: RCVT       
+	01189: ROUND[Gray] 
+	01190: ADD        
+	01191: PUSHB[1]              3 
+	01193: CINDEX     
+	01194: SWAP       
+	01195: WCVTP      
+	01196: POP        
+	01197: POP        
+	01198: EIF        
+	01199: ELSE       
+	01200: POP        
+	01201: POP        
+	01202: POP        
+	01203: EIF        
+	01204: ENDF       
+	01205: FDEF       
+	01206: PUSHB[1]              2 
+	01208: RS         
+	01209: IF         
+	01210: RTDG       
+	01211: MDRP[nrp0,md,rd,1] 
+	01212: RTG        
+	01213: ELSE       
+	01214: MDRP[nrp0,md,rd,1] 
+	01215: EIF        
+	01216: ENDF       
+	01217: FDEF       
+	01218: GC[cur p]  
+	01219: SWAP       
+	01220: GC[cur p]  
+	01221: ADD        
+	01222: ROLL       
+	01223: ROLL       
+	01224: GC[cur p]  
+	01225: SWAP       
+	01226: DUP        
+	01227: GC[cur p]  
+	01228: ROLL       
+	01229: ADD        
+	01230: ROLL       
+	01231: SUB        
+	01232: PUSHW[1]           -128 
+	01235: DIV        
+	01236: SWAP       
+	01237: DUP        
+	01238: SRP0       
+	01239: SWAP       
+	01240: ROLL       
+	01241: PUSHB[2]             12    12 
+	01244: ROLL       
+	01245: WCVTF      
+	01246: RCVT       
+	01247: ADD        
+	01248: DUP        
+	01249: PUSHB[1]              0 
+	01251: LT         
+	01252: IF         
+	01253: PUSHB[1]              1 
+	01255: SUB        
+	01256: PUSHW[1]            -70 
+	01259: MAX        
+	01260: ELSE       
+	01261: PUSHB[1]             70 
+	01263: MIN        
+	01264: EIF        
+	01265: PUSHB[1]             16 
+	01267: ADD        
+	01268: ROUND[Gray] 
+	01269: SVTCA[x-axis] 
+	01270: MSIRP[nrp] 
+	01271: ENDF       
+	01272: FDEF       
+	01273: DUP        
+	01274: RCVT       
+	01275: PUSHB[1]              3 
+	01277: CINDEX     
+	01278: GC[cur p]  
+	01279: GT         
+	01280: MPPEM      
+	01281: PUSHB[1]             19 
+	01283: LTEQ       
+	01284: OR         
+	01285: IF         
+	01286: PUSHB[1]              2 
+	01288: CINDEX     
+	01289: GC[cur p]  
+	01290: DUP        
+	01291: ROUND[Gray] 
+	01292: SUB        
+	01293: PUSHB[1]              3 
+	01295: CINDEX     
+	01296: PUSHB[1]              3 
+	01298: CINDEX     
+	01299: MIAP[rd+ci] 
+	01300: SWAP       
+	01301: POP        
+	01302: SHPIX      
+	01303: ELSE       
+	01304: POP        
+	01305: SRP1       
+	01306: EIF        
+	01307: ENDF       
+	01308: FDEF       
+	01309: DUP        
+	01310: RCVT       
+	01311: PUSHB[1]              3 
+	01313: CINDEX     
+	01314: GC[cur p]  
+	01315: LT         
+	01316: IF         
+	01317: PUSHB[1]              2 
+	01319: CINDEX     
+	01320: GC[cur p]  
+	01321: DUP        
+	01322: ROUND[Gray] 
+	01323: SUB        
+	01324: PUSHB[1]              3 
+	01326: CINDEX     
+	01327: PUSHB[1]              3 
+	01329: CINDEX     
+	01330: MIAP[rd+ci] 
+	01331: SWAP       
+	01332: POP        
+	01333: SHPIX      
+	01334: ELSE       
+	01335: POP        
+	01336: SRP1       
+	01337: EIF        
+	01338: ENDF       
+	01339: FDEF       
+	01340: SVTCA[y-axis] 
+	01341: MPPEM      
+	01342: PUSHB[1]            200 
+	01344: LTEQ       
+	01345: IF         
+	01346: SVTCA[y-axis] 
+	01347: PUSHB[1]              7 
+	01349: RS         
+	01350: PUSHB[1]              6 
+	01352: RS         
+	01353: SFVFS      
+	01354: EIF        
+	01355: ENDF       
+	01356: FDEF       
+	01357: ROLL       
+	01358: SRP0       
+	01359: MIRP[nrp0,md,rd,0] 
+	01360: ENDF       
+	01361: FDEF       
+	01362: PUSHB[1]             12 
+	01364: RS         
+	01365: IF         
+	01366: POP        
+	01367: ELSE       
+	01368: DUP        
+	01369: GC[cur p]  
+	01370: PUSHB[1]              0 
+	01372: GT         
+	01373: IF         
+	01374: PUSHW[1]            -16 
+	01377: SHPIX      
+	01378: ELSE       
+	01379: PUSHB[1]             16 
+	01381: SHPIX      
+	01382: EIF        
+	01383: EIF        
+	01384: ENDF       
+	01385: FDEF       
+	01386: DUP        
+	01387: PUSHB[1]              0 
+	01389: NEQ        
+	01390: IF         
+	01391: PUSHW[1]           4096 
+	01394: MUL        
+	01395: PUSHB[1]              3 
+	01397: CINDEX     
+	01398: RCVT       
+	01399: ABS        
+	01400: PUSHB[1]              3 
+	01402: CINDEX     
+	01403: RCVT       
+	01404: ABS        
+	01405: SUB        
+	01406: PUSHB[1]              0 
+	01408: GTEQ       
+	01409: IF         
+	01410: PUSHB[1]              2 
+	01412: ELSE       
+	01413: PUSHB[1]             64 
+	01415: SUB        
+	01416: PUSHB[1]              3 
+	01418: EIF        
+	01419: CINDEX     
+	01420: RCVT       
+	01421: ROUND[Black] 
+	01422: GTEQ       
+	01423: IF         
+	01424: RCVT       
+	01425: WCVTP      
+	01426: ELSE       
+	01427: POP        
+	01428: POP        
+	01429: EIF        
+	01430: ELSE       
+	01431: POP        
+	01432: PUSHB[1]              2 
+	01434: CINDEX     
+	01435: RCVT       
+	01436: PUSHB[1]              2 
+	01438: CINDEX     
+	01439: RCVT       
+	01440: SUB        
+	01441: ABS        
+	01442: PUSHB[1]             40 
+	01444: LTEQ       
+	01445: IF         
+	01446: RCVT       
+	01447: WCVTP      
+	01448: ELSE       
+	01449: POP        
+	01450: POP        
+	01451: EIF        
+	01452: EIF        
+	01453: ENDF       
+	01454: FDEF       
+	01455: POP        
+	01456: POP        
+	01457: GPV        
+	01458: ABS        
+	01459: SWAP       
+	01460: ABS        
+	01461: MAX        
+	01462: PUSHW[1]          16384 
+	01465: DIV        
+	01466: ENDF       
+	01467: FDEF       
+	01468: POP        
+	01469: PUSHB[1]            128 
+	01471: LTEQ       
+	01472: IF         
+	01473: GPV        
+	01474: ABS        
+	01475: SWAP       
+	01476: ABS        
+	01477: MAX        
+	01478: PUSHW[1]           8192 
+	01481: DIV        
+	01482: ELSE       
+	01483: PUSHB[3]              0    64    47 
+	01487: CALL       
+	01488: EIF        
+	01489: PUSHB[1]              2 
+	01491: ADD        
+	01492: ENDF       
+	01493: FDEF       
+	01494: POP        
+	01495: PUSHB[1]            192 
+	01497: LTEQ       
+	01498: IF         
+	01499: GPV        
+	01500: ABS        
+	01501: SWAP       
+	01502: ABS        
+	01503: MAX        
+	01504: PUSHW[1]           5461 
+	01507: DIV        
+	01508: ELSE       
+	01509: PUSHB[3]              0   128    47 
+	01513: CALL       
+	01514: EIF        
+	01515: PUSHB[1]              2 
+	01517: ADD        
+	01518: ENDF       
+	01519: FDEF       
+	01520: GPV        
+	01521: ABS        
+	01522: SWAP       
+	01523: ABS        
+	01524: MAX        
+	01525: PUSHW[1]          16384 
+	01528: DIV        
+	01529: ADD        
+	01530: SWAP       
+	01531: POP        
+	01532: ENDF       
+	01533: FDEF       
+	01534: RTG        
+	01535: MPPEM      
+	01536: GTEQ       
+	01537: IF         
+	01538: PUSHB[1]              4 
+	01540: CINDEX     
+	01541: PUSHB[1]              4 
+	01543: CINDEX     
+	01544: MD[cur]    
+	01545: ABS        
+	01546: SWAP       
+	01547: RCVT       
+	01548: ABS        
+	01549: ROUND[Black] 
+	01550: PUSHB[1]             64 
+	01552: MAX        
+	01553: SUB        
+	01554: DUP        
+	01555: PUSHB[1]            128 
+	01557: DIV        
+	01558: ROUND[White] 
+	01559: PUSHB[1]              2 
+	01561: CINDEX     
+	01562: PUSHB[1]              2 
+	01564: CINDEX     
+	01565: SUB        
+	01566: MIN        
+	01567: PUSHB[1]             12 
+	01569: SWAP       
+	01570: WCVTP      
+	01571: POP        
+	01572: ROLL       
+	01573: SRP0       
+	01574: PUSHB[1]             12 
+	01576: MIRP[srp0,nmd,rd,2] 
+	01577: POP        
+	01578: ELSE       
+	01579: POP        
+	01580: ROLL       
+	01581: SRP1       
+	01582: SWAP       
+	01583: SRP2       
+	01584: DUP        
+	01585: IP         
+	01586: MDAP[rd]   
+	01587: EIF        
+	01588: ENDF       
+	01589: FDEF       
+	01590: PUSHB[1]              2 
+	01592: CINDEX     
+	01593: PUSHB[1]              2 
+	01595: CINDEX     
+	01596: MD[cur]    
+	01597: ABS        
+	01598: PUSHB[1]            192 
+	01600: EQ         
+	01601: IF         
+	01602: PUSHW[1]             -8 
+	01605: SHPIX      
+	01606: PUSHB[1]              8 
+	01608: SHPIX      
+	01609: ELSE       
+	01610: POP        
+	01611: POP        
+	01612: EIF        
+	01613: ENDF       
+	01614: FDEF       
+	01615: PUSHB[1]             19 
+	01617: RS         
+	01618: IF         
+	01619: SPVTCA[x-axis] 
+	01620: ELSE       
+	01621: SPVTCA[y-axis] 
+	01622: EIF        
+	01623: ENDF       
+	01624: FDEF       
+	01625: PUSHB[1]             19 
+	01627: RS         
+	01628: IF         
+	01629: SPVTCA[y-axis] 
+	01630: ELSE       
+	01631: SPVTCA[x-axis] 
+	01632: EIF        
+	01633: ENDF       
+	01634: FDEF       
+	01635: PUSHB[1]             10 
+	01637: CALL       
+	01638: SWAP       
+	01639: SRP0       
+	01640: DUP        
+	01641: ALIGNRP    
+	01642: PUSHB[1]             23 
+	01644: CALL       
+	01645: ENDF       
+	01646: FDEF       
+	01647: PUSHB[1]              2 
+	01649: CINDEX     
+	01650: PUSHW[1]            -16 
+	01653: SHPIX      
+	01654: PUSHB[1]             40 
+	01656: CALL       
+	01657: ROLL       
+	01658: SRP0       
+	01659: SWAP       
+	01660: DUP        
+	01661: MDRP[srp0,nmd,nrd,0] 
+	01662: SWAP       
+	01663: PUSHB[1]             16 
+	01665: CALL       
+	01666: PUSHB[1]              5 
+	01668: RS         
+	01669: IF         
+	01670: MDRP[nrp0,nmd,nrd,0] 
+	01671: ELSE       
+	01672: ALIGNRP    
+	01673: EIF        
+	01674: DUP        
+	01675: SRP0       
+	01676: SRP1       
+	01677: PUSHB[1]              0 
+	01679: SRP2       
+	01680: SVTCA[x-axis] 
+	01681: ENDF       
+	01682: FDEF       
+	01683: MPPEM      
+	01684: GTEQ       
+	01685: SWAP       
+	01686: MPPEM      
+	01687: LTEQ       
+	01688: AND        
+	01689: IF         
+	01690: SHPIX      
+	01691: ELSE       
+	01692: POP        
+	01693: POP        
+	01694: EIF        
+	01695: ENDF       
+	01696: FDEF       
+	01697: SVTCA[x-axis] 
+	01698: PUSHB[1]              2 
+	01700: CINDEX     
+	01701: SRP0       
+	01702: MDRP[srp0,nmd,nrd,0] 
+	01703: SWAP       
+	01704: MDRP[nrp0,md,nrd,1] 
+	01705: SVTCA[x-axis] 
+	01706: PUSHB[1]              1 
+	01708: SZP0       
+	01709: PUSHB[1]              0 
+	01711: SZP1       
+	01712: SRP0       
+	01713: PUSHB[1]              1 
+	01715: ALIGNRP    
+	01716: PUSHB[1]              1 
+	01718: SZPS       
+	01719: ENDF       
+	01720: FDEF       
+	01721: SVTCA[x-axis] 
+	01722: PUSHB[1]              0 
+	01724: SZP0       
+	01725: PUSHB[1]              1 
+	01727: PUSHB[1]              3 
+	01729: CINDEX     
+	01730: MD[cur]    
+	01731: PUSHB[1]              3 
+	01733: SLOOP      
+	01734: SHPIX      
+	01735: PUSHB[1]              1 
+	01737: SZP0       
+	01738: ENDF       
+	01739: FDEF       
+	01740: MPPEM      
+	01741: GTEQ       
+	01742: SWAP       
+	01743: MPPEM      
+	01744: LTEQ       
+	01745: AND        
+	01746: IF         
+	01747: DUP        
+	01748: RCVT       
+	01749: ROLL       
+	01750: ADD        
+	01751: WCVTP      
+	01752: ELSE       
+	01753: POP        
+	01754: POP        
+	01755: EIF        
+	01756: ENDF       
+	01757: FDEF       
+	01758: RTG        
+	01759: MPPEM      
+	01760: GTEQ       
+	01761: IF         
+	01762: PUSHB[1]              4 
+	01764: CINDEX     
+	01765: PUSHB[1]              4 
+	01767: CINDEX     
+	01768: MD[cur]    
+	01769: ABS        
+	01770: PUSHB[1]              3 
+	01772: CINDEX     
+	01773: PUSHB[1]              3 
+	01775: CINDEX     
+	01776: MD[cur]    
+	01777: ABS        
+	01778: ROUND[Gray] 
+	01779: PUSHB[1]             64 
+	01781: MAX        
+	01782: SUB        
+	01783: DUP        
+	01784: PUSHB[1]            128 
+	01786: DIV        
+	01787: ROUND[White] 
+	01788: PUSHB[1]              2 
+	01790: CINDEX     
+	01791: PUSHB[1]              2 
+	01793: CINDEX     
+	01794: SUB        
+	01795: MIN        
+	01796: PUSHB[1]             12 
+	01798: SWAP       
+	01799: WCVTP      
+	01800: POP        
+	01801: PUSHB[1]              4 
+	01803: CINDEX     
+	01804: SRP0       
+	01805: SWAP       
+	01806: PUSHB[1]             12 
+	01808: MIRP[srp0,nmd,rd,2] 
+	01809: ELSE       
+	01810: PUSHB[1]              4 
+	01812: CINDEX     
+	01813: PUSHB[1]              4 
+	01815: CINDEX     
+	01816: SRP1       
+	01817: SRP2       
+	01818: SWAP       
+	01819: DUP        
+	01820: IP         
+	01821: MDAP[rd]   
+	01822: EIF        
+	01823: MDRP[nrp0,md,rd,0] 
+	01824: POP        
+	01825: POP        
+	01826: ENDF       
+	01827: FDEF       
+	01828: SVTCA[x-axis] 
+	01829: RTG        
+	01830: PUSHB[1]             24 
+	01832: RS         
+	01833: IF         
+	01834: PUSHB[1]              5 
+	01836: CINDEX     
+	01837: GC[cur p]  
+	01838: SWAP       
+	01839: RCVT       
+	01840: ABS        
+	01841: SUB        
+	01842: ELSE       
+	01843: POP        
+	01844: PUSHB[1]              4 
+	01846: CINDEX     
+	01847: PUSHB[1]              4 
+	01849: CINDEX     
+	01850: MD[org]    
+	01851: EIF        
+	01852: PUSHB[1]             14 
+	01854: SWAP       
+	01855: WCVTP      
+	01856: SWAP       
+	01857: SRP0       
+	01858: PUSHB[1]             14 
+	01860: MIRP[nrp0,md,rd,0] 
+	01861: SWAP       
+	01862: SRP0       
+	01863: PUSHB[1]             14 
+	01865: MIRP[nrp0,md,rd,0] 
+	01866: ENDF       
+	01867: FDEF       
+	01868: PUSHB[1]             27 
+	01870: RS         
+	01871: IF         
+	01872: DUP        
+	01873: PUSHB[1]              1 
+	01875: ADD        
+	01876: RCVT       
+	01877: PUSHB[1]              0 
+	01879: LTEQ       
+	01880: IF         
+	01881: DUP        
+	01882: PUSHB[1]              1 
+	01884: ADD        
+	01885: DUP        
+	01886: RCVT       
+	01887: DUP        
+	01888: ROUND[Gray] 
+	01889: PUSHB[1]              0 
+	01891: NEQ        
+	01892: IF         
+	01893: PUSHB[1]             32 
+	01895: ADD        
+	01896: WCVTP      
+	01897: POP        
+	01898: ELSE       
+	01899: POP        
+	01900: POP        
+	01901: POP        
+	01902: EIF        
+	01903: ELSE       
+	01904: DUP        
+	01905: PUSHB[1]              1 
+	01907: ADD        
+	01908: DUP        
+	01909: RCVT       
+	01910: DUP        
+	01911: ROUND[Gray] 
+	01912: PUSHB[1]              0 
+	01914: NEQ        
+	01915: IF         
+	01916: PUSHW[1]            -32 
+	01919: ADD        
+	01920: WCVTP      
+	01921: PUSHB[1]             28 
+	01923: MPPEM      
+	01924: LT         
+	01925: IF         
+	01926: DUP        
+	01927: RCVT       
+	01928: PUSHB[1]             32 
+	01930: ADD        
+	01931: WCVTP      
+	01932: ELSE       
+	01933: POP        
+	01934: EIF        
+	01935: ELSE       
+	01936: POP        
+	01937: POP        
+	01938: POP        
+	01939: EIF        
+	01940: EIF        
+	01941: ELSE       
+	01942: POP        
+	01943: EIF        
+	01944: ENDF       
+	01945: FDEF       
+	01946: MPPEM      
+	01947: GTEQ       
+	01948: SWAP       
+	01949: MPPEM      
+	01950: LTEQ       
+	01951: AND        
+	01952: IF         
+	01953: SHPIX      
+	01954: ELSE       
+	01955: POP        
+	01956: POP        
+	01957: EIF        
+	01958: ENDF       
+	01959: FDEF       
+	01960: MPPEM      
+	01961: EQ         
+	01962: IF         
+	01963: SHPIX      
+	01964: ELSE       
+	01965: POP        
+	01966: POP        
+	01967: EIF        
+	01968: ENDF       
+	01969: FDEF       
+	01970: MPPEM      
+	01971: GT         
+	01972: IF         
+	01973: RDTG       
+	01974: ELSE       
+	01975: ROFF       
+	01976: EIF        
+	01977: ENDF       
+
+
+'hmtx' Table - Horizontal Metrics
+---------------------------------
+Size = 460 bytes, 110 entries
+	  0. advWid: 2048, LSdBear: 256
+	  1. advWid:    0, LSdBear: 0
+	  2. advWid: 1024, LSdBear: 0
+	  3. advWid: 1000, LSdBear: 0
+	  4. advWid:  745, LSdBear: 176
+	  5. advWid:  928, LSdBear: 248
+	  6. advWid: 1407, LSdBear: 100
+	  7. advWid: 1147, LSdBear: 63
+	  8. advWid: 1438, LSdBear: 145
+	  9. advWid: 1499, LSdBear: 49
+	 10. advWid:  457, LSdBear: 248
+	 11. advWid: 1090, LSdBear: 195
+	 12. advWid: 1090, LSdBear: -43
+	 13. advWid:  754, LSdBear: 182
+	 14. advWid: 1147, LSdBear: 150
+	 15. advWid:  745, LSdBear: 137
+	 16. advWid:  942, LSdBear: 184
+	 17. advWid:  745, LSdBear: 332
+	 18. advWid: 1053, LSdBear: 20
+	 19. advWid: 1438, LSdBear: 178
+	 20. advWid:  827, LSdBear: 227
+	 21. advWid: 1368, LSdBear: 61
+	 22. advWid: 1368, LSdBear: 94
+	 23. advWid: 1397, LSdBear: 174
+	 24. advWid: 1368, LSdBear: 88
+	 25. advWid: 1368, LSdBear: 168
+	 26. advWid: 1225, LSdBear: 287
+	 27. advWid: 1346, LSdBear: 84
+	 28. advWid: 1368, LSdBear: 217
+	 29. advWid:  745, LSdBear: 176
+	 30. advWid:  745, LSdBear: 137
+	 31. advWid: 1147, LSdBear: 168
+	 32. advWid: 1147, LSdBear: 160
+	 33. advWid: 1147, LSdBear: 84
+	 34. advWid:  885, LSdBear: 47
+	 35. advWid: 1053, LSdBear: 303
+	 36. advWid:  885, LSdBear: -121
+	 37. advWid:  934, LSdBear: 100
+	 38. advWid:  893, LSdBear: 168
+	 39. advWid:  934, LSdBear: -182
+	 40. advWid:  950, LSdBear: 274
+	 41. advWid: 1229, LSdBear: 127
+	 42. advWid: 1229, LSdBear: 47
+	 43. advWid: 1126, LSdBear: 184
+	 44. advWid: 1884, LSdBear: 184
+	 45. advWid: 1217, LSdBear: 418
+	 46. advWid: 1217, LSdBear: 395
+	 47. advWid:  745, LSdBear: 418
+	 48. advWid:  745, LSdBear: 395
+	 49. advWid:  745, LSdBear: 266
+	 50. advWid:  745, LSdBear: 332
+	 51. advWid:  745, LSdBear: 176
+	 52. advWid:  868, LSdBear: 203
+	 53. advWid: 1096, LSdBear: -115
+	 54. advWid: 1608, LSdBear: -115
+	 55. advWid: 1710, LSdBear: -115
+	 56. advWid: 1513, LSdBear: -115
+	 57. advWid: 1526, LSdBear: 133
+	 58. advWid: 1434, LSdBear: -115
+	 59. advWid: 1180, LSdBear: 123
+	 60. advWid: 1130, LSdBear: -29
+	 61. advWid:  903, LSdBear: -123
+	 62. advWid: 1047, LSdBear: -121
+	 63. advWid: 1057, LSdBear: -313
+	 64. advWid: 1294, LSdBear: -233
+	 65. advWid: 1153, LSdBear: -94
+	 66. advWid: 1163, LSdBear: -238
+	 67. advWid: 1171, LSdBear: -78
+	 68. advWid: 1378, LSdBear: 41
+	 69. advWid: 2195, LSdBear: 80
+	 70. advWid:  856, LSdBear: 31
+	 71. advWid: 1135, LSdBear: 98
+	 72. advWid: 1526, LSdBear: 131
+	 73. advWid: 1458, LSdBear: -133
+	 74. advWid: 1057, LSdBear: -313
+	 75. advWid: 1243, LSdBear: -102
+	 76. advWid: 1153, LSdBear: -94
+	 77. advWid: 1153, LSdBear: -94
+	 78. advWid: 1096, LSdBear: -115
+	 79. advWid: 1096, LSdBear: -115
+	 80. advWid: 1294, LSdBear: -233
+	 81. advWid: 1513, LSdBear: -115
+	 82. advWid: 2195, LSdBear: 80
+	 83. advWid: 2195, LSdBear: 80
+	 84. advWid: 2195, LSdBear: 80
+	 85. advWid: 1153, LSdBear: -94
+	 86. advWid: 1153, LSdBear: -94
+	 87. advWid: 1130, LSdBear: -29
+	 88. advWid: 1130, LSdBear: -29
+	 89. advWid: 1171, LSdBear: -78
+	 90. advWid:  903, LSdBear: -123
+	 91. advWid:  600, LSdBear: 25
+	 92. advWid:  887, LSdBear: 25
+	 93. advWid:  618, LSdBear: 25
+	 94. advWid: 1038, LSdBear: 14
+	 95. advWid:  526, LSdBear: 25
+	 96. advWid: 1018, LSdBear: 25
+	 97. advWid:  522, LSdBear: 23
+	 98. advWid: 1014, LSdBear: 23
+	 99. advWid:  934, LSdBear: 25
+	100. advWid: 1008, LSdBear: 37
+	101. advWid:  635, LSdBear: 37
+	102. advWid:  903, LSdBear: 10
+	103. advWid:  682, LSdBear: 238
+	104. advWid:  682, LSdBear: 238
+	105. advWid:  682, LSdBear: 74
+	106. advWid:  682, LSdBear: 33
+	107. advWid: 1229, LSdBear: 119
+	108. advWid: 1677, LSdBear: 10
+	109. advWid:    0, LSdBear: 25
+	LSdBear 110: 25
+	LSdBear 111: 25
+	LSdBear 112: 14
+	LSdBear 113: 25
+	LSdBear 114: 25
+	LSdBear 115: 23
+	LSdBear 116: 23
+	LSdBear 117: 25
+	LSdBear 118: 37
+	LSdBear 119: 37
+
+'VDMX' Table - Precomputed Vertical Device Metrics
+--------------------------------------------------
+  Version:                 1
+  Number of Hgt Records:   1
+  Number of Ratio Records: 1
+
+    Ratio Record #1
+	CharSetId     1
+	xRatio        1
+	yStartRatio   1
+	yEndRatio     1
+	Record Offset 12 (group #1)
+
+   VDMX Height Record Groups
+   -------------------------
+   1.	Number of Hgt Records  248
+	Starting Y Pel Height  8
+	Ending Y Pel Height    255
+
+	     1. Pel Height= 8
+	        yMax=       7
+	        yMin=       -2
+
+	     2. Pel Height= 9
+	        yMax=       8
+	        yMin=       -2
+
+	     3. Pel Height= 10
+	        yMax=       9
+	        yMin=       -3
+
+	     4. Pel Height= 11
+	        yMax=       9
+	        yMin=       -3
+
+	     5. Pel Height= 12
+	        yMax=       11
+	        yMin=       -3
+
+	     6. Pel Height= 13
+	        yMax=       11
+	        yMin=       -3
+
+	     7. Pel Height= 14
+	        yMax=       13
+	        yMin=       -3
+
+	     8. Pel Height= 15
+	        yMax=       13
+	        yMin=       -4
+
+	     9. Pel Height= 16
+	        yMax=       14
+	        yMin=       -4
+
+	    10. Pel Height= 17
+	        yMax=       15
+	        yMin=       -4
+
+	    11. Pel Height= 18
+	        yMax=       16
+	        yMin=       -4
+
+	    12. Pel Height= 19
+	        yMax=       17
+	        yMin=       -5
+
+	    13. Pel Height= 20
+	        yMax=       17
+	        yMin=       -5
+
+	    14. Pel Height= 21
+	        yMax=       18
+	        yMin=       -6
+
+	    15. Pel Height= 22
+	        yMax=       19
+	        yMin=       -6
+
+	    16. Pel Height= 23
+	        yMax=       20
+	        yMin=       -6
+
+	    17. Pel Height= 24
+	        yMax=       21
+	        yMin=       -6
+
+	    18. Pel Height= 25
+	        yMax=       22
+	        yMin=       -6
+
+	    19. Pel Height= 26
+	        yMax=       22
+	        yMin=       -6
+
+	    20. Pel Height= 27
+	        yMax=       24
+	        yMin=       -7
+
+	    21. Pel Height= 28
+	        yMax=       24
+	        yMin=       -8
+
+	    22. Pel Height= 29
+	        yMax=       26
+	        yMin=       -8
+
+	    23. Pel Height= 30
+	        yMax=       26
+	        yMin=       -8
+
+	    24. Pel Height= 31
+	        yMax=       27
+	        yMin=       -8
+
+	    25. Pel Height= 32
+	        yMax=       28
+	        yMin=       -8
+
+	    26. Pel Height= 33
+	        yMax=       29
+	        yMin=       -9
+
+	    27. Pel Height= 34
+	        yMax=       30
+	        yMin=       -9
+
+	    28. Pel Height= 35
+	        yMax=       31
+	        yMin=       -9
+
+	    29. Pel Height= 36
+	        yMax=       31
+	        yMin=       -9
+
+	    30. Pel Height= 37
+	        yMax=       33
+	        yMin=       -9
+
+	    31. Pel Height= 38
+	        yMax=       33
+	        yMin=       -10
+
+	    32. Pel Height= 39
+	        yMax=       34
+	        yMin=       -10
+
+	    33. Pel Height= 40
+	        yMax=       35
+	        yMin=       -10
+
+	    34. Pel Height= 41
+	        yMax=       35
+	        yMin=       -10
+
+	    35. Pel Height= 42
+	        yMax=       37
+	        yMin=       -10
+
+	    36. Pel Height= 43
+	        yMax=       37
+	        yMin=       -10
+
+	    37. Pel Height= 44
+	        yMax=       39
+	        yMin=       -11
+
+	    38. Pel Height= 45
+	        yMax=       39
+	        yMin=       -11
+
+	    39. Pel Height= 46
+	        yMax=       40
+	        yMin=       -12
+
+	    40. Pel Height= 47
+	        yMax=       41
+	        yMin=       -12
+
+	    41. Pel Height= 48
+	        yMax=       42
+	        yMin=       -12
+
+	    42. Pel Height= 49
+	        yMax=       43
+	        yMin=       -12
+
+	    43. Pel Height= 50
+	        yMax=       44
+	        yMin=       -13
+
+	    44. Pel Height= 51
+	        yMax=       45
+	        yMin=       -13
+
+	    45. Pel Height= 52
+	        yMax=       46
+	        yMin=       -13
+
+	    46. Pel Height= 53
+	        yMax=       46
+	        yMin=       -13
+
+	    47. Pel Height= 54
+	        yMax=       48
+	        yMin=       -13
+
+	    48. Pel Height= 55
+	        yMax=       48
+	        yMin=       -14
+
+	    49. Pel Height= 56
+	        yMax=       50
+	        yMin=       -15
+
+	    50. Pel Height= 57
+	        yMax=       50
+	        yMin=       -15
+
+	    51. Pel Height= 58
+	        yMax=       50
+	        yMin=       -15
+
+	    52. Pel Height= 59
+	        yMax=       52
+	        yMin=       -15
+
+	    53. Pel Height= 60
+	        yMax=       52
+	        yMin=       -15
+
+	    54. Pel Height= 61
+	        yMax=       54
+	        yMin=       -15
+
+	    55. Pel Height= 62
+	        yMax=       54
+	        yMin=       -16
+
+	    56. Pel Height= 63
+	        yMax=       55
+	        yMin=       -16
+
+	    57. Pel Height= 64
+	        yMax=       56
+	        yMin=       -16
+
+	    58. Pel Height= 65
+	        yMax=       57
+	        yMin=       -17
+
+	    59. Pel Height= 66
+	        yMax=       58
+	        yMin=       -17
+
+	    60. Pel Height= 67
+	        yMax=       59
+	        yMin=       -17
+
+	    61. Pel Height= 68
+	        yMax=       59
+	        yMin=       -18
+
+	    62. Pel Height= 69
+	        yMax=       61
+	        yMin=       -18
+
+	    63. Pel Height= 70
+	        yMax=       61
+	        yMin=       -18
+
+	    64. Pel Height= 71
+	        yMax=       63
+	        yMin=       -18
+
+	    65. Pel Height= 72
+	        yMax=       63
+	        yMin=       -18
+
+	    66. Pel Height= 73
+	        yMax=       64
+	        yMin=       -18
+
+	    67. Pel Height= 74
+	        yMax=       65
+	        yMin=       -19
+
+	    68. Pel Height= 75
+	        yMax=       65
+	        yMin=       -19
+
+	    69. Pel Height= 76
+	        yMax=       67
+	        yMin=       -19
+
+	    70. Pel Height= 77
+	        yMax=       67
+	        yMin=       -19
+
+	    71. Pel Height= 78
+	        yMax=       68
+	        yMin=       -19
+
+	    72. Pel Height= 79
+	        yMax=       69
+	        yMin=       -20
+
+	    73. Pel Height= 80
+	        yMax=       70
+	        yMin=       -20
+
+	    74. Pel Height= 81
+	        yMax=       71
+	        yMin=       -20
+
+	    75. Pel Height= 82
+	        yMax=       72
+	        yMin=       -20
+
+	    76. Pel Height= 83
+	        yMax=       72
+	        yMin=       -21
+
+	    77. Pel Height= 84
+	        yMax=       74
+	        yMin=       -21
+
+	    78. Pel Height= 85
+	        yMax=       74
+	        yMin=       -22
+
+	    79. Pel Height= 86
+	        yMax=       76
+	        yMin=       -22
+
+	    80. Pel Height= 87
+	        yMax=       76
+	        yMin=       -22
+
+	    81. Pel Height= 88
+	        yMax=       77
+	        yMin=       -22
+
+	    82. Pel Height= 89
+	        yMax=       78
+	        yMin=       -22
+
+	    83. Pel Height= 90
+	        yMax=       79
+	        yMin=       -22
+
+	    84. Pel Height= 91
+	        yMax=       80
+	        yMin=       -23
+
+	    85. Pel Height= 92
+	        yMax=       81
+	        yMin=       -24
+
+	    86. Pel Height= 93
+	        yMax=       81
+	        yMin=       -24
+
+	    87. Pel Height= 94
+	        yMax=       82
+	        yMin=       -24
+
+	    88. Pel Height= 95
+	        yMax=       83
+	        yMin=       -24
+
+	    89. Pel Height= 96
+	        yMax=       84
+	        yMin=       -24
+
+	    90. Pel Height= 97
+	        yMax=       85
+	        yMin=       -25
+
+	    91. Pel Height= 98
+	        yMax=       85
+	        yMin=       -25
+
+	    92. Pel Height= 99
+	        yMax=       87
+	        yMin=       -25
+
+	    93. Pel Height= 100
+	        yMax=       87
+	        yMin=       -25
+
+	    94. Pel Height= 101
+	        yMax=       89
+	        yMin=       -25
+
+	    95. Pel Height= 102
+	        yMax=       89
+	        yMin=       -26
+
+	    96. Pel Height= 103
+	        yMax=       90
+	        yMin=       -27
+
+	    97. Pel Height= 104
+	        yMax=       91
+	        yMin=       -27
+
+	    98. Pel Height= 105
+	        yMax=       92
+	        yMin=       -27
+
+	    99. Pel Height= 106
+	        yMax=       93
+	        yMin=       -27
+
+	   100. Pel Height= 107
+	        yMax=       94
+	        yMin=       -27
+
+	   101. Pel Height= 108
+	        yMax=       94
+	        yMin=       -27
+
+	   102. Pel Height= 109
+	        yMax=       96
+	        yMin=       -28
+
+	   103. Pel Height= 110
+	        yMax=       96
+	        yMin=       -28
+
+	   104. Pel Height= 111
+	        yMax=       98
+	        yMin=       -28
+
+	   105. Pel Height= 112
+	        yMax=       98
+	        yMin=       -28
+
+	   106. Pel Height= 113
+	        yMax=       98
+	        yMin=       -28
+
+	   107. Pel Height= 114
+	        yMax=       100
+	        yMin=       -28
+
+	   108. Pel Height= 115
+	        yMax=       100
+	        yMin=       -29
+
+	   109. Pel Height= 116
+	        yMax=       102
+	        yMin=       -29
+
+	   110. Pel Height= 117
+	        yMax=       102
+	        yMin=       -29
+
+	   111. Pel Height= 118
+	        yMax=       103
+	        yMin=       -29
+
+	   112. Pel Height= 119
+	        yMax=       104
+	        yMin=       -29
+
+	   113. Pel Height= 120
+	        yMax=       105
+	        yMin=       -31
+
+	   114. Pel Height= 121
+	        yMax=       106
+	        yMin=       -31
+
+	   115. Pel Height= 122
+	        yMax=       107
+	        yMin=       -31
+
+	   116. Pel Height= 123
+	        yMax=       107
+	        yMin=       -31
+
+	   117. Pel Height= 124
+	        yMax=       109
+	        yMin=       -31
+
+	   118. Pel Height= 125
+	        yMax=       109
+	        yMin=       -31
+
+	   119. Pel Height= 126
+	        yMax=       111
+	        yMin=       -32
+
+	   120. Pel Height= 127
+	        yMax=       111
+	        yMin=       -32
+
+	   121. Pel Height= 128
+	        yMax=       112
+	        yMin=       -33
+
+	   122. Pel Height= 129
+	        yMax=       113
+	        yMin=       -33
+
+	   123. Pel Height= 130
+	        yMax=       114
+	        yMin=       -33
+
+	   124. Pel Height= 131
+	        yMax=       115
+	        yMin=       -33
+
+	   125. Pel Height= 132
+	        yMax=       115
+	        yMin=       -34
+
+	   126. Pel Height= 133
+	        yMax=       116
+	        yMin=       -34
+
+	   127. Pel Height= 134
+	        yMax=       117
+	        yMin=       -34
+
+	   128. Pel Height= 135
+	        yMax=       118
+	        yMin=       -34
+
+	   129. Pel Height= 136
+	        yMax=       119
+	        yMin=       -34
+
+	   130. Pel Height= 137
+	        yMax=       120
+	        yMin=       -34
+
+	   131. Pel Height= 138
+	        yMax=       120
+	        yMin=       -35
+
+	   132. Pel Height= 139
+	        yMax=       122
+	        yMin=       -36
+
+	   133. Pel Height= 140
+	        yMax=       122
+	        yMin=       -36
+
+	   134. Pel Height= 141
+	        yMax=       124
+	        yMin=       -36
+
+	   135. Pel Height= 142
+	        yMax=       124
+	        yMin=       -36
+
+	   136. Pel Height= 143
+	        yMax=       125
+	        yMin=       -36
+
+	   137. Pel Height= 144
+	        yMax=       126
+	        yMin=       -37
+
+	   138. Pel Height= 145
+	        yMax=       127
+	        yMin=       -37
+
+	   139. Pel Height= 146
+	        yMax=       128
+	        yMin=       -37
+
+	   140. Pel Height= 147
+	        yMax=       129
+	        yMin=       -37
+
+	   141. Pel Height= 148
+	        yMax=       129
+	        yMin=       -37
+
+	   142. Pel Height= 149
+	        yMax=       131
+	        yMin=       -37
+
+	   143. Pel Height= 150
+	        yMax=       131
+	        yMin=       -38
+
+	   144. Pel Height= 151
+	        yMax=       132
+	        yMin=       -38
+
+	   145. Pel Height= 152
+	        yMax=       133
+	        yMin=       -38
+
+	   146. Pel Height= 153
+	        yMax=       133
+	        yMin=       -38
+
+	   147. Pel Height= 154
+	        yMax=       135
+	        yMin=       -38
+
+	   148. Pel Height= 155
+	        yMax=       135
+	        yMin=       -38
+
+	   149. Pel Height= 156
+	        yMax=       137
+	        yMin=       -39
+
+	   150. Pel Height= 157
+	        yMax=       137
+	        yMin=       -40
+
+	   151. Pel Height= 158
+	        yMax=       139
+	        yMin=       -40
+
+	   152. Pel Height= 159
+	        yMax=       139
+	        yMin=       -40
+
+	   153. Pel Height= 160
+	        yMax=       140
+	        yMin=       -40
+
+	   154. Pel Height= 161
+	        yMax=       141
+	        yMin=       -41
+
+	   155. Pel Height= 162
+	        yMax=       142
+	        yMin=       -41
+
+	   156. Pel Height= 163
+	        yMax=       143
+	        yMin=       -41
+
+	   157. Pel Height= 164
+	        yMax=       144
+	        yMin=       -41
+
+	   158. Pel Height= 165
+	        yMax=       144
+	        yMin=       -42
+
+	   159. Pel Height= 166
+	        yMax=       146
+	        yMin=       -42
+
+	   160. Pel Height= 167
+	        yMax=       146
+	        yMin=       -43
+
+	   161. Pel Height= 168
+	        yMax=       147
+	        yMin=       -43
+
+	   162. Pel Height= 169
+	        yMax=       148
+	        yMin=       -43
+
+	   163. Pel Height= 170
+	        yMax=       148
+	        yMin=       -43
+
+	   164. Pel Height= 171
+	        yMax=       150
+	        yMin=       -43
+
+	   165. Pel Height= 172
+	        yMax=       150
+	        yMin=       -43
+
+	   166. Pel Height= 173
+	        yMax=       152
+	        yMin=       -44
+
+	   167. Pel Height= 174
+	        yMax=       152
+	        yMin=       -44
+
+	   168. Pel Height= 175
+	        yMax=       153
+	        yMin=       -44
+
+	   169. Pel Height= 176
+	        yMax=       154
+	        yMin=       -45
+
+	   170. Pel Height= 177
+	        yMax=       155
+	        yMin=       -45
+
+	   171. Pel Height= 178
+	        yMax=       156
+	        yMin=       -45
+
+	   172. Pel Height= 179
+	        yMax=       157
+	        yMin=       -46
+
+	   173. Pel Height= 180
+	        yMax=       157
+	        yMin=       -46
+
+	   174. Pel Height= 181
+	        yMax=       159
+	        yMin=       -46
+
+	   175. Pel Height= 182
+	        yMax=       159
+	        yMin=       -46
+
+	   176. Pel Height= 183
+	        yMax=       161
+	        yMin=       -46
+
+	   177. Pel Height= 184
+	        yMax=       161
+	        yMin=       -46
+
+	   178. Pel Height= 185
+	        yMax=       162
+	        yMin=       -47
+
+	   179. Pel Height= 186
+	        yMax=       163
+	        yMin=       -47
+
+	   180. Pel Height= 187
+	        yMax=       163
+	        yMin=       -47
+
+	   181. Pel Height= 188
+	        yMax=       165
+	        yMin=       -47
+
+	   182. Pel Height= 189
+	        yMax=       165
+	        yMin=       -47
+
+	   183. Pel Height= 190
+	        yMax=       166
+	        yMin=       -47
+
+	   184. Pel Height= 191
+	        yMax=       167
+	        yMin=       -48
+
+	   185. Pel Height= 192
+	        yMax=       168
+	        yMin=       -48
+
+	   186. Pel Height= 193
+	        yMax=       169
+	        yMin=       -48
+
+	   187. Pel Height= 194
+	        yMax=       170
+	        yMin=       -49
+
+	   188. Pel Height= 195
+	        yMax=       170
+	        yMin=       -49
+
+	   189. Pel Height= 196
+	        yMax=       172
+	        yMin=       -50
+
+	   190. Pel Height= 197
+	        yMax=       172
+	        yMin=       -50
+
+	   191. Pel Height= 198
+	        yMax=       174
+	        yMin=       -50
+
+	   192. Pel Height= 199
+	        yMax=       174
+	        yMin=       -50
+
+	   193. Pel Height= 200
+	        yMax=       175
+	        yMin=       -50
+
+	   194. Pel Height= 201
+	        yMax=       176
+	        yMin=       -51
+
+	   195. Pel Height= 202
+	        yMax=       177
+	        yMin=       -52
+
+	   196. Pel Height= 203
+	        yMax=       178
+	        yMin=       -52
+
+	   197. Pel Height= 204
+	        yMax=       179
+	        yMin=       -52
+
+	   198. Pel Height= 205
+	        yMax=       179
+	        yMin=       -52
+
+	   199. Pel Height= 206
+	        yMax=       180
+	        yMin=       -52
+
+	   200. Pel Height= 207
+	        yMax=       181
+	        yMin=       -52
+
+	   201. Pel Height= 208
+	        yMax=       182
+	        yMin=       -53
+
+	   202. Pel Height= 209
+	        yMax=       183
+	        yMin=       -53
+
+	   203. Pel Height= 210
+	        yMax=       183
+	        yMin=       -53
+
+	   204. Pel Height= 211
+	        yMax=       185
+	        yMin=       -53
+
+	   205. Pel Height= 212
+	        yMax=       185
+	        yMin=       -53
+
+	   206. Pel Height= 213
+	        yMax=       187
+	        yMin=       -54
+
+	   207. Pel Height= 214
+	        yMax=       187
+	        yMin=       -55
+
+	   208. Pel Height= 215
+	        yMax=       188
+	        yMin=       -55
+
+	   209. Pel Height= 216
+	        yMax=       189
+	        yMin=       -55
+
+	   210. Pel Height= 217
+	        yMax=       190
+	        yMin=       -55
+
+	   211. Pel Height= 218
+	        yMax=       191
+	        yMin=       -55
+
+	   212. Pel Height= 219
+	        yMax=       192
+	        yMin=       -55
+
+	   213. Pel Height= 220
+	        yMax=       192
+	        yMin=       -56
+
+	   214. Pel Height= 221
+	        yMax=       194
+	        yMin=       -56
+
+	   215. Pel Height= 222
+	        yMax=       194
+	        yMin=       -56
+
+	   216. Pel Height= 223
+	        yMax=       196
+	        yMin=       -56
+
+	   217. Pel Height= 224
+	        yMax=       196
+	        yMin=       -56
+
+	   218. Pel Height= 225
+	        yMax=       196
+	        yMin=       -56
+
+	   219. Pel Height= 226
+	        yMax=       198
+	        yMin=       -57
+
+	   220. Pel Height= 227
+	        yMax=       198
+	        yMin=       -57
+
+	   221. Pel Height= 228
+	        yMax=       200
+	        yMin=       -57
+
+	   222. Pel Height= 229
+	        yMax=       200
+	        yMin=       -57
+
+	   223. Pel Height= 230
+	        yMax=       201
+	        yMin=       -57
+
+	   224. Pel Height= 231
+	        yMax=       202
+	        yMin=       -58
+
+	   225. Pel Height= 232
+	        yMax=       203
+	        yMin=       -59
+
+	   226. Pel Height= 233
+	        yMax=       204
+	        yMin=       -59
+
+	   227. Pel Height= 234
+	        yMax=       205
+	        yMin=       -59
+
+	   228. Pel Height= 235
+	        yMax=       205
+	        yMin=       -59
+
+	   229. Pel Height= 236
+	        yMax=       207
+	        yMin=       -59
+
+	   230. Pel Height= 237
+	        yMax=       207
+	        yMin=       -60
+
+	   231. Pel Height= 238
+	        yMax=       209
+	        yMin=       -61
+
+	   232. Pel Height= 239
+	        yMax=       209
+	        yMin=       -61
+
+	   233. Pel Height= 240
+	        yMax=       210
+	        yMin=       -61
+
+	   234. Pel Height= 241
+	        yMax=       211
+	        yMin=       -61
+
+	   235. Pel Height= 242
+	        yMax=       212
+	        yMin=       -61
+
+	   236. Pel Height= 243
+	        yMax=       213
+	        yMin=       -62
+
+	   237. Pel Height= 244
+	        yMax=       213
+	        yMin=       -62
+
+	   238. Pel Height= 245
+	        yMax=       214
+	        yMin=       -62
+
+	   239. Pel Height= 246
+	        yMax=       215
+	        yMin=       -62
+
+	   240. Pel Height= 247
+	        yMax=       216
+	        yMin=       -62
+
+	   241. Pel Height= 248
+	        yMax=       217
+	        yMin=       -62
+
+	   242. Pel Height= 249
+	        yMax=       218
+	        yMin=       -64
+
+	   243. Pel Height= 250
+	        yMax=       218
+	        yMin=       -64
+
+	   244. Pel Height= 251
+	        yMax=       220
+	        yMin=       -64
+
+	   245. Pel Height= 252
+	        yMax=       220
+	        yMin=       -64
+
+	   246. Pel Height= 253
+	        yMax=       222
+	        yMin=       -64
+
+	   247. Pel Height= 254
+	        yMax=       222
+	        yMin=       -64
+
+	   248. Pel Height= 255
+	        yMax=       223
+	        yMin=       -65
+
+
+
+'LTSH' Table - Linear Threshold Table
+-------------------------------------
+Size = 124 bytes
+ 'LTSH' Version:          0
+ Number of Glyphs:        120
+
+   Glyph #   Threshold
+   -------   ---------
+        0.           1
+        1.           1
+        2.           1
+        3.           1
+        4.           1
+        5.           1
+        6.           9
+        7.           1
+        8.           1
+        9.          29
+       10.           1
+       11.          32
+       12.          32
+       13.           1
+       14.           1
+       15.           1
+       16.          26
+       17.           1
+       18.           1
+       19.           1
+       20.          27
+       21.           1
+       22.           1
+       23.           1
+       24.           1
+       25.           1
+       26.           1
+       27.           1
+       28.           1
+       29.           1
+       30.           1
+       31.           1
+       32.           1
+       33.           1
+       34.           1
+       35.           1
+       36.           1
+       37.           1
+       38.          48
+       39.           1
+       40.          15
+       41.           1
+       42.           1
+       43.          31
+       44.           1
+       45.           1
+       46.           1
+       47.           1
+       48.           1
+       49.           1
+       50.           1
+       51.           1
+       52.          47
+       53.          15
+       54.           8
+       55.           1
+       56.           1
+       57.           1
+       58.           1
+       59.           1
+       60.           1
+       61.          18
+       62.          45
+       63.           1
+       64.           1
+       65.           1
+       66.          23
+       67.           1
+       68.          27
+       69.           1
+       70.           1
+       71.          47
+       72.           1
+       73.          34
+       74.           1
+       75.          15
+       76.           1
+       77.           1
+       78.          15
+       79.          15
+       80.           1
+       81.           1
+       82.           1
+       83.           1
+       84.           1
+       85.           1
+       86.           1
+       87.           1
+       88.           1
+       89.           1
+       90.          18
+       91.          30
+       92.          16
+       93.           1
+       94.           1
+       95.           1
+       96.           2
+       97.           1
+       98.           2
+       99.           1
+      100.           2
+      101.           1
+      102.          18
+      103.           1
+      104.           1
+      105.           1
+      106.           1
+      107.           1
+      108.           1
+      109.           1
+      110.           1
+      111.           1
+      112.           1
+      113.           1
+      114.           1
+      115.           1
+      116.           1
+      117.           1
+      118.           1
+      119.           1
+
+'hdmx' Table - Horizontal Device Metrics
+----------------------------------------
+Size = 2860 bytes
+	'hdmx' version:		0
+	# device records:	23
+	Record length:		124
+	DevRec  0: ppem =   9, maxWid =  10
+    0.   9
+    1.   0
+    2.   5
+    3.   4
+    4.   3
+    5.   4
+    6.   6
+    7.   5
+    8.   6
+    9.   7
+   10.   2
+   11.   5
+   12.   5
+   13.   3
+   14.   5
+   15.   3
+   16.   4
+   17.   3
+   18.   5
+   19.   6
+   20.   4
+   21.   6
+   22.   6
+   23.   6
+   24.   6
+   25.   6
+   26.   5
+   27.   6
+   28.   6
+   29.   3
+   30.   3
+   31.   5
+   32.   5
+   33.   5
+   34.   4
+   35.   5
+   36.   4
+   37.   4
+   38.   4
+   39.   4
+   40.   4
+   41.   5
+   42.   5
+   43.   5
+   44.   8
+   45.   5
+   46.   5
+   47.   3
+   48.   3
+   49.   3
+   50.   3
+   51.   3
+   52.   4
+   53.   5
+   54.   7
+   55.   8
+   56.   7
+   57.   7
+   58.   6
+   59.   5
+   60.   5
+   61.   4
+   62.   5
+   63.   5
+   64.   6
+   65.   5
+   66.   5
+   67.   5
+   68.   6
+   69.  10
+   70.   4
+   71.   5
+   72.   7
+   73.   6
+   74.   5
+   75.   5
+   76.   5
+   77.   5
+   78.   5
+   79.   5
+   80.   6
+   81.   7
+   82.  10
+   83.  10
+   84.  10
+   85.   5
+   86.   5
+   87.   5
+   88.   5
+   89.   5
+   90.   4
+   91.   3
+   92.   4
+   93.   3
+   94.   5
+   95.   2
+   96.   4
+   97.   2
+   98.   4
+   99.   4
+  100.   4
+  101.   3
+  102.   4
+  103.   3
+  104.   3
+  105.   3
+  106.   3
+  107.   5
+  108.   7
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec  1: ppem =  10, maxWid =  11
+    0.  10
+    1.   0
+    2.   5
+    3.   5
+    4.   4
+    5.   5
+    6.   7
+    7.   6
+    8.   7
+    9.   7
+   10.   2
+   11.   5
+   12.   5
+   13.   4
+   14.   6
+   15.   4
+   16.   5
+   17.   4
+   18.   5
+   19.   7
+   20.   4
+   21.   7
+   22.   7
+   23.   7
+   24.   7
+   25.   7
+   26.   6
+   27.   7
+   28.   7
+   29.   4
+   30.   4
+   31.   6
+   32.   6
+   33.   6
+   34.   4
+   35.   5
+   36.   4
+   37.   5
+   38.   4
+   39.   5
+   40.   5
+   41.   6
+   42.   6
+   43.   6
+   44.   9
+   45.   6
+   46.   6
+   47.   4
+   48.   4
+   49.   4
+   50.   4
+   51.   4
+   52.   4
+   53.   5
+   54.   8
+   55.   8
+   56.   7
+   57.   7
+   58.   7
+   59.   6
+   60.   6
+   61.   4
+   62.   5
+   63.   5
+   64.   6
+   65.   6
+   66.   6
+   67.   6
+   68.   7
+   69.  11
+   70.   4
+   71.   6
+   72.   7
+   73.   7
+   74.   5
+   75.   6
+   76.   6
+   77.   6
+   78.   5
+   79.   5
+   80.   6
+   81.   7
+   82.  11
+   83.  11
+   84.  11
+   85.   6
+   86.   6
+   87.   6
+   88.   6
+   89.   6
+   90.   4
+   91.   3
+   92.   4
+   93.   3
+   94.   5
+   95.   3
+   96.   5
+   97.   3
+   98.   5
+   99.   5
+  100.   5
+  101.   3
+  102.   4
+  103.   3
+  104.   3
+  105.   3
+  106.   3
+  107.   6
+  108.   8
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec  2: ppem =  11, maxWid =  12
+    0.  11
+    1.   0
+    2.   6
+    3.   5
+    4.   4
+    5.   5
+    6.   8
+    7.   6
+    8.   8
+    9.   8
+   10.   2
+   11.   6
+   12.   6
+   13.   4
+   14.   6
+   15.   4
+   16.   5
+   17.   4
+   18.   6
+   19.   8
+   20.   4
+   21.   7
+   22.   7
+   23.   8
+   24.   7
+   25.   7
+   26.   7
+   27.   7
+   28.   7
+   29.   4
+   30.   4
+   31.   6
+   32.   6
+   33.   6
+   34.   5
+   35.   6
+   36.   5
+   37.   5
+   38.   5
+   39.   5
+   40.   5
+   41.   7
+   42.   7
+   43.   6
+   44.  10
+   45.   7
+   46.   7
+   47.   4
+   48.   4
+   49.   4
+   50.   4
+   51.   4
+   52.   5
+   53.   6
+   54.   9
+   55.   9
+   56.   8
+   57.   8
+   58.   8
+   59.   6
+   60.   6
+   61.   5
+   62.   6
+   63.   6
+   64.   7
+   65.   6
+   66.   6
+   67.   6
+   68.   7
+   69.  12
+   70.   5
+   71.   6
+   72.   8
+   73.   8
+   74.   6
+   75.   7
+   76.   6
+   77.   6
+   78.   6
+   79.   6
+   80.   7
+   81.   8
+   82.  12
+   83.  12
+   84.  12
+   85.   6
+   86.   6
+   87.   6
+   88.   6
+   89.   6
+   90.   5
+   91.   3
+   92.   5
+   93.   3
+   94.   6
+   95.   3
+   96.   5
+   97.   3
+   98.   5
+   99.   5
+  100.   5
+  101.   3
+  102.   5
+  103.   4
+  104.   4
+  105.   4
+  106.   4
+  107.   7
+  108.   9
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec  3: ppem =  12, maxWid =  13
+    0.  12
+    1.   0
+    2.   6
+    3.   6
+    4.   4
+    5.   5
+    6.   8
+    7.   7
+    8.   8
+    9.   9
+   10.   3
+   11.   6
+   12.   6
+   13.   4
+   14.   7
+   15.   4
+   16.   6
+   17.   4
+   18.   6
+   19.   8
+   20.   5
+   21.   8
+   22.   8
+   23.   8
+   24.   8
+   25.   8
+   26.   7
+   27.   8
+   28.   8
+   29.   4
+   30.   4
+   31.   7
+   32.   7
+   33.   7
+   34.   5
+   35.   6
+   36.   5
+   37.   5
+   38.   5
+   39.   5
+   40.   6
+   41.   7
+   42.   7
+   43.   7
+   44.  11
+   45.   7
+   46.   7
+   47.   4
+   48.   4
+   49.   4
+   50.   4
+   51.   4
+   52.   5
+   53.   6
+   54.   9
+   55.  10
+   56.   9
+   57.   9
+   58.   8
+   59.   7
+   60.   7
+   61.   5
+   62.   6
+   63.   6
+   64.   8
+   65.   7
+   66.   7
+   67.   7
+   68.   8
+   69.  13
+   70.   5
+   71.   7
+   72.   9
+   73.   9
+   74.   6
+   75.   7
+   76.   7
+   77.   7
+   78.   6
+   79.   6
+   80.   8
+   81.   9
+   82.  13
+   83.  13
+   84.  13
+   85.   7
+   86.   7
+   87.   7
+   88.   7
+   89.   7
+   90.   5
+   91.   4
+   92.   5
+   93.   4
+   94.   6
+   95.   3
+   96.   6
+   97.   3
+   98.   6
+   99.   5
+  100.   6
+  101.   4
+  102.   5
+  103.   4
+  104.   4
+  105.   4
+  106.   4
+  107.   7
+  108.  10
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec  4: ppem =  13, maxWid =  14
+    0.  13
+    1.   0
+    2.   7
+    3.   6
+    4.   5
+    5.   6
+    6.   9
+    7.   7
+    8.   9
+    9.  10
+   10.   3
+   11.   7
+   12.   7
+   13.   5
+   14.   7
+   15.   5
+   16.   6
+   17.   5
+   18.   7
+   19.   9
+   20.   5
+   21.   9
+   22.   9
+   23.   9
+   24.   9
+   25.   9
+   26.   8
+   27.   9
+   28.   9
+   29.   5
+   30.   5
+   31.   7
+   32.   7
+   33.   7
+   34.   6
+   35.   7
+   36.   6
+   37.   6
+   38.   6
+   39.   6
+   40.   6
+   41.   8
+   42.   8
+   43.   7
+   44.  12
+   45.   8
+   46.   8
+   47.   5
+   48.   5
+   49.   5
+   50.   5
+   51.   5
+   52.   6
+   53.   7
+   54.  10
+   55.  11
+   56.  10
+   57.  10
+   58.   9
+   59.   7
+   60.   7
+   61.   6
+   62.   7
+   63.   7
+   64.   8
+   65.   7
+   66.   7
+   67.   7
+   68.   9
+   69.  14
+   70.   5
+   71.   7
+   72.  10
+   73.   9
+   74.   7
+   75.   8
+   76.   7
+   77.   7
+   78.   7
+   79.   7
+   80.   8
+   81.  10
+   82.  14
+   83.  14
+   84.  14
+   85.   7
+   86.   7
+   87.   7
+   88.   7
+   89.   7
+   90.   6
+   91.   4
+   92.   6
+   93.   4
+   94.   7
+   95.   3
+   96.   6
+   97.   3
+   98.   6
+   99.   6
+  100.   6
+  101.   4
+  102.   6
+  103.   4
+  104.   4
+  105.   4
+  106.   4
+  107.   8
+  108.  11
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec  5: ppem =  14, maxWid =  15
+    0.  14
+    1.   0
+    2.   7
+    3.   7
+    4.   5
+    5.   6
+    6.  10
+    7.   8
+    8.  10
+    9.  10
+   10.   3
+   11.   7
+   12.   7
+   13.   5
+   14.   8
+   15.   5
+   16.   6
+   17.   5
+   18.   7
+   19.  10
+   20.   6
+   21.   9
+   22.   9
+   23.  10
+   24.   9
+   25.   9
+   26.   8
+   27.   9
+   28.   9
+   29.   5
+   30.   5
+   31.   8
+   32.   8
+   33.   8
+   34.   6
+   35.   7
+   36.   6
+   37.   6
+   38.   6
+   39.   6
+   40.   7
+   41.   8
+   42.   8
+   43.   8
+   44.  13
+   45.   8
+   46.   8
+   47.   5
+   48.   5
+   49.   5
+   50.   5
+   51.   5
+   52.   6
+   53.   8
+   54.  11
+   55.  12
+   56.  10
+   57.  10
+   58.  10
+   59.   8
+   60.   8
+   61.   6
+   62.   7
+   63.   7
+   64.   9
+   65.   8
+   66.   8
+   67.   8
+   68.   9
+   69.  15
+   70.   6
+   71.   8
+   72.  10
+   73.  10
+   74.   7
+   75.   9
+   76.   8
+   77.   8
+   78.   8
+   79.   8
+   80.   9
+   81.  10
+   82.  15
+   83.  15
+   84.  15
+   85.   8
+   86.   8
+   87.   8
+   88.   8
+   89.   8
+   90.   6
+   91.   4
+   92.   6
+   93.   4
+   94.   7
+   95.   4
+   96.   7
+   97.   4
+   98.   7
+   99.   6
+  100.   7
+  101.   4
+  102.   6
+  103.   5
+  104.   5
+  105.   5
+  106.   5
+  107.   8
+  108.  11
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec  6: ppem =  15, maxWid =  16
+    0.  15
+    1.   0
+    2.   8
+    3.   7
+    4.   5
+    5.   7
+    6.  10
+    7.   8
+    8.  11
+    9.  11
+   10.   3
+   11.   8
+   12.   8
+   13.   6
+   14.   8
+   15.   5
+   16.   7
+   17.   5
+   18.   8
+   19.  11
+   20.   6
+   21.  10
+   22.  10
+   23.  10
+   24.  10
+   25.  10
+   26.   9
+   27.  10
+   28.  10
+   29.   5
+   30.   5
+   31.   8
+   32.   8
+   33.   8
+   34.   6
+   35.   8
+   36.   6
+   37.   7
+   38.   7
+   39.   7
+   40.   7
+   41.   9
+   42.   9
+   43.   8
+   44.  14
+   45.   9
+   46.   9
+   47.   5
+   48.   5
+   49.   5
+   50.   5
+   51.   5
+   52.   6
+   53.   8
+   54.  12
+   55.  13
+   56.  11
+   57.  11
+   58.  11
+   59.   9
+   60.   8
+   61.   7
+   62.   8
+   63.   8
+   64.   9
+   65.   8
+   66.   9
+   67.   9
+   68.  10
+   69.  16
+   70.   6
+   71.   8
+   72.  11
+   73.  11
+   74.   8
+   75.   9
+   76.   8
+   77.   8
+   78.   8
+   79.   8
+   80.   9
+   81.  11
+   82.  16
+   83.  16
+   84.  16
+   85.   8
+   86.   8
+   87.   8
+   88.   8
+   89.   9
+   90.   7
+   91.   4
+   92.   7
+   93.   5
+   94.   8
+   95.   4
+   96.   7
+   97.   4
+   98.   7
+   99.   7
+  100.   7
+  101.   5
+  102.   7
+  103.   5
+  104.   5
+  105.   5
+  106.   5
+  107.   9
+  108.  12
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec  7: ppem =  16, maxWid =  17
+    0.  16
+    1.   0
+    2.   8
+    3.   8
+    4.   6
+    5.   7
+    6.  11
+    7.   9
+    8.  11
+    9.  12
+   10.   4
+   11.   9
+   12.   9
+   13.   6
+   14.   9
+   15.   6
+   16.   7
+   17.   6
+   18.   8
+   19.  11
+   20.   6
+   21.  11
+   22.  11
+   23.  11
+   24.  11
+   25.  11
+   26.  10
+   27.  11
+   28.  11
+   29.   6
+   30.   6
+   31.   9
+   32.   9
+   33.   9
+   34.   7
+   35.   8
+   36.   7
+   37.   7
+   38.   7
+   39.   7
+   40.   7
+   41.  10
+   42.  10
+   43.   9
+   44.  15
+   45.  10
+   46.  10
+   47.   6
+   48.   6
+   49.   6
+   50.   6
+   51.   6
+   52.   7
+   53.   9
+   54.  13
+   55.  13
+   56.  12
+   57.  12
+   58.  11
+   59.   9
+   60.   9
+   61.   7
+   62.   8
+   63.   8
+   64.  10
+   65.   9
+   66.   9
+   67.   9
+   68.  11
+   69.  17
+   70.   7
+   71.   9
+   72.  12
+   73.  11
+   74.   8
+   75.  10
+   76.   9
+   77.   9
+   78.   9
+   79.   9
+   80.  10
+   81.  12
+   82.  17
+   83.  17
+   84.  17
+   85.   9
+   86.   9
+   87.   9
+   88.   9
+   89.   9
+   90.   7
+   91.   5
+   92.   7
+   93.   5
+   94.   8
+   95.   4
+   96.   8
+   97.   4
+   98.   8
+   99.   7
+  100.   8
+  101.   5
+  102.   7
+  103.   5
+  104.   5
+  105.   5
+  106.   5
+  107.  10
+  108.  13
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec  8: ppem =  17, maxWid =  18
+    0.  17
+    1.   0
+    2.   9
+    3.   8
+    4.   6
+    5.   8
+    6.  12
+    7.  10
+    8.  12
+    9.  12
+   10.   4
+   11.   9
+   12.   9
+   13.   6
+   14.  10
+   15.   6
+   16.   8
+   17.   6
+   18.   9
+   19.  12
+   20.   7
+   21.  11
+   22.  11
+   23.  12
+   24.  11
+   25.  11
+   26.  10
+   27.  11
+   28.  11
+   29.   6
+   30.   6
+   31.  10
+   32.  10
+   33.  10
+   34.   7
+   35.   9
+   36.   7
+   37.   8
+   38.   7
+   39.   8
+   40.   8
+   41.  10
+   42.  10
+   43.   9
+   44.  16
+   45.  10
+   46.  10
+   47.   6
+   48.   6
+   49.   6
+   50.   6
+   51.   6
+   52.   7
+   53.   9
+   54.  13
+   55.  14
+   56.  13
+   57.  13
+   58.  12
+   59.  10
+   60.   9
+   61.   8
+   62.   9
+   63.   9
+   64.  11
+   65.  10
+   66.  10
+   67.  10
+   68.  11
+   69.  18
+   70.   7
+   71.   9
+   72.  13
+   73.  12
+   74.   9
+   75.  10
+   76.  10
+   77.  10
+   78.   9
+   79.   9
+   80.  11
+   81.  13
+   82.  18
+   83.  18
+   84.  18
+   85.  10
+   86.  10
+   87.   9
+   88.   9
+   89.  10
+   90.   8
+   91.   5
+   92.   7
+   93.   5
+   94.   9
+   95.   4
+   96.   8
+   97.   4
+   98.   8
+   99.   8
+  100.   8
+  101.   5
+  102.   8
+  103.   6
+  104.   6
+  105.   6
+  106.   6
+  107.  10
+  108.  14
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec  9: ppem =  18, maxWid =  19
+    0.  18
+    1.   0
+    2.   9
+    3.   9
+    4.   7
+    5.   8
+    6.  12
+    7.  10
+    8.  13
+    9.  13
+   10.   4
+   11.  10
+   12.  10
+   13.   7
+   14.  10
+   15.   7
+   16.   8
+   17.   7
+   18.   9
+   19.  13
+   20.   7
+   21.  12
+   22.  12
+   23.  12
+   24.  12
+   25.  12
+   26.  11
+   27.  12
+   28.  12
+   29.   7
+   30.   7
+   31.  10
+   32.  10
+   33.  10
+   34.   8
+   35.   9
+   36.   8
+   37.   8
+   38.   8
+   39.   8
+   40.   8
+   41.  11
+   42.  11
+   43.  10
+   44.  17
+   45.  11
+   46.  11
+   47.   7
+   48.   7
+   49.   7
+   50.   7
+   51.   7
+   52.   8
+   53.  10
+   54.  14
+   55.  15
+   56.  13
+   57.  13
+   58.  13
+   59.  10
+   60.  10
+   61.   8
+   62.   9
+   63.   9
+   64.  11
+   65.  10
+   66.  10
+   67.  10
+   68.  12
+   69.  19
+   70.   8
+   71.  10
+   72.  13
+   73.  13
+   74.   9
+   75.  11
+   76.  10
+   77.  10
+   78.  10
+   79.  10
+   80.  11
+   81.  13
+   82.  19
+   83.  19
+   84.  19
+   85.  10
+   86.  10
+   87.  10
+   88.  10
+   89.  10
+   90.   8
+   91.   5
+   92.   8
+   93.   5
+   94.   9
+   95.   5
+   96.   9
+   97.   5
+   98.   9
+   99.   8
+  100.   9
+  101.   6
+  102.   8
+  103.   6
+  104.   6
+  105.   6
+  106.   6
+  107.  11
+  108.  15
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 10: ppem =  19, maxWid =  20
+    0.  19
+    1.   0
+    2.  10
+    3.   9
+    4.   7
+    5.   9
+    6.  13
+    7.  11
+    8.  13
+    9.  14
+   10.   4
+   11.  10
+   12.  10
+   13.   7
+   14.  11
+   15.   7
+   16.   9
+   17.   7
+   18.  10
+   19.  13
+   20.   8
+   21.  13
+   22.  13
+   23.  13
+   24.  13
+   25.  13
+   26.  11
+   27.  12
+   28.  13
+   29.   7
+   30.   7
+   31.  11
+   32.  11
+   33.  11
+   34.   8
+   35.  10
+   36.   8
+   37.   9
+   38.   8
+   39.   9
+   40.   9
+   41.  11
+   42.  11
+   43.  10
+   44.  17
+   45.  11
+   46.  11
+   47.   7
+   48.   7
+   49.   7
+   50.   7
+   51.   7
+   52.   8
+   53.  10
+   54.  15
+   55.  16
+   56.  14
+   57.  14
+   58.  13
+   59.  11
+   60.  10
+   61.   8
+   62.  10
+   63.  10
+   64.  12
+   65.  11
+   66.  11
+   67.  11
+   68.  13
+   69.  20
+   70.   8
+   71.  11
+   72.  14
+   73.  14
+   74.  10
+   75.  12
+   76.  11
+   77.  11
+   78.  10
+   79.  10
+   80.  12
+   81.  14
+   82.  20
+   83.  20
+   84.  20
+   85.  11
+   86.  11
+   87.  10
+   88.  10
+   89.  11
+   90.   8
+   91.   6
+   92.   8
+   93.   6
+   94.  10
+   95.   5
+   96.   9
+   97.   5
+   98.   9
+   99.   9
+  100.   9
+  101.   6
+  102.   8
+  103.   6
+  104.   6
+  105.   6
+  106.   6
+  107.  11
+  108.  16
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 11: ppem =  20, maxWid =  21
+    0.  20
+    1.   0
+    2.  10
+    3.  10
+    4.   7
+    5.   9
+    6.  14
+    7.  11
+    8.  14
+    9.  15
+   10.   4
+   11.  11
+   12.  11
+   13.   7
+   14.  11
+   15.   7
+   16.   9
+   17.   7
+   18.  10
+   19.  14
+   20.   8
+   21.  13
+   22.  13
+   23.  14
+   24.  13
+   25.  13
+   26.  12
+   27.  13
+   28.  13
+   29.   7
+   30.   7
+   31.  11
+   32.  11
+   33.  11
+   34.   9
+   35.  10
+   36.   9
+   37.   9
+   38.   9
+   39.   9
+   40.   9
+   41.  12
+   42.  12
+   43.  11
+   44.  18
+   45.  12
+   46.  12
+   47.   7
+   48.   7
+   49.   7
+   50.   7
+   51.   7
+   52.   8
+   53.  11
+   54.  16
+   55.  17
+   56.  15
+   57.  15
+   58.  14
+   59.  12
+   60.  11
+   61.   9
+   62.  10
+   63.  10
+   64.  13
+   65.  11
+   66.  11
+   67.  11
+   68.  13
+   69.  21
+   70.   8
+   71.  11
+   72.  15
+   73.  14
+   74.  10
+   75.  12
+   76.  11
+   77.  11
+   78.  11
+   79.  11
+   80.  13
+   81.  15
+   82.  21
+   83.  21
+   84.  21
+   85.  11
+   86.  11
+   87.  11
+   88.  11
+   89.  11
+   90.   9
+   91.   6
+   92.   9
+   93.   6
+   94.  10
+   95.   5
+   96.  10
+   97.   5
+   98.  10
+   99.   9
+  100.  10
+  101.   6
+  102.   9
+  103.   7
+  104.   7
+  105.   7
+  106.   7
+  107.  12
+  108.  16
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 12: ppem =  21, maxWid =  23
+    0.  21
+    1.   0
+    2.  11
+    3.  10
+    4.   8
+    5.  10
+    6.  14
+    7.  12
+    8.  15
+    9.  15
+   10.   5
+   11.  11
+   12.  11
+   13.   8
+   14.  12
+   15.   8
+   16.  10
+   17.   8
+   18.  11
+   19.  15
+   20.   8
+   21.  14
+   22.  14
+   23.  14
+   24.  14
+   25.  14
+   26.  13
+   27.  14
+   28.  14
+   29.   8
+   30.   8
+   31.  12
+   32.  12
+   33.  12
+   34.   9
+   35.  11
+   36.   9
+   37.  10
+   38.   9
+   39.  10
+   40.  10
+   41.  13
+   42.  13
+   43.  12
+   44.  19
+   45.  12
+   46.  12
+   47.   8
+   48.   8
+   49.   8
+   50.   8
+   51.   8
+   52.   9
+   53.  11
+   54.  16
+   55.  18
+   56.  16
+   57.  16
+   58.  15
+   59.  12
+   60.  12
+   61.   9
+   62.  11
+   63.  11
+   64.  13
+   65.  12
+   66.  12
+   67.  12
+   68.  14
+   69.  23
+   70.   9
+   71.  12
+   72.  16
+   73.  15
+   74.  11
+   75.  13
+   76.  12
+   77.  12
+   78.  11
+   79.  11
+   80.  13
+   81.  16
+   82.  23
+   83.  23
+   84.  23
+   85.  12
+   86.  12
+   87.  12
+   88.  12
+   89.  12
+   90.   9
+   91.   6
+   92.   9
+   93.   6
+   94.  11
+   95.   5
+   96.  10
+   97.   5
+   98.  10
+   99.  10
+  100.  10
+  101.   7
+  102.   9
+  103.   7
+  104.   7
+  105.   7
+  106.   7
+  107.  13
+  108.  17
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 13: ppem =  22, maxWid =  24
+    0.  22
+    1.   0
+    2.  11
+    3.  11
+    4.   8
+    5.  10
+    6.  15
+    7.  12
+    8.  15
+    9.  16
+   10.   5
+   11.  12
+   12.  12
+   13.   8
+   14.  12
+   15.   8
+   16.  10
+   17.   8
+   18.  11
+   19.  15
+   20.   9
+   21.  15
+   22.  15
+   23.  15
+   24.  15
+   25.  15
+   26.  13
+   27.  14
+   28.  15
+   29.   8
+   30.   8
+   31.  12
+   32.  12
+   33.  12
+   34.  10
+   35.  11
+   36.  10
+   37.  10
+   38.  10
+   39.  10
+   40.  10
+   41.  13
+   42.  13
+   43.  12
+   44.  20
+   45.  13
+   46.  13
+   47.   8
+   48.   8
+   49.   8
+   50.   8
+   51.   8
+   52.   9
+   53.  12
+   54.  17
+   55.  18
+   56.  16
+   57.  16
+   58.  15
+   59.  13
+   60.  12
+   61.  10
+   62.  11
+   63.  11
+   64.  14
+   65.  12
+   66.  13
+   67.  13
+   68.  15
+   69.  24
+   70.   9
+   71.  12
+   72.  16
+   73.  16
+   74.  11
+   75.  13
+   76.  12
+   77.  12
+   78.  12
+   79.  12
+   80.  14
+   81.  16
+   82.  24
+   83.  24
+   84.  24
+   85.  12
+   86.  12
+   87.  12
+   88.  12
+   89.  13
+   90.  10
+   91.   6
+   92.  10
+   93.   7
+   94.  11
+   95.   6
+   96.  11
+   97.   6
+   98.  11
+   99.  10
+  100.  11
+  101.   7
+  102.  10
+  103.   7
+  104.   7
+  105.   7
+  106.   7
+  107.  13
+  108.  18
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 14: ppem =  23, maxWid =  25
+    0.  23
+    1.   0
+    2.  12
+    3.  11
+    4.   8
+    5.  10
+    6.  16
+    7.  13
+    8.  16
+    9.  17
+   10.   5
+   11.  12
+   12.  12
+   13.   8
+   14.  13
+   15.   8
+   16.  11
+   17.   8
+   18.  12
+   19.  16
+   20.   9
+   21.  15
+   22.  15
+   23.  16
+   24.  15
+   25.  15
+   26.  14
+   27.  15
+   28.  15
+   29.   8
+   30.   8
+   31.  13
+   32.  13
+   33.  13
+   34.  10
+   35.  12
+   36.  10
+   37.  10
+   38.  10
+   39.  10
+   40.  11
+   41.  14
+   42.  14
+   43.  13
+   44.  21
+   45.  14
+   46.  14
+   47.   8
+   48.   8
+   49.   8
+   50.   8
+   51.   8
+   52.  10
+   53.  12
+   54.  18
+   55.  19
+   56.  17
+   57.  17
+   58.  16
+   59.  13
+   60.  13
+   61.  10
+   62.  12
+   63.  12
+   64.  15
+   65.  13
+   66.  13
+   67.  13
+   68.  15
+   69.  25
+   70.  10
+   71.  13
+   72.  17
+   73.  16
+   74.  12
+   75.  14
+   76.  13
+   77.  13
+   78.  12
+   79.  12
+   80.  15
+   81.  17
+   82.  25
+   83.  25
+   84.  25
+   85.  13
+   86.  13
+   87.  13
+   88.  13
+   89.  13
+   90.  10
+   91.   7
+   92.  10
+   93.   7
+   94.  12
+   95.   6
+   96.  11
+   97.   6
+   98.  11
+   99.  10
+  100.  11
+  101.   7
+  102.  10
+  103.   8
+  104.   8
+  105.   8
+  106.   8
+  107.  14
+  108.  19
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 15: ppem =  24, maxWid =  26
+    0.  24
+    1.   0
+    2.  12
+    3.  12
+    4.   9
+    5.  11
+    6.  16
+    7.  13
+    8.  17
+    9.  18
+   10.   5
+   11.  13
+   12.  13
+   13.   9
+   14.  13
+   15.   9
+   16.  11
+   17.   9
+   18.  12
+   19.  17
+   20.  10
+   21.  16
+   22.  16
+   23.  16
+   24.  16
+   25.  16
+   26.  14
+   27.  16
+   28.  16
+   29.   9
+   30.   9
+   31.  13
+   32.  13
+   33.  13
+   34.  10
+   35.  12
+   36.  10
+   37.  11
+   38.  10
+   39.  11
+   40.  11
+   41.  14
+   42.  14
+   43.  13
+   44.  22
+   45.  14
+   46.  14
+   47.   9
+   48.   9
+   49.   9
+   50.   9
+   51.   9
+   52.  10
+   53.  13
+   54.  19
+   55.  20
+   56.  18
+   57.  18
+   58.  17
+   59.  14
+   60.  13
+   61.  11
+   62.  12
+   63.  12
+   64.  15
+   65.  14
+   66.  14
+   67.  14
+   68.  16
+   69.  26
+   70.  10
+   71.  13
+   72.  18
+   73.  17
+   74.  12
+   75.  15
+   76.  14
+   77.  14
+   78.  13
+   79.  13
+   80.  15
+   81.  18
+   82.  26
+   83.  26
+   84.  26
+   85.  14
+   86.  14
+   87.  13
+   88.  13
+   89.  14
+   90.  11
+   91.   7
+   92.  10
+   93.   7
+   94.  12
+   95.   6
+   96.  12
+   97.   6
+   98.  12
+   99.  11
+  100.  12
+  101.   7
+  102.  11
+  103.   8
+  104.   8
+  105.   8
+  106.   8
+  107.  14
+  108.  20
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 16: ppem =  27, maxWid =  29
+    0.  27
+    1.   0
+    2.  14
+    3.  13
+    4.  10
+    5.  12
+    6.  19
+    7.  15
+    8.  19
+    9.  20
+   10.   6
+   11.  14
+   12.  14
+   13.  10
+   14.  15
+   15.  10
+   16.  12
+   17.  10
+   18.  14
+   19.  19
+   20.  11
+   21.  18
+   22.  18
+   23.  18
+   24.  18
+   25.  18
+   26.  16
+   27.  18
+   28.  18
+   29.  10
+   30.  10
+   31.  15
+   32.  15
+   33.  15
+   34.  12
+   35.  14
+   36.  12
+   37.  12
+   38.  12
+   39.  12
+   40.  13
+   41.  16
+   42.  16
+   43.  15
+   44.  25
+   45.  16
+   46.  16
+   47.  10
+   48.  10
+   49.  10
+   50.  10
+   51.  10
+   52.  11
+   53.  14
+   54.  21
+   55.  23
+   56.  20
+   57.  20
+   58.  19
+   59.  16
+   60.  15
+   61.  12
+   62.  14
+   63.  14
+   64.  17
+   65.  15
+   66.  15
+   67.  15
+   68.  18
+   69.  29
+   70.  11
+   71.  15
+   72.  20
+   73.  19
+   74.  14
+   75.  16
+   76.  15
+   77.  15
+   78.  14
+   79.  14
+   80.  17
+   81.  20
+   82.  29
+   83.  29
+   84.  29
+   85.  15
+   86.  15
+   87.  15
+   88.  15
+   89.  15
+   90.  12
+   91.   8
+   92.  12
+   93.   8
+   94.  14
+   95.   7
+   96.  13
+   97.   7
+   98.  13
+   99.  12
+  100.  13
+  101.   8
+  102.  12
+  103.   9
+  104.   9
+  105.   9
+  106.   9
+  107.  16
+  108.  22
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 17: ppem =  29, maxWid =  31
+    0.  29
+    1.   0
+    2.  15
+    3.  14
+    4.  11
+    5.  13
+    6.  20
+    7.  16
+    8.  20
+    9.  21
+   10.   6
+   11.  15
+   12.  15
+   13.  11
+   14.  16
+   15.  11
+   16.  13
+   17.  11
+   18.  15
+   19.  20
+   20.  12
+   21.  19
+   22.  19
+   23.  20
+   24.  19
+   25.  19
+   26.  17
+   27.  19
+   28.  19
+   29.  11
+   30.  11
+   31.  16
+   32.  16
+   33.  16
+   34.  13
+   35.  15
+   36.  13
+   37.  13
+   38.  13
+   39.  13
+   40.  13
+   41.  17
+   42.  17
+   43.  16
+   44.  27
+   45.  17
+   46.  17
+   47.  11
+   48.  11
+   49.  11
+   50.  11
+   51.  11
+   52.  12
+   53.  16
+   54.  23
+   55.  24
+   56.  21
+   57.  22
+   58.  20
+   59.  17
+   60.  16
+   61.  13
+   62.  15
+   63.  15
+   64.  18
+   65.  16
+   66.  16
+   67.  17
+   68.  20
+   69.  31
+   70.  12
+   71.  16
+   72.  22
+   73.  21
+   74.  15
+   75.  18
+   76.  16
+   77.  16
+   78.  16
+   79.  16
+   80.  18
+   81.  21
+   82.  31
+   83.  31
+   84.  31
+   85.  16
+   86.  16
+   87.  16
+   88.  16
+   89.  17
+   90.  13
+   91.   9
+   92.  13
+   93.   9
+   94.  15
+   95.   7
+   96.  14
+   97.   7
+   98.  14
+   99.  13
+  100.  14
+  101.   9
+  102.  13
+  103.  10
+  104.  10
+  105.  10
+  106.  10
+  107.  17
+  108.  24
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 18: ppem =  32, maxWid =  34
+    0.  32
+    1.   0
+    2.  16
+    3.  16
+    4.  12
+    5.  15
+    6.  22
+    7.  18
+    8.  22
+    9.  23
+   10.   7
+   11.  17
+   12.  17
+   13.  12
+   14.  18
+   15.  12
+   16.  15
+   17.  12
+   18.  16
+   19.  22
+   20.  13
+   21.  21
+   22.  21
+   23.  22
+   24.  21
+   25.  21
+   26.  19
+   27.  21
+   28.  21
+   29.  12
+   30.  12
+   31.  18
+   32.  18
+   33.  18
+   34.  14
+   35.  16
+   36.  14
+   37.  15
+   38.  14
+   39.  15
+   40.  15
+   41.  19
+   42.  19
+   43.  18
+   44.  29
+   45.  19
+   46.  19
+   47.  12
+   48.  12
+   49.  12
+   50.  12
+   51.  12
+   52.  14
+   53.  17
+   54.  25
+   55.  27
+   56.  24
+   57.  24
+   58.  22
+   59.  18
+   60.  18
+   61.  14
+   62.  16
+   63.  17
+   64.  20
+   65.  18
+   66.  18
+   67.  18
+   68.  22
+   69.  34
+   70.  13
+   71.  18
+   72.  24
+   73.  23
+   74.  17
+   75.  19
+   76.  18
+   77.  18
+   78.  17
+   79.  17
+   80.  20
+   81.  24
+   82.  34
+   83.  34
+   84.  34
+   85.  18
+   86.  18
+   87.  18
+   88.  18
+   89.  18
+   90.  14
+   91.   9
+   92.  14
+   93.  10
+   94.  16
+   95.   8
+   96.  16
+   97.   8
+   98.  16
+   99.  15
+  100.  16
+  101.  10
+  102.  14
+  103.  11
+  104.  11
+  105.  11
+  106.  11
+  107.  19
+  108.  26
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 19: ppem =  33, maxWid =  35
+    0.  33
+    1.   0
+    2.  17
+    3.  16
+    4.  12
+    5.  15
+    6.  23
+    7.  18
+    8.  23
+    9.  24
+   10.   7
+   11.  18
+   12.  18
+   13.  12
+   14.  18
+   15.  12
+   16.  15
+   17.  12
+   18.  17
+   19.  23
+   20.  13
+   21.  22
+   22.  22
+   23.  23
+   24.  22
+   25.  22
+   26.  20
+   27.  22
+   28.  22
+   29.  12
+   30.  12
+   31.  18
+   32.  18
+   33.  18
+   34.  14
+   35.  17
+   36.  14
+   37.  15
+   38.  14
+   39.  15
+   40.  15
+   41.  20
+   42.  20
+   43.  18
+   44.  30
+   45.  20
+   46.  20
+   47.  12
+   48.  12
+   49.  12
+   50.  12
+   51.  12
+   52.  14
+   53.  18
+   54.  26
+   55.  28
+   56.  24
+   57.  25
+   58.  23
+   59.  19
+   60.  18
+   61.  15
+   62.  17
+   63.  17
+   64.  21
+   65.  19
+   66.  19
+   67.  19
+   68.  22
+   69.  35
+   70.  14
+   71.  18
+   72.  25
+   73.  24
+   74.  17
+   75.  20
+   76.  19
+   77.  19
+   78.  18
+   79.  18
+   80.  21
+   81.  24
+   82.  35
+   83.  35
+   84.  35
+   85.  19
+   86.  19
+   87.  18
+   88.  18
+   89.  19
+   90.  15
+   91.  10
+   92.  14
+   93.  10
+   94.  17
+   95.   8
+   96.  16
+   97.   8
+   98.  16
+   99.  15
+  100.  16
+  101.  10
+  102.  15
+  103.  11
+  104.  11
+  105.  11
+  106.  11
+  107.  20
+  108.  27
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 20: ppem =  37, maxWid =  40
+    0.  37
+    1.   0
+    2.  19
+    3.  18
+    4.  13
+    5.  17
+    6.  25
+    7.  21
+    8.  26
+    9.  27
+   10.   8
+   11.  20
+   12.  20
+   13.  14
+   14.  21
+   15.  13
+   16.  17
+   17.  13
+   18.  19
+   19.  26
+   20.  15
+   21.  25
+   22.  25
+   23.  25
+   24.  25
+   25.  25
+   26.  22
+   27.  24
+   28.  25
+   29.  13
+   30.  13
+   31.  21
+   32.  21
+   33.  21
+   34.  16
+   35.  19
+   36.  16
+   37.  17
+   38.  16
+   39.  17
+   40.  17
+   41.  22
+   42.  22
+   43.  20
+   44.  34
+   45.  22
+   46.  22
+   47.  13
+   48.  13
+   49.  13
+   50.  13
+   51.  13
+   52.  16
+   53.  20
+   54.  29
+   55.  31
+   56.  27
+   57.  28
+   58.  26
+   59.  21
+   60.  20
+   61.  16
+   62.  19
+   63.  19
+   64.  23
+   65.  21
+   66.  21
+   67.  21
+   68.  25
+   69.  40
+   70.  15
+   71.  21
+   72.  28
+   73.  26
+   74.  19
+   75.  22
+   76.  21
+   77.  21
+   78.  20
+   79.  20
+   80.  23
+   81.  27
+   82.  40
+   83.  40
+   84.  40
+   85.  21
+   86.  21
+   87.  20
+   88.  20
+   89.  21
+   90.  16
+   91.  11
+   92.  16
+   93.  11
+   94.  19
+   95.  10
+   96.  18
+   97.   9
+   98.  18
+   99.  17
+  100.  18
+  101.  11
+  102.  16
+  103.  12
+  104.  12
+  105.  12
+  106.  12
+  107.  22
+  108.  30
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 21: ppem =  42, maxWid =  45
+    0.  42
+    1.   0
+    2.  21
+    3.  21
+    4.  15
+    5.  19
+    6.  29
+    7.  24
+    8.  29
+    9.  31
+   10.   9
+   11.  22
+   12.  22
+   13.  15
+   14.  24
+   15.  15
+   16.  19
+   17.  15
+   18.  22
+   19.  29
+   20.  17
+   21.  28
+   22.  28
+   23.  29
+   24.  28
+   25.  28
+   26.  25
+   27.  28
+   28.  28
+   29.  15
+   30.  15
+   31.  24
+   32.  24
+   33.  24
+   34.  18
+   35.  22
+   36.  18
+   37.  19
+   38.  18
+   39.  19
+   40.  19
+   41.  25
+   42.  25
+   43.  23
+   44.  39
+   45.  25
+   46.  25
+   47.  15
+   48.  15
+   49.  15
+   50.  15
+   51.  15
+   52.  18
+   53.  22
+   54.  33
+   55.  35
+   56.  31
+   57.  31
+   58.  29
+   59.  24
+   60.  23
+   61.  19
+   62.  21
+   63.  22
+   64.  27
+   65.  24
+   66.  24
+   67.  24
+   68.  28
+   69.  45
+   70.  18
+   71.  23
+   72.  31
+   73.  30
+   74.  22
+   75.  25
+   76.  24
+   77.  24
+   78.  22
+   79.  22
+   80.  27
+   81.  31
+   82.  45
+   83.  45
+   84.  45
+   85.  24
+   86.  24
+   87.  23
+   88.  23
+   89.  24
+   90.  19
+   91.  12
+   92.  18
+   93.  13
+   94.  21
+   95.  11
+   96.  21
+   97.  11
+   98.  21
+   99.  19
+  100.  21
+  101.  13
+  102.  19
+  103.  14
+  104.  14
+  105.  14
+  106.  14
+  107.  25
+  108.  34
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+	DevRec 22: ppem =  46, maxWid =  49
+    0.  46
+    1.   0
+    2.  23
+    3.  22
+    4.  17
+    5.  21
+    6.  32
+    7.  26
+    8.  32
+    9.  34
+   10.  10
+   11.  24
+   12.  24
+   13.  17
+   14.  26
+   15.  17
+   16.  21
+   17.  17
+   18.  24
+   19.  32
+   20.  19
+   21.  31
+   22.  31
+   23.  31
+   24.  31
+   25.  31
+   26.  28
+   27.  30
+   28.  31
+   29.  17
+   30.  17
+   31.  26
+   32.  26
+   33.  26
+   34.  20
+   35.  24
+   36.  20
+   37.  21
+   38.  20
+   39.  21
+   40.  21
+   41.  28
+   42.  28
+   43.  25
+   44.  42
+   45.  27
+   46.  27
+   47.  17
+   48.  17
+   49.  17
+   50.  17
+   51.  17
+   52.  20
+   53.  25
+   54.  36
+   55.  38
+   56.  34
+   57.  34
+   58.  32
+   59.  27
+   60.  25
+   61.  20
+   62.  24
+   63.  24
+   64.  29
+   65.  26
+   66.  26
+   67.  26
+   68.  31
+   69.  49
+   70.  19
+   71.  26
+   72.  34
+   73.  33
+   74.  24
+   75.  28
+   76.  26
+   77.  26
+   78.  25
+   79.  25
+   80.  29
+   81.  34
+   82.  49
+   83.  49
+   84.  49
+   85.  26
+   86.  26
+   87.  25
+   88.  25
+   89.  26
+   90.  20
+   91.  13
+   92.  20
+   93.  14
+   94.  23
+   95.  12
+   96.  23
+   97.  12
+   98.  23
+   99.  21
+  100.  23
+  101.  14
+  102.  20
+  103.  15
+  104.  15
+  105.  15
+  106.  15
+  107.  28
+  108.  38
+  109.   0
+  110.   0
+  111.   0
+  112.   0
+  113.   0
+  114.   0
+  115.   0
+  116.   0
+  117.   0
+  118.   0
+  119.   0
+
+
+
+; 'GPOS' Table - Glyph Positioning
+; -------------------------------------
+
+GPOSHeader GPOSHeaderT0000  
+0X00010000            
+ScriptListT000a       
+FeatureListT0020      
+LookupListT003a       
+
+ScriptList ScriptListT000a  
+1                     
+                      ; ScriptRecord[0]
+'thaa'                
+ScriptT0012           
+
+Script ScriptT0012  
+LangSysT0016          
+0                     
+
+LangSys LangSysT0016  
+NULL                  
+0XFFFF                
+2                     
+0                     
+1                     
+
+FeatureList FeatureListT0020  
+2                     
+                      ; FeatureRecord[0]
+'kern'                
+FeatureT002e          
+                      ; FeatureRecord[1]
+'mark'                
+FeatureT0034          
+
+Feature FeatureT002e  
+NULL                  
+1                     
+1                     
+
+Feature FeatureT0034  
+NULL                  
+1                     
+0                     
+
+LookupList LookupListT003a  
+2                     
+LookupT0040           
+LookupT0048           
+
+Lookup LookupT0040  
+4                     
+1                     
+1                     
+MarkBasePosFormat1T0050 
+
+Lookup LookupT0048  
+2                     
+9                     
+1                     
+PairPosFormat2T017e   
+
+MarkBasePosFormat1 MarkBasePosFormat1T0050  
+1                     
+CoverageFormat2T0158  
+CoverageFormat2T0168  
+2                     
+MarkArrayT005c        
+BaseArrayT00b6        
+
+MarkArray MarkArrayT005c  
+22                    
+                      ; MarkRecord[0]
+0                     
+AnchorFormat1T0376    
+                      ; MarkRecord[1]
+0                     
+AnchorFormat1T0472    
+                      ; MarkRecord[2]
+1                     
+AnchorFormat1T0382    
+                      ; MarkRecord[3]
+1                     
+AnchorFormat1T0388    
+                      ; MarkRecord[4]
+0                     
+AnchorFormat1T0484    
+                      ; MarkRecord[5]
+0                     
+AnchorFormat1T048a    
+                      ; MarkRecord[6]
+0                     
+AnchorFormat1T0490    
+                      ; MarkRecord[7]
+0                     
+AnchorFormat1T0496    
+                      ; MarkRecord[8]
+0                     
+AnchorFormat1T049c    
+                      ; MarkRecord[9]
+0                     
+AnchorFormat1T04a2    
+                      ; MarkRecord[10]
+0                     
+AnchorFormat1T04a8    
+                      ; MarkRecord[11]
+0                     
+AnchorFormat1T0592    
+                      ; MarkRecord[12]
+0                     
+AnchorFormat1T0598    
+                      ; MarkRecord[13]
+1                     
+AnchorFormat1T05a4    
+                      ; MarkRecord[14]
+1                     
+AnchorFormat1T059e    
+                      ; MarkRecord[15]
+0                     
+AnchorFormat1T05ce    
+                      ; MarkRecord[16]
+0                     
+AnchorFormat1T05c8    
+                      ; MarkRecord[17]
+0                     
+AnchorFormat1T05c2    
+                      ; MarkRecord[18]
+0                     
+AnchorFormat1T05bc    
+                      ; MarkRecord[19]
+0                     
+AnchorFormat1T05b6    
+                      ; MarkRecord[20]
+0                     
+AnchorFormat1T05b0    
+                      ; MarkRecord[21]
+0                     
+AnchorFormat1T05aa    
+
+BaseArray BaseArrayT00b6  
+40                    
+                      ; BaseRecord[0]
+AnchorFormat1T0370    
+AnchorFormat1T037c    
+                      ; BaseRecord[1]
+AnchorFormat1T04f6    
+AnchorFormat1T038e    
+                      ; BaseRecord[2]
+AnchorFormat1T04fc    
+AnchorFormat1T0394    
+                      ; BaseRecord[3]
+AnchorFormat1T0502    
+AnchorFormat1T039a    
+                      ; BaseRecord[4]
+AnchorFormat1T0508    
+AnchorFormat1T03a0    
+                      ; BaseRecord[5]
+AnchorFormat1T050e    
+AnchorFormat1T03a6    
+                      ; BaseRecord[6]
+AnchorFormat1T0514    
+AnchorFormat1T03ac    
+                      ; BaseRecord[7]
+AnchorFormat1T051a    
+AnchorFormat1T03b2    
+                      ; BaseRecord[8]
+AnchorFormat1T0520    
+AnchorFormat1T03b8    
+                      ; BaseRecord[9]
+AnchorFormat1T0526    
+AnchorFormat1T03be    
+                      ; BaseRecord[10]
+AnchorFormat1T052c    
+AnchorFormat1T03c4    
+                      ; BaseRecord[11]
+AnchorFormat1T0532    
+AnchorFormat1T03ca    
+                      ; BaseRecord[12]
+AnchorFormat1T0538    
+AnchorFormat1T03d0    
+                      ; BaseRecord[13]
+AnchorFormat1T053e    
+AnchorFormat1T03d6    
+                      ; BaseRecord[14]
+AnchorFormat1T0544    
+AnchorFormat1T03dc    
+                      ; BaseRecord[15]
+AnchorFormat1T054a    
+AnchorFormat1T03e2    
+                      ; BaseRecord[16]
+AnchorFormat1T0550    
+AnchorFormat1T03e8    
+                      ; BaseRecord[17]
+AnchorFormat1T0556    
+AnchorFormat1T03ee    
+                      ; BaseRecord[18]
+AnchorFormat1T055c    
+AnchorFormat1T03f4    
+                      ; BaseRecord[19]
+AnchorFormat1T0562    
+AnchorFormat1T03fa    
+                      ; BaseRecord[20]
+AnchorFormat1T0568    
+AnchorFormat1T0400    
+                      ; BaseRecord[21]
+AnchorFormat1T056e    
+AnchorFormat1T0406    
+                      ; BaseRecord[22]
+AnchorFormat1T0574    
+AnchorFormat1T040c    
+                      ; BaseRecord[23]
+AnchorFormat1T04f0    
+AnchorFormat1T0412    
+                      ; BaseRecord[24]
+AnchorFormat1T04ea    
+AnchorFormat1T0418    
+                      ; BaseRecord[25]
+AnchorFormat1T04e4    
+AnchorFormat1T041e    
+                      ; BaseRecord[26]
+AnchorFormat1T04de    
+AnchorFormat1T0424    
+                      ; BaseRecord[27]
+AnchorFormat1T04d8    
+AnchorFormat1T042a    
+                      ; BaseRecord[28]
+AnchorFormat1T04d2    
+AnchorFormat1T0430    
+                      ; BaseRecord[29]
+AnchorFormat1T04cc    
+AnchorFormat1T0436    
+                      ; BaseRecord[30]
+AnchorFormat1T04c6    
+AnchorFormat1T043c    
+                      ; BaseRecord[31]
+AnchorFormat1T04c0    
+AnchorFormat1T0442    
+                      ; BaseRecord[32]
+AnchorFormat1T04ba    
+AnchorFormat1T0448    
+                      ; BaseRecord[33]
+AnchorFormat1T04b4    
+AnchorFormat1T044e    
+                      ; BaseRecord[34]
+AnchorFormat1T04ae    
+AnchorFormat1T0454    
+                      ; BaseRecord[35]
+AnchorFormat1T047e    
+AnchorFormat1T045a    
+                      ; BaseRecord[36]
+AnchorFormat1T0478    
+AnchorFormat1T0460    
+                      ; BaseRecord[37]
+AnchorFormat1T046c    
+AnchorFormat1T0466    
+                      ; BaseRecord[38]
+AnchorFormat1T057a    
+AnchorFormat1T0580    
+                      ; BaseRecord[39]
+AnchorFormat1T0586    
+AnchorFormat1T058c    
+
+CoverageFormat2 CoverageFormat2T0158  
+2                     
+2                     
+                      ; RangeRecord[0]
+91                    
+101                   
+0                     
+                      ; RangeRecord[1]
+109                   
+119                   
+11                    
+
+CoverageFormat2 CoverageFormat2T0168  
+2                     
+3                     
+                      ; RangeRecord[0]
+53                    
+90                    
+0                     
+                      ; RangeRecord[1]
+102                   
+102                   
+38                    
+                      ; RangeRecord[2]
+107                   
+107                   
+39                    
+
+PairPosFormat2 PairPosFormat2T017e  
+2                     
+CoverageFormat2T0292  
+0                     
+4                     
+ClassDefFormat2T02ba  
+ClassDefFormat2T0354  
+26                    
+5                     
+                      ; PairPosFormat2Class1Record[0]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+0                     
+                      ; PairPosFormat2ClassRecord[3]
+0                     
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[1]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+160                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[2]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+160                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[3]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+160                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[4]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+160                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[5]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+160                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[6]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+160                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[7]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+160                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[8]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+240                   
+                      ; PairPosFormat2ClassRecord[3]
+270                   
+                      ; PairPosFormat2ClassRecord[4]
+160                   
+                      ; PairPosFormat2Class1Record[9]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+240                   
+                      ; PairPosFormat2ClassRecord[3]
+270                   
+                      ; PairPosFormat2ClassRecord[4]
+100                   
+                      ; PairPosFormat2Class1Record[10]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+150                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[11]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+240                   
+                      ; PairPosFormat2ClassRecord[3]
+270                   
+                      ; PairPosFormat2ClassRecord[4]
+100                   
+                      ; PairPosFormat2Class1Record[12]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+150                   
+                      ; PairPosFormat2ClassRecord[3]
+120                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[13]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+220                   
+                      ; PairPosFormat2ClassRecord[3]
+180                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[14]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+240                   
+                      ; PairPosFormat2ClassRecord[3]
+270                   
+                      ; PairPosFormat2ClassRecord[4]
+160                   
+                      ; PairPosFormat2Class1Record[15]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+180                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[16]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+150                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[17]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+150                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[18]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+160                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[19]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+160                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[20]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+240                   
+                      ; PairPosFormat2ClassRecord[3]
+270                   
+                      ; PairPosFormat2ClassRecord[4]
+100                   
+                      ; PairPosFormat2Class1Record[21]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+160                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[22]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+150                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[23]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+0                     
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+150                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[24]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+150                   
+                      ; PairPosFormat2ClassRecord[3]
+120                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+                      ; PairPosFormat2Class1Record[25]
+                      ; PairPosFormat2ClassRecord[0]
+0                     
+                      ; PairPosFormat2ClassRecord[1]
+60                    
+                      ; PairPosFormat2ClassRecord[2]
+180                   
+                      ; PairPosFormat2ClassRecord[3]
+180                   
+                      ; PairPosFormat2ClassRecord[4]
+0                     
+
+CoverageFormat2 CoverageFormat2T0292  
+2                     
+6                     
+                      ; RangeRecord[0]
+53                    
+56                    
+0                     
+                      ; RangeRecord[1]
+58                    
+58                    
+4                     
+                      ; RangeRecord[2]
+61                    
+67                    
+5                     
+                      ; RangeRecord[3]
+73                    
+81                    
+12                    
+                      ; RangeRecord[4]
+85                    
+86                    
+21                    
+                      ; RangeRecord[5]
+89                    
+90                    
+23                    
+
+ClassDefFormat2 ClassDefFormat2T02ba  
+2                     
+25                    
+                      ; ClassRangeRecord[0]
+53                    
+53                    
+1                     
+                      ; ClassRangeRecord[1]
+54                    
+54                    
+2                     
+                      ; ClassRangeRecord[2]
+55                    
+55                    
+3                     
+                      ; ClassRangeRecord[3]
+56                    
+56                    
+4                     
+                      ; ClassRangeRecord[4]
+58                    
+58                    
+5                     
+                      ; ClassRangeRecord[5]
+61                    
+61                    
+6                     
+                      ; ClassRangeRecord[6]
+62                    
+62                    
+7                     
+                      ; ClassRangeRecord[7]
+63                    
+63                    
+8                     
+                      ; ClassRangeRecord[8]
+64                    
+64                    
+9                     
+                      ; ClassRangeRecord[9]
+65                    
+65                    
+10                    
+                      ; ClassRangeRecord[10]
+66                    
+66                    
+11                    
+                      ; ClassRangeRecord[11]
+67                    
+67                    
+12                    
+                      ; ClassRangeRecord[12]
+73                    
+73                    
+13                    
+                      ; ClassRangeRecord[13]
+74                    
+74                    
+14                    
+                      ; ClassRangeRecord[14]
+75                    
+75                    
+15                    
+                      ; ClassRangeRecord[15]
+76                    
+76                    
+16                    
+                      ; ClassRangeRecord[16]
+77                    
+77                    
+17                    
+                      ; ClassRangeRecord[17]
+78                    
+78                    
+18                    
+                      ; ClassRangeRecord[18]
+79                    
+79                    
+19                    
+                      ; ClassRangeRecord[19]
+80                    
+80                    
+20                    
+                      ; ClassRangeRecord[20]
+81                    
+81                    
+21                    
+                      ; ClassRangeRecord[21]
+85                    
+85                    
+22                    
+                      ; ClassRangeRecord[22]
+86                    
+86                    
+23                    
+                      ; ClassRangeRecord[23]
+89                    
+89                    
+24                    
+                      ; ClassRangeRecord[24]
+90                    
+90                    
+25                    
+
+ClassDefFormat2 ClassDefFormat2T0354  
+2                     
+4                     
+                      ; ClassRangeRecord[0]
+60                    
+60                    
+1                     
+                      ; ClassRangeRecord[1]
+70                    
+70                    
+2                     
+                      ; ClassRangeRecord[2]
+71                    
+71                    
+3                     
+                      ; ClassRangeRecord[3]
+72                    
+72                    
+4                     
+
+AnchorFormat1 AnchorFormat1T0370  
+1                     
+589                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0376  
+1                     
+310                   
+969                   
+
+AnchorFormat1 AnchorFormat1T037c  
+1                     
+520                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T0382  
+1                     
+315                   
+0                     
+
+AnchorFormat1 AnchorFormat1T0388  
+1                     
+510                   
+0                     
+
+AnchorFormat1 AnchorFormat1T038e  
+1                     
+800                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T0394  
+1                     
+780                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T039a  
+1                     
+780                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T03a0  
+1                     
+765                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T03a6  
+1                     
+760                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T03ac  
+1                     
+550                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T03b2  
+1                     
+540                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T03b8  
+1                     
+440                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T03be  
+1                     
+525                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T03c4  
+1                     
+560                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T03ca  
+1                     
+660                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T03d0  
+1                     
+630                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T03d6  
+1                     
+550                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T03dc  
+1                     
+555                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T03e2  
+1                     
+715                   
+-360                  
+
+AnchorFormat1 AnchorFormat1T03e8  
+1                     
+1110                  
+-220                  
+
+AnchorFormat1 AnchorFormat1T03ee  
+1                     
+465                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T03f4  
+1                     
+600                   
+-360                  
+
+AnchorFormat1 AnchorFormat1T03fa  
+1                     
+735                   
+-445                  
+
+AnchorFormat1 AnchorFormat1T0400  
+1                     
+680                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T0406  
+1                     
+580                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T040c  
+1                     
+660                   
+-445                  
+
+AnchorFormat1 AnchorFormat1T0412  
+1                     
+630                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T0418  
+1                     
+630                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T041e  
+1                     
+520                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T0424  
+1                     
+520                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T042a  
+1                     
+660                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T0430  
+1                     
+780                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T0436  
+1                     
+1110                  
+-220                  
+
+AnchorFormat1 AnchorFormat1T043c  
+1                     
+1110                  
+-220                  
+
+AnchorFormat1 AnchorFormat1T0442  
+1                     
+1110                  
+-220                  
+
+AnchorFormat1 AnchorFormat1T0448  
+1                     
+630                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T044e  
+1                     
+630                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T0454  
+1                     
+540                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T045a  
+1                     
+540                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T0460  
+1                     
+555                   
+-300                  
+
+AnchorFormat1 AnchorFormat1T0466  
+1                     
+440                   
+-220                  
+
+AnchorFormat1 AnchorFormat1T046c  
+1                     
+461                   
+1380                  
+
+AnchorFormat1 AnchorFormat1T0472  
+1                     
+445                   
+969                   
+
+AnchorFormat1 AnchorFormat1T0478  
+1                     
+600                   
+1380                  
+
+AnchorFormat1 AnchorFormat1T047e  
+1                     
+595                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0484  
+1                     
+250                   
+969                   
+
+AnchorFormat1 AnchorFormat1T048a  
+1                     
+500                   
+969                   
+
+AnchorFormat1 AnchorFormat1T0490  
+1                     
+280                   
+969                   
+
+AnchorFormat1 AnchorFormat1T0496  
+1                     
+566                   
+969                   
+
+AnchorFormat1 AnchorFormat1T049c  
+1                     
+505                   
+969                   
+
+AnchorFormat1 AnchorFormat1T04a2  
+1                     
+544                   
+969                   
+
+AnchorFormat1 AnchorFormat1T04a8  
+1                     
+350                   
+969                   
+
+AnchorFormat1 AnchorFormat1T04ae  
+1                     
+595                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T04b4  
+1                     
+625                   
+1380                  
+
+AnchorFormat1 AnchorFormat1T04ba  
+1                     
+625                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T04c0  
+1                     
+1120                  
+1300                  
+
+AnchorFormat1 AnchorFormat1T04c6  
+1                     
+1120                  
+1300                  
+
+AnchorFormat1 AnchorFormat1T04cc  
+1                     
+1120                  
+1300                  
+
+AnchorFormat1 AnchorFormat1T04d2  
+1                     
+690                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T04d8  
+1                     
+570                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T04de  
+1                     
+589                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T04e4  
+1                     
+589                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T04ea  
+1                     
+625                   
+1450                  
+
+AnchorFormat1 AnchorFormat1T04f0  
+1                     
+489                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T04f6  
+1                     
+720                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T04fc  
+1                     
+820                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0502  
+1                     
+690                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0508  
+1                     
+797                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T050e  
+1                     
+585                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0514  
+1                     
+650                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T051a  
+1                     
+595                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0520  
+1                     
+461                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0526  
+1                     
+510                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T052c  
+1                     
+420                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0532  
+1                     
+570                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0538  
+1                     
+625                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T053e  
+1                     
+526                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0544  
+1                     
+600                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T054a  
+1                     
+720                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0550  
+1                     
+1120                  
+1300                  
+
+AnchorFormat1 AnchorFormat1T0556  
+1                     
+405                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T055c  
+1                     
+595                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0562  
+1                     
+820                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0568  
+1                     
+720                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T056e  
+1                     
+420                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0574  
+1                     
+480                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T057a  
+1                     
+487                   
+1300                  
+
+AnchorFormat1 AnchorFormat1T0580  
+1                     
+435                   
+-445                  
+
+AnchorFormat1 AnchorFormat1T0586  
+1                     
+615                   
+1400                  
+
+AnchorFormat1 AnchorFormat1T058c  
+1                     
+615                   
+-100                  
+
+AnchorFormat1 AnchorFormat1T0592  
+1                     
+310                   
+969                   
+
+AnchorFormat1 AnchorFormat1T0598  
+1                     
+445                   
+969                   
+
+AnchorFormat1 AnchorFormat1T059e  
+1                     
+510                   
+0                     
+
+AnchorFormat1 AnchorFormat1T05a4  
+1                     
+315                   
+0                     
+
+AnchorFormat1 AnchorFormat1T05aa  
+1                     
+350                   
+969                   
+
+AnchorFormat1 AnchorFormat1T05b0  
+1                     
+544                   
+969                   
+
+AnchorFormat1 AnchorFormat1T05b6  
+1                     
+505                   
+969                   
+
+AnchorFormat1 AnchorFormat1T05bc  
+1                     
+566                   
+969                   
+
+AnchorFormat1 AnchorFormat1T05c2  
+1                     
+280                   
+969                   
+
+AnchorFormat1 AnchorFormat1T05c8  
+1                     
+500                   
+969                   
+
+AnchorFormat1 AnchorFormat1T05ce  
+1                     
+250                   
+969                   
+
+; 'GSUB' Table - Glyph Substitution
+; -------------------------------------
+
+GSUBHeader GSUBHeaderT0000  
+0X00010000            
+ScriptListT000a       
+FeatureListT001e      
+LookupListT002c       
+
+ScriptList ScriptListT000a  
+1                     
+                      ; ScriptRecord[0]
+'thaa'                
+ScriptT0012           
+
+Script ScriptT0012  
+LangSysT0016          
+0                     
+
+LangSys LangSysT0016  
+NULL                  
+0XFFFF                
+1                     
+0                     
+
+FeatureList FeatureListT001e  
+1                     
+                      ; FeatureRecord[0]
+'ccmp'                
+FeatureT0026          
+
+Feature FeatureT0026  
+NULL                  
+1                     
+0                     
+
+LookupList LookupListT002c  
+1                     
+LookupT0030           
+
+Lookup LookupT0030  
+1                     
+1                     
+1                     
+SingleSubstFormat2T0038 
+
+SingleSubstFormat2 SingleSubstFormat2T0038  
+2                     
+CoverageFormat2T0054  
+11                    
+109                   
+110                   
+111                   
+112                   
+113                   
+114                   
+115                   
+116                   
+117                   
+118                   
+119                   
+
+CoverageFormat2 CoverageFormat2T0054  
+2                     
+1                     
+                      ; RangeRecord[0]
+91                    
+101                   
+0                     
+
+; 'GDEF' Table - Glyph Definition
+;-------------------------------------
+
+GDEFHeader GDEFHeaderT0000  
+0X00010000            
+ClassDefFormat2T000c  
+NULL                  
+LigCaretListT0028     
+NULL                  ; AttachClassDef (1.2)
+
+ClassDefFormat2 ClassDefFormat2T000c  
+2                     
+4                     
+                      ; ClassRangeRecord[0]
+0                     
+90                    
+1                     
+                      ; ClassRangeRecord[1]
+91                    
+101                   
+3                     
+                      ; ClassRangeRecord[2]
+102                   
+108                   
+1                     
+                      ; ClassRangeRecord[3]
+109                   
+119                   
+3                     
+
+LigCaretList LigCaretListT0028  
+CoverageFormat2T002c  
+0                     
+
+CoverageFormat2 CoverageFormat2T002c  
+2                     
+0                     
+
+'DSIG' Table - Digital Signature
+-------------------------------------
+Size = 6476 bytes
+  'DSIG' version:  1
+  numSigs:       1
+  Flags:			0001
+
+'loca' Table - Index To Location Table
+--------------------------------------
+Size = 242 bytes, 121 entries
+	Idx   0 -> glyfOff 0x00000
+	Idx   1 -> glyfOff 0x0003E* No contours *
+	Idx   2 -> glyfOff 0x0003E* No contours *
+	Idx   3 -> glyfOff 0x0003E* No contours *
+	Idx   4 -> glyfOff 0x0003E
+	Idx   5 -> glyfOff 0x000DC
+	Idx   6 -> glyfOff 0x00154
+	Idx   7 -> glyfOff 0x00334
+	Idx   8 -> glyfOff 0x004B2
+	Idx   9 -> glyfOff 0x00604
+	Idx  10 -> glyfOff 0x0076C
+	Idx  11 -> glyfOff 0x007B4
+	Idx  12 -> glyfOff 0x0084E
+	Idx  13 -> glyfOff 0x008EE
+	Idx  14 -> glyfOff 0x009EC
+	Idx  15 -> glyfOff 0x00AAE
+	Idx  16 -> glyfOff 0x00B0A
+	Idx  17 -> glyfOff 0x00B54
+	Idx  18 -> glyfOff 0x00B90
+	Idx  19 -> glyfOff 0x00C2A
+	Idx  20 -> glyfOff 0x00CF6
+	Idx  21 -> glyfOff 0x00DCE
+	Idx  22 -> glyfOff 0x00F1A
+	Idx  23 -> glyfOff 0x01042
+	Idx  24 -> glyfOff 0x01162
+	Idx  25 -> glyfOff 0x0127A
+	Idx  26 -> glyfOff 0x01380
+	Idx  27 -> glyfOff 0x01418
+	Idx  28 -> glyfOff 0x01596
+	Idx  29 -> glyfOff 0x01698
+	Idx  30 -> glyfOff 0x01700
+	Idx  31 -> glyfOff 0x01788
+	Idx  32 -> glyfOff 0x01838
+	Idx  33 -> glyfOff 0x018B8
+	Idx  34 -> glyfOff 0x01960
+	Idx  35 -> glyfOff 0x01A18
+	Idx  36 -> glyfOff 0x01A94
+	Idx  37 -> glyfOff 0x01B42
+	Idx  38 -> glyfOff 0x01C46
+	Idx  39 -> glyfOff 0x01CB0
+	Idx  40 -> glyfOff 0x01DB2
+	Idx  41 -> glyfOff 0x01DF6
+	Idx  42 -> glyfOff 0x01F04
+	Idx  43 -> glyfOff 0x0200A
+	Idx  44 -> glyfOff 0x02054
+	Idx  45 -> glyfOff 0x020A2
+	Idx  46 -> glyfOff 0x02148
+	Idx  47 -> glyfOff 0x021EE
+	Idx  48 -> glyfOff 0x0224A
+	Idx  49 -> glyfOff 0x022A6
+	Idx  50 -> glyfOff 0x022E2
+	Idx  51 -> glyfOff 0x0233E
+	Idx  52 -> glyfOff 0x023C4
+	Idx  53 -> glyfOff 0x024A2
+	Idx  54 -> glyfOff 0x02548
+	Idx  55 -> glyfOff 0x02622
+	Idx  56 -> glyfOff 0x02746
+	Idx  57 -> glyfOff 0x0285E
+	Idx  58 -> glyfOff 0x02984
+	Idx  59 -> glyfOff 0x02A76
+	Idx  60 -> glyfOff 0x02B44
+	Idx  61 -> glyfOff 0x02C42
+	Idx  62 -> glyfOff 0x02D2A
+	Idx  63 -> glyfOff 0x02DDE
+	Idx  64 -> glyfOff 0x02F0E
+	Idx  65 -> glyfOff 0x03058
+	Idx  66 -> glyfOff 0x031A0
+	Idx  67 -> glyfOff 0x0327E
+	Idx  68 -> glyfOff 0x03382
+	Idx  69 -> glyfOff 0x034B8
+	Idx  70 -> glyfOff 0x035E4
+	Idx  71 -> glyfOff 0x03712
+	Idx  72 -> glyfOff 0x03834
+	Idx  73 -> glyfOff 0x039C2
+	Idx  74 -> glyfOff 0x03AEA
+	Idx  75 -> glyfOff 0x03B22
+	Idx  76 -> glyfOff 0x03C9C
+	Idx  77 -> glyfOff 0x03E50
+	Idx  78 -> glyfOff 0x03E88
+	Idx  79 -> glyfOff 0x03EC0
+	Idx  80 -> glyfOff 0x03F00
+	Idx  81 -> glyfOff 0x03F3A
+	Idx  82 -> glyfOff 0x03F7E
+	Idx  83 -> glyfOff 0x03FB4
+	Idx  84 -> glyfOff 0x03FE2
+	Idx  85 -> glyfOff 0x04010
+	Idx  86 -> glyfOff 0x04042
+	Idx  87 -> glyfOff 0x04074
+	Idx  88 -> glyfOff 0x0408C
+	Idx  89 -> glyfOff 0x040DC
+	Idx  90 -> glyfOff 0x0410C
+	Idx  91 -> glyfOff 0x04138
+	Idx  92 -> glyfOff 0x04198
+	Idx  93 -> glyfOff 0x04234
+	Idx  94 -> glyfOff 0x0428E
+	Idx  95 -> glyfOff 0x0434A
+	Idx  96 -> glyfOff 0x043C2
+	Idx  97 -> glyfOff 0x0448E
+	Idx  98 -> glyfOff 0x044FE
+	Idx  99 -> glyfOff 0x045C6
+	Idx 100 -> glyfOff 0x0467E
+	Idx 101 -> glyfOff 0x04736
+	Idx 102 -> glyfOff 0x047BA
+	Idx 103 -> glyfOff 0x048D8
+	Idx 104 -> glyfOff 0x04912
+	Idx 105 -> glyfOff 0x0494C
+	Idx 106 -> glyfOff 0x049B4
+	Idx 107 -> glyfOff 0x04A52
+	Idx 108 -> glyfOff 0x04DB2
+	Idx 109 -> glyfOff 0x04FCA
+	Idx 110 -> glyfOff 0x04FDA
+	Idx 111 -> glyfOff 0x04FEA
+	Idx 112 -> glyfOff 0x04FFA
+	Idx 113 -> glyfOff 0x0500A
+	Idx 114 -> glyfOff 0x0501A
+	Idx 115 -> glyfOff 0x0502A
+	Idx 116 -> glyfOff 0x0503A
+	Idx 117 -> glyfOff 0x0504A
+	Idx 118 -> glyfOff 0x0505A
+	Idx 119 -> glyfOff 0x0506A
+	           Ends at 0x0507A
+
+'glyf' Table - Glyph Data
+-------------------------
+Size = 20602 bytes, 120 entries
+	Glyph   0: off = 0x00000000, len = 62
+	  numberOfContours:	2
+	  xMin:			256
+	  yMin:			0
+	  xMax:			1792
+	  yMax:			1536
+
+	EndPoints
+	---------
+	  0:  3
+	  1:  7
+
+	  Length of Instructions:	20
+	00000: PUSHB[8]              6     2     4     0     6     2     4     0 
+	00009: MDAP[rd]   
+	00010: MDRP[nrp0,md,rd,1] 
+	00011: MDRP[srp0,nmd,rd,0] 
+	00012: MDRP[nrp0,md,rd,1] 
+	00013: SVTCA[y-axis] 
+	00014: MDAP[rd]   
+	00015: MDRP[nrp0,md,rd,1] 
+	00016: MDRP[srp0,nmd,rd,0] 
+	00017: MDRP[nrp0,md,rd,1] 
+	00018: IUP[y]     
+	00019: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:        XDual                         On
+	  2:  YDual                               On
+	  3:        XDual                         On
+	  4:  YDual               Y-Short         On
+	  5:  YDual                               On
+	  6:        XDual                         On
+	  7:  YDual                               On
+
+	Coordinates
+	-----------
+	  0: Rel (   256,     0)  ->  Abs (   256,     0)
+	  1: Rel (     0,  1536)  ->  Abs (   256,  1536)
+	  2: Rel (  1536,     0)  ->  Abs (  1792,  1536)
+	  3: Rel (     0, -1536)  ->  Abs (  1792,     0)
+	  4: Rel ( -1408,   128)  ->  Abs (   384,   128)
+	  5: Rel (  1280,     0)  ->  Abs (  1664,   128)
+	  6: Rel (     0,  1280)  ->  Abs (  1664,  1408)
+	  7: Rel ( -1280,     0)  ->  Abs (   384,  1408)
+
+	Glyph   1: off = 0x0000003E, len = 0
+
+	Glyph   2: off = 0x0000003E, len = 0
+
+	Glyph   3: off = 0x0000003E, len = 0
+
+	Glyph   4: off = 0x0000003E, len = 158
+	  numberOfContours:	2
+	  xMin:			176
+	  yMin:			-8
+	  xMax:			807
+	  yMax:			1462
+
+	EndPoints
+	---------
+	  0:  15
+	  1:  27
+
+	  Length of Instructions:	66
+	00000: PUSHB[4]            151    12     1     4 
+	00005: PUSHW[1]            -16 
+	00008: NPUSHB      (33):    13    17    72    13     1    82     6     0     6   141 
+	                            10    13    20    10    13    13     0     6   177    10 
+	                            16   175   143    22     1    22    14     7     8    25 
+	                           176    19     4 
+	00043: SVTCA[y-axis] 
+	00044: MIAP[rd+ci] 
+	00045: MIRP[srp0,md,rd,1] 
+	00046: MDRP[nrp0,nmd,rd,2] 
+	00047: MIAP[rd+ci] 
+	00048: IUP[x]     
+	00049: SVTCA[x-axis] 
+	00050: MDAP[rd]   
+	00051: DELTAP1    
+	00052: MIRP[nrp0,md,rd,1] 
+	00053: MDRP[srp0,nmd,rd,0] 
+	00054: MIRP[nrp0,md,rd,1] 
+	00055: MDRP[nrp0,md,rd,1] 
+	00056: SHP[rp2,zp1] 
+	00057: SDPVTL[1]  
+	00058: CALL       
+	00059: SDPVTL[1]  
+	00060: CALL       
+	00061: MDRP[nrp0,nmd,rd,0] 
+	00062: IUP[y]     
+	00063: SVTCA[x-axis] 
+	00064: CALL       
+	00065: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                              X-Short Off
+	  5:                      Y-Short X-Short Off
+	  6:                      Y-Short X-Short On
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:        XDual                 X-Short Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:                                      On
+	 17:        XDual         Y-Short         Off
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   807,  1405)  ->  Abs (   807,  1405)
+	  1: Rel (     0,   -42)  ->  Abs (   807,  1363)
+	  2: Rel (   -41,   -85)  ->  Abs (   766,  1278)
+	  3: Rel (   -31,   -65)  ->  Abs (   735,  1213)
+	  4: Rel (  -183,  -489)  ->  Abs (   552,   724)
+	  5: Rel (   -40,  -116)  ->  Abs (   512,   608)
+	  6: Rel (   -16,   -84)  ->  Abs (   496,   524)
+	  7: Rel (   -13,   -65)  ->  Abs (   483,   459)
+	  8: Rel (   -77,     0)  ->  Abs (   406,   459)
+	  9: Rel (   -99,     0)  ->  Abs (   307,   459)
+	 10: Rel (     0,    98)  ->  Abs (   307,   557)
+	 11: Rel (     0,   103)  ->  Abs (   307,   660)
+	 12: Rel (   245,   585)  ->  Abs (   552,  1245)
+	 13: Rel (   132,   217)  ->  Abs (   684,  1462)
+	 14: Rel (    61,     0)  ->  Abs (   745,  1462)
+	 15: Rel (    62,     0)  ->  Abs (   807,  1462)
+	 16: Rel (  -332, -1300)  ->  Abs (   475,   162)
+	 17: Rel (     0,   -69)  ->  Abs (   475,    93)
+	 18: Rel (  -106,  -101)  ->  Abs (   369,    -8)
+	 19: Rel (   -68,     0)  ->  Abs (   301,    -8)
+	 20: Rel (   -52,     0)  ->  Abs (   249,    -8)
+	 21: Rel (   -73,    73)  ->  Abs (   176,    65)
+	 22: Rel (     0,    52)  ->  Abs (   176,   117)
+	 23: Rel (     0,    69)  ->  Abs (   176,   186)
+	 24: Rel (   111,   105)  ->  Abs (   287,   291)
+	 25: Rel (    67,     0)  ->  Abs (   354,   291)
+	 26: Rel (    52,     0)  ->  Abs (   406,   291)
+	 27: Rel (    69,   -74)  ->  Abs (   475,   217)
+
+	Glyph   5: off = 0x000000DC, len = 120
+	  numberOfContours:	2
+	  xMin:			248
+	  yMin:			823
+	  xMax:			1081
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  12
+	  1:  25
+
+	  Length of Instructions:	34
+	00000: NPUSHB      (18):    24    19     6    11     7    21   137    17    13     0 
+	                             4   137    31     8    47     8     2     8 
+	00020: MDAP[rd]   
+	00021: DELTAP1    
+	00022: MIRP[srp0,md,rd,1] 
+	00023: MDRP[srp0,nmd,rd,0] 
+	00024: MDRP[srp0,nmd,rd,0] 
+	00025: MDRP[srp0,nmd,rd,0] 
+	00026: MIRP[nrp0,md,rd,1] 
+	00027: SVTCA[y-axis] 
+	00028: MIAP[rd+ci] 
+	00029: MDRP[nrp0,md,rd,1] 
+	00030: IP         
+	00031: IP         
+	00032: IUP[y]     
+	00033: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:        XDual                 X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:                      Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:        XDual                 X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   631,  1401)  ->  Abs (   631,  1401)
+	  1: Rel (     0,   -21)  ->  Abs (   631,  1380)
+	  2: Rel (   -39,   -82)  ->  Abs (   592,  1298)
+	  3: Rel (   -85,  -169)  ->  Abs (   507,  1129)
+	  4: Rel (   -63,  -242)  ->  Abs (   444,   887)
+	  5: Rel (   -15,   -64)  ->  Abs (   429,   823)
+	  6: Rel (   -83,     0)  ->  Abs (   346,   823)
+	  7: Rel (   -98,     0)  ->  Abs (   248,   823)
+	  8: Rel (     0,    86)  ->  Abs (   248,   909)
+	  9: Rel (     0,    69)  ->  Abs (   248,   978)
+	 10: Rel (   235,   488)  ->  Abs (   483,  1466)
+	 11: Rel (    70,     0)  ->  Abs (   553,  1466)
+	 12: Rel (    78,     0)  ->  Abs (   631,  1466)
+	 13: Rel (   450,   -65)  ->  Abs (  1081,  1401)
+	 14: Rel (     0,   -25)  ->  Abs (  1081,  1376)
+	 15: Rel (   -39,   -78)  ->  Abs (  1042,  1298)
+	 16: Rel (   -84,  -169)  ->  Abs (   958,  1129)
+	 17: Rel (   -63,  -242)  ->  Abs (   895,   887)
+	 18: Rel (   -16,   -64)  ->  Abs (   879,   823)
+	 19: Rel (   -82,     0)  ->  Abs (   797,   823)
+	 20: Rel (   -99,     0)  ->  Abs (   698,   823)
+	 21: Rel (     0,    86)  ->  Abs (   698,   909)
+	 22: Rel (     0,    69)  ->  Abs (   698,   978)
+	 23: Rel (   235,   488)  ->  Abs (   933,  1466)
+	 24: Rel (    71,     0)  ->  Abs (  1004,  1466)
+	 25: Rel (    77,     0)  ->  Abs (  1081,  1466)
+
+	Glyph   6: off = 0x00000154, len = 480
+	  numberOfContours:	2
+	  xMin:			100
+	  yMin:			-2
+	  xMax:			1454
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  70
+	  1:  81
+
+	  Length of Instructions:	247
+	00000: NPUSHB     (152):    57    53   121    53     2   121    44     1   105    34 
+	                             1     9    26     1    80    76    71    53    19    51 
+	                            21    51    44    36    34    27    46    21     1    82 
+	                            46    24    46   142    51    21    20    51    51    21 
+	                            69    63     7     0    61     9    61    17    73    75 
+	                            54    56     9     1    82    56    12    56   142    61 
+	                             9    20    61    61     9    21    40    30    24    46 
+	                           139    51     0     7    63    69     4     9    61     9 
+	                            17    54    73    75     4   192    12     1    12    56 
+	                           139     4    66    51    47    61     1    61    36    37 
+	                            69    75    76     5    38    68   153    43    44    53 
+	                            54    63     5    64    42   153    38     7    17    19 
+	                            27     4    28     6   153     0    34    71    73    78 
+	                            80     6   255     2     1     2    33   153   159    28 
+	                             1    28    38    28    48    10    22     7    48     4 
+	                            59     4 
+	00154: SVTCA[y-axis] 
+	00155: MIAP[rd+ci] 
+	00156: MIAP[rd+ci] 
+	00157: MIAP[rd+ci] 
+	00158: MDRP[nrp0,nmd,rd,0] 
+	00159: SRP2       
+	00160: IP         
+	00161: IP         
+	00162: MDAP[rd]   
+	00163: DELTAP1    
+	00164: MIRP[srp0,md,rd,1] 
+	00165: MDRP[srp0,nmd,rd,0] 
+	00166: DELTAP1    
+	00167: SLOOP      
+	00168: IP         
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: SRP1       
+	00171: SLOOP      
+	00172: IP         
+	00173: MDAP[rd]   
+	00174: MIRP[srp0,md,rd,1] 
+	00175: MDRP[srp0,nmd,rd,0] 
+	00176: SLOOP      
+	00177: IP         
+	00178: MIRP[nrp0,md,rd,1] 
+	00179: SRP1       
+	00180: SLOOP      
+	00181: IP         
+	00182: IUP[x]     
+	00183: SVTCA[x-axis] 
+	00184: MDAP[rd]   
+	00185: DELTAP1    
+	00186: SHP[rp1,zp0] 
+	00187: MDRP[nrp0,nmd,rd,0] 
+	00188: MDRP[nrp0,nmd,rd,0] 
+	00189: MIRP[srp0,md,rd,1] 
+	00190: MDRP[nrp0,nmd,rd,0] 
+	00191: DELTAP1    
+	00192: SLOOP      
+	00193: IP         
+	00194: SHP[rp2,zp1] 
+	00195: SRP1       
+	00196: SRP2       
+	00197: SLOOP      
+	00198: IP         
+	00199: MDAP[rd]   
+	00200: MIRP[srp0,md,rd,1] 
+	00201: MDRP[srp0,nmd,rd,0] 
+	00202: MDRP[nrp0,nmd,rd,0] 
+	00203: MDRP[nrp0,nmd,rd,0] 
+	00204: SHP[rp1,zp0] 
+	00205: SDPVTL[1]  
+	00206: SRP0       
+	00207: CALL       
+	00208: SDPVTL[1]  
+	00209: CALL       
+	00210: MDRP[nrp0,nmd,rd,0] 
+	00211: SRP0       
+	00212: MDRP[nrp0,nmd,nrd,0] 
+	00213: MDRP[nrp0,nmd,nrd,0] 
+	00214: MDRP[nrp0,nmd,nrd,0] 
+	00215: MDRP[nrp0,nmd,nrd,0] 
+	00216: SRP0       
+	00217: SDPVTL[1]  
+	00218: MDRP[nrp0,nmd,nrd,0] 
+	00219: MDRP[nrp0,nmd,nrd,0] 
+	00220: MDRP[nrp0,nmd,nrd,0] 
+	00221: MDRP[nrp0,nmd,nrd,0] 
+	00222: SDPVTL[1]  
+	00223: RTG        
+	00224: SRP0       
+	00225: CALL       
+	00226: SDPVTL[1]  
+	00227: CALL       
+	00228: MDRP[nrp0,nmd,rd,0] 
+	00229: SRP0       
+	00230: MDRP[nrp0,nmd,nrd,0] 
+	00231: MDRP[nrp0,nmd,nrd,0] 
+	00232: MDRP[nrp0,nmd,nrd,0] 
+	00233: MDRP[nrp0,nmd,nrd,0] 
+	00234: SRP0       
+	00235: SDPVTL[1]  
+	00236: MDRP[nrp0,nmd,nrd,0] 
+	00237: MDRP[nrp0,nmd,nrd,0] 
+	00238: MDRP[nrp0,nmd,nrd,0] 
+	00239: MDRP[nrp0,nmd,nrd,0] 
+	00240: MDRP[nrp0,nmd,nrd,0] 
+	00241: IUP[y]     
+	00242: SVTCA[x-axis] 
+	00243: DELTAP1    
+	00244: DELTAP1    
+	00245: DELTAP1    
+	00246: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual                 X-Short On
+	 20:        XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short Off
+	 27:                      Y-Short X-Short On
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:  YDual       Rep-  1         X-Short On
+	 35:                      Y-Short X-Short Off
+	 36:                      Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:  YDual                       X-Short On
+	 43:  YDual                       X-Short Off
+	 44:                      Y-Short X-Short On
+	 45:                      Y-Short X-Short Off
+	 46:                      Y-Short X-Short On
+	 47:                      Y-Short X-Short Off
+	 48:  YDual                       X-Short On
+	 49:  YDual                       X-Short Off
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:                      Y-Short         On
+	 55:                      Y-Short X-Short Off
+	 56:                      Y-Short X-Short On
+	 57:              Rep-  1 Y-Short X-Short Off
+	 59:  YDual                       X-Short On
+	 60:  YDual                       X-Short Off
+	 61:  YDual XDual         Y-Short         On
+	 62:  YDual XDual         Y-Short         Off
+	 63:        XDual                 X-Short On
+	 64:                      Y-Short X-Short On
+	 65:  YDual                       X-Short Off
+	 66:  YDual XDual         Y-Short         On
+	 67:  YDual XDual         Y-Short         Off
+	 68:  YDual XDual         Y-Short X-Short Off
+	 69:  YDual XDual         Y-Short X-Short On
+	 70:  YDual XDual         Y-Short X-Short Off
+	 71:  YDual               Y-Short         On
+	 72:                      Y-Short X-Short Off
+	 73:                      Y-Short X-Short On
+	 74:                      Y-Short X-Short Off
+	 75:                      Y-Short X-Short On
+	 76:  YDual               Y-Short         On
+	 77:  YDual XDual         Y-Short X-Short Off
+	 78:  YDual XDual         Y-Short X-Short On
+	 79:  YDual XDual         Y-Short X-Short Off
+	 80:  YDual XDual         Y-Short X-Short On
+	 81:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   504,   881)  ->  Abs (   504,   881)
+	  1: Rel (  -139,   -21)  ->  Abs (   365,   860)
+	  2: Rel (   -29,     0)  ->  Abs (   336,   860)
+	  3: Rel (   -98,     0)  ->  Abs (   238,   860)
+	  4: Rel (     0,    68)  ->  Abs (   238,   928)
+	  5: Rel (     0,    56)  ->  Abs (   238,   984)
+	  6: Rel (   111,    43)  ->  Abs (   349,  1027)
+	  7: Rel (   218,    11)  ->  Abs (   567,  1038)
+	  8: Rel (    76,   191)  ->  Abs (   643,  1229)
+	  9: Rel (   132,   233)  ->  Abs (   775,  1462)
+	 10: Rel (    56,     0)  ->  Abs (   831,  1462)
+	 11: Rel (    46,     0)  ->  Abs (   877,  1462)
+	 12: Rel (     0,   -24)  ->  Abs (   877,  1438)
+	 13: Rel (     0,   -36)  ->  Abs (   877,  1402)
+	 14: Rel (   -21,   -59)  ->  Abs (   856,  1343)
+	 15: Rel (   -33,   -69)  ->  Abs (   823,  1274)
+	 16: Rel (   -39,   -83)  ->  Abs (   784,  1191)
+	 17: Rel (   -57,  -142)  ->  Abs (   727,  1049)
+	 18: Rel (   228,     8)  ->  Abs (   955,  1057)
+	 19: Rel (   118,     0)  ->  Abs (  1073,  1057)
+	 20: Rel (   115,   278)  ->  Abs (  1188,  1335)
+	 21: Rel (   101,   129)  ->  Abs (  1289,  1464)
+	 22: Rel (    38,     0)  ->  Abs (  1327,  1464)
+	 23: Rel (    57,     0)  ->  Abs (  1384,  1464)
+	 24: Rel (     0,   -41)  ->  Abs (  1384,  1423)
+	 25: Rel (     0,   -16)  ->  Abs (  1384,  1407)
+	 26: Rel (   -86,  -184)  ->  Abs (  1298,  1223)
+	 27: Rel (   -65,  -162)  ->  Abs (  1233,  1061)
+	 28: Rel (   131,     0)  ->  Abs (  1364,  1061)
+	 29: Rel (    90,     0)  ->  Abs (  1454,  1061)
+	 30: Rel (     0,   -74)  ->  Abs (  1454,   987)
+	 31: Rel (     0,   -49)  ->  Abs (  1454,   938)
+	 32: Rel (   -98,   -35)  ->  Abs (  1356,   903)
+	 33: Rel (  -107,     0)  ->  Abs (  1249,   903)
+	 34: Rel (   -73,     0)  ->  Abs (  1176,   903)
+	 35: Rel (   -45,  -119)  ->  Abs (  1131,   784)
+	 36: Rel (   -64,  -211)  ->  Abs (  1067,   573)
+	 37: Rel (    81,     2)  ->  Abs (  1148,   575)
+	 38: Rel (   140,     0)  ->  Abs (  1288,   575)
+	 39: Rel (    78,     0)  ->  Abs (  1366,   575)
+	 40: Rel (     0,   -73)  ->  Abs (  1366,   502)
+	 41: Rel (     0,   -84)  ->  Abs (  1366,   418)
+	 42: Rel (  -113,     0)  ->  Abs (  1253,   418)
+	 43: Rel (  -146,     0)  ->  Abs (  1107,   418)
+	 44: Rel (   -83,    -2)  ->  Abs (  1024,   416)
+	 45: Rel (   -51,  -191)  ->  Abs (   973,   225)
+	 46: Rel (   -25,  -157)  ->  Abs (   948,    68)
+	 47: Rel (   -10,   -70)  ->  Abs (   938,    -2)
+	 48: Rel (   -76,     0)  ->  Abs (   862,    -2)
+	 49: Rel (   -39,     0)  ->  Abs (   823,    -2)
+	 50: Rel (   -49,    46)  ->  Abs (   774,    44)
+	 51: Rel (     0,    36)  ->  Abs (   774,    80)
+	 52: Rel (     0,    96)  ->  Abs (   774,   176)
+	 53: Rel (    70,   238)  ->  Abs (   844,   414)
+	 54: Rel (  -328,    -6)  ->  Abs (   516,   408)
+	 55: Rel (   -53,  -184)  ->  Abs (   463,   224)
+	 56: Rel (   -31,  -158)  ->  Abs (   432,    66)
+	 57: Rel (    -5,   -30)  ->  Abs (   427,    36)
+	 58: Rel (   -68,   -38)  ->  Abs (   359,    -2)
+	 59: Rel (   -33,     0)  ->  Abs (   326,    -2)
+	 60: Rel (   -74,     0)  ->  Abs (   252,    -2)
+	 61: Rel (     0,    78)  ->  Abs (   252,    76)
+	 62: Rel (     0,    60)  ->  Abs (   252,   136)
+	 63: Rel (    82,   263)  ->  Abs (   334,   399)
+	 64: Rel (  -176,   -14)  ->  Abs (   158,   385)
+	 65: Rel (   -58,     0)  ->  Abs (   100,   385)
+	 66: Rel (     0,    92)  ->  Abs (   100,   477)
+	 67: Rel (     0,    36)  ->  Abs (   100,   513)
+	 68: Rel (    93,    40)  ->  Abs (   193,   553)
+	 69: Rel (   194,     6)  ->  Abs (   387,   559)
+	 70: Rel (    81,   239)  ->  Abs (   468,   798)
+	 71: Rel (   544,   103)  ->  Abs (  1012,   901)
+	 72: Rel (  -233,    -4)  ->  Abs (   779,   897)
+	 73: Rel (  -107,    -6)  ->  Abs (   672,   891)
+	 74: Rel (   -59,  -161)  ->  Abs (   613,   730)
+	 75: Rel (   -50,  -167)  ->  Abs (   563,   563)
+	 76: Rel (   330,     8)  ->  Abs (   893,   571)
+	 77: Rel (    44,   134)  ->  Abs (   937,   705)
+	 78: Rel (    71,   184)  ->  Abs (  1008,   889)
+	 79: Rel (     1,     2)  ->  Abs (  1009,   891)
+	 80: Rel (     1,     4)  ->  Abs (  1010,   895)
+	 81: Rel (     1,     4)  ->  Abs (  1011,   899)
+
+	Glyph   7: off = 0x00000334, len = 382
+	  numberOfContours:	3
+	  xMin:			63
+	  yMin:			-20
+	  xMax:			1190
+	  yMax:			1473
+
+	EndPoints
+	---------
+	  0:  50
+	  1:  58
+	  2:  66
+
+	  Length of Instructions:	186
+	00000: NPUSHB     (119):   100    58     1   105    66     1    58    62   106    62 
+	                             2    74    55     1    74    49    90    49     2    70 
+	                            22    86    22     2     0    20    32    20   112    20 
+	                           128    20     4   169    17     1    64   138    21    56 
+	                           138    48    53    51    46    44    32     0    30     2 
+	                            30    61    59    24    19    17     7    25     2     1 
+	                            82    25     5    25   225    30     2    20    30    30 
+	                             2     2     5    25    30     5    21    30    48     4 
+	                            36    15    12    31    12    47    12     3    12    68 
+	                            36    15    61    53    44    17   153     0     7    19 
+	                            21    24    32    46    48    51    56    59    64    12 
+	                            33     9     3     7    39    44   153    33    28 
+	00121: SVTCA[y-axis] 
+	00122: MDAP[rd]   
+	00123: MDAP[rd]   
+	00124: MIRP[srp0,md,rd,1] 
+	00125: MDRP[nrp0,nmd,rd,0] 
+	00126: MIAP[rd+ci] 
+	00127: MDRP[srp0,nmd,rd,0] 
+	00128: SRP1       
+	00129: SLOOP      
+	00130: IP         
+	00131: MIRP[srp0,md,rd,1] 
+	00132: SRP1       
+	00133: IP         
+	00134: IP         
+	00135: MDRP[nrp0,nmd,rd,2] 
+	00136: IUP[x]     
+	00137: SVTCA[x-axis] 
+	00138: MDAP[rd]   
+	00139: SRP0       
+	00140: MDRP[nrp0,nmd,rd,0] 
+	00141: DELTAP1    
+	00142: SRP1       
+	00143: SLOOP      
+	00144: IP         
+	00145: MDAP[rd]   
+	00146: SHP[rp1,zp0] 
+	00147: MDAP[rd]   
+	00148: SHP[rp1,zp0] 
+	00149: SDPVTL[1]  
+	00150: SRP0       
+	00151: CALL       
+	00152: SDPVTL[1]  
+	00153: CALL       
+	00154: MDRP[nrp0,nmd,rd,0] 
+	00155: SRP0       
+	00156: MDRP[nrp0,nmd,nrd,0] 
+	00157: MDRP[nrp0,nmd,nrd,0] 
+	00158: MDRP[nrp0,nmd,nrd,0] 
+	00159: MDRP[nrp0,nmd,nrd,0] 
+	00160: MDRP[nrp0,nmd,nrd,0] 
+	00161: MDRP[nrp0,nmd,nrd,0] 
+	00162: SRP0       
+	00163: SDPVTL[1]  
+	00164: MDRP[nrp0,nmd,nrd,0] 
+	00165: MDRP[nrp0,nmd,nrd,0] 
+	00166: MDRP[nrp0,nmd,nrd,0] 
+	00167: MDRP[nrp0,nmd,nrd,0] 
+	00168: MDRP[nrp0,nmd,nrd,0] 
+	00169: MDRP[nrp0,nmd,nrd,0] 
+	00170: SVTCA[x-axis] 
+	00171: RTG        
+	00172: MDAP[rd]   
+	00173: MIRP[nrp0,md,rd,1] 
+	00174: MDAP[rd]   
+	00175: MIRP[nrp0,md,rd,1] 
+	00176: IUP[y]     
+	00177: DELTAP1    
+	00178: DELTAP1    
+	00179: DELTAP1    
+	00180: DELTAP1    
+	00181: DELTAP1    
+	00182: DELTAP1    
+	00183: DELTAP1    
+	00184: SVTCA[y-axis] 
+	00185: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual Rep-  1 Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual               Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short X-Short On
+	 20:                      Y-Short         Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short X-Short Off
+	 24:              Rep-  1 Y-Short X-Short On
+	 26:              Rep-  1 Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:        XDual         Y-Short X-Short On
+	 42:        XDual         Y-Short X-Short Off
+	 43:  YDual XDual Rep-  1         X-Short On
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short X-Short On
+	 47:  YDual               Y-Short         Off
+	 48:  YDual XDual         Y-Short         On
+	 49:  YDual XDual         Y-Short         Off
+	 50:  YDual               Y-Short         Off
+	 51:        XDual                 X-Short On
+	 52:  YDual XDual         Y-Short X-Short Off
+	 53:  YDual XDual         Y-Short X-Short On
+	 54:              Rep-  1 Y-Short X-Short Off
+	 56:        XDual         Y-Short         On
+	 57:        XDual         Y-Short         Off
+	 58:        XDual         Y-Short X-Short Off
+	 59:        XDual         Y-Short X-Short On
+	 60:                      Y-Short X-Short Off
+	 61:                      Y-Short X-Short On
+	 62:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 64:  YDual XDual         Y-Short         On
+	 65:  YDual XDual         Y-Short         Off
+	 66:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   823,  1286)  ->  Abs (   823,  1286)
+	  1: Rel (    48,   105)  ->  Abs (   871,  1391)
+	  2: Rel (    67,    82)  ->  Abs (   938,  1473)
+	  3: Rel (    35,     0)  ->  Abs (   973,  1473)
+	  4: Rel (    43,     0)  ->  Abs (  1016,  1473)
+	  5: Rel (     0,   -27)  ->  Abs (  1016,  1446)
+	  6: Rel (     0,   -45)  ->  Abs (  1016,  1401)
+	  7: Rel (   -49,   -98)  ->  Abs (   967,  1303)
+	  8: Rel (    83,     4)  ->  Abs (  1050,  1307)
+	  9: Rel (    48,     0)  ->  Abs (  1098,  1307)
+	 10: Rel (    42,     0)  ->  Abs (  1140,  1307)
+	 11: Rel (    50,   -43)  ->  Abs (  1190,  1264)
+	 12: Rel (     0,   -31)  ->  Abs (  1190,  1233)
+	 13: Rel (     0,   -39)  ->  Abs (  1190,  1194)
+	 14: Rel (   -50,   -76)  ->  Abs (  1140,  1118)
+	 15: Rel (   -55,     0)  ->  Abs (  1085,  1118)
+	 16: Rel (   -75,     6)  ->  Abs (  1010,  1124)
+	 17: Rel (  -127,     0)  ->  Abs (   883,  1124)
+	 18: Rel (   -66,  -159)  ->  Abs (   817,   965)
+	 19: Rel (   -55,  -164)  ->  Abs (   762,   801)
+	 20: Rel (   282,   -99)  ->  Abs (  1044,   702)
+	 21: Rel (     0,  -198)  ->  Abs (  1044,   504)
+	 22: Rel (     0,  -124)  ->  Abs (  1044,   380)
+	 23: Rel (  -247,  -198)  ->  Abs (   797,   182)
+	 24: Rel (  -215,   -39)  ->  Abs (   582,   143)
+	 25: Rel (   -21,  -104)  ->  Abs (   561,    39)
+	 26: Rel (    -4,   -27)  ->  Abs (   557,    12)
+	 27: Rel (   -60,   -32)  ->  Abs (   497,   -20)
+	 28: Rel (   -32,     0)  ->  Abs (   465,   -20)
+	 29: Rel (   -57,     0)  ->  Abs (   408,   -20)
+	 30: Rel (     0,    69)  ->  Abs (   408,    49)
+	 31: Rel (     0,    26)  ->  Abs (   408,    75)
+	 32: Rel (    12,    52)  ->  Abs (   420,   127)
+	 33: Rel (   -43,     0)  ->  Abs (   377,   127)
+	 34: Rel (  -133,     0)  ->  Abs (   244,   127)
+	 35: Rel (  -181,    80)  ->  Abs (    63,   207)
+	 36: Rel (     0,    57)  ->  Abs (    63,   264)
+	 37: Rel (     0,    34)  ->  Abs (    63,   298)
+	 38: Rel (    40,    46)  ->  Abs (   103,   344)
+	 39: Rel (    34,     0)  ->  Abs (   137,   344)
+	 40: Rel (    23,     0)  ->  Abs (   160,   344)
+	 41: Rel (    54,   -15)  ->  Abs (   214,   329)
+	 42: Rel (   119,   -34)  ->  Abs (   333,   295)
+	 43: Rel (   109,     0)  ->  Abs (   442,   295)
+	 44: Rel (    21,     0)  ->  Abs (   463,   295)
+	 45: Rel (    49,   177)  ->  Abs (   512,   472)
+	 46: Rel (    74,   212)  ->  Abs (   586,   684)
+	 47: Rel (  -277,    97)  ->  Abs (   309,   781)
+	 48: Rel (     0,   173)  ->  Abs (   309,   954)
+	 49: Rel (     0,   115)  ->  Abs (   309,  1069)
+	 50: Rel (   271,   180)  ->  Abs (   580,  1249)
+	 51: Rel (    61,  -409)  ->  Abs (   641,   840)
+	 52: Rel (    58,   159)  ->  Abs (   699,   999)
+	 53: Rel (    49,   115)  ->  Abs (   748,  1114)
+	 54: Rel (  -126,   -20)  ->  Abs (   622,  1094)
+	 55: Rel (  -128,   -86)  ->  Abs (   494,  1008)
+	 56: Rel (     0,   -45)  ->  Abs (   494,   963)
+	 57: Rel (     0,   -42)  ->  Abs (   494,   921)
+	 58: Rel (    67,   -56)  ->  Abs (   561,   865)
+	 59: Rel (   150,  -228)  ->  Abs (   711,   637)
+	 60: Rel (   -60,  -199)  ->  Abs (   651,   438)
+	 61: Rel (   -30,  -121)  ->  Abs (   621,   317)
+	 62: Rel (   110,    29)  ->  Abs (   731,   346)
+	 63: Rel (   129,    95)  ->  Abs (   860,   441)
+	 64: Rel (     0,    46)  ->  Abs (   860,   487)
+	 65: Rel (     0,    51)  ->  Abs (   860,   538)
+	 66: Rel (   -72,    66)  ->  Abs (   788,   604)
+
+	Glyph   8: off = 0x000004B2, len = 338
+	  numberOfContours:	5
+	  xMin:			145
+	  yMin:			-8
+	  xMax:			1565
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+	  2:  46
+	  3:  58
+	  4:  70
+
+	  Length of Instructions:	121
+	00000: NPUSHB      (82):   105    52   121    52   137    52     3    18   156     6 
+	                            12   156    34     0     7    59   156    47    65   156 
+	                            53    25    44    25    62   139   144    56     1    56 
+	                            68   139   160    50     1    50    21   139     3    15 
+	                           139    47     9    95     9     2     9    67    42   115 
+	                            42     2    53    42     1   105    42     1    92    32 
+	                           140    32     2   111    24   143    24     2     9    32 
+	                            42    50     4    24   175    37   223    37     2    37 
+	                            72    24 
+	00084: MDAP[rd]   
+	00085: SRP0       
+	00086: MDRP[nrp0,nmd,rd,0] 
+	00087: DELTAP1    
+	00088: SRP1       
+	00089: SLOOP      
+	00090: IP         
+	00091: DELTAP1    
+	00092: DELTAP1    
+	00093: DELTAP1    
+	00094: DELTAP1    
+	00095: DELTAP1    
+	00096: MDAP[rd]   
+	00097: DELTAP1    
+	00098: MIRP[nrp0,md,rd,1] 
+	00099: MDRP[srp0,nmd,rd,0] 
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: MDAP[rd]   
+	00102: DELTAP1    
+	00103: MIRP[nrp0,md,rd,1] 
+	00104: MDRP[srp0,nmd,rd,0] 
+	00105: DELTAP1    
+	00106: MIRP[nrp0,md,rd,1] 
+	00107: SVTCA[y-axis] 
+	00108: MIAP[rd+ci] 
+	00109: MIAP[rd+ci] 
+	00110: MIRP[nrp0,md,rd,1] 
+	00111: MDRP[srp0,nmd,rd,0] 
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: MIAP[rd+ci] 
+	00114: MDRP[nrp0,nmd,rd,0] 
+	00115: MIRP[nrp0,md,rd,1] 
+	00116: MDRP[srp0,nmd,rd,0] 
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: IUP[y]     
+	00119: IUP[x]     
+	00120: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:        XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:  YDual                       X-Short Off
+	 14:                      Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:                                      On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:                                      Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:                                      Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:                      Y-Short X-Short On
+	 40:              Rep-  1                 Off
+	 42:                      Y-Short X-Short On
+	 43:                      Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                       X-Short Off
+	 46:  YDual               Y-Short X-Short Off
+	 47:                                      On
+	 48:  YDual XDual                 X-Short Off
+	 49:        XDual         Y-Short X-Short Off
+	 50:        XDual         Y-Short         On
+	 51:        XDual         Y-Short         Off
+	 52:                      Y-Short X-Short Off
+	 53:  YDual                       X-Short On
+	 54:  YDual                       X-Short Off
+	 55:  YDual               Y-Short X-Short Off
+	 56:  YDual XDual         Y-Short         On
+	 57:  YDual XDual         Y-Short         Off
+	 58:        XDual                 X-Short Off
+	 59:        XDual         Y-Short X-Short On
+	 60:  YDual                       X-Short Off
+	 61:                      Y-Short X-Short Off
+	 62:        XDual         Y-Short         On
+	 63:        XDual         Y-Short         Off
+	 64:        XDual         Y-Short X-Short Off
+	 65:  YDual XDual                 X-Short On
+	 66:  YDual XDual                 X-Short Off
+	 67:  YDual XDual         Y-Short X-Short Off
+	 68:  YDual XDual         Y-Short         On
+	 69:  YDual XDual         Y-Short         Off
+	 70:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   614,  1464)  ->  Abs (   614,  1464)
+	  1: Rel (    93,     0)  ->  Abs (   707,  1464)
+	  2: Rel (   131,  -125)  ->  Abs (   838,  1339)
+	  3: Rel (     0,   -79)  ->  Abs (   838,  1260)
+	  4: Rel (     0,  -169)  ->  Abs (   838,  1091)
+	  5: Rel (  -230,  -251)  ->  Abs (   608,   840)
+	  6: Rel (  -168,     0)  ->  Abs (   440,   840)
+	  7: Rel (   -97,     0)  ->  Abs (   343,   840)
+	  8: Rel (  -130,   129)  ->  Abs (   213,   969)
+	  9: Rel (     0,    92)  ->  Abs (   213,  1061)
+	 10: Rel (     0,   145)  ->  Abs (   213,  1206)
+	 11: Rel (   242,   258)  ->  Abs (   455,  1464)
+	 12: Rel (   131,  -139)  ->  Abs (   586,  1325)
+	 13: Rel (   -92,     0)  ->  Abs (   494,  1325)
+	 14: Rel (  -111,  -157)  ->  Abs (   383,  1168)
+	 15: Rel (     0,   -87)  ->  Abs (   383,  1081)
+	 16: Rel (     0,   -42)  ->  Abs (   383,  1039)
+	 17: Rel (    55,   -60)  ->  Abs (   438,   979)
+	 18: Rel (    39,     0)  ->  Abs (   477,   979)
+	 19: Rel (    73,     0)  ->  Abs (   550,   979)
+	 20: Rel (   118,   172)  ->  Abs (   668,  1151)
+	 21: Rel (     0,    82)  ->  Abs (   668,  1233)
+	 22: Rel (     0,    33)  ->  Abs (   668,  1266)
+	 23: Rel (   -46,    59)  ->  Abs (   622,  1325)
+	 24: Rel (  -477, -1255)  ->  Abs (   145,    70)
+	 25: Rel (     0,    23)  ->  Abs (   145,    93)
+	 26: Rel (    13,    23)  ->  Abs (   158,   116)
+	 27: Rel (    26,    47)  ->  Abs (   184,   163)
+	 28: Rel (   389,   447)  ->  Abs (   573,   610)
+	 29: Rel (   207,   205)  ->  Abs (   780,   815)
+	 30: Rel (   280,   277)  ->  Abs (  1060,  1092)
+	 31: Rel (   135,   122)  ->  Abs (  1195,  1214)
+	 32: Rel (   209,   189)  ->  Abs (  1404,  1403)
+	 33: Rel (    66,    37)  ->  Abs (  1470,  1440)
+	 34: Rel (    27,     0)  ->  Abs (  1497,  1440)
+	 35: Rel (    23,     0)  ->  Abs (  1520,  1440)
+	 36: Rel (    45,   -43)  ->  Abs (  1565,  1397)
+	 37: Rel (     0,   -33)  ->  Abs (  1565,  1364)
+	 38: Rel (     0,   -27)  ->  Abs (  1565,  1337)
+	 39: Rel (   -62,   -51)  ->  Abs (  1503,  1286)
+	 40: Rel (  -328,  -273)  ->  Abs (  1175,  1013)
+	 41: Rel (  -642,  -674)  ->  Abs (   533,   339)
+	 42: Rel (  -189,  -253)  ->  Abs (   344,    86)
+	 43: Rel (   -64,   -90)  ->  Abs (   280,    -4)
+	 44: Rel (   -63,     0)  ->  Abs (   217,    -4)
+	 45: Rel (   -31,     0)  ->  Abs (   186,    -4)
+	 46: Rel (   -41,    43)  ->  Abs (   145,    39)
+	 47: Rel (  1049,   577)  ->  Abs (  1194,   616)
+	 48: Rel (    93,     0)  ->  Abs (  1287,   616)
+	 49: Rel (   130,  -124)  ->  Abs (  1417,   492)
+	 50: Rel (     0,   -80)  ->  Abs (  1417,   412)
+	 51: Rel (     0,  -169)  ->  Abs (  1417,   243)
+	 52: Rel (  -229,  -251)  ->  Abs (  1188,    -8)
+	 53: Rel (  -168,     0)  ->  Abs (  1020,    -8)
+	 54: Rel (   -97,     0)  ->  Abs (   923,    -8)
+	 55: Rel (  -130,   129)  ->  Abs (   793,   121)
+	 56: Rel (     0,    92)  ->  Abs (   793,   213)
+	 57: Rel (     0,   145)  ->  Abs (   793,   358)
+	 58: Rel (   241,   258)  ->  Abs (  1034,   616)
+	 59: Rel (   131,  -139)  ->  Abs (  1165,   477)
+	 60: Rel (   -92,     0)  ->  Abs (  1073,   477)
+	 61: Rel (  -110,  -157)  ->  Abs (   963,   320)
+	 62: Rel (     0,   -87)  ->  Abs (   963,   233)
+	 63: Rel (     0,   -41)  ->  Abs (   963,   192)
+	 64: Rel (    54,   -61)  ->  Abs (  1017,   131)
+	 65: Rel (    40,     0)  ->  Abs (  1057,   131)
+	 66: Rel (    72,     0)  ->  Abs (  1129,   131)
+	 67: Rel (   118,   173)  ->  Abs (  1247,   304)
+	 68: Rel (     0,    81)  ->  Abs (  1247,   385)
+	 69: Rel (     0,    33)  ->  Abs (  1247,   418)
+	 70: Rel (   -46,    59)  ->  Abs (  1201,   477)
+
+	Glyph   9: off = 0x00000604, len = 360
+	  numberOfContours:	3
+	  xMin:			49
+	  yMin:			-4
+	  xMax:			1491
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  41
+	  1:  52
+	  2:  63
+
+	  Length of Instructions:	170
+	00000: NPUSHB      (43):   107    63     1    73    62    89    62     2   123    61 
+	                           139    61     2    58    50    74    50    90    50     3 
+	                            54    40     1   121    38   137    38     2    37     7 
+	                             1   102     3     1   124    54   140    54     2   120 
+	                            42     1    42 
+	00045: PUSHW[1]            -40 
+	00048: NPUSHB      (74):    12    17    72    33    40    13    17    72    35    13 
+	                            99    13   115    13   131    13     4    17     0    11 
+	                            13    17    24    33    42    53    54    62    10    31 
+	                            48   153     5     7    26   153    31    25    60   153 
+	                            36    25    11    13    24    42     4    28    51   137 
+	                             0    33    53    54    62     5    28     2    45   137 
+	                             8    15   139    20     2     8    20     3    39    28 
+	                            65    57   137    39 
+	00124: MDAP[rd]   
+	00125: MIRP[nrp0,md,rd,1] 
+	00126: SRP0       
+	00127: MDRP[nrp0,nmd,rd,2] 
+	00128: SRP1       
+	00129: SLOOP      
+	00130: IP         
+	00131: MDAP[rd]   
+	00132: MIRP[nrp0,md,rd,1] 
+	00133: MDAP[rd]   
+	00134: MIRP[nrp0,md,rd,1] 
+	00135: MDAP[rd]   
+	00136: SRP2       
+	00137: SLOOP      
+	00138: IP         
+	00139: MIRP[nrp0,md,rd,1] 
+	00140: SRP1       
+	00141: SLOOP      
+	00142: IP         
+	00143: SVTCA[y-axis] 
+	00144: MIAP[rd+ci] 
+	00145: MIRP[nrp0,md,rd,1] 
+	00146: MIAP[rd+ci] 
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: MIAP[rd+ci] 
+	00149: MIRP[nrp0,md,rd,1] 
+	00150: SRP2       
+	00151: SLOOP      
+	00152: IP         
+	00153: MDAP[rd]   
+	00154: DELTAP1    
+	00155: CALL       
+	00156: CALL       
+	00157: DELTAP1    
+	00158: DELTAP1    
+	00159: IUP[y]     
+	00160: IUP[x]     
+	00161: DELTAP1    
+	00162: DELTAP1    
+	00163: DELTAP1    
+	00164: DELTAP1    
+	00165: DELTAP1    
+	00166: SVTCA[x-axis] 
+	00167: DELTAP1    
+	00168: DELTAP1    
+	00169: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual XDual         Y-Short         On
+	  3:  YDual XDual         Y-Short         Off
+	  4:  YDual               Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:                      Y-Short         On
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:              Rep-  1 Y-Short X-Short Off
+	 24:                      Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:                      Y-Short X-Short Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:  YDual               Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short         Off
+	 36:  YDual                       X-Short On
+	 37:  YDual                       X-Short Off
+	 38:  YDual               Y-Short         Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual               Y-Short         On
+	 43:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual               Y-Short X-Short Off
+	 48:  YDual                       X-Short On
+	 49:  YDual                       X-Short Off
+	 50:                      Y-Short X-Short Off
+	 51:        XDual         Y-Short         On
+	 52:        XDual         Y-Short         Off
+	 53:                              X-Short On
+	 54:                      Y-Short X-Short On
+	 55:              Rep-  1 Y-Short X-Short Off
+	 57:        XDual         Y-Short         On
+	 58:        XDual         Y-Short         Off
+	 59:        XDual         Y-Short X-Short Off
+	 60:  YDual XDual                 X-Short On
+	 61:  YDual XDual                 X-Short Off
+	 62:  YDual XDual         Y-Short X-Short On
+	 63:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   520,   838)  ->  Abs (   520,   838)
+	  1: Rel (   -45,   123)  ->  Abs (   475,   961)
+	  2: Rel (     0,   110)  ->  Abs (   475,  1071)
+	  3: Rel (     0,   155)  ->  Abs (   475,  1226)
+	  4: Rel (   275,   238)  ->  Abs (   750,  1464)
+	  5: Rel (   206,     0)  ->  Abs (   956,  1464)
+	  6: Rel (   111,     0)  ->  Abs (  1067,  1464)
+	  7: Rel (   184,  -155)  ->  Abs (  1251,  1309)
+	  8: Rel (     0,  -103)  ->  Abs (  1251,  1206)
+	  9: Rel (     0,  -122)  ->  Abs (  1251,  1084)
+	 10: Rel (  -229,  -195)  ->  Abs (  1022,   889)
+	 11: Rel (  -268,  -117)  ->  Abs (   754,   772)
+	 12: Rel (    71,  -138)  ->  Abs (   825,   634)
+	 13: Rel (   189,  -216)  ->  Abs (  1014,   418)
+	 14: Rel (   171,   154)  ->  Abs (  1185,   572)
+	 15: Rel (    83,   161)  ->  Abs (  1268,   733)
+	 16: Rel (    19,    45)  ->  Abs (  1287,   778)
+	 17: Rel (    50,     0)  ->  Abs (  1337,   778)
+	 18: Rel (    34,     0)  ->  Abs (  1371,   778)
+	 19: Rel (    61,   -49)  ->  Abs (  1432,   729)
+	 20: Rel (     0,   -33)  ->  Abs (  1432,   696)
+	 21: Rel (     0,   -25)  ->  Abs (  1432,   671)
+	 22: Rel (   -42,   -80)  ->  Abs (  1390,   591)
+	 23: Rel (  -156,  -185)  ->  Abs (  1234,   406)
+	 24: Rel (  -108,   -99)  ->  Abs (  1126,   307)
+	 25: Rel (   128,  -106)  ->  Abs (  1254,   201)
+	 26: Rel (   147,   -15)  ->  Abs (  1401,   186)
+	 27: Rel (    90,    -8)  ->  Abs (  1491,   178)
+	 28: Rel (     0,  -100)  ->  Abs (  1491,    78)
+	 29: Rel (     0,   -35)  ->  Abs (  1491,    43)
+	 30: Rel (   -49,   -47)  ->  Abs (  1442,    -4)
+	 31: Rel (   -39,     0)  ->  Abs (  1403,    -4)
+	 32: Rel (  -197,     0)  ->  Abs (  1206,    -4)
+	 33: Rel (  -221,   194)  ->  Abs (   985,   190)
+	 34: Rel (  -122,   -92)  ->  Abs (   863,    98)
+	 35: Rel (  -282,  -102)  ->  Abs (   581,    -4)
+	 36: Rel (  -126,     0)  ->  Abs (   455,    -4)
+	 37: Rel (  -143,     0)  ->  Abs (   312,    -4)
+	 38: Rel (  -263,   213)  ->  Abs (    49,   209)
+	 39: Rel (     0,   149)  ->  Abs (    49,   358)
+	 40: Rel (     0,   143)  ->  Abs (    49,   501)
+	 41: Rel (   235,   240)  ->  Abs (   284,   741)
+	 42: Rel (   410,   168)  ->  Abs (   694,   909)
+	 43: Rel (   190,    84)  ->  Abs (   884,   993)
+	 44: Rel (   177,   137)  ->  Abs (  1061,  1130)
+	 45: Rel (     0,    76)  ->  Abs (  1061,  1206)
+	 46: Rel (     0,    36)  ->  Abs (  1061,  1242)
+	 47: Rel (   -58,    54)  ->  Abs (  1003,  1296)
+	 48: Rel (   -47,     0)  ->  Abs (   956,  1296)
+	 49: Rel (  -130,     0)  ->  Abs (   826,  1296)
+	 50: Rel (  -160,  -123)  ->  Abs (   666,  1173)
+	 51: Rel (     0,  -102)  ->  Abs (   666,  1071)
+	 52: Rel (     0,   -70)  ->  Abs (   666,  1001)
+	 53: Rel (   -84,  -303)  ->  Abs (   582,   698)
+	 54: Rel (    -4,    -2)  ->  Abs (   578,   696)
+	 55: Rel (  -176,   -75)  ->  Abs (   402,   621)
+	 56: Rel (  -158,  -161)  ->  Abs (   244,   460)
+	 57: Rel (     0,  -102)  ->  Abs (   244,   358)
+	 58: Rel (     0,   -87)  ->  Abs (   244,   271)
+	 59: Rel (   143,  -101)  ->  Abs (   387,   170)
+	 60: Rel (    86,     0)  ->  Abs (   473,   170)
+	 61: Rel (   183,     0)  ->  Abs (   656,   170)
+	 62: Rel (   212,   135)  ->  Abs (   868,   305)
+	 63: Rel (  -191,   208)  ->  Abs (   677,   513)
+
+	Glyph  10: off = 0x0000076C, len = 72
+	  numberOfContours:	1
+	  xMin:			248
+	  yMin:			823
+	  xMax:			631
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  12
+
+	  Length of Instructions:	23
+	00000: NPUSHB      (12):     6    11     7     0     4   137    63     8   143     8 
+	                             2     8 
+	00014: MDAP[rd]   
+	00015: DELTAP1    
+	00016: MIRP[srp0,md,rd,1] 
+	00017: MDRP[nrp0,nmd,rd,0] 
+	00018: SVTCA[y-axis] 
+	00019: MIAP[rd+ci] 
+	00020: MDRP[nrp0,md,rd,1] 
+	00021: IUP[y]     
+	00022: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:                      Y-Short X-Short On
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:        XDual                 X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   631,  1401)  ->  Abs (   631,  1401)
+	  1: Rel (     0,   -21)  ->  Abs (   631,  1380)
+	  2: Rel (   -39,   -82)  ->  Abs (   592,  1298)
+	  3: Rel (   -85,  -169)  ->  Abs (   507,  1129)
+	  4: Rel (   -63,  -242)  ->  Abs (   444,   887)
+	  5: Rel (   -15,   -64)  ->  Abs (   429,   823)
+	  6: Rel (   -83,     0)  ->  Abs (   346,   823)
+	  7: Rel (   -98,     0)  ->  Abs (   248,   823)
+	  8: Rel (     0,    86)  ->  Abs (   248,   909)
+	  9: Rel (     0,    69)  ->  Abs (   248,   978)
+	 10: Rel (   235,   488)  ->  Abs (   483,  1466)
+	 11: Rel (    70,     0)  ->  Abs (   553,  1466)
+	 12: Rel (    78,     0)  ->  Abs (   631,  1466)
+
+	Glyph  11: off = 0x000007B4, len = 154
+	  numberOfContours:	1
+	  xMin:			195
+	  yMin:			-461
+	  xMax:			1231
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	59
+	00000: NPUSHB      (41):    54    19   134    19     2   117    18   133    18     2 
+	                           108     9   124     9   140     9     3    41     8     1 
+	                           107     5   123     5   139     5     3     4    32    12 
+	                            17    72    11     7     3    27    14     0    21   137 
+	                             7 
+	00043: MDAP[rd]   
+	00044: MIRP[nrp0,md,rd,1] 
+	00045: MDRP[nrp0,md,rd,1] 
+	00046: MDRP[nrp0,nmd,rd,0] 
+	00047: SVTCA[y-axis] 
+	00048: MIAP[rd+ci] 
+	00049: MIAP[rd+ci] 
+	00050: IUP[y]     
+	00051: IUP[x]     
+	00052: SVTCA[x-axis] 
+	00053: CALL       
+	00054: DELTAP1    
+	00055: DELTAP1    
+	00056: DELTAP1    
+	00057: DELTAP1    
+	00058: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:                              X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:        XDual                         Off
+	  9:              Rep-  1                 Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:              Rep-  1                 Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:        XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   623,  -393)  ->  Abs (   623,  -393)
+	  1: Rel (     0,   -29)  ->  Abs (   623,  -422)
+	  2: Rel (   -52,   -39)  ->  Abs (   571,  -461)
+	  3: Rel (   -49,     0)  ->  Abs (   522,  -461)
+	  4: Rel (   -58,     0)  ->  Abs (   464,  -461)
+	  5: Rel (  -160,   178)  ->  Abs (   304,  -283)
+	  6: Rel (  -109,   304)  ->  Abs (   195,    21)
+	  7: Rel (     0,   161)  ->  Abs (   195,   182)
+	  8: Rel (     0,   319)  ->  Abs (   195,   501)
+	  9: Rel (   312,   563)  ->  Abs (   507,  1064)
+	 10: Rel (   492,   400)  ->  Abs (   999,  1464)
+	 11: Rel (   162,     0)  ->  Abs (  1161,  1464)
+	 12: Rel (    32,     0)  ->  Abs (  1193,  1464)
+	 13: Rel (    38,   -34)  ->  Abs (  1231,  1430)
+	 14: Rel (     0,   -25)  ->  Abs (  1231,  1405)
+	 15: Rel (     0,   -32)  ->  Abs (  1231,  1373)
+	 16: Rel (   -37,   -40)  ->  Abs (  1194,  1333)
+	 17: Rel (   -51,   -16)  ->  Abs (  1143,  1317)
+	 18: Rel (  -119,   -37)  ->  Abs (  1024,  1280)
+	 19: Rel (  -362,  -317)  ->  Abs (   662,   963)
+	 20: Rel (  -271,  -533)  ->  Abs (   391,   430)
+	 21: Rel (     0,  -248)  ->  Abs (   391,   182)
+	 22: Rel (     0,  -133)  ->  Abs (   391,    49)
+	 23: Rel (    99,  -263)  ->  Abs (   490,  -214)
+	 24: Rel (    71,   -73)  ->  Abs (   561,  -287)
+	 25: Rel (    62,   -64)  ->  Abs (   623,  -351)
+
+	Glyph  12: off = 0x0000084E, len = 160
+	  numberOfContours:	1
+	  xMin:			-43
+	  yMin:			-463
+	  xMax:			993
+	  yMax:			1462
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	65
+	00000: NPUSHB      (28):    57    19   137    19     2   122    18   138    18     2 
+	                            99     9   115     9     2    38     8   134     8     2 
+	                           100     5   116     5   132     5     3     4 
+	00030: PUSHW[1]            -32 
+	00033: NPUSHB      (13):    12    17    72     3     7    11    27    14     0    21 
+	                           137     7    27 
+	00048: SRP0       
+	00049: MDRP[srp0,nmd,rd,2] 
+	00050: MIRP[nrp0,md,rd,1] 
+	00051: MDRP[nrp0,md,rd,1] 
+	00052: MDRP[nrp0,nmd,rd,0] 
+	00053: SVTCA[y-axis] 
+	00054: MIAP[rd+ci] 
+	00055: MIAP[rd+ci] 
+	00056: IUP[y]     
+	00057: IUP[x]     
+	00058: SVTCA[x-axis] 
+	00059: CALL       
+	00060: DELTAP1    
+	00061: DELTAP1    
+	00062: DELTAP1    
+	00063: DELTAP1    
+	00064: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual                 X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual                         Off
+	  9:              Rep-  1                 Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:              Rep-  1                 Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:                              X-Short Off
+	 24:  YDual               Y-Short X-Short On
+	 25:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   565,  1395)  ->  Abs (   565,  1395)
+	  1: Rel (     0,    29)  ->  Abs (   565,  1424)
+	  2: Rel (    53,    38)  ->  Abs (   618,  1462)
+	  3: Rel (    48,     0)  ->  Abs (   666,  1462)
+	  4: Rel (    58,     0)  ->  Abs (   724,  1462)
+	  5: Rel (   163,  -183)  ->  Abs (   887,  1279)
+	  6: Rel (   106,  -302)  ->  Abs (   993,   977)
+	  7: Rel (     0,  -158)  ->  Abs (   993,   819)
+	  8: Rel (     0,  -318)  ->  Abs (   993,   501)
+	  9: Rel (  -312,  -564)  ->  Abs (   681,   -63)
+	 10: Rel (  -492,  -400)  ->  Abs (   189,  -463)
+	 11: Rel (  -162,     0)  ->  Abs (    27,  -463)
+	 12: Rel (   -32,     0)  ->  Abs (    -5,  -463)
+	 13: Rel (   -38,    35)  ->  Abs (   -43,  -428)
+	 14: Rel (     0,    25)  ->  Abs (   -43,  -403)
+	 15: Rel (     0,    35)  ->  Abs (   -43,  -368)
+	 16: Rel (    42,    38)  ->  Abs (    -1,  -330)
+	 17: Rel (    46,    15)  ->  Abs (    45,  -315)
+	 18: Rel (   120,    37)  ->  Abs (   165,  -278)
+	 19: Rel (   359,   314)  ->  Abs (   524,    36)
+	 20: Rel (   273,   534)  ->  Abs (   797,   570)
+	 21: Rel (     0,   249)  ->  Abs (   797,   819)
+	 22: Rel (     0,   137)  ->  Abs (   797,   956)
+	 23: Rel (  -100,   261)  ->  Abs (   697,  1217)
+	 24: Rel (   -70,    71)  ->  Abs (   627,  1288)
+	 25: Rel (   -62,    62)  ->  Abs (   565,  1350)
+
+	Glyph  13: off = 0x000008EE, len = 254
+	  numberOfContours:	1
+	  xMin:			182
+	  yMin:			752
+	  xMax:			924
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  48
+
+	  Length of Instructions:	114
+	00000: NPUSHB      (79):   118    42   134    42   150    42     3    70    34    86 
+	                            34   102    34     3    86    25   102    25     2   118 
+	                             0   134     0   150     0     3     5    20    44    32 
+	                             0     5     8    16    20    25    32    34    42    44 
+	                            10    12    37     7     0    25    16    25     2    15 
+	                             0    31     0     2    29     2     2    46     0    16 
+	                            25    34     4    14    35   140    42     8    40    10 
+	                           140    29    22   143    14   207    14     2    14 
+	00081: MDAP[rd]   
+	00082: DELTAP1    
+	00083: MDRP[nrp0,nmd,rd,0] 
+	00084: IP         
+	00085: MIRP[srp0,md,rd,1] 
+	00086: MDRP[srp0,nmd,rd,0] 
+	00087: IP         
+	00088: IP         
+	00089: MIRP[nrp0,md,rd,1] 
+	00090: SRP1       
+	00091: SLOOP      
+	00092: IP         
+	00093: MDRP[nrp0,nmd,rd,0] 
+	00094: IP         
+	00095: MDAP[rd]   
+	00096: MDAP[rd]   
+	00097: DELTAP1    
+	00098: DELTAP1    
+	00099: SVTCA[y-axis] 
+	00100: MIAP[rd+ci] 
+	00101: MDRP[nrp0,md,rd,1] 
+	00102: SLOOP      
+	00103: IP         
+	00104: MDAP[rd]   
+	00105: MDAP[rd]   
+	00106: MDAP[rd]   
+	00107: MDAP[rd]   
+	00108: IUP[y]     
+	00109: IUP[x]     
+	00110: DELTAP1    
+	00111: DELTAP1    
+	00112: DELTAP1    
+	00113: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual               Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:        XDual         Y-Short X-Short On
+	 35:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:                      Y-Short X-Short On
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual         Y-Short         Off
+	 48:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   696,  1122)  ->  Abs (   696,  1122)
+	  1: Rel (   158,  -129)  ->  Abs (   854,   993)
+	  2: Rel (     0,   -57)  ->  Abs (   854,   936)
+	  3: Rel (     0,   -25)  ->  Abs (   854,   911)
+	  4: Rel (   -36,   -34)  ->  Abs (   818,   877)
+	  5: Rel (   -25,     0)  ->  Abs (   793,   877)
+	  6: Rel (   -41,     0)  ->  Abs (   752,   877)
+	  7: Rel (  -106,   103)  ->  Abs (   646,   980)
+	  8: Rel (   -52,    44)  ->  Abs (   594,  1024)
+	  9: Rel (   -26,  -105)  ->  Abs (   568,   919)
+	 10: Rel (   -15,   -92)  ->  Abs (   553,   827)
+	 11: Rel (   -15,   -75)  ->  Abs (   538,   752)
+	 12: Rel (   -59,     0)  ->  Abs (   479,   752)
+	 13: Rel (   -69,     0)  ->  Abs (   410,   752)
+	 14: Rel (     0,    90)  ->  Abs (   410,   842)
+	 15: Rel (     0,    55)  ->  Abs (   410,   897)
+	 16: Rel (    30,   121)  ->  Abs (   440,  1018)
+	 17: Rel (   -26,   -15)  ->  Abs (   414,  1003)
+	 18: Rel (   -27,   -20)  ->  Abs (   387,   983)
+	 19: Rel (   -89,   -68)  ->  Abs (   298,   915)
+	 20: Rel (   -46,     0)  ->  Abs (   252,   915)
+	 21: Rel (   -70,     0)  ->  Abs (   182,   915)
+	 22: Rel (     0,    68)  ->  Abs (   182,   983)
+	 23: Rel (     0,    21)  ->  Abs (   182,  1004)
+	 24: Rel (    54,    47)  ->  Abs (   236,  1051)
+	 25: Rel (   190,   100)  ->  Abs (   426,  1151)
+	 26: Rel (   -63,    40)  ->  Abs (   363,  1191)
+	 27: Rel (   -35,    17)  ->  Abs (   328,  1208)
+	 28: Rel (   -60,    32)  ->  Abs (   268,  1240)
+	 29: Rel (     0,    42)  ->  Abs (   268,  1282)
+	 30: Rel (     0,    27)  ->  Abs (   268,  1309)
+	 31: Rel (    43,    34)  ->  Abs (   311,  1343)
+	 32: Rel (    29,     0)  ->  Abs (   340,  1343)
+	 33: Rel (    57,     0)  ->  Abs (   397,  1343)
+	 34: Rel (   121,   -86)  ->  Abs (   518,  1257)
+	 35: Rel (    37,   104)  ->  Abs (   555,  1361)
+	 36: Rel (    52,   103)  ->  Abs (   607,  1464)
+	 37: Rel (    28,     0)  ->  Abs (   635,  1464)
+	 38: Rel (    37,     0)  ->  Abs (   672,  1464)
+	 39: Rel (    24,   -27)  ->  Abs (   696,  1437)
+	 40: Rel (     0,   -32)  ->  Abs (   696,  1405)
+	 41: Rel (     0,   -42)  ->  Abs (   696,  1363)
+	 42: Rel (   -37,  -116)  ->  Abs (   659,  1247)
+	 43: Rel (   168,    53)  ->  Abs (   827,  1300)
+	 44: Rel (    35,     0)  ->  Abs (   862,  1300)
+	 45: Rel (    62,     0)  ->  Abs (   924,  1300)
+	 46: Rel (     0,   -55)  ->  Abs (   924,  1245)
+	 47: Rel (     0,   -51)  ->  Abs (   924,  1194)
+	 48: Rel (  -174,   -54)  ->  Abs (   750,  1140)
+
+	Glyph  14: off = 0x000009EC, len = 194
+	  numberOfContours:	1
+	  xMin:			150
+	  yMin:			227
+	  xMax:			1155
+	  yMax:			1231
+
+	EndPoints
+	---------
+	  0:  34
+
+	  Length of Instructions:	89
+	00000: NPUSHB      (53):    19    10     8    20     8    27     0     2    20     1 
+	                            82     2    24     2   141     8    20    20     8     8 
+	                            20    31    31   143    31     2    31    20    24     2 
+	                           137    16    95     8   111     8     2     8    18   153 
+	                            10     0    14     5    33   153    63    22   143    22 
+	                             2    22    29 
+	00055: SVTCA[y-axis] 
+	00056: MDAP[rd]   
+	00057: MDRP[nrp0,nmd,rd,0] 
+	00058: DELTAP1    
+	00059: MIRP[srp0,md,rd,1] 
+	00060: MDRP[nrp0,nmd,rd,0] 
+	00061: MDRP[srp0,nmd,rd,0] 
+	00062: IP         
+	00063: IP         
+	00064: MIRP[nrp0,md,rd,1] 
+	00065: IUP[x]     
+	00066: SVTCA[x-axis] 
+	00067: MDAP[rd]   
+	00068: DELTAP1    
+	00069: MDRP[nrp0,nmd,rd,0] 
+	00070: MIRP[srp0,md,rd,1] 
+	00071: MDRP[srp0,nmd,rd,0] 
+	00072: SHP[rp2,zp1] 
+	00073: MDRP[nrp0,nmd,rd,0] 
+	00074: DELTAP1    
+	00075: SDPVTL[1]  
+	00076: SRP0       
+	00077: CALL       
+	00078: SDPVTL[1]  
+	00079: CALL       
+	00080: MDRP[nrp0,nmd,rd,0] 
+	00081: SRP0       
+	00082: MDRP[nrp0,nmd,nrd,0] 
+	00083: MDRP[nrp0,nmd,nrd,0] 
+	00084: SRP0       
+	00085: SDPVTL[1]  
+	00086: MDRP[nrp0,nmd,nrd,0] 
+	00087: MDRP[nrp0,nmd,nrd,0] 
+	00088: IUP[y]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                              X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual               Y-Short         On
+	 20:        XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short Off
+	 27:                              X-Short On
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   729,   647)  ->  Abs (   729,   647)
+	  1: Rel (   -57,  -269)  ->  Abs (   672,   378)
+	  2: Rel (     0,   -87)  ->  Abs (   672,   291)
+	  3: Rel (     0,   -28)  ->  Abs (   672,   263)
+	  4: Rel (   -71,   -36)  ->  Abs (   601,   227)
+	  5: Rel (   -36,     0)  ->  Abs (   565,   227)
+	  6: Rel (   -40,     0)  ->  Abs (   525,   227)
+	  7: Rel (   -50,    40)  ->  Abs (   475,   267)
+	  8: Rel (     0,    30)  ->  Abs (   475,   297)
+	  9: Rel (     0,   107)  ->  Abs (   475,   404)
+	 10: Rel (    57,   237)  ->  Abs (   532,   641)
+	 11: Rel (  -141,    -3)  ->  Abs (   391,   638)
+	 12: Rel (  -103,   -11)  ->  Abs (   288,   627)
+	 13: Rel (   -60,    -6)  ->  Abs (   228,   621)
+	 14: Rel (   -21,     0)  ->  Abs (   207,   621)
+	 15: Rel (   -57,     0)  ->  Abs (   150,   621)
+	 16: Rel (     0,   100)  ->  Abs (   150,   721)
+	 17: Rel (     0,    39)  ->  Abs (   150,   760)
+	 18: Rel (   111,    46)  ->  Abs (   261,   806)
+	 19: Rel (   317,     5)  ->  Abs (   578,   811)
+	 20: Rel (   100,   339)  ->  Abs (   678,  1150)
+	 21: Rel (    54,    81)  ->  Abs (   732,  1231)
+	 22: Rel (    52,     0)  ->  Abs (   784,  1231)
+	 23: Rel (    82,     0)  ->  Abs (   866,  1231)
+	 24: Rel (     0,   -39)  ->  Abs (   866,  1192)
+	 25: Rel (     0,   -21)  ->  Abs (   866,  1171)
+	 26: Rel (   -30,   -86)  ->  Abs (   836,  1085)
+	 27: Rel (   -70,  -268)  ->  Abs (   766,   817)
+	 28: Rel (   189,     6)  ->  Abs (   955,   823)
+	 29: Rel (   122,     0)  ->  Abs (  1077,   823)
+	 30: Rel (    78,     0)  ->  Abs (  1155,   823)
+	 31: Rel (     0,   -78)  ->  Abs (  1155,   745)
+	 32: Rel (     0,   -92)  ->  Abs (  1155,   653)
+	 33: Rel (  -115,     0)  ->  Abs (  1040,   653)
+	 34: Rel (  -130,     0)  ->  Abs (   910,   653)
+
+	Glyph  15: off = 0x00000AAE, len = 92
+	  numberOfContours:	1
+	  xMin:			137
+	  yMin:			-276
+	  xMax:			475
+	  yMax:			291
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	25
+	00000: NPUSHB      (13):    12   178     6   176     0     4     0   177     9   175 
+	                            15   180     3 
+	00015: MDAP[rd]   
+	00016: MIRP[nrp0,nmd,rd,0] 
+	00017: MIRP[srp0,md,rd,1] 
+	00018: MIRP[nrp0,md,rd,1] 
+	00019: SVTCA[y-axis] 
+	00020: MIAP[rd+ci] 
+	00021: MIRP[srp0,md,rd,1] 
+	00022: MIRP[nrp0,nmd,rd,0] 
+	00023: IUP[y]     
+	00024: IUP[x]     
+
+	Flags
+	-----
+	  0:                      Y-Short         On
+	  1:  YDual       Rep-  1 Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                              X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   291,    -8)  ->  Abs (   291,    -8)
+	  1: Rel (   -51,     6)  ->  Abs (   240,    -2)
+	  2: Rel (   -64,    70)  ->  Abs (   176,    68)
+	  3: Rel (     0,    49)  ->  Abs (   176,   117)
+	  4: Rel (     0,    69)  ->  Abs (   176,   186)
+	  5: Rel (   111,   105)  ->  Abs (   287,   291)
+	  6: Rel (    67,     0)  ->  Abs (   354,   291)
+	  7: Rel (    57,     0)  ->  Abs (   411,   291)
+	  8: Rel (    64,   -80)  ->  Abs (   475,   211)
+	  9: Rel (     0,   -72)  ->  Abs (   475,   139)
+	 10: Rel (     0,  -114)  ->  Abs (   475,    25)
+	 11: Rel (  -203,  -301)  ->  Abs (   272,  -276)
+	 12: Rel (   -73,     0)  ->  Abs (   199,  -276)
+	 13: Rel (   -24,     0)  ->  Abs (   175,  -276)
+	 14: Rel (   -38,    35)  ->  Abs (   137,  -241)
+	 15: Rel (     0,    22)  ->  Abs (   137,  -219)
+	 16: Rel (     0,    28)  ->  Abs (   137,  -191)
+	 17: Rel (    26,    38)  ->  Abs (   163,  -153)
+	 18: Rel (    42,    30)  ->  Abs (   205,  -123)
+	 19: Rel (    61,    44)  ->  Abs (   266,   -79)
+
+	Glyph  16: off = 0x00000B0A, len = 74
+	  numberOfContours:	1
+	  xMin:			184
+	  yMin:			612
+	  xMax:			887
+	  yMax:			834
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	18
+	00000: PUSHB[8]              9   128     0     1     5     0     2    11 
+	00009: MDAP[rd]   
+	00010: MDRP[nrp0,md,rd,1] 
+	00011: SVTCA[y-axis] 
+	00012: MDAP[rd]   
+	00013: MDRP[srp0,md,rd,1] 
+	00014: DELTAP1    
+	00015: MDRP[nrp0,nmd,rd,0] 
+	00016: IUP[y]     
+	00017: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 15:  YDual               Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   819,   834)  ->  Abs (   819,   834)
+	  1: Rel (    68,     0)  ->  Abs (   887,   834)
+	  2: Rel (     0,   -74)  ->  Abs (   887,   760)
+	  3: Rel (     0,   -54)  ->  Abs (   887,   706)
+	  4: Rel (   -47,   -63)  ->  Abs (   840,   643)
+	  5: Rel (   -41,     0)  ->  Abs (   799,   643)
+	  6: Rel (  -230,     0)  ->  Abs (   569,   643)
+	  7: Rel (  -184,   -20)  ->  Abs (   385,   623)
+	  8: Rel (   -85,   -11)  ->  Abs (   300,   612)
+	  9: Rel (   -50,     0)  ->  Abs (   250,   612)
+	 10: Rel (   -66,     0)  ->  Abs (   184,   612)
+	 11: Rel (     0,    97)  ->  Abs (   184,   709)
+	 12: Rel (     0,    32)  ->  Abs (   184,   741)
+	 13: Rel (    52,    53)  ->  Abs (   236,   794)
+	 14: Rel (    77,    17)  ->  Abs (   313,   811)
+	 15: Rel (   375,    23)  ->  Abs (   688,   834)
+
+	Glyph  17: off = 0x00000B54, len = 60
+	  numberOfContours:	1
+	  xMin:			332
+	  yMin:			543
+	  xMax:			631
+	  yMax:			842
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	14
+	00000: PUSHB[6]              9   176     3     0   175     6 
+	00007: MDAP[rd]   
+	00008: MIRP[nrp0,md,rd,1] 
+	00009: SVTCA[y-axis] 
+	00010: MDAP[rd]   
+	00011: MIRP[nrp0,md,rd,1] 
+	00012: IUP[y]     
+	00013: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   631,   713)  ->  Abs (   631,   713)
+	  1: Rel (     0,   -69)  ->  Abs (   631,   644)
+	  2: Rel (  -106,  -101)  ->  Abs (   525,   543)
+	  3: Rel (   -68,     0)  ->  Abs (   457,   543)
+	  4: Rel (   -52,     0)  ->  Abs (   405,   543)
+	  5: Rel (   -73,    73)  ->  Abs (   332,   616)
+	  6: Rel (     0,    52)  ->  Abs (   332,   668)
+	  7: Rel (     0,    69)  ->  Abs (   332,   737)
+	  8: Rel (   111,   105)  ->  Abs (   443,   842)
+	  9: Rel (    67,     0)  ->  Abs (   510,   842)
+	 10: Rel (    52,     0)  ->  Abs (   562,   842)
+	 11: Rel (    69,   -74)  ->  Abs (   631,   768)
+
+	Glyph  18: off = 0x00000B90, len = 154
+	  numberOfContours:	1
+	  xMin:			20
+	  yMin:			0
+	  xMax:			1276
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  23
+
+	  Length of Instructions:	66
+	00000: NPUSHB      (19):   121    19   137    19     2    91    18     1    88    14 
+	                           120    14     2   117     5   133     5     2     4 
+	00021: PUSHW[1]            -72 
+	00024: NPUSHB      (24):    15    17    72    67     4    83     4     2    37     4 
+	                            53     4     2    53     3    69     3     2    21     7 
+	                             8    24     0    11 
+	00050: MDAP[rd]   
+	00051: MDRP[nrp0,nmd,rd,0] 
+	00052: SVTCA[y-axis] 
+	00053: MIAP[rd+ci] 
+	00054: MIAP[rd+ci] 
+	00055: IUP[y]     
+	00056: IUP[x]     
+	00057: SVTCA[x-axis] 
+	00058: DELTAP1    
+	00059: DELTAP1    
+	00060: DELTAP1    
+	00061: CALL       
+	00062: DELTAP1    
+	00063: DELTAP1    
+	00064: DELTAP1    
+	00065: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:              Rep-  1                 Off
+	  5:                      Y-Short X-Short On
+	  6:              Rep-  1 Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:        XDual                 X-Short On
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:                                      Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1276,  1380)  ->  Abs (  1276,  1380)
+	  1: Rel (     0,   -36)  ->  Abs (  1276,  1344)
+	  2: Rel (   -82,   -60)  ->  Abs (  1194,  1284)
+	  3: Rel (  -310,  -278)  ->  Abs (   884,  1006)
+	  4: Rel (  -564,  -750)  ->  Abs (   320,   256)
+	  5: Rel (  -101,  -164)  ->  Abs (   219,    92)
+	  6: Rel (   -30,   -49)  ->  Abs (   189,    43)
+	  7: Rel (   -52,   -43)  ->  Abs (   137,     0)
+	  8: Rel (   -43,     0)  ->  Abs (    94,     0)
+	  9: Rel (   -32,     0)  ->  Abs (    62,     0)
+	 10: Rel (   -42,    46)  ->  Abs (    20,    46)
+	 11: Rel (     0,    32)  ->  Abs (    20,    78)
+	 12: Rel (     0,    35)  ->  Abs (    20,   113)
+	 13: Rel (    18,    33)  ->  Abs (    38,   146)
+	 14: Rel (    40,    75)  ->  Abs (    78,   221)
+	 15: Rel (   201,   277)  ->  Abs (   279,   498)
+	 16: Rel (   146,   200)  ->  Abs (   425,   698)
+	 17: Rel (   120,   143)  ->  Abs (   545,   841)
+	 18: Rel (   187,   222)  ->  Abs (   732,  1063)
+	 19: Rel (   377,   381)  ->  Abs (  1109,  1444)
+	 20: Rel (    53,    20)  ->  Abs (  1162,  1464)
+	 21: Rel (    38,     0)  ->  Abs (  1200,  1464)
+	 22: Rel (    26,     0)  ->  Abs (  1226,  1464)
+	 23: Rel (    50,   -46)  ->  Abs (  1276,  1418)
+
+	Glyph  19: off = 0x00000C2A, len = 204
+	  numberOfContours:	2
+	  xMin:			178
+	  yMin:			-8
+	  xMax:			1442
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  13
+	  1:  27
+
+	  Length of Instructions:	101
+	00000: NPUSHB      (76):   107    26     1    89    25     1     9    19     1   100 
+	                            19     1    66    15    82    15     2   101    13   117 
+	                            13   133    13     3    69     9   117     9   133     9 
+	                             3    35     8    67     8    83     8     3    25     3 
+	                            73     3   121     3   137     3     4    12     2    44 
+	                             2    76     2   124     2   140     2     5    24   153 
+	                            11     7    17   153     4     7    21   137     0    29 
+	                            14   137   143     7     1     7 
+	00078: MDAP[rd]   
+	00079: DELTAP1    
+	00080: MIRP[nrp0,md,rd,1] 
+	00081: SRP0       
+	00082: MDRP[srp0,nmd,rd,0] 
+	00083: MIRP[nrp0,md,rd,1] 
+	00084: SVTCA[y-axis] 
+	00085: MIAP[rd+ci] 
+	00086: MIRP[nrp0,md,rd,1] 
+	00087: MIAP[rd+ci] 
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: IUP[y]     
+	00090: IUP[x]     
+	00091: DELTAP1    
+	00092: DELTAP1    
+	00093: DELTAP1    
+	00094: DELTAP1    
+	00095: DELTAP1    
+	00096: DELTAP1    
+	00097: DELTAP1    
+	00098: DELTAP1    
+	00099: DELTAP1    
+	00100: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                              X-Short Off
+	  3:                                      Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                              X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:              Rep-  1                 Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:                                      On
+	 15:        XDual         Y-Short         Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:                                      Off
+	 20:        XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:                      Y-Short         Off
+	 27:                              X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1442,   997)  ->  Abs (  1442,   997)
+	  1: Rel (     0,  -221)  ->  Abs (  1442,   776)
+	  2: Rel (  -253,  -481)  ->  Abs (  1189,   295)
+	  3: Rel (  -392,  -303)  ->  Abs (   797,    -8)
+	  4: Rel (  -187,     0)  ->  Abs (   610,    -8)
+	  5: Rel (  -194,     0)  ->  Abs (   416,    -8)
+	  6: Rel (  -238,   259)  ->  Abs (   178,   251)
+	  7: Rel (     0,   228)  ->  Abs (   178,   479)
+	  8: Rel (     0,   218)  ->  Abs (   178,   697)
+	  9: Rel (   265,   468)  ->  Abs (   443,  1165)
+	 10: Rel (   407,   299)  ->  Abs (   850,  1464)
+	 11: Rel (   180,     0)  ->  Abs (  1030,  1464)
+	 12: Rel (   192,     0)  ->  Abs (  1222,  1464)
+	 13: Rel (   220,  -250)  ->  Abs (  1442,  1214)
+	 14: Rel ( -1069,  -759)  ->  Abs (   373,   455)
+	 15: Rel (     0,  -128)  ->  Abs (   373,   327)
+	 16: Rel (   135,  -163)  ->  Abs (   508,   164)
+	 17: Rel (   106,     0)  ->  Abs (   614,   164)
+	 18: Rel (   141,     0)  ->  Abs (   755,   164)
+	 19: Rel (   297,   263)  ->  Abs (  1052,   427)
+	 20: Rel (   195,   414)  ->  Abs (  1247,   841)
+	 21: Rel (     0,   183)  ->  Abs (  1247,  1024)
+	 22: Rel (     0,   129)  ->  Abs (  1247,  1153)
+	 23: Rel (  -113,   139)  ->  Abs (  1134,  1292)
+	 24: Rel (  -106,     0)  ->  Abs (  1028,  1292)
+	 25: Rel (  -146,     0)  ->  Abs (   882,  1292)
+	 26: Rel (  -309,  -253)  ->  Abs (   573,  1039)
+	 27: Rel (  -200,  -401)  ->  Abs (   373,   638)
+
+	Glyph  20: off = 0x00000CF6, len = 216
+	  numberOfContours:	1
+	  xMin:			227
+	  yMin:			-8
+	  xMax:			887
+	  yMax:			1460
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	128
+	00000: NPUSHB      (77):   105     9     1   137     3     1   105     2     1     0 
+	                             1    82     0    23     9    11     9   142     4     0 
+	                            20     4     0     9     4    25    24    23     0    25 
+	                            24     0     1    82    18    14    18   141    23     0 
+	                            20    23    23     0     7     0    13    23    14    18 
+	                           137    63    23    79    23   143    23   223    23     4 
+	                            23    23    18    13    14     4    21     9     0    47 
+	                             4     1     4    11     7    21     7 
+	00079: SVTCA[y-axis] 
+	00080: MIAP[rd+ci] 
+	00081: MIAP[rd+ci] 
+	00082: MDRP[nrp0,md,rd,1] 
+	00083: DELTAP1    
+	00084: IP         
+	00085: IP         
+	00086: SRP2       
+	00087: SLOOP      
+	00088: IP         
+	00089: SVTCA[x-axis] 
+	00090: MDAP[rd]   
+	00091: DELTAP1    
+	00092: MIRP[srp0,md,rd,1] 
+	00093: MDRP[srp0,nmd,rd,2] 
+	00094: SRP1       
+	00095: SRP2       
+	00096: IP         
+	00097: MDRP[nrp0,md,rd,1] 
+	00098: SDPVTL[1]  
+	00099: SRP0       
+	00100: CALL       
+	00101: SDPVTL[1]  
+	00102: CALL       
+	00103: MDRP[nrp0,nmd,rd,0] 
+	00104: SVTCA[y-axis] 
+	00105: IP         
+	00106: IP         
+	00107: SDPVTL[1]  
+	00108: SFVTCA[x-axis] 
+	00109: MDRP[nrp0,nmd,nrd,0] 
+	00110: MDRP[nrp0,nmd,nrd,0] 
+	00111: SRP0       
+	00112: SVTCA[x-axis] 
+	00113: MDRP[nrp0,nmd,nrd,1] 
+	00114: SDPVTL[1]  
+	00115: SFVTCA[y-axis] 
+	00116: RTG        
+	00117: CALL       
+	00118: SDPVTL[1]  
+	00119: SFVTL[=p1,p2] 
+	00120: CALL       
+	00121: MDRP[nrp0,nmd,rd,0] 
+	00122: IUP[y]     
+	00123: IUP[x]     
+	00124: SVTCA[y-axis] 
+	00125: DELTAP1    
+	00126: DELTAP1    
+	00127: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual               Y-Short         Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short         On
+	 14:        XDual         Y-Short         Off
+	 15:                      Y-Short X-Short On
+	 16:                      Y-Short X-Short Off
+	 17:                                      Off
+	 18:                      Y-Short X-Short On
+	 19:              Rep-  1 Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:                                      Off
+
+	Coordinates
+	-----------
+	  0: Rel (   655,  1264)  ->  Abs (   655,  1264)
+	  1: Rel (   -28,    -9)  ->  Abs (   627,  1255)
+	  2: Rel (   -81,   -31)  ->  Abs (   546,  1224)
+	  3: Rel (  -177,   -67)  ->  Abs (   369,  1157)
+	  4: Rel (   -45,     0)  ->  Abs (   324,  1157)
+	  5: Rel (   -31,     0)  ->  Abs (   293,  1157)
+	  6: Rel (   -33,    37)  ->  Abs (   260,  1194)
+	  7: Rel (     0,    25)  ->  Abs (   260,  1219)
+	  8: Rel (     0,    70)  ->  Abs (   260,  1289)
+	  9: Rel (   126,    72)  ->  Abs (   386,  1361)
+	 10: Rel (   398,    99)  ->  Abs (   784,  1460)
+	 11: Rel (    41,     0)  ->  Abs (   825,  1460)
+	 12: Rel (    62,     0)  ->  Abs (   887,  1460)
+	 13: Rel (     0,   -57)  ->  Abs (   887,  1403)
+	 14: Rel (     0,   -41)  ->  Abs (   887,  1362)
+	 15: Rel (   -43,   -74)  ->  Abs (   844,  1288)
+	 16: Rel (  -102,  -174)  ->  Abs (   742,  1114)
+	 17: Rel (  -290,  -799)  ->  Abs (   452,   315)
+	 18: Rel (   -34,  -245)  ->  Abs (   418,    70)
+	 19: Rel (    -5,   -38)  ->  Abs (   413,    32)
+	 20: Rel (   -59,   -40)  ->  Abs (   354,    -8)
+	 21: Rel (   -39,     0)  ->  Abs (   315,    -8)
+	 22: Rel (   -88,     0)  ->  Abs (   227,    -8)
+	 23: Rel (     0,    80)  ->  Abs (   227,    72)
+	 24: Rel (     0,   131)  ->  Abs (   227,   203)
+	 25: Rel (   290,   820)  ->  Abs (   517,  1023)
+
+	Glyph  21: off = 0x00000DCE, len = 332
+	  numberOfContours:	1
+	  xMin:			61
+	  yMin:			-33
+	  xMax:			1321
+	  yMax:			1460
+
+	EndPoints
+	---------
+	  0:  50
+
+	  Length of Instructions:	179
+	00000: PUSHW[2]             49   -16 
+	00005: PUSHB[4]             13    16    72    48 
+	00010: PUSHW[1]            -16 
+	00013: NPUSHB      (37):    13    16    72   105    41   121    41   137    41     3 
+	                           101    34   117    34   133    34     3    53     0     1 
+	                            84    41     1    73    35     1    75    30    91    30 
+	                             2    14    16    13    17    72     5 
+	00052: PUSHW[1]            -40 
+	00055: NPUSHB      (69):    12    17    72    48    25    27    25   142    50    48 
+	                            20    50    50    48    25    50    41    50    57    50 
+	                             3    38    27     1    25    27    29    46    48    50 
+	                             6     0    37    32   153    43     7    11     0    20 
+	                             2   153    16    20     8    40    48    50    46     0 
+	                            27    25    29   128     0     1     0     8    40     3 
+	                            23    29   137    46    52   127    23     1    23 
+	00126: MDAP[rd]   
+	00127: DELTAP1    
+	00128: SRP0       
+	00129: MDRP[srp0,nmd,rd,2] 
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: SRP2       
+	00132: SLOOP      
+	00133: IP         
+	00134: DELTAP1    
+	00135: SRP1       
+	00136: IP         
+	00137: IP         
+	00138: SRP1       
+	00139: SRP2       
+	00140: IP         
+	00141: IP         
+	00142: MDAP[rd]   
+	00143: MDAP[rd]   
+	00144: SVTCA[y-axis] 
+	00145: MDAP[rd]   
+	00146: MDRP[srp0,nmd,rd,0] 
+	00147: MIRP[nrp0,md,rd,1] 
+	00148: SRP1       
+	00149: IP         
+	00150: MDRP[nrp0,nmd,rd,0] 
+	00151: MIAP[rd+ci] 
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: MDRP[nrp0,nmd,rd,0] 
+	00154: SRP2       
+	00155: SLOOP      
+	00156: IP         
+	00157: DELTAP1    
+	00158: DELTAP1    
+	00159: SDPVTL[1]  
+	00160: SRP0       
+	00161: CALL       
+	00162: SDPVTL[1]  
+	00163: RDTG       
+	00164: MDRP[nrp0,nmd,rd,0] 
+	00165: IUP[y]     
+	00166: IUP[x]     
+	00167: SVTCA[y-axis] 
+	00168: CALL       
+	00169: CALL       
+	00170: DELTAP1    
+	00171: DELTAP1    
+	00172: DELTAP1    
+	00173: SVTCA[x-axis] 
+	00174: DELTAP1    
+	00175: DELTAP1    
+	00176: DELTAP1    
+	00177: CALL       
+	00178: CALL       
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:                      Y-Short         Off
+	  5:        XDual Rep-  2 Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short On
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual               Y-Short         Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:                                      Off
+	 26:  YDual               Y-Short         On
+	 27:  YDual               Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:                      Y-Short X-Short Off
+	 35:                      Y-Short X-Short On
+	 36:                      Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:  YDual               Y-Short X-Short Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual               Y-Short         Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:        XDual         Y-Short X-Short Off
+	 46:        XDual         Y-Short         On
+	 47:        XDual         Y-Short         Off
+	 48:                                      Off
+	 49:                      Y-Short         On
+	 50:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   399,   223)  ->  Abs (   399,   223)
+	  1: Rel (    62,     4)  ->  Abs (   461,   227)
+	  2: Rel (    33,     0)  ->  Abs (   494,   227)
+	  3: Rel (    84,     0)  ->  Abs (   578,   227)
+	  4: Rel (   393,   -35)  ->  Abs (   971,   192)
+	  5: Rel (   206,   -33)  ->  Abs (  1177,   159)
+	  6: Rel (    50,   -31)  ->  Abs (  1227,   128)
+	  7: Rel (    30,   -53)  ->  Abs (  1257,    75)
+	  8: Rel (     0,   -30)  ->  Abs (  1257,    45)
+	  9: Rel (     0,   -25)  ->  Abs (  1257,    20)
+	 10: Rel (   -75,   -53)  ->  Abs (  1182,   -33)
+	 11: Rel (   -33,     0)  ->  Abs (  1149,   -33)
+	 12: Rel (   -39,     0)  ->  Abs (  1110,   -33)
+	 13: Rel (   -80,    19)  ->  Abs (  1030,   -14)
+	 14: Rel (  -135,    33)  ->  Abs (   895,    19)
+	 15: Rel (  -377,    34)  ->  Abs (   518,    53)
+	 16: Rel (  -162,     0)  ->  Abs (   356,    53)
+	 17: Rel (   -72,     0)  ->  Abs (   284,    53)
+	 18: Rel (   -77,   -22)  ->  Abs (   207,    31)
+	 19: Rel (   -43,   -15)  ->  Abs (   164,    16)
+	 20: Rel (   -41,     0)  ->  Abs (   123,    16)
+	 21: Rel (   -25,     0)  ->  Abs (    98,    16)
+	 22: Rel (   -37,    30)  ->  Abs (    61,    46)
+	 23: Rel (     0,    26)  ->  Abs (    61,    72)
+	 24: Rel (     0,    92)  ->  Abs (    61,   164)
+	 25: Rel (   285,   263)  ->  Abs (   346,   427)
+	 26: Rel (   259,   133)  ->  Abs (   605,   560)
+	 27: Rel (   317,   163)  ->  Abs (   922,   723)
+	 28: Rel (   204,   220)  ->  Abs (  1126,   943)
+	 29: Rel (     0,   106)  ->  Abs (  1126,  1049)
+	 30: Rel (     0,    97)  ->  Abs (  1126,  1146)
+	 31: Rel (  -151,   142)  ->  Abs (   975,  1288)
+	 32: Rel (  -113,     0)  ->  Abs (   862,  1288)
+	 33: Rel (  -104,     0)  ->  Abs (   758,  1288)
+	 34: Rel (  -176,   -70)  ->  Abs (   582,  1218)
+	 35: Rel (   -83,   -93)  ->  Abs (   499,  1125)
+	 36: Rel (   -34,   -38)  ->  Abs (   465,  1087)
+	 37: Rel (   -29,     0)  ->  Abs (   436,  1087)
+	 38: Rel (   -36,     0)  ->  Abs (   400,  1087)
+	 39: Rel (   -58,    51)  ->  Abs (   342,  1138)
+	 40: Rel (     0,    33)  ->  Abs (   342,  1171)
+	 41: Rel (     0,   102)  ->  Abs (   342,  1273)
+	 42: Rel (   323,   187)  ->  Abs (   665,  1460)
+	 43: Rel (   218,     0)  ->  Abs (   883,  1460)
+	 44: Rel (   187,     0)  ->  Abs (  1070,  1460)
+	 45: Rel (   251,  -226)  ->  Abs (  1321,  1234)
+	 46: Rel (     0,  -179)  ->  Abs (  1321,  1055)
+	 47: Rel (     0,  -178)  ->  Abs (  1321,   877)
+	 48: Rel (  -273,  -299)  ->  Abs (  1048,   578)
+	 49: Rel (  -374,  -179)  ->  Abs (   674,   399)
+	 50: Rel (  -160,   -77)  ->  Abs (   514,   322)
+
+	Glyph  22: off = 0x00000F1A, len = 296
+	  numberOfContours:	1
+	  xMin:			94
+	  yMin:			-8
+	  xMax:			1350
+	  yMax:			1458
+
+	EndPoints
+	---------
+	  0:  54
+
+	  Length of Instructions:	139
+	00000: NPUSHB      (93):    26    54    42    54    58    54     3    86    51   102 
+	                            51     2    70    47    86    47   102    47     3    41 
+	                            48    14    17    72    73    37     1    85    14   101 
+	                            14     2     8    32    13    17    72    15     4    31 
+	                             4     2    11     3     0     1    16     1     2    16 
+	                             5    32     0     6    23   153    29    64    49     6 
+	                            29   153   100    48    43    39   153    49     7    12 
+	                            16   153     6     7    46    26    19   137     3     0 
+	                             3    26    46     4     9    36   137    52    56    32 
+	                             9     1     9 
+	00095: MDAP[rd]   
+	00096: DELTAP1    
+	00097: SRP0       
+	00098: MDRP[srp0,nmd,rd,2] 
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: SRP2       
+	00101: SLOOP      
+	00102: IP         
+	00103: MDAP[rd]   
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: MDAP[rd]   
+	00106: MDAP[rd]   
+	00107: SVTCA[y-axis] 
+	00108: MIAP[rd+ci] 
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: MDRP[nrp0,nmd,rd,0] 
+	00111: MIAP[rd+ci] 
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: MDRP[nrp0,nmd,rd,0] 
+	00114: CALL       
+	00115: SVTCA[y-axis] 
+	00116: SMD        
+	00117: RTG        
+	00118: SRP0       
+	00119: FLIPON     
+	00120: MIRP[nrp0,md,rd,1] 
+	00121: SRP2       
+	00122: IP         
+	00123: IP         
+	00124: IUP[y]     
+	00125: IUP[x]     
+	00126: SDS        
+	00127: SDB        
+	00128: DELTAP1    
+	00129: SDS        
+	00130: SDB        
+	00131: DELTAP1    
+	00132: CALL       
+	00133: DELTAP1    
+	00134: DELTAP1    
+	00135: CALL       
+	00136: DELTAP1    
+	00137: DELTAP1    
+	00138: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual Rep-  1 Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                                      Off
+	  6:  YDual                               On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short         Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short On
+	 15:        XDual         Y-Short X-Short Off
+	 16:  YDual                               On
+	 17:  YDual XDual                 X-Short Off
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual       Rep-  1 Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual Rep-  1 Y-Short X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:                      Y-Short X-Short On
+	 42:                      Y-Short X-Short Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short Off
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short         On
+	 47:  YDual XDual         Y-Short         Off
+	 48:  YDual               Y-Short         Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:                      Y-Short         Off
+	 52:        XDual         Y-Short         On
+	 53:        XDual         Y-Short         Off
+	 54:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1032,   739)  ->  Abs (  1032,   739)
+	  1: Rel (    84,   -35)  ->  Abs (  1116,   704)
+	  2: Rel (   105,  -160)  ->  Abs (  1221,   544)
+	  3: Rel (     0,   -79)  ->  Abs (  1221,   465)
+	  4: Rel (     0,  -210)  ->  Abs (  1221,   255)
+	  5: Rel (  -325,  -263)  ->  Abs (   896,    -8)
+	  6: Rel (  -259,     0)  ->  Abs (   637,    -8)
+	  7: Rel (  -202,     0)  ->  Abs (   435,    -8)
+	  8: Rel (  -341,   202)  ->  Abs (    94,   194)
+	  9: Rel (     0,   111)  ->  Abs (    94,   305)
+	 10: Rel (     0,    39)  ->  Abs (    94,   344)
+	 11: Rel (    54,    62)  ->  Abs (   148,   406)
+	 12: Rel (    36,     0)  ->  Abs (   184,   406)
+	 13: Rel (    67,     0)  ->  Abs (   251,   406)
+	 14: Rel (    21,   -41)  ->  Abs (   272,   365)
+	 15: Rel (   113,  -201)  ->  Abs (   385,   164)
+	 16: Rel (   260,     0)  ->  Abs (   645,   164)
+	 17: Rel (   182,     0)  ->  Abs (   827,   164)
+	 18: Rel (   199,   163)  ->  Abs (  1026,   327)
+	 19: Rel (     0,   124)  ->  Abs (  1026,   451)
+	 20: Rel (     0,    64)  ->  Abs (  1026,   515)
+	 21: Rel (   -79,    92)  ->  Abs (   947,   607)
+	 22: Rel (  -110,    34)  ->  Abs (   837,   641)
+	 23: Rel (  -147,     0)  ->  Abs (   690,   641)
+	 24: Rel (   -39,     0)  ->  Abs (   651,   641)
+	 25: Rel (   -47,    53)  ->  Abs (   604,   694)
+	 26: Rel (     0,    35)  ->  Abs (   604,   729)
+	 27: Rel (     0,    32)  ->  Abs (   604,   761)
+	 28: Rel (    59,    52)  ->  Abs (   663,   813)
+	 29: Rel (    52,     0)  ->  Abs (   715,   813)
+	 30: Rel (    40,     0)  ->  Abs (   755,   813)
+	 31: Rel (    36,    -2)  ->  Abs (   791,   811)
+	 32: Rel (    71,    -6)  ->  Abs (   862,   805)
+	 33: Rel (    16,     0)  ->  Abs (   878,   805)
+	 34: Rel (   177,    73)  ->  Abs (  1055,   878)
+	 35: Rel (   100,   119)  ->  Abs (  1155,   997)
+	 36: Rel (     0,    78)  ->  Abs (  1155,  1075)
+	 37: Rel (     0,    90)  ->  Abs (  1155,  1165)
+	 38: Rel (  -155,   121)  ->  Abs (  1000,  1286)
+	 39: Rel (  -128,     0)  ->  Abs (   872,  1286)
+	 40: Rel (  -220,     0)  ->  Abs (   652,  1286)
+	 41: Rel (  -115,  -153)  ->  Abs (   537,  1133)
+	 42: Rel (   -31,   -43)  ->  Abs (   506,  1090)
+	 43: Rel (   -49,     0)  ->  Abs (   457,  1090)
+	 44: Rel (   -38,     0)  ->  Abs (   419,  1090)
+	 45: Rel (   -50,    46)  ->  Abs (   369,  1136)
+	 46: Rel (     0,    38)  ->  Abs (   369,  1174)
+	 47: Rel (     0,    89)  ->  Abs (   369,  1263)
+	 48: Rel (   322,   195)  ->  Abs (   691,  1458)
+	 49: Rel (   204,     0)  ->  Abs (   895,  1458)
+	 50: Rel (   194,     0)  ->  Abs (  1089,  1458)
+	 51: Rel (   261,  -210)  ->  Abs (  1350,  1248)
+	 52: Rel (     0,  -156)  ->  Abs (  1350,  1092)
+	 53: Rel (     0,  -119)  ->  Abs (  1350,   973)
+	 54: Rel (  -166,  -187)  ->  Abs (  1184,   786)
+
+	Glyph  23: off = 0x00001042, len = 288
+	  numberOfContours:	1
+	  xMin:			174
+	  yMin:			-8
+	  xMax:			1382
+	  yMax:			1460
+
+	EndPoints
+	---------
+	  0:  47
+
+	  Length of Instructions:	139
+	00000: NPUSHB      (80):   105    28     1    34    36     1    82    36   141    26 
+	                            27    20    26    26    27    27    26    25    16    31 
+	                             1    31    31    40    25     0    10    13    44    13 
+	                            38    20    18    40    40     1    82    13    44    13 
+	                           141    18    40    20    18    18    40    40     5    44 
+	                            13   137    47    18   143    18     2    18   143    25 
+	                             1    25    38     0    36     2   153    20    10     8 
+	                            36   153    22    22    15    29    42     7    15    25 
+	00082: SVTCA[y-axis] 
+	00083: MIAP[rd+ci] 
+	00084: MIAP[rd+ci] 
+	00085: MDRP[nrp0,nmd,rd,0] 
+	00086: SRP2       
+	00087: IP         
+	00088: MDAP[rd]   
+	00089: MIRP[nrp0,md,rd,1] 
+	00090: MDRP[srp0,nmd,rd,0] 
+	00091: IP         
+	00092: IP         
+	00093: MIRP[nrp0,md,rd,1] 
+	00094: SRP1       
+	00095: IP         
+	00096: IP         
+	00097: IUP[x]     
+	00098: SVTCA[x-axis] 
+	00099: MDAP[rd]   
+	00100: DELTAP1    
+	00101: MDAP[rd]   
+	00102: DELTAP1    
+	00103: MIRP[srp0,md,rd,1] 
+	00104: MDRP[srp0,nmd,rd,0] 
+	00105: MDRP[nrp0,nmd,rd,0] 
+	00106: SHP[rp1,zp0] 
+	00107: SDPVTL[1]  
+	00108: SRP0       
+	00109: CALL       
+	00110: SDPVTL[1]  
+	00111: CALL       
+	00112: MDRP[nrp0,nmd,rd,0] 
+	00113: SDPVTL[1]  
+	00114: MDRP[nrp0,nmd,nrd,0] 
+	00115: MDRP[nrp0,nmd,nrd,0] 
+	00116: SRP0       
+	00117: SDPVTL[1]  
+	00118: MDRP[nrp0,nmd,nrd,0] 
+	00119: MDRP[nrp0,nmd,nrd,0] 
+	00120: SVTCA[x-axis] 
+	00121: SRP1       
+	00122: SRP2       
+	00123: IP         
+	00124: RTG        
+	00125: MDAP[rd]   
+	00126: DELTAP1    
+	00127: SRP2       
+	00128: IP         
+	00129: IP         
+	00130: SDPVTL[1]  
+	00131: SRP0       
+	00132: CALL       
+	00133: CALL       
+	00134: SRP0       
+	00135: MDRP[nrp0,nmd,rd,0] 
+	00136: IUP[y]     
+	00137: SVTCA[x-axis] 
+	00138: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:                              X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:              Rep-  1 Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:        XDual                 X-Short On
+	 21:                      Y-Short         Off
+	 22:  YDual                       X-Short On
+	 23:  YDual                       X-Short Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:        XDual                 X-Short Off
+	 28:                                      Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short X-Short On
+	 34:                      Y-Short X-Short Off
+	 35:                                      Off
+	 36:                      Y-Short X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:  YDual               Y-Short         On
+	 39:        XDual Rep-  1         X-Short Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:        XDual         Y-Short         On
+	 45:        XDual         Y-Short         Off
+	 46:                      Y-Short X-Short Off
+	 47:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1106,   743)  ->  Abs (  1106,   743)
+	  1: Rel (   166,     5)  ->  Abs (  1272,   748)
+	  2: Rel (    39,     0)  ->  Abs (  1311,   748)
+	  3: Rel (    36,     0)  ->  Abs (  1347,   748)
+	  4: Rel (    35,   -27)  ->  Abs (  1382,   721)
+	  5: Rel (     0,   -41)  ->  Abs (  1382,   680)
+	  6: Rel (     0,   -51)  ->  Abs (  1382,   629)
+	  7: Rel (   -62,   -60)  ->  Abs (  1320,   569)
+	  8: Rel (   -54,     0)  ->  Abs (  1266,   569)
+	  9: Rel (  -141,     0)  ->  Abs (  1125,   569)
+	 10: Rel (   -78,    -2)  ->  Abs (  1047,   567)
+	 11: Rel (   -90,  -266)  ->  Abs (   957,   301)
+	 12: Rel (   -20,  -131)  ->  Abs (   937,   170)
+	 13: Rel (   -17,  -108)  ->  Abs (   920,    62)
+	 14: Rel (   -38,   -70)  ->  Abs (   882,    -8)
+	 15: Rel (   -63,     0)  ->  Abs (   819,    -8)
+	 16: Rel (   -43,     0)  ->  Abs (   776,    -8)
+	 17: Rel (   -47,    57)  ->  Abs (   729,    49)
+	 18: Rel (     0,    47)  ->  Abs (   729,    96)
+	 19: Rel (     0,   101)  ->  Abs (   729,   197)
+	 20: Rel (   131,   366)  ->  Abs (   860,   563)
+	 21: Rel (  -481,   -12)  ->  Abs (   379,   551)
+	 22: Rel (   -90,     0)  ->  Abs (   289,   551)
+	 23: Rel (   -48,     0)  ->  Abs (   241,   551)
+	 24: Rel (   -67,    72)  ->  Abs (   174,   623)
+	 25: Rel (     0,    45)  ->  Abs (   174,   668)
+	 26: Rel (     0,    53)  ->  Abs (   174,   721)
+	 27: Rel (   228,   389)  ->  Abs (   402,  1110)
+	 28: Rel (   296,   320)  ->  Abs (   698,  1430)
+	 29: Rel (    86,     0)  ->  Abs (   784,  1430)
+	 30: Rel (    84,     0)  ->  Abs (   868,  1430)
+	 31: Rel (     0,   -52)  ->  Abs (   868,  1378)
+	 32: Rel (     0,   -35)  ->  Abs (   868,  1343)
+	 33: Rel (   -49,   -34)  ->  Abs (   819,  1309)
+	 34: Rel (  -132,   -91)  ->  Abs (   687,  1218)
+	 35: Rel (  -275,  -419)  ->  Abs (   412,   799)
+	 36: Rel (   -25,   -78)  ->  Abs (   387,   721)
+	 37: Rel (    86,     0)  ->  Abs (   473,   721)
+	 38: Rel (   451,    16)  ->  Abs (   924,   737)
+	 39: Rel (   112,   301)  ->  Abs (  1036,  1038)
+	 40: Rel (   147,   322)  ->  Abs (  1183,  1360)
+	 41: Rel (    74,   100)  ->  Abs (  1257,  1460)
+	 42: Rel (    50,     0)  ->  Abs (  1307,  1460)
+	 43: Rel (    53,     0)  ->  Abs (  1360,  1460)
+	 44: Rel (     0,   -57)  ->  Abs (  1360,  1403)
+	 45: Rel (     0,   -33)  ->  Abs (  1360,  1370)
+	 46: Rel (   -91,  -195)  ->  Abs (  1269,  1175)
+	 47: Rel (   -51,  -133)  ->  Abs (  1218,  1042)
+
+	Glyph  24: off = 0x00001162, len = 280
+	  numberOfContours:	1
+	  xMin:			88
+	  yMin:			-8
+	  xMax:			1430
+	  yMax:			1460
+
+	EndPoints
+	---------
+	  0:  47
+
+	  Length of Instructions:	137
+	00000: NPUSHB      (92):   121    26   137    26     2    75    22    91    22   107 
+	                            22     3   112    16   128    16     2    10    32    13 
+	                            17    72    75     9    91     9   107     9     3    10 
+	                             6    26     6    42     6   122     6   138     6     5 
+	                            27     0    46    46     0     1    82     0   142    32 
+	                            34    20    32    34    34    15    32    31    32    47 
+	                            32     3    32    32    11    41    21   137     5    49 
+	                            11     0     2    28    24   153     2     2    38     8 
+	                            36   153    46    44   153    38     7    14    18   153 
+	                             8    25 
+	00094: SVTCA[y-axis] 
+	00095: MIAP[rd+ci] 
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: MDRP[nrp0,nmd,rd,0] 
+	00098: MIAP[rd+ci] 
+	00099: MIRP[srp0,md,rd,1] 
+	00100: MDRP[srp0,nmd,rd,2] 
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: SRP1       
+	00103: SRP2       
+	00104: IP         
+	00105: MDAP[rd]   
+	00106: MIRP[srp0,md,rd,1] 
+	00107: MDRP[nrp0,nmd,rd,0] 
+	00108: SRP1       
+	00109: IP         
+	00110: IUP[x]     
+	00111: SVTCA[x-axis] 
+	00112: MDAP[rd]   
+	00113: SRP0       
+	00114: MDRP[srp0,nmd,rd,2] 
+	00115: MIRP[nrp0,md,rd,1] 
+	00116: MDRP[nrp0,nmd,rd,0] 
+	00117: SRP2       
+	00118: IP         
+	00119: MDAP[rd]   
+	00120: DELTAP1    
+	00121: SHP[rp1,zp0] 
+	00122: SDPVTL[1]  
+	00123: CALL       
+	00124: CALL       
+	00125: SRP0       
+	00126: MDRP[nrp0,nmd,rd,0] 
+	00127: SDPVTL[1]  
+	00128: MDRP[nrp0,nmd,nrd,0] 
+	00129: IUP[y]     
+	00130: SVTCA[y-axis] 
+	00131: DELTAP1    
+	00132: DELTAP1    
+	00133: CALL       
+	00134: DELTAP1    
+	00135: DELTAP1    
+	00136: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                                      Off
+	  8:  YDual                               On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short         Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short On
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual                               On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:                      Y-Short X-Short On
+	 27:                      Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:        XDual                 X-Short Off
+	 34:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 37:  YDual               Y-Short         Off
+	 38:  YDual XDual                 X-Short On
+	 39:  YDual XDual                 X-Short Off
+	 40:        XDual         Y-Short X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:        XDual         Y-Short         Off
+	 43:                      Y-Short X-Short Off
+	 44:  YDual                       X-Short On
+	 45:  YDual                               Off
+	 46:                      Y-Short         On
+	 47:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   506,   887)  ->  Abs (   506,   887)
+	  1: Rel (   138,    63)  ->  Abs (   644,   950)
+	  2: Rel (   155,     0)  ->  Abs (   799,   950)
+	  3: Rel (   206,     0)  ->  Abs (  1005,   950)
+	  4: Rel (   255,  -248)  ->  Abs (  1260,   702)
+	  5: Rel (     0,  -163)  ->  Abs (  1260,   539)
+	  6: Rel (     0,  -239)  ->  Abs (  1260,   300)
+	  7: Rel (  -363,  -308)  ->  Abs (   897,    -8)
+	  8: Rel (  -309,     0)  ->  Abs (   588,    -8)
+	  9: Rel (  -209,     0)  ->  Abs (   379,    -8)
+	 10: Rel (  -291,   206)  ->  Abs (    88,   198)
+	 11: Rel (     0,   105)  ->  Abs (    88,   303)
+	 12: Rel (     0,    45)  ->  Abs (    88,   348)
+	 13: Rel (    50,    70)  ->  Abs (   138,   418)
+	 14: Rel (    36,     0)  ->  Abs (   174,   418)
+	 15: Rel (    74,     0)  ->  Abs (   248,   418)
+	 16: Rel (    14,   -39)  ->  Abs (   262,   379)
+	 17: Rel (    86,  -213)  ->  Abs (   348,   166)
+	 18: Rel (   281,     0)  ->  Abs (   629,   166)
+	 19: Rel (   192,     0)  ->  Abs (   821,   166)
+	 20: Rel (   244,   223)  ->  Abs (  1065,   389)
+	 21: Rel (     0,   131)  ->  Abs (  1065,   520)
+	 22: Rel (     0,   115)  ->  Abs (  1065,   635)
+	 23: Rel (  -147,   141)  ->  Abs (   918,   776)
+	 24: Rel (  -160,     0)  ->  Abs (   758,   776)
+	 25: Rel (   -81,     0)  ->  Abs (   677,   776)
+	 26: Rel (  -124,   -39)  ->  Abs (   553,   737)
+	 27: Rel (  -101,   -32)  ->  Abs (   452,   705)
+	 28: Rel (   -55,     0)  ->  Abs (   397,   705)
+	 29: Rel (   -33,     0)  ->  Abs (   364,   705)
+	 30: Rel (   -49,    50)  ->  Abs (   315,   755)
+	 31: Rel (     0,    36)  ->  Abs (   315,   791)
+	 32: Rel (     0,    59)  ->  Abs (   315,   850)
+	 33: Rel (    99,   323)  ->  Abs (   414,  1173)
+	 34: Rel (    77,   154)  ->  Abs (   491,  1327)
+	 35: Rel (    75,    80)  ->  Abs (   566,  1407)
+	 36: Rel (    58,    17)  ->  Abs (   624,  1424)
+	 37: Rel (   531,    36)  ->  Abs (  1155,  1460)
+	 38: Rel (   203,     0)  ->  Abs (  1358,  1460)
+	 39: Rel (    36,     0)  ->  Abs (  1394,  1460)
+	 40: Rel (    36,   -27)  ->  Abs (  1430,  1433)
+	 41: Rel (     0,   -42)  ->  Abs (  1430,  1391)
+	 42: Rel (     0,   -51)  ->  Abs (  1430,  1340)
+	 43: Rel (   -64,   -62)  ->  Abs (  1366,  1278)
+	 44: Rel (   -53,     0)  ->  Abs (  1313,  1278)
+	 45: Rel (  -380,     0)  ->  Abs (   933,  1278)
+	 46: Rel (  -294,   -27)  ->  Abs (   639,  1251)
+	 47: Rel (   -79,  -163)  ->  Abs (   560,  1088)
+
+	Glyph  25: off = 0x0000127A, len = 262
+	  numberOfContours:	2
+	  xMin:			168
+	  yMin:			-8
+	  xMax:			1432
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  27
+	  1:  40
+
+	  Length of Instructions:	133
+	00000: NPUSHB      (29):   105    40     1    36    38   100    38     2    70    34 
+	                            86    34     2   107    22   123    22     2   128    17 
+	                             1     6    17    22    17    38    17     3    13 
+	00031: PUSHW[1]            -16 
+	00034: NPUSHB      (61):     9    17    72   122     6   138     6     2     6     4 
+	                            22     4   118     4   134     4     4    28   153    64 
+	                             0     5    31    11     4     2     2     8    20   128 
+	                            25   153    15     7    36   153     8    25     0    33 
+	                            18    39   137   143     5   159     5     2    16     5 
+	                             1     5    42    33   137   143    11   159    11     2 
+	                            11 
+	00097: MDAP[rd]   
+	00098: DELTAP1    
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: SRP0       
+	00101: MDRP[srp0,nmd,rd,2] 
+	00102: DELTAP1    
+	00103: DELTAP1    
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: MDRP[nrp0,nmd,rd,0] 
+	00106: SRP1       
+	00107: IP         
+	00108: SVTCA[y-axis] 
+	00109: MIAP[rd+ci] 
+	00110: MIRP[nrp0,md,rd,1] 
+	00111: MIAP[rd+ci] 
+	00112: MIRP[nrp0,md,rd,1] 
+	00113: SMD        
+	00114: MDRP[nrp0,md,rd,1] 
+	00115: SRP2       
+	00116: IP         
+	00117: MDAP[rd]   
+	00118: SLOOP      
+	00119: IP         
+	00120: SMD        
+	00121: MIRP[nrp0,md,rd,1] 
+	00122: IUP[y]     
+	00123: IUP[x]     
+	00124: DELTAP1    
+	00125: DELTAP1    
+	00126: CALL       
+	00127: DELTAP1    
+	00128: DELTAP1    
+	00129: DELTAP1    
+	00130: DELTAP1    
+	00131: DELTAP1    
+	00132: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                                      Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:                                      Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:              Rep-  1                 Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:  YDual               Y-Short X-Short On
+	 23:  YDual       Rep-  1 Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:                                      Off
+	 28:        XDual                 X-Short On
+	 29:  YDual                       X-Short Off
+	 30:              Rep-  2 Y-Short X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:  YDual XDual                 X-Short On
+	 37:  YDual XDual                 X-Short Off
+	 38:  YDual               Y-Short         Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   430,   770)  ->  Abs (   430,   770)
+	  1: Rel (   222,   137)  ->  Abs (   652,   907)
+	  2: Rel (   169,     0)  ->  Abs (   821,   907)
+	  3: Rel (   207,     0)  ->  Abs (  1028,   907)
+	  4: Rel (   248,  -220)  ->  Abs (  1276,   687)
+	  5: Rel (     0,  -189)  ->  Abs (  1276,   498)
+	  6: Rel (     0,  -199)  ->  Abs (  1276,   299)
+	  7: Rel (  -388,  -307)  ->  Abs (   888,    -8)
+	  8: Rel (  -222,     0)  ->  Abs (   666,    -8)
+	  9: Rel (  -225,     0)  ->  Abs (   441,    -8)
+	 10: Rel (  -273,   265)  ->  Abs (   168,   257)
+	 11: Rel (     0,   204)  ->  Abs (   168,   461)
+	 12: Rel (     0,   211)  ->  Abs (   168,   672)
+	 13: Rel (   256,   490)  ->  Abs (   424,  1162)
+	 14: Rel (   413,   302)  ->  Abs (   837,  1464)
+	 15: Rel (   226,     0)  ->  Abs (  1063,  1464)
+	 16: Rel (   124,     0)  ->  Abs (  1187,  1464)
+	 17: Rel (   245,  -133)  ->  Abs (  1432,  1331)
+	 18: Rel (     0,   -76)  ->  Abs (  1432,  1255)
+	 19: Rel (     0,  -100)  ->  Abs (  1432,  1155)
+	 20: Rel (   -89,     0)  ->  Abs (  1343,  1155)
+	 21: Rel (   -58,     0)  ->  Abs (  1285,  1155)
+	 22: Rel (   -66,    70)  ->  Abs (  1219,  1225)
+	 23: Rel (   -27,    28)  ->  Abs (  1192,  1253)
+	 24: Rel (  -114,    39)  ->  Abs (  1078,  1292)
+	 25: Rel (   -54,     0)  ->  Abs (  1024,  1292)
+	 26: Rel (  -168,     0)  ->  Abs (   856,  1292)
+	 27: Rel (  -304,  -266)  ->  Abs (   552,  1026)
+	 28: Rel (   249,  -289)  ->  Abs (   801,   737)
+	 29: Rel (   -86,     0)  ->  Abs (   715,   737)
+	 30: Rel (  -168,   -54)  ->  Abs (   547,   683)
+	 31: Rel (  -167,  -109)  ->  Abs (   380,   574)
+	 32: Rel (   -18,   -70)  ->  Abs (   362,   504)
+	 33: Rel (     0,   -43)  ->  Abs (   362,   461)
+	 34: Rel (     0,  -138)  ->  Abs (   362,   323)
+	 35: Rel (   162,  -159)  ->  Abs (   524,   164)
+	 36: Rel (   142,     0)  ->  Abs (   666,   164)
+	 37: Rel (   154,     0)  ->  Abs (   820,   164)
+	 38: Rel (   261,   204)  ->  Abs (  1081,   368)
+	 39: Rel (     0,   130)  ->  Abs (  1081,   498)
+	 40: Rel (     0,   239)  ->  Abs (  1081,   737)
+
+	Glyph  26: off = 0x00001380, len = 152
+	  numberOfContours:	1
+	  xMin:			287
+	  yMin:			-10
+	  xMax:			1409
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  25
+
+	  Length of Instructions:	60
+	00000: NPUSHB      (37):   136    16     1    15    64     9    17    72     0   153 
+	                             7     9     7     8     6    19    25   150     0   166 
+	                             0     2     0    40    11    17    72     0    11    17 
+	                           137    21    21     4    11    27     4 
+	00039: MDAP[rd]   
+	00040: SRP0       
+	00041: MDRP[nrp0,nmd,rd,0] 
+	00042: SRP1       
+	00043: IP         
+	00044: MDAP[rd]   
+	00045: MIRP[nrp0,md,rd,1] 
+	00046: SRP2       
+	00047: IP         
+	00048: CALL       
+	00049: DELTAP1    
+	00050: SVTCA[y-axis] 
+	00051: MIAP[rd+ci] 
+	00052: MIAP[rd+ci] 
+	00053: MIAP[rd+ci] 
+	00054: SHP[rp1,zp0] 
+	00055: MIRP[nrp0,md,rd,1] 
+	00056: IUP[y]     
+	00057: IUP[x]     
+	00058: CALL       
+	00059: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                               On
+	  2:  YDual                       X-Short Off
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:                      Y-Short         On
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short On
+	 14:              Rep-  1                 Off
+	 16:                      Y-Short X-Short On
+	 17:              Rep-  1 Y-Short X-Short Off
+	 19:  YDual                       X-Short On
+	 20:  YDual                       X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:              Rep-  1                 Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1135,  1292)  ->  Abs (  1135,  1292)
+	  1: Rel (  -752,     0)  ->  Abs (   383,  1292)
+	  2: Rel (   -44,     0)  ->  Abs (   339,  1292)
+	  3: Rel (   -52,    54)  ->  Abs (   287,  1346)
+	  4: Rel (     0,    40)  ->  Abs (   287,  1386)
+	  5: Rel (     0,    34)  ->  Abs (   287,  1420)
+	  6: Rel (    41,    46)  ->  Abs (   328,  1466)
+	  7: Rel (    34,     0)  ->  Abs (   362,  1466)
+	  8: Rel (   701,    -8)  ->  Abs (  1063,  1458)
+	  9: Rel (   252,     8)  ->  Abs (  1315,  1466)
+	 10: Rel (    94,     0)  ->  Abs (  1409,  1466)
+	 11: Rel (     0,   -71)  ->  Abs (  1409,  1395)
+	 12: Rel (     0,   -26)  ->  Abs (  1409,  1369)
+	 13: Rel (   -37,   -44)  ->  Abs (  1372,  1325)
+	 14: Rel (  -263,  -289)  ->  Abs (  1109,  1036)
+	 15: Rel (  -462,  -701)  ->  Abs (   647,   335)
+	 16: Rel (  -108,  -251)  ->  Abs (   539,    84)
+	 17: Rel (   -21,   -47)  ->  Abs (   518,    37)
+	 18: Rel (   -60,   -47)  ->  Abs (   458,   -10)
+	 19: Rel (   -38,     0)  ->  Abs (   420,   -10)
+	 20: Rel (   -98,     0)  ->  Abs (   322,   -10)
+	 21: Rel (     0,    90)  ->  Abs (   322,    80)
+	 22: Rel (     0,    25)  ->  Abs (   322,   105)
+	 23: Rel (    35,   116)  ->  Abs (   357,   221)
+	 24: Rel (   343,   532)  ->  Abs (   700,   753)
+	 25: Rel (   316,   411)  ->  Abs (  1016,  1164)
+
+	Glyph  27: off = 0x00001418, len = 382
+	  numberOfContours:	3
+	  xMin:			84
+	  yMin:			-8
+	  xMax:			1507
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  27
+	  1:  36
+	  2:  48
+
+	  Length of Instructions:	232
+	00000: NPUSHB      (12):    54    45     1   121    38   137    38     2    74    34 
+	                             1    29 
+	00014: PUSHW[1]            -64 
+	00017: NPUSHB     (146):    10    14    72   118    28   134    28     2     3    19 
+	                            19    19    35    19    99    19   115    19   131    19 
+	                             6    84    15   100    15     2    54    10   134    10 
+	                             2   122     8   138     8     2     9     7     1    73 
+	                             3    89     3     2   102     0     1     0    37     0 
+	                            28    37   153    12    28    20    37    12    12    28 
+	                            37    28     0    28   141    12    37    20    12    12 
+	                            37   165    12     1     6    12   150    12     2    45 
+	                            26    61    26    77    26     3   125    26   141    26 
+	                             2    26    30    20    28    47    22     1    22     0 
+	                             2    12    14    22    28    35    37    46     9     6 
+	                            32   153    17     7    43   153     6    25    37    12 
+	                            14    46   137    28     0     2    35   137   127    14 
+	                           143    14     2    14    14     2     9    30   137    24 
+	                            20    50    40   137     9    49 
+	00165: SRP0       
+	00166: MDRP[srp0,md,rd,2] 
+	00167: MIRP[nrp0,md,rd,1] 
+	00168: SRP0       
+	00169: MDRP[srp0,nmd,rd,0] 
+	00170: MDRP[nrp0,md,rd,1] 
+	00171: MIRP[nrp0,md,rd,1] 
+	00172: SRP2       
+	00173: IP         
+	00174: IP         
+	00175: MDAP[rd]   
+	00176: DELTAP1    
+	00177: MIRP[nrp0,md,rd,1] 
+	00178: MDAP[rd]   
+	00179: IP         
+	00180: IP         
+	00181: MIRP[nrp0,md,rd,1] 
+	00182: SRP1       
+	00183: IP         
+	00184: IP         
+	00185: SVTCA[y-axis] 
+	00186: MIAP[rd+ci] 
+	00187: MIRP[nrp0,md,rd,1] 
+	00188: MIAP[rd+ci] 
+	00189: MIRP[nrp0,md,rd,1] 
+	00190: SRP2       
+	00191: SLOOP      
+	00192: IP         
+	00193: MDAP[rd]   
+	00194: DELTAP1    
+	00195: SRP2       
+	00196: IP         
+	00197: IP         
+	00198: MDRP[nrp0,md,rd,1] 
+	00199: DELTAP1    
+	00200: DELTAP2    
+	00201: DELTAP1    
+	00202: DELTAP1    
+	00203: SDPVTL[1]  
+	00204: SRP0       
+	00205: CALL       
+	00206: SDPVTL[1]  
+	00207: RDTG       
+	00208: MDRP[nrp0,nmd,rd,0] 
+	00209: SDPVTL[1]  
+	00210: SFVTL[=p1,p2] 
+	00211: RTG        
+	00212: CALL       
+	00213: SFVTL[=p1,p2] 
+	00214: RDTG       
+	00215: SRP0       
+	00216: MDRP[nrp0,nmd,rd,0] 
+	00217: IUP[y]     
+	00218: IUP[x]     
+	00219: SVTCA[y-axis] 
+	00220: DELTAP1    
+	00221: DELTAP1    
+	00222: DELTAP1    
+	00223: DELTAP1    
+	00224: DELTAP1    
+	00225: DELTAP1    
+	00226: DELTAP1    
+	00227: DELTAP1    
+	00228: CALL       
+	00229: DELTAP1    
+	00230: DELTAP1    
+	00231: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short         Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:                      Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short         Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual               Y-Short         Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:                      Y-Short         Off
+	 20:        XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:                      Y-Short         On
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual               Y-Short         On
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:                      Y-Short X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:        XDual                 X-Short On
+	 38:              Rep-  1 Y-Short X-Short Off
+	 40:        XDual         Y-Short         On
+	 41:        XDual         Y-Short         Off
+	 42:        XDual         Y-Short X-Short Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short         On
+	 47:  YDual XDual         Y-Short         Off
+	 48:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   831,   805)  ->  Abs (   831,   805)
+	  1: Rel (   310,  -204)  ->  Abs (  1141,   601)
+	  2: Rel (     0,  -187)  ->  Abs (  1141,   414)
+	  3: Rel (     0,  -113)  ->  Abs (  1141,   301)
+	  4: Rel (  -167,  -194)  ->  Abs (   974,   107)
+	  5: Rel (  -281,  -115)  ->  Abs (   693,    -8)
+	  6: Rel (  -134,     0)  ->  Abs (   559,    -8)
+	  7: Rel (  -205,     0)  ->  Abs (   354,    -8)
+	  8: Rel (  -270,   206)  ->  Abs (    84,   198)
+	  9: Rel (     0,   144)  ->  Abs (    84,   342)
+	 10: Rel (     0,   144)  ->  Abs (    84,   486)
+	 11: Rel (   196,   215)  ->  Abs (   280,   701)
+	 12: Rel (   230,   122)  ->  Abs (   510,   823)
+	 13: Rel (  -117,   106)  ->  Abs (   393,   929)
+	 14: Rel (     0,   146)  ->  Abs (   393,  1075)
+	 15: Rel (     0,   166)  ->  Abs (   393,  1241)
+	 16: Rel (   307,   223)  ->  Abs (   700,  1464)
+	 17: Rel (   215,     0)  ->  Abs (   915,  1464)
+	 18: Rel (   157,     0)  ->  Abs (  1072,  1464)
+	 19: Rel (   256,  -154)  ->  Abs (  1328,  1310)
+	 20: Rel (    52,  -136)  ->  Abs (  1380,  1174)
+	 21: Rel (    44,     4)  ->  Abs (  1424,  1178)
+	 22: Rel (    22,     0)  ->  Abs (  1446,  1178)
+	 23: Rel (    61,     0)  ->  Abs (  1507,  1178)
+	 24: Rel (     0,   -68)  ->  Abs (  1507,  1110)
+	 25: Rel (     0,  -125)  ->  Abs (  1507,   985)
+	 26: Rel (  -149,     0)  ->  Abs (  1358,   985)
+	 27: Rel (  -141,     0)  ->  Abs (  1217,   985)
+	 28: Rel (  -539,   -78)  ->  Abs (   678,   907)
+	 29: Rel (   249,   117)  ->  Abs (   927,  1024)
+	 30: Rel (   279,    98)  ->  Abs (  1206,  1122)
+	 31: Rel (   -56,   170)  ->  Abs (  1150,  1292)
+	 32: Rel (  -251,     0)  ->  Abs (   899,  1292)
+	 33: Rel (  -123,     0)  ->  Abs (   776,  1292)
+	 34: Rel (  -190,  -132)  ->  Abs (   586,  1160)
+	 35: Rel (     0,   -85)  ->  Abs (   586,  1075)
+	 36: Rel (     0,   -99)  ->  Abs (   586,   976)
+	 37: Rel (    71,  -257)  ->  Abs (   657,   719)
+	 38: Rel (  -193,   -98)  ->  Abs (   464,   621)
+	 39: Rel (  -185,  -182)  ->  Abs (   279,   439)
+	 40: Rel (     0,   -97)  ->  Abs (   279,   342)
+	 41: Rel (     0,   -67)  ->  Abs (   279,   275)
+	 42: Rel (   136,  -111)  ->  Abs (   415,   164)
+	 43: Rel (   144,     0)  ->  Abs (   559,   164)
+	 44: Rel (   155,     0)  ->  Abs (   714,   164)
+	 45: Rel (   232,   151)  ->  Abs (   946,   315)
+	 46: Rel (     0,    99)  ->  Abs (   946,   414)
+	 47: Rel (     0,    78)  ->  Abs (   946,   492)
+	 48: Rel (  -131,   130)  ->  Abs (   815,   622)
+
+	Glyph  28: off = 0x00001596, len = 258
+	  numberOfContours:	2
+	  xMin:			217
+	  yMin:			-10
+	  xMax:			1364
+	  yMax:			1462
+
+	EndPoints
+	---------
+	  0:  28
+	  1:  45
+
+	  Length of Instructions:	117
+	00000: NPUSHB      (83):    69    44    85    44     2    41    42   105    42   121 
+	                            42   137    42     4    52    28   100    28     2   122 
+	                            14   138    14     2    41    13     1   102    11   118 
+	                            11   134    11     3   105     5   121     5   137     5 
+	                             3   105     1   121     1   137     1     3    29   153 
+	                             0     6    12    38     4     9     3     3    16    40 
+	                           153     9     7    22    26   153    16    25     0    19 
+	                            38   137    12    47    43   137     6     0    19    96 
+	                            19     2    19 
+	00085: MDAP[rd]   
+	00086: DELTAP1    
+	00087: MDRP[srp0,md,rd,0] 
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: SRP0       
+	00090: MDRP[srp0,nmd,rd,2] 
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: SRP1       
+	00093: IP         
+	00094: SVTCA[y-axis] 
+	00095: MIAP[rd+ci] 
+	00096: MIRP[srp0,md,rd,1] 
+	00097: MDRP[nrp0,nmd,rd,0] 
+	00098: MIAP[rd+ci] 
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: SRP2       
+	00101: IP         
+	00102: MDAP[rd]   
+	00103: SRP2       
+	00104: SLOOP      
+	00105: IP         
+	00106: MIRP[nrp0,md,rd,1] 
+	00107: IUP[y]     
+	00108: IUP[x]     
+	00109: DELTAP1    
+	00110: DELTAP1    
+	00111: DELTAP1    
+	00112: DELTAP1    
+	00113: DELTAP1    
+	00114: DELTAP1    
+	00115: DELTAP1    
+	00116: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:              Rep-  1 Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short         Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:                                      Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:                      Y-Short         Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                              X-Short Off
+	 15:                                      Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short On
+	 25:        XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:                                      Off
+	 29:                              X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual Rep-  6 Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:        XDual                         Off
+	 40:  YDual                               On
+	 41:  YDual                       X-Short Off
+	 42:                      Y-Short X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1087,   668)  ->  Abs (  1087,   668)
+	  1: Rel (   -69,   -56)  ->  Abs (  1018,   612)
+	  2: Rel (  -190,   -67)  ->  Abs (   828,   545)
+	  3: Rel (   -83,     0)  ->  Abs (   745,   545)
+	  4: Rel (  -198,     0)  ->  Abs (   547,   545)
+	  5: Rel (  -260,   231)  ->  Abs (   287,   776)
+	  6: Rel (     0,   180)  ->  Abs (   287,   956)
+	  7: Rel (     0,   195)  ->  Abs (   287,  1151)
+	  8: Rel (   357,   311)  ->  Abs (   644,  1462)
+	  9: Rel (   247,     0)  ->  Abs (   891,  1462)
+	 10: Rel (   217,     0)  ->  Abs (  1108,  1462)
+	 11: Rel (   256,  -241)  ->  Abs (  1364,  1221)
+	 12: Rel (     0,  -197)  ->  Abs (  1364,  1024)
+	 13: Rel (     0,  -222)  ->  Abs (  1364,   802)
+	 14: Rel (  -250,  -506)  ->  Abs (  1114,   296)
+	 15: Rel (  -415,  -306)  ->  Abs (   699,   -10)
+	 16: Rel (  -244,     0)  ->  Abs (   455,   -10)
+	 17: Rel (  -103,     0)  ->  Abs (   352,   -10)
+	 18: Rel (  -135,    62)  ->  Abs (   217,    52)
+	 19: Rel (     0,    50)  ->  Abs (   217,   102)
+	 20: Rel (     0,    42)  ->  Abs (   217,   144)
+	 21: Rel (    46,    51)  ->  Abs (   263,   195)
+	 22: Rel (    38,     0)  ->  Abs (   301,   195)
+	 23: Rel (    33,     0)  ->  Abs (   334,   195)
+	 24: Rel (    62,   -18)  ->  Abs (   396,   177)
+	 25: Rel (    54,   -15)  ->  Abs (   450,   162)
+	 26: Rel (    25,     0)  ->  Abs (   475,   162)
+	 27: Rel (   163,     0)  ->  Abs (   638,   162)
+	 28: Rel (   354,   282)  ->  Abs (   992,   444)
+	 29: Rel (  -226,   271)  ->  Abs (   766,   715)
+	 30: Rel (    31,     0)  ->  Abs (   797,   715)
+	 31: Rel (    64,    10)  ->  Abs (   861,   725)
+	 32: Rel (    64,    21)  ->  Abs (   925,   746)
+	 33: Rel (    61,    30)  ->  Abs (   986,   776)
+	 34: Rel (    58,    37)  ->  Abs (  1044,   813)
+	 35: Rel (    53,    46)  ->  Abs (  1097,   859)
+	 36: Rel (    61,    70)  ->  Abs (  1158,   929)
+	 37: Rel (    11,    74)  ->  Abs (  1169,  1003)
+	 38: Rel (     0,    21)  ->  Abs (  1169,  1024)
+	 39: Rel (     0,   266)  ->  Abs (  1169,  1290)
+	 40: Rel (  -278,     0)  ->  Abs (   891,  1290)
+	 41: Rel (  -182,     0)  ->  Abs (   709,  1290)
+	 42: Rel (  -228,  -208)  ->  Abs (   481,  1082)
+	 43: Rel (     0,  -126)  ->  Abs (   481,   956)
+	 44: Rel (     0,  -112)  ->  Abs (   481,   844)
+	 45: Rel (   160,  -129)  ->  Abs (   641,   715)
+
+	Glyph  29: off = 0x00001698, len = 104
+	  numberOfContours:	2
+	  xMin:			176
+	  yMin:			-8
+	  xMax:			668
+	  yMax:			969
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	26
+	00000: NPUSHB      (13):     3   176     9    21   176    15     4     0   175     6 
+	                            12   175    18 
+	00015: MDAP[rd]   
+	00016: MIRP[nrp0,md,rd,1] 
+	00017: MDRP[srp0,nmd,rd,0] 
+	00018: MIRP[nrp0,md,rd,1] 
+	00019: SVTCA[y-axis] 
+	00020: MIAP[rd+ci] 
+	00021: MIRP[nrp0,md,rd,1] 
+	00022: MDAP[rd]   
+	00023: MIRP[nrp0,md,rd,1] 
+	00024: IUP[y]     
+	00025: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:                              X-Short On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   668,   840)  ->  Abs (   668,   840)
+	  1: Rel (     0,   -68)  ->  Abs (   668,   772)
+	  2: Rel (  -106,  -102)  ->  Abs (   562,   670)
+	  3: Rel (   -68,     0)  ->  Abs (   494,   670)
+	  4: Rel (   -52,     0)  ->  Abs (   442,   670)
+	  5: Rel (   -73,    73)  ->  Abs (   369,   743)
+	  6: Rel (     0,    52)  ->  Abs (   369,   795)
+	  7: Rel (     0,    68)  ->  Abs (   369,   863)
+	  8: Rel (   110,   106)  ->  Abs (   479,   969)
+	  9: Rel (    68,     0)  ->  Abs (   547,   969)
+	 10: Rel (    52,     0)  ->  Abs (   599,   969)
+	 11: Rel (    69,   -74)  ->  Abs (   668,   895)
+	 12: Rel (  -193,  -733)  ->  Abs (   475,   162)
+	 13: Rel (     0,   -69)  ->  Abs (   475,    93)
+	 14: Rel (  -106,  -101)  ->  Abs (   369,    -8)
+	 15: Rel (   -68,     0)  ->  Abs (   301,    -8)
+	 16: Rel (   -52,     0)  ->  Abs (   249,    -8)
+	 17: Rel (   -73,    73)  ->  Abs (   176,    65)
+	 18: Rel (     0,    52)  ->  Abs (   176,   117)
+	 19: Rel (     0,    69)  ->  Abs (   176,   186)
+	 20: Rel (   111,   105)  ->  Abs (   287,   291)
+	 21: Rel (    67,     0)  ->  Abs (   354,   291)
+	 22: Rel (    52,     0)  ->  Abs (   406,   291)
+	 23: Rel (    69,   -74)  ->  Abs (   475,   217)
+
+	Glyph  30: off = 0x00001700, len = 136
+	  numberOfContours:	2
+	  xMin:			137
+	  yMin:			-276
+	  xMax:			668
+	  yMax:			969
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  31
+
+	  Length of Instructions:	35
+	00000: NPUSHB      (19):     3   176     9    24   178    18   176    12     4     6 
+	                           175     0    12   177    21   175    27   180    15 
+	00021: MDAP[rd]   
+	00022: MIRP[nrp0,nmd,rd,0] 
+	00023: MIRP[srp0,md,rd,1] 
+	00024: MIRP[nrp0,md,rd,1] 
+	00025: MDRP[srp0,nmd,rd,0] 
+	00026: MIRP[nrp0,md,rd,1] 
+	00027: SVTCA[y-axis] 
+	00028: MIAP[rd+ci] 
+	00029: MIRP[srp0,md,rd,1] 
+	00030: MIRP[nrp0,nmd,rd,0] 
+	00031: MDAP[rd]   
+	00032: MIRP[nrp0,md,rd,1] 
+	00033: IUP[y]     
+	00034: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:                                      On
+	 13:  YDual       Rep-  1 Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                              X-Short Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   668,   840)  ->  Abs (   668,   840)
+	  1: Rel (     0,   -68)  ->  Abs (   668,   772)
+	  2: Rel (  -106,  -102)  ->  Abs (   562,   670)
+	  3: Rel (   -68,     0)  ->  Abs (   494,   670)
+	  4: Rel (   -52,     0)  ->  Abs (   442,   670)
+	  5: Rel (   -73,    73)  ->  Abs (   369,   743)
+	  6: Rel (     0,    52)  ->  Abs (   369,   795)
+	  7: Rel (     0,    68)  ->  Abs (   369,   863)
+	  8: Rel (   110,   106)  ->  Abs (   479,   969)
+	  9: Rel (    68,     0)  ->  Abs (   547,   969)
+	 10: Rel (    52,     0)  ->  Abs (   599,   969)
+	 11: Rel (    69,   -74)  ->  Abs (   668,   895)
+	 12: Rel (  -377,  -903)  ->  Abs (   291,    -8)
+	 13: Rel (   -51,     6)  ->  Abs (   240,    -2)
+	 14: Rel (   -64,    70)  ->  Abs (   176,    68)
+	 15: Rel (     0,    49)  ->  Abs (   176,   117)
+	 16: Rel (     0,    69)  ->  Abs (   176,   186)
+	 17: Rel (   111,   105)  ->  Abs (   287,   291)
+	 18: Rel (    67,     0)  ->  Abs (   354,   291)
+	 19: Rel (    57,     0)  ->  Abs (   411,   291)
+	 20: Rel (    64,   -80)  ->  Abs (   475,   211)
+	 21: Rel (     0,   -72)  ->  Abs (   475,   139)
+	 22: Rel (     0,  -114)  ->  Abs (   475,    25)
+	 23: Rel (  -203,  -301)  ->  Abs (   272,  -276)
+	 24: Rel (   -73,     0)  ->  Abs (   199,  -276)
+	 25: Rel (   -24,     0)  ->  Abs (   175,  -276)
+	 26: Rel (   -38,    35)  ->  Abs (   137,  -241)
+	 27: Rel (     0,    22)  ->  Abs (   137,  -219)
+	 28: Rel (     0,    28)  ->  Abs (   137,  -191)
+	 29: Rel (    26,    38)  ->  Abs (   163,  -153)
+	 30: Rel (    42,    30)  ->  Abs (   205,  -123)
+	 31: Rel (    61,    44)  ->  Abs (   266,   -79)
+
+	Glyph  31: off = 0x00001788, len = 176
+	  numberOfContours:	1
+	  xMin:			168
+	  yMin:			289
+	  xMax:			1219
+	  yMax:			1180
+
+	EndPoints
+	---------
+	  0:  31
+
+	  Length of Instructions:	71
+	00000: NPUSHB      (18):   104    21   120    21     2    70    19    86    19     2 
+	                           106    29   122    29   138    29     3     3 
+	00020: PUSHW[1]            -24 
+	00023: NPUSHB      (10):    13    17    72     3     0    29     3     8    24     0 
+	00035: PUSHW[1]            -56 
+	00038: NPUSHB      (13):    13    17    72     5     5     0    27   143    16   159 
+	                            16     2    16 
+	00053: MDAP[rd]   
+	00054: DELTAP1    
+	00055: MDRP[nrp0,md,rd,1] 
+	00056: IP         
+	00057: IP         
+	00058: MDAP[rd]   
+	00059: CALL       
+	00060: SVTCA[y-axis] 
+	00061: MDAP[rd]   
+	00062: MDRP[nrp0,nmd,rd,0] 
+	00063: SLOOP      
+	00064: IP         
+	00065: CALL       
+	00066: DELTAP1    
+	00067: IUP[y]     
+	00068: IUP[x]     
+	00069: DELTAP1    
+	00070: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:                      Y-Short         Off
+	  3:        XDual         Y-Short X-Short On
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                      Y-Short X-Short Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual       Rep-  1 Y-Short X-Short On
+	 12:  YDual               Y-Short         On
+	 13:  YDual       Rep-  2 Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual               Y-Short         On
+	 22:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:                      Y-Short X-Short On
+	 30:                      Y-Short X-Short Off
+	 31:                      Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   420,   725)  ->  Abs (   420,   725)
+	  1: Rel (   167,   -89)  ->  Abs (   587,   636)
+	  2: Rel (   365,  -174)  ->  Abs (   952,   462)
+	  3: Rel (    49,   -16)  ->  Abs (  1001,   446)
+	  4: Rel (    39,   -10)  ->  Abs (  1040,   436)
+	  5: Rel (     0,   -53)  ->  Abs (  1040,   383)
+	  6: Rel (     0,   -42)  ->  Abs (  1040,   341)
+	  7: Rel (   -40,   -52)  ->  Abs (  1000,   289)
+	  8: Rel (   -37,     0)  ->  Abs (   963,   289)
+	  9: Rel (   -30,     0)  ->  Abs (   933,   289)
+	 10: Rel (   -88,    41)  ->  Abs (   845,   330)
+	 11: Rel (  -196,    94)  ->  Abs (   649,   424)
+	 12: Rel (  -266,   133)  ->  Abs (   383,   557)
+	 13: Rel (  -158,    80)  ->  Abs (   225,   637)
+	 14: Rel (   -41,    27)  ->  Abs (   184,   664)
+	 15: Rel (   -16,    34)  ->  Abs (   168,   698)
+	 16: Rel (     0,    29)  ->  Abs (   168,   727)
+	 17: Rel (     0,    32)  ->  Abs (   168,   759)
+	 18: Rel (    22,    40)  ->  Abs (   190,   799)
+	 19: Rel (    46,    28)  ->  Abs (   236,   827)
+	 20: Rel (   133,    55)  ->  Abs (   369,   882)
+	 21: Rel (   339,   138)  ->  Abs (   708,  1020)
+	 22: Rel (   204,    83)  ->  Abs (   912,  1103)
+	 23: Rel (   212,    77)  ->  Abs (  1124,  1180)
+	 24: Rel (    31,     0)  ->  Abs (  1155,  1180)
+	 25: Rel (    29,     0)  ->  Abs (  1184,  1180)
+	 26: Rel (    35,   -59)  ->  Abs (  1219,  1121)
+	 27: Rel (     0,   -40)  ->  Abs (  1219,  1081)
+	 28: Rel (     0,   -53)  ->  Abs (  1219,  1028)
+	 29: Rel (   -89,   -31)  ->  Abs (  1130,   997)
+	 30: Rel (   -91,   -26)  ->  Abs (  1039,   971)
+	 31: Rel (  -462,  -177)  ->  Abs (   577,   794)
+
+	Glyph  32: off = 0x00001838, len = 128
+	  numberOfContours:	2
+	  xMin:			160
+	  yMin:			426
+	  xMax:			1145
+	  yMax:			1018
+
+	EndPoints
+	---------
+	  0:  15
+	  1:  31
+
+	  Length of Instructions:	27
+	00000: NPUSHB      (12):    25    16   153    20     9     4   153     0     2    18 
+	                            11    27 
+	00014: MDAP[rd]   
+	00015: MDRP[nrp0,nmd,rd,0] 
+	00016: MDRP[srp0,md,rd,1] 
+	00017: MDRP[nrp0,nmd,rd,0] 
+	00018: SVTCA[y-axis] 
+	00019: MDAP[rd]   
+	00020: MIRP[srp0,md,rd,1] 
+	00021: MDRP[nrp0,nmd,rd,0] 
+	00022: MDRP[srp0,nmd,rd,0] 
+	00023: MIRP[nrp0,md,rd,1] 
+	00024: MDRP[nrp0,nmd,rd,0] 
+	00025: IUP[y]     
+	00026: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:                      Y-Short         Off
+	  7:                      Y-Short X-Short On
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 15:  YDual               Y-Short         Off
+	 16:        XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                       X-Short Off
+	 22:                      Y-Short         Off
+	 23:                      Y-Short X-Short On
+	 24:                      Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 31:  YDual               Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (  1067,  1018)  ->  Abs (  1067,  1018)
+	  1: Rel (    78,     0)  ->  Abs (  1145,  1018)
+	  2: Rel (     0,   -78)  ->  Abs (  1145,   940)
+	  3: Rel (     0,   -92)  ->  Abs (  1145,   848)
+	  4: Rel (  -115,     0)  ->  Abs (  1030,   848)
+	  5: Rel (  -157,     0)  ->  Abs (   873,   848)
+	  6: Rel (  -430,   -18)  ->  Abs (   443,   830)
+	  7: Rel (   -83,    -9)  ->  Abs (   360,   821)
+	  8: Rel (   -60,    -6)  ->  Abs (   300,   815)
+	  9: Rel (   -21,     0)  ->  Abs (   279,   815)
+	 10: Rel (   -58,     0)  ->  Abs (   221,   815)
+	 11: Rel (     0,   100)  ->  Abs (   221,   915)
+	 12: Rel (     0,    33)  ->  Abs (   221,   948)
+	 13: Rel (    71,    39)  ->  Abs (   292,   987)
+	 14: Rel (   131,    13)  ->  Abs (   423,  1000)
+	 15: Rel (   518,    18)  ->  Abs (   941,  1018)
+	 16: Rel (    65,  -389)  ->  Abs (  1006,   629)
+	 17: Rel (    77,     0)  ->  Abs (  1083,   629)
+	 18: Rel (     0,   -78)  ->  Abs (  1083,   551)
+	 19: Rel (     0,   -92)  ->  Abs (  1083,   459)
+	 20: Rel (  -112,     0)  ->  Abs (   971,   459)
+	 21: Rel (  -158,     0)  ->  Abs (   813,   459)
+	 22: Rel (  -432,   -18)  ->  Abs (   381,   441)
+	 23: Rel (   -84,    -9)  ->  Abs (   297,   432)
+	 24: Rel (   -58,    -6)  ->  Abs (   239,   426)
+	 25: Rel (   -20,     0)  ->  Abs (   219,   426)
+	 26: Rel (   -59,     0)  ->  Abs (   160,   426)
+	 27: Rel (     0,   100)  ->  Abs (   160,   526)
+	 28: Rel (     0,    33)  ->  Abs (   160,   559)
+	 29: Rel (    70,    39)  ->  Abs (   230,   598)
+	 30: Rel (   131,    13)  ->  Abs (   361,   611)
+	 31: Rel (   519,    18)  ->  Abs (   880,   629)
+
+	Glyph  33: off = 0x000018B8, len = 168
+	  numberOfContours:	1
+	  xMin:			84
+	  yMin:			287
+	  xMax:			1135
+	  yMax:			1178
+
+	EndPoints
+	---------
+	  0:  31
+
+	  Length of Instructions:	61
+	00000: NPUSHB      (41):    73    19    89    19     2   101    29   117    29   133 
+	                            29     3     3    24    13    17    72     3     0    29 
+	                             3    24     9    70     0    86     0     2     0    56 
+	                            13    17    72     6     6     0    17    31    27     1 
+	                            27 
+	00043: MDAP[rd]   
+	00044: DELTAP1    
+	00045: MDRP[nrp0,md,rd,1] 
+	00046: IP         
+	00047: IP         
+	00048: MDAP[rd]   
+	00049: CALL       
+	00050: DELTAP1    
+	00051: SVTCA[y-axis] 
+	00052: MDAP[rd]   
+	00053: MDRP[nrp0,nmd,rd,0] 
+	00054: SLOOP      
+	00055: IP         
+	00056: CALL       
+	00057: DELTAP1    
+	00058: IUP[y]     
+	00059: IUP[x]     
+	00060: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short         Off
+	  3:  YDual               Y-Short X-Short On
+	  4:  YDual       Rep-  1 Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual Rep-  1 Y-Short X-Short On
+	 13:                      Y-Short         On
+	 14:        XDual Rep-  2 Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+	 21:                      Y-Short         On
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short         Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual               Y-Short         Off
+
+	Coordinates
+	-----------
+	  0: Rel (   883,   741)  ->  Abs (   883,   741)
+	  1: Rel (  -168,    90)  ->  Abs (   715,   831)
+	  2: Rel (  -365,   173)  ->  Abs (   350,  1004)
+	  3: Rel (   -49,    16)  ->  Abs (   301,  1020)
+	  4: Rel (   -16,     5)  ->  Abs (   285,  1025)
+	  5: Rel (   -23,    36)  ->  Abs (   262,  1061)
+	  6: Rel (     0,    22)  ->  Abs (   262,  1083)
+	  7: Rel (     0,    42)  ->  Abs (   262,  1125)
+	  8: Rel (    40,    53)  ->  Abs (   302,  1178)
+	  9: Rel (    38,     0)  ->  Abs (   340,  1178)
+	 10: Rel (    30,     0)  ->  Abs (   370,  1178)
+	 11: Rel (    87,   -41)  ->  Abs (   457,  1137)
+	 12: Rel (   197,   -95)  ->  Abs (   654,  1042)
+	 13: Rel (   266,  -133)  ->  Abs (   920,   909)
+	 14: Rel (   157,   -80)  ->  Abs (  1077,   829)
+	 15: Rel (    41,   -27)  ->  Abs (  1118,   802)
+	 16: Rel (    17,   -34)  ->  Abs (  1135,   768)
+	 17: Rel (     0,   -29)  ->  Abs (  1135,   739)
+	 18: Rel (     0,   -43)  ->  Abs (  1135,   696)
+	 19: Rel (   -42,   -46)  ->  Abs (  1093,   650)
+	 20: Rel (  -104,   -43)  ->  Abs (   989,   607)
+	 21: Rel (  -321,  -132)  ->  Abs (   668,   475)
+	 22: Rel (  -216,   -89)  ->  Abs (   452,   386)
+	 23: Rel (  -272,   -99)  ->  Abs (   180,   287)
+	 24: Rel (   -33,     0)  ->  Abs (   147,   287)
+	 25: Rel (   -28,     0)  ->  Abs (   119,   287)
+	 26: Rel (   -35,    58)  ->  Abs (    84,   345)
+	 27: Rel (     0,    40)  ->  Abs (    84,   385)
+	 28: Rel (     0,    54)  ->  Abs (    84,   439)
+	 29: Rel (    88,    30)  ->  Abs (   172,   469)
+	 30: Rel (    92,    26)  ->  Abs (   264,   495)
+	 31: Rel (   462,   177)  ->  Abs (   726,   672)
+
+	Glyph  34: off = 0x00001960, len = 184
+	  numberOfContours:	1
+	  xMin:			47
+	  yMin:			-461
+	  xMax:			1100
+	  yMax:			1460
+
+	EndPoints
+	---------
+	  0:  34
+
+	  Length of Instructions:	74
+	00000: NPUSHB      (43):    23    34    39    34   119    34     3    32     0     1 
+	                            82     0   141    15    19    20    15    15    19    32 
+	                            19     0    15    63    27     1    27    27    19     8 
+	                            15     0   153    13     3   153    11    27    29    32 
+	                           153    22     7 
+	00045: SVTCA[y-axis] 
+	00046: MIAP[rd+ci] 
+	00047: MIRP[srp0,md,rd,1] 
+	00048: MDRP[nrp0,nmd,rd,0] 
+	00049: MIAP[rd+ci] 
+	00050: MIRP[nrp0,md,rd,1] 
+	00051: MDRP[srp0,nmd,rd,1] 
+	00052: MIRP[nrp0,md,rd,1] 
+	00053: IUP[x]     
+	00054: SVTCA[x-axis] 
+	00055: MDAP[rd]   
+	00056: MDRP[nrp0,md,rd,1] 
+	00057: SHP[rp1,zp0] 
+	00058: SHP[rp1,zp0] 
+	00059: MDAP[rd]   
+	00060: DELTAP1    
+	00061: SRP1       
+	00062: SHP[rp1,zp0] 
+	00063: SRP1       
+	00064: SHP[rp1,zp0] 
+	00065: SDPVTL[1]  
+	00066: SRP0       
+	00067: CALL       
+	00068: CALL       
+	00069: SRP0       
+	00070: MDRP[nrp0,nmd,rd,0] 
+	00071: IUP[y]     
+	00072: SVTCA[x-axis] 
+	00073: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual Rep-  1 Y-Short X-Short On
+	  4:        XDual Rep-  3 Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short         Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:        XDual Rep-  2         X-Short Off
+	 20:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual Rep-  2 Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:  YDual                       X-Short On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual                       X-Short On
+	 33:                      Y-Short X-Short Off
+	 34:                                      Off
+
+	Coordinates
+	-----------
+	  0: Rel (   262,  -268)  ->  Abs (   262,  -268)
+	  1: Rel (    50,    -2)  ->  Abs (   312,  -270)
+	  2: Rel (    91,    -5)  ->  Abs (   403,  -275)
+	  3: Rel (   151,   -11)  ->  Abs (   554,  -286)
+	  4: Rel (    61,    -4)  ->  Abs (   615,  -290)
+	  5: Rel (    25,   -12)  ->  Abs (   640,  -302)
+	  6: Rel (    18,   -24)  ->  Abs (   658,  -326)
+	  7: Rel (     8,   -30)  ->  Abs (   666,  -356)
+	  8: Rel (     0,   -17)  ->  Abs (   666,  -373)
+	  9: Rel (     0,   -33)  ->  Abs (   666,  -406)
+	 10: Rel (   -60,   -55)  ->  Abs (   606,  -461)
+	 11: Rel (   -49,     0)  ->  Abs (   557,  -461)
+	 12: Rel (   -36,     0)  ->  Abs (   521,  -461)
+	 13: Rel (  -420,    18)  ->  Abs (   101,  -443)
+	 14: Rel (   -54,    33)  ->  Abs (    47,  -410)
+	 15: Rel (     0,    41)  ->  Abs (    47,  -369)
+	 16: Rel (     0,    43)  ->  Abs (    47,  -326)
+	 17: Rel (   115,   501)  ->  Abs (   162,   175)
+	 18: Rel (   192,   696)  ->  Abs (   354,   871)
+	 19: Rel (   179,   517)  ->  Abs (   533,  1388)
+	 20: Rel (    36,    48)  ->  Abs (   569,  1436)
+	 21: Rel (    62,    24)  ->  Abs (   631,  1460)
+	 22: Rel (    39,     0)  ->  Abs (   670,  1460)
+	 23: Rel (   110,     0)  ->  Abs (   780,  1460)
+	 24: Rel (   242,    -9)  ->  Abs (  1022,  1451)
+	 25: Rel (    55,   -18)  ->  Abs (  1077,  1433)
+	 26: Rel (    23,   -37)  ->  Abs (  1100,  1396)
+	 27: Rel (     0,   -30)  ->  Abs (  1100,  1366)
+	 28: Rel (     0,   -94)  ->  Abs (  1100,  1272)
+	 29: Rel (  -103,     0)  ->  Abs (   997,  1272)
+	 30: Rel (   -54,     0)  ->  Abs (   943,  1272)
+	 31: Rel (  -177,    12)  ->  Abs (   766,  1284)
+	 32: Rel (   -68,     0)  ->  Abs (   698,  1284)
+	 33: Rel (   -92,  -223)  ->  Abs (   606,  1061)
+	 34: Rel (  -316, -1150)  ->  Abs (   290,   -89)
+
+	Glyph  35: off = 0x00001A18, len = 124
+	  numberOfContours:	1
+	  xMin:			303
+	  yMin:			0
+	  xMax:			852
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  20
+
+	  Length of Instructions:	49
+	00000: NPUSHB      (28):   135    14     1    88     5     1     2     1    82    13 
+	                            18    13   141     7     2    20     7     2     2    13 
+	                            15    18     1    18     7    10     7     0 
+	00030: SVTCA[y-axis] 
+	00031: MDAP[rd]   
+	00032: MIAP[rd+ci] 
+	00033: IUP[x]     
+	00034: SVTCA[x-axis] 
+	00035: MDAP[rd]   
+	00036: MDRP[nrp0,md,rd,1] 
+	00037: DELTAP1    
+	00038: SHP[rp1,zp0] 
+	00039: SHP[rp2,zp1] 
+	00040: SDPVTL[1]  
+	00041: CALL       
+	00042: SDPVTL[1]  
+	00043: CALL       
+	00044: MDRP[nrp0,nmd,rd,0] 
+	00045: IUP[y]     
+	00046: SVTCA[x-axis] 
+	00047: DELTAP1    
+	00048: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual                       X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:                              X-Short Off
+	  5:                              X-Short On
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual                 X-Short On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short X-Short Off
+	 13:        XDual         Y-Short X-Short On
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual Rep-  2         X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   772,     0)  ->  Abs (   772,     0)
+	  1: Rel (  -108,     0)  ->  Abs (   664,     0)
+	  2: Rel (   -11,    78)  ->  Abs (   653,    78)
+	  3: Rel (   -30,   252)  ->  Abs (   623,   330)
+	  4: Rel (  -163,   676)  ->  Abs (   460,  1006)
+	  5: Rel (  -119,   271)  ->  Abs (   341,  1277)
+	  6: Rel (   -38,    86)  ->  Abs (   303,  1363)
+	  7: Rel (     0,    23)  ->  Abs (   303,  1386)
+	  8: Rel (     0,    39)  ->  Abs (   303,  1425)
+	  9: Rel (    59,    39)  ->  Abs (   362,  1464)
+	 10: Rel (    27,     0)  ->  Abs (   389,  1464)
+	 11: Rel (    41,     0)  ->  Abs (   430,  1464)
+	 12: Rel (    37,   -15)  ->  Abs (   467,  1449)
+	 13: Rel (    16,   -38)  ->  Abs (   483,  1411)
+	 14: Rel (    61,  -138)  ->  Abs (   544,  1273)
+	 15: Rel (   105,  -312)  ->  Abs (   649,   961)
+	 16: Rel (   123,  -447)  ->  Abs (   772,   514)
+	 17: Rel (    80,  -386)  ->  Abs (   852,   128)
+	 18: Rel (     0,   -46)  ->  Abs (   852,    82)
+	 19: Rel (     0,   -32)  ->  Abs (   852,    50)
+	 20: Rel (   -46,   -50)  ->  Abs (   806,     0)
+
+	Glyph  36: off = 0x00001A94, len = 174
+	  numberOfContours:	1
+	  xMin:			-121
+	  yMin:			-461
+	  xMax:			928
+	  yMax:			1458
+
+	EndPoints
+	---------
+	  0:  30
+
+	  Length of Instructions:	70
+	00000: NPUSHB      (40):    38    16    54    16     2   118    14     1     0    29 
+	                             1    82    29   141    17    11    20    17    17    11 
+	                             0    11    29    17     3    17    11    23     0   153 
+	                             8     1   153     6     6    26    29   153    20    27 
+	00042: SVTCA[y-axis] 
+	00043: MIAP[rd+ci] 
+	00044: MIRP[srp0,md,rd,1] 
+	00045: MDRP[nrp0,nmd,rd,0] 
+	00046: MIAP[rd+ci] 
+	00047: MIRP[nrp0,md,rd,1] 
+	00048: MDRP[srp0,nmd,rd,1] 
+	00049: MIRP[nrp0,md,rd,1] 
+	00050: IUP[x]     
+	00051: SVTCA[x-axis] 
+	00052: MDAP[rd]   
+	00053: MDRP[srp0,nmd,rd,0] 
+	00054: SHP[rp2,zp1] 
+	00055: MDRP[nrp0,md,rd,1] 
+	00056: SRP1       
+	00057: SHP[rp1,zp0] 
+	00058: SRP1       
+	00059: SHP[rp1,zp0] 
+	00060: SDPVTL[1]  
+	00061: SRP0       
+	00062: CALL       
+	00063: CALL       
+	00064: SRP0       
+	00065: MDRP[nrp0,nmd,rd,0] 
+	00066: IUP[y]     
+	00067: SVTCA[x-axis] 
+	00068: DELTAP1    
+	00069: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short         Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:                      Y-Short         Off
+	  9:        XDual Rep-  1 Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                              X-Short On
+	 14:              Rep-  1         X-Short Off
+	 16:                              X-Short On
+	 17:              Rep-  2 Y-Short X-Short Off
+	 20:  YDual                       X-Short On
+	 21:  YDual                               Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:        XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   721,  1272)  ->  Abs (   721,  1272)
+	  1: Rel (  -338,     7)  ->  Abs (   383,  1279)
+	  2: Rel (   -70,    33)  ->  Abs (   313,  1312)
+	  3: Rel (     0,    58)  ->  Abs (   313,  1370)
+	  4: Rel (     0,    36)  ->  Abs (   313,  1406)
+	  5: Rel (    61,    52)  ->  Abs (   374,  1458)
+	  6: Rel (    48,     0)  ->  Abs (   422,  1458)
+	  7: Rel (    73,     0)  ->  Abs (   495,  1458)
+	  8: Rel (   330,   -10)  ->  Abs (   825,  1448)
+	  9: Rel (    76,   -10)  ->  Abs (   901,  1438)
+	 10: Rel (    27,   -33)  ->  Abs (   928,  1405)
+	 11: Rel (     0,   -33)  ->  Abs (   928,  1372)
+	 12: Rel (     0,   -58)  ->  Abs (   928,  1314)
+	 13: Rel (  -119,  -398)  ->  Abs (   809,   916)
+	 14: Rel (  -123,  -410)  ->  Abs (   686,   506)
+	 15: Rel (  -136,  -525)  ->  Abs (   550,   -19)
+	 16: Rel (   -67,  -306)  ->  Abs (   483,  -325)
+	 17: Rel (   -14,   -62)  ->  Abs (   469,  -387)
+	 18: Rel (   -25,   -46)  ->  Abs (   444,  -433)
+	 19: Rel (   -47,   -28)  ->  Abs (   397,  -461)
+	 20: Rel (   -30,     0)  ->  Abs (   367,  -461)
+	 21: Rel (  -373,     0)  ->  Abs (    -6,  -461)
+	 22: Rel (  -115,    34)  ->  Abs (  -121,  -427)
+	 23: Rel (     0,    58)  ->  Abs (  -121,  -369)
+	 24: Rel (     0,    39)  ->  Abs (  -121,  -330)
+	 25: Rel (    55,    58)  ->  Abs (   -66,  -272)
+	 26: Rel (    48,     0)  ->  Abs (   -18,  -272)
+	 27: Rel (    43,     0)  ->  Abs (    25,  -272)
+	 28: Rel (   196,   -11)  ->  Abs (   221,  -283)
+	 29: Rel (    74,     0)  ->  Abs (   295,  -283)
+	 30: Rel (   209,   944)  ->  Abs (   504,   661)
+
+	Glyph  37: off = 0x00001B42, len = 260
+	  numberOfContours:	1
+	  xMin:			100
+	  yMin:			-461
+	  xMax:			1182
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  53
+
+	  Length of Instructions:	108
+	00000: NPUSHB      (14):   101    52   117    52     2     5    48     1    73    37 
+	                            89    37     2     5 
+	00016: PUSHW[1]            -16 
+	00019: NPUSHB      (47):    12    17    72    48    51     1    82    51   138    33 
+	                            35    20    33    33    35    48    35    51    33    35 
+	                            33    43    18     0    28     3   138    22    28    12 
+	                             7   138    18     0    25   154    30    30    15    45 
+	                           153    40     7    10   153    15    27 
+	00068: SVTCA[y-axis] 
+	00069: MIAP[rd+ci] 
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: MIAP[rd+ci] 
+	00072: MIRP[nrp0,md,rd,1] 
+	00073: SRP2       
+	00074: IP         
+	00075: MDAP[rd]   
+	00076: MIRP[nrp0,md,rd,1] 
+	00077: IP         
+	00078: IUP[x]     
+	00079: SVTCA[x-axis] 
+	00080: MDAP[rd]   
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: MDRP[nrp0,md,rd,1] 
+	00083: MDRP[nrp0,nmd,rd,0] 
+	00084: MDRP[srp0,nmd,rd,0] 
+	00085: MIRP[nrp0,md,rd,1] 
+	00086: SRP1       
+	00087: IP         
+	00088: SRP0       
+	00089: MDRP[nrp0,nmd,rd,0] 
+	00090: IP         
+	00091: IP         
+	00092: SRP1       
+	00093: SHP[rp1,zp0] 
+	00094: SRP1       
+	00095: SHP[rp1,zp0] 
+	00096: SDPVTL[1]  
+	00097: SRP0       
+	00098: CALL       
+	00099: CALL       
+	00100: SRP0       
+	00101: MDRP[nrp0,nmd,rd,0] 
+	00102: IUP[y]     
+	00103: SVTCA[x-axis] 
+	00104: CALL       
+	00105: DELTAP1    
+	00106: DELTAP1    
+	00107: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual Rep-  1 Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:        XDual         Y-Short X-Short Off
+	 10:        XDual         Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual               Y-Short X-Short Off
+	 25:  YDual               Y-Short X-Short On
+	 26:  YDual       Rep-  1 Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual XDual Rep-  4 Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:        XDual         Y-Short X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:  YDual                       X-Short On
+	 46:  YDual                       X-Short Off
+	 47:              Rep-  2 Y-Short X-Short Off
+	 50:                      Y-Short X-Short On
+	 51:              Rep-  2 Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   422,   551)  ->  Abs (   422,   551)
+	  1: Rel (    51,   -20)  ->  Abs (   473,   531)
+	  2: Rel (    57,  -105)  ->  Abs (   530,   426)
+	  3: Rel (     0,   -55)  ->  Abs (   530,   371)
+	  4: Rel (     0,   -98)  ->  Abs (   530,   273)
+	  5: Rel (   -61,  -236)  ->  Abs (   469,    37)
+	  6: Rel (   -33,  -128)  ->  Abs (   436,   -91)
+	  7: Rel (     0,   -63)  ->  Abs (   436,  -154)
+	  8: Rel (     0,   -48)  ->  Abs (   436,  -202)
+	  9: Rel (   101,   -77)  ->  Abs (   537,  -279)
+	 10: Rel (   145,   -10)  ->  Abs (   682,  -289)
+	 11: Rel (    66,    -5)  ->  Abs (   748,  -294)
+	 12: Rel (     0,   -79)  ->  Abs (   748,  -373)
+	 13: Rel (     0,   -34)  ->  Abs (   748,  -407)
+	 14: Rel (   -59,   -54)  ->  Abs (   689,  -461)
+	 15: Rel (   -50,     0)  ->  Abs (   639,  -461)
+	 16: Rel (  -160,     0)  ->  Abs (   479,  -461)
+	 17: Rel (  -229,   174)  ->  Abs (   250,  -287)
+	 18: Rel (     0,   121)  ->  Abs (   250,  -166)
+	 19: Rel (     0,    84)  ->  Abs (   250,   -82)
+	 20: Rel (    43,   166)  ->  Abs (   293,    84)
+	 21: Rel (    51,   199)  ->  Abs (   344,   283)
+	 22: Rel (     0,    65)  ->  Abs (   344,   348)
+	 23: Rel (     0,    51)  ->  Abs (   344,   399)
+	 24: Rel (   -92,    69)  ->  Abs (   252,   468)
+	 25: Rel (   -82,     7)  ->  Abs (   170,   475)
+	 26: Rel (   -28,     3)  ->  Abs (   142,   478)
+	 27: Rel (   -42,    46)  ->  Abs (   100,   524)
+	 28: Rel (     0,    27)  ->  Abs (   100,   551)
+	 29: Rel (     0,    84)  ->  Abs (   100,   635)
+	 30: Rel (    90,     6)  ->  Abs (   190,   641)
+	 31: Rel (   155,    10)  ->  Abs (   345,   651)
+	 32: Rel (   124,    67)  ->  Abs (   469,   718)
+	 33: Rel (    55,   131)  ->  Abs (   524,   849)
+	 34: Rel (    38,   167)  ->  Abs (   562,  1016)
+	 35: Rel (    31,   134)  ->  Abs (   593,  1150)
+	 36: Rel (    42,   105)  ->  Abs (   635,  1255)
+	 37: Rel (    96,   103)  ->  Abs (   731,  1358)
+	 38: Rel (   129,    75)  ->  Abs (   860,  1433)
+	 39: Rel (   157,    31)  ->  Abs (  1017,  1464)
+	 40: Rel (    87,     0)  ->  Abs (  1104,  1464)
+	 41: Rel (    35,     0)  ->  Abs (  1139,  1464)
+	 42: Rel (    43,   -49)  ->  Abs (  1182,  1415)
+	 43: Rel (     0,   -39)  ->  Abs (  1182,  1376)
+	 44: Rel (     0,   -90)  ->  Abs (  1182,  1286)
+	 45: Rel (   -90,     0)  ->  Abs (  1092,  1286)
+	 46: Rel (  -102,     0)  ->  Abs (   990,  1286)
+	 47: Rel (  -136,   -53)  ->  Abs (   854,  1233)
+	 48: Rel (   -80,   -93)  ->  Abs (   774,  1140)
+	 49: Rel (   -29,  -109)  ->  Abs (   745,  1031)
+	 50: Rel (   -18,   -78)  ->  Abs (   727,   953)
+	 51: Rel (   -43,  -179)  ->  Abs (   684,   774)
+	 52: Rel (   -51,  -108)  ->  Abs (   633,   666)
+	 53: Rel (  -134,  -102)  ->  Abs (   499,   564)
+
+	Glyph  38: off = 0x00001C46, len = 106
+	  numberOfContours:	1
+	  xMin:			168
+	  yMin:			-322
+	  xMax:			870
+	  yMax:			1466
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	43
+	00000: NPUSHB      (24):    87     4   119     4     2    12     1    82     5     0 
+	                             5   141     9    12    20     9    12    12     5     0 
+	                             9     7    14     7 
+	00026: SVTCA[y-axis] 
+	00027: MIAP[rd+ci] 
+	00028: MDAP[rd]   
+	00029: IUP[x]     
+	00030: SVTCA[x-axis] 
+	00031: MDAP[rd]   
+	00032: MDRP[nrp0,md,rd,1] 
+	00033: SHP[rp1,zp0] 
+	00034: SHP[rp2,zp1] 
+	00035: SDPVTL[1]  
+	00036: CALL       
+	00037: SDPVTL[1]  
+	00038: CALL       
+	00039: MDRP[nrp0,nmd,rd,0] 
+	00040: IUP[y]     
+	00041: SVTCA[x-axis] 
+	00042: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short On
+	  3:                              X-Short Off
+	  4:                                      Off
+	  5:                      Y-Short X-Short On
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:        XDual                 X-Short Off
+	 12:                                      Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   870,  1411)  ->  Abs (   870,  1411)
+	  1: Rel (     0,   -41)  ->  Abs (   870,  1370)
+	  2: Rel (   -39,   -90)  ->  Abs (   831,  1280)
+	  3: Rel (  -128,  -295)  ->  Abs (   703,   985)
+	  4: Rel (  -310,  -984)  ->  Abs (   393,     1)
+	  5: Rel (   -37,  -247)  ->  Abs (   356,  -246)
+	  6: Rel (   -10,   -76)  ->  Abs (   346,  -322)
+	  7: Rel (   -90,     0)  ->  Abs (   256,  -322)
+	  8: Rel (   -88,     0)  ->  Abs (   168,  -322)
+	  9: Rel (     0,    78)  ->  Abs (   168,  -244)
+	 10: Rel (     0,   125)  ->  Abs (   168,  -119)
+	 11: Rel (   215,   764)  ->  Abs (   383,   645)
+	 12: Rel (   305,   757)  ->  Abs (   688,  1402)
+	 13: Rel (    72,    64)  ->  Abs (   760,  1466)
+	 14: Rel (    45,     0)  ->  Abs (   805,  1466)
+	 15: Rel (    65,     0)  ->  Abs (   870,  1466)
+
+	Glyph  39: off = 0x00001CB0, len = 258
+	  numberOfContours:	1
+	  xMin:			-182
+	  yMin:			-461
+	  xMax:			930
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  54
+
+	  Length of Instructions:	104
+	00000: NPUSHB      (63):   105    53   121    53   137    53     3    68    38    84 
+	                            38   132    38     3     6     0    22     0     2    52 
+	                            49     1    82    49   138    37    33    20    37    37 
+	                            33    52    33    49    37     0    28     3   138    23 
+	                             7   138    37    33    44    14    28    19    56     0 
+	                            30   154    26    26    41    11   154    16     7    46 
+	                           153    41    27 
+	00065: SVTCA[y-axis] 
+	00066: MIAP[rd+ci] 
+	00067: MIRP[nrp0,md,rd,1] 
+	00068: MIAP[rd+ci] 
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: SRP2       
+	00071: IP         
+	00072: MDAP[rd]   
+	00073: MIRP[nrp0,md,rd,1] 
+	00074: IP         
+	00075: IUP[x]     
+	00076: SVTCA[x-axis] 
+	00077: SRP0       
+	00078: MDRP[srp0,nmd,rd,0] 
+	00079: MDRP[nrp0,nmd,rd,0] 
+	00080: MDRP[nrp0,md,rd,1] 
+	00081: MDRP[nrp0,nmd,rd,0] 
+	00082: IP         
+	00083: IP         
+	00084: MIRP[nrp0,md,rd,1] 
+	00085: MDRP[srp0,nmd,rd,0] 
+	00086: MIRP[nrp0,md,rd,1] 
+	00087: SRP1       
+	00088: IP         
+	00089: SRP1       
+	00090: SHP[rp1,zp0] 
+	00091: SRP1       
+	00092: SHP[rp1,zp0] 
+	00093: SDPVTL[1]  
+	00094: SRP0       
+	00095: CALL       
+	00096: CALL       
+	00097: SRP0       
+	00098: MDRP[nrp0,nmd,rd,0] 
+	00099: IUP[y]     
+	00100: SVTCA[x-axis] 
+	00101: DELTAP1    
+	00102: DELTAP1    
+	00103: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual       Rep-  1 Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual       Rep-  1 Y-Short X-Short Off
+	 11:  YDual               Y-Short X-Short On
+	 12:  YDual       Rep-  1 Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short         On
+	 20:        XDual         Y-Short         Off
+	 21:                      Y-Short X-Short On
+	 22:                      Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:                      Y-Short X-Short On
+	 31:              Rep-  3 Y-Short X-Short Off
+	 35:                      Y-Short X-Short On
+	 36:              Rep-  4 Y-Short X-Short Off
+	 41:  YDual                       X-Short On
+	 42:  YDual                       X-Short Off
+	 43:  YDual               Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short         On
+	 45:  YDual XDual         Y-Short         Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:  YDual XDual Rep-  2 Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short X-Short On
+	 52:  YDual XDual Rep-  2 Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   594,   438)  ->  Abs (   594,   438)
+	  1: Rel (   -58,    18)  ->  Abs (   536,   456)
+	  2: Rel (   -67,   116)  ->  Abs (   469,   572)
+	  3: Rel (     0,    55)  ->  Abs (   469,   627)
+	  4: Rel (     0,    83)  ->  Abs (   469,   710)
+	  5: Rel (    63,   248)  ->  Abs (   532,   958)
+	  6: Rel (    23,    84)  ->  Abs (   555,  1042)
+	  7: Rel (     0,    82)  ->  Abs (   555,  1124)
+	  8: Rel (     0,    68)  ->  Abs (   555,  1192)
+	  9: Rel (   -58,    69)  ->  Abs (   497,  1261)
+	 10: Rel (   -79,    27)  ->  Abs (   418,  1288)
+	 11: Rel (   -82,     8)  ->  Abs (   336,  1296)
+	 12: Rel (   -35,     3)  ->  Abs (   301,  1299)
+	 13: Rel (   -41,    44)  ->  Abs (   260,  1343)
+	 14: Rel (     0,    31)  ->  Abs (   260,  1374)
+	 15: Rel (     0,    90)  ->  Abs (   260,  1464)
+	 16: Rel (   139,     0)  ->  Abs (   399,  1464)
+	 17: Rel (   150,     0)  ->  Abs (   549,  1464)
+	 18: Rel (   192,  -175)  ->  Abs (   741,  1289)
+	 19: Rel (     0,  -132)  ->  Abs (   741,  1157)
+	 20: Rel (     0,   -82)  ->  Abs (   741,  1075)
+	 21: Rel (   -43,  -162)  ->  Abs (   698,   913)
+	 22: Rel (   -49,  -188)  ->  Abs (   649,   725)
+	 23: Rel (     0,   -80)  ->  Abs (   649,   645)
+	 24: Rel (     0,   -37)  ->  Abs (   649,   608)
+	 25: Rel (    69,   -76)  ->  Abs (   718,   532)
+	 26: Rel (   148,   -12)  ->  Abs (   866,   520)
+	 27: Rel (    64,    -5)  ->  Abs (   930,   515)
+	 28: Rel (     0,   -58)  ->  Abs (   930,   457)
+	 29: Rel (     0,   -93)  ->  Abs (   930,   364)
+	 30: Rel (   -96,    -8)  ->  Abs (   834,   356)
+	 31: Rel (  -116,   -10)  ->  Abs (   718,   346)
+	 32: Rel (  -138,   -41)  ->  Abs (   580,   305)
+	 33: Rel (   -79,   -80)  ->  Abs (   501,   225)
+	 34: Rel (   -28,  -101)  ->  Abs (   473,   124)
+	 35: Rel (   -21,  -112)  ->  Abs (   452,    12)
+	 36: Rel (   -22,  -122)  ->  Abs (   430,  -110)
+	 37: Rel (   -32,  -105)  ->  Abs (   398,  -215)
+	 38: Rel (   -95,  -129)  ->  Abs (   303,  -344)
+	 39: Rel (  -129,   -83)  ->  Abs (   174,  -427)
+	 40: Rel (  -168,   -34)  ->  Abs (     6,  -461)
+	 41: Rel (   -90,     0)  ->  Abs (   -84,  -461)
+	 42: Rel (   -40,     0)  ->  Abs (  -124,  -461)
+	 43: Rel (   -58,    53)  ->  Abs (  -182,  -408)
+	 44: Rel (     0,    35)  ->  Abs (  -182,  -373)
+	 45: Rel (     0,    92)  ->  Abs (  -182,  -281)
+	 46: Rel (    92,     0)  ->  Abs (   -90,  -281)
+	 47: Rel (   111,     0)  ->  Abs (    21,  -281)
+	 48: Rel (   104,    31)  ->  Abs (   125,  -250)
+	 49: Rel (    83,    66)  ->  Abs (   208,  -184)
+	 50: Rel (    37,    98)  ->  Abs (   245,   -86)
+	 51: Rel (    30,   135)  ->  Abs (   275,    49)
+	 52: Rel (    36,   164)  ->  Abs (   311,   213)
+	 53: Rel (    50,   109)  ->  Abs (   361,   322)
+	 54: Rel (   137,   103)  ->  Abs (   498,   425)
+
+	Glyph  40: off = 0x00001DB2, len = 68
+	  numberOfContours:	1
+	  xMin:			274
+	  yMin:			287
+	  xMax:			766
+	  yMax:			776
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	22
+	00000: NPUSHB      (11):     0    31     6   143     6   159     6     3     6     3 
+	                             9 
+	00013: SVTCA[y-axis] 
+	00014: MDAP[rd]   
+	00015: MDRP[nrp0,md,rd,1] 
+	00016: SVTCA[x-axis] 
+	00017: MDAP[rd]   
+	00018: DELTAP1    
+	00019: MDRP[nrp0,md,rd,1] 
+	00020: IUP[y]     
+	00021: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   766,   567)  ->  Abs (   766,   567)
+	  1: Rel (     0,  -112)  ->  Abs (   766,   455)
+	  2: Rel (  -175,  -168)  ->  Abs (   591,   287)
+	  3: Rel (  -112,     0)  ->  Abs (   479,   287)
+	  4: Rel (   -86,     0)  ->  Abs (   393,   287)
+	  5: Rel (  -119,   120)  ->  Abs (   274,   407)
+	  6: Rel (     0,    87)  ->  Abs (   274,   494)
+	  7: Rel (     0,   111)  ->  Abs (   274,   605)
+	  8: Rel (   181,   171)  ->  Abs (   455,   776)
+	  9: Rel (   110,     0)  ->  Abs (   565,   776)
+	 10: Rel (    85,     0)  ->  Abs (   650,   776)
+	 11: Rel (   116,  -120)  ->  Abs (   766,   656)
+
+	Glyph  41: off = 0x00001DF6, len = 270
+	  numberOfContours:	2
+	  xMin:			127
+	  yMin:			41
+	  xMax:			1231
+	  yMax:			944
+
+	EndPoints
+	---------
+	  0:  24
+	  1:  49
+
+	  Length of Instructions:	120
+	00000: NPUSHB      (60):     6    49    22    49     2   124    48   140    48     2 
+	                            55    40     1     4    38    20    38   100    38     3 
+	                           138    34     1   138    33     1     6    24    22    24 
+	                             2   124    23   140    23     2    55    15     1     4 
+	                            13    20    13   100    13     3   138     9     1   138 
+	                             8     1    42    31   143     6     1     6    17    25 
+	00062: PUSHW[1]            -40 
+	00065: PUSHB[4]             13    17    72     0 
+	00070: PUSHW[1]            -40 
+	00073: NPUSHB      (15):    13    17    72    45   227    25    29   226    36    20 
+	                           227     0     4   226    11 
+	00090: MDAP[rd]   
+	00091: MIRP[nrp0,md,rd,1] 
+	00092: IP         
+	00093: MIRP[nrp0,md,rd,1] 
+	00094: MDRP[srp0,nmd,rd,0] 
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: IP         
+	00097: MIRP[nrp0,md,rd,1] 
+	00098: CALL       
+	00099: CALL       
+	00100: SVTCA[y-axis] 
+	00101: MDAP[rd]   
+	00102: MDRP[nrp0,nmd,rd,0] 
+	00103: DELTAP1    
+	00104: IP         
+	00105: IP         
+	00106: IUP[y]     
+	00107: IUP[x]     
+	00108: DELTAP1    
+	00109: DELTAP1    
+	00110: DELTAP1    
+	00111: DELTAP1    
+	00112: DELTAP1    
+	00113: DELTAP1    
+	00114: DELTAP1    
+	00115: DELTAP1    
+	00116: DELTAP1    
+	00117: DELTAP1    
+	00118: DELTAP1    
+	00119: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual       Rep-  2 Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 15:  YDual               Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:                      Y-Short X-Short Off
+	 23:                      Y-Short X-Short On
+	 24:                      Y-Short X-Short Off
+	 25:                      Y-Short         On
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short X-Short On
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:  YDual                       X-Short On
+	 32:  YDual                       X-Short Off
+	 33:  YDual       Rep-  2 Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 40:  YDual               Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:        XDual         Y-Short X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         Off
+	 47:                      Y-Short X-Short Off
+	 48:                      Y-Short X-Short On
+	 49:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   297,   487)  ->  Abs (   297,   487)
+	  1: Rel (   106,  -149)  ->  Abs (   403,   338)
+	  2: Rel (   125,  -139)  ->  Abs (   528,   199)
+	  3: Rel (    33,   -36)  ->  Abs (   561,   163)
+	  4: Rel (     0,   -54)  ->  Abs (   561,   109)
+	  5: Rel (     0,   -68)  ->  Abs (   561,    41)
+	  6: Rel (   -84,     0)  ->  Abs (   477,    41)
+	  7: Rel (   -36,     0)  ->  Abs (   441,    41)
+	  8: Rel (   -67,    55)  ->  Abs (   374,    96)
+	  9: Rel (  -181,   244)  ->  Abs (   193,   340)
+	 10: Rel (   -66,   108)  ->  Abs (   127,   448)
+	 11: Rel (     0,    58)  ->  Abs (   127,   506)
+	 12: Rel (     0,    30)  ->  Abs (   127,   536)
+	 13: Rel (    45,    60)  ->  Abs (   172,   596)
+	 14: Rel (   139,   118)  ->  Abs (   311,   714)
+	 15: Rel (   257,   194)  ->  Abs (   568,   908)
+	 16: Rel (    68,    36)  ->  Abs (   636,   944)
+	 17: Rel (    21,     0)  ->  Abs (   657,   944)
+	 18: Rel (    36,     0)  ->  Abs (   693,   944)
+	 19: Rel (    46,   -39)  ->  Abs (   739,   905)
+	 20: Rel (     0,   -31)  ->  Abs (   739,   874)
+	 21: Rel (     0,   -29)  ->  Abs (   739,   845)
+	 22: Rel (   -25,   -41)  ->  Abs (   714,   804)
+	 23: Rel (   -44,   -30)  ->  Abs (   670,   774)
+	 24: Rel (  -203,  -136)  ->  Abs (   467,   638)
+	 25: Rel (   321,  -151)  ->  Abs (   788,   487)
+	 26: Rel (   106,  -149)  ->  Abs (   894,   338)
+	 27: Rel (   126,  -139)  ->  Abs (  1020,   199)
+	 28: Rel (    33,   -36)  ->  Abs (  1053,   163)
+	 29: Rel (     0,   -54)  ->  Abs (  1053,   109)
+	 30: Rel (     0,   -68)  ->  Abs (  1053,    41)
+	 31: Rel (   -84,     0)  ->  Abs (   969,    41)
+	 32: Rel (   -37,     0)  ->  Abs (   932,    41)
+	 33: Rel (   -66,    55)  ->  Abs (   866,    96)
+	 34: Rel (  -181,   244)  ->  Abs (   685,   340)
+	 35: Rel (   -67,   108)  ->  Abs (   618,   448)
+	 36: Rel (     0,    58)  ->  Abs (   618,   506)
+	 37: Rel (     0,    30)  ->  Abs (   618,   536)
+	 38: Rel (    46,    60)  ->  Abs (   664,   596)
+	 39: Rel (   139,   118)  ->  Abs (   803,   714)
+	 40: Rel (   257,   194)  ->  Abs (  1060,   908)
+	 41: Rel (    68,    36)  ->  Abs (  1128,   944)
+	 42: Rel (    21,     0)  ->  Abs (  1149,   944)
+	 43: Rel (    36,     0)  ->  Abs (  1185,   944)
+	 44: Rel (    46,   -39)  ->  Abs (  1231,   905)
+	 45: Rel (     0,   -31)  ->  Abs (  1231,   874)
+	 46: Rel (     0,   -32)  ->  Abs (  1231,   842)
+	 47: Rel (   -30,   -41)  ->  Abs (  1201,   801)
+	 48: Rel (   -40,   -27)  ->  Abs (  1161,   774)
+	 49: Rel (  -202,  -136)  ->  Abs (   959,   638)
+
+	Glyph  42: off = 0x00001F04, len = 262
+	  numberOfContours:	2
+	  xMin:			47
+	  yMin:			41
+	  xMax:			1151
+	  yMax:			944
+
+	EndPoints
+	---------
+	  0:  24
+	  1:  49
+
+	  Length of Instructions:	113
+	00000: NPUSHB      (81):     9    49    25    49     2   115    48   131    48     2 
+	                            56    40     1    11    38    27    38   107    38     3 
+	                           133    34     1   132    33     1     9    24    25    24 
+	                             2   115    23   131    23     2    56    15     1    11 
+	                            13    27    13   107    13     3   133     9     1   132 
+	                             8     1    17     6   143    42     1    42    31    25 
+	                            40    13    17    72     0    40    13    17    72     0 
+	                             4   226    20   227    11    25    29   226    36   227 
+	                            45 
+	00083: MDAP[rd]   
+	00084: MIRP[srp0,md,rd,1] 
+	00085: MIRP[nrp0,md,rd,1] 
+	00086: IP         
+	00087: MDRP[srp0,nmd,rd,0] 
+	00088: MIRP[nrp0,md,rd,1] 
+	00089: MIRP[nrp0,md,rd,1] 
+	00090: IP         
+	00091: CALL       
+	00092: CALL       
+	00093: SVTCA[y-axis] 
+	00094: MDAP[rd]   
+	00095: MDRP[nrp0,nmd,rd,0] 
+	00096: DELTAP1    
+	00097: IP         
+	00098: IP         
+	00099: IUP[y]     
+	00100: IUP[x]     
+	00101: DELTAP1    
+	00102: DELTAP1    
+	00103: DELTAP1    
+	00104: DELTAP1    
+	00105: DELTAP1    
+	00106: DELTAP1    
+	00107: DELTAP1    
+	00108: DELTAP1    
+	00109: DELTAP1    
+	00110: DELTAP1    
+	00111: DELTAP1    
+	00112: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual Rep-  2 Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:              Rep-  1 Y-Short X-Short Off
+	 15:                      Y-Short         Off
+	 16:                      Y-Short X-Short Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual               Y-Short         On
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual               Y-Short X-Short On
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual Rep-  2 Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:              Rep-  1 Y-Short X-Short Off
+	 40:                      Y-Short         Off
+	 41:                      Y-Short X-Short Off
+	 42:  YDual                       X-Short On
+	 43:  YDual                       X-Short Off
+	 44:  YDual               Y-Short X-Short Off
+	 45:  YDual XDual         Y-Short         On
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:  YDual XDual         Y-Short X-Short On
+	 49:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   981,   498)  ->  Abs (   981,   498)
+	  1: Rel (  -106,   149)  ->  Abs (   875,   647)
+	  2: Rel (  -125,   139)  ->  Abs (   750,   786)
+	  3: Rel (   -33,    36)  ->  Abs (   717,   822)
+	  4: Rel (     0,    55)  ->  Abs (   717,   877)
+	  5: Rel (     0,    67)  ->  Abs (   717,   944)
+	  6: Rel (    84,     0)  ->  Abs (   801,   944)
+	  7: Rel (    36,     0)  ->  Abs (   837,   944)
+	  8: Rel (    67,   -55)  ->  Abs (   904,   889)
+	  9: Rel (   181,  -243)  ->  Abs (  1085,   646)
+	 10: Rel (    66,  -109)  ->  Abs (  1151,   537)
+	 11: Rel (     0,   -58)  ->  Abs (  1151,   479)
+	 12: Rel (     0,   -30)  ->  Abs (  1151,   449)
+	 13: Rel (   -45,   -60)  ->  Abs (  1106,   389)
+	 14: Rel (  -139,  -118)  ->  Abs (   967,   271)
+	 15: Rel (  -257,  -194)  ->  Abs (   710,    77)
+	 16: Rel (   -68,   -36)  ->  Abs (   642,    41)
+	 17: Rel (   -21,     0)  ->  Abs (   621,    41)
+	 18: Rel (   -36,     0)  ->  Abs (   585,    41)
+	 19: Rel (   -46,    39)  ->  Abs (   539,    80)
+	 20: Rel (     0,    31)  ->  Abs (   539,   111)
+	 21: Rel (     0,    30)  ->  Abs (   539,   141)
+	 22: Rel (    25,    40)  ->  Abs (   564,   181)
+	 23: Rel (    44,    30)  ->  Abs (   608,   211)
+	 24: Rel (   203,   137)  ->  Abs (   811,   348)
+	 25: Rel (  -322,   150)  ->  Abs (   489,   498)
+	 26: Rel (  -106,   149)  ->  Abs (   383,   647)
+	 27: Rel (  -125,   139)  ->  Abs (   258,   786)
+	 28: Rel (   -33,    36)  ->  Abs (   225,   822)
+	 29: Rel (     0,    55)  ->  Abs (   225,   877)
+	 30: Rel (     0,    67)  ->  Abs (   225,   944)
+	 31: Rel (    84,     0)  ->  Abs (   309,   944)
+	 32: Rel (    37,     0)  ->  Abs (   346,   944)
+	 33: Rel (    66,   -55)  ->  Abs (   412,   889)
+	 34: Rel (   181,  -243)  ->  Abs (   593,   646)
+	 35: Rel (    66,  -109)  ->  Abs (   659,   537)
+	 36: Rel (     0,   -58)  ->  Abs (   659,   479)
+	 37: Rel (     0,   -30)  ->  Abs (   659,   449)
+	 38: Rel (   -45,   -60)  ->  Abs (   614,   389)
+	 39: Rel (  -139,  -118)  ->  Abs (   475,   271)
+	 40: Rel (  -257,  -194)  ->  Abs (   218,    77)
+	 41: Rel (   -68,   -36)  ->  Abs (   150,    41)
+	 42: Rel (   -21,     0)  ->  Abs (   129,    41)
+	 43: Rel (   -36,     0)  ->  Abs (    93,    41)
+	 44: Rel (   -46,    39)  ->  Abs (    47,    80)
+	 45: Rel (     0,    31)  ->  Abs (    47,   111)
+	 46: Rel (     0,    30)  ->  Abs (    47,   141)
+	 47: Rel (    25,    40)  ->  Abs (    72,   181)
+	 48: Rel (    45,    30)  ->  Abs (   117,   211)
+	 49: Rel (   202,   137)  ->  Abs (   319,   348)
+
+	Glyph  43: off = 0x0000200A, len = 74
+	  numberOfContours:	1
+	  xMin:			184
+	  yMin:			612
+	  xMax:			1071
+	  yMax:			834
+
+	EndPoints
+	---------
+	  0:  15
+
+	  Length of Instructions:	18
+	00000: PUSHB[7]              7    17     0    14     9   153     5 
+	00008: SVTCA[y-axis] 
+	00009: MDAP[rd]   
+	00010: MIRP[srp0,md,rd,1] 
+	00011: MDRP[nrp0,nmd,rd,0] 
+	00012: SVTCA[x-axis] 
+	00013: MDAP[rd]   
+	00014: SRP0       
+	00015: MDRP[nrp0,nmd,rd,2] 
+	00016: IUP[y]     
+	00017: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual Rep-  1 Y-Short X-Short Off
+	  4:  YDual               Y-Short         Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short         On
+	  8:        XDual         Y-Short         Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:                      Y-Short         Off
+	 12:                      Y-Short X-Short On
+	 13:                      Y-Short X-Short Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   184,   709)  ->  Abs (   184,   709)
+	  1: Rel (     0,    37)  ->  Abs (   184,   746)
+	  2: Rel (    63,    54)  ->  Abs (   247,   800)
+	  3: Rel (   100,    13)  ->  Abs (   347,   813)
+	  4: Rel (   524,    21)  ->  Abs (   871,   834)
+	  5: Rel (   124,     0)  ->  Abs (   995,   834)
+	  6: Rel (    76,     0)  ->  Abs (  1071,   834)
+	  7: Rel (     0,   -74)  ->  Abs (  1071,   760)
+	  8: Rel (     0,  -117)  ->  Abs (  1071,   643)
+	  9: Rel (   -96,     0)  ->  Abs (   975,   643)
+	 10: Rel (  -124,     0)  ->  Abs (   851,   643)
+	 11: Rel (  -409,   -14)  ->  Abs (   442,   629)
+	 12: Rel (   -51,    -6)  ->  Abs (   391,   623)
+	 13: Rel (   -85,   -11)  ->  Abs (   306,   612)
+	 14: Rel (   -48,     0)  ->  Abs (   258,   612)
+	 15: Rel (   -74,     0)  ->  Abs (   184,   612)
+
+	Glyph  44: off = 0x00002054, len = 78
+	  numberOfContours:	1
+	  xMin:			184
+	  yMin:			612
+	  xMax:			1829
+	  yMax:			834
+
+	EndPoints
+	---------
+	  0:  16
+
+	  Length of Instructions:	18
+	00000: PUSHB[7]              8    18     0    15    10   153     6 
+	00008: SVTCA[y-axis] 
+	00009: MDAP[rd]   
+	00010: MIRP[srp0,md,rd,1] 
+	00011: MDRP[nrp0,nmd,rd,0] 
+	00012: SVTCA[x-axis] 
+	00013: MDAP[rd]   
+	00014: SRP0       
+	00015: MDRP[nrp0,nmd,rd,2] 
+	00016: IUP[y]     
+	00017: IUP[x]     
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual               Y-Short         On
+	  5:  YDual               Y-Short         Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:  YDual                       X-Short On
+	 11:  YDual                       X-Short Off
+	 12:                      Y-Short         Off
+	 13:                      Y-Short X-Short On
+	 14:                      Y-Short X-Short Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   184,   709)  ->  Abs (   184,   709)
+	  1: Rel (     0,    42)  ->  Abs (   184,   751)
+	  2: Rel (    78,    55)  ->  Abs (   262,   806)
+	  3: Rel (    69,     4)  ->  Abs (   331,   810)
+	  4: Rel (   681,    14)  ->  Abs (  1012,   824)
+	  5: Rel (   611,    10)  ->  Abs (  1623,   834)
+	  6: Rel (   130,     0)  ->  Abs (  1753,   834)
+	  7: Rel (    76,     0)  ->  Abs (  1829,   834)
+	  8: Rel (     0,   -74)  ->  Abs (  1829,   760)
+	  9: Rel (     0,  -117)  ->  Abs (  1829,   643)
+	 10: Rel (   -96,     0)  ->  Abs (  1733,   643)
+	 11: Rel (  -170,     0)  ->  Abs (  1563,   643)
+	 12: Rel ( -1126,   -15)  ->  Abs (   437,   628)
+	 13: Rel (   -46,    -5)  ->  Abs (   391,   623)
+	 14: Rel (   -85,   -11)  ->  Abs (   306,   612)
+	 15: Rel (   -48,     0)  ->  Abs (   258,   612)
+	 16: Rel (   -74,     0)  ->  Abs (   184,   612)
+
+	Glyph  45: off = 0x000020A2, len = 166
+	  numberOfContours:	2
+	  xMin:			418
+	  yMin:			897
+	  xMax:			1227
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  40
+
+	  Length of Instructions:	42
+	00000: NPUSHB      (23):    26    20     0   176     6   178    33    12     7    20 
+	                           177    29   175    36   180    23    15   180     3   175 
+	                             0   177     9 
+	00025: MDAP[rd]   
+	00026: MIRP[nrp0,md,rd,1] 
+	00027: MIRP[srp0,md,rd,1] 
+	00028: MIRP[nrp0,nmd,rd,0] 
+	00029: MDRP[srp0,nmd,rd,0] 
+	00030: MIRP[nrp0,nmd,rd,0] 
+	00031: MIRP[srp0,md,rd,1] 
+	00032: MIRP[nrp0,md,rd,1] 
+	00033: SVTCA[y-axis] 
+	00034: MIAP[rd+ci] 
+	00035: SHP[rp1,zp0] 
+	00036: MIRP[srp0,nmd,rd,0] 
+	00037: MIRP[nrp0,md,rd,1] 
+	00038: IP         
+	00039: IP         
+	00040: IUP[y]     
+	00041: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual Rep-  1 Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:        XDual                 X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short         On
+	 21:        XDual Rep-  1 Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:                      Y-Short X-Short Off
+	 26:  YDual                       X-Short On
+	 27:  YDual                       X-Short Off
+	 28:  YDual               Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short         On
+	 30:  YDual XDual         Y-Short         Off
+	 31:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short Off
+	 39:                      Y-Short X-Short On
+	 40:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   602,  1196)  ->  Abs (   602,  1196)
+	  1: Rel (    51,    -6)  ->  Abs (   653,  1190)
+	  2: Rel (    64,   -71)  ->  Abs (   717,  1119)
+	  3: Rel (     0,   -48)  ->  Abs (   717,  1071)
+	  4: Rel (     0,   -68)  ->  Abs (   717,  1003)
+	  5: Rel (  -111,  -106)  ->  Abs (   606,   897)
+	  6: Rel (   -67,     0)  ->  Abs (   539,   897)
+	  7: Rel (   -57,     0)  ->  Abs (   482,   897)
+	  8: Rel (   -64,    80)  ->  Abs (   418,   977)
+	  9: Rel (     0,    72)  ->  Abs (   418,  1049)
+	 10: Rel (     0,   114)  ->  Abs (   418,  1163)
+	 11: Rel (   203,   301)  ->  Abs (   621,  1464)
+	 12: Rel (    73,     0)  ->  Abs (   694,  1464)
+	 13: Rel (    24,     0)  ->  Abs (   718,  1464)
+	 14: Rel (    38,   -35)  ->  Abs (   756,  1429)
+	 15: Rel (     0,   -22)  ->  Abs (   756,  1407)
+	 16: Rel (     0,   -29)  ->  Abs (   756,  1378)
+	 17: Rel (   -26,   -37)  ->  Abs (   730,  1341)
+	 18: Rel (   -42,   -30)  ->  Abs (   688,  1311)
+	 19: Rel (   -61,   -44)  ->  Abs (   627,  1267)
+	 20: Rel (   446,   -71)  ->  Abs (  1073,  1196)
+	 21: Rel (    51,    -6)  ->  Abs (  1124,  1190)
+	 22: Rel (    64,   -71)  ->  Abs (  1188,  1119)
+	 23: Rel (     0,   -48)  ->  Abs (  1188,  1071)
+	 24: Rel (     0,   -68)  ->  Abs (  1188,  1003)
+	 25: Rel (  -111,  -106)  ->  Abs (  1077,   897)
+	 26: Rel (   -67,     0)  ->  Abs (  1010,   897)
+	 27: Rel (   -57,     0)  ->  Abs (   953,   897)
+	 28: Rel (   -64,    80)  ->  Abs (   889,   977)
+	 29: Rel (     0,    72)  ->  Abs (   889,  1049)
+	 30: Rel (     0,    61)  ->  Abs (   889,  1110)
+	 31: Rel (    77,   183)  ->  Abs (   966,  1293)
+	 32: Rel (   147,   171)  ->  Abs (  1113,  1464)
+	 33: Rel (    52,     0)  ->  Abs (  1165,  1464)
+	 34: Rel (    24,     0)  ->  Abs (  1189,  1464)
+	 35: Rel (    38,   -35)  ->  Abs (  1227,  1429)
+	 36: Rel (     0,   -22)  ->  Abs (  1227,  1407)
+	 37: Rel (     0,   -33)  ->  Abs (  1227,  1374)
+	 38: Rel (   -32,   -37)  ->  Abs (  1195,  1337)
+	 39: Rel (   -36,   -26)  ->  Abs (  1159,  1311)
+	 40: Rel (   -61,   -44)  ->  Abs (  1098,  1267)
+
+	Glyph  46: off = 0x00002148, len = 166
+	  numberOfContours:	2
+	  xMin:			395
+	  yMin:			897
+	  xMax:			1204
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  40
+
+	  Length of Instructions:	42
+	00000: NPUSHB      (23):    33    12   178    26    20     0   176     6     7    36 
+	                           180    23   175    20   177    29     0   177     9   175 
+	                            15   180     3 
+	00025: MDAP[rd]   
+	00026: MIRP[nrp0,nmd,rd,0] 
+	00027: MIRP[srp0,md,rd,1] 
+	00028: MIRP[nrp0,md,rd,1] 
+	00029: MDRP[srp0,nmd,rd,0] 
+	00030: MIRP[nrp0,md,rd,1] 
+	00031: MIRP[srp0,md,rd,1] 
+	00032: MIRP[nrp0,nmd,rd,0] 
+	00033: SVTCA[y-axis] 
+	00034: MIAP[rd+ci] 
+	00035: MIRP[nrp0,md,rd,1] 
+	00036: IP         
+	00037: IP         
+	00038: MIRP[nrp0,nmd,rd,0] 
+	00039: SHP[rp2,zp1] 
+	00040: IUP[y]     
+	00041: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual       Rep-  1 Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                              X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual               Y-Short         On
+	 21:  YDual       Rep-  1 Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual         Y-Short X-Short Off
+	 29:        XDual         Y-Short         On
+	 30:        XDual         Y-Short         Off
+	 31:              Rep-  1 Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short X-Short On
+	 40:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   549,  1165)  ->  Abs (   549,  1165)
+	  1: Rel (   -51,     6)  ->  Abs (   498,  1171)
+	  2: Rel (   -64,    71)  ->  Abs (   434,  1242)
+	  3: Rel (     0,    48)  ->  Abs (   434,  1290)
+	  4: Rel (     0,    70)  ->  Abs (   434,  1360)
+	  5: Rel (   111,   104)  ->  Abs (   545,  1464)
+	  6: Rel (    67,     0)  ->  Abs (   612,  1464)
+	  7: Rel (    57,     0)  ->  Abs (   669,  1464)
+	  8: Rel (    64,   -79)  ->  Abs (   733,  1385)
+	  9: Rel (     0,   -72)  ->  Abs (   733,  1313)
+	 10: Rel (     0,  -115)  ->  Abs (   733,  1198)
+	 11: Rel (  -203,  -301)  ->  Abs (   530,   897)
+	 12: Rel (   -73,     0)  ->  Abs (   457,   897)
+	 13: Rel (   -24,     0)  ->  Abs (   433,   897)
+	 14: Rel (   -38,    36)  ->  Abs (   395,   933)
+	 15: Rel (     0,    21)  ->  Abs (   395,   954)
+	 16: Rel (     0,    34)  ->  Abs (   395,   988)
+	 17: Rel (    32,    37)  ->  Abs (   427,  1025)
+	 18: Rel (    36,    26)  ->  Abs (   463,  1051)
+	 19: Rel (    61,    43)  ->  Abs (   524,  1094)
+	 20: Rel (   496,    71)  ->  Abs (  1020,  1165)
+	 21: Rel (   -51,     6)  ->  Abs (   969,  1171)
+	 22: Rel (   -64,    71)  ->  Abs (   905,  1242)
+	 23: Rel (     0,    48)  ->  Abs (   905,  1290)
+	 24: Rel (     0,    69)  ->  Abs (   905,  1359)
+	 25: Rel (   111,   105)  ->  Abs (  1016,  1464)
+	 26: Rel (    67,     0)  ->  Abs (  1083,  1464)
+	 27: Rel (    57,     0)  ->  Abs (  1140,  1464)
+	 28: Rel (    64,   -79)  ->  Abs (  1204,  1385)
+	 29: Rel (     0,   -72)  ->  Abs (  1204,  1313)
+	 30: Rel (     0,   -62)  ->  Abs (  1204,  1251)
+	 31: Rel (   -77,  -182)  ->  Abs (  1127,  1069)
+	 32: Rel (  -147,  -172)  ->  Abs (   980,   897)
+	 33: Rel (   -52,     0)  ->  Abs (   928,   897)
+	 34: Rel (   -24,     0)  ->  Abs (   904,   897)
+	 35: Rel (   -38,    36)  ->  Abs (   866,   933)
+	 36: Rel (     0,    21)  ->  Abs (   866,   954)
+	 37: Rel (     0,    34)  ->  Abs (   866,   988)
+	 38: Rel (    32,    37)  ->  Abs (   898,  1025)
+	 39: Rel (    36,    26)  ->  Abs (   934,  1051)
+	 40: Rel (    61,    43)  ->  Abs (   995,  1094)
+
+	Glyph  47: off = 0x000021EE, len = 92
+	  numberOfContours:	1
+	  xMin:			418
+	  yMin:			897
+	  xMax:			756
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	25
+	00000: NPUSHB      (13):     0   176     6   178    12     7    15   180     3   175 
+	                             0   177     9 
+	00015: MDAP[rd]   
+	00016: MIRP[nrp0,md,rd,1] 
+	00017: MIRP[srp0,md,rd,1] 
+	00018: MIRP[nrp0,nmd,rd,0] 
+	00019: SVTCA[y-axis] 
+	00020: MIAP[rd+ci] 
+	00021: MIRP[srp0,nmd,rd,0] 
+	00022: MIRP[nrp0,md,rd,1] 
+	00023: IUP[y]     
+	00024: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual Rep-  1 Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:        XDual                 X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   602,  1196)  ->  Abs (   602,  1196)
+	  1: Rel (    51,    -6)  ->  Abs (   653,  1190)
+	  2: Rel (    64,   -71)  ->  Abs (   717,  1119)
+	  3: Rel (     0,   -48)  ->  Abs (   717,  1071)
+	  4: Rel (     0,   -68)  ->  Abs (   717,  1003)
+	  5: Rel (  -111,  -106)  ->  Abs (   606,   897)
+	  6: Rel (   -67,     0)  ->  Abs (   539,   897)
+	  7: Rel (   -57,     0)  ->  Abs (   482,   897)
+	  8: Rel (   -64,    80)  ->  Abs (   418,   977)
+	  9: Rel (     0,    72)  ->  Abs (   418,  1049)
+	 10: Rel (     0,   114)  ->  Abs (   418,  1163)
+	 11: Rel (   203,   301)  ->  Abs (   621,  1464)
+	 12: Rel (    73,     0)  ->  Abs (   694,  1464)
+	 13: Rel (    24,     0)  ->  Abs (   718,  1464)
+	 14: Rel (    38,   -35)  ->  Abs (   756,  1429)
+	 15: Rel (     0,   -22)  ->  Abs (   756,  1407)
+	 16: Rel (     0,   -29)  ->  Abs (   756,  1378)
+	 17: Rel (   -26,   -37)  ->  Abs (   730,  1341)
+	 18: Rel (   -42,   -30)  ->  Abs (   688,  1311)
+	 19: Rel (   -61,   -44)  ->  Abs (   627,  1267)
+
+	Glyph  48: off = 0x0000224A, len = 92
+	  numberOfContours:	1
+	  xMin:			395
+	  yMin:			897
+	  xMax:			733
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	25
+	00000: NPUSHB      (13):    12   178     0   176     6     7     0   177     9   175 
+	                            15   180     3 
+	00015: MDAP[rd]   
+	00016: MIRP[nrp0,nmd,rd,0] 
+	00017: MIRP[srp0,md,rd,1] 
+	00018: MIRP[nrp0,md,rd,1] 
+	00019: SVTCA[y-axis] 
+	00020: MIAP[rd+ci] 
+	00021: MIRP[nrp0,md,rd,1] 
+	00022: MIRP[nrp0,nmd,rd,0] 
+	00023: IUP[y]     
+	00024: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual       Rep-  1 Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                              X-Short Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   549,  1165)  ->  Abs (   549,  1165)
+	  1: Rel (   -51,     6)  ->  Abs (   498,  1171)
+	  2: Rel (   -64,    71)  ->  Abs (   434,  1242)
+	  3: Rel (     0,    48)  ->  Abs (   434,  1290)
+	  4: Rel (     0,    70)  ->  Abs (   434,  1360)
+	  5: Rel (   111,   104)  ->  Abs (   545,  1464)
+	  6: Rel (    67,     0)  ->  Abs (   612,  1464)
+	  7: Rel (    57,     0)  ->  Abs (   669,  1464)
+	  8: Rel (    64,   -79)  ->  Abs (   733,  1385)
+	  9: Rel (     0,   -72)  ->  Abs (   733,  1313)
+	 10: Rel (     0,  -115)  ->  Abs (   733,  1198)
+	 11: Rel (  -203,  -301)  ->  Abs (   530,   897)
+	 12: Rel (   -73,     0)  ->  Abs (   457,   897)
+	 13: Rel (   -24,     0)  ->  Abs (   433,   897)
+	 14: Rel (   -38,    36)  ->  Abs (   395,   933)
+	 15: Rel (     0,    21)  ->  Abs (   395,   954)
+	 16: Rel (     0,    34)  ->  Abs (   395,   988)
+	 17: Rel (    32,    37)  ->  Abs (   427,  1025)
+	 18: Rel (    36,    26)  ->  Abs (   463,  1051)
+	 19: Rel (    61,    43)  ->  Abs (   524,  1094)
+
+	Glyph  49: off = 0x000022A6, len = 60
+	  numberOfContours:	1
+	  xMin:			266
+	  yMin:			381
+	  xMax:			565
+	  yMax:			680
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	14
+	00000: PUSHB[6]              3   176     9     0   175     6 
+	00007: MDAP[rd]   
+	00008: MIRP[nrp0,md,rd,1] 
+	00009: SVTCA[y-axis] 
+	00010: MDAP[rd]   
+	00011: MIRP[nrp0,md,rd,1] 
+	00012: IUP[y]     
+	00013: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   565,   551)  ->  Abs (   565,   551)
+	  1: Rel (     0,   -69)  ->  Abs (   565,   482)
+	  2: Rel (  -106,  -101)  ->  Abs (   459,   381)
+	  3: Rel (   -68,     0)  ->  Abs (   391,   381)
+	  4: Rel (   -52,     0)  ->  Abs (   339,   381)
+	  5: Rel (   -73,    73)  ->  Abs (   266,   454)
+	  6: Rel (     0,    52)  ->  Abs (   266,   506)
+	  7: Rel (     0,    68)  ->  Abs (   266,   574)
+	  8: Rel (   111,   106)  ->  Abs (   377,   680)
+	  9: Rel (    67,     0)  ->  Abs (   444,   680)
+	 10: Rel (    52,     0)  ->  Abs (   496,   680)
+	 11: Rel (    69,   -74)  ->  Abs (   565,   606)
+
+	Glyph  50: off = 0x000022E2, len = 92
+	  numberOfContours:	1
+	  xMin:			332
+	  yMin:			543
+	  xMax:			670
+	  yMax:			1110
+
+	EndPoints
+	---------
+	  0:  19
+
+	  Length of Instructions:	24
+	00000: NPUSHB      (12):    12   178     0   176     6    15   180     3   175     0 
+	                           177     9 
+	00014: MDAP[rd]   
+	00015: MIRP[nrp0,md,rd,1] 
+	00016: MIRP[srp0,md,rd,1] 
+	00017: MIRP[nrp0,nmd,rd,0] 
+	00018: SVTCA[y-axis] 
+	00019: MDAP[rd]   
+	00020: MIRP[nrp0,md,rd,1] 
+	00021: MIRP[nrp0,nmd,rd,0] 
+	00022: IUP[y]     
+	00023: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual Rep-  1 Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:        XDual                 X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   516,   842)  ->  Abs (   516,   842)
+	  1: Rel (    51,    -6)  ->  Abs (   567,   836)
+	  2: Rel (    64,   -71)  ->  Abs (   631,   765)
+	  3: Rel (     0,   -48)  ->  Abs (   631,   717)
+	  4: Rel (     0,   -69)  ->  Abs (   631,   648)
+	  5: Rel (  -111,  -105)  ->  Abs (   520,   543)
+	  6: Rel (   -67,     0)  ->  Abs (   453,   543)
+	  7: Rel (   -56,     0)  ->  Abs (   397,   543)
+	  8: Rel (   -65,    79)  ->  Abs (   332,   622)
+	  9: Rel (     0,    72)  ->  Abs (   332,   694)
+	 10: Rel (     0,   115)  ->  Abs (   332,   809)
+	 11: Rel (   203,   301)  ->  Abs (   535,  1110)
+	 12: Rel (    74,     0)  ->  Abs (   609,  1110)
+	 13: Rel (    24,     0)  ->  Abs (   633,  1110)
+	 14: Rel (    37,   -36)  ->  Abs (   670,  1074)
+	 15: Rel (     0,   -21)  ->  Abs (   670,  1053)
+	 16: Rel (     0,   -33)  ->  Abs (   670,  1020)
+	 17: Rel (   -31,   -38)  ->  Abs (   639,   982)
+	 18: Rel (   -37,   -25)  ->  Abs (   602,   957)
+	 19: Rel (   -60,   -44)  ->  Abs (   542,   913)
+
+	Glyph  51: off = 0x0000233E, len = 134
+	  numberOfContours:	2
+	  xMin:			176
+	  yMin:			-8
+	  xMax:			627
+	  yMax:			1008
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  31
+
+	  Length of Instructions:	34
+	00000: NPUSHB      (18):    12   178     0   176     6    29   176    23    15   180 
+	                             3   175     0   177     9    20   175    26 
+	00020: MDAP[rd]   
+	00021: MIRP[nrp0,md,rd,1] 
+	00022: MDRP[srp0,nmd,rd,0] 
+	00023: MIRP[nrp0,md,rd,1] 
+	00024: MIRP[srp0,md,rd,1] 
+	00025: MIRP[nrp0,nmd,rd,0] 
+	00026: SVTCA[y-axis] 
+	00027: MDAP[rd]   
+	00028: MIRP[nrp0,md,rd,1] 
+	00029: MDRP[srp0,nmd,rd,0] 
+	00030: MIRP[nrp0,md,rd,1] 
+	00031: MIRP[nrp0,nmd,rd,0] 
+	00032: IUP[y]     
+	00033: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual Rep-  1 Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:                      Y-Short X-Short Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:        XDual                 X-Short Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:                              X-Short On
+	 21:        XDual         Y-Short         Off
+	 22:                      Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   473,   739)  ->  Abs (   473,   739)
+	  1: Rel (    51,    -6)  ->  Abs (   524,   733)
+	  2: Rel (    64,   -70)  ->  Abs (   588,   663)
+	  3: Rel (     0,   -49)  ->  Abs (   588,   614)
+	  4: Rel (     0,   -68)  ->  Abs (   588,   546)
+	  5: Rel (  -111,  -106)  ->  Abs (   477,   440)
+	  6: Rel (   -67,     0)  ->  Abs (   410,   440)
+	  7: Rel (   -57,     0)  ->  Abs (   353,   440)
+	  8: Rel (   -64,    80)  ->  Abs (   289,   520)
+	  9: Rel (     0,    72)  ->  Abs (   289,   592)
+	 10: Rel (     0,   115)  ->  Abs (   289,   707)
+	 11: Rel (   203,   301)  ->  Abs (   492,  1008)
+	 12: Rel (    73,     0)  ->  Abs (   565,  1008)
+	 13: Rel (    24,     0)  ->  Abs (   589,  1008)
+	 14: Rel (    38,   -36)  ->  Abs (   627,   972)
+	 15: Rel (     0,   -22)  ->  Abs (   627,   950)
+	 16: Rel (     0,   -33)  ->  Abs (   627,   917)
+	 17: Rel (   -32,   -37)  ->  Abs (   595,   880)
+	 18: Rel (   -36,   -26)  ->  Abs (   559,   854)
+	 19: Rel (   -61,   -44)  ->  Abs (   498,   810)
+	 20: Rel (   -23,  -648)  ->  Abs (   475,   162)
+	 21: Rel (     0,   -69)  ->  Abs (   475,    93)
+	 22: Rel (  -106,  -101)  ->  Abs (   369,    -8)
+	 23: Rel (   -68,     0)  ->  Abs (   301,    -8)
+	 24: Rel (   -52,     0)  ->  Abs (   249,    -8)
+	 25: Rel (   -73,    73)  ->  Abs (   176,    65)
+	 26: Rel (     0,    52)  ->  Abs (   176,   117)
+	 27: Rel (     0,    69)  ->  Abs (   176,   186)
+	 28: Rel (   111,   105)  ->  Abs (   287,   291)
+	 29: Rel (    67,     0)  ->  Abs (   354,   291)
+	 30: Rel (    52,     0)  ->  Abs (   406,   291)
+	 31: Rel (    69,   -74)  ->  Abs (   475,   217)
+
+	Glyph  52: off = 0x000023C4, len = 222
+	  numberOfContours:	2
+	  xMin:			203
+	  yMin:			-8
+	  xMax:			1004
+	  yMax:			1446
+
+	EndPoints
+	---------
+	  0:  35
+	  1:  47
+
+	  Length of Instructions:	84
+	00000: NPUSHB      (58):   106    34   122    34   138    34     3    54    29    70 
+	                            29    86    29     3   121    21   137    21     2    38 
+	                             5    54     5   102     5     3   144    32     1    32 
+	                             0   153    27     6    11    45   176    39     4     8 
+	                           137    14    18    18    30     3   137    24    36   175 
+	                            79    42    95    42   111    42     3    42 
+	00060: MDAP[rd]   
+	00061: DELTAP1    
+	00062: MIRP[nrp0,md,rd,1] 
+	00063: MDRP[srp0,nmd,rd,0] 
+	00064: MIRP[nrp0,md,rd,1] 
+	00065: MDRP[nrp0,nmd,rd,0] 
+	00066: IP         
+	00067: MDAP[rd]   
+	00068: MDRP[nrp0,nmd,rd,0] 
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: SVTCA[y-axis] 
+	00071: MIAP[rd+ci] 
+	00072: MIRP[srp0,md,rd,1] 
+	00073: MDRP[nrp0,nmd,rd,2] 
+	00074: MIAP[rd+ci] 
+	00075: MIRP[nrp0,md,rd,1] 
+	00076: MDRP[nrp0,md,rd,1] 
+	00077: DELTAP1    
+	00078: IUP[y]     
+	00079: IUP[x]     
+	00080: DELTAP1    
+	00081: DELTAP1    
+	00082: DELTAP1    
+	00083: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:                      Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual Rep-  1 Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual               Y-Short X-Short Off
+	 21:  YDual               Y-Short X-Short On
+	 22:  YDual       Rep-  1 Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:  YDual                       X-Short On
+	 33:  YDual                       X-Short Off
+	 34:  YDual               Y-Short X-Short On
+	 35:  YDual               Y-Short X-Short Off
+	 36:                              X-Short On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual XDual         Y-Short         On
+	 43:  YDual XDual         Y-Short         Off
+	 44:  YDual XDual         Y-Short X-Short Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:        XDual         Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   680,  1280)  ->  Abs (   680,  1280)
+	  1: Rel (  -104,     0)  ->  Abs (   576,  1280)
+	  2: Rel (  -134,  -145)  ->  Abs (   442,  1135)
+	  3: Rel (     0,   -76)  ->  Abs (   442,  1059)
+	  4: Rel (     0,   -63)  ->  Abs (   442,   996)
+	  5: Rel (    68,  -115)  ->  Abs (   510,   881)
+	  6: Rel (    54,   -91)  ->  Abs (   564,   790)
+	  7: Rel (    28,   -97)  ->  Abs (   592,   693)
+	  8: Rel (     0,   -42)  ->  Abs (   592,   651)
+	  9: Rel (     0,   -69)  ->  Abs (   592,   582)
+	 10: Rel (   -82,  -142)  ->  Abs (   510,   440)
+	 11: Rel (   -64,     0)  ->  Abs (   446,   440)
+	 12: Rel (   -30,     0)  ->  Abs (   416,   440)
+	 13: Rel (   -39,    40)  ->  Abs (   377,   480)
+	 14: Rel (     0,    32)  ->  Abs (   377,   512)
+	 15: Rel (     0,    24)  ->  Abs (   377,   536)
+	 16: Rel (    18,    37)  ->  Abs (   395,   573)
+	 17: Rel (    21,    42)  ->  Abs (   416,   615)
+	 18: Rel (     0,    32)  ->  Abs (   416,   647)
+	 19: Rel (     0,    27)  ->  Abs (   416,   674)
+	 20: Rel (   -23,    62)  ->  Abs (   393,   736)
+	 21: Rel (   -46,    63)  ->  Abs (   347,   799)
+	 22: Rel (   -64,    89)  ->  Abs (   283,   888)
+	 23: Rel (   -35,   116)  ->  Abs (   248,  1004)
+	 24: Rel (     0,    55)  ->  Abs (   248,  1059)
+	 25: Rel (     0,   148)  ->  Abs (   248,  1207)
+	 26: Rel (   253,   239)  ->  Abs (   501,  1446)
+	 27: Rel (   204,     0)  ->  Abs (   705,  1446)
+	 28: Rel (   123,     0)  ->  Abs (   828,  1446)
+	 29: Rel (   176,  -119)  ->  Abs (  1004,  1327)
+	 30: Rel (     0,   -74)  ->  Abs (  1004,  1253)
+	 31: Rel (     0,   -77)  ->  Abs (  1004,  1176)
+	 32: Rel (   -93,     0)  ->  Abs (   911,  1176)
+	 33: Rel (   -29,     0)  ->  Abs (   882,  1176)
+	 34: Rel (   -49,    40)  ->  Abs (   833,  1216)
+	 35: Rel (   -79,    64)  ->  Abs (   754,  1280)
+	 36: Rel (  -252, -1118)  ->  Abs (   502,   162)
+	 37: Rel (     0,   -68)  ->  Abs (   502,    94)
+	 38: Rel (  -106,  -102)  ->  Abs (   396,    -8)
+	 39: Rel (   -68,     0)  ->  Abs (   328,    -8)
+	 40: Rel (   -52,     0)  ->  Abs (   276,    -8)
+	 41: Rel (   -73,    73)  ->  Abs (   203,    65)
+	 42: Rel (     0,    52)  ->  Abs (   203,   117)
+	 43: Rel (     0,    69)  ->  Abs (   203,   186)
+	 44: Rel (   110,   105)  ->  Abs (   313,   291)
+	 45: Rel (    68,     0)  ->  Abs (   381,   291)
+	 46: Rel (    52,     0)  ->  Abs (   433,   291)
+	 47: Rel (    69,   -74)  ->  Abs (   502,   217)
+
+	Glyph  53: off = 0x000024A2, len = 166
+	  numberOfContours:	3
+	  xMin:			-115
+	  yMin:			-219
+	  xMax:			1059
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  18
+	  1:  19
+	  2:  20
+
+	  Length of Instructions:	81
+	00000: NPUSHB      (10):    10    14    26    14   138    14     3     9     3     5 
+	00012: PUSHW[1]            -32 
+	00015: NPUSHB      (14):    12    16    72     0     4     1    16     5    20     2 
+	                           233    16   229    19 
+	00031: PUSHW[1]            258 
+	00034: NPUSHB      (18):     9    15    19    19     0    20     6   251    12    64 
+	                            22    12   245     2    21     0   240     2 
+	00054: CALL       
+	00055: CALL       
+	00056: SVTCA[x-axis] 
+	00057: SMD        
+	00058: RTG        
+	00059: SRP0       
+	00060: FLIPON     
+	00061: MIRP[nrp0,md,rd,1] 
+	00062: MDRP[nrp0,nmd,rd,0] 
+	00063: SRP2       
+	00064: IP         
+	00065: MDAP[rd]   
+	00066: SVTCA[y-axis] 
+	00067: MIAP[rd+ci] 
+	00068: MIAP[rd+ci] 
+	00069: MIAP[rd+ci] 
+	00070: MIRP[nrp0,md,rd,1] 
+	00071: MDRP[nrp0,nmd,rd,2] 
+	00072: IUP[y]     
+	00073: IUP[x]     
+	00074: SDS        
+	00075: SDB        
+	00076: DELTAP1    
+	00077: CALL       
+	00078: SDS        
+	00079: SDB        
+	00080: DELTAP1    
+
+	Flags
+	-----
+	  0:                      Y-Short X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual               Y-Short         Off
+	  5:                                      Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:  YDual XDual Rep-  1 Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual         Y-Short         Off
+	 14:              Rep-  1                 Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:              Rep-  1                 On
+
+	Coordinates
+	-----------
+	  0: Rel (  -115,  -100)  ->  Abs (  -115,  -100)
+	  1: Rel (     0,    44)  ->  Abs (  -115,   -56)
+	  2: Rel (    53,    47)  ->  Abs (   -62,    -9)
+	  3: Rel (    62,    19)  ->  Abs (     0,    10)
+	  4: Rel (   303,    96)  ->  Abs (   303,   106)
+	  5: Rel (   467,   389)  ->  Abs (   770,   495)
+	  6: Rel (   111,   240)  ->  Abs (   881,   735)
+	  7: Rel (    21,    45)  ->  Abs (   902,   780)
+	  8: Rel (    42,    43)  ->  Abs (   944,   823)
+	  9: Rel (    43,     0)  ->  Abs (   987,   823)
+	 10: Rel (    33,     0)  ->  Abs (  1020,   823)
+	 11: Rel (    39,   -45)  ->  Abs (  1059,   778)
+	 12: Rel (     0,   -33)  ->  Abs (  1059,   745)
+	 13: Rel (     0,  -118)  ->  Abs (  1059,   627)
+	 14: Rel (  -389,  -455)  ->  Abs (   670,   172)
+	 15: Rel (  -562,  -356)  ->  Abs (   108,  -184)
+	 16: Rel (  -120,     0)  ->  Abs (   -12,  -184)
+	 17: Rel (   -46,     0)  ->  Abs (   -58,  -184)
+	 18: Rel (   -57,    47)  ->  Abs (  -115,  -137)
+	 19: Rel (   744,  1237)  ->  Abs (   629,  1100)
+	 20: Rel (   385, -1319)  ->  Abs (  1014,  -219)
+
+	Glyph  54: off = 0x00002548, len = 218
+	  numberOfContours:	3
+	  xMin:			-115
+	  yMin:			-184
+	  xMax:			1591
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  29
+	  1:  30
+	  2:  31
+
+	  Length of Instructions:	103
+	00000: NPUSHB      (15):    89    11     1    28    40    10    17    72    53     9 
+	                            85     9     2     3    30 
+	00017: PUSHW[1]            258 
+	00020: NPUSHB      (43):    11    16     0   233    19    24    16    15    31     7 
+	                           234     3   229     0     0    32     0    48     0     3 
+	                            12     5    30    30    27    13    11   251    64    19 
+	                             0     0     6    31    27    33    27   246     2    32 
+	                             6   240     2 
+	00065: CALL       
+	00066: CALL       
+	00067: SVTCA[x-axis] 
+	00068: RTG        
+	00069: SRP0       
+	00070: MDRP[nrp0,nmd,rd,0] 
+	00071: SRP2       
+	00072: IP         
+	00073: MDAP[rd]   
+	00074: MDRP[nrp0,nmd,rd,1] 
+	00075: SMD        
+	00076: FLIPON     
+	00077: MIRP[srp0,md,rd,1] 
+	00078: MDRP[nrp0,md,rd,1] 
+	00079: SRP1       
+	00080: IP         
+	00081: MDAP[rd]   
+	00082: SDS        
+	00083: SDB        
+	00084: DELTAP1    
+	00085: SVTCA[y-axis] 
+	00086: MIAP[rd+ci] 
+	00087: MIRP[nrp0,md,rd,1] 
+	00088: MDRP[nrp0,nmd,rd,0] 
+	00089: MIAP[rd+ci] 
+	00090: MDRP[nrp0,nmd,rd,0] 
+	00091: MDRP[srp0,md,rd,1] 
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: SRP1       
+	00094: IP         
+	00095: MIAP[rd+ci] 
+	00096: IUP[y]     
+	00097: IUP[x]     
+	00098: SDS        
+	00099: DELTAP1    
+	00100: CALL       
+	00101: SVTCA[x-axis] 
+	00102: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:              Rep-  1                 Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:                                      Off
+	 11:        XDual                 X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short Off
+	 19:        XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:                      Y-Short         Off
+	 30:                              X-Short On
+	 31:        XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (  1065,   580)  ->  Abs (  1065,   580)
+	  1: Rel (  -291,  -383)  ->  Abs (   774,   197)
+	  2: Rel (  -643,  -381)  ->  Abs (   131,  -184)
+	  3: Rel (  -141,     0)  ->  Abs (   -10,  -184)
+	  4: Rel (   -48,     0)  ->  Abs (   -58,  -184)
+	  5: Rel (   -57,    48)  ->  Abs (  -115,  -136)
+	  6: Rel (     0,    40)  ->  Abs (  -115,   -96)
+	  7: Rel (     0,    79)  ->  Abs (  -115,   -17)
+	  8: Rel (   133,    25)  ->  Abs (    18,     8)
+	  9: Rel (   217,    41)  ->  Abs (   235,    49)
+	 10: Rel (   420,   290)  ->  Abs (   655,   339)
+	 11: Rel (   230,   273)  ->  Abs (   885,   612)
+	 12: Rel (   -49,    34)  ->  Abs (   836,   646)
+	 13: Rel (     0,    54)  ->  Abs (   836,   700)
+	 14: Rel (     0,    48)  ->  Abs (   836,   748)
+	 15: Rel (    82,    73)  ->  Abs (   918,   821)
+	 16: Rel (    51,     0)  ->  Abs (   969,   821)
+	 17: Rel (    49,     0)  ->  Abs (  1018,   821)
+	 18: Rel (    70,   -41)  ->  Abs (  1088,   780)
+	 19: Rel (     4,   -26)  ->  Abs (  1092,   754)
+	 20: Rel (   188,    14)  ->  Abs (  1280,   768)
+	 21: Rel (   126,   135)  ->  Abs (  1406,   903)
+	 22: Rel (    33,    35)  ->  Abs (  1439,   938)
+	 23: Rel (    41,    29)  ->  Abs (  1480,   967)
+	 24: Rel (    31,     0)  ->  Abs (  1511,   967)
+	 25: Rel (    36,     0)  ->  Abs (  1547,   967)
+	 26: Rel (    44,   -43)  ->  Abs (  1591,   924)
+	 27: Rel (     0,   -33)  ->  Abs (  1591,   891)
+	 28: Rel (     0,  -107)  ->  Abs (  1591,   784)
+	 29: Rel (  -326,  -187)  ->  Abs (  1265,   597)
+	 30: Rel (   -98,   503)  ->  Abs (  1167,  1100)
+	 31: Rel (    86, -1196)  ->  Abs (  1253,   -96)
+
+	Glyph  55: off = 0x00002622, len = 292
+	  numberOfContours:	3
+	  xMin:			-115
+	  yMin:			-184
+	  xMax:			1686
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  43
+	  1:  44
+	  2:  45
+
+	  Length of Instructions:	144
+	00000: NPUSHB      (33):    10    41    26    41    42    41     3     9    58    37 
+	                            74    37    90    37     3     2    32    18    32    34 
+	                            32     3    12    35    10     1     3     1    24     9 
+	                            16    72    44 
+	00035: PUSHW[1]            258 
+	00038: NPUSHB      (54):    16    11    42    27    42    43    42     3    15    42 
+	                            30    25    39    11     0   231    16    20    34    25 
+	                            15    45    15     8     1    28     4     8   232     3 
+	                           229    45    44    45    44    36    14    13    11   251 
+	                            64    20     0     0    36     6    47    36   246     2 
+	                            46     6   240     2 
+	00094: CALL       
+	00095: CALL       
+	00096: SVTCA[x-axis] 
+	00097: SRP1       
+	00098: SRP2       
+	00099: IP         
+	00100: RTG        
+	00101: MDAP[rd]   
+	00102: SHP[rp1,zp0] 
+	00103: SMD        
+	00104: FLIPON     
+	00105: MIRP[srp0,md,rd,1] 
+	00106: MDRP[nrp0,md,rd,1] 
+	00107: SRP1       
+	00108: SRP2       
+	00109: IP         
+	00110: IP         
+	00111: MDAP[rd]   
+	00112: MDAP[rd]   
+	00113: SVTCA[y-axis] 
+	00114: MIAP[rd+ci] 
+	00115: MIRP[nrp0,md,rd,1] 
+	00116: SDS        
+	00117: SDB        
+	00118: DELTAP1    
+	00119: MDRP[nrp0,nmd,rd,0] 
+	00120: MIAP[rd+ci] 
+	00121: MDRP[nrp0,nmd,rd,0] 
+	00122: MDRP[srp0,nmd,rd,0] 
+	00123: IP         
+	00124: MIRP[srp0,md,rd,1] 
+	00125: SHP[rp2,zp1] 
+	00126: MDRP[nrp0,nmd,rd,2] 
+	00127: SRP1       
+	00128: IP         
+	00129: IP         
+	00130: SDB        
+	00131: DELTAP1    
+	00132: MDAP[rd]   
+	00133: MIAP[rd+ci] 
+	00134: IUP[y]     
+	00135: IUP[x]     
+	00136: CALL       
+	00137: SDS        
+	00138: DELTAP1    
+	00139: SDB        
+	00140: DELTAP1    
+	00141: DELTAP1    
+	00142: SDB        
+	00143: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                              X-Short Off
+	  2:                                      Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:                                      Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short On
+	 19:        XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short X-Short On
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short X-Short On
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short X-Short On
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual                 X-Short On
+	 35:  YDual XDual                 X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short Off
+	 39:  YDual                       X-Short On
+	 40:  YDual                       X-Short Off
+	 41:  YDual               Y-Short X-Short Off
+	 42:  YDual               Y-Short X-Short On
+	 43:                      Y-Short X-Short Off
+	 44:        XDual Rep-  1         X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   942,   483)  ->  Abs (   942,   483)
+	  1: Rel (  -228,  -262)  ->  Abs (   714,   221)
+	  2: Rel (  -634,  -405)  ->  Abs (    80,  -184)
+	  3: Rel (   -90,     0)  ->  Abs (   -10,  -184)
+	  4: Rel (   -48,     0)  ->  Abs (   -58,  -184)
+	  5: Rel (   -57,    48)  ->  Abs (  -115,  -136)
+	  6: Rel (     0,    40)  ->  Abs (  -115,   -96)
+	  7: Rel (     0,    72)  ->  Abs (  -115,   -24)
+	  8: Rel (    90,    26)  ->  Abs (   -25,     2)
+	  9: Rel (   161,    47)  ->  Abs (   136,    49)
+	 10: Rel (   482,   311)  ->  Abs (   618,   360)
+	 11: Rel (   144,   162)  ->  Abs (   762,   522)
+	 12: Rel (   -94,    54)  ->  Abs (   668,   576)
+	 13: Rel (     0,    86)  ->  Abs (   668,   662)
+	 14: Rel (     0,    42)  ->  Abs (   668,   704)
+	 15: Rel (    57,    76)  ->  Abs (   725,   780)
+	 16: Rel (    61,     0)  ->  Abs (   786,   780)
+	 17: Rel (    55,     0)  ->  Abs (   841,   780)
+	 18: Rel (    40,   -45)  ->  Abs (   881,   735)
+	 19: Rel (    34,   -39)  ->  Abs (   915,   696)
+	 20: Rel (    41,     0)  ->  Abs (   956,   696)
+	 21: Rel (    28,     0)  ->  Abs (   984,   696)
+	 22: Rel (    58,    23)  ->  Abs (  1042,   719)
+	 23: Rel (    47,    43)  ->  Abs (  1089,   762)
+	 24: Rel (    65,    59)  ->  Abs (  1154,   821)
+	 25: Rel (    50,     0)  ->  Abs (  1204,   821)
+	 26: Rel (    24,     0)  ->  Abs (  1228,   821)
+	 27: Rel (    45,   -24)  ->  Abs (  1273,   797)
+	 28: Rel (    41,   -53)  ->  Abs (  1314,   744)
+	 29: Rel (    32,   -43)  ->  Abs (  1346,   701)
+	 30: Rel (    20,   -19)  ->  Abs (  1366,   682)
+	 31: Rel (    69,    34)  ->  Abs (  1435,   716)
+	 32: Rel (    50,    97)  ->  Abs (  1485,   813)
+	 33: Rel (    51,    94)  ->  Abs (  1536,   907)
+	 34: Rel (    57,     0)  ->  Abs (  1593,   907)
+	 35: Rel (    93,     0)  ->  Abs (  1686,   907)
+	 36: Rel (     0,   -88)  ->  Abs (  1686,   819)
+	 37: Rel (     0,   -75)  ->  Abs (  1686,   744)
+	 38: Rel (  -233,  -248)  ->  Abs (  1453,   496)
+	 39: Rel (  -103,     0)  ->  Abs (  1350,   496)
+	 40: Rel (   -49,     0)  ->  Abs (  1301,   496)
+	 41: Rel (   -76,    48)  ->  Abs (  1225,   544)
+	 42: Rel (   -47,    60)  ->  Abs (  1178,   604)
+	 43: Rel (   -69,   -94)  ->  Abs (  1109,   510)
+	 44: Rel (    58,   590)  ->  Abs (  1167,  1100)
+	 45: Rel (   125, -1196)  ->  Abs (  1292,   -96)
+
+	Glyph  56: off = 0x00002746, len = 280
+	  numberOfContours:	4
+	  xMin:			-115
+	  yMin:			-184
+	  xMax:			1495
+	  yMax:			1400
+
+	EndPoints
+	---------
+	  0:  34
+	  1:  35
+	  2:  36
+	  3:  37
+
+	  Length of Instructions:	150
+	00000: NPUSHB      (34):    27    25    43    25    91    25   107    25     4   110 
+	                            24     1     6    19     1    11    69    18    85    18 
+	                             2    23    11     1    38    10     1    10     0    26 
+	                             0     2    12    37 
+	00036: PUSHW[3]            259    35   258 
+	00043: NPUSHB      (28):    28     0    44     0     2     3     0    11    18    26 
+	                            28     5    33    20    16    15    36     8   231    64 
+	                             3   229    30    13    36    37    35    26 
+	00073: PUSHW[1]            -32 
+	00076: NPUSHB      (29):    14    17    72    15    11    31    11     2    15     4 
+	                             0    11    13    18    26    30    35    36     8    22 
+	                             6    39    22   246     2    38     6   240     2 
+	00107: CALL       
+	00108: CALL       
+	00109: SVTCA[x-axis] 
+	00110: SRP1       
+	00111: SRP2       
+	00112: SLOOP      
+	00113: IP         
+	00114: SDS        
+	00115: SDB        
+	00116: DELTAP1    
+	00117: CALL       
+	00118: RTG        
+	00119: MDAP[rd]   
+	00120: MDRP[nrp0,nmd,rd,2] 
+	00121: MDAP[rd]   
+	00122: MDAP[rd]   
+	00123: MDAP[rd]   
+	00124: SVTCA[y-axis] 
+	00125: MIAP[rd+ci] 
+	00126: SMD        
+	00127: FLIPON     
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: MDRP[nrp0,nmd,rd,0] 
+	00130: MIAP[rd+ci] 
+	00131: MDRP[nrp0,nmd,rd,0] 
+	00132: MDRP[nrp0,md,rd,1] 
+	00133: SLOOP      
+	00134: IP         
+	00135: SDS        
+	00136: DELTAP1    
+	00137: MIAP[rd+ci] 
+	00138: MIAP[rd+ci] 
+	00139: IUP[y]     
+	00140: IUP[x]     
+	00141: SDB        
+	00142: DELTAP1    
+	00143: DELTAP1    
+	00144: DELTAP1    
+	00145: DELTAP1    
+	00146: SDB        
+	00147: DELTAP1    
+	00148: DELTAP1    
+	00149: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:                                      Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:                                      Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual               Y-Short X-Short Off
+	 13:  YDual XDual         Y-Short         On
+	 14:  YDual XDual         Y-Short         Off
+	 15:  YDual XDual         Y-Short X-Short Off
+	 16:  YDual XDual                 X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:        XDual         Y-Short X-Short On
+	 19:                                      Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short         On
+	 23:        XDual         Y-Short         Off
+	 24:                      Y-Short X-Short On
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short X-Short On
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short X-Short On
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:                              X-Short On
+	 36:        XDual                 X-Short On
+	 37:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   944,   440)  ->  Abs (   944,   440)
+	  1: Rel (  -221,  -209)  ->  Abs (   723,   231)
+	  2: Rel (  -624,  -415)  ->  Abs (    99,  -184)
+	  3: Rel (  -109,     0)  ->  Abs (   -10,  -184)
+	  4: Rel (   -48,     0)  ->  Abs (   -58,  -184)
+	  5: Rel (   -57,    48)  ->  Abs (  -115,  -136)
+	  6: Rel (     0,    40)  ->  Abs (  -115,   -96)
+	  7: Rel (     0,    71)  ->  Abs (  -115,   -25)
+	  8: Rel (   115,    37)  ->  Abs (     0,    12)
+	  9: Rel (   152,    50)  ->  Abs (   152,    62)
+	 10: Rel (   458,   286)  ->  Abs (   610,   348)
+	 11: Rel (   205,   193)  ->  Abs (   815,   541)
+	 12: Rel (  -108,    73)  ->  Abs (   707,   614)
+	 13: Rel (     0,    86)  ->  Abs (   707,   700)
+	 14: Rel (     0,    56)  ->  Abs (   707,   756)
+	 15: Rel (    73,    65)  ->  Abs (   780,   821)
+	 16: Rel (    64,     0)  ->  Abs (   844,   821)
+	 17: Rel (   105,     0)  ->  Abs (   949,   821)
+	 18: Rel (    77,   -73)  ->  Abs (  1026,   748)
+	 19: Rel (   260,   260)  ->  Abs (  1286,  1008)
+	 20: Rel (   111,     0)  ->  Abs (  1397,  1008)
+	 21: Rel (    98,     0)  ->  Abs (  1495,  1008)
+	 22: Rel (     0,   -74)  ->  Abs (  1495,   934)
+	 23: Rel (     0,   -86)  ->  Abs (  1495,   848)
+	 24: Rel (  -115,   -53)  ->  Abs (  1380,   795)
+	 25: Rel (  -103,   -49)  ->  Abs (  1277,   746)
+	 26: Rel (  -128,  -121)  ->  Abs (  1149,   625)
+	 27: Rel (    39,   -28)  ->  Abs (  1188,   597)
+	 28: Rel (    96,   -11)  ->  Abs (  1284,   586)
+	 29: Rel (   107,   -13)  ->  Abs (  1391,   573)
+	 30: Rel (     0,   -96)  ->  Abs (  1391,   477)
+	 31: Rel (     0,   -53)  ->  Abs (  1391,   424)
+	 32: Rel (   -86,   -64)  ->  Abs (  1305,   360)
+	 33: Rel (   -64,     0)  ->  Abs (  1241,   360)
+	 34: Rel (  -143,     0)  ->  Abs (  1098,   360)
+	 35: Rel (   -84,   740)  ->  Abs (  1014,  1100)
+	 36: Rel (   254, -1186)  ->  Abs (  1268,   -86)
+	 37: Rel (  -252,  1486)  ->  Abs (  1016,  1400)
+
+	Glyph  57: off = 0x0000285E, len = 294
+	  numberOfContours:	5
+	  xMin:			133
+	  yMin:			-180
+	  xMax:			1460
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  16
+	  1:  27
+	  2:  39
+	  3:  40
+	  4:  41
+
+	  Length of Instructions:	153
+	00000: PUSHW[2]             27   -32 
+	00005: NPUSHB      (47):    12    17    72    90    39     1    85    29     1    74 
+	                            25   138    25     2     6    18    22    18     2     9 
+	                            70    12    86    12     2    73    10    89    10     2 
+	                            12     6    60     6   108     6     3    11     3     0 
+	                             4    16     4     2    12     4    40 
+	00054: PUSHW[1]            258 
+	00057: NPUSHB      (43):    23   233     2     0     8    37   233    14    15    17 
+	                            31   233     8     4    41    41    40    41    40     5 
+	                            11    17     0    26   251    34    34    11    20   248 
+	                             5    28   250    11    64    43     5   243     2    42 
+	                            11   242     2 
+	00102: CALL       
+	00103: CALL       
+	00104: SVTCA[x-axis] 
+	00105: SMD        
+	00106: RTG        
+	00107: SRP0       
+	00108: FLIPON     
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: SRP0       
+	00111: MIRP[nrp0,md,rd,1] 
+	00112: SRP1       
+	00113: IP         
+	00114: MDAP[rd]   
+	00115: MIRP[nrp0,md,rd,1] 
+	00116: IP         
+	00117: IP         
+	00118: SRP1       
+	00119: SRP2       
+	00120: IP         
+	00121: IP         
+	00122: MDAP[rd]   
+	00123: MDAP[rd]   
+	00124: SVTCA[y-axis] 
+	00125: MDAP[rd]   
+	00126: MIAP[rd+ci] 
+	00127: MIRP[nrp0,md,rd,1] 
+	00128: SHP[rp2,zp1] 
+	00129: MIAP[rd+ci] 
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: SRP2       
+	00132: IP         
+	00133: MDRP[srp0,nmd,rd,0] 
+	00134: MIRP[nrp0,md,rd,1] 
+	00135: MIAP[rd+ci] 
+	00136: IUP[y]     
+	00137: IUP[x]     
+	00138: SDS        
+	00139: SDB        
+	00140: DELTAP1    
+	00141: SDS        
+	00142: SDB        
+	00143: DELTAP1    
+	00144: DELTAP1    
+	00145: DELTAP1    
+	00146: SDB        
+	00147: DELTAP1    
+	00148: DELTAP1    
+	00149: DELTAP1    
+	00150: DELTAP1    
+	00151: SVTCA[x-axis] 
+	00152: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:  YDual XDual                 X-Short On
+	  3:  YDual XDual                 X-Short Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short         On
+	  6:        XDual         Y-Short         Off
+	  7:                                      Off
+	  8:  YDual                               On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short         Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:                              X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:                                      Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual                       X-Short On
+	 24:  YDual                       X-Short Off
+	 25:                      Y-Short X-Short Off
+	 26:                      Y-Short X-Short On
+	 27:                      Y-Short X-Short Off
+	 28:  YDual               Y-Short         On
+	 29:        XDual         Y-Short         Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short         On
+	 35:  YDual XDual         Y-Short         Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual                       X-Short On
+	 38:  YDual                       X-Short Off
+	 39:                      Y-Short X-Short Off
+	 40:                                      On
+	 41:        XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   831,   633)  ->  Abs (   831,   633)
+	  1: Rel (   146,   250)  ->  Abs (   977,   883)
+	  2: Rel (   205,     0)  ->  Abs (  1182,   883)
+	  3: Rel (   124,     0)  ->  Abs (  1306,   883)
+	  4: Rel (   154,  -152)  ->  Abs (  1460,   731)
+	  5: Rel (     0,  -119)  ->  Abs (  1460,   612)
+	  6: Rel (     0,  -250)  ->  Abs (  1460,   362)
+	  7: Rel (  -488,  -370)  ->  Abs (   972,    -8)
+	  8: Rel (  -337,     0)  ->  Abs (   635,    -8)
+	  9: Rel (  -232,     0)  ->  Abs (   403,    -8)
+	 10: Rel (  -270,   243)  ->  Abs (   133,   235)
+	 11: Rel (     0,   168)  ->  Abs (   133,   403)
+	 12: Rel (     0,   174)  ->  Abs (   133,   577)
+	 13: Rel (   243,   244)  ->  Abs (   376,   821)
+	 14: Rel (   183,     0)  ->  Abs (   559,   821)
+	 15: Rel (    90,     0)  ->  Abs (   649,   821)
+	 16: Rel (   152,  -106)  ->  Abs (   801,   715)
+	 17: Rel (   -31,  -547)  ->  Abs (   770,   168)
+	 18: Rel (   219,    35)  ->  Abs (   989,   203)
+	 19: Rel (   273,   263)  ->  Abs (  1262,   466)
+	 20: Rel (     0,   132)  ->  Abs (  1262,   598)
+	 21: Rel (     0,    47)  ->  Abs (  1262,   645)
+	 22: Rel (   -64,    64)  ->  Abs (  1198,   709)
+	 23: Rel (   -51,     0)  ->  Abs (  1147,   709)
+	 24: Rel (   -79,     0)  ->  Abs (  1068,   709)
+	 25: Rel (  -153,  -156)  ->  Abs (   915,   553)
+	 26: Rel (   -30,  -117)  ->  Abs (   885,   436)
+	 27: Rel (   -46,  -178)  ->  Abs (   839,   258)
+	 28: Rel (  -517,   133)  ->  Abs (   322,   391)
+	 29: Rel (     0,   -90)  ->  Abs (   322,   301)
+	 30: Rel (   121,  -135)  ->  Abs (   443,   166)
+	 31: Rel (    83,     0)  ->  Abs (   526,   166)
+	 32: Rel (    70,     0)  ->  Abs (   596,   166)
+	 33: Rel (   109,   208)  ->  Abs (   705,   374)
+	 34: Rel (     0,   115)  ->  Abs (   705,   489)
+	 35: Rel (     0,    67)  ->  Abs (   705,   556)
+	 36: Rel (   -90,    93)  ->  Abs (   615,   649)
+	 37: Rel (   -64,     0)  ->  Abs (   551,   649)
+	 38: Rel (  -103,     0)  ->  Abs (   448,   649)
+	 39: Rel (  -126,  -143)  ->  Abs (   322,   506)
+	 40: Rel (   489,   594)  ->  Abs (   811,  1100)
+	 41: Rel (   236, -1280)  ->  Abs (  1047,  -180)
+
+	Glyph  58: off = 0x00002984, len = 242
+	  numberOfContours:	3
+	  xMin:			-115
+	  yMin:			-184
+	  xMax:			1399
+	  yMax:			1150
+
+	EndPoints
+	---------
+	  0:  38
+	  1:  39
+	  2:  40
+
+	  Length of Instructions:	112
+	00000: NPUSHB      (71):   122    21   138    21     2    11    28    59    28    75 
+	                            28    91    28     4    27    24    14    17    72    70 
+	                            20     1    18   236     0     0    23    30    39     8 
+	                            23    15    40    35   231    30   229   150     0     1 
+	                           143     0     1    39    15    11     1    11    15   250 
+	                            64     0    18    39     3     0     5     1     9     3 
+	                             5    40    26    42    26   245     2    41    33   240 
+	                             2 
+	00073: CALL       
+	00074: CALL       
+	00075: SVTCA[x-axis] 
+	00076: RTG        
+	00077: SRP0       
+	00078: MDRP[nrp0,nmd,rd,0] 
+	00079: MDRP[srp0,nmd,rd,0] 
+	00080: SDS        
+	00081: SDB        
+	00082: DELTAP1    
+	00083: SLOOP      
+	00084: IP         
+	00085: SMD        
+	00086: FLIPON     
+	00087: MIRP[srp0,md,rd,1] 
+	00088: MDRP[nrp0,nmd,rd,0] 
+	00089: DELTAP1    
+	00090: MDAP[rd]   
+	00091: DELTAP1    
+	00092: DELTAP1    
+	00093: SVTCA[y-axis] 
+	00094: MIAP[rd+ci] 
+	00095: MIRP[nrp0,md,rd,1] 
+	00096: MDRP[nrp0,nmd,rd,0] 
+	00097: MIAP[rd+ci] 
+	00098: MDRP[srp0,nmd,rd,0] 
+	00099: MDRP[nrp0,nmd,rd,2] 
+	00100: SRP1       
+	00101: SRP2       
+	00102: IP         
+	00103: MDAP[rd]   
+	00104: MIRP[nrp0,md,rd,1] 
+	00105: IUP[y]     
+	00106: IUP[x]     
+	00107: DELTAP1    
+	00108: CALL       
+	00109: DELTAP1    
+	00110: SVTCA[x-axis] 
+	00111: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short On
+	 14:                      Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual                 X-Short On
+	 24:  YDual XDual                 X-Short Off
+	 25:        XDual         Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:              Rep-  1                 Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual               Y-Short         Off
+	 39:        XDual Rep-  1         X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   958,   442)  ->  Abs (   958,   442)
+	  1: Rel (    -7,    -2)  ->  Abs (   951,   440)
+	  2: Rel (   -13,     0)  ->  Abs (   938,   440)
+	  3: Rel (  -115,     0)  ->  Abs (   823,   440)
+	  4: Rel (  -159,   123)  ->  Abs (   664,   563)
+	  5: Rel (     0,   101)  ->  Abs (   664,   664)
+	  6: Rel (     0,   109)  ->  Abs (   664,   773)
+	  7: Rel (   156,   175)  ->  Abs (   820,   948)
+	  8: Rel (    63,     0)  ->  Abs (   883,   948)
+	  9: Rel (    34,     0)  ->  Abs (   917,   948)
+	 10: Rel (    44,   -40)  ->  Abs (   961,   908)
+	 11: Rel (     0,   -31)  ->  Abs (   961,   877)
+	 12: Rel (     0,   -43)  ->  Abs (   961,   834)
+	 13: Rel (   -54,   -56)  ->  Abs (   907,   778)
+	 14: Rel (   -55,   -56)  ->  Abs (   852,   722)
+	 15: Rel (     0,   -44)  ->  Abs (   852,   678)
+	 16: Rel (     0,   -40)  ->  Abs (   852,   638)
+	 17: Rel (    89,   -50)  ->  Abs (   941,   588)
+	 18: Rel (    71,     0)  ->  Abs (  1012,   588)
+	 19: Rel (    47,     0)  ->  Abs (  1059,   588)
+	 20: Rel (    87,    67)  ->  Abs (  1146,   655)
+	 21: Rel (    54,    86)  ->  Abs (  1200,   741)
+	 22: Rel (    50,    80)  ->  Abs (  1250,   821)
+	 23: Rel (    71,     0)  ->  Abs (  1321,   821)
+	 24: Rel (    35,     0)  ->  Abs (  1356,   821)
+	 25: Rel (    43,   -50)  ->  Abs (  1399,   771)
+	 26: Rel (     0,   -38)  ->  Abs (  1399,   733)
+	 27: Rel (     0,  -101)  ->  Abs (  1399,   632)
+	 28: Rel (  -471,  -482)  ->  Abs (   928,   150)
+	 29: Rel (  -726,  -334)  ->  Abs (   202,  -184)
+	 30: Rel (  -212,     0)  ->  Abs (   -10,  -184)
+	 31: Rel (   -48,     0)  ->  Abs (   -58,  -184)
+	 32: Rel (   -57,    48)  ->  Abs (  -115,  -136)
+	 33: Rel (     0,    40)  ->  Abs (  -115,   -96)
+	 34: Rel (     0,    48)  ->  Abs (  -115,   -48)
+	 35: Rel (    66,    64)  ->  Abs (   -49,    16)
+	 36: Rel (    63,     4)  ->  Abs (    14,    20)
+	 37: Rel (   224,    15)  ->  Abs (   238,    35)
+	 38: Rel (   561,   239)  ->  Abs (   799,   274)
+	 39: Rel (   175,   876)  ->  Abs (   974,  1150)
+	 40: Rel (   255, -1269)  ->  Abs (  1229,  -119)
+
+	Glyph  59: off = 0x00002A76, len = 206
+	  numberOfContours:	3
+	  xMin:			123
+	  yMin:			-118
+	  xMax:			1145
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  29
+	  1:  30
+	  2:  31
+
+	  Length of Instructions:	97
+	00000: PUSHW[2]              0   -32 
+	00005: PUSHB[4]             12    16    72     2 
+	00010: PUSHW[1]            -32 
+	00013: PUSHB[4]             12    17    72     1 
+	00018: PUSHW[1]            -32 
+	00021: PUSHB[4]             12    17    72     0 
+	00026: PUSHW[1]            -24 
+	00029: PUSHB[4]             12    17    72    30 
+	00034: PUSHW[1]            258 
+	00037: NPUSHB      (26):     5     0    12    26    15    12    31    30    30    19 
+	                             3   248    64    31     8    33     8   245     2    23 
+	                             0    15    28   177    19    15 
+	00065: MDAP[rd]   
+	00066: MDRP[srp0,nmd,rd,0] 
+	00067: MIRP[nrp0,md,rd,1] 
+	00068: SRP1       
+	00069: IP         
+	00070: MDRP[nrp0,nmd,rd,0] 
+	00071: CALL       
+	00072: SVTCA[x-axis] 
+	00073: RTG        
+	00074: SRP0       
+	00075: MDRP[nrp0,nmd,rd,0] 
+	00076: SMD        
+	00077: FLIPON     
+	00078: MIRP[nrp0,md,rd,1] 
+	00079: SRP2       
+	00080: IP         
+	00081: MDAP[rd]   
+	00082: SVTCA[y-axis] 
+	00083: MDAP[rd]   
+	00084: MDAP[rd]   
+	00085: MIAP[rd+ci] 
+	00086: SRP2       
+	00087: IP         
+	00088: MDRP[nrp0,nmd,rd,0] 
+	00089: MIAP[rd+ci] 
+	00090: CALL       
+	00091: IUP[y]     
+	00092: IUP[x]     
+	00093: CALL       
+	00094: CALL       
+	00095: SVTCA[x-axis] 
+	00096: CALL       
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:  YDual XDual         Y-Short X-Short Off
+	  2:                                      Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual                 X-Short On
+	  6:  YDual XDual                 X-Short Off
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:              Rep-  1                 Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual               Y-Short X-Short On
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:  YDual XDual                 X-Short On
+	 27:  YDual XDual                 X-Short Off
+	 28:        XDual                         On
+	 29:        XDual         Y-Short         Off
+	 30:        XDual                 X-Short On
+	 31:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   342,   180)  ->  Abs (   342,   180)
+	  1: Rel (   173,    83)  ->  Abs (   515,   263)
+	  2: Rel (   350,   336)  ->  Abs (   865,   599)
+	  3: Rel (    83,   189)  ->  Abs (   948,   788)
+	  4: Rel (    36,    80)  ->  Abs (   984,   868)
+	  5: Rel (    73,     0)  ->  Abs (  1057,   868)
+	  6: Rel (    40,     0)  ->  Abs (  1097,   868)
+	  7: Rel (    48,   -42)  ->  Abs (  1145,   826)
+	  8: Rel (     0,   -38)  ->  Abs (  1145,   788)
+	  9: Rel (     0,  -108)  ->  Abs (  1145,   680)
+	 10: Rel (  -331,  -397)  ->  Abs (   814,   283)
+	 11: Rel (  -461,  -301)  ->  Abs (   353,   -18)
+	 12: Rel (  -136,     0)  ->  Abs (   217,   -18)
+	 13: Rel (   -42,     0)  ->  Abs (   175,   -18)
+	 14: Rel (   -52,    48)  ->  Abs (   123,    30)
+	 15: Rel (     0,    31)  ->  Abs (   123,    61)
+	 16: Rel (     0,    52)  ->  Abs (   123,   113)
+	 17: Rel (    45,    88)  ->  Abs (   168,   201)
+	 18: Rel (    88,   172)  ->  Abs (   256,   373)
+	 19: Rel (     0,   164)  ->  Abs (   256,   537)
+	 20: Rel (     0,    54)  ->  Abs (   256,   591)
+	 21: Rel (   -24,    66)  ->  Abs (   232,   657)
+	 22: Rel (   -17,    48)  ->  Abs (   215,   705)
+	 23: Rel (     0,    28)  ->  Abs (   215,   733)
+	 24: Rel (     0,    37)  ->  Abs (   215,   770)
+	 25: Rel (    47,    51)  ->  Abs (   262,   821)
+	 26: Rel (    45,     0)  ->  Abs (   307,   821)
+	 27: Rel (   133,     0)  ->  Abs (   440,   821)
+	 28: Rel (     0,  -256)  ->  Abs (   440,   565)
+	 29: Rel (     0,  -236)  ->  Abs (   440,   329)
+	 30: Rel (   170,   771)  ->  Abs (   610,  1100)
+	 31: Rel (   353, -1218)  ->  Abs (   963,  -118)
+
+	Glyph  60: off = 0x00002B44, len = 254
+	  numberOfContours:	5
+	  xMin:			-29
+	  yMin:			-352
+	  xMax:			1077
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  28
+	  1:  29
+	  2:  30
+	  3:  31
+	  4:  32
+
+	  Length of Instructions:	135
+	00000: NPUSHB      (38):    25    32    12    16    72     9    24    25    24    41 
+	                            24     3    14     5    19     1     8    64    14    17 
+	                            72     5     1     1     3     0     8     1    17     5 
+	                            31    30    21    21    14     3    32    29 
+	00040: PUSHW[1]            258 
+	00043: NPUSHB      (10):     0   232    14    15     3    32    29    29    17     2 
+	00055: PUSHW[1]            -64 
+	00058: PUSHB[4]             10    17    72     0 
+	00063: PUSHW[1]            -16 
+	00066: NPUSHB      (20):    12    17    72     2     6    14     0    23    27   251 
+	                            17    64    31    30    17    34    17   244     2     6 
+	00088: MDAP[rd]   
+	00089: CALL       
+	00090: SVTCA[x-axis] 
+	00091: RTG        
+	00092: SRP0       
+	00093: MDRP[srp0,nmd,rd,0] 
+	00094: MDRP[nrp0,nmd,rd,2] 
+	00095: SMD        
+	00096: SRP0       
+	00097: FLIPON     
+	00098: MIRP[srp0,md,rd,1] 
+	00099: MDRP[nrp0,nmd,rd,0] 
+	00100: MDRP[nrp0,nmd,rd,2] 
+	00101: SHP[rp2,zp1] 
+	00102: SRP1       
+	00103: IP         
+	00104: CALL       
+	00105: CALL       
+	00106: SRP2       
+	00107: IP         
+	00108: MDAP[rd]   
+	00109: MDRP[nrp0,nmd,nrd,0] 
+	00110: SVTCA[y-axis] 
+	00111: MDAP[rd]   
+	00112: MIAP[rd+ci] 
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: MIAP[rd+ci] 
+	00115: MDRP[nrp0,nmd,nrd,0] 
+	00116: SRP1       
+	00117: SRP2       
+	00118: IP         
+	00119: MDAP[rd]   
+	00120: MDAP[rd]   
+	00121: MDAP[rd]   
+	00122: IUP[y]     
+	00123: IUP[x]     
+	00124: SDS        
+	00125: SDB        
+	00126: DELTAP1    
+	00127: SVTCA[x-axis] 
+	00128: SDS        
+	00129: DELTAP1    
+	00130: CALL       
+	00131: DELTAP1    
+	00132: SDB        
+	00133: DELTAP1    
+	00134: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                              X-Short Off
+	  2:                                      Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual               Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 14:  YDual XDual                 X-Short On
+	 15:  YDual XDual                 X-Short Off
+	 16:        XDual         Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:              Rep-  1 Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:              Rep-  1                 On
+	 31:                      Y-Short X-Short On
+	 32:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   868,   631)  ->  Abs (   868,   631)
+	  1: Rel (  -202,  -305)  ->  Abs (   666,   326)
+	  2: Rel (  -447,  -344)  ->  Abs (   219,   -18)
+	  3: Rel (  -151,     0)  ->  Abs (    68,   -18)
+	  4: Rel (   -45,     0)  ->  Abs (    23,   -18)
+	  5: Rel (   -52,    42)  ->  Abs (   -29,    24)
+	  6: Rel (     0,    37)  ->  Abs (   -29,    61)
+	  7: Rel (     0,    79)  ->  Abs (   -29,   140)
+	  8: Rel (   111,    38)  ->  Abs (    82,   178)
+	  9: Rel (   162,    56)  ->  Abs (   244,   234)
+	 10: Rel (   301,   237)  ->  Abs (   545,   471)
+	 11: Rel (   110,   162)  ->  Abs (   655,   633)
+	 12: Rel (    74,   107)  ->  Abs (   729,   740)
+	 13: Rel (   101,    81)  ->  Abs (   830,   821)
+	 14: Rel (    51,     0)  ->  Abs (   881,   821)
+	 15: Rel (    76,     0)  ->  Abs (   957,   821)
+	 16: Rel (   120,  -189)  ->  Abs (  1077,   632)
+	 17: Rel (     0,  -116)  ->  Abs (  1077,   516)
+	 18: Rel (     0,  -158)  ->  Abs (  1077,   358)
+	 19: Rel (   -70,  -248)  ->  Abs (  1007,   110)
+	 20: Rel (   -68,   -85)  ->  Abs (   939,    25)
+	 21: Rel (   -58,     0)  ->  Abs (   881,    25)
+	 22: Rel (   -86,     0)  ->  Abs (   795,    25)
+	 23: Rel (     0,    88)  ->  Abs (   795,   113)
+	 24: Rel (     0,    54)  ->  Abs (   795,   167)
+	 25: Rel (    49,   101)  ->  Abs (   844,   268)
+	 26: Rel (    53,   114)  ->  Abs (   897,   382)
+	 27: Rel (     0,   118)  ->  Abs (   897,   500)
+	 28: Rel (     0,    82)  ->  Abs (   897,   582)
+	 29: Rel (  -282,   518)  ->  Abs (   615,  1100)
+	 30: Rel (   348, -1225)  ->  Abs (   963,  -125)
+	 31: Rel (    -5,  -227)  ->  Abs (   958,  -352)
+	 32: Rel (  -343,  1452)  ->  Abs (   615,  1100)
+
+	Glyph  61: off = 0x00002C42, len = 232
+	  numberOfContours:	5
+	  xMin:			-123
+	  yMin:			-219
+	  xMax:			864
+	  yMax:			1400
+
+	EndPoints
+	---------
+	  0:  21
+	  1:  31
+	  2:  32
+	  3:  33
+	  4:  34
+
+	  Length of Instructions:	111
+	00000: NPUSHB       (9):    86    20     1     3    32     9    14    72    34 
+	00011: PUSHW[3]            259    32   258 
+	00018: NPUSHB      (53):    11     0     8     2   235    29    24   235     8    15 
+	                            19   233    15   229    95     0     1    10     0    26 
+	                             0    42     0     3    12    34    32     0     2    32 
+	                             3    11     5   250    15    27     1    28     3    27 
+	                            22   250    64    33    11    36    11   245     2    35 
+	                            18   240     2 
+	00073: CALL       
+	00074: CALL       
+	00075: SVTCA[x-axis] 
+	00076: RTG        
+	00077: SRP0       
+	00078: MDRP[nrp0,nmd,rd,0] 
+	00079: SMD        
+	00080: FLIPON     
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: MDRP[srp0,nmd,rd,0] 
+	00083: SDS        
+	00084: SDB        
+	00085: DELTAP1    
+	00086: MIRP[nrp0,md,rd,1] 
+	00087: SRP1       
+	00088: SLOOP      
+	00089: IP         
+	00090: MDAP[rd]   
+	00091: MDRP[nrp0,nmd,rd,2] 
+	00092: SDB        
+	00093: DELTAP1    
+	00094: DELTAP1    
+	00095: SVTCA[y-axis] 
+	00096: MIAP[rd+ci] 
+	00097: MIRP[nrp0,md,rd,1] 
+	00098: MIAP[rd+ci] 
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: MDRP[srp0,nmd,rd,0] 
+	00101: MIRP[nrp0,md,rd,1] 
+	00102: SRP1       
+	00103: IP         
+	00104: IP         
+	00105: MIAP[rd+ci] 
+	00106: MIAP[rd+ci] 
+	00107: IUP[y]     
+	00108: IUP[x]     
+	00109: CALL       
+	00110: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                              X-Short Off
+	 14:                                      Off
+	 15:  YDual                       X-Short On
+	 16:  YDual                       X-Short Off
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual               Y-Short         Off
+	 22:                                      On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual                       X-Short On
+	 25:  YDual                       X-Short Off
+	 26:                      Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:  YDual XDual                 X-Short On
+	 30:  YDual XDual                 X-Short Off
+	 31:  YDual XDual         Y-Short X-Short Off
+	 32:                              X-Short On
+	 33:              Rep-  1                 On
+
+	Coordinates
+	-----------
+	  0: Rel (   532,   283)  ->  Abs (   532,   283)
+	  1: Rel (   -28,    -7)  ->  Abs (   504,   276)
+	  2: Rel (   -31,     0)  ->  Abs (   473,   276)
+	  3: Rel (  -124,     0)  ->  Abs (   349,   276)
+	  4: Rel (  -154,   124)  ->  Abs (   195,   400)
+	  5: Rel (     0,   102)  ->  Abs (   195,   502)
+	  6: Rel (     0,   131)  ->  Abs (   195,   633)
+	  7: Rel (   225,   192)  ->  Abs (   420,   825)
+	  8: Rel (   149,     0)  ->  Abs (   569,   825)
+	  9: Rel (   136,     0)  ->  Abs (   705,   825)
+	 10: Rel (   159,  -139)  ->  Abs (   864,   686)
+	 11: Rel (     0,  -123)  ->  Abs (   864,   563)
+	 12: Rel (     0,  -130)  ->  Abs (   864,   433)
+	 13: Rel (  -216,  -313)  ->  Abs (   648,   120)
+	 14: Rel (  -503,  -304)  ->  Abs (   145,  -184)
+	 15: Rel (  -163,     0)  ->  Abs (   -18,  -184)
+	 16: Rel (   -48,     0)  ->  Abs (   -66,  -184)
+	 17: Rel (   -57,    48)  ->  Abs (  -123,  -136)
+	 18: Rel (     0,    40)  ->  Abs (  -123,   -96)
+	 19: Rel (     0,    83)  ->  Abs (  -123,   -13)
+	 20: Rel (   133,    23)  ->  Abs (    10,    10)
+	 21: Rel (   281,    48)  ->  Abs (   291,    58)
+	 22: Rel (   383,   511)  ->  Abs (   674,   569)
+	 23: Rel (     0,    95)  ->  Abs (   674,   664)
+	 24: Rel (  -113,     0)  ->  Abs (   561,   664)
+	 25: Rel (   -71,     0)  ->  Abs (   490,   664)
+	 26: Rel (  -105,   -95)  ->  Abs (   385,   569)
+	 27: Rel (     0,   -47)  ->  Abs (   385,   522)
+	 28: Rel (     0,   -88)  ->  Abs (   385,   434)
+	 29: Rel (   119,     0)  ->  Abs (   504,   434)
+	 30: Rel (    66,     0)  ->  Abs (   570,   434)
+	 31: Rel (   104,    93)  ->  Abs (   674,   527)
+	 32: Rel (  -213,   573)  ->  Abs (   461,  1100)
+	 33: Rel (   395, -1319)  ->  Abs (   856,  -219)
+	 34: Rel (  -401,  1619)  ->  Abs (   455,  1400)
+
+	Glyph  62: off = 0x00002D2A, len = 180
+	  numberOfContours:	3
+	  xMin:			-121
+	  yMin:			-315
+	  xMax:			1028
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  24
+	  1:  25
+	  2:  26
+
+	  Length of Instructions:	88
+	00000: NPUSHB      (18):    52    18     1    11    16    13    17    72    15    10 
+	                             1    14     0     8     1    17     5    25 
+	00020: PUSHW[1]            258 
+	00023: NPUSHB      (30):     9    19    19    15     0    21   233     6    15    26 
+	                            15   233    12   229    25    25     3    19   249    64 
+	                            26     9    28     9   246     2    27    14   240     2 
+	00055: CALL       
+	00056: CALL       
+	00057: SVTCA[x-axis] 
+	00058: RTG        
+	00059: SRP0       
+	00060: MDRP[nrp0,nmd,rd,0] 
+	00061: SMD        
+	00062: FLIPON     
+	00063: MIRP[nrp0,md,rd,1] 
+	00064: MDRP[nrp0,nmd,rd,0] 
+	00065: IP         
+	00066: MDAP[rd]   
+	00067: SVTCA[y-axis] 
+	00068: MIAP[rd+ci] 
+	00069: MIRP[nrp0,md,rd,1] 
+	00070: MDRP[nrp0,nmd,rd,2] 
+	00071: MIAP[rd+ci] 
+	00072: MIRP[srp0,md,rd,1] 
+	00073: MDRP[nrp0,nmd,rd,0] 
+	00074: SRP2       
+	00075: IP         
+	00076: SRP1       
+	00077: SHP[rp1,zp0] 
+	00078: MIAP[rd+ci] 
+	00079: IUP[y]     
+	00080: IUP[x]     
+	00081: SDS        
+	00082: SDB        
+	00083: DELTAP1    
+	00084: SDB        
+	00085: DELTAP1    
+	00086: CALL       
+	00087: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                                      Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:                                      Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:                      Y-Short X-Short On
+	 24:                      Y-Short X-Short Off
+	 25:        XDual Rep-  1         X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   438,   598)  ->  Abs (   438,   598)
+	  1: Rel (   -39,     0)  ->  Abs (   399,   598)
+	  2: Rel (   -47,    46)  ->  Abs (   352,   644)
+	  3: Rel (     0,    36)  ->  Abs (   352,   680)
+	  4: Rel (     0,    69)  ->  Abs (   352,   749)
+	  5: Rel (   198,    76)  ->  Abs (   550,   825)
+	  6: Rel (   177,     0)  ->  Abs (   727,   825)
+	  7: Rel (   137,     0)  ->  Abs (   864,   825)
+	  8: Rel (   164,  -102)  ->  Abs (  1028,   723)
+	  9: Rel (     0,   -84)  ->  Abs (  1028,   639)
+	 10: Rel (     0,  -197)  ->  Abs (  1028,   442)
+	 11: Rel (  -849,  -616)  ->  Abs (   179,  -174)
+	 12: Rel (  -197,     0)  ->  Abs (   -18,  -174)
+	 13: Rel (  -103,     0)  ->  Abs (  -121,  -174)
+	 14: Rel (     0,    84)  ->  Abs (  -121,   -90)
+	 15: Rel (     0,    89)  ->  Abs (  -121,    -1)
+	 16: Rel (   131,    21)  ->  Abs (    10,    20)
+	 17: Rel (   224,    39)  ->  Abs (   234,    59)
+	 18: Rel (   602,   454)  ->  Abs (   836,   513)
+	 19: Rel (     0,   103)  ->  Abs (   836,   616)
+	 20: Rel (     0,    35)  ->  Abs (   836,   651)
+	 21: Rel (  -117,     0)  ->  Abs (   719,   651)
+	 22: Rel (   -74,     0)  ->  Abs (   645,   651)
+	 23: Rel (   -98,   -31)  ->  Abs (   547,   620)
+	 24: Rel (   -70,   -22)  ->  Abs (   477,   598)
+	 25: Rel (   150,   502)  ->  Abs (   627,  1100)
+	 26: Rel (   207, -1415)  ->  Abs (   834,  -315)
+
+	Glyph  63: off = 0x00002DDE, len = 304
+	  numberOfContours:	4
+	  xMin:			-313
+	  yMin:			-457
+	  xMax:			1016
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  44
+	  1:  45
+	  2:  46
+	  3:  47
+
+	  Length of Instructions:	146
+	00000: PUSHW[2]             32   -64 
+	00005: NPUSHB      (26):    13    16    72   134    29     1   138    16     1    70 
+	                            13    86    13     2   134    12     1   195     3   211 
+	                             3     2    57     3     1    45 
+	00033: PUSHW[4]            258    18     0   -64 
+	00042: NPUSHB      (54):     9    13    72     0     0     6   140    40     1    40 
+	                            28    35    47    15    46    11   232     6    28    45 
+	                           128    40     1    40    42    28     0    14   249     2 
+	                             2    28    45     3     0    18     1     9     3    18 
+	                            23   247    64    38    46    42    49    42   245     2 
+	                            48     9   238     2 
+	00098: CALL       
+	00099: CALL       
+	00100: SVTCA[x-axis] 
+	00101: RTG        
+	00102: SRP0       
+	00103: MDRP[nrp0,nmd,rd,0] 
+	00104: MDRP[nrp0,nmd,rd,0] 
+	00105: SMD        
+	00106: FLIPON     
+	00107: MIRP[nrp0,md,rd,1] 
+	00108: MDRP[nrp0,md,rd,1] 
+	00109: SDS        
+	00110: SDB        
+	00111: DELTAP1    
+	00112: SLOOP      
+	00113: IP         
+	00114: MDAP[rd]   
+	00115: MIRP[nrp0,md,rd,1] 
+	00116: IP         
+	00117: MDAP[rd]   
+	00118: SRP2       
+	00119: IP         
+	00120: DELTAP1    
+	00121: MDAP[rd]   
+	00122: SVTCA[y-axis] 
+	00123: MIAP[rd+ci] 
+	00124: MIRP[nrp0,md,rd,1] 
+	00125: MDRP[nrp0,nmd,rd,0] 
+	00126: MIAP[rd+ci] 
+	00127: MDRP[nrp0,nmd,rd,0] 
+	00128: SHP[rp1,zp0] 
+	00129: SHP[rp1,zp0] 
+	00130: DELTAP1    
+	00131: SRP2       
+	00132: IP         
+	00133: MDAP[rd]   
+	00134: CALL       
+	00135: SHP[rp1,zp0] 
+	00136: MIAP[rd+ci] 
+	00137: IUP[y]     
+	00138: IUP[x]     
+	00139: DELTAP1    
+	00140: DELTAP2    
+	00141: DELTAP1    
+	00142: DELTAP1    
+	00143: DELTAP1    
+	00144: DELTAP1    
+	00145: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:              Rep-  1                 Off
+	  6:  YDual                       X-Short On
+	  7:  YDual                       X-Short Off
+	  8:  YDual               Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short         On
+	 10:  YDual XDual         Y-Short         Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual               Y-Short         Off
+	 13:                                      Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual               Y-Short X-Short On
+	 17:  YDual               Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short         On
+	 19:  YDual XDual         Y-Short         Off
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:  YDual XDual         Y-Short         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual               Y-Short X-Short Off
+	 26:  YDual               Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:                      Y-Short X-Short On
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short         Off
+	 44:                      Y-Short X-Short Off
+	 45:                              X-Short On
+	 46:        XDual                 X-Short On
+	 47:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   727,   434)  ->  Abs (   727,   434)
+	  1: Rel (    70,   -36)  ->  Abs (   797,   398)
+	  2: Rel (     0,   -68)  ->  Abs (   797,   330)
+	  3: Rel (     0,  -100)  ->  Abs (   797,   230)
+	  4: Rel (  -366,  -359)  ->  Abs (   431,  -129)
+	  5: Rel (  -535,  -328)  ->  Abs (  -104,  -457)
+	  6: Rel (  -105,     0)  ->  Abs (  -209,  -457)
+	  7: Rel (   -47,     0)  ->  Abs (  -256,  -457)
+	  8: Rel (   -57,    49)  ->  Abs (  -313,  -408)
+	  9: Rel (     0,    39)  ->  Abs (  -313,  -369)
+	 10: Rel (     0,    72)  ->  Abs (  -313,  -297)
+	 11: Rel (    90,    27)  ->  Abs (  -223,  -270)
+	 12: Rel (   287,    87)  ->  Abs (    64,  -183)
+	 13: Rel (   538,   411)  ->  Abs (   602,   228)
+	 14: Rel (     0,    89)  ->  Abs (   602,   317)
+	 15: Rel (     0,    50)  ->  Abs (   602,   367)
+	 16: Rel (   -72,    20)  ->  Abs (   530,   387)
+	 17: Rel (   -77,    23)  ->  Abs (   453,   410)
+	 18: Rel (     0,    47)  ->  Abs (   453,   457)
+	 19: Rel (     0,    38)  ->  Abs (   453,   495)
+	 20: Rel (    52,    42)  ->  Abs (   505,   537)
+	 21: Rel (    87,    18)  ->  Abs (   592,   555)
+	 22: Rel (   207,    44)  ->  Abs (   799,   599)
+	 23: Rel (     0,    56)  ->  Abs (   799,   655)
+	 24: Rel (     0,    13)  ->  Abs (   799,   668)
+	 25: Rel (   -65,    37)  ->  Abs (   734,   705)
+	 26: Rel (   -58,    16)  ->  Abs (   676,   721)
+	 27: Rel (   -62,    15)  ->  Abs (   614,   736)
+	 28: Rel (     0,    57)  ->  Abs (   614,   793)
+	 29: Rel (     0,    54)  ->  Abs (   614,   847)
+	 30: Rel (    72,    27)  ->  Abs (   686,   874)
+	 31: Rel (    33,    14)  ->  Abs (   719,   888)
+	 32: Rel (   105,    62)  ->  Abs (   824,   950)
+	 33: Rel (    26,    23)  ->  Abs (   850,   973)
+	 34: Rel (    41,    35)  ->  Abs (   891,  1008)
+	 35: Rel (    41,     0)  ->  Abs (   932,  1008)
+	 36: Rel (    32,     0)  ->  Abs (   964,  1008)
+	 37: Rel (    46,   -47)  ->  Abs (  1010,   961)
+	 38: Rel (     0,   -33)  ->  Abs (  1010,   928)
+	 39: Rel (     0,   -56)  ->  Abs (  1010,   872)
+	 40: Rel (  -144,   -71)  ->  Abs (   866,   801)
+	 41: Rel (   150,   -51)  ->  Abs (  1016,   750)
+	 42: Rel (     0,   -97)  ->  Abs (  1016,   653)
+	 43: Rel (     0,   -73)  ->  Abs (  1016,   580)
+	 44: Rel (  -143,  -103)  ->  Abs (   873,   477)
+	 45: Rel (  -240,   623)  ->  Abs (   633,  1100)
+	 46: Rel (   201, -1520)  ->  Abs (   834,  -420)
+	 47: Rel (  -834,  1241)  ->  Abs (     0,   821)
+
+	Glyph  64: off = 0x00002F0E, len = 330
+	  numberOfContours:	5
+	  xMin:			-233
+	  yMin:			-381
+	  xMax:			1264
+	  yMax:			1460
+
+	EndPoints
+	---------
+	  0:  48
+	  1:  49
+	  2:  50
+	  3:  51
+	  4:  52
+
+	  Length of Instructions:	159
+	00000: NPUSHB      (43):    10    46    26    46     2    98    42   114    42   130 
+	                            42     3     9    30    25    30     2   138    26     1 
+	                            25    24    11    14    72     1    18    17    18     2 
+	                             9     3    75     2     1    11     1    27     1     2 
+	                            12    51    49 
+	00045: PUSHW[1]            258 
+	00048: NPUSHB      (55):    15    41     1    17     4    12     0    17    47   234 
+	                            17    22    28    41    35    52    15    50     9   232 
+	                             3   230    12    16    14    17    72    50    51    49 
+	                            41    38    28    20     0   251    14    28    49    50 
+	                             3    12    24   248    64    38    44    54    44   244 
+	                             2    53     6   239     2 
+	00105: CALL       
+	00106: CALL       
+	00107: SVTCA[x-axis] 
+	00108: RTG        
+	00109: SRP0       
+	00110: MDRP[nrp0,nmd,rd,0] 
+	00111: SMD        
+	00112: FLIPON     
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: MDRP[srp0,nmd,rd,0] 
+	00115: SLOOP      
+	00116: IP         
+	00117: MDRP[nrp0,md,rd,1] 
+	00118: MIRP[nrp0,md,rd,1] 
+	00119: SHP[rp2,zp1] 
+	00120: MDAP[rd]   
+	00121: SRP2       
+	00122: IP         
+	00123: MDAP[rd]   
+	00124: MDRP[nrp0,nmd,rd,2] 
+	00125: MDAP[rd]   
+	00126: CALL       
+	00127: SVTCA[y-axis] 
+	00128: MIAP[rd+ci] 
+	00129: MIRP[nrp0,md,rd,1] 
+	00130: MDRP[nrp0,nmd,rd,2] 
+	00131: MIAP[rd+ci] 
+	00132: MDRP[nrp0,nmd,rd,0] 
+	00133: MDRP[srp0,nmd,rd,0] 
+	00134: SHP[rp2,zp1] 
+	00135: MDRP[srp0,nmd,rd,0] 
+	00136: MDRP[nrp0,md,rd,0] 
+	00137: MIRP[nrp0,md,rd,1] 
+	00138: SRP1       
+	00139: IP         
+	00140: IP         
+	00141: SDS        
+	00142: SDB        
+	00143: DELTAP1    
+	00144: MIAP[rd+ci] 
+	00145: MDAP[rd]   
+	00146: IUP[y]     
+	00147: IUP[x]     
+	00148: SDB        
+	00149: DELTAP1    
+	00150: DELTAP1    
+	00151: SDS        
+	00152: SDB        
+	00153: DELTAP1    
+	00154: CALL       
+	00155: DELTAP1    
+	00156: DELTAP1    
+	00157: DELTAP1    
+	00158: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:                                      Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:                                      Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual               Y-Short X-Short On
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short On
+	 31:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short X-Short On
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:        XDual         Y-Short X-Short Off
+	 38:        XDual         Y-Short         On
+	 39:        XDual         Y-Short         Off
+	 40:                      Y-Short X-Short Off
+	 41:                      Y-Short X-Short On
+	 42:        XDual Rep-  1 Y-Short X-Short Off
+	 44:        XDual         Y-Short         On
+	 45:        XDual         Y-Short         Off
+	 46:                      Y-Short X-Short Off
+	 47:  YDual                       X-Short On
+	 48:  YDual                       X-Short Off
+	 49:        XDual Rep-  1         X-Short On
+	 51:                              X-Short On
+	 52:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   727,   287)  ->  Abs (   727,   287)
+	  1: Rel (  -148,  -196)  ->  Abs (   579,    91)
+	  2: Rel (  -536,  -439)  ->  Abs (    43,  -348)
+	  3: Rel (  -180,     0)  ->  Abs (  -137,  -348)
+	  4: Rel (   -44,     0)  ->  Abs (  -181,  -348)
+	  5: Rel (   -52,    44)  ->  Abs (  -233,  -304)
+	  6: Rel (     0,    36)  ->  Abs (  -233,  -268)
+	  7: Rel (     0,    39)  ->  Abs (  -233,  -229)
+	  8: Rel (    59,    47)  ->  Abs (  -174,  -182)
+	  9: Rel (    70,    20)  ->  Abs (  -104,  -162)
+	 10: Rel (   155,    48)  ->  Abs (    51,  -114)
+	 11: Rel (   354,   262)  ->  Abs (   405,   148)
+	 12: Rel (   146,   184)  ->  Abs (   551,   332)
+	 13: Rel (   -47,    28)  ->  Abs (   504,   360)
+	 14: Rel (     0,    54)  ->  Abs (   504,   414)
+	 15: Rel (     0,    51)  ->  Abs (   504,   465)
+	 16: Rel (    83,    57)  ->  Abs (   587,   522)
+	 17: Rel (    56,     0)  ->  Abs (   643,   522)
+	 18: Rel (    46,     0)  ->  Abs (   689,   522)
+	 19: Rel (    75,   -46)  ->  Abs (   764,   476)
+	 20: Rel (     8,   -27)  ->  Abs (   772,   449)
+	 21: Rel (    47,   -13)  ->  Abs (   819,   436)
+	 22: Rel (    58,     0)  ->  Abs (   877,   436)
+	 23: Rel (   172,     0)  ->  Abs (  1049,   436)
+	 24: Rel (     0,   139)  ->  Abs (  1049,   575)
+	 25: Rel (     0,   104)  ->  Abs (  1049,   679)
+	 26: Rel (  -195,    38)  ->  Abs (   854,   717)
+	 27: Rel (   -74,    13)  ->  Abs (   780,   730)
+	 28: Rel (     0,    65)  ->  Abs (   780,   795)
+	 29: Rel (     0,    71)  ->  Abs (   780,   866)
+	 30: Rel (    84,    15)  ->  Abs (   864,   881)
+	 31: Rel (    35,     6)  ->  Abs (   899,   887)
+	 32: Rel (   145,    60)  ->  Abs (  1044,   947)
+	 33: Rel (    41,    26)  ->  Abs (  1085,   973)
+	 34: Rel (    56,    35)  ->  Abs (  1141,  1008)
+	 35: Rel (    41,     0)  ->  Abs (  1182,  1008)
+	 36: Rel (    36,     0)  ->  Abs (  1218,  1008)
+	 37: Rel (    46,   -46)  ->  Abs (  1264,   962)
+	 38: Rel (     0,   -34)  ->  Abs (  1264,   928)
+	 39: Rel (     0,   -41)  ->  Abs (  1264,   887)
+	 40: Rel (  -101,   -65)  ->  Abs (  1163,   822)
+	 41: Rel (   -94,   -36)  ->  Abs (  1069,   786)
+	 42: Rel (    81,   -21)  ->  Abs (  1150,   765)
+	 43: Rel (    97,  -115)  ->  Abs (  1247,   650)
+	 44: Rel (     0,   -72)  ->  Abs (  1247,   578)
+	 45: Rel (     0,  -135)  ->  Abs (  1247,   443)
+	 46: Rel (  -220,  -173)  ->  Abs (  1027,   270)
+	 47: Rel (  -157,     0)  ->  Abs (   870,   270)
+	 48: Rel (   -80,     0)  ->  Abs (   790,   270)
+	 49: Rel (    21,   830)  ->  Abs (   811,  1100)
+	 50: Rel (    29, -1481)  ->  Abs (   840,  -381)
+	 51: Rel (   -31,  1841)  ->  Abs (   809,  1460)
+	 52: Rel (  -809,  -639)  ->  Abs (     0,   821)
+
+	Glyph  65: off = 0x00003058, len = 328
+	  numberOfContours:	6
+	  xMin:			-94
+	  yMin:			-471
+	  xMax:			1124
+	  yMax:			1530
+
+	EndPoints
+	---------
+	  0:  36
+	  1:  47
+	  2:  48
+	  3:  49
+	  4:  50
+	  5:  51
+
+	  Length of Instructions:	162
+	00000: NPUSHB      (23):    36    48    11    17    72    22    30    38    30     2 
+	                            54    27    70    27     2    50     6     1   102     4 
+	                             1    51    50 
+	00025: PUSHW[3]            259    48   258 
+	00032: NPUSHB      (27):    34   233    15    40     1    11    40    37     0     2 
+	                            46     2     8    19    25     4    11    46   233    28 
+	                            15    16   232    49    11   230    37 
+	00061: PUSHW[1]            -16 
+	00064: NPUSHB      (43):    12    15    72    51    50    48    19   247     0     8 
+	                            16     8    32     8     3    18     3     8    37     0 
+	                            43     2   247    25     8    25    48    51     4    14 
+	                            43   249    64    49    31    53    31   246     2    52 
+	                            14   241     2 
+	00109: CALL       
+	00110: CALL       
+	00111: SVTCA[x-axis] 
+	00112: RTG        
+	00113: SRP0       
+	00114: MDRP[nrp0,nmd,rd,0] 
+	00115: SMD        
+	00116: FLIPON     
+	00117: MIRP[nrp0,md,rd,1] 
+	00118: SRP2       
+	00119: SLOOP      
+	00120: IP         
+	00121: MDAP[rd]   
+	00122: MIRP[nrp0,md,rd,1] 
+	00123: SRP1       
+	00124: IP         
+	00125: IP         
+	00126: MDAP[rd]   
+	00127: SDS        
+	00128: SDB        
+	00129: DELTAP1    
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: MDAP[rd]   
+	00132: MDRP[nrp0,nmd,nrd,0] 
+	00133: MDAP[rd]   
+	00134: CALL       
+	00135: SVTCA[y-axis] 
+	00136: MIAP[rd+ci] 
+	00137: MDRP[nrp0,nmd,rd,2] 
+	00138: MIRP[nrp0,md,rd,1] 
+	00139: MIAP[rd+ci] 
+	00140: MIRP[srp0,md,rd,1] 
+	00141: SRP2       
+	00142: SLOOP      
+	00143: IP         
+	00144: SRP1       
+	00145: SRP2       
+	00146: IP         
+	00147: IP         
+	00148: MDRP[srp0,nmd,rd,2] 
+	00149: SDB        
+	00150: DELTAP1    
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: MIAP[rd+ci] 
+	00153: MIAP[rd+ci] 
+	00154: MDAP[rd]   
+	00155: IUP[y]     
+	00156: IUP[x]     
+	00157: DELTAP1    
+	00158: DELTAP1    
+	00159: DELTAP1    
+	00160: DELTAP1    
+	00161: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:        XDual         Y-Short X-Short Off
+	  5:        XDual         Y-Short X-Short On
+	  6:        XDual Rep-  1 Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short         Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short On
+	 17:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short On
+	 23:  YDual       Rep-  1 Y-Short X-Short Off
+	 25:  YDual XDual         Y-Short         On
+	 26:  YDual XDual         Y-Short         Off
+	 27:                                      Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short X-Short Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short X-Short On
+	 38:        XDual Rep-  1 Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:  YDual XDual         Y-Short X-Short Off
+	 43:  YDual XDual         Y-Short         On
+	 44:  YDual XDual         Y-Short         Off
+	 45:  YDual               Y-Short X-Short Off
+	 46:  YDual                       X-Short On
+	 47:  YDual                       X-Short Off
+	 48:                              X-Short On
+	 49:              Rep-  1                 On
+	 51:  YDual XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   442,   401)  ->  Abs (   442,   401)
+	  1: Rel (  -135,  -118)  ->  Abs (   307,   283)
+	  2: Rel (     0,   -54)  ->  Abs (   307,   229)
+	  3: Rel (     0,   -15)  ->  Abs (   307,   214)
+	  4: Rel (    49,   -32)  ->  Abs (   356,   182)
+	  5: Rel (    82,   -37)  ->  Abs (   438,   145)
+	  6: Rel (   100,   -43)  ->  Abs (   538,   102)
+	  7: Rel (    89,   -83)  ->  Abs (   627,    19)
+	  8: Rel (     0,   -54)  ->  Abs (   627,   -35)
+	  9: Rel (     0,   -98)  ->  Abs (   627,  -133)
+	 10: Rel (  -419,  -215)  ->  Abs (   208,  -348)
+	 11: Rel (  -161,     0)  ->  Abs (    47,  -348)
+	 12: Rel (   -67,     0)  ->  Abs (   -20,  -348)
+	 13: Rel (   -74,    50)  ->  Abs (   -94,  -298)
+	 14: Rel (     0,    44)  ->  Abs (   -94,  -254)
+	 15: Rel (     0,    86)  ->  Abs (   -94,  -168)
+	 16: Rel (   139,    10)  ->  Abs (    45,  -158)
+	 17: Rel (   113,     8)  ->  Abs (   158,  -150)
+	 18: Rel (   217,    75)  ->  Abs (   375,   -75)
+	 19: Rel (     0,    26)  ->  Abs (   375,   -49)
+	 20: Rel (     0,    13)  ->  Abs (   375,   -36)
+	 21: Rel (   -33,    19)  ->  Abs (   342,   -17)
+	 22: Rel (   -51,    21)  ->  Abs (   291,     4)
+	 23: Rel (  -128,    52)  ->  Abs (   163,    56)
+	 24: Rel (   -79,    81)  ->  Abs (    84,   137)
+	 25: Rel (     0,    68)  ->  Abs (    84,   205)
+	 26: Rel (     0,   132)  ->  Abs (    84,   337)
+	 27: Rel (   559,   490)  ->  Abs (   643,   827)
+	 28: Rel (   225,     0)  ->  Abs (   868,   827)
+	 29: Rel (   113,     0)  ->  Abs (   981,   827)
+	 30: Rel (   143,  -152)  ->  Abs (  1124,   675)
+	 31: Rel (     0,  -114)  ->  Abs (  1124,   561)
+	 32: Rel (     0,  -152)  ->  Abs (  1124,   409)
+	 33: Rel (  -200,  -206)  ->  Abs (   924,   203)
+	 34: Rel (  -179,     0)  ->  Abs (   745,   203)
+	 35: Rel (   -78,     0)  ->  Abs (   667,   203)
+	 36: Rel (  -166,   108)  ->  Abs (   501,   311)
+	 37: Rel (    70,   201)  ->  Abs (   571,   512)
+	 38: Rel (    34,   -58)  ->  Abs (   605,   454)
+	 39: Rel (   113,   -77)  ->  Abs (   718,   377)
+	 40: Rel (    48,     0)  ->  Abs (   766,   377)
+	 41: Rel (    77,     0)  ->  Abs (   843,   377)
+	 42: Rel (    87,    89)  ->  Abs (   930,   466)
+	 43: Rel (     0,    77)  ->  Abs (   930,   543)
+	 44: Rel (     0,    50)  ->  Abs (   930,   593)
+	 45: Rel (   -49,    62)  ->  Abs (   881,   655)
+	 46: Rel (   -41,     0)  ->  Abs (   840,   655)
+	 47: Rel (  -115,     0)  ->  Abs (   725,   655)
+	 48: Rel (  -100,   445)  ->  Abs (   625,  1100)
+	 49: Rel (   265, -1571)  ->  Abs (   890,  -471)
+	 50: Rel (  -265,  1871)  ->  Abs (   625,  1400)
+	 51: Rel (   118,   130)  ->  Abs (   743,  1530)
+
+	Glyph  66: off = 0x000031A0, len = 222
+	  numberOfContours:	3
+	  xMin:			-238
+	  yMin:			-348
+	  xMax:			1155
+	  yMax:			1140
+
+	EndPoints
+	---------
+	  0:  34
+	  1:  35
+	  2:  36
+
+	  Length of Instructions:	98
+	00000: NPUSHB      (33):     5    33   133    33     2     3     0    24    48    24 
+	                            64    24    80    24     4     9     5    35    11     0 
+	                            20     5     2   234    16    20    15    36    32   232 
+	                            27   230    16 
+	00035: PUSHW[1]            -32 
+	00038: NPUSHB      (24):    13    17    72     0    64    12    17    72    16    14 
+	                            35     5    64     0    36    23    38    23   246     2 
+	                            37    30   239     2 
+	00064: CALL       
+	00065: CALL       
+	00066: SVTCA[x-axis] 
+	00067: RTG        
+	00068: SRP0       
+	00069: MDRP[nrp0,nmd,rd,0] 
+	00070: SHP[rp1,zp0] 
+	00071: SMD        
+	00072: MDRP[srp0,md,rd,1] 
+	00073: MDRP[nrp0,nmd,rd,0] 
+	00074: MDRP[nrp0,md,rd,1] 
+	00075: IP         
+	00076: CALL       
+	00077: CALL       
+	00078: SVTCA[y-axis] 
+	00079: MIAP[rd+ci] 
+	00080: FLIPON     
+	00081: MIRP[nrp0,md,rd,1] 
+	00082: MDRP[nrp0,nmd,rd,0] 
+	00083: MIAP[rd+ci] 
+	00084: MDRP[srp0,nmd,rd,0] 
+	00085: MIRP[nrp0,md,rd,1] 
+	00086: IP         
+	00087: SRP1       
+	00088: IP         
+	00089: MDRP[srp0,md,rd,1] 
+	00090: MDRP[nrp0,nmd,rd,2] 
+	00091: IUP[y]     
+	00092: IUP[x]     
+	00093: SDS        
+	00094: SDB        
+	00095: DELTAP1    
+	00096: SDS        
+	00097: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short On
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short X-Short On
+	 17:  YDual XDual                 X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual                 X-Short On
+	 21:  YDual XDual                 X-Short Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short         On
+	 24:        XDual         Y-Short         Off
+	 25:              Rep-  1                 Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual               Y-Short         Off
+	 34:                                      Off
+	 35:                              X-Short On
+	 36:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   915,   649)  ->  Abs (   915,   649)
+	  1: Rel (  -100,   -16)  ->  Abs (   815,   633)
+	  2: Rel (  -137,     0)  ->  Abs (   678,   633)
+	  3: Rel (   -84,     0)  ->  Abs (   594,   633)
+	  4: Rel (   -92,    61)  ->  Abs (   502,   694)
+	  5: Rel (     0,    47)  ->  Abs (   502,   741)
+	  6: Rel (     0,    47)  ->  Abs (   502,   788)
+	  7: Rel (    43,    31)  ->  Abs (   545,   819)
+	  8: Rel (   111,    80)  ->  Abs (   656,   899)
+	  9: Rel (    83,    94)  ->  Abs (   739,   993)
+	 10: Rel (    38,    43)  ->  Abs (   777,  1036)
+	 11: Rel (    52,     0)  ->  Abs (   829,  1036)
+	 12: Rel (    35,     0)  ->  Abs (   864,  1036)
+	 13: Rel (    43,   -49)  ->  Abs (   907,   987)
+	 14: Rel (     0,   -35)  ->  Abs (   907,   952)
+	 15: Rel (     0,   -67)  ->  Abs (   907,   885)
+	 16: Rel (  -139,   -88)  ->  Abs (   768,   797)
+	 17: Rel (    54,     0)  ->  Abs (   822,   797)
+	 18: Rel (   140,    14)  ->  Abs (   962,   811)
+	 19: Rel (    97,    10)  ->  Abs (  1059,   821)
+	 20: Rel (    26,     0)  ->  Abs (  1085,   821)
+	 21: Rel (    31,     0)  ->  Abs (  1116,   821)
+	 22: Rel (    39,   -44)  ->  Abs (  1155,   777)
+	 23: Rel (     0,   -32)  ->  Abs (  1155,   745)
+	 24: Rel (     0,   -69)  ->  Abs (  1155,   676)
+	 25: Rel (  -453,  -522)  ->  Abs (   702,   154)
+	 26: Rel (  -694,  -502)  ->  Abs (     8,  -348)
+	 27: Rel (  -141,     0)  ->  Abs (  -133,  -348)
+	 28: Rel (   -48,     0)  ->  Abs (  -181,  -348)
+	 29: Rel (   -57,    48)  ->  Abs (  -238,  -300)
+	 30: Rel (     0,    40)  ->  Abs (  -238,  -260)
+	 31: Rel (     0,    64)  ->  Abs (  -238,  -196)
+	 32: Rel (    91,    34)  ->  Abs (  -147,  -162)
+	 33: Rel (   295,   113)  ->  Abs (   148,   -49)
+	 34: Rel (   598,   474)  ->  Abs (   746,   425)
+	 35: Rel (  -220,   715)  ->  Abs (   526,  1140)
+	 36: Rel (   402, -1433)  ->  Abs (   928,  -293)
+
+	Glyph  67: off = 0x0000327E, len = 260
+	  numberOfContours:	4
+	  xMin:			-78
+	  yMin:			-348
+	  xMax:			1147
+	  yMax:			1400
+
+	EndPoints
+	---------
+	  0:  38
+	  1:  39
+	  2:  40
+	  3:  41
+
+	  Length of Instructions:	123
+	00000: NPUSHB      (23):    27    48    12    16    72    21    24     1   132    21 
+	                             1    52     9    68     9   132     9     3    10     6 
+	                             1     9    41 
+	00025: PUSHW[3]            259    39   258 
+	00032: NPUSHB      (47):     3     8    20    26     4    29    17   232    12    15 
+	                            35     0   232    40    29   229    41    39    40     3 
+	                           249    15    26    31    26     2    12     3    26    39 
+	                            15    20   247    64     8    26     8    15    32    43 
+	                            15   246     2    42    32   241     2 
+	00081: CALL       
+	00082: CALL       
+	00083: SVTCA[x-axis] 
+	00084: SRP1       
+	00085: SRP2       
+	00086: IP         
+	00087: IP         
+	00088: RTG        
+	00089: MDAP[rd]   
+	00090: SMD        
+	00091: FLIPON     
+	00092: MIRP[nrp0,md,rd,1] 
+	00093: SRP2       
+	00094: IP         
+	00095: MDAP[rd]   
+	00096: SDS        
+	00097: SDB        
+	00098: DELTAP1    
+	00099: MIRP[nrp0,md,rd,1] 
+	00100: MDRP[nrp0,nmd,rd,2] 
+	00101: MDAP[rd]   
+	00102: MDRP[nrp0,nmd,rd,2] 
+	00103: SVTCA[y-axis] 
+	00104: MIAP[rd+ci] 
+	00105: MDRP[nrp0,nmd,rd,2] 
+	00106: MIRP[srp0,md,rd,1] 
+	00107: MDRP[nrp0,nmd,rd,0] 
+	00108: MIAP[rd+ci] 
+	00109: MIRP[nrp0,md,rd,1] 
+	00110: SRP2       
+	00111: SLOOP      
+	00112: IP         
+	00113: MIAP[rd+ci] 
+	00114: MIAP[rd+ci] 
+	00115: IUP[y]     
+	00116: IUP[x]     
+	00117: SDB        
+	00118: DELTAP1    
+	00119: DELTAP1    
+	00120: DELTAP1    
+	00121: DELTAP1    
+	00122: CALL       
+
+	Flags
+	-----
+	  0:  YDual                               On
+	  1:  YDual XDual                 X-Short Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual               Y-Short X-Short On
+	  7:  YDual               Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short         On
+	  9:  YDual XDual         Y-Short         Off
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual               Y-Short         Off
+	 12:  YDual XDual                 X-Short On
+	 13:  YDual XDual                 X-Short Off
+	 14:        XDual         Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short On
+	 18:                      Y-Short X-Short Off
+	 19:                      Y-Short         Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short On
+	 24:        XDual Rep-  1 Y-Short X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:                      Y-Short         Off
+	 29:  YDual                               On
+	 30:  YDual                       X-Short Off
+	 31:  YDual               Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short         On
+	 33:  YDual XDual         Y-Short         Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:        XDual         Y-Short X-Short On
+	 38:        XDual         Y-Short X-Short Off
+	 39:              Rep-  2                 On
+
+	Coordinates
+	-----------
+	  0: Rel (   305,     0)  ->  Abs (   305,     0)
+	  1: Rel (   171,     0)  ->  Abs (   476,     0)
+	  2: Rel (   239,    97)  ->  Abs (   715,    97)
+	  3: Rel (     0,    75)  ->  Abs (   715,   172)
+	  4: Rel (     0,    28)  ->  Abs (   715,   200)
+	  5: Rel (   -94,    53)  ->  Abs (   621,   253)
+	  6: Rel (  -109,    42)  ->  Abs (   512,   295)
+	  7: Rel (  -154,    58)  ->  Abs (   358,   353)
+	  8: Rel (     0,   118)  ->  Abs (   358,   471)
+	  9: Rel (     0,    68)  ->  Abs (   358,   539)
+	 10: Rel (   166,   117)  ->  Abs (   524,   656)
+	 11: Rel (   409,   167)  ->  Abs (   933,   823)
+	 12: Rel (   114,     0)  ->  Abs (  1047,   823)
+	 13: Rel (    46,     0)  ->  Abs (  1093,   823)
+	 14: Rel (    54,   -48)  ->  Abs (  1147,   775)
+	 15: Rel (     0,   -36)  ->  Abs (  1147,   739)
+	 16: Rel (     0,   -92)  ->  Abs (  1147,   647)
+	 17: Rel (  -113,   -10)  ->  Abs (  1034,   637)
+	 18: Rel (  -138,   -11)  ->  Abs (   896,   626)
+	 19: Rel (  -335,  -125)  ->  Abs (   561,   501)
+	 20: Rel (     0,   -34)  ->  Abs (   561,   467)
+	 21: Rel (     0,   -10)  ->  Abs (   561,   457)
+	 22: Rel (    21,   -14)  ->  Abs (   582,   443)
+	 23: Rel (    71,   -26)  ->  Abs (   653,   417)
+	 24: Rel (   160,   -59)  ->  Abs (   813,   358)
+	 25: Rel (    94,  -107)  ->  Abs (   907,   251)
+	 26: Rel (     0,   -54)  ->  Abs (   907,   197)
+	 27: Rel (     0,  -162)  ->  Abs (   907,    35)
+	 28: Rel (  -387,  -219)  ->  Abs (   520,  -184)
+	 29: Rel (  -278,     0)  ->  Abs (   242,  -184)
+	 30: Rel (  -136,     0)  ->  Abs (   106,  -184)
+	 31: Rel (  -184,    84)  ->  Abs (   -78,  -100)
+	 32: Rel (     0,    61)  ->  Abs (   -78,   -39)
+	 33: Rel (     0,    36)  ->  Abs (   -78,    -3)
+	 34: Rel (    46,    52)  ->  Abs (   -32,    49)
+	 35: Rel (    38,     0)  ->  Abs (     6,    49)
+	 36: Rel (    22,     0)  ->  Abs (    28,    49)
+	 37: Rel (    53,   -15)  ->  Abs (    81,    34)
+	 38: Rel (   117,   -34)  ->  Abs (   198,     0)
+	 39: Rel (   432,  1100)  ->  Abs (   630,  1100)
+	 40: Rel (   281, -1448)  ->  Abs (   911,  -348)
+	 41: Rel (  -258,  1748)  ->  Abs (   653,  1400)
+
+	Glyph  68: off = 0x00003382, len = 310
+	  numberOfContours:	3
+	  xMin:			41
+	  yMin:			-537
+	  xMax:			1354
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  53
+	  1:  54
+	  2:  55
+
+	  Length of Instructions:	142
+	00000: NPUSHB      (16):    73    49     1    34    44    50    44    66    44     3 
+	                            37    40    53    40     2     9 
+	00018: PUSHW[1]            -16 
+	00021: NPUSHB      (24):    14    17    72    38     5    54     5    70     5     3 
+	                            13     3    61     3    77     3     3    13    13     2 
+	                             1    17     3    55 
+	00047: PUSHW[1]            258 
+	00050: NPUSHB      (42):    54    32    51   232    42     4    22    32     3     7 
+	                            27    46    37    15    11     7   234    17   230    24 
+	                            24    22    20    37     0    14    55    54     0    14 
+	                            54    55     4    48     4   177    64    20    57    48 
+	                           246     2 
+	00094: CALL       
+	00095: SVTCA[x-axis] 
+	00096: RTG        
+	00097: MDAP[rd]   
+	00098: SMD        
+	00099: FLIPON     
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: SRP2       
+	00102: SLOOP      
+	00103: IP         
+	00104: MDAP[rd]   
+	00105: MDAP[rd]   
+	00106: MDAP[rd]   
+	00107: RTHG       
+	00108: MDAP[rd]   
+	00109: SHP[rp1,zp0] 
+	00110: SRP2       
+	00111: IP         
+	00112: IP         
+	00113: RTG        
+	00114: MDAP[rd]   
+	00115: SVTCA[y-axis] 
+	00116: MIAP[rd+ci] 
+	00117: MIRP[srp0,md,rd,1] 
+	00118: MDRP[nrp0,nmd,rd,0] 
+	00119: MIAP[rd+ci] 
+	00120: MDRP[nrp0,nmd,rd,0] 
+	00121: MDRP[nrp0,nmd,rd,0] 
+	00122: SRP2       
+	00123: SLOOP      
+	00124: IP         
+	00125: MDRP[srp0,nmd,rd,0] 
+	00126: MIRP[nrp0,md,rd,1] 
+	00127: MDAP[rd]   
+	00128: MDAP[rd]   
+	00129: MIAP[rd+ci] 
+	00130: IUP[y]     
+	00131: IUP[x]     
+	00132: SDS        
+	00133: SDB        
+	00134: DELTAP1    
+	00135: SDB        
+	00136: DELTAP1    
+	00137: DELTAP1    
+	00138: CALL       
+	00139: DELTAP1    
+	00140: DELTAP1    
+	00141: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:                      Y-Short X-Short On
+	  3:                      Y-Short         Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:        XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:  YDual XDual                 X-Short On
+	 12:  YDual XDual                 X-Short Off
+	 13:        XDual         Y-Short X-Short Off
+	 14:        XDual         Y-Short         On
+	 15:        XDual         Y-Short         Off
+	 16:                      Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:        XDual                         Off
+	 22:  YDual               Y-Short         On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short X-Short On
+	 31:        XDual         Y-Short X-Short Off
+	 32:  YDual XDual                 X-Short On
+	 33:  YDual XDual                 X-Short Off
+	 34:  YDual XDual         Y-Short X-Short Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual XDual         Y-Short X-Short Off
+	 37:  YDual XDual                 X-Short On
+	 38:  YDual XDual                 X-Short Off
+	 39:        XDual         Y-Short X-Short Off
+	 40:        XDual         Y-Short X-Short On
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short X-Short On
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual XDual         Y-Short X-Short On
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual                 X-Short On
+	 47:  YDual XDual                 X-Short Off
+	 48:        XDual         Y-Short         On
+	 49:        XDual         Y-Short         Off
+	 50:                      Y-Short X-Short Off
+	 51:  YDual                       X-Short On
+	 52:  YDual                       X-Short Off
+	 53:  YDual               Y-Short X-Short Off
+	 54:        XDual                 X-Short On
+	 55:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   815,   608)  ->  Abs (   815,   608)
+	  1: Rel (   -83,   -66)  ->  Abs (   732,   542)
+	  2: Rel (  -171,  -106)  ->  Abs (   561,   436)
+	  3: Rel (  -338,  -206)  ->  Abs (   223,   230)
+	  4: Rel (     0,  -203)  ->  Abs (   223,    27)
+	  5: Rel (     0,   -96)  ->  Abs (   223,   -69)
+	  6: Rel (   142,  -117)  ->  Abs (   365,  -186)
+	  7: Rel (   131,     0)  ->  Abs (   496,  -186)
+	  8: Rel (   112,     0)  ->  Abs (   608,  -186)
+	  9: Rel (   151,    49)  ->  Abs (   759,  -137)
+	 10: Rel (    73,    24)  ->  Abs (   832,  -113)
+	 11: Rel (    26,     0)  ->  Abs (   858,  -113)
+	 12: Rel (    33,     0)  ->  Abs (   891,  -113)
+	 13: Rel (    41,   -46)  ->  Abs (   932,  -159)
+	 14: Rel (     0,   -36)  ->  Abs (   932,  -195)
+	 15: Rel (     0,   -64)  ->  Abs (   932,  -259)
+	 16: Rel (  -279,   -93)  ->  Abs (   653,  -352)
+	 17: Rel (  -159,     0)  ->  Abs (   494,  -352)
+	 18: Rel (  -216,     0)  ->  Abs (   278,  -352)
+	 19: Rel (  -237,   204)  ->  Abs (    41,  -148)
+	 20: Rel (     0,   168)  ->  Abs (    41,    20)
+	 21: Rel (     0,   278)  ->  Abs (    41,   298)
+	 22: Rel (   365,   226)  ->  Abs (   406,   524)
+	 23: Rel (  -107,    49)  ->  Abs (   299,   573)
+	 24: Rel (     0,    91)  ->  Abs (   299,   664)
+	 25: Rel (     0,    59)  ->  Abs (   299,   723)
+	 26: Rel (    82,    84)  ->  Abs (   381,   807)
+	 27: Rel (    72,     0)  ->  Abs (   453,   807)
+	 28: Rel (    26,     0)  ->  Abs (   479,   807)
+	 29: Rel (    51,   -25)  ->  Abs (   530,   782)
+	 30: Rel (    34,   -46)  ->  Abs (   564,   736)
+	 31: Rel (    34,   -46)  ->  Abs (   598,   690)
+	 32: Rel (    25,     0)  ->  Abs (   623,   690)
+	 33: Rel (    24,     0)  ->  Abs (   647,   690)
+	 34: Rel (    27,    14)  ->  Abs (   674,   704)
+	 35: Rel (    28,    25)  ->  Abs (   702,   729)
+	 36: Rel (    95,    92)  ->  Abs (   797,   821)
+	 37: Rel (    43,     0)  ->  Abs (   840,   821)
+	 38: Rel (    22,     0)  ->  Abs (   862,   821)
+	 39: Rel (    44,   -33)  ->  Abs (   906,   788)
+	 40: Rel (    38,   -65)  ->  Abs (   944,   723)
+	 41: Rel (    36,   -61)  ->  Abs (   980,   662)
+	 42: Rel (    21,   -21)  ->  Abs (  1001,   641)
+	 43: Rel (    91,    30)  ->  Abs (  1092,   671)
+	 44: Rel (    57,   103)  ->  Abs (  1149,   774)
+	 45: Rel (    55,    98)  ->  Abs (  1204,   872)
+	 46: Rel (    56,     0)  ->  Abs (  1260,   872)
+	 47: Rel (    94,     0)  ->  Abs (  1354,   872)
+	 48: Rel (     0,   -94)  ->  Abs (  1354,   778)
+	 49: Rel (     0,   -89)  ->  Abs (  1354,   689)
+	 50: Rel (  -252,  -234)  ->  Abs (  1102,   455)
+	 51: Rel (  -123,     0)  ->  Abs (   979,   455)
+	 52: Rel (   -37,     0)  ->  Abs (   942,   455)
+	 53: Rel (   -71,    68)  ->  Abs (   871,   523)
+	 54: Rel (   108, -1060)  ->  Abs (   979,  -537)
+	 55: Rel (  -139,  1637)  ->  Abs (   840,  1100)
+
+	Glyph  69: off = 0x000034B8, len = 300
+	  numberOfContours:	6
+	  xMin:			80
+	  yMin:			-49
+	  xMax:			2175
+	  yMax:			1400
+
+	EndPoints
+	---------
+	  0:  35
+	  1:  36
+	  2:  37
+	  3:  38
+	  4:  39
+	  5:  40
+
+	  Length of Instructions:	153
+	00000: NPUSHB      (13):    31    32    14    17    72    99    26   115    26   131 
+	                            26     3    24 
+	00015: PUSHW[1]            -24 
+	00018: PUSHB[4]             11    17    72    10 
+	00023: PUSHW[1]            -32 
+	00026: NPUSHB      (13):    12    16    72   133     8     1   138     2     1    39 
+	                            39    36    38 
+	00041: PUSHW[3]            259    36   258 
+	00048: NPUSHB      (51):     0    40    16    40    32    40   144    40     4    40 
+	                            37    37     3    11     0    17    34   233    64    22 
+	                             3    22     3    41    27    17    15    40    15    37 
+	                             1     9     3    37    38    39    36    37    36    30 
+	                            14    42    30   246     2    20     0   177    14    11 
+	                             6 
+	00101: MDAP[rd]   
+	00102: MDRP[srp0,nmd,rd,0] 
+	00103: MDRP[nrp0,md,rd,1] 
+	00104: MIRP[srp0,md,rd,1] 
+	00105: MDRP[nrp0,nmd,rd,1] 
+	00106: CALL       
+	00107: SVTCA[x-axis] 
+	00108: SRP1       
+	00109: SRP2       
+	00110: IP         
+	00111: IP         
+	00112: RTG        
+	00113: MDAP[rd]   
+	00114: MDRP[nrp0,nmd,nrd,0] 
+	00115: MDRP[nrp0,nmd,nrd,0] 
+	00116: MDAP[rd]   
+	00117: SDS        
+	00118: SDB        
+	00119: DELTAP1    
+	00120: MDRP[nrp0,nmd,rd,2] 
+	00121: SVTCA[y-axis] 
+	00122: MIAP[rd+ci] 
+	00123: MDRP[nrp0,nmd,rd,0] 
+	00124: SRP2       
+	00125: IP         
+	00126: IP         
+	00127: MDAP[rd]   
+	00128: MDAP[rd]   
+	00129: SMD        
+	00130: FLIPON     
+	00131: MIRP[nrp0,md,rd,1] 
+	00132: SRP1       
+	00133: IP         
+	00134: IP         
+	00135: SRP1       
+	00136: IP         
+	00137: MDAP[rd]   
+	00138: MDAP[rd]   
+	00139: DELTAP1    
+	00140: MIAP[rd+ci] 
+	00141: MIAP[rd+ci] 
+	00142: SRP2       
+	00143: IP         
+	00144: MDAP[rd]   
+	00145: IUP[y]     
+	00146: IUP[x]     
+	00147: DELTAP1    
+	00148: DELTAP1    
+	00149: CALL       
+	00150: CALL       
+	00151: DELTAP1    
+	00152: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:              Rep-  1 Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 11:  YDual XDual         Y-Short X-Short On
+	 12:  YDual       Rep-  1 Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short X-Short On
+	 21:        XDual         Y-Short X-Short Off
+	 22:  YDual                               On
+	 23:  YDual                               Off
+	 24:  YDual               Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                              X-Short Off
+	 33:                      Y-Short         Off
+	 34:  YDual                               On
+	 35:  YDual                               Off
+	 36:              Rep-  2                 On
+	 39:        XDual         Y-Short         On
+	 40:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   539,   446)  ->  Abs (   539,   446)
+	  1: Rel (   -35,  -146)  ->  Abs (   504,   300)
+	  2: Rel (  -214,  -206)  ->  Abs (   290,    94)
+	  3: Rel (  -106,     0)  ->  Abs (   184,    94)
+	  4: Rel (   -47,     0)  ->  Abs (   137,    94)
+	  5: Rel (   -57,    48)  ->  Abs (    80,   142)
+	  6: Rel (     0,    40)  ->  Abs (    80,   182)
+	  7: Rel (     0,    76)  ->  Abs (    80,   258)
+	  8: Rel (   102,    18)  ->  Abs (   182,   276)
+	  9: Rel (    57,    11)  ->  Abs (   239,   287)
+	 10: Rel (   102,   127)  ->  Abs (   341,   414)
+	 11: Rel (    13,    75)  ->  Abs (   354,   489)
+	 12: Rel (   -55,    28)  ->  Abs (   299,   517)
+	 13: Rel (   -68,   108)  ->  Abs (   231,   625)
+	 14: Rel (     0,    57)  ->  Abs (   231,   682)
+	 15: Rel (     0,    58)  ->  Abs (   231,   740)
+	 16: Rel (    78,    81)  ->  Abs (   309,   821)
+	 17: Rel (    56,     0)  ->  Abs (   365,   821)
+	 18: Rel (    75,     0)  ->  Abs (   440,   821)
+	 19: Rel (   110,  -114)  ->  Abs (   550,   707)
+	 20: Rel (    13,   -86)  ->  Abs (   563,   621)
+	 21: Rel (   231,   -35)  ->  Abs (   794,   586)
+	 22: Rel (   336,     0)  ->  Abs (  1130,   586)
+	 23: Rel (   423,     0)  ->  Abs (  1553,   586)
+	 24: Rel (   352,   191)  ->  Abs (  1905,   777)
+	 25: Rel (    59,   126)  ->  Abs (  1964,   903)
+	 26: Rel (    40,    86)  ->  Abs (  2004,   989)
+	 27: Rel (    79,     0)  ->  Abs (  2083,   989)
+	 28: Rel (    39,     0)  ->  Abs (  2122,   989)
+	 29: Rel (    53,   -46)  ->  Abs (  2175,   943)
+	 30: Rel (     0,   -38)  ->  Abs (  2175,   905)
+	 31: Rel (     0,   -94)  ->  Abs (  2175,   811)
+	 32: Rel (  -248,  -262)  ->  Abs (  1927,   549)
+	 33: Rel (  -424,  -135)  ->  Abs (  1503,   414)
+	 34: Rel (  -399,     0)  ->  Abs (  1104,   414)
+	 35: Rel (  -353,     0)  ->  Abs (   751,   414)
+	 36: Rel (   439,   686)  ->  Abs (  1190,  1100)
+	 37: Rel (   283,  -895)  ->  Abs (  1473,   205)
+	 38: Rel (  -283,  1195)  ->  Abs (  1190,  1400)
+	 39: Rel (     0,  -250)  ->  Abs (  1190,  1150)
+	 40: Rel (   290, -1199)  ->  Abs (  1480,   -49)
+
+	Glyph  70: off = 0x000035E4, len = 302
+	  numberOfContours:	3
+	  xMin:			31
+	  yMin:			-354
+	  xMax:			901
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  38
+	  1:  39
+	  2:  40
+
+	  Length of Instructions:	171
+	00000: PUSHB[6]             38    24    12    17    72    35 
+	00007: PUSHW[1]            -24 
+	00010: NPUSHB      (31):    14    17    72    95    32     1    42    18    58    18 
+	                            74    18     3    38    13    54    13    70    13     3 
+	                            80    12     1    41    10    57    10    73    10     3 
+	                            40 
+	00043: PUSHW[1]            258 
+	00046: NPUSHB      (67):    21    33    36    84    16     1    16    11    84     0 
+	                             1     0     0    16    33     3     8    27    16    39 
+	                             3   232    64     8   229    80    33     1    15    16 
+	                             1    95    16     1    80     0     1     3     0     0 
+	                            16     0     2    12     5    16     0    11    36    33 
+	                            30    21     6    40     6    21    36    40     4    11 
+	                            39    30    42    30   243     2    11 
+	00115: MDAP[rd]   
+	00116: CALL       
+	00117: SVTCA[x-axis] 
+	00118: RTG        
+	00119: SRP0       
+	00120: MDRP[nrp0,nmd,rd,2] 
+	00121: SRP2       
+	00122: SLOOP      
+	00123: IP         
+	00124: MDAP[rd]   
+	00125: MDAP[rd]   
+	00126: MDAP[rd]   
+	00127: SRP2       
+	00128: IP         
+	00129: MDAP[rd]   
+	00130: SRP2       
+	00131: IP         
+	00132: IP         
+	00133: SDS        
+	00134: SDB        
+	00135: DELTAP1    
+	00136: SDS        
+	00137: DELTAP1    
+	00138: DELTAP1    
+	00139: DELTAP2    
+	00140: DELTAP1    
+	00141: SVTCA[y-axis] 
+	00142: MIAP[rd+ci] 
+	00143: SMD        
+	00144: FLIPON     
+	00145: MIRP[nrp0,md,rd,1] 
+	00146: MDRP[nrp0,nmd,rd,2] 
+	00147: MIAP[rd+ci] 
+	00148: SRP2       
+	00149: SLOOP      
+	00150: IP         
+	00151: RTHG       
+	00152: MDAP[rd]   
+	00153: DELTAP1    
+	00154: SHP[rp1,zp0] 
+	00155: MDAP[rd]   
+	00156: DELTAP1    
+	00157: SHP[rp1,zp0] 
+	00158: MDAP[rd]   
+	00159: SHP[rp1,zp0] 
+	00160: RTG        
+	00161: MIAP[rd+ci] 
+	00162: IUP[y]     
+	00163: IUP[x]     
+	00164: DELTAP1    
+	00165: DELTAP1    
+	00166: DELTAP1    
+	00167: DELTAP1    
+	00168: DELTAP1    
+	00169: CALL       
+	00170: CALL       
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:        XDual         Y-Short X-Short Off
+	  2:                      Y-Short         Off
+	  3:        XDual         Y-Short X-Short On
+	  4:        XDual Rep-  1 Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:  YDual                       X-Short On
+	  9:  YDual                       X-Short Off
+	 10:  YDual               Y-Short         Off
+	 11:  YDual XDual         Y-Short         On
+	 12:  YDual XDual         Y-Short         Off
+	 13:  YDual XDual         Y-Short X-Short On
+	 14:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 16:  YDual XDual         Y-Short         On
+	 17:  YDual XDual         Y-Short         Off
+	 18:  YDual               Y-Short X-Short On
+	 19:  YDual       Rep-  1 Y-Short X-Short Off
+	 21:  YDual XDual         Y-Short         On
+	 22:  YDual XDual         Y-Short         Off
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual Rep-  1 Y-Short X-Short On
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:                      Y-Short X-Short On
+	 34:        XDual Rep-  1 Y-Short X-Short Off
+	 36:        XDual         Y-Short         On
+	 37:        XDual         Y-Short         Off
+	 38:                      Y-Short X-Short Off
+	 39:              Rep-  1                 On
+
+	Coordinates
+	-----------
+	  0: Rel (   250,    90)  ->  Abs (   250,    90)
+	  1: Rel (    10,   -28)  ->  Abs (   260,    62)
+	  2: Rel (   259,   -52)  ->  Abs (   519,    10)
+	  3: Rel (   155,    -8)  ->  Abs (   674,     2)
+	  4: Rel (    63,    -3)  ->  Abs (   737,    -1)
+	  5: Rel (    49,   -46)  ->  Abs (   786,   -47)
+	  6: Rel (     0,   -49)  ->  Abs (   786,   -96)
+	  7: Rel (     0,   -84)  ->  Abs (   786,  -180)
+	  8: Rel (  -116,     0)  ->  Abs (   670,  -180)
+	  9: Rel (  -232,     0)  ->  Abs (   438,  -180)
+	 10: Rel (  -407,   159)  ->  Abs (    31,   -21)
+	 11: Rel (     0,    97)  ->  Abs (    31,    76)
+	 12: Rel (     0,   108)  ->  Abs (    31,   184)
+	 13: Rel (   180,    68)  ->  Abs (   211,   252)
+	 14: Rel (   146,    54)  ->  Abs (   357,   306)
+	 15: Rel (   149,    81)  ->  Abs (   506,   387)
+	 16: Rel (     0,    16)  ->  Abs (   506,   403)
+	 17: Rel (     0,    20)  ->  Abs (   506,   423)
+	 18: Rel (  -211,    56)  ->  Abs (   295,   479)
+	 19: Rel (   -29,     8)  ->  Abs (   266,   487)
+	 20: Rel (   -39,    43)  ->  Abs (   227,   530)
+	 21: Rel (     0,    29)  ->  Abs (   227,   559)
+	 22: Rel (     0,    35)  ->  Abs (   227,   594)
+	 23: Rel (    46,    61)  ->  Abs (   273,   655)
+	 24: Rel (   111,    59)  ->  Abs (   384,   714)
+	 25: Rel (   196,   103)  ->  Abs (   580,   817)
+	 26: Rel (    83,    45)  ->  Abs (   663,   862)
+	 27: Rel (    48,     0)  ->  Abs (   711,   862)
+	 28: Rel (    31,     0)  ->  Abs (   742,   862)
+	 29: Rel (    51,   -56)  ->  Abs (   793,   806)
+	 30: Rel (     0,   -32)  ->  Abs (   793,   774)
+	 31: Rel (     0,   -40)  ->  Abs (   793,   734)
+	 32: Rel (  -115,   -71)  ->  Abs (   678,   663)
+	 33: Rel (  -201,   -90)  ->  Abs (   477,   573)
+	 34: Rel (   138,   -35)  ->  Abs (   615,   538)
+	 35: Rel (   128,   -72)  ->  Abs (   743,   466)
+	 36: Rel (     0,   -63)  ->  Abs (   743,   403)
+	 37: Rel (     0,   -76)  ->  Abs (   743,   327)
+	 38: Rel (  -253,  -141)  ->  Abs (   490,   186)
+	 39: Rel (   411,  -540)  ->  Abs (   901,  -354)
+	 40: Rel (  -469,  1454)  ->  Abs (   432,  1100)
+
+	Glyph  71: off = 0x00003712, len = 290
+	  numberOfContours:	3
+	  xMin:			98
+	  yMin:			-582
+	  xMax:			1083
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  45
+	  1:  46
+	  2:  47
+
+	  Length of Instructions:	143
+	00000: NPUSHB      (11):    91    39   107    39   123    39     3   121    36     1 
+	                            26 
+	00013: PUSHW[1]            -32 
+	00016: NPUSHB      (30):    12    17    72   102    22     1    28    20   140    20 
+	                             2    75    19     1     3     9    32    13    17    72 
+	                             0     1    16     1    32     1     3     9     5    47 
+	00048: PUSHW[1]            258 
+	00051: NPUSHB      (45):     3     0    10    19    39     4    17    44    15    28 
+	                            24   234    64    34   230    46    31    15    41    47 
+	                            46    10    15    19    31     4    21     0    39    41 
+	                            46    47     5     6    37    49     6   244     2    21 
+	                           250    31    37     1    37 
+	00098: MDAP[rd]   
+	00099: DELTAP1    
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: CALL       
+	00102: SVTCA[x-axis] 
+	00103: SRP1       
+	00104: SRP2       
+	00105: SLOOP      
+	00106: IP         
+	00107: SRP1       
+	00108: SLOOP      
+	00109: IP         
+	00110: RTG        
+	00111: MDAP[rd]   
+	00112: MDAP[rd]   
+	00113: MDAP[rd]   
+	00114: MDAP[rd]   
+	00115: MDAP[rd]   
+	00116: SVTCA[y-axis] 
+	00117: MDAP[rd]   
+	00118: MIAP[rd+ci] 
+	00119: SMD        
+	00120: FLIPON     
+	00121: MIRP[srp0,md,rd,1] 
+	00122: MDRP[nrp0,nmd,rd,0] 
+	00123: MIAP[rd+ci] 
+	00124: MDRP[nrp0,md,rd,1] 
+	00125: SLOOP      
+	00126: IP         
+	00127: MDRP[nrp0,nmd,rd,0] 
+	00128: MIAP[rd+ci] 
+	00129: IUP[y]     
+	00130: IUP[x]     
+	00131: SDS        
+	00132: SDB        
+	00133: DELTAP1    
+	00134: CALL       
+	00135: SDS        
+	00136: DELTAP1    
+	00137: DELTAP1    
+	00138: DELTAP1    
+	00139: CALL       
+	00140: DELTAP1    
+	00141: SVTCA[x-axis] 
+	00142: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual Rep-  1 Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short On
+	  9:                      Y-Short X-Short Off
+	 10:                      Y-Short X-Short On
+	 11:        XDual         Y-Short X-Short Off
+	 12:        XDual         Y-Short X-Short On
+	 13:        XDual Rep-  1 Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:  YDual               Y-Short X-Short On
+	 20:                      Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:  YDual XDual         Y-Short X-Short On
+	 27:  YDual XDual         Y-Short X-Short Off
+	 28:  YDual XDual                 X-Short On
+	 29:  YDual XDual                 X-Short Off
+	 30:        XDual         Y-Short X-Short Off
+	 31:        XDual         Y-Short         On
+	 32:        XDual         Y-Short         Off
+	 33:                      Y-Short         Off
+	 34:  YDual                       X-Short On
+	 35:  YDual                       X-Short Off
+	 36:  YDual               Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short         On
+	 38:        XDual                         Off
+	 39:        XDual                 X-Short On
+	 40:  YDual               Y-Short X-Short Off
+	 41:  YDual XDual         Y-Short         On
+	 42:  YDual XDual         Y-Short         Off
+	 43:  YDual XDual         Y-Short X-Short Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short Off
+	 46:              Rep-  1                 On
+
+	Coordinates
+	-----------
+	  0: Rel (   569,   750)  ->  Abs (   569,   750)
+	  1: Rel (   132,    90)  ->  Abs (   701,   840)
+	  2: Rel (   223,   102)  ->  Abs (   924,   942)
+	  3: Rel (    61,     0)  ->  Abs (   985,   942)
+	  4: Rel (    45,     0)  ->  Abs (  1030,   942)
+	  5: Rel (    53,   -44)  ->  Abs (  1083,   898)
+	  6: Rel (     0,   -38)  ->  Abs (  1083,   860)
+	  7: Rel (     0,   -73)  ->  Abs (  1083,   787)
+	  8: Rel (  -122,   -31)  ->  Abs (   961,   756)
+	  9: Rel (  -139,   -36)  ->  Abs (   822,   720)
+	 10: Rel (  -126,   -81)  ->  Abs (   696,   639)
+	 11: Rel (    54,   -32)  ->  Abs (   750,   607)
+	 12: Rel (    43,    -9)  ->  Abs (   793,   598)
+	 13: Rel (    45,   -11)  ->  Abs (   838,   587)
+	 14: Rel (    57,   -54)  ->  Abs (   895,   533)
+	 15: Rel (     0,   -33)  ->  Abs (   895,   500)
+	 16: Rel (     0,   -97)  ->  Abs (   895,   403)
+	 17: Rel (  -135,     0)  ->  Abs (   760,   403)
+	 18: Rel (  -104,     0)  ->  Abs (   656,   403)
+	 19: Rel (  -154,    70)  ->  Abs (   502,   473)
+	 20: Rel (  -217,  -238)  ->  Abs (   285,   235)
+	 21: Rel (     0,  -223)  ->  Abs (   285,    12)
+	 22: Rel (     0,   -92)  ->  Abs (   285,   -80)
+	 23: Rel (   147,  -106)  ->  Abs (   432,  -186)
+	 24: Rel (   133,     0)  ->  Abs (   565,  -186)
+	 25: Rel (   108,     0)  ->  Abs (   673,  -186)
+	 26: Rel (   177,    63)  ->  Abs (   850,  -123)
+	 27: Rel (    88,    31)  ->  Abs (   938,   -92)
+	 28: Rel (    27,     0)  ->  Abs (   965,   -92)
+	 29: Rel (    33,     0)  ->  Abs (   998,   -92)
+	 30: Rel (    40,   -46)  ->  Abs (  1038,  -138)
+	 31: Rel (     0,   -36)  ->  Abs (  1038,  -174)
+	 32: Rel (     0,   -65)  ->  Abs (  1038,  -239)
+	 33: Rel (  -326,  -113)  ->  Abs (   712,  -352)
+	 34: Rel (  -149,     0)  ->  Abs (   563,  -352)
+	 35: Rel (  -214,     0)  ->  Abs (   349,  -352)
+	 36: Rel (  -251,   203)  ->  Abs (    98,  -149)
+	 37: Rel (     0,   161)  ->  Abs (    98,    12)
+	 38: Rel (     0,   277)  ->  Abs (    98,   289)
+	 39: Rel (   242,   266)  ->  Abs (   340,   555)
+	 40: Rel (   -84,    52)  ->  Abs (   256,   607)
+	 41: Rel (     0,    81)  ->  Abs (   256,   688)
+	 42: Rel (     0,    54)  ->  Abs (   256,   742)
+	 43: Rel (    84,    79)  ->  Abs (   340,   821)
+	 44: Rel (    57,     0)  ->  Abs (   397,   821)
+	 45: Rel (    93,     0)  ->  Abs (   490,   821)
+	 46: Rel (   483, -1403)  ->  Abs (   973,  -582)
+	 47: Rel (  -311,  1682)  ->  Abs (   662,  1100)
+
+	Glyph  72: off = 0x00003834, len = 398
+	  numberOfContours:	5
+	  xMin:			131
+	  yMin:			-610
+	  xMax:			1458
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  36
+	  1:  45
+	  2:  57
+	  3:  58
+	  4:  59
+
+	  Length of Instructions:	214
+	00000: NPUSHB      (40):   106    18   122    18   138    18     3   101    56   117 
+	                            56     2   139    54     1    54    47    70    47    86 
+	                            47     3    45    40    13    17    72   149    35     1 
+	                            12    35    28    35    44    35   140    35     4    29 
+	00042: PUSHW[1]            -32 
+	00045: PUSHB[4]              9    12    72    27 
+	00050: PUSHW[1]            -32 
+	00053: NPUSHB      (29):    11    16    72   138    20     1    10    16    26    16 
+	                            42    16   122    16   138    16     5     9    22     6 
+	                            38     6    54     6     3    50    28     1    59 
+	00084: PUSHW[1]            258 
+	00087: NPUSHB      (62):    46    52    37   233    28    19    25    15     0     1 
+	                            14     3     0    43   233    31    52   233    25    15 
+	                             8     4   234    58    14    28    37     0     2    28 
+	                            46    19    17    49     2   177    17    11    59    58 
+	                            11    17    49    58    59     5    22    40   248    34 
+	                            55   250    22    64    61    34   243     2    60    22 
+	                           242     2 
+	00151: CALL       
+	00152: CALL       
+	00153: SVTCA[x-axis] 
+	00154: SMD        
+	00155: RTG        
+	00156: SRP0       
+	00157: FLIPON     
+	00158: MIRP[nrp0,md,rd,1] 
+	00159: SRP0       
+	00160: MIRP[nrp0,md,rd,1] 
+	00161: SRP2       
+	00162: SLOOP      
+	00163: IP         
+	00164: MDAP[rd]   
+	00165: MDAP[rd]   
+	00166: MDAP[rd]   
+	00167: MDAP[rd]   
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: MDAP[rd]   
+	00170: SRP2       
+	00171: IP         
+	00172: IP         
+	00173: MDRP[nrp0,md,rd,1] 
+	00174: SRP1       
+	00175: IP         
+	00176: IP         
+	00177: SVTCA[y-axis] 
+	00178: MIAP[rd+ci] 
+	00179: MDRP[nrp0,nmd,rd,2] 
+	00180: MIRP[srp0,md,rd,1] 
+	00181: MDRP[nrp0,nmd,rd,0] 
+	00182: MIAP[rd+ci] 
+	00183: MIRP[nrp0,md,rd,1] 
+	00184: MDRP[srp0,nmd,rd,0] 
+	00185: MIRP[nrp0,md,rd,1] 
+	00186: MDAP[rd]   
+	00187: SDS        
+	00188: SDB        
+	00189: DELTAP1    
+	00190: SRP2       
+	00191: IP         
+	00192: IP         
+	00193: MIRP[nrp0,md,rd,1] 
+	00194: SRP1       
+	00195: IP         
+	00196: MIAP[rd+ci] 
+	00197: DELTAP1    
+	00198: IUP[y]     
+	00199: IUP[x]     
+	00200: DELTAP1    
+	00201: SDB        
+	00202: DELTAP1    
+	00203: DELTAP1    
+	00204: CALL       
+	00205: CALL       
+	00206: DELTAP1    
+	00207: DELTAP1    
+	00208: CALL       
+	00209: DELTAP1    
+	00210: DELTAP1    
+	00211: DELTAP1    
+	00212: SVTCA[x-axis] 
+	00213: DELTAP1    
+
+	Flags
+	-----
+	  0:  YDual               Y-Short         On
+	  1:                      Y-Short X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:  YDual                               On
+	  5:  YDual XDual                 X-Short Off
+	  6:  YDual XDual         Y-Short X-Short On
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short         Off
+	 14:  YDual                       X-Short On
+	 15:  YDual                       X-Short Off
+	 16:  YDual               Y-Short         Off
+	 17:  YDual XDual         Y-Short         On
+	 18:  YDual XDual         Y-Short         Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual       Rep-  1 Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short         On
+	 23:  YDual XDual         Y-Short         Off
+	 24:  YDual XDual         Y-Short X-Short Off
+	 25:  YDual XDual                 X-Short On
+	 26:  YDual XDual                 X-Short Off
+	 27:        XDual         Y-Short X-Short Off
+	 28:        XDual         Y-Short X-Short On
+	 29:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 31:  YDual XDual                 X-Short On
+	 32:  YDual XDual                 X-Short Off
+	 33:        XDual         Y-Short X-Short Off
+	 34:        XDual         Y-Short         On
+	 35:        XDual         Y-Short         Off
+	 36:                                      Off
+	 37:  YDual               Y-Short X-Short On
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual               Y-Short         Off
+	 40:  YDual XDual         Y-Short         On
+	 41:  YDual XDual         Y-Short         Off
+	 42:  YDual               Y-Short X-Short Off
+	 43:  YDual                       X-Short On
+	 44:  YDual                       X-Short Off
+	 45:                      Y-Short X-Short Off
+	 46:                      Y-Short         On
+	 47:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 49:  YDual XDual         Y-Short         On
+	 50:  YDual XDual         Y-Short         Off
+	 51:  YDual               Y-Short X-Short Off
+	 52:  YDual                       X-Short On
+	 53:  YDual                       X-Short Off
+	 54:                      Y-Short X-Short Off
+	 55:        XDual         Y-Short         On
+	 56:        XDual         Y-Short         Off
+	 57:        XDual         Y-Short X-Short Off
+	 58:                                      On
+	 59:                              X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   539,    68)  ->  Abs (   539,    68)
+	  1: Rel (  -111,  -115)  ->  Abs (   428,   -47)
+	  2: Rel (     0,   -92)  ->  Abs (   428,  -139)
+	  3: Rel (     0,  -156)  ->  Abs (   428,  -295)
+	  4: Rel (   354,     0)  ->  Abs (   782,  -295)
+	  5: Rel (   124,     0)  ->  Abs (   906,  -295)
+	  6: Rel (   153,    61)  ->  Abs (  1059,  -234)
+	  7: Rel (    70,    27)  ->  Abs (  1129,  -207)
+	  8: Rel (    26,     0)  ->  Abs (  1155,  -207)
+	  9: Rel (    33,     0)  ->  Abs (  1188,  -207)
+	 10: Rel (    41,   -46)  ->  Abs (  1229,  -253)
+	 11: Rel (     0,   -36)  ->  Abs (  1229,  -289)
+	 12: Rel (     0,   -65)  ->  Abs (  1229,  -354)
+	 13: Rel (  -301,  -107)  ->  Abs (   928,  -461)
+	 14: Rel (  -158,     0)  ->  Abs (   770,  -461)
+	 15: Rel (  -240,     0)  ->  Abs (   530,  -461)
+	 16: Rel (  -288,   172)  ->  Abs (   242,  -289)
+	 17: Rel (     0,   152)  ->  Abs (   242,  -137)
+	 18: Rel (     0,   116)  ->  Abs (   242,   -21)
+	 19: Rel (   125,   123)  ->  Abs (   367,   102)
+	 20: Rel (  -100,    36)  ->  Abs (   267,   138)
+	 21: Rel (  -136,   192)  ->  Abs (   131,   330)
+	 22: Rel (     0,   119)  ->  Abs (   131,   449)
+	 23: Rel (     0,   148)  ->  Abs (   131,   597)
+	 24: Rel (   229,   224)  ->  Abs (   360,   821)
+	 25: Rel (   168,     0)  ->  Abs (   528,   821)
+	 26: Rel (    91,     0)  ->  Abs (   619,   821)
+	 27: Rel (   141,  -108)  ->  Abs (   760,   713)
+	 28: Rel (    12,   -74)  ->  Abs (   772,   639)
+	 29: Rel (    73,    96)  ->  Abs (   845,   735)
+	 30: Rel (   220,   121)  ->  Abs (  1065,   856)
+	 31: Rel (   111,     0)  ->  Abs (  1176,   856)
+	 32: Rel (   124,     0)  ->  Abs (  1300,   856)
+	 33: Rel (   158,  -158)  ->  Abs (  1458,   698)
+	 34: Rel (     0,  -120)  ->  Abs (  1458,   578)
+	 35: Rel (     0,  -217)  ->  Abs (  1458,   361)
+	 36: Rel (  -555,  -293)  ->  Abs (   903,    68)
+	 37: Rel (  -229,   170)  ->  Abs (   674,   238)
+	 38: Rel (   232,    10)  ->  Abs (   906,   248)
+	 39: Rel (   354,   204)  ->  Abs (  1260,   452)
+	 40: Rel (     0,   115)  ->  Abs (  1260,   567)
+	 41: Rel (     0,    50)  ->  Abs (  1260,   617)
+	 42: Rel (   -61,    65)  ->  Abs (  1199,   682)
+	 43: Rel (   -52,     0)  ->  Abs (  1147,   682)
+	 44: Rel (   -93,     0)  ->  Abs (  1054,   682)
+	 45: Rel (  -206,  -195)  ->  Abs (   848,   487)
+	 46: Rel (  -373,  -243)  ->  Abs (   475,   244)
+	 47: Rel (    70,    71)  ->  Abs (   545,   315)
+	 48: Rel (    88,   176)  ->  Abs (   633,   491)
+	 49: Rel (     0,    56)  ->  Abs (   633,   547)
+	 50: Rel (     0,    43)  ->  Abs (   633,   590)
+	 51: Rel (   -66,    59)  ->  Abs (   567,   649)
+	 52: Rel (   -57,     0)  ->  Abs (   510,   649)
+	 53: Rel (   -79,     0)  ->  Abs (   431,   649)
+	 54: Rel (  -112,  -126)  ->  Abs (   319,   523)
+	 55: Rel (     0,   -85)  ->  Abs (   319,   438)
+	 56: Rel (     0,   -69)  ->  Abs (   319,   369)
+	 57: Rel (    89,  -109)  ->  Abs (   408,   260)
+	 58: Rel (   641,  -870)  ->  Abs (  1049,  -610)
+	 59: Rel (  -209,  1710)  ->  Abs (   840,  1100)
+
+	Glyph  73: off = 0x000039C2, len = 296
+	  numberOfContours:	3
+	  xMin:			-133
+	  yMin:			-270
+	  xMax:			1376
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  41
+	  1:  42
+	  2:  43
+
+	  Length of Instructions:	156
+	00000: PUSHB[4]            117    36     1    35 
+	00005: PUSHW[1]            -48 
+	00008: NPUSHB      (29):    12    17    72   123    29   139    29     2   142    28 
+	                             1   102    12   118    12     2     4    11   132    11 
+	                             2     9     9     1    25     1     2    10    42 
+	00039: PUSHW[1]            258 
+	00042: NPUSHB      (61):    80     8     1    50     8    66     8     2     3     0 
+	                             8    16     8    32     8     3    12     4     8     4 
+	                            43    30    12    17    24     0   232    20    40   232 
+	                            24    15     4   229    14    12   251    20     0    43 
+	                            42    42    43     0     3    27     7    33    24    38 
+	                           251    27    64    45    27   241     2    44     7   240 
+	                             2 
+	00105: CALL       
+	00106: CALL       
+	00107: SVTCA[x-axis] 
+	00108: SMD        
+	00109: RTG        
+	00110: SRP0       
+	00111: FLIPON     
+	00112: MIRP[srp0,md,rd,1] 
+	00113: IP         
+	00114: MDRP[nrp0,nmd,rd,0] 
+	00115: SRP1       
+	00116: SRP2       
+	00117: SLOOP      
+	00118: IP         
+	00119: MDAP[rd]   
+	00120: MDAP[rd]   
+	00121: MDAP[rd]   
+	00122: MDRP[nrp0,nmd,rd,1] 
+	00123: MIRP[srp0,md,rd,1] 
+	00124: MDRP[nrp0,md,rd,1] 
+	00125: SVTCA[y-axis] 
+	00126: MIAP[rd+ci] 
+	00127: MIAP[rd+ci] 
+	00128: MIRP[nrp0,md,rd,1] 
+	00129: MDRP[srp0,nmd,rd,0] 
+	00130: MIRP[nrp0,md,rd,1] 
+	00131: SRP1       
+	00132: IP         
+	00133: IP         
+	00134: MDAP[rd]   
+	00135: MDAP[rd]   
+	00136: SRP1       
+	00137: IP         
+	00138: SDS        
+	00139: SDB        
+	00140: DELTAP1    
+	00141: SDS        
+	00142: DELTAP1    
+	00143: DELTAP1    
+	00144: MIAP[rd+ci] 
+	00145: IUP[y]     
+	00146: IUP[x]     
+	00147: SDB        
+	00148: DELTAP1    
+	00149: SDB        
+	00150: DELTAP1    
+	00151: DELTAP1    
+	00152: DELTAP1    
+	00153: DELTAP1    
+	00154: CALL       
+	00155: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:                                      Off
+	  3:                      Y-Short X-Short Off
+	  4:  YDual                       X-Short On
+	  5:  YDual                       X-Short Off
+	  6:  YDual               Y-Short X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short         Off
+	  9:  YDual XDual         Y-Short X-Short On
+	 10:  YDual XDual         Y-Short X-Short Off
+	 11:                                      Off
+	 12:  YDual XDual         Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:        XDual         Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:                              X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual         Y-Short X-Short On
+	 36:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short         On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual               Y-Short X-Short On
+	 41:                      Y-Short X-Short Off
+	 42:                              X-Short On
+	 43:        XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   768,   500)  ->  Abs (   768,   500)
+	  1: Rel (  -154,  -248)  ->  Abs (   614,   252)
+	  2: Rel (  -390,  -326)  ->  Abs (   224,   -74)
+	  3: Rel (  -194,  -112)  ->  Abs (    30,  -186)
+	  4: Rel (   -65,     0)  ->  Abs (   -35,  -186)
+	  5: Rel (   -44,     0)  ->  Abs (   -79,  -186)
+	  6: Rel (   -54,    46)  ->  Abs (  -133,  -140)
+	  7: Rel (     0,    38)  ->  Abs (  -133,  -102)
+	  8: Rel (     0,    68)  ->  Abs (  -133,   -34)
+	  9: Rel (   102,    44)  ->  Abs (   -31,    10)
+	 10: Rel (   166,    72)  ->  Abs (   135,    82)
+	 11: Rel (   328,   276)  ->  Abs (   463,   358)
+	 12: Rel (   125,   185)  ->  Abs (   588,   543)
+	 13: Rel (   -84,    48)  ->  Abs (   504,   591)
+	 14: Rel (     0,    87)  ->  Abs (   504,   678)
+	 15: Rel (     0,    58)  ->  Abs (   504,   736)
+	 16: Rel (    85,    85)  ->  Abs (   589,   821)
+	 17: Rel (    64,     0)  ->  Abs (   653,   821)
+	 18: Rel (    62,     0)  ->  Abs (   715,   821)
+	 19: Rel (    84,   -78)  ->  Abs (   799,   743)
+	 20: Rel (     0,   -63)  ->  Abs (   799,   680)
+	 21: Rel (   141,    20)  ->  Abs (   940,   700)
+	 22: Rel (   168,    82)  ->  Abs (  1108,   782)
+	 23: Rel (    81,    39)  ->  Abs (  1189,   821)
+	 24: Rel (    40,     0)  ->  Abs (  1229,   821)
+	 25: Rel (    68,     0)  ->  Abs (  1297,   821)
+	 26: Rel (    79,  -150)  ->  Abs (  1376,   671)
+	 27: Rel (     0,  -110)  ->  Abs (  1376,   561)
+	 28: Rel (     0,  -183)  ->  Abs (  1376,   378)
+	 29: Rel (  -171,  -327)  ->  Abs (  1205,    51)
+	 30: Rel (  -103,     0)  ->  Abs (  1102,    51)
+	 31: Rel (   -46,     0)  ->  Abs (  1056,    51)
+	 32: Rel (   -57,    44)  ->  Abs (   999,    95)
+	 33: Rel (     0,    34)  ->  Abs (   999,   129)
+	 34: Rel (     0,    55)  ->  Abs (   999,   184)
+	 35: Rel (    78,    74)  ->  Abs (  1077,   258)
+	 36: Rel (    51,    47)  ->  Abs (  1128,   305)
+	 37: Rel (    68,   176)  ->  Abs (  1196,   481)
+	 38: Rel (     0,    78)  ->  Abs (  1196,   559)
+	 39: Rel (     0,    41)  ->  Abs (  1196,   600)
+	 40: Rel (   -14,    39)  ->  Abs (  1182,   639)
+	 41: Rel (  -182,   -96)  ->  Abs (  1000,   543)
+	 42: Rel (   -82,   557)  ->  Abs (   918,  1100)
+	 43: Rel (    10, -1370)  ->  Abs (   928,  -270)
+
+	Glyph  74: off = 0x00003AEA, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-313
+	  yMin:			-457
+	  xMax:			1016
+	  yMax:			1100
+
+	     0: Flags:		0x0236
+		Glyf Index:	63
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	104
+		X WOffset:	297
+		Y WOffset:	-309
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     4    54     0    54     1     4    54    80    54   191 
+	                            54   207    54     3    54    64     9    16    54 
+	00021: CALL       
+	00022: DELTAP1    
+	00023: SRP1       
+	00024: SHC[rp1,zp0] 
+	00025: SVTCA[y-axis] 
+	00026: DELTAP1    
+	00027: SRP1       
+	00028: SHC[rp1,zp0] 
+
+	Glyph  75: off = 0x00003B22, len = 378
+	  numberOfContours:	4
+	  xMin:			-102
+	  yMin:			-594
+	  xMax:			1155
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  62
+	  1:  63
+	  2:  64
+	  3:  65
+
+	  Length of Instructions:	187
+	00000: NPUSHB      (24):     9    52    25    52     2   138    48     1    47    24 
+	                            11    14    72     1    40    17    40   129    40     3 
+	                            52    33     1    32 
+	00026: PUSHW[1]            -48 
+	00029: NPUSHB      (98):     9    15    72   137    30     1   117    20   133    20 
+	                             2   140    12     1    10     4    26     4     2    96 
+	                             1   112     1   128     1     3   139     0     1    64 
+	                            34     8    39     5   234    39     0    44    96    44 
+	                             2     9    44    64    50     0    57    65    15    22 
+	                            18   234    63    28    28    63    25    64     0     2 
+	                            16    50    32    50    48    50     3    50    36     8 
+	                            25    42    50    63     5    15    34    63    34   111 
+	                            34     3    10     3    34    46   248    60     2    67 
+	                            15   177    31    64    66    31   241     2 
+	00129: CALL       
+	00130: SVTCA[x-axis] 
+	00131: SMD        
+	00132: RTG        
+	00133: SRP0       
+	00134: FLIPON     
+	00135: MIRP[nrp0,md,rd,1] 
+	00136: SRP0       
+	00137: MDRP[srp0,nmd,rd,2] 
+	00138: MDRP[nrp0,nmd,rd,0] 
+	00139: MIRP[nrp0,md,rd,1] 
+	00140: MDRP[srp0,nmd,rd,0] 
+	00141: SDS        
+	00142: SDB        
+	00143: DELTAP1    
+	00144: SLOOP      
+	00145: IP         
+	00146: MDRP[nrp0,md,rd,1] 
+	00147: MDAP[rd]   
+	00148: DELTAP1    
+	00149: SRP2       
+	00150: IP         
+	00151: MDRP[nrp0,nmd,rd,0] 
+	00152: MDAP[rd]   
+	00153: MDAP[rd]   
+	00154: SVTCA[y-axis] 
+	00155: MIAP[rd+ci] 
+	00156: MDRP[nrp0,nmd,rd,2] 
+	00157: MIRP[srp0,md,rd,1] 
+	00158: MDRP[nrp0,nmd,rd,0] 
+	00159: MIAP[rd+ci] 
+	00160: MDRP[nrp0,nmd,rd,0] 
+	00161: MDRP[srp0,nmd,rd,0] 
+	00162: SHP[rp2,zp1] 
+	00163: SHP[rp2,zp1] 
+	00164: MDRP[srp0,nmd,rd,0] 
+	00165: SDB        
+	00166: DELTAP1    
+	00167: MDRP[nrp0,md,rd,0] 
+	00168: MIRP[nrp0,md,rd,1] 
+	00169: SRP1       
+	00170: IP         
+	00171: IP         
+	00172: MDAP[rd]   
+	00173: DELTAP1    
+	00174: IUP[y]     
+	00175: IUP[x]     
+	00176: DELTAP1    
+	00177: DELTAP1    
+	00178: DELTAP1    
+	00179: DELTAP1    
+	00180: DELTAP1    
+	00181: CALL       
+	00182: DELTAP1    
+	00183: DELTAP1    
+	00184: CALL       
+	00185: DELTAP1    
+	00186: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual       Rep-  1 Y-Short X-Short On
+	  9:  YDual                       X-Short Off
+	 10:              Rep-  4 Y-Short X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short X-Short Off
+	 25:        XDual         Y-Short         On
+	 26:        XDual         Y-Short         Off
+	 27:                      Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:        XDual                 X-Short Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual               Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short         On
+	 37:  YDual XDual         Y-Short         Off
+	 38:  YDual XDual         Y-Short X-Short Off
+	 39:  YDual XDual                 X-Short On
+	 40:  YDual XDual                 X-Short Off
+	 41:        XDual         Y-Short X-Short Off
+	 42:        XDual         Y-Short         On
+	 43:        XDual         Y-Short X-Short Off
+	 44:  YDual XDual                 X-Short On
+	 45:  YDual XDual                 X-Short Off
+	 46:  YDual XDual         Y-Short         On
+	 47:  YDual XDual         Y-Short         Off
+	 48:  YDual               Y-Short X-Short On
+	 49:  YDual               Y-Short X-Short Off
+	 50:  YDual XDual         Y-Short         On
+	 51:  YDual XDual         Y-Short         Off
+	 52:  YDual XDual         Y-Short X-Short On
+	 53:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 55:  YDual XDual         Y-Short X-Short On
+	 56:  YDual XDual         Y-Short X-Short Off
+	 57:  YDual XDual                 X-Short On
+	 58:  YDual XDual                 X-Short Off
+	 59:        XDual         Y-Short X-Short Off
+	 60:        XDual         Y-Short         On
+	 61:        XDual         Y-Short         Off
+	 62:                      Y-Short X-Short Off
+	 63:              Rep-  1         X-Short On
+	 65:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   956,   791)  ->  Abs (   956,   791)
+	  1: Rel (   179,   -50)  ->  Abs (  1135,   741)
+	  2: Rel (     0,  -145)  ->  Abs (  1135,   596)
+	  3: Rel (     0,  -136)  ->  Abs (  1135,   460)
+	  4: Rel (  -221,  -169)  ->  Abs (   914,   291)
+	  5: Rel (  -185,     0)  ->  Abs (   729,   291)
+	  6: Rel (   -39,     0)  ->  Abs (   690,   291)
+	  7: Rel (   -33,     3)  ->  Abs (   657,   294)
+	  8: Rel (   -63,     7)  ->  Abs (   594,   301)
+	  9: Rel (   -24,     0)  ->  Abs (   570,   301)
+	 10: Rel (  -202,   -89)  ->  Abs (   368,   212)
+	 11: Rel (  -115,   -69)  ->  Abs (   253,   143)
+	 12: Rel (   -86,   -74)  ->  Abs (   167,    69)
+	 13: Rel (   -58,   -78)  ->  Abs (   109,    -9)
+	 14: Rel (   -29,   -79)  ->  Abs (    80,   -88)
+	 15: Rel (     0,   -39)  ->  Abs (    80,  -127)
+	 16: Rel (     0,   -77)  ->  Abs (    80,  -204)
+	 17: Rel (   146,   -91)  ->  Abs (   226,  -295)
+	 18: Rel (   130,     0)  ->  Abs (   356,  -295)
+	 19: Rel (   102,     0)  ->  Abs (   458,  -295)
+	 20: Rel (   121,    43)  ->  Abs (   579,  -252)
+	 21: Rel (    64,    23)  ->  Abs (   643,  -229)
+	 22: Rel (    29,     0)  ->  Abs (   672,  -229)
+	 23: Rel (    34,     0)  ->  Abs (   706,  -229)
+	 24: Rel (    44,   -46)  ->  Abs (   750,  -275)
+	 25: Rel (     0,   -34)  ->  Abs (   750,  -309)
+	 26: Rel (     0,   -63)  ->  Abs (   750,  -372)
+	 27: Rel (  -245,   -89)  ->  Abs (   505,  -461)
+	 28: Rel (  -151,     0)  ->  Abs (   354,  -461)
+	 29: Rel (  -211,     0)  ->  Abs (   143,  -461)
+	 30: Rel (  -245,   189)  ->  Abs (  -102,  -272)
+	 31: Rel (     0,   141)  ->  Abs (  -102,  -131)
+	 32: Rel (     0,   157)  ->  Abs (  -102,    26)
+	 33: Rel (   255,   266)  ->  Abs (   153,   292)
+	 34: Rel (   246,    85)  ->  Abs (   399,   377)
+	 35: Rel (   -32,    19)  ->  Abs (   367,   396)
+	 36: Rel (     0,    46)  ->  Abs (   367,   442)
+	 37: Rel (     0,    54)  ->  Abs (   367,   496)
+	 38: Rel (    83,    61)  ->  Abs (   450,   557)
+	 39: Rel (    70,     0)  ->  Abs (   520,   557)
+	 40: Rel (    49,     0)  ->  Abs (   569,   557)
+	 41: Rel (    68,   -63)  ->  Abs (   637,   494)
+	 42: Rel (     0,   -27)  ->  Abs (   637,   467)
+	 43: Rel (    38,   -10)  ->  Abs (   675,   457)
+	 44: Rel (    60,     0)  ->  Abs (   735,   457)
+	 45: Rel (   201,     0)  ->  Abs (   936,   457)
+	 46: Rel (     0,   137)  ->  Abs (   936,   594)
+	 47: Rel (     0,    99)  ->  Abs (   936,   693)
+	 48: Rel (  -191,    28)  ->  Abs (   745,   721)
+	 49: Rel (   -71,    10)  ->  Abs (   674,   731)
+	 50: Rel (     0,    68)  ->  Abs (   674,   799)
+	 51: Rel (     0,    67)  ->  Abs (   674,   866)
+	 52: Rel (    78,    19)  ->  Abs (   752,   885)
+	 53: Rel (    41,     9)  ->  Abs (   793,   894)
+	 54: Rel (   143,    54)  ->  Abs (   936,   948)
+	 55: Rel (    37,    23)  ->  Abs (   973,   971)
+	 56: Rel (    56,    35)  ->  Abs (  1029,  1006)
+	 57: Rel (    40,     0)  ->  Abs (  1069,  1006)
+	 58: Rel (    37,     0)  ->  Abs (  1106,  1006)
+	 59: Rel (    49,   -47)  ->  Abs (  1155,   959)
+	 60: Rel (     0,   -33)  ->  Abs (  1155,   926)
+	 61: Rel (     0,   -42)  ->  Abs (  1155,   884)
+	 62: Rel (  -103,   -62)  ->  Abs (  1052,   822)
+	 63: Rel (  -118, -1416)  ->  Abs (   934,  -594)
+	 64: Rel (  -234,  1694)  ->  Abs (   700,  1100)
+	 65: Rel (  -700,  -279)  ->  Abs (     0,   821)
+
+	Glyph  76: off = 0x00003C9C, len = 436
+	  numberOfContours:	4
+	  xMin:			-94
+	  yMin:			-465
+	  xMax:			1276
+	  yMax:			1393
+
+	EndPoints
+	---------
+	  0:  54
+	  1:  67
+	  2:  68
+	  3:  69
+
+	  Length of Instructions:	224
+	00000: NPUSHB      (61):    99    46   115    46     2    15    53     1    10   105 
+	                            50     1    22    48    38    48     2   101    46     1 
+	                            93    45   109    45     2    41    44     1    38    36 
+	                             1    69    29     1    16     8    32     8    48     8 
+	                             3   100     4     1    46     0     1    82    29    34 
+	                            46    34     0   141    29    34    20    29    29    34 
+	                            69 
+	00063: PUSHW[1]            258 
+	00066: NPUSHB      (76):    40    52   234    95    63     1    63    58     0     3 
+	                            55     3     9    20    29    34    32     6    12    55 
+	                           233    47    46    15    68    17   232    12   230     0 
+	                            60     1    11    69    29    34    69     3    37    26 
+	                            60   251    54     0    68    20   247     0     9     1 
+	                            18     3     9    37     0    43     2     3   247    26 
+	                            26     9    15    66   249    64    43    49    71    49 
+	                           246     2    70    15   241     2 
+	00144: CALL       
+	00145: CALL       
+	00146: SVTCA[x-axis] 
+	00147: RTG        
+	00148: SRP0       
+	00149: MDRP[nrp0,nmd,rd,0] 
+	00150: SMD        
+	00151: FLIPON     
+	00152: MIRP[nrp0,md,rd,1] 
+	00153: SRP2       
+	00154: IP         
+	00155: IP         
+	00156: MDAP[rd]   
+	00157: MIRP[nrp0,md,rd,1] 
+	00158: SRP1       
+	00159: SRP2       
+	00160: IP         
+	00161: IP         
+	00162: MDAP[rd]   
+	00163: SDS        
+	00164: SDB        
+	00165: DELTAP1    
+	00166: MIRP[nrp0,md,rd,1] 
+	00167: MDRP[nrp0,nmd,rd,2] 
+	00168: MDAP[rd]   
+	00169: SHP[rp1,zp0] 
+	00170: MIRP[nrp0,md,rd,1] 
+	00171: SRP1       
+	00172: SRP2       
+	00173: SLOOP      
+	00174: IP         
+	00175: MDAP[rd]   
+	00176: SDB        
+	00177: DELTAP1    
+	00178: SVTCA[y-axis] 
+	00179: MIAP[rd+ci] 
+	00180: MIRP[nrp0,md,rd,1] 
+	00181: MDRP[nrp0,nmd,rd,2] 
+	00182: MIAP[rd+ci] 
+	00183: SHP[rp1,zp0] 
+	00184: MIRP[nrp0,md,rd,1] 
+	00185: SRP2       
+	00186: SLOOP      
+	00187: IP         
+	00188: SRP1       
+	00189: SRP2       
+	00190: IP         
+	00191: IP         
+	00192: MDRP[srp0,nmd,rd,0] 
+	00193: DELTAP1    
+	00194: MIRP[nrp0,md,rd,1] 
+	00195: MDAP[rd]   
+	00196: MIAP[rd+ci] 
+	00197: SDPVTL[1]  
+	00198: SRP0       
+	00199: CALL       
+	00200: SRP0       
+	00201: SVTCA[x-axis] 
+	00202: MDRP[nrp0,nmd,nrd,1] 
+	00203: SDPVTL[1]  
+	00204: SFVTCA[y-axis] 
+	00205: CALL       
+	00206: SRP0       
+	00207: MDRP[nrp0,nmd,rd,0] 
+	00208: IUP[y]     
+	00209: IUP[x]     
+	00210: SVTCA[y-axis] 
+	00211: DELTAP1    
+	00212: DELTAP1    
+	00213: DELTAP1    
+	00214: DELTAP1    
+	00215: DELTAP1    
+	00216: DELTAP1    
+	00217: DELTAP1    
+	00218: DELTAP1    
+	00219: DELTAP1    
+	00220: SDB        
+	00221: DELTAP1    
+	00222: SVTCA[x-axis] 
+	00223: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:              Rep-  1 Y-Short X-Short Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:        XDual Rep-  1 Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short         Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short         On
+	 21:  YDual XDual         Y-Short         Off
+	 22:  YDual               Y-Short X-Short Off
+	 23:  YDual               Y-Short X-Short On
+	 24:  YDual       Rep-  1 Y-Short X-Short Off
+	 26:  YDual XDual         Y-Short         On
+	 27:  YDual XDual         Y-Short         Off
+	 28:  YDual XDual         Y-Short X-Short Off
+	 29:  YDual XDual         Y-Short X-Short On
+	 30:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 32:  YDual XDual         Y-Short X-Short On
+	 33:  YDual XDual         Y-Short X-Short Off
+	 34:  YDual XDual         Y-Short X-Short On
+	 35:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 37:  YDual XDual         Y-Short X-Short On
+	 38:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 40:  YDual XDual                 X-Short On
+	 41:  YDual XDual                 X-Short Off
+	 42:        XDual         Y-Short X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:                              X-Short Off
+	 46:                      Y-Short X-Short On
+	 47:        XDual Rep-  1 Y-Short X-Short Off
+	 49:        XDual         Y-Short         On
+	 50:        XDual         Y-Short         Off
+	 51:                      Y-Short X-Short Off
+	 52:  YDual                       X-Short On
+	 53:  YDual                       X-Short Off
+	 54:  YDual               Y-Short X-Short Off
+	 55:                                      On
+	 56:  YDual                       X-Short Off
+	 57:              Rep-  2 Y-Short X-Short Off
+	 60:        XDual         Y-Short         On
+	 61:        XDual         Y-Short         Off
+	 62:        XDual         Y-Short X-Short Off
+	 63:  YDual XDual                 X-Short On
+	 64:  YDual XDual                 X-Short Off
+	 65:  YDual XDual         Y-Short X-Short Off
+	 66:  YDual XDual         Y-Short         On
+	 67:  YDual XDual         Y-Short         Off
+	 68:                              X-Short On
+	 69:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   475,   442)  ->  Abs (   475,   442)
+	  1: Rel (  -108,  -101)  ->  Abs (   367,   341)
+	  2: Rel (   -60,   -77)  ->  Abs (   307,   264)
+	  3: Rel (     0,   -35)  ->  Abs (   307,   229)
+	  4: Rel (     0,   -15)  ->  Abs (   307,   214)
+	  5: Rel (    49,   -32)  ->  Abs (   356,   182)
+	  6: Rel (    82,   -37)  ->  Abs (   438,   145)
+	  7: Rel (   100,   -43)  ->  Abs (   538,   102)
+	  8: Rel (    89,   -83)  ->  Abs (   627,    19)
+	  9: Rel (     0,   -54)  ->  Abs (   627,   -35)
+	 10: Rel (     0,   -98)  ->  Abs (   627,  -133)
+	 11: Rel (  -419,  -215)  ->  Abs (   208,  -348)
+	 12: Rel (  -161,     0)  ->  Abs (    47,  -348)
+	 13: Rel (   -67,     0)  ->  Abs (   -20,  -348)
+	 14: Rel (   -74,    50)  ->  Abs (   -94,  -298)
+	 15: Rel (     0,    44)  ->  Abs (   -94,  -254)
+	 16: Rel (     0,    86)  ->  Abs (   -94,  -168)
+	 17: Rel (   139,    10)  ->  Abs (    45,  -158)
+	 18: Rel (   113,     8)  ->  Abs (   158,  -150)
+	 19: Rel (   217,    75)  ->  Abs (   375,   -75)
+	 20: Rel (     0,    26)  ->  Abs (   375,   -49)
+	 21: Rel (     0,    13)  ->  Abs (   375,   -36)
+	 22: Rel (   -33,    19)  ->  Abs (   342,   -17)
+	 23: Rel (   -51,    21)  ->  Abs (   291,     4)
+	 24: Rel (  -128,    52)  ->  Abs (   163,    56)
+	 25: Rel (   -79,    81)  ->  Abs (    84,   137)
+	 26: Rel (     0,    68)  ->  Abs (    84,   205)
+	 27: Rel (     0,    59)  ->  Abs (    84,   264)
+	 28: Rel (    97,   144)  ->  Abs (   181,   408)
+	 29: Rel (   112,   106)  ->  Abs (   293,   514)
+	 30: Rel (    79,    75)  ->  Abs (   372,   589)
+	 31: Rel (   137,   101)  ->  Abs (   509,   690)
+	 32: Rel (    52,    30)  ->  Abs (   561,   720)
+	 33: Rel (    17,    11)  ->  Abs (   578,   731)
+	 34: Rel (    73,    66)  ->  Abs (   651,   797)
+	 35: Rel (   160,   148)  ->  Abs (   811,   945)
+	 36: Rel (   172,   202)  ->  Abs (   983,  1147)
+	 37: Rel (   103,   159)  ->  Abs (  1086,  1306)
+	 38: Rel (    37,    58)  ->  Abs (  1123,  1364)
+	 39: Rel (    53,    29)  ->  Abs (  1176,  1393)
+	 40: Rel (    28,     0)  ->  Abs (  1204,  1393)
+	 41: Rel (    34,     0)  ->  Abs (  1238,  1393)
+	 42: Rel (    38,   -39)  ->  Abs (  1276,  1354)
+	 43: Rel (     0,   -31)  ->  Abs (  1276,  1323)
+	 44: Rel (     0,   -68)  ->  Abs (  1276,  1255)
+	 45: Rel (  -196,  -268)  ->  Abs (  1080,   987)
+	 46: Rel (  -177,  -170)  ->  Abs (   903,   817)
+	 47: Rel (   106,   -14)  ->  Abs (  1009,   803)
+	 48: Rel (   115,  -135)  ->  Abs (  1124,   668)
+	 49: Rel (     0,  -101)  ->  Abs (  1124,   567)
+	 50: Rel (     0,  -144)  ->  Abs (  1124,   423)
+	 51: Rel (  -232,  -218)  ->  Abs (   892,   205)
+	 52: Rel (  -142,     0)  ->  Abs (   750,   205)
+	 53: Rel (  -109,     0)  ->  Abs (   641,   205)
+	 54: Rel (  -157,   127)  ->  Abs (   484,   332)
+	 55: Rel (   356,   325)  ->  Abs (   840,   657)
+	 56: Rel (   -39,     0)  ->  Abs (   801,   657)
+	 57: Rel (  -113,   -51)  ->  Abs (   688,   606)
+	 58: Rel (   -21,   -24)  ->  Abs (   667,   582)
+	 59: Rel (   -24,   -63)  ->  Abs (   643,   519)
+	 60: Rel (     0,   -38)  ->  Abs (   643,   481)
+	 61: Rel (     0,   -51)  ->  Abs (   643,   430)
+	 62: Rel (    58,   -61)  ->  Abs (   701,   369)
+	 63: Rel (    44,     0)  ->  Abs (   745,   369)
+	 64: Rel (    68,     0)  ->  Abs (   813,   369)
+	 65: Rel (   117,   113)  ->  Abs (   930,   482)
+	 66: Rel (     0,    73)  ->  Abs (   930,   555)
+	 67: Rel (     0,   102)  ->  Abs (   930,   657)
+	 68: Rel (    -8, -1122)  ->  Abs (   922,  -465)
+	 69: Rel (  -406,  1565)  ->  Abs (   516,  1100)
+
+	Glyph  77: off = 0x00003E50, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-94
+	  yMin:			-471
+	  xMax:			1136
+	  yMax:			1530
+
+	     0: Flags:		0x0236
+		Glyf Index:	65
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	106
+		X WOffset:	489
+		Y WOffset:	870
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     8     7     6    73    28     8     7     6     0    64 
+	                             1   225    64    82    25    31    37 
+	00019: CALL       
+	00020: DELTAP1    
+	00021: SHC[rp1,zp0] 
+	00022: SHC[rp1,zp0] 
+	00023: SHC[rp1,zp0] 
+	00024: SVTCA[y-axis] 
+	00025: SRP0       
+	00026: MDRP[srp0,md,rd,2] 
+	00027: SHC[rp2,zp1] 
+	00028: SHC[rp2,zp1] 
+	00029: SHC[rp2,zp1] 
+
+	Glyph  78: off = 0x00003E88, len = 56
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-115
+	  yMin:			-219
+	  xMax:			1072
+	  yMax:			1100
+
+	     0: Flags:		0x0236
+		Glyf Index:	53
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	104
+		X WOffset:	630
+		Y WOffset:	106
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              3   144    21     1    21 
+	00006: PUSHW[1]            -64 
+	00009: PUSHB[4]             10    13    54     3 
+	00014: PUSHW[1]            498 
+	00017: PUSHB[5]             21    27     0    12    37 
+	00023: CALL       
+	00024: SHC[rp1,zp0] 
+	00025: SVTCA[y-axis] 
+	00026: CALL       
+	00027: DELTAP1    
+	00028: SHC[rp1,zp0] 
+
+	Glyph  79: off = 0x00003EC0, len = 64
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-115
+	  yMin:			-219
+	  xMax:			1059
+	  yMax:			1100
+
+	     0: Flags:		0x0236
+		Glyf Index:	53
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	103
+		X WOffset:	186
+		Y WOffset:	473
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (15):     3    15    21    31    21    95    21   111    21     4 
+	                             3   160    21     1    21 
+	00017: PUSHW[1]            -64 
+	00020: NPUSHB       (9):     9    15    54    54    21    27     0    12    37 
+	00031: CALL       
+	00032: CALL       
+	00033: DELTAP1    
+	00034: SHC[rp1,zp0] 
+	00035: SVTCA[y-axis] 
+	00036: DELTAP1    
+	00037: SHC[rp1,zp0] 
+
+	Glyph  80: off = 0x00003F00, len = 58
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-233
+	  yMin:			-381
+	  xMax:			1264
+	  yMax:			1460
+
+	     0: Flags:		0x0236
+		Glyf Index:	64
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	103
+		X WOffset:	522
+		Y WOffset:	967
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):    64     5    62    62   128    52     5    48    53     1 
+	00012: PUSHW[1]            -37 
+	00015: PUSHB[5]             53    59    12    44    37 
+	00021: CALL       
+	00022: DELTAP2    
+	00023: SHC[rp1,zp0] 
+	00024: SVTCA[y-axis] 
+	00025: SRP0       
+	00026: SMD        
+	00027: MDRP[srp0,md,rd,2] 
+	00028: MDAP[rd]   
+	00029: SHC[rp2,zp1] 
+	00030: SMD        
+
+	Glyph  81: off = 0x00003F3A, len = 68
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-115
+	  yMin:			-184
+	  xMax:			1495
+	  yMax:			1400
+
+	     0: Flags:		0x0236
+		Glyf Index:	56
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	103
+		X WOffset:	665
+		Y WOffset:	895
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              4    47    16     4    38 
+	00006: PUSHW[1]            -64 
+	00009: NPUSHB      (14):    21    25    54    48    38    64    38    80    38   144 
+	                            38   160    38     5 
+	00025: PUSHW[1]            -96 
+	00028: PUSHB[5]             38    44    13    22    37 
+	00034: CALL       
+	00035: DELTAP1    
+	00036: CALL       
+	00037: SHC[rp1,zp0] 
+	00038: SVTCA[y-axis] 
+	00039: SRP0       
+	00040: MDRP[srp0,md,rd,2] 
+	00041: SHC[rp2,zp1] 
+
+	Glyph  82: off = 0x00003F7E, len = 54
+	  numberOfContours:	-1  (Composite)
+	  xMin:			80
+	  yMin:			-49
+	  xMax:			2175
+	  yMax:			1400
+
+	     0: Flags:		0x0236
+		Glyf Index:	69
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	106
+		X WOffset:	813
+		Y WOffset:	676
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[8]              8     7     6    62    22     8     7     6 
+	00009: PUSHW[1]            -50 
+	00012: PUSHB[5]             53    71    14    30    37 
+	00018: CALL       
+	00019: SHC[rp1,zp0] 
+	00020: SHC[rp1,zp0] 
+	00021: SHC[rp1,zp0] 
+	00022: SVTCA[y-axis] 
+	00023: SRP0       
+	00024: MDRP[srp0,md,rd,2] 
+	00025: SHC[rp2,zp1] 
+	00026: SHC[rp2,zp1] 
+	00027: SHC[rp2,zp1] 
+
+	Glyph  83: off = 0x00003FB4, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			80
+	  yMin:			-49
+	  xMax:			2175
+	  yMax:			1400
+
+	     0: Flags:		0x0236
+		Glyf Index:	69
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	104
+		X WOffset:	813
+		Y WOffset:	90
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[5]              6   144    41     1     6 
+	00006: PUSHW[1]            -50 
+	00009: PUSHB[5]             41    47    14    30    37 
+	00015: CALL       
+	00016: SHC[rp1,zp0] 
+	00017: SVTCA[y-axis] 
+	00018: DELTAP1    
+	00019: SHC[rp1,zp0] 
+
+	Glyph  84: off = 0x00003FE2, len = 46
+	  numberOfContours:	-1  (Composite)
+	  xMin:			80
+	  yMin:			-49
+	  xMax:			2175
+	  yMax:			1400
+
+	     0: Flags:		0x0236
+		Glyf Index:	69
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	103
+		X WOffset:	813
+		Y WOffset:	696
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: PUSHB[4]              6    50    22     6 
+	00005: PUSHW[1]            -50 
+	00008: PUSHB[5]             41    47    14    30    37 
+	00014: CALL       
+	00015: SHC[rp1,zp0] 
+	00016: SVTCA[y-axis] 
+	00017: SRP0       
+	00018: MDRP[srp0,md,rd,2] 
+	00019: SHC[rp2,zp1] 
+
+	Glyph  85: off = 0x00004010, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-94
+	  yMin:			-471
+	  xMax:			1124
+	  yMax:			1530
+
+	     0: Flags:		0x0236
+		Glyf Index:	65
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	104
+		X WOffset:	542
+		Y WOffset:	-119
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (17):     6   144    52   160    52   176    52   192    52     4 
+	                             6     7    52    58     8    31    37 
+	00019: CALL       
+	00020: SHC[rp1,zp0] 
+	00021: SVTCA[y-axis] 
+	00022: DELTAP1    
+	00023: SHC[rp1,zp0] 
+
+	Glyph  86: off = 0x00004042, len = 50
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-94
+	  yMin:			-471
+	  xMax:			1124
+	  yMax:			1530
+
+	     0: Flags:		0x0236
+		Glyf Index:	65
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	103
+		X WOffset:	512
+		Y WOffset:	922
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (13):     6    61    28     6     0    52     1   248    52    58 
+	                            25    31    37 
+	00015: SVTCA[x-axis] 
+	00016: CALL       
+	00017: DELTAP1    
+	00018: SHC[rp1,zp0] 
+	00019: SVTCA[y-axis] 
+	00020: SRP0       
+	00021: MDRP[srp0,md,rd,2] 
+	00022: SHC[rp2,zp1] 
+
+	Glyph  87: off = 0x00004074, len = 24
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-29
+	  yMin:			-352
+	  xMax:			1077
+	  yMax:			1100
+
+	     0: Flags:		0x0236
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0017
+		Glyf Index:	104
+		X WOffset:	188
+		Y WOffset:	-207
+		Other:		Round X,Y to Grid  No Overlap
+
+
+	Glyph  88: off = 0x0000408C, len = 80
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-29
+	  yMin:			-352
+	  xMax:			1077
+	  yMax:			1100
+
+	     0: Flags:		0x0236
+		Glyf Index:	60
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	103
+		X WOffset:	114
+		Y WOffset:	637
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (19):     5    95    33   143    33   144    33   192    33     4 
+	                             5    32    33    48    33   160    33     3    33 
+	00021: PUSHW[1]            -64 
+	00024: PUSHB[4]             18    21    54    33 
+	00029: PUSHW[1]            -64 
+	00032: PUSHB[3]              9    13    54 
+	00036: PUSHW[1]            -70 
+	00039: PUSHB[5]             33    39     6    17    37 
+	00045: CALL       
+	00046: CALL       
+	00047: CALL       
+	00048: DELTAP2    
+	00049: SHC[rp1,zp0] 
+	00050: SVTCA[y-axis] 
+	00051: DELTAP1    
+	00052: SHC[rp1,zp0] 
+
+	Glyph  89: off = 0x000040DC, len = 48
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-78
+	  yMin:			-348
+	  xMax:			1147
+	  yMax:			1400
+
+	     0: Flags:		0x0236
+		Glyf Index:	67
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	105
+		X WOffset:	413
+		Y WOffset:	905
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (12):     5     4    63    12     5     4     0    42    60     8 
+	                            15    37 
+	00014: CALL       
+	00015: SHC[rp1,zp0] 
+	00016: SHC[rp1,zp0] 
+	00017: SVTCA[y-axis] 
+	00018: SRP0       
+	00019: MDRP[srp0,md,rd,2] 
+	00020: SHC[rp2,zp1] 
+	00021: SHC[rp2,zp1] 
+
+	Glyph  90: off = 0x0000410C, len = 44
+	  numberOfContours:	-1  (Composite)
+	  xMin:			-123
+	  yMin:			-219
+	  xMax:			864
+	  yMax:			1400
+
+	     0: Flags:		0x0236
+		Glyf Index:	61
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid  No Overlap  Use My Metrics
+
+
+	     1: Flags:		0x0117
+		Glyf Index:	103
+		X WOffset:	223
+		Y WOffset:	922
+		Other:		Round X,Y to Grid  No Overlap
+
+	Instructions:
+	-------------
+	00000: NPUSHB      (10):     5    44     8     5    34    35    41     5    11    37 
+	00012: CALL       
+	00013: SHC[rp1,zp0] 
+	00014: SVTCA[y-axis] 
+	00015: SRP0       
+	00016: MDRP[srp0,md,rd,2] 
+	00017: SHC[rp2,zp1] 
+
+	Glyph  91: off = 0x00004138, len = 96
+	  numberOfContours:	2
+	  xMin:			25
+	  yMin:			969
+	  xMax:			575
+	  yMax:			1425
+
+	EndPoints
+	---------
+	  0:  14
+	  1:  15
+
+	  Length of Instructions:	35
+	00000: NPUSHB      (20):   123    10     1    84     4   100     4   132     4     3 
+	                           134     3     1     7    15    12    15    15     9     0 
+	00022: MDAP[rd]   
+	00023: MDRP[nrp0,md,rd,1] 
+	00024: IP         
+	00025: MDAP[rd]   
+	00026: SVTCA[y-axis] 
+	00027: MDAP[rd]   
+	00028: MDRP[nrp0,nmd,rd,2] 
+	00029: MDRP[nrp0,md,rd,1] 
+	00030: IUP[y]     
+	00031: IUP[x]     
+	00032: DELTAP1    
+	00033: DELTAP1    
+	00034: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                                      Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    25,  1038)  ->  Abs (    25,  1038)
+	  1: Rel (     0,    30)  ->  Abs (    25,  1068)
+	  2: Rel (    32,    34)  ->  Abs (    57,  1102)
+	  3: Rel (    45,    20)  ->  Abs (   102,  1122)
+	  4: Rel (   136,    59)  ->  Abs (   238,  1181)
+	  5: Rel (   193,   201)  ->  Abs (   431,  1382)
+	  6: Rel (    42,    43)  ->  Abs (   473,  1425)
+	  7: Rel (    43,     0)  ->  Abs (   516,  1425)
+	  8: Rel (    59,     0)  ->  Abs (   575,  1425)
+	  9: Rel (     0,   -63)  ->  Abs (   575,  1362)
+	 10: Rel (     0,   -57)  ->  Abs (   575,  1305)
+	 11: Rel (  -368,  -336)  ->  Abs (   207,   969)
+	 12: Rel (  -101,     0)  ->  Abs (   106,   969)
+	 13: Rel (   -37,     0)  ->  Abs (    69,   969)
+	 14: Rel (   -44,    38)  ->  Abs (    25,  1007)
+	 15: Rel (   171,   -38)  ->  Abs (   196,   969)
+
+	Glyph  92: off = 0x00004198, len = 156
+	  numberOfContours:	3
+	  xMin:			25
+	  yMin:			969
+	  xMax:			862
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  14
+	  1:  29
+	  2:  30
+
+	  Length of Instructions:	53
+	00000: NPUSHB      (31):   102    19   118    19   134    19     3   102     4   118 
+	                             4   134     4     3     7    47    12     1    12    22 
+	                            30    27    30    30     0    24    64    15   128     9 
+	                             0 
+	00033: MDAP[rd]   
+	00034: MDRP[nrp0,md,rd,1] 
+	00035: SMD        
+	00036: MDRP[srp0,md,rd,0] 
+	00037: SMD        
+	00038: MDRP[nrp0,md,rd,1] 
+	00039: SRP1       
+	00040: IP         
+	00041: MDAP[rd]   
+	00042: SVTCA[y-axis] 
+	00043: MDAP[rd]   
+	00044: MDRP[nrp0,nmd,rd,2] 
+	00045: MDRP[nrp0,md,rd,1] 
+	00046: MDRP[srp0,nmd,rd,0] 
+	00047: DELTAP1    
+	00048: MDRP[nrp0,md,rd,1] 
+	00049: IUP[y]     
+	00050: IUP[x]     
+	00051: DELTAP1    
+	00052: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short X-Short On
+	  4:  YDual XDual         Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short X-Short On
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                                      Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:                      Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual XDual         Y-Short X-Short On
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual                 X-Short On
+	 23:  YDual XDual                 X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                                      Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (    25,  1124)  ->  Abs (    25,  1124)
+	  1: Rel (     0,    30)  ->  Abs (    25,  1154)
+	  2: Rel (    32,    34)  ->  Abs (    57,  1188)
+	  3: Rel (    45,    20)  ->  Abs (   102,  1208)
+	  4: Rel (   139,    62)  ->  Abs (   241,  1270)
+	  5: Rel (   153,   153)  ->  Abs (   394,  1423)
+	  6: Rel (    40,    41)  ->  Abs (   434,  1464)
+	  7: Rel (    41,     0)  ->  Abs (   475,  1464)
+	  8: Rel (    60,     0)  ->  Abs (   535,  1464)
+	  9: Rel (     0,   -63)  ->  Abs (   535,  1401)
+	 10: Rel (     0,   -56)  ->  Abs (   535,  1345)
+	 11: Rel (  -337,  -290)  ->  Abs (   198,  1055)
+	 12: Rel (   -92,     0)  ->  Abs (   106,  1055)
+	 13: Rel (   -37,     0)  ->  Abs (    69,  1055)
+	 14: Rel (   -44,    38)  ->  Abs (    25,  1093)
+	 15: Rel (   327,   -55)  ->  Abs (   352,  1038)
+	 16: Rel (     0,    31)  ->  Abs (   352,  1069)
+	 17: Rel (    34,    34)  ->  Abs (   386,  1103)
+	 18: Rel (    44,    19)  ->  Abs (   430,  1122)
+	 19: Rel (   138,    62)  ->  Abs (   568,  1184)
+	 20: Rel (   153,   153)  ->  Abs (   721,  1337)
+	 21: Rel (    41,    41)  ->  Abs (   762,  1378)
+	 22: Rel (    41,     0)  ->  Abs (   803,  1378)
+	 23: Rel (    59,     0)  ->  Abs (   862,  1378)
+	 24: Rel (     0,   -63)  ->  Abs (   862,  1315)
+	 25: Rel (     0,   -56)  ->  Abs (   862,  1259)
+	 26: Rel (  -336,  -290)  ->  Abs (   526,   969)
+	 27: Rel (   -92,     0)  ->  Abs (   434,   969)
+	 28: Rel (   -37,     0)  ->  Abs (   397,   969)
+	 29: Rel (   -45,    38)  ->  Abs (   352,  1007)
+	 30: Rel (    93,   -38)  ->  Abs (   445,   969)
+
+	Glyph  93: off = 0x00004234, len = 90
+	  numberOfContours:	2
+	  xMin:			25
+	  yMin:			-461
+	  xMax:			822
+	  yMax:			-69
+
+	EndPoints
+	---------
+	  0:  14
+	  1:  15
+
+	  Length of Instructions:	29
+	00000: NPUSHB      (16):   134     4     1    99     3   115     3   131     3     3 
+	                            12    15     6    15     9     0 
+	00018: MDAP[rd]   
+	00019: MDRP[srp0,md,rd,1] 
+	00020: MDRP[nrp0,nmd,rd,2] 
+	00021: SVTCA[y-axis] 
+	00022: MDAP[rd]   
+	00023: MDRP[nrp0,nmd,rd,2] 
+	00024: MDRP[nrp0,md,rd,1] 
+	00025: IUP[y]     
+	00026: IUP[x]     
+	00027: DELTAP1    
+	00028: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short         Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (    25,  -397)  ->  Abs (    25,  -397)
+	  1: Rel (     0,    62)  ->  Abs (    25,  -335)
+	  2: Rel (    77,    28)  ->  Abs (   102,  -307)
+	  3: Rel (   160,    57)  ->  Abs (   262,  -250)
+	  4: Rel (   182,   111)  ->  Abs (   444,  -139)
+	  5: Rel (    48,    28)  ->  Abs (   492,  -111)
+	  6: Rel (    40,     0)  ->  Abs (   532,  -111)
+	  7: Rel (    26,     0)  ->  Abs (   558,  -111)
+	  8: Rel (    36,   -35)  ->  Abs (   594,  -146)
+	  9: Rel (     0,   -22)  ->  Abs (   594,  -168)
+	 10: Rel (     0,   -59)  ->  Abs (   594,  -227)
+	 11: Rel (  -404,  -234)  ->  Abs (   190,  -461)
+	 12: Rel (   -88,     0)  ->  Abs (   102,  -461)
+	 13: Rel (   -34,     0)  ->  Abs (    68,  -461)
+	 14: Rel (   -43,    37)  ->  Abs (    25,  -424)
+	 15: Rel (   797,   355)  ->  Abs (   822,   -69)
+
+	Glyph  94: off = 0x0000428E, len = 188
+	  numberOfContours:	3
+	  xMin:			14
+	  yMin:			-517
+	  xMax:			1024
+	  yMax:			-111
+
+	EndPoints
+	---------
+	  0:  14
+	  1:  29
+	  2:  30
+
+	  Length of Instructions:	85
+	00000: NPUSHB      (58):   131    19     1   131    18     1   106    26   122    26 
+	                             2   106    11   122    11     2   131     4     1   131 
+	                             3     1    30    30     6    27    21    12     6    30 
+	                            30     0     0    24    16    24    32    24    64    24 
+	                            80    24     5    24    15     0     9    16     9    32 
+	                             9    64     9    80     9     5     9     0 
+	00060: MDAP[rd]   
+	00061: MDRP[nrp0,md,rd,1] 
+	00062: DELTAP1    
+	00063: MDRP[srp0,nmd,rd,0] 
+	00064: MDRP[nrp0,md,rd,1] 
+	00065: DELTAP1    
+	00066: SRP1       
+	00067: IP         
+	00068: MDAP[rd]   
+	00069: SVTCA[y-axis] 
+	00070: MDAP[rd]   
+	00071: MDRP[nrp0,md,rd,1] 
+	00072: MDRP[srp0,nmd,rd,0] 
+	00073: MDRP[nrp0,md,rd,1] 
+	00074: SRP2       
+	00075: IP         
+	00076: MDAP[rd]   
+	00077: IUP[y]     
+	00078: IUP[x]     
+	00079: DELTAP1    
+	00080: DELTAP1    
+	00081: DELTAP1    
+	00082: DELTAP1    
+	00083: DELTAP1    
+	00084: DELTAP1    
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short On
+	  3:  YDual XDual         Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short X-Short On
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short         Off
+	 12:  YDual                       X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:                      Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short On
+	 18:  YDual XDual         Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short X-Short On
+	 20:  YDual XDual         Y-Short X-Short Off
+	 21:  YDual XDual                 X-Short On
+	 22:  YDual XDual                 X-Short Off
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short         Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short X-Short Off
+	 30:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (    14,  -398)  ->  Abs (    14,  -398)
+	  1: Rel (     0,    62)  ->  Abs (    14,  -336)
+	  2: Rel (    78,    28)  ->  Abs (    92,  -308)
+	  3: Rel (   159,    57)  ->  Abs (   251,  -251)
+	  4: Rel (   183,   111)  ->  Abs (   434,  -140)
+	  5: Rel (    47,    29)  ->  Abs (   481,  -111)
+	  6: Rel (    41,     0)  ->  Abs (   522,  -111)
+	  7: Rel (    25,     0)  ->  Abs (   547,  -111)
+	  8: Rel (    37,   -35)  ->  Abs (   584,  -146)
+	  9: Rel (     0,   -23)  ->  Abs (   584,  -169)
+	 10: Rel (     0,   -60)  ->  Abs (   584,  -229)
+	 11: Rel (  -406,  -233)  ->  Abs (   178,  -462)
+	 12: Rel (   -86,     0)  ->  Abs (    92,  -462)
+	 13: Rel (   -34,     0)  ->  Abs (    58,  -462)
+	 14: Rel (   -44,    37)  ->  Abs (    14,  -425)
+	 15: Rel (   441,   -28)  ->  Abs (   455,  -453)
+	 16: Rel (     0,    62)  ->  Abs (   455,  -391)
+	 17: Rel (    77,    28)  ->  Abs (   532,  -363)
+	 18: Rel (   160,    57)  ->  Abs (   692,  -306)
+	 19: Rel (   182,   111)  ->  Abs (   874,  -195)
+	 20: Rel (    48,    28)  ->  Abs (   922,  -167)
+	 21: Rel (    41,     0)  ->  Abs (   963,  -167)
+	 22: Rel (    25,     0)  ->  Abs (   988,  -167)
+	 23: Rel (    36,   -35)  ->  Abs (  1024,  -202)
+	 24: Rel (     0,   -22)  ->  Abs (  1024,  -224)
+	 25: Rel (     0,   -59)  ->  Abs (  1024,  -283)
+	 26: Rel (  -404,  -234)  ->  Abs (   620,  -517)
+	 27: Rel (   -88,     0)  ->  Abs (   532,  -517)
+	 28: Rel (   -34,     0)  ->  Abs (   498,  -517)
+	 29: Rel (   -43,    37)  ->  Abs (   455,  -480)
+	 30: Rel (   506,   355)  ->  Abs (   961,  -125)
+
+	Glyph  95: off = 0x0000434A, len = 120
+	  numberOfContours:	2
+	  xMin:			25
+	  yMin:			969
+	  xMax:			502
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  20
+
+	  Length of Instructions:	46
+	00000: PUSHW[2]              9   -16 
+	00005: NPUSHB      (24):    11    14    72     7    20    13   106     0   122     0 
+	                           138     0     3    20     4     0     4    20     3   175 
+	                            10     1    10    15 
+	00031: MDAP[rd]   
+	00032: MDRP[nrp0,md,rd,1] 
+	00033: DELTAP1    
+	00034: SLOOP      
+	00035: IP         
+	00036: MDAP[rd]   
+	00037: MDAP[rd]   
+	00038: DELTAP1    
+	00039: SVTCA[y-axis] 
+	00040: MDAP[rd]   
+	00041: MDRP[nrp0,nmd,rd,2] 
+	00042: MDRP[nrp0,nmd,rd,0] 
+	00043: IUP[y]     
+	00044: IUP[x]     
+	00045: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:                      Y-Short         Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short         Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   350,  1257)  ->  Abs (   350,  1257)
+	  1: Rel (   -64,    51)  ->  Abs (   286,  1308)
+	  2: Rel (  -147,    15)  ->  Abs (   139,  1323)
+	  3: Rel (   -78,     8)  ->  Abs (    61,  1331)
+	  4: Rel (     0,    60)  ->  Abs (    61,  1391)
+	  5: Rel (     0,    31)  ->  Abs (    61,  1422)
+	  6: Rel (    45,    42)  ->  Abs (   106,  1464)
+	  7: Rel (    37,     0)  ->  Abs (   143,  1464)
+	  8: Rel (    93,     0)  ->  Abs (   236,  1464)
+	  9: Rel (   266,  -101)  ->  Abs (   502,  1363)
+	 10: Rel (     0,   -85)  ->  Abs (   502,  1278)
+	 11: Rel (     0,   -80)  ->  Abs (   502,  1198)
+	 12: Rel (  -321,  -229)  ->  Abs (   181,   969)
+	 13: Rel (   -75,     0)  ->  Abs (   106,   969)
+	 14: Rel (   -81,     0)  ->  Abs (    25,   969)
+	 15: Rel (     0,    65)  ->  Abs (    25,  1034)
+	 16: Rel (     0,    35)  ->  Abs (    25,  1069)
+	 17: Rel (    36,    35)  ->  Abs (    61,  1104)
+	 18: Rel (    41,    14)  ->  Abs (   102,  1118)
+	 19: Rel (   186,    68)  ->  Abs (   288,  1186)
+	 20: Rel (  -151,  -217)  ->  Abs (   137,   969)
+
+	Glyph  96: off = 0x000043C2, len = 204
+	  numberOfContours:	3
+	  xMin:			25
+	  yMin:			969
+	  xMax:			993
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  39
+	  2:  40
+
+	  Length of Instructions:	75
+	00000: PUSHW[2]             29   -16 
+	00005: PUSHB[4]             11    14    72     9 
+	00010: PUSHW[1]            -16 
+	00013: NPUSHB      (35):    11    14    72    33    27     7    40    13   106    20 
+	                           122    20   138    20     3   106     0   122     0   138 
+	                             0     3    40    24     4    40    15    24    20    30 
+	                            35     4     0    10    15 
+	00050: MDAP[rd]   
+	00051: MDRP[nrp0,md,rd,1] 
+	00052: IP         
+	00053: IP         
+	00054: MDRP[srp0,nmd,rd,0] 
+	00055: MDRP[nrp0,md,rd,1] 
+	00056: IP         
+	00057: IP         
+	00058: SRP1       
+	00059: IP         
+	00060: MDAP[rd]   
+	00061: MDAP[rd]   
+	00062: MDAP[rd]   
+	00063: DELTAP1    
+	00064: DELTAP1    
+	00065: SVTCA[y-axis] 
+	00066: MDAP[rd]   
+	00067: MDRP[nrp0,nmd,rd,2] 
+	00068: MDRP[nrp0,nmd,rd,0] 
+	00069: IP         
+	00070: IP         
+	00071: IUP[y]     
+	00072: IUP[x]     
+	00073: CALL       
+	00074: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual               Y-Short X-Short Off
+	  2:  YDual               Y-Short X-Short On
+	  3:  YDual               Y-Short X-Short Off
+	  4:  YDual XDual         Y-Short         On
+	  5:  YDual XDual         Y-Short         Off
+	  6:  YDual XDual         Y-Short X-Short Off
+	  7:  YDual XDual                 X-Short On
+	  8:  YDual XDual                 X-Short Off
+	  9:                      Y-Short         Off
+	 10:        XDual         Y-Short         On
+	 11:        XDual         Y-Short         Off
+	 12:                      Y-Short         Off
+	 13:  YDual                       X-Short On
+	 14:  YDual                       X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual         Y-Short X-Short On
+	 19:  YDual XDual         Y-Short X-Short Off
+	 20:  YDual               Y-Short         On
+	 21:  YDual               Y-Short X-Short Off
+	 22:  YDual               Y-Short X-Short On
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual XDual         Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:                      Y-Short         Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short         Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual XDual         Y-Short         On
+	 36:  YDual XDual         Y-Short         Off
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:  YDual XDual         Y-Short X-Short On
+	 39:  YDual XDual         Y-Short X-Short Off
+	 40:                      Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   350,  1257)  ->  Abs (   350,  1257)
+	  1: Rel (   -64,    51)  ->  Abs (   286,  1308)
+	  2: Rel (  -147,    15)  ->  Abs (   139,  1323)
+	  3: Rel (   -78,     8)  ->  Abs (    61,  1331)
+	  4: Rel (     0,    60)  ->  Abs (    61,  1391)
+	  5: Rel (     0,    31)  ->  Abs (    61,  1422)
+	  6: Rel (    45,    42)  ->  Abs (   106,  1464)
+	  7: Rel (    37,     0)  ->  Abs (   143,  1464)
+	  8: Rel (    93,     0)  ->  Abs (   236,  1464)
+	  9: Rel (   266,  -101)  ->  Abs (   502,  1363)
+	 10: Rel (     0,   -85)  ->  Abs (   502,  1278)
+	 11: Rel (     0,   -80)  ->  Abs (   502,  1198)
+	 12: Rel (  -321,  -229)  ->  Abs (   181,   969)
+	 13: Rel (   -75,     0)  ->  Abs (   106,   969)
+	 14: Rel (   -81,     0)  ->  Abs (    25,   969)
+	 15: Rel (     0,    65)  ->  Abs (    25,  1034)
+	 16: Rel (     0,    35)  ->  Abs (    25,  1069)
+	 17: Rel (    36,    35)  ->  Abs (    61,  1104)
+	 18: Rel (    41,    14)  ->  Abs (   102,  1118)
+	 19: Rel (   186,    68)  ->  Abs (   288,  1186)
+	 20: Rel (   554,    71)  ->  Abs (   842,  1257)
+	 21: Rel (   -65,    51)  ->  Abs (   777,  1308)
+	 22: Rel (  -146,    15)  ->  Abs (   631,  1323)
+	 23: Rel (   -78,     8)  ->  Abs (   553,  1331)
+	 24: Rel (     0,    60)  ->  Abs (   553,  1391)
+	 25: Rel (     0,    32)  ->  Abs (   553,  1423)
+	 26: Rel (    45,    41)  ->  Abs (   598,  1464)
+	 27: Rel (    37,     0)  ->  Abs (   635,  1464)
+	 28: Rel (    92,     0)  ->  Abs (   727,  1464)
+	 29: Rel (   266,  -101)  ->  Abs (   993,  1363)
+	 30: Rel (     0,   -85)  ->  Abs (   993,  1278)
+	 31: Rel (     0,   -80)  ->  Abs (   993,  1198)
+	 32: Rel (  -321,  -229)  ->  Abs (   672,   969)
+	 33: Rel (   -74,     0)  ->  Abs (   598,   969)
+	 34: Rel (   -82,     0)  ->  Abs (   516,   969)
+	 35: Rel (     0,    65)  ->  Abs (   516,  1034)
+	 36: Rel (     0,    35)  ->  Abs (   516,  1069)
+	 37: Rel (    37,    35)  ->  Abs (   553,  1104)
+	 38: Rel (    41,    14)  ->  Abs (   594,  1118)
+	 39: Rel (   185,    68)  ->  Abs (   779,  1186)
+	 40: Rel (  -173,  -217)  ->  Abs (   606,   969)
+
+	Glyph  97: off = 0x0000448E, len = 112
+	  numberOfContours:	2
+	  xMin:			23
+	  yMin:			969
+	  xMax:			500
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  20
+
+	  Length of Instructions:	39
+	00000: NPUSHB      (23):     9    16    11    14    72    13    20     7   101     0 
+	                           117     0   133     0     3    20     4     0     4    20 
+	                             3    15    10 
+	00025: MDAP[rd]   
+	00026: MDRP[nrp0,md,rd,1] 
+	00027: SLOOP      
+	00028: IP         
+	00029: MDAP[rd]   
+	00030: MDAP[rd]   
+	00031: DELTAP1    
+	00032: SVTCA[y-axis] 
+	00033: MDAP[rd]   
+	00034: MDRP[nrp0,nmd,rd,2] 
+	00035: MDRP[nrp0,nmd,rd,0] 
+	00036: IUP[y]     
+	00037: IUP[x]     
+	00038: CALL       
+
+	Flags
+	-----
+	  0:        XDual                 X-Short On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short         Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual               Y-Short         Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:        XDual                 X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   174,  1176)  ->  Abs (   174,  1176)
+	  1: Rel (    64,   -51)  ->  Abs (   238,  1125)
+	  2: Rel (   147,   -15)  ->  Abs (   385,  1110)
+	  3: Rel (    78,    -8)  ->  Abs (   463,  1102)
+	  4: Rel (     0,   -60)  ->  Abs (   463,  1042)
+	  5: Rel (     0,   -32)  ->  Abs (   463,  1010)
+	  6: Rel (   -45,   -41)  ->  Abs (   418,   969)
+	  7: Rel (   -37,     0)  ->  Abs (   381,   969)
+	  8: Rel (   -93,     0)  ->  Abs (   288,   969)
+	  9: Rel (  -265,   101)  ->  Abs (    23,  1070)
+	 10: Rel (     0,    85)  ->  Abs (    23,  1155)
+	 11: Rel (     0,    81)  ->  Abs (    23,  1236)
+	 12: Rel (   320,   228)  ->  Abs (   343,  1464)
+	 13: Rel (    75,     0)  ->  Abs (   418,  1464)
+	 14: Rel (    82,     0)  ->  Abs (   500,  1464)
+	 15: Rel (     0,   -65)  ->  Abs (   500,  1399)
+	 16: Rel (     0,   -35)  ->  Abs (   500,  1364)
+	 17: Rel (   -37,   -35)  ->  Abs (   463,  1329)
+	 18: Rel (   -41,   -14)  ->  Abs (   422,  1315)
+	 19: Rel (  -186,   -68)  ->  Abs (   236,  1247)
+	 20: Rel (    44,  -278)  ->  Abs (   280,   969)
+
+	Glyph  98: off = 0x000044FE, len = 200
+	  numberOfContours:	3
+	  xMin:			23
+	  yMin:			969
+	  xMax:			991
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  19
+	  1:  39
+	  2:  40
+
+	  Length of Instructions:	69
+	00000: NPUSHB      (42):    29    16    11    14    72     9    16    11    14    72 
+	                            33    27    13    40     7   101    20   117    20   133 
+	                            20     3   101     0   117     0   133     0     3    40 
+	                            24     4    40    30     4     0    15    10    24    20 
+	                            35    30 
+	00044: MDAP[rd]   
+	00045: MDRP[nrp0,md,rd,1] 
+	00046: IP         
+	00047: IP         
+	00048: MDRP[srp0,nmd,rd,0] 
+	00049: MDRP[nrp0,md,rd,1] 
+	00050: IP         
+	00051: IP         
+	00052: SRP1       
+	00053: IP         
+	00054: MDAP[rd]   
+	00055: MDAP[rd]   
+	00056: MDAP[rd]   
+	00057: DELTAP1    
+	00058: DELTAP1    
+	00059: SVTCA[y-axis] 
+	00060: MDAP[rd]   
+	00061: MDRP[nrp0,nmd,rd,2] 
+	00062: MDRP[nrp0,nmd,rd,0] 
+	00063: IP         
+	00064: IP         
+	00065: IUP[y]     
+	00066: IUP[x]     
+	00067: CALL       
+	00068: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short X-Short Off
+	  2:        XDual         Y-Short X-Short On
+	  3:        XDual         Y-Short X-Short Off
+	  4:        XDual         Y-Short         On
+	  5:        XDual         Y-Short         Off
+	  6:                      Y-Short X-Short Off
+	  7:  YDual                       X-Short On
+	  8:  YDual                       X-Short Off
+	  9:  YDual               Y-Short         Off
+	 10:  YDual XDual         Y-Short         On
+	 11:  YDual XDual         Y-Short         Off
+	 12:  YDual               Y-Short         Off
+	 13:  YDual XDual                 X-Short On
+	 14:  YDual XDual                 X-Short Off
+	 15:        XDual         Y-Short         On
+	 16:        XDual         Y-Short         Off
+	 17:                      Y-Short X-Short Off
+	 18:                      Y-Short X-Short On
+	 19:                      Y-Short X-Short Off
+	 20:                      Y-Short         On
+	 21:        XDual         Y-Short X-Short Off
+	 22:        XDual         Y-Short X-Short On
+	 23:        XDual         Y-Short X-Short Off
+	 24:        XDual         Y-Short         On
+	 25:        XDual         Y-Short         Off
+	 26:                      Y-Short X-Short Off
+	 27:  YDual                       X-Short On
+	 28:  YDual                       X-Short Off
+	 29:  YDual               Y-Short         Off
+	 30:  YDual XDual         Y-Short         On
+	 31:  YDual XDual         Y-Short         Off
+	 32:  YDual               Y-Short         Off
+	 33:  YDual XDual                 X-Short On
+	 34:  YDual XDual                 X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:                      Y-Short X-Short Off
+	 38:                      Y-Short X-Short On
+	 39:                      Y-Short X-Short Off
+	 40:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   666,  1176)  ->  Abs (   666,  1176)
+	  1: Rel (    64,   -51)  ->  Abs (   730,  1125)
+	  2: Rel (   147,   -15)  ->  Abs (   877,  1110)
+	  3: Rel (    77,    -8)  ->  Abs (   954,  1102)
+	  4: Rel (     0,   -60)  ->  Abs (   954,  1042)
+	  5: Rel (     0,   -31)  ->  Abs (   954,  1011)
+	  6: Rel (   -44,   -42)  ->  Abs (   910,   969)
+	  7: Rel (   -38,     0)  ->  Abs (   872,   969)
+	  8: Rel (   -92,     0)  ->  Abs (   780,   969)
+	  9: Rel (  -266,   101)  ->  Abs (   514,  1070)
+	 10: Rel (     0,    85)  ->  Abs (   514,  1155)
+	 11: Rel (     0,    81)  ->  Abs (   514,  1236)
+	 12: Rel (   321,   228)  ->  Abs (   835,  1464)
+	 13: Rel (    74,     0)  ->  Abs (   909,  1464)
+	 14: Rel (    82,     0)  ->  Abs (   991,  1464)
+	 15: Rel (     0,   -65)  ->  Abs (   991,  1399)
+	 16: Rel (     0,   -31)  ->  Abs (   991,  1368)
+	 17: Rel (   -32,   -37)  ->  Abs (   959,  1331)
+	 18: Rel (   -46,   -16)  ->  Abs (   913,  1315)
+	 19: Rel (  -185,   -68)  ->  Abs (   728,  1247)
+	 20: Rel (  -554,   -71)  ->  Abs (   174,  1176)
+	 21: Rel (    64,   -51)  ->  Abs (   238,  1125)
+	 22: Rel (   147,   -15)  ->  Abs (   385,  1110)
+	 23: Rel (    78,    -8)  ->  Abs (   463,  1102)
+	 24: Rel (     0,   -60)  ->  Abs (   463,  1042)
+	 25: Rel (     0,   -32)  ->  Abs (   463,  1010)
+	 26: Rel (   -45,   -41)  ->  Abs (   418,   969)
+	 27: Rel (   -37,     0)  ->  Abs (   381,   969)
+	 28: Rel (   -93,     0)  ->  Abs (   288,   969)
+	 29: Rel (  -265,   101)  ->  Abs (    23,  1070)
+	 30: Rel (     0,    85)  ->  Abs (    23,  1155)
+	 31: Rel (     0,    81)  ->  Abs (    23,  1236)
+	 32: Rel (   320,   228)  ->  Abs (   343,  1464)
+	 33: Rel (    75,     0)  ->  Abs (   418,  1464)
+	 34: Rel (    82,     0)  ->  Abs (   500,  1464)
+	 35: Rel (     0,   -65)  ->  Abs (   500,  1399)
+	 36: Rel (     0,   -35)  ->  Abs (   500,  1364)
+	 37: Rel (   -37,   -35)  ->  Abs (   463,  1329)
+	 38: Rel (   -41,   -14)  ->  Abs (   422,  1315)
+	 39: Rel (  -186,   -68)  ->  Abs (   236,  1247)
+	 40: Rel (   330,  -278)  ->  Abs (   566,   969)
+
+	Glyph  99: off = 0x000045C6, len = 184
+	  numberOfContours:	2
+	  xMin:			25
+	  yMin:			969
+	  xMax:			909
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  41
+	  1:  42
+
+	  Length of Instructions:	53
+	00000: NPUSHB      (35):     9     1    25     1     2    17    42     3   100    31 
+	                           116    31   132    31     3   107    10   123    10   139 
+	                            10     3    35    14    42     0    10    14    21    31 
+	                            35    42     7    26     5 
+	00037: MDAP[rd]   
+	00038: MDRP[nrp0,md,rd,1] 
+	00039: SLOOP      
+	00040: IP         
+	00041: MDAP[rd]   
+	00042: MDAP[rd]   
+	00043: MDAP[rd]   
+	00044: DELTAP1    
+	00045: DELTAP1    
+	00046: SVTCA[y-axis] 
+	00047: MDAP[rd]   
+	00048: MDRP[nrp0,nmd,rd,2] 
+	00049: MDRP[nrp0,nmd,rd,0] 
+	00050: IUP[y]     
+	00051: IUP[x]     
+	00052: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:              Rep-  1 Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short X-Short Off
+	 10:  YDual XDual         Y-Short X-Short On
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short X-Short On
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:  YDual XDual         Y-Short X-Short Off
+	 17:  YDual XDual                 X-Short On
+	 18:  YDual XDual                 X-Short Off
+	 19:                      Y-Short         Off
+	 20:        XDual Rep-  1 Y-Short         On
+	 22:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short         On
+	 27:        XDual         Y-Short         Off
+	 28:                      Y-Short X-Short Off
+	 29:                      Y-Short X-Short On
+	 30:                      Y-Short X-Short Off
+	 31:                      Y-Short X-Short On
+	 32:        XDual         Y-Short X-Short Off
+	 33:        XDual         Y-Short X-Short On
+	 34:        XDual         Y-Short X-Short Off
+	 35:        XDual         Y-Short         On
+	 36:        XDual         Y-Short         Off
+	 37:                      Y-Short X-Short Off
+	 38:  YDual                       X-Short On
+	 39:  YDual                       X-Short Off
+	 40:  YDual               Y-Short         Off
+	 41:  YDual XDual         Y-Short         On
+	 42:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   432,  1157)  ->  Abs (   432,  1157)
+	  1: Rel (   -56,   -56)  ->  Abs (   376,  1101)
+	  2: Rel (  -214,  -132)  ->  Abs (   162,   969)
+	  3: Rel (   -56,     0)  ->  Abs (   106,   969)
+	  4: Rel (   -81,     0)  ->  Abs (    25,   969)
+	  5: Rel (     0,    65)  ->  Abs (    25,  1034)
+	  6: Rel (     0,    35)  ->  Abs (    25,  1069)
+	  7: Rel (    36,    35)  ->  Abs (    61,  1104)
+	  8: Rel (    41,    14)  ->  Abs (   102,  1118)
+	  9: Rel (   186,    68)  ->  Abs (   288,  1186)
+	 10: Rel (    62,    71)  ->  Abs (   350,  1257)
+	 11: Rel (   -64,    51)  ->  Abs (   286,  1308)
+	 12: Rel (  -147,    15)  ->  Abs (   139,  1323)
+	 13: Rel (   -78,     8)  ->  Abs (    61,  1331)
+	 14: Rel (     0,    60)  ->  Abs (    61,  1391)
+	 15: Rel (     0,    31)  ->  Abs (    61,  1422)
+	 16: Rel (    45,    42)  ->  Abs (   106,  1464)
+	 17: Rel (    37,     0)  ->  Abs (   143,  1464)
+	 18: Rel (    93,     0)  ->  Abs (   236,  1464)
+	 19: Rel (   266,  -101)  ->  Abs (   502,  1363)
+	 20: Rel (     0,   -85)  ->  Abs (   502,  1278)
+	 21: Rel (     0,    -2)  ->  Abs (   502,  1276)
+	 22: Rel (    63,    61)  ->  Abs (   565,  1337)
+	 23: Rel (   207,   127)  ->  Abs (   772,  1464)
+	 24: Rel (    55,     0)  ->  Abs (   827,  1464)
+	 25: Rel (    82,     0)  ->  Abs (   909,  1464)
+	 26: Rel (     0,   -65)  ->  Abs (   909,  1399)
+	 27: Rel (     0,   -31)  ->  Abs (   909,  1368)
+	 28: Rel (   -32,   -37)  ->  Abs (   877,  1331)
+	 29: Rel (   -46,   -16)  ->  Abs (   831,  1315)
+	 30: Rel (  -185,   -68)  ->  Abs (   646,  1247)
+	 31: Rel (   -62,   -71)  ->  Abs (   584,  1176)
+	 32: Rel (    64,   -51)  ->  Abs (   648,  1125)
+	 33: Rel (   147,   -15)  ->  Abs (   795,  1110)
+	 34: Rel (    77,    -8)  ->  Abs (   872,  1102)
+	 35: Rel (     0,   -60)  ->  Abs (   872,  1042)
+	 36: Rel (     0,   -32)  ->  Abs (   872,  1010)
+	 37: Rel (   -45,   -41)  ->  Abs (   827,   969)
+	 38: Rel (   -36,     0)  ->  Abs (   791,   969)
+	 39: Rel (   -93,     0)  ->  Abs (   698,   969)
+	 40: Rel (  -266,   101)  ->  Abs (   432,  1070)
+	 41: Rel (     0,    85)  ->  Abs (   432,  1155)
+	 42: Rel (    73,  -186)  ->  Abs (   505,   969)
+
+	Glyph 100: off = 0x0000467E, len = 184
+	  numberOfContours:	2
+	  xMin:			37
+	  yMin:			969
+	  xMax:			971
+	  yMax:			1792
+
+	EndPoints
+	---------
+	  0:  34
+	  1:  35
+
+	  Length of Instructions:	69
+	00000: NPUSHB      (42):   133    31     1   140    24     1   133    16     1   133 
+	                            15     1    58     2    74     2     2    25     0   237 
+	                             3    14    25     3    18     6   235    35    11    35 
+	                            28     8    33   252     8    28    35     3    21     3 
+	                           252    14 
+	00044: MDAP[rd]   
+	00045: MIRP[nrp0,md,rd,1] 
+	00046: MDRP[srp0,nmd,rd,0] 
+	00047: SLOOP      
+	00048: IP         
+	00049: MIRP[nrp0,md,rd,1] 
+	00050: MDAP[rd]   
+	00051: MDAP[rd]   
+	00052: MDAP[rd]   
+	00053: SVTCA[y-axis] 
+	00054: MDAP[rd]   
+	00055: MDRP[nrp0,nmd,rd,2] 
+	00056: MIRP[nrp0,md,rd,1] 
+	00057: MDRP[srp0,nmd,rd,0] 
+	00058: SLOOP      
+	00059: IP         
+	00060: MIRP[nrp0,md,rd,1] 
+	00061: MDAP[rd]   
+	00062: IUP[y]     
+	00063: IUP[x]     
+	00064: DELTAP1    
+	00065: DELTAP1    
+	00066: DELTAP1    
+	00067: DELTAP1    
+	00068: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:                                      Off
+	  3:        XDual         Y-Short         On
+	  4:        XDual         Y-Short         Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short X-Short On
+	  7:        XDual         Y-Short X-Short Off
+	  8:        XDual         Y-Short         On
+	  9:        XDual         Y-Short         Off
+	 10:                      Y-Short X-Short Off
+	 11:  YDual                       X-Short On
+	 12:  YDual                       X-Short Off
+	 13:  YDual               Y-Short X-Short Off
+	 14:  YDual XDual         Y-Short         On
+	 15:  YDual XDual         Y-Short         Off
+	 16:                                      Off
+	 17:  YDual               Y-Short         Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:              Rep-  1 Y-Short X-Short Off
+	 25:  YDual                       X-Short On
+	 26:  YDual                       X-Short Off
+	 27:  YDual               Y-Short X-Short Off
+	 28:  YDual XDual         Y-Short         On
+	 29:  YDual XDual         Y-Short         Off
+	 30:  YDual XDual         Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short X-Short On
+	 32:  YDual XDual         Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   750,  1651)  ->  Abs (   750,  1651)
+	  1: Rel (  -129,     0)  ->  Abs (   621,  1651)
+	  2: Rel (  -433,  -308)  ->  Abs (   188,  1343)
+	  3: Rel (     0,  -100)  ->  Abs (   188,  1243)
+	  4: Rel (     0,   -48)  ->  Abs (   188,  1195)
+	  5: Rel (    99,   -58)  ->  Abs (   287,  1137)
+	  6: Rel (    71,   -11)  ->  Abs (   358,  1126)
+	  7: Rel (    78,   -11)  ->  Abs (   436,  1115)
+	  8: Rel (     0,   -73)  ->  Abs (   436,  1042)
+	  9: Rel (     0,   -32)  ->  Abs (   436,  1010)
+	 10: Rel (   -45,   -41)  ->  Abs (   391,   969)
+	 11: Rel (   -37,     0)  ->  Abs (   354,   969)
+	 12: Rel (  -108,     0)  ->  Abs (   246,   969)
+	 13: Rel (  -209,   163)  ->  Abs (    37,  1132)
+	 14: Rel (     0,   117)  ->  Abs (    37,  1249)
+	 15: Rel (     0,    99)  ->  Abs (    37,  1348)
+	 16: Rel (   273,   264)  ->  Abs (   310,  1612)
+	 17: Rel (   344,   180)  ->  Abs (   654,  1792)
+	 18: Rel (   106,     0)  ->  Abs (   760,  1792)
+	 19: Rel (    95,     0)  ->  Abs (   855,  1792)
+	 20: Rel (   116,  -102)  ->  Abs (   971,  1690)
+	 21: Rel (     0,   -95)  ->  Abs (   971,  1595)
+	 22: Rel (     0,   -50)  ->  Abs (   971,  1545)
+	 23: Rel (   -46,  -149)  ->  Abs (   925,  1396)
+	 24: Rel (  -134,  -157)  ->  Abs (   791,  1239)
+	 25: Rel (   -62,     0)  ->  Abs (   729,  1239)
+	 26: Rel (   -27,     0)  ->  Abs (   702,  1239)
+	 27: Rel (   -45,    42)  ->  Abs (   657,  1281)
+	 28: Rel (     0,    30)  ->  Abs (   657,  1311)
+	 29: Rel (     0,    29)  ->  Abs (   657,  1340)
+	 30: Rel (    22,    47)  ->  Abs (   679,  1387)
+	 31: Rel (    38,    32)  ->  Abs (   717,  1419)
+	 32: Rel (   102,    89)  ->  Abs (   819,  1508)
+	 33: Rel (     0,    77)  ->  Abs (   819,  1585)
+	 34: Rel (     0,    66)  ->  Abs (   819,  1651)
+	 35: Rel (  -275,  -682)  ->  Abs (   544,   969)
+
+	Glyph 101: off = 0x00004736, len = 132
+	  numberOfContours:	3
+	  xMin:			37
+	  yMin:			969
+	  xMax:			598
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  22
+	  2:  23
+
+	  Length of Instructions:	51
+	00000: PUSHW[2]             14   -32 
+	00005: PUSHB[4]             15    18    72     7 
+	00010: PUSHW[1]            -64 
+	00013: NPUSHB      (19):    15    18    72    17   156     9    12   156    23     3 
+	                            23    23     6    15   140     0    20   140     6 
+	00034: MDAP[rd]   
+	00035: MIRP[nrp0,md,rd,1] 
+	00036: MDRP[srp0,nmd,rd,0] 
+	00037: MIRP[nrp0,md,rd,1] 
+	00038: SRP2       
+	00039: IP         
+	00040: MDAP[rd]   
+	00041: SVTCA[y-axis] 
+	00042: MDAP[rd]   
+	00043: MDRP[nrp0,nmd,rd,2] 
+	00044: MIRP[nrp0,md,rd,1] 
+	00045: MDRP[srp0,nmd,rd,0] 
+	00046: MIRP[nrp0,md,rd,1] 
+	00047: IUP[y]     
+	00048: IUP[x]     
+	00049: CALL       
+	00050: CALL       
+
+	Flags
+	-----
+	  0:                                      On
+	  1:        XDual         Y-Short         Off
+	  2:                      Y-Short X-Short Off
+	  3:  YDual                       X-Short On
+	  4:  YDual                       X-Short Off
+	  5:  YDual               Y-Short X-Short Off
+	  6:  YDual XDual         Y-Short         On
+	  7:  YDual XDual         Y-Short         Off
+	  8:  YDual XDual         Y-Short X-Short Off
+	  9:  YDual XDual                 X-Short On
+	 10:  YDual XDual                 X-Short Off
+	 11:        XDual         Y-Short X-Short Off
+	 12:                                      On
+	 13:  YDual XDual                 X-Short Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual                       X-Short On
+	 18:  YDual                       X-Short Off
+	 19:                      Y-Short X-Short Off
+	 20:        XDual         Y-Short         On
+	 21:        XDual         Y-Short         Off
+	 22:        XDual         Y-Short X-Short Off
+	 23:        XDual         Y-Short X-Short On
+
+	Coordinates
+	-----------
+	  0: Rel (   598,  1286)  ->  Abs (   598,  1286)
+	  1: Rel (     0,  -102)  ->  Abs (   598,  1184)
+	  2: Rel (  -194,  -215)  ->  Abs (   404,   969)
+	  3: Rel (  -130,     0)  ->  Abs (   274,   969)
+	  4: Rel (  -103,     0)  ->  Abs (   171,   969)
+	  5: Rel (  -134,   121)  ->  Abs (    37,  1090)
+	  6: Rel (     0,    94)  ->  Abs (    37,  1184)
+	  7: Rel (     0,    93)  ->  Abs (    37,  1277)
+	  8: Rel (   241,   187)  ->  Abs (   278,  1464)
+	  9: Rel (   136,     0)  ->  Abs (   414,  1464)
+	 10: Rel (    84,     0)  ->  Abs (   498,  1464)
+	 11: Rel (   100,   -93)  ->  Abs (   598,  1371)
+	 12: Rel (  -319,  -263)  ->  Abs (   279,  1108)
+	 13: Rel (    50,     0)  ->  Abs (   329,  1108)
+	 14: Rel (   117,   134)  ->  Abs (   446,  1242)
+	 15: Rel (     0,    40)  ->  Abs (   446,  1282)
+	 16: Rel (     0,    47)  ->  Abs (   446,  1329)
+	 17: Rel (   -43,     0)  ->  Abs (   403,  1329)
+	 18: Rel (   -65,     0)  ->  Abs (   338,  1329)
+	 19: Rel (  -150,  -111)  ->  Abs (   188,  1218)
+	 20: Rel (     0,   -40)  ->  Abs (   188,  1178)
+	 21: Rel (     0,   -28)  ->  Abs (   188,  1150)
+	 22: Rel (    51,   -42)  ->  Abs (   239,  1108)
+	 23: Rel (   162,  -139)  ->  Abs (   401,   969)
+
+	Glyph 102: off = 0x000047BA, len = 286
+	  numberOfContours:	4
+	  xMin:			10
+	  yMin:			-606
+	  xMax:			864
+	  yMax:			1100
+
+	EndPoints
+	---------
+	  0:  37
+	  1:  47
+	  2:  48
+	  3:  49
+
+	  Length of Instructions:	137
+	00000: PUSHB[7]             15    35     1    80    34     1    22 
+	00008: PUSHW[1]            -40 
+	00011: NPUSHB      (18):    13    17    72    15    14   111    14     2    11     0 
+	                             9     1    15     3     1    14     5    48 
+	00031: PUSHW[1]            258 
+	00034: NPUSHB      (53):    13    64     9    17    72    13    11    17    33    17 
+	                            30    11     8     2   235    45    40   235     8    15 
+	                            24    19   234    49    30    28    48     0     2    13 
+	                            48     4    11     5   250    43    38   250    27    49 
+	                            11    17   250    33    64    51    11   245     2    50 
+	                            33   246     2 
+	00089: CALL       
+	00090: CALL       
+	00091: SVTCA[x-axis] 
+	00092: SMD        
+	00093: RTG        
+	00094: SRP0       
+	00095: FLIPON     
+	00096: MIRP[nrp0,md,rd,1] 
+	00097: SRP0       
+	00098: MDRP[nrp0,nmd,rd,0] 
+	00099: MDRP[nrp0,nmd,rd,0] 
+	00100: MIRP[nrp0,md,rd,1] 
+	00101: MDRP[srp0,nmd,rd,0] 
+	00102: MIRP[nrp0,md,rd,1] 
+	00103: SRP1       
+	00104: SLOOP      
+	00105: IP         
+	00106: MDAP[rd]   
+	00107: SVTCA[y-axis] 
+	00108: MIAP[rd+ci] 
+	00109: MDRP[nrp0,nmd,rd,2] 
+	00110: MIRP[srp0,md,rd,1] 
+	00111: MDRP[nrp0,nmd,rd,0] 
+	00112: MIAP[rd+ci] 
+	00113: MIRP[nrp0,md,rd,1] 
+	00114: MDRP[srp0,nmd,rd,0] 
+	00115: MIRP[nrp0,md,rd,1] 
+	00116: SRP1       
+	00117: IP         
+	00118: SRP2       
+	00119: IP         
+	00120: IP         
+	00121: SRP1       
+	00122: SRP2       
+	00123: IP         
+	00124: CALL       
+	00125: MIAP[rd+ci] 
+	00126: IUP[y]     
+	00127: IUP[x]     
+	00128: SDS        
+	00129: SDB        
+	00130: DELTAP1    
+	00131: DELTAP1    
+	00132: SDB        
+	00133: DELTAP1    
+	00134: CALL       
+	00135: DELTAP1    
+	00136: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:                      Y-Short X-Short Off
+	  2:  YDual                       X-Short On
+	  3:  YDual                       X-Short Off
+	  4:  YDual               Y-Short X-Short Off
+	  5:  YDual XDual         Y-Short         On
+	  6:  YDual XDual         Y-Short         Off
+	  7:  YDual XDual         Y-Short X-Short Off
+	  8:  YDual XDual                 X-Short On
+	  9:  YDual XDual                 X-Short Off
+	 10:        XDual         Y-Short X-Short Off
+	 11:        XDual         Y-Short         On
+	 12:        XDual         Y-Short         Off
+	 13:                      Y-Short X-Short Off
+	 14:                      Y-Short X-Short On
+	 15:              Rep-  1 Y-Short X-Short Off
+	 17:        XDual         Y-Short         On
+	 18:        XDual         Y-Short         Off
+	 19:  YDual XDual                 X-Short On
+	 20:  YDual XDual                 X-Short Off
+	 21:  YDual XDual         Y-Short X-Short Off
+	 22:  YDual XDual         Y-Short X-Short On
+	 23:  YDual XDual         Y-Short X-Short Off
+	 24:  YDual XDual                 X-Short On
+	 25:  YDual XDual                 X-Short Off
+	 26:        XDual         Y-Short X-Short Off
+	 27:        XDual         Y-Short         On
+	 28:        XDual         Y-Short         Off
+	 29:                      Y-Short X-Short Off
+	 30:  YDual                       X-Short On
+	 31:  YDual                       X-Short Off
+	 32:  YDual               Y-Short X-Short Off
+	 33:  YDual XDual         Y-Short         On
+	 34:  YDual XDual         Y-Short         Off
+	 35:  YDual XDual         Y-Short X-Short Off
+	 36:  YDual XDual         Y-Short X-Short On
+	 37:  YDual XDual         Y-Short X-Short Off
+	 38:        XDual                 X-Short On
+	 39:  YDual XDual         Y-Short         Off
+	 40:  YDual                       X-Short On
+	 41:  YDual                       X-Short Off
+	 42:                      Y-Short X-Short Off
+	 43:        XDual         Y-Short         On
+	 44:        XDual         Y-Short         Off
+	 45:  YDual XDual                 X-Short On
+	 46:  YDual XDual                 X-Short Off
+	 47:  YDual XDual         Y-Short X-Short Off
+	 48:                              X-Short On
+	 49:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   494,   279)  ->  Abs (   494,   279)
+	  1: Rel (    -8,    -3)  ->  Abs (   486,   276)
+	  2: Rel (   -13,     0)  ->  Abs (   473,   276)
+	  3: Rel (  -124,     0)  ->  Abs (   349,   276)
+	  4: Rel (  -154,   124)  ->  Abs (   195,   400)
+	  5: Rel (     0,   102)  ->  Abs (   195,   502)
+	  6: Rel (     0,   131)  ->  Abs (   195,   633)
+	  7: Rel (   225,   192)  ->  Abs (   420,   825)
+	  8: Rel (   149,     0)  ->  Abs (   569,   825)
+	  9: Rel (   136,     0)  ->  Abs (   705,   825)
+	 10: Rel (   159,  -139)  ->  Abs (   864,   686)
+	 11: Rel (     0,  -123)  ->  Abs (   864,   563)
+	 12: Rel (     0,  -157)  ->  Abs (   864,   406)
+	 13: Rel (  -196,  -238)  ->  Abs (   668,   168)
+	 14: Rel (  -205,  -109)  ->  Abs (   463,    59)
+	 15: Rel (  -144,   -77)  ->  Abs (   319,   -18)
+	 16: Rel (  -122,   -99)  ->  Abs (   197,  -117)
+	 17: Rel (     0,   -55)  ->  Abs (   197,  -172)
+	 18: Rel (     0,  -123)  ->  Abs (   197,  -295)
+	 19: Rel (   219,     0)  ->  Abs (   416,  -295)
+	 20: Rel (    52,     0)  ->  Abs (   468,  -295)
+	 21: Rel (   111,    28)  ->  Abs (   579,  -267)
+	 22: Rel (    74,    49)  ->  Abs (   653,  -218)
+	 23: Rel (    54,    36)  ->  Abs (   707,  -182)
+	 24: Rel (    26,     0)  ->  Abs (   733,  -182)
+	 25: Rel (    34,     0)  ->  Abs (   767,  -182)
+	 26: Rel (    40,   -46)  ->  Abs (   807,  -228)
+	 27: Rel (     0,   -36)  ->  Abs (   807,  -264)
+	 28: Rel (     0,   -73)  ->  Abs (   807,  -337)
+	 29: Rel (  -234,  -124)  ->  Abs (   573,  -461)
+	 30: Rel (  -159,     0)  ->  Abs (   414,  -461)
+	 31: Rel (  -187,     0)  ->  Abs (   227,  -461)
+	 32: Rel (  -217,   158)  ->  Abs (    10,  -303)
+	 33: Rel (     0,   131)  ->  Abs (    10,  -172)
+	 34: Rel (     0,   108)  ->  Abs (    10,   -64)
+	 35: Rel (   148,   144)  ->  Abs (   158,    80)
+	 36: Rel (   198,   110)  ->  Abs (   356,   190)
+	 37: Rel (   109,    62)  ->  Abs (   465,   252)
+	 38: Rel (   209,   317)  ->  Abs (   674,   569)
+	 39: Rel (     0,    95)  ->  Abs (   674,   664)
+	 40: Rel (  -113,     0)  ->  Abs (   561,   664)
+	 41: Rel (   -71,     0)  ->  Abs (   490,   664)
+	 42: Rel (  -105,   -95)  ->  Abs (   385,   569)
+	 43: Rel (     0,   -47)  ->  Abs (   385,   522)
+	 44: Rel (     0,   -88)  ->  Abs (   385,   434)
+	 45: Rel (   119,     0)  ->  Abs (   504,   434)
+	 46: Rel (    66,     0)  ->  Abs (   570,   434)
+	 47: Rel (   104,    93)  ->  Abs (   674,   527)
+	 48: Rel (  -187,   573)  ->  Abs (   487,  1100)
+	 49: Rel (   369, -1706)  ->  Abs (   856,  -606)
+
+	Glyph 103: off = 0x000048D8, len = 58
+	  numberOfContours:	1
+	  xMin:			238
+	  yMin:			0
+	  xMax:			442
+	  yMax:			205
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	14
+	00000: PUSHB[6]              3   231     9     6   247     0 
+	00007: MDAP[rd]   
+	00008: MIRP[nrp0,md,rd,1] 
+	00009: SVTCA[y-axis] 
+	00010: MDAP[rd]   
+	00011: MIRP[nrp0,md,rd,1] 
+	00012: IUP[y]     
+	00013: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   238,    94)  ->  Abs (   238,    94)
+	  1: Rel (     0,    39)  ->  Abs (   238,   133)
+	  2: Rel (    67,    72)  ->  Abs (   305,   205)
+	  3: Rel (    39,     0)  ->  Abs (   344,   205)
+	  4: Rel (    45,     0)  ->  Abs (   389,   205)
+	  5: Rel (    53,   -54)  ->  Abs (   442,   151)
+	  6: Rel (     0,   -45)  ->  Abs (   442,   106)
+	  7: Rel (     0,   -41)  ->  Abs (   442,    65)
+	  8: Rel (   -64,   -65)  ->  Abs (   378,     0)
+	  9: Rel (   -40,     0)  ->  Abs (   338,     0)
+	 10: Rel (   -46,     0)  ->  Abs (   292,     0)
+	 11: Rel (   -54,    52)  ->  Abs (   238,    52)
+
+	Glyph 104: off = 0x00004912, len = 58
+	  numberOfContours:	1
+	  xMin:			238
+	  yMin:			0
+	  xMax:			442
+	  yMax:			205
+
+	EndPoints
+	---------
+	  0:  11
+
+	  Length of Instructions:	14
+	00000: PUSHB[6]              3   231     9     6   247     0 
+	00007: MDAP[rd]   
+	00008: MIRP[nrp0,md,rd,1] 
+	00009: SVTCA[y-axis] 
+	00010: MDAP[rd]   
+	00011: MIRP[nrp0,md,rd,1] 
+	00012: IUP[y]     
+	00013: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   238,    94)  ->  Abs (   238,    94)
+	  1: Rel (     0,    39)  ->  Abs (   238,   133)
+	  2: Rel (    67,    72)  ->  Abs (   305,   205)
+	  3: Rel (    39,     0)  ->  Abs (   344,   205)
+	  4: Rel (    45,     0)  ->  Abs (   389,   205)
+	  5: Rel (    53,   -54)  ->  Abs (   442,   151)
+	  6: Rel (     0,   -45)  ->  Abs (   442,   106)
+	  7: Rel (     0,   -41)  ->  Abs (   442,    65)
+	  8: Rel (   -64,   -65)  ->  Abs (   378,     0)
+	  9: Rel (   -40,     0)  ->  Abs (   338,     0)
+	 10: Rel (   -46,     0)  ->  Abs (   292,     0)
+	 11: Rel (   -54,    52)  ->  Abs (   238,    52)
+
+	Glyph 105: off = 0x0000494C, len = 104
+	  numberOfContours:	2
+	  xMin:			74
+	  yMin:			0
+	  xMax:			606
+	  yMax:			205
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+
+	  Length of Instructions:	28
+	00000: NPUSHB      (13):    21    15     3   231     9    18   247    64    12   128 
+	                             6   247     0 
+	00015: MDAP[rd]   
+	00016: MIRP[nrp0,md,rd,1] 
+	00017: SMD        
+	00018: MDRP[srp0,md,rd,0] 
+	00019: SMD        
+	00020: MIRP[nrp0,md,rd,1] 
+	00021: SVTCA[y-axis] 
+	00022: MDAP[rd]   
+	00023: MIRP[nrp0,md,rd,1] 
+	00024: IP         
+	00025: IP         
+	00026: IUP[y]     
+	00027: IUP[x]     
+
+	Flags
+	-----
+	  0:  YDual XDual         Y-Short X-Short On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:  YDual               Y-Short         On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (    74,    94)  ->  Abs (    74,    94)
+	  1: Rel (     0,    39)  ->  Abs (    74,   133)
+	  2: Rel (    67,    72)  ->  Abs (   141,   205)
+	  3: Rel (    39,     0)  ->  Abs (   180,   205)
+	  4: Rel (    45,     0)  ->  Abs (   225,   205)
+	  5: Rel (    54,   -54)  ->  Abs (   279,   151)
+	  6: Rel (     0,   -45)  ->  Abs (   279,   106)
+	  7: Rel (     0,   -41)  ->  Abs (   279,    65)
+	  8: Rel (   -65,   -65)  ->  Abs (   214,     0)
+	  9: Rel (   -40,     0)  ->  Abs (   174,     0)
+	 10: Rel (   -46,     0)  ->  Abs (   128,     0)
+	 11: Rel (   -54,    52)  ->  Abs (    74,    52)
+	 12: Rel (   327,    42)  ->  Abs (   401,    94)
+	 13: Rel (     0,    39)  ->  Abs (   401,   133)
+	 14: Rel (    68,    72)  ->  Abs (   469,   205)
+	 15: Rel (    39,     0)  ->  Abs (   508,   205)
+	 16: Rel (    45,     0)  ->  Abs (   553,   205)
+	 17: Rel (    53,   -54)  ->  Abs (   606,   151)
+	 18: Rel (     0,   -45)  ->  Abs (   606,   106)
+	 19: Rel (     0,   -41)  ->  Abs (   606,    65)
+	 20: Rel (   -64,   -65)  ->  Abs (   542,     0)
+	 21: Rel (   -40,     0)  ->  Abs (   502,     0)
+	 22: Rel (   -46,     0)  ->  Abs (   456,     0)
+	 23: Rel (   -55,    52)  ->  Abs (   401,    52)
+
+	Glyph 106: off = 0x000049B4, len = 158
+	  numberOfContours:	3
+	  xMin:			33
+	  yMin:			0
+	  xMax:			647
+	  yMax:			465
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+	  2:  35
+
+	  Length of Instructions:	50
+	00000: NPUSHB      (29):     3   231   159     9   175     9     2    48     9    64 
+	                             9     2     9    33    27    15   231    21     6   247 
+	                             0     0    12    30   247    24    18   247    12 
+	00031: MDAP[rd]   
+	00032: MIRP[nrp0,md,rd,1] 
+	00033: MDRP[srp0,nmd,rd,0] 
+	00034: MIRP[nrp0,md,rd,1] 
+	00035: SRP2       
+	00036: IP         
+	00037: MDAP[rd]   
+	00038: MIRP[nrp0,md,rd,1] 
+	00039: SVTCA[y-axis] 
+	00040: MDAP[rd]   
+	00041: MIRP[nrp0,md,rd,1] 
+	00042: IP         
+	00043: IP         
+	00044: MDAP[rd]   
+	00045: DELTAP1    
+	00046: DELTAP1    
+	00047: MIRP[nrp0,md,rd,1] 
+	00048: IUP[y]     
+	00049: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual         Y-Short         Off
+	  2:  YDual XDual         Y-Short X-Short Off
+	  3:  YDual XDual                 X-Short On
+	  4:  YDual XDual                 X-Short Off
+	  5:        XDual         Y-Short X-Short Off
+	  6:        XDual         Y-Short         On
+	  7:        XDual         Y-Short         Off
+	  8:                      Y-Short X-Short Off
+	  9:  YDual                       X-Short On
+	 10:  YDual                       X-Short Off
+	 11:  YDual               Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual XDual         Y-Short         Off
+	 14:  YDual XDual         Y-Short X-Short Off
+	 15:  YDual XDual                 X-Short On
+	 16:  YDual XDual                 X-Short Off
+	 17:        XDual         Y-Short X-Short Off
+	 18:        XDual         Y-Short         On
+	 19:        XDual         Y-Short         Off
+	 20:                      Y-Short X-Short Off
+	 21:  YDual                       X-Short On
+	 22:  YDual                       X-Short Off
+	 23:  YDual               Y-Short X-Short Off
+	 24:  YDual               Y-Short         On
+	 25:  YDual XDual         Y-Short         Off
+	 26:  YDual XDual         Y-Short X-Short Off
+	 27:  YDual XDual                 X-Short On
+	 28:  YDual XDual                 X-Short Off
+	 29:        XDual         Y-Short X-Short Off
+	 30:        XDual         Y-Short         On
+	 31:        XDual         Y-Short         Off
+	 32:                      Y-Short X-Short Off
+	 33:  YDual                       X-Short On
+	 34:  YDual                       X-Short Off
+	 35:  YDual               Y-Short X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   260,   354)  ->  Abs (   260,   354)
+	  1: Rel (     0,    39)  ->  Abs (   260,   393)
+	  2: Rel (    68,    72)  ->  Abs (   328,   465)
+	  3: Rel (    39,     0)  ->  Abs (   367,   465)
+	  4: Rel (    44,     0)  ->  Abs (   411,   465)
+	  5: Rel (    54,   -54)  ->  Abs (   465,   411)
+	  6: Rel (     0,   -44)  ->  Abs (   465,   367)
+	  7: Rel (     0,   -41)  ->  Abs (   465,   326)
+	  8: Rel (   -65,   -66)  ->  Abs (   400,   260)
+	  9: Rel (   -40,     0)  ->  Abs (   360,   260)
+	 10: Rel (   -46,     0)  ->  Abs (   314,   260)
+	 11: Rel (   -54,    52)  ->  Abs (   260,   312)
+	 12: Rel (  -227,  -218)  ->  Abs (    33,    94)
+	 13: Rel (     0,    39)  ->  Abs (    33,   133)
+	 14: Rel (    67,    72)  ->  Abs (   100,   205)
+	 15: Rel (    39,     0)  ->  Abs (   139,   205)
+	 16: Rel (    45,     0)  ->  Abs (   184,   205)
+	 17: Rel (    54,   -54)  ->  Abs (   238,   151)
+	 18: Rel (     0,   -45)  ->  Abs (   238,   106)
+	 19: Rel (     0,   -41)  ->  Abs (   238,    65)
+	 20: Rel (   -65,   -65)  ->  Abs (   173,     0)
+	 21: Rel (   -40,     0)  ->  Abs (   133,     0)
+	 22: Rel (   -46,     0)  ->  Abs (    87,     0)
+	 23: Rel (   -54,    52)  ->  Abs (    33,    52)
+	 24: Rel (   409,    42)  ->  Abs (   442,    94)
+	 25: Rel (     0,    39)  ->  Abs (   442,   133)
+	 26: Rel (    68,    72)  ->  Abs (   510,   205)
+	 27: Rel (    39,     0)  ->  Abs (   549,   205)
+	 28: Rel (    45,     0)  ->  Abs (   594,   205)
+	 29: Rel (    53,   -54)  ->  Abs (   647,   151)
+	 30: Rel (     0,   -45)  ->  Abs (   647,   106)
+	 31: Rel (     0,   -41)  ->  Abs (   647,    65)
+	 32: Rel (   -64,   -65)  ->  Abs (   583,     0)
+	 33: Rel (   -40,     0)  ->  Abs (   543,     0)
+	 34: Rel (   -46,     0)  ->  Abs (   497,     0)
+	 35: Rel (   -55,    52)  ->  Abs (   442,    52)
+
+	Glyph 107: off = 0x00004A52, len = 864
+	  numberOfContours:	18
+	  xMin:			119
+	  yMin:			-82
+	  xMax:			1106
+	  yMax:			1309
+
+	EndPoints
+	---------
+	  0:  11
+	  1:  23
+	  2:  35
+	  3:  47
+	  4:  59
+	  5:  71
+	  6:  83
+	  7:  95
+	  8:  107
+	  9:  119
+	 10:  131
+	 11:  143
+	 12:  155
+	 13:  167
+	 14:  179
+	 15:  191
+	 16:  192
+	 17:  193
+
+	  Length of Instructions:	329
+	00000: NPUSHW      (17):    30   257    24    54   257    48    78   257    72    90 
+	                           257    84   114   257   108   138   257 
+	00036: PUSHB[5]            240   132     1   132   162 
+	00042: NPUSHW      (10):   257   156    18   257    12    42   257    36    66   257 
+	00064: PUSHB[5]            240    60     1    60   102 
+	00070: PUSHW[4]            257    96   126   257 
+	00079: PUSHB[5]             63   120     1   120   150 
+	00085: PUSHW[4]            257   144   174   257 
+	00094: PUSHB[3]            168   192     6 
+	00098: PUSHW[1]            257 
+	00101: NPUSHB      (17):    12    24    36    48    60    72    84    96   108   120 
+	                           132   144   156   168    14     0   186 
+	00120: PUSHW[1]            257 
+	00123: PUSHB[5]            193   180   193   192   117 
+	00129: PUSHW[4]            256   111   141   256 
+	00138: PUSHB[5]            255   135     1   135   165 
+	00144: NPUSHW      (28):   256   159   189   256   183   177   256   171   153   256 
+	                           147   129   256   123    81   256    75    57   256    51 
+	                            33   256    27     9   256     3    21   256 
+	00202: PUSHB[5]            255    15     1    15    45 
+	00208: PUSHW[7]            256    39    69   256    63    93   256 
+	00223: NPUSHB      (19):     3    15    27    39    51    63    75   111   123   135 
+	                           147   159   171   183   192   193    16    87   105 
+	00244: PUSHW[2]            256    99 
+	00249: MDAP[rd]   
+	00250: MIRP[nrp0,md,rd,1] 
+	00251: MDRP[srp0,nmd,rd,0] 
+	00252: SLOOP      
+	00253: IP         
+	00254: MIRP[nrp0,md,rd,1] 
+	00255: MDAP[rd]   
+	00256: MIRP[nrp0,md,rd,1] 
+	00257: MDAP[rd]   
+	00258: MIRP[nrp0,md,rd,1] 
+	00259: MDAP[rd]   
+	00260: DELTAP1    
+	00261: MIRP[nrp0,md,rd,1] 
+	00262: MDAP[rd]   
+	00263: MIRP[nrp0,md,rd,1] 
+	00264: MDAP[rd]   
+	00265: MIRP[nrp0,md,rd,1] 
+	00266: MDAP[rd]   
+	00267: MIRP[nrp0,md,rd,1] 
+	00268: MDAP[rd]   
+	00269: MIRP[nrp0,md,rd,1] 
+	00270: MDAP[rd]   
+	00271: MIRP[nrp0,md,rd,1] 
+	00272: MDAP[rd]   
+	00273: MIRP[nrp0,md,rd,1] 
+	00274: MDAP[rd]   
+	00275: MIRP[nrp0,md,rd,1] 
+	00276: MDAP[rd]   
+	00277: MIRP[nrp0,md,rd,1] 
+	00278: MDAP[rd]   
+	00279: MIRP[nrp0,md,rd,1] 
+	00280: MDAP[rd]   
+	00281: DELTAP1    
+	00282: MIRP[nrp0,md,rd,1] 
+	00283: MDAP[rd]   
+	00284: MIRP[nrp0,md,rd,1] 
+	00285: MDAP[rd]   
+	00286: MDAP[rd]   
+	00287: SVTCA[y-axis] 
+	00288: MDAP[rd]   
+	00289: MDRP[nrp0,nmd,rd,2] 
+	00290: MIRP[nrp0,md,rd,1] 
+	00291: MDRP[srp0,nmd,rd,0] 
+	00292: SLOOP      
+	00293: IP         
+	00294: MIRP[srp0,md,rd,1] 
+	00295: MDRP[nrp0,nmd,rd,2] 
+	00296: MDAP[rd]   
+	00297: MIRP[nrp0,md,rd,1] 
+	00298: MDAP[rd]   
+	00299: MIRP[nrp0,md,rd,1] 
+	00300: MDAP[rd]   
+	00301: DELTAP1    
+	00302: MIRP[nrp0,md,rd,1] 
+	00303: MDAP[rd]   
+	00304: MIRP[nrp0,md,rd,1] 
+	00305: MDAP[rd]   
+	00306: DELTAP1    
+	00307: MIRP[nrp0,md,rd,1] 
+	00308: MDAP[rd]   
+	00309: MIRP[nrp0,md,rd,1] 
+	00310: MDAP[rd]   
+	00311: MIRP[nrp0,md,rd,1] 
+	00312: MDAP[rd]   
+	00313: MIRP[nrp0,md,rd,1] 
+	00314: MDAP[rd]   
+	00315: DELTAP1    
+	00316: MIRP[nrp0,md,rd,1] 
+	00317: MDAP[rd]   
+	00318: MIRP[nrp0,md,rd,1] 
+	00319: MDAP[rd]   
+	00320: MIRP[nrp0,md,rd,1] 
+	00321: MDAP[rd]   
+	00322: MIRP[nrp0,md,rd,1] 
+	00323: MDAP[rd]   
+	00324: MIRP[nrp0,md,rd,1] 
+	00325: MDAP[rd]   
+	00326: MIRP[nrp0,md,rd,1] 
+	00327: IUP[y]     
+	00328: IUP[x]     
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual                       X-Short Off
+	  2:  YDual               Y-Short X-Short Off
+	  3:  YDual XDual         Y-Short         On
+	  4:  YDual XDual         Y-Short         Off
+	  5:  YDual XDual         Y-Short X-Short Off
+	  6:  YDual XDual                 X-Short On
+	  7:  YDual XDual                 X-Short Off
+	  8:        XDual         Y-Short X-Short Off
+	  9:        XDual         Y-Short         On
+	 10:        XDual         Y-Short         Off
+	 11:                      Y-Short X-Short Off
+	 12:                      Y-Short X-Short On
+	 13:  YDual                       X-Short Off
+	 14:  YDual               Y-Short X-Short Off
+	 15:  YDual XDual         Y-Short         On
+	 16:  YDual XDual         Y-Short         Off
+	 17:  YDual XDual         Y-Short X-Short Off
+	 18:  YDual XDual                 X-Short On
+	 19:  YDual XDual                 X-Short Off
+	 20:        XDual         Y-Short X-Short Off
+	 21:        XDual         Y-Short         On
+	 22:        XDual         Y-Short         Off
+	 23:                      Y-Short X-Short Off
+	 24:                      Y-Short         On
+	 25:  YDual                       X-Short Off
+	 26:  YDual               Y-Short X-Short Off
+	 27:  YDual XDual         Y-Short         On
+	 28:  YDual XDual         Y-Short         Off
+	 29:  YDual XDual         Y-Short X-Short Off
+	 30:  YDual XDual                 X-Short On
+	 31:  YDual XDual                 X-Short Off
+	 32:        XDual         Y-Short X-Short Off
+	 33:        XDual         Y-Short         On
+	 34:        XDual         Y-Short         Off
+	 35:                      Y-Short X-Short Off
+	 36:                      Y-Short         On
+	 37:  YDual                       X-Short Off
+	 38:  YDual               Y-Short X-Short Off
+	 39:  YDual XDual         Y-Short         On
+	 40:  YDual XDual         Y-Short         Off
+	 41:  YDual XDual         Y-Short X-Short Off
+	 42:  YDual XDual                 X-Short On
+	 43:  YDual XDual                 X-Short Off
+	 44:        XDual         Y-Short X-Short Off
+	 45:        XDual         Y-Short         On
+	 46:        XDual         Y-Short         Off
+	 47:                      Y-Short X-Short Off
+	 48:                      Y-Short         On
+	 49:  YDual                       X-Short Off
+	 50:  YDual               Y-Short X-Short Off
+	 51:  YDual XDual         Y-Short         On
+	 52:  YDual XDual         Y-Short         Off
+	 53:  YDual XDual         Y-Short X-Short Off
+	 54:  YDual XDual                 X-Short On
+	 55:  YDual XDual                 X-Short Off
+	 56:        XDual         Y-Short X-Short Off
+	 57:        XDual         Y-Short         On
+	 58:        XDual         Y-Short         Off
+	 59:                      Y-Short X-Short Off
+	 60:                      Y-Short         On
+	 61:  YDual                       X-Short Off
+	 62:  YDual               Y-Short X-Short Off
+	 63:  YDual XDual         Y-Short         On
+	 64:  YDual XDual         Y-Short         Off
+	 65:  YDual XDual         Y-Short X-Short Off
+	 66:  YDual XDual                 X-Short On
+	 67:  YDual XDual                 X-Short Off
+	 68:        XDual         Y-Short X-Short Off
+	 69:        XDual         Y-Short         On
+	 70:        XDual         Y-Short         Off
+	 71:                      Y-Short X-Short Off
+	 72:                      Y-Short         On
+	 73:  YDual                       X-Short Off
+	 74:  YDual               Y-Short X-Short Off
+	 75:  YDual XDual         Y-Short         On
+	 76:  YDual XDual         Y-Short         Off
+	 77:  YDual XDual         Y-Short X-Short Off
+	 78:  YDual XDual                 X-Short On
+	 79:  YDual XDual                 X-Short Off
+	 80:        XDual         Y-Short X-Short Off
+	 81:        XDual         Y-Short         On
+	 82:        XDual         Y-Short         Off
+	 83:                      Y-Short X-Short Off
+	 84:        XDual         Y-Short X-Short On
+	 85:  YDual                       X-Short Off
+	 86:  YDual               Y-Short X-Short Off
+	 87:  YDual XDual         Y-Short         On
+	 88:  YDual XDual         Y-Short         Off
+	 89:  YDual XDual         Y-Short X-Short Off
+	 90:  YDual XDual                 X-Short On
+	 91:  YDual XDual                 X-Short Off
+	 92:        XDual         Y-Short X-Short Off
+	 93:        XDual         Y-Short         On
+	 94:        XDual         Y-Short         Off
+	 95:                      Y-Short X-Short Off
+	 96:  YDual                               On
+	 97:  YDual                       X-Short Off
+	 98:  YDual               Y-Short X-Short Off
+	 99:  YDual XDual         Y-Short         On
+	100:  YDual XDual         Y-Short         Off
+	101:  YDual XDual         Y-Short X-Short Off
+	102:  YDual XDual                 X-Short On
+	103:  YDual XDual                 X-Short Off
+	104:        XDual         Y-Short X-Short Off
+	105:        XDual         Y-Short         On
+	106:        XDual         Y-Short         Off
+	107:                      Y-Short X-Short Off
+	108:                      Y-Short         On
+	109:  YDual                       X-Short Off
+	110:  YDual               Y-Short X-Short Off
+	111:  YDual XDual         Y-Short         On
+	112:  YDual XDual         Y-Short         Off
+	113:  YDual XDual         Y-Short X-Short Off
+	114:  YDual XDual                 X-Short On
+	115:  YDual XDual                 X-Short Off
+	116:        XDual         Y-Short X-Short Off
+	117:        XDual         Y-Short         On
+	118:        XDual         Y-Short         Off
+	119:                      Y-Short X-Short Off
+	120:                      Y-Short         On
+	121:  YDual                       X-Short Off
+	122:  YDual               Y-Short X-Short Off
+	123:  YDual XDual         Y-Short         On
+	124:  YDual XDual         Y-Short         Off
+	125:  YDual XDual         Y-Short X-Short Off
+	126:  YDual XDual                 X-Short On
+	127:  YDual XDual                 X-Short Off
+	128:        XDual         Y-Short X-Short Off
+	129:        XDual         Y-Short         On
+	130:        XDual         Y-Short         Off
+	131:                      Y-Short X-Short Off
+	132:                      Y-Short         On
+	133:  YDual                       X-Short Off
+	134:  YDual               Y-Short X-Short Off
+	135:  YDual XDual         Y-Short         On
+	136:  YDual XDual         Y-Short         Off
+	137:  YDual XDual         Y-Short X-Short Off
+	138:  YDual XDual                 X-Short On
+	139:  YDual XDual                 X-Short Off
+	140:        XDual         Y-Short X-Short Off
+	141:        XDual         Y-Short         On
+	142:        XDual         Y-Short         Off
+	143:                      Y-Short X-Short Off
+	144:                      Y-Short         On
+	145:  YDual                       X-Short Off
+	146:  YDual               Y-Short X-Short Off
+	147:  YDual XDual         Y-Short         On
+	148:  YDual XDual         Y-Short         Off
+	149:  YDual XDual         Y-Short X-Short Off
+	150:  YDual XDual                 X-Short On
+	151:  YDual XDual                 X-Short Off
+	152:        XDual         Y-Short X-Short Off
+	153:        XDual         Y-Short         On
+	154:        XDual         Y-Short         Off
+	155:                      Y-Short X-Short Off
+	156:                      Y-Short         On
+	157:  YDual                       X-Short Off
+	158:  YDual               Y-Short X-Short Off
+	159:  YDual XDual         Y-Short         On
+	160:  YDual XDual         Y-Short         Off
+	161:  YDual XDual         Y-Short X-Short Off
+	162:  YDual XDual                 X-Short On
+	163:  YDual XDual                 X-Short Off
+	164:        XDual         Y-Short X-Short Off
+	165:        XDual         Y-Short         On
+	166:        XDual         Y-Short         Off
+	167:                      Y-Short X-Short Off
+	168:                      Y-Short         On
+	169:  YDual                       X-Short Off
+	170:  YDual               Y-Short X-Short Off
+	171:  YDual XDual         Y-Short         On
+	172:  YDual XDual         Y-Short         Off
+	173:  YDual XDual         Y-Short X-Short Off
+	174:  YDual XDual                 X-Short On
+	175:  YDual XDual                 X-Short Off
+	176:        XDual         Y-Short X-Short Off
+	177:        XDual         Y-Short         On
+	178:        XDual         Y-Short         Off
+	179:                      Y-Short X-Short Off
+	180:        XDual         Y-Short X-Short On
+	181:  YDual                       X-Short Off
+	182:  YDual               Y-Short X-Short Off
+	183:  YDual XDual         Y-Short         On
+	184:  YDual XDual         Y-Short         Off
+	185:  YDual XDual         Y-Short X-Short Off
+	186:  YDual XDual                 X-Short On
+	187:  YDual XDual                 X-Short Off
+	188:        XDual         Y-Short X-Short Off
+	189:        XDual         Y-Short         On
+	190:        XDual         Y-Short         Off
+	191:                      Y-Short X-Short Off
+	192:                              X-Short On
+	193:                                      On
+
+	Coordinates
+	-----------
+	  0: Rel (   614,  1028)  ->  Abs (   614,  1028)
+	  1: Rel (   -12,     0)  ->  Abs (   602,  1028)
+	  2: Rel (   -18,    19)  ->  Abs (   584,  1047)
+	  3: Rel (     0,    12)  ->  Abs (   584,  1059)
+	  4: Rel (     0,    12)  ->  Abs (   584,  1071)
+	  5: Rel (    18,    19)  ->  Abs (   602,  1090)
+	  6: Rel (    12,     0)  ->  Abs (   614,  1090)
+	  7: Rel (    13,     0)  ->  Abs (   627,  1090)
+	  8: Rel (    18,   -19)  ->  Abs (   645,  1071)
+	  9: Rel (     0,   -12)  ->  Abs (   645,  1059)
+	 10: Rel (     0,   -12)  ->  Abs (   645,  1047)
+	 11: Rel (   -18,   -19)  ->  Abs (   627,  1028)
+	 12: Rel (  -197,   -41)  ->  Abs (   430,   987)
+	 13: Rel (   -12,     0)  ->  Abs (   418,   987)
+	 14: Rel (   -19,    19)  ->  Abs (   399,  1006)
+	 15: Rel (     0,    12)  ->  Abs (   399,  1018)
+	 16: Rel (     0,    12)  ->  Abs (   399,  1030)
+	 17: Rel (    19,    19)  ->  Abs (   418,  1049)
+	 18: Rel (    12,     0)  ->  Abs (   430,  1049)
+	 19: Rel (    12,     0)  ->  Abs (   442,  1049)
+	 20: Rel (    19,   -19)  ->  Abs (   461,  1030)
+	 21: Rel (     0,   -12)  ->  Abs (   461,  1018)
+	 22: Rel (     0,   -12)  ->  Abs (   461,  1006)
+	 23: Rel (   -19,   -19)  ->  Abs (   442,   987)
+	 24: Rel (   363,    -4)  ->  Abs (   805,   983)
+	 25: Rel (   -12,     0)  ->  Abs (   793,   983)
+	 26: Rel (   -19,    19)  ->  Abs (   774,  1002)
+	 27: Rel (     0,    12)  ->  Abs (   774,  1014)
+	 28: Rel (     0,    12)  ->  Abs (   774,  1026)
+	 29: Rel (    19,    18)  ->  Abs (   793,  1044)
+	 30: Rel (    12,     0)  ->  Abs (   805,  1044)
+	 31: Rel (    12,     0)  ->  Abs (   817,  1044)
+	 32: Rel (    19,   -18)  ->  Abs (   836,  1026)
+	 33: Rel (     0,   -12)  ->  Abs (   836,  1014)
+	 34: Rel (     0,   -13)  ->  Abs (   836,  1001)
+	 35: Rel (   -19,   -18)  ->  Abs (   817,   983)
+	 36: Rel (  -528,   -96)  ->  Abs (   289,   887)
+	 37: Rel (   -12,     0)  ->  Abs (   277,   887)
+	 38: Rel (   -19,    18)  ->  Abs (   258,   905)
+	 39: Rel (     0,    13)  ->  Abs (   258,   918)
+	 40: Rel (     0,    12)  ->  Abs (   258,   930)
+	 41: Rel (    18,    18)  ->  Abs (   276,   948)
+	 42: Rel (    13,     0)  ->  Abs (   289,   948)
+	 43: Rel (    12,     0)  ->  Abs (   301,   948)
+	 44: Rel (    18,   -18)  ->  Abs (   319,   930)
+	 45: Rel (     0,   -12)  ->  Abs (   319,   918)
+	 46: Rel (     0,   -13)  ->  Abs (   319,   905)
+	 47: Rel (   -18,   -18)  ->  Abs (   301,   887)
+	 48: Rel (   660,   -17)  ->  Abs (   961,   870)
+	 49: Rel (   -13,     0)  ->  Abs (   948,   870)
+	 50: Rel (   -18,    19)  ->  Abs (   930,   889)
+	 51: Rel (     0,    12)  ->  Abs (   930,   901)
+	 52: Rel (     0,    12)  ->  Abs (   930,   913)
+	 53: Rel (    18,    19)  ->  Abs (   948,   932)
+	 54: Rel (    13,     0)  ->  Abs (   961,   932)
+	 55: Rel (    12,     0)  ->  Abs (   973,   932)
+	 56: Rel (    18,   -19)  ->  Abs (   991,   913)
+	 57: Rel (     0,   -12)  ->  Abs (   991,   901)
+	 58: Rel (     0,   -12)  ->  Abs (   991,   889)
+	 59: Rel (   -18,   -19)  ->  Abs (   973,   870)
+	 60: Rel (  -785,  -129)  ->  Abs (   188,   741)
+	 61: Rel (   -12,     0)  ->  Abs (   176,   741)
+	 62: Rel (   -18,    19)  ->  Abs (   158,   760)
+	 63: Rel (     0,    12)  ->  Abs (   158,   772)
+	 64: Rel (     0,    12)  ->  Abs (   158,   784)
+	 65: Rel (    18,    19)  ->  Abs (   176,   803)
+	 66: Rel (    12,     0)  ->  Abs (   188,   803)
+	 67: Rel (    13,     0)  ->  Abs (   201,   803)
+	 68: Rel (    18,   -19)  ->  Abs (   219,   784)
+	 69: Rel (     0,   -12)  ->  Abs (   219,   772)
+	 70: Rel (     0,   -12)  ->  Abs (   219,   760)
+	 71: Rel (   -18,   -19)  ->  Abs (   201,   741)
+	 72: Rel (   850,   -20)  ->  Abs (  1051,   721)
+	 73: Rel (   -13,     0)  ->  Abs (  1038,   721)
+	 74: Rel (   -18,    18)  ->  Abs (  1020,   739)
+	 75: Rel (     0,    13)  ->  Abs (  1020,   752)
+	 76: Rel (     0,    12)  ->  Abs (  1020,   764)
+	 77: Rel (    18,    18)  ->  Abs (  1038,   782)
+	 78: Rel (    13,     0)  ->  Abs (  1051,   782)
+	 79: Rel (    12,     0)  ->  Abs (  1063,   782)
+	 80: Rel (    18,   -18)  ->  Abs (  1081,   764)
+	 81: Rel (     0,   -12)  ->  Abs (  1081,   752)
+	 82: Rel (     0,   -13)  ->  Abs (  1081,   739)
+	 83: Rel (   -18,   -18)  ->  Abs (  1063,   721)
+	 84: Rel (    12,  -158)  ->  Abs (  1075,   563)
+	 85: Rel (   -12,     0)  ->  Abs (  1063,   563)
+	 86: Rel (   -19,    19)  ->  Abs (  1044,   582)
+	 87: Rel (     0,    12)  ->  Abs (  1044,   594)
+	 88: Rel (     0,    12)  ->  Abs (  1044,   606)
+	 89: Rel (    19,    19)  ->  Abs (  1063,   625)
+	 90: Rel (    12,     0)  ->  Abs (  1075,   625)
+	 91: Rel (    12,     0)  ->  Abs (  1087,   625)
+	 92: Rel (    19,   -19)  ->  Abs (  1106,   606)
+	 93: Rel (     0,   -12)  ->  Abs (  1106,   594)
+	 94: Rel (     0,   -12)  ->  Abs (  1106,   582)
+	 95: Rel (   -19,   -19)  ->  Abs (  1087,   563)
+	 96: Rel (  -937,     0)  ->  Abs (   150,   563)
+	 97: Rel (   -13,     0)  ->  Abs (   137,   563)
+	 98: Rel (   -18,    19)  ->  Abs (   119,   582)
+	 99: Rel (     0,    12)  ->  Abs (   119,   594)
+	100: Rel (     0,    12)  ->  Abs (   119,   606)
+	101: Rel (    18,    19)  ->  Abs (   137,   625)
+	102: Rel (    13,     0)  ->  Abs (   150,   625)
+	103: Rel (    12,     0)  ->  Abs (   162,   625)
+	104: Rel (    18,   -19)  ->  Abs (   180,   606)
+	105: Rel (     0,   -12)  ->  Abs (   180,   594)
+	106: Rel (     0,   -12)  ->  Abs (   180,   582)
+	107: Rel (   -18,   -19)  ->  Abs (   162,   563)
+	108: Rel (   878,  -180)  ->  Abs (  1040,   383)
+	109: Rel (   -12,     0)  ->  Abs (  1028,   383)
+	110: Rel (   -18,    18)  ->  Abs (  1010,   401)
+	111: Rel (     0,    13)  ->  Abs (  1010,   414)
+	112: Rel (     0,    12)  ->  Abs (  1010,   426)
+	113: Rel (    18,    18)  ->  Abs (  1028,   444)
+	114: Rel (    12,     0)  ->  Abs (  1040,   444)
+	115: Rel (    13,     0)  ->  Abs (  1053,   444)
+	116: Rel (    18,   -18)  ->  Abs (  1071,   426)
+	117: Rel (     0,   -12)  ->  Abs (  1071,   414)
+	118: Rel (     0,   -13)  ->  Abs (  1071,   401)
+	119: Rel (   -18,   -18)  ->  Abs (  1053,   383)
+	120: Rel (  -856,   -16)  ->  Abs (   197,   367)
+	121: Rel (   -13,     0)  ->  Abs (   184,   367)
+	122: Rel (   -18,    18)  ->  Abs (   166,   385)
+	123: Rel (     0,    12)  ->  Abs (   166,   397)
+	124: Rel (     0,    13)  ->  Abs (   166,   410)
+	125: Rel (    18,    18)  ->  Abs (   184,   428)
+	126: Rel (    13,     0)  ->  Abs (   197,   428)
+	127: Rel (    12,     0)  ->  Abs (   209,   428)
+	128: Rel (    18,   -18)  ->  Abs (   227,   410)
+	129: Rel (     0,   -13)  ->  Abs (   227,   397)
+	130: Rel (     0,   -12)  ->  Abs (   227,   385)
+	131: Rel (   -18,   -18)  ->  Abs (   209,   367)
+	132: Rel (   733,  -129)  ->  Abs (   942,   238)
+	133: Rel (   -12,     0)  ->  Abs (   930,   238)
+	134: Rel (   -19,    18)  ->  Abs (   911,   256)
+	135: Rel (     0,    12)  ->  Abs (   911,   268)
+	136: Rel (     0,    13)  ->  Abs (   911,   281)
+	137: Rel (    19,    18)  ->  Abs (   930,   299)
+	138: Rel (    12,     0)  ->  Abs (   942,   299)
+	139: Rel (    12,     0)  ->  Abs (   954,   299)
+	140: Rel (    19,   -18)  ->  Abs (   973,   281)
+	141: Rel (     0,   -13)  ->  Abs (   973,   268)
+	142: Rel (     0,   -12)  ->  Abs (   973,   256)
+	143: Rel (   -19,   -18)  ->  Abs (   954,   238)
+	144: Rel (  -649,   -19)  ->  Abs (   305,   219)
+	145: Rel (   -12,     0)  ->  Abs (   293,   219)
+	146: Rel (   -19,    19)  ->  Abs (   274,   238)
+	147: Rel (     0,    12)  ->  Abs (   274,   250)
+	148: Rel (     0,    12)  ->  Abs (   274,   262)
+	149: Rel (    19,    19)  ->  Abs (   293,   281)
+	150: Rel (    12,     0)  ->  Abs (   305,   281)
+	151: Rel (    12,     0)  ->  Abs (   317,   281)
+	152: Rel (    19,   -19)  ->  Abs (   336,   262)
+	153: Rel (     0,   -12)  ->  Abs (   336,   250)
+	154: Rel (     0,   -12)  ->  Abs (   336,   238)
+	155: Rel (   -19,   -19)  ->  Abs (   317,   219)
+	156: Rel (   482,   -82)  ->  Abs (   799,   137)
+	157: Rel (   -12,     0)  ->  Abs (   787,   137)
+	158: Rel (   -19,    19)  ->  Abs (   768,   156)
+	159: Rel (     0,    12)  ->  Abs (   768,   168)
+	160: Rel (     0,    12)  ->  Abs (   768,   180)
+	161: Rel (    18,    19)  ->  Abs (   786,   199)
+	162: Rel (    13,     0)  ->  Abs (   799,   199)
+	163: Rel (    12,     0)  ->  Abs (   811,   199)
+	164: Rel (    18,   -19)  ->  Abs (   829,   180)
+	165: Rel (     0,   -12)  ->  Abs (   829,   168)
+	166: Rel (     0,   -12)  ->  Abs (   829,   156)
+	167: Rel (   -18,   -19)  ->  Abs (   811,   137)
+	168: Rel (  -360,    -8)  ->  Abs (   451,   129)
+	169: Rel (   -13,     0)  ->  Abs (   438,   129)
+	170: Rel (   -18,    19)  ->  Abs (   420,   148)
+	171: Rel (     0,    12)  ->  Abs (   420,   160)
+	172: Rel (     0,    12)  ->  Abs (   420,   172)
+	173: Rel (    18,    18)  ->  Abs (   438,   190)
+	174: Rel (    13,     0)  ->  Abs (   451,   190)
+	175: Rel (    12,     0)  ->  Abs (   463,   190)
+	176: Rel (    18,   -18)  ->  Abs (   481,   172)
+	177: Rel (     0,   -12)  ->  Abs (   481,   160)
+	178: Rel (     0,   -12)  ->  Abs (   481,   148)
+	179: Rel (   -18,   -19)  ->  Abs (   463,   129)
+	180: Rel (   151,   -29)  ->  Abs (   614,   100)
+	181: Rel (   -12,     0)  ->  Abs (   602,   100)
+	182: Rel (   -18,    19)  ->  Abs (   584,   119)
+	183: Rel (     0,    12)  ->  Abs (   584,   131)
+	184: Rel (     0,    12)  ->  Abs (   584,   143)
+	185: Rel (    18,    19)  ->  Abs (   602,   162)
+	186: Rel (    12,     0)  ->  Abs (   614,   162)
+	187: Rel (    13,     0)  ->  Abs (   627,   162)
+	188: Rel (    18,   -19)  ->  Abs (   645,   143)
+	189: Rel (     0,   -12)  ->  Abs (   645,   131)
+	190: Rel (     0,   -12)  ->  Abs (   645,   119)
+	191: Rel (   -18,   -19)  ->  Abs (   627,   100)
+	192: Rel (   -28,  1209)  ->  Abs (   599,  1309)
+	193: Rel (   325, -1391)  ->  Abs (   924,   -82)
+
+	Glyph 108: off = 0x00004DB2, len = 536
+	  numberOfContours:	4
+	  xMin:			10
+	  yMin:			-8
+	  xMax:			1647
+	  yMax:			1464
+
+	EndPoints
+	---------
+	  0:  9
+	  1:  25
+	  2:  68
+	  3:  117
+
+	  Length of Instructions:	219
+	00000: NPUSHB      (19):    32    79    48    79     2    74    69    90    69     2 
+	                             5    64     9    13    72     5     5     0    49 
+	00021: PUSHW[1]            -64 
+	00024: NPUSHB     (114):    14    17    72    49    35    26    35    49     3    28 
+	                            32    61     1    61    53   156    67    43   156    47 
+	                            28   143    28     2    28    69   116     0    83    80 
+	                            83     2    83   114   111     0    92    80    92     2 
+	                            92   104    16    16    83    92   104     4    72    10 
+	                            87   255   116   116    72    98   255   111   111     1 
+	                           111    78   236    72     7     8   254     2    26    47 
+	                           254    51    51     2    65    37    41   254    31    65 
+	                            59    55   254     0    65    16    65     2    65    69 
+	                            80   253   143    85     1    85   114    90   253    95 
+	                            85    95    65     3    75   102   253   107    19    23 
+	                           253    12   119    75 
+	00140: MDAP[rd]   
+	00141: SRP0       
+	00142: MDRP[srp0,nmd,rd,2] 
+	00143: MIRP[srp0,md,rd,1] 
+	00144: MDRP[nrp0,nmd,rd,0] 
+	00145: MDRP[srp0,nmd,rd,2] 
+	00146: MIRP[nrp0,md,rd,1] 
+	00147: SRP2       
+	00148: SLOOP      
+	00149: IP         
+	00150: MDAP[rd]   
+	00151: MIRP[nrp0,md,rd,1] 
+	00152: IP         
+	00153: MDAP[rd]   
+	00154: DELTAP1    
+	00155: MIRP[nrp0,md,rd,1] 
+	00156: IP         
+	00157: MDAP[rd]   
+	00158: DELTAP1    
+	00159: MIRP[srp0,md,rd,1] 
+	00160: MDRP[nrp0,nmd,rd,0] 
+	00161: SRP0       
+	00162: MDRP[srp0,nmd,rd,0] 
+	00163: MIRP[srp0,md,rd,1] 
+	00164: MDRP[nrp0,nmd,rd,0] 
+	00165: SRP2       
+	00166: IP         
+	00167: IP         
+	00168: MDAP[rd]   
+	00169: MIRP[nrp0,md,rd,1] 
+	00170: IP         
+	00171: MDAP[rd]   
+	00172: MIRP[srp0,md,rd,1] 
+	00173: MDRP[nrp0,nmd,rd,1] 
+	00174: SVTCA[y-axis] 
+	00175: MDAP[rd]   
+	00176: MIRP[nrp0,md,rd,1] 
+	00177: MDAP[rd]   
+	00178: DELTAP1    
+	00179: MIRP[nrp0,md,rd,1] 
+	00180: SRP2       
+	00181: IP         
+	00182: MDAP[rd]   
+	00183: MIRP[nrp0,md,rd,1] 
+	00184: MDAP[rd]   
+	00185: SRP2       
+	00186: SLOOP      
+	00187: IP         
+	00188: MDAP[rd]   
+	00189: MDAP[rd]   
+	00190: MDAP[rd]   
+	00191: DELTAP1    
+	00192: SRP2       
+	00193: IP         
+	00194: MDAP[rd]   
+	00195: DELTAP1    
+	00196: SRP2       
+	00197: IP         
+	00198: MDAP[rd]   
+	00199: DELTAP1    
+	00200: MIRP[nrp0,md,rd,1] 
+	00201: MDRP[srp0,nmd,rd,0] 
+	00202: MIRP[nrp0,md,rd,1] 
+	00203: MDRP[nrp0,nmd,rd,0] 
+	00204: DELTAP1    
+	00205: SRP1       
+	00206: SLOOP      
+	00207: IP         
+	00208: MDAP[rd]   
+	00209: MDAP[rd]   
+	00210: CALL       
+	00211: MDAP[rd]   
+	00212: IP         
+	00213: MDAP[rd]   
+	00214: CALL       
+	00215: IUP[y]     
+	00216: IUP[x]     
+	00217: DELTAP1    
+	00218: DELTAP1    
+
+	Flags
+	-----
+	  0:                                      On
+	  1:  YDual XDual                 X-Short Off
+	  2:        XDual         Y-Short         On
+	  3:        XDual         Y-Short         Off
+	  4:                      Y-Short X-Short Off
+	  5:  YDual                       X-Short On
+	  6:  YDual                       X-Short Off
+	  7:  YDual XDual         Y-Short         On
+	  8:  YDual XDual         Y-Short X-Short On
+	  9:  YDual XDual         Y-Short         Off
+	 10:                      Y-Short         On
+	 11:  YDual XDual                 X-Short Off
+	 12:        XDual         Y-Short         On
+	 13:        XDual                         Off
+	 14:                              X-Short Off
+	 15:                      Y-Short X-Short Off
+	 16:  YDual                       X-Short On
+	 17:  YDual                       X-Short Off
+	 18:  YDual               Y-Short X-Short Off
+	 19:  YDual XDual         Y-Short         On
+	 20:  YDual XDual         Y-Short         Off
+	 21:  YDual XDual         Y-Short X-Short On
+	 22:  YDual XDual         Y-Short X-Short Off
+	 23:        XDual                         On
+	 24:  YDual XDual         Y-Short         Off
+	 25:  YDual XDual         Y-Short X-Short Off
+	 26:                                      On
+	 27:                      Y-Short X-Short Off
+	 28:  YDual                       X-Short On
+	 29:  YDual                       X-Short Off
+	 30:  YDual               Y-Short X-Short Off
+	 31:  YDual XDual         Y-Short         On
+	 32:  YDual XDual         Y-Short         Off
+	 33:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 35:  YDual XDual                 X-Short On
+	 36:  YDual XDual                 X-Short Off
+	 37:        XDual         Y-Short         On
+	 38:        XDual         Y-Short         Off
+	 39:                      Y-Short X-Short On
+	 40:                      Y-Short X-Short Off
+	 41:        XDual         Y-Short         On
+	 42:        XDual         Y-Short         Off
+	 43:  YDual XDual                 X-Short On
+	 44:  YDual XDual                 X-Short Off
+	 45:  YDual XDual         Y-Short X-Short Off
+	 46:  YDual XDual         Y-Short         Off
+	 47:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 49:  YDual XDual                 X-Short On
+	 50:  YDual XDual                 X-Short Off
+	 51:        XDual         Y-Short         On
+	 52:        XDual         Y-Short         Off
+	 53:  YDual XDual                 X-Short On
+	 54:  YDual XDual                 X-Short Off
+	 55:  YDual XDual         Y-Short         On
+	 56:  YDual XDual         Y-Short         Off
+	 57:  YDual               Y-Short X-Short On
+	 58:  YDual               Y-Short X-Short Off
+	 59:  YDual XDual         Y-Short         On
+	 60:  YDual XDual         Y-Short         Off
+	 61:  YDual XDual                 X-Short On
+	 62:  YDual XDual                 X-Short Off
+	 63:        XDual Rep-  1 Y-Short X-Short Off
+	 65:        XDual         Y-Short         On
+	 66:        XDual         Y-Short         Off
+	 67:  YDual                       X-Short On
+	 68:  YDual                       X-Short Off
+	 69:                                      On
+	 70:              Rep-  1 Y-Short X-Short Off
+	 72:  YDual                       X-Short On
+	 73:  YDual                       X-Short Off
+	 74:  YDual               Y-Short X-Short Off
+	 75:  YDual XDual         Y-Short         On
+	 76:  YDual XDual         Y-Short         Off
+	 77:  YDual XDual         Y-Short X-Short Off
+	 78:  YDual XDual         Y-Short X-Short On
+	 79:  YDual               Y-Short         Off
+	 80:  YDual XDual         Y-Short X-Short On
+	 81:  YDual XDual Rep-  1 Y-Short X-Short Off
+	 83:  YDual XDual                 X-Short On
+	 84:  YDual XDual                 X-Short Off
+	 85:        XDual         Y-Short         On
+	 86:        XDual         Y-Short         Off
+	 87:  YDual XDual                 X-Short On
+	 88:  YDual XDual                 X-Short Off
+	 89:  YDual XDual         Y-Short X-Short Off
+	 90:  YDual XDual         Y-Short         On
+	 91:  YDual XDual         Y-Short         Off
+	 92:  YDual XDual                 X-Short On
+	 93:  YDual XDual                 X-Short Off
+	 94:        XDual         Y-Short X-Short Off
+	 95:        XDual         Y-Short X-Short On
+	 96:        XDual Rep-  1 Y-Short X-Short Off
+	 98:  YDual XDual                 X-Short On
+	 99:  YDual XDual                 X-Short Off
+	100:  YDual XDual         Y-Short X-Short Off
+	101:        XDual                 X-Short Off
+	102:  YDual XDual         Y-Short         On
+	103:  YDual XDual         Y-Short         Off
+	104:  YDual XDual                 X-Short On
+	105:  YDual XDual                 X-Short Off
+	106:        XDual         Y-Short X-Short Off
+	107:        XDual         Y-Short         On
+	108:        XDual         Y-Short         Off
+	109:                              X-Short Off
+	110:                      Y-Short X-Short Off
+	111:  YDual                       X-Short On
+	112:  YDual                       X-Short Off
+	113:  YDual               Y-Short X-Short Off
+	114:  YDual               Y-Short X-Short On
+	115:                      Y-Short X-Short Off
+	116:  YDual                       X-Short On
+	117:  YDual                       X-Short Off
+
+	Coordinates
+	-----------
+	  0: Rel (   834,  1464)  ->  Abs (   834,  1464)
+	  1: Rel (    38,     0)  ->  Abs (   872,  1464)
+	  2: Rel (     0,   -28)  ->  Abs (   872,  1436)
+	  3: Rel (     0,  -190)  ->  Abs (   872,  1246)
+	  4: Rel (   -14,   -91)  ->  Abs (   858,  1155)
+	  5: Rel (   -35,     0)  ->  Abs (   823,  1155)
+	  6: Rel (   -39,     0)  ->  Abs (   784,  1155)
+	  7: Rel (     0,    43)  ->  Abs (   784,  1198)
+	  8: Rel (     9,   211)  ->  Abs (   793,  1409)
+	  9: Rel (     0,    55)  ->  Abs (   793,  1464)
+	 10: Rel (   788,  -190)  ->  Abs (  1581,  1274)
+	 11: Rel (    66,     0)  ->  Abs (  1647,  1274)
+	 12: Rel (     0,   -76)  ->  Abs (  1647,  1198)
+	 13: Rel (     0,  -334)  ->  Abs (  1647,   864)
+	 14: Rel (   -51,  -527)  ->  Abs (  1596,   337)
+	 15: Rel (   -59,   -81)  ->  Abs (  1537,   256)
+	 16: Rel (   -40,     0)  ->  Abs (  1497,   256)
+	 17: Rel (   -30,     0)  ->  Abs (  1467,   256)
+	 18: Rel (   -40,    39)  ->  Abs (  1427,   295)
+	 19: Rel (     0,    27)  ->  Abs (  1427,   322)
+	 20: Rel (     0,    29)  ->  Abs (  1427,   351)
+	 21: Rel (    17,    59)  ->  Abs (  1444,   410)
+	 22: Rel (    53,   191)  ->  Abs (  1497,   601)
+	 23: Rel (     0,   546)  ->  Abs (  1497,  1147)
+	 24: Rel (     0,    55)  ->  Abs (  1497,  1202)
+	 25: Rel (    44,    72)  ->  Abs (  1541,  1274)
+	 26: Rel (  -734,  -428)  ->  Abs (   807,   846)
+	 27: Rel (   -28,   -70)  ->  Abs (   779,   776)
+	 28: Rel (   -74,     0)  ->  Abs (   705,   776)
+	 29: Rel (   -40,     0)  ->  Abs (   665,   776)
+	 30: Rel (   -59,    76)  ->  Abs (   606,   852)
+	 31: Rel (     0,    51)  ->  Abs (   606,   903)
+	 32: Rel (     0,    46)  ->  Abs (   606,   949)
+	 33: Rel (    30,    70)  ->  Abs (   636,  1019)
+	 34: Rel (    24,    30)  ->  Abs (   660,  1049)
+	 35: Rel (    22,     0)  ->  Abs (   682,  1049)
+	 36: Rel (    23,     0)  ->  Abs (   705,  1049)
+	 37: Rel (     0,   -25)  ->  Abs (   705,  1024)
+	 38: Rel (     0,   -16)  ->  Abs (   705,  1008)
+	 39: Rel (   -17,   -29)  ->  Abs (   688,   979)
+	 40: Rel (   -14,   -26)  ->  Abs (   674,   953)
+	 41: Rel (     0,   -40)  ->  Abs (   674,   913)
+	 42: Rel (     0,   -45)  ->  Abs (   674,   868)
+	 43: Rel (    45,     0)  ->  Abs (   719,   868)
+	 44: Rel (    24,     0)  ->  Abs (   743,   868)
+	 45: Rel (    31,    29)  ->  Abs (   774,   897)
+	 46: Rel (     0,    49)  ->  Abs (   774,   946)
+	 47: Rel (     3,    46)  ->  Abs (   777,   992)
+	 48: Rel (    14,    32)  ->  Abs (   791,  1024)
+	 49: Rel (    16,     0)  ->  Abs (   807,  1024)
+	 50: Rel (    33,     0)  ->  Abs (   840,  1024)
+	 51: Rel (     0,   -23)  ->  Abs (   840,  1001)
+	 52: Rel (     0,  -120)  ->  Abs (   840,   881)
+	 53: Rel (    57,     0)  ->  Abs (   897,   881)
+	 54: Rel (    47,     0)  ->  Abs (   944,   881)
+	 55: Rel (     0,    59)  ->  Abs (   944,   940)
+	 56: Rel (     0,    27)  ->  Abs (   944,   967)
+	 57: Rel (   -11,    43)  ->  Abs (   933,  1010)
+	 58: Rel (    -7,    26)  ->  Abs (   926,  1036)
+	 59: Rel (     0,    11)  ->  Abs (   926,  1047)
+	 60: Rel (     0,    30)  ->  Abs (   926,  1077)
+	 61: Rel (    26,     0)  ->  Abs (   952,  1077)
+	 62: Rel (    15,     0)  ->  Abs (   967,  1077)
+	 63: Rel (    14,   -29)  ->  Abs (   981,  1048)
+	 64: Rel (    16,   -85)  ->  Abs (   997,   963)
+	 65: Rel (     0,   -27)  ->  Abs (   997,   936)
+	 66: Rel (     0,  -148)  ->  Abs (   997,   788)
+	 67: Rel (  -106,     0)  ->  Abs (   891,   788)
+	 68: Rel (   -60,     0)  ->  Abs (   831,   788)
+	 69: Rel (  -442,  -622)  ->  Abs (   389,   166)
+	 70: Rel (   -64,   -77)  ->  Abs (   325,    89)
+	 71: Rel (  -182,   -97)  ->  Abs (   143,    -8)
+	 72: Rel (   -69,     0)  ->  Abs (    74,    -8)
+	 73: Rel (   -29,     0)  ->  Abs (    45,    -8)
+	 74: Rel (   -35,    41)  ->  Abs (    10,    33)
+	 75: Rel (     0,    28)  ->  Abs (    10,    61)
+	 76: Rel (     0,    31)  ->  Abs (    10,    92)
+	 77: Rel (    33,    48)  ->  Abs (    43,   140)
+	 78: Rel (    27,     7)  ->  Abs (    70,   147)
+	 79: Rel (   264,    81)  ->  Abs (   334,   228)
+	 80: Rel (    37,   249)  ->  Abs (   371,   477)
+	 81: Rel (     3,    27)  ->  Abs (   374,   504)
+	 82: Rel (    40,    37)  ->  Abs (   414,   541)
+	 83: Rel (    26,     0)  ->  Abs (   440,   541)
+	 84: Rel (    74,     0)  ->  Abs (   514,   541)
+	 85: Rel (     0,   -60)  ->  Abs (   514,   481)
+	 86: Rel (     0,  -200)  ->  Abs (   514,   281)
+	 87: Rel (    92,     0)  ->  Abs (   606,   281)
+	 88: Rel (    57,     0)  ->  Abs (   663,   281)
+	 89: Rel (    72,   164)  ->  Abs (   735,   445)
+	 90: Rel (     0,    98)  ->  Abs (   735,   543)
+	 91: Rel (     0,   106)  ->  Abs (   735,   649)
+	 92: Rel (    72,     0)  ->  Abs (   807,   649)
+	 93: Rel (    41,     0)  ->  Abs (   848,   649)
+	 94: Rel (    28,   -31)  ->  Abs (   876,   618)
+	 95: Rel (     6,   -51)  ->  Abs (   882,   567)
+	 96: Rel (    15,  -157)  ->  Abs (   897,   410)
+	 97: Rel (    55,   -95)  ->  Abs (   952,   315)
+	 98: Rel (    43,     0)  ->  Abs (   995,   315)
+	 99: Rel (    61,     0)  ->  Abs (  1056,   315)
+	100: Rel (    62,    97)  ->  Abs (  1118,   412)
+	101: Rel (    25,   313)  ->  Abs (  1143,   725)
+	102: Rel (     0,   158)  ->  Abs (  1143,   883)
+	103: Rel (     0,    80)  ->  Abs (  1143,   963)
+	104: Rel (    69,     0)  ->  Abs (  1212,   963)
+	105: Rel (    25,     0)  ->  Abs (  1237,   963)
+	106: Rel (    49,   -35)  ->  Abs (  1286,   928)
+	107: Rel (     0,   -27)  ->  Abs (  1286,   901)
+	108: Rel (     0,  -178)  ->  Abs (  1286,   723)
+	109: Rel (   -29,  -414)  ->  Abs (  1257,   309)
+	110: Rel (  -168,  -243)  ->  Abs (  1089,    66)
+	111: Rel (  -116,     0)  ->  Abs (   973,    66)
+	112: Rel (   -70,     0)  ->  Abs (   903,    66)
+	113: Rel (  -111,    94)  ->  Abs (   792,   160)
+	114: Rel (   -20,    78)  ->  Abs (   772,   238)
+	115: Rel (   -73,  -207)  ->  Abs (   699,    31)
+	116: Rel (  -136,     0)  ->  Abs (   563,    31)
+	117: Rel (  -133,     0)  ->  Abs (   430,    31)
+
+	Glyph 109: off = 0x00004FCA, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			25
+	  yMin:			969
+	  xMax:			575
+	  yMax:			1425
+
+	     0: Flags:		0x0006
+		Glyf Index:	91
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 110: off = 0x00004FDA, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			25
+	  yMin:			969
+	  xMax:			862
+	  yMax:			1464
+
+	     0: Flags:		0x0006
+		Glyf Index:	92
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 111: off = 0x00004FEA, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			25
+	  yMin:			-461
+	  xMax:			822
+	  yMax:			-69
+
+	     0: Flags:		0x0006
+		Glyf Index:	93
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 112: off = 0x00004FFA, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			14
+	  yMin:			-517
+	  xMax:			1024
+	  yMax:			-111
+
+	     0: Flags:		0x0006
+		Glyf Index:	94
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 113: off = 0x0000500A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			25
+	  yMin:			969
+	  xMax:			502
+	  yMax:			1464
+
+	     0: Flags:		0x0006
+		Glyf Index:	95
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 114: off = 0x0000501A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			25
+	  yMin:			969
+	  xMax:			993
+	  yMax:			1464
+
+	     0: Flags:		0x0006
+		Glyf Index:	96
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 115: off = 0x0000502A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			23
+	  yMin:			969
+	  xMax:			500
+	  yMax:			1464
+
+	     0: Flags:		0x0006
+		Glyf Index:	97
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 116: off = 0x0000503A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			23
+	  yMin:			969
+	  xMax:			991
+	  yMax:			1464
+
+	     0: Flags:		0x0006
+		Glyf Index:	98
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 117: off = 0x0000504A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			25
+	  yMin:			969
+	  xMax:			909
+	  yMax:			1464
+
+	     0: Flags:		0x0006
+		Glyf Index:	99
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 118: off = 0x0000505A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			37
+	  yMin:			969
+	  xMax:			971
+	  yMax:			1792
+
+	     0: Flags:		0x0006
+		Glyf Index:	100
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
+	Glyph 119: off = 0x0000506A, len = 16
+	  numberOfContours:	-1  (Composite)
+	  xMin:			37
+	  yMin:			969
+	  xMax:			598
+	  yMax:			1464
+
+	     0: Flags:		0x0006
+		Glyf Index:	101
+		X BOffset:	0
+		Y BOffset:	0
+		Other:		Round X,Y to Grid            
+
+
diff --git a/lib/unstable/freetype/tt_cmap.li b/lib/unstable/freetype/tt_cmap.li
new file mode 100644
index 0000000..b6fa9b2
--- /dev/null
+++ b/lib/unstable/freetype/tt_cmap.li
@@ -0,0 +1,94 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_CMAP;
+  - comment     :="Character To Glyph Index Mapping Table .";
+  
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Public
+  
+  + header:TT_CMAP_HEADER;
+  
+  + table:MAP_FIXED_ARRAY(TT_CMAP_TABLE);
+  
+  + subtable:FIXED_ARRAY(TT_CMAP_SUBTABLE);
+  
+  - create file:STD_FILE :SELF <-
+  ( + result:SELF;
+    
+    result := SELF.clone;
+    result.make file;
+    result
+  );
+  
+  - make file:STD_FILE <-
+  ( + tmp_header:TT_CMAP_SUBTABLE_HEADER;
+    + cursor:UINTEGER_32;
+    cursor := file.cursor;
+    header := TT_CMAP_HEADER.clone;
+    file.read header;    
+    header.to_big_endian;
+    (header.num_tables > 0).if {
+      table := MAP_FIXED_ARRAY(TT_CMAP_TABLE).create_with_capacity (header.num_tables);
+      file.read table size (TT_CMAP_TABLE.object_size * header.num_tables);
+      subtable := FIXED_ARRAY(TT_CMAP_SUBTABLE).create (header.num_tables);
+      tmp_header := TT_CMAP_SUBTABLE_HEADER.clone;
+      0.to (header.num_tables - 1) do { i:INTEGER;
+	table.item i.to_big_endian;
+	file.set_cursor (cursor + table.item i.offset);
+	file.read tmp_header;
+	tmp_header.to_big_endian;
+	file.set_cursor (cursor + table.item i.offset);
+	(tmp_header.format).when 0 then {
+	  subtable.put (TT_CMAP_SUBTABLE0.create file) to i;
+	}.when 2 then {
+	  subtable.put (TT_CMAP_SUBTABLE2.create file) to i;
+	}.when 4 then {
+	  subtable.put (TT_CMAP_SUBTABLE4.create file) to i;
+	}.when 6 then {
+	  subtable.put (TT_CMAP_SUBTABLE6.create file) to i;
+	};
+      };      
+    };
+  );
+
+  - print <-
+  (
+    "\n********* CMAP TABLE *********\n".print;
+    header.print;
+    0.to (header.num_tables - 1) do { i:INTEGER;
+      "\n  Subtable ".print;
+      (i + 1).print;
+      '.'.print;
+      table.item i.print;
+      subtable.item i.print;
+      '\n'.print;
+    };
+    '\n'.print;
+  );  
+  
+  
+  
+  
+  
+  
+  
+  
diff --git a/lib/unstable/freetype/tt_cmap_header.li b/lib/unstable/freetype/tt_cmap_header.li
new file mode 100644
index 0000000..2c74764
--- /dev/null
+++ b/lib/unstable/freetype/tt_cmap_header.li
@@ -0,0 +1,48 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_CMAP_HEADER;
+  - comment     :="Header Table for CMAP";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Mapping
+  
+  + version:USHORTINT;
+  
+  + num_tables:USHORTINT;
+  
+Section Public
+  
+  - to_big_endian <-
+  (
+    version := PROCESSOR.to_motorola_ushort version;
+    num_tables := PROCESSOR.to_motorola_ushort num_tables;
+  );
+  
+  - print <-
+  (
+    "\n   Version: ".print;
+    (version >> 16).to_hexadecimal.print;
+    '.'.print;
+    (version & 0FFFFh).to_hexadecimal.print;
+    "\n   Num tables: ".print;
+    num_tables.print;
+    '\n'.print;
+  );
diff --git a/lib/unstable/freetype/tt_cmap_subtable.li b/lib/unstable/freetype/tt_cmap_subtable.li
new file mode 100644
index 0000000..8871a23
--- /dev/null
+++ b/lib/unstable/freetype/tt_cmap_subtable.li
@@ -0,0 +1,38 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_CMAP_SUBTABLE;
+  - comment     :="Encoding Table for CMAP";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Public
+  
+  - create file:STD_FILE :SELF <-
+  ( + result:SELF;
+    ? { file != NULL};
+    
+    result := clone;
+    result.make file;
+    result
+  );
+  
+  - make file:STD_FILE <- deferred;
+  
+  - print <- deferred;
diff --git a/lib/unstable/freetype/tt_cmap_subtable0.li b/lib/unstable/freetype/tt_cmap_subtable0.li
new file mode 100644
index 0000000..1dcf76b
--- /dev/null
+++ b/lib/unstable/freetype/tt_cmap_subtable0.li
@@ -0,0 +1,51 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_CMAP_SUBTABLE0;
+  - comment     :="Format 0: Byte encoding table";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent_tt_cmap_subtable:TT_CMAP_SUBTABLE := TT_CMAP_SUBTABLE;
+  
+Section Public
+  
+  + header:TT_CMAP_SUBTABLE_HEADER;
+  
+  + glyph_id_array:FIXED_ARRAY(UINTEGER_16);
+  
+  - make file:STD_FILE <-
+  (
+    header := TT_CMAP_SUBTABLE_HEADER.clone;
+    file.read header;
+    header.to_big_endian;
+    
+    glyph_id_array := FIXED_ARRAY(UINTEGER_16).create_with_capacity 256;
+    file.read glyph_id_array size 256;
+  );
+  
+  - print <-
+  (
+    "\n     Format 0: byte encoding table\n".print;
+    header.print;
+    0.to 255 do { i:INTEGER;
+      "\n      Char ".print;      
+      i.print;
+      " --> Index ".print;
+      glyph_id_array.item i.print;      
+    };
+  );
diff --git a/lib/unstable/freetype/tt_cmap_subtable2.li b/lib/unstable/freetype/tt_cmap_subtable2.li
new file mode 100644
index 0000000..bcd9ae3
--- /dev/null
+++ b/lib/unstable/freetype/tt_cmap_subtable2.li
@@ -0,0 +1,42 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_CMAP_SUBTABLE2;
+  - comment     :="Format 2: High-Byte mapping through table";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent_tt_cmap_subtable:TT_CMAP_SUBTABLE := TT_CMAP_SUBTABLE;
+
+Section Public
+  
+  + header:TT_CMAP_SUBTABLE_HEADER;
+  
+  // JBJB A VOIR CAR POUR CARACTERES KOREENS, CHINOIS ET JAPONAIS...
+  
+  - make file:STD_FILE <-
+  (
+    header := TT_CMAP_SUBTABLE_HEADER.clone;
+    file.read header;
+    header.to_big_endian;
+  );
+  
+  - print <-
+  ( 
+    "\n     Format 2: high-byte mapping through table\n".print;
+    header.print;
+  );
diff --git a/lib/unstable/freetype/tt_cmap_subtable4.li b/lib/unstable/freetype/tt_cmap_subtable4.li
new file mode 100644
index 0000000..6c787a9
--- /dev/null
+++ b/lib/unstable/freetype/tt_cmap_subtable4.li
@@ -0,0 +1,99 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_CMAP_SUBTABLE4;
+  - comment     :="Format 4: Segment mapping to delta values";
+  
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  - comment     :="Microsoft Standard";
+  
+Section Inherit
+
+  - parent_tt_cmap_subtable:TT_CMAP_SUBTABLE := TT_CMAP_SUBTABLE; 
+  
+Section Public
+  
+  + header:TT_CMAP_SUBTABLE4_HEADER;
+  
+  + end_count:FAST_ARRAY(UINTEGER_8);
+  
+  + reserved_pad:UINTEGER_8;
+  
+  + start_count:FAST_ARRAY(UINTEGER_8);
+  
+  + id_delta:FAST_ARRAY(UINTEGER_8);
+  
+  + id_range_offset:FAST_ARRAY(UINTEGER_8);
+  
+  + glyph_id_array:FAST_ARRAY(UINTEGER_8);
+   
+  - make file:STD_FILE <-
+  ( + seg_count:UINTEGER_32;    
+    header := TT_CMAP_SUBTABLE4_HEADER.clone;
+    file.read header;
+    header.to_big_endian;
+    
+    seg_count := header.seg_countx2 / 2;
+    end_count := FAST_ARRAY(UINTEGER_8).create_with_capacity seg_count;
+    file.read end_count size (header.seg_countx2);
+    to_big_endian end_count;
+    
+    file.set_cursor (file.cursor + 2);
+    
+    start_count := FAST_ARRAY(UINTEGER_8).create_with_capacity seg_count;    
+    file.read start_count size (header.seg_countx2);
+    to_big_endian start_count;
+    
+    id_delta := FAST_ARRAY(UINTEGER_8).create_with_capacity seg_count;
+    file.read id_delta size (header.seg_countx2);
+    to_big_endian id_delta;
+    
+    id_range_offset := FAST_ARRAY(UINTEGER_8).create_with_capacity seg_count; 
+    file.read id_range_offset size (header.seg_countx2);
+    to_big_endian id_range_offset;
+    
+    // JBJB A VOIR GLYPDHID_ARRAY (p 40)
+  );
+  
+  - to_big_endian buf:FAST_ARRAY(UINTEGER_8) <-
+  (
+    0.to (buf.upper) do { i:INTEGER;
+      buf.put (PROCESSOR.to_motorola_ushort (buf.item i)) to i;
+    };
+  );
+  
+  - print <-
+  (
+     "\n     Format 4: segment mapping to delta values\n".print;
+    header.print;
+    "\n         End Count: ".print;
+    0.to (header.seg_countx2 / 2 - 1) do { i:INTEGER;
+      end_count.item i.print;      
+    };
+    "\n         Start Count: ".print;
+    0.to (header.seg_countx2 / 2 - 1) do { i:INTEGER;
+      start_count.item i.print;      
+    };
+    "\n         Id_delta: ".print;
+    0.to (header.seg_countx2 / 2 - 1) do { i:INTEGER;
+      id_delta.item i.print;      
+    };
+    "\n         Id_range_offset: ".print;
+    0.to (header.seg_countx2 / 2 - 1) do { i:INTEGER;
+      id_range_offset.item i.print;      
+    };
+  );
+
diff --git a/lib/unstable/freetype/tt_cmap_subtable4_header.li b/lib/unstable/freetype/tt_cmap_subtable4_header.li
new file mode 100644
index 0000000..0ac34ab
--- /dev/null
+++ b/lib/unstable/freetype/tt_cmap_subtable4_header.li
@@ -0,0 +1,71 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_CMAP_SUBTABLE4_HEADER;
+  - comment     :="Header Subtable";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Mapping
+  
+  + format:USHORTINT;
+  
+  + length:USHORTINT;
+  
+  + version:USHORTINT;
+  
+  + seg_countx2:USHORTINT;
+  
+  + search_range:USHORTINT;
+  
+  + entry_selector:USHORTINT;
+  
+  + range_shift:USHORTINT;
+  
+  
+Section Public
+  
+  - to_big_endian <-
+  (
+    format := PROCESSOR.to_motorola_ushort format;
+    length := PROCESSOR.to_motorola_ushort length;
+    version := PROCESSOR.to_motorola_ushort version;
+    seg_countx2 := PROCESSOR.to_motorola_ushort seg_countx2;
+    search_range := PROCESSOR.to_motorola_ushort search_range;
+    entry_selector := PROCESSOR.to_motorola_ushort entry_selector;
+    range_shift := PROCESSOR.to_motorola_ushort range_shift;    
+  );
+  
+  - print <-
+  (
+    "\n   Format:".print;
+    format.print;
+    "\n   length:".print;
+    length.print;
+    "\n   Version:".print;
+    version.print;
+    "\n   Seg Count:".print;
+    seg_countx2.print;
+    "\n   Search Range:".print;
+    search_range.print;
+    "\n   Entry_selector:".print;
+    entry_selector.print;
+    "\n   Range_shift:".print;
+    range_shift.print;
+  );
diff --git a/lib/unstable/freetype/tt_cmap_subtable6.li b/lib/unstable/freetype/tt_cmap_subtable6.li
new file mode 100644
index 0000000..4468017
--- /dev/null
+++ b/lib/unstable/freetype/tt_cmap_subtable6.li
@@ -0,0 +1,59 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_CMAP_SUBTABLE6;
+  - comment     :="Format 6: Trimmed table Mapping";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent_tt_cmap_subtable:TT_CMAP_SUBTABLE := TT_CMAP_SUBTABLE; 
+  
+Section Public
+  
+  + header:TT_CMAP_SUBTABLE6_HEADER;
+  
+  + glyph_id_array:FIXED_ARRAY(USHORTINT);
+  
+  - make file:STD_FILE <-
+  (
+    header := TT_CMAP_SUBTABLE6_HEADER.clone;
+    file.read header;
+    header.to_big_endian;
+    
+    glyph_id_array := FIXED_ARRAY(USHORTINT).create_with_capacity (header.entry_count);
+    file.read glyph_id_array size (header.entry_count * 2);
+    to_big_endian glyph_id_array;    
+  );
+  
+  - to_big_endian buf:FIXED_ARRAY(USHORTINT) <-
+  (
+    0.to (buf.upper) do { i:INTEGER;
+      buf.put (PROCESSOR.to_motorola_ushort (buf.item i)) to i;
+    };
+  );
+  
+  - print <-
+  (
+    "\n     Format 6: trimmed table mapping\n".print;
+    header.print;
+    0.to 255 do { i:INTEGER;
+      "\n      Char ".print;      
+      i.print;
+      " --> Index ".print;
+      glyph_id_array.item i.print;      
+    };
+  );
diff --git a/lib/unstable/freetype/tt_cmap_subtable6_header.li b/lib/unstable/freetype/tt_cmap_subtable6_header.li
new file mode 100644
index 0000000..1c5b132
--- /dev/null
+++ b/lib/unstable/freetype/tt_cmap_subtable6_header.li
@@ -0,0 +1,60 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_CMAP_SUBTABLE6_HEADER;
+  - comment     :="Header Subtable";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Mapping
+  
+  + format:USHORTINT;
+  
+  + length:USHORTINT;
+  
+  + version:USHORTINT;
+  
+  + first_code:USHORTINT;
+  
+  + entry_count:USHORTINT;
+    
+Section Public
+  
+  - to_big_endian <-
+  (
+    format := PROCESSOR.to_motorola_ushort format;
+    length := PROCESSOR.to_motorola_ushort length;
+    version := PROCESSOR.to_motorola_ushort version;
+    first_code := PROCESSOR.to_motorola_ushort first_code;
+    entry_count := PROCESSOR.to_motorola_ushort entry_count;
+  );
+  
+  - print <-
+  (
+    "\n   Format:".print;
+    format.print;
+    "\n   length:".print;
+    length.print;
+    "\n   Version:".print;
+    version.print;
+    "\n   First_code:".print;
+    first_code.print;
+    "\n   Entry count:".print;
+    entry_count.print;
+  );
diff --git a/lib/unstable/freetype/tt_cmap_subtable_header.li b/lib/unstable/freetype/tt_cmap_subtable_header.li
new file mode 100644
index 0000000..a809fb2
--- /dev/null
+++ b/lib/unstable/freetype/tt_cmap_subtable_header.li
@@ -0,0 +1,50 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_CMAP_SUBTABLE_HEADER;
+  - comment     :="Header Subtable";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Mapping
+  
+  + format:USHORTINT;
+  
+  + length:USHORTINT;
+  
+  + version:USHORTINT;
+  
+Section Public
+  
+  - to_big_endian <-
+  (
+    format := PROCESSOR.to_motorola_ushort format;
+    length := PROCESSOR.to_motorola_ushort length;
+    version := PROCESSOR.to_motorola_ushort version;
+  );
+  
+  - print <-
+  (
+    "\n   Format:".print;
+    format.print;
+    "\n   length:".print;
+    length.print;
+    "\n   Version:".print;
+    version.print;
+  );
diff --git a/lib/unstable/freetype/tt_cmap_table.li b/lib/unstable/freetype/tt_cmap_table.li
new file mode 100644
index 0000000..986bbec
--- /dev/null
+++ b/lib/unstable/freetype/tt_cmap_table.li
@@ -0,0 +1,50 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_CMAP_TABLE;
+  - comment     :="Encoding Table for CMAP";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Mapping
+  
+  + platform_id:UINTEGER_8;
+  
+  + encoding_id:UINTEGER_8;
+  
+  + offset:UINTEGER_32;
+  
+Section Public
+  
+  - to_big_endian <-
+  (
+    platform_id := PROCESSOR.to_motorola_ushort platform_id;
+    encoding_id := PROCESSOR.to_motorola_ushort encoding_id;
+    offset := PROCESSOR.to_motorola_uint offset;
+  );
+  
+  - print <-
+  (
+    "\n     Platform id:".print;
+    platform_id.print;
+    "\n     Encoding id:".print;
+    encoding_id.print;
+    "\n     Offset:".print;
+    offset.print;
+  );
diff --git a/lib/unstable/freetype/tt_draw.li b/lib/unstable/freetype/tt_draw.li
new file mode 100644
index 0000000..1acc96d
--- /dev/null
+++ b/lib/unstable/freetype/tt_draw.li
@@ -0,0 +1,447 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_DRAW;
+  
+  - comment     := "Draw TT Font";
+    
+  - bibliography:= "http://IsaacOS.com";
+  - author      := "Benoit Sonntag (bsonntag at loria.fr), Jerome Boutet (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+  
+Section Private  
+  
+  - trace b:BITMAP <-
+  ( + px1,py1,wx1,wy1,wx2,wy2,x,y:INTEGER;
+    + prev_on_curve:BOOLEAN; // TRUE if previous point on curve 
+    + j,start,begin_contour:INTEGER;
+    + count:INTEGER;
+    + n_pts:INTEGER;
+    
+    begin_contour := 0;
+    0.to (n_contour - 1) do { i:INTEGER;
+      start := begin_contour;
+      count := 0;
+      n_pts := -begin_contour + end_contour.item i + 1;
+      { flags.item start.is_curve }.until_do {
+	start := start + 1;
+      };
+      prev_on_curve := TRUE; // on curve
+      j := 1;
+      px1 := pt_glyph.item start.x;
+      py1 := pt_glyph.item start.y;
+      b.move_to (px1,py1);
+      { count <= n_pts}.while_do {
+	x := pt_glyph.item (j + start).x;
+	y := pt_glyph.item (j + start).y;
+	(flags.item (j + start).is_curve).if {	  
+	  // Point is on curve.
+	  prev_on_curve.if {    
+	    // Previous is on curve: we draw a line
+	    b.line_to (x,y);
+	    px1:=x;
+	    py1:=y;
+	    wx1:=x;
+	    wy1:=y;
+	  } else {
+	    // Previous is not on curve
+	    // We draw a bspline
+	    b.spline_w1 (wx1,wy1) w2 (wx2,wy2) to (x,y);
+	    b.move_to (wx1,wy1);
+	    px1 := wx1;
+	    py1 := wy1;	    
+	    b.spline_w1 (wx2,wy2) w2 (x,y) to (x,y);
+	    b.move_to (x,y);
+	    px1 := x;
+	    py1 := y;
+	    prev_on_curve := TRUE;
+	  };	  
+	} else {
+	  // Point is not on curve.
+	  prev_on_curve.if {
+	    // Previous is on curve
+	    // We save the current coordinates
+	    wx1:=px1;
+	    wy1:=py1;
+	    wx2:=x;
+	    wy2:=y;
+	    prev_on_curve := FALSE;
+	  } else {
+	    // Previous is not on curve
+	    // We draw a b-spline
+	    b.spline_w1 (wx1,wy1) w2 (wx2,wy2) to (x,y);
+	    b.move_to (wx1,wy1);
+	    px1:=wx1; py1:=wy1;	    
+	    wx1:=wx2; wy1:=wy2;
+	    wx2:=x;   wy2:=y;
+	  };
+	};
+	j:=(j+1)%n_pts;
+	count := count + 1;
+      };
+      begin_contour := end_contour.item i + 1;
+      //STD_INPUT.read_character;
+    };
+  );
+  
+   - trace_color b:BITMAP <-
+  ( + px1,py1,wx1,wy1,wx2,wy2,x,y:INTEGER;
+    + prev_on_curve:BOOLEAN; // TRUE if previous point on curve 
+    + j,start,begin_contour:INTEGER;
+    + count:INTEGER;
+    + n_pts:INTEGER;
+    
+    begin_contour := 0;
+    0.to (n_contour - 1) do { i:INTEGER;
+      start := begin_contour;
+      count := 0;
+      n_pts := -begin_contour + end_contour.item i + 1;
+      { flags.item start.is_curve }.until_do {
+	start := start + 1;
+      };
+      prev_on_curve := TRUE; // on curve
+      j := 1;
+      px1 := pt_glyph.item start.x;
+      py1 := pt_glyph.item start.y;
+      b.move_to (px1,py1);
+      { count <= n_pts}.while_do {
+	x := pt_glyph.item (j + start).x;
+	y := pt_glyph.item (j + start).y;
+	(flags.item (j + start).is_curve).if {	  
+	  b.rectangle ((x-1),(y-1)) to ((x+1),(y+1)) color (b.green);
+	  b.move_to (px1,py1);
+	  // Point is on curve.
+	  prev_on_curve.if {    
+	    // Previous is on curve: we draw a line
+	    b.color (b.red);
+	    b.line_to (x,y);
+	    px1:=x;
+	    py1:=y;
+	    wx1:=x;
+	    wy1:=y;
+	  } else {
+	    // Previous is not on curve
+	    // We draw a bspline
+	    b.color (b.yellow);
+	    b.spline_w1 (wx1,wy1) w2 (wx2,wy2) to (x,y);
+	    b.move_to (wx1,wy1);
+	    px1 := wx1;
+	    py1 := wy1;	    
+	    b.spline_w1 (wx2,wy2) w2 (x,y) to (x,y);
+	    b.move_to (x,y);
+	    px1 := x;
+	    py1 := y;
+	    prev_on_curve := TRUE;
+	  };	  
+	} else {
+	  b.rectangle ((x-1),(y-1)) to ((x+1),(y+1)) color (b.blue);
+	  b.move_to (px1,py1);
+	  // Point is not on curve.
+	  prev_on_curve.if {
+	    // Previous is on curve
+	    // We save the current coordinates
+	    wx1:=px1;
+	    wy1:=py1;
+	    wx2:=x;
+	    wy2:=y;
+	    prev_on_curve := FALSE;
+	  } else {
+	    // Previous is not on curve
+	    // We draw a b-spline
+	    b.color (b.yellow);
+	    b.spline_w1 (wx1,wy1) w2 (wx2,wy2) to (x,y);
+	    b.move_to (wx1,wy1);
+	    px1:=wx1; py1:=wy1;	    
+	    wx1:=wx2; wy1:=wy2;
+	    wx2:=x;   wy2:=y;
+	  };
+	};
+	j:=(j+1)%n_pts;
+	count := count + 1;
+      };
+      begin_contour := end_contour.item i + 1;
+      //STD_INPUT.read_character;
+    };
+  );
+  
+  - aff_pt_debug (x,y:INTEGER) <-
+  (
+    ' '.print;
+    x.print;
+    '/'.print;
+    y.print;
+  );
+  
+  - aff_line_debug (a,b:INTEGER) <-
+  (
+    "\n---> LINE #".print;
+    a.print;
+    " #".print;
+    b.print;
+  );
+  
+   - aff_bspline_debug (a,b,c,d:INTEGER) <-
+  (
+    "\n---> BSPLINE #".print;
+    a.print;
+    " #".print;
+    b.print;
+    " #".print;
+    c.print;
+    " #".print;
+    d.print;
+  );
+
+  - trace_debug b:BITMAP <-
+  // text
+  ( + px1,py1,wx1,wy1,wx2,wy2,x,y:INTEGER;
+    + w1,w2,c,p:INTEGER;
+    + prev_on_curve:BOOLEAN; // TRUE if previous point on curve 
+    + j,start,begin_contour:INTEGER;
+    + count:INTEGER;
+    + n_pts:INTEGER;
+    
+    begin_contour := 0;
+    0.to (n_contour - 1) do { i:INTEGER;
+      "\n\n#################".print;
+      "\nContour #".print;
+      i.print;
+      start := begin_contour;
+      count := 0;
+      n_pts := - begin_contour + end_contour.item i + 1;
+      "\nNb points: ".print;
+      n_pts.print;
+      { flags.item start.is_curve }.until_do {
+	start := start + 1;
+      };
+      prev_on_curve := TRUE; // on curve
+      j := 1; // JBJB start + 1;
+      "\nFirst_point #".print;
+      start.print;
+      p := start;
+      "\n P = #".print;
+      px1 := pt_glyph.item p.x;
+      py1 := pt_glyph.item p.y;
+      aff_pt_debug (px1,py1);
+      b.move_to (px1,py1);
+      p.print;
+      { count <= n_pts}.while_do {	
+	"\n*****************".print;
+	"\nCurrent #".print;
+	(j + start).print;
+	c := j + start;
+	x := pt_glyph.item c.x;
+	y := pt_glyph.item c.y;
+	"\n C = #".print;
+	c.print;
+	aff_pt_debug (x,y);
+
+	(flags.item c.is_curve).if {
+	  // Point is on curve.
+	  "\n On curve".print;
+	  b.rectangle ((x-1),(y-1)) to ((x+1),(y+1)) color (b.green);
+	  b.move_to (px1,py1);
+	  prev_on_curve.if {    
+	    // Previous is on curve: we draw a line
+	    "\n Prev on curve".print;
+	    aff_line_debug (p,c);
+	    "\n P = #".print;
+	    b.line_to (x,y);
+	    p := c;
+	    px1 := x;
+	    py1 := y;
+	    p.print;
+	    aff_pt_debug (px1,py1);
+	    w1 := c;
+	    wx1:=x;
+	    wy1:=y;
+	    "\nW1 = #".print;
+	    w1.print;
+	    aff_pt_debug (wx1,wy1);
+	  } else {
+	    // Previous is not on curve
+	    // We draw a bspline
+	    "\n Prev not on curve".print;
+	    aff_bspline_debug (p,w1,w2,c);
+	    b.spline_w1 (wx1,wy1) w2 (wx2,wy2) to (x,y);
+	    b.move_to (wx1,wy1);
+	    "\n P = #".print;
+	    p := w1;
+	    px1 := wx1;
+	    py1 := wy1;
+	    p.print;
+	    aff_pt_debug (px1,py1);
+	    aff_bspline_debug (p,w2,c,c);	    
+	    b.spline_w1 (wx2,wy2) w2 (x,y) to (x,y);
+	    b.move_to (x,y);
+	    "\n P = #".print;
+	    p := c;
+	    px1 := x;
+	    py1 := y;
+	    p.print;
+	    aff_pt_debug (px1,py1);
+	    prev_on_curve := TRUE;
+	  };
+	} else {
+	  // Point is not on curve.
+	  "\n Not On curve".print;
+	  b.rectangle ((x-1),(y-1)) to ((x+1),(y+1)) color (b.blue);
+	  b.move_to (px1,py1);
+	  prev_on_curve.if {
+	    // Previous is on curve
+	    // We save the current coordinates
+	    "\n Prev on curve".print;
+	    w1:=p;
+	    wx1 := px1;
+	    wy1 := py1;
+	    "\n W1 = #".print;
+	    w1.print;
+	    aff_pt_debug (wx1,wy1);
+	    w2 := c;
+	    wx2:=x;
+	    wy2:=y;
+	    "\n W2 = #".print;
+	    w2.print;
+	    aff_pt_debug (wx2,wy2);
+	    prev_on_curve := FALSE;
+	  } else {
+	    // Previous is not on curve
+	    // We draw a b-spline
+	    "\n Prev not on curve".print;
+	    aff_bspline_debug (p,w1,w2,c);
+	    b.spline_w1 (wx1,wy1) w2 (wx2,wy2) to (x,y);
+	    b.move_to (wx1,wy1);
+	    "\n P = #".print;
+	    p := w1;
+	    px1 := wx1;
+	    py1 := wy1;
+	    p.print;
+	    aff_pt_debug (px1,py1);
+	    wx1:=wx2; wy1:=wy2;
+	    w1 := w2;
+	    wx2:=x;   wy2:=y;
+	    w2 := c;
+	    "\n W1 = #".print;
+	    w1.print;
+	    aff_pt_debug (wx1,wy1);
+	    "\n W2 = #".print;
+	    w2.print;
+	    aff_pt_debug (wx2,wy2);
+	  };
+	};
+	j:=(j+1)%n_pts;
+	count := count + 1;
+      };
+      begin_contour := end_contour.item i + 1;
+    };
+  );
+  
+Section Public
+  
+  + n_contour:INTEGER;
+  
+  + pt_glyph:FIXED_ARRAY(POINT_INT);
+  
+  + end_contour:FIXED_ARRAY(USHORTINT);
+  
+  + flags:FIXED_ARRAY(TT_FLAG_GLYPH);
+  
+  - make glyph:TT_GLYPH bitmap b:BITMAP <- 
+  ( + n_point:INTEGER;
+    + scale:INTEGER;
+    + xmin,xmax,ymin,ymax:INTEGER;
+    + origx,origy:INTEGER;
+    + start,begin_contour,end:INTEGER;
+    
+    scale := 10;
+    origx := 40;
+    origy := 40;
+    
+    // Read Datas
+
+    n_contour := glyph.header.number_of_contours;
+    end_contour := glyph.end_pts_of_contours;    
+    n_point := end_contour.item (n_contour - 1) + 1;
+    xmin := glyph.header.xmin;    
+    xmax := glyph.header.xmax;
+    ymin := glyph.header.ymin;
+    ymax := glyph.header.ymax;
+    
+    (xmin < 0).if {
+      (origx < xmin.abs).if {
+	origx = xmin.abs / scale + 1;
+      };
+    };
+    
+    (ymin < 0).if {
+      (origy < ymin.abs).if {
+	origy = ymin.abs / scale + 1;
+      };
+    };
+
+    pt_glyph := FIXED_ARRAY(POINT_INT).create n_point;
+    
+    0.to (n_point - 1) do { i:INTEGER;      
+      pt_glyph.put (POINT_INT.create ((glyph.x_coordinate.item i.to_integer / scale + origx),(glyph.y_coordinate.item i.to_integer / scale + origy))) to i;
+    };
+    
+    flags := glyph.flags;
+
+    // Display
+    /*
+    // JBJB Affichage coordonnées
+    begin_contour := 0;
+    0.to (n_contour - 1) do { i:INTEGER;      
+      "\nContour:".print;
+      i.print;
+      ' '.print;
+      begin_contour.print;
+      " to ".print;
+      end_contour.item i.print;
+      '\n'.print;
+      begin_contour.print;
+      ' '.print;
+      (pt_glyph.item begin_contour.x).print;
+      '/'.print;
+      (pt_glyph.item begin_contour.y).print;
+      (flags.item begin_contour.is_curve).if {
+	"  On".print;
+      } else {
+	" Off".print;
+      };
+      (begin_contour + 1).to (end_contour.item i) do { j:INTEGER;	
+	'\n'.print;
+	j.print;
+	' '.print;
+	(pt_glyph.item j.x).print;
+	'/'.print;
+	(pt_glyph.item j.y).print;
+	(flags.item j.is_curve).if {
+	  "  On".print;
+	} else {
+	  " Off".print;
+	};
+      };
+      begin_contour := end_contour.item i + 1;
+    };
+    */
+    trace_debug b;
+    
+    //trace_color b;   
+    
+  );  
diff --git a/lib/unstable/freetype/tt_flag_glyph.li b/lib/unstable/freetype/tt_flag_glyph.li
new file mode 100644
index 0000000..0cf53d4
--- /dev/null
+++ b/lib/unstable/freetype/tt_flag_glyph.li
@@ -0,0 +1,108 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header	
+  
+  + name        := TT_FLAG_GLYPH;
+  - comment     :="Glyph Flag.";
+  
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Private
+  
+  - is_curve:BOOLEAN <-
+  (
+    value & 1 = 1
+  );
+  
+  - is_x_short:BOOLEAN <-
+  (
+    value & 10b > 0
+  );
+  
+  - is_y_short:BOOLEAN <-
+  (
+    value & 100b > 0
+  );
+  
+  - is_repeat:BOOLEAN <-
+  (
+    value & 1000b > 0
+  );
+  
+  - is_x_same:BOOLEAN <-
+  (
+    value & 10000b > 0
+  );
+  
+  - is_y_same:BOOLEAN <-
+  (
+    value & 100000b > 0
+  );
+  
+Section Public
+  
+  + value:UINTEGER_16;
+  
+   - create v:UINTEGER_16 :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make v;
+    result
+  );
+    
+  - make v:UINTEGER_16 <-
+  (
+    value := v;
+  );
+
+  - print <-
+  (
+    is_y_same.if {
+      " YDual".print;
+    } else {
+      "      ".print;
+    };
+    is_x_same.if {
+      " XDual".print;
+    } else {
+      "      ".print;
+    };
+    is_repeat.if {
+      " Rep ".print;
+    } else {
+      "     ".print;
+    };
+    is_y_short.if {
+      " YShort".print;
+    } else {
+      "       ".print;
+    };
+    is_x_short.if {
+      " XShort".print;
+    } else {
+      "       ".print;
+    };
+    is_curve.if {
+      " On".print;
+    } else {
+      " Off".print;
+    };
+  );
+
diff --git a/lib/unstable/freetype/tt_glyph.li b/lib/unstable/freetype/tt_glyph.li
new file mode 100644
index 0000000..88ed6f6
--- /dev/null
+++ b/lib/unstable/freetype/tt_glyph.li
@@ -0,0 +1,245 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header	
+  
+  + name        := TT_GLYPH;
+  - comment     :="Glyph Datas.";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  + header:TT_GLYPH_HEADER;
+    
+  + end_pts_of_contours:FAST_ARRAY(UINTEGER_8);
+  
+  + instruction:FAST_ARRAY(UINTEGER_16);
+  
+  + n_points:UINTEGER_8;
+  
+  + flags:FAST_ARRAY(TT_FLAG_GLYPH);
+  
+  + x_coordinate:FAST_ARRAY(INTEGER_8);
+  
+  + y_coordinate:FAST_ARRAY(INTEGER_8);
+  
+  + with_contour:BOOLEAN;
+  
+  + composite:BOOLEAN;
+  
+  - create_no_contour :SELF <-
+  ( + result:SELF;
+    
+    result := clone;
+    result.make_no_contour;
+    result    
+  );
+  
+  - make_no_contour <-
+  (
+    with_contour := FALSE;
+  );
+  
+  - create file:STD_FILE :SELF <-
+  ( + result:SELF;
+    ? { file != NULL };
+    result := clone;
+    result.make file;
+    result
+  );
+    
+  - make file:STD_FILE <-
+  ( + i:INTEGER;
+    + tmp_flag:TT_FLAG_GLYPH;
+    + v,old:INTEGER_8;
+    + offset,cursor:UINTEGER_32;
+    + tmp_buf_short:FAST_ARRAY(UINTEGER_8);
+    + tmp_buf_small:FAST_ARRAY(UINTEGER_16);
+    + inst_length:UINTEGER_8;
+    with_contour := TRUE;
+    header := TT_GLYPH_HEADER.clone;
+    file.read header;
+    header.to_big_endian;
+    (header.number_of_contours > 0).if {
+      composite := FALSE;
+      end_pts_of_contours := FAST_ARRAY(UINTEGER_8).create_with_capacity (header.number_of_contours);
+      file.read end_pts_of_contours size (header.number_of_contours * 2);
+      to_big_endian end_pts_of_contours;
+      n_points := end_pts_of_contours.item (header.number_of_contours - 1) + 1;
+      
+      tmp_buf_short := FAST_ARRAY(UINTEGER_8).create_with_capacity 1;
+      file.read tmp_buf_short size 2;    
+      inst_length := PROCESSOR.to_motorola_ushort (tmp_buf_short.item 0);
+      
+      instruction := FAST_ARRAY(UINTEGER_16).create_with_capacity inst_length;
+      file.read instruction size inst_length;
+      
+      flags := FAST_ARRAY(TT_FLAG_GLYPH).create n_points;
+      cursor := file.cursor;
+      tmp_buf_small :=  FAST_ARRAY(UINTEGER_16).create_with_capacity n_points;
+      file.read tmp_buf_small size n_points;
+      // There can be less than n_points*2 bytes but it's the max    
+      { i < n_points }.while_do {
+	tmp_flag := TT_FLAG_GLYPH.create (tmp_buf_small.item offset);
+	offset := offset + 1;
+	flags.put tmp_flag to i;
+	i := i + 1;
+	(tmp_flag.is_repeat).if {
+	  // Repeat next byte time
+	  0.to (tmp_buf_small.item offset - 1) do { j:INTEGER;
+	    flags.put tmp_flag to i;
+	    i := i + 1;
+	  };
+	  offset := offset + 1;
+	};
+      };
+      
+      x_coordinate := FAST_ARRAY(INTEGER_8).create n_points;
+      file.set_cursor (cursor + offset);
+      cursor := file.cursor;
+      tmp_buf_small :=  FAST_ARRAY(UINTEGER_16).create_with_capacity (n_points*2);
+      file.read tmp_buf_small size (n_points*2);
+      offset := 0;
+      // There can be less than n_points*2 bytes but it's the max
+      0.to (n_points - 1) do { j:INTEGER;
+	(flags.item j.is_x_short).if { 
+	  // Bit X_Short set: 1 byte long
+	  (flags.item j.is_x_same).if {
+	    // Bit X_Same set: positive
+	    v := old + tmp_buf_small.item offset;  
+	  } else {
+	    v := old - tmp_buf_small.item offset;
+	  };
+	  x_coordinate.put v to j;
+	  old := v;
+	  offset := offset + 1;
+	} else {
+	  // Bit X_Short not set: 2 byte long
+	  (flags.item j.is_x_same).if {
+	    // Bit X_Same set: same coordinate as previous
+	    v := old;
+	  } else {
+	    // Bit X_Same not set: short value for vector
+	    v := old + ((tmp_buf_small.item offset.to_INTEGER_8 << 8) | tmp_buf_small.item (offset + 1));
+	    offset := offset + 2;
+	  };
+	  old := v;
+	  x_coordinate.put v to j;
+	};
+      };
+      
+      y_coordinate := FAST_ARRAY(INTEGER_8).create n_points;
+      file.set_cursor (cursor + offset);
+      cursor := file.cursor;
+      tmp_buf_small :=  FAST_ARRAY(UINTEGER_16).create_with_capacity (n_points*2);
+      file.read tmp_buf_small size (n_points*2);
+      offset := 0;
+      old := 0;
+      // There can be less than n_points*2 bytes but it's the max
+      0.to (n_points - 1) do { j:INTEGER;
+	(flags.item j.is_y_short).if { 
+	  // Bit Y_Short set: 1 byte long
+	  (flags.item j.is_y_same).if {
+	    // Bit Y_Same set: positive
+	    v := old + tmp_buf_small.item offset;
+	  } else {
+	    v := old - tmp_buf_small.item offset;
+	  };
+	  y_coordinate.put v to j;
+	  old := v;
+	  offset := offset + 1;
+	} else {
+	  // Bit Y_Short not set: 2 byte long
+	  (flags.item j.is_y_same).if {
+	    // Bit Y_Same set: same coordinate as previous
+	    v := old;
+	  } else {
+	    // Bit Y_Same not set: short value for vector
+	    //v := (buf.item (offset + 1).to_INTEGER_8 << 8) | buf.item offset;
+	    v := old + ((tmp_buf_small.item offset.to_INTEGER_8 << 8) | tmp_buf_small.item (offset + 1));
+	    offset := offset + 2;
+	  };
+	  old := v;
+	  y_coordinate.put v to j;
+	};
+      };
+      file.set_cursor (cursor + offset);
+    } else {
+      // Composite Glyph
+      composite := TRUE;
+    };      
+  );
+
+  - to_big_endian buf:FAST_ARRAY(UINTEGER_8) <-
+  (
+    0.to (buf.upper) do { i:INTEGER;
+      buf.put (PROCESSOR.to_motorola_ushort (buf.item i)) to i;
+    };
+  );
+  
+  - print <-
+  (        
+    with_contour.if {
+      header.print;
+      composite.if {
+	"\n     Composite Glyph".print;
+      } else {
+	
+	"\n     End pts of contours:".print;      
+	0.to (header.number_of_contours - 1) do { i:INTEGER;
+	  end_pts_of_contours.item i.print;
+	  ' '.print;
+	};
+	
+	"\n     Instruction_length:".print;
+	instruction.count.print;
+	"\n     Instructions:".print;
+	0.to (instruction.upper) do { i:INTEGER;
+	  "0x".print;
+	  instruction.item i.to_hexadecimal.print;
+	  ' '.print;
+	};
+	
+	"\n     Flags:".print;
+	0.to (n_points - 1) do { i:INTEGER;
+	  "\n     (".print;
+	  i.print;
+	  ')'.print;
+	  flags.item i.print;
+	};
+	
+	"\n     Coordinates:".print;
+	0.to (n_points - 1) do { i:INTEGER;
+	  "\n     (".print;
+	  i.print;
+	  ")  ".print;
+	  x_coordinate.item i.print;
+	  '/'.print;
+	  y_coordinate.item i.print;
+	  ' '.print;
+	};
+      };
+    } else {
+      "\n No contour Glyph".print;
+    };
+  );
+
+
+
+
+
diff --git a/lib/unstable/freetype/tt_glyph_header.li b/lib/unstable/freetype/tt_glyph_header.li
new file mode 100644
index 0000000..5109141
--- /dev/null
+++ b/lib/unstable/freetype/tt_glyph_header.li
@@ -0,0 +1,55 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := TT_GLYPH_HEADER;
+  - comment     :=" .";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Mapping
+  
+  + number_of_contours:SHORTINT;
+  + xmin:SHORTINT;
+  + ymin:SHORTINT;
+  + xmax:SHORTINT;
+  + ymax:SHORTINT;
+  
+Section Public  
+  
+  - to_big_endian <-
+  (
+    number_of_contours := PROCESSOR.to_motorola_short number_of_contours;
+    xmin := PROCESSOR.to_motorola_short xmin;
+    ymin := PROCESSOR.to_motorola_short ymin;
+    xmax := PROCESSOR.to_motorola_short xmax;
+    ymax := PROCESSOR.to_motorola_short ymax;
+  );
+   
+  - print <-
+  (
+    "\n     number_of_contours:".print;
+    number_of_contours.print;
+    "\n     xmin:".print;
+    xmin.print;
+    "\n     ymin:".print;
+    ymin.print;
+    "\n     xmax:".print;
+    xmax.print;
+    "\n     ymax:".print;
+    ymax.print;    
+  );
diff --git a/lib/unstable/freetype/tt_glyph_table.li b/lib/unstable/freetype/tt_glyph_table.li
new file mode 100644
index 0000000..0ef7d3c
--- /dev/null
+++ b/lib/unstable/freetype/tt_glyph_table.li
@@ -0,0 +1,65 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_GLYPH_TABLE;
+  - comment     :=" FreeType Glyph Object Type.";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Public
+
+  + glyph:FIXED_ARRAY(TT_GLYPH);
+  
+  - create loca:TT_LOCA my_file file:STD_FILE :SELF <-
+  ( + result:SELF;
+    ? { loca != NULL};
+    ? { file != NULL};
+    result := SELF.clone;
+    result.make loca my_file file;
+    result
+  );
+  
+  - make loca:TT_LOCA my_file file:STD_FILE <-
+  ( + cursor:UINTEGER_32;
+    cursor := file.cursor;
+    glyph := FIXED_ARRAY(TT_GLYPH).create (loca.max_loca - 1);
+    0.to (glyph.upper) do { i:INTEGER;
+      (loca.value (i + 1) - loca.value i > 0).if {
+	file.set_cursor (cursor + loca.value i);
+	glyph.put (TT_GLYPH.create file) to i;
+      } else {
+	// Size = 0
+	glyph.put (TT_GLYPH.create_no_contour) to i;
+      };
+    };
+  );
+
+  - print <-
+  (
+    "\n********* GLYPH TABLE*********\n".print;
+    0.to (glyph.upper) do { i:INTEGER;
+      "\nGlyph #".print;
+      i.print;
+      '\n'.print;
+      glyph.item i.print;
+      '\n'.print;
+    };
+    '\n'.print;
+  );    
+  
diff --git a/lib/unstable/freetype/tt_hdmx.li b/lib/unstable/freetype/tt_hdmx.li
new file mode 100644
index 0000000..4c488b2
--- /dev/null
+++ b/lib/unstable/freetype/tt_hdmx.li
@@ -0,0 +1,72 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_HDMX;
+  - comment     :=" hdmx: Horizontal Devie Metrics .";
+  
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Public
+  
+  + header:TT_HDMX_HEADER;
+  
+  + device_record:FIXED_ARRAY(TT_HDMX_DATA);
+    
+  - create (n:NUMERIC,buf:NATIVE_ARRAY(UINTEGER_16)) :SELF <-
+  // n: number of Glyph
+  ( + result:SELF;
+    
+    result := SELF.clone;
+    result.make (n,buf);
+    result
+  );
+  
+  - make (n:NUMERIC,buf:NATIVE_ARRAY(UINTEGER_16)) <-
+  ( + tmp_data:TT_HDMX_DATA;
+    header := TT_HDMX_HEADER.force_conversion buf;
+    header.to_big_endian;
+    
+    buf := buf + TT_HDMX_HEADER.object_size;
+    device_record := FIXED_ARRAY(TT_HDMX_DATA).create (header.number_device);
+    0.to (header.number_device - 1) do { i:INTEGER;      
+      tmp_data := TT_HDMX_DATA.create (n,buf);
+      device_record.put tmp_data to i;
+      buf := buf + (header.size_record);
+    };
+  );
+  
+  - print <-
+  (
+    "\n********* HDMX TABLE *********\n".print;
+    header.print;
+    0.to (header.number_device - 1) do { i:INTEGER;
+      "\n   ".print;
+      i.print;
+      '\n'.print;
+      device_record.print;
+    };
+    "\n".print;
+  );
+  
+  
+  
+  
+  
+  
diff --git a/lib/unstable/freetype/tt_hdmx_data.li b/lib/unstable/freetype/tt_hdmx_data.li
new file mode 100644
index 0000000..0914706
--- /dev/null
+++ b/lib/unstable/freetype/tt_hdmx_data.li
@@ -0,0 +1,64 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_HDMX_DATA;
+  - comment     :=" hdmx: device records .";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Public
+
+  + pixel_size:UINTEGER_16;
+  
+  + max_width:UINTEGER_16;
+  
+  + widths:NATIVE_ARRAY(UINTEGER_16);
+  
+  + number_glyph:UINTEGER_32;
+  
+  - create (n:NUMERIC,buf:NATIVE_ARRAY(UINTEGER_16)) :SELF <-
+  ( + result:SELF;
+    
+    result := SELF.clone;
+    result.make (n,buf);
+    result       
+  );
+  
+  - make (n:NUMERIC,buf:NATIVE_ARRAY(UINTEGER_16)) <-
+  (
+    pixel_size := buf.item 0;
+    max_width := buf.item 1;
+    number_glyph := n;
+    widths := NATIVE_ARRAY(UINTEGER_16).calloc n;
+    widths := NATIVE_ARRAY(UINTEGER_16).force_conversion (buf + 2);        
+  );
+  
+  - print <-
+  (
+    "\n     Pixel Size:".print;
+    pixel_size.print;
+    "\n     Max Width:".print;
+    max_width.print;
+    "\n     Widths:".print;
+    0.to (number_glyph - 1) do { i:INTEGER;
+      width.item i.print;
+      ' '.print;      
+    };
+    '\n'.print;
+  );
diff --git a/lib/unstable/freetype/tt_hdmx_header.li b/lib/unstable/freetype/tt_hdmx_header.li
new file mode 100644
index 0000000..bbca0cf
--- /dev/null
+++ b/lib/unstable/freetype/tt_hdmx_header.li
@@ -0,0 +1,49 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := TT_HDMX_HEADER;
+  - comment     :="Hdmx header .";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Mapping
+  
+  + version:USHORTINT;
+  
+  + number_device:SHORTINT;
+  
+  + size_record:INTEGER;
+  
+Section Public  
+  
+  - to_big_endian <-
+  (
+    version := PROCESSOR.to_motorola_ushort version;
+    number_device := PROCESSOR.to_motorola_short number_device;
+    size_record := PROCESSOR.to_motorola_int size_record;
+  );
+  
+  - print <-
+  (
+    "\n     Version: ".print;
+    version.print;
+    "\n   Number device: ".print;
+    number_device.print;
+    "\n   Size record: ".print;
+    size_record.print;
+  );
\ No newline at end of file
diff --git a/lib/unstable/freetype/tt_head.li b/lib/unstable/freetype/tt_head.li
new file mode 100644
index 0000000..52a3915
--- /dev/null
+++ b/lib/unstable/freetype/tt_head.li
@@ -0,0 +1,128 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_HEAD;
+  
+  - comment     :="Font header Truetype prototype.";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Mapping
+  
+  + table_version:UINTEGER_32;
+  + font_revision:UINTEGER_32;
+  
+  + checksum_adjust:UINTEGER_32;
+  + magic_number:UINTEGER_32;
+  
+  + flags:UINTEGER_8;
+  + units_per_em:UINTEGER_8;
+  
+  + created:ULONGINT;
+  + modified:ULONGINT;
+    
+  + xmin:INTEGER_8;
+  + ymin:INTEGER_8;
+  + xmax:INTEGER_8;
+  + ymax:INTEGER_8;
+  
+  + mac_style:UINTEGER_8;
+  + lowest_rec_ppem:UINTEGER_8;
+  
+  + font_direction:INTEGER_8;
+  + index_to_loc_format:INTEGER_8;
+  + glyph_data_format:INTEGER_8;
+  
+Section Public
+  
+  - to_big_endian <-
+  (
+    table_version := PROCESSOR.to_motorola_uint table_version;
+    font_revision := PROCESSOR.to_motorola_uint font_revision;
+    
+    checksum_adjust := PROCESSOR.to_motorola_uint checksum_adjust;
+    magic_number := PROCESSOR.to_motorola_uint magic_number;
+    
+    flags := PROCESSOR.to_motorola_ushort flags;
+    units_per_em := PROCESSOR.to_motorola_ushort units_per_em;
+    
+    created := PROCESSOR.to_motorola_ulong created;
+    modified := PROCESSOR.to_motorola_ulong modified;
+    
+    xmin := PROCESSOR.to_motorola_short xmin;
+    ymin := PROCESSOR.to_motorola_short ymin;
+    xmax := PROCESSOR.to_motorola_short xmax;
+    ymax := PROCESSOR.to_motorola_short ymax;
+    
+    mac_style := PROCESSOR.to_motorola_ushort mac_style;
+    lowest_rec_ppem := PROCESSOR.to_motorola_ushort lowest_rec_ppem;
+    
+    font_direction := PROCESSOR.to_motorola_short font_direction;
+    index_to_loc_format := PROCESSOR.to_motorola_short index_to_loc_format;
+    glyph_data_format := PROCESSOR.to_motorola_short glyph_data_format;    
+  );
+  
+  - print <-
+  (
+    "\n********* HEAD TABLE *********\n".print;
+    "\n     table_version:".print;
+    (table_version >> 16).to_hexadecimal.print;
+    '.'.print;
+    (table_version & 0FFFFh).to_hexadecimal.print;
+    "\n     font_revision:".print;
+    (font_revision >> 16).to_hexadecimal.print;
+    '.'.print;
+    (font_revision & 0FFFFh).to_hexadecimal.print;
+    "\n     checksum_adjust: 0x".print;
+    checksum_adjust.to_hexadecimal.print;
+    "\n     magic_number: 0x".print;
+    magic_number.to_hexadecimal.print;    
+
+    "\n     flags: 0x".print;
+    flags.to_hexadecimal.print;
+    "\n     units_per_em:".print;
+    units_per_em.print;
+    
+    "\n     created:".print;
+    created.print;
+    "\n     modified:".print;
+    modified.print;
+    
+    "\n     xmin:".print;
+    xmin.print;
+    "\n     ymin:".print;
+    ymin.print;
+    "\n     xmax:".print;
+    xmax.print;
+    "\n     ymax:".print;
+    ymax.print;
+    
+    "\n     mac_style: 0x".print;
+    mac_style.to_hexadecimal.print;
+    "\n     lowest_rec_ppem:".print;
+    lowest_rec_ppem.print;
+    
+    "\n     font_direction:".print;
+    font_direction.print;
+    "\n     index_to_loc_format:".print;
+    index_to_loc_format.print;
+    "\n     glyph_data_format:".print;
+    glyph_data_format.print;    
+  );
+  
diff --git a/lib/unstable/freetype/tt_hhea.li b/lib/unstable/freetype/tt_hhea.li
new file mode 100644
index 0000000..bf91076
--- /dev/null
+++ b/lib/unstable/freetype/tt_hhea.li
@@ -0,0 +1,101 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_HHEA;
+  
+  - comment     :="Horizontal Header.";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Mapping
+  
+  + version:UINTEGER_32;
+  + ascender:INTEGER_8;
+  + descender:INTEGER_8;
+  + line_gap:INTEGER_8;
+  
+  + advance_width_max:UINTEGER_8;     // advance width maximum
+  
+  + min_left_side_bearing:INTEGER_8; // minimum left-sb
+  + min_right_side_bearing:INTEGER_8;// minimum right-sb
+  + xmax_extent:INTEGER_8;           // xmax extents
+  + caret_slope_rise:INTEGER_8;
+  + caret_slope_run:INTEGER_8;
+  
+  + reserved0:INTEGER_8;
+  + reserved1:INTEGER_8;
+  + reserved2:INTEGER_8;
+  + reserved3:INTEGER_8;
+  + reserved4:INTEGER_8;
+  
+  + metric_data_format:INTEGER_8;
+  
+  + number_of_hmetrics:UINTEGER_8;
+  
+Section Public
+  
+  - to_big_endian <-
+  (
+    version := PROCESSOR.to_motorola_uint version;
+    ascender := PROCESSOR.to_motorola_short ascender;
+    descender := PROCESSOR.to_motorola_short descender;
+    line_gap := PROCESSOR.to_motorola_short line_gap;
+    advance_width_max:= PROCESSOR.to_motorola_ushort advance_width_max;    
+    min_left_side_bearing := PROCESSOR.to_motorola_short min_left_side_bearing;
+    min_right_side_bearing := PROCESSOR.to_motorola_short min_right_side_bearing;
+    xmax_extent := PROCESSOR.to_motorola_short xmax_extent;           
+    caret_slope_rise := PROCESSOR.to_motorola_short caret_slope_rise ;
+    caret_slope_run := PROCESSOR.to_motorola_short caret_slope_run;    
+    metric_data_format := PROCESSOR.to_motorola_short metric_data_format;
+    number_of_hmetrics := PROCESSOR.to_motorola_ushort number_of_hmetrics;
+  );
+  
+  - print <-
+  (
+    "\n********* HEAD TABLE *********\n".print;
+    "\n     version: ".print;
+    (version >> 16).to_hexadecimal.print;
+    '.'.print;
+    (version & 0FFFFh).to_hexadecimal.print;
+    "\n     ascender: ".print;
+    ascender.print;
+    "\n     descender: ".print;
+    descender.print;
+    "\n     line_gap: ".print; 
+    line_gap.print;
+    "\n     advance_width_max: ".print;
+    advance_width_max.print;    
+    "\n     min_left_side_bearing: ".print; 
+    min_left_side_bearing.print;
+    "\n     min_right_side_bearing: ".print;
+    min_right_side_bearing.print;
+    "\n     xmax_extent: ".print;
+    xmax_extent.print;           
+    "\n     caret_slope_rise: ".print;
+    caret_slope_rise.print;
+    "\n     caret_slope_run: ".print;
+    caret_slope_run.print;    
+    "\n     metric_data_format: ".print;
+    metric_data_format .print;
+    "\n     number of Hmetrics: ".print;
+    number_of_hmetrics.print;
+  );
+  
+  
+  
diff --git a/lib/unstable/freetype/tt_hmtx.li b/lib/unstable/freetype/tt_hmtx.li
new file mode 100644
index 0000000..ecee92f
--- /dev/null
+++ b/lib/unstable/freetype/tt_hmtx.li
@@ -0,0 +1,87 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_HMTX;
+  - comment     :=" hmtx: Horizontal Metrics .";
+  
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Public
+  
+  + hmetrics:MAP_NATIVE_ARRAY(TT_HMTX_DATA);
+  + number_of_hmetrics:UINTEGER_8;
+  
+  + left_side_bearing:NATIVE_ARRAY(INTEGER_8);
+  + number_lbs:UINTEGER_8;  
+  
+  - create (nmetrics,nglyph:NUMERIC,buf:NATIVE_ARRAY(UINTEGER_16)) :SELF <-
+  // nmetrics: number of hMetrics (hhea table) 
+  // nglyph: number of glyph (maxp table)
+  ( + result:SELF;
+    
+    result := SELF.clone;
+    result.make (nmetrics,nglyph,buf);
+    result
+  );
+  
+  - make (nmetrics,nglyph:NUMERIC,buf:NATIVE_ARRAY(UINTEGER_16)) <-
+  (
+    number_of_hmetrics := nmetrics;
+    hmetrics := MAP_NATIVE_ARRAY(TT_HMTX_DATA).calloc number_of_hmetrics;
+    hmetrics := MAP_NATIVE_ARRAY(TT_HMTX_DATA).force_conversion buf;
+    0.to (number_of_hmetrics - 1) do { i:INTEGER;
+      hmetrics.item i.to_big_endian;
+    };
+    
+    number_lbs := nglyph - number_of_hmetrics;
+    (number_lbs > 0).if {
+      buf := buf + (TT_HMTX_DATA.object_size * number_of_hmetrics);
+      left_side_bearing := NATIVE_ARRAY(INTEGER_8).calloc number_lbs;
+      left_side_bearing := NATIVE_ARRAY(INTEGER_8).force_conversion buf;
+      0.to (number_lbs - 1) do { i:INTEGER;
+	left_side_bearing.put (PROCESSOR.to_motorola_short (left_side_bearing.item i)) to i;
+      };
+    };
+  );
+    
+  - print <-
+  (
+    "\n********* HMTX TABLE *********\n".print;
+    "HMetrics: ".print;
+    0.to (number_of_hmetrics - 1) do { i:INTEGER;
+      hmetrics.item i.print;
+    };
+    '\n'.print;
+    "Left Side Bearing: ".print;
+    (number_lbs > 0).if {
+      0.to (number_lbs - 1) do { i:INTEGER;
+	left_side_bearing.item i.print;
+      };
+    } else {
+      " None".print;
+    };
+    '\n'.print;
+  );
+  
+  
+  
+  
+  
+  
diff --git a/lib/unstable/freetype/tt_hmtx_data.li b/lib/unstable/freetype/tt_hmtx_data.li
new file mode 100644
index 0000000..2b25abb
--- /dev/null
+++ b/lib/unstable/freetype/tt_hmtx_data.li
@@ -0,0 +1,45 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_HMTX_DATA;
+  - comment     :=" hmtx: Long Horizontal Metrics type .";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Mapping
+  
+  + advance_width:UINTEGER_8;
+  
+  + lsb:INTEGER_8;
+  
+Section Public
+  
+  - to_big_endian <-
+  (
+    advance_width := PROCESSOR.to_motorola_ushort advance_width;
+    lsb := PROCESSOR.to_motorola_short lsb;
+  );
+  
+  - print <-
+  (
+    "\n     Advance width:".print;
+    advance_width.print;
+    " ,    Lsb:".print;
+    lsb.print;
+  );
diff --git a/lib/unstable/freetype/tt_loca.li b/lib/unstable/freetype/tt_loca.li
new file mode 100644
index 0000000..08e56df
--- /dev/null
+++ b/lib/unstable/freetype/tt_loca.li
@@ -0,0 +1,55 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_LOCA;
+  - comment     :=" loca: Index Of Location.";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Public
+  
+  - max_loca:USHORTINT;
+  
+  - create nglyph:NUMERIC my_file f:STD_FILE :SELF<-
+  // nglyph: number of glyph (maxp table)
+  ( + result:SELF;
+    
+    result := clone;
+    result.make nglyph my_file f;
+    result
+  );
+
+  - make nglyph:NUMERIC my_file f:STD_FILE <- deferred;
+  
+  - value index:NUMERIC :UINTEGER <- deferred;
+  
+  - print <-
+  (
+    "\n********* LOCA TABLE *********\n".print;
+    0.to (max_loca - 1) do { i:INTEGER;
+      "\n      [".print;
+      i.print;      
+      "] Ox".print;
+      value i.to_hexadecimal.print;
+    };
+    '\n'.print;
+  );
+  
+  
+  
diff --git a/lib/unstable/freetype/tt_loca_long.li b/lib/unstable/freetype/tt_loca_long.li
new file mode 100644
index 0000000..bd85bd6
--- /dev/null
+++ b/lib/unstable/freetype/tt_loca_long.li
@@ -0,0 +1,46 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_LOCA_LONG;
+  - comment     :=" loca: Index Of Location: long version.";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent_tt_loca:TT_LOCA := TT_LOCA;
+  
+Section Public
+  
+  + table:FIXED_ARRAY(UINTEGER);
+  
+  - make nglyph:NUMERIC my_file f:STD_FILE <-
+  (
+    max_loca := nglyph + 1;
+    table := FIXED_ARRAY(UINTEGER).create_with_capacity max_loca;
+    f.read table size (max_loca * 4);
+    0.to nglyph do { i:INTEGER;
+      table.put (PROCESSOR.to_motorola_uint (table.item i)) to i;
+    };      
+  );
+  
+  - value index:NUMERIC :UINTEGER <-
+  (
+    table.item index
+  );
+  
+  
+  
+  
diff --git a/lib/unstable/freetype/tt_loca_short.li b/lib/unstable/freetype/tt_loca_short.li
new file mode 100644
index 0000000..e8bad7c
--- /dev/null
+++ b/lib/unstable/freetype/tt_loca_short.li
@@ -0,0 +1,60 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_LOCA_SHORT;
+  - comment     :=" loca: Index Of Location: short version.";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent_tt_loca:TT_LOCA := TT_LOCA;
+  
+Section Public
+  
+  + table:FIXED_ARRAY(USHORTINT);
+  
+  - make nglyph:NUMERIC my_file f:STD_FILE <-
+  (
+    max_loca := nglyph + 1;
+    table := FIXED_ARRAY(USHORTINT).create_with_capacity max_loca;
+    f.read table size (max_loca * 2);
+    0.to nglyph do { i:INTEGER;
+      table.put (PROCESSOR.to_motorola_ushort (table.item i)) to i;
+    };      
+  );
+  
+  - value index:NUMERIC :UINTEGER <-
+  (
+    (table.item index) * 2
+  );
+  
+  - print <-
+  (
+    "\n********* LOCA TABLE *********\n".print;
+    0.to (table.upper) do { i:INTEGER;
+      "\n      [".print;
+      i.print;      
+      "] Ox".print;
+      value i.to_hexadecimal.print;
+    };
+    '\n'.print;
+  );
+  
+  
+  
+  
+  
+  
diff --git a/lib/unstable/freetype/tt_maxp.li b/lib/unstable/freetype/tt_maxp.li
new file mode 100644
index 0000000..9deef98
--- /dev/null
+++ b/lib/unstable/freetype/tt_maxp.li
@@ -0,0 +1,99 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_MAXP;
+  - comment     :=" Maxp: maximum profiles.";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Mapping
+  
+  + version:UINTEGER;
+  + num_glyphs:USHORTINT;
+  + max_points:USHORTINT;
+  + max_contours:USHORTINT;
+  + max_composite_points:USHORTINT;
+  + max_composite_contours:USHORTINT;
+  + max_zones:USHORTINT;
+  + max_twilight_points:USHORTINT;
+  + max_storage:USHORTINT;
+  + max_function_defs:USHORTINT;
+  + max_instruction_defs:USHORTINT;
+  + max_stack_elements:USHORTINT;
+  + max_size_of_instructions:USHORTINT;
+  + max_component_elements:USHORTINT;
+  + max_component_depth:USHORTINT;
+  
+Section Public
+  
+  - to_big_endian <-
+  (
+    version := PROCESSOR.to_motorola_uint version;
+    num_glyphs := PROCESSOR.to_motorola_ushort num_glyphs;
+    max_points := PROCESSOR.to_motorola_ushort max_points;
+    max_contours := PROCESSOR.to_motorola_ushort max_contours;
+    max_composite_points := PROCESSOR.to_motorola_ushort max_composite_points;
+    max_composite_contours := PROCESSOR.to_motorola_ushort max_composite_contours;
+    max_zones := PROCESSOR.to_motorola_ushort max_zones;
+    max_twilight_points := PROCESSOR.to_motorola_ushort max_twilight_points;
+    max_storage := PROCESSOR.to_motorola_ushort max_storage;
+    max_function_defs := PROCESSOR.to_motorola_ushort max_function_defs;
+    max_instruction_defs := PROCESSOR.to_motorola_ushort max_instruction_defs;
+    max_stack_elements := PROCESSOR.to_motorola_ushort max_stack_elements;
+    max_size_of_instructions := PROCESSOR.to_motorola_ushort max_size_of_instructions;
+    max_component_elements := PROCESSOR.to_motorola_ushort max_component_elements;
+    max_component_depth := PROCESSOR.to_motorola_ushort max_component_depth; 
+  );
+  
+  - print <-
+  (
+    "\n********* MAXP TABLE *********\n".print;
+    "\n     version:".print;
+    (version >> 16).to_hexadecimal.print;
+    '.'.print;
+    (version & 0FFFFh).to_hexadecimal.print;
+    "\n     num_glyphs:".print;
+    num_glyphs.print;
+    "\n     max_points:".print;
+    max_points.print;
+    "\n     max_contours:".print;
+    max_contours.print;
+    "\n     max_composite_points:".print;
+    max_composite_points.print;
+    "\n     max_composite_contours:".print;
+    max_composite_contours.print;
+    "\n     max_zones:".print;
+    max_zones.print;
+    "\n     max_twilight_points:".print;
+    max_twilight_points.print;
+    "\n     max_storage:".print;
+    max_storage.print;
+    "\n     max_function_defs:".print;
+    max_function_defs.print;
+    "\n     max_instruction_defs:".print;
+    max_instruction_defs.print;
+    "\n     max_stack_elements:".print;
+    max_stack_elements.print;
+    "\n     max_size_of_instructions:".print;
+    max_size_of_instructions.print;
+    "\n     max_component_elements:".print;
+    max_component_elements.print;
+    "\n     max_component_depth:".print; 
+    max_component_depth.print; 
+  );
\ No newline at end of file
diff --git a/lib/unstable/freetype/tt_name.li b/lib/unstable/freetype/tt_name.li
new file mode 100644
index 0000000..4287945
--- /dev/null
+++ b/lib/unstable/freetype/tt_name.li
@@ -0,0 +1,83 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header	
+  
+  + name        := TT_NAME;
+  
+  - comment     :="Naming Table.";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  + header:TT_NAME_HEADER;
+  
+  + record:MAP_FIXED_ARRAY(TT_NAME_RECORD);
+  
+  + data:FIXED_ARRAY(FIXED_ARRAY(UINTEGER_16));
+  
+  - create file:STD_FILE :SELF <-
+  ( + result:SELF;
+    ? { file != NULL };
+    result := clone;
+    result.make file;
+    result
+  );
+  
+  - make file:STD_FILE <-
+  ( + cursor:UINTEGER;
+    + tmp_data:FIXED_ARRAY(UINTEGER_16);
+    cursor := file.cursor;
+    header := TT_NAME_HEADER.clone;
+    file.read header;
+    header.to_big_endian;
+    
+    record := MAP_FIXED_ARRAY(TT_NAME_RECORD).create_with_capacity (header.num_name_records);
+    file.read record size (TT_NAME_RECORD.object_size * header.num_name_records);
+    
+    cursor := cursor + header.storage_offset;
+    data := FIXED_ARRAY(FIXED_ARRAY(UINTEGER_16)).create (header.num_name_records);
+    0.to (header.num_name_records - 1) do { i:INTEGER;
+      // Init of records
+      record.item i.to_big_endian;
+      // Init of datas
+      tmp_data := FIXED_ARRAY(UINTEGER_16).create_with_capacity (record.item i.string_length);
+      file.set_cursor (cursor + record.item i.string_offset);
+      file.read tmp_data size (record.item i.string_length);
+      data.put tmp_data to i;
+    };
+
+  );
+  
+  - print <-
+  (
+    "\n********* NAME TABLE *********\n".print;
+    header.print;
+    0.to (header.num_name_records - 1) do { i:INTEGER;
+      "\n     ".print;
+      i.print;
+      '.'.print;
+      record.item i.print;
+      "\n       Data: ".print;
+      0.to (data.item i.upper) do { j:INTEGER;
+	data.item i.item j.to_character.print;
+      };
+      '\n'.print;
+    };
+    '\n'.print;
+  );
diff --git a/lib/unstable/freetype/tt_name_header.li b/lib/unstable/freetype/tt_name_header.li
new file mode 100644
index 0000000..856bb53
--- /dev/null
+++ b/lib/unstable/freetype/tt_name_header.li
@@ -0,0 +1,47 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := TT_NAME_HEADER;
+  - comment     :=" .";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Mapping
+  
+  + format:USHORTINT;
+  + num_name_records:USHORTINT;
+  + storage_offset:USHORTINT;
+  
+Section Public  
+  
+  - to_big_endian <-
+  (
+    format := PROCESSOR.to_motorola_ushort format;
+    num_name_records := PROCESSOR.to_motorola_ushort num_name_records;
+    storage_offset := PROCESSOR.to_motorola_ushort storage_offset;
+  );
+  
+  - print <-
+  (
+    "\n     Format: ".print;
+    format.print;
+    "\n     Number records: ".print;
+    num_name_records.print;
+    "\n     Storage offset: ".print;
+    storage_offset.print;
+  );
diff --git a/lib/unstable/freetype/tt_name_record.li b/lib/unstable/freetype/tt_name_record.li
new file mode 100644
index 0000000..7eb7723
--- /dev/null
+++ b/lib/unstable/freetype/tt_name_record.li
@@ -0,0 +1,88 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := TT_NAME_RECORD;
+
+  - comment     :="Name record.";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Mapping  
+  
+  + platform_id:USHORTINT;
+  + encoding_id:USHORTINT;
+  + language_id:USHORTINT;
+  + name_id:USHORTINT;
+  + string_length:USHORTINT;
+  + string_offset:USHORTINT;
+  
+Section Public
+  
+  - to_big_endian <-
+  (
+    platform_id := PROCESSOR.to_motorola_ushort platform_id; 
+    encoding_id := PROCESSOR.to_motorola_ushort encoding_id;
+    language_id := PROCESSOR.to_motorola_ushort language_id;
+    name_id := PROCESSOR.to_motorola_ushort name_id;
+    string_length := PROCESSOR.to_motorola_ushort string_length;
+    string_offset := PROCESSOR.to_motorola_ushort string_offset;        
+  );
+  
+  - print <-
+  (
+    "\n       Platform: ".print;
+    platform.print;
+    "\n       Encoding ID: ".print;
+    encoding_id.print;
+    "\n       Language: 0x".print;
+    //language.print;
+    language_id.to_hexadecimal.print;
+    "\n       Name ID: ".print;
+    //name.print;
+    name_id.to_hexadecimal.print;
+    "\n       Str length: ".print;
+    string_length.print;
+    "\n       Str offset: ".print;
+    string_offset.print;    
+  );
+  
+  - platform:STRING_CONSTANT <-
+  ( + result:STRING_CONSTANT;
+    
+    platform_id.when 0 then { result := "0.Apple" }
+    .when 1 then { result := "1.Mac" }
+    .when 2 then { result := "2.Iso" }
+    .when 3 then { result := "3.Microsoft"};
+    
+    result
+  );
+  
+  - language:STRING_CONSTANT <-
+  // JBJB A REMPLIR AVEC DECODAGE
+  ( 
+    "toto"
+  );
+  
+  - name:STRING_CONSTANT <-
+  // JBJB A REMPLIR AVEC DECODAGE
+  (
+    "tata"
+  );
+  
+  
+  
diff --git a/lib/unstable/freetype/tt_os2.li b/lib/unstable/freetype/tt_os2.li
new file mode 100644
index 0000000..818edca
--- /dev/null
+++ b/lib/unstable/freetype/tt_os2.li
@@ -0,0 +1,220 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_OS2;
+  - comment     :=" os2 table .";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Mapping
+  
+  + version:UINTEGER_16;               // 0x0001
+  + x_avg_char_width:INTEGER_8;
+  + weight_class:UINTEGER_16;
+  + width_class:UINTEGER_16;
+  + fs_type:INTEGER_8;
+  
+  + y_subscript_x_size:INTEGER_8;
+  + y_subscript_y_size:INTEGER_8;
+  + y_subscript_x_offset:INTEGER_8;
+  + y_subscript_y_offset:INTEGER_8;
+  + y_superscript_x_size:INTEGER_8;
+  + y_superscript_y_size:INTEGER_8;
+  + y_superscript_x_offset:INTEGER_8;
+  + y_superscript_y_offset:INTEGER_8;
+  + y_strikeout_size:INTEGER_8;
+  + y_strikeout_position:INTEGER_8;
+  
+  + family_class:INTEGER_8;
+  
+  // Panose: 10 bytes
+  + family_type:UINTEGER_16;
+  + serif_style:UINTEGER_16;
+  + weight:UINTEGER_16;
+  + proportion:UINTEGER_16;
+  + contrast:UINTEGER_16;
+  + stroke_variation:UINTEGER_16;
+  + arm_style:UINTEGER_16;
+  + letter_form:UINTEGER_16;
+  + midline:UINTEGER_16;
+  + xheight:UINTEGER_16;
+  
+  + unicode_range1:UINTEGER_32;       // Bits 0-31
+  + unicode_range2:UINTEGER_32;       // Bits 32-63
+  + unicode_range3:UINTEGER_32;       // Bits 64-95
+  + unicode_range4:UINTEGER_32;       // Bits 96-127
+  
+  + ach_vend_id1:INTEGER_16;
+  + ach_vend_id2:INTEGER_16;
+  + ach_vend_id3:INTEGER_16;
+  + ach_vend_id4:INTEGER_16;
+  
+  + fs_selection:UINTEGER_16;
+  + first_char_index:UINTEGER_16;
+  + last_char_index:UINTEGER_16;
+  + typo_ascender:INTEGER_8;
+  + typo_descender:INTEGER_8;
+  + typo_line_gap:INTEGER_8;
+  + win_ascent:UINTEGER_16;
+  + win_descent:UINTEGER_16;
+  
+  // only version 1 tables:
+  
+  + code_page_range1:UINTEGER_32;      // Bits 0-31
+  + code_page_range2:UINTEGER_32;      // Bits 32-63
+  
+Section Public
+  
+  - to_big_endian <-
+  (
+    version := PROCESSOR.to_motorola_ushort version;
+    x_avg_char_width := PROCESSOR.to_motorola_short x_avg_char_width;
+    weight_class := PROCESSOR.to_motorola_ushort weight_class;
+    width_class := PROCESSOR.to_motorola_ushort width_class;
+    fs_type := PROCESSOR.to_motorola_short fs_type;
+    
+    y_subscript_x_size := PROCESSOR.to_motorola_short y_subscript_x_size;
+    y_subscript_y_size := PROCESSOR.to_motorola_short y_subscript_y_size;
+    y_subscript_x_offset := PROCESSOR.to_motorola_short y_subscript_x_offset;
+    y_subscript_y_offset := PROCESSOR.to_motorola_short y_subscript_y_offset;
+    y_superscript_x_size := PROCESSOR.to_motorola_short y_superscript_x_size;
+    y_superscript_y_size := PROCESSOR.to_motorola_short y_superscript_y_size;
+    y_superscript_x_offset := PROCESSOR.to_motorola_short y_superscript_x_offset;
+    y_superscript_y_offset := PROCESSOR.to_motorola_short y_superscript_y_offset;
+    y_strikeout_size := PROCESSOR.to_motorola_short y_strikeout_size;
+    y_strikeout_position := PROCESSOR.to_motorola_short y_strikeout_position;
+    
+    family_class := PROCESSOR.to_motorola_short family_class;
+    
+    unicode_range1 := PROCESSOR.to_motorola_uint unicode_range1;
+    unicode_range2 := PROCESSOR.to_motorola_uint unicode_range2;
+    unicode_range3 := PROCESSOR.to_motorola_uint unicode_range3;
+    unicode_range4 := PROCESSOR.to_motorola_uint unicode_range4;
+    
+    fs_selection := PROCESSOR.to_motorola_ushort fs_selection;
+    first_char_index := PROCESSOR.to_motorola_ushort first_char_index;
+    last_char_index := PROCESSOR.to_motorola_ushort last_char_index;
+    typo_ascender := PROCESSOR.to_motorola_short typo_ascender;
+    typo_descender := PROCESSOR.to_motorola_short typo_descender;
+    typo_line_gap := PROCESSOR.to_motorola_short typo_line_gap;
+    win_ascent := PROCESSOR.to_motorola_ushort win_ascent;
+    win_descent := PROCESSOR.to_motorola_ushort win_descent;
+    
+    code_page_range1 := PROCESSOR.to_motorola_uint code_page_range1;
+    code_page_range2 := PROCESSOR.to_motorola_uint code_page_range2;
+  );
+  
+  - print <-
+  ( 
+    "\n********* OS/2 TABLE *********\n".print;
+    "\n       version: ".print;
+    version.print;
+
+    "\n       x_avg_char_width: ".print;
+    x_avg_char_width.print;
+    "\n       weight_class: ".print;
+    weight_class.print;
+    "\n       width_class: ".print;
+    width_class.print;
+    "\n       fs_type: 0x".print;
+    fs_type.print;
+  
+    "\n       y_subscript_x_size: ".print;
+    y_subscript_x_size.print;
+    "\n       y_subscript_y_size: ".print;
+    y_subscript_y_size.print;
+    "\n       y_subscript_x_offset: ".print;
+    y_subscript_x_offset.print;
+    "\n       y_subscript_y_offset: ".print;
+    y_subscript_y_offset.print;
+    "\n       y_superscript_x_size: ".print;
+    y_superscript_x_size.print;
+    "\n       y_superscript_y_size: ".print;
+    y_superscript_y_size.print;
+    "\n       y_superscript_x_offset: ".print;
+    y_superscript_x_offset.print;
+    "\n       y_superscript_y_offset: ".print;
+    y_superscript_y_offset.print;
+    "\n       y_strikeout_size: ".print;
+    y_strikeout_size.print;
+    "\n       y_strikeout_position: ".print;
+    y_strikeout_position.print;
+  
+    "\n       family_class: ".print;
+    family_class.print;
+        
+    "\n         family_type: ".print;
+    family_type.print;
+    "\n         serif_style: ".print;
+    serif_style.print;
+    "\n         weight: ".print;
+    weight.print;
+    "\n         proportion: ".print;
+    proportion.print;
+    "\n         contrast: ".print;
+    contrast.print;
+    "\n         stroke_variation: ".print;
+    stroke_variation.print;
+    "\n         arm_style: ".print;
+    arm_style.print;
+    "\n         letter_form: ".print;
+    letter_form.print;
+    "\n         midline: ".print;
+    midline.print;
+    "\n         xheight: ".print;
+    xheight.print;
+  
+    "\n       unicode_range1: ".print;
+    unicode_range1.print;
+    "\n       unicode_range2: ".print;
+    unicode_range2.print;
+    "\n       unicode_range3: ".print;
+    unicode_range3.print;
+    "\n       unicode_range4: ".print;
+    unicode_range4.print;
+  
+    "\n       ach_vend: ".print;
+    ach_vend_id1.to_character.print;
+    ach_vend_id2.to_character.print;
+    ach_vend_id3.to_character.print;
+    ach_vend_id4.to_character.print;
+    
+    "\n       fs_selection: 0x".print;
+    fs_selection.to_hexadecimal.print;
+    "\n       first_char_index: 0x".print;
+    first_char_index.to_hexadecimal.print;
+    "\n       last_char_index: 0x".print;
+    last_char_index.to_hexadecimal.print;
+    "\n       typo_ascender: ".print;
+    typo_ascender.print;
+    "\n       typo_descender: ".print;
+    typo_descender.print;
+    "\n       typo_line_gap: ".print;
+    typo_line_gap.print;
+    "\n       win_ascent: ".print;
+    win_ascent.print;
+    "\n       win_descent: ".print;
+    win_descent.print;
+    
+    "\n       code_page_range1: ".print;
+    code_page_range1.print;
+    "\n       code_page_range2: ".print;
+    code_page_range2.print;    
+    '\n'.print;
+  );
diff --git a/lib/unstable/freetype/tt_profile.li b/lib/unstable/freetype/tt_profile.li
new file mode 100644
index 0000000..f0fb71d
--- /dev/null
+++ b/lib/unstable/freetype/tt_profile.li
@@ -0,0 +1,40 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_PROFILE;
+  - comment     :=" .";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Public
+  
+  + x:INTEGER;           // current coordinate during sweep          
+  // JBJB UREAL_26_6
+  
+  + link:TT_PROFILE;        // link to next profile - various purpose   
+  + offset:INTEGER;        // start of profile's data in render pool   
+  + flow:INTEGER;          // Profile orientation: Asc/Descending      
+  + height:INTEGER;        // profile's height in scanlines            
+  + start:INTEGER;         // profile's starting scanline              
+  
+  + countl:USHORTINT;      // number of lines to step before this      
+  // profile becomes drawable                 
+  
+  + next:TT_PROFILE;        // next profile in same contour, used       
+  // during drop-out control                  
diff --git a/lib/unstable/freetype/tt_raster.c_to_li b/lib/unstable/freetype/tt_raster.c_to_li
new file mode 100644
index 0000000..05dc904
--- /dev/null
+++ b/lib/unstable/freetype/tt_raster.c_to_li
@@ -0,0 +1,667 @@
+/***************************************************************************
+*                      Isaac Object Operating System                       *
+*                             Freetype Library                             *
+*                      LORIA - UHP - INRIA - FRANCE                        *
+*                   Jerome BOUTET  - boutet at loria.fr                       *
+*                   Benoit SONNTAG - bsonntag at loria.fr                     *
+*                          http://www.IsaacOS.com                          *
+****************************************************************************/
+
+Section Header
+  
+  + name        := TT_RASTER;
+  - comment     :=" .";
+    
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Private
+  
+  - frac x:INTEGER <- x & (precision - 1);
+  
+  - scaled x:INTEGER <- (x << scale_shift) - precision_half;
+   
+  - swap x,y:INTEGER <-
+  (+ tmp:INTEGER;
+    tmp := x;
+    x := y;
+    y := tmp;
+  );
+  
+   - decompose_curve first,last:UINTEGER_8, flipped:BOOLEAN :BOOLEAN <-
+  // scans the outline arays in order to emit individual segments and beziers by calling Line_To()
+  // and Bezier_To. 
+  //              It handles all weird cases, like when the first point
+  //              is off the curve, or when there are simply no 'on'
+  //              points in the contour!
+  ( + x,y:INTEGER;   // current point
+    + cx,cy:INTEGER; // current Bezier control point
+    + mx,my:INTEGER; // current middle point
+    + x_first,y_first:INTEGER; // first point's coordinates
+    + x_last,y_last:INTEGER;   // last point's coordinates
+    + index:UINTEGER_8; //current point's index
+    + on_curve:BOOLEAN; // current point's state
+    
+    x_first := scaled (coords.item first.x);
+    y_first := scaled (coords.item first.y);
+    
+    flipped.if {
+      swap x_first,y_first;
+    };
+    
+    x_last := scaled (coords.item last.x);
+    y_last := scaled (coords.item last.y);
+    
+    flipped.if {
+      swap x_last,y_last;
+    };
+    
+    cx := x_first;
+    last_x := cx;
+    cy := y_first;
+    last_y := cy;
+    
+    on_curve := (flags.item first & 1) > 0;
+    index := first;
+
+    // check first point to determine origin
+    ( ! on_curve ).if {
+      // first point is off the curve.  Yes, this happens...
+      ((flags.last & 1)>0).if {
+	last_x := x_last;  // start at last point if it
+	last_y := y_last;  // is on the curve
+      } else {
+        // if both first and last points are off the curve, 
+        // start at their middle and record its position    
+	// for closure                                      
+	last_x := (last_x + x_last) / 2 ;
+	last_y := (last_y + y_last) / 2 ;
+	x_last := last_x;
+	y_last := last_y;
+      };
+    };
+
+    // now process each contour point individually
+    { index < last }.while_do {
+      index := index + 1;
+      x := scaled( coords.item index.x );
+      y := scaled( coords.item index.y );
+      
+      flipped.if {
+	swap x,y;
+      };
+      
+      on_curve.if {
+	// the previous point was on the curve
+	on_curve := (flags.index & 1) > 0;
+	on_curve.if {
+	  // two successive on points => emit segment
+	  line_to x,y; // JBJB return failure ?
+	} else {
+          // else, keep current control point for next bezier
+          cx := x;
+	  cy := y;
+	};
+      } else {
+	// the previous point was off the curve
+	on_curve := (flags.index & 1) > 0;
+	on_curve.if {
+	  // reaching an `on' point
+	  bezier_to x,y,cx,cy; // JBJB return FAILURE ?
+	} else {
+	  // two successive `off' points => create middle point
+          mx := ( cx + x ) / 2;
+	  my := ( cy + y ) / 2;
+	  
+	  bezier_to mx,my,cx,cy;
+          cx := x;
+          cy := y;
+	};
+      };
+    };
+
+    // end of contour, close curve cleanly
+    ((flags.item first & 1) > 0).if {
+      on_curve.if {
+	line_to x_first,y_first; // JBJB return 
+      } else {
+        bezier_to x_first,y_first,cx,cy; // JBJB return 
+      };
+    } else {
+      ( !on_curve ).if {
+	bezier_to x_last,y_last,cx,cy; // JBJB return 
+      };
+    };
+  );
+  
+  - bezier_to x,y,cx,cy:INTEGER <-
+  // Injects a new bezier arc and adjusts the profile list.
+  // x,   y : arc endpoint (start point in LastX, LastY)
+  // Cx, Cy : control point
+  (+ y1,y2,y3,x3;
+   + state_bez:UINTEGER_16;
+   push_bezier last_x,last_y,cx,cy,x,y;
+
+   {
+     y1 := arc.item 2.y;
+     y2 := arc.item 1.y;
+     y3 := arc.item 0.y;
+     x3 := arc.item 0.x;
+
+     // first, categorize the bezier arc
+
+     ( y1 = y2 ).if {
+       ( y2 = y3 ).if {
+	 state_bez := flat;
+       }.elseif { y2 > y3 } then {
+	 state_bez := descending;
+       } else {
+	 state_bez := ascending;
+       };
+     }.elseif { y1 > y2 } then {
+       ( y2 >= y3 ).if {
+	 state_bez := descending;
+       } else {
+	 state_bez := unknown;
+       };
+     }.elseif { y2 <= y3 } then {
+       state_bez := ascending;
+     } else {
+       state_bez := unknown;
+     };
+
+     // split non-monotonic arcs, ignore flat ones, or/
+     // computes the up and down ones                  
+     
+     (state_bez = flat).if {
+       arc := arc - 2; // JBJB A VOIR !!
+     }.elseif { state_bez = unknown } then {
+       split_bezier arc;
+       arc := arc + 2;
+     } else {
+       // detect a change of direction
+       ( state != state_bez ).if {
+	 (state != unknown).if {
+	   end_profile.if {
+	     // return failure
+	   };
+	 };
+	 ( new_profile state_bez ).if {
+	   // return FAILURE;
+	 };
+       };
+
+       // compute
+       ( state = ascending ).if {
+	 bezier_up min_y,max_y; // return failure
+       }.elseif { state = ascending } then {
+	 bezier_down min_y,max_y; // return failure
+       };
+     };
+   }.do_while ( arc >= arcs );
+
+    last_x := x3;
+    last_y := y3;
+  );
+  
+  
+  - bezier_up miny,maxy:INTEGER <-
+  // Computes thes x-coordinates of an ascending bezier arc
+  //              and stores them in the render pool.
+  ( + y1,y2,e,e2,e0:INTEGER;
+    + f1:INTEGER_8;
+    + tmp_arc,start_arc:NATIVE_ARRAY[POINT_INT];
+    + top:TT_STORAGE;
+
+    tmp_arc := arc;
+    y1  = arc[2].y;
+    y2  = arc[0].y;
+    top = ras.top;
+
+    if ( y2 < miny || y1 > maxy )
+      goto Fin;
+
+    e2 = FLOOR( y2 );
+
+    if ( e2 > maxy )
+      e2 = maxy;
+
+    e0 = miny;
+
+    if ( y1 < miny )
+      e = miny;
+    else
+    {
+      e  = CEILING( y1 );
+      f1 = FRAC( y1 );
+      e0 = e;
+
+      if ( f1 == 0 )
+      {
+        if ( ras.joint )
+        {
+          top--;
+          ras.joint = FALSE;
+        }
+
+        *top++ = arc[2].x;
+
+        DEBUG_PSET;
+
+        e += ras.precision;
+      }
+    }
+
+    if ( ras.fresh )
+    {
+      ras.cProfile->start = TRUNC( e0 );
+      ras.fresh = FALSE;
+    }
+
+    if ( e2 < e )
+      goto Fin;
+
+    if ( ( top + TRUNC( e2 - e ) + 1 ) >= ras.maxBuff )
+    {
+      ras.top   = top;
+      ras.error = Raster_Err_Overflow;
+      return FAILURE;
+    }
+
+    start_arc = arc;
+
+    while ( arc >= start_arc && e <= e2 )
+    {
+      ras.joint = FALSE;
+
+      y2 = arc[0].y;
+
+      if ( y2 > e )
+      {
+        y1 = arc[2].y;
+        if ( y2 - y1 >= ras.precision_step )
+        {
+          Split_Bezier( arc );
+          arc += 2;
+        }
+        else
+        {
+          *top++ = arc[2].x + FMulDiv( arc[0].x - arc[2].x,
+                                       e - y1,
+                                       y2 - y1 );
+          DEBUG_PSET;
+
+          arc -= 2;
+          e   += ras.precision;
+        }
+      }
+      else
+      {
+        if ( y2 == e )
+        {
+          ras.joint  = TRUE;
+          *top++     = arc[0].x;
+
+          DEBUG_PSET;
+
+          e += ras.precision;
+        }
+        arc -= 2;
+      }
+    }
+
+  Fin:
+    ras.top  = top;
+    ras.arc -= 2;
+    return SUCCESS;
+  }
+
+
+/****************************************************************************/
+/*                                                                          */
+/* Function:    Bezier_Down                                                 */
+/*                                                                          */
+/* Description: Computes the x-coordinates of a descending bezier arc       */
+/*              and stores them in the render pool.                         */
+/*                                                                          */
+/* Input:       None.  Arc is taken from the top of the Bezier stack.       */
+/*                                                                          */
+/* Returns:     SUCCESS on success.                                         */
+/*              FAILURE on Render Pool overflow.                            */
+/*                                                                          */
+/****************************************************************************/
+
+  static Bool  Bezier_Down( RAS_ARGS Long  miny, Long  maxy )
+  {
+    TPoint*  arc = ras.arc;
+    Bool     result, fresh;
+
+
+    arc[0].y = -arc[0].y;
+    arc[1].y = -arc[1].y;
+    arc[2].y = -arc[2].y;
+
+    fresh = ras.fresh;
+
+    result = Bezier_Up( RAS_VARS -maxy, -miny );
+
+    if ( fresh && !ras.fresh )
+      ras.cProfile->start = -ras.cProfile->start;
+
+    arc[0].y = -arc[0].y;
+    return result;
+  }
+
+
+/****************************************************************************/
+/*                                                                          */
+/* Function:    Line_To                                                     */
+/*                                                                          */
+/* Description: Injects a new line segment and adjusts Profiles list.       */
+/*                                                                          */
+/* Input:       x, y : segment endpoint (start point in LastX,LastY)        */
+/*                                                                          */
+/* Returns:     SUCCESS on success.                                         */
+/*              FAILURE on Render Pool overflow or Incorrect Profile.       */
+/*                                                                          */
+/****************************************************************************/
+
+  static Bool  Line_To( RAS_ARGS Long  x, Long  y )
+  {
+    /* First, detect a change of direction */
+
+    switch ( ras.state )
+    {
+    case Unknown:
+      if ( y > ras.lastY )
+      {
+        if ( New_Profile( RAS_VARS  Ascending ) ) return FAILURE;
+      }
+      else
+      {
+        if ( y < ras.lastY )
+          if ( New_Profile( RAS_VARS  Descending ) ) return FAILURE;
+      }
+      break;
+
+    case Ascending:
+      if ( y < ras.lastY )
+      {
+        if ( End_Profile( RAS_VAR ) ||
+             New_Profile( RAS_VARS  Descending ) ) return FAILURE;
+      }
+      break;
+
+    case Descending:
+      if ( y > ras.lastY )
+      {
+        if ( End_Profile( RAS_VAR ) ||
+             New_Profile( RAS_VARS  Ascending ) ) return FAILURE;
+      }
+      break;
+
+    default:
+      ;
+    }
+
+    /* Then compute the lines */
+
+    switch ( ras.state )
+    {
+    case Ascending:
+      if ( Line_Up ( RAS_VARS  ras.lastX, ras.lastY,
+                     x, y, ras.minY, ras.maxY ) )
+        return FAILURE;
+      break;
+
+    case Descending:
+      if ( Line_Down( RAS_VARS ras.lastX, ras.lastY,
+                      x, y, ras.minY, ras.maxY ) )
+        return FAILURE;
+      break;
+
+    default:
+      ;
+    }
+
+    ras.lastX = x;
+    ras.lastY = y;
+
+    return SUCCESS;
+  }
+
+section PUBLIC
+  
+  - max_bezier:INTEGER_8 	:= 32;
+  // The maximum number of stacked Bezier curves.
+  // Setting this constant to more than 32 is a pure waste of space.
+  
+  - raster_render_pool:INTEGER := 64000;
+  // The default render pool size
+  
+  - raster_gray_lines:INTEGER_8 := 2048;
+  // The size of the two-lines intermediate bitmap used for anti-aliasing
+  
+  
+  
+  + precision_bits:INTEGER;       // precision related variables 
+  + precision:INTEGER;
+  + precision_half:INTEGER;
+  + precision_mask:INTEGER;
+  + precision_shift:INTEGER;
+  + precision_step:INTEGER;
+  + precision_jitter:INTEGER;
+  
+  + scale_shift:INTEGER;          // == precision_shift   for bitmaps 
+  // == precision_shift+1 for pixmaps 
+  
+  + buff:FIXED_ARRAY[INTEGER];                 // The profiles buffer          
+  + size_buff:FIXED_ARRAY[INTEGER];            // Render pool size             
+  + max_buff:FIXED_ARRAY[INTEGER];             // Profiles buffer size         
+  + top:NATIVE_ARRAY[INTEGER];                  // Current cursor in buffer     
+  
+  + error:INTEGER;
+  
+  + flags:FIXED_ARRAY[UINTEGER_16];               // current flags table    
+  + outs:FIXED_ARRAY[UINTEGER_8];                // current outlines table 
+  
+  + n_points:UINTEGER_8;            // number of points in current glyph   
+  + n_contours:INTEGER_8;           // number of contours in current glyph 
+  + num_turns:INTEGER;             // number of Y-turns in outline        
+  
+  + arc:NATIVE_ARRAY[POINT_INT];                  // current Bezier arc pointer 
+  
+  + b_width:UINTEGER_8;              // target bitmap width  
+  + b_target:FIXED_ARRAY[UINTEGER_16];             // target bitmap buffer 
+  + g_target:FIXED_ARRAY[UINTEGER_16];             // target pixmap buffer 
+  
+  + last_x:INTEGER;
+  + last_y:INTEGER;
+  + min_y:INTEGER;
+  + max_y:INTEGER;
+  
+  
+  + num_profs:UINTEGER_8;            // current number of profiles 
+  
+  + fresh:BOOLEAN;                  
+  // signals a fresh new profile which 
+  // 'start' field must be completed   
+  + joint:BOOLEAN  ;                
+  // signals that the last arc ended   
+  // exactly on a scanline.  Allows removal of doublets               
+  + cprofile:TT_PROFILE;            // current profile                   
+  + fprofile:TT_PROFILE;            // head of linked list of profiles   
+  + gprofile:TT_PROFILE;            // contour's first profile in case   
+  // of impact                         
+  + state:UINTEGER_16;                  // rendering state
+  // 0: Unknown
+  // 1: ascending
+  // 2: descending
+  // 3: flat
+  
+  - unknown:UINTEGER_16 := 0;
+  - ascending:UINTEGER_16 := 1;
+  - descending:UINTEGER_16 := 2;
+  - flat:UINTEGER_16 := 3;
+  
+  + target:TT_RASTER_MAP;           // description of target bit/pixmap 
+  
+  + trace_ofs:INTEGER;              // current offset in target bitmap 
+  + trace_g:INTEGER;                // current offset in target pixmap 
+  
+  + trace_incr:INTEGER_8;            // sweep's increment in target bitmap 
+  
+  + gray_min_x:INTEGER_8;            // current min x during gray rendering 
+  + gray_max_x:INTEGER_8;            // current max x during gray rendering 
+  
+  // dispatch variables 
+  
+  // Function_Sweep_Init*  Proc_Sweep_Init;
+  // Function_Sweep_Span*  Proc_Sweep_Span;
+  // Function_Sweep_Span*  Proc_Sweep_Drop;
+  // Function_Sweep_Step*  Proc_Sweep_Step;
+  
+  + coords:FIXED_ARRAY[TT_VECTOR];
+  
+  + dropout_control:UINTEGER_16;       // current drop_out control method 
+  
+  + grays:FIXED_ARRAY[UINTEGER_16] := FIXED_ARRAY[UINTEGER_16].create 5;         // Palette of gray levels used for render 
+  
+  + gray_lines:FIXED_ARRAY[UINTEGER_16];       
+  // Intermediate table used to render the   
+  // graylevels pixmaps.                     
+  // gray_lines is a buffer holding two      
+  // monochrome scanlines                    
+  
+  + gray_width:INTEGER_8;        
+  // width in bytes of one monochrome        
+  // intermediate scanline of gray_lines.    
+  // Each gray pixel takes 2 bits long there 
+  
+  // The gray_lines must hold 2 lines, thus with size 
+  // in bytes of at least 'gray_width*2'              
+  
+  + second_pass:BOOLEAN;        
+  // indicates wether a horizontal pass      
+  // should be performed to control drop-out 
+  // accurately when calling Render_Glyph.   
+  // Note that there is no horizontal pass   
+  // during gray rendering.                  
+  
+  + arcs:FIXED_ARRAY[TT_POINT] := FIXED_ARRAY[TT_POINT].create (2 * max_bezier + 1);
+  // The Bezier stack 
+  
+  + band_stack:FIXED_ARRAY[TT_BAND] := FIXED_ARRAY[TT_BAND].create 16;
+  // band stack used for sub-banding 
+  
+  + band_top:INTEGER;             // band stack top                  
+  
+  + count_table:FIXED_ARRAY[INTEGER] := FIXED_ARRAY[INTEGER].create 256;
+  // Look-up table used to quickly count 
+  // set bits in a gray 2x2 cell         
+  
+  - raster_init <-
+  (    
+    size_buff := buff + ( raster_render_pool / 4 ); // 4: sizeof (long)
+       
+    gray_width := raster_gray_lines / 2;
+
+    // Initialization of Count_Table
+    
+    0.to 255 do { i:INTEGER;
+      + l,j:INTEGER;
+      l := 0;
+      j := i;
+      
+      
+      0.to 3 do { c:INTEGER;
+	
+	l := l << 4;
+
+	( (j & 080h) > 0).if {
+	  l := l + 1
+	};
+	( (j & 040h) > 0).if {
+	  l := l + 1
+	};
+	
+	j := ( j << 2 ) & 0FFh;
+      };
+      
+      count_table.put l to i;
+    };
+    
+    dropout_control := 2;
+    error           := TT_ERROR.tt_err_ok;
+  );
+
+  - align_profile_size:INTEGER := 8;
+  
+  - convert_glyph flipped:INTEGER :BOOLEAN <-
+  // Converts a glyph into a series of segments and arcs and makes a Profiles list with them. 
+  ( + start:UINTEGER_8;
+    + last_profile:TT_PROFILE;
+    + result:BOOLEAN;
+    
+    fprofile := NULL;
+    joint    := FALSE;
+    fresh    := FALSE;
+    
+    max_buff  := size_buff - align_profile_size;
+
+    num_turns := 0;
+
+    cprofile  := TT_PROFILE.force_conversion top; // JBJB a voir: MAPPING dans TT_PROFILE ou
+    // transformer top en f_array[profile]
+    cprofile.set_offset (top.item 0);
+    num_profs := 0;
+    
+    0.to (n_contours - 1) do { i:INTEGER;
+      state    := unknown;
+      gprofile := NULL;
+      result := decompose_curve start,(outs.item i),flipped;
+      // JBJB test failure
+      
+      start := outs.item i + 1;
+      
+      //  We must now see if the extreme arcs join or not
+      ((frac last_y == 0) && {last_y >= min_y} && {last_y <= max_y }).if {
+	(gprofile && (gprofile.flow) == (cprofile.flow)).if { // JBJB A VOIR !
+	  top := top - 1;
+	};
+      };
+      // Note that ras.gProfile can be nil if the contour was too small to be drawn.
+      
+      last_profile := cprofile;
+      end_profile.if {
+	result := FALSE;
+      };
+      
+      // close the 'next profile in contour' linked list
+      ( gprofile != NULL).if {
+	last_profile.set_next gprofile;	  
+      };
+    };      
+    
+    (finalize_profile_table != 0).if {
+      result := FALSE;
+    };
+    
+    result := top < max_buff;    
+    result
+    
+  );
+    
+  
+ 
+  
+  
+  
+  
+  
+  
+  
diff --git a/lib/unstable/freetype/tt_raster_map.li b/lib/unstable/freetype/tt_raster_map.li
new file mode 100644
index 0000000..d721466
--- /dev/null
+++ b/lib/unstable/freetype/tt_raster_map.li
@@ -0,0 +1,171 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_RASTER_MAP;
+  
+  - comment     :=" A structure used to describe the target bitmap or pixmap\
+  \ to the renderer.  Note that there is nothing in this structure that\
+  \gives the nature of the buffer.\
+  \IMPORTANT NOTE:\
+  \In the case of a pixmap, the `width' and `cols' fields must\
+  \have the _same_ values, and _must_ be padded to 32-bits, i.e.,\
+  \be a multiple of 4.  Clipping problems will arise otherwise,\
+  \if not even page faults!\
+  \The typical settings are:\
+
+  \- for a WxH bitmap:\
+
+  \rows  = H\
+  \cols  = (W+7) / 8\
+  \width = W\
+  \flow  = your_choice\
+
+  \- for a WxH pixmap:\
+
+  \rows  = H\
+  \cols  = (W+3) & ~3\
+  \width = cols\
+  \flow  = your_choice.";
+  
+
+  
+  - bibliography:="http://IsaacOS.com";
+  -  author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Public
+  
+  + rows:INTEGER;   // number of rows
+  + cols:INTEGER;   // number of columns (bytes) per row
+  + width:INTEGER;  // number of pixels per line
+  + flow:INTEGER;   // bitmap orientation
+  
+  + bitmap:FIXED_ARRAY(UINTEGER_16); // bit/pixmap buffer
+  + size:INTEGER;   // bit/pixmap size in bytes
+  
+  
+  
+  - set_rows new:INTEGER <- 
+  (
+    rows := new;
+  ); // end set_rows
+  
+  - add_rows val:INTEGER <-
+  (
+    rows := rows + val;
+  ); // end add_rows
+    
+  
+  - set_cols new:INTEGER <- 
+  (
+    cols := new;
+  ); // end set_cols
+  
+  
+  
+  - set_width new:INTEGER <- 
+  (
+    width := new;
+  ); // end set_width
+  
+  
+  - add_width val:INTEGER <-
+  (
+    width := width + val;
+  ); // end add_width
+  
+  
+  - set_flow new:INTEGER <- 
+  (
+    flow := new;
+  ); // end set_flow
+  
+  
+  
+  - set_bitmap new:UINTEGER_16 to i:NUMERIC <-
+  (
+    bitmap.put new to i;
+  ); // end set_bitmap
+  
+  
+  
+  - init_bitmap my_size:NUMERIC <-
+  (
+    bitmap := FIXED_ARRAY(UINTEGER_16).create my_size;
+  ); // end init_bitmap
+  
+  
+  - copy_bitmap new:FIXED_ARRAY(UINTEGER_16) <-
+  (
+    bitmap := new;
+  );
+  
+  - set_size new:INTEGER <- 
+  (
+    size := new;
+  ); // end set_size
+  
+  
+  
+  - init_bit_display (new_rows,new_width,new_flow,font_smoothing:INTEGER) <-
+  // Initialize the display bitmap named
+  (
+    rows := new_rows;  // the whole window
+    width := new_width;
+    flow := new_flow;
+    
+    ( font_smoothing > 0).if {
+      cols := (width+3) & -4;  // must be 32-bits aligned
+    } else {
+      cols := (width+7) >> 3;
+    }; // end if
+    size   := rows * cols;
+    
+    init_bitmap size;
+  ); // end init_bit_display
+  
+  
+  - init_small_display (x_ppem,y_ppem,new_flow:INTEGER) <-
+  // Init Small Bitmap
+  (
+    rows  := y_ppem + 32;
+    width := x_ppem + 32;
+    cols  := (width+3 ) & -4;  // pad to 32-bits
+    flow  := new_flow;
+    size  := rows * cols;
+    
+    init_bitmap size;
+  ); // end init_small_display
+  
+  
+  - clear_display <-
+  // reset every element
+  (
+    (size - 1).to 0 do { i:INTEGER;
+      bitmap.put 0 to i;
+    }; // end do
+  ); // end clear_display
+  
+  
+  - get_glyph_bitmap (glyph:TT_GLYPH,x_offset,y_offset:INTEGER) <-
+  // Produces a bitmap from a glyph outline.
+  //  Input  :  glyph      the glyph container's handle
+  //           xOffset    x offset in fractional pixels (26.6 format)
+  //           yOffset    y offset in fractional pixels (26.6 format)
+  (
+    // NOT YET IMPLEMENTED
+  ); // end get_glyph_bitmap
diff --git a/lib/unstable/freetype/tt_table_dir.li b/lib/unstable/freetype/tt_table_dir.li
new file mode 100644
index 0000000..ea5805f
--- /dev/null
+++ b/lib/unstable/freetype/tt_table_dir.li
@@ -0,0 +1,60 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_TABLE_DIR;
+  - comment     := "True type table directory type .";
+  
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Mapping
+  
+  + version:UINTEGER_32;        // should be 0x10000
+  + numtables:USHORTINT;    // number of tables
+  
+  + search_range:USHORTINT; // used for a dichotomy search in the directory
+  + entry_selector:USHORTINT;
+  + range_shift:USHORTINT;
+  
+Section Public  
+  
+  - to_big_endian <-
+  (
+    version := PROCESSOR.to_motorola_uint version;
+    numtables := PROCESSOR.to_motorola_ushort numtables;
+    search_range := PROCESSOR.to_motorola_ushort search_range;
+    entry_selector := PROCESSOR.to_motorola_ushort entry_selector;
+    range_shift := PROCESSOR.to_motorola_ushort range_shift;        
+  );
+  
+  - print <-
+  (
+    "\nVersion: ".print;
+    (version >> 16).to_hexadecimal.print;
+    '.'.print;
+    (version & 0FFFFh).to_hexadecimal.print;
+    "\nNum_tables: ".print;
+    numtables.print;
+    "\nSrange: ".print;
+    search_range.print;
+    "\nEntry sel: ".print;
+    entry_selector.print;
+    "\nRange shift: ".print;
+    range_shift.print;
+  );
diff --git a/lib/unstable/freetype/tt_table_direntry.li b/lib/unstable/freetype/tt_table_direntry.li
new file mode 100644
index 0000000..0079722
--- /dev/null
+++ b/lib/unstable/freetype/tt_table_direntry.li
@@ -0,0 +1,163 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TT_TABLE_DIRENTRY;
+  - comment     :="The 'Table dir' is followed by 'numtables' table dir entries.";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Mapping
+  
+  + tag1:UINTEGER_16;      // table type
+  + tag2:UINTEGER_16;
+  + tag3:UINTEGER_16;
+  + tag4:UINTEGER_16;
+  + checksum:UINTEGER_32;   // table checksum
+  + offset:UINTEGER_32;     // table file offset
+  + length:UINTEGER_32;     // table length
+  
+Section Public  
+  
+  - to_big_endian <-
+  (
+    //tag := PROCESSOR.to_motorola_uint tag;
+    checksum := PROCESSOR.to_motorola_uint checksum;
+    offset := PROCESSOR.to_motorola_uint offset;    
+    length := PROCESSOR.to_motorola_uint length;
+  );
+  
+  //
+  // Type
+  //
+  
+  // JBJB A VOIR SI ON LAISSE COMME CA (RAPIDE) OU SI ON PASSE PAR UN CALCUL (char.to_usmall)
+  // OU ALIASING
+  
+  // Required Tables
+  
+   - is_cmap:BOOLEAN <-
+  // c m a p (character) ==  99 109 97 112 (UINTEGER_16)
+  (    
+   (tag1 = 99) && {tag2 = 109} && {tag3 = 97} && {tag4 = 112} 
+  );
+
+  - is_glyf:BOOLEAN <-
+  // g l y f (character) ==  103 108 121 102
+  (    
+    (tag1 = 103) && {tag2 = 108} && {tag3 = 121} && {tag4 = 102}        
+  );
+  
+  - is_head:BOOLEAN <-
+  // h e a d (character) == 104 101 97 100
+  (
+    (tag1 = 104) && {tag2 = 101} && {tag3 = 97} && {tag4 = 100} 
+  );
+  
+  - is_hhea:BOOLEAN <-
+  // h h e a (character) == 104 104 101 97
+  (
+    (tag1 = 104) && {tag2 = 104} && {tag3 = 101} && {tag4 = 97} 
+  );
+  
+  - is_hmtx:BOOLEAN <-
+  // h m t x (character) == 104 109 116 120
+  (
+    (tag1 = 104) && {tag2 = 109} && {tag3 = 116} && {tag4 = 120} 
+  );
+    
+  - is_loca:BOOLEAN <-
+  // l o c a (character) == 108 111 99 97
+  (
+    (tag1 = 108) && {tag2 = 111} && {tag3 = 99} && {tag4 = 97} 
+  );
+  
+  - is_maxp:BOOLEAN <-
+  // m a x p (character) == 109 97 120 112
+  (
+    (tag1 = 109) && {tag2 = 97} && {tag3 = 120} && {tag4 = 112} 
+  );  
+  
+  - is_name:BOOLEAN <-
+  // n a m e (character) == 110 97 109 101
+  (
+    (tag1 = 110) && {tag2 = 97} && {tag3 = 109} && {tag4 = 101}
+  );
+  
+  - is_post:BOOLEAN <-
+  // p o s t (character) == 112 111 115 116
+  (
+    (tag1 = 112) && {tag2 = 111} && {tag3 = 115} && {tag4 = 116} 
+  );
+  
+  - is_os2:BOOLEAN <-
+  // O S / 2 (character) ==  79 83 47 50
+  (
+    (tag1 = 79) && {tag2 = 83} && {tag3 = 47} && {tag4 = 50} 
+  );
+  
+  // Optional Tables
+  
+  - is_cvt:BOOLEAN <-
+  // c v t (character) ==  99 118 116 32 
+  (    
+   (tag1 = 99) && {tag2 = 118} && {tag3 = 116} && {tag4 = 32}
+ );
+ 
+ - is_fpgm:BOOLEAN <-
+  // f p g m (character) ==  102 112 103 109 
+  (    
+   (tag1 = 102) && {tag2 = 112} && {tag3 = 103} && {tag4 = 109}
+  );
+  
+  - is_hdmx:BOOLEAN <-
+  // h d m x (character) ==  104 100 109 120 
+  (    
+    (tag1 = 104) && {tag2 = 100} && {tag3 = 109} && {tag4 = 120}
+  );
+ 
+  - is_kern:BOOLEAN <-
+  // k e r n (character) ==  107 101 114 110 
+  (    
+   (tag1 = 107) && {tag2 = 101} && {tag3 = 114} && {tag4 = 110}
+  ); 
+  
+  - is_prep:BOOLEAN <-
+  // p r e p (character) ==  112 114 101 112 
+  (    
+   (tag1 = 112) && {tag2 = 114} && {tag3 = 101} && {tag4 = 112}
+  );
+  //
+  // Display
+  //
+  
+  - print <-
+  (
+    "\nTag: ".print;
+    tag1.to_character.print;    
+    tag2.to_character.print;    
+    tag3.to_character.print;    
+    tag4.to_character.print;
+    "    Checksum: 0x".print;
+    checksum.to_hexadecimal.print;
+    "    Off: 0x".print;
+    offset.to_hexadecimal.print;
+    "    Length: ".print;
+    length.print;    
+  );
+  
diff --git a/lib/unstable/freetype/tt_view b/lib/unstable/freetype/tt_view
new file mode 100644
index 0000000..b961323
Binary files /dev/null and b/lib/unstable/freetype/tt_view differ
diff --git a/lib/unstable/freetype/tt_view.li b/lib/unstable/freetype/tt_view.li
new file mode 100644
index 0000000..4e3f306
--- /dev/null
+++ b/lib/unstable/freetype/tt_view.li
@@ -0,0 +1,267 @@
+////////////////////////////////////////////////////////////////////////////////
+//                                                                            //
+//                               Lisaac Library                               //
+//                                                                            //
+//                        LORIA - UHP - INRIA - FRANCE                        //
+//               (c) INRIA (see `licence.txt' for more details)               //
+//                     Benoit SONNTAG - bsonntag at loria.fr                     //
+//                     Jerome BOUTET  - boutet at loria.fr                       //
+//                           http://www.IsaacOS.com                           //
+//                                                                            //
+////////////////////////////////////////////////////////////////////////////////
+
+Section Header	
+  
+  + name        := TT_VIEW;
+  - comment     :="A font viewer.";
+  
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Boutet Jerome (boutet at loria.fr)";
+  
+Section Inherit
+  
+  - parent:OBJECT := OBJECT;
+  
+Section Public
+  
+  + main <-
+  ( + file:STD_FILE;
+    + buffer:FAST_ARRAY(UINTEGER_16);
+    + table_directory:TT_TABLE_DIR;
+    + tmp_table_direntry:TT_TABLE_DIRENTRY;
+    + table_direntry:MAP_FAST_ARRAY(TT_TABLE_DIRENTRY);    
+    + b:BITMAP;
+    + maxp:TT_MAXP;
+    + cmap:TT_CMAP;
+    + glyph:TT_GLYPH_TABLE;
+    + name:TT_NAME;
+    + head:TT_HEAD;
+    + hhea:TT_HHEA;
+    + hmtx:TT_HMTX;
+    + hdmx:TT_HDMX;
+    + loca:TT_LOCA;
+    + os2:TT_OS2;
+    + number_glyph,number_of_hmetrics:UINTEGER_8; 
+    + loc_version:INTEGER_8;
+    + idx_head,idx_hhea,idx_maxp,idx_name,idx_os2,idx_cmap:INTEGER;
+    + idx_hmtx,idx_hdmx,idx_loca,idx_glyph:INTEGER;
+
+    file := STD_FILE.create;
+    file.connect_to "font.ttf";
+    table_directory := TT_TABLE_DIR.clone;
+    file.read table_directory;
+    table_directory.to_big_endian;
+    //table_directory.print;
+    
+    // Read in file order.
+
+    table_direntry := MAP_FAST_ARRAY(TT_TABLE_DIRENTRY).create_with_capacity (table_directory.numtables);
+    file.read table_direntry size ((TT_TABLE_DIRENTRY.object_size) * (table_directory.numtables));
+
+    0.to (table_directory.numtables - 1) do { i:INTEGER;
+      table_direntry.item i.to_big_endian;
+      
+      //@@@@@@@@ HEAD TABLE
+      table_direntry.item i.is_head.if {
+	idx_head := i;
+      };
+      
+      //@@@@@@@@ HHEA TABLE
+      table_direntry.item i.is_hhea.if {
+	idx_hhea := i;
+      };
+      
+      //@@@@@@@@ MAXP TABLE
+      table_direntry.item i.is_maxp.if {
+	idx_maxp := i;
+      };
+      
+      //@@@@@@@@  NAME TABLE
+      
+      table_direntry.item i.is_name.if {
+	idx_name := i;
+      };
+      
+      //@@@@@@@@ OS2 TABLE
+      table_direntry.item i.is_os2.if {
+	idx_os2 := i;
+      };
+      
+      //@@@@@@@@ CMAP TABLE
+      
+      table_direntry.item i.is_cmap.if {
+	idx_cmap := i;
+      };
+      
+      //@@@@@@@@ HMTX TABLE
+      table_direntry.item i.is_hmtx.if {
+	idx_hmtx := i;
+      };
+      
+      //@@@@@@@@ LOCA TABLE
+      table_direntry.item i.is_loca.if {
+	idx_loca := i;
+      };
+      
+      //@@@@@@@@  GLYPH TABLE
+      table_direntry.item i.is_glyf.if {
+	idx_glyph := i;
+      };
+
+      //@@@@@@@@ HDMX TABLE
+      table_direntry.item i.is_hdmx.if {
+	idx_hdmx := i;
+      };
+
+      //table_direntry.item i.print;
+    };
+    
+    //
+    // Read in logical order
+    //
+
+    //@@@@@@@@ HEAD TABLE
+    //table_direntry.item idx_head.print;
+    head := TT_HEAD.clone;
+    file.set_cursor (table_direntry.item idx_head.offset);
+    file.read head;
+    head.to_big_endian;
+    loc_version := head.index_to_loc_format;
+    //head.print;    
+    //IO.read_character;
+    
+
+    //@@@@@@@@ HHEA TABLE
+    //table_direntry.item idx_hhea.print;
+    hhea := TT_HHEA.clone;
+    file.set_cursor (table_direntry.item idx_hhea.offset);   
+    file.read hhea;
+    hhea.to_big_endian;
+    number_of_hmetrics := hhea.number_of_hmetrics;
+    //hhea.print;   
+    //IO.read_character;
+    
+    //@@@@@@@@ MAXP TABLE
+    //table_direntry.item idx_maxp.print;
+    maxp := TT_MAXP.clone;
+    file.set_cursor (table_direntry.item idx_maxp.offset);
+    file.read maxp;
+    maxp.to_big_endian;
+    number_glyph := maxp.num_glyphs;
+    //maxp.print;
+    //IO.read_character;
+    
+    //@@@@@@@@  NAME TABLE
+    //table_direntry.item idx_name.print;
+    file.set_cursor (table_direntry.item idx_name.offset);
+    name := TT_NAME.create file;
+    //name.print;
+    //IO.read_character;
+    
+    //@@@@@@@@ OS2 TABLE 
+    //table_direntry.item idx_os2.print;
+    os2 := TT_OS2.clone;
+    file.set_cursor (table_direntry.item idx_os2.offset);
+    file.read os2;
+    os2.to_big_endian;
+    //os2.print;
+    //IO.read_character;
+    
+    //@@@@@@@@ CMAP TABLE
+    
+    //table_direntry.item idx_cmap.print;
+    file.set_cursor (table_direntry.item idx_cmap.offset);
+    cmap := TT_CMAP.create file;
+    //cmap.print;
+    //IO.read_character;
+    
+    /*
+    // HMTX TABLE
+    table_direntry.item idx_hmtx.print;
+    hmtx := TT_HMTX.create number_of_hmetrics,number_glyph,(buffer + (table_direntry.item idx_hmtx.offset));
+    hmtx.print;
+    */
+    
+    //@@@@@@@@ LOCA TABLE
+    //table_direntry.item idx_loca.print;
+    file.set_cursor (table_direntry.item idx_loca.offset);
+    (loc_version = 0).if {
+      loca := TT_LOCA_SHORT.create number_glyph my_file file;
+    }.elseif {loc_version = 1} then {
+      loca := TT_LOCA_LONG.create number_glyph my_file file;
+    } else {
+      "\nWrong Version loca".print;
+      crash;
+    };
+    //loca.print;
+    //IO.read_character;
+
+    //@@@@@@@@  GLYPH TABLE
+    //table_direntry.item idx_glyph.print;
+    file.set_cursor (table_direntry.item idx_glyph.offset);    
+    glyph := TT_GLYPH_TABLE.create loca my_file file;
+    //glyph.print;
+    //IO.read_character;
+    
+    /*
+    //@@@@@@@@HDMX TABLE
+    //table_direntry.item idx_hdmx.print;
+    hdmx := TT_HDMX.create number_glyph,(buffer + (table_direntry.item idx_hdmx.offset));
+    //hdmx.print;
+
+    
+    //
+    // Display
+    //
+
+    table_direntry.item idx_head.print;
+    head.print;
+    
+    table_direntry.item idx_hhea.print;
+    hhea.print;
+    
+    table_direntry.item idx_maxp.print;
+    maxp.print;
+    
+    table_direntry.item idx_name.print;
+    name.print;
+    
+    table_direntry.item idx_os2.print;
+    os2.print;
+    
+    table_direntry.item idx_cmap.print;
+    cmap.print;
+    
+    //table_direntry.item idx_hmtx.print;
+    //hmtx.print;
+    
+    table_direntry.item idx_loca.print;
+    loca.print;
+    
+    table_direntry.item idx_glyph.print;
+    glyph.print;
+    
+    //table_direntry.item idx_hdmx.print;
+    //hdmx.print;
+    */
+    
+    VIDEO.create;
+    
+    0.to (glyph.glyph.upper) do { i:INTEGER;
+      (glyph.glyph.item i.with_contour && {!glyph.glyph.item i.composite}).if {
+	"\n\n------> Glyph #".print;
+	i.print;
+	TT_DRAW.make (glyph.glyph.item i) bitmap VIDEO;
+	IO.read_character;
+	VIDEO.clear;
+      };
+    };
+    VIDEO.close;
+  );
+  
+  
+  
+  
+  
+  
diff --git a/lib/unstable/freetype/update_marche b/lib/unstable/freetype/update_marche
new file mode 100644
index 0000000..e29da2e
Binary files /dev/null and b/lib/unstable/freetype/update_marche differ
diff --git a/lib/unstable/graphics/bitmap.li b/lib/unstable/graphics/bitmap.li
new file mode 100644
index 0000000..7016b58
--- /dev/null
+++ b/lib/unstable/graphics/bitmap.li
@@ -0,0 +1,168 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := BITMAP(E);
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "Generic Bitmap.";
+
+Section Inherit
+  
+  + parent_abstract_bitmap:Expanded ABSTRACT_BITMAP;
+  
+Section Private  
+  
+  + image:FAST_ARRAY(BMP_LINE(E));
+  
+Section Public
+  
+  - get_y_line y:INTEGER :ABSTRACT_BMP_LINE <-
+  (
+    image.item y
+  );
+  
+  //
+  // Data.
+  //
+  
+  - pixel_geometry:PIXEL <- E;
+  
+  //
+  // Creation. 
+  //
+
+  - make_size (w,h:INTEGER) <-
+  (
+    width  := w;
+    height := h;
+    //bytes_per_line:=(w * PIXEL_16.size + 7)>>3;
+    image := FAST_ARRAY(BMP_LINE(E)).create h;
+    0.to (image.upper) do { y:INTEGER;
+      image.put (BMP_LINE(E).create w) to y;
+    };
+    clipping_off;
+  );
+  
+  - make (w,h:INTEGER) at offset_begin:UINTEGER_32 bytes_per_line lx:INTEGER <-
+  ( + offset:UINTEGER_32;
+    
+    width  := w;
+    height := h;    
+    image := FAST_ARRAY(BMP_LINE(E)).create h;
+    offset:=offset_begin;
+    0.to (image.upper) do { y:INTEGER;
+      image.put (BMP_LINE(E).create w at offset) to y;
+      offset:=offset+lx;
+    };
+    clipping_off;
+  );
+
+  
+  //****************************************************************************
+  //*                               PutImage                                   *
+  //****************************************************************************
+  
+  - put_bitmap bmp:ABSTRACT_BITMAP to (x,y:INTEGER) <-
+  ( + x1,y1,x0,y0:INTEGER;
+    + y_src,x_src:INTEGER;
+    + line:ABSTRACT_BMP_LINE;
+
+    // JBJB A VOIR: SI H/W RECEVEUR < H/W BMP --> PLANTAGE !!!
+    x0 := x.max clip_x0;
+    y0 := y.max clip_y0;
+    x1 := (x + bmp.width -1).min clip_x1; 
+    y1 := (y + bmp.height-1).min clip_y1;
+    ((x0<=x1) && {y0<=y1}).if {
+      y_src := y0 - y;
+      x_src := x0 - x;
+      y0.to y1 do { y_dst:INTEGER;
+	line := bmp.get_y_line y_src;
+	line_h_hard (x0,y_dst) until x1 image line offset x_src;
+	y_src := y_src + 1;
+      };  
+    };
+  );
+
+  - put_bitmap bmp:ABSTRACT_BITMAP to (x,y:INTEGER) scale (scale_x,scale_y:REAL_16_16) <-
+  ( + x1,y1,x0,y0:INTEGER;
+    + y_src,x_src,x_tmp:REAL_16_16;
+    + line:ABSTRACT_BMP_LINE;
+    + col:UINTEGER_32;
+
+    x0 := x.max clip_x0;
+    y0 := y.max clip_y0;
+    x1 := (x + (bmp.width.to_real_16_16  / scale_x).to_integer -1).min clip_x1;
+    y1 := (y + (bmp.height.to_real_16_16 / scale_y).to_integer -1).min clip_y1;
+    ((x0<=x1) && {y0<=y1}).if {
+      x_src := (x0 - x).to_real_16_16 * scale_x;
+      y_src := (y0 - y).to_real_16_16 * scale_y;      
+      y0.to y1 do { y_dst:INTEGER;
+	line := bmp.get_y_line (y_src.to_integer);
+	x_tmp := x_src;
+	x0.to x1 do { x_dst:INTEGER;
+	  col := line.get_color (x_tmp.to_integer);
+	  pixel_hard (x_dst,y_dst) color col;
+	  x_tmp := x_tmp + scale_x;
+	};	
+	y_src := y_src + scale_y;
+      };  
+    };
+  );
+
+Section Public
+  
+  //
+  // Low level.
+  //   
+    
+  - pixel_hard (x,y:INTEGER) color col:UINTEGER_32 <-
+  ( 
+    //image.item y.put col to x;    
+    get_y_line y.put col to x;
+  );
+  
+  - line_h_hard (x0,y0:INTEGER) until x1:INTEGER color col:UINTEGER_32 <-
+  ( 
+    //image.item y.put col from x to x1;
+    get_y_line y0.put col from x0 to x1;
+  );
+    
+  - line_h_hard (x0,y0:INTEGER) until x1:INTEGER image line:ABSTRACT_BMP_LINE offset ofs:INTEGER <-
+  (     
+    //image.item y.put line offset ofs from x to x1;
+    get_y_line y0.put line offset ofs from x0 to x1;
+  );
+  
+  - get_pixel_hard (x,y:INTEGER) :PIXEL <-
+  (
+    //image.item y.item x
+    get_y_line y.item x
+  );
+
+  - get_color_hard (x,y:INTEGER) :UINTEGER_32 <-
+  (
+    //image.item y.item x
+    get_y_line y.get_color x
+  );
+  
\ No newline at end of file
diff --git a/lib/unstable/graphics/bmp_line.li b/lib/unstable/graphics/bmp_line.li
new file mode 100644
index 0000000..d00f904
--- /dev/null
+++ b/lib/unstable/graphics/bmp_line.li
@@ -0,0 +1,211 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := BMP_LINE(E);
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Generic bitmap line";
+  
+Section Inherit
+  
+  + parent_abstract_bmp_line:Expanded ABSTRACT_BMP_LINE;
+  
+Section Private
+  
+  + storage:NATIVE_ARRAY(E);
+  
+Section Public
+  
+  //  
+  // Creation.
+  //
+  
+  - create n:INTEGER :SELF <-
+  ( + result:SELF;
+    ? {n>0};
+    
+    result:=clone;
+    result.make n;
+    
+    ? {result.count    = n};
+    ? {result.capacity = n};
+    result
+  );
+  
+  - make n:INTEGER <-
+  (
+    (n > capacity).if {
+      capacity := n;      
+      storage := NATIVE_ARRAY(E).create n;
+    };
+    upper := n - 1;
+  );
+
+  - create_with_capacity n:INTEGER :SELF <- 
+  // Warning : Not storage copy.
+  ( + result:SELF;
+    
+    result:=clone;
+    result.make_with_capacity n;
+    
+    ? {result.count    = 0};
+    ? {result.capacity = n};
+    result
+  );
+  
+  - make_with_capacity n:INTEGER <-
+  (
+    (n > capacity).if {
+      storage := NATIVE_ARRAY(E).create n;
+      capacity := n;
+    };
+    upper := -1;
+  );
+    
+  - create n:INTEGER at offset:UINTEGER_32 :SELF <- 
+  // Warning : Not storage copy.
+  ( + result:SELF;
+    
+    result:=clone;
+    result.make n at offset;
+    
+    ? {result.count    = n};
+    ? {result.capacity = n};
+    result
+  );
+  
+  - make n:INTEGER at offset:UINTEGER_32 <-
+  ( 
+    capacity := n;
+    upper    := n - 1;    
+    storage  := CONVERT(UINTEGER_32,NATIVE_ARRAY(E)).on offset;    
+  );
+  
+  - pixel_geometry:E;
+   
+  //
+  // Put.
+  //
+  
+  - put col:UINTEGER_32 to n:INTEGER <-
+  ( ? {n.in_range 0 to upper};    
+    item n.make col;    
+  );
+  
+  - put col:UINTEGER_32 from idx_begin:INTEGER to idx_end:INTEGER <-   
+  (  
+    E.make col;    
+    idx_begin.to idx_end do { n:INTEGER;
+      storage.put E to n;
+    };
+  );
+  
+  - put bmp:ABSTRACT_BMP_LINE offset ofs:INTEGER from idx_begin:INTEGER to idx_end:INTEGER <-
+  ( + offset:INTEGER;    
+    + bmp_self:SELF;
+    + col:UINTEGER_32;
+    ? {idx_begin <= idx_end};
+    ? {idx_begin >= 0};
+    ? {idx_end.in_range 0 to upper};
+    ? {ofs >= 0};    
+    ? {(ofs + (idx_end - idx_begin)) <= bmp.upper}; 
+        
+    offset := ofs;
+    bmp_self ?= bmp;
+    (bmp_self != NULL).if {
+      // Speed version.            
+      idx_begin.to idx_end do { n:INTEGER;
+	storage.put (bmp_self.item offset) to n;	
+	offset := offset + 1;
+      };
+    } else {
+      // Slow version (because conversion for each pixel)
+      idx_begin.to idx_end do { n:INTEGER;
+	col := bmp.get_color offset;				
+	item n.make col;	
+	offset := offset + 1;
+      };
+    };
+  );
+  
+  //
+  // Get.
+  //
+  
+  - get_color n:INTEGER :UINTEGER_32 <-
+  ( ? {n.in_range 0 to upper};    
+    item n.rgbcolor
+  );
+  
+  - item n:INTEGER :E <- storage.item n;
+  
+  - item_8  n:INTEGER :PIXEL_8  <- item n.to_pixel_8;
+  
+  - item_15 n:INTEGER :PIXEL_15 <- item n.to_pixel_15;
+
+  - item_16 n:INTEGER :PIXEL_16 <- item n.to_pixel_16;
+
+  - item_24 n:INTEGER :PIXEL_24 <- item n.to_pixel_24;
+
+  - item_32 n:INTEGER :PIXEL_32 <- item n.to_pixel_32;
+  
+  //
+  // Arrayed consideration.
+  //
+  
+  - get_storage:NATIVE_ARRAY(UINTEGER_8) <- 
+  CONVERT(NATIVE_ARRAY(E),NATIVE_ARRAY(UINTEGER_8)).on storage;
+  
+  - element_sizeof:INTEGER <- pixel_geometry.object_size;
+
+  - valid_stream s:INTEGER :BOOLEAN <- (s % element_sizeof)=0;
+  
+  + ofs_buf:INTEGER;
+  
+  - add_last_buffer buf:FAST_ARRAY(UINTEGER_8) from beg:INTEGER to end:INTEGER <-
+  ( + pos:INTEGER;
+    
+    // BSBS: Peu faire mieux directement avec les storages...
+    pos := count * element_sizeof + ofs_buf;
+    beg.to end do { j:UINTEGER_32;
+      get_storage.put (buf.item j) to pos;
+      ofs_buf := (ofs_buf + 1) % element_sizeof;
+      (ofs_buf=0).if {
+	? {count < capacity};
+	upper := upper + 1;	
+      };
+      pos := pos + 1;
+    };
+  );
+  
+  //
+  // Arrayed consideration.
+  //
+  
+  - set_capacity new_capacity:INTEGER <-  
+  (
+    make_with_capacity new_capacity;
+  );
+
+  
\ No newline at end of file
diff --git a/lib/unstable/graphics/edge.li b/lib/unstable/graphics/edge.li
new file mode 100644
index 0000000..e6a3059
--- /dev/null
+++ b/lib/unstable/graphics/edge.li
@@ -0,0 +1,232 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := EDGE;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "Sub prototype for BITMAP.polygone";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;  
+  
+Section Public
+  
+  // Make.
+  
+  + y:INTEGER;
+  + x:INTEGER;   
+  
+  + width:INTEGER;
+  + dx:INTEGER;  // REAL_24_8
+  
+  + is_down:BOOLEAN;
+  + is_point:BOOLEAN;
+  
+  - x0:INTEGER <- x;
+  - y0:INTEGER <- y;
+  - x1:INTEGER <- dx;
+  - y1:INTEGER <- width;
+  
+  + next_y:EDGE;
+    
+  + prev_x:EDGE;  // doubly linked list
+  + next_x:EDGE;
+  
+  //
+  // Function.
+  // 
+  
+  - make (xx,yy:INTEGER) add inc:INTEGER <-
+  // Flat.
+  (    
+    next_y   := NULL;
+    is_point := TRUE;
+    dx       := inc;    
+    width    := 0;
+    x := xx;
+    y := yy;
+  );
+  
+  - make (xx,yy:INTEGER) to (xx1,yy1:INTEGER) <-
+  // Line.
+  ( 
+    next_y   := NULL;
+    is_point := FALSE;
+    (is_down := yy < yy1).if {
+      // Down.
+      y  := yy;
+      x  := xx;            
+      dx := xx1;
+      width := yy1;
+    } else {
+      // up.
+      y  := yy1;
+      x  := xx1;            
+      dx := xx;
+      width := yy;
+    };
+  );
+      
+  - set_next_x new:EDGE <-
+  (
+    next_x:=new;
+  );
+
+  - set_prev_x new:EDGE <-
+  (
+    prev_x:=new;
+  );
+  
+  - set_next_y new:EDGE <-
+  (
+    next_y := new;
+  );
+  
+  - add old_root:EDGE :EDGE <-
+  // Double link and sort with X.
+  ( + pos,prv:EDGE;
+    + new_root:EDGE;    
+    
+    to_run;
+    pos:=old_root;
+    {(pos!=NULL) && {(pos.x<x) || {(pos.x=x) && {pos.dx<dx}} } }.while_do {
+      prv := pos;
+      pos := pos.next_x;
+    };
+    next_x := pos;
+    prev_x := prv;
+    (next_x != NULL).if {
+      next_x.set_prev_x Self;
+    };
+    (prev_x!=NULL).if {
+      prev_x.set_next_x Self;
+      new_root:=old_root;
+    } else {
+      new_root:=Self;
+    };
+    
+    new_root
+  );
+    
+  - next_line old_root:EDGE :EDGE <-
+  // Remove double link.
+  ( + new_root:EDGE;
+    
+    (next_y = NULL).if {
+      // Remove
+      (next_x!=NULL).if {
+	next_x.set_prev_x prev_x;
+      };
+      (prev_x!=NULL).if {
+	prev_x.set_next_x next_x;
+	new_root:=old_root;
+      } else {
+	new_root:=next_x;
+      };
+    } else {
+      // Replace next_y
+      next_y.to_run;
+      next_y.set_next_x next_x;
+      next_y.set_prev_x prev_x;
+      (next_x!=NULL).if {
+	next_x.set_prev_x next_y;
+      };
+      (prev_x!=NULL).if {
+	prev_x.set_next_x next_y;
+	new_root:=old_root;
+      } else {
+	new_root:=next_y;
+      };
+    };
+    new_root
+  );
+  
+  - new_step <-
+  (
+    width:=width-1;
+    x:=x+dx;
+  );
+  
+Section Private  
+  
+  - to_run <-
+  ( + dy:INTEGER; 
+    
+    (is_point).if {
+      // Point (Flat)
+      x := x0 << 8;
+    } else {
+      // Line
+      dy := y1 - y0;
+      dx := ((x1 - x0)<<8) / dy;
+      x  := x0 << 8; 
+        
+      (next_y = NULL).if {
+	width := dy;
+      } else {
+	width := dy - 1;
+      };      
+    };
+  );
+  
+  - display <-
+  (
+    '{'.print;
+    x0.print;
+    ','.print;
+    y0.print;
+    '-'.print;
+    x1.print;
+    ','.print;
+    y1.print;    
+    '}'.print;
+  );
+
+  - display_2 <-
+  (
+    '{'.print;      
+    (x>>8).print;
+    ','.print;
+    y.print;
+    'W'.print;
+    width.print;
+    'D'.print;
+    dx.print;    
+    'N'.print;
+    (next_y=NULL).if {
+      "null".print;
+    } else {
+      "=>".print;
+    };
+    '@'.print;
+    INTEGER.force_conversion Self .print;
+    '}'.print;
+  );
+
+
+
+
+
+
diff --git a/lib/unstable/graphics/format/ai/ai_alias.li b/lib/unstable/graphics/format/ai/ai_alias.li
new file mode 100644
index 0000000..45e1983
--- /dev/null
+++ b/lib/unstable/graphics/format/ai/ai_alias.li
@@ -0,0 +1,139 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := AI_ALIAS;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     :="Alias for Adobe Illustrator format.";
+  
+  - version := 1;  
+  
+Section Inherit  
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - list:HASHED_SET(ABSTRACT_STRING);
+  
+  //
+  // Aliases keywords
+  //
+  
+  // Symbol
+  
+  - start_comment:STRING_CONSTANT      := "%%";
+  
+  - start_comment_more:STRING_CONSTANT := "%%+";
+    
+  - prefix_file:STRING_CONSTANT        := "%!PS-Adobe-2.0 EPSF-1.2";
+
+  - bounding_box:STRING_CONSTANT       := "%%BoundingBox:";
+
+  - end_prolog:STRING_CONSTANT         := "%%EndProlog";
+  
+  - end_comments:STRING_CONSTANT       := "%%EndComments";  
+  
+  - begin_procset:STRING_CONSTANT      := "%%BeginProcset:";
+  
+  - begin_setup:STRING_CONSTANT        := "%%BeginSetup";
+  
+  - end_setup:STRING_CONSTANT          := "%%EndSetup";
+  
+  - adobe_illustrator:STRING_CONSTANT  := "Adobe_Illustrator_";
+  
+  - begin:STRING_CONSTANT              := "begin";
+  
+  - begin_encoding:STRING_CONSTANT     := "%%BeginEncoding:";
+  
+  - end_encoding:STRING_CONSTANT       := "%%EndEncoding";
+  
+  - begin_pattern:STRING_CONSTANT      := "%%BeginPattern";
+  
+  - end_pattern:STRING_CONSTANT        := "%%EndPattern";
+  
+  - note:STRING_CONSTANT               := "%%Note:";
+  
+  - include_file:STRING_CONSTANT       := "%%IncludeFile:";
+  
+  - trailer:STRING_CONSTANT            := "%%Trailer";
+  
+  - initialize:STRING_CONSTANT         := "/initialize get exec";
+  
+  - terminate:STRING_CONSTANT          := "/terminate get exec";
+  
+  - end:STRING_CONSTANT                := "_E end";
+    
+  //
+  // Function
+  //
+  
+  - make <-
+  (
+    list := HASHED_SET(ABSTRACT_STRING).create;
+    // Symbol    
+    list.add start_comment;      
+    list.add start_comment_more; 
+    //
+    list.add prefix_file;
+    list.add bounding_box;    
+    list.add end_prolog;            
+    list.add end_comments;      
+    list.add begin_procset;    
+    list.add begin_setup;      
+    list.add end_setup;        
+    list.add adobe_illustrator;
+    list.add begin;            
+    list.add begin_encoding;   
+    list.add end_encoding;     
+    list.add begin_pattern;    
+    list.add end_pattern;      
+    list.add note;             
+    list.add include_file;     
+    list.add trailer;          
+    list.add initialize;  
+    list.add terminate;        
+    list.add end;
+  );
+  
+  - get str:ABSTRACT_STRING :STRING_CONSTANT <-
+  ( + result:STRING_CONSTANT;
+    + tmp:ABSTRACT_STRING;
+    ? {str != NULL};
+    
+    tmp := list.reference_at str;
+    (tmp = NULL).if {
+      result := STRING_CONSTANT.create_copy str;
+      list.add result;
+    } else {
+      result ?= tmp;
+    };
+    result
+  );
+  
+  
+  
+
+
+
diff --git a/lib/unstable/graphics/format/ai/ai_bezier.li b/lib/unstable/graphics/format/ai/ai_bezier.li
new file mode 100644
index 0000000..a4acd2c
--- /dev/null
+++ b/lib/unstable/graphics/format/ai/ai_bezier.li
@@ -0,0 +1,121 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := AI_BEZIER;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+
+  - comment := "Operation: bezier";
+  - version := 1;  
+  
+Section Inherit
+  
+  - parent_ai_operation:AI_OPERATION := AI_OPERATION;
+  
+Section Public
+  
+  + wx1:REAL_16_16;
+  + wy1:REAL_16_16;
+  
+  + wx2:REAL_16_16;
+  + wy2:REAL_16_16;
+  
+  + x:REAL_16_16;
+  + y:REAL_16_16;
+  
+  //
+  // Creation.
+  //
+  
+  - create_w1 (lx1,ly1:REAL_16_16) w2 (lx2,ly2:REAL_16_16) to (lx3,ly3:REAL_16_16) :SELF <-
+  (+ result:SELF;
+    result := SELF.clone;
+    result.make_w1 (lx1,ly1) w2 (lx2,ly2) to (lx3,ly3);
+    result    
+  );
+  
+  - make_w1 (lx1,ly1:REAL_16_16) w2 (lx2,ly2:REAL_16_16) to (lx3,ly3:REAL_16_16) <-
+  (
+    wx1 := lx1;
+    wy1 := ly1;
+    wx2 := lx2;
+    wy2 := ly2;
+    x   := lx3;
+    y   := ly3;
+  );
+  
+  //
+  // Draw
+  //
+
+  - draw_stroke b:ABSTRACT_BITMAP scale s:REAL_16_16 <-
+  ( + i_wx1,i_wy1,i_wx2,i_wy2,i_x,i_y:INTEGER;
+    
+    i_wx1 := (wx1 * s).rounded;
+    i_wy1 := (wy1 * s).rounded;
+    
+    i_wx2 := (wx2 * s).rounded;
+    i_wy2 := (wy2 * s).rounded;
+    
+    i_x   := (x * s).rounded;
+    i_y   := (y * s).rounded;
+    b.spline_w1 (i_wx1,i_wy1) w2 (i_wx2,i_wy2) to (i_x,i_y);
+  ); 
+
+  - draw_fill b:ABSTRACT_BITMAP scale s:REAL_16_16 <-
+  ( + i_wx1,i_wy1,i_wx2,i_wy2,i_x,i_y:INTEGER;
+    
+    i_wx1 := (wx1 * s).rounded;
+    i_wy1 := (wy1 * s).rounded;
+    
+    i_wx2 := (wx2 * s).rounded;
+    i_wy2 := (wy2 * s).rounded;
+    
+    i_x   := (x * s).rounded;
+    i_y   := (y * s).rounded;
+    b.poly_spline_w1 (i_wx1,i_wy1) w2 (i_wx2,i_wy2) to (i_x,i_y);
+  ); 
+
+  //  
+  // Display.
+  //
+  
+  - display <-
+  (  
+    "poly_spline_w1 ".print;
+    (wx1 *# 8).rounded.print;
+    ','.print;
+    (wy1 *# 8).rounded.print;
+    " w2 ".print;
+    (wx2 *# 8).rounded.print;
+    ','.print;
+    (wy2 *# 8).rounded.print;
+    " to ".print;
+    (x *# 8).rounded.print;
+    ','.print;
+    (y *# 8).rounded.print;
+    ";\n".print;
+  );
+
+
+
diff --git a/lib/unstable/graphics/format/ai/ai_color.li b/lib/unstable/graphics/format/ai/ai_color.li
new file mode 100644
index 0000000..6dc1e80
--- /dev/null
+++ b/lib/unstable/graphics/format/ai/ai_color.li
@@ -0,0 +1,103 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := AI_COLOR;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Color of .AI document.";
+
+  - version := 1;  
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Private  
+  
+  - gray_to_rgb g:REAL_16_16 :UINTEGER_32 <-
+  ( + tmp:UINTEGER_32;
+    
+    tmp := (g *# 255).to_integer;
+    (tmp << 16) | (tmp << 8) | tmp
+  );
+  
+  - cmyk_to_rgb (c,m,y,k:REAL_16_16) :UINTEGER_32 <-
+  ( + r,g,b:UINTEGER_32;
+    r   := ((- (c + k).min 1 + 1).max 0 *# 255).to_integer;
+    g   := ((- (m + k).min 1 + 1).max 0 *# 255).to_integer;
+    b   := ((- (y + k).min 1 + 1).max 0 *# 255).to_integer;           
+    (r << 16) | (g << 8) | b
+  );
+  
+Section Public
+  
+  + rgbcolor_fill  :UINTEGER_32;
+  + rgbcolor_stroke:UINTEGER_32;
+  
+  //
+  // GRAY
+  //
+    
+  - make_gray_stroke g:REAL_16_16 <-
+  ( 
+    rgbcolor_stroke := gray_to_rgb g;
+  );
+  
+  - make_gray_fill g:REAL_16_16 <-
+  ( 
+    rgbcolor_fill := gray_to_rgb g;
+  );
+  
+  //
+  // CMYK
+  //
+  
+  - make_cmyk_stroke (c,m,y,k:REAL_16_16) <-
+  (
+    rgbcolor_stroke := cmyk_to_rgb (c,m,y,k);
+  );
+  
+  - make_cmyk_fill (c,m,y,k:REAL_16_16) <-
+  ( 
+    rgbcolor_fill := cmyk_to_rgb (c,m,y,k);
+  );
+  
+  //
+  // CMYK + GRAY
+  //
+
+  - make_cmykg_stroke (c,m,y,k,g:REAL_16_16) <-
+  (
+    make_cmyk_stroke (c,m,y,k);
+  );
+  
+  - make_cmykg_fill (c,m,y,k,g:REAL_16_16) <-
+  (
+    make_cmyk_fill (c,m,y,k);
+  );
+
+
+
+
+
diff --git a/lib/unstable/graphics/format/ai/ai_file.li b/lib/unstable/graphics/format/ai/ai_file.li
new file mode 100644
index 0000000..384722f
--- /dev/null
+++ b/lib/unstable/graphics/format/ai/ai_file.li
@@ -0,0 +1,62 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := AI_FILE;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Adobe Illustrator File";
+    
+Section Inherit
+  
+  + parent_std_file:Expanded FILE;
+
+Section Public
+
+  + width:INTEGER;
+
+  + height:INTEGER;
+
+  - fill_bitmap f:FILE in b:ABSTRACT_BITMAP scale s:REAL_16_16 <-
+  ( + tmp_buf:FAST_ARRAY(CHARACTER);
+    + ai_parser:AI_PARSER;
+    
+    tmp_buf := FAST_ARRAY(CHARACTER).create_with_capacity (f.size);
+    f.read tmp_buf size (f.size);
+    ai_parser := AI_PARSER.create tmp_buf;
+    width  := ai_parser.width;
+    height := ai_parser.height;
+    ai_parser.draw b scale s;
+  );  
+  
+  - is_type n:ABSTRACT_STRING :BOOLEAN <-
+  // Return true if the file name has '.ai' or '.AI' suffix
+  (
+    ? {n != NULL};
+    ? {! n.is_empty};
+    (n.has_suffix ".ai") || { n.has_suffix ".AI"}
+  );
+  
+
+
+
diff --git a/lib/unstable/graphics/format/ai/ai_layer.li b/lib/unstable/graphics/format/ai/ai_layer.li
new file mode 100644
index 0000000..3d0133b
--- /dev/null
+++ b/lib/unstable/graphics/format/ai/ai_layer.li
@@ -0,0 +1,96 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := AI_LAYER;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Layer of a AI document.";
+
+  - version := 1;    
+  
+Section Inherit  
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  + color:AI_COLOR;
+  
+  + operation:LINKED_LIST(AI_OPERATION);
+  
+  + is_fill:BOOLEAN;
+  
+  + is_stroke:BOOLEAN;
+      
+  //
+  // Creation.
+  //
+  
+  - create lst_op:LINKED_LIST(AI_OPERATION) color col:AI_COLOR fill f:BOOLEAN stroke s:BOOLEAN :SELF <-
+  ( + result:SELF;
+    result := clone;
+    result.make lst_op color col fill f stroke s;
+    result
+  );
+  
+  - make lst_op:LINKED_LIST(AI_OPERATION) color col:AI_COLOR fill f:BOOLEAN stroke s:BOOLEAN <-
+  (
+    color     := col;
+    operation := lst_op;
+    is_stroke := s;
+    is_fill   := f;
+  );
+  
+  //
+  // Draw
+  //
+  
+  - draw b:ABSTRACT_BITMAP scale s:REAL_16_16 <-
+  (
+    ? { color != NULL};
+    ? { operation !=  NULL};
+    
+    /*
+    (operation.lower).to (operation.upper) do { i:INTEGER;      
+      operation.item i.display; 
+    };
+    */
+
+    is_fill.if {      
+      b.color (color.rgbcolor_fill);
+      (operation.lower).to (operation.upper) do { i:INTEGER;
+	operation.item i.draw_fill b scale s;
+      };
+      b.poly_trace;
+    };
+    is_stroke.if {
+      b.color (color.rgbcolor_stroke);
+      (operation.lower).to (operation.upper) do { i:INTEGER;
+	operation.item i.draw_stroke b scale s;
+      };
+    };
+
+  );
+  
+
diff --git a/lib/unstable/graphics/format/ai/ai_line.li b/lib/unstable/graphics/format/ai/ai_line.li
new file mode 100644
index 0000000..5407eda
--- /dev/null
+++ b/lib/unstable/graphics/format/ai/ai_line.li
@@ -0,0 +1,87 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := AI_LINE;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Operation: line.";
+
+  - version := 1;  
+  
+Section Inherit
+  
+  - parent_ai_operation:AI_OPERATION := AI_OPERATION;
+  
+Section Public
+  
+  + x:REAL_16_16;  
+  + y:REAL_16_16;
+  
+  //
+  // Creation.
+  //
+  
+  - create (lx,ly:REAL_16_16) :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make (lx,ly);
+    result
+  );
+  
+  - make (lx,ly:REAL_16_16) <-
+  (
+    x := lx;
+    y := ly;
+  );
+  
+  //
+  // Draw.
+  //
+  
+  - draw_stroke b:ABSTRACT_BITMAP scale s:REAL_16_16 <-
+  (
+    b.line_to (((x * s).rounded),((y * s).rounded));
+  );
+
+  - draw_fill b:ABSTRACT_BITMAP scale s:REAL_16_16 <-
+  (
+    b.poly_line_to (((x * s).rounded),((y * s).rounded));
+  );
+  
+  //
+  // Display.
+  //
+  
+  - display <-
+  (
+    "poly_line_to ".print;
+    (x *# 8).rounded.print;
+    ','.print;
+    (y *# 8).rounded.print;
+    ";\n".print;
+  );
+
+
+
+
diff --git a/lib/unstable/graphics/format/ai/ai_move.li b/lib/unstable/graphics/format/ai/ai_move.li
new file mode 100644
index 0000000..5c1cad7
--- /dev/null
+++ b/lib/unstable/graphics/format/ai/ai_move.li
@@ -0,0 +1,87 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := AI_MOVE;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Operation: move.";
+  - version := 1;  
+  
+Section Inherit
+  
+  - parent_ai_operation:AI_OPERATION := AI_OPERATION;
+  
+Section Public
+  
+  + x:REAL_16_16;
+  + y:REAL_16_16;
+  
+  //
+  // Creation.
+  //
+  
+  - create (lx,ly:REAL_16_16) :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make (lx,ly);
+    result
+  );
+  
+  - make (lx,ly:REAL_16_16) <-
+  (
+    x := lx;
+    y := ly;
+  );
+  
+  //
+  // Draw.
+  //
+  
+  - draw_stroke b:ABSTRACT_BITMAP scale s:REAL_16_16 <-
+  (    
+    b.move_to (((x * s).rounded),((y * s).rounded));
+  );
+  
+  - draw_fill b:ABSTRACT_BITMAP scale s:REAL_16_16 <-
+  (    
+    b.poly_move_to (((x * s).rounded),((y * s).rounded));    
+  );
+  
+  //  
+  // Display.
+  //
+  
+  - display <-
+  (
+    "poly_move_to ".print;
+    (x *# 8).rounded.print;
+    ','.print;
+    (y *# 8).rounded.print;
+    ";\n".print;
+  );
+
+  
+
+
+
diff --git a/lib/unstable/graphics/format/ai/ai_operation.li b/lib/unstable/graphics/format/ai/ai_operation.li
new file mode 100644
index 0000000..2145447
--- /dev/null
+++ b/lib/unstable/graphics/format/ai/ai_operation.li
@@ -0,0 +1,52 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name    := AI_OPERATION;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment :="Operations of .AI document.";
+
+  - version := 1;  
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  //
+  // Draw.
+  //
+  
+  - draw_stroke b:ABSTRACT_BITMAP scale s:REAL_16_16 <- deferred;
+
+  - draw_fill b:ABSTRACT_BITMAP scale s:REAL_16_16 <- deferred;
+  
+  //
+  // Display.
+  //
+  
+  - display <- deferred;
+
+
diff --git a/lib/unstable/graphics/format/ai/ai_parser.li b/lib/unstable/graphics/format/ai/ai_parser.li
new file mode 100644
index 0000000..7d78930
--- /dev/null
+++ b/lib/unstable/graphics/format/ai/ai_parser.li
@@ -0,0 +1,1709 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := AI_PARSER;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     :="Startup system : First object.";
+  
+  - version := 1;  
+  
+Section Inherit  
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - msg_err:STRING;
+
+  - trace:BOOLEAN;
+  
+  + position:INTEGER;
+  
+  + source:FAST_ARRAY(CHARACTER);
+  
+  - string_tmp:STRING;
+  
+  - last_character:CHARACTER <-
+  ( + result:CHARACTER;
+    (position > source.upper).if {
+      result := 0.to_character;
+    } else {
+      result := source.item position;
+    };
+    result
+  );
+  
+  - end_source:BOOLEAN <-
+  (
+    last_character = 0.to_character
+  );
+  
+  - last_integer:INTEGER;
+  
+  - last_string:STRING_CONSTANT;
+  
+  - last_real_16_16:REAL_16_16;
+  
+  - last_flag:BOOLEAN;
+  
+  - is_new_line:BOOLEAN;
+  
+  - is_space:BOOLEAN <-
+  (
+    { last_character = ' '  } || { last_character = '\n' } ||
+    { last_character = '\t' } || { last_character = '\f' } ||
+    { last_character = '\a' } || { last_character = '\r' } ||
+    { last_character = '\b' } || { last_character = '\v' }
+  );
+  
+  - read_space:BOOLEAN <-
+  ( + old_pos:INTEGER;
+    old_pos := position;
+    { end_source || { ! is_space }}.until_do {
+      ( last_character = '\n' ).if {
+	is_new_line := TRUE;
+      };
+      position := position + 1;
+    };
+    (position < source.upper).if {
+      // Delete Comments except the first (type of the file)
+      (position > 1).if {
+	((last_character = '%') & (source.item (position + 1) != '%')).if {
+	  { end_source || { last_character = '\n' }}.until_do {
+	    position := position + 1;
+	  };
+	};
+      };
+    };
+    ((position != old_pos) | (! end_source ))
+  );
+    
+  - read_keyword s:STRING_CONSTANT :BOOLEAN <- 
+  ( + result:BOOLEAN;
+    + j,old_pos:INTEGER;
+    read_space;
+    j := s.lower;
+    old_pos := position;    
+    { end_source || { j > s.upper } || { last_character != s.item j }}.until_do {
+      j := j + 1;
+      position := position + 1;
+    };
+    (j > s.upper).if {      
+      result := TRUE;
+      
+      trace.if {
+	"\n----> Read Keyword: ".print;
+	s.print;
+	'\n'.print;
+      };
+      
+    } else {
+      position := old_pos;
+    };
+    result
+  );
+  
+  - read_identifier:BOOLEAN <-
+  ( + result:BOOLEAN;
+    read_space;
+    string_tmp.clear;
+    { end_source ||  {! ( last_character.is_letter || {last_character.is_digit} || {last_character = '_'} || {last_character = '-' })}}.until_do {
+      string_tmp.add_last last_character;
+      position := position + 1;
+    };    
+    //string_tmp.print;
+    (! string_tmp.is_empty).if {
+      last_string := AI_ALIAS.get string_tmp;
+      result := TRUE;
+    };
+    
+    trace.if {
+      "\n----> Read_Identifier: ".print;    
+      string_tmp.print;
+      '\n'.print;
+    };
+    
+    result
+  );
+  
+  - read_string:BOOLEAN <-
+  (+ result:BOOLEAN;
+    read_space;
+    string_tmp.clear;
+    { end_source || { last_character = '(' } || { last_character = ')' } || { last_character = '\n'}}.until_do {
+      string_tmp.add_last last_character;
+      position := position + 1;
+    };
+    (! string_tmp.is_empty).if {
+      last_string := AI_ALIAS.get string_tmp; 
+      result := TRUE;
+    };      
+    result    
+  );
+  
+  - read_flag:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    read_space;
+    (last_character = '0').if {
+      last_flag := FALSE;
+      result := TRUE;
+      position := position + 1;
+    }.elseif {last_character = '1' } then {
+      last_flag := TRUE;
+      result := TRUE;
+      position := position + 1;
+    };
+    
+    trace.if {
+      "\n----> Read Flag: ".print;
+      last_flag.to_string.print;
+      '\n'.print;
+    };
+    
+    result  
+  );
+  
+  - read_integer:BOOLEAN <-
+  ( + result:BOOLEAN;
+    + old_pos:INTEGER;        
+    read_space;
+    old_pos := position;
+    (last_character = '-').if {
+      string_tmp.add_last '-';
+      position := position + 1;
+      read_space;
+    };
+    last_character.is_digit.if {
+      result := TRUE;
+      string_tmp.clear;
+      string_tmp.add_last last_character;
+      position := position + 1;
+      { ! last_character.is_digit }.until_do {
+	string_tmp.add_last last_character;
+	position := position + 1;
+      };      
+      (last_character = '.').if {
+	// Real
+	result := FALSE;
+	position := old_pos;
+      } else {
+	last_integer := string_tmp.to_integer;
+      };
+    };
+    
+    trace.if {
+      "\n----> Read Integer: ".print;
+      last_integer.print;
+      '\n'.print;
+    };
+    
+    result    
+  );
+  
+  - read_real_16_16:BOOLEAN <-
+  ( + result:BOOLEAN;
+    + old_pos:INTEGER;
+    + find:BOOLEAN;
+    read_space;    
+    old_pos := position;
+    (last_character = '-').if {
+      string_tmp.add_last '-';
+      position := position + 1;
+      read_space;
+    };
+    (last_character = '.').if {
+      string_tmp.add_last '.';
+      position := position + 1;
+      find := TRUE;
+    };
+    last_character.is_digit.if {
+      result := TRUE;
+      string_tmp.clear;
+      string_tmp.add_last last_character;
+      position := position + 1;
+      { ! last_character.is_digit }.until_do {
+	string_tmp.add_last last_character;
+	position := position + 1;
+      };
+      (last_character = '.').if {
+	find.if {
+	  // Already read '.'
+	  result := FALSE;
+	  position := old_pos;
+	} else {
+	  string_tmp.add_last '.';
+	  position := position + 1;
+	  { ! last_character.is_digit }.until_do {
+	    string_tmp.add_last last_character;
+	    position := position + 1;
+	  };
+	};
+      };
+
+      last_real_16_16 := string_tmp.to_real_16_16;
+    };
+    
+    trace.if {
+      "\n----> Real: ".print;
+      last_real_16_16.print;
+      '\n'.print;
+    };
+    
+    result    
+  );
+  
+  - read_comment:BOOLEAN <-
+  (
+    { end_source || { last_character = '\n'} }.until_do {
+      position := position + 1; 
+    };
+    TRUE 
+  );
+
+  - read_character c:CHARACTER :BOOLEAN <- 
+  ( + result:BOOLEAN;
+    read_space;
+    (last_character = c).if {
+      position := position + 1;
+      result := TRUE;
+    };
+    result
+  );
+
+  //
+  // Error Management
+  // 
+  
+  - syntax_error txt:ABSTRACT_STRING <-
+  (
+    msg_err.clear;
+    msg_err.append "\n--SYNTAX-------\n";
+    msg_err.append txt;
+    msg_err.append " Line ";
+    msg_err.append (get_line.to_string);    
+    msg_err.print;
+    die_with_code exit_failure_code;
+  );
+  
+  - missing_keyword txt:ABSTRACT_STRING <-
+  (
+    msg_err.clear;
+    msg_err.append "\n--MISSING KEYWORD-------\n";
+    msg_err.append txt;
+    msg_err.append " Line ";
+    msg_err.append (get_line.to_string);
+    msg_err.print;
+    die_with_code exit_failure_code;
+  );
+  
+  - print_line <-
+  (
+    " Line ".print;
+    get_line.to_string.print;
+  );
+  
+  - get_line:INTEGER <-
+  ( + pos:INTEGER;
+    + line:INTEGER;
+    pos := source.lower;
+    line := 1;
+    {pos = position}.until_do {
+      (source.item pos = '\n').if {
+	line := line + 1;
+      };
+      pos := pos + 1;
+    };
+    line
+  );
+  
+  // Last read coordinates
+  - last_x:REAL_16_16;  
+  - last_y:REAL_16_16;
+    
+  // Current Point
+  - x_cur:REAL_16_16;
+  - y_cur:REAL_16_16;
+  
+Section Public
+  
+  + llx:REAL_16_16; // lower horizontal bound
+  + urx:REAL_16_16; // upper horizontal bound
+  + lly:REAL_16_16; // lower vertical bound
+  + ury:REAL_16_16; // upper vertical bound
+  
+  + width :INTEGER;  
+  + height:INTEGER;
+    
+  //
+  // Results
+  //
+  
+  + list_layer:LINKED_LIST(AI_LAYER);
+  
+  + current_list:LINKED_LIST(AI_OPERATION);
+  
+  + current_color:AI_COLOR;
+  
+  //
+  // Grammar Rules
+  //
+  
+  //++ DOCUMENT          -> PROLOGUE
+  //++                      SCRIPT  
+  - read_document <-
+  (     
+    trace.if {  
+      "\n Read Document".print;
+      print_line;
+    };
+    
+    (! read_prologue).if {
+      syntax_error "Wrong file format";
+    };
+    (! read_script).if {
+      syntax_error "Incorrect Script";            
+    };
+    
+    trace.if {  
+      "\n## End Read Document".print;
+      print_line;
+    };
+  );
+    
+  //++ PROLOGUE          -> '%!PS-Adobe-2.0 EPSF-1.2'
+  //++                      [ comment ]
+  //++                      '%%BoundingBox:'real real real real
+  //++                      [ comment ]
+  //++                      '%%EndProlog'  
+  - read_prologue:BOOLEAN <-
+  ( + result:BOOLEAN;   
+    
+    trace.if {  
+      "\n Read Prologue".print;
+      print_line;
+    };
+    
+    read_keyword (AI_ALIAS.prefix_file).if {
+      { read_keyword (AI_ALIAS.bounding_box) }.until_do {
+        read_comment;
+      };
+      (! read_real_16_16).if {
+        syntax_error "Missing llx";
+      };
+      llx := last_real_16_16;
+      (! read_real_16_16).if {
+        syntax_error "Missing lly";
+      };
+      lly := last_real_16_16;
+      (! read_real_16_16).if {
+        syntax_error "Missing urx";
+      };
+      urx := last_real_16_16;
+      (! read_real_16_16).if {
+        syntax_error "Missing ury";
+      };
+      ury := last_real_16_16;
+      
+      width  := (urx - llx).to_integer;
+      height := (ury - lly).to_integer + 1;
+      
+      { read_keyword (AI_ALIAS.end_prolog) }.until_do {
+        read_comment;
+      };
+      result := TRUE;
+    };
+
+    (trace && {result}).if {  
+      "\n## End Read Prologue".print;
+      print_line;
+    };
+        
+    result
+  );
+  
+  //++ SCRIPT            -> SETUP
+  //++                      SCRIPT_BODY
+  //++                      TRAILER  
+  - read_script:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Script".print;
+      print_line;
+    };
+    
+    read_setup.if {
+      (! read_script_body).if {
+        syntax_error "Incorrect Script Body";
+      };
+      (! read_trailer).if {
+        syntax_error "Incorrect Trailer";
+      };
+      result := TRUE;
+    }; 
+    
+    (trace && {result}).if {  
+      "\n## End Read Script".print;
+      print_line;
+    };   
+    
+    result
+  );
+  
+  //++ SETUP             -> '%%BeginSetup'
+  //++                      ['Adobe_illustrator_' real 'begin']
+  //++                      [PROC_SETS_INIT]
+  //++                      FONT_ENCODING
+  //++                      [PATTERN_DEFS]
+  //++                      '%%EndSetup'  
+  - read_setup:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Setup".print;
+      print_line;
+    };
+    
+    read_keyword (AI_ALIAS.begin_setup).if {
+      (read_keyword (AI_ALIAS.adobe_illustrator)).if {
+        (! read_real_16_16).if {
+          syntax_error "Wrong num version";
+        };
+        (! read_keyword (AI_ALIAS.begin)).if {
+          missing_keyword (AI_ALIAS.begin);
+        };
+      };
+      read_proc_sets_init;
+      (! read_font_encoding).if {
+        syntax_error "Incorrect font encoding";
+      };
+      read_pattern_defs;
+      (! read_keyword (AI_ALIAS.end_setup)).if {
+        missing_keyword (AI_ALIAS.end_setup);
+      };
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Setup".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ PROC_SETS_INIT    -> { INITIALIZE }
+  - read_proc_sets_init:BOOLEAN <-
+  (
+    
+    trace.if {  
+      "\n Read Proc Sets Init".print;
+      print_line;
+    };
+    
+    {read_initialize}.while_do { };
+    
+    trace.if {  
+      "\n## End Read Proc Sets Init".print;
+      print_line;
+    };
+    
+    TRUE
+  );
+  
+  //++ INITIALIZE        -> identifier '/initialize get exec'
+  - read_initialize:BOOLEAN <-
+  (+ result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Initialize".print;
+      print_line;
+    };
+    
+    read_identifier.if {
+      (! read_keyword (AI_ALIAS.initialize)).if {
+        missing_keyword (AI_ALIAS.initialize);
+      };
+      result := TRUE;
+    };
+
+    (trace && {result}).if {  
+      "\n Read Initialize".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ FONT_ENCODING     -> { RE_ENCODING }
+  - read_font_encoding:BOOLEAN <-
+  (    
+    trace.if {  
+      "\n Read Font Encoding".print;
+      print_line;
+    };
+    
+    { read_re_encoding }.while_do { };
+    
+    trace.if {  
+      "\n## End Read Font Encoding".print;
+      print_line;
+    };
+    
+    TRUE
+  );
+  
+  //++ RE_ENCODING       -> '%%BeginEncoding:' newfontname oldfontname
+  //++                      Z
+  //++                      '%%EndEncoding'
+  - read_re_encoding:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read ReEncoding".print;
+      print_line;
+    };
+    
+    read_keyword (AI_ALIAS.begin_encoding).if {
+      (! read_identifier).if {
+        syntax_error "Missing newfontname identifier";
+      };
+      (! read_identifier).if {
+        syntax_error "Missing oldfontname identifier";
+      };
+      (! read_upper_z).if {
+        syntax_error "Wrong syntax for Z operator";
+      };
+      (! read_keyword (AI_ALIAS.end_encoding)).if {
+        missing_keyword (AI_ALIAS.end_encoding);
+      };
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read ReEncoding".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ Z                 -> '['[NEW_ENCODING]']' '/' identifier '/' identifier integer 'Z'
+  - read_upper_z:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read upper Z".print;
+      print_line;
+    };
+    
+    read_character '['.if {
+      read_new_encoding;
+      (! read_character ']').if {
+        syntax_error "Mismatch Bracket";
+      };
+      (!read_character '/').if {
+        missing_keyword "/";
+      };
+      (! read_identifier).if {
+        syntax_error "Missing newfontname identifier";
+      };
+      (! read_character '/').if {
+        missing_keyword "/";
+      };
+      (! read_identifier).if {
+        syntax_error "Missing oldfontname identifier";
+      };
+      read_integer;
+      (! read_character 'Z').if {
+        missing_keyword "Z";
+      };
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read upper Z".print;
+      print_line;
+    };
+    
+    result                    
+  );
+  
+  //++ NEW_ENCODING      -> { integer '/' identifier { '/' identifier}}
+  - read_new_encoding:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read New Encoding".print;
+      print_line;
+    };
+    
+    { read_integer }.while_do {
+      (! read_character '/').if {
+        missing_keyword "/";
+      };
+      (! read_identifier).if {
+        syntax_error "Missing name identifier";
+      };
+      { read_character '/' }.while_do {
+        (! read_identifier).if {
+          syntax_error "Missing name identifier";
+        };
+      };
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read New Encoding".print;
+      print_line;
+    };
+    
+    result        
+  );  
+  
+  //++ PATTERN_DEFS      -> { PATTERN }
+  - read_pattern_defs:BOOLEAN <-
+  (    
+    trace.if {  
+      "\n Read Pattern Def".print;
+      print_line;
+    };
+    
+    { read_pattern }.while_do { };
+
+    trace.if {  
+      "\n## End Read Pattern Def".print;
+      print_line;
+    };
+    TRUE
+  );
+  
+  //++ PATTERN           -> '%%BeginPattern:' '('patternname')'
+  //++                      E
+  //++                      '%%EndPattern'
+  - read_pattern:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Pattern".print;
+      print_line;
+    };
+    
+    read_keyword (AI_ALIAS.begin_pattern).if {
+      (! read_character '(').if {
+        syntax_error "Mismatch parentheses";
+      };
+      (! read_identifier).if {
+        syntax_error "Missing pattername identifier";
+      };
+      (! read_character ')').if {
+        syntax_error "Mismatch parentheses";
+      };
+      (! read_upper_e).if {
+        syntax_error "Wrong syntax for E operator";
+      };
+      (! read_keyword (AI_ALIAS.end_pattern)).if {
+        missing_keyword (AI_ALIAS.end_pattern);
+      };
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Pattern".print;
+      print_line;
+    };
+    
+    result      
+  );
+  
+  //++ E                 -> '(' patternname ')' real real real real real [LAYER_LIST] 'E'
+  - read_upper_e:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Upper E".print;
+      print_line;
+    };
+    
+    (read_character '(').if {
+      (! read_identifier).if {
+        syntax_error "Missing patternname identifier";
+      };
+      (! read_character ')').if { 
+        syntax_error "Mismatch parentheses";
+      };
+      (! read_real_16_16).if {
+        syntax_error "Missing llx identifier";
+      };
+      (! read_real_16_16).if {
+        syntax_error "Missing lly identifier";
+      };
+      (! read_real_16_16).if {
+        syntax_error "Missing urx identifier";
+      };
+      (! read_real_16_16).if {
+        syntax_error "Missing ury identifier";
+      };
+      read_layer_list;
+      (! read_character 'E').if {
+        missing_keyword "E";
+      };
+      
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Upper E".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ LAYER_LIST        -> { LAYER_COLOR LAYER_TILE }
+  - read_layer_list:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Layer List".print;
+      print_line;
+    };
+    
+    { read_layer_color }.while_do {
+      (! read_layer_tile).if {
+        syntax_error "Incorrect layer tile.";
+      };
+    };
+    
+    (trace && {result}).if {  
+      "\n## Read Layer List".print;
+      print_line;
+    };
+    
+    TRUE
+  );
+  
+  //++ LAYER_COLOR       -> '(' COLOR ')' '@'
+  - read_layer_color:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Layer Color".print;
+      print_line;
+    };
+    
+    read_character '('.if {
+      (! read_color).if {
+        syntax_error "Incorrect Color";
+      };
+      (! read_character ')').if {
+        missing_keyword ")";
+      };
+      (! read_character '@').if {
+        missing_keyword "@";
+      };      
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Layer Color".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ LAYER_TILE        -> '(' TILE_DEFINITION ')' '&' 
+  //++                    | '_' '&'  
+  - read_layer_tile:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Layer Tile".print;
+      print_line;
+    };
+    
+    (read_character '(').if {
+      (! read_tile_definition).if {
+        syntax_error "Incorrect Tile Definition";        
+      };
+      (! read_character ')').if {
+        syntax_error "Mismatch parentheses";
+      };
+      (! read_character '&').if {
+        missing_keyword "&";
+      };
+      result := TRUE;
+    }.elseif { read_character '_' } then {
+      (! read_character '&').if {
+        missing_keyword "&";
+      };
+      result := TRUE;
+    };     
+    
+    (trace && {result}).if {  
+      "\n## End Read Layer Tile".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ COLOR             -> COLOR_COMPOSITE { COLOR_COMPOSITE }
+  - read_color:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Color".print;
+      print_line;
+    };
+        
+    read_color_composite.if {
+      { read_color_composite }.while_do {
+      };
+      result := TRUE;
+    };
+
+    (trace && {result}).if {  
+      "\n## End Read Color".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ COLOR_COMPOSITE   -> flag 'O'
+  //++                    | flag 'R'
+  //++                    | real 'g' 
+  //++                    | real 'G' 
+  //++                    | real real real real 'k' 
+  //++                    | real real real real 'K'  
+  //++                    | real real real real '(' string ')' real 'x' 
+  //++                    | real real real real '(' string ')' real 'X'   
+  - read_color_composite:BOOLEAN <-
+  ( + result:BOOLEAN;
+    + c,m,y,k,g:REAL_16_16;
+    + old_pos:INTEGER;
+    
+    trace.if {  
+      "\n Read Color Composite".print;
+      print_line;
+    };
+    
+    old_pos := position;
+    read_flag.if {
+      (read_character 'O').if {
+        result := TRUE;        
+      }.elseif { read_character 'R'} then {
+        result := TRUE;
+      } else {
+        position := old_pos;
+      };
+    };
+    ((! result) &&  {read_real_16_16}).if {
+      c := last_real_16_16;
+      (read_character 'g').if {
+        result := TRUE;
+        current_color.make_gray_fill last_real_16_16;
+      }.elseif { read_character 'G' } then {
+        result := TRUE;
+        current_color.make_gray_stroke last_real_16_16;
+      }.elseif { read_real_16_16 } then {
+        m := last_real_16_16;
+        (read_real_16_16).if {
+	  y := last_real_16_16;
+	  (! read_real_16_16).if {
+	    syntax_error "Incorrect K color composite.";
+	  };          
+	  k := last_real_16_16;
+	  (read_character 'k').if {
+	    result := TRUE;
+	    current_color.make_cmyk_fill (c,m,y,k);
+	  }.elseif { read_character 'K'} then {
+	    result := TRUE;
+	    current_color.make_cmyk_stroke (c,m,y,k);
+	  }.elseif { read_character '('} then {
+	      (! read_string).if {
+		syntax_error "Incorrect String.";
+	      };
+	    (! read_character ')').if {
+	      syntax_error "Mismatch parentheses";
+	    };        
+	    (! read_real_16_16).if {
+	      syntax_error "Incorrect Gray color composite.";
+	    };
+	    g := last_real_16_16;
+	    (read_character 'x').if {
+	      current_color.make_cmykg_fill (c,m,y,k,g);
+	      result := TRUE;
+	    }.elseif {read_character 'X'} then {
+	      result := TRUE;
+	      current_color.make_cmykg_fill (c,m,y,k,g);
+	    };
+          };                          
+	} else {                    
+	  position := old_pos;
+	};
+      };
+    };
+
+    (trace && {result}).if {  
+      "\n## End Read Color Composite".print;
+      print_line;
+    };
+
+    result
+  );
+  
+  //++ TILE_DEFINITION   -> OBJ_WITHOUT_COL
+  - read_tile_definition:BOOLEAN <-
+  ( + result:BOOLEAN;    
+    
+    trace.if {  
+      "\n Read Tile Definition".print;
+      print_line;
+    };
+    
+    result := read_obj_without_col;
+    
+    trace.if {  
+      "\n## End Read Tile Definition".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ OBJECT            -> COLOR { OBJ_WITHOUT_COL }
+  - read_object:BOOLEAN <-
+  ( + result:BOOLEAN;
+    trace.if {  
+      "\n Read Object".print;
+      print_line;
+    };
+    
+    (read_color).if {
+      result := TRUE;
+      { read_obj_without_col }.while_do { };
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Object".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ OBJ_WITHOUT_COL   -> [ GRAPHICS_STATE ] { '%%Note:' comment } ( GRAPHIC | TEXT )   
+  - read_obj_without_col:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Obj Without col".print;
+      print_line;
+    };
+    
+    read_graphics_state;
+    { read_keyword (AI_ALIAS.note)}.while_do {
+      read_comment;
+    };
+    (read_graphic || {read_text}).if {
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Obj Without col".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ GRAPHICS_STATE    -> GRAPH_COMPOSITE { GRAPH_COMPOSITE } 
+  - read_graphics_state:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Graphics State".print;
+      print_line;
+    };
+    
+    read_graph_composite.if {
+      { read_graph_composite }.while_do { };
+      result := TRUE;
+    };
+
+    (trace && {result}).if {  
+      "\n## End Read Graphics State".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ GRAPH_COMPOSITE   -> '[' { real } ']' integer 'd'
+  //++                    | integer  ( 'j' | 'J' | 'M' ) 
+  //++                    | real ( 'i' | 'w' )
+  - read_graph_composite:BOOLEAN <-
+  ( + result:BOOLEAN;
+    + old_pos:INTEGER;
+    
+    trace.if {  
+      "\n Read Graph Composite".print;
+      print_line;
+    };
+    
+    old_pos := position;
+    (read_character '[').if {
+      { read_real_16_16 }.while_do {
+      };
+      (! read_character ']').if {
+        syntax_error "Incorrect Graph Composite";
+      };
+      (! read_integer).if {
+        syntax_error "Incorrect Graph Composite";
+      };
+      (! read_character 'd').if {
+        missing_keyword "d";
+      };
+      result := TRUE;
+    }.elseif {read_integer} then {
+      (read_character 'j').if {
+        result := TRUE;
+      }.elseif {read_character 'J'} then {
+        result := TRUE;
+      }.elseif {read_character 'M'} then {
+        result := TRUE;
+      } else {                      
+        position := old_pos;        
+      };
+    };
+    ((! result) && { read_real_16_16}).if { 
+      (read_character 'i').if {
+        result := TRUE;
+      }.elseif {read_character 'w'} then {
+        result := TRUE; 
+      } else {
+        position := old_pos;
+      };
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Graph Composite".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ GRAPHIC           -> PATH PAINT_OPERATOR
+  - read_graphic:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Graphic".print;
+      print_line;
+    };
+    
+    read_path.if {
+      (! read_paint_operator).if {
+        syntax_error "Incorrect Paint operator";
+      };
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Graphic".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ PATH              -> COORD 'm' {PATH_COMPOSITE}
+  - read_path:BOOLEAN <-
+  ( + result:BOOLEAN;
+    + op:AI_OPERATION;
+    
+    trace.if {  
+      "\n Read Path".print;
+      print_line;
+    };
+    
+    read_coord.if {
+      (! read_character 'm').if {        
+        missing_keyword "m";
+      };
+      op := AI_MOVE.create (last_x,last_y);
+      current_list.add_last op;
+      x_cur := last_x;
+      y_cur := last_y;
+      
+      {read_path_composite}.while_do { };
+      
+      result := TRUE;      
+    };    
+    
+    (trace && {result}).if {  
+      "\n## End Read Path".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ PATH_COMPOSITE    -> COORD ( 'l' | 'L' )
+  //++                    | COORD COORD ( 'v' | 'V' | 'y' | 'Y' )
+  //++                    | COORD COORD COORD ( 'c' | 'C' )
+  - read_path_composite:BOOLEAN <-
+  ( + result:BOOLEAN;    
+    + x1,y1,x2,y2,x3,y3:REAL_16_16;
+    + op:AI_OPERATION;
+    
+    trace.if {  
+      "\n Read Path Composite".print;
+      print_line;
+    };
+    
+    read_coord.if {
+      x1 := last_x;
+      y1 := last_y;
+      ((read_character 'l') || {read_character 'L'}).if {
+	result := TRUE;
+	op := AI_LINE.create (x1,y1);
+        x_cur := x1;
+        y_cur := y1;
+      }.elseif {read_coord} then {
+        x2 := last_x;
+        y2 := last_y;
+        ((read_character 'v') || {read_character 'V'}).if {
+	  result := TRUE;          
+	  op := AI_BEZIER.create_w1 (x_cur,y_cur) w2 (x1,y1) to (x2,y2); 
+          x_cur := x2;
+          y_cur := y2;
+        }.elseif {(read_character 'y') || {read_character 'Y'}} then {
+	  result := TRUE;
+	  op := AI_BEZIER.create_w1 (x1,y1) w2 (x2,y2) to (x2,y2); 
+          x_cur := x2;
+          y_cur := y2;
+        }.elseif {read_coord} then {  
+          x3 := last_x;
+          y3 := last_y;
+          ((read_character 'c') || {read_character 'C'}).if {
+	    result := TRUE;
+	    op := AI_BEZIER.create_w1 (x1,y1) w2 (x2,y2) to (x3,y3);
+            x_cur := x3;
+            y_cur := y3;
+          } else {
+            syntax_error "Incorrect Path Composite";
+          };
+        } else {
+          syntax_error "Incorrect Path Composite";
+        };
+      } else {
+        syntax_error "Incorrect Path Composite";
+      };        
+    };
+    (op != NULL).if {
+      current_list.add_last op;
+    };
+
+    (trace && {result}).if {  
+      "\n## End Read Path Composite".print;
+      print_line;
+    };
+    
+    result
+  );  
+  
+  //++ PAINT_OPERATOR    -> 'N' | 'n' | 'F' | 'f' | 'S' | 's' | 'B' | 'b' | 'H' | 'h' | 'W'
+  - read_paint_operator:BOOLEAN <-
+  ( + result,is_fill,is_stroke:BOOLEAN;
+    + new_layer:AI_LAYER;
+    
+    trace.if {  
+      "\n Read Paint Operator".print;
+      print_line;
+    };
+    
+    result := TRUE;
+    (read_character 'N').if {
+      // Nothing.
+    }.elseif {read_character 'n'} then {  
+      // Nothing.      
+    }.elseif {read_character 'F'} then {        
+      // Fill.      
+      is_fill := TRUE;
+    }.elseif {read_character 'f'} then {
+      // Fill.
+      is_fill := TRUE;
+    }.elseif {read_character 'S'} then {
+      // Stroke.
+      is_stroke := TRUE;
+    }.elseif {read_character 's'} then {
+      // Stroke.
+      is_stroke := TRUE;
+    }.elseif {read_character 'B'} then {
+      // Fill + Stroke.
+      is_stroke := TRUE;
+      is_fill   := TRUE;
+    }.elseif {read_character 'b'} then {
+      // Fill + Stroke.
+      is_stroke := TRUE;
+      is_fill   := TRUE;
+    }.elseif {read_character 'H'} then {
+      // ??
+    }.elseif {read_character 'h'} then {
+      // ??
+    }.elseif {read_character 'W'} then {
+      // ??
+    } else {      
+      syntax_error "Incorrect Paint Operator";
+      result := FALSE;
+    };
+    result.if {
+      new_layer := AI_LAYER.create current_list color current_color fill is_fill stroke is_stroke;
+      current_list := LINKED_LIST(AI_OPERATION).create;
+      current_color:= current_color.clone;
+      list_layer.add_last new_layer;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Paint Operator".print;
+      print_line;
+    };
+    
+    result    
+  );
+  
+  //++ TEXT              -> '/' identifier real real real integer 'z' TEXT_COMPOSITE { TEXT_CONTENT } 'T'
+  - read_text:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Text".print;
+      print_line;
+    };
+    
+    (read_character '/').if {
+      read_identifier.if {
+        read_real_16_16.if {
+          read_real_16_16.if {
+            read_real_16_16.if {
+              read_integer.if {
+                read_character 'z'.if {
+                  read_text_composite.if {
+                    { read_text_content }.while_do { };
+                    read_character 'T'.if {
+                      result := TRUE;
+                    };
+                  };
+                };
+              };
+            };
+          };
+        };
+      };
+      (! result).if {
+        syntax_error "Incorrect text";
+      };
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Text".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ TEXT_CONTENT      -> [ integer ] '(' string ')' 't' 
+  - read_text_content:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Text Content".print;
+      print_line;
+    };
+    
+    read_integer;
+    read_character '('.if {
+      read_string.if {
+        read_character ')'.if {
+          read_character 't'.if {
+            result := TRUE;
+          };
+        };
+      };
+      (! result).if {
+        syntax_error "Incorrect Text content";
+      };
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Text Content".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ TEXT_COMPOSITE    -> '[' real real real real real real ']' ( 'a' | 'e' | 'I' | 'o' | 'r' )
+  - read_text_composite:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Text Composite".print;
+      print_line;
+    };
+    
+    read_character '['.if {
+      read_real_16_16.if {
+        read_real_16_16.if {
+          read_real_16_16.if {
+            read_real_16_16.if {  
+              read_real_16_16.if {
+                read_real_16_16.if {
+                  read_character ']'.if { 
+                    read_character 'a'.if {
+                      result := TRUE;
+                    }.elseif {read_character 'e'} then {
+                      result := TRUE;
+                    }.elseif {read_character 'I'} then {
+                      result := TRUE;
+                    }.elseif {read_character 'o'} then {
+                      result := TRUE;
+                    }.elseif {read_character 'r'} then {
+                      result := TRUE;
+                    };
+                  };
+                };
+              };
+            };
+          };
+        };
+      };
+      (! result).if {
+        syntax_error "Incorrect Text Composite";
+      };
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Text Composite".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ COORD             -> real real 
+  - read_coord:BOOLEAN <-
+  ( + result:BOOLEAN;
+    + old_pos:INTEGER;
+    
+    trace.if {  
+      "\n Read Coord".print;
+      print_line;
+    };
+    
+    old_pos := position;
+    read_real_16_16.if {
+      last_x := last_real_16_16 - llx;
+      (! read_real_16_16).if {
+        position := old_pos;
+      } else {
+	last_y := (- (last_real_16_16 +# 1 - lly) +# height);
+	result := TRUE;
+      };
+    };
+
+    (trace && {result}).if {  
+      "\n## End Read Coord".print;
+      print_line;
+    };
+    
+    result    
+  );
+  
+  //++ SCRIPT_BODY       -> { ELEMENT | IMPORT_DOC }
+  - read_script_body:BOOLEAN <-
+  (
+    
+    trace.if {  
+      "\n Read Script Body".print;
+      print_line;
+    };
+    
+    { read_element || { read_import_doc } }.while_do {      
+    };
+    
+    trace.if {  
+      "\n## End Read Script Body".print;
+      print_line;
+    };
+    
+    TRUE
+  );
+  
+  //++ ELEMENT           -> { A }
+  //++                      GROUP | OBJECT
+  - read_element:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Element".print;
+      print_line;
+    };
+    
+    { read_upper_a }.while_do { };
+    (read_group || { read_object }).if {
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Element".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ A                 -> flag 'A'
+  - read_upper_a:BOOLEAN <-
+  ( + result:BOOLEAN;
+    + old_pos:INTEGER;    
+    
+    trace.if {  
+      "\n Read A".print;
+      print_line;
+    };
+    
+    old_pos := position;
+    read_flag.if {
+      (! read_character 'A').if {
+        position := old_pos;
+      } else {
+        result := TRUE;
+      };
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read A".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ GROUP             -> ['*'] 'u'
+  //++                      OBJECT_SEQ
+  //++                      ['*'] 'U'
+  //++                    | 'q'
+  //++                      OBJECT_SEQ
+  //++                      'Q'
+  - read_group:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Group".print;
+      print_line;
+    };
+    
+    read_character '*';
+    (read_character 'u').if {
+      (! read_object_seq).if {
+        syntax_error "Incorrect Object Seq";
+      };
+      read_character '*';
+      (! read_character 'U').if {
+        missing_keyword "U";
+      };
+      result := TRUE;
+    }.elseif { read_character 'q' } then {
+      (! read_object_seq).if {
+        syntax_error "Incorrect Object Seq";
+      };
+      (! read_character 'Q').if {
+        missing_keyword "Q";
+      };
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Group".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ OBJECT_SEQ        -> { ELEMENT }
+  - read_object_seq:BOOLEAN <-
+  (
+    
+    trace.if {  
+      "\n Read Object Seq".print;
+      print_line;
+    };
+    
+    { read_element }.while_do { };
+    
+    trace.if {  
+      "\n## End Read Object Seq".print;
+      print_line;
+    };
+    
+    TRUE
+  );
+  
+  //++ IMPORT_DOC        -> '''
+  //++                      '%%IncludeFile:' filename
+  //++                      '~'
+  - read_import_doc:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Import Doc".print;
+      print_line;
+    };
+    
+    read_character '\''.if {
+      (! read_keyword (AI_ALIAS.include_file)).if {
+        missing_keyword (AI_ALIAS.include_file);
+      };
+      (! read_identifier).if {
+        syntax_error "Missing filename identifier";
+      };
+      (! read_character '~').if {
+        missing_keyword "~";
+      };
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Import Doc".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //++ TRAILER           -> '%%Trailer'
+  //++                      { TERMINATE }
+  - read_trailer:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Trailer".print;
+      print_line;
+    };
+    
+    read_keyword (AI_ALIAS.trailer).if {
+      { read_terminate }.while_do { };
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Trailer".print;
+      print_line;
+    };
+    
+    result    
+  );
+  
+  //++ TERMINATE         -> (identifier '/terminate get exec' | '_E end')
+  - read_terminate:BOOLEAN <-
+  ( + result:BOOLEAN;
+    
+    trace.if {  
+      "\n Read Terminate".print;
+      print_line;
+    };
+    
+    read_keyword (AI_ALIAS.end).if {
+      result := TRUE;
+    }.elseif {read_identifier} then {
+      (! read_keyword (AI_ALIAS.terminate)).if {
+        syntax_error "Incorrect terminate.";
+      };
+      result := TRUE;
+    };
+    
+    (trace && {result}).if {  
+      "\n## End Read Terminate".print;
+      print_line;
+    };
+    
+    result
+  );
+  
+  //
+  // Parser
+  //
+  
+  - create s:FAST_ARRAY(CHARACTER) :SELF <-
+  ( + result:SELF;
+    result := clone;
+    result.make s;
+    result
+  );    
+  
+  - make s:FAST_ARRAY(CHARACTER) <-
+  (
+    AI_ALIAS.make;
+    source := s;
+    position := 0;
+    msg_err := STRING.create 80;
+    string_tmp := STRING.create 250;
+    list_layer := LINKED_LIST(AI_LAYER).create;
+    current_color := AI_COLOR.clone;
+    current_list  := LINKED_LIST(AI_OPERATION).create;
+    trace := FALSE;
+    read_document;    
+  );
+  
+  - draw b:ABSTRACT_BITMAP scale coef:REAL_16_16 <-
+  ( + s:REAL_16_16;
+    ? {list_layer != NULL};
+    ? {b != NULL};
+    s := coef;
+    width  := (s *# width).ceiling;
+    height := (s *# height).ceiling;
+    // BSBS: Avec b.make tu reallou de la mémoire, c'est à revoir ...
+    ((width != b.width) || {height != b.height}).if {
+      b.make_size (width,height);
+      b.rectangle_fill (0,0) to ((width -1),(height - 1)) color 083AAD3h;
+    };    
+    (s <= 0).if {
+      s := 1;
+    };
+    (list_layer.lower).to (list_layer.upper) do { i:INTEGER;
+      list_layer.item i.draw b scale s;
+    };          
+  );
+
+
+
diff --git a/lib/unstable/graphics/format/bmp/bmp_header.li b/lib/unstable/graphics/format/bmp/bmp_header.li
new file mode 100644
index 0000000..1f9fa93
--- /dev/null
+++ b/lib/unstable/graphics/format/bmp/bmp_header.li
@@ -0,0 +1,159 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := BMP_HEADER;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "Mapping BMP Image File Header structure";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Mapping
+  
+  //
+  // File Header
+  //
+  
+  + file_type1:CHARACTER;     //00h  Must be 'B'
+  + file_type2:CHARACTER;     //01h  Must be 'M'  
+  + file_size:UINTEGER_32;       //02h  Size of file
+  + reserved:UINTEGER_32;        //06h
+  + map_bitmap_offset:UINTEGER_32;   //0Ah   Offset of the data section  
+  
+  //
+  // Bitmap Header
+  //
+  
+  + header_size:UINTEGER_32;     //0Eh  Size of this header
+  + map_width:INTEGER;            //12h  width (in pixel) of the image
+  + map_height:INTEGER;           //16h  height (in pixel)
+  + planes:UINTEGER_16;         //1Ah  number of planes use (always 1)
+  + map_bits_per_pixel:UINTEGER_16; //1Ch  number of bits per pixel (1,4,8,16,24,32)
+  + compression:UINTEGER_32;     //1Eh  compression method:
+  // 0: no compression
+  // 1: 8-bit run length encoding
+  // 2: 4-bit run length encoding
+  // 3: bitfields encoding
+
+  + size_of_bitmap:UINTEGER_32;  //22h  size of image (in octet), useful for compression
+  + h_resolution:UINTEGER_32;    //26h  horizontal resolution (in pixel per meter)
+  + v_resolution:UINTEGER_32;    //2Ah  vertical resolution (in pixel per meter)
+  + colors_used:UINTEGER_32;     //2Eh  number of colors 
+  + colors_important:UINTEGER_32;//32h  number of important colors
+
+Section Public  
+  
+  - bits_per_pixel:UINTEGER_16 <- map_bits_per_pixel;
+  
+  - width :INTEGER <- map_width;
+  - height:INTEGER <- map_height;   
+  - bitmap_offset:UINTEGER_32 <- map_bitmap_offset;
+
+  - file_type:STRING <-
+  ( + result:STRING;
+    result := STRING.create 0;
+    result.add_last file_type1;
+    result.add_last file_type2;
+    result
+  );
+  
+  - is_valid:BOOLEAN <-
+  (
+    (file_type1 = 'B') && {file_type2 = 'M'}
+  );
+  
+  - is_bgr_format:BOOLEAN <-
+  (
+    header_size = object_size + get_nb_colors * 3
+  );
+  
+  - get_nb_colors:INTEGER <-
+  ( + result:INTEGER;
+    (colors_used = 0).if {
+      is_8bit.if {
+	result := 256;
+      }.elseif {is_4bit} then {
+	result := 16;
+      } else {
+	result := 2;
+      };
+    } else {
+      result := colors_used.to_integer;
+    };
+    result
+  );
+  
+  - is_1bit:BOOLEAN <-
+  (
+    bits_per_pixel = 1
+  );
+  
+  - is_4bit:BOOLEAN <-
+  (
+    bits_per_pixel = 4
+  );
+  
+  - is_8bit:BOOLEAN <-
+  (
+    bits_per_pixel = 8
+  );
+  
+  - is_24bit:BOOLEAN <-
+  (
+    bits_per_pixel = 24
+  );
+  
+  - is_rle8_compressed:BOOLEAN <-
+  (
+    compression = 1
+  );
+  
+  - print <-
+  (
+    "\nFile size: ".print;
+    file_size.print;
+    "\nHeader size: ".print;
+    header_size.print;
+    "\nOffset: ".print;
+    bitmap_offset.print;
+    "\nBitmap size (w x h): ".print;
+    width.print;
+    " x ".print;
+    height.print;
+    "\nBits per pixel: ".print;
+    bits_per_pixel.print;
+    "\nCompression: ".print;
+    compression
+    .when 0 then {"None".print;} 
+    .when 1 then {"8-bit RLE".print;}
+    .when 2 then {"4-bit RLE".print;}
+    .when 3 then {"Bitfield".print;};    
+    "\nSize of bitmap: ".print;
+    size_of_bitmap.print;
+    "\nColors used: ".print;
+    colors_used.print;   
+    '\n'.print;
+  );
diff --git a/lib/unstable/graphics/format/bmp/format_bmp.li b/lib/unstable/graphics/format/bmp/format_bmp.li
new file mode 100644
index 0000000..c4bca2c
--- /dev/null
+++ b/lib/unstable/graphics/format/bmp/format_bmp.li
@@ -0,0 +1,259 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := FORMAT_BMP;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "Mapping BMP Image File (V < 4.0)";
+    
+Section Inherit
+  
+  + parent_format_img:Expanded FORMAT_IMG;
+  
+Section Public
+    
+  - name:STRING_CONSTANT := "Bitmap format by Microboft & IBM.";
+      
+  - extension:STRING_CONSTANT := "bmp";
+  
+  - is_bitmap:BOOLEAN := TRUE;
+    
+  - height:INTEGER <- header.height;
+  - width:INTEGER  <- header.width;
+  
+  //
+  // Creation.
+  //
+
+  - create_with_file f:FILE :SELF <-
+  ( 
+    clone.make_with_file f
+  );
+
+  - make_with_file f:FILE :SELF <-
+  ( + result:SELF;    
+    file := f;
+    (read_header).if {
+      result := Self;
+      pos_buffer := BMP_HEADER.object_size;
+    };
+    result
+  );
+  
+  - create_with buf:FAST_ARRAY(UINTEGER_8) :SELF <-
+  ( 
+    clone.make_with buf
+  );
+
+  - make_with buf:FAST_ARRAY(UINTEGER_8) :SELF <-
+  ( + result:SELF;
+    buffer := buf;
+    (read_header).if {
+      result := Self;
+      pos_buffer := BMP_HEADER.object_size;
+    };
+    result
+  );
+  
+  //
+  // Put image.
+  //
+  
+  - put_image_in bmp:ABSTRACT_BITMAP <-
+  [
+    -? {header != NULL};
+    -? {(bmp.width = header.width) && {bmp.height = header.height}};
+  ]
+  ( + end:BOOLEAN;
+    + x,y:INTEGER;
+    + line_24:BMP_LINE(PIXEL_24);    
+    + tmp_pix:PIXEL_24;
+    + escape,cmd:UINTEGER_8;
+    + align:UINTEGER_32;
+    + pos:INTEGER;
+    
+    line_24 := BMP_LINE(PIXEL_24).create (header.width);
+    header.is_8bit.if {
+      //
+      // 8 Bit
+      // 	        
+      init_color_map;      
+      header.is_rle8_compressed.if {	  
+        pos := header.bitmap_offset.to_integer;
+        y := header.height;
+        {end}.until_do {
+          escape := buffer_item pos;
+          pos := pos + 1;
+          ? { x <= header.width};
+          ? { y >= 0};
+          (escape = 00h).if {
+            cmd := buffer_item pos;
+            pos := pos + 1;
+            (cmd = 00h).if {
+              bmp.line_h (0,y) until (header.width - 1) image line_24;	
+              x := 0;
+              y := y - 1;
+            }.elseif {cmd = 01h} then {
+              // End of file
+              bmp.line_h (0,y) until (header.width - 1) image line_24;	
+              end := TRUE;
+            }.elseif {cmd = 02h} then {
+              // Move cursor: usually not used except for MS icons
+              pos := pos + 2;
+            } else {
+              // Pixel not compressed
+              1.to cmd do { j:INTEGER;
+                line_24.item_24 x.make (color_map.item (buffer_item pos).get_color);
+                pos := pos + 1;
+                x := x + 1;
+              };
+              cmd.is_odd.if {
+                pos := pos + 1;
+              };
+            };				
+          } else {
+            // Pixel compressed
+            tmp_pix := color_map.item (buffer_item pos);                        
+            pos := pos + 1;
+            1.to escape do { j:INTEGER;
+              line_24.item_24 x.make (tmp_pix.get_color);
+              x := x + 1;
+            };
+          };
+        }; 	  	  	  
+      };		
+    }.elseif {header.is_24bit} then {	
+      //
+      // 24 Bit
+      //	      
+      align := ((header.width * -3) & 011b).to_uinteger_32;
+      pos := header.bitmap_offset;
+      // No compression
+      0.to (header.height - 1) do { i:INTEGER;
+        1.to (header.width) do { j:INTEGER;          
+          line_24.item_24 (j-1).make_rgb (
+            buffer_item (pos + 2),
+            buffer_item (pos + 1),
+            buffer_item (pos)
+          );          
+          pos := pos + 3;
+        };
+        pos := pos + align;
+        /*
+        "bmp.width    : ".print; bmp.width.print; '\n'.print;
+        "header.width : ".print; header.width.print; '\n'.print;
+        "line_24.width: ".print; line_24.count.print; '\n'.print;
+        */
+        bmp.line_h (0,header.height - i - 1) 
+        until (header.width - 1) image line_24;        
+      };	    
+    };
+  );
+  
+  - put_image_in bmp:ABSTRACT_BITMAP scale s:REAL_16_16 <-
+  (
+    not_yet_implemented;
+  );
+  
+Section Private
+  
+  + file:FILE;
+  + buffer:FAST_ARRAY(UINTEGER_8);
+  + header:BMP_HEADER;
+      
+  - read_header:BOOLEAN <-
+  (     
+    (file != NULL).if {
+      header := BMP_HEADER.clone;
+      (file.is_open).if_false {
+        (file.open).if_false {
+          "FORMAT_BMP : Open file fail!\n".print;
+          die_with_code 0;
+        };
+      };
+      file.read header;
+    } else {
+      header := CONVERT(NATIVE_ARRAY(UINTEGER_8),BMP_HEADER).on (buffer.storage);
+    };
+    header.is_valid
+  );
+  
+  - buffer_item p:INTEGER :UINTEGER_8 <-
+  ( + result:UINTEGER_8;
+    (buffer != NULL).if {
+      result := buffer.item p;
+    } else {
+      `/* CUR1 */`;
+      buffer := FAST_ARRAY(UINTEGER_8).create_with_capacity (file.size);
+      `/* CUR2 */`;
+      file.set_cursor 0;
+      file.read buffer size (file.size);      
+      result := buffer.item p;
+    };
+    result
+  );
+      
+  
+  //
+  
+  - color_map:FAST_ARRAY(Expanded PIXEL_24);
+
+  
+  - init_color_map <-
+  ( + code,nb_colors:INTEGER;    
+    ? {header != NULL};
+    //
+    // Init Color Table
+    // 
+    header.is_bgr_format.if {
+      code := 3;
+    } else {
+      code := 4;
+    };
+    nb_colors := header.get_nb_colors;
+    (color_map = NULL).if {
+      color_map := FAST_ARRAY(PIXEL_24).create 256;
+    };            
+    0.to (nb_colors-1) do { j:INTEGER; 
+      color_map.item j
+      .make_rgb (
+	buffer_item (pos_buffer + 2),
+	buffer_item (pos_buffer + 1),
+	buffer_item (pos_buffer + 0)
+      );
+      pos_buffer := pos_buffer + code;
+    };
+  );
+          
+  - buf_item :UINTEGER_8 <-
+  ( + result:UINTEGER_8;
+    result := bmp_buffer.item pos_buffer;
+    pos_buffer := pos_buffer + 1;
+    result
+  );
+  
+
+  
+
+  
diff --git a/lib/unstable/graphics/format/format_img.li b/lib/unstable/graphics/format/format_img.li
new file mode 100644
index 0000000..9d16cf9
--- /dev/null
+++ b/lib/unstable/graphics/format/format_img.li
@@ -0,0 +1,104 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := FORMAT_IMG;
+
+  - copyright := "2003-2008 Sonntag Benoit";
+
+  - author    := "Sonntag Benoit (sonntag at icps.u-strasbg.fr)";
+  - comment   := "Format image generic";
+
+Section Inherit
+
+  - parent_object:OBJECT := OBJECT;
+
+Section Public
+  
+  - name:STRING_CONSTANT <- 
+  (
+    deferred; 
+    NULL
+  );
+      
+  - extension:STRING_CONSTANT <-
+  (
+    deferred;
+    NULL
+  );
+  
+  - is_bitmap:BOOLEAN <-
+  (
+    deferred;
+    FALSE
+  );
+  
+  - is_vectorial:BOOLEAN <- ! is_bitmap;
+  
+  - height:INTEGER <- ( deferred; 0);
+  - width:INTEGER  <- ( deferred; 0);
+  
+  //
+  // Creation.
+  //
+
+  - create_with_file f:FILE :SELF <-
+  ( + result:SELF;
+    result := clone;
+    result.make_with_file f;
+    result
+  );
+
+  - make_with_file f:FILE :SELF <-
+  ( 
+    deferred;
+  );
+  
+  - create_with buf:FAST_ARRAY(UINTEGER_8) :SELF <-
+  ( + result:SELF;
+    result := clone;
+    result.make_with buf;
+    result
+  );
+
+  - make_with buf:FAST_ARRAY(UINTEGER_8) :SELF <-
+  ( 
+    deferred;
+  );
+  
+  //
+  // Put image.
+  //
+  
+  - put_image_in bmp:ABSTRACT_BITMAP <-
+  (
+    deferred;
+  );
+  
+  - put_image_in bmp:ABSTRACT_BITMAP scale s:REAL_16_16 <-
+  (
+    deferred;
+  );
+  
+Section FORMAT_IMG
+  
+  + pos_buffer:INTEGER;
+  
\ No newline at end of file
diff --git a/lib/unstable/graphics/low_level/abstract_bitmap.li b/lib/unstable/graphics/low_level/abstract_bitmap.li
new file mode 100644
index 0000000..ec3acb3
--- /dev/null
+++ b/lib/unstable/graphics/low_level/abstract_bitmap.li
@@ -0,0 +1,1592 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := ABSTRACT_BITMAP;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "Generic Bitmap.";
+    
+  - external    := `
+//
+// Font System 1250 bytes.
+//
+unsigned short __index_font[96]={
+0x000,0x007,0x008,0x00B,0x012,0x017,0x021,0x028,0x029,0x02C,0x02F,0x034,
+0x039,0x03B,0x03F,0x040,0x044,0x049,0x04C,0x051,0x056,0x05B,0x060,0x065,
+0x06A,0x06F,0x074,0x075,0x077,0x07C,0x081,0x086,0x08B,0x097,0x0A0,0x0A7,
+0x0AF,0x0B7,0x0BE,0x0C5,0x0CD,0x0D5,0x0D6,0x0DB,0x0E2,0x0E8,0x0F1,0x0F9,
+0x101,0x109,0x111,0x11A,0x121,0x12A,0x132,0x13B,0x148,0x150,0x159,0x15F,
+0x162,0x166,0x169,0x16E,0x175,0x177,0x17E,0x184,0x18A,0x190,0x196,0x199,
+0x19F,0x1A4,0x1A5,0x1A7,0x1AD,0x1AE,0x1B7,0x1BC,0x1C2,0x1C8,0x1CE,0x1D1,
+0x1D6,0x1D9,0x1DE,0x1E5,0x1EE,0x1F4,0x1FB,0x1FF,0x204,0x205,0x20A,0x211};
+
+unsigned short __graph_font[0x211]={
+0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x17F8,0x0078,0x0000,
+0x0078,0x0200,0x1E40,0x03C0,0x1E78,0x03C0,0x0278,0x0040,0x08E0,0x1110,
+0x3FF8,0x1110,0x0E60,0x0030,0x0848,0x0448,0x0230,0x0100,0x0080,0x0C40,
+0x1220,0x1210,0x0C00,0x0E00,0x1170,0x1088,0x1188,0x1670,0x0800,0x1400,
+0x0078,0x1FC0,0x6030,0x8008,0x8008,0x6030,0x1FC0,0x0050,0x0060,0x0038,
+0x0060,0x0050,0x0100,0x0100,0x07C0,0x0100,0x0100,0x2000,0x1000,0x0100,
+0x0100,0x0100,0x0100,0x1000,0x7000,0x0E00,0x01C0,0x0038,0x0FF0,0x1008,
+0x1008,0x1008,0x0FF0,0x0010,0x0010,0x1FF8,0x1C30,0x1208,0x1108,0x1088,
+0x1070,0x0810,0x1008,0x1088,0x1088,0x0F70,0x0300,0x0280,0x0260,0x0210,
+0x1FF8,0x09F8,0x1088,0x1088,0x1088,0x0F08,0x0FF0,0x1108,0x1088,0x1088,
+0x0F10,0x0008,0x1C08,0x0308,0x00C8,0x0038,0x0F70,0x1088,0x1088,0x1088,
+0x0F70,0x08F0,0x1108,0x1108,0x1088,0x0FF0,0x1040,0x2000,0x1040,0x0100,
+0x0380,0x06C0,0x0C60,0x0820,0x0280,0x0280,0x0280,0x0280,0x0280,0x0820,
+0x0C60,0x06C0,0x0380,0x0100,0x0030,0x0008,0x1708,0x0088,0x0070,0x03C0,
+0x0C30,0x1008,0x1008,0x2384,0x2444,0x2444,0x2244,0x25C8,0x1408,0x1430,
+0x03C0,0x1800,0x0600,0x0380,0x0260,0x0218,0x0260,0x0380,0x0600,0x1800,
+0x1FF8,0x1088,0x1088,0x1088,0x1088,0x1088,0x0F70,0x07E0,0x0810,0x1008,
+0x1008,0x1008,0x1008,0x0810,0x0420,0x1FF8,0x1008,0x1008,0x1008,0x1008,
+0x1008,0x0810,0x07E0,0x1FF8,0x1088,0x1088,0x1088,0x1088,0x1088,0x1008,
+0x1FF8,0x0088,0x0088,0x0088,0x0088,0x0088,0x0008,0x07E0,0x0810,0x1008,
+0x1008,0x1008,0x1108,0x0910,0x1F20,0x1FF8,0x0080,0x0080,0x0080,0x0080,
+0x0080,0x0080,0x1FF8,0x1FF8,0x0C00,0x1000,0x1000,0x1000,0x0FF8,0x1FF8,
+0x0080,0x0140,0x0220,0x0410,0x0808,0x1000,0x1FF8,0x1000,0x1000,0x1000,
+0x1000,0x1000,0x1FF8,0x0060,0x0180,0x0600,0x1800,0x0600,0x0180,0x0060,
+0x1FF8,0x1FF8,0x0010,0x0060,0x0080,0x0100,0x0600,0x0800,0x1FF8,0x07E0,
+0x0810,0x1008,0x1008,0x1008,0x1008,0x0810,0x07E0,0x1FF8,0x0108,0x0108,
+0x0108,0x0108,0x0108,0x0090,0x0060,0x07E0,0x0810,0x1008,0x1008,0x1008,
+0x1408,0x0810,0x17E0,0x1FF8,0x0108,0x0108,0x0108,0x0108,0x0108,0x0190,
+0x0E60,0x1000,0x0C70,0x1088,0x1088,0x1088,0x1108,0x1108,0x0E30,0x0008,
+0x0008,0x0008,0x0008,0x1FF8,0x0008,0x0008,0x0008,0x0008,0x07F8,0x0800,
+0x1000,0x1000,0x1000,0x1000,0x0800,0x07F8,0x0018,0x0060,0x0180,0x0600,
+0x1800,0x0600,0x0180,0x0060,0x0018,0x0038,0x00C0,0x0700,0x1800,0x0700,
+0x00C0,0x0038,0x00C0,0x0700,0x1800,0x0700,0x00C0,0x0038,0x1818,0x0420,
+0x0240,0x0180,0x0180,0x0240,0x0420,0x1818,0x0018,0x0020,0x0040,0x0080,
+0x1F00,0x0080,0x0040,0x0020,0x0018,0x1808,0x1608,0x1108,0x1088,0x1068,
+0x1018,0xFFF8,0x8008,0x8008,0x0038,0x01C0,0x0E00,0x7000,0x8008,0x8008,
+0xFFF8,0x0010,0x0008,0x0004,0x0008,0x0010,0x4000,0x4000,0x4000,0x4000,
+0x4000,0x4000,0x4000,0x0008,0x0010,0x0E80,0x1140,0x1140,0x1140,0x1140,
+0x0F80,0x1000,0x1FF8,0x0880,0x1040,0x1040,0x1040,0x0F80,0x0F80,0x1040,
+0x1040,0x1040,0x1040,0x0880,0x0F80,0x1040,0x1040,0x1040,0x0880,0x1FF8,
+0x0F80,0x1240,0x1240,0x1240,0x1240,0x0B80,0x0040,0x1FF0,0x0048,0x0F80,
+0x9040,0x9040,0x9040,0x8880,0x7FC0,0x1FF8,0x0080,0x0040,0x0040,0x1F80,
+0x1FC8,0x8000,0x7FC8,0x1FF8,0x0200,0x0300,0x0480,0x0840,0x1000,0x1FF8,
+0x1FC0,0x0080,0x0040,0x0040,0x1F80,0x0080,0x0040,0x0040,0x1F80,0x1FC0,
+0x0080,0x0040,0x0040,0x1F80,0x0F80,0x1040,0x1040,0x1040,0x1040,0x0F80,
+0xFFC0,0x0880,0x1040,0x1040,0x1040,0x0F80,0x0F80,0x1040,0x1040,0x1040,
+0x0880,0xFFC0,0x1FC0,0x0080,0x0040,0x0980,0x1240,0x1240,0x1240,0x0C80,
+0x0040,0x0FF0,0x1040,0x0FC0,0x1000,0x1000,0x0800,0x1FC0,0x00C0,0x0300,
+0x0C00,0x1000,0x0C00,0x0300,0x00C0,0x00C0,0x0700,0x1800,0x0700,0x00C0,
+0x0700,0x1800,0x0700,0x00C0,0x1040,0x0880,0x0700,0x0700,0x0880,0x1040,
+0x80C0,0x8300,0x4C00,0x3000,0x0C00,0x0300,0x00C0,0x1840,0x1640,0x1140,
+0x10C0,0x0200,0x0200,0x7DF0,0x8008,0x8008,0xFFF8,0x8008,0x8008,0x7DF0,
+0x0200,0x0200,0x0030,0x0008,0x0008,0x0010,0x0020,0x0020,0x0018};
+`;
+
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - get_abstract_bitmap:ABSTRACT_BITMAP <- Self;
+  
+  - get_y_line y:INTEGER :ABSTRACT_BMP_LINE <-
+  (
+    deferred;
+    NULL
+  );
+  
+  //
+  // Data.
+  //
+  
+  // Image size.
+  + height:INTEGER;       
+  + width:INTEGER;        
+  
+  - x_max:INTEGER <- width  - 1;
+  - y_max:INTEGER <- height - 1;
+    
+  // Clipping :
+  + clip_x0:INTEGER; 
+  + clip_y0:INTEGER;
+  + clip_x1:INTEGER;
+  + clip_y1:INTEGER;
+  
+  // Current position.
+  + spot_x:INTEGER;  
+  + spot_y:INTEGER;
+  
+  // Current color.
+  + rgbcolor    :UINTEGER_32; // Format: RRGGBB in hexadecimal
+  + rgbbackcolor:UINTEGER_32;
+  + transparent :BOOLEAN;
+  
+  + mode:UINTEGER_8 := mode_copy; // Set mode. 
+  
+  // Ref. `X.h'
+  - mode_copy:UINTEGER_8 := 03h;
+  - mode_xor :UINTEGER_8 := 06h;
+  
+  - set_mode m:UINTEGER_8 <-
+  (
+    mode := m;
+  );
+  
+  // Macro colors
+  
+  - black:UINTEGER_32 := 0000000h;
+  - white:UINTEGER_32 := 0FFFFFFh;
+  - red:UINTEGER_32   := 0FF0000h;
+  - green:UINTEGER_32 := 000FF00h;
+  - blue:UINTEGER_32  := 00000FFh;
+  - yellow:UINTEGER_32:= 0FFFF00h;
+  - purple:UINTEGER_32:= 0FF00FFh;
+  - cyan:UINTEGER_32  := 000FFFFh;
+  - gray:UINTEGER_32  := 0808080h;
+  - brown:UINTEGER_32 := 0400000h;  
+  
+  
+  - pixel_geometry:PIXEL <- (deferred; NULL);
+  
+  //
+  // Creation. 
+  //
+
+  - create_size (w,h:INTEGER) :SELF <-
+  ( + result:SELF;
+        
+    result:=clone;
+    result.make_size (w,h);
+    result
+  );
+  
+  - make_size (w,h:INTEGER) <-
+  (
+    deferred;
+  );
+  
+  - create (w,h:INTEGER) at offset_begin:UINTEGER_32 bytes_per_line lx:INTEGER :SELF <-   
+  ( + result:SELF;
+        
+    result:=clone;
+    result.make (w,h) at offset_begin bytes_per_line lx;
+    result
+  );
+  
+  - make (w,h:INTEGER) at offset_begin:UINTEGER_32 bytes_per_line lx:INTEGER <-
+  ( 
+    deferred;
+  );
+
+Section Public
+  
+  //
+  // Low level.
+  //   
+    
+  - pixel_hard (x,y:INTEGER) color col:UINTEGER_32 <-
+  ( 
+    deferred;
+  );
+  
+  - line_h_hard (x0,y0:INTEGER) until x1:INTEGER color col:UINTEGER_32 <-
+  ( 
+    deferred;
+  );
+    
+  - line_h_hard (x0,y0:INTEGER) until x1:INTEGER image line:ABSTRACT_BMP_LINE offset ofs:INTEGER <-
+  (     
+    deferred;
+  );
+  
+  - get_pixel_hard (x,y:INTEGER) :PIXEL <-
+  (
+    deferred;
+  );
+
+  - get_color_hard (x,y:INTEGER) :UINTEGER_32 <-
+  (
+    deferred;
+  );
+  
+Section Public  
+  
+  - color col:UINTEGER_32 <-
+  (
+    rgbcolor := col;
+  );
+
+  - backcolor col:UINTEGER_32 <-
+  (
+    rgbbackcolor := col;
+  );
+  
+  - transparent_on <-
+  (
+    transparent := TRUE;
+  );
+  
+  - transparent_off <-
+  (
+    transparent := FALSE;
+  );
+  
+  - clipping (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  ( + lx,ly:INTEGER;
+    
+    lx := width - 1;
+    ly := height - 1;
+    clip_x0 := x0.max 0.min lx;
+    clip_x1 := x1.max 0.min lx;
+    clip_y0 := y0.max 0.min ly;
+    clip_y1 := y1.max 0.min ly;
+  );
+  
+  - clipping_off <-
+  (
+    clip_x0 := 0;
+    clip_x1 := width - 1;
+    clip_y0 := 0;
+    clip_y1 := height - 1;
+  );
+  
+  - move_to (pos_x,pos_y:INTEGER) <-
+  (
+    spot_x := pos_x;
+    spot_y := pos_y;
+  );
+  
+  //
+  // GetPixel
+  //
+  
+  - get_pixel:BOOLEAN <-
+  // Load Spot pixel.
+  ( + result:BOOLEAN;
+    + pix:PIXEL;
+    
+    ((spot_x.in_range clip_x0 to clip_x1) && {spot_y.in_range clip_y0 to clip_y1}).if {
+      result:=TRUE;
+      pix:=get_pixel_hard (spot_x,spot_y);
+      pix.is_transparent.if {
+	// Transparent.
+	rgbcolor := black;
+	transparent=TRUE;
+      } else {
+	// Read color.
+	transparent:= FALSE;
+	rgbcolor := pix.rgbcolor;
+      };
+    } else {
+      rgbcolor := black;
+      transparent := FALSE;
+    };
+    
+    result
+  );
+  
+  - get_pixel_to (x,y:INTEGER) :BOOLEAN<-
+  (
+    move_to (x,y);
+    get_pixel
+  );
+  
+  //
+  // PutPixel
+  //
+  
+  - pixel:BOOLEAN <-
+  ( + result:BOOLEAN;
+   
+    // Test Clipping;
+    ((spot_x.in_range clip_x0 to clip_x1) && {spot_y.in_range clip_y0 to clip_y1 }).if {
+      result:=TRUE;
+      pixel_hard (spot_x,spot_y) color rgbcolor;
+    };  
+    result
+  );
+  
+  - pixel_to (x,y:INTEGER) :BOOLEAN <-
+  (
+    move_to (x,y);
+    pixel
+  );
+  
+  - pixel_color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    pixel
+  );
+  
+  - pixel_to (x,y:INTEGER) color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    pixel_to (x,y)
+  );
+  
+  //
+  // Line
+  //
+  
+  - line_h (x,y:INTEGER) until x_end:INTEGER image line:ABSTRACT_BMP_LINE :BOOLEAN <-
+  (
+    + result:BOOLEAN;
+    + x02,x1,x0:INTEGER;
+    ? {x >= 0};
+    ? {y >= 0};
+    ? {x_end >= 0};
+    ? {line != NULL};
+    
+    x0 := x;
+    x1 := x_end;
+    spot_x := x1;        
+    (y.in_range clip_y0 to clip_y1).if {
+      result := TRUE;
+      ( x0 > x1 ).if {
+	x02 := x0;
+	x0 := x1;
+	x1 := x02;
+      };
+      ( clip_x1 < x1 ).if {
+	x1 := clip_x1;
+	result := FALSE;
+      };
+      
+      ( clip_x0 > x0 ).if {
+	x02 := clip_x0;
+	result := FALSE;
+      } else {
+	x02 := x0;
+      };
+      
+      ( x0 <= x1 ).if {
+	line_h_hard (x02,y) until x1 image line offset (x02-x0);
+      };
+    };
+    result
+  );
+  
+  - line_h_until x:INTEGER :BOOLEAN <-
+  ( + result:BOOLEAN;
+    + x0,x1:INTEGER;
+
+    x0 := spot_x;
+    x1 := x;
+    spot_x := x1;
+    
+    (spot_y.in_range clip_y0 to clip_y1).if {
+      result := TRUE;
+      
+      ( x0 > x1).if {
+	+ swap:INTEGER;
+	swap := x0;
+	x0 := x1;
+	x1 := swap;
+      };
+      
+      ( clip_x1 < x1 ).if {
+	x1 := clip_x1;
+	result := FALSE;
+      };
+      
+      ( clip_x0 > x0 ).if {
+	x0 := clip_x0;
+	result := FALSE;
+      };
+      
+      (x0 <= x1).if {
+	line_h_hard (x0,spot_y) until x1 color rgbcolor;
+      };
+    };
+    result
+  );
+    
+  - line_h_until x1:INTEGER color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    line_h_until x1
+  );
+  
+  - line_h (x0,y0:INTEGER) until x1:INTEGER :BOOLEAN <-
+  (
+    move_to (x0,y0);
+    line_h_until x1
+  );
+  
+  
+  - line_h (x0,y0:INTEGER) until x1:INTEGER color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    line_h (x0,y0) until x1
+  );
+  
+  - line_v_until y:INTEGER :BOOLEAN <-
+  ( + y0,y1:INTEGER;
+    + result:BOOLEAN;
+    
+    y0 := spot_y;
+    y1 := y;
+    spot_y := y1;
+    
+    (spot_x.in_range clip_x0 to clip_x1).if {
+      result := TRUE;
+      
+      ( y0 > y1 ).if {
+	+ swap:INTEGER;
+	swap := y0;
+	y0 := y1;
+	y1 := swap;
+      };
+      
+      ( clip_y1 < y1).if {
+	y1 := clip_y1;
+	result := FALSE;
+      };
+      
+      ( clip_y0 > y0 ).if {
+	y0 := clip_y0;
+	result := FALSE;
+      };
+      
+      ( y0 <=y1 ).if {
+	y0.to y1 do { j:INTEGER;
+	  pixel_hard (spot_x,j) color rgbcolor;
+	};
+      };
+    };    
+    
+    result
+  );
+  
+  - line_v_until y1:INTEGER color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    line_v_until y1
+  );
+  
+  - line_v (x0,y0:INTEGER) until y1:INTEGER :BOOLEAN <-
+  (
+    move_to (x0,y0);
+    line_v_until y1
+  );
+  
+  - line_v (x0,y0:INTEGER) until y1:INTEGER color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    line_v (x0,y0) until y1
+  );
+  
+  
+  //:UINTEGER_8 CalculCode(:INTEGER_64 X,:INTEGER_64 Y,:INTEGER_64 Xmin,:INTEGER_64 Ymin,:INTEGER_64 Xmax,:INTEGER_64 Ymax)
+  //{ return( (X<Xmin)|((X>Xmax)<<1)|((Y<Ymin)<<2)|((Y>Ymax)<<3) );
+  //};
+  
+  //************************
+  //* CLIPPING DE LINE BUGGE -> Blocage !!!
+  //************************
+  
+/*  
+  char ClipLine(:INTEGER_64 x0,:INTEGER_64 y0,:INTEGER_64 x1,:INTEGER_64 y1,:INTEGER_64 Xmin,:INTEGER_64 Ymin,:INTEGER_64 Xmax,:INTEGER_64 Ymax)
+  { :UINTEGER_8 Bool=0; // Accepte=Faux , Fin=Vrai
+    :UINTEGER_8 cod0,cod1,codExt;
+    short x,y;
+    char tst;
+    cod0=CalculCode(x0,y0,Xmin,Ymin,Xmax,Ymax);
+    cod1=CalculCode(x1,y1,Xmin,Ymin,Xmax,Ymax);
+    tst=((cod0==0) && (cod1==0));
+    do {
+      if ((cod0==0) && (cod1==0)) { // Interieur de la fenetre.
+	Bool=3;  // Accepte=Vrai et Fin=Vrai.
+      } else if ((cod0&cod1)!=0)
+      Bool|=2; // Fin=Vrai
+      else {                        // Segment ni accepte ni rejete.
+	if (cod0!=0) codExt=cod0; else codExt=cod1;
+	if (codExt&8) {
+	  x=x0+(x1-x0)*(float)(Ymax-y0)/(float)(y1-y0);
+	  y=Ymax;
+	} else if (codExt&4) {
+	  x=x0+(x1-x0)*(float)(Ymin-y0)/(float)(y1-y0);
+	  y=Ymin;
+	} else if (codExt&2) {
+	  x=Xmax;
+	  y=y0+(y1-y0)*(float)(Xmax-x0)/(float)(x1-x0);
+	} else if (codExt&1) {
+	  x=Xmin;
+	  y=y0+(y1-y0)*(float)(Xmin-x0)/(float)(x1-x0);
+	};
+	if (codExt==cod0) {
+	  x0=x; y0=y;
+	  cod0=CalculCode(x0,y0,Xmin,Ymin,Xmax,Ymax);
+	} else {
+	  x1=x; y1=y;
+	  cod1=CalculCode(x1,y1,Xmin,Ymin,Xmax,Ymax);
+	};
+      };
+    } while (!(Bool&2));
+    if (Bool&1) TraceLine(x0,y0,x1,y1);
+    return(tst);
+  };*/
+    
+  - line_to (x2,y2:INTEGER) :BOOLEAN <-
+  (
+    + result:BOOLEAN;
+    + x1,y1:INTEGER;
+    + dx,dy:INTEGER;
+    + i1,i2:INTEGER;
+    + x,y:INTEGER;
+    + dd:INTEGER;
+    
+    x1 := spot_x;
+    y1 := spot_y;
+    dx := x2 - x1;
+    dy := y2 - y1;
+    
+    ( dy = 0).if {
+      result := line_h_until x2;
+    }.elseif {dx = 0} then {
+      result := line_v_until y2;
+    } else {
+      spot_x := x2;
+      spot_y := y2;
+      
+      (dx >= 0).if {
+	(dy >= 0).if {
+	  (dx >= dy).if {	    	    	    
+	    i1 := 2 * dy;
+	    dd := i1 - dx;
+	    i2 := dd - dx;
+	    x := x1; 
+	    y := y1;
+	    {x <= x2}.while_do {
+	      pixel_to (x,y);
+	      (dd >= 0).if { 
+		y := y+1; 
+		dd := dd+i2; 
+	      } else {
+		dd := dd+i1;
+	      };
+	      x := x+1;
+	    };	    
+	  } else {
+	    i1 := 2 * dx;
+	    dd := i1 - dy;
+	    i2 := dd - dy;
+	    x := x1; 
+	    y := y1;
+	    {y <= y2}.while_do {
+	      pixel_to (x,y);
+	      (dd >= 0).if { 
+		x := x+1; 
+		dd := dd+i2; 
+	      } else {
+		dd := dd+i1;
+	      };
+	      y := y+1;
+	    };	    
+	  };
+	} else {
+	  (dx >= -dy).if {	    
+	    i1 := 2 * dy;
+	    dd := i1 + dx;
+	    i2 := dd + dx;
+	    x := x1; 
+	    y := y1;
+	    {x <= x2}.while_do {
+	      pixel_to (x,y);
+	      (dd <= 0).if { 
+		y := y - 1; 
+		dd := dd+i2; 
+	      } else {
+		dd := dd+i1;
+	      };
+	      x := x+1;
+	    };
+	  } else {
+	    i1 := 2 * dx;
+	    dd := i1 + dy;
+	    i2 := dd + dy;
+	    x := x1; 
+	    y := y1;
+	    {y >= y2}.while_do {
+	      pixel_to (x,y);
+	      (dd >= 0).if { 
+		x := x+1; 
+		dd := dd+i2; 
+	      } else {
+		dd := dd+i1;
+	      };
+	      y := y-1;
+	    };	    
+	  };	 
+	};
+      } else {
+	(dy >= 0).if {
+	  (-dx >= dy).if {
+	    i1 := 2 * dy;
+	    dd := i1 + dx;
+	    i2 := dd + dx;
+	    x := x1; 
+	    y := y1;
+	    {x >= x2}.while_do {
+	      pixel_to (x,y);
+	      (dd >= 0).if { 
+		y := y + 1; 
+		dd := dd+i2; 
+	      } else {
+		dd := dd+i1;
+	      };
+	      x := x - 1;
+	    };
+	  } else {
+	    i1 := 2 * dx;
+	    dd := i1 + dy;
+	    i2 := dd + dy;
+	    x := x1; 
+	    y := y1;
+	    {y <= y2}.while_do {
+	      pixel_to (x,y);
+	      (dd <= 0).if { 
+		x := x - 1; 
+		dd := dd+i2; 
+	      } else {
+		dd := dd+i1;
+	      };
+	      y := y + 1;
+	    };
+	  };
+	} else {
+	  (-dx >= -dy).if {
+	    i1 := 2 * dy;
+	    dd := i1 - dx;
+	    i2 := dd - dx;
+	    x := x1; 
+	    y := y1;
+	    {x >= x2}.while_do {
+	      pixel_to (x,y);
+	      (dd <= 0).if { 
+		y := y-1; 
+		dd := dd+i2; 
+	      } else {
+		dd := dd+i1;
+	      };
+	      x := x-1;
+	    };
+	  } else {
+	    i1 := 2 * dx;
+	    dd := i1 - dy;
+	    i2 := dd - dy;
+	    x := x1; 
+	    y := y1;
+	    {y >= y2}.while_do {
+	      pixel_to (x,y);
+	      (dd <= 0).if { 
+		x := x-1; 
+		dd := dd+i2; 
+	      } else {
+		dd := dd+i1;
+	      };
+	      y := y - 1;
+	    };
+	  };
+	};	 
+      };      
+      result:=TRUE;
+    };
+    
+    result
+  );
+  
+  - line_to (x1,y1:INTEGER) color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    line_to (x1,y1)
+  );
+  
+  
+  - line (x1,y1:INTEGER) to (x2,y2:INTEGER) :BOOLEAN <-
+  (
+    move_to (x1,y1);
+    line_to (x2,y2)
+  );
+  
+  
+  - line (x1,y1:INTEGER) to (x2,y2:INTEGER) color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    line (x1,y1) to (x2,y2)
+  );
+      
+  //
+  // Rectangle
+  //
+  
+  - rectangle_to (x1,y1:INTEGER) :BOOLEAN <-
+  (
+    + result:BOOLEAN;
+    + x0,y0:INTEGER;
+    x0 := spot_x;
+    y0 := spot_y;
+    (y0 = y1).if {
+      result := line_h_until x1;
+    }.elseif {x0 = x1} then {
+      result := line_v_until y1;
+    } else {
+      result := line_h (x0,y0) until x1 | line_h (x0,y1) until x1;
+      ( y0 < y1 ).if {
+	result := result | (line_v  (x0,(y0 + 1)) until (y1 - 1)) | (line_v (x1,(y0 + 1)) until (y1 - 1));
+      } else {
+	result := result | (line_v (x0,(y1 + 1)) until (y0 - 1)) | (line_v (x1,(y1 + 1)) until (y0 - 1));
+      };
+    };
+    result
+  );
+    
+  - rectangle_to (x1,y1:INTEGER) color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    rectangle_to (x1,y1)
+  );
+  
+  - rectangle (x0,y0:INTEGER) to (x1,y1:INTEGER) :BOOLEAN <-
+  (
+    move_to (x0,y0);
+    rectangle_to (x1,y1)
+  );
+  
+  - rectangle (x0,y0:INTEGER) to (x1,y1:INTEGER) color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    rectangle (x0,y0) to (x1,y1)
+  );
+  
+  - rectangle_fill_to (x,y:INTEGER) :BOOLEAN <-
+  ( + x0,y0,x1,y1,tmp:INTEGER;
+    + col:UINTEGER_32;
+    + result:BOOLEAN;
+    
+    x0 := spot_x;
+    y0 := spot_y;
+    x1 := x;
+    y1 := y;
+    ( x0 > x1).if {
+      tmp := x0;
+      x0 := x1;
+      x1 := tmp;
+    };
+    
+    ( y0 > y1).if {
+      tmp := y0;
+      y0 := y1;
+      y1 := tmp;
+    };
+    
+    (( x0 > clip_x1 ) || { x1 < clip_x0 } || { y0 > clip_y1 } || { y1 < clip_y0 }).if {
+      result := FALSE;
+    } else {
+      result := TRUE;
+      
+      (clip_x0 > x0).if {
+	x0 := clip_x0;
+	result := FALSE;
+      };
+      (clip_y0 > y0).if { 
+	y0 := clip_y0;
+	result := FALSE;
+      };
+      ( clip_x1 < x1 ).if {
+	x1 := clip_x1;
+	result := FALSE;
+      };
+      (clip_y1 < y1).if {
+	y1 := clip_y1;
+	result := FALSE;
+      };            
+      col := rgbcolor;
+      y0.to y1 do { j:INTEGER;
+	line_h_hard (x0,j) until x1 color col;
+      };
+    };
+    result
+  );
+    
+  - rectangle_fill (x0,y0:INTEGER) to (x1,y1:INTEGER) :BOOLEAN <-
+  (
+    move_to (x0,y0);
+    rectangle_fill_to (x1,y1)
+  );
+  
+  - rectangle_fill (x0,y0:INTEGER) to (x1,y1:INTEGER) color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    rectangle_fill (x0,y0) to (x1,y1)
+  );
+  
+  //
+  // Circle
+  //
+  
+Section Private  
+  
+  - circle_points (x,y:INTEGER) centre (cx,cy:INTEGER) <-
+  (     
+    pixel_to ((cx+x),(cy+y));
+    pixel_to ((cx+x),(cy-y));
+    pixel_to ((cx+y),(cy+x));
+    pixel_to ((cx+y),(cy-x));
+    pixel_to ((cx-x),(cy+y));
+    pixel_to ((cx-x),(cy-y));
+    pixel_to ((cx-y),(cy+x));
+    pixel_to ((cx-y),(cy-x));
+  );
+  
+Section Public  
+  
+  - circle_fill_rayon r:INTEGER <-
+  ( + cx,cy,x,y,d,de,dse:INTEGER;
+    
+    cx := spot_x;
+    cy := spot_y;
+    x   := 0;
+    y   := r;
+    d   := 1 - r;
+    de  := 3;
+    dse := 5 - (r << 1);    
+    line_h ((cx-y),cy) until (cx+y);
+    {y > x}.while_do {
+      (d < 0).if {
+	d   := d   + de;
+	de  := de  + 2;
+	dse := dse + 2;
+	x   := x   + 1;
+	
+	line_h ((cx-y),(cy+x)) until (cx+y);
+	line_h ((cx-y),(cy-x)) until (cx+y);
+      } else {
+	d   := d + dse;
+	de  := de  + 2;
+	dse := dse + 4;
+	x   := x   + 1;
+	y   := y   - 1;
+	line_h ((cx-x),(cy+y)) until (cx+x);
+	line_h ((cx-x),(cy-y)) until (cx+x);
+	
+	line_h ((cx-y),(cy+x)) until (cx+y);
+	line_h ((cx-y),(cy-x)) until (cx+y);
+      };      
+    };
+  );
+  
+  - circle_fill (x,y:INTEGER) rayon r:INTEGER <-
+  (
+    move_to (x,y);
+    circle_fill_rayon r;
+  );
+  
+  - circle_fill (x,y:INTEGER) rayon r:INTEGER color col:UINTEGER_32 <-
+  (
+    color col;
+    circle_fill (x,y) rayon r;
+  );
+
+  - circle_rayon r:INTEGER <-
+  ( + cx,cy,x,y,d,de,dse:INTEGER;
+    
+    cx := spot_x;
+    cy := spot_y;
+    x   := 0;
+    y   := r;
+    d   := 1 - r;
+    de  := 3;
+    dse := 5 - (r << 1);
+    circle_points (x,y) centre (cx,cy);
+    {y > x}.while_do {
+      (d < 0).if {
+	d   := d   + de;
+	de  := de  + 2;
+	dse := dse + 2;
+	x   := x   + 1;
+      } else {
+	d   := d + dse;
+	de  := de  + 2;
+	dse := dse + 4;
+	x   := x   + 1;
+	y   := y   - 1;
+      };
+      circle_points (x,y) centre (cx,cy);
+    };
+  );
+  
+  - circle (x,y:INTEGER) rayon r:INTEGER <-
+  (
+    move_to (x,y);
+    circle_rayon r;
+  );
+  
+  - circle (x,y:INTEGER) rayon r:INTEGER color col:UINTEGER_32 <-
+  (
+    color col;
+    circle (x,y) rayon r;
+  );
+  
+  //
+  // Spline
+  //
+  
+Section Private  
+  
+  - delta_spline:REAL_16_16 := 32768.to_raw_real_16_16;
+  
+Section Public  
+  
+  - spline_w1 (px0,py0:INTEGER) w2 (px1,py1:INTEGER) to (x1,y1:INTEGER) :BOOLEAN <-
+  ( + result:BOOLEAN;
+    + x0,y0,d_x,d_y:INTEGER;
+    + num_points:INTEGER;
+    // Derivatives of x(t) and y(t).
+    + x, dx, ddx, dddx:REAL_16_16; 
+    + y, dy, ddy, dddy:REAL_16_16;
+    // Temp variables used in the setup.
+    + dt, dt2, dt3:REAL_16_16;
+    + xdt2_term, xdt3_term:REAL_16_16;
+    + ydt2_term, ydt3_term:REAL_16_16;
+    
+    x0 := spot_x;
+    y0 := spot_y;
+        
+    d_x := px0 - x0;
+    d_y := py0 - y0;
+    num_points := (d_x*d_x + d_y*d_y).sqrt;      
+    
+    d_x := px1 - px0;
+    d_y := py1 - py0;
+    num_points := num_points + (d_x*d_x + d_y*d_y).sqrt; 
+    
+    d_x := x1 - px1;
+    d_y := y1 - py1;
+    num_points := (num_points + (d_x*d_x + d_y*d_y).sqrt).sqrt;
+    num_points := num_points + (num_points >> 2); // * 1.25 .sqrt
+    
+    
+    (num_points > 128).if {
+      num_points := 128; // Max points
+    };
+    
+    (num_points < 2).if {
+      num_points := 2;   // Min points
+    };
+    
+    dt := 1.to_real_16_16 /# (num_points - 1);
+    dt2 := dt * dt;
+    dt3 := dt2 * dt;
+    
+    // x coordinates.
+    xdt2_term := dt2 *# ((px1 - px0 * 2 + x0) * 3);
+    xdt3_term := dt3 *# (x1 + ((px0 - px1) * 3) -x0);
+    
+    dddx := xdt3_term *# 6;
+    ddx  := xdt3_term *# -6 + xdt2_term *# 2;
+    dx   := xdt3_term - xdt2_term + dt *# ((px0 - x0)*3);  
+    x    := x0.to_real_16_16;
+    
+    // y coordinates.
+    ydt2_term := dt2 *# ((py1 - py0 * 2 + y0) * 3);
+    ydt3_term := dt3 *# (y1 + ((py0 - py1) * 3) - y0);
+    
+    dddy := ydt3_term *# 6;
+    ddy  := ydt3_term *# -6 + ydt2_term *# 2;
+    dy   := ydt3_term - ydt2_term + dt *# ((py0 - y0)*3); 
+    y    := y0.to_real_16_16;
+        
+    x := x + delta_spline;
+    y := y + delta_spline;
+    
+    1.to (num_points - 1) do { i:INTEGER;
+      ddx := ddx + dddx;
+      dx := dx + ddx;
+      x := x + dx;
+      ddy := ddy + dddy;
+      dy := dy + ddy;
+      y := y + dy;
+      result:= result | line_to ((x.to_integer),(y.to_integer)); 
+    };    
+    result    
+  );
+  
+  - spline_w1 (px0,py0:INTEGER) w2 (px1,py1:INTEGER) to (x1,y1:INTEGER) color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    spline_w1 (px0,py0) w2 (px1,py1) to (x1,y1)
+  );
+  
+  
+  - spline (x0,y0:INTEGER) w1 (px0,py0:INTEGER) w2 (px1,py1:INTEGER) to (x1,y1:INTEGER) :BOOLEAN <-
+  (
+    move_to (x0,y0);
+    spline_w1 (px0,py0) w2 (px1,py1) to (x1,y1)
+  );
+  
+  
+  - spline (x0,y0:INTEGER) w1 (px0,py0:INTEGER) w2 (px1,py1:INTEGER) to (x1,y1:INTEGER) color col:UINTEGER_32 :BOOLEAN <-
+  (
+    color col;
+    spline (x0,y0) w1 (px0,py0) w2 (px1,py1) to (x1,y1)
+  );
+  
+  //*****************************************************************************
+  //*                         POLYGONE COMPLEXE                                 *
+  //* V.4.0 : Il n'y a plus de contrainte de sens comme dans la version 3.0     *
+  //*         Nouvelle algo made in `moi'...                                    *
+  //*         Il faut juste faire attention à appeler dans l'ordre suivant :    *
+  //*         => poly_move_to poly_line_to ... poly_trace                       *
+  //*                                                                           *
+  //* Rmq. : Il reste des optimisations à faire pour le tri (qsort) et utiliser *
+  //*        des MAP_FAST_ARRAY capable de s'agrandir dynamiquement ...        *
+  //*                                                                           *
+  //*                                                           BeN inside      *
+  //*****************************************************************************
+  
+Section Private  
+  
+  + edges:FAST_ARRAY(EDGE); // BSBS: A optimiser avec un MAP_FAST_ARRAY ... quand il y aura add_last, resize...
+
+  + edges_upper:INTEGER;
+  + poly_ymax:INTEGER := INTEGER.minimum.to_integer;
+  
+  + poly_list_y:FAST_ARRAY(EDGE);
+    
+  + begin_y:EDGE;  
+  + begin_idx:INTEGER;
+  
+  + last_y:EDGE;  
+  + last_idx:INTEGER;
+  
+  + x_origin:INTEGER;
+  + y_origin:INTEGER;
+  
+Section Private  
+  
+  - display_poly <-
+  ( + edge:EDGE;
+    
+    0.to (poly_list_y.upper) do { i:INTEGER;
+      edge := poly_list_y.item i;
+      {edge != NULL}.while_do {
+	edge.display;
+	';'.print;
+	edge := edge.next_y;
+      };
+      '\n'.print;
+    };
+  );
+  
+Section Private  
+  
+  - connect_first <-
+  (
+    poly_line_to (x_origin,y_origin);
+    ((begin_y!=NULL) && {begin_y.is_down = last_y.is_down}).if {
+      // Connecting.
+      (begin_y.is_down).if {
+	// Add first list. 
+	last_y.set_next_y begin_y;	
+	poly_list_y.put (poly_list_y.item last_idx) to begin_idx;
+      } else {
+	// Add last list.
+	begin_y.set_next_y last_y;
+      };
+      poly_list_y.remove last_idx;
+    };
+  );    
+  
+  - sort_list_y <-
+  // Bubble sort :-( => BSBS: Optmize with Quick sort...
+  ( + low,up,idx,upper:INTEGER;
+    + swap:BOOLEAN;
+    
+    upper := poly_list_y.upper-1;
+    
+    low := 0;
+    up  := upper;
+    {
+      swap:=FALSE;
+      low.to up do { i:INTEGER;	
+	(poly_list_y.item i.y0 > poly_list_y.item (i+1).y0).if {
+	  poly_list_y.swap i with (i+1);
+	  swap := TRUE;
+	};
+	
+	idx := upper - i;
+	(poly_list_y.item idx.y0 > poly_list_y.item (idx+1).y0).if {
+	  poly_list_y.swap idx with (idx+1);
+	  swap := TRUE;
+	};		
+      };
+      up  := up - 1;
+      low := low + 1;
+    }.do_while {swap};
+  );
+
+Section Public  
+  
+  - poly_move_to (x,y:INTEGER) <-
+  (     
+    
+    (edges = NULL).if {
+      poly_list_y := FAST_ARRAY(EDGE).create_with_capacity 16;
+      edges := FAST_ARRAY(EDGE).create 64;      
+      0.to 63 do { n:INTEGER;
+	edges.put (EDGE.clone) to n;
+      };
+    };
+  
+    (edges_upper != 0).if {      
+      connect_first;
+    };
+    move_to (x,y); 
+    x_origin := x;
+    y_origin := y;
+    begin_y  := NULL;
+    last_y   := NULL;
+    
+    poly_ymax := poly_ymax.max y;
+  );
+  
+  - poly_line_to (x1,y1:INTEGER) <-
+  ( + edge,edge2:EDGE;
+    + x0,y0:INTEGER;
+    
+    x0:=spot_x; 
+    y0:=spot_y; 
+    
+    ((x0!=x1) || {y0!=y1}).if {
+      
+      move_to (x1,y1); 
+            
+      (edges_upper >= (edges.upper-4)).if { // BSBS: A optimiser avec MAP_ARRAY ...
+	// Append 16 Edges.	
+	0.to 15 do { j:INTEGER;
+	  edges.add_last (EDGE.clone);
+	};
+      };
+            
+      (y0=y1).if { 
+	// Flat.
+	edge  := edges.item edges_upper;	
+	edges_upper := edges_upper + 1;
+	poly_list_y.add_last edge;
+	edge2 := edges.item edges_upper;
+	edges_upper := edges_upper + 1;
+	poly_list_y.add_last edge2;
+	
+	(x0 < x1).if {
+	  edge .make (x0,y0) add 1;
+	  edge2.make (x1,y1) add (-1);
+	} else {
+	  edge .make (x0,y0) add (-1);
+	  edge2.make (x1,y1) add 1;
+	};
+      } else { 
+	// Line.	
+	edge  := edges.item edges_upper;
+	edges_upper := edges_upper + 1;
+	edge.make (x0,y0) to (x1,y1);
+	
+	(begin_y=NULL).if {
+	  begin_idx := poly_list_y.count;
+	  begin_y   := edge;
+	};
+	
+	((last_y=NULL) || {last_y.is_down != edge.is_down}).if {
+	  // New line_y.
+	  poly_list_y.add_last edge;
+	  last_idx := poly_list_y.upper;
+	  last_y   := edge;
+	  poly_ymax := poly_ymax.max y1;
+	} else {
+	  // Continue line_y.
+	  (edge.is_down).if {
+	    // Add last.
+	    last_y.set_next_y edge;
+	    poly_ymax := poly_ymax.max y1;
+	  } else {
+	    // Add first.
+	    poly_list_y.put edge to last_idx;
+	    edge.set_next_y last_y;	    
+	  };
+	  last_y := edge;
+	};
+      };
+    };    
+  );
+  
+  - poly_rectangle (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  (
+    poly_move_to (x0,y0);
+    poly_line_to (x1,y0);
+    poly_line_to (x1,y1);
+    poly_line_to (x0,y1);
+    poly_line_to (x0,y0);
+  );
+
+  - poly_spline_w1 (px0,py0:INTEGER) w2 (px1,py1:INTEGER) to (x1,y1:INTEGER) <-
+  ( + x0,y0,d_x,d_y:INTEGER;
+    + num_points:INTEGER;
+    // Derivatives of x(t) and y(t).
+    + x, dx, ddx, dddx:REAL_16_16; 
+    + y, dy, ddy, dddy:REAL_16_16;
+    // Temp variables used in the setup.
+    + dt, dt2, dt3:REAL_16_16;
+    + xdt2_term, xdt3_term:REAL_16_16;
+    + ydt2_term, ydt3_term:REAL_16_16;
+    
+    x0 := spot_x;
+    y0 := spot_y;
+    
+    d_x := px0 - x0;
+    d_y := py0 - y0;
+    num_points := (d_x*d_x + d_y*d_y).sqrt;  
+    
+    d_x := px1 - px0;
+    d_y := py1 - py0;
+    num_points := num_points + (d_x*d_x + d_y*d_y).sqrt; 
+    
+    d_x := x1 - px1;
+    d_y := y1 - py1;
+    num_points := (num_points + (d_x*d_x + d_y*d_y).sqrt).sqrt;
+    num_points := num_points + (num_points >> 2); // * 1.25 .sqrt
+    
+    num_points := num_points.min 128.max 2;
+    
+    dt := 1.to_real_16_16 /# (num_points - 1);
+    dt2 := dt * dt;
+    dt3 := dt2 * dt;
+    
+    // x coordinates.
+    xdt2_term := dt2 *# ((px1 - px0 * 2 + x0) * 3);
+    xdt3_term := dt3 *# (x1 + ((px0 - px1) * 3) -x0);
+    
+    dddx := xdt3_term *# 6;
+    ddx  := xdt3_term *# -6 + xdt2_term *# 2;
+    dx   := xdt3_term - xdt2_term + dt *# ((px0 - x0)*3);  
+    x    := x0.to_real_16_16;
+    
+    // y coordinates.
+    ydt2_term := dt2 *# ((py1 - py0 * 2 + y0) * 3);
+    ydt3_term := dt3 *# (y1 + ((py0 - py1) * 3) - y0);
+    
+    dddy := ydt3_term *# 6;
+    ddy  := ydt3_term *# -6 + ydt2_term *# 2;
+    dy   := ydt3_term - ydt2_term + dt *# ((py0 - y0)*3); 
+    y    := y0.to_real_16_16;
+        
+    x := x + delta_spline;
+    y := y + delta_spline;
+    
+    1.to (num_points - 1) do { i:INTEGER;
+      ddx := ddx + dddx;
+      dx  := dx + ddx;
+      x   := x + dx;
+      ddy := ddy + dddy;
+      dy  := dy + ddy;
+      y   := y + dy;
+      poly_line_to (x.to_integer,y.to_integer); 
+    };    
+  );
+  
+  - poly_ellipse (x,y:INTEGER) rays (ray_x,ray_y:INTEGER) <-
+  ( + x0,y0,x1,y1,dx,dy:INTEGER;
+    x0 := x - ray_x;
+    x1 := x + ray_x;
+    y0 := y - ray_y;
+    y1 := y + ray_y;
+    dx := (ray_x * 5) / 9;
+    dy := (ray_y * 5) / 9;
+    
+    poly_move_to (x,y0);    
+    poly_spline_w1 (x+dx,y0) w2 (x1,y-dy) to (x1,y) ;
+    poly_spline_w1 (x1,y+dy) w2 (x+dx,y1) to (x ,y1);
+    poly_spline_w1 (x-dx,y1) w2 (x0,y+dy) to (x0,y) ;
+    poly_spline_w1 (x0,y-dy) w2 (x-dx,y0) to (x ,y0);     
+  );
+  
+  - poly_trace <-
+  ( + edge,next_edge,edgep:EDGE;
+    + x_edges:EDGE;
+    + x0,x1,new_x:INTEGER;
+    + idx_y:INTEGER;
+    + trace:INTEGER;
+    + line :INTEGER;    
+    
+    (edges_upper != 0).if {
+      (poly_ymax >= clip_y0).if {
+        // Connexion with first point.    
+        connect_first;
+        
+        // Optimize clip_y0
+        (poly_list_y.upper).downto 0 do { j:INTEGER;
+          edge := poly_list_y.item j;
+          {(edge != NULL) && {edge.y1 < clip_y0}}.while_do {
+            edge := edge.next_y;
+          };
+          (edge = NULL).if {
+            poly_list_y.remove j;	  
+          } else {
+            poly_list_y.put edge to j;	  
+          };
+        };
+        
+        // Sort on Y.    
+        sort_list_y;
+        
+        poly_ymax := poly_ymax.min clip_y1;
+        line := 1;
+        // for each scanline in the polygon.
+        (poly_list_y.first.y0).to poly_ymax do { y:INTEGER;
+          // Active edges.
+          {(idx_y <= poly_list_y.upper) && {poly_list_y.item idx_y.y0 = y}}.while_do {
+            x_edges := poly_list_y.item idx_y.add x_edges;
+            idx_y   := idx_y + 1;
+          };
+          
+          // Draw horizontal line. 
+          x1:=INTEGER.minimum.to_integer;
+          edge:=x_edges;
+          {edge!=NULL}.while_do {
+            next_edge:=edge.next_x;	
+            // Trace.
+            (y >= clip_y0).if { 
+              
+              (trace = 0).if {
+                // Begin point.    
+                new_x := (edge.x+127)>>8;
+                ((new_x != x1) && {new_x != (x1 + 1)}).if {
+                  ((x0 <= clip_x1) && {x1 >= clip_x0}).if { 
+                    x0:=x0.max clip_x0;
+                    x1:=x1.min clip_x1;
+                    line_h_hard (x0,y) until x1 color rgbcolor; 
+                  };  
+                  x0 := new_x;
+                };
+              };
+              
+              (edge.is_point).if {
+                trace := trace + edge.dx; 
+              } else {
+                trace := trace + line;
+                line  := - line;
+              };
+              
+              (trace = 0).if {
+                // End point.
+                x1 := (edge.x+128)>>8;	    
+              };	  
+            };
+            
+            // Inc edges.	  
+            (edge.width!=0).if { 	    
+              edge.new_step;
+              
+              // Sort with X :
+              edgep:=edge.prev_x;
+              {(edgep!=NULL) && {edge.x<edgep.x}}.while_do {
+                edgep:=edgep.prev_x;
+              };
+              (edgep!=edge.prev_x).if {
+                edge.prev_x.set_next_x (edge.next_x);
+                (edge.next_x!=NULL).if {
+                  edge.next_x.set_prev_x (edge.prev_x);
+                };
+                edge.set_prev_x edgep;
+                (edgep!=NULL).if {
+                  edge.set_next_x (edgep.next_x);
+                  edgep.set_next_x edge;
+                } else {
+                  edge.set_next_x x_edges;
+                  x_edges:=edge;
+                };
+                (edge.next_x!=NULL).if {
+                  edge.next_x.set_prev_x edge;
+                };
+              };
+            } else {
+              // Next line.
+              x_edges:=edge.next_line x_edges; 
+            };
+            edge := next_edge;
+          };
+          ((x0 <= clip_x1) && {x1 >= clip_x0}).if { 
+            x0:=x0.max clip_x0;
+            x1:=x1.min clip_x1;
+            line_h_hard (x0,y) until x1 color rgbcolor; 
+          };
+        };
+      };
+    };
+    // Init structure for next.
+    edges_upper:=0;
+    poly_list_y.clear;
+    begin_y:=NULL;
+    poly_ymax:=INTEGER.minimum.to_integer;
+  );
+  
+  - poly_trace_color col:UINTEGER_32 <-
+  ( 
+    color col;
+    poly_trace;
+  );
+  
+  - put_bitmap bmp:ABSTRACT_BITMAP to (x,y:INTEGER) <-
+  (
+    deferred;
+  );
+
+  - put_bitmap bmp:ABSTRACT_BITMAP to (x,y:INTEGER) scale (scale_x,scale_y:REAL_16_16) <-  
+  (
+    deferred;
+  );
+  
+Section Public
+  
+  // For demo ... :-)
+  
+  - font_width string:ABSTRACT_STRING :INTEGER <-
+  ( 
+    font_width string size (string.upper)
+  );
+  
+  - font_width_letter char:CHARACTER :INTEGER <-
+  ( + offset_begin,offset_end:INTEGER;
+    + car:INTEGER;
+
+    car := char.to_integer;
+    ((car < 32) || {car >= 127}).if {
+      car := 0;
+    } else {
+      car := car-32;
+    };
+    offset_begin:=`__index_font[@car]`:INTEGER;
+    offset_end  :=`__index_font[@car+1]`:INTEGER;
+    offset_end - offset_begin + 1
+  );
+
+  - font_width string:ABSTRACT_STRING size n:INTEGER :INTEGER <-
+  (     
+    font_width string at (string.lower) to n
+  );
+  
+  - font_width string:ABSTRACT_STRING at beg:INTEGER to end:INTEGER :INTEGER <-
+  ( + result:INTEGER;
+
+    beg.to end do { j:INTEGER;
+      result:=result + font_width_letter (string.item j);
+    };
+    result
+  );
+  
+  - print_char c:CHARACTER to (x,y:INTEGER) :INTEGER <-
+  ( + pix_x,pix_y,offset_begin,offset_end:INTEGER;
+    + bit_count:UINTEGER_16;
+    + sz_letter:INTEGER;
+    + car:UINTEGER_8;
+    
+    car := c.to_uinteger_8;
+    ((y <= clip_y1) && {(y+15) >= clip_y0} && {x <= clip_x1}).if {
+      pix_x:=x;      	
+      ((car<32) || {car>=127}).if {
+	car:=0;
+      } else {
+	car:=car-32;
+      };
+      offset_begin:=`__index_font[@car]`:INTEGER;
+      offset_end  :=`__index_font[@car+1]`:INTEGER;
+      sz_letter := offset_end-offset_begin + 1;
+      ((pix_x + sz_letter) > clip_x0).if {
+	{offset_begin != offset_end}.while_do {
+	  (pix_x.in_range clip_x0 to clip_x1).if {
+	    pix_y:=y;
+	    bit_count:=1;
+	    {bit_count != 0}.while_do {
+	      (pix_y.in_range clip_y0 to clip_y1).if {
+		((`__graph_font[@offset_begin]`:UINTEGER_16 & bit_count)!=0).if {
+		  pixel_hard (pix_x,pix_y) color rgbcolor;
+		};		
+	      };
+	      pix_y:=pix_y+1;
+	      bit_count:=bit_count << 1;
+	    };
+	  };
+	  pix_x:=pix_x+1;
+	  offset_begin:=offset_begin+1;
+	};
+	pix_x := pix_x + 1;
+      } else {
+	pix_x := pix_x + sz_letter;
+      };    
+    };    
+    pix_x
+  );
+  
+  - print string:ABSTRACT_STRING at b:INTEGER to e:INTEGER to (x,y:INTEGER) :INTEGER <-
+  ( + pix_x,pix_y,offset_begin,offset_end:INTEGER;
+    + bit_count:UINTEGER_16;
+    + car,sz_letter:INTEGER;
+    
+    ((y <= clip_y1) && {(y+15) >= clip_y0} && {x <= clip_x1}).if {
+      pix_x:=x;
+      b.to e do { j:INTEGER;
+	car:=string.item j.to_integer;
+	((car<32) || {car>=127}).if {
+	  car:=0;
+	} else {
+	  car:=car-32;
+	};
+	offset_begin:=`__index_font[@car]`:INTEGER;
+	offset_end  :=`__index_font[@car+1]`:INTEGER;
+	sz_letter := offset_end-offset_begin + 1;
+	((pix_x + sz_letter) > clip_x0).if {
+	  {offset_begin != offset_end}.while_do {
+	    (pix_x.in_range clip_x0 to clip_x1).if {
+	      pix_y:=y;
+	      bit_count:=1;
+	      {bit_count != 0}.while_do {
+		(pix_y.in_range clip_y0 to clip_y1).if {
+		  ((`__graph_font[@offset_begin]`:UINTEGER_16 & bit_count)!=0).if {
+		    pixel_hard (pix_x,pix_y) color rgbcolor;
+		  };		
+		};
+		pix_y:=pix_y+1;
+		bit_count:=bit_count << 1;
+	      };
+	    };
+	    pix_x:=pix_x+1;
+	    offset_begin:=offset_begin+1;
+	  };
+	  pix_x := pix_x + 1;
+	} else {
+	  pix_x := pix_x + sz_letter;
+	};	
+      };
+    };
+    pix_x
+  );
+
+  - print string:ABSTRACT_STRING to (x,y:INTEGER) :INTEGER <-
+  ( 
+    print string at (string.lower) to (string.upper) to (x,y)
+  );
diff --git a/lib/unstable/graphics/low_level/abstract_bmp_line.li b/lib/unstable/graphics/low_level/abstract_bmp_line.li
new file mode 100644
index 0000000..414aee1
--- /dev/null
+++ b/lib/unstable/graphics/low_level/abstract_bmp_line.li
@@ -0,0 +1,95 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := ABSTRACT_BMP_LINE;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "Generic bitmap line";
+  
+Section Inherit
+  
+  - parent_arrayed:ARRAYED := ARRAYED;
+    
+Section Public
+  
+  - lower:INTEGER := 0;
+  
+  + upper:INTEGER;
+  
+  + capacity:INTEGER;
+  
+  - count:INTEGER <- (upper + 1);
+    
+  //
+  // Modification
+  //
+  
+  - clear <-
+  (
+    upper := -1;
+  );
+   
+  //
+  // Put.
+  //
+  
+  - put col:UINTEGER_32 to n:INTEGER <-
+  ( 
+    deferred;
+  );
+  
+  - put col:UINTEGER_32 from idx_begin:INTEGER to idx_end:INTEGER <-   
+  (  
+    deferred;
+  );
+  
+  - put bmp:ABSTRACT_BMP_LINE offset ofs:INTEGER from idx_begin:INTEGER to idx_end:INTEGER <-
+  ( 
+    deferred;
+  );
+  
+  //
+  // Get.
+  //
+  
+  - get_color n:INTEGER :UINTEGER_32 <-
+  ( 
+    deferred;
+  );
+  
+  - item_8  n:INTEGER :PIXEL_8  <- ( deferred; PIXEL_8);
+  
+  - item_15 n:INTEGER :PIXEL_15 <- ( deferred; PIXEL_15);
+
+  - item_16 n:INTEGER :PIXEL_16 <- ( deferred; PIXEL_16);
+
+  - item_24 n:INTEGER :PIXEL_24 <- ( deferred; PIXEL_24);
+
+  - item_32 n:INTEGER :PIXEL_32 <- ( deferred; PIXEL_32);
+  
+  //
+  // Arrayed consideration.
+  //
+  
+  - get_storage:NATIVE_ARRAY(UINTEGER_8) <- ( deferred; NULL); 
diff --git a/lib/unstable/graphics/low_level/pixel.li b/lib/unstable/graphics/low_level/pixel.li
new file mode 100644
index 0000000..3c908d1
--- /dev/null
+++ b/lib/unstable/graphics/low_level/pixel.li
@@ -0,0 +1,114 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := PIXEL;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Generic Pixel.";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - red:UINTEGER_8   <- (deferred; 0);
+  // Abstracted red component on 8 bits.
+
+  - green:UINTEGER_8 <- (deferred; 0);
+  // Abstracted green component on 8 bits.
+
+  - blue:UINTEGER_8  <- (deferred; 0);
+  // Abstracted blue component on 8 bits.
+  
+  - get_raw col:UINTEGER_32 :UINTEGER_32 <- (deferred; 0);
+  
+  //
+  // Access color 32 bits.
+  //
+  
+  - rgbcolor:UINTEGER_32 <-
+  (
+    (red.to_uinteger_32 << 16) | (green.to_uinteger_32 << 8) | blue
+  );
+  
+  //
+  // Modification 32bits.
+  //
+  
+  - make col:UINTEGER_32 <- deferred;
+  
+  - make_rgb (r,g,b:UINTEGER_8) <- deferred;  // For speed conversion between pixels
+  
+  //
+  // Consultation geometry.
+  //
+  
+  - size:UINTEGER_8 <- ( deferred; 0); 
+  - red_size:UINTEGER_8 <- ( deferred; 0);      
+  - red_pos:UINTEGER_8 <- ( deferred; 0);
+  - green_size:UINTEGER_8 <- ( deferred; 0);
+  - green_pos:UINTEGER_8 <- ( deferred; 0);
+  - blue_size:UINTEGER_8 <- ( deferred; 0);
+  - blue_pos:UINTEGER_8 <- ( deferred; 0);
+  - reserved_size:UINTEGER_8 <- ( deferred; 0);
+  - reserved_pos:UINTEGER_8 <- ( deferred; 0);
+  
+  //
+  // Conversion.
+  //
+  
+  - to_pixel_8:PIXEL_8 <- 
+  (     
+    PIXEL_8.create_rgb (red,green,blue)        
+  );
+
+  - to_pixel_15:PIXEL_15 <-
+  ( 
+    PIXEL_15.color_rgb (red,green,blue)
+  );
+  
+  - to_pixel_16:PIXEL_16 <-
+  (     
+    PIXEL_16.color_rgb (red,green,blue)
+  );
+
+  - to_pixel_24:PIXEL_24 <-
+  (     
+    PIXEL_24.color_rgb (red,green,blue)
+  );
+
+  - to_pixel_32:PIXEL_32 <-
+  (     
+    PIXEL_32.color_rgb (red,green,blue)
+  );
+  
+  //
+  // Display.
+  //
+  
+  - print <- deferred;
+
+
+
diff --git a/lib/unstable/graphics/pixel_15.li b/lib/unstable/graphics/pixel_15.li
new file mode 100644
index 0000000..c67d54e
--- /dev/null
+++ b/lib/unstable/graphics/pixel_15.li
@@ -0,0 +1,108 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := Expanded PIXEL_15;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Pixel on 15 bits";
+    
+Section Insert
+  
+  + parent_pixel:Expanded PIXEL;
+  
+Section Mapping  
+  
+  + real_color:UINTEGER_16;
+  
+Section Private
+      
+  - convert_5_to_8:FAST_ARRAY(UINTEGER_8) :=
+  ( + result:FAST_ARRAY(UINTEGER_8);
+    + value:UINTEGER_8;
+    
+    result:=FAST_ARRAY(UINTEGER_8).create 32;
+    0.to 31 do { j:INTEGER;
+      result.put value to j;
+      value := value + 8;      
+    };
+    result
+  );
+        
+Section Public
+  
+  - red:UINTEGER_8 <- 
+  (
+    convert_5_to_8.item (real_color >> 10)
+  );
+  
+  - green:UINTEGER_8 <- 
+  (
+    convert_5_to_8.item ((real_color >> 5) & 01Fh)
+  );
+
+  - blue:UINTEGER_8 <- 
+  (
+    convert_5_to_8.item (real_color & 01Fh)
+  );
+  
+  - get_raw col:UINTEGER_32 :UINTEGER_32 <- 
+  (
+    ((col & 0F80000h) >> 9) |
+    ((col & 000F800h) >> 6) |
+    ((col & 00000F8h) >> 3)
+  );
+  
+  - make col:UINTEGER_32 <-
+  (   
+    real_color := (
+      ((col & 0F80000h) >> 9) |
+      ((col & 000F800h) >> 6) |
+      ((col & 00000F8h) >> 3)
+    ).to_uinteger_16;
+  );
+  
+  - make_rgb (r,g,b:UINTEGER_8) <-
+  (
+    real_color := (
+      ((r & 0F8h).to_uinteger_16 << 7) |
+      ((g & 0F8h).to_uinteger_16 << 2) |
+      ((b & 0F8h).to_uinteger_16 >> 3)
+    );
+  );
+    
+  - size:UINTEGER_8          := 16; 
+  - red_size:UINTEGER_8      := 5;
+  - red_pos:UINTEGER_8       := 10;
+  - green_size:UINTEGER_8    := 5;
+  - green_pos:UINTEGER_8     := 5;
+  - blue_size:UINTEGER_8     := 5;
+  - blue_pos:UINTEGER_8      := 0;
+  - reserved_size:UINTEGER_8 := 1;
+  - reserved_pos:UINTEGER_8  :=15;
+    
+  - to_pixel_15:PIXEL_15 <- Self;
+  
+
+  
+
diff --git a/lib/unstable/graphics/pixel_16.li b/lib/unstable/graphics/pixel_16.li
new file mode 100644
index 0000000..ba60514
--- /dev/null
+++ b/lib/unstable/graphics/pixel_16.li
@@ -0,0 +1,123 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := Expanded PIXEL_16;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Pixel on 16 bits.";
+    
+Section Insert
+  
+  + parent_pixel:Expanded PIXEL;
+  
+Section Mapping  
+  
+  + real_color:UINTEGER_16;
+  
+Section Private  
+    
+  - convert_5_to_8:FAST_ARRAY(UINTEGER_8) :=
+  ( + result:FAST_ARRAY(UINTEGER_8);
+    + value:UINTEGER_8;
+    
+    result:=FAST_ARRAY(UINTEGER_8).create 32;    
+    0.to 31 do { j:INTEGER;
+      result.put value to j;
+      value := value + 8;
+    };
+    result
+  );
+  
+  - convert_6_to_8:FAST_ARRAY(UINTEGER_8) :=
+  ( + result:FAST_ARRAY(UINTEGER_8);
+    + value:UINTEGER_8;
+    
+    result:=FAST_ARRAY(UINTEGER_8).create 64;    
+    0.to 63 do { j:INTEGER;
+      result.put value to j;
+      value := value + 4;
+    };
+    result
+  );
+      
+Section Public
+    
+  - red:UINTEGER_8 <- 
+  (
+    (((real_color >> 11) & 1Fh)  << 3).to_uinteger_8
+    //convert_5_to_8.item (real_color >> 11)
+  );
+  
+  - green:UINTEGER_8 <- 
+  (
+    (((real_color >> 5) & 3Fh) << 2).to_uinteger_8
+    //convert_6_to_8.item ((real_color >> 5) & 03Fh)
+  );
+
+  - blue:UINTEGER_8 <- 
+  (
+    ((real_color & 1Fh) << 3).to_uinteger_8
+//    convert_5_to_8.item (real_color & 01Fh)
+  );
+  
+  - get_raw col:UINTEGER_32 :UINTEGER_32 <-
+  (
+    ((col & 0F80000h) >> 8) |
+    ((col & 000FC00h) >> 5) |
+    ((col & 00000F8h) >> 3)
+  );
+  
+  - make col:UINTEGER_32 <-
+  (     
+    real_color := (
+      ((col & 0F80000h) >> 8) |
+      ((col & 000FC00h) >> 5) |
+      ((col & 00000F8h) >> 3)
+    ).to_uinteger_16;
+  );
+  
+  - color_rgb (r,g,b:UINTEGER_8) <-
+  ( 
+    real_color := (
+      ((r & 0F8h).to_uinteger_16 << 8) |
+      ((g & 0FCh).to_uinteger_16 << 3) |
+      ((b & 0F8h).to_uinteger_16 >> 3)
+    );
+  );
+  
+  - size:UINTEGER_8       := 16; 
+  - red_size:UINTEGER_8   := 5;
+  - red_pos:UINTEGER_8    := 11;
+  - green_size:UINTEGER_8 := 6;
+  - green_pos:UINTEGER_8  := 5;
+  - blue_size:UINTEGER_8  := 5;
+  - blue_pos:UINTEGER_8   := 0;
+  - reserved_size:UINTEGER_8 :=0;
+  - reserved_pos:UINTEGER_8  :=0;
+    
+  - to_pixel_16:PIXEL_16 <- Self;
+
+
+
+
diff --git a/lib/unstable/graphics/pixel_24.li b/lib/unstable/graphics/pixel_24.li
new file mode 100644
index 0000000..69065f9
--- /dev/null
+++ b/lib/unstable/graphics/pixel_24.li
@@ -0,0 +1,106 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := Expanded PIXEL_24;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Pixel on 24 bits.";
+    
+Section Insert
+  
+  - parent_pixel:PIXEL := PIXEL;
+  
+Section Mapping
+  
+  + map_blue:UINTEGER_8;
+  
+  + map_green:UINTEGER_8;
+
+  + map_red:UINTEGER_8;
+  
+Section Public
+  
+  - blue:UINTEGER_8 <- map_blue;
+  
+  - green:UINTEGER_8 <- map_green;
+
+  - red:UINTEGER_8 <- map_red;
+  
+  - get_raw col:UINTEGER_32 :UINTEGER_32 <-
+  (
+    col
+  );
+  
+  - get_color:UINTEGER_32 <-
+  ( + result:UINTEGER_32;
+    /* BSBS: NE MARCHE PAS (see viewer)
+    result := `&(@Self)`:UINTEGER_32;
+    result := result & 0FFFFFFh;
+    */
+    result := map_red;
+    result := (result << 8) | map_green;
+    result := (result << 8) | map_blue;
+    
+    result
+  );
+    
+  - make col:UINTEGER_32 <-
+  (
+    map_red   :=  (col >> 16).to_uinteger_8;
+    map_green := ((col & 00FF00h) >> 8).to_uinteger_8;
+    map_blue  :=  (col & 0000FFh).to_uinteger_8;
+  );  
+  
+  - make_rgb (r,g,b:UINTEGER_8) <-
+  (
+    map_red := r;
+    map_green := g;
+    map_blue := b;
+  );
+  
+  - size:UINTEGER_8       := 24; 
+  - red_size:UINTEGER_8   := 8;
+  - red_pos:UINTEGER_8    := 16;
+  - green_size:UINTEGER_8 := 8;
+  - green_pos:UINTEGER_8  := 8;
+  - blue_size:UINTEGER_8  := 8;
+  - blue_pos:UINTEGER_8   := 0;
+  - reserved_size:UINTEGER_8 :=0;
+  - reserved_pos:UINTEGER_8  :=0;
+        
+  - to_pixel_24:PIXEL_24 <- Self;
+  
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/lib/unstable/graphics/pixel_32.li b/lib/unstable/graphics/pixel_32.li
new file mode 100644
index 0000000..9d64d21
--- /dev/null
+++ b/lib/unstable/graphics/pixel_32.li
@@ -0,0 +1,89 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := Expanded PIXEL_32;
+
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "Pixel on 32 bits.";
+  
+Section Insert
+  
+  + parent_pixel:Expanded PIXEL;
+  
+Section Mapping
+  
+  + map_blue:UINTEGER_8;
+
+  + map_green:UINTEGER_8;
+
+  + map_red:UINTEGER_8;
+    
+  + map_alpha:UINTEGER_8;
+  
+Section Public
+  
+  - blue:UINTEGER_8 <- map_blue;
+  
+  - green:UINTEGER_8 <- map_green;
+
+  - red:UINTEGER_8 <- map_red;
+  
+  - get_raw col:UINTEGER_32 :UINTEGER_32 <-
+  (
+    col
+  );
+  
+  - make col:UINTEGER_32 <-
+  (
+    map_alpha := ((col & 0FF000000h) >> 24).to_uinteger_8;
+    map_red   := ((col & 000FF0000h) >> 16).to_uinteger_8;
+    map_green := ((col & 00000FF00h) >>  8).to_uinteger_8;
+    map_blue  :=  (col & 0000000FFh).to_uinteger_8;    
+  );
+  
+  - make_rgb (r,g,b:UINTEGER_8) <-
+  (
+    map_red   := r;
+    map_green := g;
+    map_blue  := b;
+  );
+  
+  - size:UINTEGER_8       := 32; 
+  - red_size:UINTEGER_8   := 8;
+  - red_pos:UINTEGER_8    := 16;
+  - green_size:UINTEGER_8 := 8;
+  - green_pos:UINTEGER_8  := 8;
+  - blue_size:UINTEGER_8  := 8;
+  - blue_pos:UINTEGER_8   := 0;
+  - reserved_size:UINTEGER_8 :=8;
+  - reserved_pos:UINTEGER_8  :=24;
+    
+  - to_pixel_32:PIXEL_32 <- Self;
+  
+
+
+
+
+
+
diff --git a/lib/unstable/iup-binding/README b/lib/unstable/iup-binding/README
new file mode 100644
index 0000000..cc06c87
--- /dev/null
+++ b/lib/unstable/iup-binding/README
@@ -0,0 +1,18 @@
+This is the very early stages of a wrapper for IUP.
+
+It has been tested only on Windows but should work on Linux/Unix
+systems fairly easy. You will need to edit the lip slot iup.li and
+add the correct library definitions for your OS. That should be
+all that is necessary.
+
+To compile this on Windows, you need to download the Iup, Cd and Img
+libraries for your version of MinGW. Place the libraries into your
+MinGW/lib directory and the include files into your MinGW/include
+directory.
+
+You can test the interface by compiling and running the example:
+
+  lisaac example.li
+
+When complete, this will be an entire wrapping around Iup, Cd and Img
+complete with a fully Object Oriented interface.
diff --git a/lib/unstable/iup-binding/button.li b/lib/unstable/iup-binding/button.li
new file mode 100644
index 0000000..484b4a5
--- /dev/null
+++ b/lib/unstable/iup-binding/button.li
@@ -0,0 +1,99 @@
+Section Header
+  // Button
+
+  + name      := BUTTON;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP Button";
+
+Section Inherit
+
+  + parent:Expanded CONTROL := CONTROL;
+
+Section Private
+
+  + action_block:{INTEGER};
+
+Section External
+
+  - perform_action h:POINTER :INTEGER <-
+  ( + b:BUTTON;
+    + obj:POINTER;
+    
+    obj := `IupGetCallback(@h, "LISAAC_OBJ")`:POINTER;
+    b := CONVERT(POINTER, BUTTON).on obj;
+    b.action_block.value
+  );
+
+Section Public
+  // Creation
+  
+  - make title:ABSTRACT_STRING :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+    + n_title:NATIVE_ARRAY(CHARACTER);
+    
+    n_title := title.to_external;
+
+    h := `IupButton(@n_title, NULL)`:POINTER;
+
+    result := SELF.clone;
+    result.set_handle h;
+    `IupSetCallback(@h, "LISAAC_OBJ", (void *) @result)`;
+    result
+  );
+  
+Section Public
+  // Callbacks
+  
+  - set_action b:{INTEGER} <-
+  ( + h:POINTER;
+    
+    h := handle;
+    `IupSetCallback(@h, IUP_ACTION, (Icallback) perform_action)`;
+    
+    action_block := b;
+  );
+
+Section Public
+  // Attributes
+  
+  - set_alignment v:ABSTRACT_STRING <- store "ALIGNMENT" value v;
+  - alignment :ABSTRACT_STRING <- get "ALIGNMENT";
+
+  - set_canfocus v:BOOLEAN <- store "CANFOCUS" boolean v;
+  - canfocus :BOOLEAN <- (get "CANFOCUS") = "YES";
+  
+  - set_flat v:BOOLEAN <- store "FLAT" boolean v;
+  - flat :BOOLEAN <- (get "FLAT") = "YES";
+
+  - set_focusonclick v:BOOLEAN <- store "FOCUSONCLICK" boolean v;
+  - focus_on_click <- (get "FOCUSONCLICK") = "YES";
+  
+  - set_image v:ABSTRACT_STRING <- store "IMAGE" value v;
+  - image :ABSTRACT_STRING <- get "IMAGE";
+  
+  - set_inactive_image v:ABSTRACT_STRING <- store "IMINACTIVE" value v;
+  - inactive_image :ABSTRACT_STRING <- get "IMINACTIVE";
+  
+  - set_press_image v:ABSTRACT_STRING <- store "IMPRESS" value v;
+  - press_image :ABSTRACT_STRING <- get "IMPRESS";
+  
+  - set_press_border_image v:ABSTRACT_STRING <- store "IMPRESSBORDER" value v;
+  - press_border_image :ABSTRACT_STRING <- get "IMPRESSBORDER";
+  
+  - set_image_position v:ABSTRACT_STRING <- store "IMAGEPOSITION" value v;
+  - image_position :ABSTRACT_STRING <- get "IMAGEPOSITION";
+  
+  - set_markup v:ABSTRACT_STRING <- store "MARKUP" value v;
+  - markup :ABSTRACT_STRING <- get "MARKUP";
+
+  - set_padding v:ABSTRACT_STRING <- store "PADDING" value v;
+  - padding :ABSTRACT_STRING <- get "PADDING";
+
+  - set_spacing v:ABSTRACT_STRING <- store "SPACING" value v;
+  - spacing :ABSTRACT_STRING <- get "SPACING";
+
+  - set_title v:ABSTRACT_STRING <- store "TITLE" value v;
+  - title :ABSTRACT_STRING <- get "TITLE";
diff --git a/lib/unstable/iup-binding/canvas.li b/lib/unstable/iup-binding/canvas.li
new file mode 100644
index 0000000..55058da
--- /dev/null
+++ b/lib/unstable/iup-binding/canvas.li
@@ -0,0 +1,25 @@
+Section Header
+  // Canvas
+
+  + name      := CANVAS;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP Canvas";
+
+Section Inherit
+
+  + parent:Expanded CONTROL := CONTROL;
+
+Section Public
+  
+  - make :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+
+    h := `IupCanvas(NULL)`:POINTER;
+
+    result := SELF.clone;
+    result.set_handle hndl;
+    result
+  );
diff --git a/lib/unstable/iup-binding/cells.li b/lib/unstable/iup-binding/cells.li
new file mode 100644
index 0000000..0458457
--- /dev/null
+++ b/lib/unstable/iup-binding/cells.li
@@ -0,0 +1,25 @@
+Section Header
+  // Cells
+
+  + name      := CELLS;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP Cells";
+
+Section Inherit
+
+  + parent:Expanded CONTROL := CONTROL;
+
+Section Public
+  
+  - make :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+
+    h := `IupCells()`:POINTER;
+
+    result := SELF.clone;
+    result.set_handle h;
+    result
+  );
diff --git a/lib/unstable/iup-binding/color_bar.li b/lib/unstable/iup-binding/color_bar.li
new file mode 100644
index 0000000..ad52305
--- /dev/null
+++ b/lib/unstable/iup-binding/color_bar.li
@@ -0,0 +1,25 @@
+Section Header
+  // Colorbar
+
+  + name      := COLOR_BAR;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP ColorBar";
+
+Section Inherit
+
+  + parent:Expanded CONTROL := CONTROL;
+
+Section Public
+  
+  - make :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+
+    h := `IupColorBar()`:POINTER;
+
+    result := SELF.clone;
+    result.set_handle h;
+    result
+  );
diff --git a/lib/unstable/iup-binding/color_browser.li b/lib/unstable/iup-binding/color_browser.li
new file mode 100644
index 0000000..35514a8
--- /dev/null
+++ b/lib/unstable/iup-binding/color_browser.li
@@ -0,0 +1,25 @@
+Section Header
+  // ColorBrowser
+
+  + name      := COLOR_BROWSER;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP ColorBrowser";
+
+Section Inherit
+
+  + parent:Expanded CONTROL := CONTROL;
+
+Section Public
+  
+  - make :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+
+    h := `IupColorBrowser()`:POINTER;
+
+    result := SELF.clone;
+    result.set_handle h;
+    result
+  );
diff --git a/lib/unstable/iup-binding/container_control.li b/lib/unstable/iup-binding/container_control.li
new file mode 100644
index 0000000..2de448d
--- /dev/null
+++ b/lib/unstable/iup-binding/container_control.li
@@ -0,0 +1,24 @@
+Section Header
+  // Base container control
+
+  + name     := CONTAINER_CONTROL;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP Container Control";
+
+Section Inherit
+
+  + parent_control:Expanded CONTROL := CONTROL;
+
+Section Public
+
+  - add child:CONTROL <-
+  ( + h:POINTER;
+    + ch:POINTER;
+    
+    h := handle;
+    ch := child.handle;
+
+    `IupAppend(@h, @ch)`;
+  );
diff --git a/lib/unstable/iup-binding/control.li b/lib/unstable/iup-binding/control.li
new file mode 100644
index 0000000..01b58d4
--- /dev/null
+++ b/lib/unstable/iup-binding/control.li
@@ -0,0 +1,125 @@
+Section Header
+  // Base control
+
+  + name     := CONTROL;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP Control";
+
+Section Inherit
+
+  - parent_iup:IUP := IUP;
+
+Section Public
+
+  + handle:POINTER;
+
+  - set_handle p:POINTER <-
+  (
+    handle := p;
+  );
+
+Section Public
+  // Attribute utility methods
+  
+  - store name:ABSTRACT_STRING value v:ABSTRACT_STRING <-
+  ( + n_name:NATIVE_ARRAY(CHARACTER);
+    + n_v:NATIVE_ARRAY(CHARACTER);
+    + h:POINTER;
+    
+    h := handle;
+    n_name := name.to_external;
+    n_v := v.to_external;
+    
+    `IupStoreAttribute(@h, @n_name, @n_v)`;
+  );
+  
+  - store name:ABSTRACT_STRING boolean v:BOOLEAN <-
+  ( + n_name:NATIVE_ARRAY(CHARACTER);
+    + n_v:NATIVE_ARRAY(CHARACTER);
+    + h:POINTER;
+       
+    h := handle;
+    n_name := name.to_external;
+    v.if_true { n_v := "YES".to_external; }
+    else { n_v := "NO".to_external; };
+       
+    `IupStoreAttribute(@h, @n_name, @n_v)`;
+  );
+  
+  - get name:ABSTRACT_STRING :ABSTRACT_STRING <-
+  ( + n_name, n_val : NATIVE_ARRAY(CHARACTER);
+    + h:POINTER;
+    + result : STRING;
+        
+    h := handle;
+    n_name := name.to_external;
+    n_val := `IupGetAttribute(@h, @n_name)`:NATIVE_ARRAY(CHARACTER);
+        
+    result := STRING.clone;
+    result.from_external(n_val);
+    result
+  );
+
+  - set_callback name:ABSTRACT_STRING slot v:POINTER <-
+  ( + n_name:NATIVE_ARRAY(CHARACTER);
+    
+    h := handle;
+    n_name := name.to_external;
+    
+    `IupSetCallback(@h, @n_name, @v)`;
+  );
+
+Section Public
+  // Common control attributes
+
+  - set_active state:BOOLEAN <- store "ACTIVE" boolean state;
+  - active :BOOLEAN <- (get "ACTIVE") = "YES";
+
+  - set_background_color color:ABSTRACT_STRING <- store "BGCOLOR" value color;  
+  - background_color :ABSTRACT_STRING <- get "BGCOLOR";
+
+  - set_foreground_color color:ABSTRACT_STRING <- store "FGCOLOR" value color; 
+  - foreground_color color:ABSTRACT_STRING <- get "FGCOLOR";
+
+  - set_font font:ABSTRACT_COLOR <- store "FONT" value font;
+  - font :ABSTRACT_STRING <- get "FONT";
+
+  - set_visible state:BOOLEAN <- store "VISIBLE" value state;
+  - visible :BOOLEAN <- (get "VISIBLE") = "YES";
+
+  - clientsize :ABSTRACT_STRING <- get "CLIENTSIZE";
+  
+  - set_expand v:ABSTRACT_STRING <- store "EXPAND" value v;
+  - expand :ABSTRACT_STRING <- get "EXPAND";
+  
+  - set_floating v:BOOLEAN <- store "FLOATING" boolean value;
+  - floating :BOOLEAN <- (get "FLOATING") = "YES";
+  
+  - set_name v:ABSTRACT_STRING <- store "NAME" value v;
+  - name :ABSTRACT_STRING <- get "NAME";
+  
+  - set_position position:ABSTRACT_STRING <- store "POSITION" value v;
+  - position :ABSTRACT_STRING <- get "POSITION";
+  
+  - set_raster_size v:ABSTRACT_STRING <- store "RASTERSIZE" value v;
+  - raster_size :ABSTRACT_STRING <- get "RASTERSIZE";
+  
+  - set_size v:ABSTRACT_STRING <- store "SIZE" value v;
+  - size :ABSTRACT_STRING <- get "SIZE";
+  
+  - set_tip v:ABSTRACT_STRING <- store "TIP" value v;
+  - tip :ABSTRACT_STRING <- get "TIP";
+  
+  - set_title v:ABSTRACT_STRING <- store "TITLE" value v;
+  - title :ABSTRACT_STRING <- get "TITLE";
+  
+  - set_value v:ABSTRACT_STRING <- store "VALUE" value v;
+  - value :ABSTRACT_STRING <- get "VALUE";
+  
+  - wid :ABSTRACT_STRING <- get "WID";  
+  - x :ABSTRACT_STRING <- get "X";
+  - y :ABSTRACT_STRING <- get "Y";
+
+  - set_zorder v:ABSTRACT_STRING <- store "ZORDER" value v;
diff --git a/lib/unstable/iup-binding/dial.li b/lib/unstable/iup-binding/dial.li
new file mode 100644
index 0000000..05fd4e6
--- /dev/null
+++ b/lib/unstable/iup-binding/dial.li
@@ -0,0 +1,32 @@
+Section Header
+  // Dial
+
+  + name      := DIAL;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP Dial";
+
+Section Inherit
+
+  + parent:Expanded CONTROL := CONTROL;
+
+Section Public
+  
+  - make type:ABSTRACT_STRING :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+    + n_type:NATIVE_ARRAY(CHARACTER);
+    
+    n_type := type.to_external;
+
+    h := `IupDial(@n_type)`:POINTER;
+
+    result := SELF.clone;
+    result.set_handle h;
+    result
+  );
+
+  - make_horizontal :SELF <- make "HORIZONTAL";
+  - make_vertical :SELF <- make "VERTICAL";
+  - make_circular :SELF <- make "CIRCULAR";
diff --git a/lib/unstable/iup-binding/dialog.li b/lib/unstable/iup-binding/dialog.li
new file mode 100644
index 0000000..e93a835
--- /dev/null
+++ b/lib/unstable/iup-binding/dialog.li
@@ -0,0 +1,82 @@
+Section Header
+  // Dialog
+
+  + name      := DIALOG;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP Dialog";
+
+Section Inherit
+
+  + parent_control:Expanded CONTROL := CONTROL;
+
+Section Public
+
+  + child:CONTROL;
+
+Section Public
+  // popup and show_xy possible values
+  
+  - show_center         :INTEGER := `IUP_CENTER`:INTEGER;
+  - show_left           :INTEGER := `IUP_LEFT`:INTEGER;
+  - show_right          :INTEGER := `IUP_RIGHT`:INTEGER;
+  - show_mousepos       :INTEGER := `IUP_MOUSEPOS`:INTEGER;
+  - show_current        :INTEGER := `IUP_CURRENT`:INTEGER;
+  - show_centerparent   :INTEGER := `IUP_CENTER_PARENT`:INTEGER;
+  - show_top            :INTEGER := `IUP_TOP`:INTEGER;
+  - show_bottom         :INTEGER := `IUP_BOTTOM`:INTEGER;
+
+Section Public
+  // Creation
+  
+  - make title:ABSTRACT_STRING child control:CONTROL :SELF <-
+  // Make a new dialog
+  ( + result:SELF;
+    + h, child_h:POINTER;
+    
+    child   := control;
+    child_h := control.handle;
+    h       := `IupDialog(@child_h)`:POINTER;
+
+    result := SELF.clone;
+    result.set_handle h;
+    result.store "TITLE" value title;
+    result
+  );
+  
+Section Public
+  // Showing/hiding the dialog
+  
+  - popup (x:INTEGER,y:INTEGER) :INTEGER <-
+  // Display the dialog as a modal popup dialog. You may wish to refer
+  // to the documentation section "popup and show_xy possible values" for 
+  // other possible values to popup.
+  ( + h:POINTER;
+    
+    h := handle;
+    `IupPopup(@h, @x, @y)`:(INTEGER)
+  );
+  
+  - show :INTEGER <-
+  // Show the dialog as a non-modal dialog
+  ( + h:POINTER;
+    h := handle;
+    `IupShow(@h)`:(INTEGER)
+  );
+  
+  - show x:INTEGER y y:INTEGER :INTEGER <-
+  // Show the dialog as a non-modal dialog at X and Y. You may wish to refer
+  // to the documentation section "popup and show_xy possible values" for 
+  // other possible values to show x y.
+  ( + h:POINTER;
+    h := handle;
+    `IupShowXY(@h, @x, @y)`:(INTEGER)
+  );
+  
+  - hide <-
+  // Hide the dialog
+  ( + h:POINTER;
+    h := handle;
+    `IupHide(@h)`;
+  );
diff --git a/lib/unstable/iup-binding/example.li b/lib/unstable/iup-binding/example.li
new file mode 100644
index 0000000..6221c63
--- /dev/null
+++ b/lib/unstable/iup-binding/example.li
@@ -0,0 +1,35 @@
+Section Header
+
+  + name := EXAMPLE;
+
+Section Inherit
+
+  - parent:OBJECT := OBJECT;
+
+Section Public
+
+  - main <-
+  ( + dlg:DIALOG;
+    + main_box:HORIZONTAL_BOX;
+    + hello, goodbye:BUTTON;
+    
+    IUP.open;
+    
+    hello := BUTTON.make "Say Hello";
+    hello.set_expand "HORIZONTAL";
+    hello.set_action { "Hello, World!".println; IUP.cb_default };
+
+    goodbye := BUTTON.make "Say Goodbye";
+    goodbye.set_action { "Goodbye, World!".println; IUP.cb_close };
+    
+    main_box := HORIZONTAL_BOX.make;
+    main_box.add hello;
+    main_box.add goodbye;
+
+    
+    dlg := DIALOG.make "Simple" child main_box;
+    dlg.show;
+
+    IUP.main_loop;
+    IUP.close;
+  );
diff --git a/lib/unstable/iup-binding/frame.li b/lib/unstable/iup-binding/frame.li
new file mode 100644
index 0000000..4396464
--- /dev/null
+++ b/lib/unstable/iup-binding/frame.li
@@ -0,0 +1,26 @@
+Section Header
+  // Frame
+
+  + name      := FRAME;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP FRAME";
+
+Section Inherit
+
+  + parent:Expanded CONTROL := CONTROL;
+
+Section Public
+  
+  - make child:CONTROL :SELF <-
+  ( + result:SELF;
+    + child_h, h:POINTER;
+
+    child_h := child.handle;
+    h := `IupFrame(@child_h)`:POINTER;
+
+    result := SELF.clone;
+    result.set_handle h;
+    result
+  );
diff --git a/lib/unstable/iup-binding/gl_canvas.li b/lib/unstable/iup-binding/gl_canvas.li
new file mode 100644
index 0000000..6f015da
--- /dev/null
+++ b/lib/unstable/iup-binding/gl_canvas.li
@@ -0,0 +1,25 @@
+Section Header
+  // GL Canvas
+
+  + name      := GL_CANVAS;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP GLCanvas";
+
+Section Inherit
+
+  + parent:Expanded CONTROL := CONTROL;
+
+Section Public
+  
+  - make :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+
+    h := `IupGLCanvas(NULL)`:POINTER;
+
+    result := SELF.clone;
+    result.set_handle h;
+    result
+  );
diff --git a/lib/unstable/iup-binding/horizontal_box.li b/lib/unstable/iup-binding/horizontal_box.li
new file mode 100644
index 0000000..0bf3029
--- /dev/null
+++ b/lib/unstable/iup-binding/horizontal_box.li
@@ -0,0 +1,25 @@
+Section Header
+  // Horizontal box container control
+
+  + name      := HORIZONTAL_BOX;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP Horizontal Box";
+
+Section Inherit
+
+  + parent:Expanded CONTAINER_CONTROL := CONTAINER_CONTROL;
+
+Section Public
+  
+  - make :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+    
+    h := `IupHbox(NULL)`:POINTER;
+    
+    result := SELF.clone;
+    result.set_handle h;
+    result
+  );
diff --git a/lib/unstable/iup-binding/iup.li b/lib/unstable/iup-binding/iup.li
new file mode 100644
index 0000000..6852f4e
--- /dev/null
+++ b/lib/unstable/iup-binding/iup.li
@@ -0,0 +1,213 @@
+Section Header
+  // Binding of IUP (http://www.tecgraf.puc-rio.br/iup/) for Lisaac
+
+  + name      := IUP;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP binding";
+
+  - external := `
+  #include "iup.h"
+  `;
+  
+  - lip <-
+  (
+    (target = "windows").if {
+      add_lib "-Wl,--start-group -lgdi32 -lcomdlg32 -lcomctl32 -lopengl32 -lglu32 -lcd -liupcd -liup -liupcontrols -liupim -lim -lfreetype6 -lcomctl32 -lole32 -Wl,--end-group";
+    };
+  );
+
+Section Inherit
+
+  - parent_object:OBJECT := OBJECT;
+
+Section Public
+  // Error information
+  
+  - error_message  :ABSTRACT_STRING;
+  - error_code     :INTEGER := `IUP_NOERROR`:INTEGER;
+
+  - error_none     :INTEGER := `IUP_NOERROR`:INTEGER;
+  - error          :INTEGER := `IUP_ERROR`:INTEGER;
+  - error_opened   :INTEGER := `IUP_OPENED`:INTEGER;
+
+Section Public
+  // Callback return values
+  
+  - cb_ignore      :INTEGER := `IUP_IGNORE`:INTEGER;
+  - cb_default     :INTEGER := `IUP_DEFAULT`:INTEGER;
+  - cb_close       :INTEGER := `IUP_CLOSE`:INTEGER;
+  - cb_continue    :INTEGER := `IUP_CONTINUE`:INTEGER;
+
+Section Private
+
+  - set_error code:INTEGER message message:ABSTRACT_STRING <-
+  (
+    error_message := message.clone;
+    error_code := code;
+  );
+
+Section Public
+  // System
+  
+  - open :BOOLEAN <-
+  ( + result:BOOLEAN;
+    (`IupOpen(NULL, NULL)`:(INTEGER) = error_none).if {
+      result := TRUE;
+      `
+      #if 0
+      `;
+      
+      BUTTON.perform_action NULL;
+
+      `
+      #endif
+      `;
+    } else {
+      result := FALSE;
+    };
+
+    result
+  );
+  
+  - close <-
+  (
+    `IupClose()`;
+  );
+  
+  - version :STRING <-
+  ( + n_version : NATIVE_ARRAY(CHARACTER);
+    + result : STRING;
+ 
+    n_version := `IupVersion()`:NATIVE_ARRAY(CHARACTER);
+
+    result := STRING.clone;
+    result.from_external(n_version);
+    result
+  );
+  
+  - load filename:ABSTRACT_STRING :BOOLEAN <-
+  ( + n_filename : NATIVE_ARRAY(CHARACTER);
+    + n_message : NATIVE_ARRAY(CHARACTER);
+    + message : STRING;
+    + result : BOOLEAN;
+  
+    n_filename := filename.to_external;
+    n_message := `IupLoad(@n_filename)`:NATIVE_ARRAY(CHARACTER);
+    (n_message = NULL).if {
+      result := TRUE;
+    } else {
+    result := FALSE;
+      message := STRING.clone;
+      message.from_external(n_message);
+      set_error (-1) message message; 
+    };
+
+    result
+  );
+  
+  - set_language language:ABSTRACT_STRING <-
+  ( + n_language : NATIVE_ARRAY(CHARACTER);
+    n_language := language.to_external;
+   	`IupSetLanguage(@n_language)`;
+  );
+  
+  - get_language :ABSTRACT_STRING <-
+  ( + n_lang : NATIVE_ARRAY(CHARACTER);
+    + result : STRING;
+    
+    n_lang := `IupGetLanguage()`:NATIVE_ARRAY(CHARACTER);
+    
+    result := STRING.clone;
+    result.from_external(n_lang);
+    result
+  );
+
+Section Public
+  // Attributes
+  
+Section Public
+  // Events
+  
+  - main_loop <-
+  (
+    `IupMainLoop()`;
+  );
+  
+  - main_loop_level :INTEGER <-
+  (
+    `IupMainLoopLevel()`:INTEGER
+  );
+  
+  - loop_step :INTEGER <-
+  (
+    `IupLoopStep()`:INTEGER
+  );
+  
+  - exit_loop <-
+  (
+    `IupExitLoop()`;
+  );
+  
+  - flush <-
+  (
+    `IupFlush()`;
+  );
+
+Section Public
+  // Layout Construction
+  
+Section Public
+  // Layout Composition
+  
+Section Public
+  // Layout Hierarchy
+  
+Section Public
+  // Layout Utilities
+  
+Section Public
+  // Dialogs 
+  
+Section Public
+  // Predefined Dialogs
+  
+  - message msg:ABSTRACT_STRING title title:ABSTRACT_STRING <-
+  (
+    + n_msg:NATIVE_ARRAY(CHARACTER);
+    + n_title:NATIVE_ARRAY(CHARACTER);
+    
+    n_msg := msg.to_external;
+    n_title := title.to_external;
+    
+    `IupMessage(@n_title, @n_msg)`;
+  );
+
+Section Public
+  // Standard Controls
+  
+Section Public
+  // Additional Controls
+  
+Section Public
+  // Matrix Utilities
+  
+Section Public
+  // Keyboard
+
+Section Public
+  // Menus
+
+Section Public
+  // Images
+
+Section Public
+  // Names
+
+Section Public
+  // Fonts
+
+Section Public
+  // Miscellaneous
+
diff --git a/lib/unstable/iup-binding/label.li b/lib/unstable/iup-binding/label.li
new file mode 100644
index 0000000..3f9018e
--- /dev/null
+++ b/lib/unstable/iup-binding/label.li
@@ -0,0 +1,28 @@
+Section Header
+  // Label
+
+  + name      := LABEL;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP Label";
+
+Section Inherit
+
+  + parent:Expanded CONTROL := CONTROL;
+
+Section Public
+  
+  - make title:ABSTRACT_STRING :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+    + n_title:NATIVE_ARRAY(CHARACTER);
+    
+    n_title := title.to_external;
+
+    h := `IupLabel(@n_title)`:POINTER;
+
+    result := SELF.clone;
+    result.set_handle h;
+    result
+  );
diff --git a/lib/unstable/iup-binding/list.li b/lib/unstable/iup-binding/list.li
new file mode 100644
index 0000000..47750b4
--- /dev/null
+++ b/lib/unstable/iup-binding/list.li
@@ -0,0 +1,25 @@
+Section Header
+  // List
+
+  + name      := LIST;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP List";
+
+Section Inherit
+
+  + parent:Expanded CONTROL := CONTROL;
+
+Section Public
+  
+  - make :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+
+    h := `IupList(NULL)`:POINTER;
+
+    result := SELF.clone;
+    result.set_handle h;
+    result
+  );
diff --git a/lib/unstable/iup-binding/matrix.li b/lib/unstable/iup-binding/matrix.li
new file mode 100644
index 0000000..1bda243
--- /dev/null
+++ b/lib/unstable/iup-binding/matrix.li
@@ -0,0 +1,25 @@
+Section Header
+  // Matrix
+
+  + name      := MATRIX;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP Matrix";
+
+Section Inherit
+
+  + parent:Expanded CONTROL := CONTROL;
+
+Section Public
+  
+  - make :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+
+    h := `IupMatrix(NULL)`:POINTER;
+
+    result := SELF.clone;
+    result.set_handle h;
+    result
+  );
diff --git a/lib/unstable/iup-binding/ole_control.li b/lib/unstable/iup-binding/ole_control.li
new file mode 100644
index 0000000..8d0bbc1
--- /dev/null
+++ b/lib/unstable/iup-binding/ole_control.li
@@ -0,0 +1,28 @@
+Section Header
+  // OLE Control
+
+  + name      := OLE_CONTROL;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP OLEControl";
+
+Section Inherit
+
+  + parent:Expanded CONTROL := CONTROL;
+
+Section Public
+  
+  - make prog_id:ABSTRACT_STRING :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+    + n_prog_id:NATIVE_ARRAY(CHARACTER);
+    
+    n_prog_id := prog_id.to_external;
+
+    h := `IupOleControl(@n_prog_id)`:POINTER;
+
+    result := SELF.clone;
+    result.set_handle h;
+    result
+  );
diff --git a/lib/unstable/iup-binding/pplot.li b/lib/unstable/iup-binding/pplot.li
new file mode 100644
index 0000000..e9cf310
--- /dev/null
+++ b/lib/unstable/iup-binding/pplot.li
@@ -0,0 +1,34 @@
+Section Header
+  // PPlot
+
+  + name      := PPLOT;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP PPlot";
+
+Section Inherit
+
+  + parent:Expanded CONTROL := CONTROL;
+
+Section Private
+  
+  - was_opened:BOOLEAN := FALSE;
+
+Section Public
+  
+  - make :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+    
+    was_opened.if_false {
+      was_opened := TRUE;
+      `IupPPlotOpen()`;
+    };
+
+    h := `IupPPlot()`:POINTER;
+
+    result := SELF.clone;
+    result.set_handle h;
+    result
+  );
diff --git a/lib/unstable/iup-binding/progress_bar.li b/lib/unstable/iup-binding/progress_bar.li
new file mode 100644
index 0000000..531cf10
--- /dev/null
+++ b/lib/unstable/iup-binding/progress_bar.li
@@ -0,0 +1,25 @@
+Section Header
+  // Progress Bar
+
+  + name      := PROGRESS_BAR;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP ProgressBar";
+
+Section Inherit
+
+  + parent:Expanded CONTROL := CONTROL;
+
+Section Public
+  
+  - make :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+
+    h := `IupProgressBar()`:POINTER;
+
+    result := SELF.clone;
+    result.set_handle h;
+    result
+  );
diff --git a/lib/unstable/iup-binding/spin.li b/lib/unstable/iup-binding/spin.li
new file mode 100644
index 0000000..c26b718
--- /dev/null
+++ b/lib/unstable/iup-binding/spin.li
@@ -0,0 +1,25 @@
+Section Header
+  // Spin
+
+  + name      := SPIN;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP Spin";
+
+Section Inherit
+
+  + parent:Expanded CONTROL := CONTROL;
+
+Section Public
+  
+  - make :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+
+    h := `IupSpin()`:POINTER;
+
+    result := SELF.clone;
+    result.set_handle h;
+    result
+  );
diff --git a/lib/unstable/iup-binding/tabs.li b/lib/unstable/iup-binding/tabs.li
new file mode 100644
index 0000000..1e79476
--- /dev/null
+++ b/lib/unstable/iup-binding/tabs.li
@@ -0,0 +1,25 @@
+Section Header
+  // Tabs container
+
+  + name      := TABS;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP Tabs";
+
+Section Inherit
+
+  + parent:Expanded CONTAINER_CONTROL := CONTAINER_CONTROL;
+
+Section Public
+  
+  - make :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+    
+    h := `IupTabs(NULL)`:POINTER;
+    
+    result := SELF.clone;
+    result.set_handle h;
+    result
+  );
diff --git a/lib/unstable/iup-binding/text.li b/lib/unstable/iup-binding/text.li
new file mode 100644
index 0000000..ce5f39b
--- /dev/null
+++ b/lib/unstable/iup-binding/text.li
@@ -0,0 +1,33 @@
+Section Header
+  // Text
+
+  + name      := TEXT;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP Text";
+
+Section Inherit
+
+  + parent:Expanded CONTROL := CONTROL;
+
+Section Public
+  
+  - make :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+
+    h := `IupText(NULL)`:POINTER;
+
+    result := SELF.clone;
+    result.set_handle h;
+    result
+  );
+
+  - make_multiline :SELF <-
+  ( + result:SELF;
+
+    result := make;
+    result.store "MULTILINE" boolean TRUE;
+    result
+  );
\ No newline at end of file
diff --git a/lib/unstable/iup-binding/toggle.li b/lib/unstable/iup-binding/toggle.li
new file mode 100644
index 0000000..2d16353
--- /dev/null
+++ b/lib/unstable/iup-binding/toggle.li
@@ -0,0 +1,28 @@
+Section Header
+  // Toggle
+
+  + name      := TOGGLE;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP Toggle";
+
+Section Inherit
+
+  + parent:Expanded CONTROL := CONTROL;
+
+Section Public
+  
+  - make title:ABSTRACT_STRING :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+    + n_title:NATIVE_ARRAY(CHARACTER);
+    
+    n_title := title.to_external;
+
+    h := `IupToggle(@n_title, NULL)`:POINTER;
+
+    result := SELF.clone;
+    result.set_handle h;
+    result
+  );
diff --git a/lib/unstable/iup-binding/tree.li b/lib/unstable/iup-binding/tree.li
new file mode 100644
index 0000000..2ff73bb
--- /dev/null
+++ b/lib/unstable/iup-binding/tree.li
@@ -0,0 +1,25 @@
+Section Header
+  // Tree
+
+  + name      := TREE;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP Tree";
+
+Section Inherit
+
+  + parent:Expanded CONTROL := CONTROL;
+
+Section Public
+  
+  - make :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+
+    h := `IupTree()`:POINTER;
+
+    result := SELF.clone;
+    result.set_handle h;
+    result
+  );
diff --git a/lib/unstable/iup-binding/val.li b/lib/unstable/iup-binding/val.li
new file mode 100644
index 0000000..4f6b846
--- /dev/null
+++ b/lib/unstable/iup-binding/val.li
@@ -0,0 +1,31 @@
+Section Header
+  // Val
+
+  + name      := VAL;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP Val";
+
+Section Inherit
+
+  + parent:Expanded CONTROL := CONTROL;
+
+Section Public
+  
+  - make type:ABSTRACT_STRING :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+    + n_type:NATIVE_ARRAY(CHARACTER);
+    
+    n_type := type.to_external;
+
+    h := `IupVal(@n_type)`:POINTER;
+
+    result := SELF.clone;
+    result.set_handle h;
+    result
+  );
+
+  - make_horizontal :SELF <- make "HORIZONTAL";
+  - make_vertical :SELF <- make "VERTICAL";
diff --git a/lib/unstable/iup-binding/vertical_box.li b/lib/unstable/iup-binding/vertical_box.li
new file mode 100644
index 0000000..fa40fa9
--- /dev/null
+++ b/lib/unstable/iup-binding/vertical_box.li
@@ -0,0 +1,25 @@
+Section Header
+  // Vertical box container control
+
+  + name      := VERTICAL_BOX;
+
+  - copyright := "2009, Jeremy Cowgar";
+
+  - comment   := "IUP Vertical Box";
+
+Section Inherit
+
+  + parent:Expanded CONTAINER_CONTROL := CONTAINER_CONTROL;
+
+Section Public
+  
+  - make :SELF <-
+  ( + result:SELF;
+    + h:POINTER;
+    
+    h := `IupVbox(NULL)`:POINTER;
+    
+    result := SELF.clone;
+    result.set_handle h;
+    result
+  );
diff --git a/lib/unstable/lua-binding/README b/lib/unstable/lua-binding/README
new file mode 100644
index 0000000..a1e6fe8
--- /dev/null
+++ b/lib/unstable/lua-binding/README
@@ -0,0 +1,15 @@
+WARNING
+
+This is esperimental software only.
+It provides a binding for the Lua programming language.
+All lua functions that work on a lua_State are slots of LUA_STATE.
+But be sure to read the source code to see if the function exists. Not all
+functions are bound. and if you add support for others functions, please try to
+keep the source code coherent and send me the changes you made so I can include
+it.
+
+The licence is the MIT licence as specified in the source files. It is the same
+licence as Lua, so you shouldn't have any problem using it.
+
+You will need to link the resulting object file with the lua library. Usually,
+this is done by adding the -llua flag to the gcc command line.
diff --git a/lib/unstable/lua-binding/lua.pli b/lib/unstable/lua-binding/lua.pli
new file mode 100644
index 0000000..460dfd3
--- /dev/null
+++ b/lib/unstable/lua-binding/lua.pli
@@ -0,0 +1,3 @@
+public path .
+private path private
+import stdlib
diff --git a/lib/unstable/lua-binding/lua_cfunction.li b/lib/unstable/lua-binding/lua_cfunction.li
new file mode 100644
index 0000000..0bc3d31
--- /dev/null
+++ b/lib/unstable/lua-binding/lua_cfunction.li
@@ -0,0 +1,110 @@
+Section Header
+
+  + name := LUA_CFUNCTION;
+
+  - author        := "Mildred <mildred593(at)online.fr>";
+  - bibliography  := "";
+  - comment       := "";
+
+  // Copyright (c) 2007 Mildred <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+  - external := `#define lisaac_call_lua_cfunction static lisaac_call_lua_cfunction0`;
+
+Section Inherit
+
+  - parent_object :OBJECT := OBJECT;
+
+Section External
+
+  - lisaac_call_lua_cfunction lua_p:POINTER :INTEGER <-
+  (
+    + res :INTEGER;
+    (lua_p != NULL).if_true {
+      + self :SELF;
+      + lua :LUA_STATE;
+      lua := LUA_STATE.create_import lua_p;
+      self := CONVERT(POINTER, SELF).on
+        (lua.touserdata (`lua_upvalueindex(1)`:INTEGER));
+      res := self.call lua;
+    };
+    res
+  );
+
+Section Public
+
+  - call_pointer lua_p:POINTER :INTEGER <-
+  (
+    + lua :LUA_STATE;
+    lua := LUA_STATE.create_import lua_p;
+    call lua
+  );
+
+  - call lua:LUA_STATE :INTEGER <- block.value lua;
+
+Section Private
+
+  + block :BLOCK :=
+  { lua:LUA_STATE;
+    lua.is_valid.if_false {
+      crash_with_message "Lua call of the default C function.";
+    };
+    0
+  };
+
+  - creator_of_lua_cfunctions :INTEGER :=
+  ( + res :INTEGER;
+    `/*`;
+    res := lisaac_call_lua_cfunction NULL;
+    `*/`;
+    res
+  );
+
+Section Public
+
+  - create block:BLOCK :SELF <-
+  (
+    + other:SELF;
+    other := clone;
+    other.make block;
+    other
+  );
+
+  - make block_:BLOCK <-
+  (
+    block := block_;
+  );
+
+  - get_pointer :POINTER <-
+  (
+    creator_of_lua_cfunctions;
+    `lisaac_call_lua_cfunction0`:POINTER
+  );
+  /*(
+    + block :BLOCK;
+    block := Self.block;
+    `(void*) @block`:POINTER
+  );*/
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/lua-binding/lua_reader.li b/lib/unstable/lua-binding/lua_reader.li
new file mode 100644
index 0000000..cd721b7
--- /dev/null
+++ b/lib/unstable/lua-binding/lua_reader.li
@@ -0,0 +1,116 @@
+Section Header
+
+  + name := LUA_READER;
+
+  - author        := "Mildred <mildred593(at)online.fr>";
+  - bibliography  := "";
+  - comment       := "";
+
+  // Copyright (c) 2007 Mildred <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+  - external := `#define lisaac_call_lua_reader static lisaac_call_lua_reader0`;
+
+Section Inherit
+
+  - parent_object :OBJECT := OBJECT;
+
+Section Private
+
+  - size_t :UINTEGER_32;
+
+Section External
+
+  - lisaac_call_lua_reader (lua_p, ud:POINTER, size:POINTER) :POINTER <-
+  (
+    + res :NATIVE_ARRAY(UINTEGER_8);
+    (lua_p != NULL).if_true {
+      + self :SELF;
+      self := CONVERT(POINTER, SELF).on ud;
+      res := self.call_pointer lua_p;
+    };
+    (res != NULL).if {
+      + len :INTEGER;
+      len := res.element_sizeof;
+      `size_t *size = (size_t *) @size;
+      *size = @len;`;
+    };
+    res.to_pointer
+  );
+
+Section Public
+
+  - call_pointer lua_p:POINTER :NATIVE_ARRAY(UINTEGER_8) <-
+  (
+    + lua :LUA_STATE;
+    lua := LUA_STATE.create_import lua_p;
+    call lua
+  );
+
+  - call lua:LUA_STATE :NATIVE_ARRAY(UINTEGER_8) <-
+  (
+    + res :NATIVE_ARRAY(UINTEGER_8);
+    res := block.value lua;
+    // do this in order to prevent the garbage collector to collect the data
+    // until the block is called again.
+    keep_reference_on_data := res;
+    res
+  );
+
+Section Private
+
+  + block :BLOCK :=
+  { lua:LUA_STATE;
+    lua.is_valid.if_false {
+      crash_with_message "Lua call of the default C reader function.";
+    };
+    NATIVE_ARRAY(UINTEGER_8)
+  };
+
+  + keep_reference_on_data :NATIVE_ARRAY(UINTEGER_8) := NULL;
+
+  - creator_of_lua_readers :NATIVE_ARRAY(UINTEGER_8) := lisaac_call_lua_reader NULL;
+
+Section Public
+
+  - create block:BLOCK :SELF <-
+  (
+    + other:SELF;
+    other := clone;
+    other.make block;
+    other
+  );
+
+  - make block_:BLOCK <-
+  (
+    block := block_;
+  );
+
+  - get_pointer :POINTER <-
+  (
+    creator_of_lua_readers;
+    `lisaac_call_lua_reader0`:POINTER
+  );
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/lua-binding/lua_state.li b/lib/unstable/lua-binding/lua_state.li
new file mode 100644
index 0000000..6a5cf5b
--- /dev/null
+++ b/lib/unstable/lua-binding/lua_state.li
@@ -0,0 +1,780 @@
+Section Header
+
+  + name := Expanded LUA_STATE;
+
+  - external := `
+    #include <lua.h>
+    #include <lualib.h>
+    #include <lauxlib.h>`;
+
+  - author        := "Mildred <mildred593(at)online.fr>";
+  - bibliography  := "http://lua.org";
+  - comment       := "The binding for lua_State";
+
+  // Copyright (c) 2007 Mildred <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+Section Public
+
+  + pointer :POINTER := NULL;
+
+Section Public
+
+  //
+  // Misc
+  //
+
+  - atpanic block:BLOCK :POINTER <- not_yet_implemented;
+  // Can't be implemented right now because there is no way we can pass userdata
+  // to the panic function. This can be changed either by Lisaac by allowing to
+  // get a pointer to some slot of any object or by Lua by allowing to have
+  // upvalues in the panic function
+
+  - checkstack n:INTEGER :BOOLEAN <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_checkstack((lua_State*) @state, @n)`:(BOOLEAN)
+  );
+
+  - concat n:INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_concat((lua_State*) @state, @n)`;
+  );
+
+  - equal (index1, index2 :INTEGER) :BOOLEAN <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_equal((lua_State*) @state, @index1, @index2)`:(BOOLEAN)
+  );
+
+  - error <-
+    // Generates a Lua error. The error message (which can actually be a Lua
+    // value of any type) must be on the stack top. This function does a long
+    // jump, and therefore never returns. (see luaL_error).
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_error((lua_State*) @state)`;
+  );
+
+  - gettop :INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_gettop((lua_State*) @state)`:INTEGER
+  );
+
+  - settop top:INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_settop((lua_State*) @state, @top)`;
+  );
+
+  - pop n:INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_pop((lua_State*) @state, @n)`:INTEGER
+  );
+
+  - rawequal (index1, index2 :INTEGER) :BOOLEAN <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_rawequal((lua_State*) @state, @index1, @index2)`:BOOLEAN(TRUE, FALSE)
+  );
+
+  - remove index:INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_remove((lua_State*) @state, @index)`;
+  );
+
+  - replace index:INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_replace((lua_State*) @state, @index)`;
+  );
+
+  - insert index:INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_insert((lua_State*) @state, @index)`;
+  );
+
+  - setallocf (fn, ud :POINTER) <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_setallocf((lua_State*) @state, (lua_Alloc) @fm, @ud)`;
+  );
+
+  - getfenv n:INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_getfenv((lua_State*) @state, @n)`;
+  );
+
+  - setfenv index:INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_setfenv((lua_State*) @state, @index)`;
+  );
+
+Section Public
+
+  //
+  // Coroutine, Threads
+  //
+
+  - lua_yield :INTEGER := `LUA_YIELD`:INTEGER;
+
+  - resume narg:INTEGER :INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_resume((lua_State*) @state, @narg)`:INTEGER
+  );
+
+  - yield nresults:INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_yield((lua_State*) @state, @nresults)`:INTEGER
+  );
+
+  - xmove (other:LUA_STATE, index:INTEGER) <-
+  (
+    + state1 :POINTER;
+    + state2 :POINTER;
+    state1 := pointer;
+    state2 := other.pointer;
+    `lua_xmove((lua_State*) @state1, @state2, @index)`;
+  );
+
+  - status :INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_xmove((lua_State*) @state)`:INTEGER
+  );
+
+Section Public
+
+  //
+  // Table management
+  //
+
+  - globalsindex   :INTEGER := `LUA_GLOBALSINDEX`:INTEGER;
+  - registeryindex :INTEGER := `LUA_REGISTERYINDEX`:INTEGER;
+
+  - createtable (narr, nrec:INTEGER) <- createtable_arr narr rec nrec;
+  - createtable_arr narr:INTEGER rec nrec:INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_createtable_arr((lua_State*) @state, @narr, @nrec)`;
+  );
+
+  - newtable <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_newtable((lua_State*) @state)`;
+  );
+
+  - rawget index:INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_rawget((lua_State*) @state, @index)`;
+  );
+
+  - rawgeti (index:INTEGER, key:INTEGER) <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_rawgeti((lua_State*) @state, @index, @key)`;
+  );
+
+  - rawset index:INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_rawset((lua_State*) @state, @index)`;
+  );
+
+  - rawseti (index:INTEGER, key:INTEGER) <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_rawseti((lua_State*) @state, @index, @key)`;
+  );
+
+  - setfield (index:INTEGER, name:ABSTRACT_STRING) <-
+  (
+    + state :POINTER;
+    + key :NATIVE_ARRAY(CHARACTER);
+    key := name.to_external;
+    state := pointer;
+    `lua_setfield((lua_State*) @state, @index, @key)`;
+  );
+
+  - setglobal name:ABSTRACT_STRING <- setfield (globalsindex, name);
+  // Pops a value from the stack and sets it as the new value of global name.
+
+  - register name:STRING call block:BLOCK <- register (name, block);
+  - register (name:STRING, block:BLOCK) <-
+  (
+    pushcfunction block;
+    setglobal name;
+  );
+
+  - settable index:INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_settable((lua_State*) @state, @index)`;
+  );
+
+Section Public
+
+  //
+  // Metatables
+  //
+
+  - setmetatable index:INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_setmetatable((lua_State*) @state, @index)`;
+  );
+
+Section Public
+
+  //
+  // Call
+  //
+
+  - multret :INTEGER := `LUA_MULTRET`:INTEGER;
+  - errrun  :INTEGER := `LUA_ERRRUN`:INTEGER;
+  - errmem  :INTEGER := `LUA_ERRMEM`:INTEGER;
+  - errerr  :INTEGER := `LUA_ERRERR`:INTEGER;
+
+  - call (param, results :INTEGER) <-
+    // Calls a function.
+    // To call a function you must use the following protocol: first, the
+    // function to be called is pushed onto the stack; then, the arguments to
+    // the function are pushed in direct order; that is, the first argument is
+    // pushed first. Finally you call lua_call; nargs is the number of arguments
+    // that you pushed onto the stack. All arguments and the function value are
+    // popped from the stack when the function is called. The function results
+    // are pushed onto the stack when the function returns. The number of
+    // results is adjusted to nresults, unless nresults is LUA_MULTRET. In this
+    // case, all results from the function are pushed. Lua takes care that the
+    // returned values fit into the stack space. The function results are pushed
+    // onto the stack in direct order (the first result is pushed first), so
+    // that after the call the last result is on the top of the stack.
+    // Any error inside the called function is propagated upwards (with a
+    // longjmp).
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_call((lua_State*) @state, @param, @results)`;
+  );
+
+  - call_multret param :INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_call((lua_State*) @state, @param, LUA_MULTRET)`;
+  );
+
+  - pcall (param, results, errfunc :INTEGER) :INTEGER <-
+    // Calls a function in protected mode.
+    // Both nargs and nresults have the same meaning as in lua_call. If there
+    // are no errors during the call, lua_pcall behaves exactly like lua_call.
+    // However, if there is any error, lua_pcall catches it, pushes a single
+    // value on the stack (the error message), and returns an error code. Like
+    // lua_call, lua_pcall always removes the function and its arguments from
+    // the stack.
+    // If errfunc is 0, then the error message returned on the stack is exactly
+    // the original error message. Otherwise, errfunc is the stack index of an
+    // error handler function. (In the current implementation, this index cannot
+    // be a pseudo-index.) In case of runtime errors, this function will be
+    // called with the error message and its return value will be the message
+    // returned on the stack by lua_pcall.
+    // Typically, the error handler function is used to add more debug
+    // information to the error message, such as a stack traceback. Such
+    // information cannot be gathered after the return of lua_pcall, since by
+    // then the stack has unwound.
+    // The lua_pcall function returns 0 in case of success or one of the
+    // following error codes (defined in lua.h):
+    //  * errrun (LUA_ERRRUN): a runtime error.
+    //  * errmem (LUA_ERRMEM): memory allocation error. For such errors, Lua
+    //    does not call the error handler function.
+    //  * errerr (LUA_ERRERR): error while running the error handler function.
+
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_pcall((lua_State*) @state, @param, @results, @errfunc)`:(INTEGER)
+  );
+
+  - pcall_multret (param, errfunc :INTEGER) :INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_pcall((lua_State*) @state, @param, LUA_MULTRET, @errfunc)`:(INTEGER)
+  );
+
+  - cpcall block:BLOCK :INTEGER <-
+  (
+    + state :POINTER;
+    + cfn :LUA_CFUNCTION;
+    + fn :POINTER;
+    + ud :POINTER;
+    state := pointer;
+    cfn := LUA_CFUNCTION.create block;
+    fn := cfn.get_pointer;
+    ud := cfn.to_pointer;
+    `lua_cpcall((lua_State*) @state, (lua_CFunction) @fn, @ud)`:(INTEGER)
+  );
+
+Section Public
+
+  //
+  // Push
+  //
+
+  - pushboolean bool:BOOLEAN <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_pushboolean((lua_State*) @state, @bool)`;
+  );
+
+  - pushcclosure n:INTEGER call b:BLOCK <- pushcclosure (b, n);
+
+  - pushcclosure (block:BLOCK, nupvalues_:INTEGER) <-
+  (
+    + state :POINTER;
+    + cfn :LUA_CFUNCTION;
+    + fn :POINTER;
+    + nupvalues :INTEGER;
+    state := pointer;
+    cfn := LUA_CFUNCTION.create block;
+    fn :=cfn.get_pointer;
+    nupvalues := nupvalues_ + 1;
+    pushlightuserdata (cfn.to_pointer);
+    insert (-nupvalues);
+    `lua_pushcclosure((lua_State*) @state, (lua_CFunction) @fn, @nupvalues)`;
+    //`lua_pushcfunction((lua_State*) @state, (lua_CFunction) @fn)`;
+  );
+
+  - pushcfunction block:BLOCK <-
+  (
+    + state :POINTER;
+    + cfn :LUA_CFUNCTION;
+    + fn :POINTER;
+    state := pointer;
+    cfn := LUA_CFUNCTION.create block;
+    fn :=cfn.get_pointer;
+    pushlightuserdata (cfn.to_pointer);
+    `lua_pushcclosure((lua_State*) @state, (lua_CFunction) @fn, 1)`;
+    //`lua_pushcfunction((lua_State*) @state, (lua_CFunction) @fn)`;
+  );
+
+  - pushinteger integer:INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_pushinteger((lua_State*) @state, @integer)`;
+  );
+
+  - pushlightuserdata p:POINTER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_pushlightuserdata((lua_State*) @state, @p)`;
+  );
+
+  - pushstring string:ABSTRACT_STRING <-
+  (
+    + size :UNSIGNED_INTEGER;
+    + array :NATIVE_ARRAY(CHARACTER);
+    + state :POINTER;
+    state := pointer;
+    size := string.count;
+    array := LUA_STRING.get_storage string;
+    `lua_pushlstring(@state, @array, @size)`;
+  );
+
+  - pushnil <-
+    // Pushes a nil value onto the stack.
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_pushnil((lua_State*) @state)`;
+  );
+
+  - pushnumber n:NUMERIC <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_pushnumber((lua_State*) @state, @n)`;
+  );
+
+  - pushthread <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_pushthread((lua_State*) @state)`;
+  );
+
+  - upvalueindex n_:INTEGER :INTEGER <-
+  ( + n :INTEGER;
+    n := n_ + 1;
+    `lua_upvalueindex(@n)`:INTEGER
+  );
+
+Section Public
+
+  //
+  // To
+  //
+
+  - toboolean index:INTEGER :BOOLEAN <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_toboolean((lua_State*) @state, @index)`:BOOLEAN(TRUE, FALSE)
+  );
+
+  - tocfunction index:INTEGER :POINTER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_tocfunction((lua_State*) @state, @index)`:POINTER
+  );
+
+  - tointeger index:INTEGER :INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_tointeger((lua_State*) @state, @index)`:INTEGER
+  );
+
+  - tostring index:INTEGER :LUA_STRING <-
+    // Converts the Lua value at the given acceptable index to a C string. If
+    // len is not NULL, it also sets *len with the string length. The Lua value
+    // must be a string or a number; otherwise, the function returns NULL. If
+    // the value is a number, then lua_tolstring also changes the actual value
+    // in the stack to a string. (This change confuses lua_next when
+    // lua_tolstring is applied to keys during a table traversal.)
+    // lua_tolstring returns a fully aligned pointer to a string inside the Lua
+    // state. This string always has a zero ('\0') after its last character (as
+    // in C), but may contain other zeros in its body. Because Lua has garbage
+    // collection, there is no guarantee that the pointer returned by
+    // lua_tolstring will be valid after the corresponding value is removed from
+    // the stack.
+  (
+    + state :POINTER;
+    + len :INTEGER;
+    + arr :NATIVE_ARRAY(CHARACTER);
+    state := pointer;
+    `size_t len;`;
+    arr := `lua_tolstring((lua_State*) @state, @index, &len)`:NATIVE_ARRAY(CHARACTER);
+    len := `len`:INTEGER;
+    LUA_STRING.create_from_external arr count len
+  );
+
+  - tonumber index:INTEGER :NUMERIC <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_tonumber((lua_State*) @state, @index)`:DOUBLE
+  );
+
+  - topointer index:INTEGER :POINTER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_topointer((lua_State*) @state, @index)`:POINTER
+  );
+
+  - tothread index:INTEGER :LUA_STATE <-
+  (
+    + state :POINTER;
+    + ptr :POINTER;
+    state := pointer;
+    ptr := `lua_tothread((lua_State*) @state, @index)`:POINTER;
+    LUA_STATE.create_import ptr
+  );
+
+  - touserdata index:INTEGER :POINTER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_touserdata((lua_State*) @state, @index)`:POINTER
+  );
+
+Section Public
+
+  //
+  // Types
+  //
+
+  - type index:INTEGER :INTEGER <-
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_type((lua_State*) @state, @index)`:INTEGER
+  );
+
+  - typename type:INTEGER :ABSTRACT_STRING <-
+  (
+    + state :POINTER;
+    + array :NATIVE_ARRAY(CHARACTER);
+    state := pointer;
+    array := `lua_typename((lua_State*) @state, @type)`:NATIVE_ARRAY(CHARACTER);
+    STRING.from_external arr
+  );
+
+  - tnone     :INTEGER := `LUA_TNONE`:INTEGER;
+  - tnil      :INTEGER := `LUA_TNIL`:INTEGER;
+  - tnumber   :INTEGER := `LUA_TNUMBER`:INTEGER;
+  - tboolean  :INTEGER := `LUA_TBOOLEAN`:INTEGER;
+  - tstring   :INTEGER := `LUA_TSTRING`:INTEGER;
+  - ttable    :INTEGER := `LUA_TTABLE`:INTEGER;
+  - tfunction :INTEGER := `LUA_TFUNCTION`:INTEGER;
+  - tuserdata :INTEGER := `LUA_TUSERDATA`:INTEGER;
+  - tthread   :INTEGER := `LUA_TTHREAD`:INTEGER;
+  - tlightuserdata:INTEGER := `LUA_TLIGHTUSERDATA`:INTEGER;
+
+Section Public
+
+  //
+  // Check
+  //
+
+  - checkstring narg:INTEGER :LUA_STRING <-
+    // Checks whether the function argument narg is a string and returns this
+    // string.
+  (
+    + state :POINTER;
+    + len :INTEGER;
+    + arr :NATIVE_ARRAY(CHARACTER);
+    state := pointer;
+    `size_t len;`;
+    arr := `luaL_checklstring((lua_State*) @state, @narg, &len)`
+      :(NATIVE_ARRAY(CHARACTER));
+    len := `len`:INTEGER;
+    LUA_STRING.create_from_external arr count len
+  );
+
+Section Public
+
+  - loadfile filename:ABSTRACT_STRING :INTEGER <-
+    // Loads a file as a Lua chunk. This function uses lua_load to load the
+    // chunk in the file named filename. If filename is NULL, then it loads from
+    // the standard input. The first line in the file is ignored if it starts
+    // with a #.
+    // This function returns the same results as lua_load, but it has an extra
+    // error code errfile (LUA_ERRFILE) if it cannot open/read the file. The
+    // other error cores are: 0 for no error, errsyntax (LUA_ERRSYNTAX) if
+    // syntax error during pre-compilation and errmem (LUA_ERRMEM) if memory
+    // allocation error.
+    // As lua_load, this function only loads the chunk; it does not run it.
+  ( + state :POINTER;
+    + array :NATIVE_ARRAY(CHARACTER);
+    array := filename.to_external;
+    `luaL_loadfile((lua_State*) @state, @array)`:(INTEGER)
+  );
+
+  - load_file file:ABSTRACT_FILE :INTEGER <-
+    // Loads a file as a Lua chunk. This function uses lua_load to load the
+    // chunk in the file given. The first line in the file is ignored if it
+    // starts with a #.
+    // This function returns the same results as lua_load, but it has an extra
+    // error code errfile (LUA_ERRFILE) if it cannot open/read the file. The
+    // other error cores are: 0 for no error, errsyntax (LUA_ERRSYNTAX) if
+    // syntax error during pre-compilation and errmem (LUA_ERRMEM) if memory
+    // allocation error.
+    // As lua_load, this function only loads the chunk; it does not run it.
+  (
+    loadfile (file.path)
+  );
+
+  - load_raw (reader, data:POINTER, chunkname:ABSTRACT_STRING) :INTEGER <-
+    // Loads a Lua chunk. If there are no errors, lua_load pushes the compiled
+    // chunk as a Lua function on top of the stack. Otherwise, it pushes an
+    // error message. The return values of lua_load are:
+    //  * 0: no errors;
+    //  * errsyntax (LUA_ERRSYNTAX): syntax error during pre-compilation;
+    //  * errmem (LUA_ERRMEM): memory allocation error.
+    // This function only loads a chunk; it does not run it.
+    // lua_load automatically detects whether the chunk is text or binary, and
+    // loads it accordingly (see program luac).
+    // The lua_load function uses a user-supplied reader function to read the
+    // chunk (see lua_Reader). The data argument is an opaque value passed to
+    // the reader function.
+    // The chunkname argument gives a name to the chunk, which is used for error
+    // messages and in debug information (see §3.8).
+  ( + state :POINTER;
+    + array :NATIVE_ARRAY(CHARACTER);
+    array := chunkname.to_external;
+    `lua_load((lua_State*) @state, (lua_Reader) @reader, @data, @array)`
+      :(INTEGER)
+  );
+
+  - load chunkname:ABSTRACT_STRING with blc:BLOCK :INTEGER <-
+    // Loads a Lua chunk. If there are no errors, lua_load pushes the compiled
+    // chunk as a Lua function on top of the stack. Otherwise, it pushes an
+    // error message. The return values of lua_load are:
+    //  * 0: no errors;
+    //  * errsyntax (LUA_ERRSYNTAX): syntax error during pre-compilation;
+    //  * errmem (LUA_ERRMEM): memory allocation error.
+    // This function only loads a chunk; it does not run it.
+    // lua_load automatically detects whether the chunk is text or binary, and
+    // loads it accordingly (see program luac).
+    // The lua_load function uses a user-supplied block to read the chunk. Every
+    // time it needs another piece of the chunk, lua_load calls the reader
+    // block. The reader block must return a NATIVE_ARRAY(UINTEGER_8) object
+    // that must remain in memory until the reader block function is called
+    // again. To signal the end of the chunk, the reader must return NULL. The
+    // reader function may return pieces of any size greater than zero.
+    // The chunkname argument gives a name to the chunk, which is used for error
+    // messages and in debug information (see §3.8).
+  (
+    + reader :LUA_READER;
+    reader := LUA_READER.create blc;
+    load_raw (reader.get_pointer, reader.to_pointer, chunkname)
+  );
+
+  - errfile   :INTEGER := `LUA_ERRFILE`:INTEGER;
+  - errsyntax :INTEGER := `LUA_ERRSYNTAX`:INTEGER;
+
+Section Public
+
+  //
+  // Make
+  //
+
+  - make <-
+    // Creates a new Lua state. It calls lua_newstate with an allocator based on
+    // the standard C realloc function and then sets a panic function (see
+    // lua_atpanic) that prints an error message to the standard error output in
+    // case of fatal errors.
+    // Change the current object to the new state, or to the NULL state if there
+    // is a memory allocation error.
+  (
+    pointer := `luaL_newstate()`:POINTER;
+  );
+
+  - make_with_allocation (fn, ud :POINTER) <-
+    // Makes a new, independent state. Makes the NULL state if cannot create the
+    // state (due to lack of memory). The argument fn is the allocator function;
+    // Lua does all memory allocation for this state through this function. The
+    // second argument, ud, is an opaque pointer that Lua simply passes to the
+    // allocator in every call.
+  (
+    pointer := `lua_newstate((lua_Alloc) @fn, @ud)`;
+  );
+
+  - make_import pointer_:POINTER <-
+    // Change the current object to the state pointer by the pointer given.
+  (
+    pointer := pointer_;
+  );
+
+Section Public
+
+  //
+  // Creation
+  //
+
+  - create :SELF <-
+    // Creates a new Lua state. It calls lua_newstate with an allocator based on
+    // the standard C realloc function and then sets a panic function (see
+    // lua_atpanic) that prints an error message to the standard error output in
+    // case of fatal errors.
+    // Returns the new state, or NULL if there is a memory allocation error.
+  (
+    + res :SELF;
+    res.make;
+    res
+  );
+
+  - create_with_allocation (fn, ud :POINTER) <-
+    // Creates a new, independent state. Returns NULL if cannot create the state
+    // (due to lack of memory). The argument fn is the allocator function; Lua
+    // does all memory allocation for this state through this function. The
+    // second argument, ud, is an opaque pointer that Lua simply passes to the
+    // allocator in every call.
+  (
+    + res :SELF;
+    res.make_with_allocation (fn, ud);
+    res
+  );
+
+  - create_import pointer:POINTER :SELF <-
+    // Return a new state that references the state pointed by the given
+    // pointer.
+  (
+    + res :SELF;
+    res.make_import pointer;
+    res
+  );
+
+  - close <-
+    // Destroys all objects in the current Lua state (calling the corresponding
+    // garbage-collection metamethods, if any) and frees all dynamic memory used
+    // by this state. On several platforms, you may not need to call this
+    // function, because all resources are naturally released when the host
+    // program ends. On the other hand, long-running programs, such as a daemon
+    // or a web server, might need to release states as soon as they are not
+    // needed, to avoid growing too large.
+  (
+    + state :POINTER;
+    state := pointer;
+    `lua_close((lua_State*) @state)`;
+    pointer := NULL;
+  );
+
+  - is_valid :BOOLEAN <- (pointer != NULL);
+    // Return TRUE if the current state is valid (non NULL state), FALSE
+    // otherwise.
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/lua-binding/lua_string.li b/lib/unstable/lua-binding/lua_string.li
new file mode 100644
index 0000000..7b2392b
--- /dev/null
+++ b/lib/unstable/lua-binding/lua_string.li
@@ -0,0 +1,67 @@
+Section Header
+
+  + name := LUA_STRING; // <- STRING, ABSTRACT_STRING;
+
+  - author        := "Mildred <mildred593(at)online.fr>";
+  - bibliography  := "";
+  - comment       := "";
+
+  // Copyright (c) 2007 Mildred <mildred593(at)online.fr>
+  //
+  // Permission is hereby granted, free of charge, to any person
+  // obtaining a copy of this software and associated documentation
+  // files (the "Software"), to deal in the Software without
+  // restriction, including without limitation the rights to use,
+  // copy, modify, merge, publish, distribute, sublicense, and/or sell
+  // copies of the Software, and to permit persons to whom the
+  // Software is furnished to do so, subject to the following
+  // conditions:
+  //
+  // The above copyright notice and this permission notice shall be
+  // included in all copies or substantial portions of the Software.
+  //
+  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+  // OTHER DEALINGS IN THE SOFTWARE.
+
+Section Inherit
+
+  - parent_abstract_string :Expanded ABSTRACT_STRING;
+
+Section Public
+
+  - make_from_external arr:NATIVE_ARRAY(CHARACTER) count len:INTEGER <-
+  (
+    storage := arr;
+    count := len;
+  );
+
+  - create_from_external arr:NATIVE_ARRAY(CHARACTER) count len:INTEGER :LUA_STRING <-
+  ( + res :LUA_STRING;
+    res := clone;
+    make_from_external arr count len;
+    res
+  );
+
+  - from_abstract_string str:ABSTRACT_STRING :SELF <-
+  (
+    + res :SELF;
+    res := clone;
+    res.make_abstract_string (str);
+    res
+  );
+
+  - to_string :STRING <- STRING.create_copy Self;
+
+  - get_storage str:ABSTRACT_STRING :NATIVE_ARRAY(CHARACTER) <- str.storage;
+  // Expose storage of other strings
+  // Lua already makes a copy of the string when it goes to the Lua world.
+  // No need to make a copy ourselves.
+
+// kate: hl Lisaac v0.2; indent-width 2; space-indent on; replace-tabs off;
+// kate: tab-width 8; remove-trailing-space on;
diff --git a/lib/unstable/math/low_level/abstract_matrix.li b/lib/unstable/math/low_level/abstract_matrix.li
new file mode 100644
index 0000000..56e0b60
--- /dev/null
+++ b/lib/unstable/math/low_level/abstract_matrix.li
@@ -0,0 +1,163 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Math-Library                                  //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := ABSTRACT_MATRIX(E);
+  
+  - comment  := "(n,m) matrix";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Private
+  
+  + storage:FAST_ARRAY2(E);
+  
+Section Public  
+  
+  - lines:INTEGER <- storage.count1;
+  - columns:INTEGER <- storage.coun2;
+  
+  
+  - make (n,m:INTEGER) <-
+  (
+    storage := FAST_ARRAY2(E).create (n,m);
+  );
+  
+  - create_from v:FAST_ARRAY2(E) :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make_from v;
+    result
+  );
+  
+  - make_from v:FAST_ARRAY2(E) <-
+  (
+    storage := v;
+  );
+  
+  
+  //
+  // Access.
+  //
+  
+  - copy other:SELF <-
+  (
+    storage.copy (other.getv);
+  );
+  
+  - zero:SELF <- create (lines,columns) value (E.zero);
+  
+  
+  - put v:E to (l,c:INTEGER) <- 
+  (
+    storage.put v to (l,c);
+  );
+  
+  - set_all_with val:E <-
+  (
+    storage.set_all_with val;
+  );
+  
+  - item (l,c:INTEGER) :E <- 
+  (
+    storage.item (l,c)
+  );
+  
+  - getv:FAST_ARRAY2(E) <-
+  (
+    storage
+  );
+  
+  - to_external:POINTER <-
+  (
+    storage.to_external
+  );
+  
+  //
+  // Operations.
+  //
+  
+  - put_foreach block:BLOCK <-
+  (
+    storage.lower1.to (storage.upper1) do { line:INTEGER;
+      storage.lower2.to (storage.upper2) do { column:INTEGER;
+	storage.put (block.value (line,column)) to (line, column);
+      };
+    };
+  );
+  
+  - load_identity <-
+  (
+    put_foreach { (l,c:INTEGER);
+      + result:E;
+      
+      (l = c).if {
+        result := E.one;
+      } else {
+        result := E.zero;
+      };
+      result
+    };
+  );
+  
+  - Self:SELF '+' Left 80 other:SELF :SELF <-
+  ( + m:FAST_ARRAY(E);
+    
+    m := FAST_ARRAY(E).create (lines,columns);
+    m.put_foreach { (l,c:INTEGER);
+      item (l,c) + other.item (l,c)
+    };
+    create_from m
+  );
+
+  - Self:SELF '-' Left 80 other:SELF :SELF <-
+  ( + m:FAST_ARRAY(E);
+    
+    m := FAST_ARRAY(E).create (lines,columns);
+    m.put_foreach { (l,c:INTEGER);
+      item (l,c) - other.item (l,c)
+    };
+    create_from m
+  );
+  
+  - Self:SELF '*' Left 100 scalar:E :SELF <-
+  ( + m:FAST_ARRAY(E);
+    
+    m := FAST_ARRAY(E).create (lines,columns);
+    m.put_foreach { (l,c:INTEGER);
+      item (l,c) * scalar
+    };
+    create_from m
+  );
+  
+  - print <-
+  (
+    storage.lower1.to (storage.upper1) do { line:INTEGER;
+      "(  ".print;
+      storage.lower2.to (storage.upper2) do { column:INTEGER;
+        storage.item (line,column).print; "  ".print;
+      };
+      ")\n".print;
+    };
+  );
\ No newline at end of file
diff --git a/lib/unstable/math/matrix.li b/lib/unstable/math/matrix.li
new file mode 100644
index 0000000..337bd72
--- /dev/null
+++ b/lib/unstable/math/matrix.li
@@ -0,0 +1,51 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Math-Library                                  //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := MATRIX(E);
+  
+  - comment  := "(n,m) matrix";
+  
+Section Inherit
+  
+  - parent_abstract_matrix:Expanded ABSTRACT_MATRIX(E);
+  
+Section Public  
+  
+  //
+  // Creation.
+  //
+  
+  - create (n,m:INTEGER) :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make (n,m);
+    result
+  );
+ 
+  - create (n,m:INTEGER) value val:E :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make (n,m);
+    result.set_all_with val;
+    result
+  );
\ No newline at end of file
diff --git a/lib/unstable/math/matrix4.li b/lib/unstable/math/matrix4.li
new file mode 100644
index 0000000..44ade84
--- /dev/null
+++ b/lib/unstable/math/matrix4.li
@@ -0,0 +1,61 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Math-Library                                  //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := MATRIX4(E);
+  
+  - comment  := "4x4 matrix";
+  
+Section Inherit
+  
+  + parent_matrix:Expanded ABSTRACT_MATRIX(E);
+  
+Section Public   
+  
+  - lines:INTEGER <- 4;
+  - columns:INTEGER <- 4;
+  
+  //
+  // Creation.
+  //
+
+  - create:SELF <-
+  ( + result:SELF;
+    result := clone;
+    result.make (4,4);
+    result
+  );
+  
+  - create_value val:INTEGER :SELF <-
+  ( + result:SELF;
+    result := clone;
+    result.make (4,4);
+    result.set_all_with val;
+    result
+  );
+
+  //
+  //
+  //
+  
+ 
+ 
\ No newline at end of file
diff --git a/lib/unstable/math/vector2.li b/lib/unstable/math/vector2.li
new file mode 100644
index 0000000..a43db64
--- /dev/null
+++ b/lib/unstable/math/vector2.li
@@ -0,0 +1,135 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Math-Library                                  //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := VECTOR2(E);
+  
+  - comment  := "(x,y) vector";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  + x:E;
+  + y:E;
+  
+  - create (a,b:E) :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make (a,b);
+    result
+  );
+  
+  - make (a,b:E) <-
+  (
+    x := a;
+    y := b;
+  );
+  
+  - copy :SELF <-
+  (
+    create (x,y)
+  );
+  
+  - zero:SELF <- create (E.zero,E.zero);
+  
+  - set_x v:E <- 
+  (
+    x := v;
+  );
+  - set_y v:E <- 
+  (
+    y := v;
+  );
+  
+  - get :(E,E) <-
+  (
+    x, y
+  );
+  
+  - getv:FAST_ARRAY(E) <-
+  (
+    + result:FAST_ARRAY(E);
+    
+    result := FAST_ARRAY(E).create 2;
+    result.put x to 0;
+    result.put y to 1;
+    result
+  );
+  
+  - Self:SELF '-' :SELF <- 
+  (
+    create (-x, -y)
+  );
+  
+  - Self:SELF '+' Left 80 other:SELF :SELF <-
+  (
+    create (x + other.x, y + other.y)
+  );
+
+  - Self:SELF '-' Left 80 other:SELF :SELF <-
+  (
+    create (x - other.x, y - other.y)
+  );
+  
+  - Self:SELF '*' Left 100 scalar:E :SELF <-
+  (
+    create (scalar * x, scalar * y)
+  );
+  
+  - Self:SELF '/' Left 100 scalar:E :SELF <-
+  (
+    ? {scalar != 0};
+    create (x / scalar, y / scalar)
+  );
+  
+  - magnitude:E <- 
+  // magnitude = sqrt(x^2 + y^2)
+  (
+    (x*x + y*y).sqrt
+  );
+  
+  - normalize <-
+  // normalize self vector (of length 1) 
+  ( + m:E;
+    
+    m := magnitude;
+    make (x/m, y/m); 
+  );
+  
+  - normalized :SELF <-
+  // return a normalized vector (of length 1) from self
+  (
+    Self / magnitude
+  );
+
+  - dot other:SELF :E <-
+  (
+    x*other.x + y*other.y
+  );
+  
+  - print <-
+  (
+    "(".print; x.print;", ".print; y.print; ")".print;
+  );
\ No newline at end of file
diff --git a/lib/unstable/math/vector3.li b/lib/unstable/math/vector3.li
new file mode 100644
index 0000000..f8e88f8
--- /dev/null
+++ b/lib/unstable/math/vector3.li
@@ -0,0 +1,157 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Math-Library                                  //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+   
+  + name     := VECTOR3(E);
+  
+  - comment  := "(x,y,z) vector";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  + x:E;
+  + y:E;
+  + z:E;
+  
+  - create (a,b,c:E) :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make (a,b,c);
+    result
+  );
+  
+  - make (a,b,c:E) <-
+  (
+    x := a;
+    y := b;
+    z := c;
+  );
+  
+  - copy :SELF <-
+  (
+    create (x,y,z)
+  );
+   
+  - zero:SELF <- create (E.zero,E.zero,E.zero);
+
+ 
+  - set_x v:E <- 
+  (
+    x := v;
+  );
+  - set_y v:E <- 
+  (
+    y := v;
+  );
+  - set_z v:E <- 
+  (
+    z := v;
+  );
+  
+  - get :(E,E,E) <-
+  (
+    x, y, z
+  );
+  
+  - getv:FAST_ARRAY(E) <-
+  (
+    + result:FAST_ARRAY(E);
+    
+    result := FAST_ARRAY(E).create 3;
+    result.put x to 0;
+    result.put y to 1;
+    result.put z to 2;
+    result
+  );
+  
+  - '-' Self:SELF :SELF <- 
+  (
+    create (-x, -y, -z)
+  );
+  
+  - Self:SELF '+' Left 80 other:VECTOR3(E) :SELF <-
+  (
+    create (x + other.x, y + other.y, z + other.z)
+  );
+
+  - Self:SELF '-' Left 80 other:VECTOR3(E) :SELF <-
+  (
+    create (x - other.x, y - other.y, z - other.z)
+  );
+  
+  - Self:SELF '*' Left 100 scalar:E :SELF <-
+  (
+    create (scalar * x, scalar * y, scalar * z)
+  );
+  
+  - Self:SELF '/' Left 100 scalar:E :SELF <-
+  (
+    ? {scalar != 0};
+    create (x / scalar, y / scalar, z / scalar)
+  );
+  
+  - magnitude:E <- 
+  // magnitude = sqrt(V.x^2 + V.y^2 + V.z^2)
+  (
+    (x*x + y*y + z*z).sqrt
+  );
+   
+  - normalize <-
+  // normalize self vector (of length 1) 
+  ( + m:E;
+    
+    m := magnitude;
+    make (x/m, y/m, z/m); 
+  );
+  
+  - normalized :SELF <-
+  // return a normalized vector (of length 1) from self
+  (
+    Self / magnitude
+  );
+  
+  - dot other:VECTOR3(E) :E <-
+  (
+    x*other.x + y*other.y + z*other.z
+  );
+  
+  - cross other:VECTOR3(E) :SELF <-
+  // calculate the cross product 
+  (
+    + nx,ny,nz:E;
+    
+    nx := (y * other.z) - (z * other.y);
+    ny := (z * other.x) - (x * other.z);
+    nz := (x * other.y) - (y * other.x);
+    
+    create (nx,ny,nz)
+  );
+  
+  
+  - print <-
+  (
+    "(".print; x.print;", ".print; y.print; ", ".print;
+    z.print; ")".print;
+  );
\ No newline at end of file
diff --git a/lib/unstable/math/vector4.li b/lib/unstable/math/vector4.li
new file mode 100644
index 0000000..49b188d
--- /dev/null
+++ b/lib/unstable/math/vector4.li
@@ -0,0 +1,145 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Math-Library                                  //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := VECTOR4(E);
+  
+  - comment  := "(x,y,z,w) vector";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  + x:E;
+  + y:E;
+  + z:E; 
+  + w:E;
+  
+  - create (a,b,c,d:E) :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make (a,b,c,d);
+    result
+  );
+  
+  - make (a,b,c,d:E) <-
+  (
+    x := a;
+    y := b;
+    z := c;
+    w := d;
+  );
+  
+  - copy :SELF <-
+  (
+    create (x,y,z,w)
+  );
+  
+  - zero:SELF <- create (E.zero,E.zero,E.zero,E.zero);
+  
+  - set_x v:E <- 
+  (
+    x := v;
+  );
+  - set_y v:E <- 
+  (
+    y := v;
+  );
+  - set_z v:E <- 
+  (
+    z := v;
+  );
+  - set_w v:E <- 
+  (
+    w := v;
+  );
+  - get :(E,E,E,E) <-
+  (
+    x, y, z, w
+  );
+  
+  - getv:FAST_ARRAY(E) <-
+  (
+    + result:FAST_ARRAY(E);
+    
+    result := FAST_ARRAY(E).create 4;
+    result.put x to 0;
+    result.put y to 1;
+    result.put z to 2;
+    result.put w to 3;
+    result
+  );
+  
+  - Self:SELF '-' :SELF <- 
+  (
+    create (-x, -y, -z, -w)
+  );
+  
+  - Self:SELF '+' Left 80 other:SELF :SELF <-
+  (
+    create (x + other.x, y + other.y, z + other.z, w + other.w)
+  );
+
+  - Self:SELF '-' Left 80 other:SELF :SELF <-
+  (
+    create (x - other.x, y - other.y, z - other.z, w - other.w)
+  );
+  
+  - Self:SELF '*' Left 100 scalar:E :SELF <-
+  (
+    create (scalar * x, scalar * y, scalar * z, scalar * w)
+  );
+  
+  - Self:SELF '/' Left 100 scalar:E :SELF <-
+  (
+    ? {scalar != 0};
+    create (x / scalar, y / scalar, z / scalar, w / scalar)
+  );
+  
+  - magnitude:E <- 
+  // magnitude = sqrt(x^2 + y^2 + z^2 + w^2)
+  (
+    (x*x + y*y + z*z + w*w).sqrt
+  );
+  
+  - normalize <-
+  // normalize self vector (of length 1) 
+  ( + m:E;
+    
+    m := magnitude;
+    make (x/m, y/m, z/m, w/m); 
+  );
+  
+  - normalized :SELF <-
+  // return a normalized vector (of length 1) from self
+  (
+    Self / magnitude
+  );
+ 
+  
+  - print <-
+  (
+    "(".print; x.print;", ".print; y.print; ", ".print;
+    z.print; ", ".print; w.print; ")".print;
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/3D/camera.li b/lib/unstable/opengl/3D/camera.li
new file mode 100644
index 0000000..3c079a7
--- /dev/null
+++ b/lib/unstable/opengl/3D/camera.li
@@ -0,0 +1,206 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Application                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := CAMERA;
+  
+  - comment  := "handle view (based on gluLookAt())";
+  
+Section Inherit
+  
+  - parent_framework:FRAMEWORK_ANY := FRAMEWORK_ANY;
+
+Section Public
+  
+  // position in 3d world
+  + position:VECTOR3(REAL_32); 
+  
+  // camera's view vector
+  + view:VECTOR3(REAL_32);
+  
+  // camera's up vector (orthonormal with view & right)
+  + up:VECTOR3(REAL_32);
+  
+  // camera's up vector (orthonormal with view & up)
+  + right:VECTOR3(REAL_32);
+  
+  
+  // speed coeff
+  - kspeed:REAL_32 := 50;
+  
+  
+  - create_from (p,v,u,r:VECTOR3(REAL_32)) :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make (p,v,u,r);
+    result
+  );
+  
+  - create_position (p:VECTOR3(REAL_32)) :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make (p, VECTOR3(REAL_32).create (0.0,-1.0,1.0),VECTOR3(REAL_32).create (0.0,1.0,0.0),VECTOR3(REAL_32).create (1.0,0.0,0.0));
+    result
+  );
+  
+   - create_position p:VECTOR3(REAL_32) looking_at target:VECTOR3(REAL_32) :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make (p, (target - p).normalized, VECTOR3(REAL_32).create (0.0,1.0,0.0),VECTOR3(REAL_32).create (1.0,0.0,0.0));
+    result
+  );
+  
+  - create :SELF <-
+  // default camera
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make (VECTOR3(REAL_32).create (0.0,1.0,-1.0), VECTOR3(REAL_32).create (0.0,-1.0,1.0),VECTOR3(REAL_32).create (0.0,1.0,0.0),VECTOR3(REAL_32).create (1.0,0.0,0.0));
+    result
+  );
+  
+  - make (p,v,u,r:VECTOR3(REAL_32)) <-
+  (
+    position := p;
+    view := v;
+    up := u;
+    right := r;
+  );
+  
+  - set_position p:VECTOR3(REAL_32) <-
+  (
+    position := p;
+  );
+  
+  - set_view v:VECTOR3(REAL_32) <-
+  (
+    view := v;
+  );
+  
+  - set_up u:VECTOR3(REAL_32) <-
+  (
+    up := u;
+  );
+  
+  - set_right u:VECTOR3(REAL_32) <-
+  (
+    right := u;
+  );
+  
+  - look <-
+  (
+    + px,py,pz,vx,vy,vz,ux,uy,uz:REAL_32;
+    
+    px := position.x;
+    py := position.y;
+    pz := position.z;
+    
+    vx := px + view.x;
+    vy := py + view.y;
+    vz := pz + view.z;
+    
+    ux := up.x;
+    uy := up.y;
+    uz := up.z;
+    
+    `gluLookAt (@px, at py, at pz, @vx, at vy, at vz, @ux, at uy, at uz)`;
+  );
+  
+  - update_with_mouse <-
+  (
+    + midx, midy, mx, my:INTEGER;
+    + angle_y, angle_x:REAL_32;
+    
+    midx := screen_width >> 1;
+    midy := screen_height >> 1;
+    
+    (mx,my) := event.get_mouse_pos;
+  
+    ((mx = midx) && {my = midy}).if_false {
+      event.warp_mouse (midx,midy); // a changer
+      
+      // scaled direction the moused moved in
+      angle_y := (midx - mx).to_real / 1000.0;
+      angle_x := (midy - my).to_real / 1000.0;
+      
+      rotate_y angle_y;
+      rotate_x angle_x;
+    };
+  );
+
+  - rotate_x angle:REAL_32 <-
+  ( 
+    view := ((view*angle.cos) + (up*angle.sin)).normalized;
+    
+    up := (view.cross right) * -1;
+  );
+  
+  - rotate_y angle:REAL_32 <-
+  (    
+    view := ((view*angle.cos) - (right*angle.sin)).normalized;
+    
+    right := view.cross up;
+  );
+  
+  - rotate_z angle:REAL_32 <-
+  (  
+    right := ((right*angle.cos) + (up*angle.sin)).normalized;
+    
+    up := view.cross right * -1;
+  );
+  
+  - move (speed:REAL_32,t:REAL_32) axis v:VECTOR3(REAL_32) <-
+  (  
+    position.set_x (position.x + v.x * speed * t);
+    position.set_y (position.y + v.y * speed * t);
+    position.set_z (position.z + v.z * speed * t);
+  );
+  
+  //   
+  // just for testing
+  //
+  - update_with_keys time:REAL_32 <-
+  (
+    (event.keydown (KEYCODE.k_up)).if {
+      move (kspeed,time) axis view;
+      event.set_up (KEYCODE.k_up);// hack
+    };
+    (event.keydown (KEYCODE.k_down)).if {
+      move (-kspeed,time) axis view;
+      event.set_up (KEYCODE.k_down); // hack
+    };
+    (event.keydown (KEYCODE.k_left)).if {
+      move (-kspeed,time) axis right;
+      event.set_up (KEYCODE.k_left);// hack
+    };
+    (event.keydown (KEYCODE.k_right)).if {
+      move (kspeed,time) axis right;
+      event.set_up (KEYCODE.k_right); // hack
+    };
+  );
+  
+  - animate t:REAL_32 <-
+  (
+    update_with_mouse;
+    update_with_keys t;
+  );
+  
+  
diff --git a/lib/unstable/opengl/3D/model.li b/lib/unstable/opengl/3D/model.li
new file mode 100644
index 0000000..f5c8f8b
--- /dev/null
+++ b/lib/unstable/opengl/3D/model.li
@@ -0,0 +1,97 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Application                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := MODEL;
+  
+  - comment  := "Animated 3d model";
+  
+Section Inherit
+  
+  - parent_framework:FRAMEWORK_ANY := FRAMEWORK_ANY;
+  
+Section Public
+  
+  + name:STRING;
+  
+  + texture:TEXTURE;
+  + material:MATERIAL;
+  
+  + lerp:REAL_32;
+  
+  + current_frame:INTEGER;
+  + old_frame:INTEGER;
+  + nb_frames:INTEGER;
+  
+  - create s:ABSTRACT_STRING with tex:TEXTURE :SELF <-
+  (
+    + result:SELF;
+    result := SELF.clone;
+    result.make (s,tex);
+    result
+  );
+  
+  - create s:ABSTRACT_STRING :SELF <-
+  (
+    + result:SELF;
+    result := SELF.clone;
+    result.make (s,NULL);
+    result
+  );
+  
+  - make (s:ABSTRACT_STRING, tex:TEXTURE) <-
+  (
+    name := STRING.create_from_string s;
+    texture := tex;
+    load;
+  );
+  
+  - set_material m:MATERIAL <- 
+  (
+    material := m;
+  );
+  
+  - render <-
+  (
+    deferred;
+  );
+  
+  - render_with tex:TEXTURE <-
+  (
+    deferred;
+  );
+  
+  - load <- deferred;
+  
+  - update time:REAL_32 <-
+  (
+    lerp := lerp + time;
+    (lerp >= 1.0).if {
+      lerp := 0.0;
+      old_frame := current_frame;
+      current_frame := current_frame + 1;
+      
+      (current_frame >= nb_frames).if {
+        current_frame := 0;
+      };
+    };
+  );
diff --git a/lib/unstable/opengl/3D/models/md2_frame.li b/lib/unstable/opengl/3D/models/md2_frame.li
new file mode 100644
index 0000000..118fade
--- /dev/null
+++ b/lib/unstable/opengl/3D/models/md2_frame.li
@@ -0,0 +1,67 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Application                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := MD2_FRAME;
+  
+  - comment  := "Quake2' md2 model format";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+ 
+  
+Section Public
+  
+  - fixme:VECTOR3(REAL_32) := VECTOR3(REAL_32).zero;
+  
+  + name:STRING;
+  
+  // frame transformation
+  + scale:VECTOR3(REAL_32) := fixme;
+  + translate:VECTOR3(REAL_32) := fixme;
+  
+  + vertex:FAST_ARRAY(MD2_VERTEX);
+  
+  
+  - create (n:ABSTRACT_STRING, s,t:VECTOR3(REAL_32), v:FAST_ARRAY(MD2_VERTEX)) :SELF <-
+  (
+    + result:SELF;
+    result := SELF.clone;
+    result.make (n,s,t,v);
+    result
+  );
+  
+  - make (n:ABSTRACT_STRING, s,t:VECTOR3(REAL_32), v:FAST_ARRAY(MD2_VERTEX)) <-
+  (
+    name := STRING.create_from_string n;
+    scale := s;
+    translate := t;
+    vertex := v;
+  );
+  
+  - print <- 
+  (
+    "\n-> frame ".print; name.print;
+    " sc = ".print; scale.print;
+    " tr = ".print; translate.print;
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/3D/models/md2_model.li b/lib/unstable/opengl/3D/models/md2_model.li
new file mode 100644
index 0000000..d4731de
--- /dev/null
+++ b/lib/unstable/opengl/3D/models/md2_model.li
@@ -0,0 +1,321 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Application                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := MD2_MODEL;
+  
+  - comment  := "Quake2' md2 model format";
+  
+Section Inherit
+  
+  + parent_model:Expanded MODEL;
+  
+  - parent_md2_normals:MD2_NORMALS := MD2_NORMALS;
+  
+Section Public
+  
+  - md2_magic:INTEGER <- 0;
+  - md2_version:INTEGER <- 1;
+  
+  - md2_skin_width:INTEGER <- 2;
+  - md2_skin_height:INTEGER <- 3;
+  
+  - md2_nb_vertex:INTEGER <- 6;
+  - md2_nb_texels:INTEGER <- 7;
+  - md2_nb_triangles:INTEGER <- 8;
+  - md2_nb_frames:INTEGER <- 10;
+  
+  - md2_offset_texels:INTEGER <- 12;
+  - md2_offset_tris:INTEGER <- 13;
+  - md2_offset_frames:INTEGER <- 14;
+  
+  
+  // texture coordinates
+  + texels:FAST_ARRAY(VECTOR2(INTEGER_16)); 
+  
+  // model geometry
+  + triangles:FAST_ARRAY(MD2_TRIANGLE);
+  
+  // model frames for animation
+  + frames:FAST_ARRAY(MD2_FRAME);
+  
+  // re-scaling model
+  + scale:REAL_32;
+  
+  // frame start of each animation
+  + anim_index:FAST_ARRAY(INTEGER);
+  
+  // skin texture dimensions
+  + skin_width:REAL_32;
+  + skin_height:REAL_32;
+  
+  - load <-
+  (
+    + header:FAST_ARRAY(UINTEGER_32);
+    + buffer_16:FAST_ARRAY(INTEGER_16);
+    + nb_texels,nb_tris,nb_vertex:INTEGER;
+    + v:VECTOR2(INTEGER_16);
+    + t:MD2_TRIANGLE;
+    + x:INTEGER;
+    
+    + e:ENTRY;
+    + file:FILE;
+    
+    e := FILE_SYSTEM.get_entry name;
+    (e != NULL).if {
+      file ?= e;
+      file.open;
+      
+      // md2 header size = 17*4 bytes
+      header := FAST_ARRAY(UINTEGER_32).create_with_capacity 17;
+      
+      (file.read header size (17)  > 0).if {
+        // read header
+        
+        ((header.item md2_magic != 844121161) || {header.item md2_version != 8}).if {
+          error "Bad model file";
+        };
+        
+        nb_texels := header.item md2_nb_texels;
+        nb_tris := header.item md2_nb_triangles;
+        nb_frames := header.item md2_nb_frames;
+        nb_vertex := header.item md2_nb_vertex;
+        
+        /*   "\nNb texels: ".print;nb_texels.print; 
+        "\nNb tris: ".print;nb_tris.print;
+        "\nNb verts: ".print;nb_vertex.print;
+        "\nNb frames: ".print;nb_frames.print;      
+        */ 
+        texels := FAST_ARRAY(VECTOR2(INTEGER_16)).create_with_capacity nb_texels;
+        triangles := FAST_ARRAY(MD2_TRIANGLE).create_with_capacity nb_tris;
+        
+        frames := FAST_ARRAY(MD2_FRAME).create_with_capacity nb_frames;
+        
+        skin_width := header.item md2_skin_width.to_real;
+        skin_height := header.item md2_skin_height.to_real;
+        
+        // coord texture
+        buffer_16 := FAST_ARRAY(INTEGER_16).create_with_capacity (nb_texels*2);
+        file.set_cursor (header.item md2_offset_texels);
+        (file.read buffer_16 size (nb_texels*2) <= 0).if {
+          error "load model: read error";
+        };
+        
+        // read texels
+        x := 0;
+        {x < nb_texels*2}.while_do {
+          v := VECTOR2(INTEGER_16).create (buffer_16.item (x),buffer_16.item (x+1));
+          texels.add_last v;
+          x := x+2;
+        };
+        
+        // triangles	
+        buffer_16 := FAST_ARRAY(INTEGER_16).create_with_capacity (nb_tris*6);
+        file.set_cursor (header.item md2_offset_tris);
+        (file.read buffer_16 size (nb_tris*6) <= 0).if {
+          error "load model: read error";
+        };
+        
+        x := 0;
+        {x < nb_tris*6}.while_do {
+          t := MD2_TRIANGLE.create (buffer_16.item x,buffer_16.item (x+1),buffer_16.item (x+2),buffer_16.item (x+3),buffer_16.item (x+4),buffer_16.item (x+5));
+          triangles.add_last t;
+          
+          x := x + 6;
+        }; 
+        
+        // frames
+        file.set_cursor (header.item md2_offset_frames);
+        1.to nb_frames do { i:INTEGER;
+          frames.add_last (load_frame (file, nb_vertex));
+        };
+        
+        scale := 3.0;
+        current_frame := 1;
+      };
+    };
+  );
+  
+  - load_frame (file:FILE, nb_vertex:INTEGER) :MD2_FRAME <-
+  (
+    + scale,translate:VECTOR3(REAL_32);
+    + vertex:FAST_ARRAY(MD2_VERTEX);
+    + buffer:FAST_ARRAY(REAL_32);
+    + buffer_8:FAST_ARRAY(UINTEGER_8);
+    + x,y,z:REAL_32;
+    + name:FAST_ARRAY(CHARACTER);
+    + v:MD2_VERTEX;
+    + i:INTEGER;
+    
+    vertex := FAST_ARRAY(MD2_VERTEX).create_with_capacity nb_vertex;
+    
+    // read transformation vectors
+    buffer := FAST_ARRAY(REAL_32).create_with_capacity 7;
+    (file.read buffer size 6 <= 0).if {
+      error "load model: read error (trans)";
+    };
+    
+    x := buffer.item 0;
+    y := buffer.item 1;
+    z := buffer.item 2;
+    
+    scale := VECTOR3(REAL_32).create (x,y,z);
+    
+    x := buffer.item 3;
+    y := buffer.item 4;
+    z := buffer.item 5;
+    
+    translate := VECTOR3(REAL_32).create (x,y,z);
+    
+    // read frame name
+    name := FAST_ARRAY(CHARACTER).create_with_capacity 16;
+    (file.read name size 16 <= 0).if {
+      error "load model: read error (name)";
+    };
+    
+    buffer_8 := FAST_ARRAY(UINTEGER_8).create_with_capacity (4*nb_vertex);
+    (file.read buffer_8 size (4*nb_vertex) <= 0).if {
+      error "load model: read error";
+    };
+    i := 0;
+    {i < nb_vertex*4}.while_do {
+      
+      v := MD2_VERTEX.create (buffer_8.item i,buffer_8.item (i+1),buffer_8.item (i+2),buffer_8.item (i+3));
+      
+      vertex.add_last v;
+      i := i + 4;
+    };
+    
+    MD2_FRAME.create (CONVERT(FAST_ARRAY(CHARACTER),STRING).on (name), scale, translate, vertex)
+  );
+  
+  - render_with tex:TEXTURE <-
+  (
+    texture := tex;
+    render;
+  );
+  
+  - n:VERTEX := VERTEX.clone;// avoid multiple cloning
+  - n1:VERTEX := VERTEX.clone;
+  - n2:VERTEX := VERTEX.clone;
+  - v:VERTEX := VERTEX.clone;
+  - v1:VERTEX := VERTEX.clone;
+  - v2:VERTEX := VERTEX.clone;
+  
+  - render  <-
+  (
+    + frame1,frame2:MD2_FRAME;
+    + poly:MD2_TRIANGLE;
+    + verts1,verts2:MD2_VERTEX;
+    + vertex_index,texel_index:INTEGER_16;
+    + texel:VECTOR2(INTEGER_16);
+    //+ n,n1,n2,v,v1,v2:VERTEX;
+    + x,y,z:REAL_32;
+    
+    frame1 := frames.item old_frame;
+    frame2 := frames.item current_frame;
+    
+    
+    (material != NULL).if {
+      material.apply (MATERIAL.mode_front);
+    };
+    (texture != NULL).if {
+      texture.bind;
+    };
+    
+    renderer.vb.begin_triangles;
+    
+    // draw each triangle
+    triangles.lower.to (triangles.upper) do { i:INTEGER;
+      poly := triangles.item i;
+      
+      // draw each vertex of triangle
+      0.to 2 do { k:INTEGER;
+        
+        (k = 0).if {
+          (vertex_index,texel_index) := poly.index1;
+        }.elseif {k = 1} then {
+          (vertex_index,texel_index) := poly.index2;
+        } else {
+          (vertex_index,texel_index) := poly.index3;
+        };
+        
+        // get current vertex from the two frames
+        verts1 := frame1.vertex.item vertex_index;
+        verts2 := frame2.vertex.item vertex_index;
+        
+        // coordonnees texture
+        texel := texels.item texel_index;
+        
+        renderer.vb.add_texel2f (texel.x.to_real / skin_width, texel.y.to_real / skin_height);
+        
+        // normale
+        get_normal (verts1.light_index) in n1;
+        get_normal (verts2.light_index) in n2;
+        
+        (x,y,z) := lerp_vertex (n1, n2) lerp lerp scale 1.0; 
+        
+        renderer.vb.add_normal3f (x, y, z);
+        
+        // decompression des vertex (byte -> float)
+        
+        x := verts1.index1 * frame1.scale.x + frame1.translate.x;
+        y := verts1.index2 * frame1.scale.y + frame1.translate.y;
+        z := verts1.index3 * frame1.scale.z + frame1.translate.z;
+        
+        v1.make (x,y,z);
+        
+        x := verts2.index1 * frame2.scale.x + frame2.translate.x;
+        y := verts2.index2 * frame2.scale.y + frame2.translate.y;
+        z := verts2.index3 * frame2.scale.z + frame2.translate.z;
+        
+        v2.make (x,y,z);
+        
+        (x,y,z) := lerp_vertex (v1, v2) lerp lerp scale scale;
+        
+        renderer.vb.add_vertex3f (x,y,z);
+      };
+    };
+    
+    renderer.vb.end;
+  ); 
+  
+  - render_outlines  <-
+  (
+    outlines := TRUE;
+    render;
+    outlines := FALSE;
+  );
+  
+  - lerp_vertex (u,v:VERTEX) lerp t:REAL_32 scale s:REAL_32 :(REAL_32,REAL_32,REAL_32) <- 
+  // linear interpolation
+  (
+    + x,y,z:REAL_32;
+    
+    x := (u.x + t * (v.x - u.x)) * s;
+    y := (u.y + t * (v.y - u.y)) * s;
+    z := (u.z + t * (v.z - u.z)) * s;
+    
+   (x,y,z)
+  );
+
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/3D/models/md2_normals.li b/lib/unstable/opengl/3D/models/md2_normals.li
new file mode 100644
index 0000000..acfc45c
--- /dev/null
+++ b/lib/unstable/opengl/3D/models/md2_normals.li
@@ -0,0 +1,220 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Application                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := MD2_NORMALS;
+  
+  - comment  := "Quake2' md2 model format";
+  
+  - external := `
+  
+  typedef struct
+  {
+    float x,y,z; 
+  } vec3_t;
+  
+  static vec3_t anorms[162] = {
+    {-0.525731, 0.000000, 0.850651}, 
+    {-0.442863, 0.238856, 0.864188}, 
+    {-0.295242, 0.000000, 0.955423}, 
+    {-0.309017, 0.500000, 0.809017}, 
+    {-0.162460, 0.262866, 0.951056}, 
+    {0.000000, 0.000000, 1.000000}, 
+    {0.000000, 0.850651, 0.525731}, 
+    {-0.147621, 0.716567, 0.681718}, 
+    {0.147621, 0.716567, 0.681718}, 
+    {0.000000, 0.525731, 0.850651}, 
+    {0.309017, 0.500000, 0.809017}, 
+    {0.525731, 0.000000, 0.850651}, 
+    {0.295242, 0.000000, 0.955423}, 
+    {0.442863, 0.238856, 0.864188}, 
+    {0.162460, 0.262866, 0.951056}, 
+    {-0.681718, 0.147621, 0.716567}, 
+    {-0.809017, 0.309017, 0.500000}, 
+    {-0.587785, 0.425325, 0.688191}, 
+    {-0.850651, 0.525731, 0.000000}, 
+    {-0.864188, 0.442863, 0.238856}, 
+    {-0.716567, 0.681718, 0.147621}, 
+    {-0.688191, 0.587785, 0.425325}, 
+    {-0.500000, 0.809017, 0.309017}, 
+    {-0.238856, 0.864188, 0.442863}, 
+    {-0.425325, 0.688191, 0.587785}, 
+    {-0.716567, 0.681718, -0.147621}, 
+    {-0.500000, 0.809017, -0.309017}, 
+    {-0.525731, 0.850651, 0.000000}, 
+    {0.000000, 0.850651, -0.525731}, 
+    {-0.238856, 0.864188, -0.442863}, 
+    {0.000000, 0.955423, -0.295242}, 
+    {-0.262866, 0.951056, -0.162460}, 
+    {0.000000, 1.000000, 0.000000}, 
+    {0.000000, 0.955423, 0.295242}, 
+    {-0.262866, 0.951056, 0.162460}, 
+    {0.238856, 0.864188, 0.442863}, 
+    {0.262866, 0.951056, 0.162460}, 
+    {0.500000, 0.809017, 0.309017}, 
+    {0.238856, 0.864188, -0.442863}, 
+    {0.262866, 0.951056, -0.162460}, 
+    {0.500000, 0.809017, -0.309017}, 
+    {0.850651, 0.525731, 0.000000}, 
+    {0.716567, 0.681718, 0.147621}, 
+    {0.716567, 0.681718, -0.147621}, 
+    {0.525731, 0.850651, 0.000000}, 
+    {0.425325, 0.688191, 0.587785}, 
+    {0.864188, 0.442863, 0.238856}, 
+    {0.688191, 0.587785, 0.425325}, 
+    {0.809017, 0.309017, 0.500000}, 
+    {0.681718, 0.147621, 0.716567}, 
+    {0.587785, 0.425325, 0.688191}, 
+    {0.955423, 0.295242, 0.000000}, 
+    {1.000000, 0.000000, 0.000000}, 
+    {0.951056, 0.162460, 0.262866}, 
+    {0.850651, -0.525731, 0.000000}, 
+    {0.955423, -0.295242, 0.000000}, 
+    {0.864188, -0.442863, 0.238856}, 
+    {0.951056, -0.162460, 0.262866}, 
+    {0.809017, -0.309017, 0.500000}, 
+    {0.681718, -0.147621, 0.716567}, 
+    {0.850651, 0.000000, 0.525731}, 
+    {0.864188, 0.442863, -0.238856}, 
+    {0.809017, 0.309017, -0.500000}, 
+    {0.951056, 0.162460, -0.262866}, 
+    {0.525731, 0.000000, -0.850651}, 
+    {0.681718, 0.147621, -0.716567}, 
+    {0.681718, -0.147621, -0.716567}, 
+    {0.850651, 0.000000, -0.525731}, 
+    {0.809017, -0.309017, -0.500000}, 
+    {0.864188, -0.442863, -0.238856}, 
+    {0.951056, -0.162460, -0.262866}, 
+    {0.147621, 0.716567, -0.681718}, 
+    {0.309017, 0.500000, -0.809017}, 
+    {0.425325, 0.688191, -0.587785}, 
+    {0.442863, 0.238856, -0.864188}, 
+    {0.587785, 0.425325, -0.688191}, 
+    {0.688191, 0.587785, -0.425325}, 
+    {-0.147621, 0.716567, -0.681718}, 
+    {-0.309017, 0.500000, -0.809017}, 
+    {0.000000, 0.525731, -0.850651}, 
+    {-0.525731, 0.000000, -0.850651}, 
+    {-0.442863, 0.238856, -0.864188}, 
+    {-0.295242, 0.000000, -0.955423}, 
+    {-0.162460, 0.262866, -0.951056}, 
+    {0.000000, 0.000000, -1.000000}, 
+    {0.295242, 0.000000, -0.955423}, 
+    {0.162460, 0.262866, -0.951056}, 
+    {-0.442863, -0.238856, -0.864188}, 
+    {-0.309017, -0.500000, -0.809017}, 
+    {-0.162460, -0.262866, -0.951056}, 
+    {0.000000, -0.850651, -0.525731}, 
+    {-0.147621, -0.716567, -0.681718}, 
+    {0.147621, -0.716567, -0.681718}, 
+    {0.000000, -0.525731, -0.850651}, 
+    {0.309017, -0.500000, -0.809017}, 
+    {0.442863, -0.238856, -0.864188}, 
+    {0.162460, -0.262866, -0.951056}, 
+    {0.238856, -0.864188, -0.442863}, 
+    {0.500000, -0.809017, -0.309017}, 
+    {0.425325, -0.688191, -0.587785}, 
+    {0.716567, -0.681718, -0.147621}, 
+    {0.688191, -0.587785, -0.425325}, 
+    {0.587785, -0.425325, -0.688191}, 
+    {0.000000, -0.955423, -0.295242}, 
+    {0.000000, -1.000000, 0.000000}, 
+    {0.262866, -0.951056, -0.162460}, 
+    {0.000000, -0.850651, 0.525731}, 
+    {0.000000, -0.955423, 0.295242}, 
+    {0.238856, -0.864188, 0.442863}, 
+    {0.262866, -0.951056, 0.162460}, 
+    {0.500000, -0.809017, 0.309017}, 
+    {0.716567, -0.681718, 0.147621}, 
+    {0.525731, -0.850651, 0.000000}, 
+    {-0.238856, -0.864188, -0.442863}, 
+    {-0.500000, -0.809017, -0.309017}, 
+    {-0.262866, -0.951056, -0.162460}, 
+    {-0.850651, -0.525731, 0.000000}, 
+    {-0.716567, -0.681718, -0.147621}, 
+    {-0.716567, -0.681718, 0.147621}, 
+    {-0.525731, -0.850651, 0.000000}, 
+    {-0.500000, -0.809017, 0.309017}, 
+    {-0.238856, -0.864188, 0.442863}, 
+    {-0.262866, -0.951056, 0.162460}, 
+    {-0.864188, -0.442863, 0.238856}, 
+    {-0.809017, -0.309017, 0.500000}, 
+    {-0.688191, -0.587785, 0.425325}, 
+    {-0.681718, -0.147621, 0.716567}, 
+    {-0.442863, -0.238856, 0.864188}, 
+    {-0.587785, -0.425325, 0.688191}, 
+    {-0.309017, -0.500000, 0.809017}, 
+    {-0.147621, -0.716567, 0.681718}, 
+    {-0.425325, -0.688191, 0.587785}, 
+    {-0.162460, -0.262866, 0.951056}, 
+    {0.442863, -0.238856, 0.864188}, 
+    {0.162460, -0.262866, 0.951056}, 
+    {0.309017, -0.500000, 0.809017}, 
+    {0.147621, -0.716567, 0.681718}, 
+    {0.000000, -0.525731, 0.850651}, 
+    {0.425325, -0.688191, 0.587785}, 
+    {0.587785, -0.425325, 0.688191}, 
+    {0.688191, -0.587785, 0.425325}, 
+    {-0.955423, 0.295242, 0.000000}, 
+    {-0.951056, 0.162460, 0.262866}, 
+    {-1.000000, 0.000000, 0.000000}, 
+    {-0.850651, 0.000000, 0.525731}, 
+    {-0.955423, -0.295242, 0.000000}, 
+    {-0.951056, -0.162460, 0.262866}, 
+    {-0.864188, 0.442863, -0.238856}, 
+    {-0.951056, 0.162460, -0.262866}, 
+    {-0.809017, 0.309017, -0.500000}, 
+    {-0.864188, -0.442863, -0.238856}, 
+    {-0.951056, -0.162460, -0.262866}, 
+    {-0.809017, -0.309017, -0.500000}, 
+    {-0.681718, 0.147621, -0.716567}, 
+    {-0.681718, -0.147621, -0.716567}, 
+    {-0.850651, 0.000000, -0.525731}, 
+    {-0.688191, 0.587785, -0.425325}, 
+    {-0.587785, 0.425325, -0.688191}, 
+    {-0.425325, 0.688191, -0.587785}, 
+    {-0.425325, -0.688191, -0.587785}, 
+    {-0.587785, -0.425325, -0.688191}, 
+  {-0.688191, -0.587785, -0.425325} };
+  
+  
+  `;
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+  
+Section Public
+  
+  - get_normal i:INTEGER :VERTEX <-
+  (
+    + v:VERTEX;
+    
+    v := VERTEX.create (`anorms[@i].x`:REAL_32,`anorms[@i].y`:REAL_32,`anorms[@i].z`:REAL_32);
+    v
+  );
+  
+  - get_normal i:INTEGER in v:VERTEX <-
+  (    
+    v.make (`anorms[@i].x`:REAL_32,`anorms[@i].y`:REAL_32,`anorms[@i].z`:REAL_32);
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/3D/models/md2_triangle.li b/lib/unstable/opengl/3D/models/md2_triangle.li
new file mode 100644
index 0000000..19fd9ea
--- /dev/null
+++ b/lib/unstable/opengl/3D/models/md2_triangle.li
@@ -0,0 +1,65 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Application                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := MD2_TRIANGLE;
+  
+  - comment  := "Quake2' md2 model format";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public //Mapping
+  
+  + vertex_index1:INTEGER_16;
+  + vertex_index2:INTEGER_16;
+  + vertex_index3:INTEGER_16;
+  
+  + texel_index1:INTEGER_16;
+  + texel_index2:INTEGER_16;
+  + texel_index3:INTEGER_16;
+  
+Section Public
+  
+  - index1:(INTEGER_16,INTEGER_16) <- (vertex_index1,texel_index1);
+  - index2:(INTEGER_16,INTEGER_16) <- (vertex_index2,texel_index2);
+  - index3:(INTEGER_16,INTEGER_16) <- (vertex_index3,texel_index3);
+  
+  - create (v1,v2,v3,t1,t2,t3:INTEGER_16) :SELF<-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make (v1,v2,v3,t1,t2,t3);
+    result
+  );
+
+  - make (v1,v2,v3,t1,t2,t3:INTEGER_16) <-
+  ( 
+    vertex_index1 := v1;
+    vertex_index2 := v2;
+    vertex_index3 := v3;
+    
+    texel_index1 := t1;
+    texel_index2 := t2;
+    texel_index3 := t3;
+  );
+
diff --git a/lib/unstable/opengl/3D/models/md2_vertex.li b/lib/unstable/opengl/3D/models/md2_vertex.li
new file mode 100644
index 0000000..ceafe31
--- /dev/null
+++ b/lib/unstable/opengl/3D/models/md2_vertex.li
@@ -0,0 +1,69 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Application                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := MD2_VERTEX;
+  
+  - comment  := "Quake2' md2 model format";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public //Mapping
+  
+  + vertex_index1:UINTEGER_8;
+  + vertex_index2:UINTEGER_8;
+  + vertex_index3:UINTEGER_8;
+  
+  + lightnormal_index:UINTEGER_8;
+  
+Section Public
+  
+  - index1:REAL_32 <- vertex_index1.to_real;
+  - index2:REAL_32 <- vertex_index2.to_real;
+  - index3:REAL_32 <- vertex_index3.to_real;
+  
+  - light_index:UINTEGER_8 <- lightnormal_index;
+  
+  - create (v1,v2,v3:UINTEGER_8, l:UINTEGER_8) :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make (v1,v2,v3,l);
+    result
+  );
+
+  - make (v1,v2,v3:UINTEGER_8, l:UINTEGER_8) <-
+  ( 
+    vertex_index1 := v1;
+    vertex_index2 := v2;
+    vertex_index3 := v3;
+    lightnormal_index := l;
+  );
+
+  - print <-
+  (
+    "\nmd2 vertex: ".print; vertex_index1.print; " , ".print;
+    vertex_index2.print; " , ".print;
+    vertex_index2.print; " => light ".print; 
+    lightnormal_index.print;
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/3D/noise.li b/lib/unstable/opengl/3D/noise.li
new file mode 100644
index 0000000..9954f3c
--- /dev/null
+++ b/lib/unstable/opengl/3D/noise.li
@@ -0,0 +1,167 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Math-Library                                  //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := NOISE;
+  
+  - comment  := "3D Perlin noise";
+  
+  - external := `
+  
+  static const char  gradient[12][3] =
+  {
+    {1, 1, 0}, {1, -1, 0}, {-1, 1, 0}, {-1, -1, 0},
+    {1, 0, 1}, {1, 0, -1}, {-1, 0, 1}, {-1, 0, -1},
+    {0, 1, 1}, {0, -1, 1}, {0, 1, -1}, {0, -1, -1},
+  };`;
+  
+Section Inherit
+  
+  - parent_framework:FRAMEWORK_ANY := FRAMEWORK_ANY;
+  
+Section Public  
+  
+  + permutation:FAST_ARRAY(INTEGER);
+  
+  
+  
+  //
+  // Creation.
+  //
+  
+  - create:SELF <-
+  ( + result:SELF;
+    result := clone;
+    result.make;
+    result
+  );
+  
+  - make <-
+  ( 
+    permutation := FAST_ARRAY(INTEGER).create 256;
+    0.to 255 do { i:INTEGER;
+      permutation.put (random & 0ffh) to i;
+    };
+  );
+  
+  - get (x,y,z:REAL_32) :REAL_32 <-
+  // return Perlin noise at (x,y,z) point
+  ( 
+    + x1,y1,z1, x2,y2,z2:INTEGER;
+    + gx,gy,gz:INTEGER;
+    + dx1,dy1,dz1, dx2,dy2,dz2:REAL_32;
+    + dot1,dot2,dot3,dot4,dot5,dot6,dot7,dot8:REAL_32;
+    + idx,idy,idz:REAL_32;
+    + v0,v1, v00,v01,v10,v11:REAL_32;
+    
+    // integer unit cube containing the point
+    x1 := x.to_integer;
+    y1 := y.to_integer;
+    z1 := z.to_integer;
+    
+    x2 := x1 + 1;
+    y2 := y1 + 1;
+    z2 := z1 + 1;
+    
+    // vectors from the corners of the cube to the point
+    dx1 := x - x1;
+    dy1 := y - y1;
+    dz1 := z - z1;
+    
+    dx2 := x - x2;
+    dy2 := y - y2;
+    dz2 := z - z2;
+    
+    
+    // the corresponding gradients
+    (gx,gy,gz) := get_gradient (get_index (x1,y1,z1));
+    dot1 := dot (dx1,gx, dy1,gy, dz1,gz);
+    (gx,gy,gz) := get_gradient (get_index (x1,y1,z2));
+    dot2 := dot (dx1,gx, dy1,gy, dz2,gz);
+    (gx,gy,gz) := get_gradient (get_index (x1,y2,z1));
+    dot3 := dot (dx1,gx, dy2,gy, dz1,gz);
+    (gx,gy,gz) := get_gradient (get_index (x1,y2,z2));
+    dot4 := dot (dx1,gx, dy2,gy, dz2,gz);
+    (gx,gy,gz) := get_gradient (get_index (x2,y1,z1));
+    dot5 := dot (dx2,gx, dy1,gy, dz1,gz);
+    (gx,gy,gz) := get_gradient (get_index (x2,y1,z2));
+    dot6 := dot (dx2,gx, dy1,gy, dz2,gz);
+    (gx,gy,gz) := get_gradient (get_index (x2,y2,z1));
+    dot7 := dot (dx2,gx, dy2,gy, dz1,gz);
+    (gx,gy,gz) := get_gradient (get_index (x2,y2,z2));
+    dot8 := dot (dx2,gx, dy2,gy, dz2,gz);
+    
+    // interpolations
+    idx := spline dx1;
+    idy := spline dy1; 
+    idz := spline dz1;
+    
+    v11 := linear (dot7, dot8, idz);
+    v10 := linear (dot5, dot6, idz);
+    v01 := linear (dot3, dot4, idz);
+    v00 := linear (dot1, dot2, idz);
+    
+    v0 := linear (v10, v11, idy);
+    v1 := linear (v00, v01, idy);
+    
+    linear (v0, v1, idx)
+  );
+  
+Section Private
+  
+  - get_gradient i:INTEGER :(INTEGER,INTEGER,INTEGER) <-
+  (
+    (`gradient[@i][0]`:INTEGER,`gradient[@i][1]`:INTEGER,`gradient[@i][2]`:INTEGER)
+  );
+  
+  - get_index (x,y,z:INTEGER) :INTEGER <- 
+  (
+    permutation.item ((x + permutation.item ((y + permutation.item (z & 0ffh)) & 0ffh)) & 0ffh) & 0ch
+  );
+  
+  - prod (a,b:REAL_32) :REAL_32 <-
+  ( + result:REAL_32;
+    (b > 0).if {
+      result := a;
+    }.elseif {b < 0} then {
+      result := -a;
+    };
+    result
+  );
+  
+  - dot (x1,x2, y1,y2, z1,z2:REAL_32) :REAL_32 <-
+  (
+    prod (x1, x2) + prod (y1, y2) + prod (z1, z2)
+  );
+  
+  - spline val:REAL_32 :REAL_32 <-
+  // 3x^2 + 2x^3 curve
+  (  + val2:REAL_32;
+    
+    val2 := val * val;
+    val2 * (3.0 + val * 2.0)
+  );
+  
+  - linear (start, end, t:REAL_32) :REAL_32 <-
+  (
+    start + (end - start) * t
+  );
diff --git a/lib/unstable/opengl/3D/particles/bounce_plane.li b/lib/unstable/opengl/3D/particles/bounce_plane.li
new file mode 100644
index 0000000..d14271c
--- /dev/null
+++ b/lib/unstable/opengl/3D/particles/bounce_plane.li
@@ -0,0 +1,80 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Application                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := BOUNCE_PLANE;
+  
+  - comment  := "part of particle engine";
+  
+Section Inherit
+  
+  - parent_constraint:CONSTRAINT := CONSTRAINT;
+  
+Section Public
+  
+  + normal:VECTOR3(REAL_32);
+  + offset:REAL_32;
+  
+  //
+  // Creation.
+  //
+
+  - create (n:VECTOR3(REAL_32), off:REAL_32) :SELF <-
+  ( + result:SELF;
+    result := clone;
+    result.make (n,off);
+    result
+  );
+
+  - make (n:VECTOR3(REAL_32), off:REAL_32) <-
+  ( 
+    normal := n;
+    offset := off;
+  );
+
+
+  
+  - apply_to p:PARTICLE time t:REAL_32 <-
+  (
+    + dist:REAL_32;
+    
+    dist := distance_to (p.position);
+    
+    (dist < p.size).if {
+      p.set_direction (p.dir - (normal * (2.0*p.dir.dot normal)));
+      p.set_position (p.position + (normal * (p.size - dist)));
+    };
+  );
+  
+Section Private
+  
+  - distance_to p:VECTOR3(REAL_32) :REAL_32 <-
+  (
+    (p.dot normal) + offset
+  );
+
+ 
+  
+  
+  
+  
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/3D/particles/constraint.li b/lib/unstable/opengl/3D/particles/constraint.li
new file mode 100644
index 0000000..cbd306e
--- /dev/null
+++ b/lib/unstable/opengl/3D/particles/constraint.li
@@ -0,0 +1,40 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Application                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := CONSTRAINT;
+  
+  - comment  := "part of particle engine";
+  
+Section Inherit
+  
+  - parent_framework:FRAMEWORK_ANY := FRAMEWORK_ANY;
+  
+Section Public
+  
+  - apply_to p:PARTICLE time t:REAL_32 <- deferred;
+  
+  
+  
+  
+  
+  
diff --git a/lib/unstable/opengl/3D/particles/kill_plane.li b/lib/unstable/opengl/3D/particles/kill_plane.li
new file mode 100644
index 0000000..fad3c60
--- /dev/null
+++ b/lib/unstable/opengl/3D/particles/kill_plane.li
@@ -0,0 +1,79 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Application                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := KILL_PLANE;
+  
+  - comment  := "part of particle engine";
+  
+Section Inherit
+  
+  - parent_constraint:CONSTRAINT := CONSTRAINT;
+  
+Section Public
+  
+  + normal:VECTOR3(REAL_32);
+  + offset:REAL_32;
+  
+  //
+  // Creation.
+  //
+
+  - create (n:VECTOR3(REAL_32), off:REAL_32) :SELF <-
+  ( + result:SELF;
+    result := clone;
+    result.make (n,off);
+    result
+  );
+
+  - make (n:VECTOR3(REAL_32), off:REAL_32) <-
+  ( 
+    normal := n;
+    offset := off;
+  );
+
+
+  
+  - apply_to p:PARTICLE time t:REAL_32 <-
+  (
+    + dist:REAL_32;
+    
+    dist := distance_to (p.position);
+    
+    (dist < p.size).if {
+      p.kill;
+    };
+  );
+  
+Section Private
+  
+  - distance_to p:VECTOR3(REAL_32) :REAL_32 <-
+  (
+    (p.dot normal) + offset
+  );
+
+ 
+  
+  
+  
+  
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/3D/particles/particle.li b/lib/unstable/opengl/3D/particles/particle.li
new file mode 100644
index 0000000..6efe5e5
--- /dev/null
+++ b/lib/unstable/opengl/3D/particles/particle.li
@@ -0,0 +1,100 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Application                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := PARTICLE;
+  
+  - comment  := "part of particle engine";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  //
+  // Particle properties
+  //
+  
+  + position:VECTOR3(REAL_32);
+  + dir:VECTOR3(REAL_32);
+  
+  + size:REAL_32;
+  + life:REAL_32;
+  + initial_life:REAL_32;
+  
+  - is_dead:BOOLEAN <- life <= 0;
+  
+  
+  - create (p,d:VECTOR3(REAL_32)) size sz:REAL_32 life t:REAL_32 :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make (p,d) size sz life t;
+    result
+  );
+  
+  - make (p,d:VECTOR3(REAL_32)) size sz:REAL_32 life t:REAL_32 <-
+  (
+    position := p;
+    dir := d;
+    size := sz;
+    
+    initial_life := t;
+    life := initial_life;
+  );
+  
+  - set_position p:VECTOR3(REAL_32) <- 
+  (
+    position := p;
+  );
+  
+  - set_direction d:VECTOR3(REAL_32) <- 
+  (
+    dir := d;
+  );
+  
+  - kill <-
+  (
+    life := 0;
+  ); 
+  
+  //
+  //  Update
+  //
+  
+  - update_life time:REAL_32 <-
+  (
+    life := life - time;
+  );
+  
+  - update time:REAL_32 <-
+  (
+    position.set_x (position.x + dir.x * time); 
+    position.set_y (position.y + dir.y * time); 
+    position.set_z (position.z + dir.z * time); 
+  );
+ 
+  
+  
+  
+  
+  
diff --git a/lib/unstable/opengl/3D/particles/particle_system.li b/lib/unstable/opengl/3D/particles/particle_system.li
new file mode 100644
index 0000000..ee81cea
--- /dev/null
+++ b/lib/unstable/opengl/3D/particles/particle_system.li
@@ -0,0 +1,302 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Application                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := PARTICLE_SYSTEM;
+  
+  - comment  := "part of particle engine";
+  
+Section Inherit
+  
+  - parent_framework:FRAMEWORK_ANY := FRAMEWORK_ANY;
+  
+Section Public
+  
+  //
+  // Particle System properties
+  //
+  
+  + position:VECTOR3(REAL_32);
+  + direction:VECTOR3(REAL_32);
+  
+  + particles:LINKED_LIST(PARTICLE);
+  + constraints:LINKED_LIST(CONSTRAINT);
+  
+  + palette:FAST_ARRAY(RGB);
+  
+  + spawn_rate:REAL_32;
+  + size:REAL_32;
+  + life:REAL_32;
+  + speed:REAL_32;
+    
+  + size_spread:REAL_32;
+  + life_spread:REAL_32;
+  + speed_spread:REAL_32;
+  
+  
+  - create p:VECTOR3(REAL_32) :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make p;
+    result
+  );
+  
+  - make p:VECTOR3(REAL_32) <-
+  (
+    position := p;
+    direction := VECTOR3(REAL_32).create (0.5,0.1,0.5);
+    
+    spawn_rate := 60;
+    
+    speed := 10;
+    speed_spread := 2;
+    
+    size := 1;
+    size_spread := 0.5;
+    
+    life := 5;
+    life_spread := 1;
+    
+    particles := LINKED_LIST(PARTICLE).create;
+    constraints := LINKED_LIST(CONSTRAINT).create;
+    
+    palette := FAST_ARRAY(RGB).create_with_capacity 12;
+    0.to 12 do { i:INTEGER;
+      palette.add_last (RGB.create (0,0,0));
+    };
+    set_color_fire;
+  );
+  
+  - add_constraint c:CONSTRAINT <-
+  (
+    constraints.add_last c;
+  );
+  
+  - set_spawn_rate sr:REAL_32 <-
+  (
+    spawn_rate := sr;
+  );
+  
+  - set_life (life0, spread:REAL_32) <-
+  (
+    life := life0;
+    life_spread := spread;
+  );
+  
+  - set_speed (speed0, spread:REAL_32) <-
+  (
+    speed := speed0;
+    speed_spread := spread;
+  );
+  
+  - set_size (size0, spread:REAL_32) <-
+  (
+    size := size0;
+    size_spread := spread;
+  );
+  
+  //
+  //  Update
+  //
+
+  - dir:VECTOR3(REAL_32) := VECTOR3(REAL_32).zero;
+  
+  - update time:REAL_32 <-
+  (
+    + nb_new_particles:INTEGER;
+    + p:PARTICLE;
+    + sz,lifetime:REAL_32;
+   // + dir:VECTOR3(REAL_32);
+    + k:INTEGER;
+ 
+    // spawn new particles
+    nb_new_particles := (time * spawn_rate).to_integer;
+    
+    0.to nb_new_particles do { i:INTEGER;
+      
+      //dir := random_vector direction spread (1,1,1);
+      get_random_vector direction spread (1,1,1) in dir;
+
+      dir.normalize;
+      dir := dir * speed;
+      
+      sz := random_around size spread size_spread;
+      lifetime := random_around life spread life_spread;
+      
+      p := PARTICLE.create (position.copy, dir) size sz life lifetime;
+      particles.add_last p;
+    };
+    
+    k := particles.lower;
+    {k <= particles.upper}.while_do {
+      p := particles.item k;
+      
+      p.update_life time;
+      p.is_dead.if {
+        // kill particle
+        particles.remove k;
+      } else {  
+        // apply constraints to the system
+        constraints.lower.to (constraints.upper) do { i:INTEGER;
+          constraints.item i.apply_to p time (time);
+          
+          p.is_dead.if {
+            // kill particle
+            particles.remove k;
+          };
+        };
+        
+        // update particle
+        p.update (time);
+        k := k + 1;
+      };
+    };
+  );
+  
+  
+  - render (dx,dy:VECTOR3(REAL_32)) <-
+  ( 
+    + v:VECTOR3(REAL_32);
+    + frac:REAL_32;
+    + col_int:INTEGER;
+    
+    renderer.vb.new_quads {
+      particles.lower.to (particles.upper) do { i:INTEGER;
+        
+        frac := (11.0*particles.item i.life)/particles.item i.initial_life;
+        col_int := frac.to_integer;
+        frac := frac - col_int;
+        
+        renderer.color_buffer.set_color3f (get_r col_int frac frac,get_g col_int frac frac,get_b col_int frac frac);
+        
+        
+        // render particle
+        renderer.vb.add_texel2f (0,0);
+        v := particles.item i.position + ((-dx + dy) * particles.item i.size);
+        renderer.vb.add_vertex3f (v.x, v.y, v.z);
+        
+        renderer.vb.add_texel2f (1,0);
+        v := particles.item i.position + ((dx + dy) * particles.item i.size);
+        renderer.vb.add_vertex3f (v.x, v.y, v.z);
+        
+        renderer.vb.add_texel2f (1,1);
+        v := particles.item i.position + ((dx - dy) * particles.item i.size);
+        renderer.vb.add_vertex3f (v.x, v.y, v.z);
+        
+        renderer.vb.add_texel2f (0,1);
+        v := particles.item i.position + ((-dx - dy) * particles.item i.size);
+        renderer.vb.add_vertex3f (v.x, v.y, v.z);
+      };
+    };
+  );
+  
+  - get_r idx:INTEGER frac frac:REAL_32 :REAL_32 <-
+  (
+    palette.item idx.r * (1.0 - frac) + palette.item (idx+1).r * frac
+  );
+  - get_g idx:INTEGER frac frac:REAL_32 :REAL_32 <-
+  (
+    palette.item idx.g * (1.0 - frac) + palette.item (idx+1).g * frac
+  );
+  - get_b idx:INTEGER frac frac:REAL_32 :REAL_32 <-
+  (
+    palette.item idx.b * (1.0 - frac) + palette.item (idx+1).b * frac
+  );
+  
+  - set_color_fire <-
+  (
+    0.to 4 do { i:INTEGER;
+      palette.item i.make (i.to_real/4.0, 0, 0);
+      palette.item (i+4).make (1.0, (i.to_real)/4.0, 0);
+      palette.item (i+8).make ((3-i).to_real/3.0, (3-i).to_real/3.0, 1);
+    };
+  );
+  
+  - set_color_ice <-
+  (
+    0.to 6 do { i:INTEGER;
+      palette.item i.make (0, 0, i.to_real/6.0);
+      palette.item (i+6).make (i.to_real/5.0, 1, 1);
+    };
+  );
+  
+  - set_color_smoke <-
+  (
+    + col:REAL_32;
+    
+    0.to 12 do { i:INTEGER;
+      col := i.to_real / 24.0;
+      palette.item i.make (col, col, col);
+    };
+  );
+  
+  - set_color_rainbow <-
+  (
+    palette.item 0.make (0, 0, 0);
+    palette.item 1.make (0, 0, 0.25);
+    palette.item 2.make (0, 0, 0.5);
+    palette.item 3.make (0, 0, 1);
+    palette.item 4.make (0, 0.5, 1);
+    palette.item 5.make (0, 1, 1);
+    palette.item 6.make (0, 1, 0.5);
+    palette.item 7.make (0, 1, 0);
+    palette.item 8.make (0.5, 1, 0); 
+    palette.item 9.make (1, 1, 0);
+    palette.item 10.make (1, 0.5, 0);
+    palette.item 11.make (1, 0, 0);
+  );
+  
+Section Private
+  
+  - random_around val:REAL_32 spread spread_val:REAL_32 :REAL_32 <-
+  (
+    + r:REAL_32;
+    
+    r := 2.0 * random_ratio - 1.0;
+    val + r * spread_val * r.abs 
+  );
+  
+  - random_vector v:VECTOR3(REAL_32) spread (sx,sy,sz:REAL_32) :VECTOR3(REAL_32) <-
+  (
+    + x,y,z:REAL_32;
+    
+    x := v.x * random_around 0 spread sx;
+    y := v.y * random_around 0 spread sy;
+    z := v.z * random_around 0 spread sz;
+    
+    VECTOR3(REAL_32).create (x, y, z)
+  );
+
+  - get_random_vector v:VECTOR3(REAL_32) spread (sx,sy,sz:REAL_32) in vec:VECTOR3(REAL_32) <-
+  (
+    + x,y,z:REAL_32;
+    
+    x := v.x * random_around 0 spread sx;
+    y := v.y * random_around 0 spread sy;
+    z := v.z * random_around 0 spread sz;
+    
+    vec.make (x, y, z);
+  );
+  
+  
+  
+  
diff --git a/lib/unstable/opengl/3D/particles/point_force.li b/lib/unstable/opengl/3D/particles/point_force.li
new file mode 100644
index 0000000..31abc7e
--- /dev/null
+++ b/lib/unstable/opengl/3D/particles/point_force.li
@@ -0,0 +1,88 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Application                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := POINT_FORCE;
+  
+  - comment  := "part of particle engine";
+  
+Section Inherit
+  
+  - parent_constraint:CONSTRAINT := CONSTRAINT;
+  
+Section Public
+  
+  //
+  // Particle properties
+  //
+  
+  + position:VECTOR3(REAL_32);
+  
+  + strength:REAL_32;
+  + linear_attenuation:REAL_32;
+  + quadratic_attenuation:REAL_32;
+  
+  
+  //
+  // Creation.
+  //
+
+  - create (p:VECTOR3(REAL_32),s,la,qa:REAL_32) :SELF <-
+  ( + result:SELF;
+    result := clone;
+    result.make (p,s,la,qa);
+    result
+  );
+
+  - make (p:VECTOR3(REAL_32),s,la,qa:REAL_32) <-
+  ( 
+    position := p;
+    strength := s;
+    linear_attenuation := la;
+    quadratic_attenuation := qa;
+  );
+
+
+  
+  - apply_to p:PARTICLE time t:REAL_32 <-
+  (
+    + dir:VECTOR3(REAL_32);
+    + dist:REAL_32;
+    
+    dir := position - p.position;
+    dist := dir.magnitude;
+    
+    dir := dir * (strength / (1.0 + dist.sqrt*linear_attenuation + dist*quadratic_attenuation));
+    
+    p.set_direction (p.dir + (dir*t));
+  );
+  
+  - set_strength str:REAL_32 <-
+  (
+    strength := str;
+  );
+ 
+  
+  
+  
+  
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/3D/primitives/cone.li b/lib/unstable/opengl/3D/primitives/cone.li
new file mode 100644
index 0000000..67866d4
--- /dev/null
+++ b/lib/unstable/opengl/3D/primitives/cone.li
@@ -0,0 +1,67 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Application                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := CONE;
+  
+  - comment  := "3D cone";
+  
+Section Inherit
+  
+  - parent_framework:FRAMEWORK_ANY := FRAMEWORK_ANY;
+  
+Section Public
+  
+  + radius_base:REAL_32;
+  + cone_height:REAL_32;
+  + slices:REAL_32;
+
+  + position:VECTOR3(REAL_32);
+  
+  
+  - create (p:VECTOR3(REAL_32),r,h,sl:REAL_32) :SELF <-
+  (
+    + result:SELF;
+    result := SELF.clone;
+    result.make (p,r,h,sl);
+    result
+  );
+  
+  - make (p:VECTOR3(REAL_32),r,h,sl:REAL_32) <-
+  (
+    radius_base := r;
+    cone_height := h;
+    slices := sl;
+    position := p;
+  );
+  
+  - render <-
+  ( 
+    renderer.transform.push_matrix;
+    
+    renderer.transform.translatef (position.x, position.y, position.z);
+    
+    renderer.quadrics.new_quadric {
+      renderer.quadrics.draw_cylinder (radius_base,0,cone_height,slices,1);
+    };
+    renderer.transform.pop_matrix;
+  );
diff --git a/lib/unstable/opengl/3D/primitives/cylinder.li b/lib/unstable/opengl/3D/primitives/cylinder.li
new file mode 100644
index 0000000..4cdcc7f
--- /dev/null
+++ b/lib/unstable/opengl/3D/primitives/cylinder.li
@@ -0,0 +1,73 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Application                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := CYLINDER;
+  
+  - comment  := "glu quadric cylinder";
+  
+Section Inherit
+  
+  - parent_framework:FRAMEWORK_ANY := FRAMEWORK_ANY;
+  
+Section Public
+  
+  + radius_top:REAL_32;
+  + radius_base:REAL_32;
+  
+  + cylinder_height:REAL_32;
+  
+  + slices:REAL_32;
+  + stacks:REAL_32;
+  
+  + position:VECTOR3(REAL_32);
+  
+  
+  - create (p:VECTOR3(REAL_32),r1,r2,h,sl,st:REAL_32) :SELF <-
+  (
+    + result:SELF;
+    result := SELF.clone;
+    result.make (p,r1,r2,h,sl,st);
+    result
+  );
+  
+  - make (p:VECTOR3(REAL_32),r1,r2,h,sl,st:REAL_32) <-
+  (
+    radius_top := r1;
+    radius_base := r2;
+    cylinder_height := h;
+    slices := sl;
+    stacks := st;
+    position := p;
+  );
+  
+  - render <-
+  ( 
+    renderer.transform.push_matrix;
+    
+    renderer.transform.translatef (position.x, position.y, position.z);
+    
+    renderer.quadrics.new_quadric {
+      renderer.quadrics.draw_cylinder (radius_base,radius_top,cylinder_height,slices,stacks);
+    };
+    renderer.transform.pop_matrix;
+  );
diff --git a/lib/unstable/opengl/3D/primitives/sphere.li b/lib/unstable/opengl/3D/primitives/sphere.li
new file mode 100644
index 0000000..868d800
--- /dev/null
+++ b/lib/unstable/opengl/3D/primitives/sphere.li
@@ -0,0 +1,67 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Application                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := SPHERE;
+  
+  - comment  := "glu quadric sphere";
+  
+Section Inherit
+  
+  - parent_framework:FRAMEWORK_ANY := FRAMEWORK_ANY;
+  
+Section Public
+  
+  + radius:REAL_32;
+  + slices:REAL_32;
+  + stacks:REAL_32;
+  
+  + position:VECTOR3(REAL_32);
+  
+  
+  - create (p:VECTOR3(REAL_32),r,sl,st:REAL_32) :SELF <-
+  (
+    + result:SELF;
+    result := SELF.clone;
+    result.make (p,r,sl,st);
+    result
+  );
+  
+  - make (p:VECTOR3(REAL_32),r,sl,st:REAL_32) <-
+  (
+    radius := r;
+    slices := sl;
+    stacks := st;
+    position := p;
+  );
+  
+  - render <-
+  (
+    renderer.transform.push_matrix;
+    
+    renderer.transform.translatef (position.x, position.y, position.z);
+    
+    renderer.quadrics.new_quadric {
+      renderer.quadrics.draw_sphere (radius,slices,stacks);
+    };
+    renderer.transform.pop_matrix;
+  );
diff --git a/lib/unstable/opengl/3D/skybox.li b/lib/unstable/opengl/3D/skybox.li
new file mode 100644
index 0000000..d29f9eb
--- /dev/null
+++ b/lib/unstable/opengl/3D/skybox.li
@@ -0,0 +1,180 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Application                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := SKYBOX;
+  
+  - comment  := "render cube with sky effect";
+  
+Section Inherit
+
+  - parent_framework:FRAMEWORK_ANY := FRAMEWORK_ANY;  
+
+Section Public
+  
+  // position in 3d world
+  + position:VECTOR3(REAL_32); 
+  
+  // 3d cube
+  + vertex:FAST_ARRAY(VERTEX);
+  
+  // skybox textures
+  + textures:FAST_ARRAY(TEXTURE);
+ 
+  
+  - create (pos,dim:VECTOR3(REAL_32),tex:FAST_ARRAY(TEXTURE)) :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make (pos,dim,tex);
+    result
+  );
+  
+  - make (pos,dim:VECTOR3(REAL_32),tex:FAST_ARRAY(TEXTURE)) <-
+  ( 
+    + v:VERTEX;
+    ? {tex.count = 5};
+   
+    
+    position := pos;
+    textures := tex;
+    
+    vertex := FAST_ARRAY(VERTEX).create_with_capacity 8;
+    
+    // top
+    v := VERTEX.create (pos.x - dim.x, pos.y + dim.y, pos.z + dim.z);
+    vertex.add_last v;
+    v := VERTEX.create (pos.x + dim.x, pos.y + dim.y, pos.z + dim.z);
+    vertex.add_last v;
+    v := VERTEX.create (pos.x + dim.x, pos.y + dim.y, pos.z - dim.z);
+    vertex.add_last v;
+    v := VERTEX.create (pos.x - dim.x, pos.y + dim.y, pos.z - dim.z);
+    vertex.add_last v;
+    
+    // bottom
+    v := VERTEX.create (pos.x - dim.x, pos.y - dim.y, pos.z + dim.z);
+    vertex.add_last v;
+    v := VERTEX.create (pos.x + dim.x, pos.y - dim.y, pos.z + dim.z);
+    vertex.add_last v;
+    v := VERTEX.create (pos.x + dim.x, pos.y - dim.y, pos.z - dim.z);
+    vertex.add_last v;
+    v := VERTEX.create (pos.x - dim.x, pos.y - dim.y, pos.z - dim.z);
+    vertex.add_last v;
+  );
+  
+  - render <-
+  (
+    //
+    textures.item 0.bind;
+    renderer.vb.begin_quads;
+    
+    renderer.vb.add_texel2f (1, 0);
+    renderer.vb.add_vertex (vertex.item 7);
+    
+    renderer.vb.add_texel2f (0, 0);
+    renderer.vb.add_vertex (vertex.item 6);
+    
+    renderer.vb.add_texel2f (0, 1);
+    renderer.vb.add_vertex (vertex.item 2);
+    
+    renderer.vb.add_texel2f (1, 1);
+    renderer.vb.add_vertex (vertex.item 3);
+    
+    renderer.vb.end;
+    
+    //
+    textures.item 1.bind;
+    renderer.vb.begin_quads;
+    
+    renderer.vb.add_texel2f (0, 1);
+    renderer.vb.add_vertex (vertex.item 1);
+    
+    renderer.vb.add_texel2f (1, 1);
+    renderer.vb.add_vertex (vertex.item 2);
+    
+    renderer.vb.add_texel2f (1, 0);
+    renderer.vb.add_vertex (vertex.item 6);
+    
+    renderer.vb.add_texel2f (0, 0);
+    renderer.vb.add_vertex (vertex.item 5);
+    
+    renderer.vb.end; 
+    
+     //
+    textures.item 2.bind;
+    renderer.vb.begin_quads;
+    
+    renderer.vb.add_texel2f (0, 1);
+    renderer.vb.add_vertex (vertex.item 0);
+    
+    renderer.vb.add_texel2f (1, 1);
+    renderer.vb.add_vertex (vertex.item 1);
+    
+    renderer.vb.add_texel2f (1, 0);
+    renderer.vb.add_vertex (vertex.item 5);
+    
+    renderer.vb.add_texel2f (0, 0);
+    renderer.vb.add_vertex (vertex.item 4);
+    
+    renderer.vb.end;
+    
+     //
+    textures.item 3.bind;
+    renderer.vb.begin_quads;
+    
+    renderer.vb.add_texel2f (1, 0);
+    renderer.vb.add_vertex (vertex.item 4);
+    
+    renderer.vb.add_texel2f (0, 0);
+    renderer.vb.add_vertex (vertex.item 7);
+    
+    renderer.vb.add_texel2f (0, 1);
+    renderer.vb.add_vertex (vertex.item 3);
+    
+    renderer.vb.add_texel2f (1, 1);
+    renderer.vb.add_vertex (vertex.item 0);
+    
+    renderer.vb.end;
+    
+     //
+    textures.item 4.bind;
+    renderer.vb.begin_quads;
+    
+    renderer.vb.add_texel2f (0, 1);
+    renderer.vb.add_vertex (vertex.item 3);
+    
+    renderer.vb.add_texel2f (1, 1);
+    renderer.vb.add_vertex (vertex.item 2);
+    
+    renderer.vb.add_texel2f (1, 0);
+    renderer.vb.add_vertex (vertex.item 1);
+    
+    renderer.vb.add_texel2f (0, 0);
+    renderer.vb.add_vertex (vertex.item 0);
+    
+    renderer.vb.end;
+  );
+  
+  - set_position p:VECTOR3(REAL_32) <-
+  (
+    position := p;
+  );
+  
diff --git a/lib/unstable/opengl/3D/terrain.li b/lib/unstable/opengl/3D/terrain.li
new file mode 100644
index 0000000..0ad0a2a
--- /dev/null
+++ b/lib/unstable/opengl/3D/terrain.li
@@ -0,0 +1,256 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Application                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := TERRAIN;
+  
+  - comment  := "Height map";
+  
+Section Inherit
+  
+  - parent_framework:FRAMEWORK_ANY := FRAMEWORK_ANY;
+  
+Section Public
+  
+  + width:INTEGER;
+  + height:INTEGER;
+  
+  + w_step:REAL_32 := 2;
+  + h_step:REAL_32 := 2;
+  
+  + height_factor:REAL_32 :=  2.5;
+  
+  + heights:FAST_ARRAY(REAL_32);
+  + normals:FAST_ARRAY(VECTOR3(REAL_32));
+  
+  + texture:TEXTURE;
+  
+  - is_textured:BOOLEAN <- texture != NULL;
+  
+  
+  //
+  // Creation.
+  //
+  
+  - create map:IMAGE texture tex:TEXTURE :SELF <-
+  ( + result:SELF;
+    result := clone;
+    result.make (map,tex);
+    result
+  );
+  
+  - make (image:IMAGE, tex:TEXTURE) <-
+  // build the terrain
+  ( 
+    + map:IMAGE;
+    + h:REAL_32;
+    
+    (image.channels = 3).if {
+      // we need an alpha channel or a greyscale image
+      
+      map := image.to_greyscale;
+    } else {
+      map := image;
+    };
+    
+    texture := tex;
+    width := map.width;
+    height := map.height;
+    
+    heights := FAST_ARRAY(REAL_32).create (width*height);
+    normals := FAST_ARRAY(VECTOR3(REAL_32)).create_with_capacity (width*height);  
+ 
+    // fill data with heights
+    0.to (height-1) do { j:INTEGER;
+      0.to (width-1) do { i:INTEGER;
+        (image.channels = 4).if {
+          h := map.get_alpha_value (i,j).to_real / 256.0;
+        } else {
+          h := map.get_value (i,j).to_real / 256.0;
+        };
+        heights.put (h*height_factor) to (i*width+j);
+      };
+    };
+    compute_normals;
+  );
+  
+  - render vb:VERTEX_BUFFER at (xpos,ypos,zpos:REAL_32) <-
+  (
+    + index:INTEGER;
+
+    is_textured.if {
+      texture.enable;
+      texture.bind;
+    };
+    
+    0.to (height-2) do { i:INTEGER;
+      // generate n-1 strips
+      
+      vb.new_triangle_strip {
+        0.to (width-1) do { j:INTEGER;
+          
+          // first point of strip
+          index := 3*((i+1)*width+j);
+          
+          is_textured.if {
+            vb.add_texel2f ((i+1).to_real/256.0, j.to_real/256.0);
+          };
+          
+          vb.add_vertex3f (xpos+j.to_real*w_step,ypos+ heights.item ((i+1)*width+j),zpos+(i+1).to_real*h_step);
+          
+          // second point
+          index := 3*(i*width+j);
+          
+          is_textured.if {
+            vb.add_texel2f (i.to_real/256.0, j.to_real/256.0);
+          };
+          (normals != NULL).if {
+            vb.add_normal (normals.item (i*width+j));
+          };
+          
+          vb.add_vertex3f (xpos+j.to_real*w_step, ypos+heights.item (i*width+j),zpos+i.to_real*h_step);
+        };
+      };
+    };
+  );
+  
+  - rescale (min,max:REAL_32) <-
+  (
+    + amplitude,h_min,h_max,h:REAL_32;
+    + n:INTEGER;
+    
+    amplitude := max - min;
+    n := width * height;
+    
+    // find actual amplitude
+    h_min := heights.item 0;
+    h_max := heights.item 0;
+    1.to (n-1) do { i:INTEGER;
+      (heights.item i > h_max).if {
+        h_max := heights.item i;
+      };
+      (heights.item i < h_min).if {
+        h_min := heights.item i;
+      };
+    };
+    // re-scale terrain
+    0.to (n-1) do { i:INTEGER;
+      h := (heights.item i - h_min) / (h_max-h_min);
+      heights.put (h * amplitude - min) to i;
+    };
+    
+    // re-compute normals
+    compute_normals;
+  );
+  
+  - cross_product_p1 (x1,z1:INTEGER) p2 (x2,z2:INTEGER) p3 (x3,z3:INTEGER) :VECTOR3(REAL_32) <-
+  // compute normal unit vector of the (p1,p2,p3) triangle
+  (
+    + v1,v2:VECTOR3(REAL_32);
+    
+    // vector between p1 & p2
+    v1 := VECTOR3(REAL_32).create ((x2-x1).to_real*w_step, heights.item (z2*width+x2) - heights.item (z1*width+x1), (z2-z1).to_real*h_step);
+    
+    // vector between p1 & p3
+    v2 := VECTOR3(REAL_32).create ((x3-x1).to_real*w_step, heights.item (z3*width+x3) - heights.item (z1*width+x1), (z3-z1).to_real*h_step);
+    
+    (v1.cross v2).normalized
+  );
+  
+  - compute_normals <-
+  (
+    + v1,v2:VECTOR3(REAL_32);
+    
+    normals.clear;
+    
+    0.to (height-1) do { z:INTEGER;
+      0.to (width-1) do { x:INTEGER;
+        //
+        // normals of the corners
+        //
+        ((x = 0) && {z = 0}).if {
+          // bottom left
+          v1 := cross_product_p1 (0,0) p2 (0,1) p3 (1,0);
+        }.elseif {(z = height-1) && {x = width-1}} then {
+          // top right
+          v1 := cross_product_p1 (x,z) p2 (x,z-1) p3 (x-1,z);
+        }.elseif {(x = 0) && {z = height-1}} then {
+          // top left
+          v1 := cross_product_p1 (x,z) p2 (x,z-1) p3 (x+1,z);
+        }.elseif {(x = width-1) && {z = 0}} then {
+          // bottom right
+          v1 := cross_product_p1 (x,z) p2 (x,z+1) p3 (x-1,z); 
+        }.elseif {z = 0} then {
+          //
+          // normals of the borders
+          //
+          v1 := cross_product_p1 (x,0) p2 (x-1,0) p3 (x,1); 
+          v2 := cross_product_p1 (x,0) p2 (x,1) p3 (x+1,0); 
+          
+          v1 := v1 + v2;
+        }.elseif {x = 0} then {
+          // left border
+          v1 := cross_product_p1 (0,z) p2 (1,z) p3 (0,z-1); 
+          v2 := cross_product_p1 (0,z) p2 (0,z+1) p3 (1,z); 
+          
+          v1 := v1 + v2;
+        }.elseif {z = height-1} then {
+          // top border
+          v1 := cross_product_p1 (x,z) p2 (x,z-1) p3 (x+1,z); 
+          v2 := cross_product_p1 (x,z) p2 (x+1,z) p3 (x,z-1); 
+          
+          v1 := v1 + v2;
+        }.elseif {x = width-1} then {
+          // right border
+          v1 := cross_product_p1 (x,z) p2 (x,z-1) p3 (x-1,z); 
+          v2 := cross_product_p1 (x,z) p2 (x-1,z) p3 (x,z+1); 
+          
+          v1 := v1 + v2;
+        } else {
+          //
+          // inner point: sum the 8 neighbours normals
+          //
+          v1 := cross_product_p1 (x,z) p2 (x-1,z) p3 (x-1,z+1); 
+          v2 := cross_product_p1 (x,z) p2 (x-1,z+1) p3 (x,z+1); 
+          v1 := v1 + v2;
+          
+          v2 := cross_product_p1 (x,z) p2 (x,z+1) p3 (x+1,z+1); 
+          v1 := v1 + v2;
+          v2 := cross_product_p1 (x,z) p2 (x+1,z+1) p3 (x+1,z); 
+          v1 := v1 + v2;  
+          v2 := cross_product_p1 (x,z) p2 (x+1,z) p3 (x+1,z-1); 
+          v1 := v1 + v2;
+          v2 := cross_product_p1 (x,z) p2 (x+1,z-1) p3 (x,z-1); 
+          v1 := v1 + v2;
+          v2 := cross_product_p1 (x,z) p2 (x,z-1) p3 (x-1,z-1); 
+          v1 := v1 + v2;
+          v2 := cross_product_p1 (x,z) p2 (x-1,z-1) p3 (x-1,z); 
+          v1 := v1 + v2;
+        };
+        v1.normalize;
+        v1.set_z (-v1.z);
+         
+        // add normal
+        normals.add_last v1;
+      };
+    };
+  );
diff --git a/lib/unstable/opengl/abstract_renderer/abstract_evaluator.li b/lib/unstable/opengl/abstract_renderer/abstract_evaluator.li
new file mode 100644
index 0000000..49bdaee
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/abstract_evaluator.li
@@ -0,0 +1,147 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := ABSTRACT_EVALUATOR;
+  
+  - comment  := "Maps a spline function";
+  
+Section Inherit
+  
+  + parent_state:Expanded STATE;
+  
+Section Public
+  
+  // types of the control points
+  - vertex3:INTEGER <- 1;
+  - vertex4:INTEGER <- 2;
+  - index:INTEGER <- 3;
+  - normal:INTEGER <- 4;
+  - texture_coord1:INTEGER <- 5;
+  - texture_coord2:INTEGER <- 6;
+  - texture_coord3:INTEGER <- 7;
+  - texture_coord4:INTEGER <- 8;
+  - color4:INTEGER <- 9;
+  
+  
+  + type:INTEGER;
+  + capacity:INTEGER;
+  
+  + control_points:FAST_ARRAY(REAL_32);
+  
+  
+  - create (t, cap:INTEGER) :SELF <-
+  (
+    + result:SELF;
+    result := SELF.clone;
+    result.make (t,cap);
+    result
+  );
+  
+  - create_for_vertex3 cap:INTEGER :SELF <- 
+  (
+    create (vertex3,cap)
+  );
+  
+  - create_for_vertex4 cap:INTEGER :SELF <- 
+  (
+    create (vertex4,cap)
+  );
+  
+  - create_for_index cap:INTEGER :SELF <- 
+  (
+    create (index,cap)
+  );
+  
+  - create_for_normal cap:INTEGER :SELF <- 
+  (
+    create (normal,cap)
+  );
+  
+  - create_for_texture_coord1 cap:INTEGER :SELF <- 
+  (
+    create (texture_coord1,cap)
+  );
+  
+  - create_for_texture_coord2 cap:INTEGER :SELF <- 
+  (
+    create (texture_coord2,cap)
+  );
+  
+  - create_for_texture_coord3 cap:INTEGER :SELF <- 
+  (
+    create (texture_coord3,cap)
+  );
+  
+  - create_for_texture_coord4 cap:INTEGER :SELF <- 
+  (
+    create (texture_coord4,cap)
+  );
+  
+  - create_for_color4 cap:INTEGER :SELF <- 
+  (
+    create (color4,cap)
+  );
+  
+  - make (t,cap:INTEGER) <- 
+  (
+    type := t;
+    capacity := cap;
+  );
+  
+  - begin_control_points <-
+  (
+    control_points := FAST_ARRAY(REAL_32).create_with_capacity capacity;
+  );
+  - end <- ();
+  - new_control_points body:{} <-
+  (
+    begin_control_points;
+    body.value;
+    end;
+  );
+  
+  - add_point4f (x,y,z,w:REAL_32) <-
+  (
+    control_points.add_last x;
+    control_points.add_last y;
+    control_points.add_last z;
+    control_points.add_last w;
+  );
+  
+  - add_point3f (x,y,z:REAL_32) <-
+  (
+    control_points.add_last x;
+    control_points.add_last y;
+    control_points.add_last z;
+  );
+  
+  - add_point2f (x,y:REAL_32) <-
+  (
+    control_points.add_last x;
+    control_points.add_last y;
+  );
+  
+  - add_point1f (x:REAL_32) <-
+  (
+    control_points.add_last x;
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/accum_buffer.li b/lib/unstable/opengl/abstract_renderer/accum_buffer.li
new file mode 100644
index 0000000..2711a88
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/accum_buffer.li
@@ -0,0 +1,67 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := ACCUM_BUFFER;
+  
+  - comment  := "Abstract Accumulation buffer";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  // accumulation functions
+  - accum:INTEGER <- 1;  // accum_buffer = accum_buffer + val * color_buffer
+  - load:INTEGER <- 2;  // accum_buffer =  val * color_buffer
+  - return:INTEGER <- 3;  // color_buffer = val * accum_buffer
+  - add:INTEGER <- 4;  // accum_buffer = accum_buffer + val
+  - mult:INTEGER <- 5;  // accum_buffer = val * accum_buffer
+  
+  - set_function f:INTEGER value val:REAL_32 <- deferred;
+  
+  
+  // different way to use functions 
+  - accumulate_with coef:REAL_32 <- 
+  (
+    set_function accum value coef;
+  );
+  - load_with coef:REAL_32 <- 
+  (
+    set_function load value coef;
+  );
+  - return_with coef:REAL_32 <-
+  (
+    set_function return value coef;
+  );
+  - add_with val:REAL_32 <- 
+  (
+    set_function add value val;
+  );
+  - mult_with val:REAL_32 <- 
+  (
+    set_function mult value val;
+  );
+  
+  - clear <- deferred;
+  
diff --git a/lib/unstable/opengl/abstract_renderer/alpha_test.li b/lib/unstable/opengl/abstract_renderer/alpha_test.li
new file mode 100644
index 0000000..4a6de6b
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/alpha_test.li
@@ -0,0 +1,44 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+ 
+Section Header
+  
+  + name     := ALPHA_TEST;
+  
+  - comment  := "Alpha Testing (only in RGBA mode)";
+  
+Section Inherit
+  
+  + parent_state:Expanded STATE;
+  
+Section Public 
+  
+  // pixel test functions
+  - always:INTEGER <- 0; // test always sucess
+  - never:INTEGER <- 1; // test always fails
+  - less:INTEGER <- 2; // pixel drawn if its alpha-value is lesser than the corresponding depth buffer pixel
+  - lequal:INTEGER <- 3; // lesser or equal
+  - equal:INTEGER <- 4;
+  - gequal:INTEGER <- 5; // greater or equal
+  - greater:INTEGER <- 6;
+  - notequal:INTEGER <- 7; // not equal
+  
+  - apply f:INTEGER with val:REAL_32 <- deferred;
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/blending.li b/lib/unstable/opengl/abstract_renderer/blending.li
new file mode 100644
index 0000000..dafb678
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/blending.li
@@ -0,0 +1,49 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := BLENDING;
+  
+  - comment  := "Abstact Blending Mode";
+  
+Section Inherit
+  
+  + parent_state:Expanded STATE;
+  
+Section Public
+  
+  // factors values
+  - zero:INTEGER <- 0; // (0, 0, 0, 0)
+  - one:INTEGER <- 1; // (1, 1, 1, 1)
+  - dst_color:INTEGER <- 2; // (destR, destG, destB, destA)
+  - one_minus_dst_color:INTEGER <- 3; // (1-destR, 1-destG, 1-destB, 1-destA)
+  - src_color:INTEGER <- 4; // (srcR, srcG, srcB, srcA)
+  - one_minus_src_color:INTEGER <- 5; // (1-srcR, 1-srcG, 1-srcB, 1-srcA)
+  - src_alpha:INTEGER <- 6; // (srcA, srcA, srcA, srcA)
+  - one_minus_src_alpha:INTEGER <- 7; // (1-srcA, 1-srcA, 1-srcA, 1-srcA)
+  - dst_alpha:INTEGER <- 8; // (destA, destA, destA, destA)
+  - one_minus_dst_alpha:INTEGER <- 9; // (1-destA, 1-destA, 1-destA, 1-destA)
+  - src_alpha_saturate:INTEGER <- 10; // (min(srcA, 1-destA), ...)
+
+  - apply (src_factor,dst_factor:INTEGER) <- deferred;
+  
+  - set_alpha_value alpha:REAL_32 <- deferred;
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/capabilities.li b/lib/unstable/opengl/abstract_renderer/capabilities.li
new file mode 100644
index 0000000..c71459d
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/capabilities.li
@@ -0,0 +1,127 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := CAPABILITIES;
+  
+  - comment  := "Renderer settings";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - nicest_quality:INTEGER <- 1;
+  - fastest_quality:INTEGER <- 2;
+  - default_quality:INTEGER <- 3;
+  
+  
+  - quality:INTEGER              := nicest_quality;
+  
+  - width:INTEGER;
+  - height:INTEGER;
+  
+  - fov:REAL_32                  := 45.0;
+  
+  - is_fullscreen:BOOLEAN;
+  
+  
+  - has_doublebuffer:BOOLEAN     := TRUE;
+  - buffer_size:INTEGER          := 32;
+  
+  - has_depth_buffer:BOOLEAN     := TRUE;
+  - depth_size:INTEGER           := 16;
+  
+  - has_stencil_buffer:BOOLEAN;
+  - stencil_size:INTEGER         := 1;
+  
+  - has_accum_buffer:BOOLEAN;
+  - accum_red_size:INTEGER       := 8;
+  - accum_green_size:INTEGER     := 8;
+  - accum_blue_size:INTEGER      := 8;
+  - accum_alpha_size:INTEGER     := 8;
+  
+  - has_alpha:BOOLEAN            := TRUE;
+  
+  - red_size:INTEGER             := 8;
+  - green_size:INTEGER           := 8;
+  - blue_size:INTEGER            := 8;
+  - alpha_size:INTEGER           := 8;
+  
+  
+  - set_dimensions (w,h:INTEGER) <-
+  (
+    width := w;
+    heigth := h;
+  );
+  
+  - set_fov val:REAL_32 <-
+  (
+    fov := val;
+  );
+  
+  - use_fullscreen <-
+  (
+    has_fullscreen := TRUE;
+  );
+  
+  - use_doublebuffer <- 
+  (
+    has_doublebuffer := TRUE;
+  );
+  
+  - use_alpha_channel <- 
+  (
+    has_alpha := TRUE;
+  );
+  
+  - use_depth_buffer <- 
+  (
+    has_depth_buffer := TRUE;
+  );
+  
+  - use_stencil_buffer <- 
+  (
+    has_stencil_buffer := TRUE;
+  );
+  
+  - use_accum_buffer <- 
+  (
+    has_accum_buffer := TRUE;
+  );
+  
+  - use_default <-
+  (
+    quality := nicest_quality;
+    
+    use_doublebuffer;
+    use_depth_buffer;
+    use_alpha_channel;
+    set_fov 45;
+    
+    buffer_size := 32;
+    depth_size := 16;
+    stencil_size := 1;
+    red_size := blue_size := green_size := alpha_size := 8;
+    accum_red_size := accum_blue_size := accum_green_size := accum_alpha_size := 8;
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/color.li b/lib/unstable/opengl/abstract_renderer/color.li
new file mode 100644
index 0000000..67c8c9d
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/color.li
@@ -0,0 +1,39 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := COLOR;
+  
+  - comment  := "Generic type for colors";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - r:REAL_32 <- deferred;
+  - g:REAL_32 <- deferred;
+  - b:REAL_32 <- deferred;
+  - a:REAL_32 <- deferred;
+  
+  - get_array:FAST_ARRAY(REAL_32) <- (deferred; NULL);
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/color_buffer.li b/lib/unstable/opengl/abstract_renderer/color_buffer.li
new file mode 100644
index 0000000..6f1b55c
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/color_buffer.li
@@ -0,0 +1,76 @@
+///////////////////////////////////////////////////////////////////////////////
+//                           Lisaac-OpenGL library                           //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := COLOR_BUFFER;
+  
+  - comment  := "abstract pixel color buffer";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - rgb:INTEGER <- 0;
+  - rgba:INTEGER <- 1;
+  - red:INTEGER <- 2;
+  - green:INTEGER <- 3;
+  - blue:INTEGER <- 4;
+  - alpha:INTEGER <- 5;
+  - luminance:INTEGER <- 6; // grey (single component)
+  - luminance_alpha:INTEGER <- 7; // grey+alpha
+  - stencil_index:INTEGER <- 8;
+  - depth_component:INTEGER <- 9;
+  
+  
+  - clear <- deferred;
+  - set_clear_value (r,g,b,a:REAL_32) <- deferred;
+  
+  - set_color c:COLOR <- deferred;
+  - set_color3f (r,g,b:REAL_32) <- deferred;
+  - set_color4f (r,g,b,a:REAL_32) <- deferred;
+  
+  - set_mask (r,g,b,a:BOOLEAN) <- deferred;
+  
+  - enable <- deferred;
+  - disable <- deferred;
+  
+  //
+  // FrameBuffer transfert functions
+  //
+  
+  - read (x,y:INTEGER) size (w,h:INTEGER) type t:INTEGER in buf:FAST_ARRAY(UINTEGER_8) <- deferred;
+  
+  - read_rgb (x,y:INTEGER) size (w,h:INTEGER) in buf:FAST_ARRAY(UINTEGER_8) <- deferred;
+  - read_rgba (x,y:INTEGER) size (w,h:INTEGER) in buf:FAST_ARRAY(UINTEGER_8) <- deferred;
+  
+  
+  - draw_pixels pixels:FAST_ARRAY(UINTEGER_8) size (w,h:INTEGER) type t:INTEGER <- deferred;
+
+  - draw_rgb_pixels pixels:FAST_ARRAY(UINTEGER_8) size (w,h:INTEGER) <- deferred;
+  - draw_rgba_pixels pixels:FAST_ARRAY(UINTEGER_8) size (w,h:INTEGER) <- deferred;
+  
+  - copy (x,y:INTEGER) size (w,h:INTEGER) type t:INTEGER <- deferred;
+  
+  - copy_rgb (x,y:INTEGER) size (w,h:INTEGER) <- deferred;
+  - copy_rgba (x,y:INTEGER) size (w,h:INTEGER) <- deferred;
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/culling.li b/lib/unstable/opengl/abstract_renderer/culling.li
new file mode 100644
index 0000000..48a187d
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/culling.li
@@ -0,0 +1,67 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := CULLING;
+  
+  - comment  := "Abstract Culling Mode";
+  
+Section Inherit
+  
+  + parent_state:Expanded STATE;
+  
+Section Public
+  
+  // culling modes
+  - front:INTEGER <- 1;
+  - back:INTEGER <- 2;
+  
+  // culling function
+  - clockwise:INTEGER <- 3;
+  - counter_clockwise:INTEGER <- 4;
+  
+  
+  - apply mode:INTEGER <- deferred;
+  - set_orientation o:INTEGER <- deferred;
+  
+  
+  // aliases
+  - apply_front <- 
+  (
+    apply front;
+  );
+  
+  - apply_back <- 
+  (
+    apply back;
+  );
+  
+  - set_clockwise <-
+  (
+    set_orientation clockwise;
+  );
+  
+  - set_counter_clockwise <-
+  (
+    set_orientation counter_clockwise;
+  );
+  
diff --git a/lib/unstable/opengl/abstract_renderer/depth_buffer.li b/lib/unstable/opengl/abstract_renderer/depth_buffer.li
new file mode 100644
index 0000000..ba6373a
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/depth_buffer.li
@@ -0,0 +1,50 @@
+///////////////////////////////////////////////////////////////////////////////
+//                           Lisaac-OpenGL library                           //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := DEPTH_BUFFER;
+  
+  - comment  := "abstract pixel buffer";
+  
+Section Inherit
+  
+  + parent_state:Expanded STATE;
+
+Section Public
+  
+    // pixel test functions
+  - always:INTEGER <- 0; // test always sucess
+  - never:INTEGER <- 1; // test always fails
+  - less:INTEGER <- 2; // pixel drawn if its Z-value is lesser than the corresponding depth buffer pixel
+  - lequal:INTEGER <- 3; // lesser or equal: (pixelDepth <= bufferDepth) => draw pixel else don't
+  - equal:INTEGER <- 4;
+  - gequal:INTEGER <- 5; // greater or equal
+  - greater:INTEGER <- 6;
+  - notequal:INTEGER <- 7; // not equal
+
+  - set_clear_value val:REAL_32 <- deferred;
+  - clear <- deferred;
+  
+  - lock <- deffered;
+  - unlock <- deffered;
+  
+  - set_function f:INTEGER <- deferred;
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/display_list.li b/lib/unstable/opengl/abstract_renderer/display_list.li
new file mode 100644
index 0000000..9c1b1f6
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/display_list.li
@@ -0,0 +1,38 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := DISPLAY_LIST;
+  
+  - author   := "api independant display list";
+
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - create body:{} :SELF <- deferred;
+  
+  - call <- deferred;
+  
+  - destroy <- deferred;
diff --git a/lib/unstable/opengl/abstract_renderer/error.li b/lib/unstable/opengl/abstract_renderer/error.li
new file mode 100644
index 0000000..c31ce0e
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/error.li
@@ -0,0 +1,78 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+ 
+Section Header
+  
+  + name     := ERROR;
+  
+  - comment  := "Renderer error";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  // 
+  // Error codes
+  //
+  
+  - no_error:INTEGER <- 0;
+  - invalid_enum:INTEGER <- 1;
+  - invalid_value:INTEGER <- 2;
+  - invalid_operation:INTEGER <- 3;
+  - stack_overflow:INTEGER <- 4;
+  - stack_underflow:INTEGER <- 5;
+  - out_of_memory:INTEGER <- 6;
+  
+  - last_error:INTEGER := no_error;
+  
+  
+  // return current error state variable
+  - get:INTEGER <- deferred;
+  
+  // return details of error 
+  - get buffer:STRING from code:INTEGER <- deferred;
+  
+  - get_string <- 
+  (
+    msg_error.clear;
+    get msg_error from last_error;
+  );
+  
+  - print_error <-
+  (
+    get_string;
+    STD_ERROR.put_string msg_error;
+  );
+  
+  - send msg:ABSTRACT_STRING <-
+  (
+    msg_error.clear;
+    msg_error.append "\nRenderer error: ";
+    msg_error.append msg;
+    
+    STD_ERROR.put_string msg_error;
+  );  
+  
+Section Public
+  
+  - msg_error:STRING := STRING.create 256;
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/evaluator1d.li b/lib/unstable/opengl/abstract_renderer/evaluator1d.li
new file mode 100644
index 0000000..dd4dc4c
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/evaluator1d.li
@@ -0,0 +1,50 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := EVALUATOR1D;
+  
+  - comment  := "Maps a curve line";
+  
+Section Inherit
+  
+  + parent_abstract_evaluator:Expanded ABSTRACT_EVALUATOR;
+  
+Section Public
+  
+  // mesh drawing modes
+  - line:INTEGER <- 1;
+  - point:INTEGER <- 2;
+  
+  
+  // load the map function
+  - map (n_points,point_size:INTEGER) range (t1,t2:REAL_32) <- deferred;
+  
+  // generate a point for the parametric value 'val'
+  - evaluate val:REAL_32 <- deferred;
+  
+  // auto generate n points evenly spaced between (t1,t2)
+  - generate_grid  nb_points:INTEGER between (t1,t2:REAL_32) <- deferred;
+  
+  // Warning: mode is defined in the vertex buffer prototype
+  - evaluate_mesh mode:INTEGER from start:INTEGER to end:INTEGER <- deferred;
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/evaluator2d.li b/lib/unstable/opengl/abstract_renderer/evaluator2d.li
new file mode 100644
index 0000000..4bce65d
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/evaluator2d.li
@@ -0,0 +1,50 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := EVALUATOR2D;
+  
+  - comment  := "Maps a spline surface";
+  
+Section Inherit
+  
+  + parent_abstract_evaluator:Expanded ABSTRACT_EVALUATOR;
+  
+Section Public
+  
+  // mesh drawing modes
+  - line:INTEGER <- 1;
+  - point:INTEGER <- 2;
+  - fill:INTEGER <- 3;
+  
+  // load the map function
+  - map (u_order,u_size:INTEGER) and (v_order,v_size:INTEGER) range (u1,v1:REAL_32) to (u2,v2:REAL_32) <- deferred;
+  
+  // generate a point for the parametric values x,y
+  - evaluate (x,y:REAL_32) <- deferred;
+  
+  // auto generate n points evenly spaced between (t1,t2)
+  - generate_grid  (w,h:INTEGER) between (u1,u2:REAL_32) and (v1,v2:REAL_32) <- deferred;
+  
+  // Warning: mode is defined in the vertex buffer prototype
+  - evaluate_mesh mode:INTEGER from (start1,start2:INTEGER) to (end1,end2:INTEGER) <- deferred;
+  
diff --git a/lib/unstable/opengl/abstract_renderer/fog.li b/lib/unstable/opengl/abstract_renderer/fog.li
new file mode 100644
index 0000000..0f5a5b3
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/fog.li
@@ -0,0 +1,82 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := FOG;
+  
+  - comment  := "Fog properties";
+  
+Section Inherit
+  
+  + parent_state:Expanded STATE;
+  
+Section Public
+  
+  // fog modes
+  - filter_linear:INTEGER <- 1;
+  - filter_exp:INTEGER <- 2;
+  
+  - fogmode:INTEGER := filter_linear; // best fog rendering mode
+  
+  + color:COLOR;
+  + density:REAL_32;
+  
+  // fog depth
+  + start:REAL_32;
+  + end:REAL_32;
+  
+  - create (c:COLOR, d,s,e:REAL_32) :SELF <-
+  (
+    + result:SELF;
+    result := SELF.clone;
+    result.make (c,d,s,e);
+    result
+  );
+  
+  - make (c:COLOR, d,s,e:REAL_32) <- 
+  (
+    color := c;
+    density := d;
+    start := s;
+    end := e;
+    render;
+  );
+  
+  - set_filter f:INTEGER <- fogmode := f;
+  
+  - set_color c:COLOR <- 
+  (
+    color := c;
+  );
+  
+  - set_density d:REAL_32 <- 
+  (
+    density := d;
+  );
+  
+  - set_depth (s,e:REAL_32) <- 
+  (
+    start := s;
+    end := e;
+  );
+  
+  - render <- deferred;
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/font.li b/lib/unstable/opengl/abstract_renderer/font.li
new file mode 100644
index 0000000..a829d16
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/font.li
@@ -0,0 +1,71 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := FONT;
+ 
+  - comment  := "rendered font";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  + name:STRING;
+  
+  + font_height:UINTEGER_32 := 24;
+  + nb_chars:INTEGER := 96;
+ 
+  
+  - create s:ABSTRACT_STRING :SELF <-
+  (
+    + result:SELF;
+    result := SELF.clone;
+    result.make s;
+    result
+  );
+  
+  - make s:ABSTRACT_STRING <-
+  (
+    name := STRING.create_from_string s;
+    
+    load;
+  );
+  
+  - enable <- deferred;
+  - disable <- deferred;
+  
+  - print_zone body:{} <-
+  (
+    enable;
+    body.value;
+    disable;
+  );
+  
+  - load <- deferred;
+  - unload <- deferred;
+  
+  - print text:ABSTRACT_STRING at (x,y:INTEGER) <- deferred;
+  
+  // get default font
+  - default:FONT <- (deferred;NULL);
diff --git a/lib/unstable/opengl/abstract_renderer/index_buffer.li b/lib/unstable/opengl/abstract_renderer/index_buffer.li
new file mode 100644
index 0000000..00dde85
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/index_buffer.li
@@ -0,0 +1,60 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := INDEX_BUFFER;
+  
+  - comment  := "api independant index buffer";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - create sz:INTEGER :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make sz;
+    result
+  );
+  
+  - make sz:INTEGER <- deferred;
+  
+  - bind <- deferred;
+  
+  - destroy <- deferred;
+  
+  - begin_index <- deferred;
+  - end <- deferred;
+  
+  - new_indices body:{} <-
+  (
+    begin_indices;
+    body.value;
+    end;
+  );
+  
+  - draw mode:INTEGER size sz:INTEGER <- deferred;
+  
+  - add_index i:UINTEGER_16 <- deferred;
+  
diff --git a/lib/unstable/opengl/abstract_renderer/light.li b/lib/unstable/opengl/abstract_renderer/light.li
new file mode 100644
index 0000000..ca9fe7d
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/light.li
@@ -0,0 +1,108 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := LIGHT;
+  
+  - comment  := "Light properties";
+  
+Section Inherit
+  
+  + parent_state:Expanded STATE;
+  
+Section Public
+  
+  + ambient:COLOR; // scattered light - no particular direction
+  + diffuse:COLOR; // conic light  
+  + specular:COLOR; // shininess
+  
+  + position:VECTOR3(REAL_32);
+  
+  + is_directional:BOOLEAN; // if true 'position' is the direction
+  
+  + modified:BOOLEAN;
+  
+  
+  - create (a,d,s:COLOR) at (pos:VECTOR3(REAL_32)) :SELF <-
+  (
+    + result:SELF;
+    result := SELF.clone;
+    result.make (a,d,s,pos);
+    result
+  );
+  
+  - make (a,d,s:COLOR, pos:VECTOR3(REAL_32)) <- 
+  (
+    ambient := a;
+    diffuse := d;
+    specular := s;
+    
+    position := pos;
+    modified := TRUE;
+  );
+  
+  //
+  // Lighting Model
+  //
+  
+  - set_model_ambient col:RGBA <- deferred;
+  - set_model_local_viewer b:BOOLEAN <- deferred;
+  - set_model_two_side b:BOOLEAN <- deferred;
+  
+  
+  - notify <-
+  (
+    modified := TRUE;
+  );
+  
+  - set_ambient c:COLOR <- 
+  (
+    notify;
+    ambient := c;
+  );
+  
+  - set_diffuse c:COLOR <- 
+  (
+    notify;
+    diffuse := c;
+  );
+  
+  - set_specular c:COLOR <- 
+  (
+    notify;
+    specular := c;
+  );
+  
+  - set_position p:VECTOR3(REAL_32) <- 
+  (
+    notify;
+    position := p;
+  );
+  
+  - set_directional <- 
+  (
+    notify;
+    is_directional := TRUE;
+  );
+  
+  - enable_default_light <- deferred;
+  - disable_default_light <- deferred;
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/material.li b/lib/unstable/opengl/abstract_renderer/material.li
new file mode 100644
index 0000000..56b07d7
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/material.li
@@ -0,0 +1,120 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := MATERIAL;
+  
+  - comment  := "Material: lighting properties of an object";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - mode_front:INTEGER <- 1;
+  - mode_back:INTEGER <- 2;
+  - mode_front_and_back:INTEGER <- 3;
+  
+  
+  + ambient:COLOR; // percentage of reflected ambient light
+  + diffuse:COLOR; 
+  + specular:COLOR;
+  
+  + emission:COLOR; // emissive color of material
+  
+  + shininess:REAL_32; // specular exponent
+   
+  
+  - create (a,d,s,e:COLOR, shine:REAL_32)  :SELF <-
+  (
+    + result:SELF;
+    result := SELF.clone;
+    result.make (a,d,s,e,shine);
+    result
+  );
+  
+  - make (a,d,s,e:COLOR, shine:REAL_32) <- 
+  (
+    ambient := a;
+    diffuse := d;
+    specular := s;
+    emission := e;
+    
+    shininess := shine;
+  );
+  
+  - enable_color <- deferred;
+  - disable_color <- deferred;
+  
+  - notify <-
+  (
+  //  modified := TRUE;
+  );
+  
+  - set_ambient c:COLOR <- 
+  (
+    notify;
+    ambient := c;
+  );
+  
+  - set_diffuse c:COLOR <- 
+  (
+    notify;
+    diffuse := c;
+  );
+  
+  - set_specular c:COLOR <- 
+  (
+    notify;
+    specular := c;
+  );
+  
+  - set_emission c:COLOR <- 
+  (
+    notify;
+    emission := c;
+  );
+  
+  - set_shininess s:REAL_32 <- 
+  (
+    notify;
+    shininess := s;
+  );
+  
+  - apply mode:INTEGER  <- deferred;
+  
+  // aliases
+  - apply_front  <- 
+  (
+    apply mode_front;
+  );
+  
+  - apply_back  <-
+  (
+    apply mode_back;
+  );
+
+  - apply_front_and_back  <-
+  (
+    apply mode_front_and_back;
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/name_stack.li b/lib/unstable/opengl/abstract_renderer/name_stack.li
new file mode 100644
index 0000000..58dd1ba
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/name_stack.li
@@ -0,0 +1,39 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := NAME_STACK;
+  
+  - comment  := "Used by pickable objects using Selection buffer";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - init <- deferred;
+  
+  - load n:UINTEGER_32 <- deferred;
+  
+  - push n:UINTEGER_32 <- deferred;
+  - pop <- deferred;
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/plane.li b/lib/unstable/opengl/abstract_renderer/plane.li
new file mode 100644
index 0000000..e37a189
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/plane.li
@@ -0,0 +1,52 @@
+///////////////////////////////////////////////////////////////////////////////
+//                          Lisaac-OpenGL library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := PLANE;
+  
+  - comment  := "a*x+b*y+c*z+d >= 0 clipping plane";
+  
+Section Inherit
+  
+  + parent_vector:Expanded VECTOR4(REAL_32);
+  
+  + parent_state:Expanded STATE;
+  
+Section Public
+  
+  - a:REAL_32 <- x;
+  - b:REAL_32 <- y;
+  - c:REAL_32 <- z;
+  - d:REAL_32 <- w;
+  
+  - create_plane (a,b,c,d:REAL_32) :PLANE <-
+  ( + result:PLANE;
+    
+    result := create (a,b,c,d);
+    result.load_clipping_plane;
+    result
+  );
+  
+  - load_clipping_plane <- ();
+  
+  - clip <- deferred;
+  - unclip <- deferred;
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/quadrics.li b/lib/unstable/opengl/abstract_renderer/quadrics.li
new file mode 100644
index 0000000..c04d7f6
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/quadrics.li
@@ -0,0 +1,60 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := QUADRICS;
+  
+  - comment  := "3D Primitive (sphere,cylinder,...)";
+
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - fill_mode:INTEGER  <- 1;
+  - point_mode:INTEGER  <- 2;
+  - line_mode:INTEGER  <- 3;
+  
+  - begin_quadric <- deferred;
+  - end_quadric <- deferred;
+  
+  - new_quadric body:{} <-
+  (
+    begin_quadric;
+    body.value;
+    end_quadric;
+  );
+  
+  - enable_texture <- deferred;
+  
+  - disable_texture <- deferred;
+  
+  - set_style style:INTEGER <- deferred; 
+  
+  //
+  // Quadrics
+  //
+  
+  - draw_sphere (radius,slices,stacks:REAL_32) <- deferred;
+  - draw_cylinder (base,top,height,slices,stacks:REAL_32) <- deferred;
+  - draw_disk (inner,outer,slices,loops:REAL_32) <- deferred;
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/renderer.li b/lib/unstable/opengl/abstract_renderer/renderer.li
new file mode 100644
index 0000000..cde1869
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/renderer.li
@@ -0,0 +1,145 @@
+///////////////////////////////////////////////////////////////////////////////
+//                           Lisaac-OpenGL library                           //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := RENDERER;
+  
+  - comment  := "abstract prototype for render systems";
+  
+Section Inherit
+  
+  - parent_capabilities:CAPABILITIES := CAPABILITIES;
+  
+Section Public
+  
+  - set_capabilities caps:CAPABILITIES <-
+  (
+    parent_capabilities := caps;
+  );
+  
+  //
+  // Renderer settings
+  //
+  
+  - viewport:VIEWPORT; // current viewport
+  
+  - reshape:RESHAPE := RESHAPE; // for projection modification & re-sizing
+   
+  //
+  // Renderer Modules
+  //
+  
+  - transform:TRANSFORM <- deferred;  // 3D transformation & projection
+  - font:FONT <- deferred;           
+  - texture1d:TEXTURE <- deferred; 
+  - texture2d:TEXTURE <- deferred;    
+  - light:LIGHT <- deferred;         
+  - material:MATERIAL <- deferred;
+  - plane:PLANE <- deferred;
+  - quadrics:QUADRICS <- deferred;
+  - blending:BLENDING <- deferred;
+  - culling:CULLING <- deferred;
+  - fog:FOG;
+  
+  //
+  // Renderer features
+  //
+  
+  - vb:VERTEX_BUFFER;  // current vertex buffer
+  - vertex_array:VERTEX_BUFFER <- deferred;
+  - vertex_buffer:VERTEX_BUFFER <- deferred;
+  - index_buffer:INDEX_BUFFER <- deferred;
+  - display_list:DISPLAY_LIST <- deferred;
+  
+  - color_buffer:COLOR_BUFFER <- deferred;
+  - depth_buffer:DEPTH_BUFFER <- deferred;
+  - stencil_buffer:STENCIL_BUFFER <- deferred;
+  - accum_buffer:ACCUM_BUFFER <- deferred;
+  - alpha_test:ALPHA_TEST <- deferred;
+  - scissor:SCISSOR <- deferred;
+  
+  - evaluator1d:EVALUATOR1D <- deferred;
+  - evaluator2d:EVALUATOR2D <- deferred;
+  
+  - shader:SHADER <- deferred;
+  
+  - name_stack:NAME_STACK <- deferred;
+  
+  - error:ERROR <- (deferred;NULL);  
+
+
+  - enable_shading <- deferred;
+  - disable_shading <- deferred;
+  
+  - enable_lighting <- deferred;
+  - disable_lighting <- deferred;
+  
+  - enable_auto_normal <- deferred;
+  - disable_auto_normal <- deferred;
+  
+  - wireframe_mode on:BOOLEAN <- deferred;
+  
+  - set_point_size sz:REAL_32 <- deferred;
+  - set_line_width w:REAL_32 <- deferred;
+
+  //
+  // Selection mode
+  //
+  
+  - begin_selection_in buffer:FAST_ARRAY(UINTEGER_32) size sz:INTEGER <- deferred;
+  - end_selection:INTEGER <- deferred;
+  
+  - make (w,h:INTEGER) title s:ABSTRACT_STRING <-
+  (
+    make (w, h) title s fullscreen is_fullscreen;
+  );
+  
+  - initialize <- deferred;
+  
+  - begin_frame <- deferred;
+  - end_frame <- deferred;
+  - new_frame body:BLOCK <- deferred;
+
+  - clear_screen <- deferred;
+
+  - set_fog f:FOG <- deferred;
+
+  - resize (w,h:INTEGER) <- deferred;
+
+  - set_reshape r:RESHAPE <-
+  (
+    reshape := r;
+    r.set_render_system Self;
+  );
+  
+  - fatal_error msg:ABSTRACT_STRING <-
+  (
+    msg.print; 
+    die_with_code exit_failure_code;
+  );
+
+  // renderer info
+  - video_card_name buf:STRING <- deferred;
+  - video_card_vendor buf:STRING <- deferred;
+  - video_card_version buf:STRING <- deferred;
+
+
diff --git a/lib/unstable/opengl/abstract_renderer/reshape.li b/lib/unstable/opengl/abstract_renderer/reshape.li
new file mode 100644
index 0000000..050f23f
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/reshape.li
@@ -0,0 +1,70 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := RESHAPE;
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Private  
+  
+  - r:RENDERER;
+  
+Section Public
+  
+  - set_render_system renderer:RENDERER <-
+  (
+    r := renderer;
+  );
+  
+  //
+  // Reshape Events
+  //
+  
+  - on_resize (w,h:INTEGER) <- 
+  ( + ratio,f:REAL_32;
+    
+    `glViewport(0, 0, @w, @h)`;
+    `glMatrixMode(GL_PROJECTION)`;
+    `glLoadIdentity()`;
+    ratio := w.to_real / h.to_real;
+    f := r.fov;
+    `gluPerspective(@f, @ratio, 0.1, 1000)`;
+    `glMatrixMode(GL_MODELVIEW)`;
+    `glLoadIdentity()`;
+    
+    
+    /* r.transform.set_viewport (r.viewport);
+    
+    // modify projection matrix
+    r.transform.new_projection {
+      r.transform.load_identity;
+      
+      r.transform.perspective (r.fov, w.to_real/h.to_real, 0.1, 1000.0);
+    };
+    // clear modelview matrix
+    r.transform.load_identity;
+    */
+  );
+  
diff --git a/lib/unstable/opengl/abstract_renderer/rgb.li b/lib/unstable/opengl/abstract_renderer/rgb.li
new file mode 100644
index 0000000..ee5392d
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/rgb.li
@@ -0,0 +1,40 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := RGB;
+  
+  - comment  := "(r,g,b) color";
+  
+Section Inherit
+  
+  + parent_vector:Expanded VECTOR3(REAL_32);
+  
+  - parent_color:COLOR := COLOR;
+  
+Section Public
+  
+  - r:REAL_32 <- x;
+  - g:REAL_32 <- y;
+  - b:REAL_32 <- z;
+  
+  - get_array:FAST_ARRAY(REAL_32) <- parent_vector.getv;
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/rgba.li b/lib/unstable/opengl/abstract_renderer/rgba.li
new file mode 100644
index 0000000..99bcae5
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/rgba.li
@@ -0,0 +1,42 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := RGBA;
+  
+  - comment  := "(r,g,b,a) color";
+  
+Section Inherit
+  
+  + parent_vector:Expanded VECTOR4(REAL_32);
+  
+  - parent_color:COLOR := COLOR;
+  
+Section Public
+  
+  - r:REAL_32 <- x;
+  - g:REAL_32 <- y;
+  - b:REAL_32 <- z;
+  - a:REAL_32 <- w;
+
+  - getv:FAST_ARRAY(REAL_32) <- parent_vector.getv;
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/scissor.li b/lib/unstable/opengl/abstract_renderer/scissor.li
new file mode 100644
index 0000000..2215720
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/scissor.li
@@ -0,0 +1,38 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := SCISSOR;
+  
+  - comment  := "Viewport clipping";
+  
+Section Inherit
+  
+  + parent_state:Expanded STATE;
+  
+Section Public
+  
+  - cut v:VIEWPORT <- deferred;
+  
+  - cut4i (x,y,width,height:UINTEGER_32) <- deferred;
+  
+  - get_scissor_box viewport:VIEWPORT <- deferred;
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/shader.li b/lib/unstable/opengl/abstract_renderer/shader.li
new file mode 100644
index 0000000..e4be13c
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/shader.li
@@ -0,0 +1,58 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := SHADER;
+  
+  - comment  := "Abstract Shader Object";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - create (vertex_shader,fragment_shader:ABSTRACT_STRING) :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make (vertex_shader,fragment_shader);
+    result
+  );
+  
+  - make (vertex_shader,fragment_shader:ABSTRACT_STRING) <- deferred;
+  
+  - has_compiled:BOOLEAN <- deferred;
+  - get_infolog buffer:STRING <- deferred;
+  
+  - enable <- deferred;
+  - disable <- deferred;
+  
+  - get_uniform_location varname:ABSTRACT_STRING :INTEGER <- deferred;
+  
+  - set_uniform1f loc:INTEGER to val:REAL_32 <- deferred;
+  - set_uniform2f loc:INTEGER to (v0,v1:REAL_32) <- deferred;
+  - set_uniform3f loc:INTEGER to (v0,v1,v2:REAL_32) <- deferred;
+  - set_uniform4f loc:INTEGER to (v0,v1,v2,v3:REAL_32) <- deferred;
+  
+  - bind_sampler tex:TEXTURE unit u:INTEGER location loc:INTEGER <- deferred;
+  
+  - delete <- deferred;
diff --git a/lib/unstable/opengl/abstract_renderer/state.li b/lib/unstable/opengl/abstract_renderer/state.li
new file mode 100644
index 0000000..cf5e121
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/state.li
@@ -0,0 +1,87 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := STATE;
+  
+  - comment  := "The renderer is a Finite-State Machine";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Private
+  
+  + stack:LINKED_LIST(BOOLEAN);
+  
+Section Public
+  
+  //
+  //  Current states:
+  //          - lights
+  //          - planes
+  //          - textures
+  //          - depth test
+  //          - alpha test
+  //          - stencil test
+  //          - scissor test
+  //          - blending
+  //          - culling
+  //          - fog
+  
+  + is_enabled:BOOLEAN;
+  
+  
+  - enable <-
+  (
+    is_enabled := TRUE;
+  );
+  
+  - disable <- 
+  (
+    is_enabled := FALSE;
+  );
+  
+  - push_attrib <- deferred;
+  - pop_attrib <- deferred;
+  - new_attrib body:BLOCK <-
+  (
+    push_attrib;
+    body.value;
+    pop_attrib;
+  );
+  
+  
+  - save <-
+  (
+    (stack = NULL).if {
+      stack := LINKED_LIST(BOOLEAN).create;
+    };
+    stack.add_last is_enabled;
+  );
+  
+  - restore <-
+  (
+    ? {(stack != NULL) && {stack.count > 1}};
+    is_enabled := stack.last;
+    stack.remove_last;
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/stencil_buffer.li b/lib/unstable/opengl/abstract_renderer/stencil_buffer.li
new file mode 100644
index 0000000..a0580d2
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/stencil_buffer.li
@@ -0,0 +1,43 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := STENCIL_BUFFER;
+  
+  - comment  := "store some bits for each pixels ";
+  
+Section Inherit
+  
+  + parent_depth_buffer:Expanded DEPTH_BUFFER; // extends depth buffer
+  
+Section Public
+  
+  // stencil operations
+  - keep:INTEGER <- 1;   // do not change value
+  - replace:INTEGER <- 2; // replace value
+  - incr:INTEGER <- 3; // increment value
+  - decr:INTEGER <- 4; // decrement value
+  - invert:INTEGER <- 5; // invert bits value
+  
+  
+  - set_function f:INTEGER value val:INTEGER_32 mask m:UINTEGER_32 <- deferred;
+  - when_pass op1:INTEGER when_fail op2:INTEGER when_zfail op3:INTEGER <- deferred;
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/texture.li b/lib/unstable/opengl/abstract_renderer/texture.li
new file mode 100644
index 0000000..ac6ff5a
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/texture.li
@@ -0,0 +1,124 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := TEXTURE;
+ 
+  - comment  := "rendered image";
+  
+Section Inherit
+  
+  + parent_image:IMAGE := IMAGE;
+  
+  + parent_state:Expanded STATE;
+  
+Section Public
+  
+  //
+  // texture parameters
+  //
+  
+  // filters: how to draw texture
+  - filter_nearest:INTEGER <- 1; 
+  - filter_linear:INTEGER <- 2;
+  - filter_mipmap:INTEGER <- 3;
+  
+  - filter:INTEGER := filter_mipmap;
+  
+  // texture functions: how to combine texture on its polygon
+  - decal:INTEGER <- 1;
+  - replace:INTEGER <- 2;
+  - modulate:INTEGER <- 3;
+  - blend:INTEGER <- 4;
+  
+  - drawing_mode:INTEGER := modulate;
+  
+  // border behaviour: what to draw when texels outside [0,1]
+  - clamp:INTEGER <- 1;
+  - repeat:INTEGER <- 2;
+  - clamp_to_edge:INTEGER <- 3;
+  
+  - wrapping_mode:INTEGER := repeat;
+  
+  //
+  // Create.
+  //
+  
+  - create_from image:IMAGE :SELF <- 
+  ( + result:SELF;  
+    result := SELF.clone;
+    result.make_from image;
+    result
+  );
+  
+  - create_from_data pixels:FAST_ARRAY(UINTEGER_8) size (w,h:INTEGER) type t:INTEGER :SELF <-
+  (  + result:SELF;  
+    result := SELF.clone;
+    result.make_from_data pixels size (w,h) type t;
+    result
+  );
+  
+  - create_from_framebuffer (x,y,w,h:INTEGER) type t:INTEGER :SELF <-
+  (  + result:SELF;  
+    result := SELF.clone;
+    result.make_from_framebuffer (x,y,w,h) type t;
+    result
+  );
+  
+  - create_empty (w,h:INTEGER) type t:INTEGER :SELF <-
+  (  + result:SELF;  
+    result := SELF.clone;
+    result.make_empty (w,h) type t;
+    result
+  );
+  
+  - make_from image:IMAGE <- deferred;
+  - make_from_data pixels:FAST_ARRAY(UINTEGER_8) size (w,h:INTEGER) type t:INTEGER <- deferred;
+  - make_from_framebuffer (x,y,w,h:INTEGER) type t:INTEGER <- deferred;
+  
+  - replace_region (x,y,w,h:INTEGER) with_data (pixels:FAST_ARRAY(UINTEGER_8),type:INTEGER) <- deferred;
+  - replace_region (x,y,w,h:INTEGER) with image:IMAGE <- deferred;
+  
+  - replace_region (x,y,w,h:INTEGER) with_framebuffer_at (x0,y0:INTEGER) <- deferred;
+  
+  - enable_unit n:INTEGER <- deferred;
+  - disable_unit n:INTEGER <- deferred;
+  
+  - bind <- deferred;
+  - bind_unit n:INTEGER <- deferred;
+  
+  - set_image image:IMAGE <-
+  (
+    parent_image := image;
+  ); 
+  
+  - draw (x,y:INTEGER) <- deferred;
+  
+  - draw_strech (x,y,w,h:INTEGER) <- deferred;
+  
+  - set_filter f:INTEGER <- (filter := f;);
+  - set_drawing_mode f:INTEGER <- (drawing_mode := f;);
+  
+  - set_wrapping_mode f:INTEGER :INTEGER <- (wrapping_mode := f);
+ 
+  
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/transform.li b/lib/unstable/opengl/abstract_renderer/transform.li
new file mode 100644
index 0000000..656a58f
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/transform.li
@@ -0,0 +1,102 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := TRANSFORM;
+  
+  - comment  := "3 types of transformation: modelview, projection, viewport";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - load_identity <- deferred;
+  
+  - push_matrix <- deferred;
+  - pop_matrix <- deferred;
+  - new_matrix body:{} <- 
+  (
+    push_matrix;
+    body.value;
+    pop_matrix;
+  );
+  
+  // operations on current matrix
+  - load_matrix m:MATRIX4(REAL_32) <- deferred;
+  - mult_matrix_by m:MATRIX4(REAL_32) <- deferred;
+  
+  
+  //
+  // Viewing & Modeling transformations
+  //
+  
+  - set_modelview_mode <- deferred; 
+  
+  - translatef (x,y,z:REAL_32) <- deferred;
+  - rotatef (val,x,y,z:REAL_32) <- deferred;
+  - scalef (x,y,z:REAL_32) <- deferred;
+  
+  - get_modelview matrix:MATRIX4(REAL_32) <- deferred;
+  
+  //
+  // Projection transformations
+  //
+  
+  - set_projection_mode <- deferred;
+  - new_projection body:{} <- 
+  (
+    set_projection_mode;
+    body.value;
+    set_modelview_mode;
+  );
+  
+  - perspective (fovy,aspect,near,far:REAL_32) <- deferred;
+  - frustum (left,right,bottom,top,near,far:REAL_32) <- deferred;
+  
+  - orthographic (left,right,bottom,top,near,far:REAL_32) <- deferred;
+  - orthographic2d (left,right,bottom,top:REAL_32) <- deferred;
+  
+  - pickmatrix (x,y,w,h:UINTEGER_32) in v:VIEWPORT <- deferred;
+  
+  //
+  // Viewport transformations
+  //
+  
+  - set_viewport v:VIEWPORT <- deferred;
+  - set_viewport4i (x,y,width,height:UINTEGER_32) <- deferred;
+  - get_viewport viewport:VIEWPORT <- deferred;
+  
+  //
+  //  Tranformation utility
+  //
+   
+  - begin_ortho (w,h:INTEGER) <- deferred; 
+  - end_ortho <- deferred;
+  - ortho_mode (w,h:INTEGER) do body:{} <-
+  (
+    begin_ortho (w,h);
+    body.value;
+    end_ortho;
+  );
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/vertex.li b/lib/unstable/opengl/abstract_renderer/vertex.li
new file mode 100644
index 0000000..19be8a9
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/vertex.li
@@ -0,0 +1,34 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := VERTEX;
+  
+  - comment  := "(x,y,z) point";
+  
+Section Inherit
+  
+  + parent_vector:Expanded VECTOR3(REAL_32);
+  
+Section Public
+  
+ 
\ No newline at end of file
diff --git a/lib/unstable/opengl/abstract_renderer/vertex_buffer.li b/lib/unstable/opengl/abstract_renderer/vertex_buffer.li
new file mode 100644
index 0000000..49c1a76
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/vertex_buffer.li
@@ -0,0 +1,175 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := VERTEX_BUFFER;
+  
+  - comment  := "api independant vertex buffer";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - drawing_mode:INTEGER;
+  - capacity:INTEGER;
+  
+  - points:INTEGER <- 1;
+  - lines:INTEGER <- 2;
+  - polygon:INTEGER <- 3;
+  - triangles:INTEGER <- 4;
+  - quads:INTEGER <- 5;
+  - line_strip:INTEGER <- 6;
+  - line_loop:INTEGER <- 7;  
+  - triangle_strip:INTEGER <- 8;
+  - triangle_fan:INTEGER <- 9;
+  - quad_strip:INTEGER <- 10;
+  
+  
+  - create sz:INTEGER :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make sz;
+    result
+  );
+  
+  - create_subarray :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make capacity;
+    result
+  );
+  
+  - make sz:INTEGER <- deferred;
+  
+  - destroy <- deferred;
+  
+  - begin_points <- deferred;
+  - begin_lines <- deferred; 
+  - begin_polygon <- deferred;
+  - begin_triangles <- deferred;
+  - begin_quads <- deferred;
+  - begin_line_strip <- deferred;
+  - begin_line_loop <- deferred;  
+  - begin_triangle_strip <- deferred;
+  - begin_triangle_fan <- deferred;
+  - begin_quad_strip <- deferred;
+  
+  - end <- deferred;
+  
+  - new_points body:{} <- 
+  (
+    begin_points;
+    body.value;
+    end;
+  );
+  
+  - new_lines body:{} <- 
+  (
+    begin_lines;
+    body.value;
+    end;
+  );
+  
+  - new_polygon body:{} <- 
+  (
+    begin_polygon;
+    body.value;
+    end;
+  );
+  
+  - new_triangles body:{} <- 
+  (
+    begin_triangles;
+    body.value;
+    end;
+  );
+  
+  - new_quads body:{} <- 
+  (
+    begin_quads;
+    body.value;
+    end;
+  );
+  
+  - new_line_strip body:{} <- 
+  (
+    begin_line_strip;
+    body.value;
+    end;
+  );
+  
+  - new_line_loop body:{} <- 
+  (
+    begin_line_loop;
+    body.value;
+    end;
+  );
+  
+  - new_triangle_strip body:{} <- 
+  (
+    begin_triangle_strip;
+    body.value;
+    end;
+  );
+  
+  - new_triangle_fan body:{} <- 
+  (
+    begin_triangle_fan;
+    body.value;
+    end;
+  );
+  
+  - new_quad_strip body:{} <- 
+  (
+    begin_quad_strip;
+    body.value;
+    end;
+  );
+
+  - add_vertex2f (x,y:REAL_32) <- deferred;
+  - add_vertex3f (x,y,z:REAL_32) <- deferred;
+  - add_vertex v:VERTEX <- deferred;
+  - add_vertex v:VERTEX color col:COLOR <- deferred;
+  - add_vertex3f (x,y,z:REAL_32) color col:COLOR <- deferred;
+  
+  - add_texel2f (s,t:REAL_32) <- deferred;
+  - add_normal3f (x,y,z:REAL_32) <- deferred;
+  - add_normal v:VECTOR3(REAL_32) <- deferred;
+  
+  - add_color (c:COLOR) <- deferred;
+  - add_color3f (r,g,b:REAL_32) <- deferred;
+  
+  - build <- deferred;
+  
+  - bind <- deferred;
+  - bind_unit n:INTEGER <- deferred;
+  
+  - draw <- deferred;
+  - draw_using index_array:INDEX_BUFFER <- deferred;
+  
+  
+  - get_vertex_data:FAST_ARRAY(REAL_32) <- deferred;
+  - get_texels_data:FAST_ARRAY(REAL_32) <- deferred;
+  - get_normals_data:FAST_ARRAY(REAL_32) <- deferred;
+  - get_colors_data:FAST_ARRAY(REAL_32) <- deferred;
diff --git a/lib/unstable/opengl/abstract_renderer/viewport.li b/lib/unstable/opengl/abstract_renderer/viewport.li
new file mode 100644
index 0000000..d63b5b8
--- /dev/null
+++ b/lib/unstable/opengl/abstract_renderer/viewport.li
@@ -0,0 +1,38 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := VIEWPORT;
+  
+  - comment  := "(x0,y0,width,height) viewport";
+  
+Section Inherit
+  
+  + parent_vector:Expanded VECTOR4(UINTEGER_32);
+  
+Section Public
+  
+  - x0:UINTEGER_32 <- x;
+  - y0:UINTEGER_32 <- y;
+  - width:UINTEGER_32 <- z;
+  - height:UINTEGER_32 <- w;
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/framework/event_listener.li b/lib/unstable/opengl/framework/event_listener.li
new file mode 100644
index 0000000..33050a9
--- /dev/null
+++ b/lib/unstable/opengl/framework/event_listener.li
@@ -0,0 +1,55 @@
+///////////////////////////////////////////////////////////////////////////////
+//                           Lisaac-OpenGL library                           //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := EVENT_LISTENER;
+  
+Section Inherit
+  
+  - parent_framework_any:FRAMEWORK_ANY := FRAMEWORK_ANY;
+  
+Section Public
+  
+  //
+  // Keyboard events
+  // 
+  
+  - keydown k:INTEGER <-
+  (
+  );
+  
+  - keyup k:INTEGER <-
+  (
+  );
+  
+  
+  //
+  // Mouse events
+  //
+  
+  - move (x,y:INTEGER) <-
+  (
+  );
+  
+  - click b:INTEGER <-
+  (
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/framework/framework.li b/lib/unstable/opengl/framework/framework.li
new file mode 100644
index 0000000..253e7ec
--- /dev/null
+++ b/lib/unstable/opengl/framework/framework.li
@@ -0,0 +1,333 @@
+///////////////////////////////////////////////////////////////////////////////
+//                           Lisaac-OpenGL library                           //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := FRAMEWORK;
+  
+Section Inherit
+  
+  - parent_framework_any:FRAMEWORK_ANY := FRAMEWORK_ANY;
+  
+Section Private  
+  
+  - current_time:UINTEGER_32; //REAL_32;
+  - prev_time:UINTEGER_32; //REAL_32;
+  
+Section Public
+
+ 
+  //
+  //
+  //  
+
+  - current_scene:SCENE;
+  
+  - out:FONT;
+  
+  - is_running:BOOLEAN;
+  - frame_per_second_max:INTEGER;
+  - time_per_frame:INTEGER;
+
+  - frame_time:UINTEGER_32;
+  
+  
+  - make r:RENDERER <-
+  ( + buf:STRING;
+
+    renderer := r;
+    
+    log := LOG.create "renderer.log" level 3; 
+    buf := STRING.create 256;
+    
+    buf.append "Video Card Driver:\n";
+    renderer.video_card_name buf;
+    renderer.video_card_vendor buf;	    
+    renderer.video_card_version buf;
+    log.append buf;
+	
+    KEYCODE.make;
+    FRAMEWORK_EVENT.make;
+
+    out := renderer.font.default;
+  );
+  
+  - make_for_gui r:RENDERER <-
+  (
+    renderer := r;
+    KEYCODE.make;
+    
+    out := renderer.font.default;
+  );
+  
+  - attach_scene sc:SCENE <-
+  (
+    current_scene := sc;
+    //
+    sc.initialize;
+    //
+  );
+  
+  - set_fps n:INTEGER <-
+  (
+    frame_per_second_max := n;
+    time_per_frame := 1000/frame_per_second_max;
+  );
+  
+  //
+  // Application events.
+  //
+  
+  - initialize:BOOLEAN <- TRUE;
+  
+  - load_config <- 
+  (
+    set_fps 60;
+  );
+  
+  - init_time <- 
+  (
+    frame_time := 0;
+    parent_platform.init_time;
+    
+    current_time := get_milliseconds;
+  );
+  
+  - update_time <-
+  (
+    prev_time := current_time;
+    current_time := get_milliseconds;
+    
+    frame_time := current_time - prev_time;
+  );
+  
+  - make_frame <-
+  (
+    begin_frame;
+    //
+    draw_frame;
+    //
+    end_frame;
+  );
+  
+  - begin_frame <- 
+  (
+    renderer.begin_frame;
+  );
+  
+  - end_frame <- 
+  (
+    renderer.end_frame;
+
+    report_error.if {
+      //...
+    };
+
+    // sleep to keep constant framerate
+    (frame_per_second_max > 0).if {
+
+      (frame_time < time_per_frame).if { 
+        delay (time_per_frame - frame_time);
+      };
+    };
+  );
+  
+  - draw_frame <- 
+  (
+    (current_scene != NULL).if {
+      current_scene.render (frame_time.to_real/1000.0);
+    };
+  );
+  
+  - on_close <-
+  (
+  );
+  
+  
+  - run <-
+  // main program loop
+  (
+    init_time;
+    load_config;
+    
+    initialize.if {
+      is_running := TRUE;
+      
+      //
+      // main loop
+      //
+      {
+        FRAMEWORK_EVENT.update;
+        
+        // (is_active).if {
+        update_time;
+        make_frame;
+        // else 
+        // sleep(100);
+        
+      }.do_while {is_running};
+      
+      // exit framework
+      close; 
+    };
+  );
+  
+  - stop <-
+  (
+    is_running := FALSE;
+  );
+  
+  - close <-
+  (
+    (current_scene != NULL).if {
+      current_scene.release;
+    };
+    on_close;
+  );
+
+  //
+  // 3D modes handling
+  //
+
+Section Private
+  
+  - lighting_mode:BOOLEAN;
+  - blending_mode:BOOLEAN;
+  - fog_mode:BOOLEAN;
+  - wireframe_mode:BOOLEAN;
+  - shading_mode:BOOLEAN;
+  
+Section Public
+  
+  - toggle_shading <-
+  (
+    shading_mode := ! shading_mode;
+    shading_mode.if {
+      renderer.enable_shading;
+    } else {
+      renderer.disable_shading;
+    };
+  );
+  
+  - toggle_lighting <- 
+  (
+    lighting_mode := ! lighting_mode;
+    lighting_mode.if {
+      renderer.enable_lighting;
+    } else {
+      renderer.disable_lighting;
+    };
+  );  
+  
+  - toggle_blending <- 
+  (
+    blending_mode := ! blending_mode;
+    blending_mode.if {
+      renderer.blending.enable;
+      renderer.depth_buffer.disable;
+    } else {
+      renderer.blending.disable;
+      renderer.depth_buffer.enable;
+    };
+  );
+  
+  - toggle_fog <- 
+  (
+    fog_mode := ! fog_mode;
+    fog_mode.if {
+      renderer.fog.enable;
+    } else {
+      renderer.fog.disable;
+    };
+  );
+  
+  - toggle_wireframe <-
+  (
+    wireframe_mode := ! wireframe_mode;
+    renderer.wireframe_mode wireframe_mode;
+  );
+  
+  //
+  // Event management
+  //
+   
+Section Private
+  
+  - key_listeners:LINKED_LIST(EVENT_LISTENER);
+  - mouse_listeners:LINKED_LIST(EVENT_LISTENER);
+  
+Section Public  
+  
+  - add_key_listener kl:EVENT_LISTENER <-
+  (
+    (key_listeners = NULL).if {
+      key_listeners := LINKED_LIST(EVENT_LISTENER).create;
+    };
+    key_listeners.add_last kl;
+  );
+  
+  - add_mouse_listener ml:EVENT_LISTENER <-
+  (
+    (mouse_listeners = NULL).if {
+      mouse_listeners := LINKED_LIST(EVENT_LISTENER).create;
+    };
+    mouse_listeners.add_last ml;
+  );
+  
+  //
+  // Events
+  //
+  
+  - on_keydown k:INTEGER <-
+  (
+    (key_listeners != NULL).if {
+      key_listeners.lower.to (key_listeners.upper) do { i:INTEGER;
+        key_listeners.item i.keydown k;
+      };
+    };
+  );
+  
+  - on_keyup k:INTEGER <-
+  (
+    (key_listeners != NULL).if {
+      key_listeners.lower.to (key_listeners.upper) do { i:INTEGER;
+        key_listeners.item i.keyup k;
+      };
+    };
+  );
+  
+  - on_mousemove (x,y:INTEGER) <- 
+  (
+    (mouse_listeners != NULL).if {
+      mouse_listeners.lower.to (mouse_listeners.upper) do { i:INTEGER;
+        mouse_listeners.item i.move (x,y);
+      };
+    };
+  );
+  
+  - on_mouseclick b:INTEGER <-
+  (
+    (mouse_listeners != NULL).if {
+      mouse_listeners.lower.to (mouse_listeners.upper) do { i:INTEGER;
+        mouse_listeners.item i.click b;
+      };
+    };
+  );
diff --git a/lib/unstable/opengl/framework/log.li b/lib/unstable/opengl/framework/log.li
new file mode 100644
index 0000000..7131f8b
--- /dev/null
+++ b/lib/unstable/opengl/framework/log.li
@@ -0,0 +1,77 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Application                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name      := LOG;
+
+  - comment   := "Logging System";
+
+Section Inherit
+
+  - parent_object:OBJECT := OBJECT;
+
+Section Public
+  
+  - max_level:INTEGER <- 4;
+  
+  + file:POINTER;
+  + level:INTEGER;
+
+  
+  //
+  // Creation.
+  //
+
+  - create s:ABSTRACT_STRING level l:INTEGER :SELF <-
+  ( + result:SELF;
+    result := clone;
+    result.make (s,l);
+    result
+  );
+
+  - make (s:ABSTRACT_STRING, l:INTEGER) <-
+  ( 
+    level := l;
+    file := FS_MIN.open_write s;
+  );
+  
+  - append msg:ABSTRACT_STRING <-
+  (
+    + buf:STRING;
+    
+    buf := STRING.create_from_string msg;
+    buf.append "\n";
+    
+    FS_MIN.write file with buf size(buf.count);
+  );
+  
+  - print msg:ABSTRACT_STRING level l:INTEGER <-
+  (
+    (level + l >= max_level).if {  
+      append msg;
+    };
+  );
+  
+  - close <-
+  (
+    FS_MIN.close file;
+  );
+
diff --git a/lib/unstable/opengl/framework/low_level/abstract_keycode.li b/lib/unstable/opengl/framework/low_level/abstract_keycode.li
new file mode 100644
index 0000000..cd95736
--- /dev/null
+++ b/lib/unstable/opengl/framework/low_level/abstract_keycode.li
@@ -0,0 +1,188 @@
+///////////////////////////////////////////////////////////////////////////////
+//                           Lisaac-SDL Library                              //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := ABSTRACT_KEYCODE;
+  - comment  := "Plateform independant key mapping";
+  - author   := "Xavier Oswald <x.oswald at free.fr>";
+
+Section Inherit
+  
+  - parent_object: OBJECT := OBJECT;
+
+Section Private
+
+  - keys:HASHED_DICTIONARY(INTEGER,INTEGER);
+
+Section Public
+
+  - max_keys: INTEGER := 322;
+
+  - k_backspace     : INTEGER <- 8;
+  - k_tab           : INTEGER <- 9;
+  - k_clear         : INTEGER <- 12;
+  - k_return        : INTEGER <- 13;
+  - k_pause         : INTEGER <- 19;
+  - k_escape        : INTEGER <- 27;
+  - k_space         : INTEGER <- 32;
+  - k_exclaim       : INTEGER <- 33;
+  - k_quotedbl      : INTEGER <- 34;
+  - k_hash          : INTEGER <- 35;
+  - k_dollar        : INTEGER <- 36;
+  - k_ampersand     : INTEGER <- 38;
+  - k_quote         : INTEGER <- 39;
+  - k_leftparen     : INTEGER <- 40;
+  - k_rightparen    : INTEGER <- 41;
+  - k_asterisk      : INTEGER <- 42;
+  - k_plus          : INTEGER <- 43;
+  - k_comma         : INTEGER <- 44;
+  - k_minus         : INTEGER <- 45;
+  - k_period        : INTEGER <- 46;
+  - k_slash         : INTEGER <- 47;
+  - k_0             : INTEGER <- 48;
+  - k_1             : INTEGER <- 49;
+  - k_2             : INTEGER <- 50;
+  - k_3             : INTEGER <- 51;
+  - k_4             : INTEGER <- 52;
+  - k_5             : INTEGER <- 53;
+  - k_6             : INTEGER <- 54;
+  - k_7             : INTEGER <- 55;
+  - k_8             : INTEGER <- 56;
+  - k_9             : INTEGER <- 57;
+  - k_colon         : INTEGER <- 58;
+  - k_semicolon     : INTEGER <- 59;
+  - k_less          : INTEGER <- 60;
+  - k_equals        : INTEGER <- 61;
+  - k_greater       : INTEGER <- 62;
+  - k_question      : INTEGER <- 63;
+  - k_at            : INTEGER <- 64;
+  - k_leftbracket   : INTEGER <- 91;
+  - k_backslash     : INTEGER <- 92;
+  - k_rightbracket  : INTEGER <- 93;
+  - k_caret         : INTEGER <- 94;
+  - k_underscore    : INTEGER <- 95;
+  - k_backquote     : INTEGER <- 96;
+  - k_a             : INTEGER <- 97;
+  - k_b             : INTEGER <- 98;
+  - k_c             : INTEGER <- 99;
+  - k_d             : INTEGER <- 100;
+  - k_e             : INTEGER <- 101;
+  - k_f             : INTEGER <- 102;
+  - k_g             : INTEGER <- 103;
+  - k_h             : INTEGER <- 104;
+  - k_i             : INTEGER <- 105;
+  - k_j             : INTEGER <- 106;
+  - k_k             : INTEGER <- 107;
+  - k_l             : INTEGER <- 108;
+  - k_m             : INTEGER <- 109;
+  - k_n             : INTEGER <- 110;
+  - k_o             : INTEGER <- 111;
+  - k_p             : INTEGER <- 112;
+  - k_q             : INTEGER <- 113;
+  - k_r             : INTEGER <- 114;
+  - k_s             : INTEGER <- 115;
+  - k_t             : INTEGER <- 116;
+  - k_u             : INTEGER <- 117;
+  - k_v             : INTEGER <- 118;
+  - k_w             : INTEGER <- 119;
+  - k_x             : INTEGER <- 120;
+  - k_y             : INTEGER <- 121;
+  - k_z             : INTEGER <- 122;
+  - k_delete        : INTEGER <- 127;
+
+  // Numeric keypad
+  - kp_0            : INTEGER <- 256;
+  - kp_1            : INTEGER <- 257;
+  - kp_2            : INTEGER <- 258;
+  - kp_3            : INTEGER <- 259;
+  - kp_4            : INTEGER <- 260;
+  - kp_5            : INTEGER <- 261;
+  - kp_6            : INTEGER <- 262;
+  - kp_7            : INTEGER <- 263;
+  - kp_8            : INTEGER <- 264;
+  - kp_9            : INTEGER <- 265;
+  - kp_period       : INTEGER <- 266;
+  - kp_divide       : INTEGER <- 267;
+  - kp_multiply     : INTEGER <- 268;
+  - kp_minus        : INTEGER <- 269;
+  - kp_plus         : INTEGER <- 279;
+  - kp_enter        : INTEGER <- 271;
+  - kp_equals       : INTEGER <- 272;
+
+  // Arrows + Home/End pad
+  - k_up            : INTEGER <- 273;
+  - k_down          : INTEGER <- 274;
+  - k_right         : INTEGER <- 275;
+  - k_left          : INTEGER <- 276;
+  - k_insert        : INTEGER <- 277;
+  - k_home          : INTEGER <- 278;
+  - k_end           : INTEGER <- 279;
+  - k_pageup        : INTEGER <- 290;
+  - k_pagedown      : INTEGER <- 281;
+
+  // Function keys
+  - k_f1            : INTEGER <- 282;
+  - k_f2            : INTEGER <- 283;
+  - k_f3            : INTEGER <- 284;
+  - k_f4            : INTEGER <- 285;
+  - k_f5            : INTEGER <- 286;
+  - k_f6            : INTEGER <- 287;
+  - k_f7            : INTEGER <- 288;
+  - k_f8            : INTEGER <- 289;
+  - k_f9            : INTEGER <- 290;
+  - k_f10           : INTEGER <- 291;
+  - k_f11           : INTEGER <- 292;
+  - k_f12           : INTEGER <- 293;
+  - k_f13           : INTEGER <- 294;
+  - k_f14           : INTEGER <- 295;
+  - k_f15           : INTEGER <- 296;
+
+  // Key state modifier keys
+  - k_numlock       : INTEGER <- 300;
+  - k_capslock      : INTEGER <- 301;
+  - k_scrollock     : INTEGER <- 302;
+  - k_rshift        : INTEGER <- 303;
+  - k_lshift        : INTEGER <- 304;
+  - k_rctrl         : INTEGER <- 305;
+  - k_lctrl         : INTEGER <- 306;
+  - k_ralt          : INTEGER <- 307;
+  - k_lalt          : INTEGER <- 308;
+  - k_rmeta         : INTEGER <- 309;
+  - k_lmeta         : INTEGER <- 310;
+  - k_lsuper        : INTEGER <- 311;
+  - k_rsuper        : INTEGER <- 312;
+  - k_mode          : INTEGER <- 313;
+  - k_compose       : INTEGER <- 314;
+
+  // Miscellaneous function keys
+  - k_help          : INTEGER <- 315; 
+  - k_print         : INTEGER <- 316; 
+  - k_sysreq        : INTEGER <- 317; 
+  - k_break         : INTEGER <- 318; 
+  - k_menu          : INTEGER <- 319; 
+  - k_power         : INTEGER <- 320; 
+  - k_euro          : INTEGER <- 321; 
+  - k_undo          : INTEGER <- 322; 
+  
+  - key_count:INTEGER <- 323;
+  
+  - get_key key:INTEGER :INTEGER <- deferred;
\ No newline at end of file
diff --git a/lib/unstable/opengl/framework/low_level/framework_any.li b/lib/unstable/opengl/framework/low_level/framework_any.li
new file mode 100644
index 0000000..7b2bc94
--- /dev/null
+++ b/lib/unstable/opengl/framework/low_level/framework_any.li
@@ -0,0 +1,66 @@
+///////////////////////////////////////////////////////////////////////////////
+//                           Lisaac-OpenGL library                           //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := FRAMEWORK_ANY;
+  
+Section Inherit
+  
+  - parent_platform:PLATFORM := PLATFORM;
+  
+Section Public
+  
+  //
+  // Framework modules.
+  //
+
+  - event:FRAMEWORK_EVENT <- FRAMEWORK_EVENT;
+
+  
+  - renderer:RENDERER; // current renderer
+  
+  - log:LOG; // current log file
+  
+  - report_error:BOOLEAN; // debug mode
+  
+  
+  - width:INTEGER <- renderer.width;
+  - height:INTEGER <- renderer.height;
+  
+  - screen_width:INTEGER <- width;
+  - screen_height:INTEGER <- height;
+  
+  - track_errors <- report_error := TRUE;
+  
+  
+  - error msg:ABSTRACT_STRING <- 
+  (
+    log.append "==== GL Framework Error ====";
+    log.append msg;
+    log.append "============================";
+  );
+  
+  - fatal_error msg:ABSTRACT_STRING <- 
+  (
+    error msg;
+    renderer.fatal_error msg;
+  );
diff --git a/lib/unstable/opengl/framework/scene.li b/lib/unstable/opengl/framework/scene.li
new file mode 100644
index 0000000..ec080e5
--- /dev/null
+++ b/lib/unstable/opengl/framework/scene.li
@@ -0,0 +1,56 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Application                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := SCENE;
+  
+  - comment  := "basic rendering scene";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - renderer:RENDERER;
+  
+  - set_renderer r:RENDERER <-
+  (
+    renderer := r;
+  );
+  
+  
+  - initialize:BOOLEAN <- TRUE;
+  
+  - render t:REAL_32 <-
+  (
+    renderer.begin_frame;
+    //------------
+    
+    //------------
+    renderer.end_frame;
+  );
+  
+  - release <-
+  (
+    // nothing
+  );
diff --git a/lib/unstable/opengl/framework/unix/framework_event.li b/lib/unstable/opengl/framework/unix/framework_event.li
new file mode 100644
index 0000000..1280add
--- /dev/null
+++ b/lib/unstable/opengl/framework/unix/framework_event.li
@@ -0,0 +1,135 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := FRAMEWORK_EVENT;
+  
+  - comment  := "GL Framework: handle input";
+  
+  - external := 
+  `
+char keybuf[64];
+KeySym  keysym;
+ `;
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - make <-
+  (
+  );
+  
+  - keys:FAST_ARRAY(BOOLEAN) := 
+  ( + result:FAST_ARRAY(BOOLEAN);
+    
+    result := FAST_ARRAY(BOOLEAN).create (KEYCODE.key_count);
+    result.set_all_with FALSE;
+    result
+  );
+  
+  - mouse_x:INTEGER;
+  - mouse_y:INTEGER;
+
+  - get_mouse_pos:(INTEGER,INTEGER) <- 
+  (
+     (mouse_x, mouse_y)
+  );
+
+  - update:BOOLEAN <-
+  (
+    + type,k:INTEGER;
+    + w,h,b:INTEGER;
+  
+    {`XPending (win.dpy)`:INTEGER != 0}.while_do {
+      `XNextEvent (win.dpy, &event)`;
+      type := `event.type`:INTEGER;
+      
+      type
+
+      //
+      // Event Keyboard
+      //
+      .when `KeyPress`:INTEGER then {
+        `XLookupString(&event.xkey, keybuf, sizeof(keybuf), &keysym, 0)`;
+	k := KEYCODE.get_key (`keysym`:INTEGER);
+
+	keys.put TRUE to k;
+	FRAMEWORK.on_keydown k;
+      }
+      .when `KeyRelease`:INTEGER then {
+	`XLookupString(&event.xkey, keybuf, sizeof(keybuf), &keysym, 0)`;
+	k := KEYCODE.get_key (`keysym`:INTEGER);
+
+	keys.put FALSE to k;
+	FRAMEWORK.on_keyup k;
+      }	
+      .when `ButtonPress`:INTEGER then {
+        b := `event.xbutton.button`:INTEGER;
+        FRAMEWORK.on_mouseclick (((b = 1).to_integer <<1) | (b = 3).to_integer);
+      }
+      .when `MotionNotify`:INTEGER then {
+	mouse_x := `event.xmotion.x`:INTEGER;
+        mouse_y := `event.xmotion.y`:INTEGER;
+        FRAMEWORK.on_mousemove (mouse_x,mouse_y);
+      }
+      .when `ConfigureNotify`:INTEGER then {
+	w := `event.xconfigure.width`:INTEGER;
+	h := `event.xconfigure.height`:INTEGER;
+	
+	((w != FRAMEWORK.renderer.width) && {h != FRAMEWORK.renderer.height}).if {
+	  FRAMEWORK.renderer.resize (w,h); 
+	};
+      }
+      .when `ClientMessage`:INTEGER then {
+        `*XGetAtomName(win.dpy, event.xclient.message_type) == *"WM_PROTOCOLS"`:BOOLEAN{TRUE,FALSE}.if {
+	  FRAMEWORK.stop;
+	};	
+      };
+    };
+    TRUE
+  );
+  
+  - keydown k:INTEGER :BOOLEAN <-
+  (
+    keys.item k
+  );
+  
+  - keyup k:INTEGER :BOOLEAN <-
+  (
+    ! keys.item k
+  );
+  
+  - set_up k:INTEGER <-
+  (
+    keys.put FALSE to k;
+  );
+  
+  - warp_mouse (x,y:INTEGER) <-
+  (
+    mouse_x := x;
+    mouse_y := y;
+    `XWarpPointer (win.dpy, None, win.win, 0, 0, 0, 0, @x, @y)`; 
+  );
+  
diff --git a/lib/unstable/opengl/framework/unix/gl_font.li b/lib/unstable/opengl/framework/unix/gl_font.li
new file mode 100644
index 0000000..42e8489
--- /dev/null
+++ b/lib/unstable/opengl/framework/unix/gl_font.li
@@ -0,0 +1,66 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_FONT;
+ 
+  - comment  := "X11 - OpenGl rendered font";
+  
+  - external := `static XFontStruct *font;`;
+  
+Section Inherit
+  
+  + parent_font_abstract:Expanded GL_FONT_ABSTRACT;
+  
+Section Public
+  
+  - default:FONT <- 
+  (
+    create "-*-helvetica-bold-r-normal--24-*-*-*-p-*-iso8859-1"
+  );
+  
+  - load <-
+  (
+    + fontname:NATIVE_ARRAY(CHARACTER);
+    + b:UINTEGER_32;
+    + n:INTEGER;
+    
+    n := nb_chars;
+    base := `glGenLists(@n)`:UINTEGER_32;
+
+    fontname := name.to_external;
+    `font = XLoadQueryFont(win.dpy, @fontname)`;
+    (`font`:POINTER = NULL).if {
+      
+      OPENGL.error.send "Error loading font, loading default...";
+      
+      // last chance..
+      `font = XLoadQueryFont(win.dpy,"fixed")`;
+      (`font`:POINTER = NULL).if {
+	OPENGL.fatal_error "Can't load font";
+      };
+    };
+    b := base;
+    `glXUseXFont(font->fid, 32, @n, @b)`;// start at char 32 -> build n display lists
+    `XFreeFont(win.dpy, font)`;
+  );
+  
diff --git a/lib/unstable/opengl/framework/unix/keycode.li b/lib/unstable/opengl/framework/unix/keycode.li
new file mode 100644
index 0000000..96d842f
--- /dev/null
+++ b/lib/unstable/opengl/framework/unix/keycode.li
@@ -0,0 +1,144 @@
+///////////////////////////////////////////////////////////////////////////////
+//                           Lisaac-SDL Library                              //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := KEYCODE;
+  - comment  := "X11 key mapping";
+  
+Section Inherit
+  
+  - parent_keycode: Expanded ABSTRACT_KEYCODE;
+  
+Section Public
+   
+  - make <-
+  (
+    keys := HASHED_DICTIONARY(INTEGER,INTEGER).create;
+ 
+    bind k_backspace to (`XK_BackSpace`:INTEGER);
+    bind k_tab to (`XK_Tab`:INTEGER);
+   // bind k_clear to (`VK_CLEAR`:INTEGER); ???
+    bind k_return to (`XK_Return`:INTEGER);
+    bind k_pause to (`XK_Pause`:INTEGER); 
+    bind k_escape to (`XK_Escape`:INTEGER);
+    bind k_space to (`XK_space`:INTEGER);
+    
+    //
+    // key 33 to 127:  ASCII code ???
+    //
+    
+    bind k_delete to (`XK_Delete`:INTEGER);
+    
+    bind kp_0 to (`XK_KP_0`:INTEGER);
+    bind kp_1 to (`XK_KP_1`:INTEGER);
+    bind kp_2 to (`XK_KP_2`:INTEGER);
+    bind kp_3 to (`XK_KP_3`:INTEGER);
+    bind kp_4 to (`XK_KP_4`:INTEGER);
+    bind kp_5 to (`XK_KP_5`:INTEGER);
+    bind kp_6 to (`XK_KP_6`:INTEGER);
+    bind kp_7 to (`XK_KP_7`:INTEGER);
+    bind kp_8 to (`XK_KP_8`:INTEGER);
+    bind kp_9 to (`XK_KP_9`:INTEGER);
+    //bind kp_period to (`SDLK_KP_PERIOD`:INTEGER);
+    bind kp_divide to (`XK_KP_Divide`:INTEGER);
+    bind kp_multiply to (`XK_KP_Multiply`:INTEGER);
+    bind kp_minus to (`XK_KP_Subtract`:INTEGER);
+    bind kp_plus to (`XK_KP_Add`:INTEGER);
+    // bind kp_enter to (`SDLK_KP_ENTER`:INTEGER);
+    //bind kp_equals to (`SDLK_KP_EQUALS`:INTEGER);
+    
+    bind k_up to (`XK_Up`:INTEGER);
+    bind k_down to (`XK_Down`:INTEGER);
+    bind k_right to (`XK_Right`:INTEGER);
+    bind k_left to (`XK_Left`:INTEGER);
+    bind k_insert to (`XK_Insert`:INTEGER);
+    bind k_home to (`XK_Home`:INTEGER);
+    bind k_end to (`XK_End`:INTEGER);
+    //bind k_pageup to (`VK_PRIOR`:INTEGER);
+    //bind k_pagedown to (`VK_NEXT`:INTEGER);
+    
+    bind k_f1 to (`XK_F1`:INTEGER);
+    bind k_f2 to (`XK_F2`:INTEGER);
+    bind k_f3 to (`XK_F3`:INTEGER);
+    bind k_f4 to (`XK_F4`:INTEGER);
+    bind k_f5 to (`XK_F5`:INTEGER);
+    bind k_f6 to (`XK_F6`:INTEGER);
+    bind k_f7 to (`XK_F7`:INTEGER);
+    bind k_f8 to (`XK_F8`:INTEGER);
+    bind k_f9 to (`XK_F9`:INTEGER);
+    bind k_f10 to (`XK_F10`:INTEGER);
+    bind k_f11 to (`XK_F11`:INTEGER);
+    bind k_f12 to (`XK_F12`:INTEGER);
+    bind k_f13 to (`XK_F13`:INTEGER);
+    bind k_f14 to (`XK_F14`:INTEGER);
+    bind k_f15 to (`XK_F15`:INTEGER);
+    
+    //bind k_numlock to (`VK_NUMLOCK`:INTEGER);
+    //bind k_capslock to (`VK_CAPITAL`:INTEGER);
+    //bind k_scrollock to (`VK_SCROLL`:INTEGER);
+    bind k_rshift to (`XK_Shift_R`:INTEGER);
+    bind k_lshift to (`XK_Shift_L`:INTEGER);
+    bind k_rctrl to (`XK_Control_R`:INTEGER);
+    bind k_lctrl to (`XK_Control_L`:INTEGER);
+   ////////////////// bind k_ralt to (`SDLK_LALT`:INTEGER); ///////
+    //bind k_lalt to (`VK_MENU`:INTEGER);
+    
+    //bind k_rmeta to (`SDLK_RMETA`:INTEGER);
+    //bind k_lmeta to (`SDLK_LMETA`:INTEGER);
+    //bind k_lsuper to (`SDLK_LSUPER`:INTEGER);
+    //bind k_rsuper to (`SDLK_RSUPER`:INTEGER);
+    //bind k_mode to (`SDLK_MODE`:INTEGER);
+    //bind k_compose to (`SDLK_COMPOSE`:INTEGER);
+    
+    //bind k_help to (`VK_HELP`:INTEGER);
+    //bind k_print to (`VK_PRINT`:INTEGER);
+    //bind k_sysreq to (`SDLK_SYSREQ`:INTEGER);
+    //bind k_break to (`SDLK_BREAK`:INTEGER);
+    //bind k_menu to (`VK_MENU`:INTEGER); 
+    //bind k_power to (`SDLK_POWER`:INTEGER);
+    //bind k_euro to (`SDLK_EURO`:INTEGER);
+    //bind k_undo to (`SDLK_UNDO`:INTEGER);
+  );
+  
+  - get_key key:INTEGER :INTEGER <-
+  (
+    + result:INTEGER;
+    
+    keys.fast_has key.if {
+      result := keys.fast_at key;
+    } else {
+      result := `*keybuf`:INTEGER;// conversions...
+      result.in_range ('A'.to_integer) to ('Z'.to_integer).if {
+	result := result - 'A'.to_integer + 'a'.to_integer;
+      }.elseif {result.in_range 1 to 26} then {
+	result := result + 'a'.to_integer - 1;
+      };
+    };   
+    result
+  );
+  
+Section Private
+  
+  - bind key1:INTEGER to key2:INTEGER <-
+  (
+    keys.fast_put key2 to key1; // add and put to not work
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/framework/unix/opengl.li b/lib/unstable/opengl/framework/unix/opengl.li
new file mode 100644
index 0000000..4f6763c
--- /dev/null
+++ b/lib/unstable/opengl/framework/unix/opengl.li
@@ -0,0 +1,305 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := OPENGL;
+  
+  - lip  <-
+  (
+    add_lib " -lGL -lGLU -lXxf86vm ";
+  );
+  
+  - external :=   
+  `#include <GL/glx.h>
+  #include <GL/gl.h>
+  #include <GL/glu.h>
+  #include <X11/Xlib.h>
+  #include <X11/keysym.h>
+  #include <X11/extensions/xf86vmode.h>
+  #include <sys/time.h>
+  
+  #define GPA(funcname)  glXGetProcAddressARB(funcname);
+  
+  struct glx_window_t
+  {
+    Display               *dpy;
+    int                    screen;
+    Window                 win;
+    GLXContext             context;
+    XSetWindowAttributes   attributes;
+    
+    XF86VidModeModeInfo deskMode;   
+    XVisualInfo *vi;
+  };
+  
+  struct glx_window_t   win;
+  XF86VidModeModeInfo **modes;
+  int  numModes, bestMode;
+  int vidModeMajorVersion, vidModeMinorVersion;
+  Atom wmDelete;
+  
+  XEvent event;
+  
+  static struct timeval start, now, tv; 
+  
+  static int attribs[32];
+  `;
+  
+Section Inherit
+  
+  - parent_opengl_abstract:OPENGL_ABSTRACT := OPENGL_ABSTRACT;
+  
+Section Public
+  
+  - swap_buffers <-
+  // post rendering
+  (
+    // flip double buffer
+    `glXSwapBuffers (win.dpy, win.win)`;
+  );
+  
+Section Public  
+  
+  - make (w,h:INTEGER) <-
+  (
+    do_make (w,h) title "OpenGL application";
+    SCENE.set_renderer Self; // make Self current
+  );
+  
+  - make (w,h:INTEGER) title s:ABSTRACT_STRING <-
+  (
+    do_make (w,h) title s;	
+    SCENE.set_renderer Self; // make Self current
+  );
+  
+  - do_make (w,h:INTEGER) title s:ABSTRACT_STRING <-
+  (
+    + nb_mode,n,size:INTEGER;
+    + title:NATIVE_ARRAY(CHARACTER);	
+    
+    width := w;
+    height := h;
+    viewport := VIEWPORT.create (0,0,w,h);
+    
+    // Creation fenetre X:
+    `win.dpy = XOpenDisplay (NULL)`;
+    `win.screen = DefaultScreen (win.dpy)`;
+    `bestMode = 0`;
+    
+    `XF86VidModeQueryVersion(win.dpy, &vidModeMajorVersion,&vidModeMinorVersion)`;
+    
+    `XF86VidModeGetAllModeLines (win.dpy, win.screen, &numModes, &modes)`;
+    
+    `win.deskMode = *modes[0];`;
+    
+    // make OpenGL attributes list
+    `attribs[0] = GLX_RGBA`;
+    `attribs[1] = GLX_RED_SIZE`;
+    size := red_size;
+    `attribs[2] = @size`;
+    `attribs[3] = GLX_GREEN_SIZE`;
+    size := green_size;
+    `attribs[4] = @size`;
+    `attribs[5] = GLX_BLUE_SIZE`;
+    size := blue_size;
+    `attribs[6] = @size`;
+    
+    n := 7;
+    has_alpha.if {
+      `attribs[@n] = GLX_ALPHA_SIZE`;
+      n := n+1;
+      size := alpha_size;
+      `attribs[@n] = @size`;
+      n := n+1;
+    };      
+    has_doublebuffer.if {
+      `attribs[@n] = GLX_DOUBLEBUFFER`;
+      n := n+1;
+    };
+    has_depth_buffer.if {
+      `attribs[@n] = GLX_DEPTH_SIZE`;
+      n := n+1;
+      
+      size := depth_size;
+      `attribs[@n] = @size`;
+      n := n+1;
+    };
+    has_stencil_buffer.if {
+      `attribs[@n] = GLX_STENCIL_SIZE`;
+      n := n+1;
+      
+      size := stencil_size;
+      `attribs[@n] = @size`;
+      n := n+1;
+    };
+    has_accum_buffer.if {
+      `attribs[@n] = GLX_ACCUM_RED_SIZE`;
+      n := n+1;
+      size := accum_red_size;
+      `attribs[@n] = @size`;
+      n := n+1;
+      
+      `attribs[@n] = GLX_ACCUM_GREEN_SIZE`;
+      n := n+1;
+      size := accum_green_size;
+      `attribs[@n] = @size`;
+      n := n+1; 
+      
+      `attribs[@n] = GLX_ACCUM_BLUE_SIZE`;
+      n := n+1;
+      size := accum_blue_size;
+      `attribs[@n] = @size`;
+      n := n+1;
+      
+      has_alpha.if {
+        `attribs[@n] = GLX_ACCUM_ALPHA_SIZE`;
+        n := n+1;
+        size := accum_alpha_size;
+        `attribs[@n] = @size`;
+        n := n+1;
+      };
+    };
+    // terminate list
+    `attribs[@n] = (int) None`;
+    
+    `win.vi = glXChooseVisual (win.dpy, win.screen, attribs)`;
+    (`win.vi`:POINTER = NULL).if {
+      fatal_error "Failed to set XVisual";
+    };
+    
+    nb_mode := `numModes`:INTEGER;
+    0.to (nb_mode-1) do { i:INTEGER;
+      `
+      if ((modes[@i]->hdisplay == @w) &&
+      (modes[@i]->vdisplay == @h))
+      {
+        bestMode = @i;
+      }
+      `;
+    };
+    
+    // create OpenGL context
+    `win.context = glXCreateContext (win.dpy, win.vi, 0, GL_TRUE)`;
+    (`win.context`:POINTER = NULL).if {
+      `XDestroyWindow (win.dpy, win.win)`;
+      `XCloseDisplay (win.dpy)`;
+      
+      fatal_error "failed to create a rendering context";
+    };
+    
+    // create a color map
+    `win.attributes.colormap = XCreateColormap (win.dpy, RootWindow (win.dpy, win.vi->screen),win.vi->visual, AllocNone)`;
+    `win.attributes.border_pixel = 0`;
+    //`win.attributes.background_pixel = 0`;
+    
+    is_fullscreen.if {
+      `XF86VidModeSwitchToMode (win.dpy, win.screen, modes[bestMode])`;
+      `XF86VidModeSetViewPort (win.dpy, win.screen, 0, 0)`;
+      width := `modes[bestMode]->hdisplay`:INTEGER;
+      height := `modes[bestMode]->vdisplay`:INTEGER;
+      `XFree (modes)`;
+      
+      // create fullscreen window
+      `win.attributes.override_redirect = 1`;
+      `win.attributes.event_mask = ExposureMask | KeyPressMask| ButtonPressMask|ButtonReleaseMask | PointerMotionMask | StructureNotifyMask`;
+      
+      `win.win = XCreateWindow (win.dpy, RootWindow (win.dpy, win.vi->screen),0, 0, @w, @h, 0, win.vi->depth, InputOutput, win.vi->visual,CWBorderPixel | CWColormap | CWEventMask | CWOverrideRedirect, &win.attributes)`;
+      
+      // warp mouse at center of the screen
+      `XWarpPointer (win.dpy, None, win.win, 0, 0, 0, 0, @w / 2, @h / 2)`;
+      `XMapRaised (win.dpy, win.win)`;
+      `XGrabKeyboard (win.dpy, win.win, True, GrabModeAsync,GrabModeAsync, CurrentTime)`;
+      
+      `XGrabPointer (win.dpy, win.win, True, ButtonPressMask,GrabModeAsync, GrabModeAsync, win.win, None, CurrentTime)`;      
+    } else {
+      // window mode
+      `win.attributes.event_mask = ExposureMask | KeyPressMask | ButtonPressMask|ButtonReleaseMask | PointerMotionMask | StructureNotifyMask`;
+      
+     // `win.attributes.event_mask |= ClientMessage | KeyReleaseMask`;
+
+      // create simple window
+      `win.win = XCreateWindow (win.dpy, RootWindow (win.dpy, win.vi->screen),0, 0, @w, @h, 0, win.vi->depth, InputOutput, win.vi->visual,CWBorderPixel | CWColormap | CWEventMask, &win.attributes)`;
+      
+      `#ifndef GLBINDING__USE_GUI 
+      // unbind action of the close window button
+      wmDelete = XInternAtom(win.dpy, "WM_DELETE_WINDOW", True);
+      XSetWMProtocols(win.dpy, win.win, &wmDelete, 1);
+      #endif
+      `;
+      title := s.to_external;
+      `XSetStandardProperties(win.dpy, win.win, @title, @title, None, NULL, 0, NULL)`;
+      `XMapRaised (win.dpy, win.win)`;
+    };
+    // `int x,y,borderDummy`;
+    //`Window winDummy`;
+    `glXMakeCurrent (win.dpy, win.win, win.context)`;
+    // `XGetGeometry(win.dpy, win.win, &winDummy, &x, &y,&x, &y, &borderDummy, &x)`;
+    
+    (`glXIsDirect (win.dpy, win.context)`:INTEGER = 0).if {
+      fatal_error "no direct rendering possible\n";
+    };
+    // Title window:
+    // title := s.to_external;
+    //`XStoreName(win.dpy,win.win, at title)`;  
+    
+    /// for GUI compatibility ///
+    `#ifdef GLBINDING__USE_GUI
+    display = win.dpy;	
+    window = win.win;
+    #endif
+    `;
+    ///
+    
+    initialize;
+    resize (width,height);
+  );
+  
+  - resize (w,h:INTEGER) <-
+  (     
+    (h != 0).if {
+      width := w;
+      height := h;
+      
+      viewport.make (0, 0, w, h);
+      //
+      reshape.on_resize (w,h);
+      //
+    };
+  );
+  
+Section Public
+  - close <-
+  (   
+    // release context
+    (`win.context`:POINTER != NULL).if {
+      `glXMakeCurrent (win.dpy, None, NULL)`;
+      `glXDestroyContext (win.dpy, win.context)`;
+      `win.context = NULL`;
+    };
+    is_fullscreen.if {
+      `XF86VidModeSwitchToMode (win.dpy, win.screen, &win.deskMode)`;
+      `XF86VidModeSetViewPort (win.dpy, win.screen, 0, 0)`;
+    };
+    `XDestroyWindow (win.dpy, win.win)`;
+    `XCloseDisplay (win.dpy)`;
+  );
+  
diff --git a/lib/unstable/opengl/framework/unix/platform.li b/lib/unstable/opengl/framework/unix/platform.li
new file mode 100644
index 0000000..5089fe8
--- /dev/null
+++ b/lib/unstable/opengl/framework/unix/platform.li
@@ -0,0 +1,89 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := PLATFORM;
+  - comment  := "Platform dependant utility toolkit";
+  
+  - external := `
+  #include <sys/time.h>
+static struct timeval start, now, tv;
+  `;
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public  
+  
+  //
+  // Time handling.
+  //
+
+  - init_time <-
+  (
+     `gettimeofday(&start, NULL)`;
+  );
+  
+  - get_current_time:REAL_32 <-
+  (
+    `gettimeofday(&now, NULL)`;
+    `(float)(now.tv_sec - start.tv_sec) + 0.000001f * (float)(now.tv_usec - start.tv_usec)`:REAL_32
+  );
+
+  - get_milliseconds:UINTEGER_32 <-
+  (
+    `gettimeofday(&now, NULL)`;
+    `( now.tv_sec - start.tv_sec )*1000 + ( now.tv_usec - start.tv_usec )/1000`:UINTEGER_32
+  );
+
+  - delay ms:UINTEGER_32 <- 
+  (   
+    `tv.tv_sec = @ms/1000`;
+    `tv.tv_usec = (@ms%1000)*1000`;
+    `select(0, NULL, NULL, NULL, &tv)`;
+  );
+
+  - init_random <-
+  (
+    `srand((unsigned)time(NULL))`;
+  );
+  - random:INTEGER <-
+  (
+    `rand()`:INTEGER
+  );
+
+  - random_ratio:REAL_32 <-
+  (
+    `rand() / (float)(RAND_MAX)`:REAL_32
+  );
+  
+  
+  - frand:REAL_32 <- // 0 to 1
+  (
+    `(rand()&32767) * (1.0/32767)`:REAL_32
+  );
+  
+  - crand <- // -1 to 1
+  (
+    `(rand()&32767)* (2.0/32767) - 1`:REAL_32
+  );
diff --git a/lib/unstable/opengl/framework/windows/framework_event.li b/lib/unstable/opengl/framework/windows/framework_event.li
new file mode 100644
index 0000000..932d5b5
--- /dev/null
+++ b/lib/unstable/opengl/framework/windows/framework_event.li
@@ -0,0 +1,206 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := FRAMEWORK_EVENT;
+  
+  - comment  := "GL Framework: handle input";
+  
+  - external := 
+  `
+  POINT p;
+  
+#ifndef GLBINDING__USE_GUI
+  extern void resize (int,int); // pour l'instant
+  extern void event_keydown (int,int);
+  extern void event_keyup (int,int);
+  extern int event_mousemove (int,int);
+  extern int event_mouseclick (int);
+  
+  MSG   msg;
+
+  
+  LRESULT CALLBACK MainWndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
+  { 
+    LONG    lRet = 0; 
+    PAINTSTRUCT    ps;
+    
+    
+    switch (uMsg)
+    {
+      case WM_SIZE:
+      if (!fullscreen)
+      // resize only in windowed mode
+      {
+	resize (LOWORD(lParam),HIWORD(lParam));
+	GetClientRect(win.hwnd, &win.rect);
+      }
+      break;
+      case WM_KEYDOWN: 
+      
+      event_keydown (wParam, lParam);
+     
+      break;
+      case WM_KEYUP:
+  
+      event_keyup (wParam, lParam);
+      break;
+      // Mouse
+      case WM_MOUSEMOVE: 
+      
+      event_mousemove ((short)LOWORD(lParam), (short)HIWORD(lParam));
+
+      break;
+      
+      case WM_LBUTTONDOWN:
+      case WM_RBUTTONDOWN:
+      
+      event_mouseclick ((((wParam & MK_LBUTTON) != 0) << 1) | ((wParam & MK_RBUTTON) != 0));
+      
+      break;
+      
+      case WM_PAINT:
+      BeginPaint(win.hwnd, &ps);
+      EndPaint(win.hwnd, &ps);
+      break;
+      
+      case WM_CLOSE:
+      PostQuitMessage(0);
+      break;
+      
+      default:
+      return DefWindowProc(hwnd, uMsg, wParam, lParam);
+    }
+    return 0;
+  }
+#endif
+`;
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section External
+  
+  - event_keydown (wparam,lparam:INTEGER) <-
+  (
+    + k:INTEGER;
+    
+    k := KEYCODE.get_key wparam;
+    keys.put TRUE to k;
+    FRAMEWORK.on_keydown k;
+  );
+  
+  - event_keyup (wparam,lparam:INTEGER) <-
+  (
+    + k:INTEGER;
+    
+    k := KEYCODE.get_key wparam;
+    keys.put FALSE to k;
+    FRAMEWORK.on_keyup k;
+  );
+  
+  - event_mousemove (x,y:INTEGER) :INTEGER <-
+  (
+    mouse_x := x;
+    mouse_y := y;
+ 
+    FRAMEWORK.on_mousemove (x,y);
+    `1`:(INTEGER) // hack to make the slot persistent
+  );
+  
+  - event_mouseclick b:INTEGER :INTEGER <-
+  (
+    FRAMEWORK.on_mouseclick b;
+    `1`:(INTEGER) // hack to make the slot persistent
+  );
+  
+Section Public
+  
+  - make <-
+  (
+    // Remove this after compiler has been fixed...
+    event_keydown (0,0);
+    event_keyup (0,0);
+    event_mousemove (0,0);
+    event_mouseclick 0;
+  );
+  
+  - keys:FAST_ARRAY(BOOLEAN) := 
+  ( + result:FAST_ARRAY(BOOLEAN);
+    
+    result := FAST_ARRAY(BOOLEAN).create 256;
+    result.set_all_with FALSE;
+    result
+  );
+  
+  - mouse_x:INTEGER;
+  - mouse_y:INTEGER;
+  
+  // hack for windows
+  - get_mouse_pos:(INTEGER,INTEGER) <- 
+  (
+    `GetCursorPos(&p)`;
+    (`p.x`:INTEGER, `p.y`:INTEGER)
+  );
+  
+  - update:BOOLEAN <-
+  ( 
+    + go:BOOLEAN;
+
+    go := TRUE;
+    {go && {`PeekMessage (&msg, NULL, 0, 0, PM_REMOVE)` != 0}}.while_do {
+      (`msg.message`:INTEGER = `WM_QUIT`:INTEGER).if {
+        //
+        FRAMEWORK.stop;
+        //
+	go := FALSE;	
+      } else {
+	`TranslateMessage (&msg)`;
+	`DispatchMessage (&msg)`;
+      };
+    };
+    go
+  );
+  
+  - keydown k:INTEGER :BOOLEAN <-
+  (
+    keys.item k
+  );
+  
+  - keyup k:INTEGER :BOOLEAN <-
+  (
+    ! keys.item k
+  );
+  
+  - set_up k:INTEGER <-
+  (
+    keys.put FALSE to k;
+  );
+  
+  - warp_mouse (x,y:INTEGER) <-
+  (
+    mouse_x := x;
+    mouse_y := y;
+    `SetCursorPos (@x, at y)`;
+  );
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/framework/windows/gl_font.li b/lib/unstable/opengl/framework/windows/gl_font.li
new file mode 100644
index 0000000..06e69d3
--- /dev/null
+++ b/lib/unstable/opengl/framework/windows/gl_font.li
@@ -0,0 +1,73 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_FONT;
+ 
+  - comment  := "Win32 - OpenGl rendered font";
+  
+  - external := `static HFONT  hFont,hOldFont;`;
+
+Section Inherit
+  
+  + parent_font_abstract:Expanded GL_FONT_ABSTRACT;
+  
+Section Public
+  
+  - default:FONT <- 
+  (
+    create "Arial"
+  );
+  
+  - load <-
+  (
+    + fontname:NATIVE_ARRAY(CHARACTER);
+    + b,h:UINTEGER_32;
+    + n:INTEGER;
+    
+    n := nb_chars;
+    base := `glGenLists(@n)`:UINTEGER_32;
+    
+    h := font_height;
+    fontname := name.to_external;
+    `hFont = CreateFont(@h,0,0,0,FW_BOLD,
+      FALSE,// italic
+      FALSE,// underlined
+      FALSE,// strikeout
+      ANSI_CHARSET,OUT_TT_PRECIS,CLIP_DEFAULT_PRECIS,
+      ANTIALIASED_QUALITY, // font quality
+      FF_DONTCARE|DEFAULT_PITCH,
+      @fontname);
+    `;
+    // select font & save old font to avoid memory leak
+    `hOldFont = (HFONT)SelectObject(win.hdc, hFont)`;
+    
+    // cree des bitmaps a partir de la fonte
+    b := base;
+    `wglUseFontBitmaps(win.hdc, 32, @n, @b)`;
+  );
+  
+  - unload <-
+  (
+    parent_font_abstract.unload;
+    `SelectObject(win.hdc, hOldFont)`;
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/framework/windows/keycode.li b/lib/unstable/opengl/framework/windows/keycode.li
new file mode 100644
index 0000000..3fffad8
--- /dev/null
+++ b/lib/unstable/opengl/framework/windows/keycode.li
@@ -0,0 +1,132 @@
+///////////////////////////////////////////////////////////////////////////////
+//                           Lisaac-SDL Library                              //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := KEYCODE;
+  - comment  := "win32 key mapping";
+  
+Section Inherit
+  
+  - parent_keycode: Expanded ABSTRACT_KEYCODE;
+  
+Section Public
+  
+  - make <-
+  (
+    keys := HASHED_DICTIONARY(INTEGER,INTEGER).create;
+    
+    keys.add k_backspace to (`VK_BACK`:INTEGER);
+    keys.add k_tab to (`VK_TAB`:INTEGER);
+    keys.add k_clear to (`VK_CLEAR`:INTEGER);
+    keys.add k_return to (`VK_RETURN`:INTEGER);
+    keys.add k_pause to (`VK_PAUSE`:INTEGER);
+    keys.add k_escape to (`VK_ESCAPE`:INTEGER);
+    keys.add k_space to (`VK_SPACE`:INTEGER);
+    
+    //
+    // key 33 to 127: win32 uses ASCII code
+    //
+    
+    keys.add k_delete to (`VK_DELETE`:INTEGER);
+    
+    keys.add kp_0 to (`VK_NUMPAD0`:INTEGER);
+    keys.add kp_1 to (`VK_NUMPAD1`:INTEGER);
+    keys.add kp_2 to (`VK_NUMPAD2`:INTEGER);
+    keys.add kp_3 to (`VK_NUMPAD3`:INTEGER);
+    keys.add kp_4 to (`VK_NUMPAD4`:INTEGER);
+    keys.add kp_5 to (`VK_NUMPAD5`:INTEGER);
+    keys.add kp_6 to (`VK_NUMPAD6`:INTEGER);
+    keys.add kp_7 to (`VK_NUMPAD7`:INTEGER);
+    keys.add kp_8 to (`VK_NUMPAD8`:INTEGER);
+    keys.add kp_9 to (`VK_NUMPAD9`:INTEGER);
+    //keys.add kp_period to (`SDLK_KP_PERIOD`:INTEGER);
+    keys.add kp_divide to (`VK_DIVIDE`:INTEGER);
+    keys.add kp_multiply to (`VK_MULTIPLY`:INTEGER);
+    keys.add kp_minus to (`VK_SUBTRACT`:INTEGER);
+    keys.add kp_plus to (`VK_ADD`:INTEGER);
+    // keys.add kp_enter to (`SDLK_KP_ENTER`:INTEGER);
+    //keys.add kp_equals to (`SDLK_KP_EQUALS`:INTEGER);
+    
+    keys.add k_up to (`VK_UP`:INTEGER);
+    keys.add k_down to (`VK_DOWN`:INTEGER);
+    keys.add k_right to (`VK_RIGHT`:INTEGER);
+    keys.add k_left to (`VK_LEFT`:INTEGER);
+    keys.add k_insert to (`VK_INSERT`:INTEGER);
+    keys.add k_home to (`VK_HOME`:INTEGER);
+    keys.add k_end to (`VK_END`:INTEGER);
+    keys.add k_pageup to (`VK_PRIOR`:INTEGER);
+    keys.add k_pagedown to (`VK_NEXT`:INTEGER);
+    
+    keys.add k_f1 to (`VK_F1`:INTEGER);
+    keys.add k_f2 to (`VK_F2`:INTEGER);
+    keys.add k_f3 to (`VK_F3`:INTEGER);
+    keys.add k_f4 to (`VK_F4`:INTEGER);
+    keys.add k_f5 to (`VK_F5`:INTEGER);
+    keys.add k_f6 to (`VK_F6`:INTEGER);
+    keys.add k_f7 to (`VK_F7`:INTEGER);
+    keys.add k_f8 to (`VK_F8`:INTEGER);
+    keys.add k_f9 to (`VK_F9`:INTEGER);
+    keys.add k_f10 to (`VK_F10`:INTEGER);
+    keys.add k_f11 to (`VK_F11`:INTEGER);
+    keys.add k_f12 to (`VK_F12`:INTEGER);
+    keys.add k_f13 to (`VK_F13`:INTEGER);
+    keys.add k_f14 to (`VK_F14`:INTEGER);
+    keys.add k_f15 to (`VK_F15`:INTEGER);
+    
+    keys.add k_numlock to (`VK_NUMLOCK`:INTEGER);
+    keys.add k_capslock to (`VK_CAPITAL`:INTEGER);
+    keys.add k_scrollock to (`VK_SCROLL`:INTEGER);
+    keys.add k_rshift to (`VK_RSHIFT`:INTEGER);
+    keys.add k_lshift to (`VK_LSHIFT`:INTEGER);
+    keys.add k_rctrl to (`VK_RCONTROL`:INTEGER);
+    keys.add k_lctrl to (`VK_LCONTROL`:INTEGER);
+   ////////////////// keys.add k_ralt to (`SDLK_LALT`:INTEGER); ///////
+    keys.add k_lalt to (`VK_MENU`:INTEGER);
+    
+    //keys.add k_rmeta to (`SDLK_RMETA`:INTEGER);
+    //keys.add k_lmeta to (`SDLK_LMETA`:INTEGER);
+    //keys.add k_lsuper to (`SDLK_LSUPER`:INTEGER);
+    //keys.add k_rsuper to (`SDLK_RSUPER`:INTEGER);
+    //keys.add k_mode to (`SDLK_MODE`:INTEGER);
+    //keys.add k_compose to (`SDLK_COMPOSE`:INTEGER);
+    
+    keys.add k_help to (`VK_HELP`:INTEGER);
+    keys.add k_print to (`VK_PRINT`:INTEGER);
+    //keys.add k_sysreq to (`SDLK_SYSREQ`:INTEGER);
+    //keys.add k_break to (`SDLK_BREAK`:INTEGER);
+    //keys.add k_menu to (`VK_MENU`:INTEGER); 
+    //keys.add k_power to (`SDLK_POWER`:INTEGER);
+    //keys.add k_euro to (`SDLK_EURO`:INTEGER);
+    //keys.add k_undo to (`SDLK_UNDO`:INTEGER);
+  );
+  
+  - get_key key:INTEGER :INTEGER <-
+  (
+    + result:INTEGER;
+    
+    keys.fast_has key.if {
+      result := keys.fast_at key;
+    } else {
+      result := key;
+    };    
+    result
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/framework/windows/opengl.li b/lib/unstable/opengl/framework/windows/opengl.li
new file mode 100644
index 0000000..78186db
--- /dev/null
+++ b/lib/unstable/opengl/framework/windows/opengl.li
@@ -0,0 +1,269 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := OPENGL;
+  
+  - external :=   
+  `#include <windows.h>
+  #include <GL/gl.h>
+  #include <GL/glu.h>
+  
+  #define GPA(funcname)  wglGetProcAddress(funcname);
+  
+  struct glwin_window_t
+  {
+    HWND   hwnd;  // window handle
+    RECT   rect;  // window rect
+    HDC    hdc;   // device gdi
+    HGLRC  hrc;   // device ogl
+    
+    HINSTANCE  instance;
+    WNDCLASS   class;
+  };
+  
+  struct glwin_window_t   win;
+  DEVMODE   settings;
+  int  fullscreen;
+  
+  PIXELFORMATDESCRIPTOR pfd; 
+  int pixelformat; 
+  /*
+  int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
+  LPSTR lpCmdLine, int nCmdShow)
+  {
+    win.instance = hInstance;
+    main (0, NULL);
+    return 0;
+  }*/
+`;
+  
+Section Inherit
+  
+  - parent_opengl_abstract:OPENGL_ABSTRACT := OPENGL_ABSTRACT;
+   
+Section Public
+  
+  - swap_buffers <-
+  // post rendering
+  (
+    // flip double buffer
+    `SwapBuffers (win.hdc)`;
+  );
+  
+Section Public  
+  
+  - auto_make <-
+  (
+    make (800,600);
+  );
+  
+  - make (w,h:INTEGER) <-
+  (
+    do_make (w,h) title "OpenGL application";
+    SCENE.set_renderer Self; // make Self current
+  );
+  
+  - make (w,h:INTEGER) title s:ABSTRACT_STRING <-
+  ( 
+    do_make (w,h) title s;
+    SCENE.set_renderer Self; // make Self current
+  );
+
+  - do_make (w,h:INTEGER) title s:ABSTRACT_STRING <- 
+  (    
+    + style,size:INTEGER;
+    + wintitle:NATIVE_ARRAY(CHARACTER); 
+    + b:BOOLEAN;
+    
+    width := w;
+    height := h;
+    viewport := VIEWPORT.create (0,0,w,h);
+    b := is_fullscreen;
+     
+    // Creation fenetre: 
+    `fullscreen = @b;
+    
+    memset(&win.class, 0, sizeof(WNDCLASS));
+    win.class.style = CS_HREDRAW | CS_VREDRAW;
+    win.class.lpfnWndProc = MainWndProc;
+    win.class.hInstance = win.instance;
+    win.class.hIcon = LoadIcon(NULL, IDI_APPLICATION);
+    win.class.hCursor = LoadCursor(NULL, IDC_ARROW);
+    win.class.hbrBackground = (HBRUSH) (COLOR_WINDOW+1);
+    win.class.lpszClassName = "IsaacClass";
+    
+    RegisterClass(&win.class);`;
+    
+    is_fullscreen.if {
+      style := `WS_POPUP | WS_CLIPSIBLINGS | WS_CLIPCHILDREN`:INTEGER;
+      
+      gl_fullscreen;
+      //`ShowCursor(FALSE)`;
+    } else {
+      // simple window
+      style := `WS_OVERLAPPEDWINDOW | WS_CLIPSIBLINGS | WS_CLIPCHILDREN`:INTEGER;
+    };
+    
+    `win.rect.left = 0;
+    win.rect.right = @w;
+    win.rect.top = 0;
+    win.rect.bottom = @h;
+    
+    AdjustWindowRect (&win.rect, @style, 0);`;
+    
+    // create window
+    wintitle := s.to_external;
+    `win.hwnd = CreateWindow("IsaacClass", @wintitle, @style, 0, 0, win.rect.right  - win.rect.left, win.rect.bottom - win.rect.top, NULL, NULL, win.instance, NULL);`;
+    (`win.hwnd`:INTEGER = 0).if {
+      fatal_error "failed to create window";
+    };
+     `ShowWindow (win.hwnd, SW_SHOWNORMAL);
+     UpdateWindow (win.hwnd);
+    SetFocus (win.hwnd);
+    
+    win.hdc = GetDC (win.hwnd);`;
+
+    // choose pixel format compatible for OpenGL
+    `pfd.nSize = sizeof(PIXELFORMATDESCRIPTOR);
+    pfd.nVersion = 1;
+    pfd.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL;`;
+    has_doublebuffer.if {
+      `pfd.dwFlags |= PFD_DOUBLEBUFFER`;
+    };
+    `pfd.dwLayerMask = PFD_MAIN_PLANE;
+    pfd.iPixelType = PFD_TYPE_RGBA;`; // PFD_TYPE_COLORINDEX;
+    
+    size := buffer_size;
+    `pfd.cColorBits = @size`;
+    
+    has_depth_buffer.if {
+      size := depth_size;
+      `pfd.cDepthBits = @size`;
+    } else {
+      `pfd.cDepthBits = 0`;
+    };
+    has_stencil_buffer.if {
+      size := stencil_size;
+      `pfd.cStencilBits = @size`;
+    } else {
+      `pfd.cStencilBits = 0`;
+    };
+    has_accum_buffer.if {
+      size := accum_red_size;
+      `pfd.cAccumRedBits = @size`;
+      size := accum_green_size;
+      `pfd.cAccumGreenBits = @size`;
+      size := accum_blue_size;
+      `pfd.cAccumBlueBits = @size`; 
+      size := accum_alpha_size;
+      `pfd.cAccumAlphaBits = @size`;
+      size := accum_red_size+accum_green_size+accum_blue_size+accum_alpha_size;
+      `pfd.cAccumBits = @size`;
+    } else {
+      `pfd.cAccumBits = 0`;
+    };
+    size := red_size;
+    `pfd.cRedBits = @size`;
+    size := green_size;
+    `pfd.cGreenBits = @size`;
+    size := blue_size;
+    `pfd.cBlueBits = @size`; 
+    size := alpha_size;
+    `pfd.cAlphaBits = @size`;
+    
+    `pixelformat = ChoosePixelFormat(win.hdc, &pfd);`;
+    (`pixelformat`:INTEGER = 0).if {
+      fatal_error "ChoosePixelFormat failed";
+    };
+    (`SetPixelFormat(win.hdc, pixelformat, &pfd)`:INTEGER = 0).if {
+      fatal_error "SetPixelFormat failed";
+    };
+    
+    `DescribePixelFormat(win.hdc, pixelformat, sizeof(pfd), &pfd)`;
+    
+    // create OpenGL rendering context
+    `win.hrc = wglCreateContext (win.hdc);
+    wglMakeCurrent(win.hdc, win.hrc);
+    `;  
+    
+    initialize;
+    resize (width,height);
+  );
+  
+  - gl_fullscreen <-
+  (
+    + w,h,result:INTEGER;
+    
+    w := width;
+    h := height;
+    
+    `memset(&settings,0,sizeof(settings))`;
+    (`EnumDisplaySettings(NULL,ENUM_CURRENT_SETTINGS,&settings)`:INTEGER = 0).if {
+      fatal_error "failed to display display settings";
+    };
+    `settings.dmPelsWidth = @w;
+    settings.dmPelsHeight = @h;
+    settings.dmFields = DM_BITSPERPEL | DM_PELSWIDTH | DM_PELSHEIGHT;`;
+    
+    result := `ChangeDisplaySettings(&settings,CDS_FULLSCREEN)`:INTEGER;
+    (result != `DISP_CHANGE_SUCCESSFUL`:INTEGER).if {
+      fatal_error "Fullscreen mode not compatible";
+    };
+  );
+  
+Section External
+  
+  - resize (w,h:INTEGER) <-
+  (     
+    (h != 0).if {
+      width := w;
+      height := h;
+      
+      viewport.make (0, 0, w, h);
+      //
+      reshape.on_resize (w,h);
+      //
+    };
+  );
+  
+Section Public
+  
+  - close <-
+  (
+    // release OpenGl context
+    (`win.hrc`:INTEGER != 0).if {
+      `wglMakeCurrent (NULL, NULL)`;
+      `wglDeleteContext (win.hrc)`;
+    };
+    // release gdi context
+    (`win.hdc`:INTEGER != 0).if {
+      `ReleaseDC(win.hwnd, win.hdc)`;
+    };
+    is_fullscreen.if {
+      `ChangeDisplaySettings(NULL,0)`;
+      `ShowCursor(TRUE)`;
+    };
+    `UnregisterClass("IsaacClass", win.instance)`;
+    `PostQuitMessage(0)`;
+  );
+ 
diff --git a/lib/unstable/opengl/framework/windows/platform.li b/lib/unstable/opengl/framework/windows/platform.li
new file mode 100644
index 0000000..8bb3f69
--- /dev/null
+++ b/lib/unstable/opengl/framework/windows/platform.li
@@ -0,0 +1,122 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := PLATFORM;
+  - comment  := "Platform dependant utility toolkit";
+  
+  - external := `
+
+#define WIN32_LEAN_AND_MEAN
+#include <windows.h>
+#include <mmsystem.h>
+
+LARGE_INTEGER freq, count;
+double timer_start;
+  `;
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public  
+  
+  //
+  // Time handling.
+  //
+  
+  - init_time <-
+  (
+    (`QueryPerformanceFrequency(&freq)`:INTEGER = 0).if {
+      `freq.QuadPart = 0`;
+      `timer_start = timeGetTime() / 1000.0f`;
+    } else {
+      `QueryPerformanceCounter(&count)`;
+      `timer_start = (double)(count.QuadPart) / (double) (freq.QuadPart)`;
+    };
+  );
+  
+  - get_milliseconds:UINTEGER_32 <-
+  (
+    (get_current_time * 1000.0).to_uinteger_32 // fixme
+  );
+  
+  - get_current_time:REAL_32 <-
+  ( + result:REAL_32;
+    
+    (`freq.QuadPart`:INTEGER = 0).if {
+      // no performance timer
+      result :=  `(float)(timeGetTime() / 1000.0f - timer_start)`:REAL_32;
+    } else {
+      `QueryPerformanceCounter(&count)`;
+      result := `(float)(((double)(count.QuadPart) / (double)(freq.QuadPart)) - timer_start)`:REAL_32;
+    };
+    result
+  );
+  
+  /*
+  - start_ticks <- 
+  (
+    start := get_ticks;
+  );
+  
+  - get_ticks:UINTEGER_32 <-
+  (
+    now := `timeGetTime()`:UINTEGER_32;
+    (now < start).if {
+      ticks := (`TIME_WRAP_VALUE`:UINTEGER_32 - start) + now;
+    } else {
+      ticks := now - start;
+    };
+    ticks
+  );*/
+  
+  - delay ms:UINTEGER_32 <- 
+  (
+    `Sleep(@ms)`;
+  );
+  
+  - init_random <-
+  (
+    `srand((unsigned)time(NULL))`;
+  );
+  - random:INTEGER <-
+  (
+    `rand()`:INTEGER
+  );
+
+  - random_ratio:REAL_32 <-
+  (
+    `rand() / (float)(RAND_MAX)`:REAL_32
+  );
+  
+  
+  - frand:REAL_32 <- // 0 to 1
+  (
+    `(rand()&32767) * (1.0/32767)`:REAL_32
+  );
+  
+  - crand <- // -1 to 1
+  (
+    `(rand()&32767)* (2.0/32767) - 1`:REAL_32
+  );
+  
diff --git a/lib/unstable/opengl/glspec2li.li b/lib/unstable/opengl/glspec2li.li
new file mode 100644
index 0000000..82ee322
--- /dev/null
+++ b/lib/unstable/opengl/glspec2li.li
@@ -0,0 +1,432 @@
+///////////////////////////////////////////////////////////////////////////////
+//                           Lisaac-OpenGL library                           //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GLSPEC2LI;
+  
+  - comment  := "Convert the GL/gl.h C header file into GL prototype";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - main <-
+  ( + s,buffer:STRING;
+    + p:POINTER;
+    
+    (COMMAND_LINE.count > 1).if {
+      s := STRING.create_from_string (COMMAND_LINE.item 1);
+    } else {
+      "Syntax: glspec2li <gl.h>\n".print;
+    };
+    
+    (s != NULL).if {
+      buffer := STRING.create 2048;
+      
+      buffer.append "// **** file generated by glspec2li ****\n";
+      convert_file s into buffer;
+      
+      p := FS_MIN.open_write "gl.li";
+      (p != NULL).if {
+        FS_MIN.write p with buffer size (buffer.count);
+        FS_MIN.close p;
+      } else {
+        "glspec2li: can't create gl.li\n".print;
+      };
+    };
+  );
+  
+Section Private
+  
+  - source:STRING;
+  
+  
+  - convert_file s:STRING into out:STRING <-
+  (
+    + e:ENTRY;
+    + file:STD_FILE;
+    + buf,type_ret:STRING;
+    + type_arg,name_arg:FAST_ARRAY(STRING);
+    + nb_args:INTEGER;
+    + end:BOOLEAN;
+    
+    e := FILE_SYSTEM.get_entry s;
+    (e != NULL).if {
+      file ?= e;
+      file.open;
+      
+      source := STRING.create (file.size+1);
+      buf := STRING.create 64;
+      
+      file.read source size (file.size);
+      file.close;
+      
+      out.append "Section Header\n\n\
+      \  + name     := GL;\n\
+      \  - comment  := \"OpenGL C Specification\";\n\n\
+      \Section Inherit\n\n\
+      \  - parent_object:OBJECT := OBJECT;\n\n\
+      \Section Public\n\n";
+      
+      //
+      // Read constants.
+      //
+      
+      out.append "//\n// OpenGL constant.\n//\n\n";
+      
+      {
+        (read_symbol "#define").if {
+          read_word;
+          buf.copy last_string;
+          
+          read_word;
+          (last_string.first.is_digit).if {
+            
+            out.append "  - ";
+            buf.to_lower;	    
+            
+            // === some GL lowercased constants have same name with GL functions 
+            out.append "cst_";
+            // ===
+            
+            out.append buf;
+            out.append ":INTEGER <- ";            
+            
+            ((last_string.count > 1) &&
+              {last_string.first = '0'} && 
+            {last_string.item (last_string.lower+1) = 'x'}).if {
+              // convert hexa value: 0xFF -> 0FFh
+              
+              last_string.remove_first 2;
+              last_string.add_first '0';
+              last_string.add_last 'h';
+            };
+            out.append last_string;
+            out.append ";\n";
+          };
+        } else {
+          // skip token
+          read_word;
+        };
+      }.do_until {position >= source.upper}; 
+      
+      //
+      // Read functions.
+      //
+      
+      position := 0;
+      type_ret := STRING.create 16;
+      type_arg := FAST_ARRAY(STRING).create_with_capacity 16;
+      name_arg := FAST_ARRAY(STRING).create_with_capacity 16;
+      0.to 15 do { i:INTEGER;
+        type_arg.add_last (STRING.create 16);
+        name_arg.add_last (STRING.create 16);
+      };
+      
+      out.append "//\n// OpenGL functions.\n//\n\n";
+      
+      {
+        (read_symbol "WINGDIAPI").if {
+          
+          // read return type
+          read_word;
+          (last_string == "const").if {// ignore 'const' keyword
+            read_word;
+          };
+          type_ret.copy (to_lisaac_type last_string);
+          
+          // skip 'APIENTRY' macro
+          read_word; 
+          
+          // read function name
+          read_word;
+          buf.copy last_string;   
+          
+          // emit slot
+          out.append "  - ";
+          out.append (to_lisaac_name buf);
+          
+          // read arguments
+          read_word;
+          nb_args := 0;
+          end := FALSE;
+          
+          (last_string == "(void);").if_false {
+            last_string.remove_first 1; // remove '('
+            
+            {
+              (last_string == "const").if {// ignore 'const' keyword
+                read_word;
+              };
+              
+              // convert to lisaac type
+              type_arg.item nb_args.copy last_string;
+              to_lisaac_type (type_arg.item nb_args);
+              
+              // read arg name
+              read_word;
+              (last_string.first = '*').if {
+                type_arg.item nb_args.copy "POINTER";
+                last_string.remove_first 1; // remove '*'
+              };
+              (last_string.last = ',').if {
+                last_string.remove_last 1; // remove ','
+              } else {
+                last_string.remove_last 2; // remove ');'
+                end := TRUE;
+              };
+              name_arg.item nb_args.copy (to_lisaac_name last_string);
+              
+              (! end).if {
+                read_word;
+              };
+              
+              nb_args := nb_args + 1;
+            }.do_until {end || {nb_args >= 16}};
+          };
+          
+          // emit arguments
+          (nb_args > 0).if {
+            out.append " (";
+            0.to (nb_args-1) do { i:INTEGER;
+              out.append (name_arg.item i);
+              out.append ":";
+              out.append (type_arg.item i);
+              (i < nb_args-1).if {
+                out.append ", ";
+              };
+            };
+            out.append ")";
+          };
+          // emit result type
+          (type_ret == "VOID").if_false {
+            out.append " :";
+            out.append type_ret;
+          };
+          
+          (nb_args > 6).if { // avoid lisaac compiler line counter overflow
+            out.append "\n";
+          };
+          
+          // emit external call
+          out.append " <- `";
+          out.append buf;
+          out.append "(";
+          0.to (nb_args-1) do { i:INTEGER;
+            out.append "@";
+            out.append (name_arg.item i);
+            (i < nb_args-1).if {
+              out.append ",";
+            };
+          };
+          out.append ")`"; 
+          
+          // emit external return
+          (type_ret == "VOID").if_false {
+            out.append ":";
+            out.append type_ret;
+          };
+          out.append ";\n";
+          
+        } else {
+          // skip token
+          read_word;
+        };
+      }.do_until {position >= source.upper};
+    };
+  );
+  
+  - tmp:STRING := STRING.create 32;
+  
+  - to_lisaac_name s:STRING :STRING <-
+  (
+    tmp.clear;
+    s.lower.to (s.upper) do { i:INTEGER;
+      (! s.item i.is_upper).if {
+        tmp.add_last (s.item i);
+      } else {
+        tmp.add_last '_';
+        tmp.add_last (s.item i.to_lower);
+      };
+    };
+    tmp
+  );
+  
+  - to_lisaac_type s:STRING :STRING <-
+  (
+    
+    (s.last == '*').if {
+      s.copy "POINTER";
+    } else {
+      (s == "void").if {
+        s.copy "VOID";
+      }.elseif {s == "GLenum"} then {
+        s.copy "UINTEGER_32";
+      }.elseif {s == "GLboolean"} then {  
+        s.copy "UINTEGER_8";
+      }.elseif {s == "GLbitfield"} then { 
+        s.copy "UINTEGER_32";
+      }.elseif {s == "GLbyte"} then {
+        s.copy "INTEGER_8";
+      }.elseif {s == "GLshort"} then {
+        s.copy "INTEGER_16";
+      }.elseif {s == "GLint"} then {
+        s.copy "INTEGER";
+      }.elseif {s == "GLsizei"} then {
+        s.copy "INTEGER";
+      }.elseif {s == "GLubyte"} then {
+        s.copy "UINTEGER_8";
+      }.elseif {s == "GLushort"} then {
+        s.copy "UINTEGER_16"; 
+      }.elseif {s == "GLuint"} then {
+        s.copy "UINTEGER_32";
+      }.elseif {s == "GLfloat"} then {
+        s.copy "REAL_32";  
+      }.elseif {s == "GLclampf"} then {
+        s.copy "REAL_32"; 
+      }.elseif {s == "GLdouble"} then {
+        s.copy "REAL_32"; //            double !!!!
+      }.elseif {s == "GLclampd"} then {
+        s.copy "REAL_32";  //            double !!!!
+      }.elseif {s == "GLvoid"} then {
+        s.copy "VOID"; 
+      }.elseif {s == "GLvoid*"} then {	
+        s.copy "POINTER"; // FIXME: void** ??
+      } else {
+        "\nglspec2li: Warning: unknown C type: ".print;
+        s.print;
+      };
+    };
+    s
+  );
+  
+  //
+  // Parser.
+  //
+  
+  - position:INTEGER;
+  
+  - string_tmp:STRING := STRING.create 128;
+  
+  
+  - last_character:CHARACTER <-
+  ( + result:CHARACTER;
+    (position > source.upper).if {
+      result := 0.to_character;
+    } else {
+      result := source.item position;
+    };
+    result
+  );
+  
+  - last_string:STRING <- string_tmp;
+  
+  
+  - read_space:BOOLEAN <-
+  ( + pos,posold:INTEGER;
+    + level_comment:INTEGER;
+    
+    pos := position;
+    posold := -1; 
+    
+    {posold = position}.until_do {
+      posold := position;
+      
+      // Skip spaces :            
+      {(last_character = 0.to_character) || {last_character > ' '}}.until_do {
+        position := position + 1;	
+      };
+      
+      (position < source.upper).if {
+        // Skip C comment style :
+        
+        ((last_character = '/') && {source.item (position+1) = '*'}).if {
+          position := position + 2; 	  
+          level_comment := 1;
+          {
+            (last_character = 0.to_character) || {level_comment = 0}
+          }.until_do {
+            ((last_character = '/') && {source.item (position+1) = '*'}).if {
+              level_comment := level_comment + 1;
+              position := position + 2;
+            }.elseif {
+              (last_character = '*') && {source.item (position+1) = '/'}
+            } then {
+              level_comment := level_comment - 1;
+              position := position + 2;
+            } else {
+              position := position+1;
+            };
+          };
+        };
+      };
+    };
+    TRUE
+  );
+  
+  - read_symbol st:ABSTRACT_STRING :BOOLEAN <-
+  ( + posold,j:INTEGER;
+    + result:BOOLEAN;
+    // On passe les espaces :
+    (! read_space).if {
+      result := FALSE;
+    } else {
+      posold := position;    
+      j := st.lower;
+      {(last_character = 0.to_character) ||
+      {(j > st.upper) || {last_character != st.item j}}}.until_do {
+        j := j+1;
+        position := position+1;
+      };
+      (j > st.upper).if {
+        result := TRUE;
+      } else {
+        position := posold;
+        result := FALSE;
+      };
+    };
+    result
+  );
+  
+  - read_word:BOOLEAN <-
+  ( + result:BOOLEAN;
+    // On passe les espaces :
+    (! read_space).if {
+      result := FALSE;
+    } else {
+      
+      string_tmp.clear;
+      string_tmp.add_last last_character;
+      position := position + 1;
+      
+      {(last_character != 0.to_character) &&
+        {! last_character.is_separator}
+      }.while_do {
+        string_tmp.add_last last_character;
+        position := position+1;          
+      };
+      result := TRUE;      
+    };
+    result
+  );
diff --git a/lib/unstable/opengl/gui/g_gldraw.li b/lib/unstable/opengl/gui/g_gldraw.li
new file mode 100644
index 0000000..3a1d327
--- /dev/null
+++ b/lib/unstable/opengl/gui/g_gldraw.li
@@ -0,0 +1,94 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := G_GLDRAW;
+  
+  
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment := "OpenGL output for GUI.";
+  
+Section Inherit  
+  
+  + parent_area:Expanded AREA;
+  
+  + parent_g_expr:Expanded G_EXPR;
+  
+Section Public
+  
+  + scene:SCENE;
+  
+  //
+  // Width / Height
+  //
+  
+  - predict_size txt:ABSTRACT_STRING :(INTEGER,INTEGER) <-
+  ( 
+    (width,height)
+  );
+  
+  - width_min:INTEGER <-
+  ( 
+    width + 50
+  );
+  
+  - height_min:INTEGER <-
+  (
+    height + 50
+  );
+  
+  //
+  // Creation.
+  //
+  
+  - create sc:SCENE :SELF <-
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make sc;
+    result
+  );
+  
+  - make sc:SCENE <-
+  (
+    scene := sc;
+    GL_DRIVER.add_gldraw Self;
+  );
+  
+  //
+  // Update position.
+  //
+  
+  - set_position rac:AREA at (x,y:INTEGER) size (w,h:INTEGER) <-
+  ( 
+    update rac from (x,y) size (w,h);
+  );
+  
+  //
+  // Display.
+  //
+  
+  - draw (x0,y0:INTEGER) to (x1,y1:INTEGER) <-
+  (         
+    // 
+    // Drawn later with opengl framebuffer
+    //
+  );
diff --git a/lib/unstable/opengl/gui/gl_desk.li b/lib/unstable/opengl/gui/gl_desk.li
new file mode 100644
index 0000000..9251155
--- /dev/null
+++ b/lib/unstable/opengl/gui/gl_desk.li
@@ -0,0 +1,144 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name    := GL_DESK;
+  
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - bibliography:="http://IsaacOS.com";
+  - author      :="Sonntag Benoit (bsonntag at loria.fr)";
+  - comment     :="User Interface and Events managment.";
+  
+Section Inherit  
+  
+  - parent_desk:DESK := DESK;
+  
+  - parent_platform:PLATFORM := PLATFORM;
+  
+Section Private  
+  
+  - current_time:UINTEGER_32; 
+  - prev_time:UINTEGER_32;
+  - time_per_frame:UINTEGER_32;
+  
+Section Public
+  
+  //   Video.width
+  // +----------+
+  // | Physical |
+  // |  Screen  | Video.height
+  // +----------+
+  //   /      \
+  // |\     +----------+
+  //  L     |   Desk   |  <-- double-buffered GL Desk
+  // Mouse  |          |
+  //        +----------+
+  //             |
+  //             |  Video.width * w
+  //        +-----------------------+
+  //        |   Virtual Screen      | Video.height * h
+  //        |                       |
+  //        +-----------------------+
+  
+  
+  - make bmp:ABSTRACT_BITMAP scale (w,h:INTEGER) with elt:G_EXPR <-
+  [
+    -? {w > 0};
+    -? {h > 0};
+  ]
+  ( + msg:EVENT;    
+    + input:INPUT;
+    + frame_time:UINTEGER_32;
+    
+    set_video_support bmp;
+    physical_screen := AREA.clone;
+    physical_screen.make NULL from (0,0) size (bmp.width,bmp.height);    
+    //
+    root := elt;
+    //
+    (GL_DRIVER.is_initialized).if {
+      GL_EVENT_SYSTEM.make;
+    } else {
+      EVENT_SYSTEM.make;
+    };    
+    focus := Self;    
+    //    
+    set_position physical_screen at (0,0) 
+    size (physical_screen.width,physical_screen.height);
+    
+    virtual_screen := VIRTUAL_SCREEN.create Self scale (w,h);
+    connect_to MOUSE;    
+    connect_to KEYBOARD;      
+    connect_to TIMER;
+
+    // Timer
+    init_time;
+    set_fps 60;
+    current_time := get_milliseconds;
+    
+    {      
+      (GL_DRIVER.is_initialized).if {
+        GL_EVENT_SYSTEM.get_event;
+      } else {
+        EVENT_SYSTEM.get_event;
+      };
+      
+      {storage_message.is_empty}.until_do {
+        msg := storage_message.first;
+        storage_message.remove_first;
+        msg.set_destination focus;
+        focus.receive msg;	
+        input ?= msg.source;
+        input.acknowledge;
+      };
+      
+      (GL_DRIVER.is_initialized).if {
+        
+        // update timer
+        prev_time := current_time;
+        current_time := get_milliseconds;
+        frame_time := current_time - prev_time;
+        (frame_time <= 0).if {
+          frame_time := 1;
+        };
+
+        //
+        GL_DRIVER.render (frame_time.to_real/1000.0);
+        //
+        
+        // sleep to keep constant framerate
+        (time_per_frame > 0).if {
+          (frame_time < time_per_frame).if { 
+            delay (time_per_frame - frame_time);
+          };
+        };
+      };
+    }.do_while {`1`:BOOLEAN(TRUE,FALSE)}; // Infinity Loop     
+    
+    // unreachable !!!
+    VIDEO.close;	
+  );
+  
+  - set_fps n:INTEGER <-
+  (
+    time_per_frame := 1000/n;
+  );
diff --git a/lib/unstable/opengl/gui/gl_driver.li b/lib/unstable/opengl/gui/gl_driver.li
new file mode 100644
index 0000000..eb260bc
--- /dev/null
+++ b/lib/unstable/opengl/gui/gl_driver.li
@@ -0,0 +1,218 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_DRIVER;
+  
+  - external := `#define GLBINDING__USE_GUI`;
+  
+Section Inherit
+  
+  + parent_opengl:Expanded OPENGL;
+  
+  - parent_video_driver:VIDEO_DRIVER := VIDEO_DRIVER;
+  
+Section Private  
+  
+  // GUI calls affects this virtual bitmap
+  - gui_screen:FAST_ARRAY(UINTEGER_8);// BITMAP(PIXEL_32);
+  
+Section Public
+  
+  - is_initialized:BOOLEAN;
+  
+  
+  - make (w,h:INTEGER) <-
+  (
+    parent_opengl.make (w,h);
+    gui_init (w,h);
+  );
+  
+  - make (w,h:INTEGER) title s:ABSTRACT_STRING <-
+  ( 
+    parent_opengl.make (w,h) title s;
+    gui_init (w,h);
+  );
+  
+  - gui_init (w,h:INTEGER) <-
+  (  
+    gui_screen := FAST_ARRAY(UINTEGER_8).create (w*h*3); 
+    `glPixelStorei(GL_UNPACK_ALIGNMENT, 1)`;
+    
+    width := w;
+    height := h;
+
+    // init minimmal Framework (used by 3D stuff)
+    FRAMEWORK.make_for_gui Self;
+    
+    is_initialized := TRUE;
+  );
+  
+  - render t:REAL_32 <-
+  ( + p:POINTER;
+    + w,h:INTEGER;
+    
+    parent_opengl.begin_frame;
+    
+    `glMatrixMode(GL_PROJECTION)`;
+    `glPushMatrix()`;
+    `glLoadIdentity()`;
+    
+    `glOrtho(0, at w, at h,0,-99999,99999)`;
+    `glMatrixMode(GL_MODELVIEW)`;
+    `glLoadIdentity()`;
+    
+    w := width;
+    h := height;
+    
+    p := gui_screen.to_external;      
+    `glDrawPixels(@w, @h, GL_RGB, GL_UNSIGNED_BYTE, @p)`; // SLOW !!!!
+    `glFlush()`;
+    
+    `glMatrixMode(GL_PROJECTION)`;
+    `glPopMatrix()`;
+    
+    `glMatrixMode(GL_MODELVIEW)`;
+    `glLoadIdentity()`;
+    
+    render_gldraw t;
+  );
+  
+  - render_gldraw t:REAL_32 <-
+  ( + x0,x1,y0,y1:INTEGER;
+    + h:INTEGER;
+    + r,f:REAL_32;
+    
+    (gl_components != NULL).if {
+      gl_components.lower.to (gl_components.upper) do { i:INTEGER;
+        x0 := gl_components.item i.x_window;
+        y0 := gl_components.item i.y_window-1;
+        x1 := gl_components.item i.width + x0;
+        y1 := gl_components.item i.height + y0;
+        
+        h := height;
+        viewport.make (x0, h - y1, x1 - x0, y1 - y0);
+        
+        `glViewport(@x0, @h - @y1, @x1 - @x0, @y1 - @y0)`;
+        `glScissor(@x0, @h - @y1, @x1 - @x0, @y1 - @y0)`;
+        `glEnable(GL_SCISSOR_TEST)`;
+        
+        `glMatrixMode(GL_PROJECTION)`;
+        `glLoadIdentity()`;
+        
+        r := (x1-x0).to_real / (y1-y0).to_real;
+        f := fov;
+        `gluPerspective(@f, @r, 0.1, 1000)`;
+        
+        `glMatrixMode(GL_MODELVIEW)`;
+        `glLoadIdentity()`;
+        
+        `glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);`;
+        
+        // draw component
+        gl_components.item i.scene.render t; 
+        
+        `glDisable(GL_SCISSOR_TEST)`;
+      };
+    };
+    parent_opengl.end_frame;   
+  );
+  
+  - close <-
+  (
+    (gl_components != NULL).if {
+      gl_components.lower.to (gl_components.upper) do { i:INTEGER;
+        gl_components.item i.scene.release;
+      };
+    };
+    parent_opengl.close;
+  );
+  
+  //
+  // GUI-OpenGL components
+  //
+  
+Section Public  
+  
+  - gl_components:LINKED_LIST(G_GLDRAW);
+  
+  - add_gldraw c:G_GLDRAW <-
+  (
+    (gl_components = NULL).if {
+      gl_components := LINKED_LIST(G_GLDRAW).create;
+    };
+    gl_components.add_last c;
+    
+    //
+    c.scene.initialize;
+    //
+  );
+  
+  
+  // 
+  // Redefine Low level Bitmap.
+  //
+  
+Section Public
+  
+  - pixel_hard (x,y:INTEGER) color col:UINTEGER_32 <-
+  ( + p:FAST_ARRAY(UINTEGER_8);
+    + xx,yy:INTEGER;
+    //GL_DRIVER.gui_screen.pixel_hard (x,y) color col;
+    
+    xx :=  x;
+    yy := height - y;
+    
+    p := GL_DRIVER.gui_screen;
+    PIXEL_32.make col;
+    
+    p.put (PIXEL_32.red) to ((yy*width+xx)*3);
+    p.put (PIXEL_32.green) to ((yy*width+xx)*3+1);
+    p.put (PIXEL_32.blue) to ((yy*width+xx)*3+2);
+  );
+  
+  - line_h_hard (x,y:INTEGER) until x1:INTEGER color col:UINTEGER_32 <-
+  ( 
+    //GL_DRIVER.gui_screen.line_h_hard (x,y) until x1 color col;
+    
+    x.to x1 do { i:INTEGER;
+      pixel_hard (i,y) color col;
+    };
+  );
+  
+  - line_h_hard (x,y:INTEGER) until x1:INTEGER 
+  image line:ABSTRACT_BMP_LINE offset ofs:INTEGER <-
+  ( 
+    //GL_DRIVER.gui_screen.line_h_hard (x,y) until x1 image line offset ofs;
+    
+    x.to x1 do { i:INTEGER;
+      pixel_hard (i,y) color ((line.item (ofs+i)).rgbcolor);
+    };
+  );
+  
+  - get_pixel_hard (x,y:INTEGER) :PIXEL <-
+  (
+    // GL_DRIVER.gui_screen.get_pixel_hard (x,y)
+    
+    PIXEL_32.make (gui_screen.item (x+ y*width));
+    PIXEL_32
+  );
diff --git a/lib/unstable/opengl/gui/unix/gl_event_system.li b/lib/unstable/opengl/gui/unix/gl_event_system.li
new file mode 100644
index 0000000..047db92
--- /dev/null
+++ b/lib/unstable/opengl/gui/unix/gl_event_system.li
@@ -0,0 +1,136 @@
+///////////////////////////////////////////////////////////////////////////////
+//                            Lisaac OS Library                              //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name     := GL_EVENT_SYSTEM;
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment  := "X11 - Event System";
+  
+Section Inherit
+  
+  - parent_event_system:EVENT_SYSTEM := EVENT_SYSTEM;
+  
+Section Public  
+
+  - make <- ();
+
+  - get_event <-
+  (
+    + type:INTEGER;
+    + x0,y0,x1,y1:INTEGER;
+    + mouse_set:BOOLEAN;
+    + mouse_motion_x, mouse_motion_y:INTEGER;
+
+    {`XPending (win.dpy)`:INTEGER != 0}.while_do { // pb avec les bouttons...
+  //  (`XPending (win.dpy)`:INTEGER != 0).if { // rame !!!
+      `XNextEvent (win.dpy, &event)`;
+      type := `event.type`:INTEGER;
+      
+      type
+
+      //
+      // Event Keyboard
+      //
+
+      .when `KeyPress`:INTEGER then {
+	KEYBOARD.key `event.xkey.keycode`:UINTEGER_8 press TRUE;
+      }
+      .when `KeyRelease`:INTEGER then {
+	KEYBOARD.key `event.xkey.keycode`:UINTEGER_8 press FALSE;
+      }	
+
+      //
+      // Event Mouse
+      //
+      .when `ButtonPress`:INTEGER then {
+	mouse_set := TRUE; 
+	(`event.xbutton.button`:INTEGER = 1).if {
+	  MOUSE.set (`event.xbutton.x`:INTEGER,`event.xbutton.y`:INTEGER) with (TRUE,(MOUSE.right));
+	} else {
+	  MOUSE.set (`event.xbutton.x`:INTEGER,`event.xbutton.y`:INTEGER) with ((MOUSE.left),TRUE);
+	};
+      }
+      .when `ButtonRelease`:INTEGER then {
+	mouse_set := TRUE; 
+	(`event.xbutton.button`:INTEGER = 1).if {
+	  MOUSE.set (`event.xbutton.x`:INTEGER,`event.xbutton.y`:INTEGER) with (FALSE,(MOUSE.right));
+	} else {
+	  MOUSE.set (`event.xbutton.x`:INTEGER,`event.xbutton.y`:INTEGER) with ((MOUSE.left),FALSE);
+	};
+      }
+      .when `MotionNotify`:INTEGER then {
+	mouse_motion_x := `event.xmotion.x`:INTEGER;
+	mouse_motion_y := `event.xmotion.y`:INTEGER;
+	//MOUSE.set (`event.xmotion.x`:INTEGER,`event.xmotion.y`:INTEGER) with ((MOUSE.left),(MOUSE.right));
+      }
+
+      //
+      // Event Window
+      //
+      .when `Expose`:INTEGER then {
+	// Refresh X Window
+	x0 := `event.xexpose.x`:INTEGER;
+	y0 := `event.xexpose.y`:INTEGER;
+	x1 := x0 + `event.xexpose.width` :INTEGER - 1;
+	y1 := y0 + `event.xexpose.height`:INTEGER - 1;		
+	GL_DESK.physical_screen.redraw (x0,y0) to (x1,y1);
+      }
+      .when `ResizeRequest`:INTEGER then {
+	// Resize X Window
+	x1 := `event.xresizerequest.width`:INTEGER;
+	y1 := `event.xresizerequest.height`:INTEGER;
+
+	GL_DRIVER.resize (x1,y1);
+	`XResizeWindow(display,window, at x1, at y1)`;
+	
+	VIDEO.pixel_hard (x1,10) color 0FF0000h;
+	GL_DESK.resize_window (x1,y1);
+      }
+      .when `ConfigureNotify`:INTEGER then {
+	// Resize X Window
+	x1 := `event.xconfigure.width`:INTEGER;
+	y1 := `event.xconfigure.height`:INTEGER;
+
+	GL_DRIVER.resize (x1,y1);		
+	GL_DESK.resize_window (x1,y1);
+      }
+      .when `ClientMessage`:INTEGER then {
+      //  TIMER.get_event;	
+      };
+    };
+    ((! mouse_set) && {(mouse_motion_x != 0) && {mouse_motion_y != 0}}).if { // mouse hack
+      MOUSE.set (mouse_motion_x, mouse_motion_y) with ((MOUSE.left),(MOUSE.right));
+    };
+  );
+
+   
+  
+
+
+
+
+
+
+
+
+
diff --git a/lib/unstable/opengl/gui/windows/gl_event_system.li b/lib/unstable/opengl/gui/windows/gl_event_system.li
new file mode 100644
index 0000000..7b1e9a7
--- /dev/null
+++ b/lib/unstable/opengl/gui/windows/gl_event_system.li
@@ -0,0 +1,65 @@
+///////////////////////////////////////////////////////////////////////////////
+//                            Lisaac OS Library                              //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+  
+  + name        := GL_EVENT_SYSTEM;
+
+  - copyright   := "2003-2005 Jérome Boutet, 2003-2007 Benoit Sonntag";
+  
+  - comment     := "OpenGL-win32 - Event System";
+    
+  - bibliography:= "http://IsaacOS.com";
+  - author      := "Benoit Sonntag (bsonntag at loria.fr)";
+  
+Section Inherit
+  
+  - parent_event_system:EVENT_SYSTEM := EVENT_SYSTEM;
+    
+Section Public  
+  
+  - get_event <-
+  ( + go:BOOLEAN;
+    
+    go := TRUE;
+    {go && {`PeekMessage (&msg_glob, NULL, 0, 0, PM_REMOVE)` != 0}}.while_do {
+      (`msg_glob.message`:INTEGER = `WM_QUIT`:INTEGER).if {
+        //
+        //// ????
+        //
+	go := FALSE;	
+      } else {
+	`TranslateMessage (&msg_glob)`;
+	`DispatchMessage (&msg_glob)`;
+      };
+    };
+  );
+ 
+  
+  
+
+
+
+
+
+
+
+
+
diff --git a/lib/unstable/opengl/images/bmp.li b/lib/unstable/opengl/images/bmp.li
new file mode 100644
index 0000000..61ddbb2
--- /dev/null
+++ b/lib/unstable/opengl/images/bmp.li
@@ -0,0 +1,100 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := BMP;
+  
+  - comment  := "bmp loader";
+  
+Section Inherit
+  
+  - parent_format:IMAGE_FORMAT := IMAGE_FORMAT;
+  
+Section Public
+  
+  - format:STRING_CONSTANT := "bmp";
+ 
+  
+  - load image:IMAGE :BOOLEAN <-
+  (
+    + result:BOOLEAN;
+    + bmp_buffer:FAST_ARRAY(UINTEGER_8);
+    + header:BMP_HEADER;
+    
+    + columns,rows,stride:UINTEGER_32;
+    + image_data:FAST_ARRAY(UINTEGER_8);
+    + base,k:INTEGER;
+    
+    + e:ENTRY;
+    + file:FILE;
+    
+    e := FILE_SYSTEM.get_entry (image.name);
+    (e != NULL).if {
+      file ?= e;
+      file.open;
+      
+      bmp_buffer := FAST_ARRAY(UINTEGER_8).create_with_capacity (file.size+1);
+      
+      (file.read bmp_buffer size (file.size)  > 0).if {
+	
+	header := CONVERT(NATIVE_ARRAY(UINTEGER_8),BMP_HEADER).on (bmp_buffer.storage);
+	
+	image.set_size (header.width, header.height);
+	image.set_channels (header.bits_per_pixel >> 3);
+	
+	((!header.is_valid) || {header.is_rle8_compressed}).if {
+	  error "Only uncompressed BMP files supported";
+	};
+	
+	(image.channels = 3).if {
+	  // load 24bit bitmap
+	  
+	  columns := header.width;
+	  rows := header.height;
+	  
+	  stride := image.calculate_stride;
+	  
+	  image_data := FAST_ARRAY(UINTEGER_8).create (stride * rows);
+	  base := BMP_HEADER.object_size;
+	  
+	  0.to (rows-1) do { row:INTEGER;
+	    k := row * stride;
+	    0.to (columns-1) do { i:INTEGER;
+	      // swap bytes 0 & 2 
+	      image_data.put (bmp_buffer.item (base+k+i*3+2)) to (k+i*3);
+	      image_data.put (bmp_buffer.item (base+k+i*3+1)) to (k+i*3+1);  
+	      image_data.put (bmp_buffer.item (base+k+i*3)) to (k+i*3+2);   
+	    };
+	  };
+	  image.set_data image_data;
+	  result := TRUE;
+	}.elseif {image.channels = 1} then {
+	  // load8
+
+	  error "8bit bitmap not yet supported";
+	} else {
+	  error "Unsupported bitmap";
+	};	
+      };    
+    };
+    result
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/images/image.li b/lib/unstable/opengl/images/image.li
new file mode 100644
index 0000000..7729107
--- /dev/null
+++ b/lib/unstable/opengl/images/image.li
@@ -0,0 +1,171 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := IMAGE;
+  
+Section Inherit
+  
+  + parent_image_format:IMAGE_FORMAT := IMAGE_FORMAT;
+  
+Section IMAGE
+  
+  + image_data:FAST_ARRAY(UINTEGER_8);
+  
+Section Public
+  
+  + name:STRING;
+  
+  + width:INTEGER;
+  + height:INTEGER;
+  
+  + channels:INTEGER;
+  
+  
+  - create s:ABSTRACT_STRING :SELF <-
+  ( + result:SELF;  
+    result := SELF.clone;
+    result.make s;
+    result
+  );
+  
+  - make s:ABSTRACT_STRING <-
+  (
+    name := STRING.create_from_string s;
+    
+    set_format (IMAGE_FORMAT.get_format s);
+    load Self.if_false {
+      OPENGL.fatal_error ("Can't load image: "+s);
+    };
+  );
+  
+  - create_empty s:ABSTRACT_STRING size (w,h:INTEGER) type n:INTEGER allocate b:BOOLEAN :SELF <-
+  ( + result:SELF;  
+    result := SELF.clone;
+    result.make_empty (s,w,h,n,b);
+    result
+  );
+  
+  - make_empty (s:ABSTRACT_STRING,w,h,n:INTEGER,allocate:BOOLEAN) <-
+  (
+    name := STRING.create_from_string s;
+    width := w;
+    height := h;
+    channels := n;
+    
+    allocate.if {
+      image_data := FAST_ARRAY(UINTEGER_8).create (w*h*n);
+    };
+  );
+  
+  - get_red_value (x,y:INTEGER) :UINTEGER_8 <-
+  (
+    ? {channels >= 3};
+    image_data.item (channels * (x*width+y))
+  );
+  
+  - get_green_value (x,y:INTEGER) :UINTEGER_8 <-
+  (
+    ? {channels >= 3};
+    image_data.item (channels * (x*width+y)+1)
+  );
+  
+  - get_blue_value (x,y:INTEGER) :UINTEGER_8 <-
+  (
+    ? {channels >= 3};
+    image_data.item (channels * (x*width+y)+2)
+  );
+  
+  - get_alpha_value (x,y:INTEGER) :UINTEGER_8 <-
+  (
+    ? {channels > 3};
+    image_data.item (channels * (x*width+y)+3)
+  );
+  
+  - get_value (x,y:INTEGER) :UINTEGER_8 <-
+  (
+    image_data.item (channels * (x*width+y))
+  );
+  
+  - item val:INTEGER <-
+  (
+    image_data.item val;
+  );
+  
+  - get_pixels:FAST_ARRAY(UINTEGER_8) <- image_data;
+  
+  
+  - set_size (w,h:INTEGER) <-
+  (
+    width := w;
+    height := h;
+  );
+  
+  - set_channels ch:INTEGER <- (channels := ch;);
+  
+  
+  - set_format fmt:IMAGE_FORMAT <-
+  (
+    parent_image_format := fmt;
+  );
+  
+  - set_data data:FAST_ARRAY(UINTEGER_8) <-
+  (
+    image_data := data;
+  );  
+  
+  - calculate_stride :UINTEGER_32 <-
+  (
+    + bits_per_line,bits_to_add:UINTEGER_32;
+    
+    bits_per_line := width * (channels << 3);
+    ((bits_per_line % 32) != 0).if {
+      bits_to_add := 32 - (bits_per_line%32);
+    };
+    // return stride
+    (bits_per_line + bits_to_add) / 8
+  );
+  
+  - to_greyscale:IMAGE <-
+  (
+    + result:IMAGE;
+    + grey:UINTEGER_8;
+    + j:INTEGER;
+    
+    (channels = 1).if {
+      result := Self;
+    } else {
+      // create new image
+      result := create_empty name size (width,height) type 1 allocate TRUE;
+      
+      j := 0;
+      0.to (width*height - 1) do { i:INTEGER;
+        // convert pixels: 0.3*R + 0.59*G + 0.11*B
+        
+        grey := ((0.30 * image_data.item j.to_integer) + (0.59 * image_data.item (j+1).to_integer) + (0.11 * image_data.item (j+2).to_integer)).to_uinteger_8;
+        result.image_data.put grey to i;
+         
+        j := j + channels;
+      };
+    };    
+    result
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/images/image_format.li b/lib/unstable/opengl/images/image_format.li
new file mode 100644
index 0000000..b6aa2e6
--- /dev/null
+++ b/lib/unstable/opengl/images/image_format.li
@@ -0,0 +1,59 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := IMAGE_FORMAT;
+ 
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - format:STRING_CONSTANT <- deferred;
+  
+  - load image:IMAGE :BOOLEAN <- 
+ (
+    error "Unknown format";
+    FALSE
+ );
+  
+  
+  - get_format fmt:ABSTRACT_STRING :IMAGE_FORMAT <-
+  (
+    + result:IMAGE_FORMAT;
+    
+    (fmt.has_substring ".bmp").if {
+      result := BMP;
+    }.elseif {fmt.has_substring ".tga"} then {
+      result := TGA;
+    } else {
+      
+      result := Self;
+    };
+    result
+  );
+  
+  - error err:ABSTRACT_STRING <-
+  (
+    err.print;
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/images/tga.li b/lib/unstable/opengl/images/tga.li
new file mode 100644
index 0000000..9f28e15
--- /dev/null
+++ b/lib/unstable/opengl/images/tga.li
@@ -0,0 +1,219 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := TGA;
+  
+  - comment  := "tga loader";
+
+Section Inherit
+  
+  - parent_format:IMAGE_FORMAT := IMAGE_FORMAT;
+  
+Section Public
+  
+  - format:STRING_CONSTANT := "tga";
+  
+  - load image:IMAGE :BOOLEAN <-
+  (
+    + result:BOOLEAN;
+    + tga_buffer:FAST_ARRAY(UINTEGER_8);
+    
+    + buffer_pos:INTEGER;
+    + header:TGA_HEADER;
+    
+    + image_data:FAST_ARRAY(UINTEGER_8);
+    + temp:UINTEGER_8;
+    
+    + e:ENTRY;
+    + file:FILE;
+
+    + channels:INTEGER;
+    + stride,i,line_idx:INTEGER;
+  
+    e := FILE_SYSTEM.get_entry (image.name);
+    (e != NULL).if {
+      file ?= e;
+      file.open;
+      
+      tga_buffer := FAST_ARRAY(UINTEGER_8).create_with_capacity (file.size+1);
+      
+      (file.read tga_buffer size (file.size)  > 0).if {
+        
+        header := CONVERT(NATIVE_ARRAY(UINTEGER_8),TGA_HEADER).on (tga_buffer.storage);
+        
+        buffer_pos := TGA_HEADER.object_size;
+        
+        channels := header.bits_per_pixel >> 3;
+        image.set_size (header.width, header.height);
+        image.set_channels channels;
+        
+        (! header.is_compressed).if {
+          ((channels = 3) || {channels = 4}).if {
+            
+            stride := image.calculate_stride;//channels * header.width;
+            
+            image_data := FAST_ARRAY(UINTEGER_8).create (stride * header.height);
+            
+            // read data line by line
+            0.to (header.height-1) do { y:INTEGER;
+              
+              line_idx := stride*y;
+              
+              // read current line
+              0.to (stride-1) do { k:INTEGER;
+                image_data.put (tga_buffer.item buffer_pos) to (line_idx+k);
+                buffer_pos := buffer_pos + 1;
+              };
+              
+              // swap bgr to rgb colors
+              i := 0;
+              {i < stride}.while_do {
+                
+                temp := image_data.item (line_idx + i);
+                image_data.put (image_data.item (line_idx+i+2)) to (line_idx+i);
+                image_data.put temp to (line_idx+i+2);
+                
+                i := i + channels;
+              };
+            };
+            result := TRUE;
+            
+          }.elseif {channels = 2} then {           
+            // 16bit tga 
+            
+            + r,g,b:UINTEGER_8;
+            
+            stride := image.calculate_stride;//channels * header.width;
+            
+            image_data := FAST_ARRAY(UINTEGER_8).create (stride * header.height); 
+            // read data
+            0.to (header.width*header.height-1) do { y:INTEGER;
+              
+              temp := tga_buffer.item buffer_pos;
+              buffer_pos := buffer_pos + 1;
+              
+              b := (temp & 01Fh) << 3;
+              g := ((temp >> 5) & 01Fh) << 3;
+              r := ((temp >> 10) & 01Fh) << 3;
+              
+              image_data.put r to (y*3);  
+              image_data.put g to (y*3+1);
+              image_data.put b to (y*3+2);
+            };
+            result := TRUE;
+          };
+        } else {
+          //
+          // load compressed tga
+          //
+          
+          + temp_data:FAST_ARRAY(UINTEGER_8);
+          + nb_pixels,current_pixel:INTEGER;
+          + color_buffer:FAST_ARRAY(UINTEGER_8);
+          + rle_id:UINTEGER_8;
+          
+          ((channels = 3) || {channels = 4}).if {
+            temp_data := FAST_ARRAY(UINTEGER_8).create_with_capacity (header.width * header.height*channels);
+            nb_pixels := header.width * header.height;
+            color_buffer := FAST_ARRAY(UINTEGER_8).create_with_capacity channels;
+            
+            {
+              // read RLE chunk header 
+              rle_id := tga_buffer.item buffer_pos;
+              buffer_pos := buffer_pos + 1;
+              
+              (rle_id < 128).if {
+                // read raw colour values
+                
+                0.to rle_id do { counter:INTEGER;
+                  color_buffer.clear;
+                  
+                  1.to channels do { w:INTEGER;
+                    color_buffer.add_last (tga_buffer.item buffer_pos);
+                    buffer_pos := buffer_pos + 1;
+                  };
+                  // transfer pixel colour & swap BGR to RGB
+                  temp_data.add_last (color_buffer.item 2);
+                  temp_data.add_last (color_buffer.item 1);
+                  temp_data.add_last (color_buffer.item 0);
+                  
+                  (channels = 4).if {
+                    temp_data.add_last (color_buffer.item 3);
+                  };
+                  current_pixel := current_pixel + 1;
+                  
+                  (current_pixel > nb_pixels).if {
+                    error "too many pixels";
+                  };
+                };
+              } else {
+                // rle_id >= 128
+                
+                rle_id := rle_id - 127;
+                
+                // read chunk color
+                color_buffer.clear;       
+                1.to channels do { w:INTEGER;
+                  color_buffer.add_last (tga_buffer.item buffer_pos);
+                  buffer_pos := buffer_pos + 1;
+                };
+                
+                // duplicate pixel value rle_id 'times
+                0.to (rle_id-1) do { counter:INTEGER;
+                  
+                  // swap BGR to RGB
+                  temp_data.add_last (color_buffer.item 2);
+                  temp_data.add_last (color_buffer.item 1);
+                  temp_data.add_last (color_buffer.item 0);
+                  
+                  (channels = 4).if {
+                    temp_data.add_last (color_buffer.item 3);
+                  };
+                  current_pixel := current_pixel + 1;
+                  
+                  (current_pixel > nb_pixels).if {
+                    error "too many pixels";
+                  };
+                };
+              };
+            }.do_while {current_pixel < nb_pixels};
+            
+            stride := image.calculate_stride;
+            image_data := FAST_ARRAY(UINTEGER_8).create (stride * header.height + 1);
+            // line by line copy with 32bit aligned
+            0.to (header.height-1) do { row:INTEGER;
+              i := stride; 
+              0.to (i-1) do { j:INTEGER;
+                image_data.put (temp_data.item (row*header.width*channels+j)) to (row*stride+j);
+              };
+            };
+            result := TRUE;
+          } else {
+            error "image not supported";
+          };
+        };
+      };
+      image.set_data image_data;
+    };
+    result
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/images/tga_header.li b/lib/unstable/opengl/images/tga_header.li
new file mode 100644
index 0000000..2768786
--- /dev/null
+++ b/lib/unstable/opengl/images/tga_header.li
@@ -0,0 +1,74 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name        := TGA_HEADER;
+  
+  - comment     := "Mapping TGA Image File Header structure";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Mapping
+  
+  //
+  // TGA Header
+  //
+  
+  + data_offset:UINTEGER_8;
+  + reserved:UINTEGER_8;
+  
+  + type:UINTEGER_8;
+  
+  + not_used1:UINTEGER_32;// skip 9byte
+  + not_used2:UINTEGER_32;
+  + not_used3:UINTEGER_8;
+  
+  + map_width:UINTEGER_16;
+  + map_height:UINTEGER_16;
+  + bpp:UINTEGER_8;
+  
+  + flags:UINTEGER_8;
+  
+Section Public
+  
+  - width:INTEGER <- map_width;
+  - height:INTEGER <- map_height; 
+  
+  - bits_per_pixel:INTEGER <- bpp;
+  
+  - is_compressed:BOOLEAN <-
+  (
+    type = 10
+  );
+  
+  - need_flip:BOOLEAN <-
+  (
+    flags & 020h = 1
+  );
+  
+  - print <-
+  (
+    
+    '\n'.print;
+  );
diff --git a/lib/unstable/opengl/opengl/extensions/arb_fragment_shader.li b/lib/unstable/opengl/opengl/extensions/arb_fragment_shader.li
new file mode 100644
index 0000000..e731dfc
--- /dev/null
+++ b/lib/unstable/opengl/opengl/extensions/arb_fragment_shader.li
@@ -0,0 +1,44 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := ARB_FRAGMENT_SHADER;
+  
+  - comment  := "GL_ARB_fragment_shader extension";
+  
+  - external := `
+  
+  #define GL_FRAGMENT_SHADER_ARB            0x8B30
+  `;
+  
+Section Inherit
+  
+  - parent_gl_extension:GL_EXTENSION := GL_EXTENSION;
+  
+Section Public
+  
+  - name:STRING_CONSTANT := "GL_ARB_fragment_shader";
+  
+  - make <-
+  (
+  );
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/extensions/arb_multitexture.li b/lib/unstable/opengl/opengl/extensions/arb_multitexture.li
new file mode 100644
index 0000000..7e1d2e5
--- /dev/null
+++ b/lib/unstable/opengl/opengl/extensions/arb_multitexture.li
@@ -0,0 +1,77 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := ARB_MULTITEXTURE;
+  
+  - comment  := "GL_ARB_multitexture extension";
+  
+  - external := `
+  
+  #define GL_TEXTURE0_ARB                   0x84C0
+  typedef void (APIENTRY * PFNGLACTIVETEXTUREARBPROC) (GLenum target);
+  typedef void (APIENTRY * PFNGLCLIENTACTIVETEXTUREARBPROC) (GLenum texture);
+  typedef void (APIENTRY * PFNGLMULTITEXCOORD2FARBPROC) (GLenum target,float s,float t);
+  
+  PFNGLACTIVETEXTUREARBPROC        liglActiveTextureARB = NULL;
+  PFNGLCLIENTACTIVETEXTUREARBPROC  liglClientActiveTextureARB = NULL;
+  PFNGLMULTITEXCOORD2FARBPROC      liglMultiTexCoord2fARB = NULL;
+  `;
+  
+Section Inherit
+  
+  - parent_gl_extension:GL_EXTENSION := GL_EXTENSION;
+  
+Section Public
+  
+  - name:STRING_CONSTANT := "GL_ARB_multitexture";
+  
+  - make <-
+  (
+    `liglActiveTextureARB = (PFNGLACTIVETEXTUREARBPROC) GPA("glActiveTextureARB")`;
+    `liglClientActiveTextureARB = (PFNGLCLIENTACTIVETEXTUREARBPROC) GPA("glClientActiveTextureARB")`;
+    `liglMultiTexCoord2fARB = (PFNGLMULTITEXCOORD2FARBPROC) GPA("glMultiTexCoord2fARB")`;
+  );
+  
+  - active_texture n:INTEGER <-
+  (
+    + unit:INTEGER;
+    
+    unit := `GL_TEXTURE0_ARB`:INTEGER + n;
+    `liglActiveTextureARB(@unit)`;
+  );
+  
+  - client_active_texture n:INTEGER <-
+  (
+    + unit:INTEGER;
+    
+    unit := `GL_TEXTURE0_ARB`:INTEGER + n;
+    `liglClientActiveTextureARB(@unit)`;
+  );
+  
+  - texcoord2f (s,t:REAL_32) unit n:INTEGER <-
+  (
+    + unit:INTEGER;
+    
+    unit := `GL_TEXTURE0_ARB`:INTEGER + n;
+    `liglMultiTexCoord2fARB(@unit, @s, @t)`;
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/extensions/arb_shader_object.li b/lib/unstable/opengl/opengl/extensions/arb_shader_object.li
new file mode 100644
index 0000000..fbdec1a
--- /dev/null
+++ b/lib/unstable/opengl/opengl/extensions/arb_shader_object.li
@@ -0,0 +1,223 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := ARB_SHADER_OBJECT;
+  
+  - comment  := "GL_ARB_shader_object extension";
+  
+  - external := `
+  
+  #define GL_OBJECT_COMPILE_STATUS_ARB      0x8B81
+  #define GL_OBJECT_INFO_LOG_LENGTH_ARB     0x8B84
+
+  typedef GLuint (APIENTRY * LIGLCREATESHADERARBPROC) (GLenum target);
+  typedef void (APIENTRY * LIGLSHADERSOURCEARBPROC) (GLuint shader, int numOfStrings, char** strings, int* lenOfStrings);
+  typedef void (APIENTRY * LIGLCOMPILESHADERARBPROC) (GLuint shader);
+  typedef GLuint (APIENTRY * LIGLCREATEPROGRAMARBPROC) (void);
+  typedef void (APIENTRY * LIGLATTACHOBJECTARBPROC) (GLuint program, GLuint shader);
+  typedef void (APIENTRY * LIGLLINKPROGRAMARBPROC) (GLuint program);
+  typedef void (APIENTRY * LIGLUSEPROGRAMARBPROC) (GLuint program);
+  typedef void (APIENTRY * LIGLDELETEOBJECTBPROC) (GLuint object);
+  
+  typedef void (APIENTRY * LIGLGETINFOLOGARBPROC) (GLuint obj, GLint sz, GLint* len, char* infolog);
+   typedef void (APIENTRY * LIGLPARAMARBPROC) (GLuint obj, GLenum name, GLint* params);
+  
+  typedef GLint (APIENTRY * LIGLGETUNIFORMLOCATIONARBPROC) (GLuint pgm, char* name);
+  typedef void (APIENTRY * LIGLUNIFORM1FARBPROC) (GLint loc,GLfloat v0);
+  typedef void (APIENTRY * LIGLUNIFORM2FARBPROC) (GLint loc,GLfloat v0,GLfloat v1);
+  typedef void (APIENTRY * LIGLUNIFORM3FARBPROC) (GLint loc,GLfloat v0,GLfloat v1,GLfloat v2);
+  typedef void (APIENTRY * LIGLUNIFORM4FARBPROC) (GLint loc,GLfloat v0,GLfloat v1,GLfloat v2,GLfloat v3);
+  
+  LIGLCREATESHADERARBPROC    liglCreateShaderARB = NULL;
+  LIGLSHADERSOURCEARBPROC    liglShaderSourceARB = NULL;
+  LIGLCOMPILESHADERARBPROC   liglCompileShaderARB = NULL;
+  LIGLCREATEPROGRAMARBPROC   liglCreateProgramObjectARB = NULL;
+  LIGLATTACHOBJECTARBPROC    liglAttachObjectARB = NULL;
+  LIGLLINKPROGRAMARBPROC     liglLinkProgramARB = NULL;
+  LIGLUSEPROGRAMARBPROC      liglUseProgramObjectARB = NULL;
+  LIGLDELETEOBJECTBPROC      liglDeleteObjectARB = NULL;
+  LIGLGETINFOLOGARBPROC      liglGetInfoLogARB = NULL;   
+  LIGLPARAMARBPROC           liglGetParameterivARB = NULL;
+  
+  LIGLGETUNIFORMLOCATIONARBPROC liglGetUniformLocationARB = NULL;
+  LIGLUNIFORM1FARBPROC  liglUniform1fARB = NULL;
+  LIGLUNIFORM2FARBPROC  liglUniform2fARB = NULL;
+  LIGLUNIFORM3FARBPROC  liglUniform3fARB = NULL;
+  LIGLUNIFORM4FARBPROC  liglUniform4fARB = NULL;
+  int GL_ARB_shader_object_dummy;
+  `;
+  
+Section Inherit
+  
+  - parent_gl_extension:GL_EXTENSION := GL_EXTENSION;
+  
+Section Public
+  
+  - name:STRING_CONSTANT := "GL_ARB_shader_object";
+  
+  - make <-
+  (
+    `liglCreateShaderARB = (LIGLCREATESHADERARBPROC) GPA("glCreateShaderObjectARB")`;
+    `liglShaderSourceARB = (LIGLSHADERSOURCEARBPROC) GPA("glShaderSourceARB")`;
+    `liglCompileShaderARB = (LIGLCOMPILESHADERARBPROC) GPA("glCompileShaderARB")`;
+    `liglCreateProgramObjectARB = (LIGLCREATEPROGRAMARBPROC) GPA("glCreateProgramObjectARB")`;
+    `liglAttachObjectARB = (LIGLATTACHOBJECTARBPROC) GPA("glAttachObjectARB")`;
+    `liglLinkProgramARB = (LIGLLINKPROGRAMARBPROC) GPA("glLinkProgramARB")`;
+    `liglUseProgramObjectARB = (LIGLUSEPROGRAMARBPROC) GPA("glUseProgramObjectARB")`;
+    `liglDeleteObjectARB = (LIGLDELETEOBJECTBPROC) GPA("glDeleteObjectARB")`;
+    `liglGetInfoLogARB = (LIGLGETINFOLOGARBPROC) GPA("glGetInfoLogARB")`; 
+    `liglGetParameterivARB = (LIGLPARAMARBPROC) GPA("glGetObjectParameterivARB")`;
+    
+    `liglGetUniformLocationARB = (LIGLGETUNIFORMLOCATIONARBPROC) GPA("glGetUniformLocationARB")`;
+    `liglUniform1fARB = (LIGLUNIFORM1FARBPROC) GPA("glUniform1fARB")`;
+    `liglUniform2fARB = (LIGLUNIFORM2FARBPROC) GPA("glUniform2fARB")`;
+    `liglUniform3fARB = (LIGLUNIFORM3FARBPROC) GPA("glUniform3fARB")`;
+    `liglUniform4fARB = (LIGLUNIFORM4FARBPROC) GPA("glUniform4fARB")`;
+  );
+  
+  - create_program:UINTEGER_32 <-
+  (
+    `liglCreateProgramObjectARB()`:UINTEGER_32
+  );
+  
+  - attach_object (program,shader:UINTEGER_32) <- 
+  (
+    `liglAttachObjectARB(@program, @shader)`;
+  );
+  
+  - link_program program:UINTEGER_32 <-
+  (
+    `liglLinkProgramARB(@program)`;
+  );
+  
+  - use_program program:UINTEGER_32 <-
+  (
+    `liglUseProgramObjectARB(@program)`;
+  );
+  
+  - create_vertex_shader:UINTEGER_32 <-
+  (
+    `liglCreateShaderARB(GL_VERTEX_SHADER_ARB)`:UINTEGER_32
+  );
+  
+  - create_fragment_shader:UINTEGER_32 <-
+  (
+    `liglCreateShaderARB(GL_FRAGMENT_SHADER_ARB)`:UINTEGER_32
+  );
+  /*
+  - shader_source shader:INTEGER strings src:FAST_ARRAY[STRING] size sz:FAST_ARRAY[INTEGER]<-
+  (
+    + n:INTEGER;
+    + p,p2:POINTER;
+    
+    n := src.count;
+    p := src.to_external;
+    p2 := sz.to_external;
+    `liglShaderSourceARB(@shader, @n, @p, @p2)`;
+  );
+  */
+  - shader_source shader:INTEGER string src:STRING <-
+  (
+    + p:NATIVE_ARRAY(CHARACTER);
+    
+    p := src.to_external;
+    `liglShaderSourceARB(@shader, 1, (char**)(&@p), NULL)`;
+  );
+  /*
+  - shader_source shader:INTEGER string src:STRING size n:INTEGER <-
+  (
+    + p:NATIVE_ARRAY[CHARACTER];
+    
+    p := src.to_external;
+    `liglShaderSourceARB(@shader, 1, (char**)(&@p), @n)`;
+  );
+  */
+  - compile shader:UINTEGER_32 <-
+  (
+    `liglCompileShaderARB(@shader)`;
+  );
+  
+  - delete_object obj:UINTEGER_32 <-
+  (
+    `liglDeleteObjectARB(@obj)`;
+  );
+  
+  - get_parameteri (obj,pname:UINTEGER_32) :INTEGER <-
+  ( 
+    `liglGetParameterivARB(@obj, @pname, &GL_ARB_shader_object_dummy)`;
+    `GL_ARB_shader_object_dummy`:INTEGER
+  );
+  
+  - get_parameteriv (obj,pname:UINTEGER_32) in buf:FAST_ARRAY(INTEGER) <- // ??
+  ( + p:POINTER;
+    
+    p := buf.to_external;
+    `liglGetParameterivARB(@obj, @pname, @p)`;
+  );
+  
+  - get_infolog_status obj:UINTEGER_32 :INTEGER <-
+  (
+    get_parameteri (obj,`GL_OBJECT_COMPILE_STATUS_ARB`:UINTEGER_32)
+  );
+    
+  - get_infolog_length obj:UINTEGER_32 :INTEGER <-
+  (
+    get_parameteri (obj,`GL_OBJECT_INFO_LOG_LENGTH_ARB`:UINTEGER_32)
+  );
+  
+  - get_infolog obj:UINTEGER_32 in buffer:FAST_ARRAY(CHARACTER) size sz:INTEGER <-
+  ( + p:POINTER;
+
+    p := buffer.to_external;
+    `liglGetInfoLogARB(@obj, @sz, &GL_ARB_shader_object_dummy, @p)`;
+  );
+  
+  - get_uniform_location (program:UINTEGER_32, name:ABSTRACT_STRING) :INTEGER <-
+  ( + p:NATIVE_ARRAY(CHARACTER);
+    
+    p := name.to_external;
+    `liglGetUniformLocationARB(@program, @p)`:INTEGER
+  );
+  
+  - uniform1f (location:INTEGER, v0:REAL_32) <-
+  (
+    `liglUniform1fARB(@location, @v0)`;
+  );
+  
+  - uniform2f (location:INTEGER, v0,v1:REAL_32) <-
+  (
+    `liglUniform2fARB(@location, @v0, @v1)`;
+  );
+  
+  - uniform3f (location:INTEGER, v0,v1,v2:REAL_32) <-
+  (
+    `liglUniform3fARB(@location, @v0, @v1, @v2)`;
+  );
+  
+  - uniform4f (location:INTEGER, v0,v1,v2,v3:REAL_32) <-
+  (
+    `liglUniform4fARB(@location, @v0, @v1, @v2, @v3)`;
+  );
+  
+  
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/extensions/arb_shading_language_100.li b/lib/unstable/opengl/opengl/extensions/arb_shading_language_100.li
new file mode 100644
index 0000000..ef229c7
--- /dev/null
+++ b/lib/unstable/opengl/opengl/extensions/arb_shading_language_100.li
@@ -0,0 +1,40 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := ARB_SHADING_LANGUAGE_100;
+  
+  - comment  := "GL_ARB_shading_language_100 extension";
+  
+Section Inherit
+  
+  - parent_gl_extension:GL_EXTENSION := GL_EXTENSION;
+  
+Section Public
+  
+  - name:STRING_CONSTANT := "GL_ARB_shading_language_100";
+  
+  - make <-
+  (
+    // nothing 
+  );
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/extensions/arb_vertex_buffer_object.li b/lib/unstable/opengl/opengl/extensions/arb_vertex_buffer_object.li
new file mode 100644
index 0000000..a609c53
--- /dev/null
+++ b/lib/unstable/opengl/opengl/extensions/arb_vertex_buffer_object.li
@@ -0,0 +1,122 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := ARB_VERTEX_BUFFER_OBJECT;
+  
+  - comment  := "ARB_vertex_buffer_object extension";
+  
+  - external := `
+  
+  // VBO Extension Definitions, From glext.h
+  #define GL_ARRAY_BUFFER_ARB 0x8892
+  #define GL_ELEMENT_ARRAY_BUFFER_ARB       0x8893
+  #define GL_STATIC_DRAW_ARB 0x88E4
+  typedef void (APIENTRY * PFNGLBINDBUFFERARBPROC) (GLenum target, GLuint buffer);
+  typedef void (APIENTRY * PFNGLDELETEBUFFERSARBPROC) (GLsizei n, const GLuint *buffers);
+  typedef void (APIENTRY * PFNGLGENBUFFERSARBPROC) (GLsizei n, GLuint *buffers);
+  typedef void (APIENTRY * PFNGLBUFFERDATAARBPROC) (GLenum target, int size, const GLvoid *data, GLenum usage);
+  
+  // VBO Extension Function Pointers
+  PFNGLGENBUFFERSARBPROC liglGenBuffersARB = NULL;					
+  PFNGLBINDBUFFERARBPROC liglBindBufferARB = NULL;					
+  PFNGLBUFFERDATAARBPROC liglBufferDataARB = NULL;					
+  PFNGLDELETEBUFFERSARBPROC liglDeleteBuffersARB = NULL;				
+  unsigned int ARB_vertex_buffer_object_id;
+  `;
+  
+Section Inherit
+  
+  - parent_gl_extension:GL_EXTENSION := GL_EXTENSION;
+  
+Section Public
+  
+  - name:STRING_CONSTANT := "ARB_vertex_buffer_object";
+  
+  - make <-
+  (
+    // Get Pointers To The GL Functions
+    `liglGenBuffersARB = (PFNGLGENBUFFERSARBPROC) GPA("glGenBuffersARB");
+    liglBindBufferARB = (PFNGLBINDBUFFERARBPROC) GPA("glBindBufferARB");
+    liglBufferDataARB = (PFNGLBUFFERDATAARBPROC) GPA("glBufferDataARB");
+    liglDeleteBuffersARB = (PFNGLDELETEBUFFERSARBPROC) GPA("glDeleteBuffersARB");`;
+  );
+  
+  - genbuffer:UINTEGER_32 <-
+  (
+    `liglGenBuffersARB(1, &ARB_vertex_buffer_object_id)`;
+    `ARB_vertex_buffer_object_id`:UINTEGER_32
+  );
+  
+  - genbuffers n:INTEGER :FAST_ARRAY(UINTEGER_32) <-
+  (
+    + p:POINTER;
+    + result:FAST_ARRAY(UINTEGER_32);
+    
+    result := FAST_ARRAY(UINTEGER_32).create n;
+    p := result.to_external;
+    `liglGenBuffersARB(@n, @p)`;
+    result
+  );
+  
+  - bind buffer:UINTEGER_32 <-
+  (
+    `liglBindBufferARB(GL_ARRAY_BUFFER_ARB, @buffer)`;
+  );
+  
+  - bind_index buffer:UINTEGER_32 <-
+  (
+    `liglBindBufferARB(GL_ELEMENT_ARRAY_BUFFER_ARB, @buffer)`;
+  );
+  
+  - disable <-
+  (
+    `liglBindBufferARB(GL_ARRAY_BUFFER_ARB, 0)`;
+  );
+  
+  - disable_index <-
+  (
+    `liglBindBufferARB(GL_ELEMENT_ARRAY_BUFFER_ARB, 0)`;
+  );
+  
+  - buffer_data data:POINTER size sz:INTEGER <-
+  (
+    `liglBufferDataARB(GL_ARRAY_BUFFER_ARB, @sz, @data, GL_STATIC_DRAW_ARB)`;
+  );
+  
+  - buffer_index_data data:POINTER size sz:INTEGER <-
+  (
+    `liglBufferDataARB(GL_ELEMENT_ARRAY_BUFFER_ARB, @sz, @data, GL_STATIC_DRAW_ARB)`;
+  );
+  
+  - delete id:UINTEGER_32 <-
+  (
+    `liglDeleteBuffersARB(1, (GLuint*)@id)`;
+  );
+  
+  - delete_buffers ids:FAST_ARRAY(UINTEGER_32) count n:INTEGER <-
+  (
+    + p:POINTER;
+    
+    p := ids.to_external;
+    `liglDeleteBuffersARB(@n, @p)`;
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/extensions/arb_vertex_shader.li b/lib/unstable/opengl/opengl/extensions/arb_vertex_shader.li
new file mode 100644
index 0000000..9005a8b
--- /dev/null
+++ b/lib/unstable/opengl/opengl/extensions/arb_vertex_shader.li
@@ -0,0 +1,44 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := ARB_VERTEX_SHADER;
+  
+  - comment  := "GL_ARB_vertex_shader extension";
+  
+  - external := `
+  
+  #define GL_VERTEX_SHADER_ARB              0x8B31
+  `;
+  
+Section Inherit
+  
+  - parent_gl_extension:GL_EXTENSION := GL_EXTENSION;
+  
+Section Public
+  
+  - name:STRING_CONSTANT := "GL_ARB_vertex_shader";
+  
+  - make <-
+  (
+  );
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl.li b/lib/unstable/opengl/opengl/gl.li
new file mode 100644
index 0000000..5ab6682
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl.li
@@ -0,0 +1,946 @@
+// **** file generated by glspec2li ****
+Section Header
+
+  + name     := GL;
+  - comment  := "OpenGL C Specification";
+
+Section Inherit
+
+  - parent_object:OBJECT := OBJECT;
+
+Section Public
+
+//
+// OpenGL constant.
+//
+
+  - cst_gl_version_1_1:INTEGER <- 1;
+  - cst_gl_accum:INTEGER <- 00100h;
+  - cst_gl_load:INTEGER <- 00101h;
+  - cst_gl_return:INTEGER <- 00102h;
+  - cst_gl_mult:INTEGER <- 00103h;
+  - cst_gl_add:INTEGER <- 00104h;
+  - cst_gl_never:INTEGER <- 00200h;
+  - cst_gl_less:INTEGER <- 00201h;
+  - cst_gl_equal:INTEGER <- 00202h;
+  - cst_gl_lequal:INTEGER <- 00203h;
+  - cst_gl_greater:INTEGER <- 00204h;
+  - cst_gl_notequal:INTEGER <- 00205h;
+  - cst_gl_gequal:INTEGER <- 00206h;
+  - cst_gl_always:INTEGER <- 00207h;
+  - cst_gl_current_bit:INTEGER <- 000000001h;
+  - cst_gl_point_bit:INTEGER <- 000000002h;
+  - cst_gl_line_bit:INTEGER <- 000000004h;
+  - cst_gl_polygon_bit:INTEGER <- 000000008h;
+  - cst_gl_polygon_stipple_bit:INTEGER <- 000000010h;
+  - cst_gl_pixel_mode_bit:INTEGER <- 000000020h;
+  - cst_gl_lighting_bit:INTEGER <- 000000040h;
+  - cst_gl_fog_bit:INTEGER <- 000000080h;
+  - cst_gl_depth_buffer_bit:INTEGER <- 000000100h;
+  - cst_gl_accum_buffer_bit:INTEGER <- 000000200h;
+  - cst_gl_stencil_buffer_bit:INTEGER <- 000000400h;
+  - cst_gl_viewport_bit:INTEGER <- 000000800h;
+  - cst_gl_transform_bit:INTEGER <- 000001000h;
+  - cst_gl_enable_bit:INTEGER <- 000002000h;
+  - cst_gl_color_buffer_bit:INTEGER <- 000004000h;
+  - cst_gl_hint_bit:INTEGER <- 000008000h;
+  - cst_gl_eval_bit:INTEGER <- 000010000h;
+  - cst_gl_list_bit:INTEGER <- 000020000h;
+  - cst_gl_texture_bit:INTEGER <- 000040000h;
+  - cst_gl_scissor_bit:INTEGER <- 000080000h;
+  - cst_gl_all_attrib_bits:INTEGER <- 0000fffffh;
+  - cst_gl_points:INTEGER <- 00000h;
+  - cst_gl_lines:INTEGER <- 00001h;
+  - cst_gl_line_loop:INTEGER <- 00002h;
+  - cst_gl_line_strip:INTEGER <- 00003h;
+  - cst_gl_triangles:INTEGER <- 00004h;
+  - cst_gl_triangle_strip:INTEGER <- 00005h;
+  - cst_gl_triangle_fan:INTEGER <- 00006h;
+  - cst_gl_quads:INTEGER <- 00007h;
+  - cst_gl_quad_strip:INTEGER <- 00008h;
+  - cst_gl_polygon:INTEGER <- 00009h;
+  - cst_gl_zero:INTEGER <- 0;
+  - cst_gl_one:INTEGER <- 1;
+  - cst_gl_src_color:INTEGER <- 00300h;
+  - cst_gl_one_minus_src_color:INTEGER <- 00301h;
+  - cst_gl_src_alpha:INTEGER <- 00302h;
+  - cst_gl_one_minus_src_alpha:INTEGER <- 00303h;
+  - cst_gl_dst_alpha:INTEGER <- 00304h;
+  - cst_gl_one_minus_dst_alpha:INTEGER <- 00305h;
+  - cst_gl_dst_color:INTEGER <- 00306h;
+  - cst_gl_one_minus_dst_color:INTEGER <- 00307h;
+  - cst_gl_src_alpha_saturate:INTEGER <- 00308h;
+  - cst_gl_true:INTEGER <- 1;
+  - cst_gl_false:INTEGER <- 0;
+  - cst_gl_clip_plane0:INTEGER <- 03000h;
+  - cst_gl_clip_plane1:INTEGER <- 03001h;
+  - cst_gl_clip_plane2:INTEGER <- 03002h;
+  - cst_gl_clip_plane3:INTEGER <- 03003h;
+  - cst_gl_clip_plane4:INTEGER <- 03004h;
+  - cst_gl_clip_plane5:INTEGER <- 03005h;
+  - cst_gl_byte:INTEGER <- 01400h;
+  - cst_gl_unsigned_byte:INTEGER <- 01401h;
+  - cst_gl_short:INTEGER <- 01402h;
+  - cst_gl_unsigned_short:INTEGER <- 01403h;
+  - cst_gl_int:INTEGER <- 01404h;
+  - cst_gl_unsigned_int:INTEGER <- 01405h;
+  - cst_gl_float:INTEGER <- 01406h;
+  - cst_gl_2_bytes:INTEGER <- 01407h;
+  - cst_gl_3_bytes:INTEGER <- 01408h;
+  - cst_gl_4_bytes:INTEGER <- 01409h;
+  - cst_gl_double:INTEGER <- 0140Ah;
+  - cst_gl_none:INTEGER <- 0;
+  - cst_gl_front_left:INTEGER <- 00400h;
+  - cst_gl_front_right:INTEGER <- 00401h;
+  - cst_gl_back_left:INTEGER <- 00402h;
+  - cst_gl_back_right:INTEGER <- 00403h;
+  - cst_gl_front:INTEGER <- 00404h;
+  - cst_gl_back:INTEGER <- 00405h;
+  - cst_gl_left:INTEGER <- 00406h;
+  - cst_gl_right:INTEGER <- 00407h;
+  - cst_gl_front_and_back:INTEGER <- 00408h;
+  - cst_gl_aux0:INTEGER <- 00409h;
+  - cst_gl_aux1:INTEGER <- 0040Ah;
+  - cst_gl_aux2:INTEGER <- 0040Bh;
+  - cst_gl_aux3:INTEGER <- 0040Ch;
+  - cst_gl_no_error:INTEGER <- 0;
+  - cst_gl_invalid_enum:INTEGER <- 00500h;
+  - cst_gl_invalid_value:INTEGER <- 00501h;
+  - cst_gl_invalid_operation:INTEGER <- 00502h;
+  - cst_gl_stack_overflow:INTEGER <- 00503h;
+  - cst_gl_stack_underflow:INTEGER <- 00504h;
+  - cst_gl_out_of_memory:INTEGER <- 00505h;
+  - cst_gl_2d:INTEGER <- 00600h;
+  - cst_gl_3d:INTEGER <- 00601h;
+  - cst_gl_3d_color:INTEGER <- 00602h;
+  - cst_gl_3d_color_texture:INTEGER <- 00603h;
+  - cst_gl_4d_color_texture:INTEGER <- 00604h;
+  - cst_gl_pass_through_token:INTEGER <- 00700h;
+  - cst_gl_point_token:INTEGER <- 00701h;
+  - cst_gl_line_token:INTEGER <- 00702h;
+  - cst_gl_polygon_token:INTEGER <- 00703h;
+  - cst_gl_bitmap_token:INTEGER <- 00704h;
+  - cst_gl_draw_pixel_token:INTEGER <- 00705h;
+  - cst_gl_copy_pixel_token:INTEGER <- 00706h;
+  - cst_gl_line_reset_token:INTEGER <- 00707h;
+  - cst_gl_exp:INTEGER <- 00800h;
+  - cst_gl_exp2:INTEGER <- 00801h;
+  - cst_gl_cw:INTEGER <- 00900h;
+  - cst_gl_ccw:INTEGER <- 00901h;
+  - cst_gl_coeff:INTEGER <- 00A00h;
+  - cst_gl_order:INTEGER <- 00A01h;
+  - cst_gl_domain:INTEGER <- 00A02h;
+  - cst_gl_current_color:INTEGER <- 00B00h;
+  - cst_gl_current_index:INTEGER <- 00B01h;
+  - cst_gl_current_normal:INTEGER <- 00B02h;
+  - cst_gl_current_texture_coords:INTEGER <- 00B03h;
+  - cst_gl_current_raster_color:INTEGER <- 00B04h;
+  - cst_gl_current_raster_index:INTEGER <- 00B05h;
+  - cst_gl_current_raster_texture_coords:INTEGER <- 00B06h;
+  - cst_gl_current_raster_position:INTEGER <- 00B07h;
+  - cst_gl_current_raster_position_valid:INTEGER <- 00B08h;
+  - cst_gl_current_raster_distance:INTEGER <- 00B09h;
+  - cst_gl_point_smooth:INTEGER <- 00B10h;
+  - cst_gl_point_size:INTEGER <- 00B11h;
+  - cst_gl_point_size_range:INTEGER <- 00B12h;
+  - cst_gl_point_size_granularity:INTEGER <- 00B13h;
+  - cst_gl_line_smooth:INTEGER <- 00B20h;
+  - cst_gl_line_width:INTEGER <- 00B21h;
+  - cst_gl_line_width_range:INTEGER <- 00B22h;
+  - cst_gl_line_width_granularity:INTEGER <- 00B23h;
+  - cst_gl_line_stipple:INTEGER <- 00B24h;
+  - cst_gl_line_stipple_pattern:INTEGER <- 00B25h;
+  - cst_gl_line_stipple_repeat:INTEGER <- 00B26h;
+  - cst_gl_list_mode:INTEGER <- 00B30h;
+  - cst_gl_max_list_nesting:INTEGER <- 00B31h;
+  - cst_gl_list_base:INTEGER <- 00B32h;
+  - cst_gl_list_index:INTEGER <- 00B33h;
+  - cst_gl_polygon_mode:INTEGER <- 00B40h;
+  - cst_gl_polygon_smooth:INTEGER <- 00B41h;
+  - cst_gl_polygon_stipple:INTEGER <- 00B42h;
+  - cst_gl_edge_flag:INTEGER <- 00B43h;
+  - cst_gl_cull_face:INTEGER <- 00B44h;
+  - cst_gl_cull_face_mode:INTEGER <- 00B45h;
+  - cst_gl_front_face:INTEGER <- 00B46h;
+  - cst_gl_lighting:INTEGER <- 00B50h;
+  - cst_gl_light_model_local_viewer:INTEGER <- 00B51h;
+  - cst_gl_light_model_two_side:INTEGER <- 00B52h;
+  - cst_gl_light_model_ambient:INTEGER <- 00B53h;
+  - cst_gl_shade_model:INTEGER <- 00B54h;
+  - cst_gl_color_material_face:INTEGER <- 00B55h;
+  - cst_gl_color_material_parameter:INTEGER <- 00B56h;
+  - cst_gl_color_material:INTEGER <- 00B57h;
+  - cst_gl_fog:INTEGER <- 00B60h;
+  - cst_gl_fog_index:INTEGER <- 00B61h;
+  - cst_gl_fog_density:INTEGER <- 00B62h;
+  - cst_gl_fog_start:INTEGER <- 00B63h;
+  - cst_gl_fog_end:INTEGER <- 00B64h;
+  - cst_gl_fog_mode:INTEGER <- 00B65h;
+  - cst_gl_fog_color:INTEGER <- 00B66h;
+  - cst_gl_depth_range:INTEGER <- 00B70h;
+  - cst_gl_depth_test:INTEGER <- 00B71h;
+  - cst_gl_depth_writemask:INTEGER <- 00B72h;
+  - cst_gl_depth_clear_value:INTEGER <- 00B73h;
+  - cst_gl_depth_func:INTEGER <- 00B74h;
+  - cst_gl_accum_clear_value:INTEGER <- 00B80h;
+  - cst_gl_stencil_test:INTEGER <- 00B90h;
+  - cst_gl_stencil_clear_value:INTEGER <- 00B91h;
+  - cst_gl_stencil_func:INTEGER <- 00B92h;
+  - cst_gl_stencil_value_mask:INTEGER <- 00B93h;
+  - cst_gl_stencil_fail:INTEGER <- 00B94h;
+  - cst_gl_stencil_pass_depth_fail:INTEGER <- 00B95h;
+  - cst_gl_stencil_pass_depth_pass:INTEGER <- 00B96h;
+  - cst_gl_stencil_ref:INTEGER <- 00B97h;
+  - cst_gl_stencil_writemask:INTEGER <- 00B98h;
+  - cst_gl_matrix_mode:INTEGER <- 00BA0h;
+  - cst_gl_normalize:INTEGER <- 00BA1h;
+  - cst_gl_viewport:INTEGER <- 00BA2h;
+  - cst_gl_modelview_stack_depth:INTEGER <- 00BA3h;
+  - cst_gl_projection_stack_depth:INTEGER <- 00BA4h;
+  - cst_gl_texture_stack_depth:INTEGER <- 00BA5h;
+  - cst_gl_modelview_matrix:INTEGER <- 00BA6h;
+  - cst_gl_projection_matrix:INTEGER <- 00BA7h;
+  - cst_gl_texture_matrix:INTEGER <- 00BA8h;
+  - cst_gl_attrib_stack_depth:INTEGER <- 00BB0h;
+  - cst_gl_client_attrib_stack_depth:INTEGER <- 00BB1h;
+  - cst_gl_alpha_test:INTEGER <- 00BC0h;
+  - cst_gl_alpha_test_func:INTEGER <- 00BC1h;
+  - cst_gl_alpha_test_ref:INTEGER <- 00BC2h;
+  - cst_gl_dither:INTEGER <- 00BD0h;
+  - cst_gl_blend_dst:INTEGER <- 00BE0h;
+  - cst_gl_blend_src:INTEGER <- 00BE1h;
+  - cst_gl_blend:INTEGER <- 00BE2h;
+  - cst_gl_logic_op_mode:INTEGER <- 00BF0h;
+  - cst_gl_index_logic_op:INTEGER <- 00BF1h;
+  - cst_gl_color_logic_op:INTEGER <- 00BF2h;
+  - cst_gl_aux_buffers:INTEGER <- 00C00h;
+  - cst_gl_draw_buffer:INTEGER <- 00C01h;
+  - cst_gl_read_buffer:INTEGER <- 00C02h;
+  - cst_gl_scissor_box:INTEGER <- 00C10h;
+  - cst_gl_scissor_test:INTEGER <- 00C11h;
+  - cst_gl_index_clear_value:INTEGER <- 00C20h;
+  - cst_gl_index_writemask:INTEGER <- 00C21h;
+  - cst_gl_color_clear_value:INTEGER <- 00C22h;
+  - cst_gl_color_writemask:INTEGER <- 00C23h;
+  - cst_gl_index_mode:INTEGER <- 00C30h;
+  - cst_gl_rgba_mode:INTEGER <- 00C31h;
+  - cst_gl_doublebuffer:INTEGER <- 00C32h;
+  - cst_gl_stereo:INTEGER <- 00C33h;
+  - cst_gl_render_mode:INTEGER <- 00C40h;
+  - cst_gl_perspective_correction_hint:INTEGER <- 00C50h;
+  - cst_gl_point_smooth_hint:INTEGER <- 00C51h;
+  - cst_gl_line_smooth_hint:INTEGER <- 00C52h;
+  - cst_gl_polygon_smooth_hint:INTEGER <- 00C53h;
+  - cst_gl_fog_hint:INTEGER <- 00C54h;
+  - cst_gl_texture_gen_s:INTEGER <- 00C60h;
+  - cst_gl_texture_gen_t:INTEGER <- 00C61h;
+  - cst_gl_texture_gen_r:INTEGER <- 00C62h;
+  - cst_gl_texture_gen_q:INTEGER <- 00C63h;
+  - cst_gl_pixel_map_i_to_i:INTEGER <- 00C70h;
+  - cst_gl_pixel_map_s_to_s:INTEGER <- 00C71h;
+  - cst_gl_pixel_map_i_to_r:INTEGER <- 00C72h;
+  - cst_gl_pixel_map_i_to_g:INTEGER <- 00C73h;
+  - cst_gl_pixel_map_i_to_b:INTEGER <- 00C74h;
+  - cst_gl_pixel_map_i_to_a:INTEGER <- 00C75h;
+  - cst_gl_pixel_map_r_to_r:INTEGER <- 00C76h;
+  - cst_gl_pixel_map_g_to_g:INTEGER <- 00C77h;
+  - cst_gl_pixel_map_b_to_b:INTEGER <- 00C78h;
+  - cst_gl_pixel_map_a_to_a:INTEGER <- 00C79h;
+  - cst_gl_pixel_map_i_to_i_size:INTEGER <- 00CB0h;
+  - cst_gl_pixel_map_s_to_s_size:INTEGER <- 00CB1h;
+  - cst_gl_pixel_map_i_to_r_size:INTEGER <- 00CB2h;
+  - cst_gl_pixel_map_i_to_g_size:INTEGER <- 00CB3h;
+  - cst_gl_pixel_map_i_to_b_size:INTEGER <- 00CB4h;
+  - cst_gl_pixel_map_i_to_a_size:INTEGER <- 00CB5h;
+  - cst_gl_pixel_map_r_to_r_size:INTEGER <- 00CB6h;
+  - cst_gl_pixel_map_g_to_g_size:INTEGER <- 00CB7h;
+  - cst_gl_pixel_map_b_to_b_size:INTEGER <- 00CB8h;
+  - cst_gl_pixel_map_a_to_a_size:INTEGER <- 00CB9h;
+  - cst_gl_unpack_swap_bytes:INTEGER <- 00CF0h;
+  - cst_gl_unpack_lsb_first:INTEGER <- 00CF1h;
+  - cst_gl_unpack_row_length:INTEGER <- 00CF2h;
+  - cst_gl_unpack_skip_rows:INTEGER <- 00CF3h;
+  - cst_gl_unpack_skip_pixels:INTEGER <- 00CF4h;
+  - cst_gl_unpack_alignment:INTEGER <- 00CF5h;
+  - cst_gl_pack_swap_bytes:INTEGER <- 00D00h;
+  - cst_gl_pack_lsb_first:INTEGER <- 00D01h;
+  - cst_gl_pack_row_length:INTEGER <- 00D02h;
+  - cst_gl_pack_skip_rows:INTEGER <- 00D03h;
+  - cst_gl_pack_skip_pixels:INTEGER <- 00D04h;
+  - cst_gl_pack_alignment:INTEGER <- 00D05h;
+  - cst_gl_map_color:INTEGER <- 00D10h;
+  - cst_gl_map_stencil:INTEGER <- 00D11h;
+  - cst_gl_index_shift:INTEGER <- 00D12h;
+  - cst_gl_index_offset:INTEGER <- 00D13h;
+  - cst_gl_red_scale:INTEGER <- 00D14h;
+  - cst_gl_red_bias:INTEGER <- 00D15h;
+  - cst_gl_zoom_x:INTEGER <- 00D16h;
+  - cst_gl_zoom_y:INTEGER <- 00D17h;
+  - cst_gl_green_scale:INTEGER <- 00D18h;
+  - cst_gl_green_bias:INTEGER <- 00D19h;
+  - cst_gl_blue_scale:INTEGER <- 00D1Ah;
+  - cst_gl_blue_bias:INTEGER <- 00D1Bh;
+  - cst_gl_alpha_scale:INTEGER <- 00D1Ch;
+  - cst_gl_alpha_bias:INTEGER <- 00D1Dh;
+  - cst_gl_depth_scale:INTEGER <- 00D1Eh;
+  - cst_gl_depth_bias:INTEGER <- 00D1Fh;
+  - cst_gl_max_eval_order:INTEGER <- 00D30h;
+  - cst_gl_max_lights:INTEGER <- 00D31h;
+  - cst_gl_max_clip_planes:INTEGER <- 00D32h;
+  - cst_gl_max_texture_size:INTEGER <- 00D33h;
+  - cst_gl_max_pixel_map_table:INTEGER <- 00D34h;
+  - cst_gl_max_attrib_stack_depth:INTEGER <- 00D35h;
+  - cst_gl_max_modelview_stack_depth:INTEGER <- 00D36h;
+  - cst_gl_max_name_stack_depth:INTEGER <- 00D37h;
+  - cst_gl_max_projection_stack_depth:INTEGER <- 00D38h;
+  - cst_gl_max_texture_stack_depth:INTEGER <- 00D39h;
+  - cst_gl_max_viewport_dims:INTEGER <- 00D3Ah;
+  - cst_gl_max_client_attrib_stack_depth:INTEGER <- 00D3Bh;
+  - cst_gl_subpixel_bits:INTEGER <- 00D50h;
+  - cst_gl_index_bits:INTEGER <- 00D51h;
+  - cst_gl_red_bits:INTEGER <- 00D52h;
+  - cst_gl_green_bits:INTEGER <- 00D53h;
+  - cst_gl_blue_bits:INTEGER <- 00D54h;
+  - cst_gl_alpha_bits:INTEGER <- 00D55h;
+  - cst_gl_depth_bits:INTEGER <- 00D56h;
+  - cst_gl_stencil_bits:INTEGER <- 00D57h;
+  - cst_gl_accum_red_bits:INTEGER <- 00D58h;
+  - cst_gl_accum_green_bits:INTEGER <- 00D59h;
+  - cst_gl_accum_blue_bits:INTEGER <- 00D5Ah;
+  - cst_gl_accum_alpha_bits:INTEGER <- 00D5Bh;
+  - cst_gl_name_stack_depth:INTEGER <- 00D70h;
+  - cst_gl_auto_normal:INTEGER <- 00D80h;
+  - cst_gl_map1_color_4:INTEGER <- 00D90h;
+  - cst_gl_map1_index:INTEGER <- 00D91h;
+  - cst_gl_map1_normal:INTEGER <- 00D92h;
+  - cst_gl_map1_texture_coord_1:INTEGER <- 00D93h;
+  - cst_gl_map1_texture_coord_2:INTEGER <- 00D94h;
+  - cst_gl_map1_texture_coord_3:INTEGER <- 00D95h;
+  - cst_gl_map1_texture_coord_4:INTEGER <- 00D96h;
+  - cst_gl_map1_vertex_3:INTEGER <- 00D97h;
+  - cst_gl_map1_vertex_4:INTEGER <- 00D98h;
+  - cst_gl_map2_color_4:INTEGER <- 00DB0h;
+  - cst_gl_map2_index:INTEGER <- 00DB1h;
+  - cst_gl_map2_normal:INTEGER <- 00DB2h;
+  - cst_gl_map2_texture_coord_1:INTEGER <- 00DB3h;
+  - cst_gl_map2_texture_coord_2:INTEGER <- 00DB4h;
+  - cst_gl_map2_texture_coord_3:INTEGER <- 00DB5h;
+  - cst_gl_map2_texture_coord_4:INTEGER <- 00DB6h;
+  - cst_gl_map2_vertex_3:INTEGER <- 00DB7h;
+  - cst_gl_map2_vertex_4:INTEGER <- 00DB8h;
+  - cst_gl_map1_grid_domain:INTEGER <- 00DD0h;
+  - cst_gl_map1_grid_segments:INTEGER <- 00DD1h;
+  - cst_gl_map2_grid_domain:INTEGER <- 00DD2h;
+  - cst_gl_map2_grid_segments:INTEGER <- 00DD3h;
+  - cst_gl_texture_1d:INTEGER <- 00DE0h;
+  - cst_gl_texture_2d:INTEGER <- 00DE1h;
+  - cst_gl_feedback_buffer_pointer:INTEGER <- 00DF0h;
+  - cst_gl_feedback_buffer_size:INTEGER <- 00DF1h;
+  - cst_gl_feedback_buffer_type:INTEGER <- 00DF2h;
+  - cst_gl_selection_buffer_pointer:INTEGER <- 00DF3h;
+  - cst_gl_selection_buffer_size:INTEGER <- 00DF4h;
+  - cst_gl_texture_width:INTEGER <- 01000h;
+  - cst_gl_texture_height:INTEGER <- 01001h;
+  - cst_gl_texture_internal_format:INTEGER <- 01003h;
+  - cst_gl_texture_border_color:INTEGER <- 01004h;
+  - cst_gl_texture_border:INTEGER <- 01005h;
+  - cst_gl_dont_care:INTEGER <- 01100h;
+  - cst_gl_fastest:INTEGER <- 01101h;
+  - cst_gl_nicest:INTEGER <- 01102h;
+  - cst_gl_light0:INTEGER <- 04000h;
+  - cst_gl_light1:INTEGER <- 04001h;
+  - cst_gl_light2:INTEGER <- 04002h;
+  - cst_gl_light3:INTEGER <- 04003h;
+  - cst_gl_light4:INTEGER <- 04004h;
+  - cst_gl_light5:INTEGER <- 04005h;
+  - cst_gl_light6:INTEGER <- 04006h;
+  - cst_gl_light7:INTEGER <- 04007h;
+  - cst_gl_ambient:INTEGER <- 01200h;
+  - cst_gl_diffuse:INTEGER <- 01201h;
+  - cst_gl_specular:INTEGER <- 01202h;
+  - cst_gl_position:INTEGER <- 01203h;
+  - cst_gl_spot_direction:INTEGER <- 01204h;
+  - cst_gl_spot_exponent:INTEGER <- 01205h;
+  - cst_gl_spot_cutoff:INTEGER <- 01206h;
+  - cst_gl_constant_attenuation:INTEGER <- 01207h;
+  - cst_gl_linear_attenuation:INTEGER <- 01208h;
+  - cst_gl_quadratic_attenuation:INTEGER <- 01209h;
+  - cst_gl_compile:INTEGER <- 01300h;
+  - cst_gl_compile_and_execute:INTEGER <- 01301h;
+  - cst_gl_clear:INTEGER <- 01500h;
+  - cst_gl_and:INTEGER <- 01501h;
+  - cst_gl_and_reverse:INTEGER <- 01502h;
+  - cst_gl_copy:INTEGER <- 01503h;
+  - cst_gl_and_inverted:INTEGER <- 01504h;
+  - cst_gl_noop:INTEGER <- 01505h;
+  - cst_gl_xor:INTEGER <- 01506h;
+  - cst_gl_or:INTEGER <- 01507h;
+  - cst_gl_nor:INTEGER <- 01508h;
+  - cst_gl_equiv:INTEGER <- 01509h;
+  - cst_gl_invert:INTEGER <- 0150Ah;
+  - cst_gl_or_reverse:INTEGER <- 0150Bh;
+  - cst_gl_copy_inverted:INTEGER <- 0150Ch;
+  - cst_gl_or_inverted:INTEGER <- 0150Dh;
+  - cst_gl_nand:INTEGER <- 0150Eh;
+  - cst_gl_set:INTEGER <- 0150Fh;
+  - cst_gl_emission:INTEGER <- 01600h;
+  - cst_gl_shininess:INTEGER <- 01601h;
+  - cst_gl_ambient_and_diffuse:INTEGER <- 01602h;
+  - cst_gl_color_indexes:INTEGER <- 01603h;
+  - cst_gl_modelview:INTEGER <- 01700h;
+  - cst_gl_projection:INTEGER <- 01701h;
+  - cst_gl_texture:INTEGER <- 01702h;
+  - cst_gl_color:INTEGER <- 01800h;
+  - cst_gl_depth:INTEGER <- 01801h;
+  - cst_gl_stencil:INTEGER <- 01802h;
+  - cst_gl_color_index:INTEGER <- 01900h;
+  - cst_gl_stencil_index:INTEGER <- 01901h;
+  - cst_gl_depth_component:INTEGER <- 01902h;
+  - cst_gl_red:INTEGER <- 01903h;
+  - cst_gl_green:INTEGER <- 01904h;
+  - cst_gl_blue:INTEGER <- 01905h;
+  - cst_gl_alpha:INTEGER <- 01906h;
+  - cst_gl_rgb:INTEGER <- 01907h;
+  - cst_gl_rgba:INTEGER <- 01908h;
+  - cst_gl_luminance:INTEGER <- 01909h;
+  - cst_gl_luminance_alpha:INTEGER <- 0190Ah;
+  - cst_gl_bitmap:INTEGER <- 01A00h;
+  - cst_gl_point:INTEGER <- 01B00h;
+  - cst_gl_line:INTEGER <- 01B01h;
+  - cst_gl_fill:INTEGER <- 01B02h;
+  - cst_gl_render:INTEGER <- 01C00h;
+  - cst_gl_feedback:INTEGER <- 01C01h;
+  - cst_gl_select:INTEGER <- 01C02h;
+  - cst_gl_flat:INTEGER <- 01D00h;
+  - cst_gl_smooth:INTEGER <- 01D01h;
+  - cst_gl_keep:INTEGER <- 01E00h;
+  - cst_gl_replace:INTEGER <- 01E01h;
+  - cst_gl_incr:INTEGER <- 01E02h;
+  - cst_gl_decr:INTEGER <- 01E03h;
+  - cst_gl_vendor:INTEGER <- 01F00h;
+  - cst_gl_renderer:INTEGER <- 01F01h;
+  - cst_gl_version:INTEGER <- 01F02h;
+  - cst_gl_extensions:INTEGER <- 01F03h;
+  - cst_gl_s:INTEGER <- 02000h;
+  - cst_gl_t:INTEGER <- 02001h;
+  - cst_gl_r:INTEGER <- 02002h;
+  - cst_gl_q:INTEGER <- 02003h;
+  - cst_gl_modulate:INTEGER <- 02100h;
+  - cst_gl_decal:INTEGER <- 02101h;
+  - cst_gl_texture_env_mode:INTEGER <- 02200h;
+  - cst_gl_texture_env_color:INTEGER <- 02201h;
+  - cst_gl_texture_env:INTEGER <- 02300h;
+  - cst_gl_eye_linear:INTEGER <- 02400h;
+  - cst_gl_object_linear:INTEGER <- 02401h;
+  - cst_gl_sphere_map:INTEGER <- 02402h;
+  - cst_gl_texture_gen_mode:INTEGER <- 02500h;
+  - cst_gl_object_plane:INTEGER <- 02501h;
+  - cst_gl_eye_plane:INTEGER <- 02502h;
+  - cst_gl_nearest:INTEGER <- 02600h;
+  - cst_gl_linear:INTEGER <- 02601h;
+  - cst_gl_nearest_mipmap_nearest:INTEGER <- 02700h;
+  - cst_gl_linear_mipmap_nearest:INTEGER <- 02701h;
+  - cst_gl_nearest_mipmap_linear:INTEGER <- 02702h;
+  - cst_gl_linear_mipmap_linear:INTEGER <- 02703h;
+  - cst_gl_texture_mag_filter:INTEGER <- 02800h;
+  - cst_gl_texture_min_filter:INTEGER <- 02801h;
+  - cst_gl_texture_wrap_s:INTEGER <- 02802h;
+  - cst_gl_texture_wrap_t:INTEGER <- 02803h;
+  - cst_gl_clamp:INTEGER <- 02900h;
+  - cst_gl_repeat:INTEGER <- 02901h;
+  - cst_gl_client_pixel_store_bit:INTEGER <- 000000001h;
+  - cst_gl_client_vertex_array_bit:INTEGER <- 000000002h;
+  - cst_gl_client_all_attrib_bits:INTEGER <- 0ffffffffh;
+  - cst_gl_polygon_offset_factor:INTEGER <- 08038h;
+  - cst_gl_polygon_offset_units:INTEGER <- 02A00h;
+  - cst_gl_polygon_offset_point:INTEGER <- 02A01h;
+  - cst_gl_polygon_offset_line:INTEGER <- 02A02h;
+  - cst_gl_polygon_offset_fill:INTEGER <- 08037h;
+  - cst_gl_alpha4:INTEGER <- 0803Bh;
+  - cst_gl_alpha8:INTEGER <- 0803Ch;
+  - cst_gl_alpha12:INTEGER <- 0803Dh;
+  - cst_gl_alpha16:INTEGER <- 0803Eh;
+  - cst_gl_luminance4:INTEGER <- 0803Fh;
+  - cst_gl_luminance8:INTEGER <- 08040h;
+  - cst_gl_luminance12:INTEGER <- 08041h;
+  - cst_gl_luminance16:INTEGER <- 08042h;
+  - cst_gl_luminance4_alpha4:INTEGER <- 08043h;
+  - cst_gl_luminance6_alpha2:INTEGER <- 08044h;
+  - cst_gl_luminance8_alpha8:INTEGER <- 08045h;
+  - cst_gl_luminance12_alpha4:INTEGER <- 08046h;
+  - cst_gl_luminance12_alpha12:INTEGER <- 08047h;
+  - cst_gl_luminance16_alpha16:INTEGER <- 08048h;
+  - cst_gl_intensity:INTEGER <- 08049h;
+  - cst_gl_intensity4:INTEGER <- 0804Ah;
+  - cst_gl_intensity8:INTEGER <- 0804Bh;
+  - cst_gl_intensity12:INTEGER <- 0804Ch;
+  - cst_gl_intensity16:INTEGER <- 0804Dh;
+  - cst_gl_r3_g3_b2:INTEGER <- 02A10h;
+  - cst_gl_rgb4:INTEGER <- 0804Fh;
+  - cst_gl_rgb5:INTEGER <- 08050h;
+  - cst_gl_rgb8:INTEGER <- 08051h;
+  - cst_gl_rgb10:INTEGER <- 08052h;
+  - cst_gl_rgb12:INTEGER <- 08053h;
+  - cst_gl_rgb16:INTEGER <- 08054h;
+  - cst_gl_rgba2:INTEGER <- 08055h;
+  - cst_gl_rgba4:INTEGER <- 08056h;
+  - cst_gl_rgb5_a1:INTEGER <- 08057h;
+  - cst_gl_rgba8:INTEGER <- 08058h;
+  - cst_gl_rgb10_a2:INTEGER <- 08059h;
+  - cst_gl_rgba12:INTEGER <- 0805Ah;
+  - cst_gl_rgba16:INTEGER <- 0805Bh;
+  - cst_gl_texture_red_size:INTEGER <- 0805Ch;
+  - cst_gl_texture_green_size:INTEGER <- 0805Dh;
+  - cst_gl_texture_blue_size:INTEGER <- 0805Eh;
+  - cst_gl_texture_alpha_size:INTEGER <- 0805Fh;
+  - cst_gl_texture_luminance_size:INTEGER <- 08060h;
+  - cst_gl_texture_intensity_size:INTEGER <- 08061h;
+  - cst_gl_proxy_texture_1d:INTEGER <- 08063h;
+  - cst_gl_proxy_texture_2d:INTEGER <- 08064h;
+  - cst_gl_texture_priority:INTEGER <- 08066h;
+  - cst_gl_texture_resident:INTEGER <- 08067h;
+  - cst_gl_texture_binding_1d:INTEGER <- 08068h;
+  - cst_gl_texture_binding_2d:INTEGER <- 08069h;
+  - cst_gl_vertex_array:INTEGER <- 08074h;
+  - cst_gl_normal_array:INTEGER <- 08075h;
+  - cst_gl_color_array:INTEGER <- 08076h;
+  - cst_gl_index_array:INTEGER <- 08077h;
+  - cst_gl_texture_coord_array:INTEGER <- 08078h;
+  - cst_gl_edge_flag_array:INTEGER <- 08079h;
+  - cst_gl_vertex_array_size:INTEGER <- 0807Ah;
+  - cst_gl_vertex_array_type:INTEGER <- 0807Bh;
+  - cst_gl_vertex_array_stride:INTEGER <- 0807Ch;
+  - cst_gl_normal_array_type:INTEGER <- 0807Eh;
+  - cst_gl_normal_array_stride:INTEGER <- 0807Fh;
+  - cst_gl_color_array_size:INTEGER <- 08081h;
+  - cst_gl_color_array_type:INTEGER <- 08082h;
+  - cst_gl_color_array_stride:INTEGER <- 08083h;
+  - cst_gl_index_array_type:INTEGER <- 08085h;
+  - cst_gl_index_array_stride:INTEGER <- 08086h;
+  - cst_gl_texture_coord_array_size:INTEGER <- 08088h;
+  - cst_gl_texture_coord_array_type:INTEGER <- 08089h;
+  - cst_gl_texture_coord_array_stride:INTEGER <- 0808Ah;
+  - cst_gl_edge_flag_array_stride:INTEGER <- 0808Ch;
+  - cst_gl_vertex_array_pointer:INTEGER <- 0808Eh;
+  - cst_gl_normal_array_pointer:INTEGER <- 0808Fh;
+  - cst_gl_color_array_pointer:INTEGER <- 08090h;
+  - cst_gl_index_array_pointer:INTEGER <- 08091h;
+  - cst_gl_texture_coord_array_pointer:INTEGER <- 08092h;
+  - cst_gl_edge_flag_array_pointer:INTEGER <- 08093h;
+  - cst_gl_v2f:INTEGER <- 02A20h;
+  - cst_gl_v3f:INTEGER <- 02A21h;
+  - cst_gl_c4ub_v2f:INTEGER <- 02A22h;
+  - cst_gl_c4ub_v3f:INTEGER <- 02A23h;
+  - cst_gl_c3f_v3f:INTEGER <- 02A24h;
+  - cst_gl_n3f_v3f:INTEGER <- 02A25h;
+  - cst_gl_c4f_n3f_v3f:INTEGER <- 02A26h;
+  - cst_gl_t2f_v3f:INTEGER <- 02A27h;
+  - cst_gl_t4f_v4f:INTEGER <- 02A28h;
+  - cst_gl_t2f_c4ub_v3f:INTEGER <- 02A29h;
+  - cst_gl_t2f_c3f_v3f:INTEGER <- 02A2Ah;
+  - cst_gl_t2f_n3f_v3f:INTEGER <- 02A2Bh;
+  - cst_gl_t2f_c4f_n3f_v3f:INTEGER <- 02A2Ch;
+  - cst_gl_t4f_c4f_n3f_v4f:INTEGER <- 02A2Dh;
+  - cst_gl_ext_vertex_array:INTEGER <- 1;
+  - cst_gl_win_swap_hint:INTEGER <- 1;
+  - cst_gl_ext_bgra:INTEGER <- 1;
+  - cst_gl_ext_paletted_texture:INTEGER <- 1;
+  - cst_gl_vertex_array_ext:INTEGER <- 08074h;
+  - cst_gl_normal_array_ext:INTEGER <- 08075h;
+  - cst_gl_color_array_ext:INTEGER <- 08076h;
+  - cst_gl_index_array_ext:INTEGER <- 08077h;
+  - cst_gl_texture_coord_array_ext:INTEGER <- 08078h;
+  - cst_gl_edge_flag_array_ext:INTEGER <- 08079h;
+  - cst_gl_vertex_array_size_ext:INTEGER <- 0807Ah;
+  - cst_gl_vertex_array_type_ext:INTEGER <- 0807Bh;
+  - cst_gl_vertex_array_stride_ext:INTEGER <- 0807Ch;
+  - cst_gl_vertex_array_count_ext:INTEGER <- 0807Dh;
+  - cst_gl_normal_array_type_ext:INTEGER <- 0807Eh;
+  - cst_gl_normal_array_stride_ext:INTEGER <- 0807Fh;
+  - cst_gl_normal_array_count_ext:INTEGER <- 08080h;
+  - cst_gl_color_array_size_ext:INTEGER <- 08081h;
+  - cst_gl_color_array_type_ext:INTEGER <- 08082h;
+  - cst_gl_color_array_stride_ext:INTEGER <- 08083h;
+  - cst_gl_color_array_count_ext:INTEGER <- 08084h;
+  - cst_gl_index_array_type_ext:INTEGER <- 08085h;
+  - cst_gl_index_array_stride_ext:INTEGER <- 08086h;
+  - cst_gl_index_array_count_ext:INTEGER <- 08087h;
+  - cst_gl_texture_coord_array_size_ext:INTEGER <- 08088h;
+  - cst_gl_texture_coord_array_type_ext:INTEGER <- 08089h;
+  - cst_gl_texture_coord_array_stride_ext:INTEGER <- 0808Ah;
+  - cst_gl_texture_coord_array_count_ext:INTEGER <- 0808Bh;
+  - cst_gl_edge_flag_array_stride_ext:INTEGER <- 0808Ch;
+  - cst_gl_edge_flag_array_count_ext:INTEGER <- 0808Dh;
+  - cst_gl_vertex_array_pointer_ext:INTEGER <- 0808Eh;
+  - cst_gl_normal_array_pointer_ext:INTEGER <- 0808Fh;
+  - cst_gl_color_array_pointer_ext:INTEGER <- 08090h;
+  - cst_gl_index_array_pointer_ext:INTEGER <- 08091h;
+  - cst_gl_texture_coord_array_pointer_ext:INTEGER <- 08092h;
+  - cst_gl_edge_flag_array_pointer_ext:INTEGER <- 08093h;
+  - cst_gl_bgr_ext:INTEGER <- 080E0h;
+  - cst_gl_bgra_ext:INTEGER <- 080E1h;
+  - cst_gl_color_table_format_ext:INTEGER <- 080D8h;
+  - cst_gl_color_table_width_ext:INTEGER <- 080D9h;
+  - cst_gl_color_table_red_size_ext:INTEGER <- 080DAh;
+  - cst_gl_color_table_green_size_ext:INTEGER <- 080DBh;
+  - cst_gl_color_table_blue_size_ext:INTEGER <- 080DCh;
+  - cst_gl_color_table_alpha_size_ext:INTEGER <- 080DDh;
+  - cst_gl_color_table_luminance_size_ext:INTEGER <- 080DEh;
+  - cst_gl_color_table_intensity_size_ext:INTEGER <- 080DFh;
+  - cst_gl_color_index1_ext:INTEGER <- 080E2h;
+  - cst_gl_color_index2_ext:INTEGER <- 080E3h;
+  - cst_gl_color_index4_ext:INTEGER <- 080E4h;
+  - cst_gl_color_index8_ext:INTEGER <- 080E5h;
+  - cst_gl_color_index12_ext:INTEGER <- 080E6h;
+  - cst_gl_color_index16_ext:INTEGER <- 080E7h;
+//
+// OpenGL functions.
+//
+
+  - gl_accum (op:UINTEGER_32, value:REAL_32) <- `glAccum(@op, at value)`;
+  - gl_alpha_func (func:UINTEGER_32, ref:REAL_32) <- `glAlphaFunc(@func, at ref)`;
+  - gl_are_textures_resident (n:INTEGER, textures:POINTER, residences:POINTER) :UINTEGER_8 <- `glAreTexturesResident(@n, at textures, at residences)`:UINTEGER_8;
+  - gl_array_element (i:INTEGER) <- `glArrayElement(@i)`;
+  - gl_begin (mode:UINTEGER_32) <- `glBegin(@mode)`;
+  - gl_bind_texture (target:UINTEGER_32, texture:UINTEGER_32) <- `glBindTexture(@target, at texture)`;
+  - gl_bitmap (width:INTEGER, height:INTEGER, xorig:REAL_32, yorig:REAL_32, xmove:REAL_32, ymove:REAL_32, bitmap:POINTER)
+ <- `glBitmap(@width, at height, at xorig, at yorig, at xmove, at ymove, at bitmap)`;
+  - gl_blend_func (sfactor:UINTEGER_32, dfactor:UINTEGER_32) <- `glBlendFunc(@sfactor, at dfactor)`;
+  - gl_call_list (list:UINTEGER_32) <- `glCallList(@list)`;
+  - gl_call_lists (n:INTEGER, type:UINTEGER_32, lists:POINTER) <- `glCallLists(@n, at type, at lists)`;
+  - gl_clear (mask:UINTEGER_32) <- `glClear(@mask)`;
+  - gl_clear_accum (red:REAL_32, green:REAL_32, blue:REAL_32, alpha:REAL_32) <- `glClearAccum(@red, at green, at blue, at alpha)`;
+  - gl_clear_color (red:REAL_32, green:REAL_32, blue:REAL_32, alpha:REAL_32) <- `glClearColor(@red, at green, at blue, at alpha)`;
+  - gl_clear_depth (depth:REAL_32) <- `glClearDepth(@depth)`;
+  - gl_clear_index (c:REAL_32) <- `glClearIndex(@c)`;
+  - gl_clear_stencil (s:INTEGER) <- `glClearStencil(@s)`;
+  - gl_clip_plane (plane:UINTEGER_32, equation:POINTER) <- `glClipPlane(@plane, at equation)`;
+  - gl_color3b (red:INTEGER_8, green:INTEGER_8, blue:INTEGER_8) <- `glColor3b(@red, at green, at blue)`;
+  - gl_color3bv (v:POINTER) <- `glColor3bv(@v)`;
+  - gl_color3d (red:REAL_32, green:REAL_32, blue:REAL_32) <- `glColor3d(@red, at green, at blue)`;
+  - gl_color3dv (v:POINTER) <- `glColor3dv(@v)`;
+  - gl_color3f (red:REAL_32, green:REAL_32, blue:REAL_32) <- `glColor3f(@red, at green, at blue)`;
+  - gl_color3fv (v:POINTER) <- `glColor3fv(@v)`;
+  - gl_color3i (red:INTEGER, green:INTEGER, blue:INTEGER) <- `glColor3i(@red, at green, at blue)`;
+  - gl_color3iv (v:POINTER) <- `glColor3iv(@v)`;
+  - gl_color3s (red:INTEGER_16, green:INTEGER_16, blue:INTEGER_16) <- `glColor3s(@red, at green, at blue)`;
+  - gl_color3sv (v:POINTER) <- `glColor3sv(@v)`;
+  - gl_color3ub (red:UINTEGER_8, green:UINTEGER_8, blue:UINTEGER_8) <- `glColor3ub(@red, at green, at blue)`;
+  - gl_color3ubv (v:POINTER) <- `glColor3ubv(@v)`;
+  - gl_color3ui (red:UINTEGER_32, green:UINTEGER_32, blue:UINTEGER_32) <- `glColor3ui(@red, at green, at blue)`;
+  - gl_color3uiv (v:POINTER) <- `glColor3uiv(@v)`;
+  - gl_color3us (red:UINTEGER_16, green:UINTEGER_16, blue:UINTEGER_16) <- `glColor3us(@red, at green, at blue)`;
+  - gl_color3usv (v:POINTER) <- `glColor3usv(@v)`;
+  - gl_color4b (red:INTEGER_8, green:INTEGER_8, blue:INTEGER_8, alpha:INTEGER_8) <- `glColor4b(@red, at green, at blue, at alpha)`;
+  - gl_color4bv (v:POINTER) <- `glColor4bv(@v)`;
+  - gl_color4d (red:REAL_32, green:REAL_32, blue:REAL_32, alpha:REAL_32) <- `glColor4d(@red, at green, at blue, at alpha)`;
+  - gl_color4dv (v:POINTER) <- `glColor4dv(@v)`;
+  - gl_color4f (red:REAL_32, green:REAL_32, blue:REAL_32, alpha:REAL_32) <- `glColor4f(@red, at green, at blue, at alpha)`;
+  - gl_color4fv (v:POINTER) <- `glColor4fv(@v)`;
+  - gl_color4i (red:INTEGER, green:INTEGER, blue:INTEGER, alpha:INTEGER) <- `glColor4i(@red, at green, at blue, at alpha)`;
+  - gl_color4iv (v:POINTER) <- `glColor4iv(@v)`;
+  - gl_color4s (red:INTEGER_16, green:INTEGER_16, blue:INTEGER_16, alpha:INTEGER_16) <- `glColor4s(@red, at green, at blue, at alpha)`;
+  - gl_color4sv (v:POINTER) <- `glColor4sv(@v)`;
+  - gl_color4ub (red:UINTEGER_8, green:UINTEGER_8, blue:UINTEGER_8, alpha:UINTEGER_8) <- `glColor4ub(@red, at green, at blue, at alpha)`;
+  - gl_color4ubv (v:POINTER) <- `glColor4ubv(@v)`;
+  - gl_color4ui (red:UINTEGER_32, green:UINTEGER_32, blue:UINTEGER_32, alpha:UINTEGER_32) <- `glColor4ui(@red, at green, at blue, at alpha)`;
+  - gl_color4uiv (v:POINTER) <- `glColor4uiv(@v)`;
+  - gl_color4us (red:UINTEGER_16, green:UINTEGER_16, blue:UINTEGER_16, alpha:UINTEGER_16) <- `glColor4us(@red, at green, at blue, at alpha)`;
+  - gl_color4usv (v:POINTER) <- `glColor4usv(@v)`;
+  - gl_color_mask (red:UINTEGER_8, green:UINTEGER_8, blue:UINTEGER_8, alpha:UINTEGER_8) <- `glColorMask(@red, at green, at blue, at alpha)`;
+  - gl_color_material (face:UINTEGER_32, mode:UINTEGER_32) <- `glColorMaterial(@face, at mode)`;
+  - gl_color_pointer (size:INTEGER, type:UINTEGER_32, stride:INTEGER, pointer:POINTER) <- `glColorPointer(@size, at type, at stride, at pointer)`;
+  - gl_copy_pixels (x:INTEGER, y:INTEGER, width:INTEGER, height:INTEGER, type:UINTEGER_32) <- `glCopyPixels(@x, at y, at width, at height, at type)`;
+  - gl_copy_tex_image1_d (target:UINTEGER_32, level:INTEGER, internal_format:UINTEGER_32, x:INTEGER, y:INTEGER, width:INTEGER, border:INTEGER)
+ <- `glCopyTexImage1D(@target, at level, at internal_format, at x, at y, at width, at border)`;
+  - gl_copy_tex_image2_d (target:UINTEGER_32, level:INTEGER, internal_format:UINTEGER_32, x:INTEGER, y:INTEGER, width:INTEGER, height:INTEGER, border:INTEGER)
+ <- `glCopyTexImage2D(@target, at level, at internal_format, at x, at y, at width, at height, at border)`;
+  - gl_copy_tex_sub_image1_d (target:UINTEGER_32, level:INTEGER, xoffset:INTEGER, x:INTEGER, y:INTEGER, width:INTEGER) <- `glCopyTexSubImage1D(@target, at level, at xoffset, at x, at y, at width)`;
+  - gl_copy_tex_sub_image2_d (target:UINTEGER_32, level:INTEGER, xoffset:INTEGER, yoffset:INTEGER, x:INTEGER, y:INTEGER, width:INTEGER, height:INTEGER)
+ <- `glCopyTexSubImage2D(@target, at level, at xoffset, at yoffset, at x, at y, at width, at height)`;
+  - gl_cull_face (mode:UINTEGER_32) <- `glCullFace(@mode)`;
+  - gl_delete_lists (list:UINTEGER_32, range:INTEGER) <- `glDeleteLists(@list, at range)`;
+  - gl_delete_textures (n:INTEGER, textures:POINTER) <- `glDeleteTextures(@n, at textures)`;
+  - gl_depth_func (func:UINTEGER_32) <- `glDepthFunc(@func)`;
+  - gl_depth_mask (flag:UINTEGER_8) <- `glDepthMask(@flag)`;
+  - gl_depth_range (z_near:REAL_32, z_far:REAL_32) <- `glDepthRange(@z_near, at z_far)`;
+  - gl_disable (cap:UINTEGER_32) <- `glDisable(@cap)`;
+  - gl_disable_client_state (array:UINTEGER_32) <- `glDisableClientState(@array)`;
+  - gl_draw_arrays (mode:UINTEGER_32, first:INTEGER, count:INTEGER) <- `glDrawArrays(@mode, at first, at count)`;
+  - gl_draw_buffer (mode:UINTEGER_32) <- `glDrawBuffer(@mode)`;
+  - gl_draw_elements (mode:UINTEGER_32, count:INTEGER, type:UINTEGER_32, indices:POINTER) <- `glDrawElements(@mode, at count, at type, at indices)`;
+  - gl_draw_pixels (width:INTEGER, height:INTEGER, format:UINTEGER_32, type:UINTEGER_32, pixels:POINTER) <- `glDrawPixels(@width, at height, at format, at type, at pixels)`;
+  - gl_edge_flag (flag:UINTEGER_8) <- `glEdgeFlag(@flag)`;
+  - gl_edge_flag_pointer (stride:INTEGER, pointer:POINTER) <- `glEdgeFlagPointer(@stride, at pointer)`;
+  - gl_edge_flagv (flag:POINTER) <- `glEdgeFlagv(@flag)`;
+  - gl_enable (cap:UINTEGER_32) <- `glEnable(@cap)`;
+  - gl_enable_client_state (array:UINTEGER_32) <- `glEnableClientState(@array)`;
+  - gl_end <- `glEnd()`;
+  - gl_end_list <- `glEndList()`;
+  - gl_eval_coord1d (u:REAL_32) <- `glEvalCoord1d(@u)`;
+  - gl_eval_coord1dv (u:POINTER) <- `glEvalCoord1dv(@u)`;
+  - gl_eval_coord1f (u:REAL_32) <- `glEvalCoord1f(@u)`;
+  - gl_eval_coord1fv (u:POINTER) <- `glEvalCoord1fv(@u)`;
+  - gl_eval_coord2d (u:REAL_32, v:REAL_32) <- `glEvalCoord2d(@u, at v)`;
+  - gl_eval_coord2dv (u:POINTER) <- `glEvalCoord2dv(@u)`;
+  - gl_eval_coord2f (u:REAL_32, v:REAL_32) <- `glEvalCoord2f(@u, at v)`;
+  - gl_eval_coord2fv (u:POINTER) <- `glEvalCoord2fv(@u)`;
+  - gl_eval_mesh1 (mode:UINTEGER_32, i1:INTEGER, i2:INTEGER) <- `glEvalMesh1(@mode, at i1, at i2)`;
+  - gl_eval_mesh2 (mode:UINTEGER_32, i1:INTEGER, i2:INTEGER, j1:INTEGER, j2:INTEGER) <- `glEvalMesh2(@mode, at i1, at i2, at j1, at j2)`;
+  - gl_eval_point1 (i:INTEGER) <- `glEvalPoint1(@i)`;
+  - gl_eval_point2 (i:INTEGER, j:INTEGER) <- `glEvalPoint2(@i, at j)`;
+  - gl_feedback_buffer (size:INTEGER, type:UINTEGER_32, buffer:POINTER) <- `glFeedbackBuffer(@size, at type, at buffer)`;
+  - gl_finish <- `glFinish()`;
+  - gl_flush <- `glFlush()`;
+  - gl_fogf (pname:UINTEGER_32, param:REAL_32) <- `glFogf(@pname, at param)`;
+  - gl_fogfv (pname:UINTEGER_32, params:POINTER) <- `glFogfv(@pname, at params)`;
+  - gl_fogi (pname:UINTEGER_32, param:INTEGER) <- `glFogi(@pname, at param)`;
+  - gl_fogiv (pname:UINTEGER_32, params:POINTER) <- `glFogiv(@pname, at params)`;
+  - gl_front_face (mode:UINTEGER_32) <- `glFrontFace(@mode)`;
+  - gl_frustum (left:REAL_32, right:REAL_32, bottom:REAL_32, top:REAL_32, z_near:REAL_32, z_far:REAL_32) <- `glFrustum(@left, at right, at bottom, at top, at z_near, at z_far)`;
+  - gl_gen_lists (range:INTEGER) :UINTEGER_32 <- `glGenLists(@range)`:UINTEGER_32;
+  - gl_gen_textures (n:INTEGER, textures:POINTER) <- `glGenTextures(@n, at textures)`;
+  - gl_get_booleanv (pname:UINTEGER_32, params:POINTER) <- `glGetBooleanv(@pname, at params)`;
+  - gl_get_clip_plane (plane:UINTEGER_32, equation:POINTER) <- `glGetClipPlane(@plane, at equation)`;
+  - gl_get_doublev (pname:UINTEGER_32, params:POINTER) <- `glGetDoublev(@pname, at params)`;
+  - gl_get_error :UINTEGER_32 <- `glGetError()`:UINTEGER_32;
+  - gl_get_floatv (pname:UINTEGER_32, params:POINTER) <- `glGetFloatv(@pname, at params)`;
+  - gl_get_integerv (pname:UINTEGER_32, params:POINTER) <- `glGetIntegerv(@pname, at params)`;
+  - gl_get_lightfv (light:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glGetLightfv(@light, at pname, at params)`;
+  - gl_get_lightiv (light:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glGetLightiv(@light, at pname, at params)`;
+  - gl_get_mapdv (target:UINTEGER_32, query:UINTEGER_32, v:POINTER) <- `glGetMapdv(@target, at query, at v)`;
+  - gl_get_mapfv (target:UINTEGER_32, query:UINTEGER_32, v:POINTER) <- `glGetMapfv(@target, at query, at v)`;
+  - gl_get_mapiv (target:UINTEGER_32, query:UINTEGER_32, v:POINTER) <- `glGetMapiv(@target, at query, at v)`;
+  - gl_get_materialfv (face:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glGetMaterialfv(@face, at pname, at params)`;
+  - gl_get_materialiv (face:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glGetMaterialiv(@face, at pname, at params)`;
+  - gl_get_pixel_mapfv (map:UINTEGER_32, values:POINTER) <- `glGetPixelMapfv(@map, at values)`;
+  - gl_get_pixel_mapuiv (map:UINTEGER_32, values:POINTER) <- `glGetPixelMapuiv(@map, at values)`;
+  - gl_get_pixel_mapusv (map:UINTEGER_32, values:POINTER) <- `glGetPixelMapusv(@map, at values)`;
+  - gl_get_pointerv (pname:UINTEGER_32, params:POINTER) <- `glGetPointerv(@pname, at params)`;
+  - gl_get_polygon_stipple (mask:POINTER) <- `glGetPolygonStipple(@mask)`;
+  - gl_get_string (name:UINTEGER_32) :POINTER <- `glGetString(@name)`:POINTER;
+  - gl_get_tex_envfv (target:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glGetTexEnvfv(@target, at pname, at params)`;
+  - gl_get_tex_enviv (target:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glGetTexEnviv(@target, at pname, at params)`;
+  - gl_get_tex_gendv (coord:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glGetTexGendv(@coord, at pname, at params)`;
+  - gl_get_tex_genfv (coord:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glGetTexGenfv(@coord, at pname, at params)`;
+  - gl_get_tex_geniv (coord:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glGetTexGeniv(@coord, at pname, at params)`;
+  - gl_get_tex_image (target:UINTEGER_32, level:INTEGER, format:UINTEGER_32, type:UINTEGER_32, pixels:POINTER) <- `glGetTexImage(@target, at level, at format, at type, at pixels)`;
+  - gl_get_tex_level_parameterfv (target:UINTEGER_32, level:INTEGER, pname:UINTEGER_32, params:POINTER) <- `glGetTexLevelParameterfv(@target, at level, at pname, at params)`;
+  - gl_get_tex_level_parameteriv (target:UINTEGER_32, level:INTEGER, pname:UINTEGER_32, params:POINTER) <- `glGetTexLevelParameteriv(@target, at level, at pname, at params)`;
+  - gl_get_tex_parameterfv (target:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glGetTexParameterfv(@target, at pname, at params)`;
+  - gl_get_tex_parameteriv (target:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glGetTexParameteriv(@target, at pname, at params)`;
+  - gl_hint (target:UINTEGER_32, mode:UINTEGER_32) <- `glHint(@target, at mode)`;
+  - gl_index_mask (mask:UINTEGER_32) <- `glIndexMask(@mask)`;
+  - gl_index_pointer (type:UINTEGER_32, stride:INTEGER, pointer:POINTER) <- `glIndexPointer(@type, at stride, at pointer)`;
+  - gl_indexd (c:REAL_32) <- `glIndexd(@c)`;
+  - gl_indexdv (c:POINTER) <- `glIndexdv(@c)`;
+  - gl_indexf (c:REAL_32) <- `glIndexf(@c)`;
+  - gl_indexfv (c:POINTER) <- `glIndexfv(@c)`;
+  - gl_indexi (c:INTEGER) <- `glIndexi(@c)`;
+  - gl_indexiv (c:POINTER) <- `glIndexiv(@c)`;
+  - gl_indexs (c:INTEGER_16) <- `glIndexs(@c)`;
+  - gl_indexsv (c:POINTER) <- `glIndexsv(@c)`;
+  - gl_indexub (c:UINTEGER_8) <- `glIndexub(@c)`;
+  - gl_indexubv (c:POINTER) <- `glIndexubv(@c)`;
+  - gl_init_names <- `glInitNames()`;
+  - gl_interleaved_arrays (format:UINTEGER_32, stride:INTEGER, pointer:POINTER) <- `glInterleavedArrays(@format, at stride, at pointer)`;
+  - gl_is_enabled (cap:UINTEGER_32) :UINTEGER_8 <- `glIsEnabled(@cap)`:UINTEGER_8;
+  - gl_is_list (list:UINTEGER_32) :UINTEGER_8 <- `glIsList(@list)`:UINTEGER_8;
+  - gl_is_texture (texture:UINTEGER_32) :UINTEGER_8 <- `glIsTexture(@texture)`:UINTEGER_8;
+  - gl_light_modelf (pname:UINTEGER_32, param:REAL_32) <- `glLightModelf(@pname, at param)`;
+  - gl_light_modelfv (pname:UINTEGER_32, params:POINTER) <- `glLightModelfv(@pname, at params)`;
+  - gl_light_modeli (pname:UINTEGER_32, param:INTEGER) <- `glLightModeli(@pname, at param)`;
+  - gl_light_modeliv (pname:UINTEGER_32, params:POINTER) <- `glLightModeliv(@pname, at params)`;
+  - gl_lightf (light:UINTEGER_32, pname:UINTEGER_32, param:REAL_32) <- `glLightf(@light, at pname, at param)`;
+  - gl_lightfv (light:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glLightfv(@light, at pname, at params)`;
+  - gl_lighti (light:UINTEGER_32, pname:UINTEGER_32, param:INTEGER) <- `glLighti(@light, at pname, at param)`;
+  - gl_lightiv (light:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glLightiv(@light, at pname, at params)`;
+  - gl_line_stipple (factor:INTEGER, pattern:UINTEGER_16) <- `glLineStipple(@factor, at pattern)`;
+  - gl_line_width (width:REAL_32) <- `glLineWidth(@width)`;
+  - gl_list_base (base:UINTEGER_32) <- `glListBase(@base)`;
+  - gl_load_identity <- `glLoadIdentity()`;
+  - gl_load_matrixd (m:POINTER) <- `glLoadMatrixd(@m)`;
+  - gl_load_matrixf (m:POINTER) <- `glLoadMatrixf(@m)`;
+  - gl_load_name (name:UINTEGER_32) <- `glLoadName(@name)`;
+  - gl_logic_op (opcode:UINTEGER_32) <- `glLogicOp(@opcode)`;
+  - gl_map1d (target:UINTEGER_32, u1:REAL_32, u2:REAL_32, stride:INTEGER, order:INTEGER, points:POINTER) <- `glMap1d(@target, at u1, at u2, at stride, at order, at points)`;
+  - gl_map1f (target:UINTEGER_32, u1:REAL_32, u2:REAL_32, stride:INTEGER, order:INTEGER, points:POINTER) <- `glMap1f(@target, at u1, at u2, at stride, at order, at points)`;
+  - gl_map2d (target:UINTEGER_32, u1:REAL_32, u2:REAL_32, ustride:INTEGER, uorder:INTEGER, v1:REAL_32, v2:REAL_32, vstride:INTEGER, vorder:INTEGER, points:POINTER)
+ <- `glMap2d(@target, at u1, at u2, at ustride, at uorder, at v1, at v2, at vstride, at vorder, at points)`;
+  - gl_map2f (target:UINTEGER_32, u1:REAL_32, u2:REAL_32, ustride:INTEGER, uorder:INTEGER, v1:REAL_32, v2:REAL_32, vstride:INTEGER, vorder:INTEGER, points:POINTER)
+ <- `glMap2f(@target, at u1, at u2, at ustride, at uorder, at v1, at v2, at vstride, at vorder, at points)`;
+  - gl_map_grid1d (un:INTEGER, u1:REAL_32, u2:REAL_32) <- `glMapGrid1d(@un, at u1, at u2)`;
+  - gl_map_grid1f (un:INTEGER, u1:REAL_32, u2:REAL_32) <- `glMapGrid1f(@un, at u1, at u2)`;
+  - gl_map_grid2d (un:INTEGER, u1:REAL_32, u2:REAL_32, vn:INTEGER, v1:REAL_32, v2:REAL_32) <- `glMapGrid2d(@un, at u1, at u2, at vn, at v1, at v2)`;
+  - gl_map_grid2f (un:INTEGER, u1:REAL_32, u2:REAL_32, vn:INTEGER, v1:REAL_32, v2:REAL_32) <- `glMapGrid2f(@un, at u1, at u2, at vn, at v1, at v2)`;
+  - gl_materialf (face:UINTEGER_32, pname:UINTEGER_32, param:REAL_32) <- `glMaterialf(@face, at pname, at param)`;
+  - gl_materialfv (face:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glMaterialfv(@face, at pname, at params)`;
+  - gl_materiali (face:UINTEGER_32, pname:UINTEGER_32, param:INTEGER) <- `glMateriali(@face, at pname, at param)`;
+  - gl_materialiv (face:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glMaterialiv(@face, at pname, at params)`;
+  - gl_matrix_mode (mode:UINTEGER_32) <- `glMatrixMode(@mode)`;
+  - gl_mult_matrixd (m:POINTER) <- `glMultMatrixd(@m)`;
+  - gl_mult_matrixf (m:POINTER) <- `glMultMatrixf(@m)`;
+  - gl_new_list (list:UINTEGER_32, mode:UINTEGER_32) <- `glNewList(@list, at mode)`;
+  - gl_normal3b (nx:INTEGER_8, ny:INTEGER_8, nz:INTEGER_8) <- `glNormal3b(@nx, at ny, at nz)`;
+  - gl_normal3bv (v:POINTER) <- `glNormal3bv(@v)`;
+  - gl_normal3d (nx:REAL_32, ny:REAL_32, nz:REAL_32) <- `glNormal3d(@nx, at ny, at nz)`;
+  - gl_normal3dv (v:POINTER) <- `glNormal3dv(@v)`;
+  - gl_normal3f (nx:REAL_32, ny:REAL_32, nz:REAL_32) <- `glNormal3f(@nx, at ny, at nz)`;
+  - gl_normal3fv (v:POINTER) <- `glNormal3fv(@v)`;
+  - gl_normal3i (nx:INTEGER, ny:INTEGER, nz:INTEGER) <- `glNormal3i(@nx, at ny, at nz)`;
+  - gl_normal3iv (v:POINTER) <- `glNormal3iv(@v)`;
+  - gl_normal3s (nx:INTEGER_16, ny:INTEGER_16, nz:INTEGER_16) <- `glNormal3s(@nx, at ny, at nz)`;
+  - gl_normal3sv (v:POINTER) <- `glNormal3sv(@v)`;
+  - gl_normal_pointer (type:UINTEGER_32, stride:INTEGER, pointer:POINTER) <- `glNormalPointer(@type, at stride, at pointer)`;
+  - gl_ortho (left:REAL_32, right:REAL_32, bottom:REAL_32, top:REAL_32, z_near:REAL_32, z_far:REAL_32) <- `glOrtho(@left, at right, at bottom, at top, at z_near, at z_far)`;
+  - gl_pass_through (token:REAL_32) <- `glPassThrough(@token)`;
+  - gl_pixel_mapfv (map:UINTEGER_32, mapsize:INTEGER, values:POINTER) <- `glPixelMapfv(@map, at mapsize, at values)`;
+  - gl_pixel_mapuiv (map:UINTEGER_32, mapsize:INTEGER, values:POINTER) <- `glPixelMapuiv(@map, at mapsize, at values)`;
+  - gl_pixel_mapusv (map:UINTEGER_32, mapsize:INTEGER, values:POINTER) <- `glPixelMapusv(@map, at mapsize, at values)`;
+  - gl_pixel_storef (pname:UINTEGER_32, param:REAL_32) <- `glPixelStoref(@pname, at param)`;
+  - gl_pixel_storei (pname:UINTEGER_32, param:INTEGER) <- `glPixelStorei(@pname, at param)`;
+  - gl_pixel_transferf (pname:UINTEGER_32, param:REAL_32) <- `glPixelTransferf(@pname, at param)`;
+  - gl_pixel_transferi (pname:UINTEGER_32, param:INTEGER) <- `glPixelTransferi(@pname, at param)`;
+  - gl_pixel_zoom (xfactor:REAL_32, yfactor:REAL_32) <- `glPixelZoom(@xfactor, at yfactor)`;
+  - gl_point_size (size:REAL_32) <- `glPointSize(@size)`;
+  - gl_polygon_mode (face:UINTEGER_32, mode:UINTEGER_32) <- `glPolygonMode(@face, at mode)`;
+  - gl_polygon_offset (factor:REAL_32, units:REAL_32) <- `glPolygonOffset(@factor, at units)`;
+  - gl_polygon_stipple (mask:POINTER) <- `glPolygonStipple(@mask)`;
+  - gl_pop_attrib <- `glPopAttrib()`;
+  - gl_pop_client_attrib <- `glPopClientAttrib()`;
+  - gl_pop_matrix <- `glPopMatrix()`;
+  - gl_pop_name <- `glPopName()`;
+  - gl_prioritize_textures (n:INTEGER, textures:POINTER, priorities:POINTER) <- `glPrioritizeTextures(@n, at textures, at priorities)`;
+  - gl_push_attrib (mask:UINTEGER_32) <- `glPushAttrib(@mask)`;
+  - gl_push_client_attrib (mask:UINTEGER_32) <- `glPushClientAttrib(@mask)`;
+  - gl_push_matrix <- `glPushMatrix()`;
+  - gl_push_name (name:UINTEGER_32) <- `glPushName(@name)`;
+  - gl_raster_pos2d (x:REAL_32, y:REAL_32) <- `glRasterPos2d(@x, at y)`;
+  - gl_raster_pos2dv (v:POINTER) <- `glRasterPos2dv(@v)`;
+  - gl_raster_pos2f (x:REAL_32, y:REAL_32) <- `glRasterPos2f(@x, at y)`;
+  - gl_raster_pos2fv (v:POINTER) <- `glRasterPos2fv(@v)`;
+  - gl_raster_pos2i (x:INTEGER, y:INTEGER) <- `glRasterPos2i(@x, at y)`;
+  - gl_raster_pos2iv (v:POINTER) <- `glRasterPos2iv(@v)`;
+  - gl_raster_pos2s (x:INTEGER_16, y:INTEGER_16) <- `glRasterPos2s(@x, at y)`;
+  - gl_raster_pos2sv (v:POINTER) <- `glRasterPos2sv(@v)`;
+  - gl_raster_pos3d (x:REAL_32, y:REAL_32, z:REAL_32) <- `glRasterPos3d(@x, at y, at z)`;
+  - gl_raster_pos3dv (v:POINTER) <- `glRasterPos3dv(@v)`;
+  - gl_raster_pos3f (x:REAL_32, y:REAL_32, z:REAL_32) <- `glRasterPos3f(@x, at y, at z)`;
+  - gl_raster_pos3fv (v:POINTER) <- `glRasterPos3fv(@v)`;
+  - gl_raster_pos3i (x:INTEGER, y:INTEGER, z:INTEGER) <- `glRasterPos3i(@x, at y, at z)`;
+  - gl_raster_pos3iv (v:POINTER) <- `glRasterPos3iv(@v)`;
+  - gl_raster_pos3s (x:INTEGER_16, y:INTEGER_16, z:INTEGER_16) <- `glRasterPos3s(@x, at y, at z)`;
+  - gl_raster_pos3sv (v:POINTER) <- `glRasterPos3sv(@v)`;
+  - gl_raster_pos4d (x:REAL_32, y:REAL_32, z:REAL_32, w:REAL_32) <- `glRasterPos4d(@x, at y, at z, at w)`;
+  - gl_raster_pos4dv (v:POINTER) <- `glRasterPos4dv(@v)`;
+  - gl_raster_pos4f (x:REAL_32, y:REAL_32, z:REAL_32, w:REAL_32) <- `glRasterPos4f(@x, at y, at z, at w)`;
+  - gl_raster_pos4fv (v:POINTER) <- `glRasterPos4fv(@v)`;
+  - gl_raster_pos4i (x:INTEGER, y:INTEGER, z:INTEGER, w:INTEGER) <- `glRasterPos4i(@x, at y, at z, at w)`;
+  - gl_raster_pos4iv (v:POINTER) <- `glRasterPos4iv(@v)`;
+  - gl_raster_pos4s (x:INTEGER_16, y:INTEGER_16, z:INTEGER_16, w:INTEGER_16) <- `glRasterPos4s(@x, at y, at z, at w)`;
+  - gl_raster_pos4sv (v:POINTER) <- `glRasterPos4sv(@v)`;
+  - gl_read_buffer (mode:UINTEGER_32) <- `glReadBuffer(@mode)`;
+  - gl_read_pixels (x:INTEGER, y:INTEGER, width:INTEGER, height:INTEGER, format:UINTEGER_32, type:UINTEGER_32, pixels:POINTER)
+ <- `glReadPixels(@x, at y, at width, at height, at format, at type, at pixels)`;
+  - gl_rectd (x1:REAL_32, y1:REAL_32, x2:REAL_32, y2:REAL_32) <- `glRectd(@x1, at y1, at x2, at y2)`;
+  - gl_rectdv (v1:POINTER, v2:POINTER) <- `glRectdv(@v1, at v2)`;
+  - gl_rectf (x1:REAL_32, y1:REAL_32, x2:REAL_32, y2:REAL_32) <- `glRectf(@x1, at y1, at x2, at y2)`;
+  - gl_rectfv (v1:POINTER, v2:POINTER) <- `glRectfv(@v1, at v2)`;
+  - gl_recti (x1:INTEGER, y1:INTEGER, x2:INTEGER, y2:INTEGER) <- `glRecti(@x1, at y1, at x2, at y2)`;
+  - gl_rectiv (v1:POINTER, v2:POINTER) <- `glRectiv(@v1, at v2)`;
+  - gl_rects (x1:INTEGER_16, y1:INTEGER_16, x2:INTEGER_16, y2:INTEGER_16) <- `glRects(@x1, at y1, at x2, at y2)`;
+  - gl_rectsv (v1:POINTER, v2:POINTER) <- `glRectsv(@v1, at v2)`;
+  - gl_render_mode (mode:UINTEGER_32) :INTEGER <- `glRenderMode(@mode)`:INTEGER;
+  - gl_rotated (angle:REAL_32, x:REAL_32, y:REAL_32, z:REAL_32) <- `glRotated(@angle, at x, at y, at z)`;
+  - gl_rotatef (angle:REAL_32, x:REAL_32, y:REAL_32, z:REAL_32) <- `glRotatef(@angle, at x, at y, at z)`;
+  - gl_scaled (x:REAL_32, y:REAL_32, z:REAL_32) <- `glScaled(@x, at y, at z)`;
+  - gl_scalef (x:REAL_32, y:REAL_32, z:REAL_32) <- `glScalef(@x, at y, at z)`;
+  - gl_scissor (x:INTEGER, y:INTEGER, width:INTEGER, height:INTEGER) <- `glScissor(@x, at y, at width, at height)`;
+  - gl_select_buffer (size:INTEGER, buffer:POINTER) <- `glSelectBuffer(@size, at buffer)`;
+  - gl_shade_model (mode:UINTEGER_32) <- `glShadeModel(@mode)`;
+  - gl_stencil_func (func:UINTEGER_32, ref:INTEGER, mask:UINTEGER_32) <- `glStencilFunc(@func, at ref, at mask)`;
+  - gl_stencil_mask (mask:UINTEGER_32) <- `glStencilMask(@mask)`;
+  - gl_stencil_op (fail:UINTEGER_32, zfail:UINTEGER_32, zpass:UINTEGER_32) <- `glStencilOp(@fail, at zfail, at zpass)`;
+  - gl_tex_coord1d (s:REAL_32) <- `glTexCoord1d(@s)`;
+  - gl_tex_coord1dv (v:POINTER) <- `glTexCoord1dv(@v)`;
+  - gl_tex_coord1f (s:REAL_32) <- `glTexCoord1f(@s)`;
+  - gl_tex_coord1fv (v:POINTER) <- `glTexCoord1fv(@v)`;
+  - gl_tex_coord1i (s:INTEGER) <- `glTexCoord1i(@s)`;
+  - gl_tex_coord1iv (v:POINTER) <- `glTexCoord1iv(@v)`;
+  - gl_tex_coord1s (s:INTEGER_16) <- `glTexCoord1s(@s)`;
+  - gl_tex_coord1sv (v:POINTER) <- `glTexCoord1sv(@v)`;
+  - gl_tex_coord2d (s:REAL_32, t:REAL_32) <- `glTexCoord2d(@s, at t)`;
+  - gl_tex_coord2dv (v:POINTER) <- `glTexCoord2dv(@v)`;
+  - gl_tex_coord2f (s:REAL_32, t:REAL_32) <- `glTexCoord2f(@s, at t)`;
+  - gl_tex_coord2fv (v:POINTER) <- `glTexCoord2fv(@v)`;
+  - gl_tex_coord2i (s:INTEGER, t:INTEGER) <- `glTexCoord2i(@s, at t)`;
+  - gl_tex_coord2iv (v:POINTER) <- `glTexCoord2iv(@v)`;
+  - gl_tex_coord2s (s:INTEGER_16, t:INTEGER_16) <- `glTexCoord2s(@s, at t)`;
+  - gl_tex_coord2sv (v:POINTER) <- `glTexCoord2sv(@v)`;
+  - gl_tex_coord3d (s:REAL_32, t:REAL_32, r:REAL_32) <- `glTexCoord3d(@s, at t, at r)`;
+  - gl_tex_coord3dv (v:POINTER) <- `glTexCoord3dv(@v)`;
+  - gl_tex_coord3f (s:REAL_32, t:REAL_32, r:REAL_32) <- `glTexCoord3f(@s, at t, at r)`;
+  - gl_tex_coord3fv (v:POINTER) <- `glTexCoord3fv(@v)`;
+  - gl_tex_coord3i (s:INTEGER, t:INTEGER, r:INTEGER) <- `glTexCoord3i(@s, at t, at r)`;
+  - gl_tex_coord3iv (v:POINTER) <- `glTexCoord3iv(@v)`;
+  - gl_tex_coord3s (s:INTEGER_16, t:INTEGER_16, r:INTEGER_16) <- `glTexCoord3s(@s, at t, at r)`;
+  - gl_tex_coord3sv (v:POINTER) <- `glTexCoord3sv(@v)`;
+  - gl_tex_coord4d (s:REAL_32, t:REAL_32, r:REAL_32, q:REAL_32) <- `glTexCoord4d(@s, at t, at r, at q)`;
+  - gl_tex_coord4dv (v:POINTER) <- `glTexCoord4dv(@v)`;
+  - gl_tex_coord4f (s:REAL_32, t:REAL_32, r:REAL_32, q:REAL_32) <- `glTexCoord4f(@s, at t, at r, at q)`;
+  - gl_tex_coord4fv (v:POINTER) <- `glTexCoord4fv(@v)`;
+  - gl_tex_coord4i (s:INTEGER, t:INTEGER, r:INTEGER, q:INTEGER) <- `glTexCoord4i(@s, at t, at r, at q)`;
+  - gl_tex_coord4iv (v:POINTER) <- `glTexCoord4iv(@v)`;
+  - gl_tex_coord4s (s:INTEGER_16, t:INTEGER_16, r:INTEGER_16, q:INTEGER_16) <- `glTexCoord4s(@s, at t, at r, at q)`;
+  - gl_tex_coord4sv (v:POINTER) <- `glTexCoord4sv(@v)`;
+  - gl_tex_coord_pointer (size:INTEGER, type:UINTEGER_32, stride:INTEGER, pointer:POINTER) <- `glTexCoordPointer(@size, at type, at stride, at pointer)`;
+  - gl_tex_envf (target:UINTEGER_32, pname:UINTEGER_32, param:REAL_32) <- `glTexEnvf(@target, at pname, at param)`;
+  - gl_tex_envfv (target:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glTexEnvfv(@target, at pname, at params)`;
+  - gl_tex_envi (target:UINTEGER_32, pname:UINTEGER_32, param:INTEGER) <- `glTexEnvi(@target, at pname, at param)`;
+  - gl_tex_enviv (target:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glTexEnviv(@target, at pname, at params)`;
+  - gl_tex_gend (coord:UINTEGER_32, pname:UINTEGER_32, param:REAL_32) <- `glTexGend(@coord, at pname, at param)`;
+  - gl_tex_gendv (coord:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glTexGendv(@coord, at pname, at params)`;
+  - gl_tex_genf (coord:UINTEGER_32, pname:UINTEGER_32, param:REAL_32) <- `glTexGenf(@coord, at pname, at param)`;
+  - gl_tex_genfv (coord:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glTexGenfv(@coord, at pname, at params)`;
+  - gl_tex_geni (coord:UINTEGER_32, pname:UINTEGER_32, param:INTEGER) <- `glTexGeni(@coord, at pname, at param)`;
+  - gl_tex_geniv (coord:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glTexGeniv(@coord, at pname, at params)`;
+  - gl_tex_image1_d (target:UINTEGER_32, level:INTEGER, internalformat:INTEGER, width:INTEGER, border:INTEGER, format:UINTEGER_32, type:UINTEGER_32, pixels:POINTER)
+ <- `glTexImage1D(@target, at level, at internalformat, at width, at border, at format, at type, at pixels)`;
+  - gl_tex_image2_d (target:UINTEGER_32, level:INTEGER, internalformat:INTEGER, width:INTEGER, height:INTEGER, border:INTEGER, format:UINTEGER_32, type:UINTEGER_32, pixels:POINTER)
+ <- `glTexImage2D(@target, at level, at internalformat, at width, at height, at border, at format, at type, at pixels)`;
+  - gl_tex_parameterf (target:UINTEGER_32, pname:UINTEGER_32, param:REAL_32) <- `glTexParameterf(@target, at pname, at param)`;
+  - gl_tex_parameterfv (target:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glTexParameterfv(@target, at pname, at params)`;
+  - gl_tex_parameteri (target:UINTEGER_32, pname:UINTEGER_32, param:INTEGER) <- `glTexParameteri(@target, at pname, at param)`;
+  - gl_tex_parameteriv (target:UINTEGER_32, pname:UINTEGER_32, params:POINTER) <- `glTexParameteriv(@target, at pname, at params)`;
+  - gl_tex_sub_image1_d (target:UINTEGER_32, level:INTEGER, xoffset:INTEGER, width:INTEGER, format:UINTEGER_32, type:UINTEGER_32, pixels:POINTER)
+ <- `glTexSubImage1D(@target, at level, at xoffset, at width, at format, at type, at pixels)`;
+  - gl_tex_sub_image2_d (target:UINTEGER_32, level:INTEGER, xoffset:INTEGER, yoffset:INTEGER, width:INTEGER, height:INTEGER, format:UINTEGER_32, type:UINTEGER_32, pixels:POINTER)
+ <- `glTexSubImage2D(@target, at level, at xoffset, at yoffset, at width, at height, at format, at type, at pixels)`;
+  - gl_translated (x:REAL_32, y:REAL_32, z:REAL_32) <- `glTranslated(@x, at y, at z)`;
+  - gl_translatef (x:REAL_32, y:REAL_32, z:REAL_32) <- `glTranslatef(@x, at y, at z)`;
+  - gl_vertex2d (x:REAL_32, y:REAL_32) <- `glVertex2d(@x, at y)`;
+  - gl_vertex2dv (v:POINTER) <- `glVertex2dv(@v)`;
+  - gl_vertex2f (x:REAL_32, y:REAL_32) <- `glVertex2f(@x, at y)`;
+  - gl_vertex2fv (v:POINTER) <- `glVertex2fv(@v)`;
+  - gl_vertex2i (x:INTEGER, y:INTEGER) <- `glVertex2i(@x, at y)`;
+  - gl_vertex2iv (v:POINTER) <- `glVertex2iv(@v)`;
+  - gl_vertex2s (x:INTEGER_16, y:INTEGER_16) <- `glVertex2s(@x, at y)`;
+  - gl_vertex2sv (v:POINTER) <- `glVertex2sv(@v)`;
+  - gl_vertex3d (x:REAL_32, y:REAL_32, z:REAL_32) <- `glVertex3d(@x, at y, at z)`;
+  - gl_vertex3dv (v:POINTER) <- `glVertex3dv(@v)`;
+  - gl_vertex3f (x:REAL_32, y:REAL_32, z:REAL_32) <- `glVertex3f(@x, at y, at z)`;
+  - gl_vertex3fv (v:POINTER) <- `glVertex3fv(@v)`;
+  - gl_vertex3i (x:INTEGER, y:INTEGER, z:INTEGER) <- `glVertex3i(@x, at y, at z)`;
+  - gl_vertex3iv (v:POINTER) <- `glVertex3iv(@v)`;
+  - gl_vertex3s (x:INTEGER_16, y:INTEGER_16, z:INTEGER_16) <- `glVertex3s(@x, at y, at z)`;
+  - gl_vertex3sv (v:POINTER) <- `glVertex3sv(@v)`;
+  - gl_vertex4d (x:REAL_32, y:REAL_32, z:REAL_32, w:REAL_32) <- `glVertex4d(@x, at y, at z, at w)`;
+  - gl_vertex4dv (v:POINTER) <- `glVertex4dv(@v)`;
+  - gl_vertex4f (x:REAL_32, y:REAL_32, z:REAL_32, w:REAL_32) <- `glVertex4f(@x, at y, at z, at w)`;
+  - gl_vertex4fv (v:POINTER) <- `glVertex4fv(@v)`;
+  - gl_vertex4i (x:INTEGER, y:INTEGER, z:INTEGER, w:INTEGER) <- `glVertex4i(@x, at y, at z, at w)`;
+  - gl_vertex4iv (v:POINTER) <- `glVertex4iv(@v)`;
+  - gl_vertex4s (x:INTEGER_16, y:INTEGER_16, z:INTEGER_16, w:INTEGER_16) <- `glVertex4s(@x, at y, at z, at w)`;
+  - gl_vertex4sv (v:POINTER) <- `glVertex4sv(@v)`;
+  - gl_vertex_pointer (size:INTEGER, type:UINTEGER_32, stride:INTEGER, pointer:POINTER) <- `glVertexPointer(@size, at type, at stride, at pointer)`;
+  - gl_viewport (x:INTEGER, y:INTEGER, width:INTEGER, height:INTEGER) <- `glViewport(@x, at y, at width, at height)`;
diff --git a/lib/unstable/opengl/opengl/gl_abstract_texture.li b/lib/unstable/opengl/opengl/gl_abstract_texture.li
new file mode 100644
index 0000000..75028fa
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_abstract_texture.li
@@ -0,0 +1,282 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_ABSTRACT_TEXTURE;
+  
+  - comment  := "OpenGL rendered image";
+  
+  - external := `unsigned int texture_id;`;
+  
+Section Inherit
+  
+  - parent_texture:Expanded TEXTURE;
+  
+Section Public
+  
+  - decal:INTEGER <- `GL_DECAL`:INTEGER;
+  - replace:INTEGER <- `GL_REPLACE`:INTEGER;
+  - modulate:INTEGER <- `GL_MODULATE`:INTEGER;
+  - blend:INTEGER <- `GL_BLEND`:INTEGER;
+  
+  - clamp:INTEGER <- `GL_CLAMP`:INTEGER;
+  - repeat:INTEGER <- `GL_REPEAT`:INTEGER;
+  
+  - clamp_to_edge:INTEGER <- `0x812F`:INTEGER; //GL_CLAMP_TO_EDGE`:INTEGER; 
+  //-> not supported on every cards & GL implementations !!
+  
+  
+  + id:UINTEGER_32; // OpenGL id  
+  
+  - make_from image:IMAGE <-
+  (
+    + type,env_mode,mode:INTEGER;
+    + data:POINTER;
+    
+    set_image image;
+    
+    (channels = 4).if {
+      type := `GL_RGBA`:INTEGER;
+    }.elseif {channels = 3} then {
+      type := `GL_RGB`:INTEGER;
+    }.elseif {channels = 1} then {  
+      type := `GL_LUMINANCE`:INTEGER;
+    };
+    
+    mode := target;
+    data := image_data.to_external;
+    
+    // create OpenGL texture
+    `glGenTextures(1, &texture_id)`;
+    id := `texture_id`:INTEGER;
+    
+    // set pixel aligment
+    `glPixelStorei (GL_UNPACK_ALIGNMENT, 1)`;
+    
+    // select new texture
+    `glBindTexture(@mode, texture_id)`;
+    
+    //--- OpenGL texture parameters
+    filter
+    .when filter_mipmap then {
+      
+      `glTexParameteri(@mode,GL_TEXTURE_MIN_FILTER,GL_LINEAR_MIPMAP_NEAREST)`;
+      `glTexParameteri(@mode,GL_TEXTURE_MAG_FILTER,GL_LINEAR_MIPMAP_LINEAR)`;
+      raw_create_mipmap (channels,width,height,type) data data;
+      
+    }.when filter_linear then {
+      `glTexParameteri(@mode,GL_TEXTURE_MIN_FILTER,GL_LINEAR)`;
+      `glTexParameteri(@mode,GL_TEXTURE_MAG_FILTER,GL_LINEAR)`;
+      
+      raw_create (channels,width,height,type) data data;
+      
+    }.when filter_nearest then {  
+      `glTexParameteri(@mode,GL_TEXTURE_MIN_FILTER,GL_NEAREST)`;
+      `glTexParameteri(@mode,GL_TEXTURE_MAG_FILTER,GL_NEAREST)`;
+      
+      raw_create (channels,width,height,type) data data;
+    };
+    //---
+    
+    // set texture function
+    env_mode := drawing_mode;
+    `glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, @env_mode)`;
+    
+    // wrapping function (clamp or repeat)
+    env_mode := wrapping_mode;
+    `glTexParameteri(@mode, GL_TEXTURE_WRAP_S, @env_mode)`; 
+    `glTexParameteri(@mode, GL_TEXTURE_WRAP_T, @env_mode)`;
+  );
+  
+  - make_from_data pixels:FAST_ARRAY(UINTEGER_8) size (w,h:INTEGER) type t:INTEGER <-
+  (
+    + image:IMAGE;
+    
+    image := IMAGE.create_empty "" size (w,h) type t allocate FALSE;
+    image.set_data pixels;
+    
+    make_from image; 
+  );
+  
+  - make_from_framebuffer (x,y,w,h:INTEGER) type t:INTEGER <-
+  (
+    + env_mode,mode:INTEGER;
+    + image:IMAGE;
+    
+    image := IMAGE.create_empty "" size (w,h) type t allocate FALSE;
+    set_image image;
+    
+    mode := target;
+  
+    
+    // create OpenGL texture
+    `glGenTextures(1, &texture_id)`;
+    id := `texture_id`:INTEGER;
+    
+    // set pixel aligment
+    `glPixelStorei (GL_UNPACK_ALIGNMENT, 1)`;
+    
+    // select new texture
+    `glBindTexture(@mode, texture_id)`;
+    
+    //--- OpenGL texture parameters
+    filter
+    .when filter_mipmap then {  
+      `glTexParameteri(@mode,GL_TEXTURE_MIN_FILTER,GL_LINEAR_MIPMAP_NEAREST)`;
+      `glTexParameteri(@mode,GL_TEXTURE_MAG_FILTER,GL_LINEAR_MIPMAP_LINEAR)`;      
+    }.when filter_linear then {
+      `glTexParameteri(@mode,GL_TEXTURE_MIN_FILTER,GL_LINEAR)`;
+      `glTexParameteri(@mode,GL_TEXTURE_MAG_FILTER,GL_LINEAR)`; 
+    }.when filter_nearest then {  
+      `glTexParameteri(@mode,GL_TEXTURE_MIN_FILTER,GL_NEAREST)`;
+      `glTexParameteri(@mode,GL_TEXTURE_MAG_FILTER,GL_NEAREST)`;
+    };
+    raw_copy (x,y,w,h) type t;
+    //---
+    
+    // set texture function
+    env_mode := drawing_mode;
+    `glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, @env_mode)`;
+    
+    // wrapping function (clamp or repeat)
+    env_mode := wrapping_mode;
+    `glTexParameteri(@mode, GL_TEXTURE_WRAP_S, @env_mode)`; 
+    `glTexParameteri(@mode, GL_TEXTURE_WRAP_T, @env_mode)`;
+  );
+  
+  - make_empty (w,h:INTEGER) type t:INTEGER <-
+  // slow...
+  (
+    + mode,type:INTEGER;
+    + image:IMAGE;
+    + p:POINTER;
+    
+    image := IMAGE.create_empty "" size (w,h) type t allocate TRUE;
+    set_image image;
+    
+    mode := target;
+     
+    (channels = 4).if {
+      type := `GL_RGBA`:INTEGER;
+    }.elseif {channels = 3} then {
+      type := `GL_RGB`:INTEGER;
+    }.elseif {channels = 1} then {  
+      type := `GL_LUMINANCE`:INTEGER;
+    };
+    
+    // create OpenGL texture
+    `glGenTextures(1, &texture_id)`;
+    id := `texture_id`:INTEGER;
+    
+    // set pixel aligment
+    `glPixelStorei (GL_UNPACK_ALIGNMENT, 1)`;
+    
+    // select new texture
+    `glBindTexture(@mode, texture_id)`;
+    
+    //--- OpenGL texture parameters
+    filter
+    .when filter_mipmap then {  
+      `glTexParameteri(@mode,GL_TEXTURE_MIN_FILTER,GL_LINEAR_MIPMAP_NEAREST)`;
+      `glTexParameteri(@mode,GL_TEXTURE_MAG_FILTER,GL_LINEAR_MIPMAP_LINEAR)`;      
+    }.when filter_linear then {
+      `glTexParameteri(@mode,GL_TEXTURE_MIN_FILTER,GL_LINEAR)`;
+      `glTexParameteri(@mode,GL_TEXTURE_MAG_FILTER,GL_LINEAR)`; 
+    }.when filter_nearest then {  
+      `glTexParameteri(@mode,GL_TEXTURE_MIN_FILTER,GL_NEAREST)`;
+      `glTexParameteri(@mode,GL_TEXTURE_MAG_FILTER,GL_NEAREST)`;
+    };
+    p := image_data.to_external;
+    `glTexImage2D(GL_TEXTURE_2D, 0, @t, @w, @h, 0, @type, GL_UNSIGNED_BYTE, @p)`;
+    //---  
+  );
+  
+  
+  - draw (x,y:INTEGER) <- deferred;
+  - draw_strech (x,y,w,h:INTEGER) <- deferred;
+  
+  
+  - push_attrib <-
+  (
+    `glPushAttrib(GL_TEXTURE_BIT)`;
+  );
+  
+  - pop_attrib <-
+  (
+    `glPopAttrib()`;
+  );
+  
+  - enable <-
+  (
+    parent_state.enable;
+    enable_unit 0;
+  );
+  
+  - disable <-
+  (
+    parent_state.disable;
+    disable_unit 0;
+  );
+  
+  - enable_unit n:INTEGER <-
+  ( + mode:INTEGER;
+    (OPENGL.arb_multitexture != NULL).if {
+      OPENGL.arb_multitexture.active_texture n;
+    };
+    mode := target;
+    `glEnable (@mode)`;
+  );
+  
+  - disable_unit n:INTEGER <-
+  ( + mode:INTEGER;
+    
+    (OPENGL.arb_multitexture != NULL).if {
+      OPENGL.arb_multitexture.active_texture n;
+    };
+    mode := target;
+    `glDisable (@mode)`;
+  );
+  
+  - bind <- 
+  (
+    bind_unit 0;
+  );
+  
+  - bind_unit n:INTEGER <- 
+  (
+    + id_tex,mode:INTEGER;
+    
+    enable_unit n;
+    
+    id_tex := id;
+    mode := target;
+    `glBindTexture(@mode, @id_tex)`;
+  );
+  
+Section GL_ABSTRACT_TEXTURE
+  
+  - target:INTEGER <- deferred;
+  
+  - raw_create (ch,w,h,type:INTEGER) data p:POINTER <- deferred;
+  - raw_create_mipmap (ch,w,h,type:INTEGER) data p:POINTER <- deferred;
+  
+  - raw_copy (x,y,w,h:INTEGER) type t:INTEGER <- deferred;
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_accum_buffer.li b/lib/unstable/opengl/opengl/gl_accum_buffer.li
new file mode 100644
index 0000000..b1f78e7
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_accum_buffer.li
@@ -0,0 +1,50 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_ACCUM_BUFFER;
+  
+  - comment  := "OpenGL Accumulation Buffer";
+  
+Section Inherit
+  
+  - parent_accum_buffer:ACCUM_BUFFER := ACCUM_BUFFER;
+  
+Section Public
+  
+  // accumulation functions
+  - accum:INTEGER <- `GL_ACCUM`:INTEGER;
+  - load:INTEGER <- `GL_LOAD`:INTEGER;
+  - return:INTEGER <- `GL_RETURN`:INTEGER; 
+  - add:INTEGER <- `GL_ADD`:INTEGER; 
+  - mult:INTEGER <- `GL_MULT`:INTEGER; 
+  
+  
+  - clear <-
+  (
+    `glClear(GL_ACCUM_BUFFER_BIT)`;
+  );
+  
+  - set_function f:INTEGER value val:REAL_32 <- 
+  (
+    `glAccum(@f, @val)`;
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_alpha_test.li b/lib/unstable/opengl/opengl/gl_alpha_test.li
new file mode 100644
index 0000000..3e9e595
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_alpha_test.li
@@ -0,0 +1,70 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_ALPHA_TEST;
+  
+  - comment  := "Alpha Testing (only in RGBA mode)";
+  
+Section Inherit
+  
+  - parent_alpha_test:ALPHA_TEST := ALPHA_TEST;
+ 
+Section Public
+  
+  // pixel test functions
+  - always:INTEGER <- `GL_ALWAYS`:INTEGER;
+  - never:INTEGER <- `GL_NEVER`:INTEGER;
+  - less:INTEGER <-  `GL_LESS`:INTEGER;
+  - lequal:INTEGER <- `GL_LEQUAL`:INTEGER;
+  - equal:INTEGER <- `GL_EQUAL`:INTEGER;
+  - gequal:INTEGER <- `GL_GEQUAL`:INTEGER;
+  - greater:INTEGER <- `GL_GREATER`:INTEGER;
+  - notequal:INTEGER <- `GL_NOTEQUAL`:INTEGER;
+  
+  
+  - enable <-
+  (
+    parent_state.enable;
+    `glEnable(GL_ALPHA_TEST)`;
+  );
+  
+  - disable <-
+  ( 
+    parent_state.disable;
+    `glDisable(GL_ALPHA_TEST)`;
+  );
+  
+  - push_attrib <-
+  (
+    `glPushAttrib(GL_ENABLE_BIT)`;
+  );
+  
+  - pop_attrib <-
+  (
+    `glPopAttrib()`;
+  );
+  
+  - apply f:INTEGER with val:REAL_32 <-
+  (
+    `glAlphaFunc(@f, @val)`;
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_blending.li b/lib/unstable/opengl/opengl/gl_blending.li
new file mode 100644
index 0000000..2da5002
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_blending.li
@@ -0,0 +1,77 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_BLENDING;
+  
+  - comment  := "Opengl Blending Mode";
+  
+Section Inherit
+  
+  - parent_blending:BLENDING := BLENDING;
+  
+Section Public
+  
+  // factors values
+  - zero:INTEGER <- `GL_ZERO`:INTEGER;
+  - one:INTEGER <- `GL_ONE`:INTEGER;
+  - dst_color:INTEGER <- `GL_DST_COLOR`:INTEGER;
+  - one_minus_dst_color:INTEGER <- `GL_ONE_MINUS_DST_COLOR`:INTEGER;
+  - src_color:INTEGER <- `GL_SRC_COLOR`:INTEGER;
+  - one_minus_src_color:INTEGER <- `GL_ONE_MINUS_SRC_COLOR`:INTEGER;
+  - src_alpha:INTEGER <- `GL_SRC_ALPHA`:INTEGER;
+  - one_minus_src_alpha:INTEGER <- `GL_ONE_MINUS_SRC_ALPHA`:INTEGER;
+  - dst_alpha:INTEGER <- `GL_DST_ALPHA`:INTEGER;
+  - one_minus_dst_alpha:INTEGER <- `GL_ONE_MINUS_DST_ALPHA`:INTEGER;
+  - src_alpha_saturate:INTEGER <- `GL_SRC_ALPHA_SATURATE`:INTEGER;
+  
+  - enable <-
+  (
+    parent_state.enable;
+    `glEnable(GL_BLEND)`;
+  );
+  
+  - disable <-
+  ( 
+    parent_state.disable;
+    `glDisable(GL_BLEND)`;
+  );
+  
+  - push_attrib <-
+  (
+    `glPushAttrib(GL_ENABLE_BIT)`;
+  );
+  
+  - pop_attrib <-
+  (
+    `glPopAttrib()`;
+  );
+  
+  - apply (src_factor,dst_factor:INTEGER) <-
+  (   
+    `glBlendFunc(@src_factor, @dst_factor)`;
+  );
+  
+  - set_alpha_value alpha:REAL_32 <-
+  (
+    `glColor4f(1.0f, 1.0f, 1.0f, @alpha)`; 
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_color_buffer.li b/lib/unstable/opengl/opengl/gl_color_buffer.li
new file mode 100644
index 0000000..b505b65
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_color_buffer.li
@@ -0,0 +1,140 @@
+///////////////////////////////////////////////////////////////////////////////
+//                           Lisaac-OpenGL library                           //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_COLOR_BUFFER;
+  
+  - comment  := "OpenGL pixel color buffer";
+  
+Section Inherit
+  
+  - parent_color_buffer:COLOR_BUFFER := COLOR_BUFFER;
+  
+Section Public
+  
+  - rgb:INTEGER <- `GL_RGB`:INTEGER;
+  - rgba:INTEGER <- `GL_RGBA`:INTEGER;
+  - red:INTEGER <- `GL_RED`:INTEGER;
+  - green:INTEGER <- `GL_GREEN`:INTEGER;
+  - blue:INTEGER <- `GL_BLUE`:INTEGER;
+  - alpha:INTEGER <- `GL_ALPHA`:INTEGER;
+  - luminance:INTEGER <- `GL_LUMINANCE`:INTEGER; // grey (single component)
+  - luminance_alpha:INTEGER <- `GL_LUMINANCE_ALPHA`:INTEGER; // grey+alpha
+  - stencil_index:INTEGER <- `GL_STENCIL_INDEX`:INTEGER;
+  - depth_component:INTEGER <- `GL_DEPTH_COMPONENT`:INTEGER;
+  
+  
+  - clear <- 
+  (
+    `glClear(GL_COLOR_BUFFER_BIT)`;
+  );
+  
+  - set_clear_value (r,g,b,a:REAL_32) <- 
+  (
+    `glClearColor(@r, @g, @b, @a)`;
+  );
+  
+  - set_color c:COLOR <- 
+  (
+    + r,g,b:REAL_32;
+    
+    r := c.r;
+    g := c.g;
+    b := c.b;
+    `glColor3f(@r, @g, @b)`;
+  );
+  
+  - set_color3f (r,g,b:REAL_32) <-
+  (
+    `glColor3f(@r, @g, @b)`;
+  );
+  
+  - set_color4f (r,g,b,a:REAL_32) <-
+  (
+    `glColor4f(@r, @g, @b, @a)`;
+  );
+  
+  - set_mask (r,g,b,a:BOOLEAN) <-
+  (
+    `glColorMask(@r, @g, @b, @a)`;
+  );
+  
+  - enable <-
+  (
+    `glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE)`;
+  );
+  
+  - disable <-
+  (
+    `glColorMask(GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE)`;
+  );
+  
+  - read (x,y:INTEGER) size (w,h:INTEGER) type t:INTEGER in buf:FAST_ARRAY(UINTEGER_8) <-
+  ( + p:POINTER;
+    
+    p := buf.to_external;
+    `glReadPixels(@x, at y, at w, at h, at t,GL_UNSIGNED_BYTE, at p)`; 
+  ); 
+  
+  // aliases
+  - read_rgb (x,y:INTEGER) size (w,h:INTEGER) in buf:FAST_ARRAY(UINTEGER_8) <-
+  ( 
+    read (x,y) size (w,h) type rgb in buf;
+  ); 
+   
+ - read_rgba (x,y:INTEGER) size (w,h:INTEGER) in buf:FAST_ARRAY(UINTEGER_8) <-
+  ( 
+    read (x,y) size (w,h) type rgba in buf;
+  );
+  
+  - draw_pixels pixels:FAST_ARRAY(UINTEGER_8) size (w,h:INTEGER) type t:INTEGER <-
+  ( + p:POINTER;
+    
+    p := pixels.to_external;
+    `glDrawPixels(@w, at h,GL_UNSIGNED_BYTE, at t, at p)`;
+  );
+  
+  - draw_rgb_pixels pixels:FAST_ARRAY(UINTEGER_8) size (w,h:INTEGER) <-
+  (
+    draw_pixels pixels size (w,h) type rgb;
+  );
+
+  - draw_rgba_pixels pixels:FAST_ARRAY(UINTEGER_8) size (w,h:INTEGER) <-
+  (
+    draw_pixels pixels size (w,h) type rgba;
+  );
+  
+  - copy (x,y:INTEGER) size (w,h:INTEGER) type t:INTEGER <-
+  (
+    `glCopyPixels(@x, at y, at w, at h, at t)`;
+  );
+  
+  - copy_rgb (x,y:INTEGER) size (w,h:INTEGER) <-
+  (
+    copy (x,y) size (w,h) type rgb;
+  );
+  
+  - copy_rgba (x,y:INTEGER) size (w,h:INTEGER) <-
+  (
+    copy (x,y) size (w,h) type rgba;
+  );
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_culling.li b/lib/unstable/opengl/opengl/gl_culling.li
new file mode 100644
index 0000000..186090b
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_culling.li
@@ -0,0 +1,73 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_CULLING;
+  
+  - comment  := "OpenGL Culling Mode";
+  
+Section Inherit
+  
+  - parent_culling:CULLING := CULLING;
+  
+Section Public
+  
+  // culling modes
+  - front:INTEGER <- `GL_FRONT`:INTEGER;
+  - back:INTEGER <- `GL_BACK`:INTEGER;
+  - clockwise:INTEGER <- `GL_CW`:INTEGER;
+  - counter_clockwise:INTEGER <- `GL_CCW`:INTEGER;
+  
+  
+  - apply mode:INTEGER <-
+  (
+    `glCullFace(@mode)`;
+  );
+  
+  - set_orientation o:INTEGER <-
+  (
+    `glFrontFace(@o)`;
+  );
+  
+  - enable <-
+  (
+    parent_state.enable;
+    `glEnable(GL_CULL_FACE)`;
+  );
+  
+  - disable <-
+  ( 
+    parent_state.disable;
+    `glDisable(GL_CULL_FACE)`;
+  );
+  
+  - push_attrib <-
+  (
+    `glPushAttrib(GL_ENABLE_BIT)`;
+  );
+  
+  - pop_attrib <-
+  (
+    `glPopAttrib()`;
+  );
+  
+  
diff --git a/lib/unstable/opengl/opengl/gl_depth_buffer.li b/lib/unstable/opengl/opengl/gl_depth_buffer.li
new file mode 100644
index 0000000..d7329a3
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_depth_buffer.li
@@ -0,0 +1,89 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_DEPTH_BUFFER;
+  
+  - comment  := "Opengl Depth Buffer";
+  
+Section Inherit
+  
+  - parent_buffer:DEPTH_BUFFER := DEPTH_BUFFER;
+  
+Section Public
+  
+  // pixel test functions
+  - always:INTEGER <- `GL_ALWAYS`:INTEGER;
+  - never:INTEGER <- `GL_NEVER`:INTEGER;
+  - less:INTEGER <-  `GL_LESS`:INTEGER;
+  - lequal:INTEGER <- `GL_LEQUAL`:INTEGER;
+  - equal:INTEGER <- `GL_EQUAL`:INTEGER;
+  - gequal:INTEGER <- `GL_GEQUAL`:INTEGER;
+  - greater:INTEGER <- `GL_GREATER`:INTEGER;
+  - notequal:INTEGER <- `GL_NOTEQUAL`:INTEGER;
+  
+  - enable <-
+  (
+    parent_state.enable;
+    `glEnable (GL_DEPTH_TEST)`;
+  );
+  
+  - disable <-
+  (
+    parent_state.disable;
+    `glDisable (GL_DEPTH_TEST)`;
+  );
+  
+  - push_attrib <-
+  (
+    `glPushAttrib(GL_ENABLE_BIT)`;
+  );
+  
+  - pop_attrib <-
+  (
+    `glPopAttrib()`;
+  );
+  
+  - set_clear_value val:REAL_32 <-
+  (
+    `glClearDepth(@val)`;
+  );
+  
+  - clear <- 
+  (
+    `glClear(GL_DEPTH_BUFFER_BIT)`;
+  );
+  
+  - set_function f:INTEGER <- 
+  (
+    `glDepthFunc(@f)`;
+  );
+  
+  - lock <- 
+  (
+    `glDepthMask(GL_TRUE)`;
+  );
+  
+  - unlock <-
+  (
+    `glDepthMask(GL_FALSE)`;
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_display_list.li b/lib/unstable/opengl/opengl/gl_display_list.li
new file mode 100644
index 0000000..3276d73
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_display_list.li
@@ -0,0 +1,71 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_DISPLAY_LIST;
+  
+  - author   := "OpenGL display list";
+
+Section Inherit
+  
+  - parent_display_list:DISPLAY_LIST := DISPLAY_LIST;
+  
+Section Public
+  
+  + id_list:INTEGER;// OpenGL id to call display list
+  
+  - create body:{} :SELF <-
+  (
+    + result:SELF;
+    result := SELF.clone;
+    result.make body;
+    result
+  );
+  
+  - make body:{} <-
+  (
+    + id:INTEGER;
+    
+    id := id_list := `glGenLists(1)`:INTEGER;
+    
+    `glNewList(@id, GL_COMPILE)`;
+    
+    body.value;
+    
+    `glEndList()`;
+  );
+  
+  - call <-
+  (
+    + id:INTEGER;
+    
+    id := id_list;
+    `glCallList(@id)`;
+  );
+  
+  - destroy <- 
+  (
+     + id:INTEGER;
+    
+    id := id_list;
+    `glDeleteLists(@id, 1)`;
+  );
diff --git a/lib/unstable/opengl/opengl/gl_error.li b/lib/unstable/opengl/opengl/gl_error.li
new file mode 100644
index 0000000..ab092e8
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_error.li
@@ -0,0 +1,67 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_ERROR; 
+  
+  - comment  := "OpenGL error";
+  
+Section Inherit
+  
+  - parent_error:ERROR := ERROR;
+  
+Section Public
+  
+  // 
+  // Error codes
+  //
+  
+  - no_error:INTEGER <- `GL_NO_ERROR`:INTEGER;
+  - invalid_enum:INTEGER <- `GL_INVALID_ENUM`:INTEGER;
+  - invalid_value:INTEGER <- `GL_INVALID_VALUE`:INTEGER;
+  - invalid_operation:INTEGER <- `GL_INVALID_OPERATION`:INTEGER;
+  - stack_overflow:INTEGER <- `GL_STACK_OVERFLOW`:INTEGER;
+  - stack_underflow:INTEGER <- `GL_STACK_UNDERFLOW`:INTEGER;
+  - out_of_memory:INTEGER <- `GL_OUT_OF_MEMORY`:INTEGER;
+  
+  
+  - get:INTEGER <- 
+  // return current error state variable
+  (
+    last_error := `glGetError()`:INTEGER;
+    last_error
+  );
+  
+
+  - get buffer:STRING from code:INTEGER <- 
+  // return details of error 
+   ( + str:NATIVE_ARRAY(CHARACTER);
+     + i:INTEGER;
+     
+     str := `gluErrorString(@code)`:NATIVE_ARRAY(CHARACTER);
+     {str.item i != '\0'}.while_do {
+	// copy names of supported extensions
+	
+	buffer.add_last (str.item i);
+	i := i+1;
+      };
+   );
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_evaluator1d.li b/lib/unstable/opengl/opengl/gl_evaluator1d.li
new file mode 100644
index 0000000..145dd05
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_evaluator1d.li
@@ -0,0 +1,95 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_EVALUATOR1D;
+  
+  - comment  := "Maps a curve line";
+  
+Section Inherit
+  
+  + parent_evaluator1d:Expanded EVALUATOR1D;
+  
+Section Public
+  
+  // types of the control points
+  - vertex3:INTEGER <- `GL_MAP1_VERTEX_3`:INTEGER;
+  - vertex4:INTEGER <- `GL_MAP1_VERTEX_4`:INTEGER;
+  - index:INTEGER <- `GL_MAP1_INDEX`:INTEGER;
+  - normal:INTEGER <- `GL_MAP1_NORMAL`:INTEGER;
+  - color4:INTEGER <- `GL_MAP1_COLOR_4`:INTEGER;
+  - texture_coord1:INTEGER <- `GL_MAP1_TEXTURE_COORD_1`:INTEGER;
+  - texture_coord2:INTEGER <- `GL_MAP1_TEXTURE_COORD_2`:INTEGER;
+  - texture_coord3:INTEGER <- `GL_MAP1_TEXTURE_COORD_3`:INTEGER;
+  - texture_coord4:INTEGER <- `GL_MAP1_TEXTURE_COORD_4`:INTEGER;
+  
+  // mesh drawing modes
+  - line:INTEGER <- `GL_LINE`:INTEGER;
+  - point:INTEGER <- `GL_POINT`:INTEGER;
+  
+  
+  - enable <-
+  (
+    + mode:INTEGER;
+    
+    mode := type;
+    parent_state.enable;
+    `glEnable(@mode)`;
+  );
+  
+  - disable <-
+  (
+    + mode:INTEGER;
+    
+    mode := type;
+    parent_state.disable;
+    `glDisable(@mode)`;
+  );
+  
+  - map (n_points,point_size:INTEGER) range (t1,t2:REAL_32) <-
+  (
+    + mode:INTEGER;
+    + p:POINTER;
+    
+    mode := type;
+    p := control_points.to_external;
+    `glMap1f(@mode, @t1, @t2, @point_size, @n_points, @p)`;
+  );
+  
+  // generate a point for the parametric value 'val'
+  - evaluate val:REAL_32 <- 
+  (
+    `glEvalCoord1f(@val)`;
+  );
+  
+  // auto generate n points evenly spaced between (t1,t2)
+  - generate_grid  nb_points:INTEGER between (t1,t2:REAL_32) <-
+  (
+    `glMapGrid1f(@nb_points, @t1, @t2)`;
+  );
+  
+  // Warning: mode is defined in the vertex buffer prototype
+  - evaluate_mesh mode:INTEGER from start:INTEGER to end:INTEGER <- 
+  (
+    `glEvalMesh1(@mode, @start, @end)`;
+  );
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_evaluator2d.li b/lib/unstable/opengl/opengl/gl_evaluator2d.li
new file mode 100644
index 0000000..c6ca5fd
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_evaluator2d.li
@@ -0,0 +1,91 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_EVALUATOR2D;
+  
+  - comment  := "Maps a spline surface";
+  
+Section Inherit
+  
+  + parent_evaluator2d:Expanded EVALUATOR2D;
+  
+Section Public
+  
+  // types of the control points
+  - vertex3:INTEGER <- `GL_MAP2_VERTEX_3`:INTEGER;
+  - vertex4:INTEGER <- `GL_MAP2_VERTEX_4`:INTEGER;
+  - index:INTEGER <- `GL_MAP2_INDEX`:INTEGER;
+  - normal:INTEGER <- `GL_MAP2_NORMAL`:INTEGER;
+  - color4:INTEGER <- `GL_MAP2_COLOR_4`:INTEGER;
+  - texture_coord1:INTEGER <- `GL_MAP2_TEXTURE_COORD_1`:INTEGER;
+  - texture_coord2:INTEGER <- `GL_MAP2_TEXTURE_COORD_2`:INTEGER;
+  - texture_coord3:INTEGER <- `GL_MAP2_TEXTURE_COORD_3`:INTEGER;
+  - texture_coord4:INTEGER <- `GL_MAP2_TEXTURE_COORD_4`:INTEGER;
+  
+  // mesh drawing modes
+  - line:INTEGER <- `GL_LINE`:INTEGER;
+  - point:INTEGER <- `GL_POINT`:INTEGER;
+  - fill:INTEGER <- `GL_FILL`:INTEGER;
+  
+  - enable <-
+  (
+    + mode:INTEGER;
+    
+    mode := type;
+    parent_state.enable;
+    `glEnable(@mode)`;
+  );
+  
+  - disable <-
+  (
+    + mode:INTEGER;
+    
+    mode := type;
+    parent_state.disable;
+    `glDisable(@mode)`;
+  );
+  
+  - map (u_order,u_size:INTEGER) and (v_order,v_size:INTEGER) range (u1,v1:REAL_32) to (u2,v2:REAL_32) <- 
+  (
+    + mode:INTEGER;
+    + p:POINTER;
+    
+    mode := type;
+    p := control_points.to_external;
+    `glMap2f(@mode, at u1, at u2, at u_size, at u_order, at v1, at v2, at v_size, at v_order, at p)`;
+  );
+  
+  - evaluate (x,y:REAL_32) <-
+  (
+    `glEvalCoord2f(@x, at y)`;
+  );
+  
+  - generate_grid  (w,h:INTEGER) between (u1,u2:REAL_32) and  (v1,v2:REAL_32)<-
+  (
+    `glMapGrid2f(@w, at u1, at u2, at h, at v1, at v2)`;
+  );
+  
+  - evaluate_mesh mode:INTEGER from (start1,start2:INTEGER) to (end1,end2:INTEGER) <-
+  (
+    `glEvalMesh2(@mode, @start1, @end1, @start2, @end2)`;
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_extension.li b/lib/unstable/opengl/opengl/gl_extension.li
new file mode 100644
index 0000000..f1fecb0
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_extension.li
@@ -0,0 +1,72 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_EXTENSION;
+  
+  - comment  := "OpenGL ARB extensions manager";
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  - extension_names:STRING;
+  
+  - name:STRING_CONSTANT <- STRING_CONSTANT;
+  
+  
+  - create :SELF <- 
+  // dont clone prototype
+  (  + result:SELF;
+    (SELF.is_supported).if {
+      result := SELF;
+      result.make;
+    };
+    result
+  );
+  
+  - make <- deferred;
+  
+  - is_supported:BOOLEAN <-
+  (
+    + extensions:NATIVE_ARRAY(CHARACTER);
+    + i:INTEGER;
+    + result:BOOLEAN;
+    
+    (extension_names = NULL).if {
+      extensions := `glGetString(GL_EXTENSIONS)`:NATIVE_ARRAY(CHARACTER);
+      extension_names := STRING.create 256;
+      
+      {extensions.item i != '\0'}.while_do {
+	// copy names of supported extensions
+	
+	extension_names.add_last (extensions.item i);
+	i := i+1;
+      };
+    };
+    (extension_names.has_substring name).if {
+      result := TRUE;
+    };
+    result
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_fog.li b/lib/unstable/opengl/opengl/gl_fog.li
new file mode 100644
index 0000000..ccad2ca
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_fog.li
@@ -0,0 +1,84 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_FOG;
+  
+  - comment  := "Opengl Fog";
+  
+Section Inherit
+  
+  + parent_fog:Expanded FOG;
+  
+Section Public
+  
+  - enable <-
+  (
+    parent_state.enable;
+    `glEnable(GL_FOG)`;
+  );
+  
+  - disable <-
+  ( 
+    parent_state.disable;
+    `glDisable(GL_FOG)`;
+  );
+  
+  - push_attrib <-
+  (
+    `glPushAttrib(GL_ENABLE_BIT)`;
+  );
+  
+  - pop_attrib <-
+  (
+    `glPopAttrib()`;
+  );
+  
+  - render <- 
+  (
+    + m:INTEGER;
+    + p:POINTER;
+    + r:REAL_32;
+    
+    (fogmode = filter_linear).if {
+      m := `GL_LINEAR`:INTEGER;
+    } else {
+      m := `GL_EXP2`:INTEGER; // GL_EXP for old pc
+    };
+    `glFogi(GL_FOG_MODE, @m)`;
+    
+    p := color.get_array.to_external;
+    `glFogfv(GL_FOG_COLOR, @p)`;
+    
+    r := density;
+    `glFogf(GL_FOG_DENSITY, @r)`;
+    
+    `glHint(GL_FOG_HINT, GL_DONT_CARE)`; // GL_DONT_CARE, GL_NICEST or GL_FASTEST 
+    r := start;
+    `glFogf(GL_FOG_START, @r)`;
+    
+    r := end;
+    `glFogf(GL_FOG_END, @r)`;
+    `glEnable(GL_FOG)`;
+  );
+  
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_font_abstract.li b/lib/unstable/opengl/opengl/gl_font_abstract.li
new file mode 100644
index 0000000..f64d641
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_font_abstract.li
@@ -0,0 +1,122 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_FONT_ABSTRACT;
+  
+  - comment  := "OpenGl rendered font";
+  
+Section Inherit
+  
+  + parent_font:Expanded FONT;
+  
+Section Public
+  
+  + base:UINTEGER_32; // GL base display list
+  + text_mode:GL_DISPLAY_LIST;
+  
+  - unload <-
+  (
+    + b:UINTEGER_32;
+    + n:INTEGER;
+    
+    b := base;
+    n := nb_chars;
+    `glDeleteLists(@b, @n)`;
+    
+    text_mode.destroy;
+  );
+  
+  - enable <-
+  (
+    + b:INTEGER;
+    + w,h:INTEGER;
+    
+    (text_mode = NULL).if {
+      // not loaded
+      
+      b := base;
+      w := OPENGL.viewport.width;
+      h := OPENGL.viewport.height;
+      
+      text_mode := GL_DISPLAY_LIST.create {
+        `glListBase(@b-32)`;
+        
+        `glPushAttrib(GL_ENABLE_BIT)`;// push states flags
+        
+        //Set projection matrix
+        `glMatrixMode(GL_PROJECTION);
+        glPushMatrix();
+        glLoadIdentity();
+        gluOrtho2D(0.0f, @w, @h, 0.0f);`;
+        
+        //Set modelview matrix
+        `glMatrixMode(GL_MODELVIEW);
+        glPushMatrix();
+        glLoadIdentity();`;
+        
+        //Set states
+        `glDisable(GL_DEPTH_TEST)`;
+        `glDisable(GL_BLEND)`;
+        `glDisable(GL_TEXTURE_2D)`;
+        `glDisable (GL_CULL_FACE)`;
+      };
+    };
+    text_mode.call;
+  );
+  
+  - disable <-
+  (
+    //restore matrices
+    `glMatrixMode(GL_PROJECTION);
+    glPopMatrix();
+    glMatrixMode(GL_MODELVIEW);
+    glPopMatrix();`;
+    
+    //reset other states
+    `glListBase(0)`;
+    `glPopAttrib()`;
+  );
+  
+  - print text:ABSTRACT_STRING at (x,y:INTEGER) <- 
+  (
+    + b:UINTEGER_32;
+    + n:INTEGER;
+    + txt:NATIVE_ARRAY(CHARACTER);
+    + xx,yy:INTEGER;
+    
+    txt := text.to_external;
+    n := text.count;
+    b := base;
+    xx := x + OPENGL.viewport.x0;
+    yy := y + OPENGL.viewport.y0;
+        
+    //Print the text
+    `#ifndef GLBINDING__USE_GUI // FIXME: raster bug with gui
+    glListBase(@b - 32);
+
+    glRasterPos2i(@xx, @yy);
+    glCallLists(@n, GL_UNSIGNED_BYTE, @txt);
+    #endif
+    `;
+  );
+  
diff --git a/lib/unstable/opengl/opengl/gl_index_buffer.li b/lib/unstable/opengl/opengl/gl_index_buffer.li
new file mode 100644
index 0000000..e58127a
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_index_buffer.li
@@ -0,0 +1,106 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_INDEX_BUFFER;
+  
+Section Inherit
+  
+  - parent_index_buffer:INDEX_BUFFER := INDEX_BUFFER;
+  
+Section Public
+  
+  + index:FAST_ARRAY(UINTEGER_16);
+  
+  + index_id:UINTEGER_32;
+  
+  
+  - make sz:INTEGER <- 
+  (
+    index := FAST_ARRAY(UINTEGER_16).create_with_capacity sz;
+  );
+  
+  - build <- 
+  (
+    + p:POINTER;
+    
+    (OPENGL.arb_vertex_buffer_object != NULL).if {
+      // create index array
+      (index.count > 0).if {
+        index_id := OPENGL.arb_vertex_buffer_object.genbuffer;
+        OPENGL.arb_vertex_buffer_object.bind_index index_id;
+        
+        // load data into GPU cache
+        p := index.to_external;
+        OPENGL.arb_vertex_buffer_object.buffer_index_data p size (index.count*UINTEGER_16.object_size);
+      };
+    };
+  );
+  
+  - bind <-
+  (   
+    (index.count > 0).if {
+      (OPENGL.arb_vertex_buffer_object != NULL).if {
+        // use GPU index buffer
+        OPENGL.arb_vertex_buffer_object.bind_index index_id;
+      };
+    };    
+  );
+  
+  - draw mode:INTEGER size sz:INTEGER <-
+  (
+    + p:POINTER;
+    
+    (OPENGL.arb_vertex_buffer_object != NULL).if {
+      `glDrawElements (@mode, @sz, GL_UNSIGNED_SHORT, 0)`;
+    } else {
+      p := index.to_external;
+      `glDrawElements (@mode, @sz, GL_UNSIGNED_SHORT, @p)`;
+    };
+    (OPENGL.arb_vertex_buffer_object != NULL).if {
+      OPENGL.arb_vertex_buffer_object.disable_index;
+    };
+  );
+  
+  - begin_indices <-
+  (
+  );
+  
+  - end <- 
+  (
+    build;
+  );
+  
+  - add_index i:UINTEGER_16 <- 
+  (
+    index.add_last i; 
+  );
+  
+  - destroy <-
+  // bug!!!
+  (
+    (OPENGL.arb_vertex_buffer_object != NULL).if {
+      (index.count > 0).if {
+        OPENGL.arb_vertex_buffer_object.delete index_id;
+      };
+    };
+  );
diff --git a/lib/unstable/opengl/opengl/gl_light.li b/lib/unstable/opengl/opengl/gl_light.li
new file mode 100644
index 0000000..9df0d56
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_light.li
@@ -0,0 +1,131 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_LIGHT;
+  
+  - comment  := "OpenGL Light";
+  
+Section Inherit
+  
+  + parent_light:Expanded LIGHT;
+  
+Section Public
+  
+  // OpenGl allow only 8 differents lights at a time
+  - nb_lights:INTEGER;
+  
+  + id_light:INTEGER; // OpenGL id: LIGHT0 - LIGHT7
+  
+  - make (a,d,s:COLOR, pos:VECTOR3(REAL_32)) <- 
+  (
+    parent_light.make (a,d,s,pos);
+    (nb_lights < 8).if {
+      
+      id_light := `GL_LIGHT0`:INTEGER + nb_lights;
+      
+      nb_lights := nb_lights + 1;
+    } else {
+      GL_ERROR.send "too much lights";
+    };
+  );
+  
+  - enable <- 
+  (   
+    + id:INTEGER;
+    + p:POINTER;
+    + vec:FAST_ARRAY(REAL_32);
+    
+    parent_state.enable;
+    id := id_light;
+    
+    modified.if {
+      p := ambient.get_array.to_external;
+      `glLightfv(@id, GL_AMBIENT, @p)`;
+      
+      p := diffuse.get_array.to_external;
+      `glLightfv(@id, GL_DIFFUSE, @p)`;
+      
+      p := specular.get_array.to_external;
+      `glLightfv(@id, GL_SPECULAR, @p)`;
+      
+      vec := position.getv;
+      is_directional.if {
+	vec.add_last 0.0;
+	p := vec.to_external;
+	`glLightfv(@id, GL_POSITION, @p)`;
+      } else {
+	vec.add_last 1.0;
+	p := vec.to_external;
+	`glLightfv(@id, GL_POSITION, @p)`;
+      };
+      modified := FALSE;
+    };
+    `glEnable(@id)`;
+  );
+  
+  - disable <-
+  (
+    + id:INTEGER;
+    
+    id := id_light;
+    `glDisable(@id)`;
+  );
+  
+  - set_model_ambient col:RGBA <- 
+  ( + p:POINTER;
+    p := col.getv.to_external;
+    `glLightModelfv(GL_LIGHT_MODEL_AMBIENT, @p)`;
+  );
+  
+  - set_model_local_viewer b:BOOLEAN <- 
+  (
+    `glLightModeli(GL_LIGHT_MODEL_LOCAL_VIEWER, @b)`;
+  );
+  
+  - set_model_two_side b:BOOLEAN <-
+  (
+    `glLightModeli(GL_LIGHT_MODEL_TWO_SIDE, @b)`;
+  );
+  
+  
+  - push_attrib <-
+  (
+    `glPushAttrib(GL_ENABLE_BIT)`;
+  );
+  
+  - pop_attrib <-
+  (
+    `glPopAttrib()`;
+  );
+   
+  
+  - enable_default_light <- 
+  (
+    `glEnable(GL_LIGHT0)`;
+  );
+  
+  - disable_default_light <-
+  (
+    `glDisable(GL_LIGHT0)`;
+  );
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_material.li b/lib/unstable/opengl/opengl/gl_material.li
new file mode 100644
index 0000000..f9b624e
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_material.li
@@ -0,0 +1,72 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_MATERIAL;
+  
+  - comment  := "Material: lighting properties of an object";
+  
+Section Inherit
+  
+  + parent_material:Expanded MATERIAL;
+  
+Section Public
+  
+  - apply mode:INTEGER  <- 
+  (
+    + m:INTEGER;
+    + p:POINTER;
+    + val:REAL_32;
+    
+    (mode = mode_front).if {
+      m := `GL_FRONT`:INTEGER;
+    }.elseif {mode = mode_back} then {
+      m := `GL_BACK`:INTEGER;
+    } else {
+      m := `GL_FRONT_AND_BACK`:INTEGER;
+    };
+    
+    p := ambient.get_array.to_external;
+    `glMaterialfv(@m, GL_AMBIENT, @p)`;
+    
+    p := diffuse.get_array.to_external;
+    `glMaterialfv(@m, GL_DIFFUSE, @p)`;
+    
+    p := specular.get_array.to_external;
+    `glMaterialfv(@m, GL_SPECULAR, @p)`;
+    
+    val := shininess;
+    `glMaterialf(@m, GL_SHININESS, @val)`;
+    
+    p := emission.get_array.to_external;
+    `glMaterialfv(@m, GL_EMISSION, @p)`;
+  );
+  
+  - enable_color <-
+  (
+    `glEnable(GL_COLOR_MATERIAL)`;
+  );
+  
+  - disable_color <-
+  (
+    `glDisable(GL_COLOR_MATERIAL)`;
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_name_stack.li b/lib/unstable/opengl/opengl/gl_name_stack.li
new file mode 100644
index 0000000..472afca
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_name_stack.li
@@ -0,0 +1,52 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_NAME_STACK;
+  
+  - comment  := "Used by pickable objects using Selection buffer";
+  
+Section Inherit
+  
+  - parent_name_stack:NAME_STACK := NAME_STACK;
+  
+Section Public
+  
+  - init <- 
+  (
+    `glInitNames()`;
+  );
+  
+  - load n:UINTEGER_32 <- 
+  (
+    `glLoadName(@n)`;
+  );
+  
+  - push n:UINTEGER_32 <- 
+  (
+    `glPushName(@n)`;
+  );
+  
+  - pop <- 
+  (
+    `glPopName()`;
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_plane.li b/lib/unstable/opengl/opengl/gl_plane.li
new file mode 100644
index 0000000..50a90d2
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_plane.li
@@ -0,0 +1,82 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_PLANE;
+  
+  - comment  := "a*x+b*y+c*z+d >= 0 clipping plane";
+  
+Section Inherit
+  
+  + parent_plane:Expanded PLANE;
+  
+Section Public
+  
+  - nb_planes:INTEGER;
+  
+  + id:INTEGER; // OpenGL plane id
+  
+  - load_clipping_plane <- 
+  // called while plane creation 
+  (
+    // OpenGl allow only 6 clipping planes at a time.
+    (nb_planes >= 6).if {
+      GL_ERROR.send "too much clipping planes";
+    };    
+    id := `GL_CLIP_PLANE0`:INTEGER + nb_planes;
+    nb_planes := nb_planes + 1;
+  );
+  
+  - clip <- 
+  (
+    + i:INTEGER;
+    + p:POINTER;
+    
+    enable;
+    
+    i := id;
+    `glEnable(@i)`;
+    
+    p := getv.to_external;
+    `glClipPlane(@i, @p)`;
+  );
+  
+  - push_attrib <-
+  (
+    `glPushAttrib(GL_ENABLE_BIT)`;
+  );
+  
+  - pop_attrib <-
+  (
+    `glPopAttrib()`;
+  );
+  
+  - unclip <-
+  (
+    + i:INTEGER;
+    
+    disable;
+    
+    i := id;
+    `glDisable(@i)`;
+  );
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_quadrics.li b/lib/unstable/opengl/opengl/gl_quadrics.li
new file mode 100644
index 0000000..ae2a02c
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_quadrics.li
@@ -0,0 +1,78 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_QUADRICS;
+  
+  - comment  := "glu quadrics";
+  
+  - external := `GLUquadric* quadric;`; 
+  
+Section Inherit
+  
+  - parent_quadrics:QUADRICS := QUADRICS;
+  
+Section Public
+  
+  - fill_mode:INTEGER  <- `GLU_FILL`:INTEGER;
+  - point_mode:INTEGER  <- `GLU_POINT`:INTEGER;
+  - line_mode:INTEGER  <- `GLU_LINE`:INTEGER;
+  
+  - begin_quadric <-
+  (
+    `quadric = gluNewQuadric()`;
+  );
+  
+  - end_quadric <-
+  (
+    `gluDeleteQuadric(quadric)`;
+  );
+  
+  - enable_texture <-
+  (
+    `gluQuadricTexture(quadric,GL_TRUE)`;
+  );
+  
+  - disable_texture <-
+  (
+    `gluQuadricTexture(quadric,GL_FALSE)`;
+  );
+  
+  - set_style style:INTEGER <-
+  (
+    `gluQuadricDrawStyle(quadric, at style)`;
+  );
+  
+  - draw_sphere (radius,slices,stacks:REAL_32) <-
+  (
+    `gluSphere(quadric, at radius, at slices, at stacks)`; 
+  );
+  
+  - draw_cylinder (base,top,height,slices,stacks:REAL_32) <-
+  (
+    `gluCylinder(quadric, at base, at top, at height, at slices, at stacks)`; 
+  );
+
+  - draw_disk (inner,outer,slices,loops:REAL_32) <-
+  (   
+    `gluDisk(quadric, at inner, at outer, at slices, at loops)`;
+  );
diff --git a/lib/unstable/opengl/opengl/gl_scissor.li b/lib/unstable/opengl/opengl/gl_scissor.li
new file mode 100644
index 0000000..a62b5eb
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_scissor.li
@@ -0,0 +1,68 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_SCISSOR;
+  
+  - comment  := "Viewport clipping";
+  
+Section Inherit
+  
+  - parent_scissor:SCISSOR := SCISSOR;
+  
+Section Public
+  
+  - enable <- 
+  (
+    parent_state.enable;
+    `glEnable(GL_SCISSOR_TEST)`;
+  );
+  
+  - disable <- 
+  (
+    parent_state.disable;
+    `glDisable(GL_SCISSOR_TEST)`;
+  );
+  
+  - cut v:VIEWPORT <-
+  (
+    + x,y,w,h:UINTEGER_32;
+    
+    x := v.x0;
+    y := v.y0;
+    w := v.width;
+    h := v.height;
+    `glScissor(@x, at y, at w, at h)`;
+  );
+  
+  - cut4i (x,y,width,height:UINTEGER_32) <-
+  (
+    `glScissor(@x, at y, at width, at height)`;
+  );
+  
+  - get_scissor_box viewport:VIEWPORT <- // ?????
+  (
+    + p:POINTER;
+    
+    p := viewport.getv.to_external;
+    `glGetIntegerv(GL_SCISSOR_BOX, @p)`;
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_shader.li b/lib/unstable/opengl/opengl/gl_shader.li
new file mode 100644
index 0000000..50ce104
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_shader.li
@@ -0,0 +1,200 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_SHADER;
+  
+  - comment  := "OpengGL GLSL Shader";
+  
+Section Inherit
+  
+  - parent_shader:SHADER := SHADER;
+  
+Section Public
+  
+  //
+  //  OpengGL ID handlers
+  //
+  + vertex_shader_id:UINTEGER_32;
+  + fragment_shader_id:UINTEGER_32;
+  + program_id:UINTEGER_32;
+  
+  + is_loaded:BOOLEAN;
+  
+  
+  - make (vertex_shader,fragment_shader:ABSTRACT_STRING) <-
+  (
+    + source:STRING;
+    
+    // create shader program
+    program_id := OPENGL.arb_shader_object.create_program;
+    
+    //
+    // vertex shader
+    //
+    source := get_source vertex_shader;
+    (source != NULL).if {
+      
+      // create shader object
+      vertex_shader_id := OPENGL.arb_shader_object.create_vertex_shader;
+      
+      // set source code
+      OPENGL.arb_shader_object.shader_source vertex_shader_id string source;
+      
+      // compile shader
+      OPENGL.arb_shader_object.compile vertex_shader_id;
+      
+      // attach shader to program
+      OPENGL.arb_shader_object.attach_object (program_id, vertex_shader_id);
+      
+      is_loaded := TRUE;
+    };
+    
+    //
+    // fragment shader
+    //
+    source := get_source fragment_shader;
+    (source != NULL).if {
+      
+      // create shader object
+      fragment_shader_id := OPENGL.arb_shader_object.create_fragment_shader;
+      
+      // set source code
+      OPENGL.arb_shader_object.shader_source fragment_shader_id string source;
+      
+      // compile shader
+      OPENGL.arb_shader_object.compile fragment_shader_id;
+      
+      // attach shader to program
+      OPENGL.arb_shader_object.attach_object (program_id, fragment_shader_id);
+      
+      is_loaded := TRUE;
+    };
+    
+    is_loaded.if {
+      // link program
+      OPENGL.arb_shader_object.link_program program_id;
+    };
+  );
+  
+  - has_compiled:BOOLEAN <-
+  (
+    (OPENGL.arb_shader_object.get_infolog_status vertex_shader_id = 1) && {OPENGL.arb_shader_object.get_infolog_status fragment_shader_id = 1}
+  );
+  
+  - get_infolog buffer:STRING <-
+  (
+    + sz:UINTEGER_32;
+    + tmp:FAST_ARRAY(CHARACTER); 
+     
+    sz := OPENGL.arb_shader_object.get_infolog_length vertex_shader_id;
+    tmp := FAST_ARRAY(CHARACTER).create sz;
+    
+    OPENGL.arb_shader_object.get_infolog vertex_shader_id in tmp size sz;
+    tmp.lower.to (tmp.upper) do { i:INTEGER;
+      buffer.add_last (tmp.item i);
+    };
+
+    sz := OPENGL.arb_shader_object.get_infolog_length fragment_shader_id;
+    tmp := FAST_ARRAY(CHARACTER).create sz; 
+    
+    OPENGL.arb_shader_object.get_infolog fragment_shader_id in tmp size sz;
+    tmp.lower.to (tmp.upper) do { i:INTEGER;
+      buffer.add_last (tmp.item i);
+    };
+  );
+  
+  - enable <-
+  (
+    is_loaded.if {
+      // use program
+      OPENGL.arb_shader_object.use_program program_id;
+    };
+  );
+  
+  - disable <-
+  (
+    is_loaded.if {
+      OPENGL.arb_shader_object.use_program 0;
+    };
+  );
+  
+  - get_uniform_location varname:ABSTRACT_STRING :INTEGER <- 
+  (
+    OPENGL.arb_shader_object.get_uniform_location (program_id, varname)
+  );
+  
+  - set_uniform1f loc:INTEGER to val:REAL_32 <- 
+  (
+    OPENGL.arb_shader_object.uniform1f (loc, val);
+  );
+  
+  - set_uniform2f loc:INTEGER to (v0,v1:REAL_32) <- 
+  (
+    OPENGL.arb_shader_object.uniform2f (loc, v0,v1);
+  );
+  
+  - set_uniform3f loc:INTEGER to (v0,v1,v2:REAL_32) <- 
+  (
+    OPENGL.arb_shader_object.uniform3f (loc, v0,v1,v2);
+  );
+  
+  - set_uniform4f loc:INTEGER to (v0,v1,v2,v3:REAL_32) <- 
+  (
+    OPENGL.arb_shader_object.uniform4f (loc, v0,v1,v2,v3);
+  );
+  
+  - bind_sampler tex:TEXTURE unit u:INTEGER location loc:INTEGER <-
+  (
+    tex.bind_unit u;
+    set_uniform1f loc to u;
+  );
+  
+  - delete <-
+  (
+    OPENGL.arb_shader_object.delete_object vertex_shader_id;
+    OPENGL.arb_shader_object.delete_object fragment_shader_id;
+    OPENGL.arb_shader_object.delete_object program_id;
+  );
+  
+Section Private  
+  
+  - get_source filename:ABSTRACT_STRING :STRING <- 
+  (
+    + file:POINTER;
+    + source:STRING;
+    + sz:INTEGER;
+    
+    (filename != NULL).if {
+      // read shader source code
+      file := FS_MIN.open_read filename;
+      (file != NULL).if {
+        sz := FS_MIN.file_size file;
+        source := STRING.create (sz+1);
+        
+        FS_MIN.read file in source size sz;
+        FS_MIN.close file;
+      };
+    };
+    source
+  );
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_stencil_buffer.li b/lib/unstable/opengl/opengl/gl_stencil_buffer.li
new file mode 100644
index 0000000..e7a245f
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_stencil_buffer.li
@@ -0,0 +1,102 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_STENCIL_BUFFER;
+  
+  - comment  := "Opengl Stencil Buffer";
+  
+Section Inherit
+  
+  - parent_buffer:STENCIL_BUFFER := STENCIL_BUFFER;
+  
+Section Public
+  
+   // pixel test functions
+  - always:INTEGER <- `GL_ALWAYS`:INTEGER;
+  - never:INTEGER <- `GL_NEVER`:INTEGER;
+  - less:INTEGER <-  `GL_LESS`:INTEGER;
+  - lequal:INTEGER <- `GL_LEQUAL`:INTEGER;
+  - equal:INTEGER <- `GL_EQUAL`:INTEGER;
+  - gequal:INTEGER <- `GL_GEQUAL`:INTEGER;
+  - greater:INTEGER <- `GL_GREATER`:INTEGER;
+  - notequal:INTEGER <- `GL_NOTEQUAL`:INTEGER;
+  
+  // stencil operations
+  - keep:INTEGER <- `GL_KEEP`:INTEGER;
+  - replace:INTEGER <- `GL_REPLACE`:INTEGER;
+  - incr:INTEGER <- `GL_INCR`:INTEGER;
+  - decr:INTEGER <- `GL_DECR`:INTEGER;
+  - invert:INTEGER <- `GL_INVERT`:INTEGER;
+  
+  
+  - enable <-
+  (
+    parent_state.enable;
+    `glEnable (GL_STENCIL_TEST)`;
+  );
+  
+  - disable <-
+  (
+    parent_state.disable;
+    `glDisable (GL_STENCIL_TEST)`;
+  );
+  
+  - push_attrib <-
+  (
+    `glPushAttrib(GL_ENABLE_BIT)`;
+  );
+  
+  - pop_attrib <-
+  (
+    `glPopAttrib()`;
+  ); 
+  
+  - set_clear_value val:REAL_32 <-
+  (
+    `glClearStencil(@val)`;
+  );
+  
+  - clear <- 
+  (
+    `glClear(GL_STENCIL_BUFFER_BIT)`;
+  );
+  
+  - set_function f:INTEGER value val:INTEGER_32 mask m:UINTEGER_32 <- 
+  (
+    `glStencilFunc(@f, @val, @m)`;
+  );
+  
+  - when_pass op1:INTEGER when_fail op2:INTEGER when_zfail op3:INTEGER <- 
+  (
+    `glStencilOp(@op2, @op3, @op1)`;
+  );
+  
+  - lock <- 
+  // stencil buffer is read-only
+  (
+    `glStencilOp(GL_KEEP, GL_KEEP, GL_KEEP)`;
+  );
+  
+  - unlock <-
+  ( 
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_texture1d.li b/lib/unstable/opengl/opengl/gl_texture1d.li
new file mode 100644
index 0000000..aa95ce2
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_texture1d.li
@@ -0,0 +1,117 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_TEXTURE1D;
+  
+  - comment  := "OpenGL 1D texture";
+  
+Section Inherit
+  
+  + parent_abstract_texture:Expanded GL_ABSTRACT_TEXTURE;
+  
+Section Public
+  
+  - draw (x,y:INTEGER) <- // fixme
+  (
+    + w,h:INTEGER;
+    
+    w := width;
+    h := height;
+    
+    bind;
+    
+    `glBegin (GL_QUADS);
+    glTexCoord2f (0, 0);
+    glVertex2f (@x, @y);
+    glTexCoord2f (1, 0);
+    glVertex2f (@x + @w, @y);
+    glTexCoord2f (1, 1);
+    glVertex2f (@x + @w, @y + @h);
+    glTexCoord2f (0, 1);
+    glVertex2f (@x, @y + @h);
+    glEnd ();
+    `;
+  );
+  
+  - draw_strech (x,y,w,h:INTEGER) <- // fixme
+  (
+    bind;
+    
+    `glBegin (GL_QUADS);
+    glTexCoord2f (0, 0);
+    glVertex2f (@x, @y);
+    glTexCoord2f (1, 0);
+    glVertex2f (@x + @w, @y);
+    glTexCoord2f (1, 1);
+    glVertex2f (@x + @w, @y + @h);
+    glTexCoord2f (0, 1);
+    glVertex2f (@x, @y + @h);
+    glEnd ();
+    `;
+  );
+  
+  - replace_region (x,y,w,h:INTEGER) with_data (pixels:FAST_ARRAY(UINTEGER_8),type:INTEGER) <-
+  // y & height are always 1
+  ( + p:POINTER;
+    
+    p := pixels.to_external;
+    `glTexSubImage1D(GL_TEXTURE_1D, 0, @x, @w, @type, GL_UNSIGNED_BYTE, @p)`;
+  );
+  
+  - replace_region (x,y,w,h:INTEGER) with image:IMAGE <-
+  (
+    + p:POINTER;
+    + type:INTEGER;
+    
+    type := image.channels;
+    p := image.get_pixels.to_external;
+    `glTexSubImage1D(GL_TEXTURE_1D, 0, @x, @w, @type, GL_UNSIGNED_BYTE, @p)`;
+  );
+  
+  - replace_region (x,y,w,h:INTEGER) with_framebuffer_at (x0,y0:INTEGER) <-
+  // w and y = 1
+  (
+    `glCopyTexSubImage1D(GL_TEXTURE_1D, 0, @x, @x0, at y0, @w)`;
+  );
+  
+Section GL_ABSTRACT_TEXTURE
+  
+  - target:INTEGER <- `GL_TEXTURE_1D`:INTEGER;
+  
+  - raw_create (ch,w,h,type:INTEGER) data p:POINTER <-
+  (
+    `glTexImage1D(GL_TEXTURE_1D, 0, @ch, @w, 0, @type, GL_UNSIGNED_BYTE, @p)`;
+  );
+  
+  - raw_create_mipmap (ch,w,h,type:INTEGER) data p:POINTER <-
+  (
+    `gluBuild1DMipmaps(GL_TEXTURE_1D, @ch, @w, @type, GL_UNSIGNED_BYTE, @p)`;
+  );
+  
+  - raw_copy (x,y,w,h:INTEGER) type t:INTEGER <-
+  (
+    `glCopyTexImage1D(GL_TEXTURE_1D, 0, @t, @x, @y, @w, @h, 0)`;
+  );
+  
+  
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_texture2d.li b/lib/unstable/opengl/opengl/gl_texture2d.li
new file mode 100644
index 0000000..b599393
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_texture2d.li
@@ -0,0 +1,116 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_TEXTURE2D;
+  
+  - comment  := "OpenGL 2D texture";
+  
+Section Inherit
+  
+  + parent_abstract_texture:Expanded GL_ABSTRACT_TEXTURE;
+  
+Section Public
+  
+  - draw (x,y:INTEGER) <-
+  (
+    + w,h:INTEGER;
+    
+    w := width;
+    h := height;
+    
+    bind;
+    
+    `glBegin (GL_QUADS);
+    glTexCoord2f (0, 0);
+    glVertex2f (@x, @y);
+    glTexCoord2f (1, 0);
+    glVertex2f (@x + @w, @y);
+    glTexCoord2f (1, 1);
+    glVertex2f (@x + @w, @y + @h);
+    glTexCoord2f (0, 1);
+    glVertex2f (@x, @y + @h);
+    glEnd ();
+    `;
+  );
+  
+  - draw_strech (x,y,w,h:INTEGER) <-
+  (
+    bind;
+    
+    `glBegin (GL_QUADS);
+    glTexCoord2f (0, 0);
+    glVertex2f (@x, @y);
+    glTexCoord2f (1, 0);
+    glVertex2f (@x + @w, @y);
+    glTexCoord2f (1, 1);
+    glVertex2f (@x + @w, @y + @h);
+    glTexCoord2f (0, 1);
+    glVertex2f (@x, @y + @h);
+    glEnd ();
+    `;
+  );
+  
+  - replace_region (x,y,w,h:INTEGER) with_data (pixels:FAST_ARRAY(UINTEGER_8),type:INTEGER) <-
+  ( + p:POINTER;
+    
+    p := pixels.to_external;
+    `glTexSubImage2D(GL_TEXTURE_2D, 0, @x, @y, @w, @h, @type, GL_UNSIGNED_BYTE, @p)`;
+  ); 
+  
+  - replace_region (x,y,w,h:INTEGER) with image:IMAGE <-
+  (
+    + p:POINTER;
+    + type:INTEGER;
+    
+    type := image.channels;
+    p := image.get_pixels.to_external;
+    `glTexSubImage2D(GL_TEXTURE_2D, 0, @x, @y, @w, @h, @type, GL_UNSIGNED_BYTE, @p)`;
+  );
+  
+  - replace_region (x,y,w,h:INTEGER) with_framebuffer_at (x0,y0:INTEGER) <-
+  ( + t:INTEGER;
+    
+    t := channels;
+    `glCopyTexSubImage2D(GL_TEXTURE_2D, 0, @x, at y, @x0, at y0, @w, at h)`;
+  //  `glCopyTexImage2D(GL_TEXTURE_2D, 0, @t, @x, @y, @w, @h, 0)`;
+  );
+  
+Section GL_ABSTRACT_TEXTURE
+  
+  - target:INTEGER <- `GL_TEXTURE_2D`:INTEGER;
+  
+  - raw_create (ch,w,h,type:INTEGER) data p:POINTER <-
+  (
+    `glTexImage2D(GL_TEXTURE_2D, 0, @ch, @w, @h, 0, @type, GL_UNSIGNED_BYTE, @p)`;
+  );
+  
+  - raw_create_mipmap (ch,w,h,type:INTEGER) data p:POINTER <-
+  (
+    `gluBuild2DMipmaps(GL_TEXTURE_2D, @ch, @w, @h, @type, GL_UNSIGNED_BYTE, @p)`;
+  );
+  
+  - raw_copy (x,y,w,h:INTEGER) type t:INTEGER <-
+  (
+    `glCopyTexImage2D(GL_TEXTURE_2D, 0, @t, @x, @y, @w, @h, 0)`;
+  );
+ 
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_transform.li b/lib/unstable/opengl/opengl/gl_transform.li
new file mode 100644
index 0000000..40edeca
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_transform.li
@@ -0,0 +1,215 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_TRANSFORM;
+  
+  - comment  := "3 types of transformation: modelview, projection, viewport";
+  
+Section Inherit
+  
+  - parent_transform:TRANSFORM := TRANSFORM;
+  
+Section Public
+  
+  - load_identity <-
+  // clear transformation
+  (
+    `glLoadIdentity()`;
+  );
+  
+  - push_matrix <- 
+  (
+    `glPushMatrix()`;
+  );
+  
+  - pop_matrix <- 
+  (
+    `glPopMatrix()`;
+  );
+  
+  - load_matrix m:MATRIX4(REAL_32) <- 
+  ( + p:POINTER;
+    
+    p := m.to_external;
+    `glLoadMatrixf(@p)`;
+  );
+  
+  - mult_matrix_by m:MATRIX4(REAL_32) <- 
+  ( + p:POINTER;
+    
+    p := m.to_external;
+    `glMultMatrixf(@p)`;
+  );
+  
+  //
+  // Viewing & Modeling transformations
+  //
+  
+  - set_modelview_mode <- 
+  (
+    `glMatrixMode(GL_MODELVIEW)`;
+  );
+  
+  - translatef (x,y,z:REAL_32) <-
+  (
+    `glTranslatef (@x, at y, at z)`;
+  );
+  
+  - rotatef (val,x,y,z:REAL_32) <-
+  (
+    `glRotatef (@val, at x, at y, at z)`;
+  );
+  
+  - scalef (x,y,z:REAL_32) <-
+  (
+    `glScalef (@x, at y, at z)`;
+  );
+  
+  - get_modelview matrix:MATRIX4(REAL_32) <-
+  ( + p:POINTER;
+    
+    p := matrix.to_external;
+    `glGetFloatv(GL_MODELVIEW_MATRIX, @p)`;
+  );
+  
+  //
+  // Projection transformations
+  //
+  
+  - set_projection_mode <- 
+  (
+    `glMatrixMode(GL_PROJECTION)`;
+  );
+  
+  - get_projection matrix:MATRIX4(REAL_32) <-
+  ( + p:POINTER;
+    
+    p := matrix.to_external;
+    `glGetFloatv(GL_PROJECTION_MATRIX, @p)`;
+  );
+  
+  - perspective (fovy,aspect,near,far:REAL_32) <-
+  (
+    `gluPerspective(@fovy, @aspect, @near, @far)`;
+  );
+  
+  - frustum (left,right,bottom,top,near,far:REAL_32) <-
+  (
+    `glFrustum(@left, at right, at bottom, at top, at near, at far)`;
+  );
+  
+  - orthographic (left,right,bottom,top,near,far:REAL_32) <-
+  (
+    `glOrtho(@left, at right, at bottom, at top, at near, at far)`;
+  );
+  
+  - orthographic2d (left,right,bottom,top:REAL_32) <-
+  (
+    `gluOrtho2D(@left, at right, at bottom, at top)`;
+  );
+  
+  - pickmatrix (x,y,w,h:UINTEGER_32) in v:VIEWPORT <-
+  (
+    + p:POINTER;
+    
+    p := v.getv.to_external;
+    `gluPickMatrix(@x, @y, @w, @h, @p)`;
+  );
+  
+  //
+  // Viewport transformations
+  //
+  
+  - set_viewport v:VIEWPORT <-
+  (
+    + x,y,w,h:UINTEGER_32;
+    
+    x := v.x0;
+    y := v.y0;
+    w := v.width;
+    h := v.height;
+    `glViewport(@x, at y, at w, at h)`;
+  );
+  
+  - set_viewport4i (x,y,width,height:UINTEGER_32) <-
+  (
+    `glViewport(@x, at y, at width, at height)`;
+  );
+  
+  - get_viewport viewport:VIEWPORT <- // ?????
+  (
+    + p:POINTER;
+    
+    p := viewport.getv.to_external;
+    `glGetIntegerv(GL_VIEWPORT, @p)`;
+  );
+  
+  //
+  //  Tranformation utility
+  //
+  
+  - begin_ortho (w,h:INTEGER) <-
+  (
+    // define viewport
+    set_viewport4i (0, 0, w, h);
+    
+    // modify projection
+    set_projection_mode;
+    
+    // save old projection
+    push_matrix;
+    
+    // clear our ortho projection
+    load_identity;
+    
+    // set viewing volume
+    orthographic (0, w, h, 0, -99999, 99999);
+    
+    // restore modelview mode
+    set_modelview_mode;
+    
+    // clear tranformations
+    load_identity;
+    
+    // disable states not suited for ortho mode
+    `glDisable (GL_DEPTH_TEST); // fixme
+    glDisable (GL_CULL_FACE);
+    glDisable (GL_BLEND);
+    glEnable (GL_ALPHA_TEST);
+    glColor4f (1,1,1,1);`
+  );
+  
+  - end_ortho <-
+  (
+    // modify projection
+    set_projection_mode;
+    
+    // restore the previous matrix
+    pop_matrix;
+    
+    // go back to normal mode
+    set_modelview_mode;  
+  );
+
+
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_vertex_array.li b/lib/unstable/opengl/opengl/gl_vertex_array.li
new file mode 100644
index 0000000..9b29e96
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_vertex_array.li
@@ -0,0 +1,409 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_VERTEX_ARRAY;
+  
+Section Inherit
+  
+  - parent_vertex_buffer:VERTEX_BUFFER := VERTEX_BUFFER;
+  
+Section Public
+  
+  + vertex:FAST_ARRAY(REAL_32);
+  + texels:FAST_ARRAY(REAL_32);
+  + normals:FAST_ARRAY(REAL_32);
+  + colors:FAST_ARRAY(REAL_32);
+  
+  + vertex_id:UINTEGER_32;
+  + texels_id:UINTEGER_32;
+  + normals_id:UINTEGER_32;
+  + colors_id:UINTEGER_32;
+  
+  + drawing_mode:INTEGER;
+  
+  + capacity:INTEGER;
+  
+  
+  - make sz:INTEGER <- 
+  (
+    vertex := FAST_ARRAY(REAL_32).create_with_capacity sz;
+    texels := FAST_ARRAY(REAL_32).create_with_capacity sz;
+    normals := FAST_ARRAY(REAL_32).create_with_capacity sz;
+    colors := FAST_ARRAY(REAL_32).create_with_capacity sz;
+    
+    capacity := sz;
+  );
+  
+  - points:INTEGER <- `GL_POINTS`:INTEGER;
+  - lines:INTEGER <- `GL_LINES`:INTEGER;
+  - polygon:INTEGER <- `GL_POLYGON`:INTEGER;
+  - triangles:INTEGER <- `GL_TRIANGLES`:INTEGER;
+  - quads:INTEGER <- `GL_QUADS`:INTEGER;
+  - line_strip:INTEGER <- `GL_LINE_STRIP`:INTEGER;
+  - line_loop:INTEGER <-  `GL_LINE_LOOP`:INTEGER;
+  - triangle_strip:INTEGER <- `GL_TRIANGLE_STRIP`:INTEGER;
+  - triangle_fan:INTEGER <- `GL_TRIANGLE_FAN`:INTEGER;
+  - quad_strip:INTEGER <- `GL_QUAD_STRIP`:INTEGER;
+  
+  
+  - build <- 
+  (
+    + p:POINTER;
+    
+    (OPENGL.arb_vertex_buffer_object != NULL).if {
+      // create vertex array
+      (vertex.count > 0).if {
+        vertex_id := OPENGL.arb_vertex_buffer_object.genbuffer;
+        OPENGL.arb_vertex_buffer_object.bind vertex_id;
+        
+        // load data into GPU cache
+        p := vertex.to_external;
+        OPENGL.arb_vertex_buffer_object.buffer_data p size (3*vertex.count*REAL_32.object_size);
+      };
+      (texels.count > 0).if {
+        texels_id := OPENGL.arb_vertex_buffer_object.genbuffer;
+        OPENGL.arb_vertex_buffer_object.bind texels_id;
+        
+        // load data into GPU cache
+        p := texels.to_external;
+        OPENGL.arb_vertex_buffer_object.buffer_data p size (2*texels.count*REAL_32.object_size);
+      };
+      (colors.count > 0).if {
+        colors_id := OPENGL.arb_vertex_buffer_object.genbuffer;
+        OPENGL.arb_vertex_buffer_object.bind colors_id;
+        
+        // load data into GPU cache
+        p := colors.to_external;
+        OPENGL.arb_vertex_buffer_object.buffer_data p size (3*colors.count*REAL_32.object_size);
+      };
+      (normals.count > 0).if {
+        normals_id := OPENGL.arb_vertex_buffer_object.genbuffer;
+        OPENGL.arb_vertex_buffer_object.bind normals_id;
+        
+        // load data into GPU cache
+        p := normals.to_external;
+        OPENGL.arb_vertex_buffer_object.buffer_data p size (3*normals.count*REAL_32.object_size);
+      };
+    };
+  );
+  
+  - disable <-
+  (
+    // disable pointers
+    (vertex.count > 0).if {
+      `glDisableClientState (GL_VERTEX_ARRAY)`;
+    };
+    (texels.count > 0).if {
+      `glDisableClientState (GL_TEXTURE_COORD_ARRAY)`;
+    };
+    (colors.count > 0).if {
+      `glDisableClientState (GL_COLOR_ARRAY)`;
+    };
+    (normals.count > 0).if {
+      `glDisableClientState (GL_NORMAL_ARRAY)`;
+    };
+  );
+  
+  - draw <-
+  (
+    + sz,mode:INTEGER;
+    
+    // render all at once
+    sz := capacity;
+    mode := drawing_mode;
+    `glDrawArrays (@mode, 0, @sz)`;
+    
+    disable;
+  );
+  
+  - draw_using index_array:INDEX_BUFFER <-
+  (
+    index_array.bind;
+    index_array.draw drawing_mode size capacity;
+    disable;
+  ); 
+  
+  - bind <-
+  (
+    + p:POINTER;
+    
+    (vertex.count > 0).if {
+      `glEnableClientState(GL_VERTEX_ARRAY)`;
+      (OPENGL.arb_vertex_buffer_object != NULL).if {
+        // use GPU vertex buffer
+        OPENGL.arb_vertex_buffer_object.bind vertex_id;
+        `glVertexPointer(3, GL_FLOAT, 0, (char*)NULL)`;
+      } else {    
+        p := vertex.to_external;
+        `glVertexPointer(3, GL_FLOAT, 0, @p)`;
+      };
+    };    
+    
+    (texels.count > 0).if {
+      `glEnableClientState(GL_TEXTURE_COORD_ARRAY)`;
+      (OPENGL.arb_vertex_buffer_object != NULL).if {
+        OPENGL.arb_vertex_buffer_object.bind texels_id;
+        `glTexCoordPointer(2, GL_FLOAT, 0, (char*)NULL)`;
+      } else {
+        p := texels.to_external;
+        `glTexCoordPointer(2, GL_FLOAT, 0, @p)`;
+      };
+    };
+    
+    (colors.count > 0).if {
+      `glEnableClientState(GL_COLOR_ARRAY)`;
+      (OPENGL.arb_vertex_buffer_object != NULL).if {
+        OPENGL.arb_vertex_buffer_object.bind colors_id;
+        `glColorPointer(3, GL_FLOAT, 0, (char*)NULL)`;
+      } else {
+        p := colors.to_external;
+        `glColorPointer(3, GL_FLOAT, 0, @p)`;
+      };
+    };
+    
+    (normals.count > 0).if {
+      `glEnableClientState(GL_NORMAL_ARRAY)`;
+      (OPENGL.arb_vertex_buffer_object != NULL).if {
+        OPENGL.arb_vertex_buffer_object.bind normals_id;
+        `glNormalPointer(GL_FLOAT, 0, (char*)NULL)`;
+      } else {
+        p := normals.to_external;
+        `glNormalPointer(GL_FLOAT, 0, @p)`;
+      };
+    };
+  );
+  
+  - bind_unit n:INTEGER <-
+  (
+    + p:POINTER;
+    
+    (vertex.count > 0).if {
+      `glEnableClientState(GL_VERTEX_ARRAY)`;
+      (OPENGL.arb_vertex_buffer_object != NULL).if {
+        // use GPU vertex buffer
+        OPENGL.arb_vertex_buffer_object.bind vertex_id;
+        `glVertexPointer(3, GL_FLOAT, 0, (char*)NULL)`;
+      } else {    
+        p := vertex.to_external;
+        `glVertexPointer(3, GL_FLOAT, 0, @p)`;
+      };
+    };    
+    
+    (texels.count > 0).if {
+      `glEnableClientState(GL_TEXTURE_COORD_ARRAY)`;
+      
+      (OPENGL.arb_multitexture != NULL).if {
+        OPENGL.arb_multitexture.client_active_texture n;
+      };
+      (OPENGL.arb_vertex_buffer_object != NULL).if {
+        OPENGL.arb_vertex_buffer_object.bind texels_id;
+        `glTexCoordPointer(2, GL_FLOAT, 0, (char*)NULL)`;
+      } else {
+        p := texels.to_external;
+        `glTexCoordPointer(2, GL_FLOAT, 0, @p)`;
+      };
+    };
+    
+    (colors.count > 0).if {
+      `glEnableClientState(GL_COLOR_ARRAY)`;
+      (OPENGL.arb_vertex_buffer_object != NULL).if {
+        OPENGL.arb_vertex_buffer_object.bind colors_id;
+        `glColorPointer(3, GL_FLOAT, 0, (char*)NULL)`;
+      } else {
+        p := colors.to_external;
+        `glColorPointer(3, GL_FLOAT, 0, @p)`;
+      };
+    };
+    
+    (normals.count > 0).if {
+      `glEnableClientState(GL_NORMAL_ARRAY)`;
+      (OPENGL.arb_vertex_buffer_object != NULL).if {
+        OPENGL.arb_vertex_buffer_object.bind normals_id;
+        `glNormalPointer(GL_FLOAT, 0, (char*)NULL)`;
+      } else {
+        p := normals.to_external;
+        `glNormalPointer(GL_FLOAT, 0, @p)`;
+      };
+    };
+  );
+  
+  
+  - begin_triangles <-
+  (
+    drawing_mode := triangles;
+  );
+  
+  - begin_lines <-
+  (
+    drawing_mode := lines;
+  );
+  
+  - begin_points <-
+  (
+    drawing_mode := points;
+  );
+  
+  - begin_quads <-
+  (
+    drawing_mode := quads;
+  );
+  
+  - begin_polygon <-
+  (
+    drawing_mode := polygon;
+  );
+  
+  - begin_line_strip <-
+  (
+    drawing_mode := line_strip;
+  );
+  
+  - begin_line_loop <-
+  (
+    drawing_mode := line_loop;
+  );
+  
+  - begin_triangle_strip <-
+  (
+    drawing_mode := triangle_strip;
+  );
+  
+  - begin_triangle_fan <-
+  (
+    drawing_mode := triangle_fan;
+  );
+  
+  - begin_quads_strip <-
+  (
+    drawing_mode := quad_strip;
+  );
+  
+  - end <- 
+  (
+    build;
+  );
+  
+  - add_vertex2f (x,y:REAL_32) <-
+  (
+    vertex.add_last x;
+    vertex.add_last y;
+    vertex.add_last 0;
+  );
+  
+  - add_vertex3f (x,y,z:REAL_32) <-
+  (
+    vertex.add_last x;
+    vertex.add_last y;
+    vertex.add_last z;
+  );
+  
+  - add_vertex3f (x,y,z:REAL_32) color col:COLOR <-
+  (
+    add_vertex3f (x,y,z);
+    add_color col;
+  );
+  
+  - add_vertex v:VERTEX <- 
+  (
+    vertex.add_last (v.x);
+    vertex.add_last (v.y);
+    vertex.add_last (v.z);    
+  );
+  
+  - add_vertex v:VERTEX color col:COLOR <- 
+  (
+    add_vertex v;
+    add_color col;
+  );
+  
+  - add_texel2f (s,t:REAL_32) <-
+  (
+    texels.add_last s;
+    texels.add_last t;
+  );
+  
+  - add_normal3f (x,y,z:REAL_32) <-
+  (
+    normals.add_last x;
+    normals.add_last y;
+    normals.add_last z;
+  );
+  
+  - add_normal v:VECTOR3(REAL_32) <-
+  (
+    add_normal3f (v.x, v.y, v.z);
+  );
+  
+  - add_color (c:COLOR) <-
+  (
+    colors.add_last (c.r);
+    colors.add_last (c.g);
+    colors.add_last (c.b); 
+  );
+  
+  - add_color3f (r,g,b:REAL_32) <-
+  ( 
+    colors.add_last r; 
+    colors.add_last g;  
+    colors.add_last b;
+  );
+  
+  - get_vertex_data:FAST_ARRAY(REAL_32) <- 
+  (
+    vertex
+  );
+  
+  - get_texels_data:FAST_ARRAY(REAL_32) <- 
+  (
+    texels
+  );
+  
+  - get_normals_data:FAST_ARRAY(REAL_32) <- 
+  (
+    normals
+  );
+  
+  - get_colors_data:FAST_ARRAY(REAL_32) <- 
+  (
+    colors
+  );
+  
+  
+  - destroy <-
+  // bug!!!
+  (
+    (OPENGL.arb_vertex_buffer_object != NULL).if {
+      (vertex.count > 0).if {
+        OPENGL.arb_vertex_buffer_object.delete vertex_id;
+      };
+      (texels.count > 0).if {
+        OPENGL.arb_vertex_buffer_object.delete texels_id;
+      };
+      (colors.count > 0).if {
+        OPENGL.arb_vertex_buffer_object.delete colors_id;
+      };
+      (normals.count > 0).if {
+        OPENGL.arb_vertex_buffer_object.delete normals_id;
+      };
+    };
+  );
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/gl_vertex_buffer.li b/lib/unstable/opengl/opengl/gl_vertex_buffer.li
new file mode 100644
index 0000000..7e694fa
--- /dev/null
+++ b/lib/unstable/opengl/opengl/gl_vertex_buffer.li
@@ -0,0 +1,221 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := GL_VERTEX_BUFFER;
+  
+Section Inherit
+  
+  - parent_vertex_buffer:VERTEX_BUFFER := VERTEX_BUFFER;
+  
+Section Public
+  
+  - make sz:INTEGER <- 
+  (
+    // rien
+  );
+  
+  - destroy <-
+  (
+    // rien
+  );
+  
+  - build <-
+  (
+    // rien
+  );
+  
+  - points:INTEGER <- `GL_POINTS`:INTEGER;
+  - lines:INTEGER <- `GL_LINES`:INTEGER;
+  - polygon:INTEGER <- `GL_POLYGON`:INTEGER;
+  - triangles:INTEGER <- `GL_TRIANGLES`:INTEGER;
+  - quads:INTEGER <- `GL_QUADS`:INTEGER;
+  - line_strip:INTEGER <- `GL_LINE_STRIP`:INTEGER;
+  - line_loop:INTEGER <-  `GL_LINE_LOOP`:INTEGER;
+  - triangle_strip:INTEGER <- `GL_TRIANGLE_STRIP`:INTEGER;
+  - triangle_fan:INTEGER <- `GL_TRIANGLE_FAN`:INTEGER;
+  - quad_strip:INTEGER <- `GL_QUAD_STRIP`:INTEGER;
+  
+  
+  - begin_triangles <-
+  (
+    drawing_mode := triangles;
+    `glBegin (GL_TRIANGLES)`;
+  );
+  
+  - begin_lines <-
+  (
+    drawing_mode := lines;
+    `glBegin (GL_LINES)`;
+  );
+  
+  - begin_points <-
+  (
+    drawing_mode := points;
+    `glBegin (GL_POINTS)`;
+  );
+  
+  - begin_quads <-
+  (
+    drawing_mode := quads;
+    `glBegin (GL_QUADS)`;
+  );
+  
+  - begin_polygon <-
+  (
+    drawing_mode := polygon;
+    `glBegin (GL_POLYGON)`;
+  );
+  
+  - begin_line_strip <-
+  (
+    drawing_mode := line_strip;
+    `glBegin (GL_LINE_STRIP)`;
+  );
+  
+  - begin_line_loop <-
+  (
+    drawing_mode := line_loop;
+    `glBegin (GL_LINE_LOOP)`;
+  );
+  
+  - begin_triangle_strip <-
+  (
+    drawing_mode := triangle_strip;
+    `glBegin (GL_TRIANGLE_STRIP)`;
+  );
+  
+  - begin_triangle_fan <-
+  (
+    drawing_mode := triangle_fan;
+    `glBegin (GL_TRIANGLE_FAN)`;
+  );
+  
+  - begin_quads_strip <-
+  (
+    drawing_mode := quad_strip;
+    `glBegin (GL_QUAD_STRIP)`;
+  );
+  
+  - end <- 
+  (
+    `glEnd()`;
+  );
+  
+  - draw <-
+  (
+    `glFlush()`;
+  );
+  
+  - add_vertex2f (x,y:REAL_32) <-
+  (
+    `glVertex2f (@x, @y)`;
+  );
+  - add_vertex3f (x,y,z:REAL_32) <-
+  (
+    `glVertex3f (@x, @y, @z)`;
+  );
+  
+  - add_vertex3f (x,y,z:REAL_32) color col:COLOR <-
+  (
+    + r,g,b:REAL_32;
+    
+    r := col.r;
+    g := col.g;
+    b := col.b;
+    
+    `glColor3f (@r, @g, @b)`;
+    `glVertex3f (@x, @y, @z)`;
+  );
+  
+  - add_vertex v:VERTEX <- 
+  (
+    + x,y,z:REAL_32;
+    
+    x := v.x;
+    y := v.y;
+    z := v.z;
+    `glVertex3f (@x, @y, @z)`;
+  );
+  
+  - add_vertex v:VERTEX color col:COLOR <- 
+  (
+    + r,g,b:REAL_32;
+    
+    r := col.r;
+    g := col.g;
+    b := col.b;
+    `glColor3f (@r, @g, @b)`;
+    
+    add_vertex v;
+  );
+  
+  - add_texel2f (s,t:REAL_32) <-
+  (
+    `glTexCoord2f(@s, @t)`;
+  );
+  
+  - add_normal3f (x,y,z:REAL_32) <-
+  (
+    `glNormal3f(@x, @y, @z)`;
+  );
+  
+  - add_normal v:VECTOR3(REAL_32) <-
+  (
+    add_normal3f (v.x, v.y, v.z);
+  );
+  
+  - add_color c:COLOR <-
+  (
+    + r,g,b:REAL_32;
+    
+    r := c.r;
+    g := c.g;
+    b := c.b;
+    `glColor3f(@r, @g, @b)`;
+  );
+  
+  - add_color3f (r,g,b:REAL_32) <-
+  (
+    `glColor3f(@r, @g, @b)`;
+  );
+  
+  - get_vertex_data:FAST_ARRAY(REAL_32) <- 
+  (
+    not_yet_implemented; NULL
+  );
+  
+  - get_texels_data:FAST_ARRAY(REAL_32) <- 
+  (
+    not_yet_implemented; NULL
+  );
+  
+  - get_normals_data:FAST_ARRAY(REAL_32) <- 
+  (
+    not_yet_implemented; NULL
+  );
+  
+  - get_colors_data:FAST_ARRAY(REAL_32) <- 
+  (
+    not_yet_implemented; NULL
+  );
+  
\ No newline at end of file
diff --git a/lib/unstable/opengl/opengl/opengl_abstract.li b/lib/unstable/opengl/opengl/opengl_abstract.li
new file mode 100644
index 0000000..36a0998
--- /dev/null
+++ b/lib/unstable/opengl/opengl/opengl_abstract.li
@@ -0,0 +1,250 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := OPENGL_ABSTRACT;
+  
+Section Inherit
+  
+  + parent_renderer:Expanded RENDERER;
+  
+  - parent_opengl_specific:OPENGL_SPECIFIC := OPENGL_SPECIFIC;
+
+Section Public
+
+  //
+  // Renderer Modules
+  //
+  
+  - transform:TRANSFORM <- GL_TRANSFORM;
+  - texture1d:TEXTURE <- GL_TEXTURE1D;
+  - texture2d:TEXTURE <- GL_TEXTURE2D;
+  - font:FONT <- GL_FONT;
+  - light:LIGHT <- GL_LIGHT;
+  - material:MATERIAL <- GL_MATERIAL;
+  - plane:PLANE <- GL_PLANE;
+  - quadrics:QUADRICS <- GL_QUADRICS;
+  - blending:BLENDING <- GL_BLENDING;
+  - culling:CULLING <- GL_CULLING;
+  - fog:FOG := GL_FOG; 
+  
+  //
+  // Renderer features
+  //
+  
+  - vb:VERTEX_BUFFER := GL_VERTEX_BUFFER; // renderer current Vertex Buffer
+  - vertex_array:VERTEX_BUFFER <- GL_VERTEX_ARRAY;
+  - vertex_buffer:VERTEX_BUFFER <- GL_VERTEX_BUFFER;
+  - index_buffer:INDEX_BUFFER <- GL_INDEX_BUFFER;
+  - display_list:DISPLAY_LIST <- GL_DISPLAY_LIST;
+  
+  - color_buffer:COLOR_BUFFER <- GL_COLOR_BUFFER;
+  - depth_buffer:DEPTH_BUFFER <- GL_DEPTH_BUFFER;
+  - stencil_buffer:STENCIL_BUFFER <- GL_STENCIL_BUFFER;
+  - accum_buffer:ACCUM_BUFFER <- GL_ACCUM_BUFFER;
+  - alpha_test:ALPHA_TEST <- GL_ALPHA_TEST;
+  - scissor:SCISSOR <- GL_SCISSOR;
+  
+  - evaluator1d:EVALUATOR1D <- GL_EVALUATOR1D;
+  - evaluator2d:EVALUATOR2D <- GL_EVALUATOR2D;
+  
+  - shader:SHADER <- GL_SHADER;
+  
+  - name_stack:NAME_STACK <- GL_NAME_STACK;
+  
+  - error:ERROR <- GL_ERROR;
+  
+
+  - initialize <-
+  (   
+    reshape.set_render_system Self;
+    
+    `glClearColor(0, 0, 0, 1)`;
+  );
+  
+  - begin_frame <-
+  // pre rendering
+  (
+    clear_screen;
+    
+    // reset world matrix 
+    `glLoadIdentity()`;
+    //transform.load_identity;
+  );
+  
+  - end_frame <-
+  // post rendering
+  (
+    swap_buffers;
+  );
+  
+  - new_frame body:BLOCK <-
+  (
+    begin_frame;
+    body.value;
+    end_frame;
+  );
+  
+  - clear_screen <- 
+  (    
+    `glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);`;
+  );
+  
+  - active_vertex_array sizemax:INTEGER <- 
+  (
+    vb := GL_VERTEX_ARRAY.create sizemax;
+  );
+  
+  - enable_shading <- 
+  (
+    `glShadeModel (GL_SMOOTH)`;
+  );
+  
+  - disable_shading <- 
+  (
+    `glShadeModel (GL_FLAT)`;
+  );
+  
+  - enable_lighting <- 
+  (
+    `glEnable(GL_LIGHTING)`;
+  );
+  
+  - disable_lighting <- 
+  (
+    `glDisable(GL_LIGHTING)`;
+  );
+  
+  
+  - wireframe_mode on:BOOLEAN <-
+  (
+    on.if {
+      `glPolygonMode(GL_FRONT, GL_LINE)`;
+      `glPolygonMode(GL_BACK, GL_LINE)`;
+    } else {
+      `glPolygonMode(GL_FRONT, GL_FILL)`;
+      `glPolygonMode(GL_BACK, GL_FILL)`;
+    };
+  );
+  
+  - enable_auto_normal <-
+  (
+    `glEnable(GL_AUTO_NORMAL)`;
+  );
+  
+  - disable_auto_normal <-
+  (
+    `glDisable(GL_AUTO_NORMAL)`;
+  );
+  
+  
+  - set_point_size sz:REAL_32 <-
+  (
+    `glPointSize(@sz)`;
+  );
+  
+  - set_line_width w:REAL_32 <-
+  (
+    `glLineWidth(@w)`;
+  );
+  
+  - set_fog f:FOG <-
+  (
+    fog := f;
+  );
+  
+  - set_quality q:INTEGER <- 
+  (
+    + mode:INTEGER;
+    
+    q
+    .when nicest_quality then {
+      mode := `GL_NICEST`:INTEGER;
+    }
+    .when fastest_quality then {
+      mode := `GL_FASTEST`:INTEGER;  
+    }
+    .when default_quality then {
+      mode := `GL_DONT_CARE`:INTEGER;
+    };
+    `glHint(GL_PERSPECTIVE_CORRECTION_HINT, @mode)`;
+  );
+  
+  //
+  // Render modes (GL_RENDER (default), GL_SELECT, GL_FEEDBACK)
+  //
+  
+  - begin_selection_in buffer:FAST_ARRAY(UINTEGER_32) size sz:INTEGER <-
+  (
+    + p:POINTER;
+    
+    p := buffer.to_external;
+    `glSelectBuffer (@sz, @p);`;
+    
+    `(void) glRenderMode (GL_SELECT)`;
+  );
+  
+  - end_selection:INTEGER <- 
+  (
+    `glRenderMode (GL_RENDER)`:INTEGER
+  );
+  
+  
+  - set_fullscreen <-
+  (
+    is_fullscreeen  := TRUE;
+  );
+  
+  //
+  // Renderer informations
+  //
+  
+  - video_card_name buf:STRING <- 
+  (
+    get_value (`GL_RENDERER`:INTEGER) on buf;
+  );
+  - video_card_vendor buf:STRING <- 
+  (
+    get_value (`GL_VENDOR`:INTEGER) on buf;
+  );
+  - video_card_version buf:STRING <-
+  (
+    get_value (`GL_VERSION`:INTEGER) on buf;
+  );
+  
+ 
+  
+Section Private
+  
+  - get_value val:INTEGER on str:STRING <-
+  (
+    + tmp:NATIVE_ARRAY(CHARACTER);
+    + i:INTEGER;
+    
+    tmp := `glGetString(@val)`:NATIVE_ARRAY(CHARACTER);
+    {tmp.item i != '\0'}.while_do {
+      // string copy
+      str.add_last (tmp.item i);
+      i := i+1;
+    };
+  );
+ 
diff --git a/lib/unstable/opengl/opengl/opengl_specific.li b/lib/unstable/opengl/opengl/opengl_specific.li
new file mode 100644
index 0000000..703240c
--- /dev/null
+++ b/lib/unstable/opengl/opengl/opengl_specific.li
@@ -0,0 +1,94 @@
+///////////////////////////////////////////////////////////////////////////////
+//                         Lisaac-OpenGL Library                            //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := OPENGL_SPECIFIC;
+  
+Section Inherit
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Public
+  
+  //
+  // OpenGL Extensions
+  //
+  
+  - arb_multitexture:ARB_MULTITEXTURE;
+  - arb_vertex_buffer_object:ARB_VERTEX_BUFFER_OBJECT;
+  
+  - arb_shader_object:ARB_SHADER_OBJECT;
+  - arb_vertex_shader:ARB_VERTEX_SHADER;
+  - arb_fragment_shader:ARB_FRAGMENT_SHADER;
+  - arb_shading_language_100:ARB_SHADING_LANGUAGE_100;
+  
+  
+  - use_arb_multitexture:BOOLEAN <-
+  (
+    arb_multitexture := ARB_MULTITEXTURE.create;
+    arb_multitexture != NULL
+  );
+  
+  - use_arb_vertex_buffer_object:BOOLEAN <-
+  (
+    arb_vertex_buffer_object := ARB_VERTEX_BUFFER_OBJECT.create;
+    arb_vertex_buffer_object != NULL
+  );
+  
+  - use_arb_shader_object:BOOLEAN <-
+  (
+    arb_shader_object := ARB_SHADER_OBJECT.create;
+    arb_shader_object != NULL
+  );
+  
+  - use_arb_vertex_shader:BOOLEAN <-
+  (
+    arb_vertex_shader := ARB_VERTEX_SHADER.create;
+    arb_vertex_shader != NULL
+  );
+   
+  - use_arb_fragment_shader:BOOLEAN <-
+  (
+    arb_fragment_shader := ARB_FRAGMENT_SHADER.create;
+    arb_fragment_shader != NULL
+  );
+  
+  - use_arb_shading_language_100:BOOLEAN <-
+  (
+    arb_shading_language_100 := ARB_SHADING_LANGUAGE_100.create;
+    arb_shading_language_100 != NULL
+  );
+  
+  - use_shaders:BOOLEAN <-
+  (
+    use_arb_shader_object && {use_arb_vertex_shader} && {use_arb_fragment_shader} && {use_arb_shading_language_100}
+  );
+  
+  - use_extensions <-
+  // load everything
+  (
+    use_arb_vertex_buffer_object;
+    use_arb_multitexture;
+    
+    use_shaders;
+    //...
+  );
\ No newline at end of file
diff --git a/lib/unstable/reflexivity/fifo_cop.li b/lib/unstable/reflexivity/fifo_cop.li
new file mode 100644
index 0000000..9fea732
--- /dev/null
+++ b/lib/unstable/reflexivity/fifo_cop.li
@@ -0,0 +1,107 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+ 
+  + name     := FIFO_COP;
+
+    
+  - comment  :="FIFO call for COP.";
+  
+  - external := 
+  `pthread_mutex_t fifo_mutex;`;
+  
+Section Inherit 
+  
+  - parent_object:OBJECT := OBJECT;
+  
+Section Private
+  
+  - storage:FAST_ARRAY(INTEGER_32) := FAST_ARRAY(INTEGER_32).create 8;
+  // WARNING: Always power 2 for storage capacity.
+  
+  - first:INTEGER;
+  
+  - last:INTEGER;
+    
+Section Public
+  
+  //
+  // Stat.
+  //
+  
+  - is_empty:BOOLEAN <- first = last;  
+  
+  //
+  // Push.
+  //
+  
+  - add verrou:INTEGER_32 <-
+  ( + old_count:INTEGER;
+    + old_is_empty:BOOLEAN;
+    
+    lock;
+    //
+    old_is_empty := is_empty;
+    storage.put verrou to last;
+    last := (last + 1) & storage.upper;
+    (last = first).if {
+      // Resize FIFO.
+      old_count := storage.count;
+      storage.resize (storage.count * 2);
+      0.to (first-1) do { i:INTEGER;
+	storage.put (storage.item i) to (old_count + i);
+      };
+      last := old_count + first;
+    };	
+    
+    (! old_is_empty).if {
+      wait verrou;
+    };
+    //
+    unlock;   
+  );
+  
+  // 
+  // Pop.  
+  //
+  
+  - next <-
+  (
+    lock;
+    //
+    first := (first + 1) & storage.upper;    
+    (! is_empty).if {
+      wake_up (storage.item first);
+    };
+    //
+    unlock;
+  );
+  
+Section Private
+  
+  - lock   <- `pthread_mutex_lock(&fifo_mutex)`;
+  
+  - unlock <- `pthread_mutex_unlock(&fifo_mutex)`;
+  
+  - wait verrou:INTEGER_32 <- `pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex)`;
+  
+  - wake_up verrou:INTEGER_32 <- `pthread_cond_broadcast(pthread_cond_t *cond)`;
+  
\ No newline at end of file
diff --git a/lib/unstable/reflexivity/view_object.li b/lib/unstable/reflexivity/view_object.li
new file mode 100644
index 0000000..06aa4cc
--- /dev/null
+++ b/lib/unstable/reflexivity/view_object.li
@@ -0,0 +1,160 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+ 
+  + name    := VIEW_OBJECT(E);
+
+    
+  - comment := "Reflexivity view object.";
+  
+Section Public  
+  
+  //
+  // General information.
+  //
+  
+  //- name:STRING_CONSTANT <- `FUCK`;
+  
+  - is_separate:BOOLEAN <- `FUCK`;
+  
+  - is_expanded:BOOLEAN <- `FUCK`;
+  
+  - is_natif_expanded:BOOLEAN <- `FUCK`; 
+
+  //
+  // Data action.
+  //  
+  
+  - forall_data action:BLOCK <- `FUCK`;
+  
+  - forall_set_data action:BLOCK <- `FUCK`;
+  
+  - has_data:BOOLEAN <- `FUCK`;
+  
+  //
+  // Bit control access.
+  //
+  
+  - is_marked:BOOLEAN <-   
+  (
+    (is_natif_expanded) || {! has_data} || {(get_idf_intern & 001b) != 0}
+  );
+
+  - is_free:BOOLEAN        <- (get_idf_intern & 010b) != 0;
+  
+  - is_non_mutable:BOOLEAN <- 
+  (
+    (is_natif_expanded) || {! has_data} || {(get_idf_intern & 100b) != 0}
+  );
+        
+Section MEMORY  
+  
+  //
+  // MEMORY
+  //
+  
+  - set_mark <-
+  // Recurssive set marked bit
+  [ -? {! is_free}; ]
+  (
+    (! is_marked).if {
+      set_idf_intern (get_idf_intern | 001b);
+      for_all_data { obj:VIEW_OBJECT;	
+	obj.mark_object;
+      };
+    };
+  )
+  [ +? {is_marked}; ];
+  
+  - unset_mark <-
+  // Unset marked bit (non recurssive).
+  [ 
+    -? {is_marked};
+    -? {! is_free}; 
+  ]
+  (    
+    set_idf_intern (get_idf_intern & ~011b);
+    for_all_data { obj:VIEW_OBJECT;
+      ((! obj.is_natif_expanded) && {obj.is_expanded}).if {
+	obj.demark_object;
+      };
+    };
+  )
+  [ +? {! is_marked}; ];
+  
+  - set_free <-  
+  [ -? {! is_free}; ]
+  (
+    set_idf_intern (get_idf_intern | 010b);
+  )
+  [ +? {  is_free}; ];
+  
+  - deep_clone:VIEW_OBJECT(E) <-
+  ( + result:VIEW_OBJECT;
+        
+    ((! is_separate) && {! is_non_mutable}).if {
+      result := dico_clone.at Self else_add { 
+	+ new_clone:VIEW_OBJECT(E);
+	
+	new_clone := clone;
+	new_clone.for_all_set_data { obj:VIEW_OBJECT(F);
+	  obj.deep_clone
+	};
+	new_clone
+      };      
+    } else {
+      result := Self;
+    };
+    result
+  );
+  
+Section Public
+  
+  //
+  // Non mutable.
+  //
+  
+  - set_non_mutable <-
+  // Recurssive set non mutable bit.
+  (
+    (! is_non_mutable).if {
+      set_idf_intern (get_idf_intern | 100b);
+      for_all_data { obj:VIEW_OBJECT;	
+	obj.set_non_mutable;
+      };
+    };
+  );
+  
+Section Private
+  
+  - dico_clone:DICTIONARY(VIEW_OBJECT, VIEW_OBJECT) := DICTIONARY(VIEW_OBJECT, VIEW_OBJECT).create;
+  
+  - get_idf_intern:INTEGER <-
+  [ -? {! is_natif_expanded}; ]
+  (
+    `FUCK`    
+  );
+  
+  - set_idf_intern idf:INTEGER <-
+  [ -? {! is_natif_expanded}; ]
+  (
+    `FUCK`;
+  );
diff --git a/lib/unstable/reflexivity/view_slot.li b/lib/unstable/reflexivity/view_slot.li
new file mode 100644
index 0000000..eeaaf4e
--- /dev/null
+++ b/lib/unstable/reflexivity/view_slot.li
@@ -0,0 +1,96 @@
+///////////////////////////////////////////////////////////////////////////////
+//                             Lisaac Library                                //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+ 
+  + name        := VIEW_SLOT;
+
+    
+  - comment     :="Reflexivity view slot.";
+  
+Section Public  
+  
+  //
+  // General information.
+  //
+  
+  //- name:STRING_CONSTANT <- `FUCK`;
+  
+  //- is_shared:BOOLEAN <- `FUCK`; 
+  // TRUE if '-' style, FALSE else.
+  
+  //- is_data:BOOLEAN <- `FUCK`;
+  
+  //- is_method:BOOLEAN <- ! is_data;
+  
+  //- section:STRING_CONSTANT <- `FUCK`;
+  
+  //
+  // Result analysis.
+  //
+  
+  //- result:VIEW_OBJECT <-
+  // Return the first result.  
+  //[
+  //  -? {upper_result = 0};
+  //]
+  //(
+  //  `FUCK`
+  //);
+  
+  //- lower_result:INTEGER := 0;  
+  
+  //- upper_result:INTEGER <-
+  
+  //- item_result idx:INTEGER :VIEW_OBJECT <-
+  //[
+  //  -? {in_range lower_result to upper_result};
+  //]
+  //(
+  //  `FUCK`
+  //);
+  
+  //
+  // Arguments access.
+  //
+  
+  //- lower_argument:INTEGER := 0;
+  
+  //- upper_argument:INTEGER <- `FUCK`;
+  
+  //- item_argument idx:INTEGER :VIEW_OBJECT <-
+  //[
+  //  -? {in_range lower_argument to upper_argument};
+  //]
+  //(
+  //  `FUCK`
+  //);
+  
+  //
+  // Call.
+  //
+  
+  //- call_with args:BLOCK :BLOCK <- `FUCK`;
+  
+  //- call:BLOCK <- 
+  //(
+  //  call_with NULL
+  //);
+  
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/belinda/KEYCODE.html b/lib/unstable/sdl-binding/docs/belinda/KEYCODE.html
new file mode 100644
index 0000000..f687b24
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/KEYCODE.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>KEYCODE</h2><hr><strong>Xavier Oswald <x.oswald at free.fr></strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent_keycode">parent_keycode</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Slot Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#make">make</a></b></code><dd></td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent_keycode"><!-- --></a><hr><h3>parent_keycode</h3><dl><dd><code>.../keycode.li line #35</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent_keycode</font></strong>&nbsp;:<strong><font color="#A020F0">Expanded</font></strong> &nbsp;<a href="ABSTRACT_KEYCODE.html"><font color="#008000">ABSTRACT_KEYCODE</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Detail slot</b></font></td></tr></tbody></table></dl><a name="make"><!-- --></a><hr><h3>make</h3><dl><dd><code>.../keycode.li line #39</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">make</font></strong>&nbsp;
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/OLD-unix.html b/lib/unstable/sdl-binding/docs/belinda/OLD-unix.html
new file mode 100644
index 0000000..94e9cba
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/OLD-unix.html
@@ -0,0 +1,5 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_EVENT.html" target="content">SDL_EVENT</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/belinda/OLD.html b/lib/unstable/sdl-binding/docs/belinda/OLD.html
new file mode 100644
index 0000000..008cf1a
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/OLD.html
@@ -0,0 +1,7 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_KEYCODE.html" target="content">SDL_KEYCODE</a>
+<br><a href="SDL_ABSTRACT_MUSIC_TYPE.html" target="content">SDL_ABSTRACT_MUSIC_TYPE</a>
+<br><a href="SDL_ABSTRACT_KEYCODE.html" target="content">SDL_ABSTRACT_KEYCODE</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL.html b/lib/unstable/sdl-binding/docs/belinda/SDL.html
new file mode 100644
index 0000000..0c5f661
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL.html
@@ -0,0 +1,47 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL</h2><hr><strong>A cross-platform multimedia library designed to provide fast hardware access.</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ SDL INIT FLAGS
<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#init_timer">init_timer</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#init_audio">init_audio</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#init_video">init_video</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#init_cdrom">init_cdrom</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#init_joystick">init_joystick</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#init_noparachute">init_noparachute</a></b></code><dd> Don't catch fatal signals
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#init_eventthread">init_eventthread</a></b></code><dd> Not supported on all OS's
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#init_everything">init_everything</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ INIT AND QUIT SDL SUBSYTEMS
<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#init">init</a></b></code><dd> This function loads the SDL dynamically linked library and initializes 
+ the subsystems specified by <em><b><font color="#000000">flags</font></em></b> (and those satisfying dependencies)
+ Unless the <code><b><a href="#init_noparachute">init_noparachute</a></b></code> flag is set, it will install cleanup signal
+ handlers for some commonly ignored fatal signals (like SIGSEGV)
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#init_subsystem">init_subsystem</a></b></code><dd> This function initializes specific SDL subsystems
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#was_init">was_init</a></b></code><dd> This function returns mask of the specified subsystems which have been
+ initialized. If <em><b><font color="#000000">flags</font></em></b> is 0, it returns a mask of all initialized
+ subsystems.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#quit_subsystem">quit_subsystem</a></b></code><dd> This function cleans up specific SDL subsystems
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#quit">quit</a></b></code><dd> This function cleans up all initialized subsystems and unloads the
+ dynamically linked library. You should call it upon all exit conditions.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_timer">set_timer</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_audio">set_audio</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_video">set_video</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_cdrom">set_cdrom</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_joystick">set_joystick</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_noparachute">set_noparachute</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_eventthread">set_eventthread</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_everything">set_everything</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#unset_timer">unset_timer</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#unset_audio">unset_audio</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#unset_video">unset_video</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#unset_cdrom">unset_cdrom</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#unset_joystick">unset_joystick</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#unset_noparachute">unset_noparachute</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#unset_eventthread">unset_eventthread</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#unset_everything">unset_everything</a></b></code><dd></td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ SDL INIT FLAGS
<br>
+</b></font></td></tr></tbody></table></dl><a name="init_timer"><!-- --></a><hr><h3>init_timer</h3><dl><dd><code>.../sdl.li line #35</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">init_timer</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a></dl><a name="init_audio"><!-- --></a><hr><h3>init_audio</h3><dl><dd><code>.../sdl.li line #36</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">init_audio</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a></dl><a name="init_video"><!-- --></a><hr><h3>init_video</h3><dl><dd><code>.../sdl.li line #37</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">init_video</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a></dl><a name="init_cdrom"><!-- --></a><hr><h3>init_cdrom</h3><dl><dd><code>.../sdl.li line #38</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">init_cdrom</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a></dl><a name="init_joystick"><!-- --></a><hr><h3>init_joystick</h3><dl><dd><code>.../sdl.li line #39</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">init_joystick</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a></dl><a name="init_noparachute"><!-- --></a><hr><h3>init_noparachute</h3><dl><dd><code>.../sdl.li line #40</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">init_noparachute</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Don't catch fatal signals
+</dd></dl><a name="init_eventthread"><!-- --></a><hr><h3>init_eventthread</h3><dl><dd><code>.../sdl.li line #41</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">init_eventthread</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Not supported on all OS's
+</dd></dl><a name="init_everything"><!-- --></a><hr><h3>init_everything</h3><dl><dd><code>.../sdl.li line #42</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">init_everything</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ INIT AND QUIT SDL SUBSYTEMS
<br>
+</b></font></td></tr></tbody></table></dl><a name="init"><!-- --></a><hr><h3>init</h3><dl><dd><code>.../sdl.li line #47</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">init</font></strong>&nbsp; &nbsp;flags&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a> :&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> This function loads the SDL dynamically linked library and initializes 
+ the subsystems specified by <em><b><font color="#000000">flags</font></em></b> (and those satisfying dependencies)
+ Unless the <code><b><a href="#init_noparachute">init_noparachute</a></b></code> flag is set, it will install cleanup signal
+ handlers for some commonly ignored fatal signals (like SIGSEGV)
+</dd></dl><a name="init_subsystem"><!-- --></a><hr><h3>init_subsystem</h3><dl><dd><code>.../sdl.li line #56</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">init_subsystem</font></strong>&nbsp; &nbsp;flags&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a> :&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> This function initializes specific SDL subsystems
+</dd></dl><a name="was_init"><!-- --></a><hr><h3>was_init</h3><dl><dd><code>.../sdl.li line #62</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">was_init</font></strong>&nbsp; &nbsp;flags&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a> :&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> This function returns mask of the specified subsystems which have been
+ initialized. If <em><b><font color="#000000">flags</font></em></b> is 0, it returns a mask of all initialized
+ subsystems.
+</dd></dl><a name="quit_subsystem"><!-- --></a><hr><h3>quit_subsystem</h3><dl><dd><code>.../sdl.li line #70</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">quit_subsystem</font></strong>&nbsp; &nbsp;flags&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a> <dt><b><br>Description:</b></dt><dd> This function cleans up specific SDL subsystems
+</dd></dl><a name="quit"><!-- --></a><hr><h3>quit</h3><dl><dd><code>.../sdl.li line #76</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">quit</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> This function cleans up all initialized subsystems and unloads the
+ dynamically linked library. You should call it upon all exit conditions.
+</dd></dl><a name="set_timer"><!-- --></a><hr><h3>set_timer</h3><dl><dd><code>.../sdl.li line #84</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_timer</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="set_audio"><!-- --></a><hr><h3>set_audio</h3><dl><dd><code>.../sdl.li line #85</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_audio</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="set_video"><!-- --></a><hr><h3>set_video</h3><dl><dd><code>.../sdl.li line #86</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_video</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="set_cdrom"><!-- --></a><hr><h3>set_cdrom</h3><dl><dd><code>.../sdl.li line #87</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_cdrom</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="set_joystick"><!-- --></a><hr><h3>set_joystick</h3><dl><dd><code>.../sdl.li line #88</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_joystick</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="set_noparachute"><!-- --></a><hr><h3>set_noparachute</h3><dl><dd><code>.../sdl.li line #89</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_noparachute</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="set_eventthread"><!-- --></a><hr><h3>set_eventthread</h3><dl><dd><code>.../sdl.li line #90</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_eventthread</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="set_everything"><!-- --></a><hr><h3>set_everything</h3><dl><dd><code>.../sdl.li line #91</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_everything</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="unset_timer"><!-- --></a><hr><h3>unset_timer</h3><dl><dd><code>.../sdl.li line #93</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">unset_timer</font></strong>&nbsp;</dl><a name="unset_audio"><!-- --></a><hr><h3>unset_audio</h3><dl><dd><code>.../sdl.li line #94</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">unset_audio</font></strong>&nbsp;</dl><a name="unset_video"><!-- --></a><hr><h3>unset_video</h3><dl><dd><code>.../sdl.li line #95</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">unset_video</font></strong>&nbsp;</dl><a name="unset_cdrom"><!-- --></a><hr><h3>unset_cdrom</h3><dl><dd><code>.../sdl.li line #96</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">unset_cdrom</font></strong>&nbsp;</dl><a name="unset_joystick"><!-- --></a><hr><h3>unset_joystick</h3><dl><dd><code>.../sdl.li line #97</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">unset_joystick</font></strong>&nbsp;</dl><a name="unset_noparachute"><!-- --></a><hr><h3>unset_noparachute</h3><dl><dd><code>.../sdl.li line #98</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">unset_noparachute</font></strong>&nbsp;</dl><a name="unset_eventthread"><!-- --></a><hr><h3>unset_eventthread</h3><dl><dd><code>.../sdl.li line #99</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">unset_eventthread</font></strong>&nbsp;</dl><a name="unset_everything"><!-- --></a><hr><h3>unset_everything</h3><dl><dd><code>.../sdl.li line #100</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">unset_everything</font></strong>&nbsp;
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_ABSTRACT_KEYCODE.html b/lib/unstable/sdl-binding/docs/belinda/SDL_ABSTRACT_KEYCODE.html
new file mode 100644
index 0000000..a168445
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_ABSTRACT_KEYCODE.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_ABSTRACT_KEYCODE</h2><hr><strong>Xavier Oswald <xoswald at debian.org></strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent_object">parent_object</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Slot Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#max_keys">max_keys</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_backspace">k_backspace</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_tab">k_tab</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_clear">k_clear</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_return">k_return</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_pause">k_pause</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_escape">k_escape</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_space">k_space</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_exclaim">k_exclaim</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_quotedbl">k_quotedbl</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_hash">k_hash</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_dollar">k_dollar</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_ampersand">k_ampersand</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_quote">k_quote</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_leftparen">k_leftparen</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_rightparen">k_rightparen</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_asterisk">k_asterisk</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_plus">k_plus</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_comma">k_comma</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_minus">k_minus</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_period">k_period</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_slash">k_slash</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_0">k_0</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_1">k_1</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_2">k_2</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_3">k_3</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_4">k_4</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_5">k_5</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_6">k_6</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_7">k_7</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_8">k_8</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_9">k_9</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_colon">k_colon</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_semicolon">k_semicolon</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_less">k_less</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_equals">k_equals</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_greater">k_greater</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_question">k_question</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_at">k_at</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_leftbracket">k_leftbracket</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_backslash">k_backslash</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_rightbracket">k_rightbracket</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_caret">k_caret</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_underscore">k_underscore</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_backquote">k_backquote</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_a">k_a</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_b">k_b</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_c">k_c</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_d">k_d</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_e">k_e</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_f">k_f</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_g">k_g</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_h">k_h</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_i">k_i</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_j">k_j</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_k">k_k</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_l">k_l</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_m">k_m</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_n">k_n</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_o">k_o</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_p">k_p</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_q">k_q</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_r">k_r</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_s">k_s</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_t">k_t</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_u">k_u</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_v">k_v</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_w">k_w</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_x">k_x</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_y">k_y</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_z">k_z</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_delete">k_delete</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b> Numeric keypad
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_0">kp_0</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_1">kp_1</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_2">kp_2</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_3">kp_3</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_4">kp_4</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_5">kp_5</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_6">kp_6</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_7">kp_7</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_8">kp_8</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_9">kp_9</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_period">kp_period</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_divide">kp_divide</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_multiply">kp_multiply</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_minus">kp_minus</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_plus">kp_plus</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_enter">kp_enter</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_equals">kp_equals</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b> Arrows + Home/End pad
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_up">k_up</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_down">k_down</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_right">k_right</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_left">k_left</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_insert">k_insert</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_home">k_home</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_end">k_end</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_pageup">k_pageup</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_pagedown">k_pagedown</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b> Function keys
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_f1">k_f1</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_f2">k_f2</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_f3">k_f3</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_f4">k_f4</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_f5">k_f5</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_f6">k_f6</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_f7">k_f7</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_f8">k_f8</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_f9">k_f9</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_f10">k_f10</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_f11">k_f11</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_f12">k_f12</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_f13">k_f13</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_f14">k_f14</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_f15">k_f15</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b> Key state modifier keys
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_numlock">k_numlock</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_capslock">k_capslock</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_scrollock">k_scrollock</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_rshift">k_rshift</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_lshift">k_lshift</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_rctrl">k_rctrl</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_lctrl">k_lctrl</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_ralt">k_ralt</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_lalt">k_lalt</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_rmeta">k_rmeta</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_lmeta">k_lmeta</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_lsuper">k_lsuper</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_rsuper">k_rsuper</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_mode">k_mode</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_compose">k_compose</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b> Miscellaneous function keys
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_help">k_help</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_print">k_print</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_sysreq">k_sysreq</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_break">k_break</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_menu">k_menu</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_power">k_power</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_euro">k_euro</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_undo">k_undo</a></b></code><dd></td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent_object"><!-- --></a><hr><h3>parent_object</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #32</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent_object</font></strong>&nbsp;:&nbsp;<a href="OBJECT.html"><font color="#008000">OBJECT</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Detail slot</b></font></td></tr></tbody></table></dl><a name="max_keys"><!-- --></a><hr><h3>max_keys</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #40</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">max_keys</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_backspace"><!-- --></a><hr><h3>k_backspace</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #42</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_backspace</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_tab"><!-- --></a><hr><h3>k_tab</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #43</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_tab</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_clear"><!-- --></a><hr><h3>k_clear</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #44</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_clear</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_return"><!-- --></a><hr><h3>k_return</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #45</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_return</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_pause"><!-- --></a><hr><h3>k_pause</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #46</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_pause</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_escape"><!-- --></a><hr><h3>k_escape</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #47</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_escape</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_space"><!-- --></a><hr><h3>k_space</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #48</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_space</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_exclaim"><!-- --></a><hr><h3>k_exclaim</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #49</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_exclaim</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_quotedbl"><!-- --></a><hr><h3>k_quotedbl</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #50</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_quotedbl</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_hash"><!-- --></a><hr><h3>k_hash</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #51</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_hash</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_dollar"><!-- --></a><hr><h3>k_dollar</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #52</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_dollar</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_ampersand"><!-- --></a><hr><h3>k_ampersand</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #53</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_ampersand</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_quote"><!-- --></a><hr><h3>k_quote</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #54</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_quote</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_leftparen"><!-- --></a><hr><h3>k_leftparen</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #55</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_leftparen</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_rightparen"><!-- --></a><hr><h3>k_rightparen</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #56</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_rightparen</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_asterisk"><!-- --></a><hr><h3>k_asterisk</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #57</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_asterisk</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_plus"><!-- --></a><hr><h3>k_plus</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #58</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_plus</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_comma"><!-- --></a><hr><h3>k_comma</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #59</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_comma</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_minus"><!-- --></a><hr><h3>k_minus</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #60</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_minus</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_period"><!-- --></a><hr><h3>k_period</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #61</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_period</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_slash"><!-- --></a><hr><h3>k_slash</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #62</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_slash</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_0"><!-- --></a><hr><h3>k_0</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #63</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_0</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_1"><!-- --></a><hr><h3>k_1</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #64</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_1</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_2"><!-- --></a><hr><h3>k_2</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #65</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_2</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_3"><!-- --></a><hr><h3>k_3</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #66</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_3</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_4"><!-- --></a><hr><h3>k_4</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #67</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_4</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_5"><!-- --></a><hr><h3>k_5</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #68</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_5</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_6"><!-- --></a><hr><h3>k_6</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #69</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_6</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_7"><!-- --></a><hr><h3>k_7</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #70</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_7</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_8"><!-- --></a><hr><h3>k_8</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #71</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_8</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_9"><!-- --></a><hr><h3>k_9</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #72</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_9</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_colon"><!-- --></a><hr><h3>k_colon</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #73</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_colon</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_semicolon"><!-- --></a><hr><h3>k_semicolon</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #74</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_semicolon</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_less"><!-- --></a><hr><h3>k_less</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #75</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_less</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_equals"><!-- --></a><hr><h3>k_equals</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #76</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_equals</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_greater"><!-- --></a><hr><h3>k_greater</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #77</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_greater</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_question"><!-- --></a><hr><h3>k_question</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #78</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_question</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_at"><!-- --></a><hr><h3>k_at</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #79</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_at</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_leftbracket"><!-- --></a><hr><h3>k_leftbracket</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #80</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_leftbracket</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_backslash"><!-- --></a><hr><h3>k_backslash</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #81</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_backslash</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_rightbracket"><!-- --></a><hr><h3>k_rightbracket</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #82</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_rightbracket</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_caret"><!-- --></a><hr><h3>k_caret</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #83</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_caret</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_underscore"><!-- --></a><hr><h3>k_underscore</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #84</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_underscore</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_backquote"><!-- --></a><hr><h3>k_backquote</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #85</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_backquote</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_a"><!-- --></a><hr><h3>k_a</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #86</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_a</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_b"><!-- --></a><hr><h3>k_b</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #87</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_b</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_c"><!-- --></a><hr><h3>k_c</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #88</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_c</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_d"><!-- --></a><hr><h3>k_d</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #89</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_d</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_e"><!-- --></a><hr><h3>k_e</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #90</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_e</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_f"><!-- --></a><hr><h3>k_f</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #91</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_f</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_g"><!-- --></a><hr><h3>k_g</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #92</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_g</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_h"><!-- --></a><hr><h3>k_h</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #93</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_h</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_i"><!-- --></a><hr><h3>k_i</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #94</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_i</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_j"><!-- --></a><hr><h3>k_j</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #95</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_j</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_k"><!-- --></a><hr><h3>k_k</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #96</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_k</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_l"><!-- --></a><hr><h3>k_l</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #97</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_l</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_m"><!-- --></a><hr><h3>k_m</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #98</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_m</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_n"><!-- --></a><hr><h3>k_n</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #99</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_n</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_o"><!-- --></a><hr><h3>k_o</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #100</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_o</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_p"><!-- --></a><hr><h3>k_p</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #101</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_p</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_q"><!-- --></a><hr><h3>k_q</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #102</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_q</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_r"><!-- --></a><hr><h3>k_r</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #103</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_r</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_s"><!-- --></a><hr><h3>k_s</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #104</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_s</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_t"><!-- --></a><hr><h3>k_t</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #105</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_t</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_u"><!-- --></a><hr><h3>k_u</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #106</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_u</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_v"><!-- --></a><hr><h3>k_v</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #107</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_v</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_w"><!-- --></a><hr><h3>k_w</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #108</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_w</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_x"><!-- --></a><hr><h3>k_x</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #109</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_x</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_y"><!-- --></a><hr><h3>k_y</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #110</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_y</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_z"><!-- --></a><hr><h3>k_z</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #111</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_z</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_delete"><!-- --></a><hr><h3>k_delete</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #112</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_delete</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b> Numeric keypad
+</b></font></td></tr></tbody></table></dl><a name="kp_0"><!-- --></a><hr><h3>kp_0</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #115</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_0</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_1"><!-- --></a><hr><h3>kp_1</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #116</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_1</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_2"><!-- --></a><hr><h3>kp_2</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #117</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_2</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_3"><!-- --></a><hr><h3>kp_3</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #118</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_3</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_4"><!-- --></a><hr><h3>kp_4</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #119</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_4</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_5"><!-- --></a><hr><h3>kp_5</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #120</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_5</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_6"><!-- --></a><hr><h3>kp_6</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #121</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_6</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_7"><!-- --></a><hr><h3>kp_7</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #122</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_7</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_8"><!-- --></a><hr><h3>kp_8</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #123</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_8</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_9"><!-- --></a><hr><h3>kp_9</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #124</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_9</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_period"><!-- --></a><hr><h3>kp_period</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #125</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_period</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_divide"><!-- --></a><hr><h3>kp_divide</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #126</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_divide</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_multiply"><!-- --></a><hr><h3>kp_multiply</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #127</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_multiply</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_minus"><!-- --></a><hr><h3>kp_minus</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #128</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_minus</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_plus"><!-- --></a><hr><h3>kp_plus</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #129</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_plus</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_enter"><!-- --></a><hr><h3>kp_enter</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #130</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_enter</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_equals"><!-- --></a><hr><h3>kp_equals</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #131</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_equals</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b> Arrows + Home/End pad
+</b></font></td></tr></tbody></table></dl><a name="k_up"><!-- --></a><hr><h3>k_up</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #134</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_up</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_down"><!-- --></a><hr><h3>k_down</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #135</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_down</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_right"><!-- --></a><hr><h3>k_right</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #136</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_right</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_left"><!-- --></a><hr><h3>k_left</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #137</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_left</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_insert"><!-- --></a><hr><h3>k_insert</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #138</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_insert</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_home"><!-- --></a><hr><h3>k_home</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #139</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_home</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_end"><!-- --></a><hr><h3>k_end</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #140</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_end</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_pageup"><!-- --></a><hr><h3>k_pageup</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #141</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_pageup</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_pagedown"><!-- --></a><hr><h3>k_pagedown</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #142</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_pagedown</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b> Function keys
+</b></font></td></tr></tbody></table></dl><a name="k_f1"><!-- --></a><hr><h3>k_f1</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #145</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_f1</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_f2"><!-- --></a><hr><h3>k_f2</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #146</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_f2</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_f3"><!-- --></a><hr><h3>k_f3</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #147</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_f3</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_f4"><!-- --></a><hr><h3>k_f4</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #148</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_f4</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_f5"><!-- --></a><hr><h3>k_f5</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #149</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_f5</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_f6"><!-- --></a><hr><h3>k_f6</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #150</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_f6</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_f7"><!-- --></a><hr><h3>k_f7</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #151</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_f7</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_f8"><!-- --></a><hr><h3>k_f8</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #152</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_f8</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_f9"><!-- --></a><hr><h3>k_f9</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #153</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_f9</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_f10"><!-- --></a><hr><h3>k_f10</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #154</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_f10</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_f11"><!-- --></a><hr><h3>k_f11</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #155</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_f11</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_f12"><!-- --></a><hr><h3>k_f12</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #156</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_f12</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_f13"><!-- --></a><hr><h3>k_f13</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #157</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_f13</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_f14"><!-- --></a><hr><h3>k_f14</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #158</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_f14</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_f15"><!-- --></a><hr><h3>k_f15</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #159</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_f15</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b> Key state modifier keys
+</b></font></td></tr></tbody></table></dl><a name="k_numlock"><!-- --></a><hr><h3>k_numlock</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #162</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_numlock</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_capslock"><!-- --></a><hr><h3>k_capslock</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #163</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_capslock</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_scrollock"><!-- --></a><hr><h3>k_scrollock</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #164</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_scrollock</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_rshift"><!-- --></a><hr><h3>k_rshift</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #165</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_rshift</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_lshift"><!-- --></a><hr><h3>k_lshift</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #166</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_lshift</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_rctrl"><!-- --></a><hr><h3>k_rctrl</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #167</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_rctrl</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_lctrl"><!-- --></a><hr><h3>k_lctrl</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #168</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_lctrl</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_ralt"><!-- --></a><hr><h3>k_ralt</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #169</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_ralt</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_lalt"><!-- --></a><hr><h3>k_lalt</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #170</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_lalt</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_rmeta"><!-- --></a><hr><h3>k_rmeta</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #171</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_rmeta</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_lmeta"><!-- --></a><hr><h3>k_lmeta</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #172</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_lmeta</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_lsuper"><!-- --></a><hr><h3>k_lsuper</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #173</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_lsuper</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_rsuper"><!-- --></a><hr><h3>k_rsuper</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #174</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_rsuper</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_mode"><!-- --></a><hr><h3>k_mode</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #175</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_mode</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_compose"><!-- --></a><hr><h3>k_compose</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #176</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_compose</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b> Miscellaneous function keys
+</b></font></td></tr></tbody></table></dl><a name="k_help"><!-- --></a><hr><h3>k_help</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #179</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_help</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_print"><!-- --></a><hr><h3>k_print</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #180</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_print</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_sysreq"><!-- --></a><hr><h3>k_sysreq</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #181</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_sysreq</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_break"><!-- --></a><hr><h3>k_break</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #182</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_break</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_menu"><!-- --></a><hr><h3>k_menu</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #183</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_menu</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_power"><!-- --></a><hr><h3>k_power</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #184</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_power</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_euro"><!-- --></a><hr><h3>k_euro</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #185</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_euro</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_undo"><!-- --></a><hr><h3>k_undo</h3><dl><dd><code>.../OLD/sdl_abstract_keycode.li line #186</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_undo</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_ABSTRACT_MUSIC_TYPE.html b/lib/unstable/sdl-binding/docs/belinda/SDL_ABSTRACT_MUSIC_TYPE.html
new file mode 100644
index 0000000..1f9cea5
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_ABSTRACT_MUSIC_TYPE.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_ABSTRACT_MUSIC_TYPE</h2><hr><strong>Xavier Oswald <xoswald at debian.org></strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent_object">parent_object</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Slot Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#max_music_type">max_music_type</a></b></code><dd></td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent_object"><!-- --></a><hr><h3>parent_object</h3><dl><dd><code>.../OLD/sdl_abstract_music_type.li line #32</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent_object</font></strong>&nbsp;:&nbsp;<a href="OBJECT.html"><font color="#008000">OBJECT</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Detail slot</b></font></td></tr></tbody></table></dl><a name="max_music_type"><!-- --></a><hr><h3>max_music_type</h3><dl><dd><code>.../OLD/sdl_abstract_music_type.li line #40</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">max_music_type</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_ACTIVE.html b/lib/unstable/sdl-binding/docs/belinda/SDL_ACTIVE.html
new file mode 100644
index 0000000..961d60a
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_ACTIVE.html
@@ -0,0 +1,31 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_ACTIVE</h2><hr><strong>SDL Application status</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ APPLICATION State:<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#app_mouse_focus">app_mouse_focus</a></b></code><dd> The application has mouse coverage 0x01
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#app_input_focus">app_input_focus</a></b></code><dd> The application has input focus 0x02
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#app_active">app_active</a></b></code><dd> The application is active 0x04
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#get_application_state">get_application_state</a></b></code><dd> This function returns the current state of the application, which is a
+ bitwise combination of <code><b><a href="#app_mouse_focus">app_mouse_focus</a></b></code>, <code><b><a href="#app_input_focus">app_input_focus</a></b></code> , and
+ <code><b><a href="#app_active">app_active</a></b></code>. If <code><b><a href="#app_active">app_active</a></b></code> is set, then the user is able to
+ see your application, otherwise it has been iconified or disabled.
+</td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ APPLICATION State:<br>
+</b></font></td></tr></tbody></table></dl><a name="app_mouse_focus"><!-- --></a><hr><h3>app_mouse_focus</h3><dl><dd><code>.../sdl_active.li line #35</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">app_mouse_focus</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> The application has mouse coverage 0x01
+</dd></dl><a name="app_input_focus"><!-- --></a><hr><h3>app_input_focus</h3><dl><dd><code>.../sdl_active.li line #38</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">app_input_focus</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> The application has input focus 0x02
+</dd></dl><a name="app_active"><!-- --></a><hr><h3>app_active</h3><dl><dd><code>.../sdl_active.li line #41</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">app_active</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> The application is active 0x04
+</dd></dl><a name="get_application_state"><!-- --></a><hr><h3>get_application_state</h3><dl><dd><code>.../sdl_active.li line #44</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">get_application_state</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> This function returns the current state of the application, which is a
+ bitwise combination of <code><b><a href="#app_mouse_focus">app_mouse_focus</a></b></code>, <code><b><a href="#app_input_focus">app_input_focus</a></b></code> , and
+ <code><b><a href="#app_active">app_active</a></b></code>. If <code><b><a href="#app_active">app_active</a></b></code> is set, then the user is able to
+ see your application, otherwise it has been iconified or disabled.
+</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_BLAH.html b/lib/unstable/sdl-binding/docs/belinda/SDL_BLAH.html
new file mode 100644
index 0000000..b656fd8
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_BLAH.html
@@ -0,0 +1,39 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_BLAH</h2><hr><strong>TrueType Font</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent_object">parent_object</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Constructor Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#create">create</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ Version
<br>
+ #define TTF_VERSION(X)		SDL_TTF_VERSION(X)
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#major">major</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#minor">minor</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#patch_level">patch_level</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ Font style
<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#style_normal">style_normal</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#style_bold">style_bold</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#style_italic">style_italic</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#style_underline">style_underline</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#print_version">print_version</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#init">init</a></b></code><dd> Initialize the TTF engine - returns 0 if successful, -1 on error
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#quit">quit</a></b></code><dd> De-initialize the TTF engine
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#was_init">was_init</a></b></code><dd> Check if the TTF engine is initialized
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#open_font">open_font</a></b></code><dd> Open a font file and create a font of the specified point size.  Some .fon
+ fonts will have several sizes embedded in the file, so the point size
+ becomes the index of choosing which size.  If the value is too high, the
+ last indexed size will be the default.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#make">make</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#render_text_solid">render_text_solid</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#close">close</a></b></code><dd> Close an opened font file
+</td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent_object"><!-- --></a><hr><h3>parent_object</h3><dl><dd><code>.../sdl_blah.li line #33</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">+ </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent_object</font></strong>&nbsp;:&nbsp;<a href="OBJECT.html"><font color="#008000">OBJECT</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Constructor Detail</b></font></td></tr></tbody></table></dl><a name="create"><!-- --></a><hr><h3>create</h3><dl><dd><code>.../sdl_blah.li line #82</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">create</font></strong>&nbsp;:&nbsp;<font color="#008000">SELF</font></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ Version
<br>
+ #define TTF_VERSION(X)		SDL_TTF_VERSION(X)
+</b></font></td></tr></tbody></table></dl><a name="major"><!-- --></a><hr><h3>major</h3><dl><dd><code>.../sdl_blah.li line #41</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">major</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="minor"><!-- --></a><hr><h3>minor</h3><dl><dd><code>.../sdl_blah.li line #42</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">minor</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="patch_level"><!-- --></a><hr><h3>patch_level</h3><dl><dd><code>.../sdl_blah.li line #43</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">patch_level</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ Font style
<br>
+</b></font></td></tr></tbody></table></dl><a name="style_normal"><!-- --></a><hr><h3>style_normal</h3><dl><dd><code>.../sdl_blah.li line #48</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">style_normal</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="style_bold"><!-- --></a><hr><h3>style_bold</h3><dl><dd><code>.../sdl_blah.li line #49</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">style_bold</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="style_italic"><!-- --></a><hr><h3>style_italic</h3><dl><dd><code>.../sdl_blah.li line #50</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">style_italic</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="style_underline"><!-- --></a><hr><h3>style_underline</h3><dl><dd><code>.../sdl_blah.li line #51</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">style_underline</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="print_version"><!-- --></a><hr><h3>print_version</h3><dl><dd><code>.../sdl_blah.li line #53</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">print_version</font></strong>&nbsp;</dl><a name="init"><!-- --></a><hr><h3>init</h3><dl><dd><code>.../sdl_blah.li line #63</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">init</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Initialize the TTF engine - returns 0 if successful, -1 on error
+</dd></dl><a name="quit"><!-- --></a><hr><h3>quit</h3><dl><dd><code>.../sdl_blah.li line #69</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">quit</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> De-initialize the TTF engine
+</dd></dl><a name="was_init"><!-- --></a><hr><h3>was_init</h3><dl><dd><code>.../sdl_blah.li line #75</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">was_init</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Check if the TTF engine is initialized
+</dd></dl><a name="open_font"><!-- --></a><hr><h3>open_font</h3><dl><dd><code>.../sdl_blah.li line #84</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">open_font</font></strong>&nbsp; (&nbsp;file&nbsp;:&nbsp;<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>,&nbsp;ptsize&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :&nbsp;<font color="#008000">SELF</font><dt><b><br>Description:</b></dt><dd> Open a font file and create a font of the specified point size.  Some .fon
+ fonts will have several sizes embedded in the file, so the point size
+ becomes the index of choosing which size.  If the value is too high, the
+ last indexed size will be the default.
+</dd></dl><a name="make"><!-- --></a><hr><h3>make</h3><dl><dd><code>.../sdl_blah.li line #95</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">make</font></strong>&nbsp; (&nbsp;file&nbsp;:&nbsp;<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>,&nbsp;ptsize&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) </dl><a name="render_text_solid"><!-- --></a><hr><h3>render_text_solid</h3><dl><dd><code>.../sdl_blah.li line #110</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">render_text_solid</font></strong>&nbsp; (&nbsp;text&nbsp;:&nbsp;<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>,&nbsp;fg&nbsp;:&nbsp;<a href="SDL_COLOR.html"><font color="#008000">SDL_COLOR</font></a>) :&nbsp;<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a></dl><a name="close"><!-- --></a><hr><h3>close</h3><dl><dd><code>.../sdl_blah.li line #124</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">close</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> Close an opened font file
+</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_CDROM.html b/lib/unstable/sdl-binding/docs/belinda/SDL_CDROM.html
new file mode 100644
index 0000000..4979915
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_CDROM.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_CDROM</h2><hr><strong>CD-ROM Global access. (In order to use these functions, SDL_INIT must have been called with the CD-ROM initialization. This causes SDL to scan the system for CD-ROM drives, and load appropriate drivers.)</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent_object">parent_object</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Constructor Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#create">create</a></b></code><dd> Create and Set the cdrom given a drive <em><b><font color="#000000">number</font></em></b>
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ STATUS<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_traempy">cd_traempy</a></b></code><dd> No CD-ROM
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_stopped">cd_stopped</a></b></code><dd> Stopped status
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_playing">cd_playing</a></b></code><dd> Playing status
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_paused">cd_paused</a></b></code><dd> Paused status
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_error">cd_error</a></b></code><dd> Error status<br>
+ DEVICES<br>
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#nb_drives">nb_drives</a></b></code><dd> Returns the number of CD-ROM drives on the system, or -1 if 
+ <em><b><font color="#000000">SDL_INIT.set_cdrom</font></em></b> or <em><b><font color="#000000">SDL_INIT.set_evrything</font></em></b> has not be called before.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#drive_name">drive_name</a></b></code><dd> Returns a human-readable, system-dependent identifier for a given CD-ROM 
+ drive <em><b><font color="#000000">number</font></em></b>. Example: <em><b><font color="#000000">/dev/cdrom</font></em></b> or <em><b><font color="#000000">E:</font></em></b>
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ Internal CD-ROM<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#status">status</a></b></code><dd> This function returns the current status of the CD-ROM drive.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_indrive">cd_indrive</a></b></code><dd> Given a status, returns <em><b><font color="#000000">TRUE</font></em></b> if there's a disk in the drive
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_play_tracks">cd_play_tracks</a></b></code><dd> Play the given CD starting at <em><b><font color="#000000">start_track</font></em></b> and <em><b><font color="#000000">start_frame</font></em></b> for <em><b><font color="#000000">ntracks</font></em></b>
+ tracks and <em><b><font color="#000000">nframes</font></em></b> frames.  If both <em><b><font color="#000000">ntrack</font></em></b> and <em><b><font color="#000000">nframe</font></em></b> are 0, play 
+ until the end of the CD.  This function will skip data tracks.
+ This slot should only be called after calling the slot <code><b><a href="#status">status</a></b></code> to 
+ get track information about the CD.
+ This function returns 0, or -1 if there was an error.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_play length">cd_play length</a></b></code><dd>  Play the given CD starting at <em><b><font color="#000000">start</font></em></b> frame for <em><b><font color="#000000">length</font></em></b> frames.
+  It returns <em><b><font color="#000000">TRUE</font></em></b>, or <em><b><font color="#000000">FALSE</font></em></b> if there was an error.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_pause">cd_pause</a></b></code><dd> Set the CD-ROM to pause.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_resume">cd_resume</a></b></code><dd> Resume CD-ROM.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_stop">cd_stop</a></b></code><dd> Stop playing CD-ROM.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#eject">eject</a></b></code><dd> Eject CD-ROM.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#close">close</a></b></code><dd> Close CD-ROM drive handling.
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ TRACKS:<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_numtracks">cd_numtracks</a></b></code><dd> Return the number of tracks of the CD-ROM else 0.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_cur_track">cd_cur_track</a></b></code><dd> Current track position
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_cur_track_length">cd_cur_track_length</a></b></code><dd> Length, in frames, of the current track
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_track_length">cd_track_length</a></b></code><dd> Length, in frames, of a given track.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_cur_frame">cd_cur_frame</a></b></code><dd> Current frame offset within current track
+</td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent_object"><!-- --></a><hr><h3>parent_object</h3><dl><dd><code>.../sdl_cdrom.li line #36</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">+ </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent_object</font></strong>&nbsp;:&nbsp;<a href="OBJECT.html"><font color="#008000">OBJECT</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Constructor Detail</b></font></td></tr></tbody></table></dl><a name="create"><!-- --></a><hr><h3>create</h3><dl><dd><code>.../sdl_cdrom.li line #74</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">create</font></strong>&nbsp; &nbsp;drive&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<font color="#008000">SELF</font><dt><b><br>Description:</b></dt><dd> Create and Set the cdrom given a drive <em><b><font color="#000000">number</font></em></b>
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ STATUS<br>
+</b></font></td></tr></tbody></table></dl><a name="cd_traempy"><!-- --></a><hr><h3>cd_traempy</h3><dl><dd><code>.../sdl_cdrom.li line #43</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_traempy</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> No CD-ROM
+</dd></dl><a name="cd_stopped"><!-- --></a><hr><h3>cd_stopped</h3><dl><dd><code>.../sdl_cdrom.li line #44</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_stopped</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Stopped status
+</dd></dl><a name="cd_playing"><!-- --></a><hr><h3>cd_playing</h3><dl><dd><code>.../sdl_cdrom.li line #45</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_playing</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Playing status
+</dd></dl><a name="cd_paused"><!-- --></a><hr><h3>cd_paused</h3><dl><dd><code>.../sdl_cdrom.li line #46</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_paused</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Paused status
+</dd></dl><a name="cd_error"><!-- --></a><hr><h3>cd_error</h3><dl><dd><code>.../sdl_cdrom.li line #47</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_error</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Error status<br>
+ DEVICES<br>
+</dd></dl><a name="nb_drives"><!-- --></a><hr><h3>nb_drives</h3><dl><dd><code>.../sdl_cdrom.li line #52</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">nb_drives</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Returns the number of CD-ROM drives on the system, or -1 if 
+ <em><b><font color="#000000">SDL_INIT.set_cdrom</font></em></b> or <em><b><font color="#000000">SDL_INIT.set_evrything</font></em></b> has not be called before.
+</dd></dl><a name="drive_name"><!-- --></a><hr><h3>drive_name</h3><dl><dd><code>.../sdl_cdrom.li line #59</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">drive_name</font></strong>&nbsp; &nbsp;d&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<a href="STRING.html"><font color="#008000">STRING</font></a><dt><b><br>Description:</b></dt><dd> Returns a human-readable, system-dependent identifier for a given CD-ROM 
+ drive <em><b><font color="#000000">number</font></em></b>. Example: <em><b><font color="#000000">/dev/cdrom</font></em></b> or <em><b><font color="#000000">E:</font></em></b>
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ Internal CD-ROM<br>
+</b></font></td></tr></tbody></table></dl><a name="status"><!-- --></a><hr><h3>status</h3><dl><dd><code>.../sdl_cdrom.li line #84</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">status</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> This function returns the current status of the CD-ROM drive.
+</dd></dl><a name="cd_indrive"><!-- --></a><hr><h3>cd_indrive</h3><dl><dd><code>.../sdl_cdrom.li line #90</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_indrive</font></strong>&nbsp; &nbsp;status&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Given a status, returns <em><b><font color="#000000">TRUE</font></em></b> if there's a disk in the drive
+</dd></dl><a name="cd_play_tracks"><!-- --></a><hr><h3>cd_play_tracks</h3><dl><dd><code>.../sdl_cdrom.li line #104</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_play_tracks</font></strong>&nbsp; (&nbsp;start_track&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;start_frame&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;ntracks&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;nframes&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Play the given CD starting at <em><b><font color="#000000">start_track</font></em></b> and <em><b><font color="#000000">start_frame</font></em></b> for <em><b><font color="#000000">ntracks</font></em></b>
+ tracks and <em><b><font color="#000000">nframes</font></em></b> frames.  If both <em><b><font color="#000000">ntrack</font></em></b> and <em><b><font color="#000000">nframe</font></em></b> are 0, play 
+ until the end of the CD.  This function will skip data tracks.
+ This slot should only be called after calling the slot <code><b><a href="#status">status</a></b></code> to 
+ get track information about the CD.
+ This function returns 0, or -1 if there was an error.
+</dd></dl><a name="cd_play length"><!-- --></a><hr><h3>cd_play length</h3><dl><dd><code>.../sdl_cdrom.li line #127</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_play</font></strong>&nbsp; &nbsp;s&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> &nbsp;<strong><font color="#0000FF">length</font></strong>&nbsp; &nbsp;l&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd>  Play the given CD starting at <em><b><font color="#000000">start</font></em></b> frame for <em><b><font color="#000000">length</font></em></b> frames.
+  It returns <em><b><font color="#000000">TRUE</font></em></b>, or <em><b><font color="#000000">FALSE</font></em></b> if there was an error.
+</dd></dl><a name="cd_pause"><!-- --></a><hr><h3>cd_pause</h3><dl><dd><code>.../sdl_cdrom.li line #142</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_pause</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> Set the CD-ROM to pause.
+</dd></dl><a name="cd_resume"><!-- --></a><hr><h3>cd_resume</h3><dl><dd><code>.../sdl_cdrom.li line #148</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_resume</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> Resume CD-ROM.
+</dd></dl><a name="cd_stop"><!-- --></a><hr><h3>cd_stop</h3><dl><dd><code>.../sdl_cdrom.li line #154</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_stop</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> Stop playing CD-ROM.
+</dd></dl><a name="eject"><!-- --></a><hr><h3>eject</h3><dl><dd><code>.../sdl_cdrom.li line #160</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">eject</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> Eject CD-ROM.
+</dd></dl><a name="close"><!-- --></a><hr><h3>close</h3><dl><dd><code>.../sdl_cdrom.li line #166</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">close</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> Close CD-ROM drive handling.
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ TRACKS:<br>
+</b></font></td></tr></tbody></table></dl><a name="cd_numtracks"><!-- --></a><hr><h3>cd_numtracks</h3><dl><dd><code>.../sdl_cdrom.li line #175</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_numtracks</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Return the number of tracks of the CD-ROM else 0.
+</dd></dl><a name="cd_cur_track"><!-- --></a><hr><h3>cd_cur_track</h3><dl><dd><code>.../sdl_cdrom.li line #178</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_cur_track</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Current track position
+</dd></dl><a name="cd_cur_track_length"><!-- --></a><hr><h3>cd_cur_track_length</h3><dl><dd><code>.../sdl_cdrom.li line #181</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_cur_track_length</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Length, in frames, of the current track
+</dd></dl><a name="cd_track_length"><!-- --></a><hr><h3>cd_track_length</h3><dl><dd><code>.../sdl_cdrom.li line #187</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_track_length</font></strong>&nbsp; &nbsp;track&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Length, in frames, of a given track.
+</dd></dl><a name="cd_cur_frame"><!-- --></a><hr><h3>cd_cur_frame</h3><dl><dd><code>.../sdl_cdrom.li line #193</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_cur_frame</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Current frame offset within current track
+</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_CDROMT.html b/lib/unstable/sdl-binding/docs/belinda/SDL_CDROMT.html
new file mode 100644
index 0000000..017ac7b
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_CDROMT.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_CDROMT</h2><hr><strong>CD-ROM audio control API. (In order to use these functions, SDL_INIT must have been called with the CD-ROM initialization. This causes SDL to scan the system for CD-ROM drives, and load appropriate drivers.)</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent_object">parent_object</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Constructor Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#create">create</a></b></code><dd> Create
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#create_with">create_with</a></b></code><dd> Create and Set the cdrom given a drive <em><b><font color="#000000">number</font></em></b>
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ CD-ROM:<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#open">open</a></b></code><dd> Opens a CD-ROM drive for access. This newly opened CD-ROM becomes the 
+ default CD used. Drives are numbered starting with <em><b><font color="#000000">0</font></em></b>.  Drive <em><b><font color="#000000">0</font></em></b> is the
+ system default CD-ROM.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#status">status</a></b></code><dd> This function returns the current status of the CD-ROM drive.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_indrive">cd_indrive</a></b></code><dd> Given a status, returns <em><b><font color="#000000">TRUE</font></em></b> if there's a disk in the drive
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_play_tracks">cd_play_tracks</a></b></code><dd> Play the given CD starting at <em><b><font color="#000000">start_track</font></em></b> and <em><b><font color="#000000">start_frame</font></em></b> for <em><b><font color="#000000">ntracks</font></em></b>
+ tracks and <em><b><font color="#000000">nframes</font></em></b> frames.  If both <em><b><font color="#000000">ntrack</font></em></b> and <em><b><font color="#000000">nframe</font></em></b> are 0, play 
+ until the end of the CD.  This function will skip data tracks.
+ This slot should only be called after calling the slot <code><b><a href="#status">status</a></b></code> to 
+ get track information about the CD.
+ This function returns 0, or -1 if there was an error.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_play length">cd_play length</a></b></code><dd>  Play the given CD starting at <em><b><font color="#000000">start</font></em></b> frame for <em><b><font color="#000000">length</font></em></b> frames.
+  It returns <em><b><font color="#000000">TRUE</font></em></b>, or <em><b><font color="#000000">FALSE</font></em></b> if there was an error.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_pause">cd_pause</a></b></code><dd> Set the CD-ROM to pause.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_resume">cd_resume</a></b></code><dd> Resume CD-ROM.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_stop">cd_stop</a></b></code><dd> Stop playing CD-ROM.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#eject">eject</a></b></code><dd> Eject CD-ROM.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#close">close</a></b></code><dd> Close CD-ROM drive handling.
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ TRACKS:<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_numtracks">cd_numtracks</a></b></code><dd> Return the number of tracks of the CD-ROM else 0.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_cur_track">cd_cur_track</a></b></code><dd> Current track position
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_cur_track_length">cd_cur_track_length</a></b></code><dd> Length, in frames, of the current track
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_track_length">cd_track_length</a></b></code><dd> Length, in frames, of a given track.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#cd_cur_frame">cd_cur_frame</a></b></code><dd> Current frame offset within current track
+</td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent_object"><!-- --></a><hr><h3>parent_object</h3><dl><dd><code>.../types/sdl_cdromt.li line #35</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">+ </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent_object</font></strong>&nbsp;:&nbsp;<a href="OBJECT.html"><font color="#008000">OBJECT</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Constructor Detail</b></font></td></tr></tbody></table></dl><a name="create"><!-- --></a><hr><h3>create</h3><dl><dd><code>.../types/sdl_cdromt.li line #43</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">create</font></strong>&nbsp;:&nbsp;<font color="#008000">SELF</font><dt><b><br>Description:</b></dt><dd> Create
+</dd></dl><a name="create_with"><!-- --></a><hr><h3>create_with</h3><dl><dd><code>.../types/sdl_cdromt.li line #50</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">create_with</font></strong>&nbsp; &nbsp;drive&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<font color="#008000">SELF</font><dt><b><br>Description:</b></dt><dd> Create and Set the cdrom given a drive <em><b><font color="#000000">number</font></em></b>
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ CD-ROM:<br>
+</b></font></td></tr></tbody></table></dl><a name="open"><!-- --></a><hr><h3>open</h3><dl><dd><code>.../types/sdl_cdromt.li line #62</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">open</font></strong>&nbsp; &nbsp;d&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <dt><b><br>Description:</b></dt><dd> Opens a CD-ROM drive for access. This newly opened CD-ROM becomes the 
+ default CD used. Drives are numbered starting with <em><b><font color="#000000">0</font></em></b>.  Drive <em><b><font color="#000000">0</font></em></b> is the
+ system default CD-ROM.
+</dd></dl><a name="status"><!-- --></a><hr><h3>status</h3><dl><dd><code>.../types/sdl_cdromt.li line #70</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">status</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> This function returns the current status of the CD-ROM drive.
+</dd></dl><a name="cd_indrive"><!-- --></a><hr><h3>cd_indrive</h3><dl><dd><code>.../types/sdl_cdromt.li line #77</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_indrive</font></strong>&nbsp; &nbsp;status&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Given a status, returns <em><b><font color="#000000">TRUE</font></em></b> if there's a disk in the drive
+</dd></dl><a name="cd_play_tracks"><!-- --></a><hr><h3>cd_play_tracks</h3><dl><dd><code>.../types/sdl_cdromt.li line #91</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_play_tracks</font></strong>&nbsp; (&nbsp;start_track&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;start_frame&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;ntracks&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;nframes&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Play the given CD starting at <em><b><font color="#000000">start_track</font></em></b> and <em><b><font color="#000000">start_frame</font></em></b> for <em><b><font color="#000000">ntracks</font></em></b>
+ tracks and <em><b><font color="#000000">nframes</font></em></b> frames.  If both <em><b><font color="#000000">ntrack</font></em></b> and <em><b><font color="#000000">nframe</font></em></b> are 0, play 
+ until the end of the CD.  This function will skip data tracks.
+ This slot should only be called after calling the slot <code><b><a href="#status">status</a></b></code> to 
+ get track information about the CD.
+ This function returns 0, or -1 if there was an error.
+</dd></dl><a name="cd_play length"><!-- --></a><hr><h3>cd_play length</h3><dl><dd><code>.../types/sdl_cdromt.li line #114</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_play</font></strong>&nbsp; &nbsp;s&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> &nbsp;<strong><font color="#0000FF">length</font></strong>&nbsp; &nbsp;l&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd>  Play the given CD starting at <em><b><font color="#000000">start</font></em></b> frame for <em><b><font color="#000000">length</font></em></b> frames.
+  It returns <em><b><font color="#000000">TRUE</font></em></b>, or <em><b><font color="#000000">FALSE</font></em></b> if there was an error.
+</dd></dl><a name="cd_pause"><!-- --></a><hr><h3>cd_pause</h3><dl><dd><code>.../types/sdl_cdromt.li line #131</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_pause</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> Set the CD-ROM to pause.
+</dd></dl><a name="cd_resume"><!-- --></a><hr><h3>cd_resume</h3><dl><dd><code>.../types/sdl_cdromt.li line #138</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_resume</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> Resume CD-ROM.
+</dd></dl><a name="cd_stop"><!-- --></a><hr><h3>cd_stop</h3><dl><dd><code>.../types/sdl_cdromt.li line #145</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_stop</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> Stop playing CD-ROM.
+</dd></dl><a name="eject"><!-- --></a><hr><h3>eject</h3><dl><dd><code>.../types/sdl_cdromt.li line #152</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">eject</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> Eject CD-ROM.
+</dd></dl><a name="close"><!-- --></a><hr><h3>close</h3><dl><dd><code>.../types/sdl_cdromt.li line #159</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">close</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> Close CD-ROM drive handling.
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ TRACKS:<br>
+</b></font></td></tr></tbody></table></dl><a name="cd_numtracks"><!-- --></a><hr><h3>cd_numtracks</h3><dl><dd><code>.../types/sdl_cdromt.li line #172</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_numtracks</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Return the number of tracks of the CD-ROM else 0.
+</dd></dl><a name="cd_cur_track"><!-- --></a><hr><h3>cd_cur_track</h3><dl><dd><code>.../types/sdl_cdromt.li line #179</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_cur_track</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Current track position
+</dd></dl><a name="cd_cur_track_length"><!-- --></a><hr><h3>cd_cur_track_length</h3><dl><dd><code>.../types/sdl_cdromt.li line #186</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_cur_track_length</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Length, in frames, of the current track
+</dd></dl><a name="cd_track_length"><!-- --></a><hr><h3>cd_track_length</h3><dl><dd><code>.../types/sdl_cdromt.li line #193</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_track_length</font></strong>&nbsp; &nbsp;track&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Length, in frames, of a given track.
+</dd></dl><a name="cd_cur_frame"><!-- --></a><hr><h3>cd_cur_frame</h3><dl><dd><code>.../types/sdl_cdromt.li line #200</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">cd_cur_frame</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Current frame offset within current track
+</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_CHUNK.html b/lib/unstable/sdl-binding/docs/belinda/SDL_CHUNK.html
new file mode 100644
index 0000000..e0c6057
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_CHUNK.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_CHUNK</h2><hr><strong></strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent_any">parent_any</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Constructor Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#create">create</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Slot Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#make">make</a></b></code><dd></td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent_any"><!-- --></a><hr><h3>parent_any</h3><dl><dd><code>.../audio/sdl_chunk.li line #31</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">+ </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent_any</font></strong>&nbsp;:&nbsp;<a href="ANY.html"><font color="#008000">ANY</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Constructor Detail</b></font></td></tr></tbody></table></dl><a name="create"><!-- --></a><hr><h3>create</h3><dl><dd><code>.../audio/sdl_chunk.li line #35</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">create</font></strong>&nbsp;:&nbsp;<font color="#008000">SELF</font></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Detail slot</b></font></td></tr></tbody></table></dl><a name="make"><!-- --></a><hr><h3>make</h3><dl><dd><code>.../audio/sdl_chunk.li line #42</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">make</font></strong>&nbsp;
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_COLOR.html b/lib/unstable/sdl-binding/docs/belinda/SDL_COLOR.html
new file mode 100644
index 0000000..afac2ad
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_COLOR.html
@@ -0,0 +1,37 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_COLOR</h2><hr><strong>SDL Color structure</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent">parent</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Constructor Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#create">create</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ Set:<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_all">set_all</a></b></code><dd> Set <em><b><font color="#000000">Red</font></em></b>, <em><b><font color="#000000">Green</font></em></b> and <em><b><font color="#000000">Blue</font></em></b> values
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_r">set_r</a></b></code><dd> Set the <em><b><font color="#000000">Red</font></em></b> value.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_g">set_g</a></b></code><dd> Set the <em><b><font color="#000000">Green</font></em></b> value.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_b">set_b</a></b></code><dd> Set the <em><b><font color="#000000">Blue</font></em></b> value.
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ Get:<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#get_all">get_all</a></b></code><dd> Return a vector with 3 values (r,g,b).
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#r">r</a></b></code><dd> Return the <em><b><font color="#000000">Red</font></em></b> value.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#g">g</a></b></code><dd> Return the <em><b><font color="#000000">Green</font></em></b> value.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#b">b</a></b></code><dd> Return the <em><b><font color="#000000">Blue</font></em></b> value.
+</td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent"><!-- --></a><hr><h3>parent</h3><dl><dd><code>.../types/sdl_color.li line #32</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent</font></strong>&nbsp;:&nbsp;<a href="OBJECT.html"><font color="#008000">OBJECT</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Constructor Detail</b></font></td></tr></tbody></table></dl><a name="create"><!-- --></a><hr><h3>create</h3><dl><dd><code>.../types/sdl_color.li line #36</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">create</font></strong>&nbsp;:&nbsp;<font color="#008000">SELF</font></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ Set:<br>
+</b></font></td></tr></tbody></table></dl><a name="set_all"><!-- --></a><hr><h3>set_all</h3><dl><dd><code>.../types/sdl_color.li line #42</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_all</font></strong>&nbsp; (&nbsp;r&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,&nbsp;g&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,&nbsp;b&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>) <dt><b><br>Description:</b></dt><dd> Set <em><b><font color="#000000">Red</font></em></b>, <em><b><font color="#000000">Green</font></em></b> and <em><b><font color="#000000">Blue</font></em></b> values
+</dd></dl><a name="set_r"><!-- --></a><hr><h3>set_r</h3><dl><dd><code>.../types/sdl_color.li line #50</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_r</font></strong>&nbsp; &nbsp;value&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> <dt><b><br>Description:</b></dt><dd> Set the <em><b><font color="#000000">Red</font></em></b> value.
+</dd></dl><a name="set_g"><!-- --></a><hr><h3>set_g</h3><dl><dd><code>.../types/sdl_color.li line #56</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_g</font></strong>&nbsp; &nbsp;value&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> <dt><b><br>Description:</b></dt><dd> Set the <em><b><font color="#000000">Green</font></em></b> value.
+</dd></dl><a name="set_b"><!-- --></a><hr><h3>set_b</h3><dl><dd><code>.../types/sdl_color.li line #62</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_b</font></strong>&nbsp; &nbsp;value&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> <dt><b><br>Description:</b></dt><dd> Set the <em><b><font color="#000000">Blue</font></em></b> value.
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ Get:<br>
+</b></font></td></tr></tbody></table></dl><a name="get_all"><!-- --></a><hr><h3>get_all</h3><dl><dd><code>.../types/sdl_color.li line #72</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">get_all</font></strong>&nbsp;:(&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>)<dt><b><br>Description:</b></dt><dd> Return a vector with 3 values (r,g,b).
+</dd></dl><a name="r"><!-- --></a><hr><h3>r</h3><dl><dd><code>.../types/sdl_color.li line #78</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">r</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Return the <em><b><font color="#000000">Red</font></em></b> value.
+</dd></dl><a name="g"><!-- --></a><hr><h3>g</h3><dl><dd><code>.../types/sdl_color.li line #79</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">g</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Return the <em><b><font color="#000000">Green</font></em></b> value.
+</dd></dl><a name="b"><!-- --></a><hr><h3>b</h3><dl><dd><code>.../types/sdl_color.li line #80</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">b</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Return the <em><b><font color="#000000">Blue</font></em></b> value.
+</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_COLOR_HACK.html b/lib/unstable/sdl-binding/docs/belinda/SDL_COLOR_HACK.html
new file mode 100644
index 0000000..10440da
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_COLOR_HACK.html
@@ -0,0 +1,37 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_COLOR_HACK</h2><hr><strong>SDL Color structure</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent">parent</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ Set:<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_all">set_all</a></b></code><dd> Set <em><b><font color="#000000">Red</font></em></b>, <em><b><font color="#000000">Green</font></em></b> and <em><b><font color="#000000">Blue</font></em></b> values
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_r">set_r</a></b></code><dd> Set the <em><b><font color="#000000">Red</font></em></b> value.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_g">set_g</a></b></code><dd> Set the <em><b><font color="#000000">Green</font></em></b> value.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_b">set_b</a></b></code><dd> Set the <em><b><font color="#000000">Blue</font></em></b> value.
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ Get:<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#get_all">get_all</a></b></code><dd> Return a vector with 3 values (r,g,b).
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#r">r</a></b></code><dd> Return the <em><b><font color="#000000">Red</font></em></b> value.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#g">g</a></b></code><dd> Return the <em><b><font color="#000000">Green</font></em></b> value.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#b">b</a></b></code><dd> Return the <em><b><font color="#000000">Blue</font></em></b> value.
+</td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent"><!-- --></a><hr><h3>parent</h3><dl><dd><code>.../types/sdl_color_hack.li line #32</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Insert</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent</font></strong>&nbsp;:&nbsp;<a href="OBJECT.html"><font color="#008000">OBJECT</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ Set:<br>
+</b></font></td></tr></tbody></table></dl><a name="set_all"><!-- --></a><hr><h3>set_all</h3><dl><dd><code>.../types/sdl_color_hack.li line #40</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_all</font></strong>&nbsp; (&nbsp;r&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,&nbsp;g&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,&nbsp;b&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>) <dt><b><br>Description:</b></dt><dd> Set <em><b><font color="#000000">Red</font></em></b>, <em><b><font color="#000000">Green</font></em></b> and <em><b><font color="#000000">Blue</font></em></b> values
+</dd></dl><a name="set_r"><!-- --></a><hr><h3>set_r</h3><dl><dd><code>.../types/sdl_color_hack.li line #48</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_r</font></strong>&nbsp; &nbsp;value&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> <dt><b><br>Description:</b></dt><dd> Set the <em><b><font color="#000000">Red</font></em></b> value.
+</dd></dl><a name="set_g"><!-- --></a><hr><h3>set_g</h3><dl><dd><code>.../types/sdl_color_hack.li line #54</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_g</font></strong>&nbsp; &nbsp;value&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> <dt><b><br>Description:</b></dt><dd> Set the <em><b><font color="#000000">Green</font></em></b> value.
+</dd></dl><a name="set_b"><!-- --></a><hr><h3>set_b</h3><dl><dd><code>.../types/sdl_color_hack.li line #60</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_b</font></strong>&nbsp; &nbsp;value&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> <dt><b><br>Description:</b></dt><dd> Set the <em><b><font color="#000000">Blue</font></em></b> value.
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ Get:<br>
+</b></font></td></tr></tbody></table></dl><a name="get_all"><!-- --></a><hr><h3>get_all</h3><dl><dd><code>.../types/sdl_color_hack.li line #70</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">get_all</font></strong>&nbsp;:(&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>)<dt><b><br>Description:</b></dt><dd> Return a vector with 3 values (r,g,b).
+</dd></dl><a name="r"><!-- --></a><hr><h3>r</h3><dl><dd><code>.../types/sdl_color_hack.li line #76</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">r</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Return the <em><b><font color="#000000">Red</font></em></b> value.
+</dd></dl><a name="g"><!-- --></a><hr><h3>g</h3><dl><dd><code>.../types/sdl_color_hack.li line #77</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">g</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Return the <em><b><font color="#000000">Green</font></em></b> value.
+</dd></dl><a name="b"><!-- --></a><hr><h3>b</h3><dl><dd><code>.../types/sdl_color_hack.li line #78</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">b</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Return the <em><b><font color="#000000">Blue</font></em></b> value.
+</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_CPUINFO.html b/lib/unstable/sdl-binding/docs/belinda/SDL_CPUINFO.html
new file mode 100644
index 0000000..ad3ac9e
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_CPUINFO.html
@@ -0,0 +1,33 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_CPUINFO</h2><hr><strong>CPU instruction detection</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ CPU instruction detection: 
<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#has_rdtsc">has_rdtsc</a></b></code><dd> Returns true if the CPU has the RDTSC instruction 
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#has_mmx">has_mmx</a></b></code><dd> Returns true if the CPU has MMX features
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#has_mmx_ext">has_mmx_ext</a></b></code><dd> Returns true if the CPU has MMX Ext. features
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#has_3dnow">has_3dnow</a></b></code><dd> Returns true if the CPU has 3DNow features
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#has_3dnow_ext">has_3dnow_ext</a></b></code><dd> Returns true if the CPU has 3DNow! Ext. features
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#has_sse">has_sse</a></b></code><dd> Returns true if the CPU has SSE features
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#has_sse2">has_sse2</a></b></code><dd> Returns true if the CPU has SSE2 features
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#has_altivec">has_altivec</a></b></code><dd> Returns true if the CPU has AltiVec features
+</td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ CPU instruction detection: 
<br>
+</b></font></td></tr></tbody></table></dl><a name="has_rdtsc"><!-- --></a><hr><h3>has_rdtsc</h3><dl><dd><code>.../sdl_cpuinfo.li line #36</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">has_rdtsc</font></strong>&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Returns true if the CPU has the RDTSC instruction 
+</dd></dl><a name="has_mmx"><!-- --></a><hr><h3>has_mmx</h3><dl><dd><code>.../sdl_cpuinfo.li line #42</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">has_mmx</font></strong>&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Returns true if the CPU has MMX features
+</dd></dl><a name="has_mmx_ext"><!-- --></a><hr><h3>has_mmx_ext</h3><dl><dd><code>.../sdl_cpuinfo.li line #48</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">has_mmx_ext</font></strong>&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Returns true if the CPU has MMX Ext. features
+</dd></dl><a name="has_3dnow"><!-- --></a><hr><h3>has_3dnow</h3><dl><dd><code>.../sdl_cpuinfo.li line #54</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">has_3dnow</font></strong>&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Returns true if the CPU has 3DNow features
+</dd></dl><a name="has_3dnow_ext"><!-- --></a><hr><h3>has_3dnow_ext</h3><dl><dd><code>.../sdl_cpuinfo.li line #60</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">has_3dnow_ext</font></strong>&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Returns true if the CPU has 3DNow! Ext. features
+</dd></dl><a name="has_sse"><!-- --></a><hr><h3>has_sse</h3><dl><dd><code>.../sdl_cpuinfo.li line #66</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">has_sse</font></strong>&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Returns true if the CPU has SSE features
+</dd></dl><a name="has_sse2"><!-- --></a><hr><h3>has_sse2</h3><dl><dd><code>.../sdl_cpuinfo.li line #72</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">has_sse2</font></strong>&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Returns true if the CPU has SSE2 features
+</dd></dl><a name="has_altivec"><!-- --></a><hr><h3>has_altivec</h3><dl><dd><code>.../sdl_cpuinfo.li line #78</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">has_altivec</font></strong>&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Returns true if the CPU has AltiVec features
+</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_CURSOR.html b/lib/unstable/sdl-binding/docs/belinda/SDL_CURSOR.html
new file mode 100644
index 0000000..2e58632
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_CURSOR.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_CURSOR</h2><hr><strong>Xavier Oswald <xoswald at debian.org></strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent_object">parent_object</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent_object"><!-- --></a><hr><h3>parent_object</h3><dl><dd><code>.../sdl_cursor.li line #33</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent_object</font></strong>&nbsp;:&nbsp;<a href="SDL_SETTINGS.html"><font color="#008000">SDL_SETTINGS</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_ERROR.html b/lib/unstable/sdl-binding/docs/belinda/SDL_ERROR.html
new file mode 100644
index 0000000..efd4af2
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_ERROR.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_ERROR</h2><hr><strong>SDL Error stak managment</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ ERROR:<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set">set</a></b></code><dd> Push an error
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#get">get</a></b></code><dd> get latest pushed error
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#clear">clear</a></b></code><dd> Clear all errors
+</td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ ERROR:<br>
+</b></font></td></tr></tbody></table></dl><a name="set"><!-- --></a><hr><h3>set</h3><dl><dd><code>.../sdl_error.li line #35</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set</font></strong>&nbsp; &nbsp;error&nbsp;:&nbsp;<a href="STRING.html"><font color="#008000">STRING</font></a> <dt><b><br>Description:</b></dt><dd> Push an error
+</dd></dl><a name="get"><!-- --></a><hr><h3>get</h3><dl><dd><code>.../sdl_error.li line #42</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">get</font></strong>&nbsp;:&nbsp;<a href="STRING.html"><font color="#008000">STRING</font></a><dt><b><br>Description:</b></dt><dd> get latest pushed error
+</dd></dl><a name="clear"><!-- --></a><hr><h3>clear</h3><dl><dd><code>.../sdl_error.li line #53</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">clear</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> Clear all errors
+</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_EVENT.html b/lib/unstable/sdl-binding/docs/belinda/SDL_EVENT.html
new file mode 100644
index 0000000..1a1dbe6
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_EVENT.html
@@ -0,0 +1,189 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_EVENT</h2><hr><strong>SDL events handling</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent_object">parent_object</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Constructor Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#create">create</a></b></code><dd> Create the SDL_Event pointer
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ EVENT TYPE:<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#active_event">active_event</a></b></code><dd> Application loses/gains visibility
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#key_down">key_down</a></b></code><dd> Keys pressed
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#key_up">key_up</a></b></code><dd> Keys released 
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mouse_motion">mouse_motion</a></b></code><dd> Mouse moved
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mouse_button_down">mouse_button_down</a></b></code><dd> Mouse button pressed
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mouse_button_up">mouse_button_up</a></b></code><dd> Mouse button released
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#joy_axis_motion">joy_axis_motion</a></b></code><dd> Joystick axis motion
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#joy_ball_motion">joy_ball_motion</a></b></code><dd> Joystick trackball motion
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#joy_hat_motion">joy_hat_motion</a></b></code><dd> Joystick hat position change
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#joy_button_down">joy_button_down</a></b></code><dd> Joystick button pressed
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#joy_button_up">joy_button_up</a></b></code><dd> Joystick button released
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#sdl_quit">sdl_quit</a></b></code><dd> User-requested quit
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#sys_wm_event">sys_wm_event</a></b></code><dd> System specific event
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#video_resize">video_resize</a></b></code><dd> User resized video mode
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#video_expose">video_expose</a></b></code><dd> Screen needs to be redrawn
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#user_event">user_event</a></b></code><dd> Events SDL_USEREVENT through SDL_MAXEVENTS-1 are for your use </td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ EVENT STATE:<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#state_query">state_query</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#state_ignore">state_ignore</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#state_disable">state_disable</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#state_enable">state_enable</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ EVENT ACTION:<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#action_add">action_add</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#action_peek">action_peek</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#action_get">action_get</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ GENERAL KEYBOARD/MOUSE STATE<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#released">released</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#pressed">pressed</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ INTERNAL EVENT ACCESS<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#type">type</a></b></code><dd> Get the event type
+ EVENT
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#active_type">active_type</a></b></code><dd> <code><b><a href="#active_event">active_event</a></b></code>
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#active_gain">active_gain</a></b></code><dd> Whether given states were gained or lost (1/0)
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#active_state">active_state</a></b></code><dd> A mask of the focus states
+ KEYBOARD
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#key_type">key_type</a></b></code><dd> <code><b><a href="#key_down">key_down</a></b></code> or <code><b><a href="#key_up">key_up</a></b></code>
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#key_which">key_which</a></b></code><dd> The keyboard device index
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#key_state">key_state</a></b></code><dd> SDL_PRESSED or SDL_RELEASED
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#key_keysym">key_keysym</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b> MOUSE MOTION
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#motion_type">motion_type</a></b></code><dd> <code><b><a href="#mouse_motion">mouse_motion</a></b></code>
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#motion_which">motion_which</a></b></code><dd> The mouse device index
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#motion_state">motion_state</a></b></code><dd> The current button state
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#motion_x">motion_x</a></b></code><dd> The X coordinate of the mouse
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#motion_y">motion_y</a></b></code><dd> The Y coordinate of the mouse
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#motion_xrel">motion_xrel</a></b></code><dd> The relative motion in the X direction
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#motion_yrel">motion_yrel</a></b></code><dd> The relative motion in the Y direction
+ MOUSE BUTTON
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#button_type">button_type</a></b></code><dd> <code><b><a href="#mouse_button_down">mouse_button_down</a></b></code> or <code><b><a href="#mouse_button_up">mouse_button_up</a></b></code> 
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#button_which">button_which</a></b></code><dd> The mouse device index
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#button_button">button_button</a></b></code><dd> The mouse button index
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#button_state">button_state</a></b></code><dd> <code><b><a href="#pressed">pressed</a></b></code> or <code><b><a href="#released">released</a></b></code>
+TODO
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ GLOBAL EVENT MANAGEMENT<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#poll">poll</a></b></code><dd> Polls for currently pending events, and returns <em><b><font color="#000000">1</font></em></b> if there are any
+ pending events, or <em><b><font color="#000000">0</font></em></b> if there are none available.  If <em><b><font color="#000000">event</font></em></b> is not
+ NULL, the next event is removed from the queue and stored in that area.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#wait">wait</a></b></code><dd> Waits indefinitely for the next available event, returning <em><b><font color="#000000">1</font></em></b>, or
+ <em><b><font color="#000000">0</font></em></b> if there was an error while waiting for events.  If <em><b><font color="#000000">event</font></em></b> is not
+ NULL, the next event is removed from the queue and stored in that area.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#push">push</a></b></code><dd> Add an event to the event queue. This function returns 0 on success, or
+ -1 if the event queue was full or there was some other error.
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ EVENT handling:<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#peep">peep</a></b></code><dd> Checks the event queue for messages and optionally returns them.<br>
+ If <em><b><font color="#000000">action</font></em></b> is <em><b><font color="#000000">SDL_EVENT.action_add</font></em></b>, up to <em><b><font color="#000000">numevents</font></em></b> events will be
+ added to the back of the event queue.  If <em><b><font color="#000000">action</font></em></b> is
+ <em><b><font color="#000000">SDL_EVENT.action_peek</font></em></b>, up to <em><b><font color="#000000">numevents</font></em></b> events at the front of the event
+ queue, matching <em><b><font color="#000000">mask</font></em></b>, will be returned and will not be removed from the
+ queue.  If <em><b><font color="#000000">action</font></em></b> is <em><b><font color="#000000">SDL_EVENT.action_get</font></em></b>, up to <em><b><font color="#000000">numevents</font></em></b> events at
+ the front of the event queue, matching 'mask', will be returned and will
+ be removed from the queue.<br>
+ This function returns the number of events actually stored, or <em><b><font color="#000000">-1</font></em></b> if
+ there was an error.<br>
+ This function is thread-safe.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#state_handle to">state_handle to</a></b></code><dd> This function allows you to set the state of processing certain events.
+ If <em><b><font color="#000000">state</font></em></b> is set to <code><b><a href="#state_ignore">state_ignore</a></b></code>, that event will be automatically dropped
+ from the event queue and will not event be filtered.
+ If <em><b><font color="#000000">state</font></em></b> is set to <code><b><a href="#state_enable">state_enable</a></b></code>, that event will be processed normally.
+ If <em><b><font color="#000000">state</font></em></b> is set to <code><b><a href="#state_query">state_query</a></b></code>, <code><b><a href="#state_handle to">state_handle to</a></b></code> will return the 
+ current processing state of the specified event.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#pump_events">pump_events</a></b></code><dd> Pumps the event loop, gathering events from the input devices.
+ This function updates the event queue and internal input device state.
+ This should only be run in the thread that sets the video mode.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#event_state">event_state</a></b></code><dd> This function allows you to set the state of processing certain events.
+ If <em><b><font color="#000000">state</font></em></b> is set to <em><b><font color="#000000">SDL_EVENT.state_ignore</font></em></b>, that event will be
+ automatically dropped from the event queue and will not event be filtered.
+ If <em><b><font color="#000000">state</font></em></b> is set to <em><b><font color="#000000">SDL_EVENT.state_enable</font></em></b>, that event will be
+ processed normally.  If <em><b><font color="#000000">state</font></em></b> is set to <em><b><font color="#000000">SDL_EVENT.state_query</font></em></b>,
+ <code><b><a href="#event_state">event_state</a></b></code> will return the current processing state of the specified
+ event.
+</td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent_object"><!-- --></a><hr><h3>parent_object</h3><dl><dd><code>.../events/sdl_event.li line #32</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">+ </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent_object</font></strong>&nbsp;:&nbsp;<a href="OBJECT.html"><font color="#008000">OBJECT</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Constructor Detail</b></font></td></tr></tbody></table></dl><a name="create"><!-- --></a><hr><h3>create</h3><dl><dd><code>.../events/sdl_event.li line #81</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">create</font></strong>&nbsp;:&nbsp;<font color="#008000">SELF</font><dt><b><br>Description:</b></dt><dd> Create the SDL_Event pointer
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ EVENT TYPE:<br>
+</b></font></td></tr></tbody></table></dl><a name="active_event"><!-- --></a><hr><h3>active_event</h3><dl><dd><code>.../events/sdl_event.li line #39</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">active_event</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Application loses/gains visibility
+</dd></dl><a name="key_down"><!-- --></a><hr><h3>key_down</h3><dl><dd><code>.../events/sdl_event.li line #40</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">key_down</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Keys pressed
+</dd></dl><a name="key_up"><!-- --></a><hr><h3>key_up</h3><dl><dd><code>.../events/sdl_event.li line #41</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">key_up</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Keys released 
+</dd></dl><a name="mouse_motion"><!-- --></a><hr><h3>mouse_motion</h3><dl><dd><code>.../events/sdl_event.li line #42</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mouse_motion</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Mouse moved
+</dd></dl><a name="mouse_button_down"><!-- --></a><hr><h3>mouse_button_down</h3><dl><dd><code>.../events/sdl_event.li line #43</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mouse_button_down</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Mouse button pressed
+</dd></dl><a name="mouse_button_up"><!-- --></a><hr><h3>mouse_button_up</h3><dl><dd><code>.../events/sdl_event.li line #44</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mouse_button_up</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Mouse button released
+</dd></dl><a name="joy_axis_motion"><!-- --></a><hr><h3>joy_axis_motion</h3><dl><dd><code>.../events/sdl_event.li line #45</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">joy_axis_motion</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Joystick axis motion
+</dd></dl><a name="joy_ball_motion"><!-- --></a><hr><h3>joy_ball_motion</h3><dl><dd><code>.../events/sdl_event.li line #46</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">joy_ball_motion</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Joystick trackball motion
+</dd></dl><a name="joy_hat_motion"><!-- --></a><hr><h3>joy_hat_motion</h3><dl><dd><code>.../events/sdl_event.li line #47</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">joy_hat_motion</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Joystick hat position change
+</dd></dl><a name="joy_button_down"><!-- --></a><hr><h3>joy_button_down</h3><dl><dd><code>.../events/sdl_event.li line #48</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">joy_button_down</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Joystick button pressed
+</dd></dl><a name="joy_button_up"><!-- --></a><hr><h3>joy_button_up</h3><dl><dd><code>.../events/sdl_event.li line #49</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">joy_button_up</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Joystick button released
+</dd></dl><a name="sdl_quit"><!-- --></a><hr><h3>sdl_quit</h3><dl><dd><code>.../events/sdl_event.li line #50</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">sdl_quit</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> User-requested quit
+</dd></dl><a name="sys_wm_event"><!-- --></a><hr><h3>sys_wm_event</h3><dl><dd><code>.../events/sdl_event.li line #51</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">sys_wm_event</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> System specific event
+</dd></dl><a name="video_resize"><!-- --></a><hr><h3>video_resize</h3><dl><dd><code>.../events/sdl_event.li line #52</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">video_resize</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> User resized video mode
+</dd></dl><a name="video_expose"><!-- --></a><hr><h3>video_expose</h3><dl><dd><code>.../events/sdl_event.li line #53</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">video_expose</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Screen needs to be redrawn
+</dd></dl><a name="user_event"><!-- --></a><hr><h3>user_event</h3><dl><dd><code>.../events/sdl_event.li line #54</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">user_event</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Events SDL_USEREVENT through SDL_MAXEVENTS-1 are for your use </dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ EVENT STATE:<br>
+</b></font></td></tr></tbody></table></dl><a name="state_query"><!-- --></a><hr><h3>state_query</h3><dl><dd><code>.../events/sdl_event.li line #60</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">state_query</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="state_ignore"><!-- --></a><hr><h3>state_ignore</h3><dl><dd><code>.../events/sdl_event.li line #61</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">state_ignore</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="state_disable"><!-- --></a><hr><h3>state_disable</h3><dl><dd><code>.../events/sdl_event.li line #62</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">state_disable</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="state_enable"><!-- --></a><hr><h3>state_enable</h3><dl><dd><code>.../events/sdl_event.li line #63</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">state_enable</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ EVENT ACTION:<br>
+</b></font></td></tr></tbody></table></dl><a name="action_add"><!-- --></a><hr><h3>action_add</h3><dl><dd><code>.../events/sdl_event.li line #68</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">action_add</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="action_peek"><!-- --></a><hr><h3>action_peek</h3><dl><dd><code>.../events/sdl_event.li line #69</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">action_peek</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="action_get"><!-- --></a><hr><h3>action_get</h3><dl><dd><code>.../events/sdl_event.li line #70</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">action_get</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ GENERAL KEYBOARD/MOUSE STATE<br>
+</b></font></td></tr></tbody></table></dl><a name="released"><!-- --></a><hr><h3>released</h3><dl><dd><code>.../events/sdl_event.li line #75</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">released</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="pressed"><!-- --></a><hr><h3>pressed</h3><dl><dd><code>.../events/sdl_event.li line #76</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">pressed</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ INTERNAL EVENT ACCESS<br>
+</b></font></td></tr></tbody></table></dl><a name="type"><!-- --></a><hr><h3>type</h3><dl><dd><code>.../events/sdl_event.li line #82</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">type</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Get the event type
+ EVENT
+</dd></dl><a name="active_type"><!-- --></a><hr><h3>active_type</h3><dl><dd><code>.../events/sdl_event.li line #85</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">active_type</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> <code><b><a href="#active_event">active_event</a></b></code>
+</dd></dl><a name="active_gain"><!-- --></a><hr><h3>active_gain</h3><dl><dd><code>.../events/sdl_event.li line #86</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">active_gain</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Whether given states were gained or lost (1/0)
+</dd></dl><a name="active_state"><!-- --></a><hr><h3>active_state</h3><dl><dd><code>.../events/sdl_event.li line #87</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">active_state</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> A mask of the focus states
+ KEYBOARD
+</dd></dl><a name="key_type"><!-- --></a><hr><h3>key_type</h3><dl><dd><code>.../events/sdl_event.li line #90</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">key_type</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> <code><b><a href="#key_down">key_down</a></b></code> or <code><b><a href="#key_up">key_up</a></b></code>
+</dd></dl><a name="key_which"><!-- --></a><hr><h3>key_which</h3><dl><dd><code>.../events/sdl_event.li line #91</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">key_which</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> The keyboard device index
+</dd></dl><a name="key_state"><!-- --></a><hr><h3>key_state</h3><dl><dd><code>.../events/sdl_event.li line #92</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">key_state</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> SDL_PRESSED or SDL_RELEASED
+</dd></dl><a name="key_keysym"><!-- --></a><hr><h3>key_keysym</h3><dl><dd><code>.../events/sdl_event.li line #93</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">key_keysym</font></strong>&nbsp;:&nbsp;<a href="SDL_KEYSYM.html"><font color="#008000">SDL_KEYSYM</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b> MOUSE MOTION
+</b></font></td></tr></tbody></table></dl><a name="motion_type"><!-- --></a><hr><h3>motion_type</h3><dl><dd><code>.../events/sdl_event.li line #96</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">motion_type</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> <code><b><a href="#mouse_motion">mouse_motion</a></b></code>
+</dd></dl><a name="motion_which"><!-- --></a><hr><h3>motion_which</h3><dl><dd><code>.../events/sdl_event.li line #97</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">motion_which</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> The mouse device index
+</dd></dl><a name="motion_state"><!-- --></a><hr><h3>motion_state</h3><dl><dd><code>.../events/sdl_event.li line #98</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">motion_state</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> The current button state
+</dd></dl><a name="motion_x"><!-- --></a><hr><h3>motion_x</h3><dl><dd><code>.../events/sdl_event.li line #99</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">motion_x</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_16.html"><font color="#008000">UINTEGER_16</font></a><dt><b><br>Description:</b></dt><dd> The X coordinate of the mouse
+</dd></dl><a name="motion_y"><!-- --></a><hr><h3>motion_y</h3><dl><dd><code>.../events/sdl_event.li line #100</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">motion_y</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_16.html"><font color="#008000">UINTEGER_16</font></a><dt><b><br>Description:</b></dt><dd> The Y coordinate of the mouse
+</dd></dl><a name="motion_xrel"><!-- --></a><hr><h3>motion_xrel</h3><dl><dd><code>.../events/sdl_event.li line #101</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">motion_xrel</font></strong>&nbsp;:&nbsp;<a href="INTEGER_16.html"><font color="#008000">INTEGER_16</font></a><dt><b><br>Description:</b></dt><dd> The relative motion in the X direction
+</dd></dl><a name="motion_yrel"><!-- --></a><hr><h3>motion_yrel</h3><dl><dd><code>.../events/sdl_event.li line #102</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">motion_yrel</font></strong>&nbsp;:&nbsp;<a href="INTEGER_16.html"><font color="#008000">INTEGER_16</font></a><dt><b><br>Description:</b></dt><dd> The relative motion in the Y direction
+ MOUSE BUTTON
+</dd></dl><a name="button_type"><!-- --></a><hr><h3>button_type</h3><dl><dd><code>.../events/sdl_event.li line #105</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">button_type</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> <code><b><a href="#mouse_button_down">mouse_button_down</a></b></code> or <code><b><a href="#mouse_button_up">mouse_button_up</a></b></code> 
+</dd></dl><a name="button_which"><!-- --></a><hr><h3>button_which</h3><dl><dd><code>.../events/sdl_event.li line #106</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">button_which</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> The mouse device index
+</dd></dl><a name="button_button"><!-- --></a><hr><h3>button_button</h3><dl><dd><code>.../events/sdl_event.li line #107</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">button_button</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> The mouse button index
+</dd></dl><a name="button_state"><!-- --></a><hr><h3>button_state</h3><dl><dd><code>.../events/sdl_event.li line #108</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">button_state</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> <code><b><a href="#pressed">pressed</a></b></code> or <code><b><a href="#released">released</a></b></code>
+TODO
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ GLOBAL EVENT MANAGEMENT<br>
+</b></font></td></tr></tbody></table></dl><a name="poll"><!-- --></a><hr><h3>poll</h3><dl><dd><code>.../events/sdl_event.li line #126</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">poll</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Polls for currently pending events, and returns <em><b><font color="#000000">1</font></em></b> if there are any
+ pending events, or <em><b><font color="#000000">0</font></em></b> if there are none available.  If <em><b><font color="#000000">event</font></em></b> is not
+ NULL, the next event is removed from the queue and stored in that area.
+</dd></dl><a name="wait"><!-- --></a><hr><h3>wait</h3><dl><dd><code>.../events/sdl_event.li line #134</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">wait</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Waits indefinitely for the next available event, returning <em><b><font color="#000000">1</font></em></b>, or
+ <em><b><font color="#000000">0</font></em></b> if there was an error while waiting for events.  If <em><b><font color="#000000">event</font></em></b> is not
+ NULL, the next event is removed from the queue and stored in that area.
+</dd></dl><a name="push"><!-- --></a><hr><h3>push</h3><dl><dd><code>.../events/sdl_event.li line #142</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">push</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Add an event to the event queue. This function returns 0 on success, or
+ -1 if the event queue was full or there was some other error.
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ EVENT handling:<br>
+</b></font></td></tr></tbody></table></dl><a name="peep"><!-- --></a><hr><h3>peep</h3><dl><dd><code>.../events/sdl_event.li line #153</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">peep</font></strong>&nbsp; (&nbsp;numevents&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;action&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,&nbsp;mask&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) :&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Checks the event queue for messages and optionally returns them.<br>
+ If <em><b><font color="#000000">action</font></em></b> is <em><b><font color="#000000">SDL_EVENT.action_add</font></em></b>, up to <em><b><font color="#000000">numevents</font></em></b> events will be
+ added to the back of the event queue.  If <em><b><font color="#000000">action</font></em></b> is
+ <em><b><font color="#000000">SDL_EVENT.action_peek</font></em></b>, up to <em><b><font color="#000000">numevents</font></em></b> events at the front of the event
+ queue, matching <em><b><font color="#000000">mask</font></em></b>, will be returned and will not be removed from the
+ queue.  If <em><b><font color="#000000">action</font></em></b> is <em><b><font color="#000000">SDL_EVENT.action_get</font></em></b>, up to <em><b><font color="#000000">numevents</font></em></b> events at
+ the front of the event queue, matching 'mask', will be returned and will
+ be removed from the queue.<br>
+ This function returns the number of events actually stored, or <em><b><font color="#000000">-1</font></em></b> if
+ there was an error.<br>
+ This function is thread-safe.
+</dd></dl><a name="state_handle to"><!-- --></a><hr><h3>state_handle to</h3><dl><dd><code>.../events/sdl_event.li line #172</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">state_handle</font></strong>&nbsp; &nbsp;type&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> &nbsp;<strong><font color="#0000FF">to</font></strong>&nbsp; &nbsp;state&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> This function allows you to set the state of processing certain events.
+ If <em><b><font color="#000000">state</font></em></b> is set to <code><b><a href="#state_ignore">state_ignore</a></b></code>, that event will be automatically dropped
+ from the event queue and will not event be filtered.
+ If <em><b><font color="#000000">state</font></em></b> is set to <code><b><a href="#state_enable">state_enable</a></b></code>, that event will be processed normally.
+ If <em><b><font color="#000000">state</font></em></b> is set to <code><b><a href="#state_query">state_query</a></b></code>, <code><b><a href="#state_handle to">state_handle to</a></b></code> will return the 
+ current processing state of the specified event.
+</dd></dl><a name="pump_events"><!-- --></a><hr><h3>pump_events</h3><dl><dd><code>.../events/sdl_event.li line #183</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">pump_events</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> Pumps the event loop, gathering events from the input devices.
+ This function updates the event queue and internal input device state.
+ This should only be run in the thread that sets the video mode.
+</dd></dl><a name="event_state"><!-- --></a><hr><h3>event_state</h3><dl><dd><code>.../events/sdl_event.li line #191</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">event_state</font></strong>&nbsp; (&nbsp;type&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,&nbsp;state&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> This function allows you to set the state of processing certain events.
+ If <em><b><font color="#000000">state</font></em></b> is set to <em><b><font color="#000000">SDL_EVENT.state_ignore</font></em></b>, that event will be
+ automatically dropped from the event queue and will not event be filtered.
+ If <em><b><font color="#000000">state</font></em></b> is set to <em><b><font color="#000000">SDL_EVENT.state_enable</font></em></b>, that event will be
+ processed normally.  If <em><b><font color="#000000">state</font></em></b> is set to <em><b><font color="#000000">SDL_EVENT.state_query</font></em></b>,
+ <code><b><a href="#event_state">event_state</a></b></code> will return the current processing state of the specified
+ event.
+</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_EVENT_TYPE.html b/lib/unstable/sdl-binding/docs/belinda/SDL_EVENT_TYPE.html
new file mode 100644
index 0000000..4a520d1
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_EVENT_TYPE.html
@@ -0,0 +1,47 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_EVENT_TYPE</h2><hr><strong>Event types</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ EVENT type:<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#active_event">active_event</a></b></code><dd> Application loses/gains visibility
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#key_down">key_down</a></b></code><dd> Keys pressed
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#key_up">key_up</a></b></code><dd> Keys released 
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mouse_motion">mouse_motion</a></b></code><dd> Mouse moved
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mouse_button_down">mouse_button_down</a></b></code><dd> Mouse button pressed
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mouse_button_up">mouse_button_up</a></b></code><dd> Mouse button released
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#joy_axis_motion">joy_axis_motion</a></b></code><dd> Joystick axis motion
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#joy_ball_motion">joy_ball_motion</a></b></code><dd> Joystick trackball motion
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#joy_hat_motion">joy_hat_motion</a></b></code><dd> Joystick hat position change
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#joy_button_down">joy_button_down</a></b></code><dd> Joystick button pressed
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#joy_button_up">joy_button_up</a></b></code><dd> Joystick button released
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#sdl_quit">sdl_quit</a></b></code><dd> User-requested quit
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#sys_wm_event">sys_wm_event</a></b></code><dd> System specific event
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#video_resize">video_resize</a></b></code><dd> User resized video mode
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#video_expose">video_expose</a></b></code><dd> Screen needs to be redrawn
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#user_event">user_event</a></b></code><dd> Events SDL_USEREVENT through SDL_MAXEVENTS-1 are for your use </td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ EVENT type:<br>
+</b></font></td></tr></tbody></table></dl><a name="active_event"><!-- --></a><hr><h3>active_event</h3><dl><dd><code>.../sdl_event_type.li line #36</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">active_event</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Application loses/gains visibility
+</dd></dl><a name="key_down"><!-- --></a><hr><h3>key_down</h3><dl><dd><code>.../sdl_event_type.li line #37</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">key_down</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Keys pressed
+</dd></dl><a name="key_up"><!-- --></a><hr><h3>key_up</h3><dl><dd><code>.../sdl_event_type.li line #38</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">key_up</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Keys released 
+</dd></dl><a name="mouse_motion"><!-- --></a><hr><h3>mouse_motion</h3><dl><dd><code>.../sdl_event_type.li line #39</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mouse_motion</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Mouse moved
+</dd></dl><a name="mouse_button_down"><!-- --></a><hr><h3>mouse_button_down</h3><dl><dd><code>.../sdl_event_type.li line #40</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mouse_button_down</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Mouse button pressed
+</dd></dl><a name="mouse_button_up"><!-- --></a><hr><h3>mouse_button_up</h3><dl><dd><code>.../sdl_event_type.li line #41</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mouse_button_up</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Mouse button released
+</dd></dl><a name="joy_axis_motion"><!-- --></a><hr><h3>joy_axis_motion</h3><dl><dd><code>.../sdl_event_type.li line #42</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">joy_axis_motion</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Joystick axis motion
+</dd></dl><a name="joy_ball_motion"><!-- --></a><hr><h3>joy_ball_motion</h3><dl><dd><code>.../sdl_event_type.li line #43</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">joy_ball_motion</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Joystick trackball motion
+</dd></dl><a name="joy_hat_motion"><!-- --></a><hr><h3>joy_hat_motion</h3><dl><dd><code>.../sdl_event_type.li line #44</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">joy_hat_motion</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Joystick hat position change
+</dd></dl><a name="joy_button_down"><!-- --></a><hr><h3>joy_button_down</h3><dl><dd><code>.../sdl_event_type.li line #45</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">joy_button_down</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Joystick button pressed
+</dd></dl><a name="joy_button_up"><!-- --></a><hr><h3>joy_button_up</h3><dl><dd><code>.../sdl_event_type.li line #46</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">joy_button_up</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Joystick button released
+</dd></dl><a name="sdl_quit"><!-- --></a><hr><h3>sdl_quit</h3><dl><dd><code>.../sdl_event_type.li line #47</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">sdl_quit</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> User-requested quit
+</dd></dl><a name="sys_wm_event"><!-- --></a><hr><h3>sys_wm_event</h3><dl><dd><code>.../sdl_event_type.li line #48</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">sys_wm_event</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> System specific event
+</dd></dl><a name="video_resize"><!-- --></a><hr><h3>video_resize</h3><dl><dd><code>.../sdl_event_type.li line #49</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">video_resize</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> User resized video mode
+</dd></dl><a name="video_expose"><!-- --></a><hr><h3>video_expose</h3><dl><dd><code>.../sdl_event_type.li line #50</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">video_expose</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Screen needs to be redrawn
+</dd></dl><a name="user_event"><!-- --></a><hr><h3>user_event</h3><dl><dd><code>.../sdl_event_type.li line #51</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">user_event</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Events SDL_USEREVENT through SDL_MAXEVENTS-1 are for your use </dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_FLAG.html b/lib/unstable/sdl-binding/docs/belinda/SDL_FLAG.html
new file mode 100644
index 0000000..48fbfe4
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_FLAG.html
@@ -0,0 +1,131 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_FLAG</h2><hr><strong>SDL flags</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ Color key<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#srccolorkey">srccolorkey</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ Video<br>
+ TODO Available for SDL_SetVideoMode()
+ ========================================================================
+                             VIDEO MODES 
+ ========================================================================
+ SDL_SWSURFACE : Create the video surface in system memory
+ SDL_HWSURFACE : Create the video surface in video memory
+ SDL_ASYNCBLIT : Enables the use of asynchronous updates of the display 
+                 surface. This will usually slow down blitting on single 
+                 CPU machines, but may provide a speed increase on SMP 
+                 systems.
+ SDL_ANYFORMAT : Normally, if a video surface of the requested 
+                 bits-per-pixel (bpp) is not available, SDL will emulate 
+                 one with a shadow surface. Passing SDL_ANYFORMAT 
+                 prevents this and causes SDL to use the video surface,
+                 regardless of its pixel depth.
+ SDL_HWPALETTE : Give SDL exclusive palette access. Without this flag you
+                 may not always get the the colors you request with 
+                 SDL_SetColors or SDL_SetPalette.
+ SDL_DOUBLEBUF : Enable hardware double buffering; only valid with 
+                 SDL_HWSURFACE. Calling SDL_Flip will flip the buffers 
+                 and update the screen. All drawing will take place on 
+                 the surface that is not displayed at the moment. If 
+                 double buffering could not be enabled then SDL_Flip will
+                 just perform a SDL_UpdateRect on the entire screen.
+ SDL_FULLSCREEN: SDL will attempt to use a fullscreen mode. If a hardware
+                 resolution change is not possible (for whatever reason),
+                 the next higher resolution will be used and the display 
+                 window centered on a black background.
+ SDL_OPENGL    : Create an OpenGL rendering context. You should have 
+                 previously set OpenGL video attributes with 
+                 SDL_GL_SetAttribute.
+ SDL_OPENGLBLIT: Create an OpenGL rendering context, like above, but allow
+                 normal blitting operations. The screen (2D) surface may 
+                 have an alpha channel, and SDL_UpdateRects must be used 
+                 for updating changes to the screen surface. NOTE: This 
+                 option is kept for compatibility only, and will be 
+                 removed in next versions. Is not recommended for new 
+                 code.
+ SDL_RESIZABLE : Create a resizable window. When the window is resized by
+                 the user a SDL_VIDEORESIZE event is generated and 
+                 SDL_SetVideoMode can be called again with the new size.
+ SDL_NOFRAME   : If possible, SDL_NOFRAME causes SDL to create a window 
+                 with no title bar or frame decoration. Fullscreen modes
+                 automatically have this flag set.
+ ========================================================================
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#anyformat">anyformat</a></b></code><dd> Allow any video depth/pixel-format
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#hwpalette">hwpalette</a></b></code><dd> Surface has exclusive palette
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#doublebuf">doublebuf</a></b></code><dd> Set up double-buffered video mode
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#fullscreen">fullscreen</a></b></code><dd> Surface is a full screen display
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#opengl">opengl</a></b></code><dd> Create an OpenGL rendering context
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#openglblit">openglblit</a></b></code><dd> Create an OpenGL rendering context and use it for blitting
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#resizable">resizable</a></b></code><dd> This video mode may be resized
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#noframe">noframe</a></b></code><dd> No window caption or edge frame
+ TODO: /</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#swsurface">swsurface</a></b></code><dd> Surface is in system memory 
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#hwsurface">hwsurface</a></b></code><dd>Surface is in video memory
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#asynblit">asynblit</a></b></code><dd>Use asynchronous blits if possible </td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ Color key<br>
+</b></font></td></tr></tbody></table></dl><a name="srccolorkey"><!-- --></a><hr><h3>srccolorkey</h3><dl><dd><code>.../sdl_flag.li line #34</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">srccolorkey</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ Video<br>
+ TODO Available for SDL_SetVideoMode()
+ ========================================================================
+                             VIDEO MODES 
+ ========================================================================
+ SDL_SWSURFACE : Create the video surface in system memory
+ SDL_HWSURFACE : Create the video surface in video memory
+ SDL_ASYNCBLIT : Enables the use of asynchronous updates of the display 
+                 surface. This will usually slow down blitting on single 
+                 CPU machines, but may provide a speed increase on SMP 
+                 systems.
+ SDL_ANYFORMAT : Normally, if a video surface of the requested 
+                 bits-per-pixel (bpp) is not available, SDL will emulate 
+                 one with a shadow surface. Passing SDL_ANYFORMAT 
+                 prevents this and causes SDL to use the video surface,
+                 regardless of its pixel depth.
+ SDL_HWPALETTE : Give SDL exclusive palette access. Without this flag you
+                 may not always get the the colors you request with 
+                 SDL_SetColors or SDL_SetPalette.
+ SDL_DOUBLEBUF : Enable hardware double buffering; only valid with 
+                 SDL_HWSURFACE. Calling SDL_Flip will flip the buffers 
+                 and update the screen. All drawing will take place on 
+                 the surface that is not displayed at the moment. If 
+                 double buffering could not be enabled then SDL_Flip will
+                 just perform a SDL_UpdateRect on the entire screen.
+ SDL_FULLSCREEN: SDL will attempt to use a fullscreen mode. If a hardware
+                 resolution change is not possible (for whatever reason),
+                 the next higher resolution will be used and the display 
+                 window centered on a black background.
+ SDL_OPENGL    : Create an OpenGL rendering context. You should have 
+                 previously set OpenGL video attributes with 
+                 SDL_GL_SetAttribute.
+ SDL_OPENGLBLIT: Create an OpenGL rendering context, like above, but allow
+                 normal blitting operations. The screen (2D) surface may 
+                 have an alpha channel, and SDL_UpdateRects must be used 
+                 for updating changes to the screen surface. NOTE: This 
+                 option is kept for compatibility only, and will be 
+                 removed in next versions. Is not recommended for new 
+                 code.
+ SDL_RESIZABLE : Create a resizable window. When the window is resized by
+                 the user a SDL_VIDEORESIZE event is generated and 
+                 SDL_SetVideoMode can be called again with the new size.
+ SDL_NOFRAME   : If possible, SDL_NOFRAME causes SDL to create a window 
+                 with no title bar or frame decoration. Fullscreen modes
+                 automatically have this flag set.
+ ========================================================================
+</b></font></td></tr></tbody></table></dl><a name="anyformat"><!-- --></a><hr><h3>anyformat</h3><dl><dd><code>.../sdl_flag.li line #86</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">anyformat</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Allow any video depth/pixel-format
+</dd></dl><a name="hwpalette"><!-- --></a><hr><h3>hwpalette</h3><dl><dd><code>.../sdl_flag.li line #87</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">hwpalette</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Surface has exclusive palette
+</dd></dl><a name="doublebuf"><!-- --></a><hr><h3>doublebuf</h3><dl><dd><code>.../sdl_flag.li line #88</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">doublebuf</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Set up double-buffered video mode
+</dd></dl><a name="fullscreen"><!-- --></a><hr><h3>fullscreen</h3><dl><dd><code>.../sdl_flag.li line #89</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">fullscreen</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Surface is a full screen display
+</dd></dl><a name="opengl"><!-- --></a><hr><h3>opengl</h3><dl><dd><code>.../sdl_flag.li line #90</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">opengl</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Create an OpenGL rendering context
+</dd></dl><a name="openglblit"><!-- --></a><hr><h3>openglblit</h3><dl><dd><code>.../sdl_flag.li line #91</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">openglblit</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Create an OpenGL rendering context and use it for blitting
+</dd></dl><a name="resizable"><!-- --></a><hr><h3>resizable</h3><dl><dd><code>.../sdl_flag.li line #92</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">resizable</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> This video mode may be resized
+</dd></dl><a name="noframe"><!-- --></a><hr><h3>noframe</h3><dl><dd><code>.../sdl_flag.li line #93</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">noframe</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> No window caption or edge frame
+ TODO: /</dd><dd>available_for_sdlcreatergbsurface_or_sdlsetvideomode_</dd></dl><a name="swsurface"><!-- --></a><hr><h3>swsurface</h3><dl><dd><code>.../sdl_flag.li line #96</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">swsurface</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Surface is in system memory 
+</dd></dl><a name="hwsurface"><!-- --></a><hr><h3>hwsurface</h3><dl><dd><code>.../sdl_flag.li line #97</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">hwsurface</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd>Surface is in video memory
+</dd></dl><a name="asynblit"><!-- --></a><hr><h3>asynblit</h3><dl><dd><code>.../sdl_flag.li line #98</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">asynblit</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd>Use asynchronous blits if possible </dd><dd>todo__flags_for_sdlsetpalette__define_sdllogpal_xdefine_sdlphyspal_x</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_INIT.html b/lib/unstable/sdl-binding/docs/belinda/SDL_INIT.html
new file mode 100644
index 0000000..1a21bc6
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_INIT.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_INIT</h2><hr><strong>Xavier Oswald <x.oswald at free.fr></strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent_object">parent_object</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Slot Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_title">set_title</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_resolution">set_resolution</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_bits">set_bits</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_fullscreen">set_fullscreen</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_timer">set_timer</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_audio">set_audio</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_video">set_video</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_cdrom">set_cdrom</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_joystick">set_joystick</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_everything">set_everything</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_no_parachute">set_no_parachute</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_event_thread">set_event_thread</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#quit">quit</a></b></code><dd></td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent_object"><!-- --></a><hr><h3>parent_object</h3><dl><dd><code>.../sdl_init.li line #30</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent_object</font></strong>&nbsp;:&nbsp;<a href="SDL_SETTINGS.html"><font color="#008000">SDL_SETTINGS</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Detail slot</b></font></td></tr></tbody></table></dl><a name="set_title"><!-- --></a><hr><h3>set_title</h3><dl><dd><code>.../sdl_init.li line #34</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_title</font></strong>&nbsp; &nbsp;t&nbsp;:&nbsp;<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> </dl><a name="set_resolution"><!-- --></a><hr><h3>set_resolution</h3><dl><dd><code>.../sdl_init.li line #39</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_resolution</font></strong>&nbsp; (&nbsp;x&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;y&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) </dl><a name="set_bits"><!-- --></a><hr><h3>set_bits</h3><dl><dd><code>.../sdl_init.li line #45</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_bits</font></strong>&nbsp; &nbsp;b&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> </dl><a name="set_fullscreen"><!-- --></a><hr><h3>set_fullscreen</h3><dl><dd><code>.../sdl_init.li line #50</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_fullscreen</font></strong>&nbsp; &nbsp;b&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> </dl><a name="set_timer"><!-- --></a><hr><h3>set_timer</h3><dl><dd><code>.../sdl_init.li line #56</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_timer</font></strong>&nbsp; &nbsp;b&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> </dl><a name="set_audio"><!-- --></a><hr><h3>set_audio</h3><dl><dd><code>.../sdl_init.li line #81</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_audio</font></strong>&nbsp; &nbsp;b&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> </dl><a name="set_video"><!-- --></a><hr><h3>set_video</h3><dl><dd><code>.../sdl_init.li line #106</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_video</font></strong>&nbsp; &nbsp;b&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> </dl><a name="set_cdrom"><!-- --></a><hr><h3>set_cdrom</h3><dl><dd><code>.../sdl_init.li line #131</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_cdrom</font></strong>&nbsp; &nbsp;b&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> </dl><a name="set_joystick"><!-- --></a><hr><h3>set_joystick</h3><dl><dd><code>.../sdl_init.li line #156</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_joystick</font></strong>&nbsp; &nbsp;b&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> </dl><a name="set_everything"><!-- --></a><hr><h3>set_everything</h3><dl><dd><code>.../sdl_init.li line #181</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_everything</font></strong>&nbsp; &nbsp;b&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> </dl><a name="set_no_parachute"><!-- --></a><hr><h3>set_no_parachute</h3><dl><dd><code>.../sdl_init.li line #190</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_no_parachute</font></strong>&nbsp; &nbsp;b&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> </dl><a name="set_event_thread"><!-- --></a><hr><h3>set_event_thread</h3><dl><dd><code>.../sdl_init.li line #195</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_event_thread</font></strong>&nbsp; &nbsp;b&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> </dl><a name="quit"><!-- --></a><hr><h3>quit</h3><dl><dd><code>.../sdl_init.li line #200</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">quit</font></strong>&nbsp;
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_JOYSTICK.html b/lib/unstable/sdl-binding/docs/belinda/SDL_JOYSTICK.html
new file mode 100644
index 0000000..f680ffe
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_JOYSTICK.html
@@ -0,0 +1,105 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_JOYSTICK</h2><hr><strong></strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent_any">parent_any</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Constructor Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#create">create</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#create_witch">create_witch</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ Hat positions<br>
+ SDL_JOYSTICK.get_hat() possible positions
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#hat_centered">hat_centered</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#hat_up">hat_up</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#hat_right">hat_right</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#hat_down">hat_down</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#hat_left">hat_left</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#hat_rightup">hat_rightup</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#hat_rightdown">hat_rightdown</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#hat_leftup">hat_leftup</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#hat_leftdown">hat_leftdown</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ Direct Joystick access<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#make">make</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b> TODO
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#open">open</a></b></code><dd> Open a joystick for use.
+ The index passed as an argument refers to the N'th joystick on the system.
+ This index is the value which will identify this joystick in future
+ joystick events. This function returns a joystick identifier, or NULL if
+ an error occurred.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#index">index</a></b></code><dd> Get the device index of the opened joystick.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#num_axes">num_axes</a></b></code><dd> Get the number of general axis controls on the opened joystick
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#num_balls">num_balls</a></b></code><dd> Get the number of trackballs on a joystick. Joystick trackballs have only
+ relative motion events associated with them and their state cannot be
+ polled.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#num_hats">num_hats</a></b></code><dd> Get the number of POV hats on a joystick
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#num_buttons">num_buttons</a></b></code><dd> Get the number of buttons on the opened joystick
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b> TODO: optimize return Sint16
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#get_axis">get_axis</a></b></code><dd> Get the current state of an axis control on the opened joystick The axis
+ indices start at index 0.  The return state is a value ranging from
+ <em><b><font color="#000000">-32768</font></em></b> to <em><b><font color="#000000">32767</font></em></b>.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#get_hat">get_hat</a></b></code><dd> Get the current state of a POV hat on a joystick. The hat indices start at
+ index <em><b><font color="#000000">0</font></em></b>.
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b> TODO check this !!!
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#get_ball">get_ball</a></b></code><dd> Get the ball axis change since the last poll
+ The ball indices start at index <em><b><font color="#000000">0</font></em></b>.
+ This returns <em><b><font color="#000000">0</font></em></b>, or <em><b><font color="#000000">-1</font></em></b> if you passed it invalid parameters.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#get_button">get_button</a></b></code><dd> Get the current state of a button on the opened joystick. The button
+ indices start at index <em><b><font color="#000000">0</font></em></b>.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#close">close</a></b></code><dd> Close a joystick previously opened with <em><b><font color="#000000">SDL_JoystickOpen()</font></em></b>
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ Global information<br>
+ TODO: check for NULL string return
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#joystick_name">joystick_name</a></b></code><dd> Get the implementation dependent name of a joystick.
+ This can be called before any joysticks are opened.
+ If no name can be found, this function returns NULL.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#opened">opened</a></b></code><dd> Returns 1 if the joystick has been opened, or 0 if it has not.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#num_joysticks">num_joysticks</a></b></code><dd> Count the number of joysticks attached to the system
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#update">update</a></b></code><dd>  Update the current state of the open joysticks. This is called
+  automatically by the event loop if any joystick events are enabled.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#event_state">event_state</a></b></code><dd> Enable/disable joystick event polling. If joystick events are disabled,
+ you must call <em><b><font color="#000000">SDL_JOYSTICK.update</font></em></b> yourself and check the state of the
+ joystick when you want joystick information.
+ The state can be one of <em><b><font color="#000000">SDL_FLAG.query</font></em></b>, <em><b><font color="#000000">SDL_FLAG.enable</font></em></b> or
+ <em><b><font color="#000000">SDL_FLAG.ignore</font></em></b>.
+</td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent_any"><!-- --></a><hr><h3>parent_any</h3><dl><dd><code>.../sdl_joystick.li line #32</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">+ </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent_any</font></strong>&nbsp;:&nbsp;<a href="ANY.html"><font color="#008000">ANY</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Constructor Detail</b></font></td></tr></tbody></table></dl><a name="create"><!-- --></a><hr><h3>create</h3><dl><dd><code>.../sdl_joystick.li line #57</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">create</font></strong>&nbsp;:&nbsp;<font color="#008000">SELF</font></dl><a name="create_witch"><!-- --></a><hr><h3>create_witch</h3><dl><dd><code>.../sdl_joystick.li line #63</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">create_witch</font></strong>&nbsp; &nbsp;device_index&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<font color="#008000">SELF</font></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ Hat positions<br>
+ SDL_JOYSTICK.get_hat() possible positions
+</b></font></td></tr></tbody></table></dl><a name="hat_centered"><!-- --></a><hr><h3>hat_centered</h3><dl><dd><code>.../sdl_joystick.li line #41</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">hat_centered</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="hat_up"><!-- --></a><hr><h3>hat_up</h3><dl><dd><code>.../sdl_joystick.li line #42</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">hat_up</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="hat_right"><!-- --></a><hr><h3>hat_right</h3><dl><dd><code>.../sdl_joystick.li line #43</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">hat_right</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="hat_down"><!-- --></a><hr><h3>hat_down</h3><dl><dd><code>.../sdl_joystick.li line #44</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">hat_down</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="hat_left"><!-- --></a><hr><h3>hat_left</h3><dl><dd><code>.../sdl_joystick.li line #45</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">hat_left</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="hat_rightup"><!-- --></a><hr><h3>hat_rightup</h3><dl><dd><code>.../sdl_joystick.li line #46</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">hat_rightup</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="hat_rightdown"><!-- --></a><hr><h3>hat_rightdown</h3><dl><dd><code>.../sdl_joystick.li line #47</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">hat_rightdown</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="hat_leftup"><!-- --></a><hr><h3>hat_leftup</h3><dl><dd><code>.../sdl_joystick.li line #48</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">hat_leftup</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="hat_leftdown"><!-- --></a><hr><h3>hat_leftdown</h3><dl><dd><code>.../sdl_joystick.li line #49</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">hat_leftdown</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ Direct Joystick access<br>
+</b></font></td></tr></tbody></table></dl><a name="make"><!-- --></a><hr><h3>make</h3><dl><dd><code>.../sdl_joystick.li line #70</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">make</font></strong>&nbsp; &nbsp;device_index&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> </dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b> TODO
+</b></font></td></tr></tbody></table></dl><a name="open"><!-- --></a><hr><h3>open</h3><dl><dd><code>.../sdl_joystick.li line #76</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">open</font></strong>&nbsp; &nbsp;device_index&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <dt><b><br>Description:</b></dt><dd> Open a joystick for use.
+ The index passed as an argument refers to the N'th joystick on the system.
+ This index is the value which will identify this joystick in future
+ joystick events. This function returns a joystick identifier, or NULL if
+ an error occurred.
+</dd></dl><a name="index"><!-- --></a><hr><h3>index</h3><dl><dd><code>.../sdl_joystick.li line #87</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">index</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Get the device index of the opened joystick.
+</dd></dl><a name="num_axes"><!-- --></a><hr><h3>num_axes</h3><dl><dd><code>.../sdl_joystick.li line #93</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">num_axes</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Get the number of general axis controls on the opened joystick
+</dd></dl><a name="num_balls"><!-- --></a><hr><h3>num_balls</h3><dl><dd><code>.../sdl_joystick.li line #99</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">num_balls</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Get the number of trackballs on a joystick. Joystick trackballs have only
+ relative motion events associated with them and their state cannot be
+ polled.
+</dd></dl><a name="num_hats"><!-- --></a><hr><h3>num_hats</h3><dl><dd><code>.../sdl_joystick.li line #107</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">num_hats</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Get the number of POV hats on a joystick
+</dd></dl><a name="num_buttons"><!-- --></a><hr><h3>num_buttons</h3><dl><dd><code>.../sdl_joystick.li line #113</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">num_buttons</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Get the number of buttons on the opened joystick
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b> TODO: optimize return Sint16
+</b></font></td></tr></tbody></table></dl><a name="get_axis"><!-- --></a><hr><h3>get_axis</h3><dl><dd><code>.../sdl_joystick.li line #120</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">get_axis</font></strong>&nbsp; &nbsp;axis&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Get the current state of an axis control on the opened joystick The axis
+ indices start at index 0.  The return state is a value ranging from
+ <em><b><font color="#000000">-32768</font></em></b> to <em><b><font color="#000000">32767</font></em></b>.
+</dd></dl><a name="get_hat"><!-- --></a><hr><h3>get_hat</h3><dl><dd><code>.../sdl_joystick.li line #128</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">get_hat</font></strong>&nbsp; &nbsp;hat&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Get the current state of a POV hat on a joystick. The hat indices start at
+ index <em><b><font color="#000000">0</font></em></b>.
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b> TODO check this !!!
+</b></font></td></tr></tbody></table></dl><a name="get_ball"><!-- --></a><hr><h3>get_ball</h3><dl><dd><code>.../sdl_joystick.li line #136</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">get_ball</font></strong>&nbsp; (&nbsp;ball&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;dx&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;dy&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Get the ball axis change since the last poll
+ The ball indices start at index <em><b><font color="#000000">0</font></em></b>.
+ This returns <em><b><font color="#000000">0</font></em></b>, or <em><b><font color="#000000">-1</font></em></b> if you passed it invalid parameters.
+</dd></dl><a name="get_button"><!-- --></a><hr><h3>get_button</h3><dl><dd><code>.../sdl_joystick.li line #145</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">get_button</font></strong>&nbsp; &nbsp;button&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Get the current state of a button on the opened joystick. The button
+ indices start at index <em><b><font color="#000000">0</font></em></b>.
+</dd></dl><a name="close"><!-- --></a><hr><h3>close</h3><dl><dd><code>.../sdl_joystick.li line #152</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">close</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> Close a joystick previously opened with <em><b><font color="#000000">SDL_JoystickOpen()</font></em></b>
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ Global information<br>
+ TODO: check for NULL string return
+</b></font></td></tr></tbody></table></dl><a name="joystick_name"><!-- --></a><hr><h3>joystick_name</h3><dl><dd><code>.../sdl_joystick.li line #166</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">joystick_name</font></strong>&nbsp; &nbsp;device_index&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<a href="STRING.html"><font color="#008000">STRING</font></a><dt><b><br>Description:</b></dt><dd> Get the implementation dependent name of a joystick.
+ This can be called before any joysticks are opened.
+ If no name can be found, this function returns NULL.
+</dd></dl><a name="opened"><!-- --></a><hr><h3>opened</h3><dl><dd><code>.../sdl_joystick.li line #179</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">opened</font></strong>&nbsp; &nbsp;device_index&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Returns 1 if the joystick has been opened, or 0 if it has not.
+</dd></dl><a name="num_joysticks"><!-- --></a><hr><h3>num_joysticks</h3><dl><dd><code>.../sdl_joystick.li line #185</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">num_joysticks</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Count the number of joysticks attached to the system
+</dd></dl><a name="update"><!-- --></a><hr><h3>update</h3><dl><dd><code>.../sdl_joystick.li line #191</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">update</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd>  Update the current state of the open joysticks. This is called
+  automatically by the event loop if any joystick events are enabled.
+</dd></dl><a name="event_state"><!-- --></a><hr><h3>event_state</h3><dl><dd><code>.../sdl_joystick.li line #198</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">event_state</font></strong>&nbsp; &nbsp;state&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Enable/disable joystick event polling. If joystick events are disabled,
+ you must call <em><b><font color="#000000">SDL_JOYSTICK.update</font></em></b> yourself and check the state of the
+ joystick when you want joystick information.
+ The state can be one of <em><b><font color="#000000">SDL_FLAG.query</font></em></b>, <em><b><font color="#000000">SDL_FLAG.enable</font></em></b> or
+ <em><b><font color="#000000">SDL_FLAG.ignore</font></em></b>.
+</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_KEYBOARD.html b/lib/unstable/sdl-binding/docs/belinda/SDL_KEYBOARD.html
new file mode 100644
index 0000000..8d9950c
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_KEYBOARD.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_KEYBOARD</h2><hr><strong>Xavier Oswald <xoswald at debian.org></strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ REPEAT & DELAY:
<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#delay">delay</a></b></code><dd> SDL default value is 500;
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#interval">interval</a></b></code><dd> SDL default velur is 30
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#enable_key_repeat">enable_key_repeat</a></b></code><dd> Enable/Disable keyboard repeat.  Keyboard repeat defaults to off.
+ <code><b><a href="#delay">delay</a></b></code> is the initial delay in ms between the time when a key is
+ pressed, and keyboard repeat begins.
+ <code><b><a href="#interval">interval</a></b></code> is the time in ms between keyboard repeat events.
+ If <code><b><a href="#delay">delay</a></b></code> is set to 0, keyboard repeat is disabled.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_defaut_key_repeat">set_defaut_key_repeat</a></b></code><dd> Set good default value provided by the SDL library
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#get_key_repeat">get_key_repeat</a></b></code><dd> Get <code><b><a href="#delay">delay</a></b></code> and <code><b><a href="#interval">interval</a></b></code> values
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ UNICODE handling
<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#previous_state">previous_state</a></b></code><dd> Previous unicode state
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#enable_unicode">enable_unicode</a></b></code><dd> Enable/Disable UNICODE translation of keyboard input.
+ This translation has some overhead, so translation defaults off.
+ If <em><b><font color="#000000">enable</font></em></b> is 1, translation is enabled.
+ If <em><b><font color="#000000">enable</font></em></b> is 0, translation is disabled.
+ If <em><b><font color="#000000">enable</font></em></b> is -1, the translation state is not changed.
+ This function set the <code><b><a href="#previous_state">previous_state</a></b></code> slot
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ Keys mod and state
<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#get_mod_state">get_mod_state</a></b></code><dd> Get the current key modifier state
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_mod_state">set_mod_state</a></b></code><dd> Set the current key modifier state.
+ This does not change the keyboard state, only the key modifier flags.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#get_key_name">get_key_name</a></b></code><dd> Get the name of an SDL virtual keysym
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b> TODO: check fast_array & native_array convertion
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#get_key_state">get_key_state</a></b></code><dd> Memory buffer of the current keyboard. Get a snapshot of the current state
+ of the keyboard. Returns an array of keystates, indexed by the SDLK_</td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ REPEAT & DELAY:
<br>
+</b></font></td></tr></tbody></table></dl><a name="delay"><!-- --></a><hr><h3>delay</h3><dl><dd><code>.../keyboard/sdl_keyboard.li line #35</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">delay</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> SDL default value is 500;
+</dd></dl><a name="interval"><!-- --></a><hr><h3>interval</h3><dl><dd><code>.../keyboard/sdl_keyboard.li line #36</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">interval</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> SDL default velur is 30
+</dd></dl><a name="enable_key_repeat"><!-- --></a><hr><h3>enable_key_repeat</h3><dl><dd><code>.../keyboard/sdl_keyboard.li line #38</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">enable_key_repeat</font></strong>&nbsp; (&nbsp;delay_p&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;interval_p&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <dt><b><br>Description:</b></dt><dd> Enable/Disable keyboard repeat.  Keyboard repeat defaults to off.
+ <code><b><a href="#delay">delay</a></b></code> is the initial delay in ms between the time when a key is
+ pressed, and keyboard repeat begins.
+ <code><b><a href="#interval">interval</a></b></code> is the time in ms between keyboard repeat events.
+ If <code><b><a href="#delay">delay</a></b></code> is set to 0, keyboard repeat is disabled.
+</dd></dl><a name="set_defaut_key_repeat"><!-- --></a><hr><h3>set_defaut_key_repeat</h3><dl><dd><code>.../keyboard/sdl_keyboard.li line #50</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_defaut_key_repeat</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> Set good default value provided by the SDL library
+</dd></dl><a name="get_key_repeat"><!-- --></a><hr><h3>get_key_repeat</h3><dl><dd><code>.../keyboard/sdl_keyboard.li line #58</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">get_key_repeat</font></strong>&nbsp;:(&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>)<dt><b><br>Description:</b></dt><dd> Get <code><b><a href="#delay">delay</a></b></code> and <code><b><a href="#interval">interval</a></b></code> values
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ UNICODE handling
<br>
+</b></font></td></tr></tbody></table></dl><a name="previous_state"><!-- --></a><hr><h3>previous_state</h3><dl><dd><code>.../keyboard/sdl_keyboard.li line #68</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">previous_state</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Previous unicode state
+</dd></dl><a name="enable_unicode"><!-- --></a><hr><h3>enable_unicode</h3><dl><dd><code>.../keyboard/sdl_keyboard.li line #70</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">enable_unicode</font></strong>&nbsp; &nbsp;enable&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Enable/Disable UNICODE translation of keyboard input.
+ This translation has some overhead, so translation defaults off.
+ If <em><b><font color="#000000">enable</font></em></b> is 1, translation is enabled.
+ If <em><b><font color="#000000">enable</font></em></b> is 0, translation is disabled.
+ If <em><b><font color="#000000">enable</font></em></b> is -1, the translation state is not changed.
+ This function set the <code><b><a href="#previous_state">previous_state</a></b></code> slot
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ Keys mod and state
<br>
+</b></font></td></tr></tbody></table></dl><a name="get_mod_state"><!-- --></a><hr><h3>get_mod_state</h3><dl><dd><code>.../keyboard/sdl_keyboard.li line #85</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">get_mod_state</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Get the current key modifier state
+</dd></dl><a name="set_mod_state"><!-- --></a><hr><h3>set_mod_state</h3><dl><dd><code>.../keyboard/sdl_keyboard.li line #91</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_mod_state</font></strong>&nbsp; &nbsp;state&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <dt><b><br>Description:</b></dt><dd> Set the current key modifier state.
+ This does not change the keyboard state, only the key modifier flags.
+</dd></dl><a name="get_key_name"><!-- --></a><hr><h3>get_key_name</h3><dl><dd><code>.../keyboard/sdl_keyboard.li line #98</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">get_key_name</font></strong>&nbsp; &nbsp;key&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<a href="STRING.html"><font color="#008000">STRING</font></a><dt><b><br>Description:</b></dt><dd> Get the name of an SDL virtual keysym
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b> TODO: check fast_array & native_array convertion
+</b></font></td></tr></tbody></table></dl><a name="get_key_state"><!-- --></a><hr><h3>get_key_state</h3><dl><dd><code>.../keyboard/sdl_keyboard.li line #110</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">get_key_state</font></strong>&nbsp;:&nbsp;<a href="FAST_ARRAY.html"><font color="#008000">FAST_ARRAY</font></a>(&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>)<dt><b><br>Description:</b></dt><dd> Memory buffer of the current keyboard. Get a snapshot of the current state
+ of the keyboard. Returns an array of keystates, indexed by the SDLK_</dd><dd>syms</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_KEYCODE.html b/lib/unstable/sdl-binding/docs/belinda/SDL_KEYCODE.html
new file mode 100644
index 0000000..813ca43
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_KEYCODE.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_KEYCODE</h2><hr><strong>Xavier Oswald <xoswald at debian.org></strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent_keycode">parent_keycode</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Slot Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#make">make</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#get_key">get_key</a></b></code><dd></td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent_keycode"><!-- --></a><hr><h3>parent_keycode</h3><dl><dd><code>.../OLD/sdl_keycode.li line #32</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent_keycode</font></strong>&nbsp;:<strong><font color="#A020F0">Expanded</font></strong> &nbsp;<a href="SDL_ABSTRACT_KEYCODE.html"><font color="#008000">SDL_ABSTRACT_KEYCODE</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Detail slot</b></font></td></tr></tbody></table></dl><a name="make"><!-- --></a><hr><h3>make</h3><dl><dd><code>.../OLD/sdl_keycode.li line #43</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">make</font></strong>&nbsp;</dl><a name="get_key"><!-- --></a><hr><h3>get_key</h3><dl><dd><code>.../OLD/sdl_keycode.li line #188</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">get_key</font></strong>&nbsp; &nbsp;key&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_KEYSYM.html b/lib/unstable/sdl-binding/docs/belinda/SDL_KEYSYM.html
new file mode 100644
index 0000000..0dc168c
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_KEYSYM.html
@@ -0,0 +1,35 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_KEYSYM</h2><hr><strong>SDL Mapping of every raw key on the keyboard</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ KEYSYM INFORMATION <br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#scancode">scancode</a></b></code><dd> hardware specific scancode
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#sym">sym</a></b></code><dd> SDL virtual keysym 
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mod">mod</a></b></code><dd> current key modifiers
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#unicode">unicode</a></b></code><dd> translated character<br>
+ ASCII MAPPED KEYSYMS<br>
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#backspace">backspace</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#tab">tab</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#clear">clear</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#return">return</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#pause">pause</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#escape">escape</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#space">space</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#exclaim">exclaim</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#quotedbl">quotedbl</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#hash">hash</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#dollar">dollar</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#ampersand">ampersand</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#quote">quote</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#leftparen">leftparen</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#rightparen">rightparen</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#asterisk">asterisk</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#plus">plus</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#comma">comma</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#minus">minus</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#period">period</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#slash">slash</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_0">k_0</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_1">k_1</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_2">k_2</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_3">k_3</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_4">k_4</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_5">k_5</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_6">k_6</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_7">k_7</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_8">k_8</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k_9">k_9</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#colon">colon</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#semicolon">semicolon</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#less">less</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#equals">equals</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#greater">greater</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#at">at</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#leftbracket">leftbracket</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#backslash">backslash</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#rightbracket">rightbracket</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#caret">caret</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#underscore">underscore</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#backquote">backquote</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#a">a</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#b">b</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#c">c</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#d">d</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#e">e</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#f">f</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#g">g</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#h">h</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#i">i</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#j">j</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#k">k</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#l">l</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#m">m</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#n">n</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#o">o</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#p">p</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#q">q</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#r">r</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#s">s</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#t">t</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#u">u</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#v">v</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#w">w</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#x">x</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#y">y</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#z">z</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#delete">delete</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#up">up</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#down">down</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#right">right</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#left">left</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#insert">insert</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#home">home</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#end">end</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#pageup">pageup</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#pagedown">pagedown</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#f1">f1</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#f2">f2</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#f3">f3</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#f4">f4</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#f5">f5</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#f6">f6</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#f7">f7</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#f8">f8</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#f9">f9</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#f10">f10</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#f11">f11</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#f12">f12</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#f13">f13</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#f14">f14</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#f15">f15</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#numlock">numlock</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#capslock">capslock</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#scrollock">scrollock</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#rshift">rshift</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#lshift">lshift</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#rctrl">rctrl</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#lctrl">lctrl</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#ralt">ralt</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#lalt">lalt</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#rmeta">rmeta</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#lmeta">lmeta</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#lsuper">lsuper</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#rsuper">rsuper</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mode">mode</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#compose">compose</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#help">help</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#print">print</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#sysreq">sysreq</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#break">break</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#menu">menu</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#power">power</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#euro">euro</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#undo">undo</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ Numeric keypad<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_0">kp_0</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_1">kp_1</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_2">kp_2</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_3">kp_3</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_4">kp_4</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_5">kp_5</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_6">kp_6</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_7">kp_7</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_8">kp_8</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_9">kp_9</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_period">kp_period</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_divide">kp_divide</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_multiply">kp_multiply</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_minus">kp_minus</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_plus">kp_plus</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_enter">kp_enter</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#kp_equals">kp_equals</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ Keys mods<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mod_none">mod_none</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mod_shift">mod_shift</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mod_lshift">mod_lshift</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mod_rshift">mod_rshift</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mod_ctrl">mod_ctrl</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mod_lctrl">mod_lctrl</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mod_rctrl">mod_rctrl</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mod_alt">mod_alt</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mod_lalt">mod_lalt</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mod_ralt">mod_ralt</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mod_meta">mod_meta</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mod_lmeta">mod_lmeta</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mod_rmeta">mod_rmeta</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mod_num">mod_num</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mod_caps">mod_caps</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mod_mode">mod_mode</a></b></code><dd></td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ KEYSYM INFORMATION <br>
+</b></font></td></tr></tbody></table></dl><a name="scancode"><!-- --></a><hr><h3>scancode</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #34</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">scancode</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> hardware specific scancode
+</dd></dl><a name="sym"><!-- --></a><hr><h3>sym</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #35</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">sym</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> SDL virtual keysym 
+</dd></dl><a name="mod"><!-- --></a><hr><h3>mod</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #36</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mod</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> current key modifiers
+</dd></dl><a name="unicode"><!-- --></a><hr><h3>unicode</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #37</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">unicode</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_16.html"><font color="#008000">UINTEGER_16</font></a><dt><b><br>Description:</b></dt><dd> translated character<br>
+ ASCII MAPPED KEYSYMS<br>
+</dd></dl><a name="backspace"><!-- --></a><hr><h3>backspace</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #42</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">backspace</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="tab"><!-- --></a><hr><h3>tab</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #43</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">tab</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="clear"><!-- --></a><hr><h3>clear</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #44</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">clear</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="return"><!-- --></a><hr><h3>return</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #45</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">return</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="pause"><!-- --></a><hr><h3>pause</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #46</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">pause</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="escape"><!-- --></a><hr><h3>escape</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #47</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">escape</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="space"><!-- --></a><hr><h3>space</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #48</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">space</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="exclaim"><!-- --></a><hr><h3>exclaim</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #49</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">exclaim</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="quotedbl"><!-- --></a><hr><h3>quotedbl</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #50</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">quotedbl</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="hash"><!-- --></a><hr><h3>hash</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #51</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">hash</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="dollar"><!-- --></a><hr><h3>dollar</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #52</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">dollar</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="ampersand"><!-- --></a><hr><h3>ampersand</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #53</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">ampersand</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="quote"><!-- --></a><hr><h3>quote</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #54</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">quote</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="leftparen"><!-- --></a><hr><h3>leftparen</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #55</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">leftparen</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="rightparen"><!-- --></a><hr><h3>rightparen</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #56</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">rightparen</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="asterisk"><!-- --></a><hr><h3>asterisk</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #57</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">asterisk</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="plus"><!-- --></a><hr><h3>plus</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #58</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">plus</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="comma"><!-- --></a><hr><h3>comma</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #59</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">comma</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="minus"><!-- --></a><hr><h3>minus</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #60</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">minus</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="period"><!-- --></a><hr><h3>period</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #61</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">period</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="slash"><!-- --></a><hr><h3>slash</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #62</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">slash</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_0"><!-- --></a><hr><h3>k_0</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #64</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_0</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_1"><!-- --></a><hr><h3>k_1</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #65</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_1</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_2"><!-- --></a><hr><h3>k_2</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #66</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_2</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_3"><!-- --></a><hr><h3>k_3</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #67</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_3</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_4"><!-- --></a><hr><h3>k_4</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #68</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_4</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_5"><!-- --></a><hr><h3>k_5</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #69</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_5</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_6"><!-- --></a><hr><h3>k_6</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #70</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_6</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_7"><!-- --></a><hr><h3>k_7</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #71</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_7</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_8"><!-- --></a><hr><h3>k_8</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #72</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_8</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k_9"><!-- --></a><hr><h3>k_9</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #73</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k_9</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="colon"><!-- --></a><hr><h3>colon</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #75</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">colon</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="semicolon"><!-- --></a><hr><h3>semicolon</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #76</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">semicolon</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="less"><!-- --></a><hr><h3>less</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #77</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">less</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="equals"><!-- --></a><hr><h3>equals</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #78</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">equals</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="greater"><!-- --></a><hr><h3>greater</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #79</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">greater</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="at"><!-- --></a><hr><h3>at</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #80</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">at</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="leftbracket"><!-- --></a><hr><h3>leftbracket</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #81</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">leftbracket</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="backslash"><!-- --></a><hr><h3>backslash</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #82</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">backslash</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="rightbracket"><!-- --></a><hr><h3>rightbracket</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #83</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">rightbracket</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="caret"><!-- --></a><hr><h3>caret</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #84</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">caret</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="underscore"><!-- --></a><hr><h3>underscore</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #85</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">underscore</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="backquote"><!-- --></a><hr><h3>backquote</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #86</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">backquote</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="a"><!-- --></a><hr><h3>a</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #88</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">a</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="b"><!-- --></a><hr><h3>b</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #89</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">b</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="c"><!-- --></a><hr><h3>c</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #90</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">c</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="d"><!-- --></a><hr><h3>d</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #91</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">d</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="e"><!-- --></a><hr><h3>e</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #92</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">e</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="f"><!-- --></a><hr><h3>f</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #93</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">f</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="g"><!-- --></a><hr><h3>g</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #94</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">g</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="h"><!-- --></a><hr><h3>h</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #95</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">h</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="i"><!-- --></a><hr><h3>i</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #96</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">i</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="j"><!-- --></a><hr><h3>j</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #97</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">j</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="k"><!-- --></a><hr><h3>k</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #98</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">k</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="l"><!-- --></a><hr><h3>l</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #99</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">l</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="m"><!-- --></a><hr><h3>m</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #100</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">m</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="n"><!-- --></a><hr><h3>n</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #101</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">n</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="o"><!-- --></a><hr><h3>o</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #102</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">o</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="p"><!-- --></a><hr><h3>p</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #103</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">p</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="q"><!-- --></a><hr><h3>q</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #104</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">q</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="r"><!-- --></a><hr><h3>r</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #105</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">r</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="s"><!-- --></a><hr><h3>s</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #106</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">s</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="t"><!-- --></a><hr><h3>t</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #107</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">t</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="u"><!-- --></a><hr><h3>u</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #108</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">u</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="v"><!-- --></a><hr><h3>v</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #109</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">v</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="w"><!-- --></a><hr><h3>w</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #110</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">w</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="x"><!-- --></a><hr><h3>x</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #111</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">x</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="y"><!-- --></a><hr><h3>y</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #112</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">y</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="z"><!-- --></a><hr><h3>z</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #113</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">z</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="delete"><!-- --></a><hr><h3>delete</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #115</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">delete</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="up"><!-- --></a><hr><h3>up</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #116</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">up</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="down"><!-- --></a><hr><h3>down</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #117</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">down</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="right"><!-- --></a><hr><h3>right</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #118</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">right</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="left"><!-- --></a><hr><h3>left</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #119</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">left</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="insert"><!-- --></a><hr><h3>insert</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #120</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">insert</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="home"><!-- --></a><hr><h3>home</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #121</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">home</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="end"><!-- --></a><hr><h3>end</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #122</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">end</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="pageup"><!-- --></a><hr><h3>pageup</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #123</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">pageup</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="pagedown"><!-- --></a><hr><h3>pagedown</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #124</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">pagedown</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="f1"><!-- --></a><hr><h3>f1</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #126</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">f1</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="f2"><!-- --></a><hr><h3>f2</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #127</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">f2</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="f3"><!-- --></a><hr><h3>f3</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #128</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">f3</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="f4"><!-- --></a><hr><h3>f4</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #129</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">f4</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="f5"><!-- --></a><hr><h3>f5</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #130</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">f5</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="f6"><!-- --></a><hr><h3>f6</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #131</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">f6</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="f7"><!-- --></a><hr><h3>f7</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #132</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">f7</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="f8"><!-- --></a><hr><h3>f8</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #133</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">f8</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="f9"><!-- --></a><hr><h3>f9</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #134</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">f9</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="f10"><!-- --></a><hr><h3>f10</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #135</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">f10</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="f11"><!-- --></a><hr><h3>f11</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #136</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">f11</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="f12"><!-- --></a><hr><h3>f12</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #137</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">f12</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="f13"><!-- --></a><hr><h3>f13</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #138</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">f13</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="f14"><!-- --></a><hr><h3>f14</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #139</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">f14</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="f15"><!-- --></a><hr><h3>f15</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #140</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">f15</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="numlock"><!-- --></a><hr><h3>numlock</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #142</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">numlock</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="capslock"><!-- --></a><hr><h3>capslock</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #143</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">capslock</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="scrollock"><!-- --></a><hr><h3>scrollock</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #144</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">scrollock</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="rshift"><!-- --></a><hr><h3>rshift</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #145</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">rshift</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="lshift"><!-- --></a><hr><h3>lshift</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #146</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">lshift</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="rctrl"><!-- --></a><hr><h3>rctrl</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #147</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">rctrl</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="lctrl"><!-- --></a><hr><h3>lctrl</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #148</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">lctrl</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="ralt"><!-- --></a><hr><h3>ralt</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #149</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">ralt</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="lalt"><!-- --></a><hr><h3>lalt</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #150</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">lalt</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="rmeta"><!-- --></a><hr><h3>rmeta</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #151</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">rmeta</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="lmeta"><!-- --></a><hr><h3>lmeta</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #152</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">lmeta</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="lsuper"><!-- --></a><hr><h3>lsuper</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #153</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">lsuper</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="rsuper"><!-- --></a><hr><h3>rsuper</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #154</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">rsuper</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mode"><!-- --></a><hr><h3>mode</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #155</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mode</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="compose"><!-- --></a><hr><h3>compose</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #156</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">compose</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="help"><!-- --></a><hr><h3>help</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #158</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">help</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="print"><!-- --></a><hr><h3>print</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #159</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">print</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="sysreq"><!-- --></a><hr><h3>sysreq</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #160</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">sysreq</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="break"><!-- --></a><hr><h3>break</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #161</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">break</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="menu"><!-- --></a><hr><h3>menu</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #162</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">menu</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="power"><!-- --></a><hr><h3>power</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #163</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">power</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="euro"><!-- --></a><hr><h3>euro</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #164</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">euro</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="undo"><!-- --></a><hr><h3>undo</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #165</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">undo</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ Numeric keypad<br>
+</b></font></td></tr></tbody></table></dl><a name="kp_0"><!-- --></a><hr><h3>kp_0</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #170</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_0</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_1"><!-- --></a><hr><h3>kp_1</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #171</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_1</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_2"><!-- --></a><hr><h3>kp_2</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #172</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_2</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_3"><!-- --></a><hr><h3>kp_3</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #173</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_3</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_4"><!-- --></a><hr><h3>kp_4</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #174</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_4</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_5"><!-- --></a><hr><h3>kp_5</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #175</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_5</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_6"><!-- --></a><hr><h3>kp_6</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #176</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_6</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_7"><!-- --></a><hr><h3>kp_7</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #177</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_7</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_8"><!-- --></a><hr><h3>kp_8</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #178</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_8</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_9"><!-- --></a><hr><h3>kp_9</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #179</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_9</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_period"><!-- --></a><hr><h3>kp_period</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #180</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_period</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_divide"><!-- --></a><hr><h3>kp_divide</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #181</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_divide</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_multiply"><!-- --></a><hr><h3>kp_multiply</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #182</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_multiply</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_minus"><!-- --></a><hr><h3>kp_minus</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #183</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_minus</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_plus"><!-- --></a><hr><h3>kp_plus</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #184</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_plus</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_enter"><!-- --></a><hr><h3>kp_enter</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #185</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_enter</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="kp_equals"><!-- --></a><hr><h3>kp_equals</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #186</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">kp_equals</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ Keys mods<br>
+</b></font></td></tr></tbody></table></dl><a name="mod_none"><!-- --></a><hr><h3>mod_none</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #191</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mod_none</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mod_shift"><!-- --></a><hr><h3>mod_shift</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #192</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mod_shift</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mod_lshift"><!-- --></a><hr><h3>mod_lshift</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #193</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mod_lshift</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mod_rshift"><!-- --></a><hr><h3>mod_rshift</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #194</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mod_rshift</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mod_ctrl"><!-- --></a><hr><h3>mod_ctrl</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #195</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mod_ctrl</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mod_lctrl"><!-- --></a><hr><h3>mod_lctrl</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #196</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mod_lctrl</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mod_rctrl"><!-- --></a><hr><h3>mod_rctrl</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #197</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mod_rctrl</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mod_alt"><!-- --></a><hr><h3>mod_alt</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #198</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mod_alt</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mod_lalt"><!-- --></a><hr><h3>mod_lalt</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #199</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mod_lalt</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mod_ralt"><!-- --></a><hr><h3>mod_ralt</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #200</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mod_ralt</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mod_meta"><!-- --></a><hr><h3>mod_meta</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #201</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mod_meta</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mod_lmeta"><!-- --></a><hr><h3>mod_lmeta</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #202</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mod_lmeta</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mod_rmeta"><!-- --></a><hr><h3>mod_rmeta</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #203</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mod_rmeta</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mod_num"><!-- --></a><hr><h3>mod_num</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #204</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mod_num</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mod_caps"><!-- --></a><hr><h3>mod_caps</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #205</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mod_caps</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mod_mode"><!-- --></a><hr><h3>mod_mode</h3><dl><dd><code>.../keyboard/sdl_keysym.li line #206</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mod_mode</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_MIXER.html b/lib/unstable/sdl-binding/docs/belinda/SDL_MIXER.html
new file mode 100644
index 0000000..8aa29b1
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_MIXER.html
@@ -0,0 +1,21 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_MIXER</h2><hr><strong>Audio & Noise managment</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent_object">parent_object</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Slot Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#audio_rate">audio_rate</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#audio_channels">audio_channels</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#audio_buffers">audio_buffers</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#audio_format">audio_format</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#chuck_size">chuck_size</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#audio_s16">audio_s16</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#audio_s8">audio_s8</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mus_none">mus_none</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mus_cmd">mus_cmd</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mus_wav">mus_wav</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mus_mod">mus_mod</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mus_mid">mus_mid</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mus_ogg">mus_ogg</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mus_mp3">mus_mp3</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#mus_mp3_mad">mus_mp3_mad</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#query_spec">query_spec</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#open_audio">open_audio</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#load_wav">load_wav</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#play_channel">play_channel</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#halt_channel">halt_channel</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>extern DECLSPEC Mix_Music * SDLCALL Mix_LoadMUS(const char *file);
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#load_music">load_music</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#play_music">play_music</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>	Mix_HookMusicFinished(musicDone);
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#hook_music_finished">hook_music_finished</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b> TODO: Mix_QuerySpec(&audio_rate, &audio_format, &audio_channels);
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#allocate_channels">allocate_channels</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>extern DECLSPEC int SDLCALL Mix_SetDistance(int channel, Uint8 distance);
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_distance">set_distance</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#volume">volume</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#volume_music">volume_music</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#halt_music">halt_music</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#free_music">free_music</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#close_audio">close_audio</a></b></code><dd></td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent_object"><!-- --></a><hr><h3>parent_object</h3><dl><dd><code>.../audio/sdl_mixer.li line #52</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">+ </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent_object</font></strong>&nbsp;:&nbsp;<a href="OBJECT.html"><font color="#008000">OBJECT</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Detail slot</b></font></td></tr></tbody></table></dl><a name="audio_rate"><!-- --></a><hr><h3>audio_rate</h3><dl><dd><code>.../audio/sdl_mixer.li line #56</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">audio_rate</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="audio_channels"><!-- --></a><hr><h3>audio_channels</h3><dl><dd><code>.../audio/sdl_mixer.li line #57</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">audio_channels</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="audio_buffers"><!-- --></a><hr><h3>audio_buffers</h3><dl><dd><code>.../audio/sdl_mixer.li line #58</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">audio_buffers</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="audio_format"><!-- --></a><hr><h3>audio_format</h3><dl><dd><code>.../audio/sdl_mixer.li line #59</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">audio_format</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_16.html"><font color="#008000">UINTEGER_16</font></a></dl><a name="chuck_size"><!-- --></a><hr><h3>chuck_size</h3><dl><dd><code>.../audio/sdl_mixer.li line #70</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">chuck_size</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="audio_s16"><!-- --></a><hr><h3>audio_s16</h3><dl><dd><code>.../audio/sdl_mixer.li line #72</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">audio_s16</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="audio_s8"><!-- --></a><hr><h3>audio_s8</h3><dl><dd><code>.../audio/sdl_mixer.li line #73</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">audio_s8</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mus_none"><!-- --></a><hr><h3>mus_none</h3><dl><dd><code>.../audio/sdl_mixer.li line #75</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mus_none</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mus_cmd"><!-- --></a><hr><h3>mus_cmd</h3><dl><dd><code>.../audio/sdl_mixer.li line #76</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mus_cmd</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mus_wav"><!-- --></a><hr><h3>mus_wav</h3><dl><dd><code>.../audio/sdl_mixer.li line #77</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mus_wav</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mus_mod"><!-- --></a><hr><h3>mus_mod</h3><dl><dd><code>.../audio/sdl_mixer.li line #78</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mus_mod</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mus_mid"><!-- --></a><hr><h3>mus_mid</h3><dl><dd><code>.../audio/sdl_mixer.li line #79</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mus_mid</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mus_ogg"><!-- --></a><hr><h3>mus_ogg</h3><dl><dd><code>.../audio/sdl_mixer.li line #80</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mus_ogg</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mus_mp3"><!-- --></a><hr><h3>mus_mp3</h3><dl><dd><code>.../audio/sdl_mixer.li line #81</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mus_mp3</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="mus_mp3_mad"><!-- --></a><hr><h3>mus_mp3_mad</h3><dl><dd><code>.../audio/sdl_mixer.li line #82</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">mus_mp3_mad</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="query_spec"><!-- --></a><hr><h3>query_spec</h3><dl><dd><code>.../audio/sdl_mixer.li line #87</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">query_spec</font></strong>&nbsp;:(&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>)</dl><a name="open_audio"><!-- --></a><hr><h3>open_audio</h3><dl><dd><code>.../audio/sdl_mixer.li line #102</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">open_audio</font></strong>&nbsp; (&nbsp;frequency&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;format&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;channels&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;chunksize&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) </dl><a name="load_wav"><!-- --></a><hr><h3>load_wav</h3><dl><dd><code>.../audio/sdl_mixer.li line #238</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">load_wav</font></strong>&nbsp; &nbsp;sound&nbsp;:&nbsp;<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> </dl><a name="play_channel"><!-- --></a><hr><h3>play_channel</h3><dl><dd><code>.../audio/sdl_mixer.li line #251</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">play_channel</font></strong>&nbsp; (&nbsp;channel&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;loop&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="halt_channel"><!-- --></a><hr><h3>halt_channel</h3><dl><dd><code>.../audio/sdl_mixer.li line #260</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">halt_channel</font></strong>&nbsp; &nbsp;ph_chan&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> </dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>extern DECLSPEC Mix_Music * SDLCALL Mix_LoadMUS(const char *file);
+</b></font></td></tr></tbody></table></dl><a name="load_music"><!-- --></a><hr><h3>load_music</h3><dl><dd><code>.../audio/sdl_mixer.li line #108</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">load_music</font></strong>&nbsp; &nbsp;file&nbsp;:&nbsp;<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> </dl><a name="play_music"><!-- --></a><hr><h3>play_music</h3><dl><dd><code>.../audio/sdl_mixer.li line #119</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">play_music</font></strong>&nbsp; &nbsp;nb&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> </dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>	Mix_HookMusicFinished(musicDone);
+</b></font></td></tr></tbody></table></dl><a name="hook_music_finished"><!-- --></a><hr><h3>hook_music_finished</h3><dl><dd><code>.../audio/sdl_mixer.li line #129</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">hook_music_finished</font></strong>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b> TODO: Mix_QuerySpec(&audio_rate, &audio_format, &audio_channels);
+</b></font></td></tr></tbody></table></dl><a name="allocate_channels"><!-- --></a><hr><h3>allocate_channels</h3><dl><dd><code>.../audio/sdl_mixer.li line #145</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">allocate_channels</font></strong>&nbsp; &nbsp;num&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> </dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>extern DECLSPEC int SDLCALL Mix_SetDistance(int channel, Uint8 distance);
+</b></font></td></tr></tbody></table></dl><a name="set_distance"><!-- --></a><hr><h3>set_distance</h3><dl><dd><code>.../audio/sdl_mixer.li line #179</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_distance</font></strong>&nbsp; (&nbsp;channel&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;distance&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) </dl><a name="volume"><!-- --></a><hr><h3>volume</h3><dl><dd><code>.../audio/sdl_mixer.li line #194</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">volume</font></strong>&nbsp; (&nbsp;channel&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;volume&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) </dl><a name="volume_music"><!-- --></a><hr><h3>volume_music</h3><dl><dd><code>.../audio/sdl_mixer.li line #204</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">volume_music</font></strong>&nbsp; &nbsp;volume&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> </dl><a name="halt_music"><!-- --></a><hr><h3>halt_music</h3><dl><dd><code>.../audio/sdl_mixer.li line #212</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">halt_music</font></strong>&nbsp;</dl><a name="free_music"><!-- --></a><hr><h3>free_music</h3><dl><dd><code>.../audio/sdl_mixer.li line #217</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">free_music</font></strong>&nbsp;</dl><a name="close_audio"><!-- --></a><hr><h3>close_audio</h3><dl><dd><code>.../audio/sdl_mixer.li line #222</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">close_audio</font></strong>&nbsp;
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_MOUSE.html b/lib/unstable/sdl-binding/docs/belinda/SDL_MOUSE.html
new file mode 100644
index 0000000..b1ee8ec
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_MOUSE.html
@@ -0,0 +1,41 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_MOUSE</h2><hr><strong>SDL Mouse handling</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Slot Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#get_state">get_state</a></b></code><dd> Retrieve the current state of the mouse.
+ The current button state is returned as a button bitmask, which can
+ be tested using the SDL_BUTTON(X) macros, and x and y are set to the
+ current mouse cursor position.  You can pass NULL for either x or y.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#get_relative_state">get_relative_state</a></b></code><dd> Retrieve the current state of the mouse.
+ The current button state is returned as a button bitmask, which can
+ be tested using the SDL_BUTTON(X) macros, and x and y are set to the
+ mouse deltas since the last call to SDL_GetRelativeMouseState().
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#warp">warp</a></b></code><dd> Set the position of the mouse cursor (generates a mouse motion event)
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#show_cursor">show_cursor</a></b></code><dd> Toggle whether or not the cursor is shown on the screen.
+ The cursor start displayed, but can be turned off.
+ <code><b><a href="#show_cursor">show_cursor</a></b></code> returns TRUE if the cursor was being displayed
+ before the call, or FALSE if it was not. You can query the current
+ state by passing a <em><b><font color="#000000">toggle</font></em></b> value of -1.
+</td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Detail slot</b></font></td></tr></tbody></table></dl><a name="get_state"><!-- --></a><hr><h3>get_state</h3><dl><dd><code>.../sdl_mouse.li line #31</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">get_state</font></strong>&nbsp;:(&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>)<dt><b><br>Description:</b></dt><dd> Retrieve the current state of the mouse.
+ The current button state is returned as a button bitmask, which can
+ be tested using the SDL_BUTTON(X) macros, and x and y are set to the
+ current mouse cursor position.  You can pass NULL for either x or y.
+</dd></dl><a name="get_relative_state"><!-- --></a><hr><h3>get_relative_state</h3><dl><dd><code>.../sdl_mouse.li line #42</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">get_relative_state</font></strong>&nbsp;:(&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>)<dt><b><br>Description:</b></dt><dd> Retrieve the current state of the mouse.
+ The current button state is returned as a button bitmask, which can
+ be tested using the SDL_BUTTON(X) macros, and x and y are set to the
+ mouse deltas since the last call to SDL_GetRelativeMouseState().
+</dd></dl><a name="warp"><!-- --></a><hr><h3>warp</h3><dl><dd><code>.../sdl_mouse.li line #53</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">warp</font></strong>&nbsp; (&nbsp;x&nbsp;:&nbsp;<a href="UINTEGER_16.html"><font color="#008000">UINTEGER_16</font></a>,&nbsp;y&nbsp;:&nbsp;<a href="UINTEGER_16.html"><font color="#008000">UINTEGER_16</font></a>) <dt><b><br>Description:</b></dt><dd> Set the position of the mouse cursor (generates a mouse motion event)
+</dd></dl><a name="show_cursor"><!-- --></a><hr><h3>show_cursor</h3><dl><dd><code>.../sdl_mouse.li line #59</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">show_cursor</font></strong>&nbsp; &nbsp;toggle&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Toggle whether or not the cursor is shown on the screen.
+ The cursor start displayed, but can be turned off.
+ <code><b><a href="#show_cursor">show_cursor</a></b></code> returns TRUE if the cursor was being displayed
+ before the call, or FALSE if it was not. You can query the current
+ state by passing a <em><b><font color="#000000">toggle</font></em></b> value of -1.
+</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_MUSIC.html b/lib/unstable/sdl-binding/docs/belinda/SDL_MUSIC.html
new file mode 100644
index 0000000..dfcc2cf
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_MUSIC.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_MUSIC</h2><hr><strong></strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent_any">parent_any</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Constructor Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#create">create</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Slot Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#make">make</a></b></code><dd></td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent_any"><!-- --></a><hr><h3>parent_any</h3><dl><dd><code>.../audio/sdl_music.li line #31</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">+ </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent_any</font></strong>&nbsp;:&nbsp;<a href="ANY.html"><font color="#008000">ANY</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Constructor Detail</b></font></td></tr></tbody></table></dl><a name="create"><!-- --></a><hr><h3>create</h3><dl><dd><code>.../audio/sdl_music.li line #35</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">create</font></strong>&nbsp;:&nbsp;<font color="#008000">SELF</font></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Detail slot</b></font></td></tr></tbody></table></dl><a name="make"><!-- --></a><hr><h3>make</h3><dl><dd><code>.../audio/sdl_music.li line #42</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">make</font></strong>&nbsp;
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_PALETTE.html b/lib/unstable/sdl-binding/docs/belinda/SDL_PALETTE.html
new file mode 100644
index 0000000..620c578
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_PALETTE.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_PALETTE</h2><hr><strong>Pixel format</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent">parent</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent"><!-- --></a><hr><h3>parent</h3><dl><dd><code>.../types/sdl_palette.li line #32</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">+ </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent</font></strong>&nbsp;:&nbsp;<a href="OBJECT.html"><font color="#008000">OBJECT</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_PIXEL_FORMAT.html b/lib/unstable/sdl-binding/docs/belinda/SDL_PIXEL_FORMAT.html
new file mode 100644
index 0000000..de92df3
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_PIXEL_FORMAT.html
@@ -0,0 +1,19 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_PIXEL_FORMAT</h2><hr><strong>Pixel format</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent">parent</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>  - palette: SDL_PALETTE        <- `@Self->palette`:SDL;
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#bits_per_pixel">bits_per_pixel</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#bytes_per_pixel">bytes_per_pixel</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Slot Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#rloss">rloss</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#gloss">gloss</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#bloss">bloss</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#aloss">aloss</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#rshift">rshift</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#gshift">gshift</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#bshift">bshift</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#ashift">ashift</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#rmask">rmask</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#gmask">gmask</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#bmask">bmask</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#amask">amask</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#colorkey">colorkey</a></b></code><dd> RGB color key information.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#alpha">alpha</a></b></code><dd> Alpha value information (per-surface alpha).
+</td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent"><!-- --></a><hr><h3>parent</h3><dl><dd><code>.../types/sdl_pixel_format.li line #32</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">+ </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent</font></strong>&nbsp;:&nbsp;<a href="OBJECT.html"><font color="#008000">OBJECT</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>  - palette: SDL_PALETTE        <- `@Self->palette`:SDL;
+</b></font></td></tr></tbody></table></dl><a name="bits_per_pixel"><!-- --></a><hr><h3>bits_per_pixel</h3><dl><dd><code>.../types/sdl_pixel_format.li line #37</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">bits_per_pixel</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="bytes_per_pixel"><!-- --></a><hr><h3>bytes_per_pixel</h3><dl><dd><code>.../types/sdl_pixel_format.li line #38</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">bytes_per_pixel</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Detail slot</b></font></td></tr></tbody></table></dl><a name="rloss"><!-- --></a><hr><h3>rloss</h3><dl><dd><code>.../types/sdl_pixel_format.li line #44</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">rloss</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="gloss"><!-- --></a><hr><h3>gloss</h3><dl><dd><code>.../types/sdl_pixel_format.li line #45</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">gloss</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="bloss"><!-- --></a><hr><h3>bloss</h3><dl><dd><code>.../types/sdl_pixel_format.li line #46</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">bloss</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="aloss"><!-- --></a><hr><h3>aloss</h3><dl><dd><code>.../types/sdl_pixel_format.li line #47</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">aloss</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="rshift"><!-- --></a><hr><h3>rshift</h3><dl><dd><code>.../types/sdl_pixel_format.li line #52</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">rshift</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="gshift"><!-- --></a><hr><h3>gshift</h3><dl><dd><code>.../types/sdl_pixel_format.li line #53</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">gshift</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="bshift"><!-- --></a><hr><h3>bshift</h3><dl><dd><code>.../types/sdl_pixel_format.li line #54</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">bshift</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="ashift"><!-- --></a><hr><h3>ashift</h3><dl><dd><code>.../types/sdl_pixel_format.li line #55</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">ashift</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="rmask"><!-- --></a><hr><h3>rmask</h3><dl><dd><code>.../types/sdl_pixel_format.li line #61</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">rmask</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="gmask"><!-- --></a><hr><h3>gmask</h3><dl><dd><code>.../types/sdl_pixel_format.li line #62</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">gmask</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="bmask"><!-- --></a><hr><h3>bmask</h3><dl><dd><code>.../types/sdl_pixel_format.li line #63</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">bmask</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="amask"><!-- --></a><hr><h3>amask</h3><dl><dd><code>.../types/sdl_pixel_format.li line #64</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">amask</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a></dl><a name="colorkey"><!-- --></a><hr><h3>colorkey</h3><dl><dd><code>.../types/sdl_pixel_format.li line #66</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">colorkey</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> RGB color key information.
+</dd></dl><a name="alpha"><!-- --></a><hr><h3>alpha</h3><dl><dd><code>.../types/sdl_pixel_format.li line #67</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">alpha</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><dt><b><br>Description:</b></dt><dd> Alpha value information (per-surface alpha).
+</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_RECT.html b/lib/unstable/sdl-binding/docs/belinda/SDL_RECT.html
new file mode 100644
index 0000000..10983c4
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_RECT.html
@@ -0,0 +1,39 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_RECT</h2><hr><strong>SDL Rectangle structure</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent_object">parent_object</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Constructor Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#create">create</a></b></code><dd>
+ GET:<br>
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Slot Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#get_all">get_all</a></b></code><dd> Return a vector with 4 values (x,y,w,h).
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#x">x</a></b></code><dd> Return the <em><b><font color="#000000">X</font></em></b> position value.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#y">y</a></b></code><dd> Return the <em><b><font color="#000000">Y</font></em></b> position value.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#w">w</a></b></code><dd> Return the <em><b><font color="#000000">Width</font></em></b> size value.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#h">h</a></b></code><dd> Return the <em><b><font color="#000000">Height</font></em></b> size value.<br>
+ SET: <br>
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_all">set_all</a></b></code><dd> Set all values (x,y,w,h).
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_x">set_x</a></b></code><dd> Set the <em><b><font color="#000000">X</font></em></b> position.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_y">set_y</a></b></code><dd> Set the <em><b><font color="#000000">Y</font></em></b> position.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_w">set_w</a></b></code><dd> Set the <em><b><font color="#000000">Width</font></em></b> size.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_h">set_h</a></b></code><dd> Set the <em><b><font color="#000000">Height</font></em></b> size.
+</td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent_object"><!-- --></a><hr><h3>parent_object</h3><dl><dd><code>.../types/sdl_rect.li line #32</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">+ </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent_object</font></strong>&nbsp;:&nbsp;<a href="OBJECT.html"><font color="#008000">OBJECT</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Constructor Detail</b></font></td></tr></tbody></table></dl><a name="create"><!-- --></a><hr><h3>create</h3><dl><dd><code>.../types/sdl_rect.li line #36</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">create</font></strong>&nbsp;:&nbsp;<a href="SDL_RECT.html"><font color="#008000">SDL_RECT</font></a><dt><b><br>Description:</b></dt><dd>
+ GET:<br>
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Detail slot</b></font></td></tr></tbody></table></dl><a name="get_all"><!-- --></a><hr><h3>get_all</h3><dl><dd><code>.../types/sdl_rect.li line #41</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">get_all</font></strong>&nbsp;:(&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>)<dt><b><br>Description:</b></dt><dd> Return a vector with 4 values (x,y,w,h).
+</dd></dl><a name="x"><!-- --></a><hr><h3>x</h3><dl><dd><code>.../types/sdl_rect.li line #47</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">x</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Return the <em><b><font color="#000000">X</font></em></b> position value.
+</dd></dl><a name="y"><!-- --></a><hr><h3>y</h3><dl><dd><code>.../types/sdl_rect.li line #48</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">y</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Return the <em><b><font color="#000000">Y</font></em></b> position value.
+</dd></dl><a name="w"><!-- --></a><hr><h3>w</h3><dl><dd><code>.../types/sdl_rect.li line #49</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">w</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Return the <em><b><font color="#000000">Width</font></em></b> size value.
+</dd></dl><a name="h"><!-- --></a><hr><h3>h</h3><dl><dd><code>.../types/sdl_rect.li line #50</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">h</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Return the <em><b><font color="#000000">Height</font></em></b> size value.<br>
+ SET: <br>
+</dd></dl><a name="set_all"><!-- --></a><hr><h3>set_all</h3><dl><dd><code>.../types/sdl_rect.li line #56</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_all</font></strong>&nbsp; (&nbsp;x&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;y&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;w&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;h&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <dt><b><br>Description:</b></dt><dd> Set all values (x,y,w,h).
+</dd></dl><a name="set_x"><!-- --></a><hr><h3>set_x</h3><dl><dd><code>.../types/sdl_rect.li line #65</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_x</font></strong>&nbsp; &nbsp;value&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <dt><b><br>Description:</b></dt><dd> Set the <em><b><font color="#000000">X</font></em></b> position.
+</dd></dl><a name="set_y"><!-- --></a><hr><h3>set_y</h3><dl><dd><code>.../types/sdl_rect.li line #72</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_y</font></strong>&nbsp; &nbsp;value&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <dt><b><br>Description:</b></dt><dd> Set the <em><b><font color="#000000">Y</font></em></b> position.
+</dd></dl><a name="set_w"><!-- --></a><hr><h3>set_w</h3><dl><dd><code>.../types/sdl_rect.li line #78</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_w</font></strong>&nbsp; &nbsp;value&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <dt><b><br>Description:</b></dt><dd> Set the <em><b><font color="#000000">Width</font></em></b> size.
+</dd></dl><a name="set_h"><!-- --></a><hr><h3>set_h</h3><dl><dd><code>.../types/sdl_rect.li line #84</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_h</font></strong>&nbsp; &nbsp;value&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <dt><b><br>Description:</b></dt><dd> Set the <em><b><font color="#000000">Height</font></em></b> size.
+</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_ROTOZOOM.html b/lib/unstable/sdl-binding/docs/belinda/SDL_ROTOZOOM.html
new file mode 100644
index 0000000..9fcc71f
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_ROTOZOOM.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_ROTOZOOM</h2><hr><strong>SDL Rotozoom library</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent">parent</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Slot Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#rotozoom_surface">rotozoom_surface</a></b></code><dd></td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent"><!-- --></a><hr><h3>parent</h3><dl><dd><code>.../sdl_rotozoom.li line #35</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">+ </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent</font></strong>&nbsp;:&nbsp;<a href="OBJECT.html"><font color="#008000">OBJECT</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Detail slot</b></font></td></tr></tbody></table></dl><a name="rotozoom_surface"><!-- --></a><hr><h3>rotozoom_surface</h3><dl><dd><code>.../sdl_rotozoom.li line #39</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">rotozoom_surface</font></strong>&nbsp; (&nbsp;image&nbsp;:&nbsp;<a href="SDL_SURFACE_T.html"><font color="#008000">SDL_SURFACE_T</font></a>,&nbsp;angle&nbsp;:&nbsp;<a href="REAL_64.html"><font color="#008000">REAL_64</font></a>,&nbsp;zoom&nbsp;:&nbsp;<a href="REAL_64.html"><font color="#008000">REAL_64</font></a>,&nbsp;smooth&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :&nbsp;<a href="SDL_SURFACE_T.html"><font color="#008000">SDL_SURFACE_T</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_SETTINGS.html b/lib/unstable/sdl-binding/docs/belinda/SDL_SETTINGS.html
new file mode 100644
index 0000000..551ce41
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_SETTINGS.html
@@ -0,0 +1,43 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_SETTINGS</h2><hr><strong>Application and Window global settings</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent">parent</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Slot Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#width">width</a></b></code><dd> Screen width.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#height">height</a></b></code><dd> Screen height.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#bits">bits</a></b></code><dd> Screen color 16,24,32 bits.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#title">title</a></b></code><dd> Window title.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#video_mode">video_mode</a></b></code><dd> Setted video mode.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#fullscreen">fullscreen</a></b></code><dd> Is application in fullscreen mode.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#showcursor">showcursor</a></b></code><dd> Is the cursor displayed.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#init_timer">init_timer</a></b></code><dd> Timer has been initialized.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#init_audio">init_audio</a></b></code><dd> Audio has been initialized.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#init_video">init_video</a></b></code><dd> Video has been initialized.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#init_cdrom">init_cdrom</a></b></code><dd> Cdrom has been initialized.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#init_joystick">init_joystick</a></b></code><dd> Joystick has been initialized.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#init_everything">init_everything</a></b></code><dd> All above
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#init_no_parachute">init_no_parachute</a></b></code><dd> Prevents from catching fatal signals
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#init_event_thread">init_event_thread</a></b></code><dd> Runs the event manager in a separated thread
+</td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent"><!-- --></a><hr><h3>parent</h3><dl><dd><code>.../low_level/sdl_settings.li line #32</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent</font></strong>&nbsp;:&nbsp;<a href="OBJECT.html"><font color="#008000">OBJECT</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Detail slot</b></font></td></tr></tbody></table></dl><a name="width"><!-- --></a><hr><h3>width</h3><dl><dd><code>.../low_level/sdl_settings.li line #36</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">width</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Screen width.
+</dd></dl><a name="height"><!-- --></a><hr><h3>height</h3><dl><dd><code>.../low_level/sdl_settings.li line #37</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">height</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Screen height.
+</dd></dl><a name="bits"><!-- --></a><hr><h3>bits</h3><dl><dd><code>.../low_level/sdl_settings.li line #38</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">bits</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Screen color 16,24,32 bits.
+</dd></dl><a name="title"><!-- --></a><hr><h3>title</h3><dl><dd><code>.../low_level/sdl_settings.li line #39</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">title</font></strong>&nbsp;:&nbsp;<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a><dt><b><br>Description:</b></dt><dd> Window title.
+</dd></dl><a name="video_mode"><!-- --></a><hr><h3>video_mode</h3><dl><dd><code>.../low_level/sdl_settings.li line #40</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">video_mode</font></strong>&nbsp;:&nbsp;<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a><dt><b><br>Description:</b></dt><dd> Setted video mode.
+</dd></dl><a name="fullscreen"><!-- --></a><hr><h3>fullscreen</h3><dl><dd><code>.../low_level/sdl_settings.li line #41</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">fullscreen</font></strong>&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Is application in fullscreen mode.
+</dd></dl><a name="showcursor"><!-- --></a><hr><h3>showcursor</h3><dl><dd><code>.../low_level/sdl_settings.li line #42</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">showcursor</font></strong>&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Is the cursor displayed.
+</dd></dl><a name="init_timer"><!-- --></a><hr><h3>init_timer</h3><dl><dd><code>.../low_level/sdl_settings.li line #43</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">init_timer</font></strong>&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Timer has been initialized.
+</dd></dl><a name="init_audio"><!-- --></a><hr><h3>init_audio</h3><dl><dd><code>.../low_level/sdl_settings.li line #44</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">init_audio</font></strong>&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Audio has been initialized.
+</dd></dl><a name="init_video"><!-- --></a><hr><h3>init_video</h3><dl><dd><code>.../low_level/sdl_settings.li line #45</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">init_video</font></strong>&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Video has been initialized.
+</dd></dl><a name="init_cdrom"><!-- --></a><hr><h3>init_cdrom</h3><dl><dd><code>.../low_level/sdl_settings.li line #46</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">init_cdrom</font></strong>&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Cdrom has been initialized.
+</dd></dl><a name="init_joystick"><!-- --></a><hr><h3>init_joystick</h3><dl><dd><code>.../low_level/sdl_settings.li line #47</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">init_joystick</font></strong>&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Joystick has been initialized.
+</dd></dl><a name="init_everything"><!-- --></a><hr><h3>init_everything</h3><dl><dd><code>.../low_level/sdl_settings.li line #48</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">init_everything</font></strong>&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> All above
+</dd></dl><a name="init_no_parachute"><!-- --></a><hr><h3>init_no_parachute</h3><dl><dd><code>.../low_level/sdl_settings.li line #49</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">init_no_parachute</font></strong>&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Prevents from catching fatal signals
+</dd></dl><a name="init_event_thread"><!-- --></a><hr><h3>init_event_thread</h3><dl><dd><code>.../low_level/sdl_settings.li line #50</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">init_event_thread</font></strong>&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Runs the event manager in a separated thread
+</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_SURFACE.html b/lib/unstable/sdl-binding/docs/belinda/SDL_SURFACE.html
new file mode 100644
index 0000000..afc689e
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_SURFACE.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_SURFACE</h2><hr><strong>SDL Surface struct pointer</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent_object">parent_object</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Constructor Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#create">create</a></b></code><dd> Create the SDL_Surface structure
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#create_from_bmp">create_from_bmp</a></b></code><dd> Load a BMP file with path+name (ie. /data/image.bmp).
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#create_from_image">create_from_image</a></b></code><dd> Load a BMP file with path+name (ie. /data/image.bmp).
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#create_rgb_surface with_mask">create_rgb_surface with_mask</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Slot Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#swsurface">swsurface</a></b></code><dd> Surface is in system memory 
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#hwsurface">hwsurface</a></b></code><dd> Surface is in video memory
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#asyncblit">asyncblit</a></b></code><dd> Use asynchronous blits if possible </td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#logpal">logpal</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#physpal">physpal</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b><br><br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#srccolorkey">srccolorkey</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#rleaccel">rleaccel</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#flip">flip</a></b></code><dd> On hardware that supports double-buffering, this function sets up a flip
+ and returns. The hardware will wait for vertical retrace, and then swap
+ video buffers before the next video surface blit or lock will return.  On
+ hardware that doesn not support double-buffering, this is equivalent to
+ calling <em><b><font color="#000000">SDL_UpdateRect(screen, 0, 0, 0, 0)</font></em></b>; The <em><b><font color="#000000">doublebuf</font></em></b> flag must
+ have been passed to <em><b><font color="#000000">set_video_mode</font></em></b> when setting the video mode for this
+ function to perform hardware flipping. This function returns 0 if
+ successful, or -1 if there was an error.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#blit_surface">blit_surface</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#blit_surface_no_src">blit_surface_no_src</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#blit_surface_no_src_no_dst">blit_surface_no_src_no_dst</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#fill_rect">fill_rect</a></b></code><dd> This function performs a fast fill of the given rectangle with <em><b><font color="#000000">color</font></em></b>
+ The given rectangle is clipped to the destination surface clip area
+ and the final fill rectangle is saved in the passed in pointer.
+ This function returns 0 on success, or -1 on error.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#fill_rect_no_dst">fill_rect_no_dst</a></b></code><dd> If 'dstrect' is NULL, the whole surface will be filled with <em><b><font color="#000000">color</font></em></b>
+ This function performs a fast fill of the given rectangle with <em><b><font color="#000000">color</font></em></b>.
+ The color should be a pixel of the format used by the surface, and 
+ can be generated by the <em><b><font color="#000000">SDL.map_rgb</font></em></b> function.
+ This function returns 0 on success, or -1 on error.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#line_from to color">line_from to color</a></b></code><dd> Draw a line from (x1,y1) to (x2,y2) color <em><b><font color="#000000">col</font></em></b> into screen
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_palette">set_palette</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_palette_pointer">set_palette_pointer</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#update_rect">update_rect</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#update_rects">update_rects</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_color_key">set_color_key</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#convert_surface">convert_surface</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#display_format">display_format</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ INTERNAL SURFACE ACCESS<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#w">w</a></b></code><dd> Surface width. (READ ONLY)
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#h">h</a></b></code><dd> Surface height (READ_ONLY)
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#pitch">pitch</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#format_palette_ncolors">format_palette_ncolors</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#flags">flags</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#load">load</a></b></code><dd> Load an image.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#pixel_format">pixel_format</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#pixels">pixels</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#format_palette_colors">format_palette_colors</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b> TODO FAST_ARRAY
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#format_palette">format_palette</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#format">format</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ LOCKING/UNLOCKING<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#lock">lock</a></b></code><dd> <code><b><a href="#lock">lock</a></b></code> sets up a surface for directly accessing the pixels.  Between calls
+ to <code><b><a href="#lock">lock</a></b></code>/<code><b><a href="#unlock">unlock</a></b></code>, you can write to and read from <em><b><font color="#000000">surface.pixels</font></em></b>, using
+ the pixel format stored in <em><b><font color="#000000">surface.format</font></em></b>.  Once you are done accessing
+ the surface, you should use <code><b><a href="#unlock">unlock</a></b></code> to release it.<br>
+ Not all surfaces require locking. If <em><b><font color="#000000">MUSTLOCK(surface)</font></em></b> evaluates to
+ 0, then you can read and write to the surface at any time, and the pixel
+ format of the surface will not change.  In particular, if the
+ <code><b><a href="#hwsurface">hwsurface</a></b></code> flag is not given when calling <em><b><font color="#000000">set_video_mode</font></em></b>, you will not
+ need to lock the display surface before accessing it.<br>
+ No operating system or library calls should be made between lock/unlock
+ pairs, as critical system locks may be held during this time.<br>
+ It returns 0, or -1 if the surface couldn't be locked.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#unlock">unlock</a></b></code><dd></td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent_object"><!-- --></a><hr><h3>parent_object</h3><dl><dd><code>.../sdl_surface.li line #36</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">+ </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent_object</font></strong>&nbsp;:&nbsp;<a href="OBJECT.html"><font color="#008000">OBJECT</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Constructor Detail</b></font></td></tr></tbody></table></dl><a name="create"><!-- --></a><hr><h3>create</h3><dl><dd><code>.../sdl_surface.li line #65</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">create</font></strong>&nbsp;:&nbsp;<font color="#008000">SELF</font><dt><b><br>Description:</b></dt><dd> Create the SDL_Surface structure
+</dd></dl><a name="create_from_bmp"><!-- --></a><hr><h3>create_from_bmp</h3><dl><dd><code>.../sdl_surface.li line #67</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">create_from_bmp</font></strong>&nbsp; &nbsp;filename&nbsp;:&nbsp;<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> :&nbsp;<font color="#008000">SELF</font><dt><b><br>Description:</b></dt><dd> Load a BMP file with path+name (ie. /data/image.bmp).
+</dd></dl><a name="create_from_image"><!-- --></a><hr><h3>create_from_image</h3><dl><dd><code>.../sdl_surface.li line #78</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">create_from_image</font></strong>&nbsp; &nbsp;filename&nbsp;:&nbsp;<a href="ABSTRACT_STRING.html"><font color="#008000">ABSTRACT_STRING</font></a> :&nbsp;<font color="#008000">SELF</font><dt><b><br>Description:</b></dt><dd> Load a BMP file with path+name (ie. /data/image.bmp).
+</dd></dl><a name="create_rgb_surface with_mask"><!-- --></a><hr><h3>create_rgb_surface with_mask</h3><dl><dd><code>.../sdl_surface.li line #86</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">create_rgb_surface</font></strong>&nbsp; (&nbsp;flags&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>,&nbsp;width&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;height&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;depth&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) &nbsp;<strong><font color="#0000FF">with_mask</font></strong>&nbsp; (&nbsp;rmask&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>,&nbsp;gmask&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>,&nbsp;bmask&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>,&nbsp;amask&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) :&nbsp;<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Detail slot</b></font></td></tr></tbody></table></dl><a name="swsurface"><!-- --></a><hr><h3>swsurface</h3><dl><dd><code>.../sdl_surface.li line #40</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">swsurface</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Surface is in system memory 
+</dd></dl><a name="hwsurface"><!-- --></a><hr><h3>hwsurface</h3><dl><dd><code>.../sdl_surface.li line #41</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">hwsurface</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Surface is in video memory
+</dd></dl><a name="asyncblit"><!-- --></a><hr><h3>asyncblit</h3><dl><dd><code>.../sdl_surface.li line #42</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">asyncblit</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Use asynchronous blits if possible </dd><dd>br_sdl_palette_flagsbr</dd></dl><a name="logpal"><!-- --></a><hr><h3>logpal</h3><dl><dd><code>.../sdl_surface.li line #46</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">logpal</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="physpal"><!-- --></a><hr><h3>physpal</h3><dl><dd><code>.../sdl_surface.li line #47</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">physpal</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b><br><br>
+</b></font></td></tr></tbody></table></dl><a name="srccolorkey"><!-- --></a><hr><h3>srccolorkey</h3><dl><dd><code>.../sdl_surface.li line #52</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">srccolorkey</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="rleaccel"><!-- --></a><hr><h3>rleaccel</h3><dl><dd><code>.../sdl_surface.li line #53</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">rleaccel</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="flip"><!-- --></a><hr><h3>flip</h3><dl><dd><code>.../sdl_surface.li line #158</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">flip</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> On hardware that supports double-buffering, this function sets up a flip
+ and returns. The hardware will wait for vertical retrace, and then swap
+ video buffers before the next video surface blit or lock will return.  On
+ hardware that doesn not support double-buffering, this is equivalent to
+ calling <em><b><font color="#000000">SDL_UpdateRect(screen, 0, 0, 0, 0)</font></em></b>; The <em><b><font color="#000000">doublebuf</font></em></b> flag must
+ have been passed to <em><b><font color="#000000">set_video_mode</font></em></b> when setting the video mode for this
+ function to perform hardware flipping. This function returns 0 if
+ successful, or -1 if there was an error.
+</dd></dl><a name="blit_surface"><!-- --></a><hr><h3>blit_surface</h3><dl><dd><code>.../sdl_surface.li line #175</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">blit_surface</font></strong>&nbsp; (&nbsp;src&nbsp;:&nbsp;<a href="SDL_RECT.html"><font color="#008000">SDL_RECT</font></a>,&nbsp;screen&nbsp;:&nbsp;<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a>,&nbsp;dst&nbsp;:&nbsp;<a href="SDL_RECT.html"><font color="#008000">SDL_RECT</font></a>) </dl><a name="blit_surface_no_src"><!-- --></a><hr><h3>blit_surface_no_src</h3><dl><dd><code>.../sdl_surface.li line #180</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">blit_surface_no_src</font></strong>&nbsp; (&nbsp;screen&nbsp;:&nbsp;<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a>,&nbsp;dst&nbsp;:&nbsp;<a href="SDL_RECT.html"><font color="#008000">SDL_RECT</font></a>) </dl><a name="blit_surface_no_src_no_dst"><!-- --></a><hr><h3>blit_surface_no_src_no_dst</h3><dl><dd><code>.../sdl_surface.li line #185</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">blit_surface_no_src_no_dst</font></strong>&nbsp; &nbsp;screen&nbsp;:&nbsp;<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a> </dl><a name="fill_rect"><!-- --></a><hr><h3>fill_rect</h3><dl><dd><code>.../sdl_surface.li line #194</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">fill_rect</font></strong>&nbsp; (&nbsp;dst&nbsp;:&nbsp;<a href="SDL_RECT.html"><font color="#008000">SDL_RECT</font></a>,&nbsp;color&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) <dt><b><br>Description:</b></dt><dd> This function performs a fast fill of the given rectangle with <em><b><font color="#000000">color</font></em></b>
+ The given rectangle is clipped to the destination surface clip area
+ and the final fill rectangle is saved in the passed in pointer.
+ This function returns 0 on success, or -1 on error.
+</dd></dl><a name="fill_rect_no_dst"><!-- --></a><hr><h3>fill_rect_no_dst</h3><dl><dd><code>.../sdl_surface.li line #203</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">fill_rect_no_dst</font></strong>&nbsp; &nbsp;color&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a> <dt><b><br>Description:</b></dt><dd> If 'dstrect' is NULL, the whole surface will be filled with <em><b><font color="#000000">color</font></em></b>
+ This function performs a fast fill of the given rectangle with <em><b><font color="#000000">color</font></em></b>.
+ The color should be a pixel of the format used by the surface, and 
+ can be generated by the <em><b><font color="#000000">SDL.map_rgb</font></em></b> function.
+ This function returns 0 on success, or -1 on error.
+</dd></dl><a name="line_from to color"><!-- --></a><hr><h3>line_from to color</h3><dl><dd><code>.../sdl_surface.li line #214</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">line_from</font></strong>&nbsp; (&nbsp;x1&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;y1&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) &nbsp;<strong><font color="#0000FF">to</font></strong>&nbsp; (&nbsp;x2&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;y2&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) &nbsp;<strong><font color="#0000FF">color</font></strong>&nbsp; &nbsp;col&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a> <dt><b><br>Description:</b></dt><dd> Draw a line from (x1,y1) to (x2,y2) color <em><b><font color="#000000">col</font></em></b> into screen
+</dd></dl><a name="set_palette"><!-- --></a><hr><h3>set_palette</h3><dl><dd><code>.../sdl_surface.li line #252</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_palette</font></strong>&nbsp; (&nbsp;flags&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;colors&nbsp;:&nbsp;<a href="FAST_ARRAY.html"><font color="#008000">FAST_ARRAY</font></a>(&nbsp;<a href="SDL_COLOR_HACK.html"><font color="#008000">SDL_COLOR_HACK</font></a>),&nbsp;first_color&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;ncolors&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) </dl><a name="set_palette_pointer"><!-- --></a><hr><h3>set_palette_pointer</h3><dl><dd><code>.../sdl_surface.li line #260</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_palette_pointer</font></strong>&nbsp; (&nbsp;flags&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;colors&nbsp;:&nbsp;<a href="FAST_ARRAY.html"><font color="#008000">FAST_ARRAY</font></a>(&nbsp;<a href="SDL_COLOR_HACK.html"><font color="#008000">SDL_COLOR_HACK</font></a>),&nbsp;first_color&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;ncolors&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) </dl><a name="update_rect"><!-- --></a><hr><h3>update_rect</h3><dl><dd><code>.../sdl_surface.li line #266</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">update_rect</font></strong>&nbsp; (&nbsp;x&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;y&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;w&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>,&nbsp;h&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) </dl><a name="update_rects"><!-- --></a><hr><h3>update_rects</h3><dl><dd><code>.../sdl_surface.li line #271</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">update_rects</font></strong>&nbsp; (&nbsp;x&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;r&nbsp;:&nbsp;<a href="SDL_RECT.html"><font color="#008000">SDL_RECT</font></a>) </dl><a name="set_color_key"><!-- --></a><hr><h3>set_color_key</h3><dl><dd><code>.../sdl_surface.li line #276</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_color_key</font></strong>&nbsp; (&nbsp;flag&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>,&nbsp;key&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) </dl><a name="convert_surface"><!-- --></a><hr><h3>convert_surface</h3><dl><dd><code>.../sdl_surface.li line #284</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">convert_surface</font></strong>&nbsp; (&nbsp;format&nbsp;:&nbsp;<a href="NATIVE_ARRAY.html"><font color="#008000">NATIVE_ARRAY</font></a>(&nbsp;<a href="SDL_PIXEL_FORMAT.html"><font color="#008000">SDL_PIXEL_FORMAT</font></a>),&nbsp;flags&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) :&nbsp;<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a></dl><a name="display_format"><!-- --></a><hr><h3>display_format</h3><dl><dd><code>.../sdl_surface.li line #290</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">display_format</font></strong>&nbsp;:&nbsp;<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ INTERNAL SURFACE ACCESS<br>
+</b></font></td></tr></tbody></table></dl><a name="w"><!-- --></a><hr><h3>w</h3><dl><dd><code>.../sdl_surface.li line #59</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">w</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Surface width. (READ ONLY)
+</dd></dl><a name="h"><!-- --></a><hr><h3>h</h3><dl><dd><code>.../sdl_surface.li line #60</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">h</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Surface height (READ_ONLY)
+</dd></dl><a name="pitch"><!-- --></a><hr><h3>pitch</h3><dl><dd><code>.../sdl_surface.li line #61</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">pitch</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="format_palette_ncolors"><!-- --></a><hr><h3>format_palette_ncolors</h3><dl><dd><code>.../sdl_surface.li line #62</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">format_palette_ncolors</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="flags"><!-- --></a><hr><h3>flags</h3><dl><dd><code>.../sdl_surface.li line #63</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">flags</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a></dl><a name="load"><!-- --></a><hr><h3>load</h3><dl><dd><code>.../sdl_surface.li line #97</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">load</font></strong>&nbsp; &nbsp;filename&nbsp;:&nbsp;<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <dt><b><br>Description:</b></dt><dd> Load an image.
+</dd></dl><a name="pixel_format"><!-- --></a><hr><h3>pixel_format</h3><dl><dd><code>.../sdl_surface.li line #104</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">pixel_format</font></strong>&nbsp;:&nbsp;<a href="SDL_PIXEL_FORMAT.html"><font color="#008000">SDL_PIXEL_FORMAT</font></a></dl><a name="pixels"><!-- --></a><hr><h3>pixels</h3><dl><dd><code>.../sdl_surface.li line #114</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">pixels</font></strong>&nbsp;:&nbsp;<a href="FAST_ARRAY.html"><font color="#008000">FAST_ARRAY</font></a>(&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>)</dl><a name="format_palette_colors"><!-- --></a><hr><h3>format_palette_colors</h3><dl><dd><code>.../sdl_surface.li line #123</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">format_palette_colors</font></strong>&nbsp;:&nbsp;<a href="FAST_ARRAY.html"><font color="#008000">FAST_ARRAY</font></a>(&nbsp;<a href="SDL_COLOR_HACK.html"><font color="#008000">SDL_COLOR_HACK</font></a>)</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b> TODO FAST_ARRAY
+</b></font></td></tr></tbody></table></dl><a name="format_palette"><!-- --></a><hr><h3>format_palette</h3><dl><dd><code>.../sdl_surface.li line #142</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">format_palette</font></strong>&nbsp;:&nbsp;<a href="NATIVE_ARRAY.html"><font color="#008000">NATIVE_ARRAY</font></a>(&nbsp;<a href="SDL_PALETTE.html"><font color="#008000">SDL_PALETTE</font></a>)</dl><a name="format"><!-- --></a><hr><h3>format</h3><dl><dd><code>.../sdl_surface.li line #148</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">format</font></strong>&nbsp;:&nbsp;<a href="NATIVE_ARRAY.html"><font color="#008000">NATIVE_ARRAY</font></a>(&nbsp;<a href="SDL_PIXEL_FORMAT.html"><font color="#008000">SDL_PIXEL_FORMAT</font></a>)</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ LOCKING/UNLOCKING<br>
+</b></font></td></tr></tbody></table></dl><a name="lock"><!-- --></a><hr><h3>lock</h3><dl><dd><code>.../sdl_surface.li line #224</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">lock</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> <code><b><a href="#lock">lock</a></b></code> sets up a surface for directly accessing the pixels.  Between calls
+ to <code><b><a href="#lock">lock</a></b></code>/<code><b><a href="#unlock">unlock</a></b></code>, you can write to and read from <em><b><font color="#000000">surface.pixels</font></em></b>, using
+ the pixel format stored in <em><b><font color="#000000">surface.format</font></em></b>.  Once you are done accessing
+ the surface, you should use <code><b><a href="#unlock">unlock</a></b></code> to release it.<br>
+ Not all surfaces require locking. If <em><b><font color="#000000">MUSTLOCK(surface)</font></em></b> evaluates to
+ 0, then you can read and write to the surface at any time, and the pixel
+ format of the surface will not change.  In particular, if the
+ <code><b><a href="#hwsurface">hwsurface</a></b></code> flag is not given when calling <em><b><font color="#000000">set_video_mode</font></em></b>, you will not
+ need to lock the display surface before accessing it.<br>
+ No operating system or library calls should be made between lock/unlock
+ pairs, as critical system locks may be held during this time.<br>
+ It returns 0, or -1 if the surface couldn't be locked.
+</dd></dl><a name="unlock"><!-- --></a><hr><h3>unlock</h3><dl><dd><code>.../sdl_surface.li line #244</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">unlock</font></strong>&nbsp;
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_SURFACET.html b/lib/unstable/sdl-binding/docs/belinda/SDL_SURFACET.html
new file mode 100644
index 0000000..0f576d2
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_SURFACET.html
@@ -0,0 +1,45 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_SURFACET</h2><hr><strong>SDL Surface struct pointer</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent_object">parent_object</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Constructor Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#create">create</a></b></code><dd> Create the SDL_Surface structure
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#create_with">create_with</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Slot Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#make">make</a></b></code><dd>
+ LOAD images:<br>
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#load_bmp">load_bmp</a></b></code><dd> Load a BMP file with path+name (ie. /data/image.bmp).
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#load">load</a></b></code><dd> Load an image.
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ INTERNAL:<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#value">value</a></b></code><dd> Don't use it unless you know what you are doing
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ TEST:<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#is_null">is_null</a></b></code><dd> Return <em><b><font color="#000000">TRUE</font></em></b> if no image loaded
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#is_not_null">is_not_null</a></b></code><dd> Return <em><b><font color="#000000">TRUE</font></em></b> if no image loaded
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ SURFACE information:<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#w">w</a></b></code><dd> Surface width. (READ ONLY)
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#h">h</a></b></code><dd> Surface height (READ_ONLY)
+</td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent_object"><!-- --></a><hr><h3>parent_object</h3><dl><dd><code>.../types/sdl_surfacet.li line #31</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">+ </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent_object</font></strong>&nbsp;:&nbsp;<a href="OBJECT.html"><font color="#008000">OBJECT</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Constructor Detail</b></font></td></tr></tbody></table></dl><a name="create"><!-- --></a><hr><h3>create</h3><dl><dd><code>.../types/sdl_surfacet.li line #39</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">create</font></strong>&nbsp;:&nbsp;<font color="#008000">SELF</font><dt><b><br>Description:</b></dt><dd> Create the SDL_Surface structure
+</dd></dl><a name="create_with"><!-- --></a><hr><h3>create_with</h3><dl><dd><code>.../types/sdl_surfacet.li line #46</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">create_with</font></strong>&nbsp; &nbsp;p&nbsp;:&nbsp;<a href="POINTER.html"><font color="#008000">POINTER</font></a> :&nbsp;<font color="#008000">SELF</font></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Detail slot</b></font></td></tr></tbody></table></dl><a name="make"><!-- --></a><hr><h3>make</h3><dl><dd><code>.../types/sdl_surfacet.li line #53</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">make</font></strong>&nbsp; &nbsp;p&nbsp;:&nbsp;<a href="POINTER.html"><font color="#008000">POINTER</font></a> <dt><b><br>Description:</b></dt><dd>
+ LOAD images:<br>
+</dd></dl><a name="load_bmp"><!-- --></a><hr><h3>load_bmp</h3><dl><dd><code>.../types/sdl_surfacet.li line #61</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">load_bmp</font></strong>&nbsp; &nbsp;filename&nbsp;:&nbsp;<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <dt><b><br>Description:</b></dt><dd> Load a BMP file with path+name (ie. /data/image.bmp).
+</dd></dl><a name="load"><!-- --></a><hr><h3>load</h3><dl><dd><code>.../types/sdl_surfacet.li line #68</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">load</font></strong>&nbsp; &nbsp;filename&nbsp;:&nbsp;<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <dt><b><br>Description:</b></dt><dd> Load an image.
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ INTERNAL:<br>
+</b></font></td></tr></tbody></table></dl><a name="value"><!-- --></a><hr><h3>value</h3><dl><dd><code>.../types/sdl_surfacet.li line #79</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">value</font></strong>&nbsp;:&nbsp;<a href="POINTER.html"><font color="#008000">POINTER</font></a><dt><b><br>Description:</b></dt><dd> Don't use it unless you know what you are doing
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ TEST:<br>
+</b></font></td></tr></tbody></table></dl><a name="is_null"><!-- --></a><hr><h3>is_null</h3><dl><dd><code>.../types/sdl_surfacet.li line #86</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">is_null</font></strong>&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Return <em><b><font color="#000000">TRUE</font></em></b> if no image loaded
+</dd></dl><a name="is_not_null"><!-- --></a><hr><h3>is_not_null</h3><dl><dd><code>.../types/sdl_surfacet.li line #89</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">is_not_null</font></strong>&nbsp;:&nbsp;<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><dt><b><br>Description:</b></dt><dd> Return <em><b><font color="#000000">TRUE</font></em></b> if no image loaded
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ SURFACE information:<br>
+</b></font></td></tr></tbody></table></dl><a name="w"><!-- --></a><hr><h3>w</h3><dl><dd><code>.../types/sdl_surfacet.li line #96</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">w</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Surface width. (READ ONLY)
+</dd></dl><a name="h"><!-- --></a><hr><h3>h</h3><dl><dd><code>.../types/sdl_surfacet.li line #103</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">h</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Surface height (READ_ONLY)
+</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_TIMER.html b/lib/unstable/sdl-binding/docs/belinda/SDL_TIMER.html
new file mode 100644
index 0000000..ce43f33
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_TIMER.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_TIMER</h2><hr><strong></strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Slot Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#get_ticks">get_ticks</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#delay">delay</a></b></code><dd></td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Detail slot</b></font></td></tr></tbody></table></dl><a name="get_ticks"><!-- --></a><hr><h3>get_ticks</h3><dl><dd><code>.../sdl_timer.li line #31</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">get_ticks</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="delay"><!-- --></a><hr><h3>delay</h3><dl><dd><code>.../sdl_timer.li line #36</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">delay</font></strong>&nbsp; &nbsp;d&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> 
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_TTF.html b/lib/unstable/sdl-binding/docs/belinda/SDL_TTF.html
new file mode 100644
index 0000000..67714d2
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_TTF.html
@@ -0,0 +1,39 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_TTF</h2><hr><strong>TrueType Font</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent_object">parent_object</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ Version
<br>
+ #define TTF_VERSION(X)		SDL_TTF_VERSION(X)
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#major">major</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#minor">minor</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#patch_level">patch_level</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ Font style
<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#style_normal">style_normal</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#style_bold">style_bold</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#style_italic">style_italic</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#style_underline">style_underline</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#print_version">print_version</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#init">init</a></b></code><dd> Initialize the TTF engine - returns 0 if successful, -1 on error
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#quit">quit</a></b></code><dd> De-initialize the TTF engine
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#was_init">was_init</a></b></code><dd> Check if the TTF engine is initialized
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#open_font">open_font</a></b></code><dd> Open a font file and create a font of the specified point size.  Some .fon
+ fonts will have several sizes embedded in the file, so the point size
+ becomes the index of choosing which size.  If the value is too high, the
+ last indexed size will be the default.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#make">make</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#render_text_solid">render_text_solid</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#close">close</a></b></code><dd> Close an opened font file
+</td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent_object"><!-- --></a><hr><h3>parent_object</h3><dl><dd><code>.../sdl_ttf.li line #32</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">+ </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent_object</font></strong>&nbsp;:&nbsp;<a href="OBJECT.html"><font color="#008000">OBJECT</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ Version
<br>
+ #define TTF_VERSION(X)		SDL_TTF_VERSION(X)
+</b></font></td></tr></tbody></table></dl><a name="major"><!-- --></a><hr><h3>major</h3><dl><dd><code>.../sdl_ttf.li line #45</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">major</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="minor"><!-- --></a><hr><h3>minor</h3><dl><dd><code>.../sdl_ttf.li line #46</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">minor</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="patch_level"><!-- --></a><hr><h3>patch_level</h3><dl><dd><code>.../sdl_ttf.li line #47</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">patch_level</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ Font style
<br>
+</b></font></td></tr></tbody></table></dl><a name="style_normal"><!-- --></a><hr><h3>style_normal</h3><dl><dd><code>.../sdl_ttf.li line #52</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">style_normal</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="style_bold"><!-- --></a><hr><h3>style_bold</h3><dl><dd><code>.../sdl_ttf.li line #53</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">style_bold</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="style_italic"><!-- --></a><hr><h3>style_italic</h3><dl><dd><code>.../sdl_ttf.li line #54</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">style_italic</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="style_underline"><!-- --></a><hr><h3>style_underline</h3><dl><dd><code>.../sdl_ttf.li line #55</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">style_underline</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="print_version"><!-- --></a><hr><h3>print_version</h3><dl><dd><code>.../sdl_ttf.li line #57</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">print_version</font></strong>&nbsp;</dl><a name="init"><!-- --></a><hr><h3>init</h3><dl><dd><code>.../sdl_ttf.li line #67</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">init</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Initialize the TTF engine - returns 0 if successful, -1 on error
+</dd></dl><a name="quit"><!-- --></a><hr><h3>quit</h3><dl><dd><code>.../sdl_ttf.li line #73</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">quit</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> De-initialize the TTF engine
+</dd></dl><a name="was_init"><!-- --></a><hr><h3>was_init</h3><dl><dd><code>.../sdl_ttf.li line #79</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">was_init</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Check if the TTF engine is initialized
+</dd></dl><a name="open_font"><!-- --></a><hr><h3>open_font</h3><dl><dd><code>.../sdl_ttf.li line #86</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">open_font</font></strong>&nbsp; (&nbsp;file&nbsp;:&nbsp;<a href="ABSTRACT_STRING.html"><font color="#008000">ABSTRACT_STRING</font></a>,&nbsp;ptsize&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :&nbsp;<font color="#008000">SELF</font><dt><b><br>Description:</b></dt><dd> Open a font file and create a font of the specified point size.  Some .fon
+ fonts will have several sizes embedded in the file, so the point size
+ becomes the index of choosing which size.  If the value is too high, the
+ last indexed size will be the default.
+</dd></dl><a name="make"><!-- --></a><hr><h3>make</h3><dl><dd><code>.../sdl_ttf.li line #97</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">make</font></strong>&nbsp; (&nbsp;file&nbsp;:&nbsp;<a href="ABSTRACT_STRING.html"><font color="#008000">ABSTRACT_STRING</font></a>,&nbsp;ptsize&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) </dl><a name="render_text_solid"><!-- --></a><hr><h3>render_text_solid</h3><dl><dd><code>.../sdl_ttf.li line #110</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">render_text_solid</font></strong>&nbsp; (&nbsp;text&nbsp;:&nbsp;<a href="ABSTRACT_STRING.html"><font color="#008000">ABSTRACT_STRING</font></a>,&nbsp;fg&nbsp;:&nbsp;<a href="SDL_COLOR.html"><font color="#008000">SDL_COLOR</font></a>) :&nbsp;<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a></dl><a name="close"><!-- --></a><hr><h3>close</h3><dl><dd><code>.../sdl_ttf.li line #124</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">close</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> Close an opened font file
+</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_VERSION.html b/lib/unstable/sdl-binding/docs/belinda/SDL_VERSION.html
new file mode 100644
index 0000000..314047f
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_VERSION.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_VERSION</h2><hr><strong>SDL version</strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Slot Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#major">major</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#minor">minor</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#patch_level">patch_level</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#print">print</a></b></code><dd></td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Detail slot</b></font></td></tr></tbody></table></dl><a name="major"><!-- --></a><hr><h3>major</h3><dl><dd><code>.../sdl_version.li line #32</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">major</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="minor"><!-- --></a><hr><h3>minor</h3><dl><dd><code>.../sdl_version.li line #33</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">minor</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="patch_level"><!-- --></a><hr><h3>patch_level</h3><dl><dd><code>.../sdl_version.li line #34</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">patch_level</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="print"><!-- --></a><hr><h3>print</h3><dl><dd><code>.../sdl_version.li line #36</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">print</font></strong>&nbsp;
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_VIDEO.html b/lib/unstable/sdl-binding/docs/belinda/SDL_VIDEO.html
new file mode 100644
index 0000000..01d2b78
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_VIDEO.html
@@ -0,0 +1,251 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_VIDEO</h2><hr><strong></strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b> ========================================================================
+                             VIDEO MODES 
+ ========================================================================
+ SDL_SWSURFACE : Create the video surface in system memory
+ SDL_HWSURFACE : Create the video surface in video memory
+ SDL_ASYNCBLIT : Enables the use of asynchronous updates of the display 
+                 surface. This will usually slow down blitting on single 
+                 CPU machines, but may provide a speed increase on SMP 
+                 systems.
+ SDL_ANYFORMAT : Normally, if a video surface of the requested 
+                 bits-per-pixel (bpp) is not available, SDL will emulate 
+                 one with a shadow surface. Passing SDL_ANYFORMAT 
+                 prevents this and causes SDL to use the video surface,
+                 regardless of its pixel depth.
+ SDL_HWPALETTE : Give SDL exclusive palette access. Without this flag you
+                 may not always get the the colors you request with 
+                 SDL_SetColors or SDL_SetPalette.
+ SDL_DOUBLEBUF : Enable hardware double buffering; only valid with 
+                 SDL_HWSURFACE. Calling SDL_Flip will flip the buffers 
+                 and update the screen. All drawing will take place on 
+                 the surface that is not displayed at the moment. If 
+                 double buffering could not be enabled then SDL_Flip will
+                 just perform a SDL_UpdateRect on the entire screen.
+ SDL_FULLSCREEN: SDL will attempt to use a fullscreen mode. If a hardware
+                 resolution change is not possible (for whatever reason),
+                 the next higher resolution will be used and the display 
+                 window centered on a black background.
+ SDL_OPENGL    : Create an OpenGL rendering context. You should have 
+                 previously set OpenGL video attributes with 
+                 SDL_GL_SetAttribute.
+ SDL_OPENGLBLIT: Create an OpenGL rendering context, like above, but allow
+                 normal blitting operations. The screen (2D) surface may 
+                 have an alpha channel, and SDL_UpdateRects must be used 
+                 for updating changes to the screen surface. NOTE: This 
+                 option is kept for compatibility only, and will be 
+                 removed in next versions. Is not recommended for new 
+                 code.
+ SDL_RESIZABLE : Create a resizable window. When the window is resized by
+                 the user a SDL_VIDEORESIZE event is generated and 
+                 SDL_SetVideoMode can be called again with the new size.
+ SDL_NOFRAME   : If possible, SDL_NOFRAME causes SDL to create a window 
+                 with no title bar or frame decoration. Fullscreen modes
+                 automatically have this flag set.
+ ========================================================================<br>
+ SDL VIDEO FLAGS<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#anyformat">anyformat</a></b></code><dd> Allow any video depth/pixel-format
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#hwpalette">hwpalette</a></b></code><dd> Surface has exclusive palette
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#doublebuf">doublebuf</a></b></code><dd> Set up double-buffered video mode
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#fullscreen">fullscreen</a></b></code><dd> Surface is a full screen display
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#opengl">opengl</a></b></code><dd> Create an OpenGL rendering context
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#openglblit">openglblit</a></b></code><dd> Create an OpenGL rendering context and use it for blitting
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#resizable">resizable</a></b></code><dd> This video mode may be resized
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#noframe">noframe</a></b></code><dd> No window caption or edge frame
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#swsurface">swsurface</a></b></code><dd> Surface is in system memory 
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#hwsurface">hwsurface</a></b></code><dd> Surface is in video memory
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#asyncblit">asyncblit</a></b></code><dd> Use asynchronous blits if possible </td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ SDL PALETTE FLAGS<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#logpal">logpal</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#physpal">physpal</a></b></code><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>
+ OVERLAY FORMATS FLAGS<br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#yv12_overlay">yv12_overlay</a></b></code><dd> Planar mode: Y + V + U  (3 planes)
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#iyuv_overlay">iyuv_overlay</a></b></code><dd> Planar mode: Y + U + V  (3 planes)
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#yuy2_overlay">yuy2_overlay</a></b></code><dd> Packed mode: Y0+U0+Y1+V0 (1 plane)
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#uyvy_overlay">uyvy_overlay</a></b></code><dd> Packed mode: U0+Y0+V0+Y1 (1 plane)
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#yvyu_overlay">yvyu_overlay</a></b></code><dd> Packed mode: Y0+V0+Y1+U0 (1 plane)
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Slot Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_mode">set_mode</a></b></code><dd> Set up a video mode with the specified width, height and bits-per-pixel.<br>
+ If '<em><b><font color="#000000">bpp</font></em></b> is 0, it is treated as the current display bits per pixel.<br>
+ If <code><b><a href="#anyformat">anyformat</a></b></code> is set in <em><b><font color="#000000">flags</font></em></b>, the SDL library will try to set the
+ requested bits-per-pixel, but will return whatever video pixel format is
+ available.  The default is to emulate the requested pixel format if it is
+ not natively available.<br>
+ If <code><b><a href="#hwsurface">hwsurface</a></b></code> is set in <em><b><font color="#000000">flags</font></em></b>, the video surface will be placed in
+ video memory, if possible, and you may have to call SDL_LockSurface() in
+ order to access the raw framebuffer.  Otherwise, the video surface will be
+ created in system memory.<br>
+ If <code><b><a href="#asyncblit">asyncblit</a></b></code> is set in <em><b><font color="#000000">flags</font></em></b>, SDL will try to perform rectangle
+ updates asynchronously, but you must always lock before accessing pixels.
+ SDL will wait for updates to complete before returning from the lock.<br>
+ If <code><b><a href="#hwpalette">hwpalette</a></b></code> is set in <em><b><font color="#000000">flags</font></em></b>, the SDL library will guarantee that the
+ colors set by <em><b><font color="#000000">SDL_SetColors()</font></em></b> will be the colors you get.  Otherwise, in
+ 8-bit mode, <em><b><font color="#000000">SDL_SetColors()</font></em></b> may not be able to set all of the colors
+ exactly the way they are requested, and you should look at the video
+ surface structure to determine the actual palette.  If SDL cannot
+ guarantee that the colors you request can be set, i.e. if the colormap is
+ shared, then the video surface may be created under emulation in system
+ memory, overriding the <code><b><a href="#hwsurface">hwsurface</a></b></code> flag.<br>
+ If <code><b><a href="#fullscreen">fullscreen</a></b></code> is set in <em><b><font color="#000000">flags</font></em></b>, the SDL library will try to set a
+ fullscreen video mode. The default is to create a windowed mode if the
+ current graphics system has a window manager. If the SDL library is able
+ to set a fullscreen video mode, this flag will be set in the surface that
+ is returned.<br>
+ If <em><b><font color="#000000">doublebug</font></em></b> is set in <em><b><font color="#000000">flags</font></em></b>, the SDL library will try to set up two
+ surfaces in video memory and swap between them when you call <em><b><font color="#000000">flip</font></em></b>.
+ This is usually slower than the normal single-buffering scheme, but
+ prevents "tearing" artifacts caused by modifying video memory while the
+ monitor is refreshing.  It should only be used by applications that redraw
+ the entire screen on every update.<br>
+ If <code><b><a href="#resizable">resizable</a></b></code> is set in <em><b><font color="#000000">flags</font></em></b>, the SDL library will allow the window
+ manager, if any, to resize the window at runtime.  When this occurs, SDL
+ will send a SDL_VIDEORESIZE event to you application, and you must respond
+ to the event by re-calling <em><b><font color="#000000">set_video_mode</font></em></b> with the requested size (or
+ another size that suits the application).<br>
+ If <code><b><a href="#noframe">noframe</a></b></code> is set in <em><b><font color="#000000">flags</font></em></b>, the SDL library will create a window
+ without any title bar or frame decoration.  Fullscreen video modes have
+ this flag set automatically.<br>
+ This function returns the video framebuffer surface, or NULL if it fails.<br>
+ If you rely on functionality provided by certain video flags, check the
+ flags of the returned surface to make sure that functionality is available.
+ SDL will fall back to reduced functionality if the exact flags you wanted
+ are not available.
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#video_mode_ok">video_mode_ok</a></b></code><dd> Check to see if a particular video mode is supported.  It returns 0 if the
+ requested mode is not supported under any bit depth, or returns the
+ bits-per-pixel of the closest available mode with the given width and
+ height.  If this bits-per-pixel is different from the one used when
+ setting the video mode, <em><b><font color="#000000">set_video_mode</font></em></b> will succeed, but will emulate
+ the requested bits-per-pixel with a shadow surface.<br>
+ The arguments to <code><b><a href="#video_mode_ok">video_mode_ok</a></b></code> are the same ones you would pass to
+ <em><b><font color="#000000">set_video_mode</font></em></b>.
+</td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b><br><br>
+</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#map_rgb">map_rgb</a></b></code><dd>Maps an RGB triple to an opaque pixel value for a given pixel format
+</td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b> ========================================================================
+                             VIDEO MODES 
+ ========================================================================
+ SDL_SWSURFACE : Create the video surface in system memory
+ SDL_HWSURFACE : Create the video surface in video memory
+ SDL_ASYNCBLIT : Enables the use of asynchronous updates of the display 
+                 surface. This will usually slow down blitting on single 
+                 CPU machines, but may provide a speed increase on SMP 
+                 systems.
+ SDL_ANYFORMAT : Normally, if a video surface of the requested 
+                 bits-per-pixel (bpp) is not available, SDL will emulate 
+                 one with a shadow surface. Passing SDL_ANYFORMAT 
+                 prevents this and causes SDL to use the video surface,
+                 regardless of its pixel depth.
+ SDL_HWPALETTE : Give SDL exclusive palette access. Without this flag you
+                 may not always get the the colors you request with 
+                 SDL_SetColors or SDL_SetPalette.
+ SDL_DOUBLEBUF : Enable hardware double buffering; only valid with 
+                 SDL_HWSURFACE. Calling SDL_Flip will flip the buffers 
+                 and update the screen. All drawing will take place on 
+                 the surface that is not displayed at the moment. If 
+                 double buffering could not be enabled then SDL_Flip will
+                 just perform a SDL_UpdateRect on the entire screen.
+ SDL_FULLSCREEN: SDL will attempt to use a fullscreen mode. If a hardware
+                 resolution change is not possible (for whatever reason),
+                 the next higher resolution will be used and the display 
+                 window centered on a black background.
+ SDL_OPENGL    : Create an OpenGL rendering context. You should have 
+                 previously set OpenGL video attributes with 
+                 SDL_GL_SetAttribute.
+ SDL_OPENGLBLIT: Create an OpenGL rendering context, like above, but allow
+                 normal blitting operations. The screen (2D) surface may 
+                 have an alpha channel, and SDL_UpdateRects must be used 
+                 for updating changes to the screen surface. NOTE: This 
+                 option is kept for compatibility only, and will be 
+                 removed in next versions. Is not recommended for new 
+                 code.
+ SDL_RESIZABLE : Create a resizable window. When the window is resized by
+                 the user a SDL_VIDEORESIZE event is generated and 
+                 SDL_SetVideoMode can be called again with the new size.
+ SDL_NOFRAME   : If possible, SDL_NOFRAME causes SDL to create a window 
+                 with no title bar or frame decoration. Fullscreen modes
+                 automatically have this flag set.
+ ========================================================================<br>
+ SDL VIDEO FLAGS<br>
+</b></font></td></tr></tbody></table></dl><a name="anyformat"><!-- --></a><hr><h3>anyformat</h3><dl><dd><code>.../sdl_video.li line #78</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">anyformat</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Allow any video depth/pixel-format
+</dd></dl><a name="hwpalette"><!-- --></a><hr><h3>hwpalette</h3><dl><dd><code>.../sdl_video.li line #79</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">hwpalette</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Surface has exclusive palette
+</dd></dl><a name="doublebuf"><!-- --></a><hr><h3>doublebuf</h3><dl><dd><code>.../sdl_video.li line #80</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">doublebuf</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Set up double-buffered video mode
+</dd></dl><a name="fullscreen"><!-- --></a><hr><h3>fullscreen</h3><dl><dd><code>.../sdl_video.li line #81</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">fullscreen</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Surface is a full screen display
+</dd></dl><a name="opengl"><!-- --></a><hr><h3>opengl</h3><dl><dd><code>.../sdl_video.li line #82</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">opengl</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Create an OpenGL rendering context
+</dd></dl><a name="openglblit"><!-- --></a><hr><h3>openglblit</h3><dl><dd><code>.../sdl_video.li line #83</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">openglblit</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Create an OpenGL rendering context and use it for blitting
+</dd></dl><a name="resizable"><!-- --></a><hr><h3>resizable</h3><dl><dd><code>.../sdl_video.li line #84</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">resizable</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> This video mode may be resized
+</dd></dl><a name="noframe"><!-- --></a><hr><h3>noframe</h3><dl><dd><code>.../sdl_video.li line #85</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">noframe</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> No window caption or edge frame
+</dd></dl><a name="swsurface"><!-- --></a><hr><h3>swsurface</h3><dl><dd><code>.../sdl_video.li line #86</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">swsurface</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Surface is in system memory 
+</dd></dl><a name="hwsurface"><!-- --></a><hr><h3>hwsurface</h3><dl><dd><code>.../sdl_video.li line #87</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">hwsurface</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Surface is in video memory
+</dd></dl><a name="asyncblit"><!-- --></a><hr><h3>asyncblit</h3><dl><dd><code>.../sdl_video.li line #88</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">asyncblit</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Use asynchronous blits if possible </dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ SDL PALETTE FLAGS<br>
+</b></font></td></tr></tbody></table></dl><a name="logpal"><!-- --></a><hr><h3>logpal</h3><dl><dd><code>.../sdl_video.li line #95</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">logpal</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl><a name="physpal"><!-- --></a><hr><h3>physpal</h3><dl><dd><code>.../sdl_video.li line #96</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">physpal</font></strong>&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>
+ OVERLAY FORMATS FLAGS<br>
+</b></font></td></tr></tbody></table></dl><a name="yv12_overlay"><!-- --></a><hr><h3>yv12_overlay</h3><dl><dd><code>.../sdl_video.li line #101</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">yv12_overlay</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Planar mode: Y + V + U  (3 planes)
+</dd></dl><a name="iyuv_overlay"><!-- --></a><hr><h3>iyuv_overlay</h3><dl><dd><code>.../sdl_video.li line #102</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">iyuv_overlay</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Planar mode: Y + U + V  (3 planes)
+</dd></dl><a name="yuy2_overlay"><!-- --></a><hr><h3>yuy2_overlay</h3><dl><dd><code>.../sdl_video.li line #103</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">yuy2_overlay</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Packed mode: Y0+U0+Y1+V0 (1 plane)
+</dd></dl><a name="uyvy_overlay"><!-- --></a><hr><h3>uyvy_overlay</h3><dl><dd><code>.../sdl_video.li line #104</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">uyvy_overlay</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Packed mode: U0+Y0+V0+Y1 (1 plane)
+</dd></dl><a name="yvyu_overlay"><!-- --></a><hr><h3>yvyu_overlay</h3><dl><dd><code>.../sdl_video.li line #105</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">yvyu_overlay</font></strong>&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd> Packed mode: Y0+V0+Y1+U0 (1 plane)
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Detail slot</b></font></td></tr></tbody></table></dl><a name="set_mode"><!-- --></a><hr><h3>set_mode</h3><dl><dd><code>.../sdl_video.li line #109</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_mode</font></strong>&nbsp; (&nbsp;w&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;h&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;bpp&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;video&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) :&nbsp;<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a><dt><b><br>Description:</b></dt><dd> Set up a video mode with the specified width, height and bits-per-pixel.<br>
+ If '<em><b><font color="#000000">bpp</font></em></b> is 0, it is treated as the current display bits per pixel.<br>
+ If <code><b><a href="#anyformat">anyformat</a></b></code> is set in <em><b><font color="#000000">flags</font></em></b>, the SDL library will try to set the
+ requested bits-per-pixel, but will return whatever video pixel format is
+ available.  The default is to emulate the requested pixel format if it is
+ not natively available.<br>
+ If <code><b><a href="#hwsurface">hwsurface</a></b></code> is set in <em><b><font color="#000000">flags</font></em></b>, the video surface will be placed in
+ video memory, if possible, and you may have to call SDL_LockSurface() in
+ order to access the raw framebuffer.  Otherwise, the video surface will be
+ created in system memory.<br>
+ If <code><b><a href="#asyncblit">asyncblit</a></b></code> is set in <em><b><font color="#000000">flags</font></em></b>, SDL will try to perform rectangle
+ updates asynchronously, but you must always lock before accessing pixels.
+ SDL will wait for updates to complete before returning from the lock.<br>
+ If <code><b><a href="#hwpalette">hwpalette</a></b></code> is set in <em><b><font color="#000000">flags</font></em></b>, the SDL library will guarantee that the
+ colors set by <em><b><font color="#000000">SDL_SetColors()</font></em></b> will be the colors you get.  Otherwise, in
+ 8-bit mode, <em><b><font color="#000000">SDL_SetColors()</font></em></b> may not be able to set all of the colors
+ exactly the way they are requested, and you should look at the video
+ surface structure to determine the actual palette.  If SDL cannot
+ guarantee that the colors you request can be set, i.e. if the colormap is
+ shared, then the video surface may be created under emulation in system
+ memory, overriding the <code><b><a href="#hwsurface">hwsurface</a></b></code> flag.<br>
+ If <code><b><a href="#fullscreen">fullscreen</a></b></code> is set in <em><b><font color="#000000">flags</font></em></b>, the SDL library will try to set a
+ fullscreen video mode. The default is to create a windowed mode if the
+ current graphics system has a window manager. If the SDL library is able
+ to set a fullscreen video mode, this flag will be set in the surface that
+ is returned.<br>
+ If <em><b><font color="#000000">doublebug</font></em></b> is set in <em><b><font color="#000000">flags</font></em></b>, the SDL library will try to set up two
+ surfaces in video memory and swap between them when you call <em><b><font color="#000000">flip</font></em></b>.
+ This is usually slower than the normal single-buffering scheme, but
+ prevents "tearing" artifacts caused by modifying video memory while the
+ monitor is refreshing.  It should only be used by applications that redraw
+ the entire screen on every update.<br>
+ If <code><b><a href="#resizable">resizable</a></b></code> is set in <em><b><font color="#000000">flags</font></em></b>, the SDL library will allow the window
+ manager, if any, to resize the window at runtime.  When this occurs, SDL
+ will send a SDL_VIDEORESIZE event to you application, and you must respond
+ to the event by re-calling <em><b><font color="#000000">set_video_mode</font></em></b> with the requested size (or
+ another size that suits the application).<br>
+ If <code><b><a href="#noframe">noframe</a></b></code> is set in <em><b><font color="#000000">flags</font></em></b>, the SDL library will create a window
+ without any title bar or frame decoration.  Fullscreen video modes have
+ this flag set automatically.<br>
+ This function returns the video framebuffer surface, or NULL if it fails.<br>
+ If you rely on functionality provided by certain video flags, check the
+ flags of the returned surface to make sure that functionality is available.
+ SDL will fall back to reduced functionality if the exact flags you wanted
+ are not available.
+</dd></dl><a name="video_mode_ok"><!-- --></a><hr><h3>video_mode_ok</h3><dl><dd><code>.../sdl_video.li line #171</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">video_mode_ok</font></strong>&nbsp; (&nbsp;w&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;h&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;b&nbsp;:&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,&nbsp;video&nbsp;:&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) :&nbsp;<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><dt><b><br>Description:</b></dt><dd> Check to see if a particular video mode is supported.  It returns 0 if the
+ requested mode is not supported under any bit depth, or returns the
+ bits-per-pixel of the closest available mode with the given width and
+ height.  If this bits-per-pixel is different from the one used when
+ setting the video mode, <em><b><font color="#000000">set_video_mode</font></em></b> will succeed, but will emulate
+ the requested bits-per-pixel with a shadow surface.<br>
+ The arguments to <code><b><a href="#video_mode_ok">video_mode_ok</a></b></code> are the same ones you would pass to
+ <em><b><font color="#000000">set_video_mode</font></em></b>.
+</dd></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b><br><br>
+</b></font></td></tr></tbody></table></dl><a name="map_rgb"><!-- --></a><hr><h3>map_rgb</h3><dl><dd><code>.../sdl_video.li line #191</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">map_rgb</font></strong>&nbsp; (&nbsp;pf&nbsp;:&nbsp;<a href="SDL_PIXEL_FORMAT.html"><font color="#008000">SDL_PIXEL_FORMAT</font></a>,&nbsp;r&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,&nbsp;g&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,&nbsp;b&nbsp;:&nbsp;<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>) :&nbsp;<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><dt><b><br>Description:</b></dt><dd>Maps an RGB triple to an opaque pixel value for a given pixel format
+</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_WINDOW.html b/lib/unstable/sdl-binding/docs/belinda/SDL_WINDOW.html
new file mode 100644
index 0000000..d5b3d49
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_WINDOW.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_WINDOW</h2><hr><strong>Xavier Oswald <x.oswald at debian.org></strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Slot Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#iconify_window">iconify_window</a></b></code><dd> See SDL_APPACTIVE loss event (see SDL_ActiveEvent)
+ Iconify/Minimise the window
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_caption">set_caption</a></b></code><dd> set the window title and application name in the bar
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_title">set_title</a></b></code><dd></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_bmp_icon">set_bmp_icon</a></b></code><dd> Sets the icon for the display window.
+ Icon must be 32x32
+</td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Detail slot</b></font></td></tr></tbody></table></dl><a name="iconify_window"><!-- --></a><hr><h3>iconify_window</h3><dl><dd><code>.../sdl_window.li line #32</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">iconify_window</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> See SDL_APPACTIVE loss event (see SDL_ActiveEvent)
+ Iconify/Minimise the window
+</dd></dl><a name="set_caption"><!-- --></a><hr><h3>set_caption</h3><dl><dd><code>.../sdl_window.li line #43</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_caption</font></strong>&nbsp; (&nbsp;t&nbsp;:&nbsp;<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>,&nbsp;i&nbsp;:&nbsp;<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>) <dt><b><br>Description:</b></dt><dd> set the window title and application name in the bar
+</dd></dl><a name="set_title"><!-- --></a><hr><h3>set_title</h3><dl><dd><code>.../sdl_window.li line #53</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_title</font></strong>&nbsp; &nbsp;t&nbsp;:&nbsp;<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> </dl><a name="set_bmp_icon"><!-- --></a><hr><h3>set_bmp_icon</h3><dl><dd><code>.../sdl_window.li line #58</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_bmp_icon</font></strong>&nbsp; &nbsp;i&nbsp;:&nbsp;<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <dt><b><br>Description:</b></dt><dd> Sets the icon for the display window.
+ Icon must be 32x32
+</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/SDL_WM.html b/lib/unstable/sdl-binding/docs/belinda/SDL_WM.html
new file mode 100644
index 0000000..a7f710d
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/SDL_WM.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>SDL_WM</h2><hr><strong>Xavier Oswald <x.oswald at free.fr></strong><hr><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Inherit/Insert Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#parent_object">parent_object</a></b></code><font color="#FF0000"><b> No developed.</b></font><br><dd></td></tr></tbody></table>&nbsp;<table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="2"><font size="+2"><b>Slot Summary</b></font></td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#iconify_window">iconify_window</a></b></code><dd> See SDL_APPACTIVE loss event (see SDL_ActiveEvent)
+ Iconify/Minimise the window
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_caption">set_caption</a></b></code><dd> set the window title and application name in the bar
+</td></tr><tr class="TableRowColor" bgcolor="white"><td><code><dt><b><a href="#set_bmp_icon">set_bmp_icon</a></b></code><dd> Sets the icon for the display window.
+ Icon must be 32x32
+</td></tr></tbody></table>&nbsp;</dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Inherit/Insert Detail</b></font></td></tr></tbody></table></dl><a name="parent_object"><!-- --></a><hr><h3>parent_object</h3><dl><dd><code>.../sdl_wm.li line #30</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Inherit</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">parent_object</font></strong>&nbsp;:&nbsp;<a href="SDL_SETTINGS.html"><font color="#008000">SDL_SETTINGS</font></a></dl></p><table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"><tbody><tr class="TableHeadingColor" bgcolor="#ccccff"><td colspan="1"><font size="+2"><b>Detail slot</b></font></td></tr></tbody></table></dl><a name="iconify_window"><!-- --></a><hr><h3>iconify_window</h3><dl><dd><code>.../sdl_wm.li line #34</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">iconify_window</font></strong>&nbsp;<dt><b><br>Description:</b></dt><dd> See SDL_APPACTIVE loss event (see SDL_ActiveEvent)
+ Iconify/Minimise the window
+</dd></dl><a name="set_caption"><!-- --></a><hr><h3>set_caption</h3><dl><dd><code>.../sdl_wm.li line #45</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_caption</font></strong>&nbsp; (&nbsp;t&nbsp;:&nbsp;<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>,&nbsp;i&nbsp;:&nbsp;<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>) <dt><b><br>Description:</b></dt><dd> set the window title and application name in the bar
+</dd></dl><a name="set_bmp_icon"><!-- --></a><hr><h3>set_bmp_icon</h3><dl><dd><code>.../sdl_wm.li line #55</code></dd><dt><b><br>Section:</b></dt><dd><strong><font color="#A020F0">Public</font></strong></dd><dt><b><br>Profile:</b></dt><dd><strong><font color="#FF0000">- </font></strong><strong><font color="#A020F0">Self</font></strong>:&nbsp;<font color="#008000">SELF</font>.&nbsp;<strong><font color="#0000FF">set_bmp_icon</font></strong>&nbsp; &nbsp;i&nbsp;:&nbsp;<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <dt><b><br>Description:</b></dt><dd> Sets the icon for the display window.
+ Icon must be 32x32
+</dd>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/__SHORT_LISAAC_FORMAT__.html b/lib/unstable/sdl-binding/docs/belinda/__SHORT_LISAAC_FORMAT__.html
new file mode 100644
index 0000000..3032308
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/__SHORT_LISAAC_FORMAT__.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<td align="right"><em><b>Lisaac<sup><font size="-2">TM</font></sup>&nbsp;Platform</b></em></td><hr><h2>__SHORT_LISAAC_FORMAT__</h2><hr>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/audio.html b/lib/unstable/sdl-binding/docs/belinda/audio.html
new file mode 100644
index 0000000..c48fe0a
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/audio.html
@@ -0,0 +1,7 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_CHUNK.html" target="content">SDL_CHUNK</a>
+<br><a href="SDL_MIXER.html" target="content">SDL_MIXER</a>
+<br><a href="SDL_MUSIC.html" target="content">SDL_MUSIC</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/belinda/default.html b/lib/unstable/sdl-binding/docs/belinda/default.html
new file mode 100644
index 0000000..72ad31b
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/default.html
@@ -0,0 +1,6 @@
+<html><head><title>Proto</title></head>
+<body bgcolor="#FFFFFF">
+<H1>Lisaac documentation</H1>
+Select your prototype.
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/directory_list.html b/lib/unstable/sdl-binding/docs/belinda/directory_list.html
new file mode 100644
index 0000000..641931c
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/directory_list.html
@@ -0,0 +1,9 @@
+<html><head><title>List Directories</title></head>
+<body bgcolor="#FFFFFF">
+<a href="file_list.html" target="file">All</a>
+<br><a href="audio.html" target="file">audio</a>
+<br><a href="events.html" target="file">events</a>
+<br><a href="keyboard.html" target="file">keyboard</a>
+<br><a href="types.html" target="file">types</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/belinda/events.html b/lib/unstable/sdl-binding/docs/belinda/events.html
new file mode 100644
index 0000000..94e9cba
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/events.html
@@ -0,0 +1,5 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_EVENT.html" target="content">SDL_EVENT</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/belinda/file_list.html b/lib/unstable/sdl-binding/docs/belinda/file_list.html
new file mode 100644
index 0000000..1ddf923
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/file_list.html
@@ -0,0 +1,36 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_CHUNK.html" target="content">SDL_CHUNK</a>
+<br><a href="SDL_MIXER.html" target="content">SDL_MIXER</a>
+<br><a href="SDL_MUSIC.html" target="content">SDL_MUSIC</a>
+<br><a href="SDL_EVENT.html" target="content">SDL_EVENT</a>
+<br><a href="SDL_KEYBOARD.html" target="content">SDL_KEYBOARD</a>
+<br><a href="SDL_KEYSYM.html" target="content">SDL_KEYSYM</a>
+<br><a href="SDL_COLOR.html" target="content">SDL_COLOR</a>
+<br><a href="SDL_COLOR_HACK.html" target="content">SDL_COLOR_HACK</a>
+<br><a href="SDL_CURSOR.html" target="content">SDL_CURSOR</a>
+<br><a href="SDL_PALETTE.html" target="content">SDL_PALETTE</a>
+<br><a href="SDL_PIXEL_FORMAT.html" target="content">SDL_PIXEL_FORMAT</a>
+<br><a href="SDL_RECT.html" target="content">SDL_RECT</a>
+<br><a href="KEYCODE.html" target="content">KEYCODE</a>
+<br><a href="SDL.html" target="content">SDL</a>
+<br><a href="SDL_ACTIVE.html" target="content">SDL_ACTIVE</a>
+<br><a href="SDL_BLAH.html" target="content">SDL_BLAH</a>
+<br><a href="SDL_CDROM.html" target="content">SDL_CDROM</a>
+<br><a href="SDL_CPUINFO.html" target="content">SDL_CPUINFO</a>
+<br><a href="SDL_CURSOR.html" target="content">SDL_CURSOR</a>
+<br><a href="SDL_ERROR.html" target="content">SDL_ERROR</a>
+<br><a href="SDL_FLAG.html" target="content">SDL_FLAG</a>
+<br><a href="SDL_INIT.html" target="content">SDL_INIT</a>
+<br><a href="SDL_JOYSTICK.html" target="content">SDL_JOYSTICK</a>
+<br><a href="SDL_MOUSE.html" target="content">SDL_MOUSE</a>
+<br><a href="SDL_ROTOZOOM.html" target="content">SDL_ROTOZOOM</a>
+<br><a href="SDL_SURFACE.html" target="content">SDL_SURFACE</a>
+<br><a href="SDL_TIMER.html" target="content">SDL_TIMER</a>
+<br><a href="SDL_TTF.html" target="content">SDL_TTF</a>
+<br><a href="SDL_VERSION.html" target="content">SDL_VERSION</a>
+<br><a href="SDL_VIDEO.html" target="content">SDL_VIDEO</a>
+<br><a href="SDL_WINDOW.html" target="content">SDL_WINDOW</a>
+<br><a href="SDL_WM.html" target="content">SDL_WM</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/belinda/index.html b/lib/unstable/sdl-binding/docs/belinda/index.html
new file mode 100644
index 0000000..d240c03
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/index.html
@@ -0,0 +1,13 @@
+<html><head><title>Lisaac Documentation</title></head>
+<frameset cols="300,*" border="3" frameborder="yes" framespacing="5" scrolling="auto">
+  <frameset rows="50%,*" border="3" frameborder="yes" framespacing="5" scrolling="no">
+   <frame src="directory_list.html" frameborder="yes" scrolling="auto">
+   <frame src="file_list.html"      frameborder="yes" scrolling="auto" name="file">
+  </frameset>
+  <frame src="default.html" name="content">
+</frameset>
+<noframes>
+<h3>Frame Error</h3>
+<p>This web site works only with frames.</p>
+</noframes>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/belinda/keyboard.html b/lib/unstable/sdl-binding/docs/belinda/keyboard.html
new file mode 100644
index 0000000..a1a1df6
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/keyboard.html
@@ -0,0 +1,6 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_KEYBOARD.html" target="content">SDL_KEYBOARD</a>
+<br><a href="SDL_KEYSYM.html" target="content">SDL_KEYSYM</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/belinda/low_level.html b/lib/unstable/sdl-binding/docs/belinda/low_level.html
new file mode 100644
index 0000000..4c9199f
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/low_level.html
@@ -0,0 +1,8 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_ABSTRACT_KEYCODE.html" target="content">SDL_ABSTRACT_KEYCODE</a>
+<br><a href="SDL_SETTINGS.html" target="content">SDL_SETTINGS</a>
+<br><a href="SDL_INIT.html" target="content">SDL_INIT</a>
+<br><a href="SDL_ABSTRACT_MUSIC_TYPE.html" target="content">SDL_ABSTRACT_MUSIC_TYPE</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/belinda/types.html b/lib/unstable/sdl-binding/docs/belinda/types.html
new file mode 100644
index 0000000..0b0cd1c
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/types.html
@@ -0,0 +1,10 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_COLOR.html" target="content">SDL_COLOR</a>
+<br><a href="SDL_COLOR_HACK.html" target="content">SDL_COLOR_HACK</a>
+<br><a href="SDL_CURSOR.html" target="content">SDL_CURSOR</a>
+<br><a href="SDL_PALETTE.html" target="content">SDL_PALETTE</a>
+<br><a href="SDL_PIXEL_FORMAT.html" target="content">SDL_PIXEL_FORMAT</a>
+<br><a href="SDL_RECT.html" target="content">SDL_RECT</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/belinda/unix.html b/lib/unstable/sdl-binding/docs/belinda/unix.html
new file mode 100644
index 0000000..46b98b2
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/belinda/unix.html
@@ -0,0 +1,6 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_KEYCODE.html" target="content">SDL_KEYCODE</a>
+<br><a href="SDL_EVENT.html" target="content">SDL_EVENT</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/html/KEYCODE.html b/lib/unstable/sdl-binding/docs/html/KEYCODE.html
new file mode 100644
index 0000000..f2d63d6
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/KEYCODE.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_keycode</font></strong>:<strong><font color="#A020F0">Expanded</font></strong> <a href="ABSTRACT_KEYCODE.html"><font color="#008000">ABSTRACT_KEYCODE</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">make</font></strong>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/OLD-unix.html b/lib/unstable/sdl-binding/docs/html/OLD-unix.html
new file mode 100644
index 0000000..94e9cba
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/OLD-unix.html
@@ -0,0 +1,5 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_EVENT.html" target="content">SDL_EVENT</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/html/OLD.html b/lib/unstable/sdl-binding/docs/html/OLD.html
new file mode 100644
index 0000000..008cf1a
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/OLD.html
@@ -0,0 +1,7 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_KEYCODE.html" target="content">SDL_KEYCODE</a>
+<br><a href="SDL_ABSTRACT_MUSIC_TYPE.html" target="content">SDL_ABSTRACT_MUSIC_TYPE</a>
+<br><a href="SDL_ABSTRACT_KEYCODE.html" target="content">SDL_ABSTRACT_KEYCODE</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/html/SDL.html b/lib/unstable/sdl-binding/docs/html/SDL.html
new file mode 100644
index 0000000..ab36145
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL.html
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_timer</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_audio</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_video</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_cdrom</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_joystick</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_noparachute</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Don't catch fatal signals
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_eventthread</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Not supported on all OS's
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_everything</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init</font></strong> :<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  This function loads the SDL dynamically linked library and initializes 
+ the subsystems specified by  (and those satisfying dependencies)
+ Unless the  flag is set, it will install cleanup signal
+ handlers for some commonly ignored fatal signals (like SIGSEGV)
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_subsystem</font></strong> :<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  This function initializes specific SDL subsystems
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">was_init</font></strong> :<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a> :<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  This function returns mask of the specified subsystems which have been
+ initialized. If  is 0, it returns a mask of all initialized
+ subsystems.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">quit_subsystem</font></strong> :<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  This function cleans up specific SDL subsystems
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">quit</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  This function cleans up all initialized subsystems and unloads the
+ dynamically linked library. You should call it upon all exit conditions.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_timer</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_audio</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_video</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_cdrom</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_joystick</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_noparachute</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_eventthread</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_everything</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">unset_timer</font></strong><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">unset_audio</font></strong><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">unset_video</font></strong><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">unset_cdrom</font></strong><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">unset_joystick</font></strong><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">unset_noparachute</font></strong><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">unset_eventthread</font></strong><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">unset_everything</font></strong>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_ABSTRACT_KEYCODE.html b/lib/unstable/sdl-binding/docs/html/SDL_ABSTRACT_KEYCODE.html
new file mode 100644
index 0000000..f17bbd9
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_ABSTRACT_KEYCODE.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">max_keys</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_backspace</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_tab</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_clear</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_return</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_pause</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_escape</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_space</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_exclaim</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_quotedbl</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_hash</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_dollar</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_ampersand</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_quote</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_leftparen</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_rightparen</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_asterisk</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_plus</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_comma</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_minus</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_period</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_slash</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_0</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_1</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_2</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_3</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_4</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_5</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_6</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_7</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_8</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_9</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_colon</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_semicolon</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_less</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_equals</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_greater</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_question</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_at</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_leftbracket</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_backslash</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_rightbracket</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_caret</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_underscore</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_backquote</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_a</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_b</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_c</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_d</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_e</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_g</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_h</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_i</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_j</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_k</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_l</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_m</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_n</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_o</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_p</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_q</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_r</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_s</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_t</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_u</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_v</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_w</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_x</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_y</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_z</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_delete</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_0</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_1</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_2</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_3</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_4</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_5</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_6</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_7</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_8</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_9</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_period</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_divide</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_multiply</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_minus</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_plus</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_enter</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_equals</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_up</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_down</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_right</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_left</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_insert</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_home</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_end</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_pageup</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_pagedown</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f1</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f2</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f3</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f4</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f5</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f6</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f7</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f8</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f9</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f10</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f11</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f12</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f13</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f14</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f15</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_numlock</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_capslock</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_scrollock</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_rshift</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_lshift</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_rctrl</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_lctrl</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_ralt</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_lalt</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_rmeta</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_lmeta</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_lsuper</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_rsuper</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_mode</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_compose</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_help</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_print</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_sysreq</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_break</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_menu</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_power</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_euro</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_undo</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_ABSTRACT_MUSIC_TYPE.html b/lib/unstable/sdl-binding/docs/html/SDL_ABSTRACT_MUSIC_TYPE.html
new file mode 100644
index 0000000..c91a711
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_ABSTRACT_MUSIC_TYPE.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">max_music_type</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_ACTIVE.html b/lib/unstable/sdl-binding/docs/html/SDL_ACTIVE.html
new file mode 100644
index 0000000..fe5f9d5
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_ACTIVE.html
@@ -0,0 +1,20 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">app_mouse_focus</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  The application has mouse coverage 0x01
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">app_input_focus</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  The application has input focus 0x02
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">app_active</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  The application is active 0x04
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_application_state</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  This function returns the current state of the application, which is a
+ bitwise combination of ,  , and
+ . If  is set, then the user is able to
+ see your application, otherwise it has been iconified or disabled.
+</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_BLAH.html b/lib/unstable/sdl-binding/docs/html/SDL_BLAH.html
new file mode 100644
index 0000000..382ae15
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_BLAH.html
@@ -0,0 +1,21 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp +</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong>:<font color="#008000">SELF</font><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">major</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">minor</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">patch_level</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">style_normal</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">style_bold</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">style_italic</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">style_underline</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">print_version</font></strong><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Initialize the TTF engine - returns 0 if successful, -1 on error
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">quit</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  De-initialize the TTF engine
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">was_init</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Check if the TTF engine is initialized
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">open_font</font></strong> (:<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :<font color="#008000">SELF</font><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Open a font file and create a font of the specified point size.  Some .fon
+ fonts will have several sizes embedded in the file, so the point size
+ becomes the index of choosing which size.  If the value is too high, the
+ last indexed size will be the default.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">make</font></strong> (:<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">render_text_solid</font></strong> (:<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>,:<a href="SDL_COLOR.html"><font color="#008000">SDL_COLOR</font></a>) :<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">close</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Close an opened font file
+</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_CDROM.html b/lib/unstable/sdl-binding/docs/html/SDL_CDROM.html
new file mode 100644
index 0000000..5db9b77
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_CDROM.html
@@ -0,0 +1,46 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp +</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<font color="#008000">SELF</font><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Create and Set the cdrom given a drive 
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_traempy</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  No CD-ROM
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_stopped</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Stopped status
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_playing</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Playing status
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_paused</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Paused status
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_error</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Error status
+
+ DEVICES
+
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">nb_drives</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Returns the number of CD-ROM drives on the system, or -1 if 
+  or  has not be called before.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">drive_name</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="STRING.html"><font color="#008000">STRING</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Returns a human-readable, system-dependent identifier for a given CD-ROM 
+ drive . Example:  or 
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">status</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  This function returns the current status of the CD-ROM drive.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_indrive</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Given a status, returns  if there's a disk in the drive
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_play_tracks</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Play the given CD starting at  and  for 
+ tracks and  frames.  If both  and  are 0, play 
+ until the end of the CD.  This function will skip data tracks.
+ This slot should only be called after calling the slot  to 
+ get track information about the CD.
+ This function returns 0, or -1 if there was an error.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_play</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <strong><font color="#0000FF">length</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp   Play the given CD starting at  frame for  frames.
+  It returns , or  if there was an error.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_pause</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set the CD-ROM to pause.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_resume</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Resume CD-ROM.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_stop</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Stop playing CD-ROM.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">eject</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Eject CD-ROM.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">close</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Close CD-ROM drive handling.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_numtracks</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Return the number of tracks of the CD-ROM else 0.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_cur_track</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Current track position
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_cur_track_length</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Length, in frames, of the current track
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_track_length</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Length, in frames, of a given track.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_cur_frame</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Current frame offset within current track
+</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_CDROMT.html b/lib/unstable/sdl-binding/docs/html/SDL_CDROMT.html
new file mode 100644
index 0000000..4eca7e8
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_CDROMT.html
@@ -0,0 +1,38 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp +</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong>:<font color="#008000">SELF</font><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Create
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create_with</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<font color="#008000">SELF</font><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Create and Set the cdrom given a drive 
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">open</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Opens a CD-ROM drive for access. This newly opened CD-ROM becomes the 
+ default CD used. Drives are numbered starting with .  Drive  is the
+ system default CD-ROM.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">status</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  This function returns the current status of the CD-ROM drive.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_indrive</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Given a status, returns  if there's a disk in the drive
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_play_tracks</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Play the given CD starting at  and  for 
+ tracks and  frames.  If both  and  are 0, play 
+ until the end of the CD.  This function will skip data tracks.
+ This slot should only be called after calling the slot  to 
+ get track information about the CD.
+ This function returns 0, or -1 if there was an error.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_play</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <strong><font color="#0000FF">length</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp   Play the given CD starting at  frame for  frames.
+  It returns , or  if there was an error.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_pause</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set the CD-ROM to pause.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_resume</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Resume CD-ROM.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_stop</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Stop playing CD-ROM.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">eject</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Eject CD-ROM.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">close</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Close CD-ROM drive handling.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_numtracks</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Return the number of tracks of the CD-ROM else 0.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_cur_track</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Current track position
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_cur_track_length</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Length, in frames, of the current track
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_track_length</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Length, in frames, of a given track.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_cur_frame</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Current frame offset within current track
+</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_CHUNK.html b/lib/unstable/sdl-binding/docs/html/SDL_CHUNK.html
new file mode 100644
index 0000000..c102607
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_CHUNK.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp +</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_any</font></strong>:<a href="ANY.html"><font color="#008000">ANY</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong>:<font color="#008000">SELF</font><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">make</font></strong>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_COLOR.html b/lib/unstable/sdl-binding/docs/html/SDL_COLOR.html
new file mode 100644
index 0000000..a364a7d
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_COLOR.html
@@ -0,0 +1,21 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong>:<font color="#008000">SELF</font><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_all</font></strong> (:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>) <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set ,  and  values
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_r</font></strong> :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set the  value.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_g</font></strong> :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set the  value.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_b</font></strong> :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set the  value.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_all</font></strong>:(<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>)<br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Return a vector with 3 values (r,g,b).
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">r</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Return the  value.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">g</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Return the  value.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">b</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Return the  value.
+</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_COLOR_HACK.html b/lib/unstable/sdl-binding/docs/html/SDL_COLOR_HACK.html
new file mode 100644
index 0000000..691a40a
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_COLOR_HACK.html
@@ -0,0 +1,21 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Insert</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_all</font></strong> (:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>) <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set ,  and  values
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_r</font></strong> :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set the  value.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_g</font></strong> :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set the  value.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_b</font></strong> :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set the  value.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_all</font></strong>:(<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>)<br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Return a vector with 3 values (r,g,b).
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">r</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Return the  value.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">g</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Return the  value.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">b</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Return the  value.
+</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_CPUINFO.html b/lib/unstable/sdl-binding/docs/html/SDL_CPUINFO.html
new file mode 100644
index 0000000..d252154
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_CPUINFO.html
@@ -0,0 +1,21 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">has_rdtsc</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Returns true if the CPU has the RDTSC instruction 
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">has_mmx</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Returns true if the CPU has MMX features
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">has_mmx_ext</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Returns true if the CPU has MMX Ext. features
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">has_3dnow</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Returns true if the CPU has 3DNow features
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">has_3dnow_ext</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Returns true if the CPU has 3DNow! Ext. features
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">has_sse</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Returns true if the CPU has SSE features
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">has_sse2</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Returns true if the CPU has SSE2 features
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">has_altivec</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Returns true if the CPU has AltiVec features
+</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_CURSOR.html b/lib/unstable/sdl-binding/docs/html/SDL_CURSOR.html
new file mode 100644
index 0000000..fd9cf8b
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_CURSOR.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="SDL_SETTINGS.html"><font color="#008000">SDL_SETTINGS</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_ERROR.html b/lib/unstable/sdl-binding/docs/html/SDL_ERROR.html
new file mode 100644
index 0000000..e6f55c6
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_ERROR.html
@@ -0,0 +1,16 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set</font></strong> :<a href="STRING.html"><font color="#008000">STRING</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Push an error
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get</font></strong>:<a href="STRING.html"><font color="#008000">STRING</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  get latest pushed error
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">clear</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Clear all errors
+</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_EVENT.html b/lib/unstable/sdl-binding/docs/html/SDL_EVENT.html
new file mode 100644
index 0000000..8a13f65
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_EVENT.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp +</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong>:<font color="#008000">SELF</font><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Create the SDL_Event pointer
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">active_event</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Application loses/gains visibility
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">key_down</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Keys pressed
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">key_up</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Keys released 
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mouse_motion</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Mouse moved
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mouse_button_down</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Mouse button pressed
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mouse_button_up</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Mouse button released
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joy_axis_motion</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Joystick axis motion
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joy_ball_motion</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Joystick trackball motion
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joy_hat_motion</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Joystick hat position change
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joy_button_down</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Joystick button pressed
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joy_button_up</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Joystick button released
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">sdl_quit</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  User-requested quit
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">sys_wm_event</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  System specific event
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">video_resize</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  User resized video mode
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">video_expose</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Screen needs to be redrawn
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">user_event</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Events SDL_USEREVENT through SDL_MAXEVENTS-1 are for your use </font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">state_query</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">state_ignore</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">state_disable</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">state_enable</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">action_add</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">action_peek</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">action_get</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">released</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">pressed</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">type</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Get the event type
+ EVENT
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">active_type</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">active_gain</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Whether given states were gained or lost (1/0)
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">active_state</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  A mask of the focus states
+ KEYBOARD
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">key_type</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp   or 
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">key_which</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  The keyboard device index
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">key_state</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  SDL_PRESSED or SDL_RELEASED
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">key_keysym</font></strong>:<a href="SDL_KEYSYM.html"><font color="#008000">SDL_KEYSYM</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">motion_type</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">motion_which</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  The mouse device index
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">motion_state</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  The current button state
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">motion_x</font></strong>:<a href="UINTEGER_16.html"><font color="#008000">UINTEGER_16</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  The X coordinate of the mouse
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">motion_y</font></strong>:<a href="UINTEGER_16.html"><font color="#008000">UINTEGER_16</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  The Y coordinate of the mouse
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">motion_xrel</font></strong>:<a href="INTEGER_16.html"><font color="#008000">INTEGER_16</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  The relative motion in the X direction
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">motion_yrel</font></strong>:<a href="INTEGER_16.html"><font color="#008000">INTEGER_16</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  The relative motion in the Y direction
+ MOUSE BUTTON
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">button_type</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp   or  
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">button_which</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  The mouse device index
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">button_button</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  The mouse button index
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">button_state</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp   or 
+TODO
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">poll</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Polls for currently pending events, and returns  if there are any
+ pending events, or  if there are none available.  If  is not
+ NULL, the next event is removed from the queue and stored in that area.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">wait</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Waits indefinitely for the next available event, returning , or
+  if there was an error while waiting for events.  If  is not
+ NULL, the next event is removed from the queue and stored in that area.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">push</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Add an event to the event queue. This function returns 0 on success, or
+ -1 if the event queue was full or there was some other error.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">peep</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Checks the event queue for messages and optionally returns them.
+
+ If  is , up to  events will be
+ added to the back of the event queue.  If  is
+ , up to  events at the front of the event
+ queue, matching , will be returned and will not be removed from the
+ queue.  If  is , up to  events at
+ the front of the event queue, matching 'mask', will be returned and will
+ be removed from the queue.
+
+ This function returns the number of events actually stored, or  if
+ there was an error.
+ 
+ This function is thread-safe.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">state_handle</font></strong> :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> <strong><font color="#0000FF">to</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  This function allows you to set the state of processing certain events.
+ If  is set to , that event will be automatically dropped
+ from the event queue and will not event be filtered.
+ If  is set to , that event will be processed normally.
+ If  is set to ,  will return the 
+ current processing state of the specified event.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">pump_events</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Pumps the event loop, gathering events from the input devices.
+ This function updates the event queue and internal input device state.
+ This should only be run in the thread that sets the video mode.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">event_state</font></strong> (:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  This function allows you to set the state of processing certain events.
+ If  is set to , that event will be
+ automatically dropped from the event queue and will not event be filtered.
+ If  is set to , that event will be
+ processed normally.  If  is set to ,
+  will return the current processing state of the specified
+ event.
+</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_EVENT_TYPE.html b/lib/unstable/sdl-binding/docs/html/SDL_EVENT_TYPE.html
new file mode 100644
index 0000000..7bc5a03
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_EVENT_TYPE.html
@@ -0,0 +1,28 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">active_event</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Application loses/gains visibility
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">key_down</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Keys pressed
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">key_up</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Keys released 
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mouse_motion</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Mouse moved
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mouse_button_down</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Mouse button pressed
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mouse_button_up</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Mouse button released
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joy_axis_motion</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Joystick axis motion
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joy_ball_motion</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Joystick trackball motion
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joy_hat_motion</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Joystick hat position change
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joy_button_down</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Joystick button pressed
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joy_button_up</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Joystick button released
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">sdl_quit</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  User-requested quit
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">sys_wm_event</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  System specific event
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">video_resize</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  User resized video mode
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">video_expose</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Screen needs to be redrawn
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">user_event</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Events SDL_USEREVENT through SDL_MAXEVENTS-1 are for your use </font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_FLAG.html b/lib/unstable/sdl-binding/docs/html/SDL_FLAG.html
new file mode 100644
index 0000000..588a265
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_FLAG.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">srccolorkey</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">anyformat</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Allow any video depth/pixel-format
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hwpalette</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Surface has exclusive palette
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">doublebuf</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set up double-buffered video mode
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">fullscreen</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Surface is a full screen display
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">opengl</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Create an OpenGL rendering context
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">openglblit</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Create an OpenGL rendering context and use it for blitting
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">resizable</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  This video mode may be resized
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">noframe</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  No window caption or edge frame
+ TODO: /</font></strong></em><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp available_for_sdlcreatergbsurface_or_sdlsetvideomode_</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">swsurface</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Surface is in system memory 
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hwsurface</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp Surface is in video memory
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">asynblit</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp Use asynchronous blits if possible </font></strong></em><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp todo__flags_for_sdlsetpalette__define_sdllogpal_xdefine_sdlphyspal_x</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_INIT.html b/lib/unstable/sdl-binding/docs/html/SDL_INIT.html
new file mode 100644
index 0000000..5380b13
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_INIT.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="SDL_SETTINGS.html"><font color="#008000">SDL_SETTINGS</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_title</font></strong> :<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_resolution</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_bits</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_fullscreen</font></strong> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_timer</font></strong> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_audio</font></strong> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_video</font></strong> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_cdrom</font></strong> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_joystick</font></strong> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_everything</font></strong> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_no_parachute</font></strong> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_event_thread</font></strong> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">quit</font></strong>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_JOYSTICK.html b/lib/unstable/sdl-binding/docs/html/SDL_JOYSTICK.html
new file mode 100644
index 0000000..a457d4f
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_JOYSTICK.html
@@ -0,0 +1,48 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp +</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_any</font></strong>:<a href="ANY.html"><font color="#008000">ANY</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong>:<font color="#008000">SELF</font><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create_witch</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<font color="#008000">SELF</font><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hat_centered</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hat_up</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hat_right</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hat_down</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hat_left</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hat_rightup</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hat_rightdown</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hat_leftup</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hat_leftdown</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">make</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">open</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Open a joystick for use.
+ The index passed as an argument refers to the N'th joystick on the system.
+ This index is the value which will identify this joystick in future
+ joystick events. This function returns a joystick identifier, or NULL if
+ an error occurred.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">index</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Get the device index of the opened joystick.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">num_axes</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Get the number of general axis controls on the opened joystick
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">num_balls</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Get the number of trackballs on a joystick. Joystick trackballs have only
+ relative motion events associated with them and their state cannot be
+ polled.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">num_hats</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Get the number of POV hats on a joystick
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">num_buttons</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Get the number of buttons on the opened joystick
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_axis</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Get the current state of an axis control on the opened joystick The axis
+ indices start at index 0.  The return state is a value ranging from
+  to .
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_hat</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Get the current state of a POV hat on a joystick. The hat indices start at
+ index .
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_ball</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Get the ball axis change since the last poll
+ The ball indices start at index .
+ This returns , or  if you passed it invalid parameters.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_button</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Get the current state of a button on the opened joystick. The button
+ indices start at index .
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">close</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Close a joystick previously opened with 
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joystick_name</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="STRING.html"><font color="#008000">STRING</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Get the implementation dependent name of a joystick.
+ This can be called before any joysticks are opened.
+ If no name can be found, this function returns NULL.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">opened</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Returns 1 if the joystick has been opened, or 0 if it has not.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">num_joysticks</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Count the number of joysticks attached to the system
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">update</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp   Update the current state of the open joysticks. This is called
+  automatically by the event loop if any joystick events are enabled.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">event_state</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Enable/disable joystick event polling. If joystick events are disabled,
+ you must call  yourself and check the state of the
+ joystick when you want joystick information.
+ The state can be one of ,  or
+ .
+</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_KEYBOARD.html b/lib/unstable/sdl-binding/docs/html/SDL_KEYBOARD.html
new file mode 100644
index 0000000..88cff1e
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_KEYBOARD.html
@@ -0,0 +1,34 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">delay</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  SDL default value is 500;
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">interval</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  SDL default velur is 30
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">enable_key_repeat</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Enable/Disable keyboard repeat.  Keyboard repeat defaults to off.
+  is the initial delay in ms between the time when a key is
+ pressed, and keyboard repeat begins.
+  is the time in ms between keyboard repeat events.
+ If  is set to 0, keyboard repeat is disabled.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_defaut_key_repeat</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set good default value provided by the SDL library
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_key_repeat</font></strong>:(<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>)<br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Get  and  values
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">previous_state</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Previous unicode state
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">enable_unicode</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Enable/Disable UNICODE translation of keyboard input.
+ This translation has some overhead, so translation defaults off.
+ If  is 1, translation is enabled.
+ If  is 0, translation is disabled.
+ If  is -1, the translation state is not changed.
+ This function set the  slot
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_mod_state</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Get the current key modifier state
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_mod_state</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set the current key modifier state.
+ This does not change the keyboard state, only the key modifier flags.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_key_name</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="STRING.html"><font color="#008000">STRING</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Get the name of an SDL virtual keysym
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_key_state</font></strong>:<a href="FAST_ARRAY.html"><font color="#008000">FAST_ARRAY</font></a>(<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>)<br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Memory buffer of the current keyboard. Get a snapshot of the current state
+ of the keyboard. Returns an array of keystates, indexed by the SDLK_</font></strong></em><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp syms</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_KEYCODE.html b/lib/unstable/sdl-binding/docs/html/SDL_KEYCODE.html
new file mode 100644
index 0000000..67120bb
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_KEYCODE.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_keycode</font></strong>:<strong><font color="#A020F0">Expanded</font></strong> <a href="SDL_ABSTRACT_KEYCODE.html"><font color="#008000">SDL_ABSTRACT_KEYCODE</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">make</font></strong><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_key</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_KEYSYM.html b/lib/unstable/sdl-binding/docs/html/SDL_KEYSYM.html
new file mode 100644
index 0000000..87a94b0
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_KEYSYM.html
@@ -0,0 +1,20 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">scancode</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  hardware specific scancode
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">sym</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  SDL virtual keysym 
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  current key modifiers
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">unicode</font></strong>:<a href="UINTEGER_16.html"><font color="#008000">UINTEGER_16</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  translated character
+
+ ASCII MAPPED KEYSYMS
+
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">backspace</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">tab</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">clear</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">return</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">pause</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">escape</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">space</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">exclaim</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">quotedbl</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hash</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">dollar</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">ampersand</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">quote</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">leftparen</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rightparen</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">asterisk</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">plus</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">comma</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">minus</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">period</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">slash</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_0</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_1</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_2</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_3</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_4</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_5</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_6</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_7</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_8</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_9</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">colon</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">semicolon</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">less</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">equals</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">greater</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">at</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">leftbracket</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">backslash</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rightbracket</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">caret</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">underscore</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">backquote</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">a</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">b</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">c</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">d</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">e</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">g</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">h</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">i</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">j</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">l</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">m</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">n</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">o</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">p</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">q</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">r</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">s</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">t</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">u</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">v</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">w</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">x</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">y</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">z</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">delete</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">up</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">down</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">right</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">left</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">insert</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">home</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">end</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">pageup</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">pagedown</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f1</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f2</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f3</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f4</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f5</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f6</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f7</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f8</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f9</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f10</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f11</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f12</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f13</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f14</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f15</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">numlock</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">capslock</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">scrollock</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rshift</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">lshift</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rctrl</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">lctrl</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">ralt</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">lalt</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rmeta</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">lmeta</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">lsuper</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rsuper</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mode</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">compose</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">help</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">print</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">sysreq</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">break</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">menu</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">power</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">euro</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">undo</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_0</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_1</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_2</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_3</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_4</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_5</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_6</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_7</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_8</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_9</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_period</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_divide</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_multiply</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_minus</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_plus</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_enter</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_equals</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_none</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_shift</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_lshift</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_rshift</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_ctrl</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_lctrl</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_rctrl</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_alt</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_lalt</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_ralt</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_meta</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_lmeta</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_rmeta</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_num</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_caps</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_mode</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_MIXER.html b/lib/unstable/sdl-binding/docs/html/SDL_MIXER.html
new file mode 100644
index 0000000..75693bf
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_MIXER.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp +</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">audio_rate</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">audio_channels</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">audio_buffers</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">audio_format</font></strong>:<a href="UINTEGER_16.html"><font color="#008000">UINTEGER_16</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">chuck_size</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">audio_s16</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">audio_s8</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mus_none</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mus_cmd</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mus_wav</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mus_mod</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mus_mid</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mus_ogg</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mus_mp3</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mus_mp3_mad</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">query_spec</font></strong>:(<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>)<br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">open_audio</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">load_wav</font></strong> :<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">play_channel</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">halt_channel</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">load_music</font></strong> :<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">play_music</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hook_music_finished</font></strong><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">allocate_channels</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_distance</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">volume</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">volume_music</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">halt_music</font></strong><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">free_music</font></strong><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">close_audio</font></strong>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_MOUSE.html b/lib/unstable/sdl-binding/docs/html/SDL_MOUSE.html
new file mode 100644
index 0000000..277d56e
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_MOUSE.html
@@ -0,0 +1,27 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_state</font></strong>:(<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>)<br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Retrieve the current state of the mouse.
+ The current button state is returned as a button bitmask, which can
+ be tested using the SDL_BUTTON(X) macros, and x and y are set to the
+ current mouse cursor position.  You can pass NULL for either x or y.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_relative_state</font></strong>:(<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>)<br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Retrieve the current state of the mouse.
+ The current button state is returned as a button bitmask, which can
+ be tested using the SDL_BUTTON(X) macros, and x and y are set to the
+ mouse deltas since the last call to SDL_GetRelativeMouseState().
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">warp</font></strong> (:<a href="UINTEGER_16.html"><font color="#008000">UINTEGER_16</font></a>,:<a href="UINTEGER_16.html"><font color="#008000">UINTEGER_16</font></a>) <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set the position of the mouse cursor (generates a mouse motion event)
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">show_cursor</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Toggle whether or not the cursor is shown on the screen.
+ The cursor start displayed, but can be turned off.
+  returns TRUE if the cursor was being displayed
+ before the call, or FALSE if it was not. You can query the current
+ state by passing a  value of -1.
+</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_MUSIC.html b/lib/unstable/sdl-binding/docs/html/SDL_MUSIC.html
new file mode 100644
index 0000000..c102607
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_MUSIC.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp +</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_any</font></strong>:<a href="ANY.html"><font color="#008000">ANY</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong>:<font color="#008000">SELF</font><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">make</font></strong>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_PALETTE.html b/lib/unstable/sdl-binding/docs/html/SDL_PALETTE.html
new file mode 100644
index 0000000..bbaa83d
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_PALETTE.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp +</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_PIXEL_FORMAT.html b/lib/unstable/sdl-binding/docs/html/SDL_PIXEL_FORMAT.html
new file mode 100644
index 0000000..9e03e7c
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_PIXEL_FORMAT.html
@@ -0,0 +1,15 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp +</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">bits_per_pixel</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">bytes_per_pixel</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rloss</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">gloss</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">bloss</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">aloss</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rshift</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">gshift</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">bshift</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">ashift</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rmask</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">gmask</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">bmask</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">amask</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">colorkey</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  RGB color key information.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">alpha</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Alpha value information (per-surface alpha).
+</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_RECT.html b/lib/unstable/sdl-binding/docs/html/SDL_RECT.html
new file mode 100644
index 0000000..f673fe6
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_RECT.html
@@ -0,0 +1,29 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp +</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong>:<a href="SDL_RECT.html"><font color="#008000">SDL_RECT</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp 
+ GET:
+
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_all</font></strong>:(<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>)<br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Return a vector with 4 values (x,y,w,h).
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">x</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Return the  position value.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">y</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Return the  position value.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">w</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Return the  size value.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">h</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Return the  size value.
+
+ SET: 
+
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_all</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set all values (x,y,w,h).
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_x</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set the  position.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_y</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set the  position.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_w</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set the  size.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_h</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set the  size.
+</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_ROTOZOOM.html b/lib/unstable/sdl-binding/docs/html/SDL_ROTOZOOM.html
new file mode 100644
index 0000000..07097e2
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_ROTOZOOM.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp +</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rotozoom_surface</font></strong> (:<a href="SDL_SURFACE_T.html"><font color="#008000">SDL_SURFACE_T</font></a>,:<a href="REAL_64.html"><font color="#008000">REAL_64</font></a>,:<a href="REAL_64.html"><font color="#008000">REAL_64</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :<a href="SDL_SURFACE_T.html"><font color="#008000">SDL_SURFACE_T</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_SETTINGS.html b/lib/unstable/sdl-binding/docs/html/SDL_SETTINGS.html
new file mode 100644
index 0000000..d544c7c
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_SETTINGS.html
@@ -0,0 +1,28 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">width</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Screen width.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">height</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Screen height.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">bits</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Screen color 16,24,32 bits.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">title</font></strong>:<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Window title.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">video_mode</font></strong>:<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Setted video mode.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">fullscreen</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Is application in fullscreen mode.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">showcursor</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Is the cursor displayed.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_timer</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Timer has been initialized.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_audio</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Audio has been initialized.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_video</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Video has been initialized.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_cdrom</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Cdrom has been initialized.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_joystick</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Joystick has been initialized.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_everything</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  All above
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_no_parachute</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Prevents from catching fatal signals
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_event_thread</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Runs the event manager in a separated thread
+</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_SURFACE.html b/lib/unstable/sdl-binding/docs/html/SDL_SURFACE.html
new file mode 100644
index 0000000..b3a3756
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_SURFACE.html
@@ -0,0 +1,54 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp +</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong>:<font color="#008000">SELF</font><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Create the SDL_Surface structure
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create_from_bmp</font></strong> :<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> :<font color="#008000">SELF</font><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Load a BMP file with path+name (ie. /data/image.bmp).
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create_from_image</font></strong> :<a href="ABSTRACT_STRING.html"><font color="#008000">ABSTRACT_STRING</font></a> :<font color="#008000">SELF</font><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Load a BMP file with path+name (ie. /data/image.bmp).
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create_rgb_surface</font></strong> (:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <strong><font color="#0000FF">with_mask</font></strong> (:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>,:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>,:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>,:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) :<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">swsurface</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Surface is in system memory 
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hwsurface</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Surface is in video memory
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">asyncblit</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Use asynchronous blits if possible </font></strong></em><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp sdl_palette_flags</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">logpal</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">physpal</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">srccolorkey</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rleaccel</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">flip</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  On hardware that supports double-buffering, this function sets up a flip
+ and returns. The hardware will wait for vertical retrace, and then swap
+ video buffers before the next video surface blit or lock will return.  On
+ hardware that doesn not support double-buffering, this is equivalent to
+ calling ; The  flag must
+ have been passed to  when setting the video mode for this
+ function to perform hardware flipping. This function returns 0 if
+ successful, or -1 if there was an error.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">blit_surface</font></strong> (:<a href="SDL_RECT.html"><font color="#008000">SDL_RECT</font></a>,:<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a>,:<a href="SDL_RECT.html"><font color="#008000">SDL_RECT</font></a>) <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">blit_surface_no_src</font></strong> (:<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a>,:<a href="SDL_RECT.html"><font color="#008000">SDL_RECT</font></a>) <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">blit_surface_no_src_no_dst</font></strong> :<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a> <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">fill_rect</font></strong> (:<a href="SDL_RECT.html"><font color="#008000">SDL_RECT</font></a>,:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  This function performs a fast fill of the given rectangle with 
+ The given rectangle is clipped to the destination surface clip area
+ and the final fill rectangle is saved in the passed in pointer.
+ This function returns 0 on success, or -1 on error.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">fill_rect_no_dst</font></strong> :<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  If 'dstrect' is NULL, the whole surface will be filled with 
+ This function performs a fast fill of the given rectangle with .
+ The color should be a pixel of the format used by the surface, and 
+ can be generated by the  function.
+ This function returns 0 on success, or -1 on error.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">line_from</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <strong><font color="#0000FF">to</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <strong><font color="#0000FF">color</font></strong> :<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Draw a line from (x1,y1) to (x2,y2) color  into screen
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_palette</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="FAST_ARRAY.html"><font color="#008000">FAST_ARRAY</font></a>(<a href="SDL_COLOR_HACK.html"><font color="#008000">SDL_COLOR_HACK</font></a>),:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_palette_pointer</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="FAST_ARRAY.html"><font color="#008000">FAST_ARRAY</font></a>(<a href="SDL_COLOR_HACK.html"><font color="#008000">SDL_COLOR_HACK</font></a>),:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">update_rect</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>,:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">update_rects</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="SDL_RECT.html"><font color="#008000">SDL_RECT</font></a>) <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_color_key</font></strong> (:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>,:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">convert_surface</font></strong> (:<a href="NATIVE_ARRAY.html"><font color="#008000">NATIVE_ARRAY</font></a>(<a href="SDL_PIXEL_FORMAT.html"><font color="#008000">SDL_PIXEL_FORMAT</font></a>),:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) :<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">display_format</font></strong>:<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">w</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Surface width. (READ ONLY)
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">h</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Surface height (READ_ONLY)
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">pitch</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">format_palette_ncolors</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">flags</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">load</font></strong> :<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Load an image.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">pixel_format</font></strong>:<a href="SDL_PIXEL_FORMAT.html"><font color="#008000">SDL_PIXEL_FORMAT</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">pixels</font></strong>:<a href="FAST_ARRAY.html"><font color="#008000">FAST_ARRAY</font></a>(<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>)<br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">format_palette_colors</font></strong>:<a href="FAST_ARRAY.html"><font color="#008000">FAST_ARRAY</font></a>(<a href="SDL_COLOR_HACK.html"><font color="#008000">SDL_COLOR_HACK</font></a>)<br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">format_palette</font></strong>:<a href="NATIVE_ARRAY.html"><font color="#008000">NATIVE_ARRAY</font></a>(<a href="SDL_PALETTE.html"><font color="#008000">SDL_PALETTE</font></a>)<br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">format</font></strong>:<a href="NATIVE_ARRAY.html"><font color="#008000">NATIVE_ARRAY</font></a>(<a href="SDL_PIXEL_FORMAT.html"><font color="#008000">SDL_PIXEL_FORMAT</font></a>)<br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">lock</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp   sets up a surface for directly accessing the pixels.  Between calls
+ to /, you can write to and read from , using
+ the pixel format stored in .  Once you are done accessing
+ the surface, you should use  to release it.
+ 
+ Not all surfaces require locking. If  evaluates to
+ 0, then you can read and write to the surface at any time, and the pixel
+ format of the surface will not change.  In particular, if the
+  flag is not given when calling , you will not
+ need to lock the display surface before accessing it.
+  
+ No operating system or library calls should be made between lock/unlock
+ pairs, as critical system locks may be held during this time.
+ 
+ It returns 0, or -1 if the surface couldn't be locked.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">unlock</font></strong>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_SURFACET.html b/lib/unstable/sdl-binding/docs/html/SDL_SURFACET.html
new file mode 100644
index 0000000..3bc881d
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_SURFACET.html
@@ -0,0 +1,24 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp +</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong>:<font color="#008000">SELF</font><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Create the SDL_Surface structure
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create_with</font></strong> :<a href="POINTER.html"><font color="#008000">POINTER</font></a> :<font color="#008000">SELF</font><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">make</font></strong> :<a href="POINTER.html"><font color="#008000">POINTER</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp 
+ LOAD images:
+
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">load_bmp</font></strong> :<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Load a BMP file with path+name (ie. /data/image.bmp).
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">load</font></strong> :<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Load an image.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">value</font></strong>:<a href="POINTER.html"><font color="#008000">POINTER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Don't use it unless you know what you are doing
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">is_null</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Return  if no image loaded
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">is_not_null</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Return  if no image loaded
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">w</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Surface width. (READ ONLY)
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">h</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Surface height (READ_ONLY)
+</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_TIMER.html b/lib/unstable/sdl-binding/docs/html/SDL_TIMER.html
new file mode 100644
index 0000000..f49e9e9
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_TIMER.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_ticks</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">delay</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> 
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_TTF.html b/lib/unstable/sdl-binding/docs/html/SDL_TTF.html
new file mode 100644
index 0000000..6230ab1
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_TTF.html
@@ -0,0 +1,21 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp +</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">major</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">minor</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">patch_level</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">style_normal</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">style_bold</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">style_italic</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">style_underline</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">print_version</font></strong><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Initialize the TTF engine - returns 0 if successful, -1 on error
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">quit</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  De-initialize the TTF engine
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">was_init</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Check if the TTF engine is initialized
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">open_font</font></strong> (:<a href="ABSTRACT_STRING.html"><font color="#008000">ABSTRACT_STRING</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :<font color="#008000">SELF</font><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Open a font file and create a font of the specified point size.  Some .fon
+ fonts will have several sizes embedded in the file, so the point size
+ becomes the index of choosing which size.  If the value is too high, the
+ last indexed size will be the default.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">make</font></strong> (:<a href="ABSTRACT_STRING.html"><font color="#008000">ABSTRACT_STRING</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">render_text_solid</font></strong> (:<a href="ABSTRACT_STRING.html"><font color="#008000">ABSTRACT_STRING</font></a>,:<a href="SDL_COLOR.html"><font color="#008000">SDL_COLOR</font></a>) :<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">close</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Close an opened font file
+</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_VERSION.html b/lib/unstable/sdl-binding/docs/html/SDL_VERSION.html
new file mode 100644
index 0000000..3825a4b
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_VERSION.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">major</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">minor</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">patch_level</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">print</font></strong>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_VIDEO.html b/lib/unstable/sdl-binding/docs/html/SDL_VIDEO.html
new file mode 100644
index 0000000..a14d704
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_VIDEO.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">anyformat</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Allow any video depth/pixel-format
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hwpalette</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Surface has exclusive palette
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">doublebuf</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set up double-buffered video mode
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">fullscreen</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Surface is a full screen display
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">opengl</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Create an OpenGL rendering context
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">openglblit</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Create an OpenGL rendering context and use it for blitting
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">resizable</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  This video mode may be resized
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">noframe</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  No window caption or edge frame
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">swsurface</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Surface is in system memory 
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hwsurface</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Surface is in video memory
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">asyncblit</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Use asynchronous blits if possible </font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">logpal</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">physpal</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">yv12_overlay</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Planar mode: Y + V + U  (3 planes)
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">iyuv_overlay</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Planar mode: Y + U + V  (3 planes)
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">yuy2_overlay</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Packed mode: Y0+U0+Y1+V0 (1 plane)
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">uyvy_overlay</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Packed mode: U0+Y0+V0+Y1 (1 plane)
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">yvyu_overlay</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Packed mode: Y0+V0+Y1+U0 (1 plane)
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_mode</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) :<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Set up a video mode with the specified width, height and bits-per-pixel.
+
+ If ' is 0, it is treated as the current display bits per pixel.
+
+ If  is set in , the SDL library will try to set the
+ requested bits-per-pixel, but will return whatever video pixel format is
+ available.  The default is to emulate the requested pixel format if it is
+ not natively available.
+
+ If  is set in , the video surface will be placed in
+ video memory, if possible, and you may have to call SDL_LockSurface() in
+ order to access the raw framebuffer.  Otherwise, the video surface will be
+ created in system memory.
+
+ If  is set in , SDL will try to perform rectangle
+ updates asynchronously, but you must always lock before accessing pixels.
+ SDL will wait for updates to complete before returning from the lock.
+
+ If  is set in , the SDL library will guarantee that the
+ colors set by  will be the colors you get.  Otherwise, in
+ 8-bit mode,  may not be able to set all of the colors
+ exactly the way they are requested, and you should look at the video
+ surface structure to determine the actual palette.  If SDL cannot
+ guarantee that the colors you request can be set, i.e. if the colormap is
+ shared, then the video surface may be created under emulation in system
+ memory, overriding the  flag.
+
+ If  is set in , the SDL library will try to set a
+ fullscreen video mode. The default is to create a windowed mode if the
+ current graphics system has a window manager. If the SDL library is able
+ to set a fullscreen video mode, this flag will be set in the surface that
+ is returned.
+
+ If  is set in , the SDL library will try to set up two
+ surfaces in video memory and swap between them when you call .
+ This is usually slower than the normal single-buffering scheme, but
+ prevents "tearing" artifacts caused by modifying video memory while the
+ monitor is refreshing.  It should only be used by applications that redraw
+ the entire screen on every update.
+
+ If  is set in , the SDL library will allow the window
+ manager, if any, to resize the window at runtime.  When this occurs, SDL
+ will send a SDL_VIDEORESIZE event to you application, and you must respond
+ to the event by re-calling  with the requested size (or
+ another size that suits the application).
+
+ If  is set in , the SDL library will create a window
+ without any title bar or frame decoration.  Fullscreen video modes have
+ this flag set automatically.
+
+ This function returns the video framebuffer surface, or NULL if it fails.
+
+ If you rely on functionality provided by certain video flags, check the
+ flags of the returned surface to make sure that functionality is available.
+ SDL will fall back to reduced functionality if the exact flags you wanted
+ are not available.
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">video_mode_ok</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Check to see if a particular video mode is supported.  It returns 0 if the
+ requested mode is not supported under any bit depth, or returns the
+ bits-per-pixel of the closest available mode with the given width and
+ height.  If this bits-per-pixel is different from the one used when
+ setting the video mode,  will succeed, but will emulate
+ the requested bits-per-pixel with a shadow surface.
+
+ The arguments to  are the same ones you would pass to
+ .
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">map_rgb</font></strong> (:<a href="SDL_PIXEL_FORMAT.html"><font color="#008000">SDL_PIXEL_FORMAT</font></a>,:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>) :<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp Maps an RGB triple to an opaque pixel value for a given pixel format
+</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_WINDOW.html b/lib/unstable/sdl-binding/docs/html/SDL_WINDOW.html
new file mode 100644
index 0000000..f44c2ef
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_WINDOW.html
@@ -0,0 +1,18 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">iconify_window</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  See SDL_APPACTIVE loss event (see SDL_ActiveEvent)
+ Iconify/Minimise the window
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_caption</font></strong> (:<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>,:<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>) <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  set the window title and application name in the bar
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_title</font></strong> :<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_bmp_icon</font></strong> :<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Sets the icon for the display window.
+ Icon must be 32x32
+</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/SDL_WM.html b/lib/unstable/sdl-binding/docs/html/SDL_WM.html
new file mode 100644
index 0000000..ef078ce
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/SDL_WM.html
@@ -0,0 +1,18 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+<br><br><strong><font color="#A020F0">Inherit</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="SDL_SETTINGS.html"><font color="#008000">SDL_SETTINGS</font></a><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">iconify_window</font></strong><br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  See SDL_APPACTIVE loss event (see SDL_ActiveEvent)
+ Iconify/Minimise the window
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_caption</font></strong> (:<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>,:<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>) <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  set the window title and application name in the bar
+</font></strong></em><br><br><strong><font color="#A020F0">Public</font></strong><br><br><strong><font color="#FF0000">&nbsp &nbsp -</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_bmp_icon</font></strong> :<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <br><em><strong><font color="#707070">&nbsp &nbsp &nbsp &nbsp  Sets the icon for the display window.
+ Icon must be 32x32
+</font></strong></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/__SHORT_LISAAC_FORMAT__.html b/lib/unstable/sdl-binding/docs/html/__SHORT_LISAAC_FORMAT__.html
new file mode 100644
index 0000000..fa43362
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/__SHORT_LISAAC_FORMAT__.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+
+
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/audio.html b/lib/unstable/sdl-binding/docs/html/audio.html
new file mode 100644
index 0000000..c48fe0a
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/audio.html
@@ -0,0 +1,7 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_CHUNK.html" target="content">SDL_CHUNK</a>
+<br><a href="SDL_MIXER.html" target="content">SDL_MIXER</a>
+<br><a href="SDL_MUSIC.html" target="content">SDL_MUSIC</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/html/default.html b/lib/unstable/sdl-binding/docs/html/default.html
new file mode 100644
index 0000000..72ad31b
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/default.html
@@ -0,0 +1,6 @@
+<html><head><title>Proto</title></head>
+<body bgcolor="#FFFFFF">
+<H1>Lisaac documentation</H1>
+Select your prototype.
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/directory_list.html b/lib/unstable/sdl-binding/docs/html/directory_list.html
new file mode 100644
index 0000000..641931c
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/directory_list.html
@@ -0,0 +1,9 @@
+<html><head><title>List Directories</title></head>
+<body bgcolor="#FFFFFF">
+<a href="file_list.html" target="file">All</a>
+<br><a href="audio.html" target="file">audio</a>
+<br><a href="events.html" target="file">events</a>
+<br><a href="keyboard.html" target="file">keyboard</a>
+<br><a href="types.html" target="file">types</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/html/events.html b/lib/unstable/sdl-binding/docs/html/events.html
new file mode 100644
index 0000000..94e9cba
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/events.html
@@ -0,0 +1,5 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_EVENT.html" target="content">SDL_EVENT</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/html/file_list.html b/lib/unstable/sdl-binding/docs/html/file_list.html
new file mode 100644
index 0000000..1ddf923
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/file_list.html
@@ -0,0 +1,36 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_CHUNK.html" target="content">SDL_CHUNK</a>
+<br><a href="SDL_MIXER.html" target="content">SDL_MIXER</a>
+<br><a href="SDL_MUSIC.html" target="content">SDL_MUSIC</a>
+<br><a href="SDL_EVENT.html" target="content">SDL_EVENT</a>
+<br><a href="SDL_KEYBOARD.html" target="content">SDL_KEYBOARD</a>
+<br><a href="SDL_KEYSYM.html" target="content">SDL_KEYSYM</a>
+<br><a href="SDL_COLOR.html" target="content">SDL_COLOR</a>
+<br><a href="SDL_COLOR_HACK.html" target="content">SDL_COLOR_HACK</a>
+<br><a href="SDL_CURSOR.html" target="content">SDL_CURSOR</a>
+<br><a href="SDL_PALETTE.html" target="content">SDL_PALETTE</a>
+<br><a href="SDL_PIXEL_FORMAT.html" target="content">SDL_PIXEL_FORMAT</a>
+<br><a href="SDL_RECT.html" target="content">SDL_RECT</a>
+<br><a href="KEYCODE.html" target="content">KEYCODE</a>
+<br><a href="SDL.html" target="content">SDL</a>
+<br><a href="SDL_ACTIVE.html" target="content">SDL_ACTIVE</a>
+<br><a href="SDL_BLAH.html" target="content">SDL_BLAH</a>
+<br><a href="SDL_CDROM.html" target="content">SDL_CDROM</a>
+<br><a href="SDL_CPUINFO.html" target="content">SDL_CPUINFO</a>
+<br><a href="SDL_CURSOR.html" target="content">SDL_CURSOR</a>
+<br><a href="SDL_ERROR.html" target="content">SDL_ERROR</a>
+<br><a href="SDL_FLAG.html" target="content">SDL_FLAG</a>
+<br><a href="SDL_INIT.html" target="content">SDL_INIT</a>
+<br><a href="SDL_JOYSTICK.html" target="content">SDL_JOYSTICK</a>
+<br><a href="SDL_MOUSE.html" target="content">SDL_MOUSE</a>
+<br><a href="SDL_ROTOZOOM.html" target="content">SDL_ROTOZOOM</a>
+<br><a href="SDL_SURFACE.html" target="content">SDL_SURFACE</a>
+<br><a href="SDL_TIMER.html" target="content">SDL_TIMER</a>
+<br><a href="SDL_TTF.html" target="content">SDL_TTF</a>
+<br><a href="SDL_VERSION.html" target="content">SDL_VERSION</a>
+<br><a href="SDL_VIDEO.html" target="content">SDL_VIDEO</a>
+<br><a href="SDL_WINDOW.html" target="content">SDL_WINDOW</a>
+<br><a href="SDL_WM.html" target="content">SDL_WM</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/html/index.html b/lib/unstable/sdl-binding/docs/html/index.html
new file mode 100644
index 0000000..abe9ca0
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/index.html
@@ -0,0 +1,13 @@
+<html><head><title>Lisaac Documentation</title></head>
+<frameset cols="260,*" border="3" frameborder="yes" framespacing="5" scrolling="auto">
+  <frameset rows="50%,*" border="3" frameborder="yes" framespacing="5" scrolling="no">
+   <frame src="directory_list.html" frameborder="yes" scrolling="auto">
+   <frame src="file_list.html"      frameborder="yes" scrolling="auto" name="file">
+  </frameset>
+  <frame src="default.html" name="content">
+</frameset>
+<noframes>
+<h3>Frame Error</h3>
+<p>This web site works only with frames.</p>
+</noframes>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html/keyboard.html b/lib/unstable/sdl-binding/docs/html/keyboard.html
new file mode 100644
index 0000000..a1a1df6
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/keyboard.html
@@ -0,0 +1,6 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_KEYBOARD.html" target="content">SDL_KEYBOARD</a>
+<br><a href="SDL_KEYSYM.html" target="content">SDL_KEYSYM</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/html/low_level.html b/lib/unstable/sdl-binding/docs/html/low_level.html
new file mode 100644
index 0000000..4c9199f
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/low_level.html
@@ -0,0 +1,8 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_ABSTRACT_KEYCODE.html" target="content">SDL_ABSTRACT_KEYCODE</a>
+<br><a href="SDL_SETTINGS.html" target="content">SDL_SETTINGS</a>
+<br><a href="SDL_INIT.html" target="content">SDL_INIT</a>
+<br><a href="SDL_ABSTRACT_MUSIC_TYPE.html" target="content">SDL_ABSTRACT_MUSIC_TYPE</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/html/types.html b/lib/unstable/sdl-binding/docs/html/types.html
new file mode 100644
index 0000000..0b0cd1c
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/types.html
@@ -0,0 +1,10 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_COLOR.html" target="content">SDL_COLOR</a>
+<br><a href="SDL_COLOR_HACK.html" target="content">SDL_COLOR_HACK</a>
+<br><a href="SDL_CURSOR.html" target="content">SDL_CURSOR</a>
+<br><a href="SDL_PALETTE.html" target="content">SDL_PALETTE</a>
+<br><a href="SDL_PIXEL_FORMAT.html" target="content">SDL_PIXEL_FORMAT</a>
+<br><a href="SDL_RECT.html" target="content">SDL_RECT</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/html/unix.html b/lib/unstable/sdl-binding/docs/html/unix.html
new file mode 100644
index 0000000..46b98b2
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html/unix.html
@@ -0,0 +1,6 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_KEYCODE.html" target="content">SDL_KEYCODE</a>
+<br><a href="SDL_EVENT.html" target="content">SDL_EVENT</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/html_raw/KEYCODE.html b/lib/unstable/sdl-binding/docs/html_raw/KEYCODE.html
new file mode 100644
index 0000000..22c36a7
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/KEYCODE.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_keycode</font></strong>:<strong><font color="#A020F0">Expanded</font></strong> <a href="ABSTRACT_KEYCODE.html"><font color="#008000">ABSTRACT_KEYCODE</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">make</font></strong>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/OLD-unix.html b/lib/unstable/sdl-binding/docs/html_raw/OLD-unix.html
new file mode 100644
index 0000000..94e9cba
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/OLD-unix.html
@@ -0,0 +1,5 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_EVENT.html" target="content">SDL_EVENT</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/html_raw/OLD.html b/lib/unstable/sdl-binding/docs/html_raw/OLD.html
new file mode 100644
index 0000000..008cf1a
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/OLD.html
@@ -0,0 +1,7 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_KEYCODE.html" target="content">SDL_KEYCODE</a>
+<br><a href="SDL_ABSTRACT_MUSIC_TYPE.html" target="content">SDL_ABSTRACT_MUSIC_TYPE</a>
+<br><a href="SDL_ABSTRACT_KEYCODE.html" target="content">SDL_ABSTRACT_KEYCODE</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL.html b/lib/unstable/sdl-binding/docs/html_raw/SDL.html
new file mode 100644
index 0000000..8f56fcd
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL.html
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_timer</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_audio</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_video</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_cdrom</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_joystick</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_noparachute</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Don't catch fatal signals
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_eventthread</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Not supported on all OS's
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_everything</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init</font></strong> :<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// This function loads the SDL dynamically linked library and initializes 
+ the subsystems specified by  (and those satisfying dependencies)
+ Unless the  flag is set, it will install cleanup signal
+ handlers for some commonly ignored fatal signals (like SIGSEGV)
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_subsystem</font></strong> :<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// This function initializes specific SDL subsystems
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">was_init</font></strong> :<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a> :<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// This function returns mask of the specified subsystems which have been
+ initialized. If  is 0, it returns a mask of all initialized
+ subsystems.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">quit_subsystem</font></strong> :<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a> <em><font color="#FF0000">// This function cleans up specific SDL subsystems
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">quit</font></strong><em><font color="#FF0000">// This function cleans up all initialized subsystems and unloads the
+ dynamically linked library. You should call it upon all exit conditions.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_timer</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_audio</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_video</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_cdrom</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_joystick</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_noparachute</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_eventthread</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_everything</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">unset_timer</font></strong><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">unset_audio</font></strong><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">unset_video</font></strong><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">unset_cdrom</font></strong><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">unset_joystick</font></strong><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">unset_noparachute</font></strong><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">unset_eventthread</font></strong><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">unset_everything</font></strong>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_ABSTRACT_KEYCODE.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_ABSTRACT_KEYCODE.html
new file mode 100644
index 0000000..5152db3
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_ABSTRACT_KEYCODE.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">max_keys</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_backspace</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_tab</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_clear</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_return</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_pause</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_escape</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_space</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_exclaim</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_quotedbl</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_hash</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_dollar</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_ampersand</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_quote</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_leftparen</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_rightparen</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_asterisk</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_plus</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_comma</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_minus</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_period</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_slash</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_0</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_1</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_2</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_3</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_4</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_5</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_6</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_7</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_8</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_9</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_colon</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_semicolon</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_less</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_equals</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_greater</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_question</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_at</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_leftbracket</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_backslash</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_rightbracket</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_caret</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_underscore</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_backquote</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_a</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_b</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_c</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_d</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_e</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_g</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_h</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_i</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_j</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_k</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_l</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_m</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_n</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_o</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_p</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_q</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_r</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_s</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_t</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_u</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_v</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_w</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_x</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_y</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_z</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_delete</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_0</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_1</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_2</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_3</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_4</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_5</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_6</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_7</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_8</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_9</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_period</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_divide</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_multiply</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_minus</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_plus</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_enter</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_equals</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_up</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_down</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_right</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_left</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_insert</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_home</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_end</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_pageup</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_pagedown</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f1</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f2</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f3</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f4</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f5</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f6</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f7</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f8</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f9</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f10</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f11</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f12</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f13</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f14</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_f15</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_numlock</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_capslock</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_scrollock</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_rshift</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_lshift</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_rctrl</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_lctrl</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_ralt</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_lalt</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_rmeta</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_lmeta</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_lsuper</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_rsuper</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_mode</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_compose</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_help</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_print</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_sysreq</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_break</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_menu</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_power</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_euro</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_undo</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_ABSTRACT_MUSIC_TYPE.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_ABSTRACT_MUSIC_TYPE.html
new file mode 100644
index 0000000..d896d3a
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_ABSTRACT_MUSIC_TYPE.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">max_music_type</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_ACTIVE.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_ACTIVE.html
new file mode 100644
index 0000000..4018bab
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_ACTIVE.html
@@ -0,0 +1,20 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">app_mouse_focus</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// The application has mouse coverage 0x01
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">app_input_focus</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// The application has input focus 0x02
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">app_active</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// The application is active 0x04
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_application_state</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// This function returns the current state of the application, which is a
+ bitwise combination of ,  , and
+ . If  is set, then the user is able to
+ see your application, otherwise it has been iconified or disabled.
+</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_BLAH.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_BLAH.html
new file mode 100644
index 0000000..7630157
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_BLAH.html
@@ -0,0 +1,21 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">+</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong>:<font color="#008000">SELF</font><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">major</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">minor</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">patch_level</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">style_normal</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">style_bold</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">style_italic</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">style_underline</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">print_version</font></strong><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Initialize the TTF engine - returns 0 if successful, -1 on error
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">quit</font></strong><em><font color="#FF0000">// De-initialize the TTF engine
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">was_init</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Check if the TTF engine is initialized
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">open_font</font></strong> (:<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :<font color="#008000">SELF</font><em><font color="#FF0000">// Open a font file and create a font of the specified point size.  Some .fon
+ fonts will have several sizes embedded in the file, so the point size
+ becomes the index of choosing which size.  If the value is too high, the
+ last indexed size will be the default.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">make</font></strong> (:<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">render_text_solid</font></strong> (:<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>,:<a href="SDL_COLOR.html"><font color="#008000">SDL_COLOR</font></a>) :<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">close</font></strong><em><font color="#FF0000">// Close an opened font file
+</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_CDROM.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_CDROM.html
new file mode 100644
index 0000000..1f9348f
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_CDROM.html
@@ -0,0 +1,46 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">+</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<font color="#008000">SELF</font><em><font color="#FF0000">// Create and Set the cdrom given a drive 
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_traempy</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// No CD-ROM
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_stopped</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Stopped status
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_playing</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Playing status
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_paused</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Paused status
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_error</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Error status
+
+ DEVICES
+
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">nb_drives</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Returns the number of CD-ROM drives on the system, or -1 if 
+  or  has not be called before.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">drive_name</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="STRING.html"><font color="#008000">STRING</font></a><em><font color="#FF0000">// Returns a human-readable, system-dependent identifier for a given CD-ROM 
+ drive . Example:  or 
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">status</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// This function returns the current status of the CD-ROM drive.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_indrive</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Given a status, returns  if there's a disk in the drive
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_play_tracks</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Play the given CD starting at  and  for 
+ tracks and  frames.  If both  and  are 0, play 
+ until the end of the CD.  This function will skip data tracks.
+ This slot should only be called after calling the slot  to 
+ get track information about the CD.
+ This function returns 0, or -1 if there was an error.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_play</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <strong><font color="#0000FF">length</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">//  Play the given CD starting at  frame for  frames.
+  It returns , or  if there was an error.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_pause</font></strong><em><font color="#FF0000">// Set the CD-ROM to pause.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_resume</font></strong><em><font color="#FF0000">// Resume CD-ROM.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_stop</font></strong><em><font color="#FF0000">// Stop playing CD-ROM.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">eject</font></strong><em><font color="#FF0000">// Eject CD-ROM.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">close</font></strong><em><font color="#FF0000">// Close CD-ROM drive handling.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_numtracks</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Return the number of tracks of the CD-ROM else 0.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_cur_track</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Current track position
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_cur_track_length</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Length, in frames, of the current track
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_track_length</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Length, in frames, of a given track.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_cur_frame</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Current frame offset within current track
+</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_CDROMT.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_CDROMT.html
new file mode 100644
index 0000000..c6edbb2
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_CDROMT.html
@@ -0,0 +1,38 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">+</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong>:<font color="#008000">SELF</font><em><font color="#FF0000">// Create
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create_with</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<font color="#008000">SELF</font><em><font color="#FF0000">// Create and Set the cdrom given a drive 
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">open</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <em><font color="#FF0000">// Opens a CD-ROM drive for access. This newly opened CD-ROM becomes the 
+ default CD used. Drives are numbered starting with .  Drive  is the
+ system default CD-ROM.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">status</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// This function returns the current status of the CD-ROM drive.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_indrive</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Given a status, returns  if there's a disk in the drive
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_play_tracks</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Play the given CD starting at  and  for 
+ tracks and  frames.  If both  and  are 0, play 
+ until the end of the CD.  This function will skip data tracks.
+ This slot should only be called after calling the slot  to 
+ get track information about the CD.
+ This function returns 0, or -1 if there was an error.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_play</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <strong><font color="#0000FF">length</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">//  Play the given CD starting at  frame for  frames.
+  It returns , or  if there was an error.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_pause</font></strong><em><font color="#FF0000">// Set the CD-ROM to pause.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_resume</font></strong><em><font color="#FF0000">// Resume CD-ROM.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_stop</font></strong><em><font color="#FF0000">// Stop playing CD-ROM.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">eject</font></strong><em><font color="#FF0000">// Eject CD-ROM.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">close</font></strong><em><font color="#FF0000">// Close CD-ROM drive handling.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_numtracks</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Return the number of tracks of the CD-ROM else 0.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_cur_track</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Current track position
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_cur_track_length</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Length, in frames, of the current track
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_track_length</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Length, in frames, of a given track.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">cd_cur_frame</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Current frame offset within current track
+</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_CHUNK.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_CHUNK.html
new file mode 100644
index 0000000..b745a66
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_CHUNK.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">+</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_any</font></strong>:<a href="ANY.html"><font color="#008000">ANY</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong>:<font color="#008000">SELF</font><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">make</font></strong>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_COLOR.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_COLOR.html
new file mode 100644
index 0000000..416d88c
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_COLOR.html
@@ -0,0 +1,21 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong>:<font color="#008000">SELF</font><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_all</font></strong> (:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>) <em><font color="#FF0000">// Set ,  and  values
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_r</font></strong> :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> <em><font color="#FF0000">// Set the  value.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_g</font></strong> :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> <em><font color="#FF0000">// Set the  value.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_b</font></strong> :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> <em><font color="#FF0000">// Set the  value.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_all</font></strong>:(<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>)<em><font color="#FF0000">// Return a vector with 3 values (r,g,b).
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">r</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Return the  value.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">g</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Return the  value.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">b</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Return the  value.
+</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_COLOR_HACK.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_COLOR_HACK.html
new file mode 100644
index 0000000..d289664
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_COLOR_HACK.html
@@ -0,0 +1,21 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Insert</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_all</font></strong> (:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>) <em><font color="#FF0000">// Set ,  and  values
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_r</font></strong> :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> <em><font color="#FF0000">// Set the  value.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_g</font></strong> :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> <em><font color="#FF0000">// Set the  value.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_b</font></strong> :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> <em><font color="#FF0000">// Set the  value.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_all</font></strong>:(<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>)<em><font color="#FF0000">// Return a vector with 3 values (r,g,b).
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">r</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Return the  value.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">g</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Return the  value.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">b</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Return the  value.
+</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_CPUINFO.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_CPUINFO.html
new file mode 100644
index 0000000..761bbf8
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_CPUINFO.html
@@ -0,0 +1,21 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">has_rdtsc</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Returns true if the CPU has the RDTSC instruction 
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">has_mmx</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Returns true if the CPU has MMX features
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">has_mmx_ext</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Returns true if the CPU has MMX Ext. features
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">has_3dnow</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Returns true if the CPU has 3DNow features
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">has_3dnow_ext</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Returns true if the CPU has 3DNow! Ext. features
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">has_sse</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Returns true if the CPU has SSE features
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">has_sse2</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Returns true if the CPU has SSE2 features
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">has_altivec</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Returns true if the CPU has AltiVec features
+</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_CURSOR.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_CURSOR.html
new file mode 100644
index 0000000..4fb9dc9
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_CURSOR.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="SDL_SETTINGS.html"><font color="#008000">SDL_SETTINGS</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_ERROR.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_ERROR.html
new file mode 100644
index 0000000..3ee0b78
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_ERROR.html
@@ -0,0 +1,16 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set</font></strong> :<a href="STRING.html"><font color="#008000">STRING</font></a> <em><font color="#FF0000">// Push an error
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get</font></strong>:<a href="STRING.html"><font color="#008000">STRING</font></a><em><font color="#FF0000">// get latest pushed error
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">clear</font></strong><em><font color="#FF0000">// Clear all errors
+</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_EVENT.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_EVENT.html
new file mode 100644
index 0000000..077d6e9
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_EVENT.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">+</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong>:<font color="#008000">SELF</font><em><font color="#FF0000">// Create the SDL_Event pointer
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">active_event</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Application loses/gains visibility
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">key_down</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Keys pressed
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">key_up</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Keys released 
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mouse_motion</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Mouse moved
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mouse_button_down</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Mouse button pressed
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mouse_button_up</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Mouse button released
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joy_axis_motion</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Joystick axis motion
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joy_ball_motion</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Joystick trackball motion
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joy_hat_motion</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Joystick hat position change
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joy_button_down</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Joystick button pressed
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joy_button_up</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Joystick button released
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">sdl_quit</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// User-requested quit
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">sys_wm_event</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// System specific event
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">video_resize</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// User resized video mode
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">video_expose</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Screen needs to be redrawn
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">user_event</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Events SDL_USEREVENT through SDL_MAXEVENTS-1 are for your use </font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">state_query</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">state_ignore</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">state_disable</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">state_enable</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">action_add</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">action_peek</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">action_get</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">released</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">pressed</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">type</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Get the event type
+ EVENT
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">active_type</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// 
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">active_gain</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Whether given states were gained or lost (1/0)
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">active_state</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// A mask of the focus states
+ KEYBOARD
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">key_type</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">//  or 
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">key_which</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// The keyboard device index
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">key_state</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// SDL_PRESSED or SDL_RELEASED
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">key_keysym</font></strong>:<a href="SDL_KEYSYM.html"><font color="#008000">SDL_KEYSYM</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">motion_type</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// 
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">motion_which</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// The mouse device index
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">motion_state</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// The current button state
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">motion_x</font></strong>:<a href="UINTEGER_16.html"><font color="#008000">UINTEGER_16</font></a><em><font color="#FF0000">// The X coordinate of the mouse
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">motion_y</font></strong>:<a href="UINTEGER_16.html"><font color="#008000">UINTEGER_16</font></a><em><font color="#FF0000">// The Y coordinate of the mouse
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">motion_xrel</font></strong>:<a href="INTEGER_16.html"><font color="#008000">INTEGER_16</font></a><em><font color="#FF0000">// The relative motion in the X direction
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">motion_yrel</font></strong>:<a href="INTEGER_16.html"><font color="#008000">INTEGER_16</font></a><em><font color="#FF0000">// The relative motion in the Y direction
+ MOUSE BUTTON
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">button_type</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">//  or  
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">button_which</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// The mouse device index
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">button_button</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// The mouse button index
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">button_state</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">//  or 
+TODO
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">poll</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Polls for currently pending events, and returns  if there are any
+ pending events, or  if there are none available.  If  is not
+ NULL, the next event is removed from the queue and stored in that area.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">wait</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Waits indefinitely for the next available event, returning , or
+  if there was an error while waiting for events.  If  is not
+ NULL, the next event is removed from the queue and stored in that area.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">push</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Add an event to the event queue. This function returns 0 on success, or
+ -1 if the event queue was full or there was some other error.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">peep</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Checks the event queue for messages and optionally returns them.
+
+ If  is , up to  events will be
+ added to the back of the event queue.  If  is
+ , up to  events at the front of the event
+ queue, matching , will be returned and will not be removed from the
+ queue.  If  is , up to  events at
+ the front of the event queue, matching 'mask', will be returned and will
+ be removed from the queue.
+
+ This function returns the number of events actually stored, or  if
+ there was an error.
+ 
+ This function is thread-safe.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">state_handle</font></strong> :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a> <strong><font color="#0000FF">to</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// This function allows you to set the state of processing certain events.
+ If  is set to , that event will be automatically dropped
+ from the event queue and will not event be filtered.
+ If  is set to , that event will be processed normally.
+ If  is set to ,  will return the 
+ current processing state of the specified event.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">pump_events</font></strong><em><font color="#FF0000">// Pumps the event loop, gathering events from the input devices.
+ This function updates the event queue and internal input device state.
+ This should only be run in the thread that sets the video mode.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">event_state</font></strong> (:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// This function allows you to set the state of processing certain events.
+ If  is set to , that event will be
+ automatically dropped from the event queue and will not event be filtered.
+ If  is set to , that event will be
+ processed normally.  If  is set to ,
+  will return the current processing state of the specified
+ event.
+</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_EVENT_TYPE.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_EVENT_TYPE.html
new file mode 100644
index 0000000..e198db4
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_EVENT_TYPE.html
@@ -0,0 +1,28 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">active_event</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Application loses/gains visibility
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">key_down</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Keys pressed
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">key_up</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Keys released 
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mouse_motion</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Mouse moved
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mouse_button_down</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Mouse button pressed
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mouse_button_up</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Mouse button released
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joy_axis_motion</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Joystick axis motion
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joy_ball_motion</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Joystick trackball motion
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joy_hat_motion</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Joystick hat position change
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joy_button_down</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Joystick button pressed
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joy_button_up</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Joystick button released
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">sdl_quit</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// User-requested quit
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">sys_wm_event</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// System specific event
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">video_resize</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// User resized video mode
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">video_expose</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Screen needs to be redrawn
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">user_event</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Events SDL_USEREVENT through SDL_MAXEVENTS-1 are for your use </font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_FLAG.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_FLAG.html
new file mode 100644
index 0000000..3b026fe
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_FLAG.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">srccolorkey</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">anyformat</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Allow any video depth/pixel-format
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hwpalette</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Surface has exclusive palette
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">doublebuf</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Set up double-buffered video mode
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">fullscreen</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Surface is a full screen display
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">opengl</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Create an OpenGL rendering context
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">openglblit</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Create an OpenGL rendering context and use it for blitting
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">resizable</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// This video mode may be resized
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">noframe</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// No window caption or edge frame
+ TODO: /</font></em><em><font color="#FF0000">//available_for_sdlcreatergbsurface_or_sdlsetvideomode_</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">swsurface</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Surface is in system memory 
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hwsurface</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">//Surface is in video memory
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">asynblit</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">//Use asynchronous blits if possible </font></em><em><font color="#FF0000">//todo__flags_for_sdlsetpalette__define_sdllogpal_xdefine_sdlphyspal_x</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_INIT.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_INIT.html
new file mode 100644
index 0000000..b8aa453
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_INIT.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="SDL_SETTINGS.html"><font color="#008000">SDL_SETTINGS</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_title</font></strong> :<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_resolution</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_bits</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_fullscreen</font></strong> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_timer</font></strong> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_audio</font></strong> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_video</font></strong> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_cdrom</font></strong> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_joystick</font></strong> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_everything</font></strong> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_no_parachute</font></strong> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_event_thread</font></strong> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a> <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">quit</font></strong>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_JOYSTICK.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_JOYSTICK.html
new file mode 100644
index 0000000..28c3d20
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_JOYSTICK.html
@@ -0,0 +1,48 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">+</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_any</font></strong>:<a href="ANY.html"><font color="#008000">ANY</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong>:<font color="#008000">SELF</font><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create_witch</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<font color="#008000">SELF</font><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hat_centered</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hat_up</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hat_right</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hat_down</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hat_left</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hat_rightup</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hat_rightdown</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hat_leftup</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hat_leftdown</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">make</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">open</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <em><font color="#FF0000">// Open a joystick for use.
+ The index passed as an argument refers to the N'th joystick on the system.
+ This index is the value which will identify this joystick in future
+ joystick events. This function returns a joystick identifier, or NULL if
+ an error occurred.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">index</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Get the device index of the opened joystick.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">num_axes</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Get the number of general axis controls on the opened joystick
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">num_balls</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Get the number of trackballs on a joystick. Joystick trackballs have only
+ relative motion events associated with them and their state cannot be
+ polled.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">num_hats</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Get the number of POV hats on a joystick
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">num_buttons</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Get the number of buttons on the opened joystick
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_axis</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Get the current state of an axis control on the opened joystick The axis
+ indices start at index 0.  The return state is a value ranging from
+  to .
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_hat</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Get the current state of a POV hat on a joystick. The hat indices start at
+ index .
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_ball</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Get the ball axis change since the last poll
+ The ball indices start at index .
+ This returns , or  if you passed it invalid parameters.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_button</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Get the current state of a button on the opened joystick. The button
+ indices start at index .
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">close</font></strong><em><font color="#FF0000">// Close a joystick previously opened with 
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">joystick_name</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="STRING.html"><font color="#008000">STRING</font></a><em><font color="#FF0000">// Get the implementation dependent name of a joystick.
+ This can be called before any joysticks are opened.
+ If no name can be found, this function returns NULL.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">opened</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Returns 1 if the joystick has been opened, or 0 if it has not.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">num_joysticks</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Count the number of joysticks attached to the system
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">update</font></strong><em><font color="#FF0000">//  Update the current state of the open joysticks. This is called
+  automatically by the event loop if any joystick events are enabled.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">event_state</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Enable/disable joystick event polling. If joystick events are disabled,
+ you must call  yourself and check the state of the
+ joystick when you want joystick information.
+ The state can be one of ,  or
+ .
+</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_KEYBOARD.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_KEYBOARD.html
new file mode 100644
index 0000000..06712c5
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_KEYBOARD.html
@@ -0,0 +1,34 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">delay</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// SDL default value is 500;
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">interval</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// SDL default velur is 30
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">enable_key_repeat</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <em><font color="#FF0000">// Enable/Disable keyboard repeat.  Keyboard repeat defaults to off.
+  is the initial delay in ms between the time when a key is
+ pressed, and keyboard repeat begins.
+  is the time in ms between keyboard repeat events.
+ If  is set to 0, keyboard repeat is disabled.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_defaut_key_repeat</font></strong><em><font color="#FF0000">// Set good default value provided by the SDL library
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_key_repeat</font></strong>:(<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>)<em><font color="#FF0000">// Get  and  values
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">previous_state</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Previous unicode state
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">enable_unicode</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Enable/Disable UNICODE translation of keyboard input.
+ This translation has some overhead, so translation defaults off.
+ If  is 1, translation is enabled.
+ If  is 0, translation is disabled.
+ If  is -1, the translation state is not changed.
+ This function set the  slot
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_mod_state</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Get the current key modifier state
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_mod_state</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <em><font color="#FF0000">// Set the current key modifier state.
+ This does not change the keyboard state, only the key modifier flags.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_key_name</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="STRING.html"><font color="#008000">STRING</font></a><em><font color="#FF0000">// Get the name of an SDL virtual keysym
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_key_state</font></strong>:<a href="FAST_ARRAY.html"><font color="#008000">FAST_ARRAY</font></a>(<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>)<em><font color="#FF0000">// Memory buffer of the current keyboard. Get a snapshot of the current state
+ of the keyboard. Returns an array of keystates, indexed by the SDLK_</font></em><em><font color="#FF0000">//syms</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_KEYCODE.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_KEYCODE.html
new file mode 100644
index 0000000..fdce4e4
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_KEYCODE.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_keycode</font></strong>:<strong><font color="#A020F0">Expanded</font></strong> <a href="SDL_ABSTRACT_KEYCODE.html"><font color="#008000">SDL_ABSTRACT_KEYCODE</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">make</font></strong><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_key</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_KEYSYM.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_KEYSYM.html
new file mode 100644
index 0000000..ec2a2dc
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_KEYSYM.html
@@ -0,0 +1,20 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">scancode</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// hardware specific scancode
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">sym</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// SDL virtual keysym 
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// current key modifiers
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">unicode</font></strong>:<a href="UINTEGER_16.html"><font color="#008000">UINTEGER_16</font></a><em><font color="#FF0000">// translated character
+
+ ASCII MAPPED KEYSYMS
+
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">backspace</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">tab</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">clear</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">return</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">pause</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">escape</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">space</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">exclaim</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">quotedbl</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hash</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">dollar</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">ampersand</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">quote</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">leftparen</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rightparen</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">asterisk</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">plus</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">comma</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">minus</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">period</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">slash</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_0</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_1</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_2</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_3</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_4</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_5</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_6</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_7</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_8</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k_9</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">colon</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">semicolon</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">less</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">equals</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">greater</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">at</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">leftbracket</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">backslash</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rightbracket</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">caret</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">underscore</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">backquote</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">a</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">b</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">c</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">d</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">e</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">g</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">h</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">i</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">j</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">k</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">l</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">m</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">n</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">o</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">p</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">q</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">r</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">s</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">t</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">u</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">v</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">w</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">x</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">y</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">z</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">delete</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">up</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">down</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">right</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">left</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">insert</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">home</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">end</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">pageup</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">pagedown</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f1</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f2</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f3</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f4</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f5</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f6</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f7</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f8</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f9</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f10</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f11</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f12</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f13</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f14</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">f15</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">numlock</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">capslock</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">scrollock</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rshift</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">lshift</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rctrl</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">lctrl</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">ralt</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">lalt</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rmeta</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">lmeta</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">lsuper</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rsuper</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mode</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">compose</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">help</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">print</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">sysreq</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">break</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">menu</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">power</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">euro</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">undo</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_0</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_1</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_2</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_3</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_4</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_5</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_6</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_7</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_8</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_9</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_period</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_divide</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_multiply</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_minus</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_plus</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_enter</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">kp_equals</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_none</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_shift</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_lshift</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_rshift</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_ctrl</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_lctrl</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_rctrl</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_alt</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_lalt</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_ralt</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_meta</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_lmeta</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_rmeta</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_num</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_caps</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mod_mode</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_MIXER.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_MIXER.html
new file mode 100644
index 0000000..bc61892
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_MIXER.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">+</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">audio_rate</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">audio_channels</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">audio_buffers</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">audio_format</font></strong>:<a href="UINTEGER_16.html"><font color="#008000">UINTEGER_16</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">chuck_size</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">audio_s16</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">audio_s8</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mus_none</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mus_cmd</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mus_wav</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mus_mod</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mus_mid</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mus_ogg</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mus_mp3</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">mus_mp3_mad</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">query_spec</font></strong>:(<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>)<strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">open_audio</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">load_wav</font></strong> :<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">play_channel</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">halt_channel</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">load_music</font></strong> :<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">play_music</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hook_music_finished</font></strong><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">allocate_channels</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_distance</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">volume</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">volume_music</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">halt_music</font></strong><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">free_music</font></strong><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">close_audio</font></strong>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_MOUSE.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_MOUSE.html
new file mode 100644
index 0000000..5cf17f9
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_MOUSE.html
@@ -0,0 +1,27 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_state</font></strong>:(<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>)<em><font color="#FF0000">// Retrieve the current state of the mouse.
+ The current button state is returned as a button bitmask, which can
+ be tested using the SDL_BUTTON(X) macros, and x and y are set to the
+ current mouse cursor position.  You can pass NULL for either x or y.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_relative_state</font></strong>:(<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>)<em><font color="#FF0000">// Retrieve the current state of the mouse.
+ The current button state is returned as a button bitmask, which can
+ be tested using the SDL_BUTTON(X) macros, and x and y are set to the
+ mouse deltas since the last call to SDL_GetRelativeMouseState().
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">warp</font></strong> (:<a href="UINTEGER_16.html"><font color="#008000">UINTEGER_16</font></a>,:<a href="UINTEGER_16.html"><font color="#008000">UINTEGER_16</font></a>) <em><font color="#FF0000">// Set the position of the mouse cursor (generates a mouse motion event)
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">show_cursor</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> :<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Toggle whether or not the cursor is shown on the screen.
+ The cursor start displayed, but can be turned off.
+  returns TRUE if the cursor was being displayed
+ before the call, or FALSE if it was not. You can query the current
+ state by passing a  value of -1.
+</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_MUSIC.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_MUSIC.html
new file mode 100644
index 0000000..b745a66
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_MUSIC.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">+</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_any</font></strong>:<a href="ANY.html"><font color="#008000">ANY</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong>:<font color="#008000">SELF</font><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">make</font></strong>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_PALETTE.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_PALETTE.html
new file mode 100644
index 0000000..37b9c81
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_PALETTE.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">+</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_PIXEL_FORMAT.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_PIXEL_FORMAT.html
new file mode 100644
index 0000000..05d0024
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_PIXEL_FORMAT.html
@@ -0,0 +1,15 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">+</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">bits_per_pixel</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">bytes_per_pixel</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rloss</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">gloss</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">bloss</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">aloss</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rshift</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">gshift</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">bshift</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">ashift</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rmask</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">gmask</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">bmask</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">amask</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">colorkey</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// RGB color key information.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">alpha</font></strong>:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a><em><font color="#FF0000">// Alpha value information (per-surface alpha).
+</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_RECT.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_RECT.html
new file mode 100644
index 0000000..40953aa
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_RECT.html
@@ -0,0 +1,29 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">+</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong>:<a href="SDL_RECT.html"><font color="#008000">SDL_RECT</font></a><em><font color="#FF0000">//
+ GET:
+
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_all</font></strong>:(<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>)<em><font color="#FF0000">// Return a vector with 4 values (x,y,w,h).
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">x</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Return the  position value.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">y</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Return the  position value.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">w</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Return the  size value.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">h</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Return the  size value.
+
+ SET: 
+
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_all</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <em><font color="#FF0000">// Set all values (x,y,w,h).
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_x</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <em><font color="#FF0000">// Set the  position.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_y</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <em><font color="#FF0000">// Set the  position.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_w</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <em><font color="#FF0000">// Set the  size.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_h</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> <em><font color="#FF0000">// Set the  size.
+</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_ROTOZOOM.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_ROTOZOOM.html
new file mode 100644
index 0000000..fa3355a
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_ROTOZOOM.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">+</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rotozoom_surface</font></strong> (:<a href="SDL_SURFACE_T.html"><font color="#008000">SDL_SURFACE_T</font></a>,:<a href="REAL_64.html"><font color="#008000">REAL_64</font></a>,:<a href="REAL_64.html"><font color="#008000">REAL_64</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :<a href="SDL_SURFACE_T.html"><font color="#008000">SDL_SURFACE_T</font></a>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_SETTINGS.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_SETTINGS.html
new file mode 100644
index 0000000..780fe8d
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_SETTINGS.html
@@ -0,0 +1,28 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">width</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Screen width.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">height</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Screen height.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">bits</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Screen color 16,24,32 bits.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">title</font></strong>:<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a><em><font color="#FF0000">// Window title.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">video_mode</font></strong>:<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a><em><font color="#FF0000">// Setted video mode.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">fullscreen</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Is application in fullscreen mode.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">showcursor</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Is the cursor displayed.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_timer</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Timer has been initialized.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_audio</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Audio has been initialized.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_video</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Video has been initialized.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_cdrom</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Cdrom has been initialized.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_joystick</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Joystick has been initialized.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_everything</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// All above
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_no_parachute</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Prevents from catching fatal signals
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init_event_thread</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Runs the event manager in a separated thread
+</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_SURFACE.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_SURFACE.html
new file mode 100644
index 0000000..9f233c2
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_SURFACE.html
@@ -0,0 +1,54 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">+</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong>:<font color="#008000">SELF</font><em><font color="#FF0000">// Create the SDL_Surface structure
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create_from_bmp</font></strong> :<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> :<font color="#008000">SELF</font><em><font color="#FF0000">// Load a BMP file with path+name (ie. /data/image.bmp).
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create_from_image</font></strong> :<a href="ABSTRACT_STRING.html"><font color="#008000">ABSTRACT_STRING</font></a> :<font color="#008000">SELF</font><em><font color="#FF0000">// Load a BMP file with path+name (ie. /data/image.bmp).
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create_rgb_surface</font></strong> (:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <strong><font color="#0000FF">with_mask</font></strong> (:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>,:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>,:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>,:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) :<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">swsurface</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Surface is in system memory 
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hwsurface</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Surface is in video memory
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">asyncblit</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Use asynchronous blits if possible </font></em><em><font color="#FF0000">//sdl_palette_flags</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">logpal</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">physpal</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">srccolorkey</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">rleaccel</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">flip</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// On hardware that supports double-buffering, this function sets up a flip
+ and returns. The hardware will wait for vertical retrace, and then swap
+ video buffers before the next video surface blit or lock will return.  On
+ hardware that doesn not support double-buffering, this is equivalent to
+ calling ; The  flag must
+ have been passed to  when setting the video mode for this
+ function to perform hardware flipping. This function returns 0 if
+ successful, or -1 if there was an error.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">blit_surface</font></strong> (:<a href="SDL_RECT.html"><font color="#008000">SDL_RECT</font></a>,:<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a>,:<a href="SDL_RECT.html"><font color="#008000">SDL_RECT</font></a>) <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">blit_surface_no_src</font></strong> (:<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a>,:<a href="SDL_RECT.html"><font color="#008000">SDL_RECT</font></a>) <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">blit_surface_no_src_no_dst</font></strong> :<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a> <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">fill_rect</font></strong> (:<a href="SDL_RECT.html"><font color="#008000">SDL_RECT</font></a>,:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) <em><font color="#FF0000">// This function performs a fast fill of the given rectangle with 
+ The given rectangle is clipped to the destination surface clip area
+ and the final fill rectangle is saved in the passed in pointer.
+ This function returns 0 on success, or -1 on error.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">fill_rect_no_dst</font></strong> :<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a> <em><font color="#FF0000">// If 'dstrect' is NULL, the whole surface will be filled with 
+ This function performs a fast fill of the given rectangle with .
+ The color should be a pixel of the format used by the surface, and 
+ can be generated by the  function.
+ This function returns 0 on success, or -1 on error.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">line_from</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <strong><font color="#0000FF">to</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <strong><font color="#0000FF">color</font></strong> :<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a> <em><font color="#FF0000">// Draw a line from (x1,y1) to (x2,y2) color  into screen
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_palette</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="FAST_ARRAY.html"><font color="#008000">FAST_ARRAY</font></a>(<a href="SDL_COLOR_HACK.html"><font color="#008000">SDL_COLOR_HACK</font></a>),:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_palette_pointer</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="FAST_ARRAY.html"><font color="#008000">FAST_ARRAY</font></a>(<a href="SDL_COLOR_HACK.html"><font color="#008000">SDL_COLOR_HACK</font></a>),:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">update_rect</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>,:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">update_rects</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="SDL_RECT.html"><font color="#008000">SDL_RECT</font></a>) <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_color_key</font></strong> (:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>,:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">convert_surface</font></strong> (:<a href="NATIVE_ARRAY.html"><font color="#008000">NATIVE_ARRAY</font></a>(<a href="SDL_PIXEL_FORMAT.html"><font color="#008000">SDL_PIXEL_FORMAT</font></a>),:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) :<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">display_format</font></strong>:<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">w</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Surface width. (READ ONLY)
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">h</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Surface height (READ_ONLY)
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">pitch</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">format_palette_ncolors</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">flags</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">load</font></strong> :<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <em><font color="#FF0000">// Load an image.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">pixel_format</font></strong>:<a href="SDL_PIXEL_FORMAT.html"><font color="#008000">SDL_PIXEL_FORMAT</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">pixels</font></strong>:<a href="FAST_ARRAY.html"><font color="#008000">FAST_ARRAY</font></a>(<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>)<strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">format_palette_colors</font></strong>:<a href="FAST_ARRAY.html"><font color="#008000">FAST_ARRAY</font></a>(<a href="SDL_COLOR_HACK.html"><font color="#008000">SDL_COLOR_HACK</font></a>)<strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">format_palette</font></strong>:<a href="NATIVE_ARRAY.html"><font color="#008000">NATIVE_ARRAY</font></a>(<a href="SDL_PALETTE.html"><font color="#008000">SDL_PALETTE</font></a>)<strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">format</font></strong>:<a href="NATIVE_ARRAY.html"><font color="#008000">NATIVE_ARRAY</font></a>(<a href="SDL_PIXEL_FORMAT.html"><font color="#008000">SDL_PIXEL_FORMAT</font></a>)<strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">lock</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">//  sets up a surface for directly accessing the pixels.  Between calls
+ to /, you can write to and read from , using
+ the pixel format stored in .  Once you are done accessing
+ the surface, you should use  to release it.
+ 
+ Not all surfaces require locking. If  evaluates to
+ 0, then you can read and write to the surface at any time, and the pixel
+ format of the surface will not change.  In particular, if the
+  flag is not given when calling , you will not
+ need to lock the display surface before accessing it.
+  
+ No operating system or library calls should be made between lock/unlock
+ pairs, as critical system locks may be held during this time.
+ 
+ It returns 0, or -1 if the surface couldn't be locked.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">unlock</font></strong>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_SURFACET.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_SURFACET.html
new file mode 100644
index 0000000..b863c4b
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_SURFACET.html
@@ -0,0 +1,24 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">+</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create</font></strong>:<font color="#008000">SELF</font><em><font color="#FF0000">// Create the SDL_Surface structure
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">create_with</font></strong> :<a href="POINTER.html"><font color="#008000">POINTER</font></a> :<font color="#008000">SELF</font><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">make</font></strong> :<a href="POINTER.html"><font color="#008000">POINTER</font></a> <em><font color="#FF0000">//
+ LOAD images:
+
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">load_bmp</font></strong> :<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <em><font color="#FF0000">// Load a BMP file with path+name (ie. /data/image.bmp).
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">load</font></strong> :<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <em><font color="#FF0000">// Load an image.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">value</font></strong>:<a href="POINTER.html"><font color="#008000">POINTER</font></a><em><font color="#FF0000">// Don't use it unless you know what you are doing
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">is_null</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Return  if no image loaded
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">is_not_null</font></strong>:<a href="BOOLEAN.html"><font color="#008000">BOOLEAN</font></a><em><font color="#FF0000">// Return  if no image loaded
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">w</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Surface width. (READ ONLY)
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">h</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Surface height (READ_ONLY)
+</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_TIMER.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_TIMER.html
new file mode 100644
index 0000000..75858a1
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_TIMER.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">get_ticks</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">delay</font></strong> :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a> 
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_TTF.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_TTF.html
new file mode 100644
index 0000000..2f73bfd
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_TTF.html
@@ -0,0 +1,21 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">+</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="OBJECT.html"><font color="#008000">OBJECT</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">major</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">minor</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">patch_level</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">style_normal</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">style_bold</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">style_italic</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">style_underline</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">print_version</font></strong><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">init</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Initialize the TTF engine - returns 0 if successful, -1 on error
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">quit</font></strong><em><font color="#FF0000">// De-initialize the TTF engine
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">was_init</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Check if the TTF engine is initialized
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">open_font</font></strong> (:<a href="ABSTRACT_STRING.html"><font color="#008000">ABSTRACT_STRING</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) :<font color="#008000">SELF</font><em><font color="#FF0000">// Open a font file and create a font of the specified point size.  Some .fon
+ fonts will have several sizes embedded in the file, so the point size
+ becomes the index of choosing which size.  If the value is too high, the
+ last indexed size will be the default.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">make</font></strong> (:<a href="ABSTRACT_STRING.html"><font color="#008000">ABSTRACT_STRING</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>) <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">render_text_solid</font></strong> (:<a href="ABSTRACT_STRING.html"><font color="#008000">ABSTRACT_STRING</font></a>,:<a href="SDL_COLOR.html"><font color="#008000">SDL_COLOR</font></a>) :<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">close</font></strong><em><font color="#FF0000">// Close an opened font file
+</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_VERSION.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_VERSION.html
new file mode 100644
index 0000000..7f92087
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_VERSION.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">major</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">minor</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">patch_level</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">print</font></strong>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_VIDEO.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_VIDEO.html
new file mode 100644
index 0000000..353a54f
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_VIDEO.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">anyformat</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Allow any video depth/pixel-format
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hwpalette</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Surface has exclusive palette
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">doublebuf</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Set up double-buffered video mode
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">fullscreen</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Surface is a full screen display
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">opengl</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Create an OpenGL rendering context
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">openglblit</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Create an OpenGL rendering context and use it for blitting
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">resizable</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// This video mode may be resized
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">noframe</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// No window caption or edge frame
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">swsurface</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Surface is in system memory 
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">hwsurface</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Surface is in video memory
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">asyncblit</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Use asynchronous blits if possible </font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">logpal</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">physpal</font></strong>:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">yv12_overlay</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Planar mode: Y + V + U  (3 planes)
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">iyuv_overlay</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Planar mode: Y + U + V  (3 planes)
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">yuy2_overlay</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Packed mode: Y0+U0+Y1+V0 (1 plane)
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">uyvy_overlay</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Packed mode: U0+Y0+V0+Y1 (1 plane)
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">yvyu_overlay</font></strong>:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">// Packed mode: Y0+V0+Y1+U0 (1 plane)
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_mode</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) :<a href="SDL_SURFACE.html"><font color="#008000">SDL_SURFACE</font></a><em><font color="#FF0000">// Set up a video mode with the specified width, height and bits-per-pixel.
+
+ If ' is 0, it is treated as the current display bits per pixel.
+
+ If  is set in , the SDL library will try to set the
+ requested bits-per-pixel, but will return whatever video pixel format is
+ available.  The default is to emulate the requested pixel format if it is
+ not natively available.
+
+ If  is set in , the video surface will be placed in
+ video memory, if possible, and you may have to call SDL_LockSurface() in
+ order to access the raw framebuffer.  Otherwise, the video surface will be
+ created in system memory.
+
+ If  is set in , SDL will try to perform rectangle
+ updates asynchronously, but you must always lock before accessing pixels.
+ SDL will wait for updates to complete before returning from the lock.
+
+ If  is set in , the SDL library will guarantee that the
+ colors set by  will be the colors you get.  Otherwise, in
+ 8-bit mode,  may not be able to set all of the colors
+ exactly the way they are requested, and you should look at the video
+ surface structure to determine the actual palette.  If SDL cannot
+ guarantee that the colors you request can be set, i.e. if the colormap is
+ shared, then the video surface may be created under emulation in system
+ memory, overriding the  flag.
+
+ If  is set in , the SDL library will try to set a
+ fullscreen video mode. The default is to create a windowed mode if the
+ current graphics system has a window manager. If the SDL library is able
+ to set a fullscreen video mode, this flag will be set in the surface that
+ is returned.
+
+ If  is set in , the SDL library will try to set up two
+ surfaces in video memory and swap between them when you call .
+ This is usually slower than the normal single-buffering scheme, but
+ prevents "tearing" artifacts caused by modifying video memory while the
+ monitor is refreshing.  It should only be used by applications that redraw
+ the entire screen on every update.
+
+ If  is set in , the SDL library will allow the window
+ manager, if any, to resize the window at runtime.  When this occurs, SDL
+ will send a SDL_VIDEORESIZE event to you application, and you must respond
+ to the event by re-calling  with the requested size (or
+ another size that suits the application).
+
+ If  is set in , the SDL library will create a window
+ without any title bar or frame decoration.  Fullscreen video modes have
+ this flag set automatically.
+
+ This function returns the video framebuffer surface, or NULL if it fails.
+
+ If you rely on functionality provided by certain video flags, check the
+ flags of the returned surface to make sure that functionality is available.
+ SDL will fall back to reduced functionality if the exact flags you wanted
+ are not available.
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">video_mode_ok</font></strong> (:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="INTEGER.html"><font color="#008000">INTEGER</font></a>,:<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a>) :<a href="INTEGER.html"><font color="#008000">INTEGER</font></a><em><font color="#FF0000">// Check to see if a particular video mode is supported.  It returns 0 if the
+ requested mode is not supported under any bit depth, or returns the
+ bits-per-pixel of the closest available mode with the given width and
+ height.  If this bits-per-pixel is different from the one used when
+ setting the video mode,  will succeed, but will emulate
+ the requested bits-per-pixel with a shadow surface.
+
+ The arguments to  are the same ones you would pass to
+ .
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">map_rgb</font></strong> (:<a href="SDL_PIXEL_FORMAT.html"><font color="#008000">SDL_PIXEL_FORMAT</font></a>,:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>,:<a href="UINTEGER_8.html"><font color="#008000">UINTEGER_8</font></a>) :<a href="UINTEGER_32.html"><font color="#008000">UINTEGER_32</font></a><em><font color="#FF0000">//Maps an RGB triple to an opaque pixel value for a given pixel format
+</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_WINDOW.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_WINDOW.html
new file mode 100644
index 0000000..ed107f7
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_WINDOW.html
@@ -0,0 +1,18 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">iconify_window</font></strong><em><font color="#FF0000">// See SDL_APPACTIVE loss event (see SDL_ActiveEvent)
+ Iconify/Minimise the window
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_caption</font></strong> (:<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>,:<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>) <em><font color="#FF0000">// set the window title and application name in the bar
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_title</font></strong> :<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_bmp_icon</font></strong> :<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <em><font color="#FF0000">// Sets the icon for the display window.
+ Icon must be 32x32
+</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/SDL_WM.html b/lib/unstable/sdl-binding/docs/html_raw/SDL_WM.html
new file mode 100644
index 0000000..20ca8da
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/SDL_WM.html
@@ -0,0 +1,18 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+<strong><font color="#A020F0">Inherit</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">parent_object</font></strong>:<a href="SDL_SETTINGS.html"><font color="#008000">SDL_SETTINGS</font></a><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">iconify_window</font></strong><em><font color="#FF0000">// See SDL_APPACTIVE loss event (see SDL_ActiveEvent)
+ Iconify/Minimise the window
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_caption</font></strong> (:<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>,:<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a>) <em><font color="#FF0000">// set the window title and application name in the bar
+</font></em><strong><font color="#A020F0">Public</font></strong><strong><font color="#FF0000">-</font></strong><strong><font color="#A020F0">Self</font></strong>:<font color="#008000">SELF</font>.<strong><font color="#0000FF">set_bmp_icon</font></strong> :<a href="STRING_CONSTANT.html"><font color="#008000">STRING_CONSTANT</font></a> <em><font color="#FF0000">// Sets the icon for the display window.
+ Icon must be 32x32
+</font></em>
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/__SHORT_LISAAC_FORMAT__.html b/lib/unstable/sdl-binding/docs/html_raw/__SHORT_LISAAC_FORMAT__.html
new file mode 100644
index 0000000..40d1bea
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/__SHORT_LISAAC_FORMAT__.html
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML SYSTEM>
+<!-- Generated by Lisaac shorter / html style -->
+<html>
+<head>
+<title>
+Lisaac prototype interface
+</title>
+</head>
+<body BGCOLOR="#FFFFFF">
+<pre>
+
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/audio.html b/lib/unstable/sdl-binding/docs/html_raw/audio.html
new file mode 100644
index 0000000..c48fe0a
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/audio.html
@@ -0,0 +1,7 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_CHUNK.html" target="content">SDL_CHUNK</a>
+<br><a href="SDL_MIXER.html" target="content">SDL_MIXER</a>
+<br><a href="SDL_MUSIC.html" target="content">SDL_MUSIC</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/html_raw/default.html b/lib/unstable/sdl-binding/docs/html_raw/default.html
new file mode 100644
index 0000000..491ae69
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/default.html
@@ -0,0 +1,5 @@
+<html><head><title>Proto</title></head>
+<body bgcolor="red">
+Content proto documentation.
+</body>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/directory_list.html b/lib/unstable/sdl-binding/docs/html_raw/directory_list.html
new file mode 100644
index 0000000..641931c
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/directory_list.html
@@ -0,0 +1,9 @@
+<html><head><title>List Directories</title></head>
+<body bgcolor="#FFFFFF">
+<a href="file_list.html" target="file">All</a>
+<br><a href="audio.html" target="file">audio</a>
+<br><a href="events.html" target="file">events</a>
+<br><a href="keyboard.html" target="file">keyboard</a>
+<br><a href="types.html" target="file">types</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/html_raw/events.html b/lib/unstable/sdl-binding/docs/html_raw/events.html
new file mode 100644
index 0000000..94e9cba
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/events.html
@@ -0,0 +1,5 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_EVENT.html" target="content">SDL_EVENT</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/html_raw/file_list.html b/lib/unstable/sdl-binding/docs/html_raw/file_list.html
new file mode 100644
index 0000000..1ddf923
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/file_list.html
@@ -0,0 +1,36 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_CHUNK.html" target="content">SDL_CHUNK</a>
+<br><a href="SDL_MIXER.html" target="content">SDL_MIXER</a>
+<br><a href="SDL_MUSIC.html" target="content">SDL_MUSIC</a>
+<br><a href="SDL_EVENT.html" target="content">SDL_EVENT</a>
+<br><a href="SDL_KEYBOARD.html" target="content">SDL_KEYBOARD</a>
+<br><a href="SDL_KEYSYM.html" target="content">SDL_KEYSYM</a>
+<br><a href="SDL_COLOR.html" target="content">SDL_COLOR</a>
+<br><a href="SDL_COLOR_HACK.html" target="content">SDL_COLOR_HACK</a>
+<br><a href="SDL_CURSOR.html" target="content">SDL_CURSOR</a>
+<br><a href="SDL_PALETTE.html" target="content">SDL_PALETTE</a>
+<br><a href="SDL_PIXEL_FORMAT.html" target="content">SDL_PIXEL_FORMAT</a>
+<br><a href="SDL_RECT.html" target="content">SDL_RECT</a>
+<br><a href="KEYCODE.html" target="content">KEYCODE</a>
+<br><a href="SDL.html" target="content">SDL</a>
+<br><a href="SDL_ACTIVE.html" target="content">SDL_ACTIVE</a>
+<br><a href="SDL_BLAH.html" target="content">SDL_BLAH</a>
+<br><a href="SDL_CDROM.html" target="content">SDL_CDROM</a>
+<br><a href="SDL_CPUINFO.html" target="content">SDL_CPUINFO</a>
+<br><a href="SDL_CURSOR.html" target="content">SDL_CURSOR</a>
+<br><a href="SDL_ERROR.html" target="content">SDL_ERROR</a>
+<br><a href="SDL_FLAG.html" target="content">SDL_FLAG</a>
+<br><a href="SDL_INIT.html" target="content">SDL_INIT</a>
+<br><a href="SDL_JOYSTICK.html" target="content">SDL_JOYSTICK</a>
+<br><a href="SDL_MOUSE.html" target="content">SDL_MOUSE</a>
+<br><a href="SDL_ROTOZOOM.html" target="content">SDL_ROTOZOOM</a>
+<br><a href="SDL_SURFACE.html" target="content">SDL_SURFACE</a>
+<br><a href="SDL_TIMER.html" target="content">SDL_TIMER</a>
+<br><a href="SDL_TTF.html" target="content">SDL_TTF</a>
+<br><a href="SDL_VERSION.html" target="content">SDL_VERSION</a>
+<br><a href="SDL_VIDEO.html" target="content">SDL_VIDEO</a>
+<br><a href="SDL_WINDOW.html" target="content">SDL_WINDOW</a>
+<br><a href="SDL_WM.html" target="content">SDL_WM</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/html_raw/index.html b/lib/unstable/sdl-binding/docs/html_raw/index.html
new file mode 100644
index 0000000..743898a
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/index.html
@@ -0,0 +1,13 @@
+<html><head><title>Lisaac Documentation</title></head>
+<frameset cols="260,*" border="3" frameborder="yes" framespacing="5" scrolling="auto">
+  <frameset rows="30%,*" border="3" frameborder="yes" framespacing="5" scrolling="no">
+   <frame src="directory_list.html" frameborder="yes" scrolling="auto">
+   <frame src="file_list.html"      frameborder="yes" scrolling="auto" name="file">
+  </frameset>
+  <frame src="default.html" name="content">
+</frameset>
+<noframes>
+<h3>Frame Error</h3>
+<p>This web site works only with frames.</p>
+</noframes>
+</html>
diff --git a/lib/unstable/sdl-binding/docs/html_raw/keyboard.html b/lib/unstable/sdl-binding/docs/html_raw/keyboard.html
new file mode 100644
index 0000000..a1a1df6
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/keyboard.html
@@ -0,0 +1,6 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_KEYBOARD.html" target="content">SDL_KEYBOARD</a>
+<br><a href="SDL_KEYSYM.html" target="content">SDL_KEYSYM</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/html_raw/low_level.html b/lib/unstable/sdl-binding/docs/html_raw/low_level.html
new file mode 100644
index 0000000..4c9199f
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/low_level.html
@@ -0,0 +1,8 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_ABSTRACT_KEYCODE.html" target="content">SDL_ABSTRACT_KEYCODE</a>
+<br><a href="SDL_SETTINGS.html" target="content">SDL_SETTINGS</a>
+<br><a href="SDL_INIT.html" target="content">SDL_INIT</a>
+<br><a href="SDL_ABSTRACT_MUSIC_TYPE.html" target="content">SDL_ABSTRACT_MUSIC_TYPE</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/html_raw/types.html b/lib/unstable/sdl-binding/docs/html_raw/types.html
new file mode 100644
index 0000000..0b0cd1c
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/types.html
@@ -0,0 +1,10 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_COLOR.html" target="content">SDL_COLOR</a>
+<br><a href="SDL_COLOR_HACK.html" target="content">SDL_COLOR_HACK</a>
+<br><a href="SDL_CURSOR.html" target="content">SDL_CURSOR</a>
+<br><a href="SDL_PALETTE.html" target="content">SDL_PALETTE</a>
+<br><a href="SDL_PIXEL_FORMAT.html" target="content">SDL_PIXEL_FORMAT</a>
+<br><a href="SDL_RECT.html" target="content">SDL_RECT</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/docs/html_raw/unix.html b/lib/unstable/sdl-binding/docs/html_raw/unix.html
new file mode 100644
index 0000000..46b98b2
--- /dev/null
+++ b/lib/unstable/sdl-binding/docs/html_raw/unix.html
@@ -0,0 +1,6 @@
+<html><head><title>All Files</title></head>
+<body bgcolor="#F0F0FF" link="black" vlink="black">
+<br><a href="SDL_KEYCODE.html" target="content">SDL_KEYCODE</a>
+<br><a href="SDL_EVENT.html" target="content">SDL_EVENT</a>
+</body>
+</html>
\ No newline at end of file
diff --git a/lib/unstable/sdl-binding/gen_doc.sh b/lib/unstable/sdl-binding/gen_doc.sh
new file mode 100755
index 0000000..e66f03a
--- /dev/null
+++ b/lib/unstable/sdl-binding/gen_doc.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+shorter -d -f html sdl/ -o docs/html
+#shorter -d -f latex sdl/ -o docs/latex
+shorter -d -f html_raw sdl/ -o docs/html_raw
+shorter -d -f belinda sdl/ -o docs/belinda
+
diff --git a/lib/unstable/sdl-binding/sdl/TODO b/lib/unstable/sdl-binding/sdl/TODO
new file mode 100644
index 0000000..56d33e0
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/TODO
@@ -0,0 +1,53 @@
+SDL BINDING 
+by Xavier Oswald <xoswald at debian.org>
+
+=================================================
+ SDL HEADER              >> Lisaac Binding Status
+=================================================
+CON_console.h            >>
+DT_drawtext.h            >>
+SDL_active.h             >> 100%  sdl_active.li
+SDL_audio.h              >>
+SDL_cdrom.h              >> 90%   sdl_cdrom.li
+SDL_cpuinfo.h            >> 100%  sdl_cpuinfo.li
+SDL_error.h              >> 90%   sdl_error.li
+SDL_events.h             >> 90%   sdl_events.li
+SDL_framerate.h          >>
+SDL_getenv.h             >>
+SDL_gfxBlitFunc.h        >>
+SDL_gfxPrimitives_font.h >>
+SDL_gfxPrimitives.h      >>
+SDL.h                    >> 100%  sdl.li
+SDL_imageFilter.h        >>
+SDL_image.h              >>
+SDL_joystick.h           >> 100%  sdl_joystick.li
+SDL_keyboard.h           >> 100%  sdl_keyboard.li
+SDL_keysym.h             >> 100%  sdl_keysym.li
+SDL_loadso.h             >>
+SDL_main.h               >>
+SDL_mixer.h              >>
+SDL_mouse.h              >> 50%   sdl_mouse.li
+                                  sdl_cursor.li
+SDL_mutex.h              >>
+
+SDL_opengl.h             >>
+SDL_rotozoom.h           >>
+SDL_rwops.h              >>
+SDL_stdinc.h             >>
+SDL_syswm.h              >>
+SDL_thread.h             >>
+SDL_timer.h              >>
+SDL_ttf.h                >>
+SDL_version.h            >> 100%  sdl_version.li
+SDL_video.h              >> 50 %  sdl_surface.li
+                                  sdl_video.li
+=================================================
+SDL_endian.h             >> SDL INTERNAL
+SDL_quit.h               >> SDL INTERNAL
+begin_code.h             >> SDL INTERNAL
+close_code.h             >> SDL INTERNAL
+SDL_byteorder.h          >> SDL INTERNAL
+SDL_config.h             >> SDL INTERNAL
+SDL_platform.h           >> SDL INTERNAL
+SDL_types.h              >> SDL INTERNAL
+SDL_name.h               >> SDL INTERNAL
diff --git a/lib/unstable/sdl-binding/sdl/audio/sdl_chunk.li b/lib/unstable/sdl-binding/sdl/audio/sdl_chunk.li
new file mode 100644
index 0000000..1f97ebc
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/audio/sdl_chunk.li
@@ -0,0 +1,45 @@
+///////////////////////////////////////////////////////////////////////////////
+//                                  Lisaac                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name      := SDL_CHUNK;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "";
+
+Section Inherit
+
+  + parent_any:ANY := ANY;
+
+Section Public
+
+  - create :SELF <-
+  ( + result:SELF;
+    result := clone;
+    result.make;
+    result
+  );
+
+  - make <-
+  ( 
+    
+  );
diff --git a/lib/unstable/sdl-binding/sdl/audio/sdl_mixer.li b/lib/unstable/sdl-binding/sdl/audio/sdl_mixer.li
new file mode 100644
index 0000000..311d0f2
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/audio/sdl_mixer.li
@@ -0,0 +1,266 @@
+///////////////////////////////////////////////////////////////////////////////
+//                                  Lisaac                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name      := SDL_MIXER;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "Audio & Noise managment";
+
+  - lip <-
+  (
+    add_lib  " -lSDL_mixer ";
+  );
+
+  - external  := `
+#include "SDL/SDL_mixer.h"
+Mix_Music *music  = NULL;
+Mix_Chunk *phaser = NULL;
+
+void music_done(){
+  Mix_HaltMusic();
+  Mix_FreeMusic(music);
+  music = NULL;
+}
+
+int freq;
+Uint16 format;
+int channels;
+  `;
+
+Section Inherit
+
+  + parent_object:OBJECT := OBJECT;
+
+Section Public /* MAKING MUSIC */
+
+  - audio_rate:INTEGER;
+  - audio_channels:INTEGER; /* 2: stereo, 1:mono */
+  - audio_buffers:INTEGER;
+  - audio_format:UINTEGER_16;
+
+
+  /*
+  chunksize 
+  This value determines the size of the memory chunks used for storage and
+  playback of samples. A value of 4096 should be suitable for most games.
+  Increasing the value will decrease the CPU load but will also decrease
+  responsiveness of playback. If you find the mixer's play/stop response times to
+  be too slow, you may wish to decrease this value.
+  */
+  - chuck_size:INTEGER; /*4096*/
+
+  - audio_s16 :INTEGER := `AUDIO_S16SYS`:INTEGER; /* 16-bit stereo */
+  - audio_s8  :INTEGER := `AUDIO_S8`    :INTEGER; /* 8-bit  stereo */
+
+  - mus_none    :INTEGER := `MUS_NONE`    :INTEGER;
+  - mus_cmd     :INTEGER := `MUS_CMD`     :INTEGER;
+  - mus_wav     :INTEGER := `MUS_WAV`     :INTEGER;
+  - mus_mod     :INTEGER := `MUS_MOD`     :INTEGER;
+  - mus_mid     :INTEGER := `MUS_MID`     :INTEGER;
+  - mus_ogg     :INTEGER := `MUS_OGG`     :INTEGER;
+  - mus_mp3     :INTEGER := `MUS_MP3`     :INTEGER;
+  - mus_mp3_mad :INTEGER := `MUS_MP3_MAD` :INTEGER;
+
+  /* Find out what the actual audio device parameters are.
+   This function returns 1 if the audio has been opened, 0 otherwise.
+ */
+  - query_spec :(INTEGER,INTEGER,INTEGER) <-
+  ( 
+    /*+ freq:INTEGER;
+    + format:INTEGER;
+    + channels:INTEGER;*/
+    `Mix_QuerySpec(&freq, &format, &channels);`;
+    `freq`:INTEGER,`format`:INTEGER,`channels`:INTEGER
+  );
+  
+  
+  /* Open the mixer with a certain audio format */
+  /*
+    extern DECLSPEC int SDLCALL Mix_OpenAudio(int frequency, Uint16 format, int channels,
+							int chunksize);
+    TODO: return value */
+  - open_audio (frequency,format, channels,chunksize :INTEGER) <-
+  (
+    `Mix_OpenAudio(@frequency, @format, @channels, @chunksize);`
+  );
+
+  //extern DECLSPEC Mix_Music * SDLCALL Mix_LoadMUS(const char *file);
+  - load_music file:STRING_CONSTANT <-
+  ( + f:NATIVE_ARRAY(CHARACTER);
+    f := file.to_external;
+    `music = Mix_LoadMUS(@f);`
+  );
+
+
+	/* This begins playing the music, the argument is how many
+	   times you want it to loop (use -1 for infinite, and 0 to
+	   have it just play once) 
+  */
+  - play_music nb:INTEGER <-
+  (
+    `Mix_PlayMusic(music, @nb);`
+  );
+
+  	/* We want to know when our music has stopped playing so we
+	   can free it up and set 'music' back to NULL.  SDL_Mixer
+	   provides us with a callback routine we can use to do
+	   exactly that */
+    //	Mix_HookMusicFinished(musicDone);
+  - hook_music_finished <- 
+  (
+   	`Mix_HookMusicFinished(music_done);`
+  );
+
+    /* If we actually care about what we got, we can ask here.  In this
+     program we don't, but I'm showing the function call here anyway
+     in case we'd want to know later. */
+   // TODO: Mix_QuerySpec(&audio_rate, &audio_format, &audio_channels);
+ 
+
+  /* Dynamically change the number of channels managed by the mixer.
+    If decreasing the number of channels, the upper channels are
+    stopped.
+    This function returns the new number of allocated channels.
+  */
+  - allocate_channels num:INTEGER <-
+  (
+    audio_channels := `Mix_AllocateChannels(@num);`:INTEGER;
+  );
+
+
+  /* Set the "distance" of a channel. (distance) is an integer from 0 to 255
+ *  that specifies the location of the sound in relation to the listener.
+ *  Distance 0 is overlapping the listener, and 255 is as far away as possible
+ *  A distance of 255 does not guarantee silence; in such a case, you might
+ *  want to try changing the chunk's volume, or just cull the sample from the
+ *  mixing process with Mix_HaltChannel().
+ * For efficiency, the precision of this effect may be limited (distances 1
+ *  through 7 might all produce the same effect, 8 through 15 are equal, etc).
+ *  (distance) is an integer between 0 and 255 that specifies the space
+ *  between the sound and the listener. The larger the number, the further
+ *  away the sound is.
+ * Setting (distance) to 0 unregisters this effect, since the data would be
+ *  unchanged.
+ * If you need more precise positional audio, consider using OpenAL for
+ *  spatialized effects instead of SDL_mixer. This is only meant to be a
+ *  basic effect for simple "3D" games.
+ *
+ * Setting (channel) to MIX_CHANNEL_POST registers this as a posteffect, and
+ *  the distance attenuation will be done to the final mixed stream before
+ *  passing it on to the audio device.
+ *
+ * This uses the Mix_RegisterEffect() API internally.
+ *
+ * returns zero if error (no such channel or Mix_RegisterEffect() fails),
+ *  nonzero if position effect is enabled.
+ *  Error messages can be retrieved from Mix_GetError().
+ */
+//extern DECLSPEC int SDLCALL Mix_SetDistance(int channel, Uint8 distance);
+  - set_distance (channel,distance:INTEGER) <-
+  (
+    `Mix_SetDistance(@channel, at distance)`;
+  );
+
+  /* Set the volume in the range of 0-128 of a specific channel or chunk.
+   If the specified channel is -1, set volume for all channels.
+   Returns the original volume.
+   If the specified volume is -1, just return the current volume.
+*/
+/*
+extern DECLSPEC int SDLCALL Mix_Volume(int channel, int volume);
+extern DECLSPEC int SDLCALL Mix_VolumeChunk(Mix_Chunk *chunk, int volume);
+extern DECLSPEC int SDLCALL Mix_VolumeMusic(int volume);
+*/
+  - volume (channel,volume:INTEGER) <-
+  (
+    `Mix_Volume(@channel, @volume);`
+  );
+/* TODO
+  - volume_chunk volume:INTEGER <-
+  (
+    `Mix_VolumeChunk(chunk, @volume);`
+  );
+  */
+  - volume_music volume:INTEGER <-
+  (
+    `Mix_VolumeMusic(@volume);`
+  );
+
+
+
+	/* Stop the music from playing */
+  - halt_music <-
+  (
+    `Mix_HaltMusic();`
+  );
+
+  - free_music <-
+  (
+    `Mix_FreeMusic(music);`
+  );
+
+  - close_audio <-
+  (
+    `Mix_CloseAudio();`
+  );
+
+
+Section Public /* MAKING NOISE */
+
+  /* Every sound that gets played is assigned to a channel.  Note that
+  this is different from the number of channels you request when you
+  open the audio device; a channel in SDL_mixer holds information
+  about a sound sample that is playing, while the number of channels
+  you request when opening the device is dependant on what sort of
+  sound you want (1 channel = mono, 2 = stereo, etc) */
+
+  /* We're going to pre-load the sound effects that we need */
+  - load_wav sound:STRING_CONSTANT <-
+  ( + s:NATIVE_ARRAY(CHARACTER);
+    s := sound.to_external;
+    `phaser = Mix_LoadWAV(@s);`;
+    "load\n".println;
+  );
+
+  /* Mix_PlayChannel takes, as its arguments, the channel that
+  the given sound should be played on, the sound itself, and
+  the number of times it should be looped.  If you don't care
+  what channel the sound plays on, just pass in -1.  Looping
+  works like Mix_PlayMusic. This function returns the channel
+  that the sound was assigned to, which you'll need later. */
+  - play_channel (channel,loop:INTEGER) :INTEGER<-
+  ( + phaser_channel:INTEGER;
+    phaser_channel := `Mix_PlayChannel(@channel, phaser, @loop)`:(INTEGER);
+    phaser_channel
+  );
+
+  /* Mix_HaltChannel stops a certain channel from playing - this
+  is one of the reasons we kept track of which channel the
+  phaser had been assigned to */
+  - halt_channel ph_chan:INTEGER <-
+  (
+    `Mix_HaltChannel(@ph_chan);`;
+  );
+
+
+
diff --git a/lib/unstable/sdl-binding/sdl/audio/sdl_music.li b/lib/unstable/sdl-binding/sdl/audio/sdl_music.li
new file mode 100644
index 0000000..28a5ef8
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/audio/sdl_music.li
@@ -0,0 +1,45 @@
+///////////////////////////////////////////////////////////////////////////////
+//                                  Lisaac                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name      := SDL_MUSIC;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "";
+
+Section Inherit
+
+  + parent_any:ANY := ANY;
+
+Section Public
+
+  - create :SELF <-
+  ( + result:SELF;
+    result := clone;
+    result.make;
+    result
+  );
+
+  - make <-
+  ( 
+    
+  );
diff --git a/lib/unstable/sdl-binding/sdl/events/.sdl_event.li.swo b/lib/unstable/sdl-binding/sdl/events/.sdl_event.li.swo
new file mode 100644
index 0000000..ca70cb5
Binary files /dev/null and b/lib/unstable/sdl-binding/sdl/events/.sdl_event.li.swo differ
diff --git a/lib/unstable/sdl-binding/sdl/events/sdl_event.li b/lib/unstable/sdl-binding/sdl/events/sdl_event.li
new file mode 100644
index 0000000..eca276b
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/events/sdl_event.li
@@ -0,0 +1,205 @@
+///////////////////////////////////////////////////////////////////////////////
+//                                  Lisaac                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name      := SDL_EVENT;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "SDL events handling";
+  - type      := `SDL_Event`;
+
+Section Inherit
+
+  + parent_object:OBJECT := OBJECT;
+
+Section Public
+
+//
+// EVENT TYPE:
+//
+  - active_event      :UINTEGER_8 := `SDL_ACTIVEEVENT`     :UINTEGER_8; // Application loses/gains visibility
+  - key_down          :UINTEGER_8 := `SDL_KEYDOWN`         :UINTEGER_8; // Keys pressed
+  - key_up            :UINTEGER_8 := `SDL_KEYUP`           :UINTEGER_8; // Keys released 
+  - mouse_motion      :UINTEGER_8 := `SDL_MOUSEMOTION`     :UINTEGER_8; // Mouse moved
+  - mouse_button_down :UINTEGER_8 := `SDL_MOUSEBUTTONDOWN` :UINTEGER_8; // Mouse button pressed
+  - mouse_button_up   :UINTEGER_8 := `SDL_MOUSEBUTTONUP`   :UINTEGER_8; // Mouse button released
+  - joy_axis_motion   :UINTEGER_8 := `SDL_JOYAXISMOTION`   :UINTEGER_8; // Joystick axis motion
+  - joy_ball_motion   :UINTEGER_8 := `SDL_JOYBALLMOTION`   :UINTEGER_8; // Joystick trackball motion
+  - joy_hat_motion    :UINTEGER_8 := `SDL_JOYHATMOTION`    :UINTEGER_8; // Joystick hat position change
+  - joy_button_down   :UINTEGER_8 := `SDL_JOYBUTTONDOWN`   :UINTEGER_8; // Joystick button pressed
+  - joy_button_up     :UINTEGER_8 := `SDL_JOYBUTTONUP`     :UINTEGER_8; // Joystick button released
+  - sdl_quit          :UINTEGER_8 := `SDL_QUIT`            :UINTEGER_8; // User-requested quit
+  - sys_wm_event      :UINTEGER_8 := `SDL_SYSWMEVENT`      :UINTEGER_8; // System specific event
+  - video_resize      :UINTEGER_8 := `SDL_VIDEORESIZE`     :UINTEGER_8; // User resized video mode
+  - video_expose      :UINTEGER_8 := `SDL_VIDEOEXPOSE`     :UINTEGER_8; // Screen needs to be redrawn
+  - user_event        :UINTEGER_8 := `SDL_USEREVENT`       :UINTEGER_8; 
+  // Events SDL_USEREVENT through SDL_MAXEVENTS-1 are for your use */
+
+//
+// EVENT STATE:
+//
+  - state_query   :INTEGER := `SDL_QUERY`  :(INTEGER);
+  - state_ignore  :INTEGER := `SDL_IGNORE` :(INTEGER);
+  - state_disable :INTEGER := `SDL_DISABLE`:(INTEGER);
+  - state_enable  :INTEGER := `SDL_ENABLE` :(INTEGER);
+
+//
+// EVENT ACTION:
+//
+  - action_add  :INTEGER := `SDL_ADDEVENT`  :(INTEGER);
+  - action_peek :INTEGER := `SDL_PEEKEVENT` :(INTEGER);
+  - action_get  :INTEGER := `SDL_GETEVENT`  :(INTEGER);
+
+//
+// GENERAL KEYBOARD/MOUSE STATE
+//
+  - released :UINTEGER_8 <- `SDL_RELEASED` :(UINTEGER_8);
+  - pressed  :UINTEGER_8 <- `SDL_PRESSED`  :(UINTEGER_8);
+
+//
+// INTERNAL EVENT ACCESS
+//
+  - create       :SELF        <- SELF.clone;                         // Create the SDL_Event pointer
+  - type         :UINTEGER_8  <-`@Self->type`        :(UINTEGER_8);  // Get the event type
+  
+  // EVENT
+  - active_type  :UINTEGER_8  <-`@Self->active.type`  :(UINTEGER_8);  // `active_event'
+  - active_gain  :UINTEGER_8  <-`@Self->active.gain`  :(UINTEGER_8);  // Whether given states were gained or lost (1/0)
+  - active_state :UINTEGER_8  <-`@Self->active.state` :(UINTEGER_8);  // A mask of the focus states
+
+  // KEYBOARD
+  - key_type     :UINTEGER_8  <-`@Self->key.type`     :(UINTEGER_8);  // `key_down' or `key_up'
+  - key_which    :UINTEGER_8  <-`@Self->key.which`    :(UINTEGER_8);  // The keyboard device index
+  - key_state    :UINTEGER_8  <-`@Self->key.state`    :(UINTEGER_8);  // SDL_PRESSED or SDL_RELEASED
+  - key_keysym   :SDL_KEYSYM  <-`@Self->key.keysym`   :(SDL_KEYSYM);
+
+  // MOUSE MOTION
+  - motion_type  :UINTEGER_8  <-`@Self->motion.type`  :(UINTEGER_8);  // `mouse_motion'
+  - motion_which :UINTEGER_8  <-`@Self->motion.which` :(UINTEGER_8);  // The mouse device index
+  - motion_state :UINTEGER_8  <-`@Self->motion.state` :(UINTEGER_8);  // The current button state
+  - motion_x     :UINTEGER_16 <-`@Self->motion.x`     :(UINTEGER_16); // The X coordinate of the mouse
+  - motion_y     :UINTEGER_16 <-`@Self->motion.y`     :(UINTEGER_16); // The Y coordinate of the mouse
+  - motion_xrel  :INTEGER_16  <-`@Self->motion.xrel`  :(INTEGER_16);  // The relative motion in the X direction
+  - motion_yrel  :INTEGER_16  <-`@Self->motion.yrel`  :(INTEGER_16);  // The relative motion in the Y direction
+  
+  // MOUSE BUTTON
+  - button_type  :UINTEGER_8  <-`@Self->button.type`  :(UINTEGER_8);  // `mouse_button_down' or `mouse_button_up' 
+  - button_which :UINTEGER_8  <-`@Self->button.which` :(UINTEGER_8);  // The mouse device index
+  - button_button:UINTEGER_8  <-`@Self->button.button`:(UINTEGER_8);  // The mouse button index
+  - button_state :UINTEGER_8  <-`@Self->button.state` :(UINTEGER_8);  // `pressed' or `released'
+
+//TODO
+/*
+	SDL_JoyAxisEvent jaxis;
+	SDL_JoyBallEvent jball;
+	SDL_JoyHatEvent jhat;
+	SDL_JoyButtonEvent jbutton;
+	SDL_ResizeEvent resize;
+	SDL_ExposeEvent expose;
+	SDL_QuitEvent quit;
+	SDL_UserEvent user;
+	SDL_SysWMEvent syswm;
+*/
+
+//
+// GLOBAL EVENT MANAGEMENT
+//
+  - poll :INTEGER <-
+  // Polls for currently pending events, and returns `1' if there are any
+  // pending events, or `0' if there are none available.  If `event' is not
+  // NULL, the next event is removed from the queue and stored in that area.
+  (
+    `SDL_PollEvent(@Self)`:(INTEGER)
+  );
+
+  - wait :INTEGER <-
+  // Waits indefinitely for the next available event, returning `1', or
+  // `0' if there was an error while waiting for events.  If `event' is not
+  // NULL, the next event is removed from the queue and stored in that area.
+  (
+    `SDL_WaitEvent(@Self)`:(INTEGER)
+  );
+
+  - push :INTEGER <-
+  // Add an event to the event queue. This function returns 0 on success, or
+  // -1 if the event queue was full or there was some other error.
+  (
+    `SDL_PushEvent(@Self)`:(INTEGER)
+  );
+  
+  //
+  // EVENT handling:
+  //
+
+  - peep (numevents:INTEGER, action:UINTEGER_8, mask:UINTEGER_32) :INTEGER <-
+  // Checks the event queue for messages and optionally returns them.
+  //
+  // If `action' is `SDL_EVENT.action_add', up to `numevents' events will be
+  // added to the back of the event queue.  If `action' is
+  // `SDL_EVENT.action_peek', up to `numevents' events at the front of the event
+  // queue, matching `mask', will be returned and will not be removed from the
+  // queue.  If `action' is `SDL_EVENT.action_get', up to `numevents' events at
+  // the front of the event queue, matching 'mask', will be returned and will
+  // be removed from the queue.
+  //
+  // This function returns the number of events actually stored, or `-1' if
+  // there was an error.
+  // 
+  // This function is thread-safe.
+  (
+    `SDLCALL SDL_PeepEvents(@Self, @numevents, @action, @mask)`:(INTEGER)
+  );
+
+  - state_handle type:UINTEGER_8 to state:INTEGER :UINTEGER_8<-
+  // This function allows you to set the state of processing certain events.
+  // If `state' is set to `state_ignore', that event will be automatically dropped
+  // from the event queue and will not event be filtered.
+  // If `state' is set to `state_enable', that event will be processed normally.
+  // If `state' is set to `state_query', `state_handle to' will return the 
+  // current processing state of the specified event.
+  (
+    `SDL_EventState(@type, at state)`:(UINTEGER_8)
+  );
+
+  - pump_events <-
+  // Pumps the event loop, gathering events from the input devices.
+  // This function updates the event queue and internal input device state.
+  // This should only be run in the thread that sets the video mode.
+  (
+    `SDL_PumpEvents()`;
+  );
+
+  - event_state (type:UINTEGER_8, state:INTEGER) :UINTEGER_8<-
+  // This function allows you to set the state of processing certain events.
+  // If `state' is set to `SDL_EVENT.state_ignore', that event will be
+  // automatically dropped from the event queue and will not event be filtered.
+  // If `state' is set to `SDL_EVENT.state_enable', that event will be
+  // processed normally.  If `state' is set to `SDL_EVENT.state_query',
+  // `event_state' will return the current processing state of the specified
+  // event.
+  (
+    `SDL_EventState(@type, @state)`:UINTEGER_8
+  );
+  
+  // TODO:
+  //extern DECLSPEC void SDLCALL SDL_SetEventFilter(SDL_EventFilter filter);
+  //extern DECLSPEC SDL_EventFilter SDLCALL SDL_GetEventFilter(void);
diff --git a/lib/unstable/sdl-binding/sdl/keyboard/.sdl_keyboard.li.swo b/lib/unstable/sdl-binding/sdl/keyboard/.sdl_keyboard.li.swo
new file mode 100644
index 0000000..a6163f5
Binary files /dev/null and b/lib/unstable/sdl-binding/sdl/keyboard/.sdl_keyboard.li.swo differ
diff --git a/lib/unstable/sdl-binding/sdl/keyboard/.sdl_keysym.li.swo b/lib/unstable/sdl-binding/sdl/keyboard/.sdl_keysym.li.swo
new file mode 100644
index 0000000..0e798ae
Binary files /dev/null and b/lib/unstable/sdl-binding/sdl/keyboard/.sdl_keysym.li.swo differ
diff --git a/lib/unstable/sdl-binding/sdl/keyboard/sdl_keyboard.li b/lib/unstable/sdl-binding/sdl/keyboard/sdl_keyboard.li
new file mode 100644
index 0000000..fd54b16
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/keyboard/sdl_keyboard.li
@@ -0,0 +1,120 @@
+///////////////////////////////////////////////////////////////////////////////
+//                            Lisaac-SDL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name      := SDL_KEYBOARD;
+
+  - comment   := "Keyboard handling";
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+
+Section Public
+
+//
+// REPEAT & DELAY:
+//
+  - delay          :INTEGER := 500; // SDL default value is 500;
+  - interval       :INTEGER := 30;  // SDL default velur is 30
+
+  - enable_key_repeat (delay_p, interval_p:INTEGER) <-
+  // Enable/Disable keyboard repeat.  Keyboard repeat defaults to off.
+  // `delay' is the initial delay in ms between the time when a key is
+  // pressed, and keyboard repeat begins.
+  // `interval' is the time in ms between keyboard repeat events.
+  // If `delay' is set to 0, keyboard repeat is disabled.
+  (
+    delay := delay_p;
+    interval := interval_p;
+    `SDL_EnableKeyRepeat(@delay_p, @interval_p)`;
+  );
+
+  - set_defaut_key_repeat <-
+  // Set good default value provided by the SDL library
+  (
+    delay := `SDL_DEFAULT_REPEAT_DELAY`:(INTEGER);
+    interval := `SDL_DEFAULT_REPEAT_INTERVAL`:(INTEGER);
+    `SDL_EnableKeyRepeat(@delay, @interval);`
+  );
+
+  - get_key_repeat :(INTEGER, INTEGER) <-
+  // Get `delay' and `interval' values
+  ( + d,i:POINTER;
+    `SDL_GetKeyRepeat((int*)&d, (int*)&i)`;
+    d.to_raw_integer, i.to_raw_integer 
+  );
+
+//
+// UNICODE handling
+//
+  - previous_state :INTEGER := -1;  // Previous unicode state
+  
+  - enable_unicode enable:INTEGER :INTEGER <-
+  // Enable/Disable UNICODE translation of keyboard input.
+  // This translation has some overhead, so translation defaults off.
+  // If `enable' is 1, translation is enabled.
+  // If `enable' is 0, translation is disabled.
+  // If `enable' is -1, the translation state is not changed.
+  // This function set the `previous_state' slot
+  (
+    previous_state := `SDL_EnableUNICODE(@enable)`:(INTEGER);
+    previous_state
+  );
+
+//
+// Keys mod and state
+//
+  - get_mod_state :INTEGER <-
+  // Get the current key modifier state
+  (
+    `SDL_GetModState()`:(INTEGER)
+  );
+
+  - set_mod_state state:INTEGER <-
+  // Set the current key modifier state.
+  // This does not change the keyboard state, only the key modifier flags.
+  (
+    `SDL_SetModState(@modstate)`;
+  );
+
+  - get_key_name key:INTEGER :STRING <-
+  // Get the name of an SDL virtual keysym
+  ( + name:NATIVE_ARRAY(CHARACTER);
+    + result:STRING;
+    
+    name := `SDL_GetKeyName(@key)`:(NATIVE_ARRAY(CHARACTER));
+    result := STRING.clone;
+    result.from_external_copy name;
+    result
+  );
+
+  // TODO: check fast_array & native_array convertion
+  - get_key_state :FAST_ARRAY(UINTEGER_8) <-
+  // Memory buffer of the current keyboard. Get a snapshot of the current state
+  // of the keyboard. Returns an array of keystates, indexed by the SDLK_*
+  // syms.
+  ( + keyboard: NATIVE_ARRAY(UINTEGER_8);
+    + result  :FAST_ARRAY(UINTEGER_8);
+    keyboard := `SDL_GetKeyboardState(NULL)`:NATIVE_ARRAY(UINTEGER_8);
+    result := FAST_ARRAY(UINTEGER_8).create_with_native_array_byte keyboard size 1000;
+    //result.set_upper 1000;
+    result
+  );
diff --git a/lib/unstable/sdl-binding/sdl/keyboard/sdl_keysym.li b/lib/unstable/sdl-binding/sdl/keyboard/sdl_keysym.li
new file mode 100644
index 0000000..42f5247
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/keyboard/sdl_keysym.li
@@ -0,0 +1,206 @@
+///////////////////////////////////////////////////////////////////////////////
+//   Lisaac - SDL binding library                                            //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program. If not, see <http://www.gnu.org/licenses/>.    //
+//                                                                           //
+//   http://lisaac.org/                                                      //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+
+  + name      := Expanded SDL_KEYSYM;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "SDL Mapping of every raw key on the keyboard";
+  - type      := `SDL_keysym`;
+
+Section Public
+
+//
+// KEYSYM INFORMATION 
+//
+  - scancode :UINTEGER_8  <- `@Self.scancode`:(UINTEGER_8);  // hardware specific scancode
+  - sym      :INTEGER     <- `@Self.sym`     :(INTEGER);	   // SDL virtual keysym 
+  - mod      :INTEGER     <- `@Self.mod`     :(INTEGER);     // current key modifiers
+  - unicode  :UINTEGER_16 <- `@Self.unicode` :(UINTEGER_16); // translated character
+
+//
+// ASCII MAPPED KEYSYMS
+//
+  - backspace :INTEGER <-`SDLK_BACKSPACE` :(INTEGER);
+  - tab       :INTEGER <-`SDLK_TAB`       :(INTEGER);
+  - clear     :INTEGER <-`SDLK_CLEAR`     :(INTEGER);
+  - return    :INTEGER <-`SDLK_RETURN`    :(INTEGER);
+  - pause     :INTEGER <-`SDLK_PAUSE`     :(INTEGER);
+  - escape    :INTEGER <-`SDLK_ESCAPE`    :(INTEGER);
+  - space     :INTEGER <-`SDLK_SPACE`     :(INTEGER);
+  - exclaim   :INTEGER <-`SDLK_EXCLAIM`   :(INTEGER);
+  - quotedbl  :INTEGER <-`SDLK_QUOTEDBL`  :(INTEGER);
+  - hash      :INTEGER <-`SDLK_HASH`      :(INTEGER);
+  - dollar    :INTEGER <-`SDLK_DOLLAR`    :(INTEGER);
+  - ampersand :INTEGER <-`SDLK_AMPERSAND` :(INTEGER);
+  - quote     :INTEGER <-`SDLK_QUOTE`     :(INTEGER);
+  - leftparen :INTEGER <-`SDLK_LEFTPAREN` :(INTEGER);
+  - rightparen:INTEGER <-`SDLK_RIGHTPAREN`:(INTEGER);
+  - asterisk  :INTEGER <-`SDLK_ASTERISK`  :(INTEGER);
+  - plus      :INTEGER <-`SDLK_PLUS`      :(INTEGER);
+  - comma     :INTEGER <-`SDLK_COMMA`     :(INTEGER);
+  - minus     :INTEGER <-`SDLK_MINUS`     :(INTEGER);
+  - period    :INTEGER <-`SDLK_PERIOD`    :(INTEGER);
+  - slash     :INTEGER <-`SDLK_SLASH`     :(INTEGER);
+
+  - k_0 :INTEGER <-`SDLK_0`:(INTEGER);
+  - k_1 :INTEGER <-`SDLK_1`:(INTEGER);
+  - k_2 :INTEGER <-`SDLK_2`:(INTEGER);
+  - k_3 :INTEGER <-`SDLK_3`:(INTEGER);
+  - k_4 :INTEGER <-`SDLK_4`:(INTEGER);
+  - k_5 :INTEGER <-`SDLK_5`:(INTEGER);
+  - k_6 :INTEGER <-`SDLK_6`:(INTEGER);
+  - k_7 :INTEGER <-`SDLK_7`:(INTEGER);
+  - k_8 :INTEGER <-`SDLK_8`:(INTEGER);
+  - k_9 :INTEGER <-`SDLK_9`:(INTEGER);
+
+  - colon        :INTEGER <-`SDLK_COLON`       :(INTEGER);
+  - semicolon    :INTEGER <-`SDLK_SEMICOLON`   :(INTEGER);
+  - less         :INTEGER <-`SDLK_LESS`        :(INTEGER);
+  - equals       :INTEGER <-`SDLK_EQUALS`      :(INTEGER);
+  - greater      :INTEGER <-`SDLK_GREATER`     :(INTEGER);
+  - at           :INTEGER <-`SDLK_AT`          :(INTEGER);
+  - leftbracket  :INTEGER <-`SDLK_LEFTBRACKET` :(INTEGER);
+  - backslash    :INTEGER <-`SDLK_BACKSLASH`   :(INTEGER);
+  - rightbracket :INTEGER <-`SDLK_RIGHTBRACKET`:(INTEGER);
+  - caret        :INTEGER <-`SDLK_CARET`       :(INTEGER);
+  - underscore   :INTEGER <-`SDLK_UNDERSCORE`  :(INTEGER);
+  - backquote    :INTEGER <-`SDLK_BACKQUOTE`   :(INTEGER);
+
+  - a :INTEGER <-`SDLK_a`:(INTEGER);
+  - b :INTEGER <-`SDLK_b`:(INTEGER);
+  - c :INTEGER <-`SDLK_c`:(INTEGER);
+  - d :INTEGER <-`SDLK_d`:(INTEGER);
+  - e :INTEGER <-`SDLK_e`:(INTEGER);
+  - f :INTEGER <-`SDLK_f`:(INTEGER);
+  - g :INTEGER <-`SDLK_g`:(INTEGER);
+  - h :INTEGER <-`SDLK_h`:(INTEGER);
+  - i :INTEGER <-`SDLK_i`:(INTEGER);
+  - j :INTEGER <-`SDLK_j`:(INTEGER);
+  - k :INTEGER <-`SDLK_k`:(INTEGER);
+  - l :INTEGER <-`SDLK_l`:(INTEGER);
+  - m :INTEGER <-`SDLK_m`:(INTEGER);
+  - n :INTEGER <-`SDLK_n`:(INTEGER);
+  - o :INTEGER <-`SDLK_o`:(INTEGER);
+  - p :INTEGER <-`SDLK_p`:(INTEGER);
+  - q :INTEGER <-`SDLK_q`:(INTEGER);
+  - r :INTEGER <-`SDLK_r`:(INTEGER);
+  - s :INTEGER <-`SDLK_s`:(INTEGER);
+  - t :INTEGER <-`SDLK_t`:(INTEGER);
+  - u :INTEGER <-`SDLK_u`:(INTEGER);
+  - v :INTEGER <-`SDLK_v`:(INTEGER);
+  - w :INTEGER <-`SDLK_w`:(INTEGER);
+  - x :INTEGER <-`SDLK_x`:(INTEGER);
+  - y :INTEGER <-`SDLK_y`:(INTEGER);
+  - z :INTEGER <-`SDLK_z`:(INTEGER);
+
+  - delete   :INTEGER <-`SDLK_DELETE`  :(INTEGER);
+  - up       :INTEGER <-`SDLK_UP`      :(INTEGER);
+  - down     :INTEGER <-`SDLK_DOWN`    :(INTEGER);
+  - right    :INTEGER <-`SDLK_RIGHT`   :(INTEGER);
+  - left     :INTEGER <-`SDLK_LEFT`    :(INTEGER);
+  - insert   :INTEGER <-`SDLK_INSERT`  :(INTEGER);
+  - home     :INTEGER <-`SDLK_HOME`    :(INTEGER);
+  - end      :INTEGER <-`SDLK_END`     :(INTEGER);
+  - pageup   :INTEGER <-`SDLK_PAGEUP`  :(INTEGER);
+  - pagedown :INTEGER <-`SDLK_PAGEDOWN`:(INTEGER);
+
+  - f1  :INTEGER <-`SDLK_F1` :(INTEGER);
+  - f2  :INTEGER <-`SDLK_F2` :(INTEGER);
+  - f3  :INTEGER <-`SDLK_F3` :(INTEGER);
+  - f4  :INTEGER <-`SDLK_F4` :(INTEGER);
+  - f5  :INTEGER <-`SDLK_F5` :(INTEGER);
+  - f6  :INTEGER <-`SDLK_F6` :(INTEGER);
+  - f7  :INTEGER <-`SDLK_F7` :(INTEGER);
+  - f8  :INTEGER <-`SDLK_F8` :(INTEGER);
+  - f9  :INTEGER <-`SDLK_F9` :(INTEGER);
+  - f10 :INTEGER <-`SDLK_F10`:(INTEGER);
+  - f11 :INTEGER <-`SDLK_F11`:(INTEGER);
+  - f12 :INTEGER <-`SDLK_F12`:(INTEGER);
+  - f13 :INTEGER <-`SDLK_F13`:(INTEGER);
+  - f14 :INTEGER <-`SDLK_F14`:(INTEGER);
+  - f15 :INTEGER <-`SDLK_F15`:(INTEGER);
+
+  - numlock   :INTEGER <-`SDLK_NUMLOCK`  :(INTEGER);
+  - capslock  :INTEGER <-`SDLK_CAPSLOCK` :(INTEGER);
+  - scrollock :INTEGER <-`SDLK_SCROLLOCK`:(INTEGER);
+  - rshift    :INTEGER <-`SDLK_RSHIFT`   :(INTEGER);
+  - lshift    :INTEGER <-`SDLK_LSHIFT`   :(INTEGER);
+  - rctrl     :INTEGER <-`SDLK_RCTRL`    :(INTEGER);
+  - lctrl     :INTEGER <-`SDLK_LCTRL`    :(INTEGER);
+  - ralt      :INTEGER <-`SDLK_RALT`     :(INTEGER);
+  - lalt      :INTEGER <-`SDLK_LALT`     :(INTEGER);
+  - rmeta     :INTEGER <-`SDLK_RMETA`    :(INTEGER);
+  - lmeta     :INTEGER <-`SDLK_LMETA`    :(INTEGER);
+  - lsuper    :INTEGER <-`SDLK_LSUPER`   :(INTEGER);
+  - rsuper    :INTEGER <-`SDLK_RSUPER`   :(INTEGER);
+  - mode      :INTEGER <-`SDLK_MODE`     :(INTEGER);
+  - compose   :INTEGER <-`SDLK_COMPOSE`  :(INTEGER);
+
+  - help   :INTEGER <-`SDLK_HELP`  :(INTEGER);
+  - print  :INTEGER <-`SDLK_PRINT` :(INTEGER);
+  - sysreq :INTEGER <-`SDLK_SYSREQ`:(INTEGER);
+  - break  :INTEGER <-`SDLK_BREAK` :(INTEGER);
+  - menu   :INTEGER <-`SDLK_MENU`  :(INTEGER);
+  - power  :INTEGER <-`SDLK_POWER` :(INTEGER);
+  - euro   :INTEGER <-`SDLK_EURO`  :(INTEGER);
+  - undo   :INTEGER <-`SDLK_UNDO`  :(INTEGER);
+
+//
+// Numeric keypad
+//
+  - kp_0        :INTEGER <-`SDLK_KP0`        :(INTEGER);
+  - kp_1        :INTEGER <-`SDLK_KP1`        :(INTEGER);
+  - kp_2        :INTEGER <-`SDLK_KP2`        :(INTEGER);
+  - kp_3        :INTEGER <-`SDLK_KP3`        :(INTEGER);
+  - kp_4        :INTEGER <-`SDLK_KP4`        :(INTEGER);
+  - kp_5        :INTEGER <-`SDLK_KP5`        :(INTEGER);
+  - kp_6        :INTEGER <-`SDLK_KP6`        :(INTEGER);
+  - kp_7        :INTEGER <-`SDLK_KP7`        :(INTEGER);
+  - kp_8        :INTEGER <-`SDLK_KP8`        :(INTEGER);
+  - kp_9        :INTEGER <-`SDLK_KP9`        :(INTEGER);
+  - kp_period   :INTEGER <-`SDLK_KP_PERIOD`  :(INTEGER);
+  - kp_divide   :INTEGER <-`SDLK_KP_DIVIDE`  :(INTEGER);
+  - kp_multiply :INTEGER <-`SDLK_KP_MULTIPLY`:(INTEGER);
+  - kp_minus    :INTEGER <-`SDLK_KP_MINUS`   :(INTEGER);
+  - kp_plus     :INTEGER <-`SDLK_KP_PLUS`    :(INTEGER);
+  - kp_enter    :INTEGER <-`SDLK_KP_ENTER`   :(INTEGER);
+  - kp_equals   :INTEGER <-`SDLK_KP_EQUALS`  :(INTEGER);
+
+//
+// Keys mods
+//
+  - mod_none   :INTEGER <- `KMOD_NONE`  :(INTEGER);
+	- mod_shift  :INTEGER <- `KMOD_SHIFT` :(INTEGER);
+	- mod_lshift :INTEGER <- `KMOD_LSHIFT`:(INTEGER);
+	- mod_rshift :INTEGER <- `KMOD_RSHIFT`:(INTEGER);
+  - mod_ctrl   :INTEGER <- `KMOD_CTRL`  :(INTEGER);
+	- mod_lctrl  :INTEGER <- `KMOD_LCTRL` :(INTEGER);
+	- mod_rctrl  :INTEGER <- `KMOD_RCTRL` :(INTEGER);
+  - mod_alt    :INTEGER <- `KMOD_ALT`   :(INTEGER);
+  - mod_lalt   :INTEGER <- `KMOD_LALT`  :(INTEGER);
+	- mod_ralt   :INTEGER <- `KMOD_RALT`  :(INTEGER);
+	- mod_meta   :INTEGER <- `KMOD_META`  :(INTEGER);
+	- mod_lmeta  :INTEGER <- `KMOD_LMETA` :(INTEGER);
+	- mod_rmeta  :INTEGER <- `KMOD_RMETA` :(INTEGER);
+	- mod_num    :INTEGER <- `KMOD_NUM`   :(INTEGER);
+	- mod_caps   :INTEGER <- `KMOD_CAPS`  :(INTEGER);
+	- mod_mode   :INTEGER <- `KMOD_MODE`  :(INTEGER);
diff --git a/lib/unstable/sdl-binding/sdl/keycode.li b/lib/unstable/sdl-binding/sdl/keycode.li
new file mode 100644
index 0000000..ad05545
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/keycode.li
@@ -0,0 +1,182 @@
+///////////////////////////////////////////////////////////////////////////////
+//                           Lisaac-SDL Library                              //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := KEYCODE;
+  - comment  := "X11 key mapping";
+  - author   := "Xavier Oswald <x.oswald at free.fr>";
+
+  - external :=
+  `
+    SDL_keysym keysym;
+  `;
+
+Section Inherit
+  
+  - parent_keycode: Expanded ABSTRACT_KEYCODE;
+  
+Section Public
+
+  - make <-
+  (
+    keys := HASHED_DICTIONARY(INTEGER,INTEGER).create;
+
+    keys.add k_backspace to (`SDLK_BACKSPACE`:INTEGER);
+    keys.add k_tab to (`SDLK_TAB`:INTEGER);
+    keys.add k_clear to (`SDLK_CLEAR`:INTEGER);
+    keys.add k_return to (`SDLK_RETURN`:INTEGER);
+    keys.add k_pause to (`SDLK_PAUSE`:INTEGER);
+    keys.add k_escape to (`SDLK_ESCAPE`:INTEGER);
+    keys.add k_space to (`SDLK_SPACE`:INTEGER);
+    keys.add k_exclaim to (`SDLK_EXCLAIM`:INTEGER);
+    keys.add k_quotedbl to (`SDLK_QUOTEDBL`:INTEGER);
+    keys.add k_hash to (`SDLK_HASH`:INTEGER);
+    keys.add k_dollar to (`SDLK_DOLLAR`:INTEGER);
+    keys.add k_ampersand to (`SDLK_AMPERSAND`:INTEGER);
+    keys.add k_quote to (`SDLK_QUOTE`:INTEGER);
+    keys.add k_leftparen to (`SDLK_LEFTPAREN`:INTEGER);
+    keys.add k_rightparen to (`SDLK_RIGHTPAREN`:INTEGER);
+    keys.add k_asterisk to (`SDLK_ASTERISK`:INTEGER);
+    keys.add k_plus to (`SDLK_PLUS`:INTEGER);
+    keys.add k_comma to (`SDLK_COMMA`:INTEGER);
+    keys.add k_minus to (`SDLK_MINUS`:INTEGER);
+    keys.add k_period to (`SDLK_PERIOD`:INTEGER);
+    keys.add k_slash to (`SDLK_SLASH`:INTEGER);
+    keys.add k_0 to (`SDLK_0`:INTEGER);
+    keys.add k_1 to (`SDLK_1`:INTEGER);
+    keys.add k_2 to (`SDLK_2`:INTEGER);
+    keys.add k_3 to (`SDLK_3`:INTEGER);
+    keys.add k_4 to (`SDLK_4`:INTEGER);
+    keys.add k_5 to (`SDLK_5`:INTEGER);
+    keys.add k_6 to (`SDLK_6`:INTEGER);
+    keys.add k_7 to (`SDLK_7`:INTEGER);
+    keys.add k_8 to (`SDLK_8`:INTEGER);
+    keys.add k_9 to (`SDLK_9`:INTEGER);
+    keys.add k_colon to (`SDLK_COLON`:INTEGER);
+    keys.add k_semicolon to (`SDLK_SEMICOLON`:INTEGER);
+    keys.add k_less to (`SDLK_LESS`:INTEGER);
+    keys.add k_equals to (`SDLK_EQUALS`:INTEGER);
+    keys.add k_greater to (`SDLK_GREATER`:INTEGER);
+    keys.add k_at to (`SDLK_AT`:INTEGER);
+    keys.add k_leftbracket to (`SDLK_LEFTBRACKET`:INTEGER);
+    keys.add k_backslash to (`SDLK_BACKSLASH`:INTEGER);
+    keys.add k_rightbracket to (`SDLK_RIGHTBRACKET`:INTEGER);
+    keys.add k_caret to (`SDLK_CARET`:INTEGER);
+    keys.add k_underscore to (`SDLK_UNDERSCORE`:INTEGER);
+    keys.add k_backquote to (`SDLK_BACKQUOTE`:INTEGER);
+    keys.add k_a to (`SDLK_a`:INTEGER);
+    keys.add k_b to (`SDLK_b`:INTEGER);
+    keys.add k_c to (`SDLK_c`:INTEGER);
+    keys.add k_d to (`SDLK_d`:INTEGER);
+    keys.add k_e to (`SDLK_e`:INTEGER);
+    keys.add k_f to (`SDLK_f`:INTEGER);
+    keys.add k_g to (`SDLK_g`:INTEGER);
+    keys.add k_h to (`SDLK_h`:INTEGER);
+    keys.add k_i to (`SDLK_i`:INTEGER);
+    keys.add k_j to (`SDLK_j`:INTEGER);
+    keys.add k_k to (`SDLK_k`:INTEGER);
+    keys.add k_l to (`SDLK_l`:INTEGER);
+    keys.add k_m to (`SDLK_m`:INTEGER);
+    keys.add k_n to (`SDLK_n`:INTEGER);
+    keys.add k_o to (`SDLK_o`:INTEGER);
+    keys.add k_p to (`SDLK_p`:INTEGER);
+    keys.add k_q to (`SDLK_q`:INTEGER);
+    keys.add k_r to (`SDLK_r`:INTEGER);
+    keys.add k_s to (`SDLK_s`:INTEGER);
+    keys.add k_t to (`SDLK_t`:INTEGER);
+    keys.add k_u to (`SDLK_u`:INTEGER);
+    keys.add k_v to (`SDLK_v`:INTEGER);
+    keys.add k_w to (`SDLK_w`:INTEGER);
+    keys.add k_x to (`SDLK_x`:INTEGER);
+    keys.add k_y to (`SDLK_y`:INTEGER);
+    keys.add k_z to (`SDLK_z`:INTEGER);
+    keys.add k_delete to (`SDLK_DELETE`:INTEGER);
+    
+    keys.add kp_0 to (`SDLK_KP0`:INTEGER);
+    keys.add kp_1 to (`SDLK_KP1`:INTEGER);
+    keys.add kp_2 to (`SDLK_KP2`:INTEGER);
+    keys.add kp_3 to (`SDLK_KP3`:INTEGER);
+    keys.add kp_4 to (`SDLK_KP4`:INTEGER);
+    keys.add kp_5 to (`SDLK_KP5`:INTEGER);
+    keys.add kp_6 to (`SDLK_KP6`:INTEGER);
+    keys.add kp_7 to (`SDLK_KP7`:INTEGER);
+    keys.add kp_8 to (`SDLK_KP8`:INTEGER);
+    keys.add kp_9 to (`SDLK_KP9`:INTEGER);
+    keys.add kp_period to (`SDLK_KP_PERIOD`:INTEGER);
+    keys.add kp_divide to (`SDLK_KP_DIVIDE`:INTEGER);
+    keys.add kp_multiply to (`SDLK_KP_MULTIPLY`:INTEGER);
+    keys.add kp_minus to (`SDLK_KP_MINUS`:INTEGER);
+    keys.add kp_plus to (`SDLK_KP_PLUS`:INTEGER);
+    keys.add kp_enter to (`SDLK_KP_ENTER`:INTEGER);
+    keys.add kp_equals to (`SDLK_KP_EQUALS`:INTEGER);
+    
+    keys.add k_up to (`SDLK_UP`:INTEGER);
+    keys.add k_down to (`SDLK_DOWN`:INTEGER);
+    keys.add k_right to (`SDLK_RIGHT`:INTEGER);
+    keys.add k_left to (`SDLK_LEFT`:INTEGER);
+    keys.add k_insert to (`SDLK_INSERT`:INTEGER);
+    keys.add k_home to (`SDLK_HOME`:INTEGER);
+    keys.add k_end to (`SDLK_END`:INTEGER);
+    keys.add k_pageup to (`SDLK_PAGEUP`:INTEGER);
+    keys.add k_pagedown to (`SDLK_PAGEDOWN`:INTEGER);
+    
+    keys.add k_f1 to (`SDLK_F1`:INTEGER);
+    keys.add k_f2 to (`SDLK_F2`:INTEGER);
+    keys.add k_f3 to (`SDLK_F3`:INTEGER);
+    keys.add k_f4 to (`SDLK_F4`:INTEGER);
+    keys.add k_f5 to (`SDLK_F5`:INTEGER);
+    keys.add k_f6 to (`SDLK_F6`:INTEGER);
+    keys.add k_f7 to (`SDLK_F7`:INTEGER);
+    keys.add k_f8 to (`SDLK_F8`:INTEGER);
+    keys.add k_f9 to (`SDLK_F9`:INTEGER);
+    keys.add k_f10 to (`SDLK_F10`:INTEGER);
+    keys.add k_f11 to (`SDLK_F11`:INTEGER);
+    keys.add k_f12 to (`SDLK_F12`:INTEGER);
+    keys.add k_f13 to (`SDLK_F13`:INTEGER);
+    keys.add k_f14 to (`SDLK_F14`:INTEGER);
+    keys.add k_f15 to (`SDLK_F15`:INTEGER);
+    
+    keys.add k_numlock to (`SDLK_NUMLOCK`:INTEGER);
+    keys.add k_capslock to (`SDLK_CAPSLOCK`:INTEGER);
+    keys.add k_scrollock to (`SDLK_SCROLLOCK`:INTEGER);
+    keys.add k_rshift to (`SDLK_RSHIFT`:INTEGER);
+    keys.add k_lshift to (`SDLK_LSHIFT`:INTEGER);
+    keys.add k_rctrl to (`SDLK_RCTRL`:INTEGER);
+    keys.add k_lctrl to (`SDLK_LCTRL`:INTEGER);
+    keys.add k_ralt to (`SDLK_RALT`:INTEGER);
+    keys.add k_lalt to (`SDLK_LALT`:INTEGER);
+    keys.add k_rmeta to (`SDLK_RMETA`:INTEGER);
+    keys.add k_lmeta to (`SDLK_LMETA`:INTEGER);
+    keys.add k_lsuper to (`SDLK_LSUPER`:INTEGER);
+    keys.add k_rsuper to (`SDLK_RSUPER`:INTEGER);
+    keys.add k_mode to (`SDLK_MODE`:INTEGER);
+    keys.add k_compose to (`SDLK_COMPOSE`:INTEGER);
+    
+    keys.add k_help to (`SDLK_HELP`:INTEGER);
+    keys.add k_print to (`SDLK_PRINT`:INTEGER);
+    keys.add k_sysreq to (`SDLK_SYSREQ`:INTEGER);
+    keys.add k_break to (`SDLK_BREAK`:INTEGER);
+    keys.add k_menu to (`SDLK_MENU`:INTEGER);
+    keys.add k_power to (`SDLK_POWER`:INTEGER);
+    keys.add k_euro to (`SDLK_EURO`:INTEGER);
+    keys.add k_undo to (`SDLK_UNDO`:INTEGER);
+  );
diff --git a/lib/unstable/sdl-binding/sdl/sdl.li b/lib/unstable/sdl-binding/sdl/sdl.li
new file mode 100644
index 0000000..1310ba5
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/sdl.li
@@ -0,0 +1,100 @@
+///////////////////////////////////////////////////////////////////////////////
+//   Lisaac - SDL binding library                                            //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//   http://lisaac.org                                                       //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name      := SDL;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "A cross-platform multimedia library designed to provide fast hardware access.";
+  - external  :=  `#include <SDL/SDL.h>`;
+  - lip       <- ( add_lib "-lSDL -I/opt/local/include/SDL -D_THREAD_SAFE -L/opt/local/lib -lSDL"; );
+
+Section Public
+
+//
+// SDL INIT FLAGS
+//
+  - init_timer       :UINTEGER_32 <- `SDL_INIT_TIMER`      :(UINTEGER_32);
+  - init_audio       :UINTEGER_32 <- `SDL_INIT_AUDIO`      :(UINTEGER_32);
+  - init_video       :UINTEGER_32 <- `SDL_INIT_VIDEO`      :(UINTEGER_32);
+  - init_cdrom       :UINTEGER_32 <- `SDL_INIT_CDROM`      :(UINTEGER_32);
+  - init_joystick    :UINTEGER_32 <- `SDL_INIT_JOYSTICK`   :(UINTEGER_32);
+  - init_noparachute :UINTEGER_32 <- `SDL_INIT_NOPARACHUTE`:(UINTEGER_32); // Don't catch fatal signals
+  - init_eventthread :UINTEGER_32 <- `SDL_INIT_EVENTTHREAD`:(UINTEGER_32); // Not supported on all OS's
+  - init_everything  :UINTEGER_32 <- `SDL_INIT_EVERYTHING` :(UINTEGER_32);
+
+//
+// INIT AND QUIT SDL SUBSYTEMS
+//
+  - init flags:UINTEGER_32 :INTEGER <-
+  // This function loads the SDL dynamically linked library and initializes 
+  // the subsystems specified by `flags' (and those satisfying dependencies)
+  // Unless the `init_noparachute' flag is set, it will install cleanup signal
+  // handlers for some commonly ignored fatal signals (like SIGSEGV)
+  (
+    `SDL_Init(@flags)`:(INTEGER)
+  );
+
+  - init_subsystem flags:UINTEGER_32 :INTEGER <-
+  // This function initializes specific SDL subsystems
+  (
+    `SDL_InitSubSystem(@flags)`:(INTEGER)
+  );
+
+  - was_init flags:UINTEGER_32 :UINTEGER_32 <-
+  // This function returns mask of the specified subsystems which have been
+  // initialized. If `flags' is 0, it returns a mask of all initialized
+  // subsystems.
+  (
+    `SDL_WasInit(@flags)`:(UINTEGER_32)
+  );
+
+  - quit_subsystem flags:UINTEGER_32 <-
+  // This function cleans up specific SDL subsystems
+  (
+    `SDL_QuitSubSystem(@flags)`;
+  );
+
+  - quit <-
+  // This function cleans up all initialized subsystems and unloads the
+  // dynamically linked library. You should call it upon all exit conditions.
+  (
+    `SDL_Quit()`;
+    "SDL: quit ...".println;
+  );
+
+  - set_timer       :INTEGER <- `SDL_InitSubSystem(SDL_INIT_TIMER)`      :(INTEGER);
+  - set_audio       :INTEGER <- `SDL_InitSubSystem(SDL_INIT_AUDIO)`      :(INTEGER);
+  - set_video       :INTEGER <- `SDL_InitSubSystem(SDL_INIT_VIDEO)`      :(INTEGER);
+  - set_cdrom       :INTEGER <- `SDL_InitSubSystem(SDL_INIT_CDROM)`      :(INTEGER);
+  - set_joystick    :INTEGER <- `SDL_InitSubSystem(SDL_INIT_JOYSTICK)`   :(INTEGER);
+  - set_noparachute :INTEGER <- `SDL_InitSubSystem(SDL_INIT_NOPARACHUTE)`:(INTEGER);
+  - set_eventthread :INTEGER <- `SDL_InitSubSystem(SDL_INIT_EVENTTHREAD)`:(INTEGER);
+  - set_everything  :INTEGER <- `SDL_InitSubSystem(SDL_INIT_EVERYTHING)` :(INTEGER);
+  
+  - unset_timer       <- `SDL_QuitSubSystem(SDL_INIT_TIMER)`;
+  - unset_audio       <- `SDL_QuitSubSystem(SDL_INIT_AUDIO)`;
+  - unset_video       <- `SDL_QuitSubSystem(SDL_INIT_VIDEO)`;
+  - unset_cdrom       <- `SDL_QuitSubSystem(SDL_INIT_CDROM)`;
+  - unset_joystick    <- `SDL_QuitSubSystem(SDL_INIT_JOYSTICK)`;
+  - unset_noparachute <- `SDL_QuitSubSystem(SDL_INIT_NOPARACHUTE)`;
+  - unset_eventthread <- `SDL_QuitSubSystem(SDL_INIT_EVENTTHREAD)`;
+  - unset_everything  <- `SDL_QuitSubSystem(SDL_INIT_EVERYTHING)`;
diff --git a/lib/unstable/sdl-binding/sdl/sdl_active.li b/lib/unstable/sdl-binding/sdl/sdl_active.li
new file mode 100644
index 0000000..043412f
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/sdl_active.li
@@ -0,0 +1,51 @@
+///////////////////////////////////////////////////////////////////////////////
+//                                  Lisaac                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name      := SDL_ACTIVE;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>)";
+  - comment   := "SDL Application status";
+
+Section Public
+
+  //
+  // APPLICATION State:
+  //
+
+  - app_mouse_focus :UINTEGER_8 := `SDL_APPMOUSEFOCUS`:(UINTEGER_8); 
+    // The application has mouse coverage 0x01
+
+  - app_input_focus :UINTEGER_8 := `SDL_APPINPUTFOCUS`:(UINTEGER_8);
+    // The application has input focus 0x02
+
+  - app_active :UINTEGER_8 := `SDL_APPACTIVE`:(UINTEGER_8);
+    // The application is active 0x04
+
+  - get_application_state :UINTEGER_8 <-
+  // This function returns the current state of the application, which is a
+  // bitwise combination of `app_mouse_focus', `app_input_focus' , and
+  // `app_active'. If `app_active' is set, then the user is able to
+  // see your application, otherwise it has been iconified or disabled.
+  (
+    `SDL_GetAppState()`:(UINTEGER_8)
+  );
diff --git a/lib/unstable/sdl-binding/sdl/sdl_blah.li b/lib/unstable/sdl-binding/sdl/sdl_blah.li
new file mode 100644
index 0000000..3c677dc
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/sdl_blah.li
@@ -0,0 +1,129 @@
+///////////////////////////////////////////////////////////////////////////////
+//   Lisaac - SDL binding library                                            //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//   http://lisaac.org                                                       //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name      := SDL_BLAH;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "TrueType Font";
+  - type      := `TTF_Font`;
+  - external  := `#include <SDL/SDL_ttf.h>`;
+  - lip       <- (add_lib "-lSDL_ttf";);
+
+Section Inherit
+
+  + parent_object:OBJECT := OBJECT;
+
+Section Public
+
+//
+// Version
+//
+  // #define TTF_VERSION(X)		SDL_TTF_VERSION(X)
+  - major       :INTEGER <- `TTF_MAJOR_VERSION`:(INTEGER);
+  - minor       :INTEGER <- `TTF_MINOR_VERSION`:(INTEGER);
+  - patch_level :INTEGER <- `TTF_PATCHLEVEL`   :(INTEGER);
+
+//
+// Font style
+//
+  - style_normal    :INTEGER <- `TTF_STYLE_NORMAL`   :(INTEGER);
+  - style_bold      :INTEGER <- `TTF_STYLE_BOLD`     :(INTEGER);
+  - style_italic    :INTEGER <- `TTF_STYLE_ITALIC`   :(INTEGER);
+  - style_underline :INTEGER <- `TTF_STYLE_UNDERLINE`:(INTEGER);
+
+  - print_version <-
+  (
+    "SDL TTF Version:".print;
+    major.print;
+    '.'.print;
+    minor.print;
+    '.'.print;
+    patch_level.println
+  );
+
+  - init :INTEGER <-
+  // Initialize the TTF engine - returns 0 if successful, -1 on error
+  (
+    `TTF_Init()`:(INTEGER)
+  );
+
+  - quit <-
+  // De-initialize the TTF engine
+  (
+    `TTF_Quit()`;
+  );
+
+  - was_init :INTEGER <-
+  // Check if the TTF engine is initialized
+  (
+    `TTF_WasInit()`:INTEGER
+  );
+
+
+  - create :SELF <- ( SELF.clone );
+  
+  - open_font (file:STRING_CONSTANT, ptsize:INTEGER) :SELF <-
+  // Open a font file and create a font of the specified point size.  Some .fon
+  // fonts will have several sizes embedded in the file, so the point size
+  // becomes the index of choosing which size.  If the value is too high, the
+  // last indexed size will be the default.
+  ( + result:SELF;
+    result := SELF.clone;
+//    result.make(file, ptsize);
+    result
+  );
+
+  - make (file:STRING_CONSTANT, ptsize:INTEGER) <-
+  ( 
+    + ptr:POINTER;
+    + f:NATIVE_ARRAY(CHARACTER);
+    f :=  file.to_external;
+    ptr := `TTF_OpenFont(@f, @ptsize)`:(POINTER);
+    result := CONVERT(POINTER,SELF).on ptr;
+  );
+/*
+extern DECLSPEC TTF_Font * SDLCALL TTF_OpenFontIndex(const char *file, int ptsize, long index);
+extern DECLSPEC TTF_Font * SDLCALL TTF_OpenFontRW(SDL_RWops *src, int freesrc, int ptsize);
+extern DECLSPEC TTF_Font * SDLCALL TTF_OpenFontIndexRW(SDL_RWops *src, int freesrc, int ptsize, long index);
+*/
+
+
+  - render_text_solid (text:STRING_CONSTANT, fg:SDL_COLOR) :SDL_SURFACE <-
+  ( + t:NATIVE_ARRAY(CHARACTER);
+    + ptr:POINTER;
+    + surface :SDL_SURFACE;
+    
+    t := text.to_external;
+    //ptr := `TTF_RenderText_Solid(@Self, @t, @fg)`:(POINTER);
+    
+    surface := SDL_SURFACE.create;
+//    surface := CONVERT(POINTER, SDL_SURFACE).on ptr;
+    surface
+  );
+
+
+  - close <-
+  // Close an opened font file
+  (
+    `TTF_CloseFont(@Self)`;
+    // + Destroy object !
+  );
diff --git a/lib/unstable/sdl-binding/sdl/sdl_cdrom.li b/lib/unstable/sdl-binding/sdl/sdl_cdrom.li
new file mode 100644
index 0000000..4ba942e
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/sdl_cdrom.li
@@ -0,0 +1,202 @@
+///////////////////////////////////////////////////////////////////////////////
+//                                  Lisaac                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name      := SDL_CDROM;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>)";
+  - comment   := "CD-ROM Global access. \
+                 \(In order to use these functions, SDL_INIT must have been \
+                 \called with the CD-ROM initialization. This causes SDL to \
+                 \scan the system for CD-ROM drives, and load appropriate \
+                 \drivers.)";
+  - type      := `SDL_CD`;
+
+Section Inherit
+
+  + parent_object:OBJECT := OBJECT;
+
+Section Public
+
+//
+// STATUS
+//
+  - cd_traempy  :INTEGER := `CD_TRAYEMPTY` :INTEGER; // No CD-ROM
+  - cd_stopped  :INTEGER := `CD_STOPPED`   :INTEGER; // Stopped status
+  - cd_playing  :INTEGER := `CD_PLAYING`   :INTEGER; // Playing status
+  - cd_paused   :INTEGER := `CD_PAUSED`    :INTEGER; // Paused status
+  - cd_error    :INTEGER := `CD_ERROR`     :INTEGER; // Error status
+
+//
+// DEVICES
+//
+  - nb_drives :INTEGER<-
+  // Returns the number of CD-ROM drives on the system, or -1 if 
+  // `SDL_INIT.set_cdrom' or `SDL_INIT.set_evrything' has not be called before.
+  (
+    `SDL_CDNumDrives()`:(INTEGER)
+  );
+
+  - drive_name d:INTEGER :STRING <-
+  // Returns a human-readable, system-dependent identifier for a given CD-ROM 
+  // drive `number'. Example: `/dev/cdrom' or `E:'
+  ( + drive:NATIVE_ARRAY(CHARACTER);
+    + drive_name:STRING;
+
+    drive := `SDL_CDName(@d)`:(NATIVE_ARRAY(CHARACTER));
+    drive_name := STRING.clone;
+    drive_name.from_external drive;
+    drive_name
+  );
+
+//
+// Internal CD-ROM
+//
+  - create drive:INTEGER :SELF <-
+  // Create and Set the cdrom given a drive `number'
+  ( + result :SELF;
+    + p:POINTER;
+    result := SELF.clone;
+    p := `SDL_CDOpen(@drive)`:POINTER;
+    result := CONVERT(POINTER,SELF).on p;
+    result
+  );
+
+  - status :INTEGER <-
+  // This function returns the current status of the CD-ROM drive.
+  (
+    `SDL_CDStatus(@Self)`:(INTEGER)
+  );
+
+  - cd_indrive status:INTEGER :BOOLEAN <-
+  // Given a status, returns `TRUE' if there's a disk in the drive
+  ( + s:BOOLEAN;
+    + s_r:INTEGER;
+    
+    s_r := `CD_INDRIVE(@s)`:(INTEGER);
+
+    (s_r > 0).if{
+      s := TRUE;
+    };
+
+    s
+  );
+
+  - cd_play_tracks (start_track,start_frame, ntracks, nframes:INTEGER) :INTEGER<-
+  // Play the given CD starting at `start_track' and `start_frame' for `ntracks'
+  // tracks and `nframes' frames.  If both `ntrack' and `nframe' are 0, play 
+  // until the end of the CD.  This function will skip data tracks.
+  // This slot should only be called after calling the slot `status' to 
+  // get track information about the CD.
+  // This function returns 0, or -1 if there was an error.
+  (
+
+    `SDL_CDPlayTracks(@Self, @start_track, @start_frame, @ntracks, @nframes)`:(INTEGER)
+
+
+    /* USAGE EXAMPLE
+       =============
+      + cdrom:SDL_CDROM_T;
+      cdrom := SDL_CDROM_T.create_with 0;
+      // PLAY ENTIRE CD
+      (cdom.indrive(cdrom.status) = 0).if {
+        cdrom.play_tracks(0,0,0,0);
+      };
+    */
+  );
+
+  - cd_play s:INTEGER length l:INTEGER :BOOLEAN <-
+  //  Play the given CD starting at `start' frame for `length' frames.
+  //  It returns `TRUE', or `FALSE' if there was an error.
+  ( + return:BOOLEAN;
+    + return_s:INTEGER;
+
+    return_s := `SDL_CDPlay(@Self, @s, @l)`:(INTEGER);
+
+    (return_s = 0).if{
+      return := TRUE;
+    };
+
+    return
+  );
+
+  - cd_pause <-
+  // Set the CD-ROM to pause.
+  (
+    `SDL_CDPause(@Self)`;
+  );
+
+  - cd_resume <-
+  // Resume CD-ROM.
+  (
+    `SDL_CDResume(@Self)`;
+  );
+
+  - cd_stop <-
+  // Stop playing CD-ROM.
+  (
+    `SDL_CDStop(@Self)`;
+  );
+
+  - eject <-
+  // Eject CD-ROM.
+  (
+    `SDL_CDEject(@Self)`;
+  );
+
+  - close <-
+  // Close CD-ROM drive handling.
+  (
+    `SDL_CDClose(@Self)`;
+  );
+
+//
+// TRACKS:
+//
+  - cd_numtracks :INTEGER <- `@Self->numtracks`:(INTEGER);
+  // Return the number of tracks of the CD-ROM else 0.
+
+  - cd_cur_track :INTEGER <- `@Self->cur_track`:(INTEGER);
+  // Current track position
+
+  - cd_cur_track_length :INTEGER <-
+  // Length, in frames, of the current track
+  (
+    `(@Self->track[@cur_track].length`:(INTEGER)
+  );
+  
+  - cd_track_length track:INTEGER :INTEGER <-
+  // Length, in frames, of a given track.
+  (
+    `(@Self->track[@track].length`:(INTEGER)
+  );
+
+  - cd_cur_frame :INTEGER <-
+  // Current frame offset within current track
+  (
+    `@Self->cur_frame`:(INTEGER)
+  ); 
+
+//
+// TRACK:
+//
+// TODO specific track access
diff --git a/lib/unstable/sdl-binding/sdl/sdl_cpuinfo.li b/lib/unstable/sdl-binding/sdl/sdl_cpuinfo.li
new file mode 100644
index 0000000..0d65d58
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/sdl_cpuinfo.li
@@ -0,0 +1,82 @@
+///////////////////////////////////////////////////////////////////////////////
+//                            Lisaac-SDL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name      := SDL_CPUINFO;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "CPU instruction detection";
+
+Section Public
+
+  //
+  // CPU instruction detection: 
+  //
+
+  - has_rdtsc :BOOLEAN<-
+  // Returns true if the CPU has the RDTSC instruction 
+  ( 
+    `SDL_HasRDTSC()`:BOOLEAN{TRUE,FALSE}
+  );
+
+  - has_mmx :BOOLEAN<-
+  // Returns true if the CPU has MMX features
+  (
+    `SDL_HasMMX()`:BOOLEAN{TRUE,FALSE}
+  );
+
+  - has_mmx_ext :BOOLEAN<-
+  // Returns true if the CPU has MMX Ext. features
+  (
+    `SDL_HasMMXExt()`:BOOLEAN{TRUE,FALSE}
+  );
+
+  - has_3dnow :BOOLEAN<-
+  // Returns true if the CPU has 3DNow features
+  (
+    `SDL_Has3DNow()`:BOOLEAN{TRUE,FALSE}
+  );
+
+  - has_3dnow_ext :BOOLEAN<-
+  // Returns true if the CPU has 3DNow! Ext. features
+  ( 
+    `SDL_Has3DNowExt()`:BOOLEAN{TRUE,FALSE}
+  );
+
+  - has_sse :BOOLEAN<-
+  // Returns true if the CPU has SSE features
+  ( 
+    `SDL_HasSSE()`:BOOLEAN{TRUE,FALSE}
+  );
+
+  - has_sse2 :BOOLEAN<-
+  // Returns true if the CPU has SSE2 features
+  ( 
+    `SDL_HasSSE2()`:BOOLEAN{TRUE,FALSE}
+  );
+
+  - has_altivec :BOOLEAN<-
+  // Returns true if the CPU has AltiVec features
+  (
+    `SDL_HasAltiVec()`:BOOLEAN{TRUE,FALSE}
+  );
diff --git a/lib/unstable/sdl-binding/sdl/sdl_cursor.li b/lib/unstable/sdl-binding/sdl/sdl_cursor.li
new file mode 100644
index 0000000..a4290f3
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/sdl_cursor.li
@@ -0,0 +1,42 @@
+///////////////////////////////////////////////////////////////////////////////
+//                            Lisaac-SDL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name      := SDL_CURSOR;
+
+  - comment   := "Cursor related functions";
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - type      := `SDL_Cursor`;
+
+Section Inherit
+  
+  - parent_object: SDL_SETTINGS := SDL_SETTINGS;
+  
+Section Public
+
+  //TODO:
+  //void SDL_SetCursor(SDL_Cursor *cursor);
+  //SDL_Cursor *SDL_CreateCursor(Uint8 *data, Uint8 *mask,
+  //                             int w, int h, int hot_x, int hot_y);
+  //SDL_FreeCursor(SDL_Cursor *cursor);
+  //SDL_Cursor *SDL_GetCursor(void);
diff --git a/lib/unstable/sdl-binding/sdl/sdl_error.li b/lib/unstable/sdl-binding/sdl/sdl_error.li
new file mode 100644
index 0000000..60d081d
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/sdl_error.li
@@ -0,0 +1,57 @@
+///////////////////////////////////////////////////////////////////////////////
+//                                  Lisaac                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name      := SDL_ERROR;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "SDL Error stak managment";
+
+Section Public
+
+//
+// ERROR:
+//
+
+  - set error:STRING <-
+  // Push an error
+  ( + ptr :NATIVE_ARRAY(CHARACTER);
+    ptr := error.to_external;
+    `SDL_SetError(@ptr)`;
+  );
+  
+  - get :STRING <-
+  // get latest pushed error
+  ( + error :NATIVE_ARRAY(CHARACTER);
+    + result :STRING;
+    
+    error := `SDL_GetError()`:NATIVE_ARRAY(CHARACTER);
+    result := STRING.clone;
+    result.from_external(error);
+    result
+  );
+
+  - clear <-
+  // Clear all errors
+  (
+    `SDL_ClearError()`;
+  );
diff --git a/lib/unstable/sdl-binding/sdl/sdl_flag.li b/lib/unstable/sdl-binding/sdl/sdl_flag.li
new file mode 100644
index 0000000..389525d
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/sdl_flag.li
@@ -0,0 +1,102 @@
+///////////////////////////////////////////////////////////////////////////////
+//                                  Lisaac                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name      := SDL_FLAG;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>)";
+  - comment   := "SDL flags";
+
+Section Public
+
+  //
+  // Color key
+  //
+  - srccolorkey :UINTEGER_32 <- `SDL_SRCCOLORKEY`:(UINTEGER_32);
+
+  //
+  // Video
+  //
+  // TODO Available for SDL_SetVideoMode()
+  // ========================================================================
+  //                             VIDEO MODES 
+  // ========================================================================
+  // SDL_SWSURFACE : Create the video surface in system memory
+  // SDL_HWSURFACE : Create the video surface in video memory
+  // SDL_ASYNCBLIT : Enables the use of asynchronous updates of the display 
+  //                 surface. This will usually slow down blitting on single 
+  //                 CPU machines, but may provide a speed increase on SMP 
+  //                 systems.
+  // SDL_ANYFORMAT : Normally, if a video surface of the requested 
+  //                 bits-per-pixel (bpp) is not available, SDL will emulate 
+  //                 one with a shadow surface. Passing SDL_ANYFORMAT 
+  //                 prevents this and causes SDL to use the video surface,
+  //                 regardless of its pixel depth.
+  // SDL_HWPALETTE : Give SDL exclusive palette access. Without this flag you
+  //                 may not always get the the colors you request with 
+  //                 SDL_SetColors or SDL_SetPalette.
+  // SDL_DOUBLEBUF : Enable hardware double buffering; only valid with 
+  //                 SDL_HWSURFACE. Calling SDL_Flip will flip the buffers 
+  //                 and update the screen. All drawing will take place on 
+  //                 the surface that is not displayed at the moment. If 
+  //                 double buffering could not be enabled then SDL_Flip will
+  //                 just perform a SDL_UpdateRect on the entire screen.
+  // SDL_FULLSCREEN: SDL will attempt to use a fullscreen mode. If a hardware
+  //                 resolution change is not possible (for whatever reason),
+  //                 the next higher resolution will be used and the display 
+  //                 window centered on a black background.
+  // SDL_OPENGL    : Create an OpenGL rendering context. You should have 
+  //                 previously set OpenGL video attributes with 
+  //                 SDL_GL_SetAttribute.
+  // SDL_OPENGLBLIT: Create an OpenGL rendering context, like above, but allow
+  //                 normal blitting operations. The screen (2D) surface may 
+  //                 have an alpha channel, and SDL_UpdateRects must be used 
+  //                 for updating changes to the screen surface. NOTE: This 
+  //                 option is kept for compatibility only, and will be 
+  //                 removed in next versions. Is not recommended for new 
+  //                 code.
+  // SDL_RESIZABLE : Create a resizable window. When the window is resized by
+  //                 the user a SDL_VIDEORESIZE event is generated and 
+  //                 SDL_SetVideoMode can be called again with the new size.
+  // SDL_NOFRAME   : If possible, SDL_NOFRAME causes SDL to create a window 
+  //                 with no title bar or frame decoration. Fullscreen modes
+  //                 automatically have this flag set.
+  // ========================================================================
+
+
+  - anyformat  :UINTEGER_32 <- `SDL_ANYFORMAT` :(UINTEGER_32); // Allow any video depth/pixel-format
+  - hwpalette  :UINTEGER_32 <- `SDL_HWPALETTE` :(UINTEGER_32); // Surface has exclusive palette
+  - doublebuf  :UINTEGER_32 <- `SDL_DOUBLEBUF` :(UINTEGER_32); // Set up double-buffered video mode
+  - fullscreen :UINTEGER_32 <- `SDL_FULLSCREEN`:(UINTEGER_32); // Surface is a full screen display
+  - opengl     :UINTEGER_32 <- `SDL_OPENGL`    :(UINTEGER_32); // Create an OpenGL rendering context
+  - openglblit :UINTEGER_32 <- `SDL_OPENGLBLIT`:(UINTEGER_32); // Create an OpenGL rendering context and use it for blitting
+  - resizable  :UINTEGER_32 <- `SDL_RESIZABLE` :(UINTEGER_32); // This video mode may be resized
+  - noframe    :UINTEGER_32 <- `SDL_NOFRAME`   :(UINTEGER_32); // No window caption or edge frame
+
+  // TODO: /** Available for SDL_CreateRGBSurface() or SDL_SetVideoMode() */
+  - swsurface :UINTEGER_32 <- `SDL_SWSURFACE`:(UINTEGER_32); // Surface is in system memory 
+  - hwsurface :UINTEGER_32 <- `SDL_HWSURFACE`:(UINTEGER_32); //Surface is in video memory
+  - asynblit  :UINTEGER_32 <- `SDL_ASYNCBLIT`:(UINTEGER_32); //Use asynchronous blits if possible */
+
+  // TODO  flags for SDL_SetPalette() */
+  // #define SDL_LOGPAL 0x01
+  //#define SDL_PHYSPAL 0x02
diff --git a/lib/unstable/sdl-binding/sdl/sdl_init.li b/lib/unstable/sdl-binding/sdl/sdl_init.li
new file mode 100644
index 0000000..a394f12
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/sdl_init.li
@@ -0,0 +1,204 @@
+///////////////////////////////////////////////////////////////////////////////
+//                            Lisaac-SDL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := SDL_INIT;
+  - comment  := "set and refresh the init values";
+  - author   := "Xavier Oswald <x.oswald at free.fr>";
+
+Section Inherit
+  
+  - parent_object: SDL_SETTINGS := SDL_SETTINGS;
+  
+Section Public
+
+  - set_title t:STRING_CONSTANT <-
+  (
+    title := t;
+  );
+
+  - set_resolution (x,y:INTEGER) <-
+  (
+    width  := x;
+    height := y;
+  );
+
+  - set_bits b:INTEGER <- 
+  (
+    bits := b
+  );
+  
+  - set_fullscreen b:BOOLEAN <-
+  (
+    // add fullsreen function
+    fullscreen := b;
+  );
+
+  - set_timer b:BOOLEAN <- 
+  ( + result: INTEGER;
+    
+    b.if {
+      init_timer.if_false{
+        init_timer := TRUE;
+        result := `SDL_InitSubSystem(SDL_INIT_TIMER)`:(INTEGER);
+        (result = -1).if{
+          `printf("SDL could not initialize %s\n",SDL_GetError())`;
+        } else {
+          "SDL timer initialized\n".print;
+        };
+      } else {
+        "SDL timer already initilized\n".print;
+      };
+    } else {
+      init_timer.if{
+        init_timer := FALSE;
+        `SDL_QuitSubSystem(SDL_INIT_TIMER)`;
+        "SDL shutdown timer...\n".print;
+      };
+    };
+
+  );
+  
+  - set_audio b:BOOLEAN <- 
+  ( + result: INTEGER;
+    
+    b.if {
+      init_audio.if_false{ 
+        init_audio := TRUE;
+        result := `SDL_InitSubSystem(SDL_INIT_AUDIO)`:(INTEGER);
+        (result = -1).if{
+          `printf("SDL could not initialize %s\n",SDL_GetError())`;
+        } else {
+          "SDL audio initialized\n".print;
+        };
+      } else {
+        "SDL audio already initilized\n".print;
+      };
+    } else {
+      init_audio.if{
+        init_audio := FALSE;
+        `SDL_QuitSubSystem(SDL_INIT_AUDIO)`;
+        "SDL shutdown audio...\n".print;
+      };
+    };
+
+  );
+  
+  - set_video b:BOOLEAN <- 
+  ( + result: INTEGER;
+    
+    b.if {
+      init_video.if_false{ 
+        init_video := TRUE;
+        result := `SDL_InitSubSystem(SDL_INIT_VIDEO)`:(INTEGER);
+        (result = -1).if{
+          `printf("SDL could not initialize %s\n",SDL_GetError())`;
+        } else {
+          "SDL video initialized\n".print;
+        };
+      } else {
+        "SDL video already initilized\n".print;
+      };
+    } else {
+      init_video.if{
+        init_video := FALSE;
+        `SDL_QuitSubSystem(SDL_INIT_VIDEO)`;
+        "SDL shutdown video...\n".print;
+      };
+    };
+
+  );
+  
+  - set_cdrom b:BOOLEAN <- 
+  ( + result: INTEGER;
+    
+    b.if {
+      init_cdrom.if_false{ 
+        init_cdrom := TRUE;
+        result := `SDL_InitSubSystem(SDL_INIT_CDROM)`:(INTEGER);
+        (result = -1).if{
+          `printf("SDL could not initialize %s\n",SDL_GetError())`;
+        } else {
+          "SDL cdrom initialized\n".print;
+        };
+      } else {
+        "SDL cdrom already initilized\n".print;
+      };
+    } else {
+      init_cdrom.if{
+        init_cdrom := FALSE;
+        `SDL_QuitSubSystem(SDL_INIT_CDROM)`;
+        "SDL shutdown cdrom...\n".print;
+      };
+    };
+
+  );
+
+  - set_joystick b:BOOLEAN <- 
+  ( + result: INTEGER;
+    
+    b.if {
+      init_joystick.if_false{ 
+        init_joystick := TRUE;
+        result := `SDL_InitSubSystem(SDL_INIT_JOYSTICK)`:(INTEGER);
+        (result = -1).if{
+          `printf("SDL could not initialize %s\n",SDL_GetError())`;
+        } else {
+          "SDL joystick initialized\n".print;
+        };
+      } else {
+        "SDL joystick already initilized\n".print;
+      };
+    } else {
+      init_joystick.if{
+        init_joystick := FALSE;
+        `SDL_QuitSubSystem(SDL_INIT_JOYSTICK)`;
+        "SDL shutdown joystick...\n".print;
+      };
+    };
+
+  );
+
+  - set_everything b:BOOLEAN <-
+  (
+    set_timer    b;
+    set_audio    b;
+    set_video    b;
+    set_cdrom    b;
+    set_joystick b;
+  );
+
+  - set_no_parachute b:BOOLEAN <-
+  (
+    init_no_parachute := b;
+  );
+
+  - set_event_thread b:BOOLEAN <-
+  (
+    init_event_thread := b;
+  );
+
+  - quit <-
+  (
+    `SDL_Quit()`;
+    "SDL quit ...\n".print;
+  );
diff --git a/lib/unstable/sdl-binding/sdl/sdl_joystick.li b/lib/unstable/sdl-binding/sdl/sdl_joystick.li
new file mode 100644
index 0000000..790a67d
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/sdl_joystick.li
@@ -0,0 +1,206 @@
+///////////////////////////////////////////////////////////////////////////////
+//                                  Lisaac                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name      := SDL_JOYSTICK;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "";
+  - type      := `SDL_Joystick`;
+
+Section Inherit
+
+  + parent_any:ANY := ANY;
+
+Section Public /* Hat positions */
+
+//
+// Hat positions
+//
+
+  // SDL_JOYSTICK.get_hat() possible positions
+  - hat_centered  :UINTEGER_8 <- `SDL_HAT_CENTERED` :UINTEGER_8;
+  - hat_up        :UINTEGER_8 <- `SDL_HAT_UP`       :UINTEGER_8;
+  - hat_right     :UINTEGER_8 <- `SDL_HAT_RIGHT`    :UINTEGER_8;
+  - hat_down      :UINTEGER_8 <- `SDL_HAT_DOWN`     :UINTEGER_8;
+  - hat_left      :UINTEGER_8 <- `SDL_HAT_LEFT`     :UINTEGER_8;
+  - hat_rightup   :UINTEGER_8 <- `SDL_HAT_RIGHTUP`  :UINTEGER_8;
+  - hat_rightdown :UINTEGER_8 <- `SDL_HAT_RIGHTDOWN`:UINTEGER_8;
+  - hat_leftup    :UINTEGER_8 <- `SDL_HAT_LEFTUP`   :UINTEGER_8;
+  - hat_leftdown  :UINTEGER_8 <- `SDL_HAT_LEFTDOWN` :UINTEGER_8;
+
+Section Public /* Local Access */
+
+//
+// Direct Joystick access
+//
+
+  - create :SELF <-
+  ( + result:SELF;
+    result := clone;
+    result
+  );
+
+  - create_witch (device_index:INTEGER) :SELF <-
+  ( + result:SELF;
+    result := clone;
+    result.make device_index;
+    result
+  );
+
+  - make (device_index:INTEGER) <-
+  ( 
+    Self.open device_index; 
+  );
+
+  // TODO
+  - open (device_index:INTEGER) <-
+  // Open a joystick for use.
+  // The index passed as an argument refers to the N'th joystick on the system.
+  // This index is the value which will identify this joystick in future
+  // joystick events. This function returns a joystick identifier, or NULL if
+  // an error occurred.
+  ( + p:POINTER;
+    p := `SDL_JoystickOpen(@device_index)`:POINTER;
+    //Self := CONVERT(POINTER,SDL_JOYSTICK);
+  );
+
+  - index :INTEGER <-
+  // Get the device index of the opened joystick.
+  (
+    `SDL_JoystickIndex(@Self)`:INTEGER
+  );
+
+  - num_axes :INTEGER <-
+  // Get the number of general axis controls on the opened joystick
+  (
+    `SDL_JoystickNumAxes(@Self)`:INTEGER
+  );
+
+  - num_balls :INTEGER <-
+  // Get the number of trackballs on a joystick. Joystick trackballs have only
+  // relative motion events associated with them and their state cannot be
+  // polled.
+  (
+    `SDL_JoystickNumBalls(@Self);`:INTEGER
+  );
+    
+  - num_hats :INTEGER <-
+  // Get the number of POV hats on a joystick
+  (
+    `SDL_JoystickNumHats(@Self)`:INTEGER
+  );
+
+  - num_buttons :INTEGER <-
+  // Get the number of buttons on the opened joystick
+  (
+    `SDL_JoystickNumButtons(@Self)`:INTEGER
+  );
+
+  // TODO: optimize return Sint16
+  - get_axis (axis:INTEGER) :INTEGER <-
+  // Get the current state of an axis control on the opened joystick The axis
+  // indices start at index 0.  The return state is a value ranging from
+  // `-32768' to `32767'.
+  (
+    `SDL_JoystickGetAxis(@Self, @axis)`:INTEGER
+  );
+
+  - get_hat (hat:INTEGER) :UINTEGER_8 <-
+  // Get the current state of a POV hat on a joystick. The hat indices start at
+  // index `0'.
+  (
+    `SDL_JoystickGetHat(@Self, @hat)`:UINTEGER_8
+  );
+
+  // TODO check this !!!
+  - get_ball (ball:INTEGER, dx:INTEGER, dy:INTEGER) :INTEGER <-
+  // Get the ball axis change since the last poll
+  // The ball indices start at index `0'.
+  // This returns `0', or `-1' if you passed it invalid parameters.
+  (
+    //extern DECLSPEC int SDLCALL SDL_JoystickGetBall(SDL_Joystick *joystick, int ball, int *dx, int *dy);
+    `SDL_JoystickGetBall(@Self, @ball, &@dx, &@dy)`:INTEGER
+  );
+
+  - get_button (button:INTEGER) :UINTEGER_8 <-
+  // Get the current state of a button on the opened joystick. The button
+  // indices start at index `0'.
+  (
+    `SDL_JoystickGetButton(@Self, @button)`:UINTEGER_8
+  );
+
+  - close <-
+  // Close a joystick previously opened with `SDL_JoystickOpen()'
+  (
+    `SDL_JoystickClose(@Self)`;
+  );
+
+
+Section Public /* Global Access */
+
+//
+// Global information
+//
+
+  // TODO: check for NULL string return
+  - joystick_name (device_index:INTEGER) :STRING <-
+  // Get the implementation dependent name of a joystick.
+  // This can be called before any joysticks are opened.
+  // If no name can be found, this function returns NULL.
+  ( + device      :NATIVE_ARRAY(CHARACTER);
+    + device_name :STRING;
+
+    device := `SDL_JoystickName(@device_index)`:NATIVE_ARRAY(CHARACTER);
+    device_name := STRING.clone;
+    device_name.from_external device;
+    device_name 
+  );
+  
+  - opened (device_index:INTEGER) :INTEGER <-
+  // Returns 1 if the joystick has been opened, or 0 if it has not.
+  (
+    `SDL_JoystickOpened(@device_index)`:INTEGER;
+  );
+
+  - num_joysticks :INTEGER <-
+  // Count the number of joysticks attached to the system
+  (
+    `SDL_NumJoysticks()`:INTEGER
+  );
+
+  - update <-
+  //  Update the current state of the open joysticks. This is called
+  //  automatically by the event loop if any joystick events are enabled.
+  (
+    `SDL_JoystickUpdate()`;
+  );
+
+  - event_state (state:INTEGER) :INTEGER<-
+  // Enable/disable joystick event polling. If joystick events are disabled,
+  // you must call `SDL_JOYSTICK.update' yourself and check the state of the
+  // joystick when you want joystick information.
+  // The state can be one of `SDL_FLAG.query', `SDL_FLAG.enable' or
+  // `SDL_FLAG.ignore'.
+  (
+    `SDL_JoystickEventState(@state);`:INTEGER
+  );
diff --git a/lib/unstable/sdl-binding/sdl/sdl_mouse.li b/lib/unstable/sdl-binding/sdl/sdl_mouse.li
new file mode 100644
index 0000000..ccea9e5
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/sdl_mouse.li
@@ -0,0 +1,70 @@
+///////////////////////////////////////////////////////////////////////////////
+//                                  Lisaac                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name      := SDL_MOUSE;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>)";
+  - comment   := "SDL Mouse handling";
+
+Section Public
+
+  - get_state :(INTEGER,INTEGER,UINTEGER_8)<-
+  // Retrieve the current state of the mouse.
+  // The current button state is returned as a button bitmask, which can
+  // be tested using the SDL_BUTTON(X) macros, and x and y are set to the
+  // current mouse cursor position.  You can pass NULL for either x or y.
+  ( + x,y:POINTER;
+    + state:UINTEGER_8;
+    state := `SDL_GetMouseState((int*)&@x, (int*)&@y)`:(UINTEGER_8);
+    x.to_raw_integer,y.to_raw_integer, state
+  );
+
+  - get_relative_state :(INTEGER,INTEGER,UINTEGER_8) <-
+  // Retrieve the current state of the mouse.
+  // The current button state is returned as a button bitmask, which can
+  // be tested using the SDL_BUTTON(X) macros, and x and y are set to the
+  // mouse deltas since the last call to SDL_GetRelativeMouseState().
+  ( + x,y:POINTER;
+    + state:UINTEGER_8;
+    state := `SDL_GetRelativeMouseState((int*)&@x, (int*)&@y)`:(UINTEGER_8);
+    x.to_raw_integer,y.to_raw_integer,state
+  );
+
+  - warp (x,y:UINTEGER_16) <-
+  // Set the position of the mouse cursor (generates a mouse motion event)
+  (
+    `SDL_WarpMouse(@x, @y)`;
+  );
+
+  - show_cursor toggle:INTEGER :BOOLEAN <-
+  // Toggle whether or not the cursor is shown on the screen.
+  // The cursor start displayed, but can be turned off.
+  // `show_cursor' returns TRUE if the cursor was being displayed
+  // before the call, or FALSE if it was not. You can query the current
+  // state by passing a `toggle' value of -1.
+  ( + state:BOOLEAN;
+    ( `SDL_ShowCursor(@toggle)`:(INTEGER) = 1 ).if {
+      state := TRUE;
+    };
+    state
+  );
diff --git a/lib/unstable/sdl-binding/sdl/sdl_rotozoom.li b/lib/unstable/sdl-binding/sdl/sdl_rotozoom.li
new file mode 100644
index 0000000..16bef49
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/sdl_rotozoom.li
@@ -0,0 +1,61 @@
+///////////////////////////////////////////////////////////////////////////////
+//                                  Lisaac                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name      := SDL_ROTOZOOM;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "SDL Rotozoom library";
+  - lip       <- 
+  (
+    add_lib "-lSDL_gfx";
+  );
+
+Section Inherit
+
+  + parent:OBJECT := OBJECT;
+
+Section Public
+  // SDL_ROTOZOOM_SCOPE SDL_Surface *rotozoomSurface(SDL_Surface * src, double angle, double zoom, int smooth);
+  - rotozoom_surface (image:SDL_SURFACE_T, angle:REAL_64, zoom:REAL_64, smooth:INTEGER) :SDL_SURFACE_T <-
+  ( + res_p:POINTER;
+    + surface :SDL_SURFACE_T;
+    
+    res_p := `rotozoomSurface(@image, @angle, @zoom, @smooth)`:(POINTER);
+    surface := SDL_SURFACE_T.clone;
+    surface := CONVERT(POINTER,SDL_SURFACE_T).on res_p;
+    surface
+  );
+
+/*
+  - rotozoom_surface_xy (image:SDL_SURFACE_T, angle:REAL_64, zoomx:REAL_64, zoomy:REAL_64, smooth:INTEGER) :SDL_SURFACE_T <-
+  ( + res_p:POINTER;
+    + image_p:POINTER;
+    + surface :SDL_SURFACET;
+    
+    res_p := `rotozoomSurfaceXY(@image, @angle, @zoomx, @zoomy, @smooth)`:(POINTER);
+
+    surface := SDL_SURFACET.create_with res_p;
+
+    surface
+  );
+*/
diff --git a/lib/unstable/sdl-binding/sdl/sdl_surface.li b/lib/unstable/sdl-binding/sdl/sdl_surface.li
new file mode 100644
index 0000000..867e3eb
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/sdl_surface.li
@@ -0,0 +1,298 @@
+///////////////////////////////////////////////////////////////////////////////
+//   Lisaac - SDL binding library                                            //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//   http://lisaac.org/                                                      //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+
+  + name      := SDL_SURFACE;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "SDL Surface struct pointer";
+  - type      := `SDL_Surface`;
+
+  - lip <-
+  (
+    add_lib "-lSDL_image -I/opt/local/include/SDL -D_THREAD_SAFE -L/opt/local/lib ";
+  );
+
+Section Inherit
+
+  + parent_object:OBJECT := OBJECT;
+
+Section Public
+  
+  - swsurface  :UINTEGER_32 <- `SDL_SWSURFACE` :(UINTEGER_32); // Surface is in system memory 
+  - hwsurface  :UINTEGER_32 <- `SDL_HWSURFACE` :(UINTEGER_32); // Surface is in video memory
+  - asyncblit  :UINTEGER_32 <- `SDL_ASYNCBLIT` :(UINTEGER_32); // Use asynchronous blits if possible */
+//
+// SDL PALETTE FLAGS
+//
+  - logpal  :INTEGER <- `SDL_LOGPAL`  :(INTEGER);
+  - physpal :INTEGER <- `SDL_PHYSPAL` :(INTEGER);
+
+//
+//
+//
+  - srccolorkey :INTEGER <- `SDL_SRCCOLORKEY`:(INTEGER);
+  - rleaccel    :INTEGER <- `SDL_RLEACCEL`:(INTEGER);
+
+
+//
+// INTERNAL SURFACE ACCESS
+//
+  - w                      :INTEGER     <- `@Self->w`:(INTEGER); // Surface width. (READ ONLY)
+  - h                      :INTEGER     <- `@Self->h`:(INTEGER); // Surface height (READ_ONLY)
+  - pitch                  :INTEGER     <- `@Self->pitch`:(INTEGER);
+  - format_palette_ncolors :INTEGER     <- `@Self->format->palette->ncolors`:(INTEGER);
+  - flags                  :UINTEGER_32 <- `@Self->flags`:(UINTEGER_32);
+
+  - create :SELF <- SELF.clone; // Create the SDL_Surface structure
+
+  - create_from_bmp filename:STRING_CONSTANT :SELF<-
+  // Load a BMP file with path+name (ie. /data/image.bmp).
+  ( + file:NATIVE_ARRAY(CHARACTER);
+    + ptr:POINTER;
+    + result:SELF;
+    file := filename.to_external;
+    ptr := `SDL_LoadBMP(@file)`:(POINTER);
+    result := CONVERT(POINTER,SELF).on ptr;
+    result
+  );
+
+  - create_from_image filename:ABSTRACT_STRING :SELF<-
+  // Load a BMP file with path+name (ie. /data/image.bmp).
+  ( + file:NATIVE_ARRAY(CHARACTER);
+    file := filename.to_external;
+    `(SDL_Surface*)IMG_Load(@file)`:(SELF)
+  );
+
+  - create_rgb_surface (flags:UINTEGER_32, width, height, depth:INTEGER) with_mask
+                        (rmask, gmask, bmask, amask:UINTEGER_32) :SDL_SURFACE <-
+  ( + ptr:POINTER;
+    + surface :SDL_SURFACE;
+
+    ptr := `SDL_CreateRGBSurface(@flags, @width, @height, @depth, @rmask, @gmask, @bmask, @amask)`:(POINTER);
+    surface := SDL_SURFACE.clone;
+    surface := CONVERT(POINTER,SELF).on ptr;
+    surface
+  );
+
+        
+  - load filename:STRING_CONSTANT <-
+  // Load an image.
+  ( + file:NATIVE_ARRAY(CHARACTER);
+    file := filename.to_external;
+    surface_p := `IMG_Load(@file)`:(POINTER);
+  );
+
+  - pixel_format :SDL_PIXEL_FORMAT <-
+  ( + ptr:POINTER;
+    + p:SDL_PIXEL_FORMAT;
+
+    ptr := `@Self->format`:POINTER;
+    p := SDL_PIXEL_FORMAT.clone;
+    p :=CONVERT(POINTER,SDL_PIXEL_FORMAT).on ptr;
+    p
+  );
+
+  - pixels :FAST_ARRAY(UINTEGER_8) <-
+  ( + r :NATIVE_ARRAY(UINTEGER_8);
+    + result :FAST_ARRAY(UINTEGER_8);
+  
+    r := `@Self->pixels`:(NATIVE_ARRAY(UINTEGER_8));
+    result := FAST_ARRAY(UINTEGER_8).create_with_native_array_byte r size 1;
+    result
+  );
+
+  - format_palette_colors :FAST_ARRAY(SDL_COLOR_HACK) <-
+  ( + p:POINTER;
+    + ptr:NATIVE_ARRAY(SDL_COLOR_HACK);
+    + result:FAST_ARRAY(SDL_COLOR_HACK);
+    + values:INTEGER;
+
+    p := `@Self->format->palette->colors`:(POINTER);
+    ptr := CONVERT(POINTER,NATIVE_ARRAY(SDL_COLOR_HACK)).on p;
+    
+    values := format_palette_ncolors; 
+    
+    result := FAST_ARRAY(SDL_COLOR_HACK).create values;
+    0.to (values - 1) do { i:INTEGER;
+      result.put (ptr.item i) to i;
+    };
+    result
+  );
+
+  // TODO FAST_ARRAY
+  - format_palette :NATIVE_ARRAY(SDL_PALETTE) <-
+  ( + ptr:POINTER;
+    ptr := `@Self->format->palette`:(POINTER);
+    CONVERT(POINTER,NATIVE_ARRAY(SDL_PALETTE)).on ptr
+  );
+
+  - format :NATIVE_ARRAY(SDL_PIXEL_FORMAT) <-
+  ( + ptr:POINTER;
+    ptr := `@Self->format`:(POINTER);
+    CONVERT(POINTER,NATIVE_ARRAY(SDL_PIXEL_FORMAT)).on ptr
+  );
+
+//
+//
+//
+
+  - flip :INTEGER <-
+  // On hardware that supports double-buffering, this function sets up a flip
+  // and returns. The hardware will wait for vertical retrace, and then swap
+  // video buffers before the next video surface blit or lock will return.  On
+  // hardware that doesn not support double-buffering, this is equivalent to
+  // calling `SDL_UpdateRect(screen, 0, 0, 0, 0)'; The `doublebuf' flag must
+  // have been passed to `set_video_mode' when setting the video mode for this
+  // function to perform hardware flipping. This function returns 0 if
+  // successful, or -1 if there was an error.
+  (
+    `SDL_Flip(@Self)`:(INTEGER)
+  );
+
+//
+//
+//
+
+  - blit_surface (src:SDL_RECT, screen:SDL_SURFACE, dst:SDL_RECT) <-
+  (
+    `SDL_BlitSurface(@Self, @src, @screen, @dst);`;
+  );
+
+  - blit_surface_no_src (screen:SDL_SURFACE, dst:SDL_RECT) <-
+  (
+    `SDL_BlitSurface(@Self, NULL, @screen, @dst);`;
+  );
+  
+  - blit_surface_no_src_no_dst (screen:SDL_SURFACE) <-
+  (
+    `SDL_BlitSurface(@Self, NULL, @screen, NULL);`;
+  );
+
+//
+//
+//
+
+  - fill_rect (dst:SDL_RECT, color:UINTEGER_32) <-
+  // This function performs a fast fill of the given rectangle with `color'
+  // The given rectangle is clipped to the destination surface clip area
+  // and the final fill rectangle is saved in the passed in pointer.
+  // This function returns 0 on success, or -1 on error.
+  (
+    `SDL_FillRect(@Self, at dst, at color)`
+  );
+
+  - fill_rect_no_dst color:UINTEGER_32 <-
+  // If 'dstrect' is NULL, the whole surface will be filled with `color'
+  // This function performs a fast fill of the given rectangle with `color'.
+  // The color should be a pixel of the format used by the surface, and 
+  // can be generated by the `SDL.map_rgb' function.
+  // This function returns 0 on success, or -1 on error.
+  (
+    `SDL_FillRect(@Self,NULL, at color)`
+  );
+
+
+  - line_from (x1,y1:INTEGER) to (x2,y2:INTEGER) color col:UINTEGER_32  <-
+  // Draw a line from (x1,y1) to (x2,y2) color `col' into screen
+  [ ? {Self != NULL}; ]
+  (
+      `SDL_DrawLine(@Self, at x1, at y1, at x2, at y2, at col)`
+  );
+
+//
+// LOCKING/UNLOCKING
+//
+  - lock :INTEGER<-
+  // `lock' sets up a surface for directly accessing the pixels.  Between calls
+  // to `lock'/`unlock', you can write to and read from `surface.pixels', using
+  // the pixel format stored in `surface.format'.  Once you are done accessing
+  // the surface, you should use `unlock' to release it.
+  // 
+  // Not all surfaces require locking. If `MUSTLOCK(surface)' evaluates to
+  // 0, then you can read and write to the surface at any time, and the pixel
+  // format of the surface will not change.  In particular, if the
+  // `hwsurface' flag is not given when calling `set_video_mode', you will not
+  // need to lock the display surface before accessing it.
+  //  
+  // No operating system or library calls should be made between lock/unlock
+  // pairs, as critical system locks may be held during this time.
+  // 
+  // It returns 0, or -1 if the surface couldn't be locked.
+  (
+    `SDL_LockSurface(@Self)`:(INTEGER)
+  );
+
+  - unlock <-
+  (
+    `SDL_UnlockSurface(@Self)`;
+  );
+
+//
+//
+//
+  - set_palette (flags:INTEGER, colors:FAST_ARRAY(SDL_COLOR_HACK), first_color:INTEGER, ncolors:INTEGER) <-
+  (
+    + p:POINTER;
+    p := colors.to_external;
+
+    `SDL_SetPalette(@Self, SDL_LOGPAL | SDL_PHYSPAL, @p, @first_color, @ncolors)`;
+  );
+
+  - set_palette_pointer (flags:INTEGER, colors:FAST_ARRAY(SDL_COLOR_HACK), first_color:INTEGER, ncolors:INTEGER) <-
+  ( + p:POINTER;
+    p := colors.to_external;
+    `SDL_SetPalette(@Self, @flags, @p , @first_color, @ncolors)`;
+  );
+
+  - update_rect (x:INTEGER, y:INTEGER, w:UINTEGER_32, h:UINTEGER_32) <-
+  (
+    `SDL_UpdateRect(@Self, at x, at y, at w, at h)`;
+  );
+  
+  - update_rects (x:INTEGER, r:SDL_RECT) <-
+  (
+    `SDL_UpdateRects(@Self, at x, at r)`;
+  );
+
+  - set_color_key(flag:UINTEGER_32, key:UINTEGER_32) <-
+  (
+    `SDL_SetColorKey(@Self, at flag, at key)`;
+  );
+
+//
+//
+//
+  - convert_surface (format:NATIVE_ARRAY(SDL_PIXEL_FORMAT), flags:UINTEGER_32) :SDL_SURFACE <-
+  ( + p:POINTER;
+    p := format.to_external;
+    `SDL_ConvertSurface(@Self, @p, @flags)`:(SDL_SURFACE)
+  );
+
+  - display_format :SDL_SURFACE <-
+  ( + surface:SDL_SURFACE;
+    + p:POINTER;
+
+    p := `SDL_DisplayFormat(@Self)`:(POINTER);
+    surface := CONVERT(POINTER,SDL_SURFACE).on p;
+    surface
+  );
+
diff --git a/lib/unstable/sdl-binding/sdl/sdl_timer.li b/lib/unstable/sdl-binding/sdl/sdl_timer.li
new file mode 100644
index 0000000..931bfda
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/sdl_timer.li
@@ -0,0 +1,39 @@
+///////////////////////////////////////////////////////////////////////////////
+//                                  Lisaac                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name      := SDL_TIMER;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "";
+
+Section Public
+
+  - get_ticks :INTEGER <-
+  (
+    `SDL_GetTicks()`:(INTEGER)
+  );
+
+  - delay d:INTEGER <-
+  (
+    `SDL_Delay(@d)`;
+  );
diff --git a/lib/unstable/sdl-binding/sdl/sdl_ttf.li b/lib/unstable/sdl-binding/sdl/sdl_ttf.li
new file mode 100644
index 0000000..22f2a47
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/sdl_ttf.li
@@ -0,0 +1,129 @@
+///////////////////////////////////////////////////////////////////////////////
+//   Lisaac - SDL binding library                                            //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program. If not, see <http://www.gnu.org/licenses/>.    //
+//                                                                           //
+//   http://lisaac.org                                                       //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name      := SDL_TTF;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "TrueType Font";
+  - external  := `#include <SDL/SDL_ttf.h>`;
+  - lip       <- (add_lib "-lSDL_ttf -I/opt/local/include/SDL -D_THREAD_SAFE -L/opt/local/lib";);
+
+Section Inherit
+
+  + parent_object:OBJECT := OBJECT;
+
+Section Private
+
+  - pointer :POINTER;
+
+Section Public
+
+
+//
+// Version
+//
+  // #define TTF_VERSION(X)		SDL_TTF_VERSION(X)
+  - major       :INTEGER <- `TTF_MAJOR_VERSION`:(INTEGER);
+  - minor       :INTEGER <- `TTF_MINOR_VERSION`:(INTEGER);
+  - patch_level :INTEGER <- `TTF_PATCHLEVEL`   :(INTEGER);
+
+//
+// Font style
+//
+  - style_normal    :INTEGER <- `TTF_STYLE_NORMAL`   :(INTEGER);
+  - style_bold      :INTEGER <- `TTF_STYLE_BOLD`     :(INTEGER);
+  - style_italic    :INTEGER <- `TTF_STYLE_ITALIC`   :(INTEGER);
+  - style_underline :INTEGER <- `TTF_STYLE_UNDERLINE`:(INTEGER);
+
+  - print_version <-
+  (
+    "SDL TTF Version:".print;
+    major.print;
+    '.'.print;
+    minor.print;
+    '.'.print;
+    patch_level.println
+  );
+
+  - init :INTEGER <-
+  // Initialize the TTF engine - returns 0 if successful, -1 on error
+  (
+    `TTF_Init()`:(INTEGER)
+  );
+
+  - quit <-
+  // De-initialize the TTF engine
+  (
+    `TTF_Quit()`;
+  );
+
+  - was_init :INTEGER <-
+  // Check if the TTF engine is initialized
+  (
+    `TTF_WasInit()`:INTEGER
+  );
+
+
+  - open_font (file:ABSTRACT_STRING, ptsize:INTEGER) :SELF <-
+  // Open a font file and create a font of the specified point size.  Some .fon
+  // fonts will have several sizes embedded in the file, so the point size
+  // becomes the index of choosing which size.  If the value is too high, the
+  // last indexed size will be the default.
+  ( + result:SELF;
+    result := SELF.clone;
+    result.make(file, ptsize);
+    result
+  );
+
+  - make (file:ABSTRACT_STRING, ptsize:INTEGER) <-
+  ( + f:NATIVE_ARRAY(CHARACTER);
+    f :=  file.to_external;
+    pointer := `TTF_OpenFont(@f, @ptsize)`:(POINTER);
+  );
+
+/*
+extern DECLSPEC TTF_Font * SDLCALL TTF_OpenFontIndex(const char *file, int ptsize, long index);
+extern DECLSPEC TTF_Font * SDLCALL TTF_OpenFontRW(SDL_RWops *src, int freesrc, int ptsize);
+extern DECLSPEC TTF_Font * SDLCALL TTF_OpenFontIndexRW(SDL_RWops *src, int freesrc, int ptsize, long index);
+*/
+
+
+  - render_text_solid (text:ABSTRACT_STRING, fg:SDL_COLOR) :SDL_SURFACE <-
+  ( + t       :NATIVE_ARRAY(CHARACTER);
+    + ptr     :POINTER;
+    + lptr    :POINTER;
+    + surface :SDL_SURFACE;
+    
+    lptr := pointer;
+    t := text.to_external;
+    //pointer.println;
+    ptr := `TTF_RenderText_Solid(@lptr, @t, *@fg)`:(POINTER);
+    surface := CONVERT(POINTER, SDL_SURFACE).on ptr;
+    surface
+  );
+
+  - close <-
+  // Close an opened font file
+  (
+    `TTF_CloseFont(@Self)`;
+    // + Destroy object !
+  );
diff --git a/lib/unstable/sdl-binding/sdl/sdl_version.li b/lib/unstable/sdl-binding/sdl/sdl_version.li
new file mode 100644
index 0000000..96c395e
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/sdl_version.li
@@ -0,0 +1,44 @@
+///////////////////////////////////////////////////////////////////////////////
+//                           Lisaac-SDL Library                              //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name      := SDL_VERSION;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "SDL version";
+
+Section Public
+
+  - major       :INTEGER <- `SDL_MAJOR_VERSION`:(INTEGER);
+  - minor       :INTEGER <- `SDL_MINOR_VERSION`:(INTEGER);
+  - patch_level :INTEGER <- `SDL_PATCHLEVEL`   :(INTEGER);
+
+  - print <-
+  (
+    "SDL Version:".print;
+    major.print;
+    '.'.print;
+    minor.print;
+    '.'.print;
+    patch_level.println
+  );
diff --git a/lib/unstable/sdl-binding/sdl/sdl_video.li b/lib/unstable/sdl-binding/sdl/sdl_video.li
new file mode 100644
index 0000000..13970da
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/sdl_video.li
@@ -0,0 +1,285 @@
+///////////////////////////////////////////////////////////////////////////////
+//   Lisaac - SDL binding library                                            //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//   http://lisaac.org/                                                      //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+
+  + name      := SDL_VIDEO;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "";
+
+Section Public
+
+  // ========================================================================
+  //                             VIDEO MODES 
+  // ========================================================================
+  // SDL_SWSURFACE : Create the video surface in system memory
+  // SDL_HWSURFACE : Create the video surface in video memory
+  // SDL_ASYNCBLIT : Enables the use of asynchronous updates of the display 
+  //                 surface. This will usually slow down blitting on single 
+  //                 CPU machines, but may provide a speed increase on SMP 
+  //                 systems.
+  // SDL_ANYFORMAT : Normally, if a video surface of the requested 
+  //                 bits-per-pixel (bpp) is not available, SDL will emulate 
+  //                 one with a shadow surface. Passing SDL_ANYFORMAT 
+  //                 prevents this and causes SDL to use the video surface,
+  //                 regardless of its pixel depth.
+  // SDL_HWPALETTE : Give SDL exclusive palette access. Without this flag you
+  //                 may not always get the the colors you request with 
+  //                 SDL_SetColors or SDL_SetPalette.
+  // SDL_DOUBLEBUF : Enable hardware double buffering; only valid with 
+  //                 SDL_HWSURFACE. Calling SDL_Flip will flip the buffers 
+  //                 and update the screen. All drawing will take place on 
+  //                 the surface that is not displayed at the moment. If 
+  //                 double buffering could not be enabled then SDL_Flip will
+  //                 just perform a SDL_UpdateRect on the entire screen.
+  // SDL_FULLSCREEN: SDL will attempt to use a fullscreen mode. If a hardware
+  //                 resolution change is not possible (for whatever reason),
+  //                 the next higher resolution will be used and the display 
+  //                 window centered on a black background.
+  // SDL_OPENGL    : Create an OpenGL rendering context. You should have 
+  //                 previously set OpenGL video attributes with 
+  //                 SDL_GL_SetAttribute.
+  // SDL_OPENGLBLIT: Create an OpenGL rendering context, like above, but allow
+  //                 normal blitting operations. The screen (2D) surface may 
+  //                 have an alpha channel, and SDL_UpdateRects must be used 
+  //                 for updating changes to the screen surface. NOTE: This 
+  //                 option is kept for compatibility only, and will be 
+  //                 removed in next versions. Is not recommended for new 
+  //                 code.
+  // SDL_RESIZABLE : Create a resizable window. When the window is resized by
+  //                 the user a SDL_VIDEORESIZE event is generated and 
+  //                 SDL_SetVideoMode can be called again with the new size.
+  // SDL_NOFRAME   : If possible, SDL_NOFRAME causes SDL to create a window 
+  //                 with no title bar or frame decoration. Fullscreen modes
+  //                 automatically have this flag set.
+  // ========================================================================
+
+//
+// SDL VIDEO FLAGS
+//
+  - anyformat  :UINTEGER_32 <- `SDL_ANYFORMAT` :(UINTEGER_32); // Allow any video depth/pixel-format
+  - hwpalette  :UINTEGER_32 <- `SDL_HWPALETTE` :(UINTEGER_32); // Surface has exclusive palette
+  - doublebuf  :UINTEGER_32 <- `SDL_DOUBLEBUF` :(UINTEGER_32); // Set up double-buffered video mode
+  - fullscreen :UINTEGER_32 <- `SDL_FULLSCREEN`:(UINTEGER_32); // Surface is a full screen display
+  - opengl     :UINTEGER_32 <- `SDL_OPENGL`    :(UINTEGER_32); // Create an OpenGL rendering context
+  - openglblit :UINTEGER_32 <- `SDL_OPENGLBLIT`:(UINTEGER_32); // Create an OpenGL rendering context and use it for blitting
+  - resizable  :UINTEGER_32 <- `SDL_RESIZABLE` :(UINTEGER_32); // This video mode may be resized
+  - noframe    :UINTEGER_32 <- `SDL_NOFRAME`   :(UINTEGER_32); // No window caption or edge frame
+  - swsurface  :UINTEGER_32 <- `SDL_SWSURFACE` :(UINTEGER_32); // Surface is in system memory 
+  - hwsurface  :UINTEGER_32 <- `SDL_HWSURFACE` :(UINTEGER_32); // Surface is in video memory
+  - asyncblit  :UINTEGER_32 <- `SDL_ASYNCBLIT` :(UINTEGER_32); // Use asynchronous blits if possible */
+
+  // TODO: the 3last/** Available for SDL_CreateRGBSurface() or SDL_SetVideoMode() */
+
+//
+// SDL PALETTE FLAGS
+//
+  - logpal  :INTEGER <- `SDL_LOGPAL`  :(INTEGER);
+  - physpal :INTEGER <- `SDL_PHYSPAL` :(INTEGER);
+
+//
+// OVERLAY FORMATS FLAGS
+//
+  - yv12_overlay :UINTEGER_32 <- `SDL_YV12_OVERLAY`:(UINTEGER_32); // Planar mode: Y + V + U  (3 planes)
+  - iyuv_overlay :UINTEGER_32 <- `SDL_IYUV_OVERLAY`:(UINTEGER_32); // Planar mode: Y + U + V  (3 planes)
+  - yuy2_overlay :UINTEGER_32 <- `SDL_YUY2_OVERLAY`:(UINTEGER_32); // Packed mode: Y0+U0+Y1+V0 (1 plane)
+  - uyvy_overlay :UINTEGER_32 <- `SDL_UYVY_OVERLAY`:(UINTEGER_32); // Packed mode: U0+Y0+V0+Y1 (1 plane)
+  - yvyu_overlay :UINTEGER_32 <- `SDL_YVYU_OVERLAY`:(UINTEGER_32); // Packed mode: Y0+V0+Y1+U0 (1 plane)
+
+Section Public
+
+  - set_mode (w,h,bpp:INTEGER, video:UINTEGER_32) :SDL_SURFACE <-
+  // Set up a video mode with the specified width, height and bits-per-pixel.
+  //
+  // If '`bpp' is 0, it is treated as the current display bits per pixel.
+  //
+  // If `anyformat' is set in `flags', the SDL library will try to set the
+  // requested bits-per-pixel, but will return whatever video pixel format is
+  // available.  The default is to emulate the requested pixel format if it is
+  // not natively available.
+  //
+  // If `hwsurface' is set in `flags', the video surface will be placed in
+  // video memory, if possible, and you may have to call SDL_LockSurface() in
+  // order to access the raw framebuffer.  Otherwise, the video surface will be
+  // created in system memory.
+  //
+  // If `asyncblit' is set in `flags', SDL will try to perform rectangle
+  // updates asynchronously, but you must always lock before accessing pixels.
+  // SDL will wait for updates to complete before returning from the lock.
+  //
+  // If `hwpalette' is set in `flags', the SDL library will guarantee that the
+  // colors set by `SDL_SetColors()' will be the colors you get.  Otherwise, in
+  // 8-bit mode, `SDL_SetColors()' may not be able to set all of the colors
+  // exactly the way they are requested, and you should look at the video
+  // surface structure to determine the actual palette.  If SDL cannot
+  // guarantee that the colors you request can be set, i.e. if the colormap is
+  // shared, then the video surface may be created under emulation in system
+  // memory, overriding the `hwsurface' flag.
+  //
+  // If `fullscreen' is set in `flags', the SDL library will try to set a
+  // fullscreen video mode. The default is to create a windowed mode if the
+  // current graphics system has a window manager. If the SDL library is able
+  // to set a fullscreen video mode, this flag will be set in the surface that
+  // is returned.
+  //
+  // If `doublebug' is set in `flags', the SDL library will try to set up two
+  // surfaces in video memory and swap between them when you call `flip'.
+  // This is usually slower than the normal single-buffering scheme, but
+  // prevents "tearing" artifacts caused by modifying video memory while the
+  // monitor is refreshing.  It should only be used by applications that redraw
+  // the entire screen on every update.
+  //
+  // If `resizable' is set in `flags', the SDL library will allow the window
+  // manager, if any, to resize the window at runtime.  When this occurs, SDL
+  // will send a SDL_VIDEORESIZE event to you application, and you must respond
+  // to the event by re-calling `set_video_mode' with the requested size (or
+  // another size that suits the application).
+  //
+  // If `noframe' is set in `flags', the SDL library will create a window
+  // without any title bar or frame decoration.  Fullscreen video modes have
+  // this flag set automatically.
+  //
+  // This function returns the video framebuffer surface, or NULL if it fails.
+  //
+  // If you rely on functionality provided by certain video flags, check the
+  // flags of the returned surface to make sure that functionality is available.
+  // SDL will fall back to reduced functionality if the exact flags you wanted
+  // are not available.
+  ( + scr:POINTER;
+    scr := `SDL_SetVideoMode(@w, @h, @bpp, @video)`:(POINTER);
+    CONVERT(POINTER,SDL_SURFACE).on scr
+  );
+
+  - video_mode_ok (w,h,b:INTEGER, video:UINTEGER_32) :INTEGER <-
+  // Check to see if a particular video mode is supported.  It returns 0 if the
+  // requested mode is not supported under any bit depth, or returns the
+  // bits-per-pixel of the closest available mode with the given width and
+  // height.  If this bits-per-pixel is different from the one used when
+  // setting the video mode, `set_video_mode' will succeed, but will emulate
+  // the requested bits-per-pixel with a shadow surface.
+  //
+  // The arguments to `video_mode_ok' are the same ones you would pass to
+  // `set_video_mode'.
+  (
+    `SDL_VideoModeOK(@w, at h, at b, at video)`:(INTEGER)
+  );
+
+
+
+//
+//
+//
+  
+  - map_rgb (pf:SDL_PIXEL_FORMAT, r,g,b:UINTEGER_8) :UINTEGER_32<-
+  //Maps an RGB triple to an opaque pixel value for a given pixel format
+  (
+    `SDL_MapRGB((SDL_PixelFormat*)@pf, @r, @g, @b)`:(UINTEGER_32)
+  );
+
+  // TODO
+  /*
+  extern DECLSPEC int SDLCALL SDL_VideoInit(const char *driver_name, Uint32 flags);
+  extern DECLSPEC void SDLCALL SDL_VideoQuit(void);
+  extern DECLSPEC char * SDLCALL SDL_VideoDriverName(char *namebuf, int maxlen);
+  extern DECLSPEC SDL_Surface * SDLCALL SDL_GetVideoSurface(void);
+  extern DECLSPEC const SDL_VideoInfo * SDLCALL SDL_GetVideoInfo(void);
+  extern DECLSPEC SDL_Rect ** SDLCALL SDL_ListModes(SDL_PixelFormat *format, Uint32 flags);
+  extern DECLSPEC void SDLCALL SDL_UpdateRects
+		      (SDL_Surface *screen, int numrects, SDL_Rect *rects);
+  extern DECLSPEC void SDLCALL SDL_UpdateRect
+		      (SDL_Surface *screen, Sint32 x, Sint32 y, Uint32 w, Uint32 h);
+  extern DECLSPEC int SDLCALL SDL_SetGamma(float red, float green, float blue);
+  extern DECLSPEC int SDLCALL SDL_SetGammaRamp(const Uint16 *red, const Uint16 *green, const Uint16 *blue);
+  extern DECLSPEC int SDLCALL SDL_GetGammaRamp(Uint16 *red, Uint16 *green, Uint16 *blue);
+  extern DECLSPEC int SDLCALL SDL_SetColors(SDL_Surface *surface, 
+		    	SDL_Color *colors, int firstcolor, int ncolors);
+  extern DECLSPEC int SDLCALL SDL_SetPalette(SDL_Surface *surface, int flags,
+				   SDL_Color *colors, int firstcolor,
+				   int ncolors);
+  extern DECLSPEC Uint32 SDLCALL SDL_MapRGB
+          (const SDL_PixelFormat * const format,
+          const Uint8 r, const Uint8 g, const Uint8 b);
+  extern DECLSPEC Uint32 SDLCALL SDL_MapRGBA
+          (const SDL_PixelFormat * const format,
+          const Uint8 r, const Uint8 g, const Uint8 b, const Uint8 a);
+  extern DECLSPEC void SDLCALL SDL_GetRGB(Uint32 pixel,
+	  			const SDL_PixelFormat * const fmt,
+		  		Uint8 *r, Uint8 *g, Uint8 *b);
+  extern DECLSPEC void SDLCALL SDL_GetRGBA(Uint32 pixel,
+  				const SDL_PixelFormat * const fmt,
+	  			Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a);
+
+
+  extern DECLSPEC SDL_Surface * SDLCALL SDL_CreateRGBSurfaceFrom(void *pixels,
+		  	int width, int height, int depth, int pitch,
+	  		Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask);
+  extern DECLSPEC void SDLCALL SDL_FreeSurface(SDL_Surface *surface);
+  extern DECLSPEC int SDLCALL SDL_LockSurface(SDL_Surface *surface);
+  extern DECLSPEC void SDLCALL SDL_UnlockSurface(SDL_Surface *surface);
+  extern DECLSPEC SDL_Surface * SDLCALL SDL_LoadBMP_RW(SDL_RWops *src, int freesrc);
+  extern DECLSPEC int SDLCALL SDL_SaveBMP_RW
+    		(SDL_Surface *surface, SDL_RWops *dst, int freedst);
+  extern DECLSPEC int SDLCALL SDL_SetColorKey
+			(SDL_Surface *surface, Uint32 flag, Uint32 key);
+  extern DECLSPEC int SDLCALL SDL_SetAlpha(SDL_Surface *surface, Uint32 flag, Uint8 alpha);
+  extern DECLSPEC SDL_bool SDLCALL SDL_SetClipRect(SDL_Surface *surface, const SDL_Rect *rect);
+  extern DECLSPEC void SDLCALL SDL_GetClipRect(SDL_Surface *surface, SDL_Rect *rect);
+  extern DECLSPEC SDL_Surface * SDLCALL SDL_ConvertSurface
+    			(SDL_Surface *src, SDL_PixelFormat *fmt, Uint32 flags);
+  extern DECLSPEC int SDLCALL SDL_UpperBlit
+			(SDL_Surface *src, SDL_Rect *srcrect,
+			 SDL_Surface *dst, SDL_Rect *dstrect);
+  extern DECLSPEC int SDLCALL SDL_LowerBlit
+			(SDL_Surface *src, SDL_Rect *srcrect,
+			 SDL_Surface *dst, SDL_Rect *dstrect);
+  extern DECLSPEC int SDLCALL SDL_FillRect
+		(SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color);
+  extern DECLSPEC SDL_Surface * SDLCALL SDL_DisplayFormat(SDL_Surface *surface);
+  extern DECLSPEC SDL_Surface * SDLCALL SDL_DisplayFormatAlpha(SDL_Surface *surface);
+
+  YUV
+  ===
+  extern DECLSPEC SDL_Overlay * SDLCALL SDL_CreateYUVOverlay(int width, int height,	Uint32 format, SDL_Surface *display);
+  extern DECLSPEC int SDLCALL SDL_LockYUVOverlay(SDL_Overlay *overlay);
+  extern DECLSPEC void SDLCALL SDL_UnlockYUVOverlay(SDL_Overlay *overlay);
+  extern DECLSPEC int SDLCALL SDL_DisplayYUVOverlay(SDL_Overlay *overlay, SDL_Rect *dstrect);
+  extern DECLSPEC void SDLCALL SDL_FreeYUVOverlay(SDL_Overlay *overlay);
+
+  OPENGL
+  ======
+  extern DECLSPEC int SDLCALL SDL_GL_LoadLibrary(const char *path);
+  extern DECLSPEC void * SDLCALL SDL_GL_GetProcAddress(const char* proc);
+  extern DECLSPEC int SDLCALL SDL_GL_SetAttribute(SDL_GLattr attr, int value);
+  extern DECLSPEC int SDLCALL SDL_GL_GetAttribute(SDL_GLattr attr, int* value);
+  extern DECLSPEC void SDLCALL SDL_GL_SwapBuffers(void);
+  extern DECLSPEC void SDLCALL SDL_GL_UpdateRects(int numrects, SDL_Rect* rects);
+  extern DECLSPEC void SDLCALL SDL_GL_Lock(void);
+  extern DECLSPEC void SDLCALL SDL_GL_Unlock(void);
+  
+  Window Manager
+  ==============
+  extern DECLSPEC void SDLCALL SDL_WM_SetCaption(const char *title, const char *icon);
+  extern DECLSPEC void SDLCALL SDL_WM_GetCaption(char **title, char **icon);
+  extern DECLSPEC void SDLCALL SDL_WM_SetIcon(SDL_Surface *icon, Uint8 *mask);
+  extern DECLSPEC int SDLCALL SDL_WM_IconifyWindow(void);
+  extern DECLSPEC int SDLCALL SDL_WM_ToggleFullScreen(SDL_Surface *surface);
+  extern DECLSPEC SDL_GrabMode SDLCALL SDL_WM_GrabInput(SDL_GrabMode mode);
+  */
diff --git a/lib/unstable/sdl-binding/sdl/sdl_window.li b/lib/unstable/sdl-binding/sdl/sdl_window.li
new file mode 100644
index 0000000..c5fc1ae
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/sdl_window.li
@@ -0,0 +1,65 @@
+///////////////////////////////////////////////////////////////////////////////
+//                            Lisaac-SDL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name      := SDL_WINDOW;
+
+  - comment   := "Window actions";
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <x.oswald at debian.org>";
+
+Section Public
+
+  - iconify_window <-
+  // See SDL_APPACTIVE loss event (see SDL_ActiveEvent)
+  // Iconify/Minimise the window
+  ( + result: INTEGER;
+
+    result := `SDL_WM_IconifyWindow(void)`;
+    (result = 0).if{
+      "SDL iconification is not suported or was refused by the window manager...\n".print;
+    }
+  );
+
+  - set_caption (t:STRING_CONSTANT, i:STRING_CONSTANT) <-
+  // set the window title and application name in the bar
+  ( + title: NATIVE_ARRAY(CHARACTER);
+    + icon : NATIVE_ARRAY(CHARACTER);
+
+    title := t.to_external;
+    icon  := i.to_external;
+    `SDL_WM_SetCaption(@title, @icon);`;
+  );
+
+  - set_title t:STRING_CONSTANT <-
+  (
+    SDL_WINDOW.set_caption(t,t); 
+  );
+
+  - set_bmp_icon i:STRING_CONSTANT <-
+  // Sets the icon for the display window.
+  // Icon must be 32x32
+  ( + icon: NATIVE_ARRAY(CHARACTER);
+
+    icon := i.to_external;
+    `SDL_WM_SetIcon(SDL_LoadBMP(@icon), NULL);`;
+  );
diff --git a/lib/unstable/sdl-binding/sdl/sdl_wm.li b/lib/unstable/sdl-binding/sdl/sdl_wm.li
new file mode 100644
index 0000000..f584e7e
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/sdl_wm.li
@@ -0,0 +1,62 @@
+///////////////////////////////////////////////////////////////////////////////
+//                            Lisaac-SDL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name     := SDL_WM;
+  - comment  := "Window actions";
+  - author   := "Xavier Oswald <x.oswald at free.fr>";
+
+Section Inherit
+  
+  - parent_object: SDL_SETTINGS := SDL_SETTINGS;
+  
+Section Public
+
+  - iconify_window <-
+  // See SDL_APPACTIVE loss event (see SDL_ActiveEvent)
+  // Iconify/Minimise the window
+  ( + result: INTEGER;
+
+    result := `SDL_WM_IconifyWindow(void)`;
+    (result = 0).if{
+      "SDL iconification is not suported or was refused by the window manager...\n".print;
+    }
+  );
+
+  - set_caption (t:STRING_CONSTANT, i:STRING_CONSTANT) <-
+  // set the window title and application name in the bar
+  ( + title: NATIVE_ARRAY(CHARACTER);
+    + icon : NATIVE_ARRAY(CHARACTER);
+
+    title := t.to_external;
+    icon  := i.to_external;
+    `SDL_WM_SetCaption(@title, @icon);`;
+  );
+
+  - set_bmp_icon i:STRING_CONSTANT <-
+  // Sets the icon for the display window.
+  // Icon must be 32x32
+  ( + icon: NATIVE_ARRAY(CHARACTER);
+
+    icon := i.to_external;
+    `SDL_WM_SetIcon(SDL_LoadBMP(@icon), NULL);`;
+  );
diff --git a/lib/unstable/sdl-binding/sdl/types/.sdl_color.li.swn b/lib/unstable/sdl-binding/sdl/types/.sdl_color.li.swn
new file mode 100644
index 0000000..07242b3
Binary files /dev/null and b/lib/unstable/sdl-binding/sdl/types/.sdl_color.li.swn differ
diff --git a/lib/unstable/sdl-binding/sdl/types/.sdl_color.li.swo b/lib/unstable/sdl-binding/sdl/types/.sdl_color.li.swo
new file mode 100644
index 0000000..d3da19e
Binary files /dev/null and b/lib/unstable/sdl-binding/sdl/types/.sdl_color.li.swo differ
diff --git a/lib/unstable/sdl-binding/sdl/types/sdl_color.li b/lib/unstable/sdl-binding/sdl/types/sdl_color.li
new file mode 100644
index 0000000..cb447fb
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/types/sdl_color.li
@@ -0,0 +1,80 @@
+///////////////////////////////////////////////////////////////////////////////
+//                                  Lisaac                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name      :=  SDL_COLOR;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "SDL Color structure";
+  - type      := `SDL_Color`;
+
+Section Inherit
+
+  - parent :OBJECT := OBJECT;
+
+Section Public
+
+  - create :SELF <- SELF.clone;
+
+//
+// Set:
+//
+
+  - set_all (r,g,b:UINTEGER_8) <-
+  // Set `Red', `Green' and `Blue' values
+  (
+    `@Self->r = @r`;
+    `@Self->g = @g`;
+    `@Self->b = @b`;
+  );
+
+  - set_r value:UINTEGER_8 <- 
+  // Set the `Red' value.
+  (
+    `@Self->r = @value`;
+  );
+
+  - set_g value:UINTEGER_8 <- 
+  // Set the `Green' value.
+  (
+    `@Self->g = @value`;
+  );
+  
+  - set_b value:UINTEGER_8 <- 
+  // Set the `Blue' value.
+  (
+    `@Self->b = @value`;
+  );
+
+//
+// Get:
+//
+
+  - get_all :(UINTEGER_8,UINTEGER_8,UINTEGER_8) <-
+  // Return a vector with 3 values (r,g,b).
+  (
+    (r,g,b)
+  );
+
+  - r :UINTEGER_8 <- `@Self->r`:UINTEGER_8; // Return the `Red' value.
+  - g :UINTEGER_8 <- `@Self->g`:UINTEGER_8; // Return the `Green' value.
+  - b :UINTEGER_8 <- `@Self->b`:UINTEGER_8; // Return the `Blue' value.
diff --git a/lib/unstable/sdl-binding/sdl/types/sdl_color_hack.li b/lib/unstable/sdl-binding/sdl/types/sdl_color_hack.li
new file mode 100644
index 0000000..90e2821
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/types/sdl_color_hack.li
@@ -0,0 +1,78 @@
+///////////////////////////////////////////////////////////////////////////////
+//                                  Lisaac                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name      :=  Expanded SDL_COLOR_HACK;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "SDL Color structure";
+  - type      := `SDL_Color`;
+
+Section Insert
+
+  - parent :OBJECT := OBJECT;
+
+Section Public
+
+//
+// Set:
+//
+
+  - set_all (r,g,b:UINTEGER_8) <-
+  // Set `Red', `Green' and `Blue' values
+  (
+    `@Self.r = @r`;
+    `@Self.g = @g`;
+    `@Self.b = @b`;
+  );
+
+  - set_r value:UINTEGER_8 <- 
+  // Set the `Red' value.
+  (
+    `@Self.r = @value`;
+  );
+
+  - set_g value:UINTEGER_8 <- 
+  // Set the `Green' value.
+  (
+    `@Self.g = @value`;
+  );
+  
+  - set_b value:UINTEGER_8 <- 
+  // Set the `Blue' value.
+  (
+    `@Self.b = @value`;
+  );
+
+//
+// Get:
+//
+
+  - get_all :(UINTEGER_8,UINTEGER_8,UINTEGER_8) <-
+  // Return a vector with 3 values (r,g,b).
+  (
+    (r,g,b)
+  );
+
+  - r :UINTEGER_8 <- `@Self.r`:UINTEGER_8; // Return the `Red' value.
+  - g :UINTEGER_8 <- `@Self.g`:UINTEGER_8; // Return the `Green' value.
+  - b :UINTEGER_8 <- `@Self.b`:UINTEGER_8; // Return the `Blue' value.
diff --git a/lib/unstable/sdl-binding/sdl/types/sdl_cursor.li b/lib/unstable/sdl-binding/sdl/types/sdl_cursor.li
new file mode 100644
index 0000000..68ea420
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/types/sdl_cursor.li
@@ -0,0 +1,93 @@
+///////////////////////////////////////////////////////////////////////////////
+//                                  Lisaac                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name      := SDL_CURSOR;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "SDL Cursor pointer";
+  - type      := `SDL_Cursor`;
+
+Section Inherit
+
+  + parent_object:OBJECT := OBJECT;
+
+Section Public
+
+ /**
+ * Create a cursor using the specified data and mask (in MSB format).
+ * The cursor width must be a multiple of 8 bits.
+ *
+ * The cursor is created in black and white according to the following:
+ * data  mask    resulting pixel on screen
+ *  0     1       White
+ *  1     1       Black
+ *  0     0       Transparent
+ *  1     0       Inverted color if possible, black if not.
+ */
+
+  - create (
+    data:FAST_ARRAY(UINTEGER_8),
+    mask:FAST_ARRAY(UINTEGER_8),
+    w:INTEGER,
+    h:INTEGER,
+    x:INTEGER,
+    y:INTEGER ) :SELF <-
+  // Create a cursor
+  (
+    make(data, mask, w, h, x, y);
+  );
+
+  - make ( 
+    data:FAST_ARRAY(UINTEGER_8),
+    mask:FAST_ARRAY(UINTEGER_8),
+    w:INTEGER,
+    h:INTEGER,
+    x:INTEGER,
+    y:INTEGER ) :SELF <-
+  ( + d,m:POINTER;
+    + result :SELF;
+    d := data.to_external;
+    m := mask.to_external;
+    pointer := `SDL_CreateCursor(@d, @m, @w, @h, @x, @y)`:(POINTER);
+    result := SELF.clone;
+    result := CONVERT(POINTER,SELF).on pointer;
+    result
+  );
+
+  - set_default <-
+  // Set the currently active cursor to the specified one.
+  // If the cursor is currently visible, the change will be immediately 
+  // represented on the display.
+  (
+    `SDL_SetCursor(@Self)`;
+  );
+
+  - get_cursor :SDL_CURSOR <-
+  // Returns the currently active cursor.
+  ( + ptr :POINTER;
+    + cursor :SDL_CURSOR;
+    ptr := `SDL_GetCursor()`:POINTER;
+    cursor := SELF.clone;
+    cursor := CONVERT(POINTER,SELF).on ptr;
+    cursor
+  );
diff --git a/lib/unstable/sdl-binding/sdl/types/sdl_palette.li b/lib/unstable/sdl-binding/sdl/types/sdl_palette.li
new file mode 100644
index 0000000..d8ae3e6
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/types/sdl_palette.li
@@ -0,0 +1,36 @@
+///////////////////////////////////////////////////////////////////////////////
+//                                  Lisaac                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name      := SDL_PALETTE;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "Pixel format";
+  - type      := `SDL_Palette`; 
+
+Section Inherit
+
+  + parent:OBJECT := OBJECT;
+
+Section Public
+
+
diff --git a/lib/unstable/sdl-binding/sdl/types/sdl_pixel_format.li b/lib/unstable/sdl-binding/sdl/types/sdl_pixel_format.li
new file mode 100644
index 0000000..c84b46e
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/types/sdl_pixel_format.li
@@ -0,0 +1,67 @@
+///////////////////////////////////////////////////////////////////////////////
+//                                  Lisaac                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name      := SDL_PIXEL_FORMAT;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "Pixel format";
+  - type      := `SDL_PixelFormat`; 
+
+Section Inherit
+
+  + parent:OBJECT := OBJECT;
+
+Section Public
+
+//  - palette: SDL_PALETTE        <- `@Self->palette`:SDL;
+  - bits_per_pixel  :UINTEGER_8 <- `@Self->BitsPerPixel` :UINTEGER_8;
+  - bytes_per_pixel :UINTEGER_8 <- `@Self->BytesPerPixel`:UINTEGER_8;
+
+//
+// LOSS:
+//
+
+  - rloss:UINTEGER_8;
+  - gloss:UINTEGER_8;
+  - bloss:UINTEGER_8;
+  - aloss:UINTEGER_8;
+
+//
+// SHIFT:
+//
+  - rshift:UINTEGER_8;
+  - gshift:UINTEGER_8;
+  - bshift:UINTEGER_8;
+  - ashift:UINTEGER_8;
+
+//
+// MASK:
+//
+
+  - rmask:UINTEGER_8;
+  - gmask:UINTEGER_8;
+  - bmask:UINTEGER_8;
+  - amask:UINTEGER_8;
+
+	- colorkey:UINTEGER_32; // RGB color key information.
+  - alpha:UINTEGER_8;     // Alpha value information (per-surface alpha).
diff --git a/lib/unstable/sdl-binding/sdl/types/sdl_rect.li b/lib/unstable/sdl-binding/sdl/types/sdl_rect.li
new file mode 100644
index 0000000..65497e6
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl/types/sdl_rect.li
@@ -0,0 +1,88 @@
+///////////////////////////////////////////////////////////////////////////////
+//                                  Lisaac                                   //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+Section Header
+
+  + name      := SDL_RECT;
+
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <xoswald at debian.org>";
+  - comment   := "SDL Rectangle structure";
+  - type      := `SDL_Rect`;
+
+Section Inherit
+
+  + parent_object:OBJECT := OBJECT;
+
+Section Public
+
+  - create :SDL_RECT <- SELF.clone;
+//
+// GET:
+//
+
+  - get_all :(INTEGER,INTEGER,INTEGER,INTEGER) <-
+  // Return a vector with 4 values (x,y,w,h).
+  (
+    (x, y, w, h)
+  );
+
+  - x :INTEGER <- `@Self->x`:(INTEGER); // Return the `X' position value.
+  - y :INTEGER <- `@Self->y`:(INTEGER); // Return the `Y' position value.
+  - w :INTEGER <- `@Self->w`:(INTEGER); // Return the `Width' size value.
+  - h :INTEGER <- `@Self->h`:(INTEGER); // Return the `Height' size value.
+
+//
+// SET: 
+//
+
+  - set_all (x,y,w,h:INTEGER)<-
+  // Set all values (x,y,w,h).
+  ( 
+    `@Self->x = @x`;
+    `@Self->y = @y`;
+    `@Self->w = @w`;
+    `@Self->h = @h`;
+  );
+
+  - set_x value:INTEGER <- 
+  // Set the `X' position.
+  (
+    `@Self->x = @value`;
+  );
+
+  
+  - set_y value:INTEGER <-
+  // Set the `Y' position.
+  (
+    `@Self->y = @value`;
+  );
+  
+  - set_w value:INTEGER <-
+  // Set the `Width' size.
+  (
+    `@Self->w = @value`;
+  );
+  
+  - set_h value:INTEGER <-
+  // Set the `Height' size.
+  (
+    `@Self->h = @value`;
+  );
diff --git a/tests/strict_type_parameter/fail b/lib/unstable/sdl-binding/sdl_quick/sdl_quick.li
similarity index 100%
copy from tests/strict_type_parameter/fail
copy to lib/unstable/sdl-binding/sdl_quick/sdl_quick.li
diff --git a/lib/unstable/sdl-binding/sdl_quick/sdl_quick_fps.li b/lib/unstable/sdl-binding/sdl_quick/sdl_quick_fps.li
new file mode 100644
index 0000000..97040ba
--- /dev/null
+++ b/lib/unstable/sdl-binding/sdl_quick/sdl_quick_fps.li
@@ -0,0 +1,79 @@
+///////////////////////////////////////////////////////////////////////////////
+//                            Lisaac-SDL Library                             //
+//                                                                           //
+//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
+//                                                                           //
+//   This program is free software: you can redistribute it and/or modify    //
+//   it under the terms of the GNU General Public License as published by    //
+//   the Free Software Foundation, either version 3 of the License, or       //
+//   (at your option) any later version.                                     //
+//                                                                           //
+//   This program 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 General Public License for more details.                            //
+//                                                                           //
+//   You should have received a copy of the GNU General Public License       //
+//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
+//                                                                           //
+//                     http://isaacproject.u-strasbg.fr/                     //
+///////////////////////////////////////////////////////////////////////////////
+
+Section Header
+  
+  + name      := SDL_QUICK_FPS;
+
+  - comment   := "SDL quick fps handling";
+  - copyright := "2010 Xavier Oswald";
+  - author    := "Xavier Oswald <x.oswald at debian.org>";
+
+Section Public
+
+  - next          :UINTEGER_32 := 0;
+  - now           :UINTEGER_32 := 0;
+  - fps           :UINTEGER_8  := 50;
+  - tick_interval :UINTEGER_16 := 20;
+
+  - set value:UINTEGER_8 <- 
+  (
+	  fps := value;
+    tick_interval := 1000 / fps;
+  );
+
+  - print <-
+  (
+    "FPS was :".print;
+    fps.println;
+  );
+
+  - new_time <-
+  (
+    next := SDL_TIMER.get_ticks + tick_interval;
+  );
+
+  - get :INTEGER <-
+  (
+    fps
+  );
+
+  - fps_ok :BOOLEAN <-
+  ( + ok:BOOLEAN;
+
+    ok := TRUE;
+    now := SDL_TIMER.get_ticks;
+
+    (now < next).if {
+      /*frame rate is met*/
+      SDL_TIMER.delay(next - now);
+    } else {
+      /* frame rate is too high, lower it */
+      set(fps-1);
+      ok := FALSE;
+    };
+    ok
+  );
+
+  - init_timer <-
+  (
+    SDL.set_timer;
+  );
diff --git a/tests/strict_type_parameter/fail b/lib/unstable/small-binding/README
similarity index 100%
copy from tests/strict_type_parameter/fail
copy to lib/unstable/small-binding/README
diff --git a/lib/unstable/small-binding/pcre/pcre.li b/lib/unstable/small-binding/pcre/pcre.li
new file mode 100644
index 0000000..3a1d9a8
--- /dev/null
+++ b/lib/unstable/small-binding/pcre/pcre.li
@@ -0,0 +1,401 @@
+//
+// This code is released as-is for any purpose you see fit. Any
+// bug fixes or enhancements you may make, it would be kind to
+// contribute these back to me so others can benefit as well.
+//
+// Jeremy Cowgar <jeremy at cowgar.com>
+//
+
+Section Header
+  // Binding for PCRE (http://pcre.org) for Lisaac
+
+  + name      := PCRE;
+
+  - copyright := "2009 Jeremy Cowgar";
+
+  - comment   := "PCRE binding. Requires linking to libpcre.";
+
+  - external := `
+  #include <pcre.h>
+  const char *PCRE_error_message;
+  int PCRE_error_offset;
+  int PCRE_error_code;
+  int PCRE_ovector[30];
+  `;
+
+Section Inherit
+
+  - parent_object:OBJECT := OBJECT;
+
+Section Public
+  // Option Constants
+
+  - default         :INTEGER := `DEFAULT`:INTEGER;
+  - caseless        :INTEGER := `CASELESS`:INTEGER;
+  - multiline       :INTEGER := `MULTILINE`:INTEGER;
+  - dotall          :INTEGER := `DOTALL`:INTEGER;
+  - extended        :INTEGER := `EXTENDED`:INTEGER;
+  - anchored        :INTEGER := `ANCHORED`:INTEGER;
+  - dollar_endonly  :INTEGER := `DOLLAR_ENDONLY`:INTEGER;
+  - extra           :INTEGER := `EXTRA`:INTEGER;
+  - notbol          :INTEGER := `NOTBOL`:INTEGER;
+  - noteol          :INTEGER := `NOTEOL`:INTEGER;
+  - ungreedy        :INTEGER := `UNGREEDY`:INTEGER;
+  - notempty        :INTEGER := `NOTEMPTY`:INTEGER;
+  - utf8            :INTEGER := `UTF8`:INTEGER;
+  - no_auto_capture :INTEGER := `NO_AUTO_CAPTURE`:INTEGER;
+  - no_utf8_check   :INTEGER := `NO_UTF8_CHECK`:INTEGER;
+  - auto_callout    :INTEGER := `AUTO_CALLOUT`:INTEGER;
+  - partial         :INTEGER := `PARTIAL`:INTEGER;
+  - dfa_shortest    :INTEGER := `DFA_SHORTEST`:INTEGER;
+  - dfa_restart     :INTEGER := `DFA_RESTART`:INTEGER;
+  - firstline       :INTEGER := `FIRSTLINE`:INTEGER;
+  - dupnames        :INTEGER := `DUPNAMES`:INTEGER;
+  - newline_cr      :INTEGER := `NEWLINE_CR`:INTEGER;
+  - newline_lf      :INTEGER := `NEWLINE_LF`:INTEGER;
+  - newline_crlf    :INTEGER := `NEWLINE_CRLF`:INTEGER;
+  - newline_any     :INTEGER := `NEWLINE_ANY`:INTEGER;
+  - newline_anycrlf :INTEGER := `NEWLINE_ANYCRLF`:INTEGER;
+  - bsr_anycrlf     :INTEGER := `BSR_ANYCRLF`:INTEGER;
+  - bsr_unicode     :INTEGER := `BSR_UNICODE`:INTEGER;
+
+Section Private
+
+  + regex_pointer :POINTER := NULL;
+  // Internal pointer to the "pcre *" handle.
+
+Section Public
+
+  + pattern:ABSTRACT_STRING;
+  // Regular expression pattern
+
+  + error_message:ABSTRACT_STRING;
+  // Error message, if error_code is > 0
+
+  + error_offset:INTEGER := 0;
+  // Offset in the pattern where error occurred
+
+  + error_code:INTEGER := 0;
+  // Error code
+
+Section Private
+  // Internal setters used for creation slots
+
+  - set_regex_pointer value:POINTER <-
+  (
+    regex_pointer := value;
+  );
+
+  - set_pattern value:ABSTRACT_STRING <-
+  (
+    pattern := value;
+  );
+
+  - set_error_message value:ABSTRACT_STRING <-
+  (
+    error_message := value;
+  );
+
+  - set_error_offset value:INTEGER <-
+  (
+    error_offset := value;
+  );
+
+  - set_error_code value:INTEGER <-
+  (
+    error_code := value;
+  );
+
+Section Private
+  // Internal make slots
+
+  - make pattern:ABSTRACT_STRING pointer pointer:POINTER :SELF <-
+  (
+    + result:SELF;
+
+    result := SELF.clone;
+    result.set_pattern pattern;
+    result.set_regex_pointer pointer;
+    result
+  );
+
+  - make pattern:ABSTRACT_STRING code error_code:INTEGER offset error_offset:INTEGER message error_message:ABSTRACT_STRING :SELF <-
+  (
+    + result:SELF;
+
+    result := SELF.clone;
+    result.set_pattern pattern;
+    result.set_error_code error_code;
+    result.set_error_offset error_offset;
+    result.set_error_message error_message;
+    result
+  );
+
+Section Public
+  // Creation
+
+  - create pattern:ABSTRACT_STRING :SELF <-
+  // Create a new PCRE object.
+  //
+  // You should check the result.error_code. If not zero
+  // then an error occurred while compiling the pattern.
+  // You can retrieve detailed error information from
+  // the slots `error_code`, `error_message` and
+  // `error_offset`.
+  (
+    + pointer:POINTER;
+    + n_pattern:NATIVE_ARRAY(CHARACTER);
+    + error_message:STRING;
+    + error_code:INTEGER;
+    + error_offset:INTEGER;
+    + result:SELF;
+
+    n_pattern := pattern.to_external;
+
+    pointer := `pcre_compile2(@n_pattern, 0, &PCRE_error_code, &PCRE_error_message, &PCRE_error_offset, NULL)`:POINTER;
+    (pointer = 0). if {
+      error_code := `PCRE_error_code`:INTEGER;
+      error_offset := (`PCRE_error_offset`:INTEGER + 1);
+      error_message := STRING.clone;
+      error_message.from_external(`PCRE_error_message`:NATIVE_ARRAY(CHARACTER));
+
+      result := SELF.make pattern code error_code offset error_offset message (error_message.to_string);
+    } else {
+      result := SELF.make pattern pointer pointer;
+    };
+
+    result
+  );
+
+  - clear <-
+  // Clear any match data.
+  (
+    matches.clear;
+  );
+
+Section Public
+  // Matching
+
+  + matches:FAST_ARRAY(INTEGER);
+  // Pairs of integers specifying the start and end of
+  // the match for each capture group. Index 0 and 1
+  // are always the entire match. Index 2 and 3 will
+  // be the first matched group, 4 and 5 the second
+  // matched group, etc...
+
+  - match subject:ABSTRACT_STRING since since:INTEGER options options:INTEGER :INTEGER <-
+  // Match against `subject` starting at `since` with the
+  // with options `options`.
+  //
+  // Returns the number of matches found.
+  (
+    + pointer:POINTER;
+    + n_subject:NATIVE_ARRAY(CHARACTER);
+    + subject_len:INTEGER;
+    + match_count:INTEGER;
+
+    pointer := regex_pointer;
+    n_subject := subject.to_external;
+    subject_len := subject.count;
+
+    match_count := `pcre_exec(@pointer, NULL, @n_subject, @subject_len, @since-1, @options, PCRE_ovector, 30)`:INTEGER;
+    (match_count > 0).if {
+      matches := FAST_ARRAY(INTEGER).create (match_count * 2);
+      0.to (matches.count - 1) by 2 do { idx:INTEGER;
+        matches.put (`PCRE_ovector[@idx]`:INTEGER + 1) to idx;
+        matches.put (`PCRE_ovector[@idx+1]`:INTEGER) to (idx+1);
+      };
+    } else {
+      matches := FAST_ARRAY(INTEGER).create 0;
+    };
+
+    match_count
+  );
+
+  - match subject:ABSTRACT_STRING since since:INTEGER :INTEGER <-
+  // Match gainst `subject` with default options starting at
+  // `since`.
+  //
+  // Returns the number of matches found.
+  (
+    match subject since since options 0
+  );
+
+  - match subject:ABSTRACT_STRING options options:INTEGER :INTEGER <-
+  // Match against `subject` with `options` starting at
+  // position 1 in the `subject`.
+  //
+  // Returns the number of matches found.
+  (
+    match subject since 1 options options
+  );
+
+  - match subject:ABSTRACT_STRING :INTEGER <-
+  // Match against `subject` with default options starting
+  // at position 1 in the `subject`.
+  //
+  // Returns the number of matches found.
+  (
+    match subject since 1 options 0
+  );
+
+  - count :INTEGER <-
+  // Number of matches
+  (
+    (matches.count + 1) / 2 // +1 deals with the zero based index
+  );
+
+  - item idx:INTEGER on subject:ABSTRACT_STRING :STRING <-
+  // Get a match item `idx` on `subject`. `idx` 0 being
+  // the entire match, 1 being the first group, 2 being
+  // the second, etc...
+  //
+  // Returns a new STRING.
+  (
+    + start:INTEGER;
+    + result:STRING;
+
+    (idx >= count).if {
+      result := STRING.clone;
+      result.make_empty;
+    } else {
+      start := idx * 2;
+
+      result := (subject.substring (matches.item start) to (matches.item (start + 1)));
+    };
+
+    result
+  );
+
+Section Private
+
+  - add_match subject:ABSTRACT_STRING match idx:INTEGER to result:STRING conversion convert:INTEGER :INTEGER <-
+  (
+    + value:STRING;
+    + new_convert:INTEGER;
+    + match_idx:INTEGER;
+
+    match_idx := idx * 2;
+
+    value := (subject.substring (matches.item match_idx) to (matches.item (match_idx + 1)));
+    new_convert := convert;
+
+    ( convert = 0 ).if {
+      result.append value;
+    }.elseif { convert = 1 } then {
+      value.put ((value.item 1).to_upper) to 1;
+      result.append value;
+      new_convert := 0;
+    }.elseif { convert = 2 } then {
+      value.put ((value.item 1).to_lower) to 1;
+      result.append value;
+      new_convert := 0;
+    }.elseif { convert = 3 } then {
+      value.to_upper;
+      result.append value;
+    }.elseif { convert = 4 } then {
+      value.to_lower;
+      result.append value;
+    };
+
+    new_convert
+  );
+
+Section Public
+  // Replacement
+  //
+  // All `replacement` values can contain a few key escaped characters:
+  //
+  // * \0 - recall entire match
+  // * \1..\9 - recall match 1 through 9
+  // * \u - convert the next character to upper case
+  // * \l - convert the next character to lower case
+  // * \U - convert all characters to upper case until a \E or \e is encountered
+  // * \L - convert all characters to lower case until a \E or \e is encountered
+  // * \E or \e - turn off upper or lower case conversion
+
+  - replace subject:ABSTRACT_STRING with replacement:ABSTRACT_STRING since since:INTEGER options options:INTEGER :STRING <-
+  // Replace `subject` with `replacement` starting at `since` with
+  // the match options `options`.
+  //
+  // Returns a new STRING.
+  (
+    + ch:CHARACTER;
+    + result:STRING;
+    + idx:INTEGER;
+    + convert:INTEGER; // 0=None, 1=Next Upper, 2=Next Lower, 3=Upper, 4=Lower
+
+    match subject since since options options;
+
+    result := STRING.clone;
+    idx := 1;
+    convert := 0;
+
+    { idx <= replacement.count }.while_do {
+      ch := replacement.item idx;
+
+      ( ch = '\\' ).if {
+        idx := idx + 1;
+        ch := replacement.item idx;
+
+        ( (ch >= '0') & (ch <= '9') ).if {
+          convert := add_match subject match (ch.to_integer - 48) to result conversion convert;
+        }.elseif { ch = 'u' } then {
+          convert := 1;
+        }.elseif { ch = 'l' } then {
+          convert := 2;
+        }.elseif { ch = 'U' } then {
+          convert := 3;
+        }.elseif { ch = 'L' } then {
+          convert := 4;
+        }.elseif { ch.to_upper = 'E' } then {
+          convert := 0;
+        };
+      } else {
+        ( convert = 1 ).if {
+          ch := ch.to_upper;
+          convert := 0;
+        }.elseif { convert = 2 } then {
+          ch := ch.to_lower;
+          convert := 0;
+        }.elseif { convert = 3 } then {
+          ch := ch.to_upper;
+        }.elseif { convert = 4 } then {
+          ch := ch.to_lower;
+        };
+
+        result.append_character ch;
+      };
+
+      idx := idx + 1;
+    };
+
+    result
+  );
+
+  - replace subject:ABSTRACT_STRING with replacement:ABSTRACT_STRING since since:INTEGER :STRING <-
+  // Replace `subject` with `replacement` starting at `since` with
+  // the default match options.
+  //
+  // Returns a new STRING.
+  (
+    replace subject with replacement since since options 0
+  );
+
+  - replace subject:ABSTRACT_STRING with replacement:ABSTRACT_STRING options options:INTEGER :STRING <-
+  // Replace `subject` with `replacement` starting at position
+  // 1 with the default match options.
+  //
+  // Returns a new STRING.
+  (
+    replace subject with replacement since 1 options options
+  );
+
+  - replace subject:ABSTRACT_STRING with replacement:ABSTRACT_STRING :STRING <-
+  // Replace `subject` with `replacement` starting at position
+  // 1 with the default match options.
+  //
+  // Returns a new STRING.
+  (
+    replace subject with replacement since 1 options 0
+  );
diff --git a/lib/unstable/small-binding/pcre/test.li b/lib/unstable/small-binding/pcre/test.li
new file mode 100644
index 0000000..120f689
--- /dev/null
+++ b/lib/unstable/small-binding/pcre/test.li
@@ -0,0 +1,86 @@
+Section Header
+
+  + name := TEST;
+
+  - copyright := "2009 Jeremy Cowgar";
+
+  - comment := "Unit test for PCRE";
+
+Section Public
+
+  - main <-
+  (
+    + regex:PCRE;
+    + name:STRING_CONSTANT;
+    + tmp:STRING;
+
+    UNIT_TEST.suite "PCRE";
+    UNIT_TEST.section "Creation";
+
+    regex := PCRE.create "([A-Z]+";
+    (regex.error_code = 0).if {
+      UNIT_TEST.test_failed "PCRE.create invalid pattern";
+    } else {
+      UNIT_TEST.test_passed "PCRE.create invalid pattern";
+      UNIT_TEST.test "PCRE.error_code" integer (regex.error_code) equals 14;
+      UNIT_TEST.test "PCRE.error_offset" integer (regex.error_offset) equals 8;
+      UNIT_TEST.test "PCRE.error_message" string (regex.error_message) equals "missing )";
+    };
+
+    regex := PCRE.create "([A-Za-z]+) ([A-Za-z]+)";
+    (regex.error_code = 0).if {
+      UNIT_TEST.test_passed "PCRE.create";
+    } else {
+      UNIT_TEST.test_failed "PCRE.create";
+    };
+
+    name := "John Doe";
+
+    UNIT_TEST.section "Basic Matching";
+    regex := PCRE.create "[a-z]+";
+    UNIT_TEST.test "PCRE.match" integer (regex.match name) equals 1;
+    UNIT_TEST.test "PCRE.matches count" integer (regex.matches.count) equals 2;
+    UNIT_TEST.test "PCRE.matches #1" integer (regex.matches.item 0) equals 2;
+    UNIT_TEST.test "PCRE.matches #2" integer (regex.matches.item 1) equals 4;
+    UNIT_TEST.test "PCRE.item #1" string (regex.item 0 on name) equals "ohn";
+
+    UNIT_TEST.test "PCRE.match #2" integer (regex.match name since 5) equals 1;
+    UNIT_TEST.test "PCRE.matches count #2" integer (regex.matches.count) equals 2;
+    UNIT_TEST.test "PCRE.matches #1" integer (regex.matches.item 0) equals 7;
+    UNIT_TEST.test "PCRE.matches #2" integer (regex.matches.item 1) equals 8;
+    UNIT_TEST.test "PCRE.item #1" string (regex.item 0 on name) equals "oe";
+
+    UNIT_TEST.section "Group Matching";
+    regex := PCRE.create "([A-Za-z]+) ([A-Za-z]+)";
+    UNIT_TEST.test "PCRE.match" integer (regex.match name) equals 3;
+    UNIT_TEST.test "PCRE.matches count" integer (regex.matches.count) equals 6;
+    UNIT_TEST.test "PCRE.matches #1" integer (regex.matches.item 0) equals 1;
+    UNIT_TEST.test "PCRE.matches #2" integer (regex.matches.item 1) equals 8;
+    UNIT_TEST.test "PCRE.matches #3" integer (regex.matches.item 2) equals 1;
+    UNIT_TEST.test "PCRE.matches #4" integer (regex.matches.item 3) equals 4;
+    UNIT_TEST.test "PCRE.matches #5" integer (regex.matches.item 4) equals 6;
+    UNIT_TEST.test "PCRE.matches #6" integer (regex.matches.item 5) equals 8;
+    UNIT_TEST.test "PCRE.item #1" string (regex.item 0 on name) equals "John Doe";
+    UNIT_TEST.test "PCRE.item #2" string (regex.item 1 on name) equals "John";
+    UNIT_TEST.test "PCRE.item #3" string (regex.item 2 on name) equals "Doe";
+
+    UNIT_TEST.section "Replacement";
+
+    regex := PCRE.create "([A-Za-z]+) ([A-Za-z]+)";
+    tmp := regex.replace "John Doe" with "\\2, \\1";
+    UNIT_TEST.test "PCRE.replace #1" string tmp equals "Doe, John";
+
+    tmp := regex.replace "john doe" with "\\U\\1\\e \\2";
+    UNIT_TEST.test "PCRE.replace #2" string tmp equals "JOHN doe";
+
+    tmp := regex.replace "john doe" with "\\u\\1 \\u\\2";
+    UNIT_TEST.test "PCRE.replace #3" string tmp equals "John Doe";
+
+    tmp := regex.replace "JOHN DOE" with "\\L\\1\\e \\2";
+    UNIT_TEST.test "PCRE.replace #4" string tmp equals "john DOE";
+
+    tmp := regex.replace "JOHN DOE" with "\\l\\1 \\l\\2";
+    UNIT_TEST.test "PCRE.replace #5" string tmp equals "jOHN dOE";
+
+    UNIT_TEST.test_results;
+  );
diff --git a/lib/unstable/sqlite-binding/README b/lib/unstable/sqlite-binding/README
new file mode 100644
index 0000000..0c62cfb
--- /dev/null
+++ b/lib/unstable/sqlite-binding/README
@@ -0,0 +1,3 @@
+WARNING
+
+This is in an initial state and there will be changes to the API.
diff --git a/lib/unstable/sqlite-binding/sqlite.li b/lib/unstable/sqlite-binding/sqlite.li
new file mode 100644
index 0000000..605fc69
--- /dev/null
+++ b/lib/unstable/sqlite-binding/sqlite.li
@@ -0,0 +1,351 @@
+Section Header
+
+  // Binding of SQLite (http://sqlite.org) for Lisaac
+
+  + name     := SQLITE ;
+
+  - copyright := "2008, Jeremy Cowgar";
+
+  - comment   := "SQLite binding";
+
+  - external := `
+  #include "sqlite3.c"
+  int rc;
+  sqlite3 *db;
+  sqlite3_stmt *stmt;
+  `;
+
+Section Inherit
+
+  - parent_object:OBJECT := OBJECT;
+
+Section Public
+
+  + pointer :POINTER := NULL;
+  // Internal pointer to the "sqlite3 *" database handle.
+
+Section Public
+  // Mode specifiers that can be used in conjunction with `open ... mode ...`
+
+  - open_readonly   :INTEGER := `SQLITE_OPEN_READONLY`:INTEGER;
+  // The database is opened in read-only mode. If the database does not
+  // already exist, an error is returned.
+
+  - open_readwrite  :INTEGER := `SQLITE_OPEN_READWRITE`:INTEGER;
+  // The database is opened for reading and writing if possible, or reading
+  // only if the file is write protected by the operating system. In either
+  // case the database must already exist, otherwise an error is returned.
+  // This is the behavior that is always used for `open`.
+
+  - open_create     :INTEGER := `SQLITE_OPEN_CREATE`:INTEGER;
+  // The database is created if it does not yet exist. This is the behavior
+  // that is always used for `open`.
+
+Section Public
+  // Error/Success codes returned by many SQLITE slots.
+
+  - ok:INTEGER := `SQLITE_OK`:INTEGER;
+  // Successful result
+
+  - error:INTEGER := `SQLITE_ERROR`:INTEGER;
+  // SQL error or missing database
+
+  - internal:INTEGER := `SQLITE_INTERNAL`:INTEGER;
+  // Internal logic error in SQLite
+
+  - perm:INTEGER := `SQLITE_PERM`:INTEGER;
+  // Access permission denied
+
+  - abort:INTEGER := `SQLITE_ABORT`:INTEGER;
+  // Callback routine requested an abort
+
+  - busy:INTEGER := `SQLITE_BUSY`:INTEGER;
+  // The database file is locked
+
+  - locked:INTEGER := `SQLITE_LOCKED`:INTEGER;
+  // A table in the database is locked
+
+  - nomem:INTEGER := `SQLITE_NOMEM`:INTEGER;
+  // A malloc() failed
+
+  - readonly:INTEGER := `SQLITE_READONLY`:INTEGER;
+  // Attempt to write a readonly database
+
+  - interrupt:INTEGER := `SQLITE_INTERRUPT`:INTEGER;
+  // Operation terminated by sqlite3_interrupt()
+
+  - ioerr:INTEGER := `SQLITE_IOERR`:INTEGER;
+  // Some kind of disk I/O error occurred
+
+  - corrupt:INTEGER := `SQLITE_CORRUPT`:INTEGER;
+  // The database disk image is malformed
+
+  - notfound:INTEGER := `SQLITE_NOTFOUND`:INTEGER;
+  // NOT USED. Table or record not found
+
+  - full:INTEGER := `SQLITE_FULL`:INTEGER;
+  // Insertion failed because database is full
+
+  - cantopen:INTEGER := `SQLITE_CANTOPEN`:INTEGER;
+  // Unable to open the database file
+
+  - protocol:INTEGER := `SQLITE_PROTOCOL`:INTEGER;
+  // NOT USED. Database lock protocol error
+
+  - empty:INTEGER := `SQLITE_EMPTY`:INTEGER;
+  // Database is empty
+
+  - schema:INTEGER := `SQLITE_SCHEMA`:INTEGER;
+  // The database schema changed
+
+  - toobig:INTEGER := `SQLITE_TOOBIG`:INTEGER;
+  // String or BLOB exceeds size limit
+
+  - constraint:INTEGER := `SQLITE_CONSTRAINT`:INTEGER;
+  // Abort due to constraint violation
+
+  - mismatch:INTEGER := `SQLITE_MISMATCH`:INTEGER;
+  // Data type mismatch
+
+  - misuse:INTEGER := `SQLITE_MISUSE`:INTEGER;
+  // Library used incorrectly
+
+  - nolfs:INTEGER := `SQLITE_NOLFS`:INTEGER;
+  // Uses OS features not supported on host
+
+  - auth:INTEGER := `SQLITE_AUTH`:INTEGER;
+  // Authorization denied
+
+  - format:INTEGER := `SQLITE_FORMAT`:INTEGER;
+  // Auxiliary database format error
+
+  - range:INTEGER := `SQLITE_RANGE`:INTEGER;
+  // bind column index is out of range
+
+  - notadb:INTEGER := `SQLITE_NOTADB`:INTEGER;
+  // File opened that is not a database file
+
+  - row:INTEGER := `SQLITE_ROW`:INTEGER;
+  // `step` has another row ready
+
+  - done:INTEGER := `SQLITE_DONE`:INTEGER;
+  // `step` has finished executing
+
+Section Public
+  // Open/Close, Create/Destroy
+
+  - set_dbh dbh:POINTER <-
+  // Set the C sqlite3* handle for this connection.
+  (
+    pointer := dbh;
+  );
+
+  - make dbh:POINTER :SELF <-
+  // Clone `SQLITE` with the given `dbh` as the database handle pointer.
+  (
+    + result:SELF;
+
+    result := SELF.clone;
+    result.set_dbh dbh;
+    result
+  );
+
+  - open filename:ABSTRACT_STRING :SELF <-
+  // Open a SQLite database. The database file is created if it does not
+  // exist. If the `filename` is ":memory:", then a private, temporary
+  // in-memory database is created for the connection. If the `filename`
+  // is empty "" then a private, temporary on-disk database will be
+  // created.
+  (
+    + result:SELF;
+    + n_filename:NATIVE_ARRAY(CHARACTER);
+
+    n_filename := filename.to_external;
+
+    ( `sqlite3_open(@n_filename, &db)`:INTEGER = SQLITE.ok ).if {
+      result := SELF.make `db`:POINTER;
+    } else {
+      result := SELF.make NULL;
+    };
+
+    result
+  );
+
+  - open filename:ABSTRACT_STRING mode mode:INTEGER :SELF <-
+  // Open a SQLite database in the given `mode`. See `open`,
+  // `open_readonly`, `open_readwrite` and `open_create` for
+  // more information.
+  (
+    + result:SELF;
+    + n_filename:NATIVE_ARRAY(CHARACTER);
+    + rc:INTEGER;
+
+    n_filename := filename.to_external;
+    rc := `sqlite3_open_v2(@n_filename, &db, @mode, NULL)`:INTEGER;
+    ( rc = SQLITE.ok ).if {
+      result := SELF.make `db`:POINTER;
+    } else {
+      result := SELF.make NULL;
+    };
+
+    result
+  );
+
+  - close <-
+  // Close the database.
+  (
+    + dbh :POINTER;
+    dbh := pointer;
+    `sqlite3_close(@dbh)`;
+  );
+
+Section Public
+  // Error information
+
+  - errcode :INTEGER <-
+  // Returns the integer result code of the most recent failed
+  // action. It is possible that it return `ok` if no failure
+  // has taken place.
+  (
+    + dbh : POINTER;
+    `sqlite3_errcode(@dbh)`:INTEGER
+  );
+
+  - errmsg :STRING <-
+  // Returns the English-language text that describes the most
+  // recent failed action.
+  (
+    + error_message : NATIVE_ARRAY(CHARACTER);
+    + dbh : POINTER;
+    + result : STRING;
+
+    dbh := pointer;
+    error_message := `sqlite3_errmsg(@dbh)`:NATIVE_ARRAY(CHARACTER);
+
+    result := STRING.clone;
+    result.from_external(error_message);
+    result
+  );
+
+Section Public
+  // Querying
+
+  - exec sql:ABSTRACT_STRING :INTEGER <-
+  // Execute one or more SQL statements. See also `prepare`, `changes`
+  // and `total_changes`.
+  (
+    + dbh    : POINTER;
+    + a_sql  : NATIVE_ARRAY(CHARACTER);
+
+    dbh    := pointer;
+    a_sql  := sql.to_external;
+    `sqlite3_exec(@dbh, @a_sql, 0, 0, 0)`:INTEGER
+  );
+
+  - prepare sql:ABSTRACT_STRING :SQLITE_STATEMENT <-
+  // Prepare a SQL statement for execution.
+  (
+    + dbh    : POINTER;
+    + stmt   : POINTER;
+    + a_sql  : NATIVE_ARRAY(CHARACTER);
+    + result : INTEGER;
+    + o_stmt : SQLITE_STATEMENT;
+
+    dbh    := pointer;
+    a_sql  := sql.to_external;
+    `rc = sqlite3_prepare_v2(@dbh, @a_sql, -1, &stmt, 0)`;
+    result := `rc`:INTEGER;
+    stmt   := `stmt`:POINTER;
+
+    o_stmt := SQLITE_STATEMENT.make stmt;
+    o_stmt
+  );
+
+  - foreach sql:ABSTRACT_STRING do b:{SQLITE_STATEMENT;} <-
+  // Execute `sql` and call `b` for each row returned by the `sql`
+  // statement.
+  (
+    + o_stmt : SQLITE_STATEMENT;
+    o_stmt := prepare(sql);
+    { o_stmt.step = SQLITE.row }.while_do { b.value o_stmt };
+    o_stmt.finalize;
+  );
+
+  - foreach sql:ABSTRACT_STRING do b:{SQLITE_STATEMENT;} else be:{} <-
+  // Execute `sql` and call `b` for each row returned by the `sql`
+  // statement. If no rows are returned execute `be` instead.
+  (
+    + o_stmt:SQLITE_STATEMENT;
+    + count:INTEGER;
+
+    count := 0;
+    o_stmt := prepare(sql);
+    { o_stmt.step = SQLITE.row }.while_do {
+      b.value o_stmt;
+      count := count + 1;
+    };
+
+    o_stmt.finalize;
+
+    ( count = 0 ).if be;
+  );
+
+Section Public
+  // Statistics
+
+  - changes :INTEGER <-
+  // Returns the number of row changes caused by INSERT, UPDATE and
+  // DELETE statements during the last SQL statement. See also
+  // `total_changes`.
+  (
+    + dbh:POINTER;
+    dbh := pointer;
+    `sqlite3_changes(@dbh)`:INTEGER
+  );
+
+  - total_changes :INTEGER <-
+  // Returns the number of row changes caused by INSERT, UPDATE and
+  // DELETE statements since the database connection was opened.
+  // See also `changes`.
+  (
+    + dbh:POINTER;
+    dbh := pointer;
+    `sqlite3_total_changes(@dbh)`:INTEGER
+  );
+
+  - last_insert_rowid :INTEGER_64 <-
+  // Each entry in an SQLite table has a unique 64-bit signed integer
+  // key called the "rowid". The rowid is always available as an
+  // undeclared column named ROWID, OID, or _ROWID_ as long as those
+  // names are not also used by explicitly declared columns. If the
+  // table has a column of type INTEGER PRIMARY KEY then that column
+  // is another alias for the rowid.
+  //
+  // This routine returns the rowid of the most recent successful
+  // INSERT into the database from the database connection in the
+  // first argument. If no successful INSERTs have ever occurred on
+  // that database connection, zero is returned.
+  (
+    + dbh:POINTER;
+    dbh := pointer;
+    `sqlite3_last_insert_rowid(@stmt)`:INTEGER_64
+  );
+
+  - is_empty :BOOLEAN <-
+  // Query the "sqlite_master" table to determine if this SQLite
+  // database has any tables. This can be used to see if a call
+  // to `open` has opened or created the database file.
+  (
+    + s : SQLITE_STATEMENT;
+    + r : BOOLEAN;
+
+    s := prepare("SELECT COUNT(name) FROM sqlite_master");
+    ( s.step = SQLITE.row ).if {
+      r := (s.as_integer(0) = 0);
+    } else {
+      r := TRUE;
+    };
+    s.finalize;
+
+    r
+  );
diff --git a/lib/unstable/sqlite-binding/sqlite3.h b/lib/unstable/sqlite-binding/sqlite3.h
new file mode 100644
index 0000000..cc4d354
--- /dev/null
+++ b/lib/unstable/sqlite-binding/sqlite3.h
@@ -0,0 +1,5626 @@
+/*
+** 2001 September 15
+**
+** The author disclaims copyright to this source code.  In place of
+** a legal notice, here is a blessing:
+**
+**    May you do good and not evil.
+**    May you find forgiveness for yourself and forgive others.
+**    May you share freely, never taking more than you give.
+**
+*************************************************************************
+** This header file defines the interface that the SQLite library
+** presents to client programs.  If a C-function, structure, datatype,
+** or constant definition does not appear in this file, then it is
+** not a published API of SQLite, is subject to change without
+** notice, and should not be referenced by programs that use SQLite.
+**
+** Some of the definitions that are in this file are marked as
+** "experimental".  Experimental interfaces are normally new
+** features recently added to SQLite.  We do not anticipate changes
+** to experimental interfaces but reserve to make minor changes if
+** experience from use "in the wild" suggest such changes are prudent.
+**
+** The official C-language API documentation for SQLite is derived
+** from comments in this file.  This file is the authoritative source
+** on how SQLite interfaces are suppose to operate.
+**
+** The name of this file under configuration management is "sqlite.h.in".
+** The makefile makes some minor changes to this file (such as inserting
+** the version number) and changes its name to "sqlite3.h" as
+** part of the build process.
+**
+** @(#) $Id: sqlite.h.in,v 1.458 2009/06/19 22:50:31 drh Exp $
+*/
+#ifndef _SQLITE3_H_
+#define _SQLITE3_H_
+#include <stdarg.h>     /* Needed for the definition of va_list */
+
+/*
+** Make sure we can call this stuff from C++.
+*/
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+/*
+** Add the ability to override 'extern'
+*/
+#ifndef SQLITE_EXTERN
+# define SQLITE_EXTERN extern
+#endif
+
+/*
+** These no-op macros are used in front of interfaces to mark those
+** interfaces as either deprecated or experimental.  New applications
+** should not use deprecated intrfaces - they are support for backwards
+** compatibility only.  Application writers should be aware that
+** experimental interfaces are subject to change in point releases.
+**
+** These macros used to resolve to various kinds of compiler magic that
+** would generate warning messages when they were used.  But that
+** compiler magic ended up generating such a flurry of bug reports
+** that we have taken it all out and gone back to using simple
+** noop macros.
+*/
+#define SQLITE_DEPRECATED
+#define SQLITE_EXPERIMENTAL
+
+/*
+** Ensure these symbols were not defined by some previous header file.
+*/
+#ifdef SQLITE_VERSION
+# undef SQLITE_VERSION
+#endif
+#ifdef SQLITE_VERSION_NUMBER
+# undef SQLITE_VERSION_NUMBER
+#endif
+
+/*
+** CAPI3REF: Compile-Time Library Version Numbers {H10010} <S60100>
+**
+** The SQLITE_VERSION and SQLITE_VERSION_NUMBER #defines in
+** the sqlite3.h file specify the version of SQLite with which
+** that header file is associated.
+**
+** The "version" of SQLite is a string of the form "X.Y.Z".
+** The phrase "alpha" or "beta" might be appended after the Z.
+** The X value is major version number always 3 in SQLite3.
+** The X value only changes when backwards compatibility is
+** broken and we intend to never break backwards compatibility.
+** The Y value is the minor version number and only changes when
+** there are major feature enhancements that are forwards compatible
+** but not backwards compatible.
+** The Z value is the release number and is incremented with
+** each release but resets back to 0 whenever Y is incremented.
+**
+** See also: [sqlite3_libversion()] and [sqlite3_libversion_number()].
+**
+** Requirements: [H10011] [H10014]
+*/
+#define SQLITE_VERSION         "3.6.16"
+#define SQLITE_VERSION_NUMBER  3006016
+
+/*
+** CAPI3REF: Run-Time Library Version Numbers {H10020} <S60100>
+** KEYWORDS: sqlite3_version
+**
+** These features provide the same information as the [SQLITE_VERSION]
+** and [SQLITE_VERSION_NUMBER] #defines in the header, but are associated
+** with the library instead of the header file.  Cautious programmers might
+** include a check in their application to verify that
+** sqlite3_libversion_number() always returns the value
+** [SQLITE_VERSION_NUMBER].
+**
+** The sqlite3_libversion() function returns the same information as is
+** in the sqlite3_version[] string constant.  The function is provided
+** for use in DLLs since DLL users usually do not have direct access to string
+** constants within the DLL.
+**
+** Requirements: [H10021] [H10022] [H10023]
+*/
+SQLITE_EXTERN const char sqlite3_version[];
+const char *sqlite3_libversion(void);
+int sqlite3_libversion_number(void);
+
+/*
+** CAPI3REF: Test To See If The Library Is Threadsafe {H10100} <S60100>
+**
+** SQLite can be compiled with or without mutexes.  When
+** the [SQLITE_THREADSAFE] C preprocessor macro 1 or 2, mutexes
+** are enabled and SQLite is threadsafe.  When the
+** [SQLITE_THREADSAFE] macro is 0, 
+** the mutexes are omitted.  Without the mutexes, it is not safe
+** to use SQLite concurrently from more than one thread.
+**
+** Enabling mutexes incurs a measurable performance penalty.
+** So if speed is of utmost importance, it makes sense to disable
+** the mutexes.  But for maximum safety, mutexes should be enabled.
+** The default behavior is for mutexes to be enabled.
+**
+** This interface can be used by a program to make sure that the
+** version of SQLite that it is linking against was compiled with
+** the desired setting of the [SQLITE_THREADSAFE] macro.
+**
+** This interface only reports on the compile-time mutex setting
+** of the [SQLITE_THREADSAFE] flag.  If SQLite is compiled with
+** SQLITE_THREADSAFE=1 then mutexes are enabled by default but
+** can be fully or partially disabled using a call to [sqlite3_config()]
+** with the verbs [SQLITE_CONFIG_SINGLETHREAD], [SQLITE_CONFIG_MULTITHREAD],
+** or [SQLITE_CONFIG_MUTEX].  The return value of this function shows
+** only the default compile-time setting, not any run-time changes
+** to that setting.
+**
+** See the [threading mode] documentation for additional information.
+**
+** Requirements: [H10101] [H10102]
+*/
+int sqlite3_threadsafe(void);
+
+/*
+** CAPI3REF: Database Connection Handle {H12000} <S40200>
+** KEYWORDS: {database connection} {database connections}
+**
+** Each open SQLite database is represented by a pointer to an instance of
+** the opaque structure named "sqlite3".  It is useful to think of an sqlite3
+** pointer as an object.  The [sqlite3_open()], [sqlite3_open16()], and
+** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
+** is its destructor.  There are many other interfaces (such as
+** [sqlite3_prepare_v2()], [sqlite3_create_function()], and
+** [sqlite3_busy_timeout()] to name but three) that are methods on an
+** sqlite3 object.
+*/
+typedef struct sqlite3 sqlite3;
+
+/*
+** CAPI3REF: 64-Bit Integer Types {H10200} <S10110>
+** KEYWORDS: sqlite_int64 sqlite_uint64
+**
+** Because there is no cross-platform way to specify 64-bit integer types
+** SQLite includes typedefs for 64-bit signed and unsigned integers.
+**
+** The sqlite3_int64 and sqlite3_uint64 are the preferred type definitions.
+** The sqlite_int64 and sqlite_uint64 types are supported for backwards
+** compatibility only.
+**
+** Requirements: [H10201] [H10202]
+*/
+#ifdef SQLITE_INT64_TYPE
+  typedef SQLITE_INT64_TYPE sqlite_int64;
+  typedef unsigned SQLITE_INT64_TYPE sqlite_uint64;
+#elif defined(_MSC_VER) || defined(__BORLANDC__)
+  typedef __int64 sqlite_int64;
+  typedef unsigned __int64 sqlite_uint64;
+#else
+  typedef long long int sqlite_int64;
+  typedef unsigned long long int sqlite_uint64;
+#endif
+typedef sqlite_int64 sqlite3_int64;
+typedef sqlite_uint64 sqlite3_uint64;
+
+/*
+** If compiling for a processor that lacks floating point support,
+** substitute integer for floating-point.
+*/
+#ifdef SQLITE_OMIT_FLOATING_POINT
+# define double sqlite3_int64
+#endif
+
+/*
+** CAPI3REF: Closing A Database Connection {H12010} <S30100><S40200>
+**
+** This routine is the destructor for the [sqlite3] object.
+**
+** Applications should [sqlite3_finalize | finalize] all [prepared statements]
+** and [sqlite3_blob_close | close] all [BLOB handles] associated with
+** the [sqlite3] object prior to attempting to close the object.
+** The [sqlite3_next_stmt()] interface can be used to locate all
+** [prepared statements] associated with a [database connection] if desired.
+** Typical code might look like this:
+**
+** <blockquote><pre>
+** sqlite3_stmt *pStmt;
+** while( (pStmt = sqlite3_next_stmt(db, 0))!=0 ){
+** &nbsp;   sqlite3_finalize(pStmt);
+** }
+** </pre></blockquote>
+**
+** If [sqlite3_close()] is invoked while a transaction is open,
+** the transaction is automatically rolled back.
+**
+** The C parameter to [sqlite3_close(C)] must be either a NULL
+** pointer or an [sqlite3] object pointer obtained
+** from [sqlite3_open()], [sqlite3_open16()], or
+** [sqlite3_open_v2()], and not previously closed.
+**
+** Requirements:
+** [H12011] [H12012] [H12013] [H12014] [H12015] [H12019]
+*/
+int sqlite3_close(sqlite3 *);
+
+/*
+** The type for a callback function.
+** This is legacy and deprecated.  It is included for historical
+** compatibility and is not documented.
+*/
+typedef int (*sqlite3_callback)(void*,int,char**, char**);
+
+/*
+** CAPI3REF: One-Step Query Execution Interface {H12100} <S10000>
+**
+** The sqlite3_exec() interface is a convenient way of running one or more
+** SQL statements without having to write a lot of C code.  The UTF-8 encoded
+** SQL statements are passed in as the second parameter to sqlite3_exec().
+** The statements are evaluated one by one until either an error or
+** an interrupt is encountered, or until they are all done.  The 3rd parameter
+** is an optional callback that is invoked once for each row of any query
+** results produced by the SQL statements.  The 5th parameter tells where
+** to write any error messages.
+**
+** The error message passed back through the 5th parameter is held
+** in memory obtained from [sqlite3_malloc()].  To avoid a memory leak,
+** the calling application should call [sqlite3_free()] on any error
+** message returned through the 5th parameter when it has finished using
+** the error message.
+**
+** If the SQL statement in the 2nd parameter is NULL or an empty string
+** or a string containing only whitespace and comments, then no SQL
+** statements are evaluated and the database is not changed.
+**
+** The sqlite3_exec() interface is implemented in terms of
+** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()].
+** The sqlite3_exec() routine does nothing to the database that cannot be done
+** by [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()].
+**
+** The first parameter to [sqlite3_exec()] must be an valid and open
+** [database connection].
+**
+** The database connection must not be closed while
+** [sqlite3_exec()] is running.
+**
+** The calling function should use [sqlite3_free()] to free
+** the memory that *errmsg is left pointing at once the error
+** message is no longer needed.
+**
+** The SQL statement text in the 2nd parameter to [sqlite3_exec()]
+** must remain unchanged while [sqlite3_exec()] is running.
+**
+** Requirements:
+** [H12101] [H12102] [H12104] [H12105] [H12107] [H12110] [H12113] [H12116]
+** [H12119] [H12122] [H12125] [H12131] [H12134] [H12137] [H12138]
+*/
+int sqlite3_exec(
+  sqlite3*,                                  /* An open database */
+  const char *sql,                           /* SQL to be evaluated */
+  int (*callback)(void*,int,char**,char**),  /* Callback function */
+  void *,                                    /* 1st argument to callback */
+  char **errmsg                              /* Error msg written here */
+);
+
+/*
+** CAPI3REF: Result Codes {H10210} <S10700>
+** KEYWORDS: SQLITE_OK {error code} {error codes}
+** KEYWORDS: {result code} {result codes}
+**
+** Many SQLite functions return an integer result code from the set shown
+** here in order to indicates success or failure.
+**
+** New error codes may be added in future versions of SQLite.
+**
+** See also: [SQLITE_IOERR_READ | extended result codes]
+*/
+#define SQLITE_OK           0   /* Successful result */
+/* beginning-of-error-codes */
+#define SQLITE_ERROR        1   /* SQL error or missing database */
+#define SQLITE_INTERNAL     2   /* Internal logic error in SQLite */
+#define SQLITE_PERM         3   /* Access permission denied */
+#define SQLITE_ABORT        4   /* Callback routine requested an abort */
+#define SQLITE_BUSY         5   /* The database file is locked */
+#define SQLITE_LOCKED       6   /* A table in the database is locked */
+#define SQLITE_NOMEM        7   /* A malloc() failed */
+#define SQLITE_READONLY     8   /* Attempt to write a readonly database */
+#define SQLITE_INTERRUPT    9   /* Operation terminated by sqlite3_interrupt()*/
+#define SQLITE_IOERR       10   /* Some kind of disk I/O error occurred */
+#define SQLITE_CORRUPT     11   /* The database disk image is malformed */
+#define SQLITE_NOTFOUND    12   /* NOT USED. Table or record not found */
+#define SQLITE_FULL        13   /* Insertion failed because database is full */
+#define SQLITE_CANTOPEN    14   /* Unable to open the database file */
+#define SQLITE_PROTOCOL    15   /* NOT USED. Database lock protocol error */
+#define SQLITE_EMPTY       16   /* Database is empty */
+#define SQLITE_SCHEMA      17   /* The database schema changed */
+#define SQLITE_TOOBIG      18   /* String or BLOB exceeds size limit */
+#define SQLITE_CONSTRAINT  19   /* Abort due to constraint violation */
+#define SQLITE_MISMATCH    20   /* Data type mismatch */
+#define SQLITE_MISUSE      21   /* Library used incorrectly */
+#define SQLITE_NOLFS       22   /* Uses OS features not supported on host */
+#define SQLITE_AUTH        23   /* Authorization denied */
+#define SQLITE_FORMAT      24   /* Auxiliary database format error */
+#define SQLITE_RANGE       25   /* 2nd parameter to sqlite3_bind out of range */
+#define SQLITE_NOTADB      26   /* File opened that is not a database file */
+#define SQLITE_ROW         100  /* sqlite3_step() has another row ready */
+#define SQLITE_DONE        101  /* sqlite3_step() has finished executing */
+/* end-of-error-codes */
+
+/*
+** CAPI3REF: Extended Result Codes {H10220} <S10700>
+** KEYWORDS: {extended error code} {extended error codes}
+** KEYWORDS: {extended result code} {extended result codes}
+**
+** In its default configuration, SQLite API routines return one of 26 integer
+** [SQLITE_OK | result codes].  However, experience has shown that many of
+** these result codes are too coarse-grained.  They do not provide as
+** much information about problems as programmers might like.  In an effort to
+** address this, newer versions of SQLite (version 3.3.8 and later) include
+** support for additional result codes that provide more detailed information
+** about errors. The extended result codes are enabled or disabled
+** on a per database connection basis using the
+** [sqlite3_extended_result_codes()] API.
+**
+** Some of the available extended result codes are listed here.
+** One may expect the number of extended result codes will be expand
+** over time.  Software that uses extended result codes should expect
+** to see new result codes in future releases of SQLite.
+**
+** The SQLITE_OK result code will never be extended.  It will always
+** be exactly zero.
+*/
+#define SQLITE_IOERR_READ              (SQLITE_IOERR | (1<<8))
+#define SQLITE_IOERR_SHORT_READ        (SQLITE_IOERR | (2<<8))
+#define SQLITE_IOERR_WRITE             (SQLITE_IOERR | (3<<8))
+#define SQLITE_IOERR_FSYNC             (SQLITE_IOERR | (4<<8))
+#define SQLITE_IOERR_DIR_FSYNC         (SQLITE_IOERR | (5<<8))
+#define SQLITE_IOERR_TRUNCATE          (SQLITE_IOERR | (6<<8))
+#define SQLITE_IOERR_FSTAT             (SQLITE_IOERR | (7<<8))
+#define SQLITE_IOERR_UNLOCK            (SQLITE_IOERR | (8<<8))
+#define SQLITE_IOERR_RDLOCK            (SQLITE_IOERR | (9<<8))
+#define SQLITE_IOERR_DELETE            (SQLITE_IOERR | (10<<8))
+#define SQLITE_IOERR_BLOCKED           (SQLITE_IOERR | (11<<8))
+#define SQLITE_IOERR_NOMEM             (SQLITE_IOERR | (12<<8))
+#define SQLITE_IOERR_ACCESS            (SQLITE_IOERR | (13<<8))
+#define SQLITE_IOERR_CHECKRESERVEDLOCK (SQLITE_IOERR | (14<<8))
+#define SQLITE_IOERR_LOCK              (SQLITE_IOERR | (15<<8))
+#define SQLITE_IOERR_CLOSE             (SQLITE_IOERR | (16<<8))
+#define SQLITE_IOERR_DIR_CLOSE         (SQLITE_IOERR | (17<<8))
+#define SQLITE_LOCKED_SHAREDCACHE      (SQLITE_LOCKED | (1<<8) )
+
+/*
+** CAPI3REF: Flags For File Open Operations {H10230} <H11120> <H12700>
+**
+** These bit values are intended for use in the
+** 3rd parameter to the [sqlite3_open_v2()] interface and
+** in the 4th parameter to the xOpen method of the
+** [sqlite3_vfs] object.
+*/
+#define SQLITE_OPEN_READONLY         0x00000001  /* Ok for sqlite3_open_v2() */
+#define SQLITE_OPEN_READWRITE        0x00000002  /* Ok for sqlite3_open_v2() */
+#define SQLITE_OPEN_CREATE           0x00000004  /* Ok for sqlite3_open_v2() */
+#define SQLITE_OPEN_DELETEONCLOSE    0x00000008  /* VFS only */
+#define SQLITE_OPEN_EXCLUSIVE        0x00000010  /* VFS only */
+#define SQLITE_OPEN_MAIN_DB          0x00000100  /* VFS only */
+#define SQLITE_OPEN_TEMP_DB          0x00000200  /* VFS only */
+#define SQLITE_OPEN_TRANSIENT_DB     0x00000400  /* VFS only */
+#define SQLITE_OPEN_MAIN_JOURNAL     0x00000800  /* VFS only */
+#define SQLITE_OPEN_TEMP_JOURNAL     0x00001000  /* VFS only */
+#define SQLITE_OPEN_SUBJOURNAL       0x00002000  /* VFS only */
+#define SQLITE_OPEN_MASTER_JOURNAL   0x00004000  /* VFS only */
+#define SQLITE_OPEN_NOMUTEX          0x00008000  /* Ok for sqlite3_open_v2() */
+#define SQLITE_OPEN_FULLMUTEX        0x00010000  /* Ok for sqlite3_open_v2() */
+
+/*
+** CAPI3REF: Device Characteristics {H10240} <H11120>
+**
+** The xDeviceCapabilities method of the [sqlite3_io_methods]
+** object returns an integer which is a vector of the these
+** bit values expressing I/O characteristics of the mass storage
+** device that holds the file that the [sqlite3_io_methods]
+** refers to.
+**
+** The SQLITE_IOCAP_ATOMIC property means that all writes of
+** any size are atomic.  The SQLITE_IOCAP_ATOMICnnn values
+** mean that writes of blocks that are nnn bytes in size and
+** are aligned to an address which is an integer multiple of
+** nnn are atomic.  The SQLITE_IOCAP_SAFE_APPEND value means
+** that when data is appended to a file, the data is appended
+** first then the size of the file is extended, never the other
+** way around.  The SQLITE_IOCAP_SEQUENTIAL property means that
+** information is written to disk in the same order as calls
+** to xWrite().
+*/
+#define SQLITE_IOCAP_ATOMIC          0x00000001
+#define SQLITE_IOCAP_ATOMIC512       0x00000002
+#define SQLITE_IOCAP_ATOMIC1K        0x00000004
+#define SQLITE_IOCAP_ATOMIC2K        0x00000008
+#define SQLITE_IOCAP_ATOMIC4K        0x00000010
+#define SQLITE_IOCAP_ATOMIC8K        0x00000020
+#define SQLITE_IOCAP_ATOMIC16K       0x00000040
+#define SQLITE_IOCAP_ATOMIC32K       0x00000080
+#define SQLITE_IOCAP_ATOMIC64K       0x00000100
+#define SQLITE_IOCAP_SAFE_APPEND     0x00000200
+#define SQLITE_IOCAP_SEQUENTIAL      0x00000400
+
+/*
+** CAPI3REF: File Locking Levels {H10250} <H11120> <H11310>
+**
+** SQLite uses one of these integer values as the second
+** argument to calls it makes to the xLock() and xUnlock() methods
+** of an [sqlite3_io_methods] object.
+*/
+#define SQLITE_LOCK_NONE          0
+#define SQLITE_LOCK_SHARED        1
+#define SQLITE_LOCK_RESERVED      2
+#define SQLITE_LOCK_PENDING       3
+#define SQLITE_LOCK_EXCLUSIVE     4
+
+/*
+** CAPI3REF: Synchronization Type Flags {H10260} <H11120>
+**
+** When SQLite invokes the xSync() method of an
+** [sqlite3_io_methods] object it uses a combination of
+** these integer values as the second argument.
+**
+** When the SQLITE_SYNC_DATAONLY flag is used, it means that the
+** sync operation only needs to flush data to mass storage.  Inode
+** information need not be flushed. If the lower four bits of the flag
+** equal SQLITE_SYNC_NORMAL, that means to use normal fsync() semantics.
+** If the lower four bits equal SQLITE_SYNC_FULL, that means
+** to use Mac OS X style fullsync instead of fsync().
+*/
+#define SQLITE_SYNC_NORMAL        0x00002
+#define SQLITE_SYNC_FULL          0x00003
+#define SQLITE_SYNC_DATAONLY      0x00010
+
+/*
+** CAPI3REF: OS Interface Open File Handle {H11110} <S20110>
+**
+** An [sqlite3_file] object represents an open file in the OS
+** interface layer.  Individual OS interface implementations will
+** want to subclass this object by appending additional fields
+** for their own use.  The pMethods entry is a pointer to an
+** [sqlite3_io_methods] object that defines methods for performing
+** I/O operations on the open file.
+*/
+typedef struct sqlite3_file sqlite3_file;
+struct sqlite3_file {
+  const struct sqlite3_io_methods *pMethods;  /* Methods for an open file */
+};
+
+/*
+** CAPI3REF: OS Interface File Virtual Methods Object {H11120} <S20110>
+**
+** Every file opened by the [sqlite3_vfs] xOpen method populates an
+** [sqlite3_file] object (or, more commonly, a subclass of the
+** [sqlite3_file] object) with a pointer to an instance of this object.
+** This object defines the methods used to perform various operations
+** against the open file represented by the [sqlite3_file] object.
+**
+** If the xOpen method sets the sqlite3_file.pMethods element 
+** to a non-NULL pointer, then the sqlite3_io_methods.xClose method
+** may be invoked even if the xOpen reported that it failed.  The
+** only way to prevent a call to xClose following a failed xOpen
+** is for the xOpen to set the sqlite3_file.pMethods element to NULL.
+**
+** The flags argument to xSync may be one of [SQLITE_SYNC_NORMAL] or
+** [SQLITE_SYNC_FULL].  The first choice is the normal fsync().
+** The second choice is a Mac OS X style fullsync.  The [SQLITE_SYNC_DATAONLY]
+** flag may be ORed in to indicate that only the data of the file
+** and not its inode needs to be synced.
+**
+** The integer values to xLock() and xUnlock() are one of
+** <ul>
+** <li> [SQLITE_LOCK_NONE],
+** <li> [SQLITE_LOCK_SHARED],
+** <li> [SQLITE_LOCK_RESERVED],
+** <li> [SQLITE_LOCK_PENDING], or
+** <li> [SQLITE_LOCK_EXCLUSIVE].
+** </ul>
+** xLock() increases the lock. xUnlock() decreases the lock.
+** The xCheckReservedLock() method checks whether any database connection,
+** either in this process or in some other process, is holding a RESERVED,
+** PENDING, or EXCLUSIVE lock on the file.  It returns true
+** if such a lock exists and false otherwise.
+**
+** The xFileControl() method is a generic interface that allows custom
+** VFS implementations to directly control an open file using the
+** [sqlite3_file_control()] interface.  The second "op" argument is an
+** integer opcode.  The third argument is a generic pointer intended to
+** point to a structure that may contain arguments or space in which to
+** write return values.  Potential uses for xFileControl() might be
+** functions to enable blocking locks with timeouts, to change the
+** locking strategy (for example to use dot-file locks), to inquire
+** about the status of a lock, or to break stale locks.  The SQLite
+** core reserves all opcodes less than 100 for its own use.
+** A [SQLITE_FCNTL_LOCKSTATE | list of opcodes] less than 100 is available.
+** Applications that define a custom xFileControl method should use opcodes
+** greater than 100 to avoid conflicts.
+**
+** The xSectorSize() method returns the sector size of the
+** device that underlies the file.  The sector size is the
+** minimum write that can be performed without disturbing
+** other bytes in the file.  The xDeviceCharacteristics()
+** method returns a bit vector describing behaviors of the
+** underlying device:
+**
+** <ul>
+** <li> [SQLITE_IOCAP_ATOMIC]
+** <li> [SQLITE_IOCAP_ATOMIC512]
+** <li> [SQLITE_IOCAP_ATOMIC1K]
+** <li> [SQLITE_IOCAP_ATOMIC2K]
+** <li> [SQLITE_IOCAP_ATOMIC4K]
+** <li> [SQLITE_IOCAP_ATOMIC8K]
+** <li> [SQLITE_IOCAP_ATOMIC16K]
+** <li> [SQLITE_IOCAP_ATOMIC32K]
+** <li> [SQLITE_IOCAP_ATOMIC64K]
+** <li> [SQLITE_IOCAP_SAFE_APPEND]
+** <li> [SQLITE_IOCAP_SEQUENTIAL]
+** </ul>
+**
+** The SQLITE_IOCAP_ATOMIC property means that all writes of
+** any size are atomic.  The SQLITE_IOCAP_ATOMICnnn values
+** mean that writes of blocks that are nnn bytes in size and
+** are aligned to an address which is an integer multiple of
+** nnn are atomic.  The SQLITE_IOCAP_SAFE_APPEND value means
+** that when data is appended to a file, the data is appended
+** first then the size of the file is extended, never the other
+** way around.  The SQLITE_IOCAP_SEQUENTIAL property means that
+** information is written to disk in the same order as calls
+** to xWrite().
+**
+** If xRead() returns SQLITE_IOERR_SHORT_READ it must also fill
+** in the unread portions of the buffer with zeros.  A VFS that
+** fails to zero-fill short reads might seem to work.  However,
+** failure to zero-fill short reads will eventually lead to
+** database corruption.
+*/
+typedef struct sqlite3_io_methods sqlite3_io_methods;
+struct sqlite3_io_methods {
+  int iVersion;
+  int (*xClose)(sqlite3_file*);
+  int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
+  int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
+  int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
+  int (*xSync)(sqlite3_file*, int flags);
+  int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
+  int (*xLock)(sqlite3_file*, int);
+  int (*xUnlock)(sqlite3_file*, int);
+  int (*xCheckReservedLock)(sqlite3_file*, int *pResOut);
+  int (*xFileControl)(sqlite3_file*, int op, void *pArg);
+  int (*xSectorSize)(sqlite3_file*);
+  int (*xDeviceCharacteristics)(sqlite3_file*);
+  /* Additional methods may be added in future releases */
+};
+
+/*
+** CAPI3REF: Standard File Control Opcodes {H11310} <S30800>
+**
+** These integer constants are opcodes for the xFileControl method
+** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()]
+** interface.
+**
+** The [SQLITE_FCNTL_LOCKSTATE] opcode is used for debugging.  This
+** opcode causes the xFileControl method to write the current state of
+** the lock (one of [SQLITE_LOCK_NONE], [SQLITE_LOCK_SHARED],
+** [SQLITE_LOCK_RESERVED], [SQLITE_LOCK_PENDING], or [SQLITE_LOCK_EXCLUSIVE])
+** into an integer that the pArg argument points to. This capability
+** is used during testing and only needs to be supported when SQLITE_TEST
+** is defined.
+*/
+#define SQLITE_FCNTL_LOCKSTATE        1
+#define SQLITE_GET_LOCKPROXYFILE      2
+#define SQLITE_SET_LOCKPROXYFILE      3
+#define SQLITE_LAST_ERRNO             4
+
+/*
+** CAPI3REF: Mutex Handle {H17110} <S20130>
+**
+** The mutex module within SQLite defines [sqlite3_mutex] to be an
+** abstract type for a mutex object.  The SQLite core never looks
+** at the internal representation of an [sqlite3_mutex].  It only
+** deals with pointers to the [sqlite3_mutex] object.
+**
+** Mutexes are created using [sqlite3_mutex_alloc()].
+*/
+typedef struct sqlite3_mutex sqlite3_mutex;
+
+/*
+** CAPI3REF: OS Interface Object {H11140} <S20100>
+**
+** An instance of the sqlite3_vfs object defines the interface between
+** the SQLite core and the underlying operating system.  The "vfs"
+** in the name of the object stands for "virtual file system".
+**
+** The value of the iVersion field is initially 1 but may be larger in
+** future versions of SQLite.  Additional fields may be appended to this
+** object when the iVersion value is increased.  Note that the structure
+** of the sqlite3_vfs object changes in the transaction between
+** SQLite version 3.5.9 and 3.6.0 and yet the iVersion field was not
+** modified.
+**
+** The szOsFile field is the size of the subclassed [sqlite3_file]
+** structure used by this VFS.  mxPathname is the maximum length of
+** a pathname in this VFS.
+**
+** Registered sqlite3_vfs objects are kept on a linked list formed by
+** the pNext pointer.  The [sqlite3_vfs_register()]
+** and [sqlite3_vfs_unregister()] interfaces manage this list
+** in a thread-safe way.  The [sqlite3_vfs_find()] interface
+** searches the list.  Neither the application code nor the VFS
+** implementation should use the pNext pointer.
+**
+** The pNext field is the only field in the sqlite3_vfs
+** structure that SQLite will ever modify.  SQLite will only access
+** or modify this field while holding a particular static mutex.
+** The application should never modify anything within the sqlite3_vfs
+** object once the object has been registered.
+**
+** The zName field holds the name of the VFS module.  The name must
+** be unique across all VFS modules.
+**
+** SQLite will guarantee that the zFilename parameter to xOpen
+** is either a NULL pointer or string obtained
+** from xFullPathname().  SQLite further guarantees that
+** the string will be valid and unchanged until xClose() is
+** called. Because of the previous sentence,
+** the [sqlite3_file] can safely store a pointer to the
+** filename if it needs to remember the filename for some reason.
+** If the zFilename parameter is xOpen is a NULL pointer then xOpen
+** must invent its own temporary name for the file.  Whenever the 
+** xFilename parameter is NULL it will also be the case that the
+** flags parameter will include [SQLITE_OPEN_DELETEONCLOSE].
+**
+** The flags argument to xOpen() includes all bits set in
+** the flags argument to [sqlite3_open_v2()].  Or if [sqlite3_open()]
+** or [sqlite3_open16()] is used, then flags includes at least
+** [SQLITE_OPEN_READWRITE] | [SQLITE_OPEN_CREATE]. 
+** If xOpen() opens a file read-only then it sets *pOutFlags to
+** include [SQLITE_OPEN_READONLY].  Other bits in *pOutFlags may be set.
+**
+** SQLite will also add one of the following flags to the xOpen()
+** call, depending on the object being opened:
+**
+** <ul>
+** <li>  [SQLITE_OPEN_MAIN_DB]
+** <li>  [SQLITE_OPEN_MAIN_JOURNAL]
+** <li>  [SQLITE_OPEN_TEMP_DB]
+** <li>  [SQLITE_OPEN_TEMP_JOURNAL]
+** <li>  [SQLITE_OPEN_TRANSIENT_DB]
+** <li>  [SQLITE_OPEN_SUBJOURNAL]
+** <li>  [SQLITE_OPEN_MASTER_JOURNAL]
+** </ul>
+**
+** The file I/O implementation can use the object type flags to
+** change the way it deals with files.  For example, an application
+** that does not care about crash recovery or rollback might make
+** the open of a journal file a no-op.  Writes to this journal would
+** also be no-ops, and any attempt to read the journal would return
+** SQLITE_IOERR.  Or the implementation might recognize that a database
+** file will be doing page-aligned sector reads and writes in a random
+** order and set up its I/O subsystem accordingly.
+**
+** SQLite might also add one of the following flags to the xOpen method:
+**
+** <ul>
+** <li> [SQLITE_OPEN_DELETEONCLOSE]
+** <li> [SQLITE_OPEN_EXCLUSIVE]
+** </ul>
+**
+** The [SQLITE_OPEN_DELETEONCLOSE] flag means the file should be
+** deleted when it is closed.  The [SQLITE_OPEN_DELETEONCLOSE]
+** will be set for TEMP  databases, journals and for subjournals.
+**
+** The [SQLITE_OPEN_EXCLUSIVE] flag is always used in conjunction
+** with the [SQLITE_OPEN_CREATE] flag, which are both directly
+** analogous to the O_EXCL and O_CREAT flags of the POSIX open()
+** API.  The SQLITE_OPEN_EXCLUSIVE flag, when paired with the 
+** SQLITE_OPEN_CREATE, is used to indicate that file should always
+** be created, and that it is an error if it already exists.
+** It is <i>not</i> used to indicate the file should be opened 
+** for exclusive access.
+**
+** At least szOsFile bytes of memory are allocated by SQLite
+** to hold the  [sqlite3_file] structure passed as the third
+** argument to xOpen.  The xOpen method does not have to
+** allocate the structure; it should just fill it in.  Note that
+** the xOpen method must set the sqlite3_file.pMethods to either
+** a valid [sqlite3_io_methods] object or to NULL.  xOpen must do
+** this even if the open fails.  SQLite expects that the sqlite3_file.pMethods
+** element will be valid after xOpen returns regardless of the success
+** or failure of the xOpen call.
+**
+** The flags argument to xAccess() may be [SQLITE_ACCESS_EXISTS]
+** to test for the existence of a file, or [SQLITE_ACCESS_READWRITE] to
+** test whether a file is readable and writable, or [SQLITE_ACCESS_READ]
+** to test whether a file is at least readable.   The file can be a
+** directory.
+**
+** SQLite will always allocate at least mxPathname+1 bytes for the
+** output buffer xFullPathname.  The exact size of the output buffer
+** is also passed as a parameter to both  methods. If the output buffer
+** is not large enough, [SQLITE_CANTOPEN] should be returned. Since this is
+** handled as a fatal error by SQLite, vfs implementations should endeavor
+** to prevent this by setting mxPathname to a sufficiently large value.
+**
+** The xRandomness(), xSleep(), and xCurrentTime() interfaces
+** are not strictly a part of the filesystem, but they are
+** included in the VFS structure for completeness.
+** The xRandomness() function attempts to return nBytes bytes
+** of good-quality randomness into zOut.  The return value is
+** the actual number of bytes of randomness obtained.
+** The xSleep() method causes the calling thread to sleep for at
+** least the number of microseconds given.  The xCurrentTime()
+** method returns a Julian Day Number for the current date and time.
+**
+*/
+typedef struct sqlite3_vfs sqlite3_vfs;
+struct sqlite3_vfs {
+  int iVersion;            /* Structure version number */
+  int szOsFile;            /* Size of subclassed sqlite3_file */
+  int mxPathname;          /* Maximum file pathname length */
+  sqlite3_vfs *pNext;      /* Next registered VFS */
+  const char *zName;       /* Name of this virtual file system */
+  void *pAppData;          /* Pointer to application-specific data */
+  int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
+               int flags, int *pOutFlags);
+  int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
+  int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
+  int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
+  void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename);
+  void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
+  void (*(*xDlSym)(sqlite3_vfs*,void*, const char *zSymbol))(void);
+  void (*xDlClose)(sqlite3_vfs*, void*);
+  int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
+  int (*xSleep)(sqlite3_vfs*, int microseconds);
+  int (*xCurrentTime)(sqlite3_vfs*, double*);
+  int (*xGetLastError)(sqlite3_vfs*, int, char *);
+  /* New fields may be appended in figure versions.  The iVersion
+  ** value will increment whenever this happens. */
+};
+
+/*
+** CAPI3REF: Flags for the xAccess VFS method {H11190} <H11140>
+**
+** These integer constants can be used as the third parameter to
+** the xAccess method of an [sqlite3_vfs] object. {END}  They determine
+** what kind of permissions the xAccess method is looking for.
+** With SQLITE_ACCESS_EXISTS, the xAccess method
+** simply checks whether the file exists.
+** With SQLITE_ACCESS_READWRITE, the xAccess method
+** checks whether the file is both readable and writable.
+** With SQLITE_ACCESS_READ, the xAccess method
+** checks whether the file is readable.
+*/
+#define SQLITE_ACCESS_EXISTS    0
+#define SQLITE_ACCESS_READWRITE 1
+#define SQLITE_ACCESS_READ      2
+
+/*
+** CAPI3REF: Initialize The SQLite Library {H10130} <S20000><S30100>
+**
+** The sqlite3_initialize() routine initializes the
+** SQLite library.  The sqlite3_shutdown() routine
+** deallocates any resources that were allocated by sqlite3_initialize().
+**
+** A call to sqlite3_initialize() is an "effective" call if it is
+** the first time sqlite3_initialize() is invoked during the lifetime of
+** the process, or if it is the first time sqlite3_initialize() is invoked
+** following a call to sqlite3_shutdown().  Only an effective call
+** of sqlite3_initialize() does any initialization.  All other calls
+** are harmless no-ops.
+**
+** A call to sqlite3_shutdown() is an "effective" call if it is the first
+** call to sqlite3_shutdown() since the last sqlite3_initialize().  Only
+** an effective call to sqlite3_shutdown() does any deinitialization.
+** All other calls to sqlite3_shutdown() are harmless no-ops.
+**
+** Among other things, sqlite3_initialize() shall invoke
+** sqlite3_os_init().  Similarly, sqlite3_shutdown()
+** shall invoke sqlite3_os_end().
+**
+** The sqlite3_initialize() routine returns [SQLITE_OK] on success.
+** If for some reason, sqlite3_initialize() is unable to initialize
+** the library (perhaps it is unable to allocate a needed resource such
+** as a mutex) it returns an [error code] other than [SQLITE_OK].
+**
+** The sqlite3_initialize() routine is called internally by many other
+** SQLite interfaces so that an application usually does not need to
+** invoke sqlite3_initialize() directly.  For example, [sqlite3_open()]
+** calls sqlite3_initialize() so the SQLite library will be automatically
+** initialized when [sqlite3_open()] is called if it has not be initialized
+** already.  However, if SQLite is compiled with the [SQLITE_OMIT_AUTOINIT]
+** compile-time option, then the automatic calls to sqlite3_initialize()
+** are omitted and the application must call sqlite3_initialize() directly
+** prior to using any other SQLite interface.  For maximum portability,
+** it is recommended that applications always invoke sqlite3_initialize()
+** directly prior to using any other SQLite interface.  Future releases
+** of SQLite may require this.  In other words, the behavior exhibited
+** when SQLite is compiled with [SQLITE_OMIT_AUTOINIT] might become the
+** default behavior in some future release of SQLite.
+**
+** The sqlite3_os_init() routine does operating-system specific
+** initialization of the SQLite library.  The sqlite3_os_end()
+** routine undoes the effect of sqlite3_os_init().  Typical tasks
+** performed by these routines include allocation or deallocation
+** of static resources, initialization of global variables,
+** setting up a default [sqlite3_vfs] module, or setting up
+** a default configuration using [sqlite3_config()].
+**
+** The application should never invoke either sqlite3_os_init()
+** or sqlite3_os_end() directly.  The application should only invoke
+** sqlite3_initialize() and sqlite3_shutdown().  The sqlite3_os_init()
+** interface is called automatically by sqlite3_initialize() and
+** sqlite3_os_end() is called by sqlite3_shutdown().  Appropriate
+** implementations for sqlite3_os_init() and sqlite3_os_end()
+** are built into SQLite when it is compiled for unix, windows, or os/2.
+** When built for other platforms (using the [SQLITE_OS_OTHER=1] compile-time
+** option) the application must supply a suitable implementation for
+** sqlite3_os_init() and sqlite3_os_end().  An application-supplied
+** implementation of sqlite3_os_init() or sqlite3_os_end()
+** must return [SQLITE_OK] on success and some other [error code] upon
+** failure.
+*/
+int sqlite3_initialize(void);
+int sqlite3_shutdown(void);
+int sqlite3_os_init(void);
+int sqlite3_os_end(void);
+
+/*
+** CAPI3REF: Configuring The SQLite Library {H14100} <S20000><S30200>
+** EXPERIMENTAL
+**
+** The sqlite3_config() interface is used to make global configuration
+** changes to SQLite in order to tune SQLite to the specific needs of
+** the application.  The default configuration is recommended for most
+** applications and so this routine is usually not necessary.  It is
+** provided to support rare applications with unusual needs.
+**
+** The sqlite3_config() interface is not threadsafe.  The application
+** must insure that no other SQLite interfaces are invoked by other
+** threads while sqlite3_config() is running.  Furthermore, sqlite3_config()
+** may only be invoked prior to library initialization using
+** [sqlite3_initialize()] or after shutdown by [sqlite3_shutdown()].
+** Note, however, that sqlite3_config() can be called as part of the
+** implementation of an application-defined [sqlite3_os_init()].
+**
+** The first argument to sqlite3_config() is an integer
+** [SQLITE_CONFIG_SINGLETHREAD | configuration option] that determines
+** what property of SQLite is to be configured.  Subsequent arguments
+** vary depending on the [SQLITE_CONFIG_SINGLETHREAD | configuration option]
+** in the first argument.
+**
+** When a configuration option is set, sqlite3_config() returns [SQLITE_OK].
+** If the option is unknown or SQLite is unable to set the option
+** then this routine returns a non-zero [error code].
+**
+** Requirements:
+** [H14103] [H14106] [H14120] [H14123] [H14126] [H14129] [H14132] [H14135]
+** [H14138] [H14141] [H14144] [H14147] [H14150] [H14153] [H14156] [H14159]
+** [H14162] [H14165] [H14168]
+*/
+SQLITE_EXPERIMENTAL int sqlite3_config(int, ...);
+
+/*
+** CAPI3REF: Configure database connections  {H14200} <S20000>
+** EXPERIMENTAL
+**
+** The sqlite3_db_config() interface is used to make configuration
+** changes to a [database connection].  The interface is similar to
+** [sqlite3_config()] except that the changes apply to a single
+** [database connection] (specified in the first argument).  The
+** sqlite3_db_config() interface can only be used immediately after
+** the database connection is created using [sqlite3_open()],
+** [sqlite3_open16()], or [sqlite3_open_v2()].  
+**
+** The second argument to sqlite3_db_config(D,V,...)  is the
+** configuration verb - an integer code that indicates what
+** aspect of the [database connection] is being configured.
+** The only choice for this value is [SQLITE_DBCONFIG_LOOKASIDE].
+** New verbs are likely to be added in future releases of SQLite.
+** Additional arguments depend on the verb.
+**
+** Requirements:
+** [H14203] [H14206] [H14209] [H14212] [H14215]
+*/
+SQLITE_EXPERIMENTAL int sqlite3_db_config(sqlite3*, int op, ...);
+
+/*
+** CAPI3REF: Memory Allocation Routines {H10155} <S20120>
+** EXPERIMENTAL
+**
+** An instance of this object defines the interface between SQLite
+** and low-level memory allocation routines.
+**
+** This object is used in only one place in the SQLite interface.
+** A pointer to an instance of this object is the argument to
+** [sqlite3_config()] when the configuration option is
+** [SQLITE_CONFIG_MALLOC].  By creating an instance of this object
+** and passing it to [sqlite3_config()] during configuration, an
+** application can specify an alternative memory allocation subsystem
+** for SQLite to use for all of its dynamic memory needs.
+**
+** Note that SQLite comes with a built-in memory allocator that is
+** perfectly adequate for the overwhelming majority of applications
+** and that this object is only useful to a tiny minority of applications
+** with specialized memory allocation requirements.  This object is
+** also used during testing of SQLite in order to specify an alternative
+** memory allocator that simulates memory out-of-memory conditions in
+** order to verify that SQLite recovers gracefully from such
+** conditions.
+**
+** The xMalloc, xFree, and xRealloc methods must work like the
+** malloc(), free(), and realloc() functions from the standard library.
+**
+** xSize should return the allocated size of a memory allocation
+** previously obtained from xMalloc or xRealloc.  The allocated size
+** is always at least as big as the requested size but may be larger.
+**
+** The xRoundup method returns what would be the allocated size of
+** a memory allocation given a particular requested size.  Most memory
+** allocators round up memory allocations at least to the next multiple
+** of 8.  Some allocators round up to a larger multiple or to a power of 2.
+**
+** The xInit method initializes the memory allocator.  (For example,
+** it might allocate any require mutexes or initialize internal data
+** structures.  The xShutdown method is invoked (indirectly) by
+** [sqlite3_shutdown()] and should deallocate any resources acquired
+** by xInit.  The pAppData pointer is used as the only parameter to
+** xInit and xShutdown.
+*/
+typedef struct sqlite3_mem_methods sqlite3_mem_methods;
+struct sqlite3_mem_methods {
+  void *(*xMalloc)(int);         /* Memory allocation function */
+  void (*xFree)(void*);          /* Free a prior allocation */
+  void *(*xRealloc)(void*,int);  /* Resize an allocation */
+  int (*xSize)(void*);           /* Return the size of an allocation */
+  int (*xRoundup)(int);          /* Round up request size to allocation size */
+  int (*xInit)(void*);           /* Initialize the memory allocator */
+  void (*xShutdown)(void*);      /* Deinitialize the memory allocator */
+  void *pAppData;                /* Argument to xInit() and xShutdown() */
+};
+
+/*
+** CAPI3REF: Configuration Options {H10160} <S20000>
+** EXPERIMENTAL
+**
+** These constants are the available integer configuration options that
+** can be passed as the first argument to the [sqlite3_config()] interface.
+**
+** New configuration options may be added in future releases of SQLite.
+** Existing configuration options might be discontinued.  Applications
+** should check the return code from [sqlite3_config()] to make sure that
+** the call worked.  The [sqlite3_config()] interface will return a
+** non-zero [error code] if a discontinued or unsupported configuration option
+** is invoked.
+**
+** <dl>
+** <dt>SQLITE_CONFIG_SINGLETHREAD</dt>
+** <dd>There are no arguments to this option.  This option disables
+** all mutexing and puts SQLite into a mode where it can only be used
+** by a single thread.</dd>
+**
+** <dt>SQLITE_CONFIG_MULTITHREAD</dt>
+** <dd>There are no arguments to this option.  This option disables
+** mutexing on [database connection] and [prepared statement] objects.
+** The application is responsible for serializing access to
+** [database connections] and [prepared statements].  But other mutexes
+** are enabled so that SQLite will be safe to use in a multi-threaded
+** environment as long as no two threads attempt to use the same
+** [database connection] at the same time.  See the [threading mode]
+** documentation for additional information.</dd>
+**
+** <dt>SQLITE_CONFIG_SERIALIZED</dt>
+** <dd>There are no arguments to this option.  This option enables
+** all mutexes including the recursive
+** mutexes on [database connection] and [prepared statement] objects.
+** In this mode (which is the default when SQLite is compiled with
+** [SQLITE_THREADSAFE=1]) the SQLite library will itself serialize access
+** to [database connections] and [prepared statements] so that the
+** application is free to use the same [database connection] or the
+** same [prepared statement] in different threads at the same time.
+** See the [threading mode] documentation for additional information.</dd>
+**
+** <dt>SQLITE_CONFIG_MALLOC</dt>
+** <dd>This option takes a single argument which is a pointer to an
+** instance of the [sqlite3_mem_methods] structure.  The argument specifies
+** alternative low-level memory allocation routines to be used in place of
+** the memory allocation routines built into SQLite.</dd>
+**
+** <dt>SQLITE_CONFIG_GETMALLOC</dt>
+** <dd>This option takes a single argument which is a pointer to an
+** instance of the [sqlite3_mem_methods] structure.  The [sqlite3_mem_methods]
+** structure is filled with the currently defined memory allocation routines.
+** This option can be used to overload the default memory allocation
+** routines with a wrapper that simulations memory allocation failure or
+** tracks memory usage, for example.</dd>
+**
+** <dt>SQLITE_CONFIG_MEMSTATUS</dt>
+** <dd>This option takes single argument of type int, interpreted as a 
+** boolean, which enables or disables the collection of memory allocation 
+** statistics. When disabled, the following SQLite interfaces become 
+** non-operational:
+**   <ul>
+**   <li> [sqlite3_memory_used()]
+**   <li> [sqlite3_memory_highwater()]
+**   <li> [sqlite3_soft_heap_limit()]
+**   <li> [sqlite3_status()]
+**   </ul>
+** </dd>
+**
+** <dt>SQLITE_CONFIG_SCRATCH</dt>
+** <dd>This option specifies a static memory buffer that SQLite can use for
+** scratch memory.  There are three arguments:  A pointer an 8-byte
+** aligned memory buffer from which the scrach allocations will be
+** drawn, the size of each scratch allocation (sz),
+** and the maximum number of scratch allocations (N).  The sz
+** argument must be a multiple of 16. The sz parameter should be a few bytes
+** larger than the actual scratch space required due to internal overhead.
+** The first argument should pointer to an 8-byte aligned buffer
+** of at least sz*N bytes of memory.
+** SQLite will use no more than one scratch buffer at once per thread, so
+** N should be set to the expected maximum number of threads.  The sz
+** parameter should be 6 times the size of the largest database page size.
+** Scratch buffers are used as part of the btree balance operation.  If
+** The btree balancer needs additional memory beyond what is provided by
+** scratch buffers or if no scratch buffer space is specified, then SQLite
+** goes to [sqlite3_malloc()] to obtain the memory it needs.</dd>
+**
+** <dt>SQLITE_CONFIG_PAGECACHE</dt>
+** <dd>This option specifies a static memory buffer that SQLite can use for
+** the database page cache with the default page cache implemenation.  
+** This configuration should not be used if an application-define page
+** cache implementation is loaded using the SQLITE_CONFIG_PCACHE option.
+** There are three arguments to this option: A pointer to 8-byte aligned
+** memory, the size of each page buffer (sz), and the number of pages (N).
+** The sz argument should be the size of the largest database page
+** (a power of two between 512 and 32768) plus a little extra for each
+** page header.  The page header size is 20 to 40 bytes depending on
+** the host architecture.  It is harmless, apart from the wasted memory,
+** to make sz a little too large.  The first
+** argument should point to an allocation of at least sz*N bytes of memory.
+** SQLite will use the memory provided by the first argument to satisfy its
+** memory needs for the first N pages that it adds to cache.  If additional
+** page cache memory is needed beyond what is provided by this option, then
+** SQLite goes to [sqlite3_malloc()] for the additional storage space.
+** The implementation might use one or more of the N buffers to hold 
+** memory accounting information. The pointer in the first argument must
+** be aligned to an 8-byte boundary or subsequent behavior of SQLite
+** will be undefined.</dd>
+**
+** <dt>SQLITE_CONFIG_HEAP</dt>
+** <dd>This option specifies a static memory buffer that SQLite will use
+** for all of its dynamic memory allocation needs beyond those provided
+** for by [SQLITE_CONFIG_SCRATCH] and [SQLITE_CONFIG_PAGECACHE].
+** There are three arguments: An 8-byte aligned pointer to the memory,
+** the number of bytes in the memory buffer, and the minimum allocation size.
+** If the first pointer (the memory pointer) is NULL, then SQLite reverts
+** to using its default memory allocator (the system malloc() implementation),
+** undoing any prior invocation of [SQLITE_CONFIG_MALLOC].  If the
+** memory pointer is not NULL and either [SQLITE_ENABLE_MEMSYS3] or
+** [SQLITE_ENABLE_MEMSYS5] are defined, then the alternative memory
+** allocator is engaged to handle all of SQLites memory allocation needs.
+** The first pointer (the memory pointer) must be aligned to an 8-byte
+** boundary or subsequent behavior of SQLite will be undefined.</dd>
+**
+** <dt>SQLITE_CONFIG_MUTEX</dt>
+** <dd>This option takes a single argument which is a pointer to an
+** instance of the [sqlite3_mutex_methods] structure.  The argument specifies
+** alternative low-level mutex routines to be used in place
+** the mutex routines built into SQLite.</dd>
+**
+** <dt>SQLITE_CONFIG_GETMUTEX</dt>
+** <dd>This option takes a single argument which is a pointer to an
+** instance of the [sqlite3_mutex_methods] structure.  The
+** [sqlite3_mutex_methods]
+** structure is filled with the currently defined mutex routines.
+** This option can be used to overload the default mutex allocation
+** routines with a wrapper used to track mutex usage for performance
+** profiling or testing, for example.</dd>
+**
+** <dt>SQLITE_CONFIG_LOOKASIDE</dt>
+** <dd>This option takes two arguments that determine the default
+** memory allcation lookaside optimization.  The first argument is the
+** size of each lookaside buffer slot and the second is the number of
+** slots allocated to each database connection.</dd>
+**
+** <dt>SQLITE_CONFIG_PCACHE</dt>
+** <dd>This option takes a single argument which is a pointer to
+** an [sqlite3_pcache_methods] object.  This object specifies the interface
+** to a custom page cache implementation.  SQLite makes a copy of the
+** object and uses it for page cache memory allocations.</dd>
+**
+** <dt>SQLITE_CONFIG_GETPCACHE</dt>
+** <dd>This option takes a single argument which is a pointer to an
+** [sqlite3_pcache_methods] object.  SQLite copies of the current
+** page cache implementation into that object.</dd>
+**
+** </dl>
+*/
+#define SQLITE_CONFIG_SINGLETHREAD  1  /* nil */
+#define SQLITE_CONFIG_MULTITHREAD   2  /* nil */
+#define SQLITE_CONFIG_SERIALIZED    3  /* nil */
+#define SQLITE_CONFIG_MALLOC        4  /* sqlite3_mem_methods* */
+#define SQLITE_CONFIG_GETMALLOC     5  /* sqlite3_mem_methods* */
+#define SQLITE_CONFIG_SCRATCH       6  /* void*, int sz, int N */
+#define SQLITE_CONFIG_PAGECACHE     7  /* void*, int sz, int N */
+#define SQLITE_CONFIG_HEAP          8  /* void*, int nByte, int min */
+#define SQLITE_CONFIG_MEMSTATUS     9  /* boolean */
+#define SQLITE_CONFIG_MUTEX        10  /* sqlite3_mutex_methods* */
+#define SQLITE_CONFIG_GETMUTEX     11  /* sqlite3_mutex_methods* */
+/* previously SQLITE_CONFIG_CHUNKALLOC 12 which is now unused. */ 
+#define SQLITE_CONFIG_LOOKASIDE    13  /* int int */
+#define SQLITE_CONFIG_PCACHE       14  /* sqlite3_pcache_methods* */
+#define SQLITE_CONFIG_GETPCACHE    15  /* sqlite3_pcache_methods* */
+
+/*
+** CAPI3REF: Configuration Options {H10170} <S20000>
+** EXPERIMENTAL
+**
+** These constants are the available integer configuration options that
+** can be passed as the second argument to the [sqlite3_db_config()] interface.
+**
+** New configuration options may be added in future releases of SQLite.
+** Existing configuration options might be discontinued.  Applications
+** should check the return code from [sqlite3_db_config()] to make sure that
+** the call worked.  The [sqlite3_db_config()] interface will return a
+** non-zero [error code] if a discontinued or unsupported configuration option
+** is invoked.
+**
+** <dl>
+** <dt>SQLITE_DBCONFIG_LOOKASIDE</dt>
+** <dd>This option takes three additional arguments that determine the 
+** [lookaside memory allocator] configuration for the [database connection].
+** The first argument (the third parameter to [sqlite3_db_config()] is a
+** pointer to an 8-byte aligned memory buffer to use for lookaside memory.
+** The first argument may be NULL in which case SQLite will allocate the
+** lookaside buffer itself using [sqlite3_malloc()].  The second argument is the
+** size of each lookaside buffer slot and the third argument is the number of
+** slots.  The size of the buffer in the first argument must be greater than
+** or equal to the product of the second and third arguments.</dd>
+**
+** </dl>
+*/
+#define SQLITE_DBCONFIG_LOOKASIDE    1001  /* void* int int */
+
+
+/*
+** CAPI3REF: Enable Or Disable Extended Result Codes {H12200} <S10700>
+**
+** The sqlite3_extended_result_codes() routine enables or disables the
+** [extended result codes] feature of SQLite. The extended result
+** codes are disabled by default for historical compatibility considerations.
+**
+** Requirements:
+** [H12201] [H12202]
+*/
+int sqlite3_extended_result_codes(sqlite3*, int onoff);
+
+/*
+** CAPI3REF: Last Insert Rowid {H12220} <S10700>
+**
+** Each entry in an SQLite table has a unique 64-bit signed
+** integer key called the [ROWID | "rowid"]. The rowid is always available
+** as an undeclared column named ROWID, OID, or _ROWID_ as long as those
+** names are not also used by explicitly declared columns. If
+** the table has a column of type [INTEGER PRIMARY KEY] then that column
+** is another alias for the rowid.
+**
+** This routine returns the [rowid] of the most recent
+** successful [INSERT] into the database from the [database connection]
+** in the first argument.  If no successful [INSERT]s
+** have ever occurred on that database connection, zero is returned.
+**
+** If an [INSERT] occurs within a trigger, then the [rowid] of the inserted
+** row is returned by this routine as long as the trigger is running.
+** But once the trigger terminates, the value returned by this routine
+** reverts to the last value inserted before the trigger fired.
+**
+** An [INSERT] that fails due to a constraint violation is not a
+** successful [INSERT] and does not change the value returned by this
+** routine.  Thus INSERT OR FAIL, INSERT OR IGNORE, INSERT OR ROLLBACK,
+** and INSERT OR ABORT make no changes to the return value of this
+** routine when their insertion fails.  When INSERT OR REPLACE
+** encounters a constraint violation, it does not fail.  The
+** INSERT continues to completion after deleting rows that caused
+** the constraint problem so INSERT OR REPLACE will always change
+** the return value of this interface.
+**
+** For the purposes of this routine, an [INSERT] is considered to
+** be successful even if it is subsequently rolled back.
+**
+** Requirements:
+** [H12221] [H12223]
+**
+** If a separate thread performs a new [INSERT] on the same
+** database connection while the [sqlite3_last_insert_rowid()]
+** function is running and thus changes the last insert [rowid],
+** then the value returned by [sqlite3_last_insert_rowid()] is
+** unpredictable and might not equal either the old or the new
+** last insert [rowid].
+*/
+sqlite3_int64 sqlite3_last_insert_rowid(sqlite3*);
+
+/*
+** CAPI3REF: Count The Number Of Rows Modified {H12240} <S10600>
+**
+** This function returns the number of database rows that were changed
+** or inserted or deleted by the most recently completed SQL statement
+** on the [database connection] specified by the first parameter.
+** Only changes that are directly specified by the [INSERT], [UPDATE],
+** or [DELETE] statement are counted.  Auxiliary changes caused by
+** triggers are not counted. Use the [sqlite3_total_changes()] function
+** to find the total number of changes including changes caused by triggers.
+**
+** Changes to a view that are simulated by an [INSTEAD OF trigger]
+** are not counted.  Only real table changes are counted.
+**
+** A "row change" is a change to a single row of a single table
+** caused by an INSERT, DELETE, or UPDATE statement.  Rows that
+** are changed as side effects of [REPLACE] constraint resolution,
+** rollback, ABORT processing, [DROP TABLE], or by any other
+** mechanisms do not count as direct row changes.
+**
+** A "trigger context" is a scope of execution that begins and
+** ends with the script of a [CREATE TRIGGER | trigger]. 
+** Most SQL statements are
+** evaluated outside of any trigger.  This is the "top level"
+** trigger context.  If a trigger fires from the top level, a
+** new trigger context is entered for the duration of that one
+** trigger.  Subtriggers create subcontexts for their duration.
+**
+** Calling [sqlite3_exec()] or [sqlite3_step()] recursively does
+** not create a new trigger context.
+**
+** This function returns the number of direct row changes in the
+** most recent INSERT, UPDATE, or DELETE statement within the same
+** trigger context.
+**
+** Thus, when called from the top level, this function returns the
+** number of changes in the most recent INSERT, UPDATE, or DELETE
+** that also occurred at the top level.  Within the body of a trigger,
+** the sqlite3_changes() interface can be called to find the number of
+** changes in the most recently completed INSERT, UPDATE, or DELETE
+** statement within the body of the same trigger.
+** However, the number returned does not include changes
+** caused by subtriggers since those have their own context.
+**
+** See also the [sqlite3_total_changes()] interface and the
+** [count_changes pragma].
+**
+** Requirements:
+** [H12241] [H12243]
+**
+** If a separate thread makes changes on the same database connection
+** while [sqlite3_changes()] is running then the value returned
+** is unpredictable and not meaningful.
+*/
+int sqlite3_changes(sqlite3*);
+
+/*
+** CAPI3REF: Total Number Of Rows Modified {H12260} <S10600>
+**
+** This function returns the number of row changes caused by [INSERT],
+** [UPDATE] or [DELETE] statements since the [database connection] was opened.
+** The count includes all changes from all 
+** [CREATE TRIGGER | trigger] contexts.  However,
+** the count does not include changes used to implement [REPLACE] constraints,
+** do rollbacks or ABORT processing, or [DROP TABLE] processing.  The
+** count does not include rows of views that fire an [INSTEAD OF trigger],
+** though if the INSTEAD OF trigger makes changes of its own, those changes 
+** are counted.
+** The changes are counted as soon as the statement that makes them is
+** completed (when the statement handle is passed to [sqlite3_reset()] or
+** [sqlite3_finalize()]).
+**
+** See also the [sqlite3_changes()] interface and the
+** [count_changes pragma].
+**
+** Requirements:
+** [H12261] [H12263]
+**
+** If a separate thread makes changes on the same database connection
+** while [sqlite3_total_changes()] is running then the value
+** returned is unpredictable and not meaningful.
+*/
+int sqlite3_total_changes(sqlite3*);
+
+/*
+** CAPI3REF: Interrupt A Long-Running Query {H12270} <S30500>
+**
+** This function causes any pending database operation to abort and
+** return at its earliest opportunity. This routine is typically
+** called in response to a user action such as pressing "Cancel"
+** or Ctrl-C where the user wants a long query operation to halt
+** immediately.
+**
+** It is safe to call this routine from a thread different from the
+** thread that is currently running the database operation.  But it
+** is not safe to call this routine with a [database connection] that
+** is closed or might close before sqlite3_interrupt() returns.
+**
+** If an SQL operation is very nearly finished at the time when
+** sqlite3_interrupt() is called, then it might not have an opportunity
+** to be interrupted and might continue to completion.
+**
+** An SQL operation that is interrupted will return [SQLITE_INTERRUPT].
+** If the interrupted SQL operation is an INSERT, UPDATE, or DELETE
+** that is inside an explicit transaction, then the entire transaction
+** will be rolled back automatically.
+**
+** The sqlite3_interrupt(D) call is in effect until all currently running
+** SQL statements on [database connection] D complete.  Any new SQL statements
+** that are started after the sqlite3_interrupt() call and before the 
+** running statements reaches zero are interrupted as if they had been
+** running prior to the sqlite3_interrupt() call.  New SQL statements
+** that are started after the running statement count reaches zero are
+** not effected by the sqlite3_interrupt().
+** A call to sqlite3_interrupt(D) that occurs when there are no running
+** SQL statements is a no-op and has no effect on SQL statements
+** that are started after the sqlite3_interrupt() call returns.
+**
+** Requirements:
+** [H12271] [H12272]
+**
+** If the database connection closes while [sqlite3_interrupt()]
+** is running then bad things will likely happen.
+*/
+void sqlite3_interrupt(sqlite3*);
+
+/*
+** CAPI3REF: Determine If An SQL Statement Is Complete {H10510} <S70200>
+**
+** These routines are useful during command-line input to determine if the
+** currently entered text seems to form a complete SQL statement or
+** if additional input is needed before sending the text into
+** SQLite for parsing.  These routines return 1 if the input string
+** appears to be a complete SQL statement.  A statement is judged to be
+** complete if it ends with a semicolon token and is not a prefix of a
+** well-formed CREATE TRIGGER statement.  Semicolons that are embedded within
+** string literals or quoted identifier names or comments are not
+** independent tokens (they are part of the token in which they are
+** embedded) and thus do not count as a statement terminator.  Whitespace
+** and comments that follow the final semicolon are ignored.
+**
+** These routines return 0 if the statement is incomplete.  If a
+** memory allocation fails, then SQLITE_NOMEM is returned.
+**
+** These routines do not parse the SQL statements thus
+** will not detect syntactically incorrect SQL.
+**
+** If SQLite has not been initialized using [sqlite3_initialize()] prior 
+** to invoking sqlite3_complete16() then sqlite3_initialize() is invoked
+** automatically by sqlite3_complete16().  If that initialization fails,
+** then the return value from sqlite3_complete16() will be non-zero
+** regardless of whether or not the input SQL is complete.
+**
+** Requirements: [H10511] [H10512]
+**
+** The input to [sqlite3_complete()] must be a zero-terminated
+** UTF-8 string.
+**
+** The input to [sqlite3_complete16()] must be a zero-terminated
+** UTF-16 string in native byte order.
+*/
+int sqlite3_complete(const char *sql);
+int sqlite3_complete16(const void *sql);
+
+/*
+** CAPI3REF: Register A Callback To Handle SQLITE_BUSY Errors {H12310} <S40400>
+**
+** This routine sets a callback function that might be invoked whenever
+** an attempt is made to open a database table that another thread
+** or process has locked.
+**
+** If the busy callback is NULL, then [SQLITE_BUSY] or [SQLITE_IOERR_BLOCKED]
+** is returned immediately upon encountering the lock. If the busy callback
+** is not NULL, then the callback will be invoked with two arguments.
+**
+** The first argument to the handler is a copy of the void* pointer which
+** is the third argument to sqlite3_busy_handler().  The second argument to
+** the handler callback is the number of times that the busy handler has
+** been invoked for this locking event.  If the
+** busy callback returns 0, then no additional attempts are made to
+** access the database and [SQLITE_BUSY] or [SQLITE_IOERR_BLOCKED] is returned.
+** If the callback returns non-zero, then another attempt
+** is made to open the database for reading and the cycle repeats.
+**
+** The presence of a busy handler does not guarantee that it will be invoked
+** when there is lock contention. If SQLite determines that invoking the busy
+** handler could result in a deadlock, it will go ahead and return [SQLITE_BUSY]
+** or [SQLITE_IOERR_BLOCKED] instead of invoking the busy handler.
+** Consider a scenario where one process is holding a read lock that
+** it is trying to promote to a reserved lock and
+** a second process is holding a reserved lock that it is trying
+** to promote to an exclusive lock.  The first process cannot proceed
+** because it is blocked by the second and the second process cannot
+** proceed because it is blocked by the first.  If both processes
+** invoke the busy handlers, neither will make any progress.  Therefore,
+** SQLite returns [SQLITE_BUSY] for the first process, hoping that this
+** will induce the first process to release its read lock and allow
+** the second process to proceed.
+**
+** The default busy callback is NULL.
+**
+** The [SQLITE_BUSY] error is converted to [SQLITE_IOERR_BLOCKED]
+** when SQLite is in the middle of a large transaction where all the
+** changes will not fit into the in-memory cache.  SQLite will
+** already hold a RESERVED lock on the database file, but it needs
+** to promote this lock to EXCLUSIVE so that it can spill cache
+** pages into the database file without harm to concurrent
+** readers.  If it is unable to promote the lock, then the in-memory
+** cache will be left in an inconsistent state and so the error
+** code is promoted from the relatively benign [SQLITE_BUSY] to
+** the more severe [SQLITE_IOERR_BLOCKED].  This error code promotion
+** forces an automatic rollback of the changes.  See the
+** <a href="/cvstrac/wiki?p=CorruptionFollowingBusyError">
+** CorruptionFollowingBusyError</a> wiki page for a discussion of why
+** this is important.
+**
+** There can only be a single busy handler defined for each
+** [database connection].  Setting a new busy handler clears any
+** previously set handler.  Note that calling [sqlite3_busy_timeout()]
+** will also set or clear the busy handler.
+**
+** The busy callback should not take any actions which modify the
+** database connection that invoked the busy handler.  Any such actions
+** result in undefined behavior.
+** 
+** Requirements:
+** [H12311] [H12312] [H12314] [H12316] [H12318]
+**
+** A busy handler must not close the database connection
+** or [prepared statement] that invoked the busy handler.
+*/
+int sqlite3_busy_handler(sqlite3*, int(*)(void*,int), void*);
+
+/*
+** CAPI3REF: Set A Busy Timeout {H12340} <S40410>
+**
+** This routine sets a [sqlite3_busy_handler | busy handler] that sleeps
+** for a specified amount of time when a table is locked.  The handler
+** will sleep multiple times until at least "ms" milliseconds of sleeping
+** have accumulated. {H12343} After "ms" milliseconds of sleeping,
+** the handler returns 0 which causes [sqlite3_step()] to return
+** [SQLITE_BUSY] or [SQLITE_IOERR_BLOCKED].
+**
+** Calling this routine with an argument less than or equal to zero
+** turns off all busy handlers.
+**
+** There can only be a single busy handler for a particular
+** [database connection] any any given moment.  If another busy handler
+** was defined  (using [sqlite3_busy_handler()]) prior to calling
+** this routine, that other busy handler is cleared.
+**
+** Requirements:
+** [H12341] [H12343] [H12344]
+*/
+int sqlite3_busy_timeout(sqlite3*, int ms);
+
+/*
+** CAPI3REF: Convenience Routines For Running Queries {H12370} <S10000>
+**
+** Definition: A <b>result table</b> is memory data structure created by the
+** [sqlite3_get_table()] interface.  A result table records the
+** complete query results from one or more queries.
+**
+** The table conceptually has a number of rows and columns.  But
+** these numbers are not part of the result table itself.  These
+** numbers are obtained separately.  Let N be the number of rows
+** and M be the number of columns.
+**
+** A result table is an array of pointers to zero-terminated UTF-8 strings.
+** There are (N+1)*M elements in the array.  The first M pointers point
+** to zero-terminated strings that  contain the names of the columns.
+** The remaining entries all point to query results.  NULL values result
+** in NULL pointers.  All other values are in their UTF-8 zero-terminated
+** string representation as returned by [sqlite3_column_text()].
+**
+** A result table might consist of one or more memory allocations.
+** It is not safe to pass a result table directly to [sqlite3_free()].
+** A result table should be deallocated using [sqlite3_free_table()].
+**
+** As an example of the result table format, suppose a query result
+** is as follows:
+**
+** <blockquote><pre>
+**        Name        | Age
+**        -----------------------
+**        Alice       | 43
+**        Bob         | 28
+**        Cindy       | 21
+** </pre></blockquote>
+**
+** There are two column (M==2) and three rows (N==3).  Thus the
+** result table has 8 entries.  Suppose the result table is stored
+** in an array names azResult.  Then azResult holds this content:
+**
+** <blockquote><pre>
+**        azResult&#91;0] = "Name";
+**        azResult&#91;1] = "Age";
+**        azResult&#91;2] = "Alice";
+**        azResult&#91;3] = "43";
+**        azResult&#91;4] = "Bob";
+**        azResult&#91;5] = "28";
+**        azResult&#91;6] = "Cindy";
+**        azResult&#91;7] = "21";
+** </pre></blockquote>
+**
+** The sqlite3_get_table() function evaluates one or more
+** semicolon-separated SQL statements in the zero-terminated UTF-8
+** string of its 2nd parameter.  It returns a result table to the
+** pointer given in its 3rd parameter.
+**
+** After the calling function has finished using the result, it should
+** pass the pointer to the result table to sqlite3_free_table() in order to
+** release the memory that was malloced.  Because of the way the
+** [sqlite3_malloc()] happens within sqlite3_get_table(), the calling
+** function must not try to call [sqlite3_free()] directly.  Only
+** [sqlite3_free_table()] is able to release the memory properly and safely.
+**
+** The sqlite3_get_table() interface is implemented as a wrapper around
+** [sqlite3_exec()].  The sqlite3_get_table() routine does not have access
+** to any internal data structures of SQLite.  It uses only the public
+** interface defined here.  As a consequence, errors that occur in the
+** wrapper layer outside of the internal [sqlite3_exec()] call are not
+** reflected in subsequent calls to [sqlite3_errcode()] or [sqlite3_errmsg()].
+**
+** Requirements:
+** [H12371] [H12373] [H12374] [H12376] [H12379] [H12382]
+*/
+int sqlite3_get_table(
+  sqlite3 *db,          /* An open database */
+  const char *zSql,     /* SQL to be evaluated */
+  char ***pazResult,    /* Results of the query */
+  int *pnRow,           /* Number of result rows written here */
+  int *pnColumn,        /* Number of result columns written here */
+  char **pzErrmsg       /* Error msg written here */
+);
+void sqlite3_free_table(char **result);
+
+/*
+** CAPI3REF: Formatted String Printing Functions {H17400} <S70000><S20000>
+**
+** These routines are workalikes of the "printf()" family of functions
+** from the standard C library.
+**
+** The sqlite3_mprintf() and sqlite3_vmprintf() routines write their
+** results into memory obtained from [sqlite3_malloc()].
+** The strings returned by these two routines should be
+** released by [sqlite3_free()].  Both routines return a
+** NULL pointer if [sqlite3_malloc()] is unable to allocate enough
+** memory to hold the resulting string.
+**
+** In sqlite3_snprintf() routine is similar to "snprintf()" from
+** the standard C library.  The result is written into the
+** buffer supplied as the second parameter whose size is given by
+** the first parameter. Note that the order of the
+** first two parameters is reversed from snprintf().  This is an
+** historical accident that cannot be fixed without breaking
+** backwards compatibility.  Note also that sqlite3_snprintf()
+** returns a pointer to its buffer instead of the number of
+** characters actually written into the buffer.  We admit that
+** the number of characters written would be a more useful return
+** value but we cannot change the implementation of sqlite3_snprintf()
+** now without breaking compatibility.
+**
+** As long as the buffer size is greater than zero, sqlite3_snprintf()
+** guarantees that the buffer is always zero-terminated.  The first
+** parameter "n" is the total size of the buffer, including space for
+** the zero terminator.  So the longest string that can be completely
+** written will be n-1 characters.
+**
+** These routines all implement some additional formatting
+** options that are useful for constructing SQL statements.
+** All of the usual printf() formatting options apply.  In addition, there
+** is are "%q", "%Q", and "%z" options.
+**
+** The %q option works like %s in that it substitutes a null-terminated
+** string from the argument list.  But %q also doubles every '\'' character.
+** %q is designed for use inside a string literal.  By doubling each '\''
+** character it escapes that character and allows it to be inserted into
+** the string.
+**
+** For example, assume the string variable zText contains text as follows:
+**
+** <blockquote><pre>
+**  char *zText = "It's a happy day!";
+** </pre></blockquote>
+**
+** One can use this text in an SQL statement as follows:
+**
+** <blockquote><pre>
+**  char *zSQL = sqlite3_mprintf("INSERT INTO table VALUES('%q')", zText);
+**  sqlite3_exec(db, zSQL, 0, 0, 0);
+**  sqlite3_free(zSQL);
+** </pre></blockquote>
+**
+** Because the %q format string is used, the '\'' character in zText
+** is escaped and the SQL generated is as follows:
+**
+** <blockquote><pre>
+**  INSERT INTO table1 VALUES('It''s a happy day!')
+** </pre></blockquote>
+**
+** This is correct.  Had we used %s instead of %q, the generated SQL
+** would have looked like this:
+**
+** <blockquote><pre>
+**  INSERT INTO table1 VALUES('It's a happy day!');
+** </pre></blockquote>
+**
+** This second example is an SQL syntax error.  As a general rule you should
+** always use %q instead of %s when inserting text into a string literal.
+**
+** The %Q option works like %q except it also adds single quotes around
+** the outside of the total string.  Additionally, if the parameter in the
+** argument list is a NULL pointer, %Q substitutes the text "NULL" (without
+** single quotes) in place of the %Q option.  So, for example, one could say:
+**
+** <blockquote><pre>
+**  char *zSQL = sqlite3_mprintf("INSERT INTO table VALUES(%Q)", zText);
+**  sqlite3_exec(db, zSQL, 0, 0, 0);
+**  sqlite3_free(zSQL);
+** </pre></blockquote>
+**
+** The code above will render a correct SQL statement in the zSQL
+** variable even if the zText variable is a NULL pointer.
+**
+** The "%z" formatting option works exactly like "%s" with the
+** addition that after the string has been read and copied into
+** the result, [sqlite3_free()] is called on the input string. {END}
+**
+** Requirements:
+** [H17403] [H17406] [H17407]
+*/
+char *sqlite3_mprintf(const char*,...);
+char *sqlite3_vmprintf(const char*, va_list);
+char *sqlite3_snprintf(int,char*,const char*, ...);
+
+/*
+** CAPI3REF: Memory Allocation Subsystem {H17300} <S20000>
+**
+** The SQLite core  uses these three routines for all of its own
+** internal memory allocation needs. "Core" in the previous sentence
+** does not include operating-system specific VFS implementation.  The
+** Windows VFS uses native malloc() and free() for some operations.
+**
+** The sqlite3_malloc() routine returns a pointer to a block
+** of memory at least N bytes in length, where N is the parameter.
+** If sqlite3_malloc() is unable to obtain sufficient free
+** memory, it returns a NULL pointer.  If the parameter N to
+** sqlite3_malloc() is zero or negative then sqlite3_malloc() returns
+** a NULL pointer.
+**
+** Calling sqlite3_free() with a pointer previously returned
+** by sqlite3_malloc() or sqlite3_realloc() releases that memory so
+** that it might be reused.  The sqlite3_free() routine is
+** a no-op if is called with a NULL pointer.  Passing a NULL pointer
+** to sqlite3_free() is harmless.  After being freed, memory
+** should neither be read nor written.  Even reading previously freed
+** memory might result in a segmentation fault or other severe error.
+** Memory corruption, a segmentation fault, or other severe error
+** might result if sqlite3_free() is called with a non-NULL pointer that
+** was not obtained from sqlite3_malloc() or sqlite3_realloc().
+**
+** The sqlite3_realloc() interface attempts to resize a
+** prior memory allocation to be at least N bytes, where N is the
+** second parameter.  The memory allocation to be resized is the first
+** parameter.  If the first parameter to sqlite3_realloc()
+** is a NULL pointer then its behavior is identical to calling
+** sqlite3_malloc(N) where N is the second parameter to sqlite3_realloc().
+** If the second parameter to sqlite3_realloc() is zero or
+** negative then the behavior is exactly the same as calling
+** sqlite3_free(P) where P is the first parameter to sqlite3_realloc().
+** sqlite3_realloc() returns a pointer to a memory allocation
+** of at least N bytes in size or NULL if sufficient memory is unavailable.
+** If M is the size of the prior allocation, then min(N,M) bytes
+** of the prior allocation are copied into the beginning of buffer returned
+** by sqlite3_realloc() and the prior allocation is freed.
+** If sqlite3_realloc() returns NULL, then the prior allocation
+** is not freed.
+**
+** The memory returned by sqlite3_malloc() and sqlite3_realloc()
+** is always aligned to at least an 8 byte boundary. {END}
+**
+** The default implementation of the memory allocation subsystem uses
+** the malloc(), realloc() and free() provided by the standard C library.
+** {H17382} However, if SQLite is compiled with the
+** SQLITE_MEMORY_SIZE=<i>NNN</i> C preprocessor macro (where <i>NNN</i>
+** is an integer), then SQLite create a static array of at least
+** <i>NNN</i> bytes in size and uses that array for all of its dynamic
+** memory allocation needs. {END}  Additional memory allocator options
+** may be added in future releases.
+**
+** In SQLite version 3.5.0 and 3.5.1, it was possible to define
+** the SQLITE_OMIT_MEMORY_ALLOCATION which would cause the built-in
+** implementation of these routines to be omitted.  That capability
+** is no longer provided.  Only built-in memory allocators can be used.
+**
+** The Windows OS interface layer calls
+** the system malloc() and free() directly when converting
+** filenames between the UTF-8 encoding used by SQLite
+** and whatever filename encoding is used by the particular Windows
+** installation.  Memory allocation errors are detected, but
+** they are reported back as [SQLITE_CANTOPEN] or
+** [SQLITE_IOERR] rather than [SQLITE_NOMEM].
+**
+** Requirements:
+** [H17303] [H17304] [H17305] [H17306] [H17310] [H17312] [H17315] [H17318]
+** [H17321] [H17322] [H17323]
+**
+** The pointer arguments to [sqlite3_free()] and [sqlite3_realloc()]
+** must be either NULL or else pointers obtained from a prior
+** invocation of [sqlite3_malloc()] or [sqlite3_realloc()] that have
+** not yet been released.
+**
+** The application must not read or write any part of
+** a block of memory after it has been released using
+** [sqlite3_free()] or [sqlite3_realloc()].
+*/
+void *sqlite3_malloc(int);
+void *sqlite3_realloc(void*, int);
+void sqlite3_free(void*);
+
+/*
+** CAPI3REF: Memory Allocator Statistics {H17370} <S30210>
+**
+** SQLite provides these two interfaces for reporting on the status
+** of the [sqlite3_malloc()], [sqlite3_free()], and [sqlite3_realloc()]
+** routines, which form the built-in memory allocation subsystem.
+**
+** Requirements:
+** [H17371] [H17373] [H17374] [H17375]
+*/
+sqlite3_int64 sqlite3_memory_used(void);
+sqlite3_int64 sqlite3_memory_highwater(int resetFlag);
+
+/*
+** CAPI3REF: Pseudo-Random Number Generator {H17390} <S20000>
+**
+** SQLite contains a high-quality pseudo-random number generator (PRNG) used to
+** select random [ROWID | ROWIDs] when inserting new records into a table that
+** already uses the largest possible [ROWID].  The PRNG is also used for
+** the build-in random() and randomblob() SQL functions.  This interface allows
+** applications to access the same PRNG for other purposes.
+**
+** A call to this routine stores N bytes of randomness into buffer P.
+**
+** The first time this routine is invoked (either internally or by
+** the application) the PRNG is seeded using randomness obtained
+** from the xRandomness method of the default [sqlite3_vfs] object.
+** On all subsequent invocations, the pseudo-randomness is generated
+** internally and without recourse to the [sqlite3_vfs] xRandomness
+** method.
+**
+** Requirements:
+** [H17392]
+*/
+void sqlite3_randomness(int N, void *P);
+
+/*
+** CAPI3REF: Compile-Time Authorization Callbacks {H12500} <S70100>
+**
+** This routine registers a authorizer callback with a particular
+** [database connection], supplied in the first argument.
+** The authorizer callback is invoked as SQL statements are being compiled
+** by [sqlite3_prepare()] or its variants [sqlite3_prepare_v2()],
+** [sqlite3_prepare16()] and [sqlite3_prepare16_v2()].  At various
+** points during the compilation process, as logic is being created
+** to perform various actions, the authorizer callback is invoked to
+** see if those actions are allowed.  The authorizer callback should
+** return [SQLITE_OK] to allow the action, [SQLITE_IGNORE] to disallow the
+** specific action but allow the SQL statement to continue to be
+** compiled, or [SQLITE_DENY] to cause the entire SQL statement to be
+** rejected with an error.  If the authorizer callback returns
+** any value other than [SQLITE_IGNORE], [SQLITE_OK], or [SQLITE_DENY]
+** then the [sqlite3_prepare_v2()] or equivalent call that triggered
+** the authorizer will fail with an error message.
+**
+** When the callback returns [SQLITE_OK], that means the operation
+** requested is ok.  When the callback returns [SQLITE_DENY], the
+** [sqlite3_prepare_v2()] or equivalent call that triggered the
+** authorizer will fail with an error message explaining that
+** access is denied. 
+**
+** The first parameter to the authorizer callback is a copy of the third
+** parameter to the sqlite3_set_authorizer() interface. The second parameter
+** to the callback is an integer [SQLITE_COPY | action code] that specifies
+** the particular action to be authorized. The third through sixth parameters
+** to the callback are zero-terminated strings that contain additional
+** details about the action to be authorized.
+**
+** If the action code is [SQLITE_READ]
+** and the callback returns [SQLITE_IGNORE] then the
+** [prepared statement] statement is constructed to substitute
+** a NULL value in place of the table column that would have
+** been read if [SQLITE_OK] had been returned.  The [SQLITE_IGNORE]
+** return can be used to deny an untrusted user access to individual
+** columns of a table.
+** If the action code is [SQLITE_DELETE] and the callback returns
+** [SQLITE_IGNORE] then the [DELETE] operation proceeds but the
+** [truncate optimization] is disabled and all rows are deleted individually.
+**
+** An authorizer is used when [sqlite3_prepare | preparing]
+** SQL statements from an untrusted source, to ensure that the SQL statements
+** do not try to access data they are not allowed to see, or that they do not
+** try to execute malicious statements that damage the database.  For
+** example, an application may allow a user to enter arbitrary
+** SQL queries for evaluation by a database.  But the application does
+** not want the user to be able to make arbitrary changes to the
+** database.  An authorizer could then be put in place while the
+** user-entered SQL is being [sqlite3_prepare | prepared] that
+** disallows everything except [SELECT] statements.
+**
+** Applications that need to process SQL from untrusted sources
+** might also consider lowering resource limits using [sqlite3_limit()]
+** and limiting database size using the [max_page_count] [PRAGMA]
+** in addition to using an authorizer.
+**
+** Only a single authorizer can be in place on a database connection
+** at a time.  Each call to sqlite3_set_authorizer overrides the
+** previous call.  Disable the authorizer by installing a NULL callback.
+** The authorizer is disabled by default.
+**
+** The authorizer callback must not do anything that will modify
+** the database connection that invoked the authorizer callback.
+** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
+** database connections for the meaning of "modify" in this paragraph.
+**
+** When [sqlite3_prepare_v2()] is used to prepare a statement, the
+** statement might be reprepared during [sqlite3_step()] due to a 
+** schema change.  Hence, the application should ensure that the
+** correct authorizer callback remains in place during the [sqlite3_step()].
+**
+** Note that the authorizer callback is invoked only during
+** [sqlite3_prepare()] or its variants.  Authorization is not
+** performed during statement evaluation in [sqlite3_step()], unless
+** as stated in the previous paragraph, sqlite3_step() invokes
+** sqlite3_prepare_v2() to reprepare a statement after a schema change.
+**
+** Requirements:
+** [H12501] [H12502] [H12503] [H12504] [H12505] [H12506] [H12507] [H12510]
+** [H12511] [H12512] [H12520] [H12521] [H12522]
+*/
+int sqlite3_set_authorizer(
+  sqlite3*,
+  int (*xAuth)(void*,int,const char*,const char*,const char*,const char*),
+  void *pUserData
+);
+
+/*
+** CAPI3REF: Authorizer Return Codes {H12590} <H12500>
+**
+** The [sqlite3_set_authorizer | authorizer callback function] must
+** return either [SQLITE_OK] or one of these two constants in order
+** to signal SQLite whether or not the action is permitted.  See the
+** [sqlite3_set_authorizer | authorizer documentation] for additional
+** information.
+*/
+#define SQLITE_DENY   1   /* Abort the SQL statement with an error */
+#define SQLITE_IGNORE 2   /* Don't allow access, but don't generate an error */
+
+/*
+** CAPI3REF: Authorizer Action Codes {H12550} <H12500>
+**
+** The [sqlite3_set_authorizer()] interface registers a callback function
+** that is invoked to authorize certain SQL statement actions.  The
+** second parameter to the callback is an integer code that specifies
+** what action is being authorized.  These are the integer action codes that
+** the authorizer callback may be passed.
+**
+** These action code values signify what kind of operation is to be
+** authorized.  The 3rd and 4th parameters to the authorization
+** callback function will be parameters or NULL depending on which of these
+** codes is used as the second parameter.  The 5th parameter to the
+** authorizer callback is the name of the database ("main", "temp",
+** etc.) if applicable.  The 6th parameter to the authorizer callback
+** is the name of the inner-most trigger or view that is responsible for
+** the access attempt or NULL if this access attempt is directly from
+** top-level SQL code.
+**
+** Requirements:
+** [H12551] [H12552] [H12553] [H12554]
+*/
+/******************************************* 3rd ************ 4th ***********/
+#define SQLITE_CREATE_INDEX          1   /* Index Name      Table Name      */
+#define SQLITE_CREATE_TABLE          2   /* Table Name      NULL            */
+#define SQLITE_CREATE_TEMP_INDEX     3   /* Index Name      Table Name      */
+#define SQLITE_CREATE_TEMP_TABLE     4   /* Table Name      NULL            */
+#define SQLITE_CREATE_TEMP_TRIGGER   5   /* Trigger Name    Table Name      */
+#define SQLITE_CREATE_TEMP_VIEW      6   /* View Name       NULL            */
+#define SQLITE_CREATE_TRIGGER        7   /* Trigger Name    Table Name      */
+#define SQLITE_CREATE_VIEW           8   /* View Name       NULL            */
+#define SQLITE_DELETE                9   /* Table Name      NULL            */
+#define SQLITE_DROP_INDEX           10   /* Index Name      Table Name      */
+#define SQLITE_DROP_TABLE           11   /* Table Name      NULL            */
+#define SQLITE_DROP_TEMP_INDEX      12   /* Index Name      Table Name      */
+#define SQLITE_DROP_TEMP_TABLE      13   /* Table Name      NULL            */
+#define SQLITE_DROP_TEMP_TRIGGER    14   /* Trigger Name    Table Name      */
+#define SQLITE_DROP_TEMP_VIEW       15   /* View Name       NULL            */
+#define SQLITE_DROP_TRIGGER         16   /* Trigger Name    Table Name      */
+#define SQLITE_DROP_VIEW            17   /* View Name       NULL            */
+#define SQLITE_INSERT               18   /* Table Name      NULL            */
+#define SQLITE_PRAGMA               19   /* Pragma Name     1st arg or NULL */
+#define SQLITE_READ                 20   /* Table Name      Column Name     */
+#define SQLITE_SELECT               21   /* NULL            NULL            */
+#define SQLITE_TRANSACTION          22   /* Operation       NULL            */
+#define SQLITE_UPDATE               23   /* Table Name      Column Name     */
+#define SQLITE_ATTACH               24   /* Filename        NULL            */
+#define SQLITE_DETACH               25   /* Database Name   NULL            */
+#define SQLITE_ALTER_TABLE          26   /* Database Name   Table Name      */
+#define SQLITE_REINDEX              27   /* Index Name      NULL            */
+#define SQLITE_ANALYZE              28   /* Table Name      NULL            */
+#define SQLITE_CREATE_VTABLE        29   /* Table Name      Module Name     */
+#define SQLITE_DROP_VTABLE          30   /* Table Name      Module Name     */
+#define SQLITE_FUNCTION             31   /* NULL            Function Name   */
+#define SQLITE_SAVEPOINT            32   /* Operation       Savepoint Name  */
+#define SQLITE_COPY                  0   /* No longer used */
+
+/*
+** CAPI3REF: Tracing And Profiling Functions {H12280} <S60400>
+** EXPERIMENTAL
+**
+** These routines register callback functions that can be used for
+** tracing and profiling the execution of SQL statements.
+**
+** The callback function registered by sqlite3_trace() is invoked at
+** various times when an SQL statement is being run by [sqlite3_step()].
+** The callback returns a UTF-8 rendering of the SQL statement text
+** as the statement first begins executing.  Additional callbacks occur
+** as each triggered subprogram is entered.  The callbacks for triggers
+** contain a UTF-8 SQL comment that identifies the trigger.
+**
+** The callback function registered by sqlite3_profile() is invoked
+** as each SQL statement finishes.  The profile callback contains
+** the original statement text and an estimate of wall-clock time
+** of how long that statement took to run.
+**
+** Requirements:
+** [H12281] [H12282] [H12283] [H12284] [H12285] [H12287] [H12288] [H12289]
+** [H12290]
+*/
+SQLITE_EXPERIMENTAL void *sqlite3_trace(sqlite3*, void(*xTrace)(void*,const char*), void*);
+SQLITE_EXPERIMENTAL void *sqlite3_profile(sqlite3*,
+   void(*xProfile)(void*,const char*,sqlite3_uint64), void*);
+
+/*
+** CAPI3REF: Query Progress Callbacks {H12910} <S60400>
+**
+** This routine configures a callback function - the
+** progress callback - that is invoked periodically during long
+** running calls to [sqlite3_exec()], [sqlite3_step()] and
+** [sqlite3_get_table()].  An example use for this
+** interface is to keep a GUI updated during a large query.
+**
+** If the progress callback returns non-zero, the operation is
+** interrupted.  This feature can be used to implement a
+** "Cancel" button on a GUI progress dialog box.
+**
+** The progress handler must not do anything that will modify
+** the database connection that invoked the progress handler.
+** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
+** database connections for the meaning of "modify" in this paragraph.
+**
+** Requirements:
+** [H12911] [H12912] [H12913] [H12914] [H12915] [H12916] [H12917] [H12918]
+**
+*/
+void sqlite3_progress_handler(sqlite3*, int, int(*)(void*), void*);
+
+/*
+** CAPI3REF: Opening A New Database Connection {H12700} <S40200>
+**
+** These routines open an SQLite database file whose name is given by the
+** filename argument. The filename argument is interpreted as UTF-8 for
+** sqlite3_open() and sqlite3_open_v2() and as UTF-16 in the native byte
+** order for sqlite3_open16(). A [database connection] handle is usually
+** returned in *ppDb, even if an error occurs.  The only exception is that
+** if SQLite is unable to allocate memory to hold the [sqlite3] object,
+** a NULL will be written into *ppDb instead of a pointer to the [sqlite3]
+** object. If the database is opened (and/or created) successfully, then
+** [SQLITE_OK] is returned.  Otherwise an [error code] is returned.  The
+** [sqlite3_errmsg()] or [sqlite3_errmsg16()] routines can be used to obtain
+** an English language description of the error.
+**
+** The default encoding for the database will be UTF-8 if
+** sqlite3_open() or sqlite3_open_v2() is called and
+** UTF-16 in the native byte order if sqlite3_open16() is used.
+**
+** Whether or not an error occurs when it is opened, resources
+** associated with the [database connection] handle should be released by
+** passing it to [sqlite3_close()] when it is no longer required.
+**
+** The sqlite3_open_v2() interface works like sqlite3_open()
+** except that it accepts two additional parameters for additional control
+** over the new database connection.  The flags parameter can take one of
+** the following three values, optionally combined with the 
+** [SQLITE_OPEN_NOMUTEX] or [SQLITE_OPEN_FULLMUTEX] flags:
+**
+** <dl>
+** <dt>[SQLITE_OPEN_READONLY]</dt>
+** <dd>The database is opened in read-only mode.  If the database does not
+** already exist, an error is returned.</dd>
+**
+** <dt>[SQLITE_OPEN_READWRITE]</dt>
+** <dd>The database is opened for reading and writing if possible, or reading
+** only if the file is write protected by the operating system.  In either
+** case the database must already exist, otherwise an error is returned.</dd>
+**
+** <dt>[SQLITE_OPEN_READWRITE] | [SQLITE_OPEN_CREATE]</dt>
+** <dd>The database is opened for reading and writing, and is creates it if
+** it does not already exist. This is the behavior that is always used for
+** sqlite3_open() and sqlite3_open16().</dd>
+** </dl>
+**
+** If the 3rd parameter to sqlite3_open_v2() is not one of the
+** combinations shown above or one of the combinations shown above combined
+** with the [SQLITE_OPEN_NOMUTEX] or [SQLITE_OPEN_FULLMUTEX] flags,
+** then the behavior is undefined.
+**
+** If the [SQLITE_OPEN_NOMUTEX] flag is set, then the database connection
+** opens in the multi-thread [threading mode] as long as the single-thread
+** mode has not been set at compile-time or start-time.  If the
+** [SQLITE_OPEN_FULLMUTEX] flag is set then the database connection opens
+** in the serialized [threading mode] unless single-thread was
+** previously selected at compile-time or start-time.
+**
+** If the filename is ":memory:", then a private, temporary in-memory database
+** is created for the connection.  This in-memory database will vanish when
+** the database connection is closed.  Future versions of SQLite might
+** make use of additional special filenames that begin with the ":" character.
+** It is recommended that when a database filename actually does begin with
+** a ":" character you should prefix the filename with a pathname such as
+** "./" to avoid ambiguity.
+**
+** If the filename is an empty string, then a private, temporary
+** on-disk database will be created.  This private database will be
+** automatically deleted as soon as the database connection is closed.
+**
+** The fourth parameter to sqlite3_open_v2() is the name of the
+** [sqlite3_vfs] object that defines the operating system interface that
+** the new database connection should use.  If the fourth parameter is
+** a NULL pointer then the default [sqlite3_vfs] object is used.
+**
+** <b>Note to Windows users:</b>  The encoding used for the filename argument
+** of sqlite3_open() and sqlite3_open_v2() must be UTF-8, not whatever
+** codepage is currently defined.  Filenames containing international
+** characters must be converted to UTF-8 prior to passing them into
+** sqlite3_open() or sqlite3_open_v2().
+**
+** Requirements:
+** [H12701] [H12702] [H12703] [H12704] [H12706] [H12707] [H12709] [H12711]
+** [H12712] [H12713] [H12714] [H12717] [H12719] [H12721] [H12723]
+*/
+int sqlite3_open(
+  const char *filename,   /* Database filename (UTF-8) */
+  sqlite3 **ppDb          /* OUT: SQLite db handle */
+);
+int sqlite3_open16(
+  const void *filename,   /* Database filename (UTF-16) */
+  sqlite3 **ppDb          /* OUT: SQLite db handle */
+);
+int sqlite3_open_v2(
+  const char *filename,   /* Database filename (UTF-8) */
+  sqlite3 **ppDb,         /* OUT: SQLite db handle */
+  int flags,              /* Flags */
+  const char *zVfs        /* Name of VFS module to use */
+);
+
+/*
+** CAPI3REF: Error Codes And Messages {H12800} <S60200>
+**
+** The sqlite3_errcode() interface returns the numeric [result code] or
+** [extended result code] for the most recent failed sqlite3_* API call
+** associated with a [database connection]. If a prior API call failed
+** but the most recent API call succeeded, the return value from
+** sqlite3_errcode() is undefined.  The sqlite3_extended_errcode()
+** interface is the same except that it always returns the 
+** [extended result code] even when extended result codes are
+** disabled.
+**
+** The sqlite3_errmsg() and sqlite3_errmsg16() return English-language
+** text that describes the error, as either UTF-8 or UTF-16 respectively.
+** Memory to hold the error message string is managed internally.
+** The application does not need to worry about freeing the result.
+** However, the error string might be overwritten or deallocated by
+** subsequent calls to other SQLite interface functions.
+**
+** When the serialized [threading mode] is in use, it might be the
+** case that a second error occurs on a separate thread in between
+** the time of the first error and the call to these interfaces.
+** When that happens, the second error will be reported since these
+** interfaces always report the most recent result.  To avoid
+** this, each thread can obtain exclusive use of the [database connection] D
+** by invoking [sqlite3_mutex_enter]([sqlite3_db_mutex](D)) before beginning
+** to use D and invoking [sqlite3_mutex_leave]([sqlite3_db_mutex](D)) after
+** all calls to the interfaces listed here are completed.
+**
+** If an interface fails with SQLITE_MISUSE, that means the interface
+** was invoked incorrectly by the application.  In that case, the
+** error code and message may or may not be set.
+**
+** Requirements:
+** [H12801] [H12802] [H12803] [H12807] [H12808] [H12809]
+*/
+int sqlite3_errcode(sqlite3 *db);
+int sqlite3_extended_errcode(sqlite3 *db);
+const char *sqlite3_errmsg(sqlite3*);
+const void *sqlite3_errmsg16(sqlite3*);
+
+/*
+** CAPI3REF: SQL Statement Object {H13000} <H13010>
+** KEYWORDS: {prepared statement} {prepared statements}
+**
+** An instance of this object represents a single SQL statement.
+** This object is variously known as a "prepared statement" or a
+** "compiled SQL statement" or simply as a "statement".
+**
+** The life of a statement object goes something like this:
+**
+** <ol>
+** <li> Create the object using [sqlite3_prepare_v2()] or a related
+**      function.
+** <li> Bind values to [host parameters] using the sqlite3_bind_*()
+**      interfaces.
+** <li> Run the SQL by calling [sqlite3_step()] one or more times.
+** <li> Reset the statement using [sqlite3_reset()] then go back
+**      to step 2.  Do this zero or more times.
+** <li> Destroy the object using [sqlite3_finalize()].
+** </ol>
+**
+** Refer to documentation on individual methods above for additional
+** information.
+*/
+typedef struct sqlite3_stmt sqlite3_stmt;
+
+/*
+** CAPI3REF: Run-time Limits {H12760} <S20600>
+**
+** This interface allows the size of various constructs to be limited
+** on a connection by connection basis.  The first parameter is the
+** [database connection] whose limit is to be set or queried.  The
+** second parameter is one of the [limit categories] that define a
+** class of constructs to be size limited.  The third parameter is the
+** new limit for that construct.  The function returns the old limit.
+**
+** If the new limit is a negative number, the limit is unchanged.
+** For the limit category of SQLITE_LIMIT_XYZ there is a 
+** [limits | hard upper bound]
+** set by a compile-time C preprocessor macro named 
+** [limits | SQLITE_MAX_XYZ].
+** (The "_LIMIT_" in the name is changed to "_MAX_".)
+** Attempts to increase a limit above its hard upper bound are
+** silently truncated to the hard upper limit.
+**
+** Run time limits are intended for use in applications that manage
+** both their own internal database and also databases that are controlled
+** by untrusted external sources.  An example application might be a
+** web browser that has its own databases for storing history and
+** separate databases controlled by JavaScript applications downloaded
+** off the Internet.  The internal databases can be given the
+** large, default limits.  Databases managed by external sources can
+** be given much smaller limits designed to prevent a denial of service
+** attack.  Developers might also want to use the [sqlite3_set_authorizer()]
+** interface to further control untrusted SQL.  The size of the database
+** created by an untrusted script can be contained using the
+** [max_page_count] [PRAGMA].
+**
+** New run-time limit categories may be added in future releases.
+**
+** Requirements:
+** [H12762] [H12766] [H12769]
+*/
+int sqlite3_limit(sqlite3*, int id, int newVal);
+
+/*
+** CAPI3REF: Run-Time Limit Categories {H12790} <H12760>
+** KEYWORDS: {limit category} {limit categories}
+**
+** These constants define various performance limits
+** that can be lowered at run-time using [sqlite3_limit()].
+** The synopsis of the meanings of the various limits is shown below.
+** Additional information is available at [limits | Limits in SQLite].
+**
+** <dl>
+** <dt>SQLITE_LIMIT_LENGTH</dt>
+** <dd>The maximum size of any string or BLOB or table row.<dd>
+**
+** <dt>SQLITE_LIMIT_SQL_LENGTH</dt>
+** <dd>The maximum length of an SQL statement.</dd>
+**
+** <dt>SQLITE_LIMIT_COLUMN</dt>
+** <dd>The maximum number of columns in a table definition or in the
+** result set of a [SELECT] or the maximum number of columns in an index
+** or in an ORDER BY or GROUP BY clause.</dd>
+**
+** <dt>SQLITE_LIMIT_EXPR_DEPTH</dt>
+** <dd>The maximum depth of the parse tree on any expression.</dd>
+**
+** <dt>SQLITE_LIMIT_COMPOUND_SELECT</dt>
+** <dd>The maximum number of terms in a compound SELECT statement.</dd>
+**
+** <dt>SQLITE_LIMIT_VDBE_OP</dt>
+** <dd>The maximum number of instructions in a virtual machine program
+** used to implement an SQL statement.</dd>
+**
+** <dt>SQLITE_LIMIT_FUNCTION_ARG</dt>
+** <dd>The maximum number of arguments on a function.</dd>
+**
+** <dt>SQLITE_LIMIT_ATTACHED</dt>
+** <dd>The maximum number of [ATTACH | attached databases].</dd>
+**
+** <dt>SQLITE_LIMIT_LIKE_PATTERN_LENGTH</dt>
+** <dd>The maximum length of the pattern argument to the [LIKE] or
+** [GLOB] operators.</dd>
+**
+** <dt>SQLITE_LIMIT_VARIABLE_NUMBER</dt>
+** <dd>The maximum number of variables in an SQL statement that can
+** be bound.</dd>
+** </dl>
+*/
+#define SQLITE_LIMIT_LENGTH                    0
+#define SQLITE_LIMIT_SQL_LENGTH                1
+#define SQLITE_LIMIT_COLUMN                    2
+#define SQLITE_LIMIT_EXPR_DEPTH                3
+#define SQLITE_LIMIT_COMPOUND_SELECT           4
+#define SQLITE_LIMIT_VDBE_OP                   5
+#define SQLITE_LIMIT_FUNCTION_ARG              6
+#define SQLITE_LIMIT_ATTACHED                  7
+#define SQLITE_LIMIT_LIKE_PATTERN_LENGTH       8
+#define SQLITE_LIMIT_VARIABLE_NUMBER           9
+
+/*
+** CAPI3REF: Compiling An SQL Statement {H13010} <S10000>
+** KEYWORDS: {SQL statement compiler}
+**
+** To execute an SQL query, it must first be compiled into a byte-code
+** program using one of these routines.
+**
+** The first argument, "db", is a [database connection] obtained from a
+** prior successful call to [sqlite3_open()], [sqlite3_open_v2()] or
+** [sqlite3_open16()].  The database connection must not have been closed.
+**
+** The second argument, "zSql", is the statement to be compiled, encoded
+** as either UTF-8 or UTF-16.  The sqlite3_prepare() and sqlite3_prepare_v2()
+** interfaces use UTF-8, and sqlite3_prepare16() and sqlite3_prepare16_v2()
+** use UTF-16.
+**
+** If the nByte argument is less than zero, then zSql is read up to the
+** first zero terminator. If nByte is non-negative, then it is the maximum
+** number of  bytes read from zSql.  When nByte is non-negative, the
+** zSql string ends at either the first '\000' or '\u0000' character or
+** the nByte-th byte, whichever comes first. If the caller knows
+** that the supplied string is nul-terminated, then there is a small
+** performance advantage to be gained by passing an nByte parameter that
+** is equal to the number of bytes in the input string <i>including</i>
+** the nul-terminator bytes.
+**
+** If pzTail is not NULL then *pzTail is made to point to the first byte
+** past the end of the first SQL statement in zSql.  These routines only
+** compile the first statement in zSql, so *pzTail is left pointing to
+** what remains uncompiled.
+**
+** *ppStmt is left pointing to a compiled [prepared statement] that can be
+** executed using [sqlite3_step()].  If there is an error, *ppStmt is set
+** to NULL.  If the input text contains no SQL (if the input is an empty
+** string or a comment) then *ppStmt is set to NULL.
+** The calling procedure is responsible for deleting the compiled
+** SQL statement using [sqlite3_finalize()] after it has finished with it.
+** ppStmt may not be NULL.
+**
+** On success, [SQLITE_OK] is returned, otherwise an [error code] is returned.
+**
+** The sqlite3_prepare_v2() and sqlite3_prepare16_v2() interfaces are
+** recommended for all new programs. The two older interfaces are retained
+** for backwards compatibility, but their use is discouraged.
+** In the "v2" interfaces, the prepared statement
+** that is returned (the [sqlite3_stmt] object) contains a copy of the
+** original SQL text. This causes the [sqlite3_step()] interface to
+** behave a differently in two ways:
+**
+** <ol>
+** <li>
+** If the database schema changes, instead of returning [SQLITE_SCHEMA] as it
+** always used to do, [sqlite3_step()] will automatically recompile the SQL
+** statement and try to run it again.  If the schema has changed in
+** a way that makes the statement no longer valid, [sqlite3_step()] will still
+** return [SQLITE_SCHEMA].  But unlike the legacy behavior, [SQLITE_SCHEMA] is
+** now a fatal error.  Calling [sqlite3_prepare_v2()] again will not make the
+** error go away.  Note: use [sqlite3_errmsg()] to find the text
+** of the parsing error that results in an [SQLITE_SCHEMA] return.
+** </li>
+**
+** <li>
+** When an error occurs, [sqlite3_step()] will return one of the detailed
+** [error codes] or [extended error codes].  The legacy behavior was that
+** [sqlite3_step()] would only return a generic [SQLITE_ERROR] result code
+** and you would have to make a second call to [sqlite3_reset()] in order
+** to find the underlying cause of the problem. With the "v2" prepare
+** interfaces, the underlying reason for the error is returned immediately.
+** </li>
+** </ol>
+**
+** Requirements:
+** [H13011] [H13012] [H13013] [H13014] [H13015] [H13016] [H13019] [H13021]
+**
+*/
+int sqlite3_prepare(
+  sqlite3 *db,            /* Database handle */
+  const char *zSql,       /* SQL statement, UTF-8 encoded */
+  int nByte,              /* Maximum length of zSql in bytes. */
+  sqlite3_stmt **ppStmt,  /* OUT: Statement handle */
+  const char **pzTail     /* OUT: Pointer to unused portion of zSql */
+);
+int sqlite3_prepare_v2(
+  sqlite3 *db,            /* Database handle */
+  const char *zSql,       /* SQL statement, UTF-8 encoded */
+  int nByte,              /* Maximum length of zSql in bytes. */
+  sqlite3_stmt **ppStmt,  /* OUT: Statement handle */
+  const char **pzTail     /* OUT: Pointer to unused portion of zSql */
+);
+int sqlite3_prepare16(
+  sqlite3 *db,            /* Database handle */
+  const void *zSql,       /* SQL statement, UTF-16 encoded */
+  int nByte,              /* Maximum length of zSql in bytes. */
+  sqlite3_stmt **ppStmt,  /* OUT: Statement handle */
+  const void **pzTail     /* OUT: Pointer to unused portion of zSql */
+);
+int sqlite3_prepare16_v2(
+  sqlite3 *db,            /* Database handle */
+  const void *zSql,       /* SQL statement, UTF-16 encoded */
+  int nByte,              /* Maximum length of zSql in bytes. */
+  sqlite3_stmt **ppStmt,  /* OUT: Statement handle */
+  const void **pzTail     /* OUT: Pointer to unused portion of zSql */
+);
+
+/*
+** CAPI3REF: Retrieving Statement SQL {H13100} <H13000>
+**
+** This interface can be used to retrieve a saved copy of the original
+** SQL text used to create a [prepared statement] if that statement was
+** compiled using either [sqlite3_prepare_v2()] or [sqlite3_prepare16_v2()].
+**
+** Requirements:
+** [H13101] [H13102] [H13103]
+*/
+const char *sqlite3_sql(sqlite3_stmt *pStmt);
+
+/*
+** CAPI3REF: Dynamically Typed Value Object {H15000} <S20200>
+** KEYWORDS: {protected sqlite3_value} {unprotected sqlite3_value}
+**
+** SQLite uses the sqlite3_value object to represent all values
+** that can be stored in a database table. SQLite uses dynamic typing
+** for the values it stores. Values stored in sqlite3_value objects
+** can be integers, floating point values, strings, BLOBs, or NULL.
+**
+** An sqlite3_value object may be either "protected" or "unprotected".
+** Some interfaces require a protected sqlite3_value.  Other interfaces
+** will accept either a protected or an unprotected sqlite3_value.
+** Every interface that accepts sqlite3_value arguments specifies
+** whether or not it requires a protected sqlite3_value.
+**
+** The terms "protected" and "unprotected" refer to whether or not
+** a mutex is held.  A internal mutex is held for a protected
+** sqlite3_value object but no mutex is held for an unprotected
+** sqlite3_value object.  If SQLite is compiled to be single-threaded
+** (with [SQLITE_THREADSAFE=0] and with [sqlite3_threadsafe()] returning 0)
+** or if SQLite is run in one of reduced mutex modes 
+** [SQLITE_CONFIG_SINGLETHREAD] or [SQLITE_CONFIG_MULTITHREAD]
+** then there is no distinction between protected and unprotected
+** sqlite3_value objects and they can be used interchangeably.  However,
+** for maximum code portability it is recommended that applications
+** still make the distinction between between protected and unprotected
+** sqlite3_value objects even when not strictly required.
+**
+** The sqlite3_value objects that are passed as parameters into the
+** implementation of [application-defined SQL functions] are protected.
+** The sqlite3_value object returned by
+** [sqlite3_column_value()] is unprotected.
+** Unprotected sqlite3_value objects may only be used with
+** [sqlite3_result_value()] and [sqlite3_bind_value()].
+** The [sqlite3_value_blob | sqlite3_value_type()] family of
+** interfaces require protected sqlite3_value objects.
+*/
+typedef struct Mem sqlite3_value;
+
+/*
+** CAPI3REF: SQL Function Context Object {H16001} <S20200>
+**
+** The context in which an SQL function executes is stored in an
+** sqlite3_context object.  A pointer to an sqlite3_context object
+** is always first parameter to [application-defined SQL functions].
+** The application-defined SQL function implementation will pass this
+** pointer through into calls to [sqlite3_result_int | sqlite3_result()],
+** [sqlite3_aggregate_context()], [sqlite3_user_data()],
+** [sqlite3_context_db_handle()], [sqlite3_get_auxdata()],
+** and/or [sqlite3_set_auxdata()].
+*/
+typedef struct sqlite3_context sqlite3_context;
+
+/*
+** CAPI3REF: Binding Values To Prepared Statements {H13500} <S70300>
+** KEYWORDS: {host parameter} {host parameters} {host parameter name}
+** KEYWORDS: {SQL parameter} {SQL parameters} {parameter binding}
+**
+** In the SQL strings input to [sqlite3_prepare_v2()] and its variants,
+** literals may be replaced by a [parameter] in one of these forms:
+**
+** <ul>
+** <li>  ?
+** <li>  ?NNN
+** <li>  :VVV
+** <li>  @VVV
+** <li>  $VVV
+** </ul>
+**
+** In the parameter forms shown above NNN is an integer literal,
+** and VVV is an alpha-numeric parameter name. The values of these
+** parameters (also called "host parameter names" or "SQL parameters")
+** can be set using the sqlite3_bind_*() routines defined here.
+**
+** The first argument to the sqlite3_bind_*() routines is always
+** a pointer to the [sqlite3_stmt] object returned from
+** [sqlite3_prepare_v2()] or its variants.
+**
+** The second argument is the index of the SQL parameter to be set.
+** The leftmost SQL parameter has an index of 1.  When the same named
+** SQL parameter is used more than once, second and subsequent
+** occurrences have the same index as the first occurrence.
+** The index for named parameters can be looked up using the
+** [sqlite3_bind_parameter_index()] API if desired.  The index
+** for "?NNN" parameters is the value of NNN.
+** The NNN value must be between 1 and the [sqlite3_limit()]
+** parameter [SQLITE_LIMIT_VARIABLE_NUMBER] (default value: 999).
+**
+** The third argument is the value to bind to the parameter.
+**
+** In those routines that have a fourth argument, its value is the
+** number of bytes in the parameter.  To be clear: the value is the
+** number of <u>bytes</u> in the value, not the number of characters.
+** If the fourth parameter is negative, the length of the string is
+** the number of bytes up to the first zero terminator.
+**
+** The fifth argument to sqlite3_bind_blob(), sqlite3_bind_text(), and
+** sqlite3_bind_text16() is a destructor used to dispose of the BLOB or
+** string after SQLite has finished with it. If the fifth argument is
+** the special value [SQLITE_STATIC], then SQLite assumes that the
+** information is in static, unmanaged space and does not need to be freed.
+** If the fifth argument has the value [SQLITE_TRANSIENT], then
+** SQLite makes its own private copy of the data immediately, before
+** the sqlite3_bind_*() routine returns.
+**
+** The sqlite3_bind_zeroblob() routine binds a BLOB of length N that
+** is filled with zeroes.  A zeroblob uses a fixed amount of memory
+** (just an integer to hold its size) while it is being processed.
+** Zeroblobs are intended to serve as placeholders for BLOBs whose
+** content is later written using
+** [sqlite3_blob_open | incremental BLOB I/O] routines.
+** A negative value for the zeroblob results in a zero-length BLOB.
+**
+** The sqlite3_bind_*() routines must be called after
+** [sqlite3_prepare_v2()] (and its variants) or [sqlite3_reset()] and
+** before [sqlite3_step()].
+** Bindings are not cleared by the [sqlite3_reset()] routine.
+** Unbound parameters are interpreted as NULL.
+**
+** These routines return [SQLITE_OK] on success or an error code if
+** anything goes wrong.  [SQLITE_RANGE] is returned if the parameter
+** index is out of range.  [SQLITE_NOMEM] is returned if malloc() fails.
+** [SQLITE_MISUSE] might be returned if these routines are called on a
+** virtual machine that is the wrong state or which has already been finalized.
+** Detection of misuse is unreliable.  Applications should not depend
+** on SQLITE_MISUSE returns.  SQLITE_MISUSE is intended to indicate a
+** a logic error in the application.  Future versions of SQLite might
+** panic rather than return SQLITE_MISUSE.
+**
+** See also: [sqlite3_bind_parameter_count()],
+** [sqlite3_bind_parameter_name()], and [sqlite3_bind_parameter_index()].
+**
+** Requirements:
+** [H13506] [H13509] [H13512] [H13515] [H13518] [H13521] [H13524] [H13527]
+** [H13530] [H13533] [H13536] [H13539] [H13542] [H13545] [H13548] [H13551]
+**
+*/
+int sqlite3_bind_blob(sqlite3_stmt*, int, const void*, int n, void(*)(void*));
+int sqlite3_bind_double(sqlite3_stmt*, int, double);
+int sqlite3_bind_int(sqlite3_stmt*, int, int);
+int sqlite3_bind_int64(sqlite3_stmt*, int, sqlite3_int64);
+int sqlite3_bind_null(sqlite3_stmt*, int);
+int sqlite3_bind_text(sqlite3_stmt*, int, const char*, int n, void(*)(void*));
+int sqlite3_bind_text16(sqlite3_stmt*, int, const void*, int, void(*)(void*));
+int sqlite3_bind_value(sqlite3_stmt*, int, const sqlite3_value*);
+int sqlite3_bind_zeroblob(sqlite3_stmt*, int, int n);
+
+/*
+** CAPI3REF: Number Of SQL Parameters {H13600} <S70300>
+**
+** This routine can be used to find the number of [SQL parameters]
+** in a [prepared statement].  SQL parameters are tokens of the
+** form "?", "?NNN", ":AAA", "$AAA", or "@AAA" that serve as
+** placeholders for values that are [sqlite3_bind_blob | bound]
+** to the parameters at a later time.
+**
+** This routine actually returns the index of the largest (rightmost)
+** parameter. For all forms except ?NNN, this will correspond to the
+** number of unique parameters.  If parameters of the ?NNN are used,
+** there may be gaps in the list.
+**
+** See also: [sqlite3_bind_blob|sqlite3_bind()],
+** [sqlite3_bind_parameter_name()], and
+** [sqlite3_bind_parameter_index()].
+**
+** Requirements:
+** [H13601]
+*/
+int sqlite3_bind_parameter_count(sqlite3_stmt*);
+
+/*
+** CAPI3REF: Name Of A Host Parameter {H13620} <S70300>
+**
+** This routine returns a pointer to the name of the n-th
+** [SQL parameter] in a [prepared statement].
+** SQL parameters of the form "?NNN" or ":AAA" or "@AAA" or "$AAA"
+** have a name which is the string "?NNN" or ":AAA" or "@AAA" or "$AAA"
+** respectively.
+** In other words, the initial ":" or "$" or "@" or "?"
+** is included as part of the name.
+** Parameters of the form "?" without a following integer have no name
+** and are also referred to as "anonymous parameters".
+**
+** The first host parameter has an index of 1, not 0.
+**
+** If the value n is out of range or if the n-th parameter is
+** nameless, then NULL is returned.  The returned string is
+** always in UTF-8 encoding even if the named parameter was
+** originally specified as UTF-16 in [sqlite3_prepare16()] or
+** [sqlite3_prepare16_v2()].
+**
+** See also: [sqlite3_bind_blob|sqlite3_bind()],
+** [sqlite3_bind_parameter_count()], and
+** [sqlite3_bind_parameter_index()].
+**
+** Requirements:
+** [H13621]
+*/
+const char *sqlite3_bind_parameter_name(sqlite3_stmt*, int);
+
+/*
+** CAPI3REF: Index Of A Parameter With A Given Name {H13640} <S70300>
+**
+** Return the index of an SQL parameter given its name.  The
+** index value returned is suitable for use as the second
+** parameter to [sqlite3_bind_blob|sqlite3_bind()].  A zero
+** is returned if no matching parameter is found.  The parameter
+** name must be given in UTF-8 even if the original statement
+** was prepared from UTF-16 text using [sqlite3_prepare16_v2()].
+**
+** See also: [sqlite3_bind_blob|sqlite3_bind()],
+** [sqlite3_bind_parameter_count()], and
+** [sqlite3_bind_parameter_index()].
+**
+** Requirements:
+** [H13641]
+*/
+int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName);
+
+/*
+** CAPI3REF: Reset All Bindings On A Prepared Statement {H13660} <S70300>
+**
+** Contrary to the intuition of many, [sqlite3_reset()] does not reset
+** the [sqlite3_bind_blob | bindings] on a [prepared statement].
+** Use this routine to reset all host parameters to NULL.
+**
+** Requirements:
+** [H13661]
+*/
+int sqlite3_clear_bindings(sqlite3_stmt*);
+
+/*
+** CAPI3REF: Number Of Columns In A Result Set {H13710} <S10700>
+**
+** Return the number of columns in the result set returned by the
+** [prepared statement]. This routine returns 0 if pStmt is an SQL
+** statement that does not return data (for example an [UPDATE]).
+**
+** Requirements:
+** [H13711]
+*/
+int sqlite3_column_count(sqlite3_stmt *pStmt);
+
+/*
+** CAPI3REF: Column Names In A Result Set {H13720} <S10700>
+**
+** These routines return the name assigned to a particular column
+** in the result set of a [SELECT] statement.  The sqlite3_column_name()
+** interface returns a pointer to a zero-terminated UTF-8 string
+** and sqlite3_column_name16() returns a pointer to a zero-terminated
+** UTF-16 string.  The first parameter is the [prepared statement]
+** that implements the [SELECT] statement. The second parameter is the
+** column number.  The leftmost column is number 0.
+**
+** The returned string pointer is valid until either the [prepared statement]
+** is destroyed by [sqlite3_finalize()] or until the next call to
+** sqlite3_column_name() or sqlite3_column_name16() on the same column.
+**
+** If sqlite3_malloc() fails during the processing of either routine
+** (for example during a conversion from UTF-8 to UTF-16) then a
+** NULL pointer is returned.
+**
+** The name of a result column is the value of the "AS" clause for
+** that column, if there is an AS clause.  If there is no AS clause
+** then the name of the column is unspecified and may change from
+** one release of SQLite to the next.
+**
+** Requirements:
+** [H13721] [H13723] [H13724] [H13725] [H13726] [H13727]
+*/
+const char *sqlite3_column_name(sqlite3_stmt*, int N);
+const void *sqlite3_column_name16(sqlite3_stmt*, int N);
+
+/*
+** CAPI3REF: Source Of Data In A Query Result {H13740} <S10700>
+**
+** These routines provide a means to determine what column of what
+** table in which database a result of a [SELECT] statement comes from.
+** The name of the database or table or column can be returned as
+** either a UTF-8 or UTF-16 string.  The _database_ routines return
+** the database name, the _table_ routines return the table name, and
+** the origin_ routines return the column name.
+** The returned string is valid until the [prepared statement] is destroyed
+** using [sqlite3_finalize()] or until the same information is requested
+** again in a different encoding.
+**
+** The names returned are the original un-aliased names of the
+** database, table, and column.
+**
+** The first argument to the following calls is a [prepared statement].
+** These functions return information about the Nth column returned by
+** the statement, where N is the second function argument.
+**
+** If the Nth column returned by the statement is an expression or
+** subquery and is not a column value, then all of these functions return
+** NULL.  These routine might also return NULL if a memory allocation error
+** occurs.  Otherwise, they return the name of the attached database, table
+** and column that query result column was extracted from.
+**
+** As with all other SQLite APIs, those postfixed with "16" return
+** UTF-16 encoded strings, the other functions return UTF-8. {END}
+**
+** These APIs are only available if the library was compiled with the
+** [SQLITE_ENABLE_COLUMN_METADATA] C-preprocessor symbol defined.
+**
+** {A13751}
+** If two or more threads call one or more of these routines against the same
+** prepared statement and column at the same time then the results are
+** undefined.
+**
+** Requirements:
+** [H13741] [H13742] [H13743] [H13744] [H13745] [H13746] [H13748]
+**
+** If two or more threads call one or more
+** [sqlite3_column_database_name | column metadata interfaces]
+** for the same [prepared statement] and result column
+** at the same time then the results are undefined.
+*/
+const char *sqlite3_column_database_name(sqlite3_stmt*,int);
+const void *sqlite3_column_database_name16(sqlite3_stmt*,int);
+const char *sqlite3_column_table_name(sqlite3_stmt*,int);
+const void *sqlite3_column_table_name16(sqlite3_stmt*,int);
+const char *sqlite3_column_origin_name(sqlite3_stmt*,int);
+const void *sqlite3_column_origin_name16(sqlite3_stmt*,int);
+
+/*
+** CAPI3REF: Declared Datatype Of A Query Result {H13760} <S10700>
+**
+** The first parameter is a [prepared statement].
+** If this statement is a [SELECT] statement and the Nth column of the
+** returned result set of that [SELECT] is a table column (not an
+** expression or subquery) then the declared type of the table
+** column is returned.  If the Nth column of the result set is an
+** expression or subquery, then a NULL pointer is returned.
+** The returned string is always UTF-8 encoded. {END}
+**
+** For example, given the database schema:
+**
+** CREATE TABLE t1(c1 VARIANT);
+**
+** and the following statement to be compiled:
+**
+** SELECT c1 + 1, c1 FROM t1;
+**
+** this routine would return the string "VARIANT" for the second result
+** column (i==1), and a NULL pointer for the first result column (i==0).
+**
+** SQLite uses dynamic run-time typing.  So just because a column
+** is declared to contain a particular type does not mean that the
+** data stored in that column is of the declared type.  SQLite is
+** strongly typed, but the typing is dynamic not static.  Type
+** is associated with individual values, not with the containers
+** used to hold those values.
+**
+** Requirements:
+** [H13761] [H13762] [H13763]
+*/
+const char *sqlite3_column_decltype(sqlite3_stmt*,int);
+const void *sqlite3_column_decltype16(sqlite3_stmt*,int);
+
+/*
+** CAPI3REF: Evaluate An SQL Statement {H13200} <S10000>
+**
+** After a [prepared statement] has been prepared using either
+** [sqlite3_prepare_v2()] or [sqlite3_prepare16_v2()] or one of the legacy
+** interfaces [sqlite3_prepare()] or [sqlite3_prepare16()], this function
+** must be called one or more times to evaluate the statement.
+**
+** The details of the behavior of the sqlite3_step() interface depend
+** on whether the statement was prepared using the newer "v2" interface
+** [sqlite3_prepare_v2()] and [sqlite3_prepare16_v2()] or the older legacy
+** interface [sqlite3_prepare()] and [sqlite3_prepare16()].  The use of the
+** new "v2" interface is recommended for new applications but the legacy
+** interface will continue to be supported.
+**
+** In the legacy interface, the return value will be either [SQLITE_BUSY],
+** [SQLITE_DONE], [SQLITE_ROW], [SQLITE_ERROR], or [SQLITE_MISUSE].
+** With the "v2" interface, any of the other [result codes] or
+** [extended result codes] might be returned as well.
+**
+** [SQLITE_BUSY] means that the database engine was unable to acquire the
+** database locks it needs to do its job.  If the statement is a [COMMIT]
+** or occurs outside of an explicit transaction, then you can retry the
+** statement.  If the statement is not a [COMMIT] and occurs within a
+** explicit transaction then you should rollback the transaction before
+** continuing.
+**
+** [SQLITE_DONE] means that the statement has finished executing
+** successfully.  sqlite3_step() should not be called again on this virtual
+** machine without first calling [sqlite3_reset()] to reset the virtual
+** machine back to its initial state.
+**
+** If the SQL statement being executed returns any data, then [SQLITE_ROW]
+** is returned each time a new row of data is ready for processing by the
+** caller. The values may be accessed using the [column access functions].
+** sqlite3_step() is called again to retrieve the next row of data.
+**
+** [SQLITE_ERROR] means that a run-time error (such as a constraint
+** violation) has occurred.  sqlite3_step() should not be called again on
+** the VM. More information may be found by calling [sqlite3_errmsg()].
+** With the legacy interface, a more specific error code (for example,
+** [SQLITE_INTERRUPT], [SQLITE_SCHEMA], [SQLITE_CORRUPT], and so forth)
+** can be obtained by calling [sqlite3_reset()] on the
+** [prepared statement].  In the "v2" interface,
+** the more specific error code is returned directly by sqlite3_step().
+**
+** [SQLITE_MISUSE] means that the this routine was called inappropriately.
+** Perhaps it was called on a [prepared statement] that has
+** already been [sqlite3_finalize | finalized] or on one that had
+** previously returned [SQLITE_ERROR] or [SQLITE_DONE].  Or it could
+** be the case that the same database connection is being used by two or
+** more threads at the same moment in time.
+**
+** <b>Goofy Interface Alert:</b> In the legacy interface, the sqlite3_step()
+** API always returns a generic error code, [SQLITE_ERROR], following any
+** error other than [SQLITE_BUSY] and [SQLITE_MISUSE].  You must call
+** [sqlite3_reset()] or [sqlite3_finalize()] in order to find one of the
+** specific [error codes] that better describes the error.
+** We admit that this is a goofy design.  The problem has been fixed
+** with the "v2" interface.  If you prepare all of your SQL statements
+** using either [sqlite3_prepare_v2()] or [sqlite3_prepare16_v2()] instead
+** of the legacy [sqlite3_prepare()] and [sqlite3_prepare16()] interfaces,
+** then the more specific [error codes] are returned directly
+** by sqlite3_step().  The use of the "v2" interface is recommended.
+**
+** Requirements:
+** [H13202] [H15304] [H15306] [H15308] [H15310]
+*/
+int sqlite3_step(sqlite3_stmt*);
+
+/*
+** CAPI3REF: Number of columns in a result set {H13770} <S10700>
+**
+** Returns the number of values in the current row of the result set.
+**
+** Requirements:
+** [H13771] [H13772]
+*/
+int sqlite3_data_count(sqlite3_stmt *pStmt);
+
+/*
+** CAPI3REF: Fundamental Datatypes {H10265} <S10110><S10120>
+** KEYWORDS: SQLITE_TEXT
+**
+** {H10266} Every value in SQLite has one of five fundamental datatypes:
+**
+** <ul>
+** <li> 64-bit signed integer
+** <li> 64-bit IEEE floating point number
+** <li> string
+** <li> BLOB
+** <li> NULL
+** </ul> {END}
+**
+** These constants are codes for each of those types.
+**
+** Note that the SQLITE_TEXT constant was also used in SQLite version 2
+** for a completely different meaning.  Software that links against both
+** SQLite version 2 and SQLite version 3 should use SQLITE3_TEXT, not
+** SQLITE_TEXT.
+*/
+#define SQLITE_INTEGER  1
+#define SQLITE_FLOAT    2
+#define SQLITE_BLOB     4
+#define SQLITE_NULL     5
+#ifdef SQLITE_TEXT
+# undef SQLITE_TEXT
+#else
+# define SQLITE_TEXT     3
+#endif
+#define SQLITE3_TEXT     3
+
+/*
+** CAPI3REF: Result Values From A Query {H13800} <S10700>
+** KEYWORDS: {column access functions}
+**
+** These routines form the "result set query" interface.
+**
+** These routines return information about a single column of the current
+** result row of a query.  In every case the first argument is a pointer
+** to the [prepared statement] that is being evaluated (the [sqlite3_stmt*]
+** that was returned from [sqlite3_prepare_v2()] or one of its variants)
+** and the second argument is the index of the column for which information
+** should be returned.  The leftmost column of the result set has the index 0.
+**
+** If the SQL statement does not currently point to a valid row, or if the
+** column index is out of range, the result is undefined.
+** These routines may only be called when the most recent call to
+** [sqlite3_step()] has returned [SQLITE_ROW] and neither
+** [sqlite3_reset()] nor [sqlite3_finalize()] have been called subsequently.
+** If any of these routines are called after [sqlite3_reset()] or
+** [sqlite3_finalize()] or after [sqlite3_step()] has returned
+** something other than [SQLITE_ROW], the results are undefined.
+** If [sqlite3_step()] or [sqlite3_reset()] or [sqlite3_finalize()]
+** are called from a different thread while any of these routines
+** are pending, then the results are undefined.
+**
+** The sqlite3_column_type() routine returns the
+** [SQLITE_INTEGER | datatype code] for the initial data type
+** of the result column.  The returned value is one of [SQLITE_INTEGER],
+** [SQLITE_FLOAT], [SQLITE_TEXT], [SQLITE_BLOB], or [SQLITE_NULL].  The value
+** returned by sqlite3_column_type() is only meaningful if no type
+** conversions have occurred as described below.  After a type conversion,
+** the value returned by sqlite3_column_type() is undefined.  Future
+** versions of SQLite may change the behavior of sqlite3_column_type()
+** following a type conversion.
+**
+** If the result is a BLOB or UTF-8 string then the sqlite3_column_bytes()
+** routine returns the number of bytes in that BLOB or string.
+** If the result is a UTF-16 string, then sqlite3_column_bytes() converts
+** the string to UTF-8 and then returns the number of bytes.
+** If the result is a numeric value then sqlite3_column_bytes() uses
+** [sqlite3_snprintf()] to convert that value to a UTF-8 string and returns
+** the number of bytes in that string.
+** The value returned does not include the zero terminator at the end
+** of the string.  For clarity: the value returned is the number of
+** bytes in the string, not the number of characters.
+**
+** Strings returned by sqlite3_column_text() and sqlite3_column_text16(),
+** even empty strings, are always zero terminated.  The return
+** value from sqlite3_column_blob() for a zero-length BLOB is an arbitrary
+** pointer, possibly even a NULL pointer.
+**
+** The sqlite3_column_bytes16() routine is similar to sqlite3_column_bytes()
+** but leaves the result in UTF-16 in native byte order instead of UTF-8.
+** The zero terminator is not included in this count.
+**
+** The object returned by [sqlite3_column_value()] is an
+** [unprotected sqlite3_value] object.  An unprotected sqlite3_value object
+** may only be used with [sqlite3_bind_value()] and [sqlite3_result_value()].
+** If the [unprotected sqlite3_value] object returned by
+** [sqlite3_column_value()] is used in any other way, including calls
+** to routines like [sqlite3_value_int()], [sqlite3_value_text()],
+** or [sqlite3_value_bytes()], then the behavior is undefined.
+**
+** These routines attempt to convert the value where appropriate.  For
+** example, if the internal representation is FLOAT and a text result
+** is requested, [sqlite3_snprintf()] is used internally to perform the
+** conversion automatically.  The following table details the conversions
+** that are applied:
+**
+** <blockquote>
+** <table border="1">
+** <tr><th> Internal<br>Type <th> Requested<br>Type <th>  Conversion
+**
+** <tr><td>  NULL    <td> INTEGER   <td> Result is 0
+** <tr><td>  NULL    <td>  FLOAT    <td> Result is 0.0
+** <tr><td>  NULL    <td>   TEXT    <td> Result is NULL pointer
+** <tr><td>  NULL    <td>   BLOB    <td> Result is NULL pointer
+** <tr><td> INTEGER  <td>  FLOAT    <td> Convert from integer to float
+** <tr><td> INTEGER  <td>   TEXT    <td> ASCII rendering of the integer
+** <tr><td> INTEGER  <td>   BLOB    <td> Same as INTEGER->TEXT
+** <tr><td>  FLOAT   <td> INTEGER   <td> Convert from float to integer
+** <tr><td>  FLOAT   <td>   TEXT    <td> ASCII rendering of the float
+** <tr><td>  FLOAT   <td>   BLOB    <td> Same as FLOAT->TEXT
+** <tr><td>  TEXT    <td> INTEGER   <td> Use atoi()
+** <tr><td>  TEXT    <td>  FLOAT    <td> Use atof()
+** <tr><td>  TEXT    <td>   BLOB    <td> No change
+** <tr><td>  BLOB    <td> INTEGER   <td> Convert to TEXT then use atoi()
+** <tr><td>  BLOB    <td>  FLOAT    <td> Convert to TEXT then use atof()
+** <tr><td>  BLOB    <td>   TEXT    <td> Add a zero terminator if needed
+** </table>
+** </blockquote>
+**
+** The table above makes reference to standard C library functions atoi()
+** and atof().  SQLite does not really use these functions.  It has its
+** own equivalent internal routines.  The atoi() and atof() names are
+** used in the table for brevity and because they are familiar to most
+** C programmers.
+**
+** Note that when type conversions occur, pointers returned by prior
+** calls to sqlite3_column_blob(), sqlite3_column_text(), and/or
+** sqlite3_column_text16() may be invalidated.
+** Type conversions and pointer invalidations might occur
+** in the following cases:
+**
+** <ul>
+** <li> The initial content is a BLOB and sqlite3_column_text() or
+**      sqlite3_column_text16() is called.  A zero-terminator might
+**      need to be added to the string.</li>
+** <li> The initial content is UTF-8 text and sqlite3_column_bytes16() or
+**      sqlite3_column_text16() is called.  The content must be converted
+**      to UTF-16.</li>
+** <li> The initial content is UTF-16 text and sqlite3_column_bytes() or
+**      sqlite3_column_text() is called.  The content must be converted
+**      to UTF-8.</li>
+** </ul>
+**
+** Conversions between UTF-16be and UTF-16le are always done in place and do
+** not invalidate a prior pointer, though of course the content of the buffer
+** that the prior pointer points to will have been modified.  Other kinds
+** of conversion are done in place when it is possible, but sometimes they
+** are not possible and in those cases prior pointers are invalidated.
+**
+** The safest and easiest to remember policy is to invoke these routines
+** in one of the following ways:
+**
+** <ul>
+**  <li>sqlite3_column_text() followed by sqlite3_column_bytes()</li>
+**  <li>sqlite3_column_blob() followed by sqlite3_column_bytes()</li>
+**  <li>sqlite3_column_text16() followed by sqlite3_column_bytes16()</li>
+** </ul>
+**
+** In other words, you should call sqlite3_column_text(),
+** sqlite3_column_blob(), or sqlite3_column_text16() first to force the result
+** into the desired format, then invoke sqlite3_column_bytes() or
+** sqlite3_column_bytes16() to find the size of the result.  Do not mix calls
+** to sqlite3_column_text() or sqlite3_column_blob() with calls to
+** sqlite3_column_bytes16(), and do not mix calls to sqlite3_column_text16()
+** with calls to sqlite3_column_bytes().
+**
+** The pointers returned are valid until a type conversion occurs as
+** described above, or until [sqlite3_step()] or [sqlite3_reset()] or
+** [sqlite3_finalize()] is called.  The memory space used to hold strings
+** and BLOBs is freed automatically.  Do <b>not</b> pass the pointers returned
+** [sqlite3_column_blob()], [sqlite3_column_text()], etc. into
+** [sqlite3_free()].
+**
+** If a memory allocation error occurs during the evaluation of any
+** of these routines, a default value is returned.  The default value
+** is either the integer 0, the floating point number 0.0, or a NULL
+** pointer.  Subsequent calls to [sqlite3_errcode()] will return
+** [SQLITE_NOMEM].
+**
+** Requirements:
+** [H13803] [H13806] [H13809] [H13812] [H13815] [H13818] [H13821] [H13824]
+** [H13827] [H13830]
+*/
+const void *sqlite3_column_blob(sqlite3_stmt*, int iCol);
+int sqlite3_column_bytes(sqlite3_stmt*, int iCol);
+int sqlite3_column_bytes16(sqlite3_stmt*, int iCol);
+double sqlite3_column_double(sqlite3_stmt*, int iCol);
+int sqlite3_column_int(sqlite3_stmt*, int iCol);
+sqlite3_int64 sqlite3_column_int64(sqlite3_stmt*, int iCol);
+const unsigned char *sqlite3_column_text(sqlite3_stmt*, int iCol);
+const void *sqlite3_column_text16(sqlite3_stmt*, int iCol);
+int sqlite3_column_type(sqlite3_stmt*, int iCol);
+sqlite3_value *sqlite3_column_value(sqlite3_stmt*, int iCol);
+
+/*
+** CAPI3REF: Destroy A Prepared Statement Object {H13300} <S70300><S30100>
+**
+** The sqlite3_finalize() function is called to delete a [prepared statement].
+** If the statement was executed successfully or not executed at all, then
+** SQLITE_OK is returned. If execution of the statement failed then an
+** [error code] or [extended error code] is returned.
+**
+** This routine can be called at any point during the execution of the
+** [prepared statement].  If the virtual machine has not
+** completed execution when this routine is called, that is like
+** encountering an error or an [sqlite3_interrupt | interrupt].
+** Incomplete updates may be rolled back and transactions canceled,
+** depending on the circumstances, and the
+** [error code] returned will be [SQLITE_ABORT].
+**
+** Requirements:
+** [H11302] [H11304]
+*/
+int sqlite3_finalize(sqlite3_stmt *pStmt);
+
+/*
+** CAPI3REF: Reset A Prepared Statement Object {H13330} <S70300>
+**
+** The sqlite3_reset() function is called to reset a [prepared statement]
+** object back to its initial state, ready to be re-executed.
+** Any SQL statement variables that had values bound to them using
+** the [sqlite3_bind_blob | sqlite3_bind_*() API] retain their values.
+** Use [sqlite3_clear_bindings()] to reset the bindings.
+**
+** {H11332} The [sqlite3_reset(S)] interface resets the [prepared statement] S
+**          back to the beginning of its program.
+**
+** {H11334} If the most recent call to [sqlite3_step(S)] for the
+**          [prepared statement] S returned [SQLITE_ROW] or [SQLITE_DONE],
+**          or if [sqlite3_step(S)] has never before been called on S,
+**          then [sqlite3_reset(S)] returns [SQLITE_OK].
+**
+** {H11336} If the most recent call to [sqlite3_step(S)] for the
+**          [prepared statement] S indicated an error, then
+**          [sqlite3_reset(S)] returns an appropriate [error code].
+**
+** {H11338} The [sqlite3_reset(S)] interface does not change the values
+**          of any [sqlite3_bind_blob|bindings] on the [prepared statement] S.
+*/
+int sqlite3_reset(sqlite3_stmt *pStmt);
+
+/*
+** CAPI3REF: Create Or Redefine SQL Functions {H16100} <S20200>
+** KEYWORDS: {function creation routines}
+** KEYWORDS: {application-defined SQL function}
+** KEYWORDS: {application-defined SQL functions}
+**
+** These two functions (collectively known as "function creation routines")
+** are used to add SQL functions or aggregates or to redefine the behavior
+** of existing SQL functions or aggregates.  The only difference between the
+** two is that the second parameter, the name of the (scalar) function or
+** aggregate, is encoded in UTF-8 for sqlite3_create_function() and UTF-16
+** for sqlite3_create_function16().
+**
+** The first parameter is the [database connection] to which the SQL
+** function is to be added.  If a single program uses more than one database
+** connection internally, then SQL functions must be added individually to
+** each database connection.
+**
+** The second parameter is the name of the SQL function to be created or
+** redefined.  The length of the name is limited to 255 bytes, exclusive of
+** the zero-terminator.  Note that the name length limit is in bytes, not
+** characters.  Any attempt to create a function with a longer name
+** will result in [SQLITE_ERROR] being returned.
+**
+** The third parameter (nArg)
+** is the number of arguments that the SQL function or
+** aggregate takes. If this parameter is -1, then the SQL function or
+** aggregate may take any number of arguments between 0 and the limit
+** set by [sqlite3_limit]([SQLITE_LIMIT_FUNCTION_ARG]).  If the third
+** parameter is less than -1 or greater than 127 then the behavior is
+** undefined.
+**
+** The fourth parameter, eTextRep, specifies what
+** [SQLITE_UTF8 | text encoding] this SQL function prefers for
+** its parameters.  Any SQL function implementation should be able to work
+** work with UTF-8, UTF-16le, or UTF-16be.  But some implementations may be
+** more efficient with one encoding than another.  It is allowed to
+** invoke sqlite3_create_function() or sqlite3_create_function16() multiple
+** times with the same function but with different values of eTextRep.
+** When multiple implementations of the same function are available, SQLite
+** will pick the one that involves the least amount of data conversion.
+** If there is only a single implementation which does not care what text
+** encoding is used, then the fourth argument should be [SQLITE_ANY].
+**
+** The fifth parameter is an arbitrary pointer.  The implementation of the
+** function can gain access to this pointer using [sqlite3_user_data()].
+**
+** The seventh, eighth and ninth parameters, xFunc, xStep and xFinal, are
+** pointers to C-language functions that implement the SQL function or
+** aggregate. A scalar SQL function requires an implementation of the xFunc
+** callback only, NULL pointers should be passed as the xStep and xFinal
+** parameters. An aggregate SQL function requires an implementation of xStep
+** and xFinal and NULL should be passed for xFunc. To delete an existing
+** SQL function or aggregate, pass NULL for all three function callbacks.
+**
+** It is permitted to register multiple implementations of the same
+** functions with the same name but with either differing numbers of
+** arguments or differing preferred text encodings.  SQLite will use
+** the implementation most closely matches the way in which the
+** SQL function is used.  A function implementation with a non-negative
+** nArg parameter is a better match than a function implementation with
+** a negative nArg.  A function where the preferred text encoding
+** matches the database encoding is a better
+** match than a function where the encoding is different.  
+** A function where the encoding difference is between UTF16le and UTF16be
+** is a closer match than a function where the encoding difference is
+** between UTF8 and UTF16.
+**
+** Built-in functions may be overloaded by new application-defined functions.
+** The first application-defined function with a given name overrides all
+** built-in functions in the same [database connection] with the same name.
+** Subsequent application-defined functions of the same name only override 
+** prior application-defined functions that are an exact match for the
+** number of parameters and preferred encoding.
+**
+** An application-defined function is permitted to call other
+** SQLite interfaces.  However, such calls must not
+** close the database connection nor finalize or reset the prepared
+** statement in which the function is running.
+**
+** Requirements:
+** [H16103] [H16106] [H16109] [H16112] [H16118] [H16121] [H16127]
+** [H16130] [H16133] [H16136] [H16139] [H16142]
+*/
+int sqlite3_create_function(
+  sqlite3 *db,
+  const char *zFunctionName,
+  int nArg,
+  int eTextRep,
+  void *pApp,
+  void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
+  void (*xStep)(sqlite3_context*,int,sqlite3_value**),
+  void (*xFinal)(sqlite3_context*)
+);
+int sqlite3_create_function16(
+  sqlite3 *db,
+  const void *zFunctionName,
+  int nArg,
+  int eTextRep,
+  void *pApp,
+  void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
+  void (*xStep)(sqlite3_context*,int,sqlite3_value**),
+  void (*xFinal)(sqlite3_context*)
+);
+
+/*
+** CAPI3REF: Text Encodings {H10267} <S50200> <H16100>
+**
+** These constant define integer codes that represent the various
+** text encodings supported by SQLite.
+*/
+#define SQLITE_UTF8           1
+#define SQLITE_UTF16LE        2
+#define SQLITE_UTF16BE        3
+#define SQLITE_UTF16          4    /* Use native byte order */
+#define SQLITE_ANY            5    /* sqlite3_create_function only */
+#define SQLITE_UTF16_ALIGNED  8    /* sqlite3_create_collation only */
+
+/*
+** CAPI3REF: Deprecated Functions
+** DEPRECATED
+**
+** These functions are [deprecated].  In order to maintain
+** backwards compatibility with older code, these functions continue 
+** to be supported.  However, new applications should avoid
+** the use of these functions.  To help encourage people to avoid
+** using these functions, we are not going to tell you what they do.
+*/
+#ifndef SQLITE_OMIT_DEPRECATED
+SQLITE_DEPRECATED int sqlite3_aggregate_count(sqlite3_context*);
+SQLITE_DEPRECATED int sqlite3_expired(sqlite3_stmt*);
+SQLITE_DEPRECATED int sqlite3_transfer_bindings(sqlite3_stmt*, sqlite3_stmt*);
+SQLITE_DEPRECATED int sqlite3_global_recover(void);
+SQLITE_DEPRECATED void sqlite3_thread_cleanup(void);
+SQLITE_DEPRECATED int sqlite3_memory_alarm(void(*)(void*,sqlite3_int64,int),void*,sqlite3_int64);
+#endif
+
+/*
+** CAPI3REF: Obtaining SQL Function Parameter Values {H15100} <S20200>
+**
+** The C-language implementation of SQL functions and aggregates uses
+** this set of interface routines to access the parameter values on
+** the function or aggregate.
+**
+** The xFunc (for scalar functions) or xStep (for aggregates) parameters
+** to [sqlite3_create_function()] and [sqlite3_create_function16()]
+** define callbacks that implement the SQL functions and aggregates.
+** The 4th parameter to these callbacks is an array of pointers to
+** [protected sqlite3_value] objects.  There is one [sqlite3_value] object for
+** each parameter to the SQL function.  These routines are used to
+** extract values from the [sqlite3_value] objects.
+**
+** These routines work only with [protected sqlite3_value] objects.
+** Any attempt to use these routines on an [unprotected sqlite3_value]
+** object results in undefined behavior.
+**
+** These routines work just like the corresponding [column access functions]
+** except that  these routines take a single [protected sqlite3_value] object
+** pointer instead of a [sqlite3_stmt*] pointer and an integer column number.
+**
+** The sqlite3_value_text16() interface extracts a UTF-16 string
+** in the native byte-order of the host machine.  The
+** sqlite3_value_text16be() and sqlite3_value_text16le() interfaces
+** extract UTF-16 strings as big-endian and little-endian respectively.
+**
+** The sqlite3_value_numeric_type() interface attempts to apply
+** numeric affinity to the value.  This means that an attempt is
+** made to convert the value to an integer or floating point.  If
+** such a conversion is possible without loss of information (in other
+** words, if the value is a string that looks like a number)
+** then the conversion is performed.  Otherwise no conversion occurs.
+** The [SQLITE_INTEGER | datatype] after conversion is returned.
+**
+** Please pay particular attention to the fact that the pointer returned
+** from [sqlite3_value_blob()], [sqlite3_value_text()], or
+** [sqlite3_value_text16()] can be invalidated by a subsequent call to
+** [sqlite3_value_bytes()], [sqlite3_value_bytes16()], [sqlite3_value_text()],
+** or [sqlite3_value_text16()].
+**
+** These routines must be called from the same thread as
+** the SQL function that supplied the [sqlite3_value*] parameters.
+**
+** Requirements:
+** [H15103] [H15106] [H15109] [H15112] [H15115] [H15118] [H15121] [H15124]
+** [H15127] [H15130] [H15133] [H15136]
+*/
+const void *sqlite3_value_blob(sqlite3_value*);
+int sqlite3_value_bytes(sqlite3_value*);
+int sqlite3_value_bytes16(sqlite3_value*);
+double sqlite3_value_double(sqlite3_value*);
+int sqlite3_value_int(sqlite3_value*);
+sqlite3_int64 sqlite3_value_int64(sqlite3_value*);
+const unsigned char *sqlite3_value_text(sqlite3_value*);
+const void *sqlite3_value_text16(sqlite3_value*);
+const void *sqlite3_value_text16le(sqlite3_value*);
+const void *sqlite3_value_text16be(sqlite3_value*);
+int sqlite3_value_type(sqlite3_value*);
+int sqlite3_value_numeric_type(sqlite3_value*);
+
+/*
+** CAPI3REF: Obtain Aggregate Function Context {H16210} <S20200>
+**
+** The implementation of aggregate SQL functions use this routine to allocate
+** a structure for storing their state.
+**
+** The first time the sqlite3_aggregate_context() routine is called for a
+** particular aggregate, SQLite allocates nBytes of memory, zeroes out that
+** memory, and returns a pointer to it. On second and subsequent calls to
+** sqlite3_aggregate_context() for the same aggregate function index,
+** the same buffer is returned. The implementation of the aggregate can use
+** the returned buffer to accumulate data.
+**
+** SQLite automatically frees the allocated buffer when the aggregate
+** query concludes.
+**
+** The first parameter should be a copy of the
+** [sqlite3_context | SQL function context] that is the first parameter
+** to the callback routine that implements the aggregate function.
+**
+** This routine must be called from the same thread in which
+** the aggregate SQL function is running.
+**
+** Requirements:
+** [H16211] [H16213] [H16215] [H16217]
+*/
+void *sqlite3_aggregate_context(sqlite3_context*, int nBytes);
+
+/*
+** CAPI3REF: User Data For Functions {H16240} <S20200>
+**
+** The sqlite3_user_data() interface returns a copy of
+** the pointer that was the pUserData parameter (the 5th parameter)
+** of the [sqlite3_create_function()]
+** and [sqlite3_create_function16()] routines that originally
+** registered the application defined function. {END}
+**
+** This routine must be called from the same thread in which
+** the application-defined function is running.
+**
+** Requirements:
+** [H16243]
+*/
+void *sqlite3_user_data(sqlite3_context*);
+
+/*
+** CAPI3REF: Database Connection For Functions {H16250} <S60600><S20200>
+**
+** The sqlite3_context_db_handle() interface returns a copy of
+** the pointer to the [database connection] (the 1st parameter)
+** of the [sqlite3_create_function()]
+** and [sqlite3_create_function16()] routines that originally
+** registered the application defined function.
+**
+** Requirements:
+** [H16253]
+*/
+sqlite3 *sqlite3_context_db_handle(sqlite3_context*);
+
+/*
+** CAPI3REF: Function Auxiliary Data {H16270} <S20200>
+**
+** The following two functions may be used by scalar SQL functions to
+** associate metadata with argument values. If the same value is passed to
+** multiple invocations of the same SQL function during query execution, under
+** some circumstances the associated metadata may be preserved. This may
+** be used, for example, to add a regular-expression matching scalar
+** function. The compiled version of the regular expression is stored as
+** metadata associated with the SQL value passed as the regular expression
+** pattern.  The compiled regular expression can be reused on multiple
+** invocations of the same function so that the original pattern string
+** does not need to be recompiled on each invocation.
+**
+** The sqlite3_get_auxdata() interface returns a pointer to the metadata
+** associated by the sqlite3_set_auxdata() function with the Nth argument
+** value to the application-defined function. If no metadata has been ever
+** been set for the Nth argument of the function, or if the corresponding
+** function parameter has changed since the meta-data was set,
+** then sqlite3_get_auxdata() returns a NULL pointer.
+**
+** The sqlite3_set_auxdata() interface saves the metadata
+** pointed to by its 3rd parameter as the metadata for the N-th
+** argument of the application-defined function.  Subsequent
+** calls to sqlite3_get_auxdata() might return this data, if it has
+** not been destroyed.
+** If it is not NULL, SQLite will invoke the destructor
+** function given by the 4th parameter to sqlite3_set_auxdata() on
+** the metadata when the corresponding function parameter changes
+** or when the SQL statement completes, whichever comes first.
+**
+** SQLite is free to call the destructor and drop metadata on any
+** parameter of any function at any time.  The only guarantee is that
+** the destructor will be called before the metadata is dropped.
+**
+** In practice, metadata is preserved between function calls for
+** expressions that are constant at compile time. This includes literal
+** values and SQL variables.
+**
+** These routines must be called from the same thread in which
+** the SQL function is running.
+**
+** Requirements:
+** [H16272] [H16274] [H16276] [H16277] [H16278] [H16279]
+*/
+void *sqlite3_get_auxdata(sqlite3_context*, int N);
+void sqlite3_set_auxdata(sqlite3_context*, int N, void*, void (*)(void*));
+
+
+/*
+** CAPI3REF: Constants Defining Special Destructor Behavior {H10280} <S30100>
+**
+** These are special values for the destructor that is passed in as the
+** final argument to routines like [sqlite3_result_blob()].  If the destructor
+** argument is SQLITE_STATIC, it means that the content pointer is constant
+** and will never change.  It does not need to be destroyed.  The
+** SQLITE_TRANSIENT value means that the content will likely change in
+** the near future and that SQLite should make its own private copy of
+** the content before returning.
+**
+** The typedef is necessary to work around problems in certain
+** C++ compilers.  See ticket #2191.
+*/
+typedef void (*sqlite3_destructor_type)(void*);
+#define SQLITE_STATIC      ((sqlite3_destructor_type)0)
+#define SQLITE_TRANSIENT   ((sqlite3_destructor_type)-1)
+
+/*
+** CAPI3REF: Setting The Result Of An SQL Function {H16400} <S20200>
+**
+** These routines are used by the xFunc or xFinal callbacks that
+** implement SQL functions and aggregates.  See
+** [sqlite3_create_function()] and [sqlite3_create_function16()]
+** for additional information.
+**
+** These functions work very much like the [parameter binding] family of
+** functions used to bind values to host parameters in prepared statements.
+** Refer to the [SQL parameter] documentation for additional information.
+**
+** The sqlite3_result_blob() interface sets the result from
+** an application-defined function to be the BLOB whose content is pointed
+** to by the second parameter and which is N bytes long where N is the
+** third parameter.
+**
+** The sqlite3_result_zeroblob() interfaces set the result of
+** the application-defined function to be a BLOB containing all zero
+** bytes and N bytes in size, where N is the value of the 2nd parameter.
+**
+** The sqlite3_result_double() interface sets the result from
+** an application-defined function to be a floating point value specified
+** by its 2nd argument.
+**
+** The sqlite3_result_error() and sqlite3_result_error16() functions
+** cause the implemented SQL function to throw an exception.
+** SQLite uses the string pointed to by the
+** 2nd parameter of sqlite3_result_error() or sqlite3_result_error16()
+** as the text of an error message.  SQLite interprets the error
+** message string from sqlite3_result_error() as UTF-8. SQLite
+** interprets the string from sqlite3_result_error16() as UTF-16 in native
+** byte order.  If the third parameter to sqlite3_result_error()
+** or sqlite3_result_error16() is negative then SQLite takes as the error
+** message all text up through the first zero character.
+** If the third parameter to sqlite3_result_error() or
+** sqlite3_result_error16() is non-negative then SQLite takes that many
+** bytes (not characters) from the 2nd parameter as the error message.
+** The sqlite3_result_error() and sqlite3_result_error16()
+** routines make a private copy of the error message text before
+** they return.  Hence, the calling function can deallocate or
+** modify the text after they return without harm.
+** The sqlite3_result_error_code() function changes the error code
+** returned by SQLite as a result of an error in a function.  By default,
+** the error code is SQLITE_ERROR.  A subsequent call to sqlite3_result_error()
+** or sqlite3_result_error16() resets the error code to SQLITE_ERROR.
+**
+** The sqlite3_result_toobig() interface causes SQLite to throw an error
+** indicating that a string or BLOB is to long to represent.
+**
+** The sqlite3_result_nomem() interface causes SQLite to throw an error
+** indicating that a memory allocation failed.
+**
+** The sqlite3_result_int() interface sets the return value
+** of the application-defined function to be the 32-bit signed integer
+** value given in the 2nd argument.
+** The sqlite3_result_int64() interface sets the return value
+** of the application-defined function to be the 64-bit signed integer
+** value given in the 2nd argument.
+**
+** The sqlite3_result_null() interface sets the return value
+** of the application-defined function to be NULL.
+**
+** The sqlite3_result_text(), sqlite3_result_text16(),
+** sqlite3_result_text16le(), and sqlite3_result_text16be() interfaces
+** set the return value of the application-defined function to be
+** a text string which is represented as UTF-8, UTF-16 native byte order,
+** UTF-16 little endian, or UTF-16 big endian, respectively.
+** SQLite takes the text result from the application from
+** the 2nd parameter of the sqlite3_result_text* interfaces.
+** If the 3rd parameter to the sqlite3_result_text* interfaces
+** is negative, then SQLite takes result text from the 2nd parameter
+** through the first zero character.
+** If the 3rd parameter to the sqlite3_result_text* interfaces
+** is non-negative, then as many bytes (not characters) of the text
+** pointed to by the 2nd parameter are taken as the application-defined
+** function result.
+** If the 4th parameter to the sqlite3_result_text* interfaces
+** or sqlite3_result_blob is a non-NULL pointer, then SQLite calls that
+** function as the destructor on the text or BLOB result when it has
+** finished using that result.
+** If the 4th parameter to the sqlite3_result_text* interfaces or
+** sqlite3_result_blob is the special constant SQLITE_STATIC, then SQLite
+** assumes that the text or BLOB result is in constant space and does not
+** copy the it or call a destructor when it has finished using that result.
+** If the 4th parameter to the sqlite3_result_text* interfaces
+** or sqlite3_result_blob is the special constant SQLITE_TRANSIENT
+** then SQLite makes a copy of the result into space obtained from
+** from [sqlite3_malloc()] before it returns.
+**
+** The sqlite3_result_value() interface sets the result of
+** the application-defined function to be a copy the
+** [unprotected sqlite3_value] object specified by the 2nd parameter.  The
+** sqlite3_result_value() interface makes a copy of the [sqlite3_value]
+** so that the [sqlite3_value] specified in the parameter may change or
+** be deallocated after sqlite3_result_value() returns without harm.
+** A [protected sqlite3_value] object may always be used where an
+** [unprotected sqlite3_value] object is required, so either
+** kind of [sqlite3_value] object can be used with this interface.
+**
+** If these routines are called from within the different thread
+** than the one containing the application-defined function that received
+** the [sqlite3_context] pointer, the results are undefined.
+**
+** Requirements:
+** [H16403] [H16406] [H16409] [H16412] [H16415] [H16418] [H16421] [H16424]
+** [H16427] [H16430] [H16433] [H16436] [H16439] [H16442] [H16445] [H16448]
+** [H16451] [H16454] [H16457] [H16460] [H16463]
+*/
+void sqlite3_result_blob(sqlite3_context*, const void*, int, void(*)(void*));
+void sqlite3_result_double(sqlite3_context*, double);
+void sqlite3_result_error(sqlite3_context*, const char*, int);
+void sqlite3_result_error16(sqlite3_context*, const void*, int);
+void sqlite3_result_error_toobig(sqlite3_context*);
+void sqlite3_result_error_nomem(sqlite3_context*);
+void sqlite3_result_error_code(sqlite3_context*, int);
+void sqlite3_result_int(sqlite3_context*, int);
+void sqlite3_result_int64(sqlite3_context*, sqlite3_int64);
+void sqlite3_result_null(sqlite3_context*);
+void sqlite3_result_text(sqlite3_context*, const char*, int, void(*)(void*));
+void sqlite3_result_text16(sqlite3_context*, const void*, int, void(*)(void*));
+void sqlite3_result_text16le(sqlite3_context*, const void*, int,void(*)(void*));
+void sqlite3_result_text16be(sqlite3_context*, const void*, int,void(*)(void*));
+void sqlite3_result_value(sqlite3_context*, sqlite3_value*);
+void sqlite3_result_zeroblob(sqlite3_context*, int n);
+
+/*
+** CAPI3REF: Define New Collating Sequences {H16600} <S20300>
+**
+** These functions are used to add new collation sequences to the
+** [database connection] specified as the first argument.
+**
+** The name of the new collation sequence is specified as a UTF-8 string
+** for sqlite3_create_collation() and sqlite3_create_collation_v2()
+** and a UTF-16 string for sqlite3_create_collation16(). In all cases
+** the name is passed as the second function argument.
+**
+** The third argument may be one of the constants [SQLITE_UTF8],
+** [SQLITE_UTF16LE], or [SQLITE_UTF16BE], indicating that the user-supplied
+** routine expects to be passed pointers to strings encoded using UTF-8,
+** UTF-16 little-endian, or UTF-16 big-endian, respectively. The
+** third argument might also be [SQLITE_UTF16] to indicate that the routine
+** expects pointers to be UTF-16 strings in the native byte order, or the
+** argument can be [SQLITE_UTF16_ALIGNED] if the
+** the routine expects pointers to 16-bit word aligned strings
+** of UTF-16 in the native byte order.
+**
+** A pointer to the user supplied routine must be passed as the fifth
+** argument.  If it is NULL, this is the same as deleting the collation
+** sequence (so that SQLite cannot call it anymore).
+** Each time the application supplied function is invoked, it is passed
+** as its first parameter a copy of the void* passed as the fourth argument
+** to sqlite3_create_collation() or sqlite3_create_collation16().
+**
+** The remaining arguments to the application-supplied routine are two strings,
+** each represented by a (length, data) pair and encoded in the encoding
+** that was passed as the third argument when the collation sequence was
+** registered. {END}  The application defined collation routine should
+** return negative, zero or positive if the first string is less than,
+** equal to, or greater than the second string. i.e. (STRING1 - STRING2).
+**
+** The sqlite3_create_collation_v2() works like sqlite3_create_collation()
+** except that it takes an extra argument which is a destructor for
+** the collation.  The destructor is called when the collation is
+** destroyed and is passed a copy of the fourth parameter void* pointer
+** of the sqlite3_create_collation_v2().
+** Collations are destroyed when they are overridden by later calls to the
+** collation creation functions or when the [database connection] is closed
+** using [sqlite3_close()].
+**
+** See also:  [sqlite3_collation_needed()] and [sqlite3_collation_needed16()].
+**
+** Requirements:
+** [H16603] [H16604] [H16606] [H16609] [H16612] [H16615] [H16618] [H16621]
+** [H16624] [H16627] [H16630]
+*/
+int sqlite3_create_collation(
+  sqlite3*, 
+  const char *zName, 
+  int eTextRep, 
+  void*,
+  int(*xCompare)(void*,int,const void*,int,const void*)
+);
+int sqlite3_create_collation_v2(
+  sqlite3*, 
+  const char *zName, 
+  int eTextRep, 
+  void*,
+  int(*xCompare)(void*,int,const void*,int,const void*),
+  void(*xDestroy)(void*)
+);
+int sqlite3_create_collation16(
+  sqlite3*, 
+  const void *zName,
+  int eTextRep, 
+  void*,
+  int(*xCompare)(void*,int,const void*,int,const void*)
+);
+
+/*
+** CAPI3REF: Collation Needed Callbacks {H16700} <S20300>
+**
+** To avoid having to register all collation sequences before a database
+** can be used, a single callback function may be registered with the
+** [database connection] to be called whenever an undefined collation
+** sequence is required.
+**
+** If the function is registered using the sqlite3_collation_needed() API,
+** then it is passed the names of undefined collation sequences as strings
+** encoded in UTF-8. {H16703} If sqlite3_collation_needed16() is used,
+** the names are passed as UTF-16 in machine native byte order.
+** A call to either function replaces any existing callback.
+**
+** When the callback is invoked, the first argument passed is a copy
+** of the second argument to sqlite3_collation_needed() or
+** sqlite3_collation_needed16().  The second argument is the database
+** connection.  The third argument is one of [SQLITE_UTF8], [SQLITE_UTF16BE],
+** or [SQLITE_UTF16LE], indicating the most desirable form of the collation
+** sequence function required.  The fourth parameter is the name of the
+** required collation sequence.
+**
+** The callback function should register the desired collation using
+** [sqlite3_create_collation()], [sqlite3_create_collation16()], or
+** [sqlite3_create_collation_v2()].
+**
+** Requirements:
+** [H16702] [H16704] [H16706]
+*/
+int sqlite3_collation_needed(
+  sqlite3*, 
+  void*, 
+  void(*)(void*,sqlite3*,int eTextRep,const char*)
+);
+int sqlite3_collation_needed16(
+  sqlite3*, 
+  void*,
+  void(*)(void*,sqlite3*,int eTextRep,const void*)
+);
+
+/*
+** Specify the key for an encrypted database.  This routine should be
+** called right after sqlite3_open().
+**
+** The code to implement this API is not available in the public release
+** of SQLite.
+*/
+int sqlite3_key(
+  sqlite3 *db,                   /* Database to be rekeyed */
+  const void *pKey, int nKey     /* The key */
+);
+
+/*
+** Change the key on an open database.  If the current database is not
+** encrypted, this routine will encrypt it.  If pNew==0 or nNew==0, the
+** database is decrypted.
+**
+** The code to implement this API is not available in the public release
+** of SQLite.
+*/
+int sqlite3_rekey(
+  sqlite3 *db,                   /* Database to be rekeyed */
+  const void *pKey, int nKey     /* The new key */
+);
+
+/*
+** CAPI3REF: Suspend Execution For A Short Time {H10530} <S40410>
+**
+** The sqlite3_sleep() function causes the current thread to suspend execution
+** for at least a number of milliseconds specified in its parameter.
+**
+** If the operating system does not support sleep requests with
+** millisecond time resolution, then the time will be rounded up to
+** the nearest second. The number of milliseconds of sleep actually
+** requested from the operating system is returned.
+**
+** SQLite implements this interface by calling the xSleep()
+** method of the default [sqlite3_vfs] object.
+**
+** Requirements: [H10533] [H10536]
+*/
+int sqlite3_sleep(int);
+
+/*
+** CAPI3REF: Name Of The Folder Holding Temporary Files {H10310} <S20000>
+**
+** If this global variable is made to point to a string which is
+** the name of a folder (a.k.a. directory), then all temporary files
+** created by SQLite will be placed in that directory.  If this variable
+** is a NULL pointer, then SQLite performs a search for an appropriate
+** temporary file directory.
+**
+** It is not safe to read or modify this variable in more than one
+** thread at a time.  It is not safe to read or modify this variable
+** if a [database connection] is being used at the same time in a separate
+** thread.
+** It is intended that this variable be set once
+** as part of process initialization and before any SQLite interface
+** routines have been called and that this variable remain unchanged
+** thereafter.
+**
+** The [temp_store_directory pragma] may modify this variable and cause
+** it to point to memory obtained from [sqlite3_malloc].  Furthermore,
+** the [temp_store_directory pragma] always assumes that any string
+** that this variable points to is held in memory obtained from 
+** [sqlite3_malloc] and the pragma may attempt to free that memory
+** using [sqlite3_free].
+** Hence, if this variable is modified directly, either it should be
+** made NULL or made to point to memory obtained from [sqlite3_malloc]
+** or else the use of the [temp_store_directory pragma] should be avoided.
+*/
+SQLITE_EXTERN char *sqlite3_temp_directory;
+
+/*
+** CAPI3REF: Test For Auto-Commit Mode {H12930} <S60200>
+** KEYWORDS: {autocommit mode}
+**
+** The sqlite3_get_autocommit() interface returns non-zero or
+** zero if the given database connection is or is not in autocommit mode,
+** respectively.  Autocommit mode is on by default.
+** Autocommit mode is disabled by a [BEGIN] statement.
+** Autocommit mode is re-enabled by a [COMMIT] or [ROLLBACK].
+**
+** If certain kinds of errors occur on a statement within a multi-statement
+** transaction (errors including [SQLITE_FULL], [SQLITE_IOERR],
+** [SQLITE_NOMEM], [SQLITE_BUSY], and [SQLITE_INTERRUPT]) then the
+** transaction might be rolled back automatically.  The only way to
+** find out whether SQLite automatically rolled back the transaction after
+** an error is to use this function.
+**
+** If another thread changes the autocommit status of the database
+** connection while this routine is running, then the return value
+** is undefined.
+**
+** Requirements: [H12931] [H12932] [H12933] [H12934]
+*/
+int sqlite3_get_autocommit(sqlite3*);
+
+/*
+** CAPI3REF: Find The Database Handle Of A Prepared Statement {H13120} <S60600>
+**
+** The sqlite3_db_handle interface returns the [database connection] handle
+** to which a [prepared statement] belongs.  The [database connection]
+** returned by sqlite3_db_handle is the same [database connection] that was the first argument
+** to the [sqlite3_prepare_v2()] call (or its variants) that was used to
+** create the statement in the first place.
+**
+** Requirements: [H13123]
+*/
+sqlite3 *sqlite3_db_handle(sqlite3_stmt*);
+
+/*
+** CAPI3REF: Find the next prepared statement {H13140} <S60600>
+**
+** This interface returns a pointer to the next [prepared statement] after
+** pStmt associated with the [database connection] pDb.  If pStmt is NULL
+** then this interface returns a pointer to the first prepared statement
+** associated with the database connection pDb.  If no prepared statement
+** satisfies the conditions of this routine, it returns NULL.
+**
+** The [database connection] pointer D in a call to
+** [sqlite3_next_stmt(D,S)] must refer to an open database
+** connection and in particular must not be a NULL pointer.
+**
+** Requirements: [H13143] [H13146] [H13149] [H13152]
+*/
+sqlite3_stmt *sqlite3_next_stmt(sqlite3 *pDb, sqlite3_stmt *pStmt);
+
+/*
+** CAPI3REF: Commit And Rollback Notification Callbacks {H12950} <S60400>
+**
+** The sqlite3_commit_hook() interface registers a callback
+** function to be invoked whenever a transaction is [COMMIT | committed].
+** Any callback set by a previous call to sqlite3_commit_hook()
+** for the same database connection is overridden.
+** The sqlite3_rollback_hook() interface registers a callback
+** function to be invoked whenever a transaction is [ROLLBACK | rolled back].
+** Any callback set by a previous call to sqlite3_commit_hook()
+** for the same database connection is overridden.
+** The pArg argument is passed through to the callback.
+** If the callback on a commit hook function returns non-zero,
+** then the commit is converted into a rollback.
+**
+** If another function was previously registered, its
+** pArg value is returned.  Otherwise NULL is returned.
+**
+** The callback implementation must not do anything that will modify
+** the database connection that invoked the callback.  Any actions
+** to modify the database connection must be deferred until after the
+** completion of the [sqlite3_step()] call that triggered the commit
+** or rollback hook in the first place.
+** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
+** database connections for the meaning of "modify" in this paragraph.
+**
+** Registering a NULL function disables the callback.
+**
+** When the commit hook callback routine returns zero, the [COMMIT]
+** operation is allowed to continue normally.  If the commit hook
+** returns non-zero, then the [COMMIT] is converted into a [ROLLBACK].
+** The rollback hook is invoked on a rollback that results from a commit
+** hook returning non-zero, just as it would be with any other rollback.
+**
+** For the purposes of this API, a transaction is said to have been
+** rolled back if an explicit "ROLLBACK" statement is executed, or
+** an error or constraint causes an implicit rollback to occur.
+** The rollback callback is not invoked if a transaction is
+** automatically rolled back because the database connection is closed.
+** The rollback callback is not invoked if a transaction is
+** rolled back because a commit callback returned non-zero.
+** <todo> Check on this </todo>
+**
+** See also the [sqlite3_update_hook()] interface.
+**
+** Requirements:
+** [H12951] [H12952] [H12953] [H12954] [H12955]
+** [H12961] [H12962] [H12963] [H12964]
+*/
+void *sqlite3_commit_hook(sqlite3*, int(*)(void*), void*);
+void *sqlite3_rollback_hook(sqlite3*, void(*)(void *), void*);
+
+/*
+** CAPI3REF: Data Change Notification Callbacks {H12970} <S60400>
+**
+** The sqlite3_update_hook() interface registers a callback function
+** with the [database connection] identified by the first argument
+** to be invoked whenever a row is updated, inserted or deleted.
+** Any callback set by a previous call to this function
+** for the same database connection is overridden.
+**
+** The second argument is a pointer to the function to invoke when a
+** row is updated, inserted or deleted.
+** The first argument to the callback is a copy of the third argument
+** to sqlite3_update_hook().
+** The second callback argument is one of [SQLITE_INSERT], [SQLITE_DELETE],
+** or [SQLITE_UPDATE], depending on the operation that caused the callback
+** to be invoked.
+** The third and fourth arguments to the callback contain pointers to the
+** database and table name containing the affected row.
+** The final callback parameter is the [rowid] of the row.
+** In the case of an update, this is the [rowid] after the update takes place.
+**
+** The update hook is not invoked when internal system tables are
+** modified (i.e. sqlite_master and sqlite_sequence).
+**
+** In the current implementation, the update hook
+** is not invoked when duplication rows are deleted because of an
+** [ON CONFLICT | ON CONFLICT REPLACE] clause.  Nor is the update hook
+** invoked when rows are deleted using the [truncate optimization].
+** The exceptions defined in this paragraph might change in a future
+** release of SQLite.
+**
+** The update hook implementation must not do anything that will modify
+** the database connection that invoked the update hook.  Any actions
+** to modify the database connection must be deferred until after the
+** completion of the [sqlite3_step()] call that triggered the update hook.
+** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
+** database connections for the meaning of "modify" in this paragraph.
+**
+** If another function was previously registered, its pArg value
+** is returned.  Otherwise NULL is returned.
+**
+** See also the [sqlite3_commit_hook()] and [sqlite3_rollback_hook()]
+** interfaces.
+**
+** Requirements:
+** [H12971] [H12973] [H12975] [H12977] [H12979] [H12981] [H12983] [H12986]
+*/
+void *sqlite3_update_hook(
+  sqlite3*, 
+  void(*)(void *,int ,char const *,char const *,sqlite3_int64),
+  void*
+);
+
+/*
+** CAPI3REF: Enable Or Disable Shared Pager Cache {H10330} <S30900>
+** KEYWORDS: {shared cache} {shared cache mode}
+**
+** This routine enables or disables the sharing of the database cache
+** and schema data structures between [database connection | connections]
+** to the same database. Sharing is enabled if the argument is true
+** and disabled if the argument is false.
+**
+** Cache sharing is enabled and disabled for an entire process.
+** This is a change as of SQLite version 3.5.0. In prior versions of SQLite,
+** sharing was enabled or disabled for each thread separately.
+**
+** The cache sharing mode set by this interface effects all subsequent
+** calls to [sqlite3_open()], [sqlite3_open_v2()], and [sqlite3_open16()].
+** Existing database connections continue use the sharing mode
+** that was in effect at the time they were opened.
+**
+** Virtual tables cannot be used with a shared cache.  When shared
+** cache is enabled, the [sqlite3_create_module()] API used to register
+** virtual tables will always return an error.
+**
+** This routine returns [SQLITE_OK] if shared cache was enabled or disabled
+** successfully.  An [error code] is returned otherwise.
+**
+** Shared cache is disabled by default. But this might change in
+** future releases of SQLite.  Applications that care about shared
+** cache setting should set it explicitly.
+**
+** See Also:  [SQLite Shared-Cache Mode]
+**
+** Requirements: [H10331] [H10336] [H10337] [H10339]
+*/
+int sqlite3_enable_shared_cache(int);
+
+/*
+** CAPI3REF: Attempt To Free Heap Memory {H17340} <S30220>
+**
+** The sqlite3_release_memory() interface attempts to free N bytes
+** of heap memory by deallocating non-essential memory allocations
+** held by the database library. {END}  Memory used to cache database
+** pages to improve performance is an example of non-essential memory.
+** sqlite3_release_memory() returns the number of bytes actually freed,
+** which might be more or less than the amount requested.
+**
+** Requirements: [H17341] [H17342]
+*/
+int sqlite3_release_memory(int);
+
+/*
+** CAPI3REF: Impose A Limit On Heap Size {H17350} <S30220>
+**
+** The sqlite3_soft_heap_limit() interface places a "soft" limit
+** on the amount of heap memory that may be allocated by SQLite.
+** If an internal allocation is requested that would exceed the
+** soft heap limit, [sqlite3_release_memory()] is invoked one or
+** more times to free up some space before the allocation is performed.
+**
+** The limit is called "soft", because if [sqlite3_release_memory()]
+** cannot free sufficient memory to prevent the limit from being exceeded,
+** the memory is allocated anyway and the current operation proceeds.
+**
+** A negative or zero value for N means that there is no soft heap limit and
+** [sqlite3_release_memory()] will only be called when memory is exhausted.
+** The default value for the soft heap limit is zero.
+**
+** SQLite makes a best effort to honor the soft heap limit.
+** But if the soft heap limit cannot be honored, execution will
+** continue without error or notification.  This is why the limit is
+** called a "soft" limit.  It is advisory only.
+**
+** Prior to SQLite version 3.5.0, this routine only constrained the memory
+** allocated by a single thread - the same thread in which this routine
+** runs.  Beginning with SQLite version 3.5.0, the soft heap limit is
+** applied to all threads. The value specified for the soft heap limit
+** is an upper bound on the total memory allocation for all threads. In
+** version 3.5.0 there is no mechanism for limiting the heap usage for
+** individual threads.
+**
+** Requirements:
+** [H16351] [H16352] [H16353] [H16354] [H16355] [H16358]
+*/
+void sqlite3_soft_heap_limit(int);
+
+/*
+** CAPI3REF: Extract Metadata About A Column Of A Table {H12850} <S60300>
+**
+** This routine returns metadata about a specific column of a specific
+** database table accessible using the [database connection] handle
+** passed as the first function argument.
+**
+** The column is identified by the second, third and fourth parameters to
+** this function. The second parameter is either the name of the database
+** (i.e. "main", "temp" or an attached database) containing the specified
+** table or NULL. If it is NULL, then all attached databases are searched
+** for the table using the same algorithm used by the database engine to
+** resolve unqualified table references.
+**
+** The third and fourth parameters to this function are the table and column
+** name of the desired column, respectively. Neither of these parameters
+** may be NULL.
+**
+** Metadata is returned by writing to the memory locations passed as the 5th
+** and subsequent parameters to this function. Any of these arguments may be
+** NULL, in which case the corresponding element of metadata is omitted.
+**
+** <blockquote>
+** <table border="1">
+** <tr><th> Parameter <th> Output<br>Type <th>  Description
+**
+** <tr><td> 5th <td> const char* <td> Data type
+** <tr><td> 6th <td> const char* <td> Name of default collation sequence
+** <tr><td> 7th <td> int         <td> True if column has a NOT NULL constraint
+** <tr><td> 8th <td> int         <td> True if column is part of the PRIMARY KEY
+** <tr><td> 9th <td> int         <td> True if column is [AUTOINCREMENT]
+** </table>
+** </blockquote>
+**
+** The memory pointed to by the character pointers returned for the
+** declaration type and collation sequence is valid only until the next
+** call to any SQLite API function.
+**
+** If the specified table is actually a view, an [error code] is returned.
+**
+** If the specified column is "rowid", "oid" or "_rowid_" and an
+** [INTEGER PRIMARY KEY] column has been explicitly declared, then the output
+** parameters are set for the explicitly declared column. If there is no
+** explicitly declared [INTEGER PRIMARY KEY] column, then the output
+** parameters are set as follows:
+**
+** <pre>
+**     data type: "INTEGER"
+**     collation sequence: "BINARY"
+**     not null: 0
+**     primary key: 1
+**     auto increment: 0
+** </pre>
+**
+** This function may load one or more schemas from database files. If an
+** error occurs during this process, or if the requested table or column
+** cannot be found, an [error code] is returned and an error message left
+** in the [database connection] (to be retrieved using sqlite3_errmsg()).
+**
+** This API is only available if the library was compiled with the
+** [SQLITE_ENABLE_COLUMN_METADATA] C-preprocessor symbol defined.
+*/
+int sqlite3_table_column_metadata(
+  sqlite3 *db,                /* Connection handle */
+  const char *zDbName,        /* Database name or NULL */
+  const char *zTableName,     /* Table name */
+  const char *zColumnName,    /* Column name */
+  char const **pzDataType,    /* OUTPUT: Declared data type */
+  char const **pzCollSeq,     /* OUTPUT: Collation sequence name */
+  int *pNotNull,              /* OUTPUT: True if NOT NULL constraint exists */
+  int *pPrimaryKey,           /* OUTPUT: True if column part of PK */
+  int *pAutoinc               /* OUTPUT: True if column is auto-increment */
+);
+
+/*
+** CAPI3REF: Load An Extension {H12600} <S20500>
+**
+** This interface loads an SQLite extension library from the named file.
+**
+** {H12601} The sqlite3_load_extension() interface attempts to load an
+**          SQLite extension library contained in the file zFile.
+**
+** {H12602} The entry point is zProc.
+**
+** {H12603} zProc may be 0, in which case the name of the entry point
+**          defaults to "sqlite3_extension_init".
+**
+** {H12604} The sqlite3_load_extension() interface shall return
+**          [SQLITE_OK] on success and [SQLITE_ERROR] if something goes wrong.
+**
+** {H12605} If an error occurs and pzErrMsg is not 0, then the
+**          [sqlite3_load_extension()] interface shall attempt to
+**          fill *pzErrMsg with error message text stored in memory
+**          obtained from [sqlite3_malloc()]. {END}  The calling function
+**          should free this memory by calling [sqlite3_free()].
+**
+** {H12606} Extension loading must be enabled using
+**          [sqlite3_enable_load_extension()] prior to calling this API,
+**          otherwise an error will be returned.
+*/
+int sqlite3_load_extension(
+  sqlite3 *db,          /* Load the extension into this database connection */
+  const char *zFile,    /* Name of the shared library containing extension */
+  const char *zProc,    /* Entry point.  Derived from zFile if 0 */
+  char **pzErrMsg       /* Put error message here if not 0 */
+);
+
+/*
+** CAPI3REF: Enable Or Disable Extension Loading {H12620} <S20500>
+**
+** So as not to open security holes in older applications that are
+** unprepared to deal with extension loading, and as a means of disabling
+** extension loading while evaluating user-entered SQL, the following API
+** is provided to turn the [sqlite3_load_extension()] mechanism on and off.
+**
+** Extension loading is off by default. See ticket #1863.
+**
+** {H12621} Call the sqlite3_enable_load_extension() routine with onoff==1
+**          to turn extension loading on and call it with onoff==0 to turn
+**          it back off again.
+**
+** {H12622} Extension loading is off by default.
+*/
+int sqlite3_enable_load_extension(sqlite3 *db, int onoff);
+
+/*
+** CAPI3REF: Automatically Load An Extensions {H12640} <S20500>
+**
+** This API can be invoked at program startup in order to register
+** one or more statically linked extensions that will be available
+** to all new [database connections]. {END}
+**
+** This routine stores a pointer to the extension in an array that is
+** obtained from [sqlite3_malloc()].  If you run a memory leak checker
+** on your program and it reports a leak because of this array, invoke
+** [sqlite3_reset_auto_extension()] prior to shutdown to free the memory.
+**
+** {H12641} This function registers an extension entry point that is
+**          automatically invoked whenever a new [database connection]
+**          is opened using [sqlite3_open()], [sqlite3_open16()],
+**          or [sqlite3_open_v2()].
+**
+** {H12642} Duplicate extensions are detected so calling this routine
+**          multiple times with the same extension is harmless.
+**
+** {H12643} This routine stores a pointer to the extension in an array
+**          that is obtained from [sqlite3_malloc()].
+**
+** {H12644} Automatic extensions apply across all threads.
+*/
+int sqlite3_auto_extension(void (*xEntryPoint)(void));
+
+/*
+** CAPI3REF: Reset Automatic Extension Loading {H12660} <S20500>
+**
+** This function disables all previously registered automatic
+** extensions. {END}  It undoes the effect of all prior
+** [sqlite3_auto_extension()] calls.
+**
+** {H12661} This function disables all previously registered
+**          automatic extensions.
+**
+** {H12662} This function disables automatic extensions in all threads.
+*/
+void sqlite3_reset_auto_extension(void);
+
+/*
+****** EXPERIMENTAL - subject to change without notice **************
+**
+** The interface to the virtual-table mechanism is currently considered
+** to be experimental.  The interface might change in incompatible ways.
+** If this is a problem for you, do not use the interface at this time.
+**
+** When the virtual-table mechanism stabilizes, we will declare the
+** interface fixed, support it indefinitely, and remove this comment.
+*/
+
+/*
+** Structures used by the virtual table interface
+*/
+typedef struct sqlite3_vtab sqlite3_vtab;
+typedef struct sqlite3_index_info sqlite3_index_info;
+typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor;
+typedef struct sqlite3_module sqlite3_module;
+
+/*
+** CAPI3REF: Virtual Table Object {H18000} <S20400>
+** KEYWORDS: sqlite3_module {virtual table module}
+** EXPERIMENTAL
+**
+** This structure, sometimes called a a "virtual table module", 
+** defines the implementation of a [virtual tables].  
+** This structure consists mostly of methods for the module.
+**
+** A virtual table module is created by filling in a persistent
+** instance of this structure and passing a pointer to that instance
+** to [sqlite3_create_module()] or [sqlite3_create_module_v2()].
+** The registration remains valid until it is replaced by a different
+** module or until the [database connection] closes.  The content
+** of this structure must not change while it is registered with
+** any database connection.
+*/
+struct sqlite3_module {
+  int iVersion;
+  int (*xCreate)(sqlite3*, void *pAux,
+               int argc, const char *const*argv,
+               sqlite3_vtab **ppVTab, char**);
+  int (*xConnect)(sqlite3*, void *pAux,
+               int argc, const char *const*argv,
+               sqlite3_vtab **ppVTab, char**);
+  int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
+  int (*xDisconnect)(sqlite3_vtab *pVTab);
+  int (*xDestroy)(sqlite3_vtab *pVTab);
+  int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
+  int (*xClose)(sqlite3_vtab_cursor*);
+  int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
+                int argc, sqlite3_value **argv);
+  int (*xNext)(sqlite3_vtab_cursor*);
+  int (*xEof)(sqlite3_vtab_cursor*);
+  int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
+  int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
+  int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);
+  int (*xBegin)(sqlite3_vtab *pVTab);
+  int (*xSync)(sqlite3_vtab *pVTab);
+  int (*xCommit)(sqlite3_vtab *pVTab);
+  int (*xRollback)(sqlite3_vtab *pVTab);
+  int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
+                       void (**pxFunc)(sqlite3_context*,int,sqlite3_value**),
+                       void **ppArg);
+  int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
+};
+
+/*
+** CAPI3REF: Virtual Table Indexing Information {H18100} <S20400>
+** KEYWORDS: sqlite3_index_info
+** EXPERIMENTAL
+**
+** The sqlite3_index_info structure and its substructures is used to
+** pass information into and receive the reply from the [xBestIndex]
+** method of a [virtual table module].  The fields under **Inputs** are the
+** inputs to xBestIndex and are read-only.  xBestIndex inserts its
+** results into the **Outputs** fields.
+**
+** The aConstraint[] array records WHERE clause constraints of the form:
+**
+** <pre>column OP expr</pre>
+**
+** where OP is =, &lt;, &lt;=, &gt;, or &gt;=.  The particular operator is
+** stored in aConstraint[].op.  The index of the column is stored in
+** aConstraint[].iColumn.  aConstraint[].usable is TRUE if the
+** expr on the right-hand side can be evaluated (and thus the constraint
+** is usable) and false if it cannot.
+**
+** The optimizer automatically inverts terms of the form "expr OP column"
+** and makes other simplifications to the WHERE clause in an attempt to
+** get as many WHERE clause terms into the form shown above as possible.
+** The aConstraint[] array only reports WHERE clause terms in the correct
+** form that refer to the particular virtual table being queried.
+**
+** Information about the ORDER BY clause is stored in aOrderBy[].
+** Each term of aOrderBy records a column of the ORDER BY clause.
+**
+** The [xBestIndex] method must fill aConstraintUsage[] with information
+** about what parameters to pass to xFilter.  If argvIndex>0 then
+** the right-hand side of the corresponding aConstraint[] is evaluated
+** and becomes the argvIndex-th entry in argv.  If aConstraintUsage[].omit
+** is true, then the constraint is assumed to be fully handled by the
+** virtual table and is not checked again by SQLite.
+**
+** The idxNum and idxPtr values are recorded and passed into the
+** [xFilter] method.
+** [sqlite3_free()] is used to free idxPtr if and only iff
+** needToFreeIdxPtr is true.
+**
+** The orderByConsumed means that output from [xFilter]/[xNext] will occur in
+** the correct order to satisfy the ORDER BY clause so that no separate
+** sorting step is required.
+**
+** The estimatedCost value is an estimate of the cost of doing the
+** particular lookup.  A full scan of a table with N entries should have
+** a cost of N.  A binary search of a table of N entries should have a
+** cost of approximately log(N).
+*/
+struct sqlite3_index_info {
+  /* Inputs */
+  int nConstraint;           /* Number of entries in aConstraint */
+  struct sqlite3_index_constraint {
+     int iColumn;              /* Column on left-hand side of constraint */
+     unsigned char op;         /* Constraint operator */
+     unsigned char usable;     /* True if this constraint is usable */
+     int iTermOffset;          /* Used internally - xBestIndex should ignore */
+  } *aConstraint;            /* Table of WHERE clause constraints */
+  int nOrderBy;              /* Number of terms in the ORDER BY clause */
+  struct sqlite3_index_orderby {
+     int iColumn;              /* Column number */
+     unsigned char desc;       /* True for DESC.  False for ASC. */
+  } *aOrderBy;               /* The ORDER BY clause */
+  /* Outputs */
+  struct sqlite3_index_constraint_usage {
+    int argvIndex;           /* if >0, constraint is part of argv to xFilter */
+    unsigned char omit;      /* Do not code a test for this constraint */
+  } *aConstraintUsage;
+  int idxNum;                /* Number used to identify the index */
+  char *idxStr;              /* String, possibly obtained from sqlite3_malloc */
+  int needToFreeIdxStr;      /* Free idxStr using sqlite3_free() if true */
+  int orderByConsumed;       /* True if output is already ordered */
+  double estimatedCost;      /* Estimated cost of using this index */
+};
+#define SQLITE_INDEX_CONSTRAINT_EQ    2
+#define SQLITE_INDEX_CONSTRAINT_GT    4
+#define SQLITE_INDEX_CONSTRAINT_LE    8
+#define SQLITE_INDEX_CONSTRAINT_LT    16
+#define SQLITE_INDEX_CONSTRAINT_GE    32
+#define SQLITE_INDEX_CONSTRAINT_MATCH 64
+
+/*
+** CAPI3REF: Register A Virtual Table Implementation {H18200} <S20400>
+** EXPERIMENTAL
+**
+** This routine is used to register a new [virtual table module] name.
+** Module names must be registered before
+** creating a new [virtual table] using the module, or before using a
+** preexisting [virtual table] for the module.
+**
+** The module name is registered on the [database connection] specified
+** by the first parameter.  The name of the module is given by the 
+** second parameter.  The third parameter is a pointer to
+** the implementation of the [virtual table module].   The fourth
+** parameter is an arbitrary client data pointer that is passed through
+** into the [xCreate] and [xConnect] methods of the virtual table module
+** when a new virtual table is be being created or reinitialized.
+**
+** This interface has exactly the same effect as calling
+** [sqlite3_create_module_v2()] with a NULL client data destructor.
+*/
+SQLITE_EXPERIMENTAL int sqlite3_create_module(
+  sqlite3 *db,               /* SQLite connection to register module with */
+  const char *zName,         /* Name of the module */
+  const sqlite3_module *p,   /* Methods for the module */
+  void *pClientData          /* Client data for xCreate/xConnect */
+);
+
+/*
+** CAPI3REF: Register A Virtual Table Implementation {H18210} <S20400>
+** EXPERIMENTAL
+**
+** This routine is identical to the [sqlite3_create_module()] method,
+** except that it has an extra parameter to specify 
+** a destructor function for the client data pointer.  SQLite will
+** invoke the destructor function (if it is not NULL) when SQLite
+** no longer needs the pClientData pointer.  
+*/
+SQLITE_EXPERIMENTAL int sqlite3_create_module_v2(
+  sqlite3 *db,               /* SQLite connection to register module with */
+  const char *zName,         /* Name of the module */
+  const sqlite3_module *p,   /* Methods for the module */
+  void *pClientData,         /* Client data for xCreate/xConnect */
+  void(*xDestroy)(void*)     /* Module destructor function */
+);
+
+/*
+** CAPI3REF: Virtual Table Instance Object {H18010} <S20400>
+** KEYWORDS: sqlite3_vtab
+** EXPERIMENTAL
+**
+** Every [virtual table module] implementation uses a subclass
+** of the following structure to describe a particular instance
+** of the [virtual table].  Each subclass will
+** be tailored to the specific needs of the module implementation.
+** The purpose of this superclass is to define certain fields that are
+** common to all module implementations.
+**
+** Virtual tables methods can set an error message by assigning a
+** string obtained from [sqlite3_mprintf()] to zErrMsg.  The method should
+** take care that any prior string is freed by a call to [sqlite3_free()]
+** prior to assigning a new string to zErrMsg.  After the error message
+** is delivered up to the client application, the string will be automatically
+** freed by sqlite3_free() and the zErrMsg field will be zeroed.
+*/
+struct sqlite3_vtab {
+  const sqlite3_module *pModule;  /* The module for this virtual table */
+  int nRef;                       /* Used internally */
+  char *zErrMsg;                  /* Error message from sqlite3_mprintf() */
+  /* Virtual table implementations will typically add additional fields */
+};
+
+/*
+** CAPI3REF: Virtual Table Cursor Object  {H18020} <S20400>
+** KEYWORDS: sqlite3_vtab_cursor {virtual table cursor}
+** EXPERIMENTAL
+**
+** Every [virtual table module] implementation uses a subclass of the
+** following structure to describe cursors that point into the
+** [virtual table] and are used
+** to loop through the virtual table.  Cursors are created using the
+** [sqlite3_module.xOpen | xOpen] method of the module and are destroyed
+** by the [sqlite3_module.xClose | xClose] method.  Cussors are used
+** by the [xFilter], [xNext], [xEof], [xColumn], and [xRowid] methods
+** of the module.  Each module implementation will define
+** the content of a cursor structure to suit its own needs.
+**
+** This superclass exists in order to define fields of the cursor that
+** are common to all implementations.
+*/
+struct sqlite3_vtab_cursor {
+  sqlite3_vtab *pVtab;      /* Virtual table of this cursor */
+  /* Virtual table implementations will typically add additional fields */
+};
+
+/*
+** CAPI3REF: Declare The Schema Of A Virtual Table {H18280} <S20400>
+** EXPERIMENTAL
+**
+** The [xCreate] and [xConnect] methods of a
+** [virtual table module] call this interface
+** to declare the format (the names and datatypes of the columns) of
+** the virtual tables they implement.
+*/
+SQLITE_EXPERIMENTAL int sqlite3_declare_vtab(sqlite3*, const char *zSQL);
+
+/*
+** CAPI3REF: Overload A Function For A Virtual Table {H18300} <S20400>
+** EXPERIMENTAL
+**
+** Virtual tables can provide alternative implementations of functions
+** using the [xFindFunction] method of the [virtual table module].  
+** But global versions of those functions
+** must exist in order to be overloaded.
+**
+** This API makes sure a global version of a function with a particular
+** name and number of parameters exists.  If no such function exists
+** before this API is called, a new function is created.  The implementation
+** of the new function always causes an exception to be thrown.  So
+** the new function is not good for anything by itself.  Its only
+** purpose is to be a placeholder function that can be overloaded
+** by a [virtual table].
+*/
+SQLITE_EXPERIMENTAL int sqlite3_overload_function(sqlite3*, const char *zFuncName, int nArg);
+
+/*
+** The interface to the virtual-table mechanism defined above (back up
+** to a comment remarkably similar to this one) is currently considered
+** to be experimental.  The interface might change in incompatible ways.
+** If this is a problem for you, do not use the interface at this time.
+**
+** When the virtual-table mechanism stabilizes, we will declare the
+** interface fixed, support it indefinitely, and remove this comment.
+**
+****** EXPERIMENTAL - subject to change without notice **************
+*/
+
+/*
+** CAPI3REF: A Handle To An Open BLOB {H17800} <S30230>
+** KEYWORDS: {BLOB handle} {BLOB handles}
+**
+** An instance of this object represents an open BLOB on which
+** [sqlite3_blob_open | incremental BLOB I/O] can be performed.
+** Objects of this type are created by [sqlite3_blob_open()]
+** and destroyed by [sqlite3_blob_close()].
+** The [sqlite3_blob_read()] and [sqlite3_blob_write()] interfaces
+** can be used to read or write small subsections of the BLOB.
+** The [sqlite3_blob_bytes()] interface returns the size of the BLOB in bytes.
+*/
+typedef struct sqlite3_blob sqlite3_blob;
+
+/*
+** CAPI3REF: Open A BLOB For Incremental I/O {H17810} <S30230>
+**
+** This interfaces opens a [BLOB handle | handle] to the BLOB located
+** in row iRow, column zColumn, table zTable in database zDb;
+** in other words, the same BLOB that would be selected by:
+**
+** <pre>
+**     SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
+** </pre> {END}
+**
+** If the flags parameter is non-zero, then the BLOB is opened for read
+** and write access. If it is zero, the BLOB is opened for read access.
+**
+** Note that the database name is not the filename that contains
+** the database but rather the symbolic name of the database that
+** is assigned when the database is connected using [ATTACH].
+** For the main database file, the database name is "main".
+** For TEMP tables, the database name is "temp".
+**
+** On success, [SQLITE_OK] is returned and the new [BLOB handle] is written
+** to *ppBlob. Otherwise an [error code] is returned and *ppBlob is set
+** to be a null pointer.
+** This function sets the [database connection] error code and message
+** accessible via [sqlite3_errcode()] and [sqlite3_errmsg()] and related
+** functions.  Note that the *ppBlob variable is always initialized in a
+** way that makes it safe to invoke [sqlite3_blob_close()] on *ppBlob
+** regardless of the success or failure of this routine.
+**
+** If the row that a BLOB handle points to is modified by an
+** [UPDATE], [DELETE], or by [ON CONFLICT] side-effects
+** then the BLOB handle is marked as "expired".
+** This is true if any column of the row is changed, even a column
+** other than the one the BLOB handle is open on.
+** Calls to [sqlite3_blob_read()] and [sqlite3_blob_write()] for
+** a expired BLOB handle fail with an return code of [SQLITE_ABORT].
+** Changes written into a BLOB prior to the BLOB expiring are not
+** rollback by the expiration of the BLOB.  Such changes will eventually
+** commit if the transaction continues to completion.
+**
+** Use the [sqlite3_blob_bytes()] interface to determine the size of
+** the opened blob.  The size of a blob may not be changed by this
+** underface.  Use the [UPDATE] SQL command to change the size of a
+** blob.
+**
+** The [sqlite3_bind_zeroblob()] and [sqlite3_result_zeroblob()] interfaces
+** and the built-in [zeroblob] SQL function can be used, if desired,
+** to create an empty, zero-filled blob in which to read or write using
+** this interface.
+**
+** To avoid a resource leak, every open [BLOB handle] should eventually
+** be released by a call to [sqlite3_blob_close()].
+**
+** Requirements:
+** [H17813] [H17814] [H17816] [H17819] [H17821] [H17824]
+*/
+int sqlite3_blob_open(
+  sqlite3*,
+  const char *zDb,
+  const char *zTable,
+  const char *zColumn,
+  sqlite3_int64 iRow,
+  int flags,
+  sqlite3_blob **ppBlob
+);
+
+/*
+** CAPI3REF: Close A BLOB Handle {H17830} <S30230>
+**
+** Closes an open [BLOB handle].
+**
+** Closing a BLOB shall cause the current transaction to commit
+** if there are no other BLOBs, no pending prepared statements, and the
+** database connection is in [autocommit mode].
+** If any writes were made to the BLOB, they might be held in cache
+** until the close operation if they will fit.
+**
+** Closing the BLOB often forces the changes
+** out to disk and so if any I/O errors occur, they will likely occur
+** at the time when the BLOB is closed.  Any errors that occur during
+** closing are reported as a non-zero return value.
+**
+** The BLOB is closed unconditionally.  Even if this routine returns
+** an error code, the BLOB is still closed.
+**
+** Calling this routine with a null pointer (which as would be returned
+** by failed call to [sqlite3_blob_open()]) is a harmless no-op.
+**
+** Requirements:
+** [H17833] [H17836] [H17839]
+*/
+int sqlite3_blob_close(sqlite3_blob *);
+
+/*
+** CAPI3REF: Return The Size Of An Open BLOB {H17840} <S30230>
+**
+** Returns the size in bytes of the BLOB accessible via the 
+** successfully opened [BLOB handle] in its only argument.  The
+** incremental blob I/O routines can only read or overwriting existing
+** blob content; they cannot change the size of a blob.
+**
+** This routine only works on a [BLOB handle] which has been created
+** by a prior successful call to [sqlite3_blob_open()] and which has not
+** been closed by [sqlite3_blob_close()].  Passing any other pointer in
+** to this routine results in undefined and probably undesirable behavior.
+**
+** Requirements:
+** [H17843]
+*/
+int sqlite3_blob_bytes(sqlite3_blob *);
+
+/*
+** CAPI3REF: Read Data From A BLOB Incrementally {H17850} <S30230>
+**
+** This function is used to read data from an open [BLOB handle] into a
+** caller-supplied buffer. N bytes of data are copied into buffer Z
+** from the open BLOB, starting at offset iOffset.
+**
+** If offset iOffset is less than N bytes from the end of the BLOB,
+** [SQLITE_ERROR] is returned and no data is read.  If N or iOffset is
+** less than zero, [SQLITE_ERROR] is returned and no data is read.
+** The size of the blob (and hence the maximum value of N+iOffset)
+** can be determined using the [sqlite3_blob_bytes()] interface.
+**
+** An attempt to read from an expired [BLOB handle] fails with an
+** error code of [SQLITE_ABORT].
+**
+** On success, SQLITE_OK is returned.
+** Otherwise, an [error code] or an [extended error code] is returned.
+**
+** This routine only works on a [BLOB handle] which has been created
+** by a prior successful call to [sqlite3_blob_open()] and which has not
+** been closed by [sqlite3_blob_close()].  Passing any other pointer in
+** to this routine results in undefined and probably undesirable behavior.
+**
+** See also: [sqlite3_blob_write()].
+**
+** Requirements:
+** [H17853] [H17856] [H17859] [H17862] [H17863] [H17865] [H17868]
+*/
+int sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset);
+
+/*
+** CAPI3REF: Write Data Into A BLOB Incrementally {H17870} <S30230>
+**
+** This function is used to write data into an open [BLOB handle] from a
+** caller-supplied buffer. N bytes of data are copied from the buffer Z
+** into the open BLOB, starting at offset iOffset.
+**
+** If the [BLOB handle] passed as the first argument was not opened for
+** writing (the flags parameter to [sqlite3_blob_open()] was zero),
+** this function returns [SQLITE_READONLY].
+**
+** This function may only modify the contents of the BLOB; it is
+** not possible to increase the size of a BLOB using this API.
+** If offset iOffset is less than N bytes from the end of the BLOB,
+** [SQLITE_ERROR] is returned and no data is written.  If N is
+** less than zero [SQLITE_ERROR] is returned and no data is written.
+** The size of the BLOB (and hence the maximum value of N+iOffset)
+** can be determined using the [sqlite3_blob_bytes()] interface.
+**
+** An attempt to write to an expired [BLOB handle] fails with an
+** error code of [SQLITE_ABORT].  Writes to the BLOB that occurred
+** before the [BLOB handle] expired are not rolled back by the
+** expiration of the handle, though of course those changes might
+** have been overwritten by the statement that expired the BLOB handle
+** or by other independent statements.
+**
+** On success, SQLITE_OK is returned.
+** Otherwise, an  [error code] or an [extended error code] is returned.
+**
+** This routine only works on a [BLOB handle] which has been created
+** by a prior successful call to [sqlite3_blob_open()] and which has not
+** been closed by [sqlite3_blob_close()].  Passing any other pointer in
+** to this routine results in undefined and probably undesirable behavior.
+**
+** See also: [sqlite3_blob_read()].
+**
+** Requirements:
+** [H17873] [H17874] [H17875] [H17876] [H17877] [H17879] [H17882] [H17885]
+** [H17888]
+*/
+int sqlite3_blob_write(sqlite3_blob *, const void *z, int n, int iOffset);
+
+/*
+** CAPI3REF: Virtual File System Objects {H11200} <S20100>
+**
+** A virtual filesystem (VFS) is an [sqlite3_vfs] object
+** that SQLite uses to interact
+** with the underlying operating system.  Most SQLite builds come with a
+** single default VFS that is appropriate for the host computer.
+** New VFSes can be registered and existing VFSes can be unregistered.
+** The following interfaces are provided.
+**
+** The sqlite3_vfs_find() interface returns a pointer to a VFS given its name.
+** Names are case sensitive.
+** Names are zero-terminated UTF-8 strings.
+** If there is no match, a NULL pointer is returned.
+** If zVfsName is NULL then the default VFS is returned.
+**
+** New VFSes are registered with sqlite3_vfs_register().
+** Each new VFS becomes the default VFS if the makeDflt flag is set.
+** The same VFS can be registered multiple times without injury.
+** To make an existing VFS into the default VFS, register it again
+** with the makeDflt flag set.  If two different VFSes with the
+** same name are registered, the behavior is undefined.  If a
+** VFS is registered with a name that is NULL or an empty string,
+** then the behavior is undefined.
+**
+** Unregister a VFS with the sqlite3_vfs_unregister() interface.
+** If the default VFS is unregistered, another VFS is chosen as
+** the default.  The choice for the new VFS is arbitrary.
+**
+** Requirements:
+** [H11203] [H11206] [H11209] [H11212] [H11215] [H11218]
+*/
+sqlite3_vfs *sqlite3_vfs_find(const char *zVfsName);
+int sqlite3_vfs_register(sqlite3_vfs*, int makeDflt);
+int sqlite3_vfs_unregister(sqlite3_vfs*);
+
+/*
+** CAPI3REF: Mutexes {H17000} <S20000>
+**
+** The SQLite core uses these routines for thread
+** synchronization. Though they are intended for internal
+** use by SQLite, code that links against SQLite is
+** permitted to use any of these routines.
+**
+** The SQLite source code contains multiple implementations
+** of these mutex routines.  An appropriate implementation
+** is selected automatically at compile-time.  The following
+** implementations are available in the SQLite core:
+**
+** <ul>
+** <li>   SQLITE_MUTEX_OS2
+** <li>   SQLITE_MUTEX_PTHREAD
+** <li>   SQLITE_MUTEX_W32
+** <li>   SQLITE_MUTEX_NOOP
+** </ul>
+**
+** The SQLITE_MUTEX_NOOP implementation is a set of routines
+** that does no real locking and is appropriate for use in
+** a single-threaded application.  The SQLITE_MUTEX_OS2,
+** SQLITE_MUTEX_PTHREAD, and SQLITE_MUTEX_W32 implementations
+** are appropriate for use on OS/2, Unix, and Windows.
+**
+** If SQLite is compiled with the SQLITE_MUTEX_APPDEF preprocessor
+** macro defined (with "-DSQLITE_MUTEX_APPDEF=1"), then no mutex
+** implementation is included with the library. In this case the
+** application must supply a custom mutex implementation using the
+** [SQLITE_CONFIG_MUTEX] option of the sqlite3_config() function
+** before calling sqlite3_initialize() or any other public sqlite3_
+** function that calls sqlite3_initialize().
+**
+** {H17011} The sqlite3_mutex_alloc() routine allocates a new
+** mutex and returns a pointer to it. {H17012} If it returns NULL
+** that means that a mutex could not be allocated. {H17013} SQLite
+** will unwind its stack and return an error. {H17014} The argument
+** to sqlite3_mutex_alloc() is one of these integer constants:
+**
+** <ul>
+** <li>  SQLITE_MUTEX_FAST
+** <li>  SQLITE_MUTEX_RECURSIVE
+** <li>  SQLITE_MUTEX_STATIC_MASTER
+** <li>  SQLITE_MUTEX_STATIC_MEM
+** <li>  SQLITE_MUTEX_STATIC_MEM2
+** <li>  SQLITE_MUTEX_STATIC_PRNG
+** <li>  SQLITE_MUTEX_STATIC_LRU
+** <li>  SQLITE_MUTEX_STATIC_LRU2
+** </ul>
+**
+** {H17015} The first two constants cause sqlite3_mutex_alloc() to create
+** a new mutex.  The new mutex is recursive when SQLITE_MUTEX_RECURSIVE
+** is used but not necessarily so when SQLITE_MUTEX_FAST is used. {END}
+** The mutex implementation does not need to make a distinction
+** between SQLITE_MUTEX_RECURSIVE and SQLITE_MUTEX_FAST if it does
+** not want to.  {H17016} But SQLite will only request a recursive mutex in
+** cases where it really needs one.  {END} If a faster non-recursive mutex
+** implementation is available on the host platform, the mutex subsystem
+** might return such a mutex in response to SQLITE_MUTEX_FAST.
+**
+** {H17017} The other allowed parameters to sqlite3_mutex_alloc() each return
+** a pointer to a static preexisting mutex. {END}  Four static mutexes are
+** used by the current version of SQLite.  Future versions of SQLite
+** may add additional static mutexes.  Static mutexes are for internal
+** use by SQLite only.  Applications that use SQLite mutexes should
+** use only the dynamic mutexes returned by SQLITE_MUTEX_FAST or
+** SQLITE_MUTEX_RECURSIVE.
+**
+** {H17018} Note that if one of the dynamic mutex parameters (SQLITE_MUTEX_FAST
+** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc()
+** returns a different mutex on every call.  {H17034} But for the static
+** mutex types, the same mutex is returned on every call that has
+** the same type number.
+**
+** {H17019} The sqlite3_mutex_free() routine deallocates a previously
+** allocated dynamic mutex. {H17020} SQLite is careful to deallocate every
+** dynamic mutex that it allocates. {A17021} The dynamic mutexes must not be in
+** use when they are deallocated. {A17022} Attempting to deallocate a static
+** mutex results in undefined behavior. {H17023} SQLite never deallocates
+** a static mutex. {END}
+**
+** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
+** to enter a mutex. {H17024} If another thread is already within the mutex,
+** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
+** SQLITE_BUSY. {H17025}  The sqlite3_mutex_try() interface returns [SQLITE_OK]
+** upon successful entry.  {H17026} Mutexes created using
+** SQLITE_MUTEX_RECURSIVE can be entered multiple times by the same thread.
+** {H17027} In such cases the,
+** mutex must be exited an equal number of times before another thread
+** can enter.  {A17028} If the same thread tries to enter any other
+** kind of mutex more than once, the behavior is undefined.
+** {H17029} SQLite will never exhibit
+** such behavior in its own use of mutexes.
+**
+** Some systems (for example, Windows 95) do not support the operation
+** implemented by sqlite3_mutex_try().  On those systems, sqlite3_mutex_try()
+** will always return SQLITE_BUSY.  {H17030} The SQLite core only ever uses
+** sqlite3_mutex_try() as an optimization so this is acceptable behavior.
+**
+** {H17031} The sqlite3_mutex_leave() routine exits a mutex that was
+** previously entered by the same thread.  {A17032} The behavior
+** is undefined if the mutex is not currently entered by the
+** calling thread or is not currently allocated.  {H17033} SQLite will
+** never do either. {END}
+**
+** If the argument to sqlite3_mutex_enter(), sqlite3_mutex_try(), or
+** sqlite3_mutex_leave() is a NULL pointer, then all three routines
+** behave as no-ops.
+**
+** See also: [sqlite3_mutex_held()] and [sqlite3_mutex_notheld()].
+*/
+sqlite3_mutex *sqlite3_mutex_alloc(int);
+void sqlite3_mutex_free(sqlite3_mutex*);
+void sqlite3_mutex_enter(sqlite3_mutex*);
+int sqlite3_mutex_try(sqlite3_mutex*);
+void sqlite3_mutex_leave(sqlite3_mutex*);
+
+/*
+** CAPI3REF: Mutex Methods Object {H17120} <S20130>
+** EXPERIMENTAL
+**
+** An instance of this structure defines the low-level routines
+** used to allocate and use mutexes.
+**
+** Usually, the default mutex implementations provided by SQLite are
+** sufficient, however the user has the option of substituting a custom
+** implementation for specialized deployments or systems for which SQLite
+** does not provide a suitable implementation. In this case, the user
+** creates and populates an instance of this structure to pass
+** to sqlite3_config() along with the [SQLITE_CONFIG_MUTEX] option.
+** Additionally, an instance of this structure can be used as an
+** output variable when querying the system for the current mutex
+** implementation, using the [SQLITE_CONFIG_GETMUTEX] option.
+**
+** The xMutexInit method defined by this structure is invoked as
+** part of system initialization by the sqlite3_initialize() function.
+** {H17001} The xMutexInit routine shall be called by SQLite once for each
+** effective call to [sqlite3_initialize()].
+**
+** The xMutexEnd method defined by this structure is invoked as
+** part of system shutdown by the sqlite3_shutdown() function. The
+** implementation of this method is expected to release all outstanding
+** resources obtained by the mutex methods implementation, especially
+** those obtained by the xMutexInit method. {H17003} The xMutexEnd()
+** interface shall be invoked once for each call to [sqlite3_shutdown()].
+**
+** The remaining seven methods defined by this structure (xMutexAlloc,
+** xMutexFree, xMutexEnter, xMutexTry, xMutexLeave, xMutexHeld and
+** xMutexNotheld) implement the following interfaces (respectively):
+**
+** <ul>
+**   <li>  [sqlite3_mutex_alloc()] </li>
+**   <li>  [sqlite3_mutex_free()] </li>
+**   <li>  [sqlite3_mutex_enter()] </li>
+**   <li>  [sqlite3_mutex_try()] </li>
+**   <li>  [sqlite3_mutex_leave()] </li>
+**   <li>  [sqlite3_mutex_held()] </li>
+**   <li>  [sqlite3_mutex_notheld()] </li>
+** </ul>
+**
+** The only difference is that the public sqlite3_XXX functions enumerated
+** above silently ignore any invocations that pass a NULL pointer instead
+** of a valid mutex handle. The implementations of the methods defined
+** by this structure are not required to handle this case, the results
+** of passing a NULL pointer instead of a valid mutex handle are undefined
+** (i.e. it is acceptable to provide an implementation that segfaults if
+** it is passed a NULL pointer).
+*/
+typedef struct sqlite3_mutex_methods sqlite3_mutex_methods;
+struct sqlite3_mutex_methods {
+  int (*xMutexInit)(void);
+  int (*xMutexEnd)(void);
+  sqlite3_mutex *(*xMutexAlloc)(int);
+  void (*xMutexFree)(sqlite3_mutex *);
+  void (*xMutexEnter)(sqlite3_mutex *);
+  int (*xMutexTry)(sqlite3_mutex *);
+  void (*xMutexLeave)(sqlite3_mutex *);
+  int (*xMutexHeld)(sqlite3_mutex *);
+  int (*xMutexNotheld)(sqlite3_mutex *);
+};
+
+/*
+** CAPI3REF: Mutex Verification Routines {H17080} <S20130> <S30800>
+**
+** The sqlite3_mutex_held() and sqlite3_mutex_notheld() routines
+** are intended for use inside assert() statements. {H17081} The SQLite core
+** never uses these routines except inside an assert() and applications
+** are advised to follow the lead of the core.  {H17082} The core only
+** provides implementations for these routines when it is compiled
+** with the SQLITE_DEBUG flag.  {A17087} External mutex implementations
+** are only required to provide these routines if SQLITE_DEBUG is
+** defined and if NDEBUG is not defined.
+**
+** {H17083} These routines should return true if the mutex in their argument
+** is held or not held, respectively, by the calling thread.
+**
+** {X17084} The implementation is not required to provided versions of these
+** routines that actually work. If the implementation does not provide working
+** versions of these routines, it should at least provide stubs that always
+** return true so that one does not get spurious assertion failures.
+**
+** {H17085} If the argument to sqlite3_mutex_held() is a NULL pointer then
+** the routine should return 1.  {END} This seems counter-intuitive since
+** clearly the mutex cannot be held if it does not exist.  But the
+** the reason the mutex does not exist is because the build is not
+** using mutexes.  And we do not want the assert() containing the
+** call to sqlite3_mutex_held() to fail, so a non-zero return is
+** the appropriate thing to do.  {H17086} The sqlite3_mutex_notheld()
+** interface should also return 1 when given a NULL pointer.
+*/
+int sqlite3_mutex_held(sqlite3_mutex*);
+int sqlite3_mutex_notheld(sqlite3_mutex*);
+
+/*
+** CAPI3REF: Mutex Types {H17001} <H17000>
+**
+** The [sqlite3_mutex_alloc()] interface takes a single argument
+** which is one of these integer constants.
+**
+** The set of static mutexes may change from one SQLite release to the
+** next.  Applications that override the built-in mutex logic must be
+** prepared to accommodate additional static mutexes.
+*/
+#define SQLITE_MUTEX_FAST             0
+#define SQLITE_MUTEX_RECURSIVE        1
+#define SQLITE_MUTEX_STATIC_MASTER    2
+#define SQLITE_MUTEX_STATIC_MEM       3  /* sqlite3_malloc() */
+#define SQLITE_MUTEX_STATIC_MEM2      4  /* NOT USED */
+#define SQLITE_MUTEX_STATIC_OPEN      4  /* sqlite3BtreeOpen() */
+#define SQLITE_MUTEX_STATIC_PRNG      5  /* sqlite3_random() */
+#define SQLITE_MUTEX_STATIC_LRU       6  /* lru page list */
+#define SQLITE_MUTEX_STATIC_LRU2      7  /* lru page list */
+
+/*
+** CAPI3REF: Retrieve the mutex for a database connection {H17002} <H17000>
+**
+** This interface returns a pointer the [sqlite3_mutex] object that 
+** serializes access to the [database connection] given in the argument
+** when the [threading mode] is Serialized.
+** If the [threading mode] is Single-thread or Multi-thread then this
+** routine returns a NULL pointer.
+*/
+sqlite3_mutex *sqlite3_db_mutex(sqlite3*);
+
+/*
+** CAPI3REF: Low-Level Control Of Database Files {H11300} <S30800>
+**
+** {H11301} The [sqlite3_file_control()] interface makes a direct call to the
+** xFileControl method for the [sqlite3_io_methods] object associated
+** with a particular database identified by the second argument. {H11302} The
+** name of the database is the name assigned to the database by the
+** <a href="lang_attach.html">ATTACH</a> SQL command that opened the
+** database. {H11303} To control the main database file, use the name "main"
+** or a NULL pointer. {H11304} The third and fourth parameters to this routine
+** are passed directly through to the second and third parameters of
+** the xFileControl method.  {H11305} The return value of the xFileControl
+** method becomes the return value of this routine.
+**
+** {H11306} If the second parameter (zDbName) does not match the name of any
+** open database file, then SQLITE_ERROR is returned. {H11307} This error
+** code is not remembered and will not be recalled by [sqlite3_errcode()]
+** or [sqlite3_errmsg()]. {A11308} The underlying xFileControl method might
+** also return SQLITE_ERROR.  {A11309} There is no way to distinguish between
+** an incorrect zDbName and an SQLITE_ERROR return from the underlying
+** xFileControl method. {END}
+**
+** See also: [SQLITE_FCNTL_LOCKSTATE]
+*/
+int sqlite3_file_control(sqlite3*, const char *zDbName, int op, void*);
+
+/*
+** CAPI3REF: Testing Interface {H11400} <S30800>
+**
+** The sqlite3_test_control() interface is used to read out internal
+** state of SQLite and to inject faults into SQLite for testing
+** purposes.  The first parameter is an operation code that determines
+** the number, meaning, and operation of all subsequent parameters.
+**
+** This interface is not for use by applications.  It exists solely
+** for verifying the correct operation of the SQLite library.  Depending
+** on how the SQLite library is compiled, this interface might not exist.
+**
+** The details of the operation codes, their meanings, the parameters
+** they take, and what they do are all subject to change without notice.
+** Unlike most of the SQLite API, this function is not guaranteed to
+** operate consistently from one release to the next.
+*/
+int sqlite3_test_control(int op, ...);
+
+/*
+** CAPI3REF: Testing Interface Operation Codes {H11410} <H11400>
+**
+** These constants are the valid operation code parameters used
+** as the first argument to [sqlite3_test_control()].
+**
+** These parameters and their meanings are subject to change
+** without notice.  These values are for testing purposes only.
+** Applications should not use any of these parameters or the
+** [sqlite3_test_control()] interface.
+*/
+#define SQLITE_TESTCTRL_PRNG_SAVE                5
+#define SQLITE_TESTCTRL_PRNG_RESTORE             6
+#define SQLITE_TESTCTRL_PRNG_RESET               7
+#define SQLITE_TESTCTRL_BITVEC_TEST              8
+#define SQLITE_TESTCTRL_FAULT_INSTALL            9
+#define SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS     10
+#define SQLITE_TESTCTRL_PENDING_BYTE            11
+#define SQLITE_TESTCTRL_ASSERT                  12
+#define SQLITE_TESTCTRL_ALWAYS                  13
+
+/*
+** CAPI3REF: SQLite Runtime Status {H17200} <S60200>
+** EXPERIMENTAL
+**
+** This interface is used to retrieve runtime status information
+** about the preformance of SQLite, and optionally to reset various
+** highwater marks.  The first argument is an integer code for
+** the specific parameter to measure.  Recognized integer codes
+** are of the form [SQLITE_STATUS_MEMORY_USED | SQLITE_STATUS_...].
+** The current value of the parameter is returned into *pCurrent.
+** The highest recorded value is returned in *pHighwater.  If the
+** resetFlag is true, then the highest record value is reset after
+** *pHighwater is written. Some parameters do not record the highest
+** value.  For those parameters
+** nothing is written into *pHighwater and the resetFlag is ignored.
+** Other parameters record only the highwater mark and not the current
+** value.  For these latter parameters nothing is written into *pCurrent.
+**
+** This routine returns SQLITE_OK on success and a non-zero
+** [error code] on failure.
+**
+** This routine is threadsafe but is not atomic.  This routine can
+** called while other threads are running the same or different SQLite
+** interfaces.  However the values returned in *pCurrent and
+** *pHighwater reflect the status of SQLite at different points in time
+** and it is possible that another thread might change the parameter
+** in between the times when *pCurrent and *pHighwater are written.
+**
+** See also: [sqlite3_db_status()]
+*/
+SQLITE_EXPERIMENTAL int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
+
+
+/*
+** CAPI3REF: Status Parameters {H17250} <H17200>
+** EXPERIMENTAL
+**
+** These integer constants designate various run-time status parameters
+** that can be returned by [sqlite3_status()].
+**
+** <dl>
+** <dt>SQLITE_STATUS_MEMORY_USED</dt>
+** <dd>This parameter is the current amount of memory checked out
+** using [sqlite3_malloc()], either directly or indirectly.  The
+** figure includes calls made to [sqlite3_malloc()] by the application
+** and internal memory usage by the SQLite library.  Scratch memory
+** controlled by [SQLITE_CONFIG_SCRATCH] and auxiliary page-cache
+** memory controlled by [SQLITE_CONFIG_PAGECACHE] is not included in
+** this parameter.  The amount returned is the sum of the allocation
+** sizes as reported by the xSize method in [sqlite3_mem_methods].</dd>
+**
+** <dt>SQLITE_STATUS_MALLOC_SIZE</dt>
+** <dd>This parameter records the largest memory allocation request
+** handed to [sqlite3_malloc()] or [sqlite3_realloc()] (or their
+** internal equivalents).  Only the value returned in the
+** *pHighwater parameter to [sqlite3_status()] is of interest.  
+** The value written into the *pCurrent parameter is undefined.</dd>
+**
+** <dt>SQLITE_STATUS_PAGECACHE_USED</dt>
+** <dd>This parameter returns the number of pages used out of the
+** [pagecache memory allocator] that was configured using 
+** [SQLITE_CONFIG_PAGECACHE].  The
+** value returned is in pages, not in bytes.</dd>
+**
+** <dt>SQLITE_STATUS_PAGECACHE_OVERFLOW</dt>
+** <dd>This parameter returns the number of bytes of page cache
+** allocation which could not be statisfied by the [SQLITE_CONFIG_PAGECACHE]
+** buffer and where forced to overflow to [sqlite3_malloc()].  The
+** returned value includes allocations that overflowed because they
+** where too large (they were larger than the "sz" parameter to
+** [SQLITE_CONFIG_PAGECACHE]) and allocations that overflowed because
+** no space was left in the page cache.</dd>
+**
+** <dt>SQLITE_STATUS_PAGECACHE_SIZE</dt>
+** <dd>This parameter records the largest memory allocation request
+** handed to [pagecache memory allocator].  Only the value returned in the
+** *pHighwater parameter to [sqlite3_status()] is of interest.  
+** The value written into the *pCurrent parameter is undefined.</dd>
+**
+** <dt>SQLITE_STATUS_SCRATCH_USED</dt>
+** <dd>This parameter returns the number of allocations used out of the
+** [scratch memory allocator] configured using
+** [SQLITE_CONFIG_SCRATCH].  The value returned is in allocations, not
+** in bytes.  Since a single thread may only have one scratch allocation
+** outstanding at time, this parameter also reports the number of threads
+** using scratch memory at the same time.</dd>
+**
+** <dt>SQLITE_STATUS_SCRATCH_OVERFLOW</dt>
+** <dd>This parameter returns the number of bytes of scratch memory
+** allocation which could not be statisfied by the [SQLITE_CONFIG_SCRATCH]
+** buffer and where forced to overflow to [sqlite3_malloc()].  The values
+** returned include overflows because the requested allocation was too
+** larger (that is, because the requested allocation was larger than the
+** "sz" parameter to [SQLITE_CONFIG_SCRATCH]) and because no scratch buffer
+** slots were available.
+** </dd>
+**
+** <dt>SQLITE_STATUS_SCRATCH_SIZE</dt>
+** <dd>This parameter records the largest memory allocation request
+** handed to [scratch memory allocator].  Only the value returned in the
+** *pHighwater parameter to [sqlite3_status()] is of interest.  
+** The value written into the *pCurrent parameter is undefined.</dd>
+**
+** <dt>SQLITE_STATUS_PARSER_STACK</dt>
+** <dd>This parameter records the deepest parser stack.  It is only
+** meaningful if SQLite is compiled with [YYTRACKMAXSTACKDEPTH].</dd>
+** </dl>
+**
+** New status parameters may be added from time to time.
+*/
+#define SQLITE_STATUS_MEMORY_USED          0
+#define SQLITE_STATUS_PAGECACHE_USED       1
+#define SQLITE_STATUS_PAGECACHE_OVERFLOW   2
+#define SQLITE_STATUS_SCRATCH_USED         3
+#define SQLITE_STATUS_SCRATCH_OVERFLOW     4
+#define SQLITE_STATUS_MALLOC_SIZE          5
+#define SQLITE_STATUS_PARSER_STACK         6
+#define SQLITE_STATUS_PAGECACHE_SIZE       7
+#define SQLITE_STATUS_SCRATCH_SIZE         8
+
+/*
+** CAPI3REF: Database Connection Status {H17500} <S60200>
+** EXPERIMENTAL
+**
+** This interface is used to retrieve runtime status information 
+** about a single [database connection].  The first argument is the
+** database connection object to be interrogated.  The second argument
+** is the parameter to interrogate.  Currently, the only allowed value
+** for the second parameter is [SQLITE_DBSTATUS_LOOKASIDE_USED].
+** Additional options will likely appear in future releases of SQLite.
+**
+** The current value of the requested parameter is written into *pCur
+** and the highest instantaneous value is written into *pHiwtr.  If
+** the resetFlg is true, then the highest instantaneous value is
+** reset back down to the current value.
+**
+** See also: [sqlite3_status()] and [sqlite3_stmt_status()].
+*/
+SQLITE_EXPERIMENTAL int sqlite3_db_status(sqlite3*, int op, int *pCur, int *pHiwtr, int resetFlg);
+
+/*
+** CAPI3REF: Status Parameters for database connections {H17520} <H17500>
+** EXPERIMENTAL
+**
+** Status verbs for [sqlite3_db_status()].
+**
+** <dl>
+** <dt>SQLITE_DBSTATUS_LOOKASIDE_USED</dt>
+** <dd>This parameter returns the number of lookaside memory slots currently
+** checked out.</dd>
+** </dl>
+*/
+#define SQLITE_DBSTATUS_LOOKASIDE_USED     0
+
+
+/*
+** CAPI3REF: Prepared Statement Status {H17550} <S60200>
+** EXPERIMENTAL
+**
+** Each prepared statement maintains various
+** [SQLITE_STMTSTATUS_SORT | counters] that measure the number
+** of times it has performed specific operations.  These counters can
+** be used to monitor the performance characteristics of the prepared
+** statements.  For example, if the number of table steps greatly exceeds
+** the number of table searches or result rows, that would tend to indicate
+** that the prepared statement is using a full table scan rather than
+** an index.  
+**
+** This interface is used to retrieve and reset counter values from
+** a [prepared statement].  The first argument is the prepared statement
+** object to be interrogated.  The second argument
+** is an integer code for a specific [SQLITE_STMTSTATUS_SORT | counter]
+** to be interrogated. 
+** The current value of the requested counter is returned.
+** If the resetFlg is true, then the counter is reset to zero after this
+** interface call returns.
+**
+** See also: [sqlite3_status()] and [sqlite3_db_status()].
+*/
+SQLITE_EXPERIMENTAL int sqlite3_stmt_status(sqlite3_stmt*, int op,int resetFlg);
+
+/*
+** CAPI3REF: Status Parameters for prepared statements {H17570} <H17550>
+** EXPERIMENTAL
+**
+** These preprocessor macros define integer codes that name counter
+** values associated with the [sqlite3_stmt_status()] interface.
+** The meanings of the various counters are as follows:
+**
+** <dl>
+** <dt>SQLITE_STMTSTATUS_FULLSCAN_STEP</dt>
+** <dd>This is the number of times that SQLite has stepped forward in
+** a table as part of a full table scan.  Large numbers for this counter
+** may indicate opportunities for performance improvement through 
+** careful use of indices.</dd>
+**
+** <dt>SQLITE_STMTSTATUS_SORT</dt>
+** <dd>This is the number of sort operations that have occurred.
+** A non-zero value in this counter may indicate an opportunity to
+** improvement performance through careful use of indices.</dd>
+**
+** </dl>
+*/
+#define SQLITE_STMTSTATUS_FULLSCAN_STEP     1
+#define SQLITE_STMTSTATUS_SORT              2
+
+/*
+** CAPI3REF: Custom Page Cache Object
+** EXPERIMENTAL
+**
+** The sqlite3_pcache type is opaque.  It is implemented by
+** the pluggable module.  The SQLite core has no knowledge of
+** its size or internal structure and never deals with the
+** sqlite3_pcache object except by holding and passing pointers
+** to the object.
+**
+** See [sqlite3_pcache_methods] for additional information.
+*/
+typedef struct sqlite3_pcache sqlite3_pcache;
+
+/*
+** CAPI3REF: Application Defined Page Cache.
+** EXPERIMENTAL
+**
+** The [sqlite3_config]([SQLITE_CONFIG_PCACHE], ...) interface can
+** register an alternative page cache implementation by passing in an 
+** instance of the sqlite3_pcache_methods structure. The majority of the 
+** heap memory used by sqlite is used by the page cache to cache data read 
+** from, or ready to be written to, the database file. By implementing a 
+** custom page cache using this API, an application can control more 
+** precisely the amount of memory consumed by sqlite, the way in which 
+** said memory is allocated and released, and the policies used to 
+** determine exactly which parts of a database file are cached and for 
+** how long.
+**
+** The contents of the structure are copied to an internal buffer by sqlite
+** within the call to [sqlite3_config].
+**
+** The xInit() method is called once for each call to [sqlite3_initialize()]
+** (usually only once during the lifetime of the process). It is passed
+** a copy of the sqlite3_pcache_methods.pArg value. It can be used to set
+** up global structures and mutexes required by the custom page cache 
+** implementation. The xShutdown() method is called from within 
+** [sqlite3_shutdown()], if the application invokes this API. It can be used
+** to clean up any outstanding resources before process shutdown, if required.
+**
+** The xCreate() method is used to construct a new cache instance. The
+** first parameter, szPage, is the size in bytes of the pages that must
+** be allocated by the cache. szPage will not be a power of two. The
+** second argument, bPurgeable, is true if the cache being created will
+** be used to cache database pages read from a file stored on disk, or
+** false if it is used for an in-memory database. The cache implementation
+** does not have to do anything special based on the value of bPurgeable,
+** it is purely advisory. 
+**
+** The xCachesize() method may be called at any time by SQLite to set the
+** suggested maximum cache-size (number of pages stored by) the cache
+** instance passed as the first argument. This is the value configured using
+** the SQLite "[PRAGMA cache_size]" command. As with the bPurgeable parameter,
+** the implementation is not required to do anything special with this
+** value, it is advisory only.
+**
+** The xPagecount() method should return the number of pages currently
+** stored in the cache supplied as an argument.
+** 
+** The xFetch() method is used to fetch a page and return a pointer to it. 
+** A 'page', in this context, is a buffer of szPage bytes aligned at an
+** 8-byte boundary. The page to be fetched is determined by the key. The
+** mimimum key value is 1. After it has been retrieved using xFetch, the page 
+** is considered to be pinned.
+**
+** If the requested page is already in the page cache, then a pointer to
+** the cached buffer should be returned with its contents intact. If the
+** page is not already in the cache, then the expected behaviour of the
+** cache is determined by the value of the createFlag parameter passed
+** to xFetch, according to the following table:
+**
+** <table border=1 width=85% align=center>
+**   <tr><th>createFlag<th>Expected Behaviour
+**   <tr><td>0<td>NULL should be returned. No new cache entry is created.
+**   <tr><td>1<td>If createFlag is set to 1, this indicates that 
+**                SQLite is holding pinned pages that can be unpinned
+**                by writing their contents to the database file (a
+**                relatively expensive operation). In this situation the
+**                cache implementation has two choices: it can return NULL,
+**                in which case SQLite will attempt to unpin one or more 
+**                pages before re-requesting the same page, or it can
+**                allocate a new page and return a pointer to it. If a new
+**                page is allocated, then the first sizeof(void*) bytes of
+**                it (at least) must be zeroed before it is returned.
+**   <tr><td>2<td>If createFlag is set to 2, then SQLite is not holding any
+**                pinned pages associated with the specific cache passed
+**                as the first argument to xFetch() that can be unpinned. The
+**                cache implementation should attempt to allocate a new
+**                cache entry and return a pointer to it. Again, the first
+**                sizeof(void*) bytes of the page should be zeroed before 
+**                it is returned. If the xFetch() method returns NULL when 
+**                createFlag==2, SQLite assumes that a memory allocation 
+**                failed and returns SQLITE_NOMEM to the user.
+** </table>
+**
+** xUnpin() is called by SQLite with a pointer to a currently pinned page
+** as its second argument. If the third parameter, discard, is non-zero,
+** then the page should be evicted from the cache. In this case SQLite 
+** assumes that the next time the page is retrieved from the cache using
+** the xFetch() method, it will be zeroed. If the discard parameter is
+** zero, then the page is considered to be unpinned. The cache implementation
+** may choose to reclaim (free or recycle) unpinned pages at any time.
+** SQLite assumes that next time the page is retrieved from the cache
+** it will either be zeroed, or contain the same data that it did when it
+** was unpinned.
+**
+** The cache is not required to perform any reference counting. A single 
+** call to xUnpin() unpins the page regardless of the number of prior calls 
+** to xFetch().
+**
+** The xRekey() method is used to change the key value associated with the
+** page passed as the second argument from oldKey to newKey. If the cache
+** previously contains an entry associated with newKey, it should be
+** discarded. Any prior cache entry associated with newKey is guaranteed not
+** to be pinned.
+**
+** When SQLite calls the xTruncate() method, the cache must discard all
+** existing cache entries with page numbers (keys) greater than or equal
+** to the value of the iLimit parameter passed to xTruncate(). If any
+** of these pages are pinned, they are implicitly unpinned, meaning that
+** they can be safely discarded.
+**
+** The xDestroy() method is used to delete a cache allocated by xCreate().
+** All resources associated with the specified cache should be freed. After
+** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*]
+** handle invalid, and will not use it with any other sqlite3_pcache_methods
+** functions.
+*/
+typedef struct sqlite3_pcache_methods sqlite3_pcache_methods;
+struct sqlite3_pcache_methods {
+  void *pArg;
+  int (*xInit)(void*);
+  void (*xShutdown)(void*);
+  sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
+  void (*xCachesize)(sqlite3_pcache*, int nCachesize);
+  int (*xPagecount)(sqlite3_pcache*);
+  void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
+  void (*xUnpin)(sqlite3_pcache*, void*, int discard);
+  void (*xRekey)(sqlite3_pcache*, void*, unsigned oldKey, unsigned newKey);
+  void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
+  void (*xDestroy)(sqlite3_pcache*);
+};
+
+/*
+** CAPI3REF: Online Backup Object
+** EXPERIMENTAL
+**
+** The sqlite3_backup object records state information about an ongoing
+** online backup operation.  The sqlite3_backup object is created by
+** a call to [sqlite3_backup_init()] and is destroyed by a call to
+** [sqlite3_backup_finish()].
+**
+** See Also: [Using the SQLite Online Backup API]
+*/
+typedef struct sqlite3_backup sqlite3_backup;
+
+/*
+** CAPI3REF: Online Backup API.
+** EXPERIMENTAL
+**
+** This API is used to overwrite the contents of one database with that
+** of another. It is useful either for creating backups of databases or
+** for copying in-memory databases to or from persistent files. 
+**
+** See Also: [Using the SQLite Online Backup API]
+**
+** Exclusive access is required to the destination database for the 
+** duration of the operation. However the source database is only
+** read-locked while it is actually being read, it is not locked
+** continuously for the entire operation. Thus, the backup may be
+** performed on a live database without preventing other users from
+** writing to the database for an extended period of time.
+** 
+** To perform a backup operation: 
+**   <ol>
+**     <li><b>sqlite3_backup_init()</b> is called once to initialize the
+**         backup, 
+**     <li><b>sqlite3_backup_step()</b> is called one or more times to transfer 
+**         the data between the two databases, and finally
+**     <li><b>sqlite3_backup_finish()</b> is called to release all resources 
+**         associated with the backup operation. 
+**   </ol>
+** There should be exactly one call to sqlite3_backup_finish() for each
+** successful call to sqlite3_backup_init().
+**
+** <b>sqlite3_backup_init()</b>
+**
+** The first two arguments passed to [sqlite3_backup_init()] are the database
+** handle associated with the destination database and the database name 
+** used to attach the destination database to the handle. The database name
+** is "main" for the main database, "temp" for the temporary database, or
+** the name specified as part of the [ATTACH] statement if the destination is
+** an attached database. The third and fourth arguments passed to 
+** sqlite3_backup_init() identify the [database connection]
+** and database name used
+** to access the source database. The values passed for the source and 
+** destination [database connection] parameters must not be the same.
+**
+** If an error occurs within sqlite3_backup_init(), then NULL is returned
+** and an error code and error message written into the [database connection] 
+** passed as the first argument. They may be retrieved using the
+** [sqlite3_errcode()], [sqlite3_errmsg()], and [sqlite3_errmsg16()] functions.
+** Otherwise, if successful, a pointer to an [sqlite3_backup] object is
+** returned. This pointer may be used with the sqlite3_backup_step() and
+** sqlite3_backup_finish() functions to perform the specified backup 
+** operation.
+**
+** <b>sqlite3_backup_step()</b>
+**
+** Function [sqlite3_backup_step()] is used to copy up to nPage pages between 
+** the source and destination databases, where nPage is the value of the 
+** second parameter passed to sqlite3_backup_step(). If nPage is a negative
+** value, all remaining source pages are copied. If the required pages are 
+** succesfully copied, but there are still more pages to copy before the 
+** backup is complete, it returns [SQLITE_OK]. If no error occured and there 
+** are no more pages to copy, then [SQLITE_DONE] is returned. If an error 
+** occurs, then an SQLite error code is returned. As well as [SQLITE_OK] and
+** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY],
+** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an
+** [SQLITE_IOERR_ACCESS | SQLITE_IOERR_XXX] extended error code.
+**
+** As well as the case where the destination database file was opened for
+** read-only access, sqlite3_backup_step() may return [SQLITE_READONLY] if
+** the destination is an in-memory database with a different page size
+** from the source database.
+**
+** If sqlite3_backup_step() cannot obtain a required file-system lock, then
+** the [sqlite3_busy_handler | busy-handler function]
+** is invoked (if one is specified). If the 
+** busy-handler returns non-zero before the lock is available, then 
+** [SQLITE_BUSY] is returned to the caller. In this case the call to
+** sqlite3_backup_step() can be retried later. If the source
+** [database connection]
+** is being used to write to the source database when sqlite3_backup_step()
+** is called, then [SQLITE_LOCKED] is returned immediately. Again, in this
+** case the call to sqlite3_backup_step() can be retried later on. If
+** [SQLITE_IOERR_ACCESS | SQLITE_IOERR_XXX], [SQLITE_NOMEM], or
+** [SQLITE_READONLY] is returned, then 
+** there is no point in retrying the call to sqlite3_backup_step(). These 
+** errors are considered fatal. At this point the application must accept 
+** that the backup operation has failed and pass the backup operation handle 
+** to the sqlite3_backup_finish() to release associated resources.
+**
+** Following the first call to sqlite3_backup_step(), an exclusive lock is
+** obtained on the destination file. It is not released until either 
+** sqlite3_backup_finish() is called or the backup operation is complete 
+** and sqlite3_backup_step() returns [SQLITE_DONE]. Additionally, each time 
+** a call to sqlite3_backup_step() is made a [shared lock] is obtained on
+** the source database file. This lock is released before the
+** sqlite3_backup_step() call returns. Because the source database is not
+** locked between calls to sqlite3_backup_step(), it may be modified mid-way
+** through the backup procedure. If the source database is modified by an
+** external process or via a database connection other than the one being
+** used by the backup operation, then the backup will be transparently
+** restarted by the next call to sqlite3_backup_step(). If the source 
+** database is modified by the using the same database connection as is used
+** by the backup operation, then the backup database is transparently 
+** updated at the same time.
+**
+** <b>sqlite3_backup_finish()</b>
+**
+** Once sqlite3_backup_step() has returned [SQLITE_DONE], or when the 
+** application wishes to abandon the backup operation, the [sqlite3_backup]
+** object should be passed to sqlite3_backup_finish(). This releases all
+** resources associated with the backup operation. If sqlite3_backup_step()
+** has not yet returned [SQLITE_DONE], then any active write-transaction on the
+** destination database is rolled back. The [sqlite3_backup] object is invalid
+** and may not be used following a call to sqlite3_backup_finish().
+**
+** The value returned by sqlite3_backup_finish is [SQLITE_OK] if no error
+** occurred, regardless or whether or not sqlite3_backup_step() was called
+** a sufficient number of times to complete the backup operation. Or, if
+** an out-of-memory condition or IO error occured during a call to
+** sqlite3_backup_step() then [SQLITE_NOMEM] or an
+** [SQLITE_IOERR_ACCESS | SQLITE_IOERR_XXX] error code
+** is returned. In this case the error code and an error message are
+** written to the destination [database connection].
+**
+** A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step() is
+** not a permanent error and does not affect the return value of
+** sqlite3_backup_finish().
+**
+** <b>sqlite3_backup_remaining(), sqlite3_backup_pagecount()</b>
+**
+** Each call to sqlite3_backup_step() sets two values stored internally
+** by an [sqlite3_backup] object. The number of pages still to be backed
+** up, which may be queried by sqlite3_backup_remaining(), and the total
+** number of pages in the source database file, which may be queried by
+** sqlite3_backup_pagecount().
+**
+** The values returned by these functions are only updated by
+** sqlite3_backup_step(). If the source database is modified during a backup
+** operation, then the values are not updated to account for any extra
+** pages that need to be updated or the size of the source database file
+** changing.
+**
+** <b>Concurrent Usage of Database Handles</b>
+**
+** The source [database connection] may be used by the application for other
+** purposes while a backup operation is underway or being initialized.
+** If SQLite is compiled and configured to support threadsafe database
+** connections, then the source database connection may be used concurrently
+** from within other threads.
+**
+** However, the application must guarantee that the destination database
+** connection handle is not passed to any other API (by any thread) after 
+** sqlite3_backup_init() is called and before the corresponding call to
+** sqlite3_backup_finish(). Unfortunately SQLite does not currently check
+** for this, if the application does use the destination [database connection]
+** for some other purpose during a backup operation, things may appear to
+** work correctly but in fact be subtly malfunctioning.  Use of the
+** destination database connection while a backup is in progress might
+** also cause a mutex deadlock.
+**
+** Furthermore, if running in [shared cache mode], the application must
+** guarantee that the shared cache used by the destination database
+** is not accessed while the backup is running. In practice this means
+** that the application must guarantee that the file-system file being 
+** backed up to is not accessed by any connection within the process,
+** not just the specific connection that was passed to sqlite3_backup_init().
+**
+** The [sqlite3_backup] object itself is partially threadsafe. Multiple 
+** threads may safely make multiple concurrent calls to sqlite3_backup_step().
+** However, the sqlite3_backup_remaining() and sqlite3_backup_pagecount()
+** APIs are not strictly speaking threadsafe. If they are invoked at the
+** same time as another thread is invoking sqlite3_backup_step() it is
+** possible that they return invalid values.
+*/
+sqlite3_backup *sqlite3_backup_init(
+  sqlite3 *pDest,                        /* Destination database handle */
+  const char *zDestName,                 /* Destination database name */
+  sqlite3 *pSource,                      /* Source database handle */
+  const char *zSourceName                /* Source database name */
+);
+int sqlite3_backup_step(sqlite3_backup *p, int nPage);
+int sqlite3_backup_finish(sqlite3_backup *p);
+int sqlite3_backup_remaining(sqlite3_backup *p);
+int sqlite3_backup_pagecount(sqlite3_backup *p);
+
+/*
+** CAPI3REF: Unlock Notification
+** EXPERIMENTAL
+**
+** When running in shared-cache mode, a database operation may fail with
+** an [SQLITE_LOCKED] error if the required locks on the shared-cache or
+** individual tables within the shared-cache cannot be obtained. See
+** [SQLite Shared-Cache Mode] for a description of shared-cache locking. 
+** This API may be used to register a callback that SQLite will invoke 
+** when the connection currently holding the required lock relinquishes it.
+** This API is only available if the library was compiled with the
+** [SQLITE_ENABLE_UNLOCK_NOTIFY] C-preprocessor symbol defined.
+**
+** See Also: [Using the SQLite Unlock Notification Feature].
+**
+** Shared-cache locks are released when a database connection concludes
+** its current transaction, either by committing it or rolling it back. 
+**
+** When a connection (known as the blocked connection) fails to obtain a
+** shared-cache lock and SQLITE_LOCKED is returned to the caller, the
+** identity of the database connection (the blocking connection) that
+** has locked the required resource is stored internally. After an 
+** application receives an SQLITE_LOCKED error, it may call the
+** sqlite3_unlock_notify() method with the blocked connection handle as 
+** the first argument to register for a callback that will be invoked
+** when the blocking connections current transaction is concluded. The
+** callback is invoked from within the [sqlite3_step] or [sqlite3_close]
+** call that concludes the blocking connections transaction.
+**
+** If sqlite3_unlock_notify() is called in a multi-threaded application,
+** there is a chance that the blocking connection will have already
+** concluded its transaction by the time sqlite3_unlock_notify() is invoked.
+** If this happens, then the specified callback is invoked immediately,
+** from within the call to sqlite3_unlock_notify().
+**
+** If the blocked connection is attempting to obtain a write-lock on a
+** shared-cache table, and more than one other connection currently holds
+** a read-lock on the same table, then SQLite arbitrarily selects one of 
+** the other connections to use as the blocking connection.
+**
+** There may be at most one unlock-notify callback registered by a 
+** blocked connection. If sqlite3_unlock_notify() is called when the
+** blocked connection already has a registered unlock-notify callback,
+** then the new callback replaces the old. If sqlite3_unlock_notify() is
+** called with a NULL pointer as its second argument, then any existing
+** unlock-notify callback is cancelled. The blocked connections 
+** unlock-notify callback may also be canceled by closing the blocked
+** connection using [sqlite3_close()].
+**
+** The unlock-notify callback is not reentrant. If an application invokes
+** any sqlite3_xxx API functions from within an unlock-notify callback, a
+** crash or deadlock may be the result.
+**
+** Unless deadlock is detected (see below), sqlite3_unlock_notify() always
+** returns SQLITE_OK.
+**
+** <b>Callback Invocation Details</b>
+**
+** When an unlock-notify callback is registered, the application provides a 
+** single void* pointer that is passed to the callback when it is invoked.
+** However, the signature of the callback function allows SQLite to pass
+** it an array of void* context pointers. The first argument passed to
+** an unlock-notify callback is a pointer to an array of void* pointers,
+** and the second is the number of entries in the array.
+**
+** When a blocking connections transaction is concluded, there may be
+** more than one blocked connection that has registered for an unlock-notify
+** callback. If two or more such blocked connections have specified the
+** same callback function, then instead of invoking the callback function
+** multiple times, it is invoked once with the set of void* context pointers
+** specified by the blocked connections bundled together into an array.
+** This gives the application an opportunity to prioritize any actions 
+** related to the set of unblocked database connections.
+**
+** <b>Deadlock Detection</b>
+**
+** Assuming that after registering for an unlock-notify callback a 
+** database waits for the callback to be issued before taking any further
+** action (a reasonable assumption), then using this API may cause the
+** application to deadlock. For example, if connection X is waiting for
+** connection Y's transaction to be concluded, and similarly connection
+** Y is waiting on connection X's transaction, then neither connection
+** will proceed and the system may remain deadlocked indefinitely.
+**
+** To avoid this scenario, the sqlite3_unlock_notify() performs deadlock
+** detection. If a given call to sqlite3_unlock_notify() would put the
+** system in a deadlocked state, then SQLITE_LOCKED is returned and no
+** unlock-notify callback is registered. The system is said to be in
+** a deadlocked state if connection A has registered for an unlock-notify
+** callback on the conclusion of connection B's transaction, and connection
+** B has itself registered for an unlock-notify callback when connection
+** A's transaction is concluded. Indirect deadlock is also detected, so
+** the system is also considered to be deadlocked if connection B has
+** registered for an unlock-notify callback on the conclusion of connection
+** C's transaction, where connection C is waiting on connection A. Any
+** number of levels of indirection are allowed.
+**
+** <b>The "DROP TABLE" Exception</b>
+**
+** When a call to [sqlite3_step()] returns SQLITE_LOCKED, it is almost 
+** always appropriate to call sqlite3_unlock_notify(). There is however,
+** one exception. When executing a "DROP TABLE" or "DROP INDEX" statement,
+** SQLite checks if there are any currently executing SELECT statements
+** that belong to the same connection. If there are, SQLITE_LOCKED is
+** returned. In this case there is no "blocking connection", so invoking
+** sqlite3_unlock_notify() results in the unlock-notify callback being
+** invoked immediately. If the application then re-attempts the "DROP TABLE"
+** or "DROP INDEX" query, an infinite loop might be the result.
+**
+** One way around this problem is to check the extended error code returned
+** by an sqlite3_step() call. If there is a blocking connection, then the
+** extended error code is set to SQLITE_LOCKED_SHAREDCACHE. Otherwise, in
+** the special "DROP TABLE/INDEX" case, the extended error code is just 
+** SQLITE_LOCKED.
+*/
+int sqlite3_unlock_notify(
+  sqlite3 *pBlocked,                          /* Waiting connection */
+  void (*xNotify)(void **apArg, int nArg),    /* Callback function to invoke */
+  void *pNotifyArg                            /* Argument to pass to xNotify */
+);
+
+/*
+** Undo the hack that converts floating point types to integer for
+** builds on processors without floating point support.
+*/
+#ifdef SQLITE_OMIT_FLOATING_POINT
+# undef double
+#endif
+
+#ifdef __cplusplus
+}  /* End of the 'extern "C"' block */
+#endif
+#endif
diff --git a/lib/unstable/sqlite-binding/sqlite3ext.h b/lib/unstable/sqlite-binding/sqlite3ext.h
new file mode 100644
index 0000000..5526646
--- /dev/null
+++ b/lib/unstable/sqlite-binding/sqlite3ext.h
@@ -0,0 +1,380 @@
+/*
+** 2006 June 7
+**
+** The author disclaims copyright to this source code.  In place of
+** a legal notice, here is a blessing:
+**
+**    May you do good and not evil.
+**    May you find forgiveness for yourself and forgive others.
+**    May you share freely, never taking more than you give.
+**
+*************************************************************************
+** This header file defines the SQLite interface for use by
+** shared libraries that want to be imported as extensions into
+** an SQLite instance.  Shared libraries that intend to be loaded
+** as extensions by SQLite should #include this file instead of 
+** sqlite3.h.
+**
+** @(#) $Id: sqlite3ext.h,v 1.25 2008/10/12 00:27:54 shane Exp $
+*/
+#ifndef _SQLITE3EXT_H_
+#define _SQLITE3EXT_H_
+#include "sqlite3.h"
+
+typedef struct sqlite3_api_routines sqlite3_api_routines;
+
+/*
+** The following structure holds pointers to all of the SQLite API
+** routines.
+**
+** WARNING:  In order to maintain backwards compatibility, add new
+** interfaces to the end of this structure only.  If you insert new
+** interfaces in the middle of this structure, then older different
+** versions of SQLite will not be able to load each others' shared
+** libraries!
+*/
+struct sqlite3_api_routines {
+  void * (*aggregate_context)(sqlite3_context*,int nBytes);
+  int  (*aggregate_count)(sqlite3_context*);
+  int  (*bind_blob)(sqlite3_stmt*,int,const void*,int n,void(*)(void*));
+  int  (*bind_double)(sqlite3_stmt*,int,double);
+  int  (*bind_int)(sqlite3_stmt*,int,int);
+  int  (*bind_int64)(sqlite3_stmt*,int,sqlite_int64);
+  int  (*bind_null)(sqlite3_stmt*,int);
+  int  (*bind_parameter_count)(sqlite3_stmt*);
+  int  (*bind_parameter_index)(sqlite3_stmt*,const char*zName);
+  const char * (*bind_parameter_name)(sqlite3_stmt*,int);
+  int  (*bind_text)(sqlite3_stmt*,int,const char*,int n,void(*)(void*));
+  int  (*bind_text16)(sqlite3_stmt*,int,const void*,int,void(*)(void*));
+  int  (*bind_value)(sqlite3_stmt*,int,const sqlite3_value*);
+  int  (*busy_handler)(sqlite3*,int(*)(void*,int),void*);
+  int  (*busy_timeout)(sqlite3*,int ms);
+  int  (*changes)(sqlite3*);
+  int  (*close)(sqlite3*);
+  int  (*collation_needed)(sqlite3*,void*,void(*)(void*,sqlite3*,int eTextRep,const char*));
+  int  (*collation_needed16)(sqlite3*,void*,void(*)(void*,sqlite3*,int eTextRep,const void*));
+  const void * (*column_blob)(sqlite3_stmt*,int iCol);
+  int  (*column_bytes)(sqlite3_stmt*,int iCol);
+  int  (*column_bytes16)(sqlite3_stmt*,int iCol);
+  int  (*column_count)(sqlite3_stmt*pStmt);
+  const char * (*column_database_name)(sqlite3_stmt*,int);
+  const void * (*column_database_name16)(sqlite3_stmt*,int);
+  const char * (*column_decltype)(sqlite3_stmt*,int i);
+  const void * (*column_decltype16)(sqlite3_stmt*,int);
+  double  (*column_double)(sqlite3_stmt*,int iCol);
+  int  (*column_int)(sqlite3_stmt*,int iCol);
+  sqlite_int64  (*column_int64)(sqlite3_stmt*,int iCol);
+  const char * (*column_name)(sqlite3_stmt*,int);
+  const void * (*column_name16)(sqlite3_stmt*,int);
+  const char * (*column_origin_name)(sqlite3_stmt*,int);
+  const void * (*column_origin_name16)(sqlite3_stmt*,int);
+  const char * (*column_table_name)(sqlite3_stmt*,int);
+  const void * (*column_table_name16)(sqlite3_stmt*,int);
+  const unsigned char * (*column_text)(sqlite3_stmt*,int iCol);
+  const void * (*column_text16)(sqlite3_stmt*,int iCol);
+  int  (*column_type)(sqlite3_stmt*,int iCol);
+  sqlite3_value* (*column_value)(sqlite3_stmt*,int iCol);
+  void * (*commit_hook)(sqlite3*,int(*)(void*),void*);
+  int  (*complete)(const char*sql);
+  int  (*complete16)(const void*sql);
+  int  (*create_collation)(sqlite3*,const char*,int,void*,int(*)(void*,int,const void*,int,const void*));
+  int  (*create_collation16)(sqlite3*,const void*,int,void*,int(*)(void*,int,const void*,int,const void*));
+  int  (*create_function)(sqlite3*,const char*,int,int,void*,void (*xFunc)(sqlite3_context*,int,sqlite3_value**),void (*xStep)(sqlite3_context*,int,sqlite3_value**),void (*xFinal)(sqlite3_context*));
+  int  (*create_function16)(sqlite3*,const void*,int,int,void*,void (*xFunc)(sqlite3_context*,int,sqlite3_value**),void (*xStep)(sqlite3_context*,int,sqlite3_value**),void (*xFinal)(sqlite3_context*));
+  int (*create_module)(sqlite3*,const char*,const sqlite3_module*,void*);
+  int  (*data_count)(sqlite3_stmt*pStmt);
+  sqlite3 * (*db_handle)(sqlite3_stmt*);
+  int (*declare_vtab)(sqlite3*,const char*);
+  int  (*enable_shared_cache)(int);
+  int  (*errcode)(sqlite3*db);
+  const char * (*errmsg)(sqlite3*);
+  const void * (*errmsg16)(sqlite3*);
+  int  (*exec)(sqlite3*,const char*,sqlite3_callback,void*,char**);
+  int  (*expired)(sqlite3_stmt*);
+  int  (*finalize)(sqlite3_stmt*pStmt);
+  void  (*free)(void*);
+  void  (*free_table)(char**result);
+  int  (*get_autocommit)(sqlite3*);
+  void * (*get_auxdata)(sqlite3_context*,int);
+  int  (*get_table)(sqlite3*,const char*,char***,int*,int*,char**);
+  int  (*global_recover)(void);
+  void  (*interruptx)(sqlite3*);
+  sqlite_int64  (*last_insert_rowid)(sqlite3*);
+  const char * (*libversion)(void);
+  int  (*libversion_number)(void);
+  void *(*malloc)(int);
+  char * (*mprintf)(const char*,...);
+  int  (*open)(const char*,sqlite3**);
+  int  (*open16)(const void*,sqlite3**);
+  int  (*prepare)(sqlite3*,const char*,int,sqlite3_stmt**,const char**);
+  int  (*prepare16)(sqlite3*,const void*,int,sqlite3_stmt**,const void**);
+  void * (*profile)(sqlite3*,void(*)(void*,const char*,sqlite_uint64),void*);
+  void  (*progress_handler)(sqlite3*,int,int(*)(void*),void*);
+  void *(*realloc)(void*,int);
+  int  (*reset)(sqlite3_stmt*pStmt);
+  void  (*result_blob)(sqlite3_context*,const void*,int,void(*)(void*));
+  void  (*result_double)(sqlite3_context*,double);
+  void  (*result_error)(sqlite3_context*,const char*,int);
+  void  (*result_error16)(sqlite3_context*,const void*,int);
+  void  (*result_int)(sqlite3_context*,int);
+  void  (*result_int64)(sqlite3_context*,sqlite_int64);
+  void  (*result_null)(sqlite3_context*);
+  void  (*result_text)(sqlite3_context*,const char*,int,void(*)(void*));
+  void  (*result_text16)(sqlite3_context*,const void*,int,void(*)(void*));
+  void  (*result_text16be)(sqlite3_context*,const void*,int,void(*)(void*));
+  void  (*result_text16le)(sqlite3_context*,const void*,int,void(*)(void*));
+  void  (*result_value)(sqlite3_context*,sqlite3_value*);
+  void * (*rollback_hook)(sqlite3*,void(*)(void*),void*);
+  int  (*set_authorizer)(sqlite3*,int(*)(void*,int,const char*,const char*,const char*,const char*),void*);
+  void  (*set_auxdata)(sqlite3_context*,int,void*,void (*)(void*));
+  char * (*snprintf)(int,char*,const char*,...);
+  int  (*step)(sqlite3_stmt*);
+  int  (*table_column_metadata)(sqlite3*,const char*,const char*,const char*,char const**,char const**,int*,int*,int*);
+  void  (*thread_cleanup)(void);
+  int  (*total_changes)(sqlite3*);
+  void * (*trace)(sqlite3*,void(*xTrace)(void*,const char*),void*);
+  int  (*transfer_bindings)(sqlite3_stmt*,sqlite3_stmt*);
+  void * (*update_hook)(sqlite3*,void(*)(void*,int ,char const*,char const*,sqlite_int64),void*);
+  void * (*user_data)(sqlite3_context*);
+  const void * (*value_blob)(sqlite3_value*);
+  int  (*value_bytes)(sqlite3_value*);
+  int  (*value_bytes16)(sqlite3_value*);
+  double  (*value_double)(sqlite3_value*);
+  int  (*value_int)(sqlite3_value*);
+  sqlite_int64  (*value_int64)(sqlite3_value*);
+  int  (*value_numeric_type)(sqlite3_value*);
+  const unsigned char * (*value_text)(sqlite3_value*);
+  const void * (*value_text16)(sqlite3_value*);
+  const void * (*value_text16be)(sqlite3_value*);
+  const void * (*value_text16le)(sqlite3_value*);
+  int  (*value_type)(sqlite3_value*);
+  char *(*vmprintf)(const char*,va_list);
+  /* Added ??? */
+  int (*overload_function)(sqlite3*, const char *zFuncName, int nArg);
+  /* Added by 3.3.13 */
+  int (*prepare_v2)(sqlite3*,const char*,int,sqlite3_stmt**,const char**);
+  int (*prepare16_v2)(sqlite3*,const void*,int,sqlite3_stmt**,const void**);
+  int (*clear_bindings)(sqlite3_stmt*);
+  /* Added by 3.4.1 */
+  int (*create_module_v2)(sqlite3*,const char*,const sqlite3_module*,void*,void (*xDestroy)(void *));
+  /* Added by 3.5.0 */
+  int (*bind_zeroblob)(sqlite3_stmt*,int,int);
+  int (*blob_bytes)(sqlite3_blob*);
+  int (*blob_close)(sqlite3_blob*);
+  int (*blob_open)(sqlite3*,const char*,const char*,const char*,sqlite3_int64,int,sqlite3_blob**);
+  int (*blob_read)(sqlite3_blob*,void*,int,int);
+  int (*blob_write)(sqlite3_blob*,const void*,int,int);
+  int (*create_collation_v2)(sqlite3*,const char*,int,void*,int(*)(void*,int,const void*,int,const void*),void(*)(void*));
+  int (*file_control)(sqlite3*,const char*,int,void*);
+  sqlite3_int64 (*memory_highwater)(int);
+  sqlite3_int64 (*memory_used)(void);
+  sqlite3_mutex *(*mutex_alloc)(int);
+  void (*mutex_enter)(sqlite3_mutex*);
+  void (*mutex_free)(sqlite3_mutex*);
+  void (*mutex_leave)(sqlite3_mutex*);
+  int (*mutex_try)(sqlite3_mutex*);
+  int (*open_v2)(const char*,sqlite3**,int,const char*);
+  int (*release_memory)(int);
+  void (*result_error_nomem)(sqlite3_context*);
+  void (*result_error_toobig)(sqlite3_context*);
+  int (*sleep)(int);
+  void (*soft_heap_limit)(int);
+  sqlite3_vfs *(*vfs_find)(const char*);
+  int (*vfs_register)(sqlite3_vfs*,int);
+  int (*vfs_unregister)(sqlite3_vfs*);
+  int (*xthreadsafe)(void);
+  void (*result_zeroblob)(sqlite3_context*,int);
+  void (*result_error_code)(sqlite3_context*,int);
+  int (*test_control)(int, ...);
+  void (*randomness)(int,void*);
+  sqlite3 *(*context_db_handle)(sqlite3_context*);
+  int (*extended_result_codes)(sqlite3*,int);
+  int (*limit)(sqlite3*,int,int);
+  sqlite3_stmt *(*next_stmt)(sqlite3*,sqlite3_stmt*);
+  const char *(*sql)(sqlite3_stmt*);
+  int (*status)(int,int*,int*,int);
+};
+
+/*
+** The following macros redefine the API routines so that they are
+** redirected throught the global sqlite3_api structure.
+**
+** This header file is also used by the loadext.c source file
+** (part of the main SQLite library - not an extension) so that
+** it can get access to the sqlite3_api_routines structure
+** definition.  But the main library does not want to redefine
+** the API.  So the redefinition macros are only valid if the
+** SQLITE_CORE macros is undefined.
+*/
+#ifndef SQLITE_CORE
+#define sqlite3_aggregate_context      sqlite3_api->aggregate_context
+#ifndef SQLITE_OMIT_DEPRECATED
+#define sqlite3_aggregate_count        sqlite3_api->aggregate_count
+#endif
+#define sqlite3_bind_blob              sqlite3_api->bind_blob
+#define sqlite3_bind_double            sqlite3_api->bind_double
+#define sqlite3_bind_int               sqlite3_api->bind_int
+#define sqlite3_bind_int64             sqlite3_api->bind_int64
+#define sqlite3_bind_null              sqlite3_api->bind_null
+#define sqlite3_bind_parameter_count   sqlite3_api->bind_parameter_count
+#define sqlite3_bind_parameter_index   sqlite3_api->bind_parameter_index
+#define sqlite3_bind_parameter_name    sqlite3_api->bind_parameter_name
+#define sqlite3_bind_text              sqlite3_api->bind_text
+#define sqlite3_bind_text16            sqlite3_api->bind_text16
+#define sqlite3_bind_value             sqlite3_api->bind_value
+#define sqlite3_busy_handler           sqlite3_api->busy_handler
+#define sqlite3_busy_timeout           sqlite3_api->busy_timeout
+#define sqlite3_changes                sqlite3_api->changes
+#define sqlite3_close                  sqlite3_api->close
+#define sqlite3_collation_needed       sqlite3_api->collation_needed
+#define sqlite3_collation_needed16     sqlite3_api->collation_needed16
+#define sqlite3_column_blob            sqlite3_api->column_blob
+#define sqlite3_column_bytes           sqlite3_api->column_bytes
+#define sqlite3_column_bytes16         sqlite3_api->column_bytes16
+#define sqlite3_column_count           sqlite3_api->column_count
+#define sqlite3_column_database_name   sqlite3_api->column_database_name
+#define sqlite3_column_database_name16 sqlite3_api->column_database_name16
+#define sqlite3_column_decltype        sqlite3_api->column_decltype
+#define sqlite3_column_decltype16      sqlite3_api->column_decltype16
+#define sqlite3_column_double          sqlite3_api->column_double
+#define sqlite3_column_int             sqlite3_api->column_int
+#define sqlite3_column_int64           sqlite3_api->column_int64
+#define sqlite3_column_name            sqlite3_api->column_name
+#define sqlite3_column_name16          sqlite3_api->column_name16
+#define sqlite3_column_origin_name     sqlite3_api->column_origin_name
+#define sqlite3_column_origin_name16   sqlite3_api->column_origin_name16
+#define sqlite3_column_table_name      sqlite3_api->column_table_name
+#define sqlite3_column_table_name16    sqlite3_api->column_table_name16
+#define sqlite3_column_text            sqlite3_api->column_text
+#define sqlite3_column_text16          sqlite3_api->column_text16
+#define sqlite3_column_type            sqlite3_api->column_type
+#define sqlite3_column_value           sqlite3_api->column_value
+#define sqlite3_commit_hook            sqlite3_api->commit_hook
+#define sqlite3_complete               sqlite3_api->complete
+#define sqlite3_complete16             sqlite3_api->complete16
+#define sqlite3_create_collation       sqlite3_api->create_collation
+#define sqlite3_create_collation16     sqlite3_api->create_collation16
+#define sqlite3_create_function        sqlite3_api->create_function
+#define sqlite3_create_function16      sqlite3_api->create_function16
+#define sqlite3_create_module          sqlite3_api->create_module
+#define sqlite3_create_module_v2       sqlite3_api->create_module_v2
+#define sqlite3_data_count             sqlite3_api->data_count
+#define sqlite3_db_handle              sqlite3_api->db_handle
+#define sqlite3_declare_vtab           sqlite3_api->declare_vtab
+#define sqlite3_enable_shared_cache    sqlite3_api->enable_shared_cache
+#define sqlite3_errcode                sqlite3_api->errcode
+#define sqlite3_errmsg                 sqlite3_api->errmsg
+#define sqlite3_errmsg16               sqlite3_api->errmsg16
+#define sqlite3_exec                   sqlite3_api->exec
+#ifndef SQLITE_OMIT_DEPRECATED
+#define sqlite3_expired                sqlite3_api->expired
+#endif
+#define sqlite3_finalize               sqlite3_api->finalize
+#define sqlite3_free                   sqlite3_api->free
+#define sqlite3_free_table             sqlite3_api->free_table
+#define sqlite3_get_autocommit         sqlite3_api->get_autocommit
+#define sqlite3_get_auxdata            sqlite3_api->get_auxdata
+#define sqlite3_get_table              sqlite3_api->get_table
+#ifndef SQLITE_OMIT_DEPRECATED
+#define sqlite3_global_recover         sqlite3_api->global_recover
+#endif
+#define sqlite3_interrupt              sqlite3_api->interruptx
+#define sqlite3_last_insert_rowid      sqlite3_api->last_insert_rowid
+#define sqlite3_libversion             sqlite3_api->libversion
+#define sqlite3_libversion_number      sqlite3_api->libversion_number
+#define sqlite3_malloc                 sqlite3_api->malloc
+#define sqlite3_mprintf                sqlite3_api->mprintf
+#define sqlite3_open                   sqlite3_api->open
+#define sqlite3_open16                 sqlite3_api->open16
+#define sqlite3_prepare                sqlite3_api->prepare
+#define sqlite3_prepare16              sqlite3_api->prepare16
+#define sqlite3_prepare_v2             sqlite3_api->prepare_v2
+#define sqlite3_prepare16_v2           sqlite3_api->prepare16_v2
+#define sqlite3_profile                sqlite3_api->profile
+#define sqlite3_progress_handler       sqlite3_api->progress_handler
+#define sqlite3_realloc                sqlite3_api->realloc
+#define sqlite3_reset                  sqlite3_api->reset
+#define sqlite3_result_blob            sqlite3_api->result_blob
+#define sqlite3_result_double          sqlite3_api->result_double
+#define sqlite3_result_error           sqlite3_api->result_error
+#define sqlite3_result_error16         sqlite3_api->result_error16
+#define sqlite3_result_int             sqlite3_api->result_int
+#define sqlite3_result_int64           sqlite3_api->result_int64
+#define sqlite3_result_null            sqlite3_api->result_null
+#define sqlite3_result_text            sqlite3_api->result_text
+#define sqlite3_result_text16          sqlite3_api->result_text16
+#define sqlite3_result_text16be        sqlite3_api->result_text16be
+#define sqlite3_result_text16le        sqlite3_api->result_text16le
+#define sqlite3_result_value           sqlite3_api->result_value
+#define sqlite3_rollback_hook          sqlite3_api->rollback_hook
+#define sqlite3_set_authorizer         sqlite3_api->set_authorizer
+#define sqlite3_set_auxdata            sqlite3_api->set_auxdata
+#define sqlite3_snprintf               sqlite3_api->snprintf
+#define sqlite3_step                   sqlite3_api->step
+#define sqlite3_table_column_metadata  sqlite3_api->table_column_metadata
+#define sqlite3_thread_cleanup         sqlite3_api->thread_cleanup
+#define sqlite3_total_changes          sqlite3_api->total_changes
+#define sqlite3_trace                  sqlite3_api->trace
+#ifndef SQLITE_OMIT_DEPRECATED
+#define sqlite3_transfer_bindings      sqlite3_api->transfer_bindings
+#endif
+#define sqlite3_update_hook            sqlite3_api->update_hook
+#define sqlite3_user_data              sqlite3_api->user_data
+#define sqlite3_value_blob             sqlite3_api->value_blob
+#define sqlite3_value_bytes            sqlite3_api->value_bytes
+#define sqlite3_value_bytes16          sqlite3_api->value_bytes16
+#define sqlite3_value_double           sqlite3_api->value_double
+#define sqlite3_value_int              sqlite3_api->value_int
+#define sqlite3_value_int64            sqlite3_api->value_int64
+#define sqlite3_value_numeric_type     sqlite3_api->value_numeric_type
+#define sqlite3_value_text             sqlite3_api->value_text
+#define sqlite3_value_text16           sqlite3_api->value_text16
+#define sqlite3_value_text16be         sqlite3_api->value_text16be
+#define sqlite3_value_text16le         sqlite3_api->value_text16le
+#define sqlite3_value_type             sqlite3_api->value_type
+#define sqlite3_vmprintf               sqlite3_api->vmprintf
+#define sqlite3_overload_function      sqlite3_api->overload_function
+#define sqlite3_prepare_v2             sqlite3_api->prepare_v2
+#define sqlite3_prepare16_v2           sqlite3_api->prepare16_v2
+#define sqlite3_clear_bindings         sqlite3_api->clear_bindings
+#define sqlite3_bind_zeroblob          sqlite3_api->bind_zeroblob
+#define sqlite3_blob_bytes             sqlite3_api->blob_bytes
+#define sqlite3_blob_close             sqlite3_api->blob_close
+#define sqlite3_blob_open              sqlite3_api->blob_open
+#define sqlite3_blob_read              sqlite3_api->blob_read
+#define sqlite3_blob_write             sqlite3_api->blob_write
+#define sqlite3_create_collation_v2    sqlite3_api->create_collation_v2
+#define sqlite3_file_control           sqlite3_api->file_control
+#define sqlite3_memory_highwater       sqlite3_api->memory_highwater
+#define sqlite3_memory_used            sqlite3_api->memory_used
+#define sqlite3_mutex_alloc            sqlite3_api->mutex_alloc
+#define sqlite3_mutex_enter            sqlite3_api->mutex_enter
+#define sqlite3_mutex_free             sqlite3_api->mutex_free
+#define sqlite3_mutex_leave            sqlite3_api->mutex_leave
+#define sqlite3_mutex_try              sqlite3_api->mutex_try
+#define sqlite3_open_v2                sqlite3_api->open_v2
+#define sqlite3_release_memory         sqlite3_api->release_memory
+#define sqlite3_result_error_nomem     sqlite3_api->result_error_nomem
+#define sqlite3_result_error_toobig    sqlite3_api->result_error_toobig
+#define sqlite3_sleep                  sqlite3_api->sleep
+#define sqlite3_soft_heap_limit        sqlite3_api->soft_heap_limit
+#define sqlite3_vfs_find               sqlite3_api->vfs_find
+#define sqlite3_vfs_register           sqlite3_api->vfs_register
+#define sqlite3_vfs_unregister         sqlite3_api->vfs_unregister
+#define sqlite3_threadsafe             sqlite3_api->xthreadsafe
+#define sqlite3_result_zeroblob        sqlite3_api->result_zeroblob
+#define sqlite3_result_error_code      sqlite3_api->result_error_code
+#define sqlite3_test_control           sqlite3_api->test_control
+#define sqlite3_randomness             sqlite3_api->randomness
+#define sqlite3_context_db_handle      sqlite3_api->context_db_handle
+#define sqlite3_extended_result_codes  sqlite3_api->extended_result_codes
+#define sqlite3_limit                  sqlite3_api->limit
+#define sqlite3_next_stmt              sqlite3_api->next_stmt
+#define sqlite3_sql                    sqlite3_api->sql
+#define sqlite3_status                 sqlite3_api->status
+#endif /* SQLITE_CORE */
+
+#define SQLITE_EXTENSION_INIT1     const sqlite3_api_routines *sqlite3_api = 0;
+#define SQLITE_EXTENSION_INIT2(v)  sqlite3_api = v;
+
+#endif /* _SQLITE3EXT_H_ */
diff --git a/lib/unstable/sqlite-binding/sqlite_statement.li b/lib/unstable/sqlite-binding/sqlite_statement.li
new file mode 100644
index 0000000..ad9ea41
--- /dev/null
+++ b/lib/unstable/sqlite-binding/sqlite_statement.li
@@ -0,0 +1,316 @@
+Section Header
+
+  // Represent a SQLite prepared statement. Prepared statements execute faster
+  // and are generally safer than a standard execute call as all bound
+  // parameters are escaped properly.
+  //
+  // To create a `SQLITE_STATEMENT`, use `SQLITE.prepare`. Any valid SQL
+  // can be sent to prepare. Further bound values are inserted with
+  // each call to step. ? and ?NNN are supported.
+
+  + name     := SQLITE_STATEMENT;
+
+  - copyright := "2008, Jeremy Cowgar";
+
+  - comment := "SQLite binding of prepared statements";
+
+  - external := `#include "sqlite3.h"`;
+
+Section Inherit
+
+  - parent_object:OBJECT := OBJECT;
+
+Section Public
+
+  - pointer :POINTER := NULL;
+  // Internal pointer to the "sqlite3_stmt *" statement handle.
+
+Section Public
+  // Create/Reset/Destroy slots
+
+  - set_stmt p:POINTER <-
+  // Set the C sqlite3_stmt* handle for this statement.
+  (
+    pointer := p;
+  );
+
+  - make stmt:POINTER :SELF <-
+  // Clone `SQLITE_STATEMENT` with the given `stmt` as the statement
+  // pointer.
+  (
+    + result:SELF;
+
+    result := SELF.clone;
+    result.set_stmt stmt;
+    result
+  );
+
+  - finalize <-
+  // Finalize the prepared statement which free's all memory
+  // associated with it. Once finalized, this `SQLITE_STATEMENT`
+  // can no longer be used.
+  (
+    + stmt:POINTER;
+    stmt := pointer;
+    `sqlite3_finalize(@stmt)`;
+    pointer := NULL;
+  );
+
+  - reset <-
+  // Reset the prepared statement back to it's initial state, ready to be
+  // re-executed. Any SQL statement variables that had values bound to
+  // them using the `bind` slots retain their values. Use `clear_bindings`
+  // to reset the bindings.
+  (
+    + stmt:POINTER;
+    stmt := pointer;
+    `sqlite3_reset(@stmt)`;
+  );
+
+  - clear_bindings <-
+  // Reset all bound values of the prepared statement to NULL.
+  (
+    + stmt:POINTER;
+    stmt := pointer;
+    `sqlite3_clear_bindings(@stmt)`;
+  );
+
+Section Public
+  // Movement through the result set.
+
+  - step :INTEGER <-
+  // Evaluate the next (or first) SQL statement in the prepared statement.
+  (
+    + stmt: POINTER;
+    stmt := pointer;
+    `sqlite3_step(@stmt)`:INTEGER
+  );
+
+  - foreach b:{} <-
+  // Evaluate the prepared statement calling `b` for each row that is
+  // returned by `step`. Warning: When completed, `foreach` does not
+  // automatically call finalize. This is left up to the caller.
+  (
+    { step = SQLITE.row }.while_do b;
+  );
+
+Section Public
+  // Binding for execute
+
+  - bind col:INTEGER to_integer v:INTEGER <-
+  // Bind the integer value `v` to the column `col`.
+  (
+    + stmt :POINTER;
+    stmt := pointer;
+    `sqlite3_bind_int(@stmt, @col, @v)`;
+  );
+
+  - bind col:INTEGER to_integer64 v:INTEGER_64 <-
+  // Bind the 64bit integer value `v` to the column `col`.
+  (
+    + stmt :POINTER;
+    stmt := pointer;
+    `sqlite3_bind_int64(@stmt, @col, @v)`;
+  );
+
+  - bind col:INTEGER to_real v:REAL_64 <-
+  // Bind the real value `v` to the column `col`.
+  (
+    + stmt :POINTER;
+    stmt := pointer;
+    `sqlite3_bind_double(@stmt, @col, @v)`;
+  );
+
+  - bind col:INTEGER to_string v:ABSTRACT_STRING <-
+  // Bind the string value `v` to the column `col`.
+  (
+    + stmt    : POINTER;
+    + a_value : NATIVE_ARRAY(CHARACTER);
+
+    stmt    := pointer;
+    a_value := v.to_external;
+
+    `sqlite3_bind_text(@stmt, @col, @a_value, -1, 0)`;
+  );
+
+  - bind_nul col:INTEGER <-
+  // Bind null to the colum `col`.
+  (
+    + stmt :POINTER;
+    stmt := pointer;
+    `sqlite3_bind_null(@stmt, @col)`;
+  );
+
+Section Public
+  // Column Values
+
+  - as_integer col:INTEGER :INTEGER <-
+  // Get the value of `col` as an integer.
+  (
+    + stmt:POINTER;
+    stmt := pointer;
+    `sqlite3_column_int(@stmt, @col)`:INTEGER
+  );
+
+  - as_integer64 col:INTEGER :INTEGER <-
+  // Get the value of `col` as a 64bit integer.
+  (
+    + stmt:POINTER;
+    stmt := pointer;
+    `sqlite3_column_int64(@stmt, @col)`:INTEGER_64
+  );
+
+  - as_double col:INTEGER :REAL_64 <-
+  // Get the value of `col` as a double.
+  (
+    + stmt:POINTER;
+    stmt := pointer;
+    `sqlite3_column_double(@stmt, @col)`:REAL_64
+  );
+
+  - as_string col:INTEGER :STRING <-
+  // Get the value of `col` as a string.
+  (
+    + stmt : POINTER;
+    + value : NATIVE_ARRAY(CHARACTER);
+    + result : STRING;
+
+    stmt := pointer;
+    value := `sqlite3_column_text(@stmt, @col)`:NATIVE_ARRAY(CHARACTER);
+
+    result := STRING.clone;
+    result.from_external(value);
+    result
+  );
+
+Section Public
+  // Column Values (by name)
+
+  - field_as_integer name:ABSTRACT_STRING :INTEGER <-
+  // Get the value of `name` as an integer.
+  (
+    as_integer (index name)
+  );
+
+  - field_as_integer64 name:ABSTRACT_STRING :INTEGER <-
+  // Get the value of `name` as a 64bit integer.
+  (
+    as_integer64 (index name)
+  );
+
+  - field_as_double name:ABSTRACT_STRING :REAL_64 <-
+  // Get the value of `name` as a double.
+  (
+    as_double (index name)
+  );
+
+  - field_as_string name:ABSTRACT_STRING :STRING <-
+  // Get the value of `name` as a string.
+  (
+    as_string (index name)
+  );
+
+Section Public
+  // Column Information
+
+  - count :INTEGER <-
+  // Get the number of columns in the prepared statement.
+  (
+    + stmt:POINTER;
+
+    stmt := pointer;
+
+    `sqlite3_column_count(@stmt)`:INTEGER
+  );
+
+  - type col:INTEGER :INTEGER <-
+  // Get the column type of column `col`.
+  (
+    + stmt :POINTER;
+
+    stmt := pointer;
+
+    `sqlite3_column_type(@stmt, @col)`:INTEGER
+  );
+
+  - declared_type col:INTEGER :STRING <-
+  // Get the declared type of column `col`.
+  (
+    + stmt:POINTER;
+    + n_name:NATIVE_ARRAY(CHARACTER);
+    + result:STRING;
+
+    stmt := pointer;
+    n_name := `sqlite3_column_decltype(@stmt, @col)`:NATIVE_ARRAY(CHARACTER);
+
+    result := STRING.clone;
+    result.from_external(n_name);
+    result
+  );
+
+  - name col:INTEGER :STRING <-
+  // Get the column name of column `col`.
+  (
+    + stmt:POINTER;
+    + n_name:NATIVE_ARRAY(CHARACTER);
+    + result:STRING;
+
+    stmt := pointer;
+    n_name := `sqlite3_column_name(@stmt, @col)`:NATIVE_ARRAY(CHARACTER);
+
+    result := STRING.clone;
+    result.from_external(n_name);
+    result
+  );
+
+  - index colname:ABSTRACT_STRING :INTEGER <-
+  // Get the index of the column named `colname`.
+  (
+    // TODO: Cache this information, then search the cache
+    + result:INTEGER;
+    + idx:INTEGER;
+
+    result := -1;
+    idx := 0;
+
+    { idx < count }.while_do {
+      (name idx == colname).if {
+        result := idx;
+        idx := count;
+      };
+
+      idx := idx + 1;
+    };
+
+    result
+  );
+
+  - table_name col:INTEGER :STRING <-
+  // Get the table name of column `col`.
+  (
+    + stmt:POINTER;
+    + n_name:NATIVE_ARRAY(CHARACTER);
+    + result:STRING;
+
+    stmt := pointer;
+    n_name := `sqlite3_column_table_name(@stmt, @col)`:NATIVE_ARRAY(CHARACTER);
+
+    result := STRING.clone;
+    result.from_external(n_name);
+    result
+  );
+
+  - database_name col:INTEGER :STRING <-
+  // Get the database name of column `col`.
+  (
+    + stmt:POINTER;
+    + n_name:NATIVE_ARRAY(CHARACTER);
+    + result:STRING;
+
+    stmt := pointer;
+    n_name := `sqlite3_column_database_name(@stmt, @col)`:NATIVE_ARRAY(CHARACTER);
+
+    result := STRING.clone;
+    result.from_external(n_name);
+    result
+  );

-- 
Lisaac compiler



More information about the Lisaac-commits mailing list